blob: 956130c70036d2d3d297e8d101bc68017f19c9d6 [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>
40
41#include <net/tcp.h>
42
Stefano Stabellinica981632012-08-08 17:21:23 +000043#include <xen/xen.h>
Ian Campbellf942dc22011-03-15 00:06:18 +000044#include <xen/events.h>
45#include <xen/interface/memory.h>
46
47#include <asm/xen/hypercall.h>
48#include <asm/xen/page.h>
49
Wei Liue1f00a692013-05-22 06:34:45 +000050/* Provide an option to disable split event channels at load time as
51 * event channels are limited resource. Split event channels are
52 * enabled by default.
53 */
54bool separate_tx_rx_irq = 1;
55module_param(separate_tx_rx_irq, bool, 0644);
56
Wei Liu2810e5b2013-04-22 02:20:42 +000057/*
58 * This is the maximum slots a skb can have. If a guest sends a skb
59 * which exceeds this limit it is considered malicious.
60 */
Wei Liu37641492013-05-02 00:43:59 +000061#define FATAL_SKB_SLOTS_DEFAULT 20
62static unsigned int fatal_skb_slots = FATAL_SKB_SLOTS_DEFAULT;
63module_param(fatal_skb_slots, uint, 0444);
64
65/*
66 * To avoid confusion, we define XEN_NETBK_LEGACY_SLOTS_MAX indicating
67 * the maximum slots a valid packet can use. Now this value is defined
68 * to be XEN_NETIF_NR_SLOTS_MIN, which is supposed to be supported by
69 * all backend.
70 */
71#define XEN_NETBK_LEGACY_SLOTS_MAX XEN_NETIF_NR_SLOTS_MIN
Wei Liu2810e5b2013-04-22 02:20:42 +000072
Wei Liu2810e5b2013-04-22 02:20:42 +000073/*
74 * If head != INVALID_PENDING_RING_IDX, it means this tx request is head of
75 * one or more merged tx requests, otherwise it is the continuation of
76 * previous tx request.
77 */
Wei Liub3f980b2013-08-26 12:59:38 +010078static inline int pending_tx_is_head(struct xenvif *vif, RING_IDX idx)
Wei Liu2810e5b2013-04-22 02:20:42 +000079{
Wei Liub3f980b2013-08-26 12:59:38 +010080 return vif->pending_tx_info[idx].head != INVALID_PENDING_RING_IDX;
Wei Liu2810e5b2013-04-22 02:20:42 +000081}
82
Wei Liu73764192013-08-26 12:59:39 +010083static void xenvif_idx_release(struct xenvif *vif, u16 pending_idx,
84 u8 status);
85
Ian Campbellf942dc22011-03-15 00:06:18 +000086static void make_tx_response(struct xenvif *vif,
87 struct xen_netif_tx_request *txp,
88 s8 st);
Wei Liub3f980b2013-08-26 12:59:38 +010089
90static inline int tx_work_todo(struct xenvif *vif);
91static inline int rx_work_todo(struct xenvif *vif);
92
Ian Campbellf942dc22011-03-15 00:06:18 +000093static struct xen_netif_rx_response *make_rx_response(struct xenvif *vif,
94 u16 id,
95 s8 st,
96 u16 offset,
97 u16 size,
98 u16 flags);
99
Wei Liub3f980b2013-08-26 12:59:38 +0100100static inline unsigned long idx_to_pfn(struct xenvif *vif,
Ian Campbellea066ad2011-10-05 00:28:46 +0000101 u16 idx)
Ian Campbellf942dc22011-03-15 00:06:18 +0000102{
Wei Liub3f980b2013-08-26 12:59:38 +0100103 return page_to_pfn(vif->mmap_pages[idx]);
Ian Campbellf942dc22011-03-15 00:06:18 +0000104}
105
Wei Liub3f980b2013-08-26 12:59:38 +0100106static inline unsigned long idx_to_kaddr(struct xenvif *vif,
Ian Campbellea066ad2011-10-05 00:28:46 +0000107 u16 idx)
Ian Campbellf942dc22011-03-15 00:06:18 +0000108{
Wei Liub3f980b2013-08-26 12:59:38 +0100109 return (unsigned long)pfn_to_kaddr(idx_to_pfn(vif, idx));
Ian Campbellf942dc22011-03-15 00:06:18 +0000110}
111
Ian Campbellf942dc22011-03-15 00:06:18 +0000112/*
113 * This is the amount of packet we copy rather than map, so that the
114 * guest can't fiddle with the contents of the headers while we do
115 * packet processing on them (netfilter, routing, etc).
116 */
117#define PKT_PROT_LEN (ETH_HLEN + \
118 VLAN_HLEN + \
119 sizeof(struct iphdr) + MAX_IPOPTLEN + \
120 sizeof(struct tcphdr) + MAX_TCP_OPTION_SPACE)
121
Ian Campbellea066ad2011-10-05 00:28:46 +0000122static u16 frag_get_pending_idx(skb_frag_t *frag)
123{
124 return (u16)frag->page_offset;
125}
126
127static void frag_set_pending_idx(skb_frag_t *frag, u16 pending_idx)
128{
129 frag->page_offset = pending_idx;
130}
131
Ian Campbellf942dc22011-03-15 00:06:18 +0000132static inline pending_ring_idx_t pending_index(unsigned i)
133{
134 return i & (MAX_PENDING_REQS-1);
135}
136
Wei Liub3f980b2013-08-26 12:59:38 +0100137static inline pending_ring_idx_t nr_pending_reqs(struct xenvif *vif)
Ian Campbellf942dc22011-03-15 00:06:18 +0000138{
139 return MAX_PENDING_REQS -
Wei Liub3f980b2013-08-26 12:59:38 +0100140 vif->pending_prod + vif->pending_cons;
Ian Campbellf942dc22011-03-15 00:06:18 +0000141}
142
143static int max_required_rx_slots(struct xenvif *vif)
144{
145 int max = DIV_ROUND_UP(vif->dev->mtu, PAGE_SIZE);
146
Wei Liu2810e5b2013-04-22 02:20:42 +0000147 /* XXX FIXME: RX path dependent on MAX_SKB_FRAGS */
Ian Campbellf942dc22011-03-15 00:06:18 +0000148 if (vif->can_sg || vif->gso || vif->gso_prefix)
149 max += MAX_SKB_FRAGS + 1; /* extra_info + frags */
150
151 return max;
152}
153
Wei Liu73764192013-08-26 12:59:39 +0100154int xenvif_rx_ring_full(struct xenvif *vif)
Ian Campbellf942dc22011-03-15 00:06:18 +0000155{
156 RING_IDX peek = vif->rx_req_cons_peek;
157 RING_IDX needed = max_required_rx_slots(vif);
158
159 return ((vif->rx.sring->req_prod - peek) < needed) ||
160 ((vif->rx.rsp_prod_pvt + XEN_NETIF_RX_RING_SIZE - peek) < needed);
161}
162
Wei Liu73764192013-08-26 12:59:39 +0100163int xenvif_must_stop_queue(struct xenvif *vif)
Ian Campbellf942dc22011-03-15 00:06:18 +0000164{
Wei Liu73764192013-08-26 12:59:39 +0100165 if (!xenvif_rx_ring_full(vif))
Ian Campbellf942dc22011-03-15 00:06:18 +0000166 return 0;
167
168 vif->rx.sring->req_event = vif->rx_req_cons_peek +
169 max_required_rx_slots(vif);
170 mb(); /* request notification /then/ check the queue */
171
Wei Liu73764192013-08-26 12:59:39 +0100172 return xenvif_rx_ring_full(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000173}
174
175/*
176 * Returns true if we should start a new receive buffer instead of
177 * adding 'size' bytes to a buffer which currently contains 'offset'
178 * bytes.
179 */
180static bool start_new_rx_buffer(int offset, unsigned long size, int head)
181{
182 /* simple case: we have completely filled the current buffer. */
183 if (offset == MAX_BUFFER_OFFSET)
184 return true;
185
186 /*
187 * complex case: start a fresh buffer if the current frag
188 * would overflow the current buffer but only if:
189 * (i) this frag would fit completely in the next buffer
190 * and (ii) there is already some data in the current buffer
191 * and (iii) this is not the head buffer.
192 *
193 * Where:
194 * - (i) stops us splitting a frag into two copies
195 * unless the frag is too large for a single buffer.
196 * - (ii) stops us from leaving a buffer pointlessly empty.
197 * - (iii) stops us leaving the first buffer
198 * empty. Strictly speaking this is already covered
199 * by (ii) but is explicitly checked because
200 * netfront relies on the first buffer being
201 * non-empty and can crash otherwise.
202 *
203 * This means we will effectively linearise small
204 * frags but do not needlessly split large buffers
205 * into multiple copies tend to give large frags their
206 * own buffers as before.
207 */
208 if ((offset + size > MAX_BUFFER_OFFSET) &&
209 (size <= MAX_BUFFER_OFFSET) && offset && !head)
210 return true;
211
212 return false;
213}
214
215/*
216 * Figure out how many ring slots we're going to need to send @skb to
217 * the guest. This function is essentially a dry run of
Wei Liu73764192013-08-26 12:59:39 +0100218 * xenvif_gop_frag_copy.
Ian Campbellf942dc22011-03-15 00:06:18 +0000219 */
Wei Liu73764192013-08-26 12:59:39 +0100220unsigned int xenvif_count_skb_slots(struct xenvif *vif, struct sk_buff *skb)
Ian Campbellf942dc22011-03-15 00:06:18 +0000221{
222 unsigned int count;
223 int i, copy_off;
224
Simon Grahame26b2032012-05-24 06:26:07 +0000225 count = DIV_ROUND_UP(skb_headlen(skb), PAGE_SIZE);
Ian Campbellf942dc22011-03-15 00:06:18 +0000226
227 copy_off = skb_headlen(skb) % PAGE_SIZE;
228
229 if (skb_shinfo(skb)->gso_size)
230 count++;
231
232 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +0000233 unsigned long size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
Ian Campbell6a8ed462012-10-10 03:48:42 +0000234 unsigned long offset = skb_shinfo(skb)->frags[i].page_offset;
Ian Campbellf942dc22011-03-15 00:06:18 +0000235 unsigned long bytes;
Ian Campbell6a8ed462012-10-10 03:48:42 +0000236
237 offset &= ~PAGE_MASK;
238
Ian Campbellf942dc22011-03-15 00:06:18 +0000239 while (size > 0) {
Ian Campbell6a8ed462012-10-10 03:48:42 +0000240 BUG_ON(offset >= PAGE_SIZE);
Ian Campbellf942dc22011-03-15 00:06:18 +0000241 BUG_ON(copy_off > MAX_BUFFER_OFFSET);
242
Ian Campbell6a8ed462012-10-10 03:48:42 +0000243 bytes = PAGE_SIZE - offset;
244
245 if (bytes > size)
246 bytes = size;
247
248 if (start_new_rx_buffer(copy_off, bytes, 0)) {
Ian Campbellf942dc22011-03-15 00:06:18 +0000249 count++;
250 copy_off = 0;
251 }
252
Ian Campbellf942dc22011-03-15 00:06:18 +0000253 if (copy_off + bytes > MAX_BUFFER_OFFSET)
254 bytes = MAX_BUFFER_OFFSET - copy_off;
255
256 copy_off += bytes;
Ian Campbell6a8ed462012-10-10 03:48:42 +0000257
258 offset += bytes;
Ian Campbellf942dc22011-03-15 00:06:18 +0000259 size -= bytes;
Ian Campbell6a8ed462012-10-10 03:48:42 +0000260
261 if (offset == PAGE_SIZE)
262 offset = 0;
Ian Campbellf942dc22011-03-15 00:06:18 +0000263 }
264 }
265 return count;
266}
267
268struct netrx_pending_operations {
269 unsigned copy_prod, copy_cons;
270 unsigned meta_prod, meta_cons;
271 struct gnttab_copy *copy;
Wei Liub3f980b2013-08-26 12:59:38 +0100272 struct xenvif_rx_meta *meta;
Ian Campbellf942dc22011-03-15 00:06:18 +0000273 int copy_off;
274 grant_ref_t copy_gref;
275};
276
Wei Liub3f980b2013-08-26 12:59:38 +0100277static struct xenvif_rx_meta *get_next_rx_buffer(struct xenvif *vif,
278 struct netrx_pending_operations *npo)
Ian Campbellf942dc22011-03-15 00:06:18 +0000279{
Wei Liub3f980b2013-08-26 12:59:38 +0100280 struct xenvif_rx_meta *meta;
Ian Campbellf942dc22011-03-15 00:06:18 +0000281 struct xen_netif_rx_request *req;
282
283 req = RING_GET_REQUEST(&vif->rx, vif->rx.req_cons++);
284
285 meta = npo->meta + npo->meta_prod++;
286 meta->gso_size = 0;
287 meta->size = 0;
288 meta->id = req->id;
289
290 npo->copy_off = 0;
291 npo->copy_gref = req->gref;
292
293 return meta;
294}
295
296/*
297 * Set up the grant operations for this fragment. If it's a flipping
298 * interface, we also set up the unmap request from here.
299 */
Wei Liu73764192013-08-26 12:59:39 +0100300static void xenvif_gop_frag_copy(struct xenvif *vif, struct sk_buff *skb,
301 struct netrx_pending_operations *npo,
302 struct page *page, unsigned long size,
303 unsigned long offset, int *head)
Ian Campbellf942dc22011-03-15 00:06:18 +0000304{
305 struct gnttab_copy *copy_gop;
Wei Liub3f980b2013-08-26 12:59:38 +0100306 struct xenvif_rx_meta *meta;
Ian Campbellf942dc22011-03-15 00:06:18 +0000307 unsigned long bytes;
308
309 /* Data must not cross a page boundary. */
Ian Campbell6a8ed462012-10-10 03:48:42 +0000310 BUG_ON(size + offset > PAGE_SIZE<<compound_order(page));
Ian Campbellf942dc22011-03-15 00:06:18 +0000311
312 meta = npo->meta + npo->meta_prod - 1;
313
Ian Campbell6a8ed462012-10-10 03:48:42 +0000314 /* Skip unused frames from start of page */
315 page += offset >> PAGE_SHIFT;
316 offset &= ~PAGE_MASK;
317
Ian Campbellf942dc22011-03-15 00:06:18 +0000318 while (size > 0) {
Ian Campbell6a8ed462012-10-10 03:48:42 +0000319 BUG_ON(offset >= PAGE_SIZE);
Ian Campbellf942dc22011-03-15 00:06:18 +0000320 BUG_ON(npo->copy_off > MAX_BUFFER_OFFSET);
321
Ian Campbell6a8ed462012-10-10 03:48:42 +0000322 bytes = PAGE_SIZE - offset;
323
324 if (bytes > size)
325 bytes = size;
326
327 if (start_new_rx_buffer(npo->copy_off, bytes, *head)) {
Ian Campbellf942dc22011-03-15 00:06:18 +0000328 /*
329 * Netfront requires there to be some data in the head
330 * buffer.
331 */
332 BUG_ON(*head);
333
334 meta = get_next_rx_buffer(vif, npo);
335 }
336
Ian Campbellf942dc22011-03-15 00:06:18 +0000337 if (npo->copy_off + bytes > MAX_BUFFER_OFFSET)
338 bytes = MAX_BUFFER_OFFSET - npo->copy_off;
339
340 copy_gop = npo->copy + npo->copy_prod++;
341 copy_gop->flags = GNTCOPY_dest_gref;
Wei Liub3f980b2013-08-26 12:59:38 +0100342 copy_gop->len = bytes;
343
Wei Liu43e9d192013-08-26 12:59:37 +0100344 copy_gop->source.domid = DOMID_SELF;
345 copy_gop->source.u.gmfn = virt_to_mfn(page_address(page));
Ian Campbellf942dc22011-03-15 00:06:18 +0000346 copy_gop->source.offset = offset;
Ian Campbellf942dc22011-03-15 00:06:18 +0000347
Wei Liub3f980b2013-08-26 12:59:38 +0100348 copy_gop->dest.domid = vif->domid;
Ian Campbellf942dc22011-03-15 00:06:18 +0000349 copy_gop->dest.offset = npo->copy_off;
350 copy_gop->dest.u.ref = npo->copy_gref;
Ian Campbellf942dc22011-03-15 00:06:18 +0000351
352 npo->copy_off += bytes;
353 meta->size += bytes;
354
355 offset += bytes;
356 size -= bytes;
357
Ian Campbell6a8ed462012-10-10 03:48:42 +0000358 /* Next frame */
359 if (offset == PAGE_SIZE && size) {
360 BUG_ON(!PageCompound(page));
361 page++;
362 offset = 0;
363 }
364
Ian Campbellf942dc22011-03-15 00:06:18 +0000365 /* Leave a gap for the GSO descriptor. */
366 if (*head && skb_shinfo(skb)->gso_size && !vif->gso_prefix)
367 vif->rx.req_cons++;
368
369 *head = 0; /* There must be something in this buffer now. */
370
371 }
372}
373
374/*
375 * Prepare an SKB to be transmitted to the frontend.
376 *
377 * This function is responsible for allocating grant operations, meta
378 * structures, etc.
379 *
380 * It returns the number of meta structures consumed. The number of
381 * ring slots used is always equal to the number of meta slots used
382 * plus the number of GSO descriptors used. Currently, we use either
383 * zero GSO descriptors (for non-GSO packets) or one descriptor (for
384 * frontend-side LRO).
385 */
Wei Liu73764192013-08-26 12:59:39 +0100386static int xenvif_gop_skb(struct sk_buff *skb,
387 struct netrx_pending_operations *npo)
Ian Campbellf942dc22011-03-15 00:06:18 +0000388{
389 struct xenvif *vif = netdev_priv(skb->dev);
390 int nr_frags = skb_shinfo(skb)->nr_frags;
391 int i;
392 struct xen_netif_rx_request *req;
Wei Liub3f980b2013-08-26 12:59:38 +0100393 struct xenvif_rx_meta *meta;
Ian Campbellf942dc22011-03-15 00:06:18 +0000394 unsigned char *data;
395 int head = 1;
396 int old_meta_prod;
397
398 old_meta_prod = npo->meta_prod;
399
400 /* Set up a GSO prefix descriptor, if necessary */
401 if (skb_shinfo(skb)->gso_size && vif->gso_prefix) {
402 req = RING_GET_REQUEST(&vif->rx, vif->rx.req_cons++);
403 meta = npo->meta + npo->meta_prod++;
404 meta->gso_size = skb_shinfo(skb)->gso_size;
405 meta->size = 0;
406 meta->id = req->id;
407 }
408
409 req = RING_GET_REQUEST(&vif->rx, vif->rx.req_cons++);
410 meta = npo->meta + npo->meta_prod++;
411
412 if (!vif->gso_prefix)
413 meta->gso_size = skb_shinfo(skb)->gso_size;
414 else
415 meta->gso_size = 0;
416
417 meta->size = 0;
418 meta->id = req->id;
419 npo->copy_off = 0;
420 npo->copy_gref = req->gref;
421
422 data = skb->data;
423 while (data < skb_tail_pointer(skb)) {
424 unsigned int offset = offset_in_page(data);
425 unsigned int len = PAGE_SIZE - offset;
426
427 if (data + len > skb_tail_pointer(skb))
428 len = skb_tail_pointer(skb) - data;
429
Wei Liu73764192013-08-26 12:59:39 +0100430 xenvif_gop_frag_copy(vif, skb, npo,
431 virt_to_page(data), len, offset, &head);
Ian Campbellf942dc22011-03-15 00:06:18 +0000432 data += len;
433 }
434
435 for (i = 0; i < nr_frags; i++) {
Wei Liu73764192013-08-26 12:59:39 +0100436 xenvif_gop_frag_copy(vif, skb, npo,
437 skb_frag_page(&skb_shinfo(skb)->frags[i]),
438 skb_frag_size(&skb_shinfo(skb)->frags[i]),
439 skb_shinfo(skb)->frags[i].page_offset,
440 &head);
Ian Campbellf942dc22011-03-15 00:06:18 +0000441 }
442
443 return npo->meta_prod - old_meta_prod;
444}
445
446/*
Wei Liu73764192013-08-26 12:59:39 +0100447 * This is a twin to xenvif_gop_skb. Assume that xenvif_gop_skb was
Ian Campbellf942dc22011-03-15 00:06:18 +0000448 * used to set up the operations on the top of
449 * netrx_pending_operations, which have since been done. Check that
450 * they didn't give any errors and advance over them.
451 */
Wei Liu73764192013-08-26 12:59:39 +0100452static int xenvif_check_gop(struct xenvif *vif, int nr_meta_slots,
453 struct netrx_pending_operations *npo)
Ian Campbellf942dc22011-03-15 00:06:18 +0000454{
455 struct gnttab_copy *copy_op;
456 int status = XEN_NETIF_RSP_OKAY;
457 int i;
458
459 for (i = 0; i < nr_meta_slots; i++) {
460 copy_op = npo->copy + npo->copy_cons++;
461 if (copy_op->status != GNTST_okay) {
462 netdev_dbg(vif->dev,
463 "Bad status %d from copy to DOM%d.\n",
464 copy_op->status, vif->domid);
465 status = XEN_NETIF_RSP_ERROR;
466 }
467 }
468
469 return status;
470}
471
Wei Liu73764192013-08-26 12:59:39 +0100472static void xenvif_add_frag_responses(struct xenvif *vif, int status,
473 struct xenvif_rx_meta *meta,
474 int nr_meta_slots)
Ian Campbellf942dc22011-03-15 00:06:18 +0000475{
476 int i;
477 unsigned long offset;
478
479 /* No fragments used */
480 if (nr_meta_slots <= 1)
481 return;
482
483 nr_meta_slots--;
484
485 for (i = 0; i < nr_meta_slots; i++) {
486 int flags;
487 if (i == nr_meta_slots - 1)
488 flags = 0;
489 else
490 flags = XEN_NETRXF_more_data;
491
492 offset = 0;
493 make_rx_response(vif, meta[i].id, status, offset,
494 meta[i].size, flags);
495 }
496}
497
498struct skb_cb_overlay {
499 int meta_slots_used;
500};
501
Wei Liu73764192013-08-26 12:59:39 +0100502static void xenvif_kick_thread(struct xenvif *vif)
Ian Campbellf942dc22011-03-15 00:06:18 +0000503{
Wei Liub3f980b2013-08-26 12:59:38 +0100504 wake_up(&vif->wq);
505}
506
Wei Liu73764192013-08-26 12:59:39 +0100507void xenvif_rx_action(struct xenvif *vif)
Wei Liub3f980b2013-08-26 12:59:38 +0100508{
Ian Campbellf942dc22011-03-15 00:06:18 +0000509 s8 status;
Wei Liue1f00a692013-05-22 06:34:45 +0000510 u16 flags;
Ian Campbellf942dc22011-03-15 00:06:18 +0000511 struct xen_netif_rx_response *resp;
512 struct sk_buff_head rxq;
513 struct sk_buff *skb;
514 LIST_HEAD(notify);
515 int ret;
516 int nr_frags;
517 int count;
518 unsigned long offset;
519 struct skb_cb_overlay *sco;
Wei Liub3f980b2013-08-26 12:59:38 +0100520 int need_to_notify = 0;
Ian Campbellf942dc22011-03-15 00:06:18 +0000521
522 struct netrx_pending_operations npo = {
Wei Liub3f980b2013-08-26 12:59:38 +0100523 .copy = vif->grant_copy_op,
524 .meta = vif->meta,
Ian Campbellf942dc22011-03-15 00:06:18 +0000525 };
526
527 skb_queue_head_init(&rxq);
528
529 count = 0;
530
Wei Liub3f980b2013-08-26 12:59:38 +0100531 while ((skb = skb_dequeue(&vif->rx_queue)) != NULL) {
Ian Campbellf942dc22011-03-15 00:06:18 +0000532 vif = netdev_priv(skb->dev);
533 nr_frags = skb_shinfo(skb)->nr_frags;
534
535 sco = (struct skb_cb_overlay *)skb->cb;
Wei Liu73764192013-08-26 12:59:39 +0100536 sco->meta_slots_used = xenvif_gop_skb(skb, &npo);
Ian Campbellf942dc22011-03-15 00:06:18 +0000537
538 count += nr_frags + 1;
539
540 __skb_queue_tail(&rxq, skb);
541
542 /* Filled the batch queue? */
Wei Liu2810e5b2013-04-22 02:20:42 +0000543 /* XXX FIXME: RX path dependent on MAX_SKB_FRAGS */
Ian Campbellf942dc22011-03-15 00:06:18 +0000544 if (count + MAX_SKB_FRAGS >= XEN_NETIF_RX_RING_SIZE)
545 break;
546 }
547
Wei Liub3f980b2013-08-26 12:59:38 +0100548 BUG_ON(npo.meta_prod > ARRAY_SIZE(vif->meta));
Ian Campbellf942dc22011-03-15 00:06:18 +0000549
550 if (!npo.copy_prod)
551 return;
552
Wei Liub3f980b2013-08-26 12:59:38 +0100553 BUG_ON(npo.copy_prod > ARRAY_SIZE(vif->grant_copy_op));
554 gnttab_batch_copy(vif->grant_copy_op, npo.copy_prod);
Ian Campbellf942dc22011-03-15 00:06:18 +0000555
556 while ((skb = __skb_dequeue(&rxq)) != NULL) {
557 sco = (struct skb_cb_overlay *)skb->cb;
558
559 vif = netdev_priv(skb->dev);
560
Wei Liub3f980b2013-08-26 12:59:38 +0100561 if (vif->meta[npo.meta_cons].gso_size && vif->gso_prefix) {
Ian Campbellf942dc22011-03-15 00:06:18 +0000562 resp = RING_GET_RESPONSE(&vif->rx,
Wei Liub3f980b2013-08-26 12:59:38 +0100563 vif->rx.rsp_prod_pvt++);
Ian Campbellf942dc22011-03-15 00:06:18 +0000564
565 resp->flags = XEN_NETRXF_gso_prefix | XEN_NETRXF_more_data;
566
Wei Liub3f980b2013-08-26 12:59:38 +0100567 resp->offset = vif->meta[npo.meta_cons].gso_size;
568 resp->id = vif->meta[npo.meta_cons].id;
Ian Campbellf942dc22011-03-15 00:06:18 +0000569 resp->status = sco->meta_slots_used;
570
571 npo.meta_cons++;
572 sco->meta_slots_used--;
573 }
574
575
576 vif->dev->stats.tx_bytes += skb->len;
577 vif->dev->stats.tx_packets++;
578
Wei Liu73764192013-08-26 12:59:39 +0100579 status = xenvif_check_gop(vif, sco->meta_slots_used, &npo);
Ian Campbellf942dc22011-03-15 00:06:18 +0000580
581 if (sco->meta_slots_used == 1)
582 flags = 0;
583 else
584 flags = XEN_NETRXF_more_data;
585
586 if (skb->ip_summed == CHECKSUM_PARTIAL) /* local packet? */
587 flags |= XEN_NETRXF_csum_blank | XEN_NETRXF_data_validated;
588 else if (skb->ip_summed == CHECKSUM_UNNECESSARY)
589 /* remote but checksummed. */
590 flags |= XEN_NETRXF_data_validated;
591
592 offset = 0;
Wei Liub3f980b2013-08-26 12:59:38 +0100593 resp = make_rx_response(vif, vif->meta[npo.meta_cons].id,
Ian Campbellf942dc22011-03-15 00:06:18 +0000594 status, offset,
Wei Liub3f980b2013-08-26 12:59:38 +0100595 vif->meta[npo.meta_cons].size,
Ian Campbellf942dc22011-03-15 00:06:18 +0000596 flags);
597
Wei Liub3f980b2013-08-26 12:59:38 +0100598 if (vif->meta[npo.meta_cons].gso_size && !vif->gso_prefix) {
Ian Campbellf942dc22011-03-15 00:06:18 +0000599 struct xen_netif_extra_info *gso =
600 (struct xen_netif_extra_info *)
601 RING_GET_RESPONSE(&vif->rx,
602 vif->rx.rsp_prod_pvt++);
603
604 resp->flags |= XEN_NETRXF_extra_info;
605
Wei Liub3f980b2013-08-26 12:59:38 +0100606 gso->u.gso.size = vif->meta[npo.meta_cons].gso_size;
Ian Campbellf942dc22011-03-15 00:06:18 +0000607 gso->u.gso.type = XEN_NETIF_GSO_TYPE_TCPV4;
608 gso->u.gso.pad = 0;
609 gso->u.gso.features = 0;
610
611 gso->type = XEN_NETIF_EXTRA_TYPE_GSO;
612 gso->flags = 0;
613 }
614
Wei Liu73764192013-08-26 12:59:39 +0100615 xenvif_add_frag_responses(vif, status,
616 vif->meta + npo.meta_cons + 1,
617 sco->meta_slots_used);
Ian Campbellf942dc22011-03-15 00:06:18 +0000618
619 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&vif->rx, ret);
Ian Campbellf942dc22011-03-15 00:06:18 +0000620
Wei Liub3f980b2013-08-26 12:59:38 +0100621 if (ret)
622 need_to_notify = 1;
623
Ian Campbellf942dc22011-03-15 00:06:18 +0000624 xenvif_notify_tx_completion(vif);
625
Ian Campbellf942dc22011-03-15 00:06:18 +0000626 npo.meta_cons += sco->meta_slots_used;
627 dev_kfree_skb(skb);
628 }
629
Wei Liub3f980b2013-08-26 12:59:38 +0100630 if (need_to_notify)
Wei Liue1f00a692013-05-22 06:34:45 +0000631 notify_remote_via_irq(vif->rx_irq);
Ian Campbellf942dc22011-03-15 00:06:18 +0000632
633 /* More work to do? */
Wei Liub3f980b2013-08-26 12:59:38 +0100634 if (!skb_queue_empty(&vif->rx_queue))
Wei Liu73764192013-08-26 12:59:39 +0100635 xenvif_kick_thread(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000636}
637
Wei Liu73764192013-08-26 12:59:39 +0100638void xenvif_queue_tx_skb(struct xenvif *vif, struct sk_buff *skb)
Ian Campbellf942dc22011-03-15 00:06:18 +0000639{
Wei Liub3f980b2013-08-26 12:59:38 +0100640 skb_queue_tail(&vif->rx_queue, skb);
Ian Campbellf942dc22011-03-15 00:06:18 +0000641
Wei Liu73764192013-08-26 12:59:39 +0100642 xenvif_kick_thread(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000643}
644
Wei Liu73764192013-08-26 12:59:39 +0100645void xenvif_check_rx_xenvif(struct xenvif *vif)
Ian Campbellf942dc22011-03-15 00:06:18 +0000646{
647 int more_to_do;
648
649 RING_FINAL_CHECK_FOR_REQUESTS(&vif->tx, more_to_do);
650
651 if (more_to_do)
Wei Liub3f980b2013-08-26 12:59:38 +0100652 napi_schedule(&vif->napi);
Ian Campbellf942dc22011-03-15 00:06:18 +0000653}
654
655static void tx_add_credit(struct xenvif *vif)
656{
657 unsigned long max_burst, max_credit;
658
659 /*
660 * Allow a burst big enough to transmit a jumbo packet of up to 128kB.
661 * Otherwise the interface can seize up due to insufficient credit.
662 */
663 max_burst = RING_GET_REQUEST(&vif->tx, vif->tx.req_cons)->size;
664 max_burst = min(max_burst, 131072UL);
665 max_burst = max(max_burst, vif->credit_bytes);
666
667 /* Take care that adding a new chunk of credit doesn't wrap to zero. */
668 max_credit = vif->remaining_credit + vif->credit_bytes;
669 if (max_credit < vif->remaining_credit)
670 max_credit = ULONG_MAX; /* wrapped: clamp to ULONG_MAX */
671
672 vif->remaining_credit = min(max_credit, max_burst);
673}
674
675static void tx_credit_callback(unsigned long data)
676{
677 struct xenvif *vif = (struct xenvif *)data;
678 tx_add_credit(vif);
Wei Liu73764192013-08-26 12:59:39 +0100679 xenvif_check_rx_xenvif(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000680}
681
Wei Liu73764192013-08-26 12:59:39 +0100682static void xenvif_tx_err(struct xenvif *vif,
683 struct xen_netif_tx_request *txp, RING_IDX end)
Ian Campbellf942dc22011-03-15 00:06:18 +0000684{
685 RING_IDX cons = vif->tx.req_cons;
686
687 do {
688 make_tx_response(vif, txp, XEN_NETIF_RSP_ERROR);
Ian Campbellb9149722013-02-06 23:41:38 +0000689 if (cons == end)
Ian Campbellf942dc22011-03-15 00:06:18 +0000690 break;
691 txp = RING_GET_REQUEST(&vif->tx, cons++);
692 } while (1);
693 vif->tx.req_cons = cons;
Ian Campbellf942dc22011-03-15 00:06:18 +0000694}
695
Wei Liu73764192013-08-26 12:59:39 +0100696static void xenvif_fatal_tx_err(struct xenvif *vif)
Ian Campbell488562862013-02-06 23:41:35 +0000697{
698 netdev_err(vif->dev, "fatal error; disabling device\n");
699 xenvif_carrier_off(vif);
Ian Campbell488562862013-02-06 23:41:35 +0000700}
701
Wei Liu73764192013-08-26 12:59:39 +0100702static int xenvif_count_requests(struct xenvif *vif,
703 struct xen_netif_tx_request *first,
704 struct xen_netif_tx_request *txp,
705 int work_to_do)
Ian Campbellf942dc22011-03-15 00:06:18 +0000706{
707 RING_IDX cons = vif->tx.req_cons;
Wei Liu2810e5b2013-04-22 02:20:42 +0000708 int slots = 0;
709 int drop_err = 0;
Wei Liu59ccb4e2013-05-02 00:43:58 +0000710 int more_data;
Ian Campbellf942dc22011-03-15 00:06:18 +0000711
712 if (!(first->flags & XEN_NETTXF_more_data))
713 return 0;
714
715 do {
Wei Liu59ccb4e2013-05-02 00:43:58 +0000716 struct xen_netif_tx_request dropped_tx = { 0 };
717
Wei Liu2810e5b2013-04-22 02:20:42 +0000718 if (slots >= work_to_do) {
719 netdev_err(vif->dev,
720 "Asked for %d slots but exceeds this limit\n",
721 work_to_do);
Wei Liu73764192013-08-26 12:59:39 +0100722 xenvif_fatal_tx_err(vif);
David Vrabel35876b52013-02-14 03:18:57 +0000723 return -ENODATA;
Ian Campbellf942dc22011-03-15 00:06:18 +0000724 }
725
Wei Liu2810e5b2013-04-22 02:20:42 +0000726 /* This guest is really using too many slots and
727 * considered malicious.
728 */
Wei Liu37641492013-05-02 00:43:59 +0000729 if (unlikely(slots >= fatal_skb_slots)) {
Wei Liu2810e5b2013-04-22 02:20:42 +0000730 netdev_err(vif->dev,
731 "Malicious frontend using %d slots, threshold %u\n",
Wei Liu37641492013-05-02 00:43:59 +0000732 slots, fatal_skb_slots);
Wei Liu73764192013-08-26 12:59:39 +0100733 xenvif_fatal_tx_err(vif);
David Vrabel35876b52013-02-14 03:18:57 +0000734 return -E2BIG;
Ian Campbellf942dc22011-03-15 00:06:18 +0000735 }
736
Wei Liu2810e5b2013-04-22 02:20:42 +0000737 /* Xen network protocol had implicit dependency on
Wei Liu37641492013-05-02 00:43:59 +0000738 * MAX_SKB_FRAGS. XEN_NETBK_LEGACY_SLOTS_MAX is set to
739 * the historical MAX_SKB_FRAGS value 18 to honor the
740 * same behavior as before. Any packet using more than
741 * 18 slots but less than fatal_skb_slots slots is
742 * dropped
Wei Liu2810e5b2013-04-22 02:20:42 +0000743 */
Wei Liu37641492013-05-02 00:43:59 +0000744 if (!drop_err && slots >= XEN_NETBK_LEGACY_SLOTS_MAX) {
Wei Liu2810e5b2013-04-22 02:20:42 +0000745 if (net_ratelimit())
746 netdev_dbg(vif->dev,
747 "Too many slots (%d) exceeding limit (%d), dropping packet\n",
Wei Liu37641492013-05-02 00:43:59 +0000748 slots, XEN_NETBK_LEGACY_SLOTS_MAX);
Wei Liu2810e5b2013-04-22 02:20:42 +0000749 drop_err = -E2BIG;
750 }
751
Wei Liu59ccb4e2013-05-02 00:43:58 +0000752 if (drop_err)
753 txp = &dropped_tx;
754
Wei Liu2810e5b2013-04-22 02:20:42 +0000755 memcpy(txp, RING_GET_REQUEST(&vif->tx, cons + slots),
Ian Campbellf942dc22011-03-15 00:06:18 +0000756 sizeof(*txp));
Wei Liu03393fd52013-04-22 02:20:43 +0000757
758 /* If the guest submitted a frame >= 64 KiB then
759 * first->size overflowed and following slots will
760 * appear to be larger than the frame.
761 *
762 * This cannot be fatal error as there are buggy
763 * frontends that do this.
764 *
765 * Consume all slots and drop the packet.
766 */
767 if (!drop_err && txp->size > first->size) {
768 if (net_ratelimit())
769 netdev_dbg(vif->dev,
770 "Invalid tx request, slot size %u > remaining size %u\n",
771 txp->size, first->size);
772 drop_err = -EIO;
Ian Campbellf942dc22011-03-15 00:06:18 +0000773 }
774
775 first->size -= txp->size;
Wei Liu2810e5b2013-04-22 02:20:42 +0000776 slots++;
Ian Campbellf942dc22011-03-15 00:06:18 +0000777
778 if (unlikely((txp->offset + txp->size) > PAGE_SIZE)) {
Wei Liu2810e5b2013-04-22 02:20:42 +0000779 netdev_err(vif->dev, "Cross page boundary, txp->offset: %x, size: %u\n",
Ian Campbellf942dc22011-03-15 00:06:18 +0000780 txp->offset, txp->size);
Wei Liu73764192013-08-26 12:59:39 +0100781 xenvif_fatal_tx_err(vif);
David Vrabel35876b52013-02-14 03:18:57 +0000782 return -EINVAL;
Ian Campbellf942dc22011-03-15 00:06:18 +0000783 }
Wei Liu59ccb4e2013-05-02 00:43:58 +0000784
785 more_data = txp->flags & XEN_NETTXF_more_data;
786
787 if (!drop_err)
788 txp++;
789
790 } while (more_data);
Wei Liu2810e5b2013-04-22 02:20:42 +0000791
792 if (drop_err) {
Wei Liu73764192013-08-26 12:59:39 +0100793 xenvif_tx_err(vif, first, cons + slots);
Wei Liu2810e5b2013-04-22 02:20:42 +0000794 return drop_err;
795 }
796
797 return slots;
Ian Campbellf942dc22011-03-15 00:06:18 +0000798}
799
Wei Liu73764192013-08-26 12:59:39 +0100800static struct page *xenvif_alloc_page(struct xenvif *vif,
801 u16 pending_idx)
Ian Campbellf942dc22011-03-15 00:06:18 +0000802{
803 struct page *page;
Wei Liub3f980b2013-08-26 12:59:38 +0100804
805 page = alloc_page(GFP_ATOMIC|__GFP_COLD);
Ian Campbellf942dc22011-03-15 00:06:18 +0000806 if (!page)
807 return NULL;
Wei Liub3f980b2013-08-26 12:59:38 +0100808 vif->mmap_pages[pending_idx] = page;
809
Ian Campbellf942dc22011-03-15 00:06:18 +0000810 return page;
811}
812
Wei Liu73764192013-08-26 12:59:39 +0100813static struct gnttab_copy *xenvif_get_requests(struct xenvif *vif,
814 struct sk_buff *skb,
815 struct xen_netif_tx_request *txp,
816 struct gnttab_copy *gop)
Ian Campbellf942dc22011-03-15 00:06:18 +0000817{
818 struct skb_shared_info *shinfo = skb_shinfo(skb);
819 skb_frag_t *frags = shinfo->frags;
Ian Campbellea066ad2011-10-05 00:28:46 +0000820 u16 pending_idx = *((u16 *)skb->data);
Wei Liu2810e5b2013-04-22 02:20:42 +0000821 u16 head_idx = 0;
822 int slot, start;
823 struct page *page;
824 pending_ring_idx_t index, start_idx = 0;
825 uint16_t dst_offset;
826 unsigned int nr_slots;
827 struct pending_tx_info *first = NULL;
828
829 /* At this point shinfo->nr_frags is in fact the number of
Wei Liu37641492013-05-02 00:43:59 +0000830 * slots, which can be as large as XEN_NETBK_LEGACY_SLOTS_MAX.
Wei Liu2810e5b2013-04-22 02:20:42 +0000831 */
832 nr_slots = shinfo->nr_frags;
Ian Campbellf942dc22011-03-15 00:06:18 +0000833
834 /* Skip first skb fragment if it is on same page as header fragment. */
Ian Campbellea066ad2011-10-05 00:28:46 +0000835 start = (frag_get_pending_idx(&shinfo->frags[0]) == pending_idx);
Ian Campbellf942dc22011-03-15 00:06:18 +0000836
Wei Liu2810e5b2013-04-22 02:20:42 +0000837 /* Coalesce tx requests, at this point the packet passed in
838 * should be <= 64K. Any packets larger than 64K have been
Wei Liu73764192013-08-26 12:59:39 +0100839 * handled in xenvif_count_requests().
Wei Liu2810e5b2013-04-22 02:20:42 +0000840 */
841 for (shinfo->nr_frags = slot = start; slot < nr_slots;
842 shinfo->nr_frags++) {
Ian Campbellf942dc22011-03-15 00:06:18 +0000843 struct pending_tx_info *pending_tx_info =
Wei Liub3f980b2013-08-26 12:59:38 +0100844 vif->pending_tx_info;
Ian Campbellf942dc22011-03-15 00:06:18 +0000845
Wei Liub3f980b2013-08-26 12:59:38 +0100846 page = alloc_page(GFP_ATOMIC|__GFP_COLD);
Ian Campbellf942dc22011-03-15 00:06:18 +0000847 if (!page)
Ian Campbell4cc7c1c2013-02-06 23:41:37 +0000848 goto err;
Ian Campbellf942dc22011-03-15 00:06:18 +0000849
Wei Liu2810e5b2013-04-22 02:20:42 +0000850 dst_offset = 0;
851 first = NULL;
852 while (dst_offset < PAGE_SIZE && slot < nr_slots) {
853 gop->flags = GNTCOPY_source_gref;
Ian Campbellf942dc22011-03-15 00:06:18 +0000854
Wei Liu2810e5b2013-04-22 02:20:42 +0000855 gop->source.u.ref = txp->gref;
856 gop->source.domid = vif->domid;
857 gop->source.offset = txp->offset;
Ian Campbellf942dc22011-03-15 00:06:18 +0000858
Wei Liu2810e5b2013-04-22 02:20:42 +0000859 gop->dest.domid = DOMID_SELF;
Ian Campbellf942dc22011-03-15 00:06:18 +0000860
Wei Liu2810e5b2013-04-22 02:20:42 +0000861 gop->dest.offset = dst_offset;
862 gop->dest.u.gmfn = virt_to_mfn(page_address(page));
Ian Campbellf942dc22011-03-15 00:06:18 +0000863
Wei Liu2810e5b2013-04-22 02:20:42 +0000864 if (dst_offset + txp->size > PAGE_SIZE) {
865 /* This page can only merge a portion
866 * of tx request. Do not increment any
867 * pointer / counter here. The txp
868 * will be dealt with in future
869 * rounds, eventually hitting the
870 * `else` branch.
871 */
872 gop->len = PAGE_SIZE - dst_offset;
873 txp->offset += gop->len;
874 txp->size -= gop->len;
875 dst_offset += gop->len; /* quit loop */
876 } else {
877 /* This tx request can be merged in the page */
878 gop->len = txp->size;
879 dst_offset += gop->len;
880
Wei Liub3f980b2013-08-26 12:59:38 +0100881 index = pending_index(vif->pending_cons++);
Wei Liu2810e5b2013-04-22 02:20:42 +0000882
Wei Liub3f980b2013-08-26 12:59:38 +0100883 pending_idx = vif->pending_ring[index];
Wei Liu2810e5b2013-04-22 02:20:42 +0000884
885 memcpy(&pending_tx_info[pending_idx].req, txp,
886 sizeof(*txp));
Wei Liu2810e5b2013-04-22 02:20:42 +0000887
888 /* Poison these fields, corresponding
889 * fields for head tx req will be set
890 * to correct values after the loop.
891 */
Wei Liub3f980b2013-08-26 12:59:38 +0100892 vif->mmap_pages[pending_idx] = (void *)(~0UL);
Wei Liu2810e5b2013-04-22 02:20:42 +0000893 pending_tx_info[pending_idx].head =
894 INVALID_PENDING_RING_IDX;
895
896 if (!first) {
897 first = &pending_tx_info[pending_idx];
898 start_idx = index;
899 head_idx = pending_idx;
900 }
901
902 txp++;
903 slot++;
904 }
905
906 gop++;
907 }
908
909 first->req.offset = 0;
910 first->req.size = dst_offset;
911 first->head = start_idx;
Wei Liub3f980b2013-08-26 12:59:38 +0100912 vif->mmap_pages[head_idx] = page;
Wei Liu2810e5b2013-04-22 02:20:42 +0000913 frag_set_pending_idx(&frags[shinfo->nr_frags], head_idx);
Ian Campbellf942dc22011-03-15 00:06:18 +0000914 }
915
Wei Liu2810e5b2013-04-22 02:20:42 +0000916 BUG_ON(shinfo->nr_frags > MAX_SKB_FRAGS);
917
Ian Campbellf942dc22011-03-15 00:06:18 +0000918 return gop;
Ian Campbell4cc7c1c2013-02-06 23:41:37 +0000919err:
920 /* Unwind, freeing all pages and sending error responses. */
Wei Liu2810e5b2013-04-22 02:20:42 +0000921 while (shinfo->nr_frags-- > start) {
Wei Liu73764192013-08-26 12:59:39 +0100922 xenvif_idx_release(vif,
Wei Liu2810e5b2013-04-22 02:20:42 +0000923 frag_get_pending_idx(&frags[shinfo->nr_frags]),
924 XEN_NETIF_RSP_ERROR);
Ian Campbell4cc7c1c2013-02-06 23:41:37 +0000925 }
926 /* The head too, if necessary. */
927 if (start)
Wei Liu73764192013-08-26 12:59:39 +0100928 xenvif_idx_release(vif, pending_idx, XEN_NETIF_RSP_ERROR);
Ian Campbell4cc7c1c2013-02-06 23:41:37 +0000929
930 return NULL;
Ian Campbellf942dc22011-03-15 00:06:18 +0000931}
932
Wei Liu73764192013-08-26 12:59:39 +0100933static int xenvif_tx_check_gop(struct xenvif *vif,
934 struct sk_buff *skb,
935 struct gnttab_copy **gopp)
Ian Campbellf942dc22011-03-15 00:06:18 +0000936{
937 struct gnttab_copy *gop = *gopp;
Ian Campbellea066ad2011-10-05 00:28:46 +0000938 u16 pending_idx = *((u16 *)skb->data);
Ian Campbellf942dc22011-03-15 00:06:18 +0000939 struct skb_shared_info *shinfo = skb_shinfo(skb);
Wei Liu2810e5b2013-04-22 02:20:42 +0000940 struct pending_tx_info *tx_info;
Ian Campbellf942dc22011-03-15 00:06:18 +0000941 int nr_frags = shinfo->nr_frags;
942 int i, err, start;
Wei Liu2810e5b2013-04-22 02:20:42 +0000943 u16 peek; /* peek into next tx request */
Ian Campbellf942dc22011-03-15 00:06:18 +0000944
945 /* Check status of header. */
946 err = gop->status;
Matthew Daley7d5145d2013-02-06 23:41:36 +0000947 if (unlikely(err))
Wei Liu73764192013-08-26 12:59:39 +0100948 xenvif_idx_release(vif, pending_idx, XEN_NETIF_RSP_ERROR);
Ian Campbellf942dc22011-03-15 00:06:18 +0000949
950 /* Skip first skb fragment if it is on same page as header fragment. */
Ian Campbellea066ad2011-10-05 00:28:46 +0000951 start = (frag_get_pending_idx(&shinfo->frags[0]) == pending_idx);
Ian Campbellf942dc22011-03-15 00:06:18 +0000952
953 for (i = start; i < nr_frags; i++) {
954 int j, newerr;
Wei Liu2810e5b2013-04-22 02:20:42 +0000955 pending_ring_idx_t head;
Ian Campbellf942dc22011-03-15 00:06:18 +0000956
Ian Campbellea066ad2011-10-05 00:28:46 +0000957 pending_idx = frag_get_pending_idx(&shinfo->frags[i]);
Wei Liub3f980b2013-08-26 12:59:38 +0100958 tx_info = &vif->pending_tx_info[pending_idx];
Wei Liu2810e5b2013-04-22 02:20:42 +0000959 head = tx_info->head;
Ian Campbellf942dc22011-03-15 00:06:18 +0000960
961 /* Check error status: if okay then remember grant handle. */
Wei Liu2810e5b2013-04-22 02:20:42 +0000962 do {
963 newerr = (++gop)->status;
964 if (newerr)
965 break;
Wei Liub3f980b2013-08-26 12:59:38 +0100966 peek = vif->pending_ring[pending_index(++head)];
967 } while (!pending_tx_is_head(vif, peek));
Wei Liu2810e5b2013-04-22 02:20:42 +0000968
Ian Campbellf942dc22011-03-15 00:06:18 +0000969 if (likely(!newerr)) {
970 /* Had a previous error? Invalidate this fragment. */
971 if (unlikely(err))
Wei Liu73764192013-08-26 12:59:39 +0100972 xenvif_idx_release(vif, pending_idx,
973 XEN_NETIF_RSP_OKAY);
Ian Campbellf942dc22011-03-15 00:06:18 +0000974 continue;
975 }
976
977 /* Error on this fragment: respond to client with an error. */
Wei Liu73764192013-08-26 12:59:39 +0100978 xenvif_idx_release(vif, pending_idx, XEN_NETIF_RSP_ERROR);
Ian Campbellf942dc22011-03-15 00:06:18 +0000979
980 /* Not the first error? Preceding frags already invalidated. */
981 if (err)
982 continue;
983
984 /* First error: invalidate header and preceding fragments. */
985 pending_idx = *((u16 *)skb->data);
Wei Liu73764192013-08-26 12:59:39 +0100986 xenvif_idx_release(vif, pending_idx, XEN_NETIF_RSP_OKAY);
Ian Campbellf942dc22011-03-15 00:06:18 +0000987 for (j = start; j < i; j++) {
Jan Beulich5ccb3ea2011-11-18 05:42:05 +0000988 pending_idx = frag_get_pending_idx(&shinfo->frags[j]);
Wei Liu73764192013-08-26 12:59:39 +0100989 xenvif_idx_release(vif, pending_idx,
990 XEN_NETIF_RSP_OKAY);
Ian Campbellf942dc22011-03-15 00:06:18 +0000991 }
992
993 /* Remember the error: invalidate all subsequent fragments. */
994 err = newerr;
995 }
996
997 *gopp = gop + 1;
998 return err;
999}
1000
Wei Liu73764192013-08-26 12:59:39 +01001001static void xenvif_fill_frags(struct xenvif *vif, struct sk_buff *skb)
Ian Campbellf942dc22011-03-15 00:06:18 +00001002{
1003 struct skb_shared_info *shinfo = skb_shinfo(skb);
1004 int nr_frags = shinfo->nr_frags;
1005 int i;
1006
1007 for (i = 0; i < nr_frags; i++) {
1008 skb_frag_t *frag = shinfo->frags + i;
1009 struct xen_netif_tx_request *txp;
Ian Campbellea066ad2011-10-05 00:28:46 +00001010 struct page *page;
1011 u16 pending_idx;
Ian Campbellf942dc22011-03-15 00:06:18 +00001012
Ian Campbellea066ad2011-10-05 00:28:46 +00001013 pending_idx = frag_get_pending_idx(frag);
Ian Campbellf942dc22011-03-15 00:06:18 +00001014
Wei Liub3f980b2013-08-26 12:59:38 +01001015 txp = &vif->pending_tx_info[pending_idx].req;
1016 page = virt_to_page(idx_to_kaddr(vif, pending_idx));
Ian Campbellea066ad2011-10-05 00:28:46 +00001017 __skb_fill_page_desc(skb, i, page, txp->offset, txp->size);
Ian Campbellf942dc22011-03-15 00:06:18 +00001018 skb->len += txp->size;
1019 skb->data_len += txp->size;
1020 skb->truesize += txp->size;
1021
Wei Liu73764192013-08-26 12:59:39 +01001022 /* Take an extra reference to offset xenvif_idx_release */
Wei Liub3f980b2013-08-26 12:59:38 +01001023 get_page(vif->mmap_pages[pending_idx]);
Wei Liu73764192013-08-26 12:59:39 +01001024 xenvif_idx_release(vif, pending_idx, XEN_NETIF_RSP_OKAY);
Ian Campbellf942dc22011-03-15 00:06:18 +00001025 }
1026}
1027
Wei Liu73764192013-08-26 12:59:39 +01001028static int xenvif_get_extras(struct xenvif *vif,
Ian Campbellf942dc22011-03-15 00:06:18 +00001029 struct xen_netif_extra_info *extras,
1030 int work_to_do)
1031{
1032 struct xen_netif_extra_info extra;
1033 RING_IDX cons = vif->tx.req_cons;
1034
1035 do {
1036 if (unlikely(work_to_do-- <= 0)) {
Ian Campbell488562862013-02-06 23:41:35 +00001037 netdev_err(vif->dev, "Missing extra info\n");
Wei Liu73764192013-08-26 12:59:39 +01001038 xenvif_fatal_tx_err(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +00001039 return -EBADR;
1040 }
1041
1042 memcpy(&extra, RING_GET_REQUEST(&vif->tx, cons),
1043 sizeof(extra));
1044 if (unlikely(!extra.type ||
1045 extra.type >= XEN_NETIF_EXTRA_TYPE_MAX)) {
1046 vif->tx.req_cons = ++cons;
Ian Campbell488562862013-02-06 23:41:35 +00001047 netdev_err(vif->dev,
Ian Campbellf942dc22011-03-15 00:06:18 +00001048 "Invalid extra type: %d\n", extra.type);
Wei Liu73764192013-08-26 12:59:39 +01001049 xenvif_fatal_tx_err(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +00001050 return -EINVAL;
1051 }
1052
1053 memcpy(&extras[extra.type - 1], &extra, sizeof(extra));
1054 vif->tx.req_cons = ++cons;
1055 } while (extra.flags & XEN_NETIF_EXTRA_FLAG_MORE);
1056
1057 return work_to_do;
1058}
1059
Wei Liu73764192013-08-26 12:59:39 +01001060static int xenvif_set_skb_gso(struct xenvif *vif,
1061 struct sk_buff *skb,
1062 struct xen_netif_extra_info *gso)
Ian Campbellf942dc22011-03-15 00:06:18 +00001063{
1064 if (!gso->u.gso.size) {
Ian Campbell488562862013-02-06 23:41:35 +00001065 netdev_err(vif->dev, "GSO size must not be zero.\n");
Wei Liu73764192013-08-26 12:59:39 +01001066 xenvif_fatal_tx_err(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +00001067 return -EINVAL;
1068 }
1069
1070 /* Currently only TCPv4 S.O. is supported. */
1071 if (gso->u.gso.type != XEN_NETIF_GSO_TYPE_TCPV4) {
Ian Campbell488562862013-02-06 23:41:35 +00001072 netdev_err(vif->dev, "Bad GSO type %d.\n", gso->u.gso.type);
Wei Liu73764192013-08-26 12:59:39 +01001073 xenvif_fatal_tx_err(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +00001074 return -EINVAL;
1075 }
1076
1077 skb_shinfo(skb)->gso_size = gso->u.gso.size;
1078 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
1079
1080 /* Header must be checked, and gso_segs computed. */
1081 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
1082 skb_shinfo(skb)->gso_segs = 0;
1083
1084 return 0;
1085}
1086
1087static int checksum_setup(struct xenvif *vif, struct sk_buff *skb)
1088{
1089 struct iphdr *iph;
Ian Campbellf942dc22011-03-15 00:06:18 +00001090 int err = -EPROTO;
1091 int recalculate_partial_csum = 0;
1092
1093 /*
1094 * A GSO SKB must be CHECKSUM_PARTIAL. However some buggy
1095 * peers can fail to set NETRXF_csum_blank when sending a GSO
1096 * frame. In this case force the SKB to CHECKSUM_PARTIAL and
1097 * recalculate the partial checksum.
1098 */
1099 if (skb->ip_summed != CHECKSUM_PARTIAL && skb_is_gso(skb)) {
1100 vif->rx_gso_checksum_fixup++;
1101 skb->ip_summed = CHECKSUM_PARTIAL;
1102 recalculate_partial_csum = 1;
1103 }
1104
1105 /* A non-CHECKSUM_PARTIAL SKB does not require setup. */
1106 if (skb->ip_summed != CHECKSUM_PARTIAL)
1107 return 0;
1108
1109 if (skb->protocol != htons(ETH_P_IP))
1110 goto out;
1111
1112 iph = (void *)skb->data;
Ian Campbellf942dc22011-03-15 00:06:18 +00001113 switch (iph->protocol) {
1114 case IPPROTO_TCP:
Jason Wangbea89332013-04-10 20:35:29 +00001115 if (!skb_partial_csum_set(skb, 4 * iph->ihl,
1116 offsetof(struct tcphdr, check)))
1117 goto out;
Ian Campbellf942dc22011-03-15 00:06:18 +00001118
1119 if (recalculate_partial_csum) {
Jason Wangbea89332013-04-10 20:35:29 +00001120 struct tcphdr *tcph = tcp_hdr(skb);
Ian Campbellf942dc22011-03-15 00:06:18 +00001121 tcph->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
1122 skb->len - iph->ihl*4,
1123 IPPROTO_TCP, 0);
1124 }
1125 break;
1126 case IPPROTO_UDP:
Jason Wangbea89332013-04-10 20:35:29 +00001127 if (!skb_partial_csum_set(skb, 4 * iph->ihl,
1128 offsetof(struct udphdr, check)))
1129 goto out;
Ian Campbellf942dc22011-03-15 00:06:18 +00001130
1131 if (recalculate_partial_csum) {
Jason Wangbea89332013-04-10 20:35:29 +00001132 struct udphdr *udph = udp_hdr(skb);
Ian Campbellf942dc22011-03-15 00:06:18 +00001133 udph->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
1134 skb->len - iph->ihl*4,
1135 IPPROTO_UDP, 0);
1136 }
1137 break;
1138 default:
1139 if (net_ratelimit())
1140 netdev_err(vif->dev,
1141 "Attempting to checksum a non-TCP/UDP packet, dropping a protocol %d packet\n",
1142 iph->protocol);
1143 goto out;
1144 }
1145
Ian Campbellf942dc22011-03-15 00:06:18 +00001146 err = 0;
1147
1148out:
1149 return err;
1150}
1151
1152static bool tx_credit_exceeded(struct xenvif *vif, unsigned size)
1153{
1154 unsigned long now = jiffies;
1155 unsigned long next_credit =
1156 vif->credit_timeout.expires +
1157 msecs_to_jiffies(vif->credit_usec / 1000);
1158
1159 /* Timer could already be pending in rare cases. */
1160 if (timer_pending(&vif->credit_timeout))
1161 return true;
1162
1163 /* Passed the point where we can replenish credit? */
1164 if (time_after_eq(now, next_credit)) {
1165 vif->credit_timeout.expires = now;
1166 tx_add_credit(vif);
1167 }
1168
1169 /* Still too big to send right now? Set a callback. */
1170 if (size > vif->remaining_credit) {
1171 vif->credit_timeout.data =
1172 (unsigned long)vif;
1173 vif->credit_timeout.function =
1174 tx_credit_callback;
1175 mod_timer(&vif->credit_timeout,
1176 next_credit);
1177
1178 return true;
1179 }
1180
1181 return false;
1182}
1183
Wei Liu73764192013-08-26 12:59:39 +01001184static unsigned xenvif_tx_build_gops(struct xenvif *vif)
Ian Campbellf942dc22011-03-15 00:06:18 +00001185{
Wei Liub3f980b2013-08-26 12:59:38 +01001186 struct gnttab_copy *gop = vif->tx_copy_ops, *request_gop;
Ian Campbellf942dc22011-03-15 00:06:18 +00001187 struct sk_buff *skb;
1188 int ret;
1189
Wei Liub3f980b2013-08-26 12:59:38 +01001190 while ((nr_pending_reqs(vif) + XEN_NETBK_LEGACY_SLOTS_MAX
1191 < MAX_PENDING_REQS)) {
Ian Campbellf942dc22011-03-15 00:06:18 +00001192 struct xen_netif_tx_request txreq;
Wei Liu37641492013-05-02 00:43:59 +00001193 struct xen_netif_tx_request txfrags[XEN_NETBK_LEGACY_SLOTS_MAX];
Ian Campbellf942dc22011-03-15 00:06:18 +00001194 struct page *page;
1195 struct xen_netif_extra_info extras[XEN_NETIF_EXTRA_TYPE_MAX-1];
1196 u16 pending_idx;
1197 RING_IDX idx;
1198 int work_to_do;
1199 unsigned int data_len;
1200 pending_ring_idx_t index;
1201
Ian Campbell488562862013-02-06 23:41:35 +00001202 if (vif->tx.sring->req_prod - vif->tx.req_cons >
1203 XEN_NETIF_TX_RING_SIZE) {
1204 netdev_err(vif->dev,
1205 "Impossible number of requests. "
1206 "req_prod %d, req_cons %d, size %ld\n",
1207 vif->tx.sring->req_prod, vif->tx.req_cons,
1208 XEN_NETIF_TX_RING_SIZE);
Wei Liu73764192013-08-26 12:59:39 +01001209 xenvif_fatal_tx_err(vif);
Ian Campbell488562862013-02-06 23:41:35 +00001210 continue;
1211 }
1212
Ian Campbellf942dc22011-03-15 00:06:18 +00001213 RING_FINAL_CHECK_FOR_REQUESTS(&vif->tx, work_to_do);
Wei Liub3f980b2013-08-26 12:59:38 +01001214 if (!work_to_do)
1215 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001216
1217 idx = vif->tx.req_cons;
1218 rmb(); /* Ensure that we see the request before we copy it. */
1219 memcpy(&txreq, RING_GET_REQUEST(&vif->tx, idx), sizeof(txreq));
1220
1221 /* Credit-based scheduling. */
1222 if (txreq.size > vif->remaining_credit &&
Wei Liub3f980b2013-08-26 12:59:38 +01001223 tx_credit_exceeded(vif, txreq.size))
1224 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001225
1226 vif->remaining_credit -= txreq.size;
1227
1228 work_to_do--;
1229 vif->tx.req_cons = ++idx;
1230
1231 memset(extras, 0, sizeof(extras));
1232 if (txreq.flags & XEN_NETTXF_extra_info) {
Wei Liu73764192013-08-26 12:59:39 +01001233 work_to_do = xenvif_get_extras(vif, extras,
1234 work_to_do);
Ian Campbellf942dc22011-03-15 00:06:18 +00001235 idx = vif->tx.req_cons;
Ian Campbell488562862013-02-06 23:41:35 +00001236 if (unlikely(work_to_do < 0))
Wei Liub3f980b2013-08-26 12:59:38 +01001237 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001238 }
1239
Wei Liu73764192013-08-26 12:59:39 +01001240 ret = xenvif_count_requests(vif, &txreq, txfrags, work_to_do);
Ian Campbell488562862013-02-06 23:41:35 +00001241 if (unlikely(ret < 0))
Wei Liub3f980b2013-08-26 12:59:38 +01001242 break;
Ian Campbell488562862013-02-06 23:41:35 +00001243
Ian Campbellf942dc22011-03-15 00:06:18 +00001244 idx += ret;
1245
1246 if (unlikely(txreq.size < ETH_HLEN)) {
1247 netdev_dbg(vif->dev,
1248 "Bad packet size: %d\n", txreq.size);
Wei Liu73764192013-08-26 12:59:39 +01001249 xenvif_tx_err(vif, &txreq, idx);
Wei Liub3f980b2013-08-26 12:59:38 +01001250 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001251 }
1252
1253 /* No crossing a page as the payload mustn't fragment. */
1254 if (unlikely((txreq.offset + txreq.size) > PAGE_SIZE)) {
Ian Campbell488562862013-02-06 23:41:35 +00001255 netdev_err(vif->dev,
Ian Campbellf942dc22011-03-15 00:06:18 +00001256 "txreq.offset: %x, size: %u, end: %lu\n",
1257 txreq.offset, txreq.size,
1258 (txreq.offset&~PAGE_MASK) + txreq.size);
Wei Liu73764192013-08-26 12:59:39 +01001259 xenvif_fatal_tx_err(vif);
Wei Liub3f980b2013-08-26 12:59:38 +01001260 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001261 }
1262
Wei Liub3f980b2013-08-26 12:59:38 +01001263 index = pending_index(vif->pending_cons);
1264 pending_idx = vif->pending_ring[index];
Ian Campbellf942dc22011-03-15 00:06:18 +00001265
1266 data_len = (txreq.size > PKT_PROT_LEN &&
Wei Liu37641492013-05-02 00:43:59 +00001267 ret < XEN_NETBK_LEGACY_SLOTS_MAX) ?
Ian Campbellf942dc22011-03-15 00:06:18 +00001268 PKT_PROT_LEN : txreq.size;
1269
1270 skb = alloc_skb(data_len + NET_SKB_PAD + NET_IP_ALIGN,
1271 GFP_ATOMIC | __GFP_NOWARN);
1272 if (unlikely(skb == NULL)) {
1273 netdev_dbg(vif->dev,
1274 "Can't allocate a skb in start_xmit.\n");
Wei Liu73764192013-08-26 12:59:39 +01001275 xenvif_tx_err(vif, &txreq, idx);
Ian Campbellf942dc22011-03-15 00:06:18 +00001276 break;
1277 }
1278
1279 /* Packets passed to netif_rx() must have some headroom. */
1280 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
1281
1282 if (extras[XEN_NETIF_EXTRA_TYPE_GSO - 1].type) {
1283 struct xen_netif_extra_info *gso;
1284 gso = &extras[XEN_NETIF_EXTRA_TYPE_GSO - 1];
1285
Wei Liu73764192013-08-26 12:59:39 +01001286 if (xenvif_set_skb_gso(vif, skb, gso)) {
1287 /* Failure in xenvif_set_skb_gso is fatal. */
Ian Campbellf942dc22011-03-15 00:06:18 +00001288 kfree_skb(skb);
Wei Liub3f980b2013-08-26 12:59:38 +01001289 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001290 }
1291 }
1292
1293 /* XXX could copy straight to head */
Wei Liu73764192013-08-26 12:59:39 +01001294 page = xenvif_alloc_page(vif, pending_idx);
Ian Campbellf942dc22011-03-15 00:06:18 +00001295 if (!page) {
1296 kfree_skb(skb);
Wei Liu73764192013-08-26 12:59:39 +01001297 xenvif_tx_err(vif, &txreq, idx);
Wei Liub3f980b2013-08-26 12:59:38 +01001298 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001299 }
1300
Ian Campbellf942dc22011-03-15 00:06:18 +00001301 gop->source.u.ref = txreq.gref;
1302 gop->source.domid = vif->domid;
1303 gop->source.offset = txreq.offset;
1304
1305 gop->dest.u.gmfn = virt_to_mfn(page_address(page));
1306 gop->dest.domid = DOMID_SELF;
1307 gop->dest.offset = txreq.offset;
1308
1309 gop->len = txreq.size;
1310 gop->flags = GNTCOPY_source_gref;
1311
1312 gop++;
1313
Wei Liub3f980b2013-08-26 12:59:38 +01001314 memcpy(&vif->pending_tx_info[pending_idx].req,
Ian Campbellf942dc22011-03-15 00:06:18 +00001315 &txreq, sizeof(txreq));
Wei Liub3f980b2013-08-26 12:59:38 +01001316 vif->pending_tx_info[pending_idx].head = index;
Ian Campbellf942dc22011-03-15 00:06:18 +00001317 *((u16 *)skb->data) = pending_idx;
1318
1319 __skb_put(skb, data_len);
1320
1321 skb_shinfo(skb)->nr_frags = ret;
1322 if (data_len < txreq.size) {
1323 skb_shinfo(skb)->nr_frags++;
Ian Campbellea066ad2011-10-05 00:28:46 +00001324 frag_set_pending_idx(&skb_shinfo(skb)->frags[0],
1325 pending_idx);
Ian Campbellf942dc22011-03-15 00:06:18 +00001326 } else {
Ian Campbellea066ad2011-10-05 00:28:46 +00001327 frag_set_pending_idx(&skb_shinfo(skb)->frags[0],
1328 INVALID_PENDING_IDX);
Ian Campbellf942dc22011-03-15 00:06:18 +00001329 }
1330
Wei Liub3f980b2013-08-26 12:59:38 +01001331 vif->pending_cons++;
Ian Campbellf942dc22011-03-15 00:06:18 +00001332
Wei Liu73764192013-08-26 12:59:39 +01001333 request_gop = xenvif_get_requests(vif, skb, txfrags, gop);
Ian Campbellf942dc22011-03-15 00:06:18 +00001334 if (request_gop == NULL) {
1335 kfree_skb(skb);
Wei Liu73764192013-08-26 12:59:39 +01001336 xenvif_tx_err(vif, &txreq, idx);
Wei Liub3f980b2013-08-26 12:59:38 +01001337 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001338 }
1339 gop = request_gop;
1340
Wei Liub3f980b2013-08-26 12:59:38 +01001341 __skb_queue_tail(&vif->tx_queue, skb);
Annie Li1e0b6ea2012-06-27 00:46:58 +00001342
Ian Campbellf942dc22011-03-15 00:06:18 +00001343 vif->tx.req_cons = idx;
Ian Campbellf942dc22011-03-15 00:06:18 +00001344
Wei Liub3f980b2013-08-26 12:59:38 +01001345 if ((gop-vif->tx_copy_ops) >= ARRAY_SIZE(vif->tx_copy_ops))
Ian Campbellf942dc22011-03-15 00:06:18 +00001346 break;
1347 }
1348
Wei Liub3f980b2013-08-26 12:59:38 +01001349 return gop - vif->tx_copy_ops;
Ian Campbellf942dc22011-03-15 00:06:18 +00001350}
1351
Ian Campbellf942dc22011-03-15 00:06:18 +00001352
Wei Liu73764192013-08-26 12:59:39 +01001353static int xenvif_tx_submit(struct xenvif *vif, int budget)
Wei Liub3f980b2013-08-26 12:59:38 +01001354{
1355 struct gnttab_copy *gop = vif->tx_copy_ops;
1356 struct sk_buff *skb;
1357 int work_done = 0;
1358
1359 while (work_done < budget &&
1360 (skb = __skb_dequeue(&vif->tx_queue)) != NULL) {
Ian Campbellf942dc22011-03-15 00:06:18 +00001361 struct xen_netif_tx_request *txp;
Ian Campbellf942dc22011-03-15 00:06:18 +00001362 u16 pending_idx;
1363 unsigned data_len;
1364
1365 pending_idx = *((u16 *)skb->data);
Wei Liub3f980b2013-08-26 12:59:38 +01001366 txp = &vif->pending_tx_info[pending_idx].req;
Ian Campbellf942dc22011-03-15 00:06:18 +00001367
1368 /* Check the remap error code. */
Wei Liu73764192013-08-26 12:59:39 +01001369 if (unlikely(xenvif_tx_check_gop(vif, skb, &gop))) {
Ian Campbellf942dc22011-03-15 00:06:18 +00001370 netdev_dbg(vif->dev, "netback grant failed.\n");
1371 skb_shinfo(skb)->nr_frags = 0;
1372 kfree_skb(skb);
1373 continue;
1374 }
1375
1376 data_len = skb->len;
1377 memcpy(skb->data,
Wei Liub3f980b2013-08-26 12:59:38 +01001378 (void *)(idx_to_kaddr(vif, pending_idx)|txp->offset),
Ian Campbellf942dc22011-03-15 00:06:18 +00001379 data_len);
1380 if (data_len < txp->size) {
1381 /* Append the packet payload as a fragment. */
1382 txp->offset += data_len;
1383 txp->size -= data_len;
1384 } else {
1385 /* Schedule a response immediately. */
Wei Liu73764192013-08-26 12:59:39 +01001386 xenvif_idx_release(vif, pending_idx,
1387 XEN_NETIF_RSP_OKAY);
Ian Campbellf942dc22011-03-15 00:06:18 +00001388 }
1389
1390 if (txp->flags & XEN_NETTXF_csum_blank)
1391 skb->ip_summed = CHECKSUM_PARTIAL;
1392 else if (txp->flags & XEN_NETTXF_data_validated)
1393 skb->ip_summed = CHECKSUM_UNNECESSARY;
1394
Wei Liu73764192013-08-26 12:59:39 +01001395 xenvif_fill_frags(vif, skb);
Ian Campbellf942dc22011-03-15 00:06:18 +00001396
1397 /*
1398 * If the initial fragment was < PKT_PROT_LEN then
1399 * pull through some bytes from the other fragments to
1400 * increase the linear region to PKT_PROT_LEN bytes.
1401 */
1402 if (skb_headlen(skb) < PKT_PROT_LEN && skb_is_nonlinear(skb)) {
1403 int target = min_t(int, skb->len, PKT_PROT_LEN);
1404 __pskb_pull_tail(skb, target - skb_headlen(skb));
1405 }
1406
1407 skb->dev = vif->dev;
1408 skb->protocol = eth_type_trans(skb, skb->dev);
Jason Wangf9ca8f72013-03-25 20:19:58 +00001409 skb_reset_network_header(skb);
Ian Campbellf942dc22011-03-15 00:06:18 +00001410
1411 if (checksum_setup(vif, skb)) {
1412 netdev_dbg(vif->dev,
1413 "Can't setup checksum in net_tx_action\n");
1414 kfree_skb(skb);
1415 continue;
1416 }
1417
Jason Wang40893fd2013-03-26 23:11:22 +00001418 skb_probe_transport_header(skb, 0);
Jason Wangf9ca8f72013-03-25 20:19:58 +00001419
Ian Campbellf942dc22011-03-15 00:06:18 +00001420 vif->dev->stats.rx_bytes += skb->len;
1421 vif->dev->stats.rx_packets++;
1422
Wei Liub3f980b2013-08-26 12:59:38 +01001423 work_done++;
1424
1425 netif_receive_skb(skb);
Ian Campbellf942dc22011-03-15 00:06:18 +00001426 }
Wei Liub3f980b2013-08-26 12:59:38 +01001427
1428 return work_done;
Ian Campbellf942dc22011-03-15 00:06:18 +00001429}
1430
1431/* Called after netfront has transmitted */
Wei Liu73764192013-08-26 12:59:39 +01001432int xenvif_tx_action(struct xenvif *vif, int budget)
Ian Campbellf942dc22011-03-15 00:06:18 +00001433{
1434 unsigned nr_gops;
Wei Liub3f980b2013-08-26 12:59:38 +01001435 int work_done;
Ian Campbellf942dc22011-03-15 00:06:18 +00001436
Wei Liub3f980b2013-08-26 12:59:38 +01001437 if (unlikely(!tx_work_todo(vif)))
1438 return 0;
1439
Wei Liu73764192013-08-26 12:59:39 +01001440 nr_gops = xenvif_tx_build_gops(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +00001441
1442 if (nr_gops == 0)
Wei Liub3f980b2013-08-26 12:59:38 +01001443 return 0;
Andres Lagar-Cavillac5718982012-09-14 14:26:59 +00001444
Wei Liub3f980b2013-08-26 12:59:38 +01001445 gnttab_batch_copy(vif->tx_copy_ops, nr_gops);
Ian Campbellf942dc22011-03-15 00:06:18 +00001446
Wei Liu73764192013-08-26 12:59:39 +01001447 work_done = xenvif_tx_submit(vif, nr_gops);
Wei Liub3f980b2013-08-26 12:59:38 +01001448
1449 return work_done;
Ian Campbellf942dc22011-03-15 00:06:18 +00001450}
1451
Wei Liu73764192013-08-26 12:59:39 +01001452static void xenvif_idx_release(struct xenvif *vif, u16 pending_idx,
1453 u8 status)
Ian Campbellf942dc22011-03-15 00:06:18 +00001454{
Ian Campbellf942dc22011-03-15 00:06:18 +00001455 struct pending_tx_info *pending_tx_info;
Wei Liu2810e5b2013-04-22 02:20:42 +00001456 pending_ring_idx_t head;
1457 u16 peek; /* peek into next tx request */
1458
Wei Liub3f980b2013-08-26 12:59:38 +01001459 BUG_ON(vif->mmap_pages[pending_idx] == (void *)(~0UL));
Ian Campbellf942dc22011-03-15 00:06:18 +00001460
1461 /* Already complete? */
Wei Liub3f980b2013-08-26 12:59:38 +01001462 if (vif->mmap_pages[pending_idx] == NULL)
Ian Campbellf942dc22011-03-15 00:06:18 +00001463 return;
1464
Wei Liub3f980b2013-08-26 12:59:38 +01001465 pending_tx_info = &vif->pending_tx_info[pending_idx];
Ian Campbellf942dc22011-03-15 00:06:18 +00001466
Wei Liu2810e5b2013-04-22 02:20:42 +00001467 head = pending_tx_info->head;
Ian Campbellf942dc22011-03-15 00:06:18 +00001468
Wei Liub3f980b2013-08-26 12:59:38 +01001469 BUG_ON(!pending_tx_is_head(vif, head));
1470 BUG_ON(vif->pending_ring[pending_index(head)] != pending_idx);
Ian Campbellf942dc22011-03-15 00:06:18 +00001471
Wei Liu2810e5b2013-04-22 02:20:42 +00001472 do {
1473 pending_ring_idx_t index;
1474 pending_ring_idx_t idx = pending_index(head);
Wei Liub3f980b2013-08-26 12:59:38 +01001475 u16 info_idx = vif->pending_ring[idx];
Ian Campbellf942dc22011-03-15 00:06:18 +00001476
Wei Liub3f980b2013-08-26 12:59:38 +01001477 pending_tx_info = &vif->pending_tx_info[info_idx];
Wei Liu2810e5b2013-04-22 02:20:42 +00001478 make_tx_response(vif, &pending_tx_info->req, status);
Ian Campbellf942dc22011-03-15 00:06:18 +00001479
Wei Liu2810e5b2013-04-22 02:20:42 +00001480 /* Setting any number other than
1481 * INVALID_PENDING_RING_IDX indicates this slot is
1482 * starting a new packet / ending a previous packet.
1483 */
1484 pending_tx_info->head = 0;
1485
Wei Liub3f980b2013-08-26 12:59:38 +01001486 index = pending_index(vif->pending_prod++);
1487 vif->pending_ring[index] = vif->pending_ring[info_idx];
Wei Liu2810e5b2013-04-22 02:20:42 +00001488
Wei Liub3f980b2013-08-26 12:59:38 +01001489 peek = vif->pending_ring[pending_index(++head)];
Wei Liu2810e5b2013-04-22 02:20:42 +00001490
Wei Liub3f980b2013-08-26 12:59:38 +01001491 } while (!pending_tx_is_head(vif, peek));
Wei Liu2810e5b2013-04-22 02:20:42 +00001492
Wei Liub3f980b2013-08-26 12:59:38 +01001493 put_page(vif->mmap_pages[pending_idx]);
1494 vif->mmap_pages[pending_idx] = NULL;
Ian Campbellf942dc22011-03-15 00:06:18 +00001495}
1496
Wei Liu2810e5b2013-04-22 02:20:42 +00001497
Ian Campbellf942dc22011-03-15 00:06:18 +00001498static void make_tx_response(struct xenvif *vif,
1499 struct xen_netif_tx_request *txp,
1500 s8 st)
1501{
1502 RING_IDX i = vif->tx.rsp_prod_pvt;
1503 struct xen_netif_tx_response *resp;
1504 int notify;
1505
1506 resp = RING_GET_RESPONSE(&vif->tx, i);
1507 resp->id = txp->id;
1508 resp->status = st;
1509
1510 if (txp->flags & XEN_NETTXF_extra_info)
1511 RING_GET_RESPONSE(&vif->tx, ++i)->status = XEN_NETIF_RSP_NULL;
1512
1513 vif->tx.rsp_prod_pvt = ++i;
1514 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&vif->tx, notify);
1515 if (notify)
Wei Liue1f00a692013-05-22 06:34:45 +00001516 notify_remote_via_irq(vif->tx_irq);
Ian Campbellf942dc22011-03-15 00:06:18 +00001517}
1518
1519static struct xen_netif_rx_response *make_rx_response(struct xenvif *vif,
1520 u16 id,
1521 s8 st,
1522 u16 offset,
1523 u16 size,
1524 u16 flags)
1525{
1526 RING_IDX i = vif->rx.rsp_prod_pvt;
1527 struct xen_netif_rx_response *resp;
1528
1529 resp = RING_GET_RESPONSE(&vif->rx, i);
1530 resp->offset = offset;
1531 resp->flags = flags;
1532 resp->id = id;
1533 resp->status = (s16)size;
1534 if (st < 0)
1535 resp->status = (s16)st;
1536
1537 vif->rx.rsp_prod_pvt = ++i;
1538
1539 return resp;
1540}
1541
Wei Liub3f980b2013-08-26 12:59:38 +01001542static inline int rx_work_todo(struct xenvif *vif)
Ian Campbellf942dc22011-03-15 00:06:18 +00001543{
Wei Liub3f980b2013-08-26 12:59:38 +01001544 return !skb_queue_empty(&vif->rx_queue);
Ian Campbellf942dc22011-03-15 00:06:18 +00001545}
1546
Wei Liub3f980b2013-08-26 12:59:38 +01001547static inline int tx_work_todo(struct xenvif *vif)
Ian Campbellf942dc22011-03-15 00:06:18 +00001548{
1549
Wei Liub3f980b2013-08-26 12:59:38 +01001550 if (likely(RING_HAS_UNCONSUMED_REQUESTS(&vif->tx)) &&
1551 (nr_pending_reqs(vif) + XEN_NETBK_LEGACY_SLOTS_MAX
1552 < MAX_PENDING_REQS))
Ian Campbellf942dc22011-03-15 00:06:18 +00001553 return 1;
1554
1555 return 0;
1556}
1557
Wei Liu73764192013-08-26 12:59:39 +01001558void xenvif_unmap_frontend_rings(struct xenvif *vif)
Ian Campbellf942dc22011-03-15 00:06:18 +00001559{
David Vrabelc9d63692011-09-29 16:53:31 +01001560 if (vif->tx.sring)
1561 xenbus_unmap_ring_vfree(xenvif_to_xenbus_device(vif),
1562 vif->tx.sring);
1563 if (vif->rx.sring)
1564 xenbus_unmap_ring_vfree(xenvif_to_xenbus_device(vif),
1565 vif->rx.sring);
Ian Campbellf942dc22011-03-15 00:06:18 +00001566}
1567
Wei Liu73764192013-08-26 12:59:39 +01001568int xenvif_map_frontend_rings(struct xenvif *vif,
1569 grant_ref_t tx_ring_ref,
1570 grant_ref_t rx_ring_ref)
Ian Campbellf942dc22011-03-15 00:06:18 +00001571{
David Vrabelc9d63692011-09-29 16:53:31 +01001572 void *addr;
Ian Campbellf942dc22011-03-15 00:06:18 +00001573 struct xen_netif_tx_sring *txs;
1574 struct xen_netif_rx_sring *rxs;
1575
1576 int err = -ENOMEM;
1577
David Vrabelc9d63692011-09-29 16:53:31 +01001578 err = xenbus_map_ring_valloc(xenvif_to_xenbus_device(vif),
1579 tx_ring_ref, &addr);
1580 if (err)
Ian Campbellf942dc22011-03-15 00:06:18 +00001581 goto err;
1582
David Vrabelc9d63692011-09-29 16:53:31 +01001583 txs = (struct xen_netif_tx_sring *)addr;
Ian Campbellf942dc22011-03-15 00:06:18 +00001584 BACK_RING_INIT(&vif->tx, txs, PAGE_SIZE);
1585
David Vrabelc9d63692011-09-29 16:53:31 +01001586 err = xenbus_map_ring_valloc(xenvif_to_xenbus_device(vif),
1587 rx_ring_ref, &addr);
1588 if (err)
Ian Campbellf942dc22011-03-15 00:06:18 +00001589 goto err;
Ian Campbellf942dc22011-03-15 00:06:18 +00001590
David Vrabelc9d63692011-09-29 16:53:31 +01001591 rxs = (struct xen_netif_rx_sring *)addr;
Ian Campbellf942dc22011-03-15 00:06:18 +00001592 BACK_RING_INIT(&vif->rx, rxs, PAGE_SIZE);
1593
David Vrabelc9d63692011-09-29 16:53:31 +01001594 vif->rx_req_cons_peek = 0;
1595
Ian Campbellf942dc22011-03-15 00:06:18 +00001596 return 0;
1597
1598err:
Wei Liu73764192013-08-26 12:59:39 +01001599 xenvif_unmap_frontend_rings(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +00001600 return err;
1601}
1602
Wei Liu73764192013-08-26 12:59:39 +01001603int xenvif_kthread(void *data)
Wei Liub3f980b2013-08-26 12:59:38 +01001604{
1605 struct xenvif *vif = data;
1606
1607 while (!kthread_should_stop()) {
1608 wait_event_interruptible(vif->wq,
1609 rx_work_todo(vif) ||
1610 kthread_should_stop());
1611 if (kthread_should_stop())
1612 break;
1613
1614 if (rx_work_todo(vif))
Wei Liu73764192013-08-26 12:59:39 +01001615 xenvif_rx_action(vif);
Wei Liub3f980b2013-08-26 12:59:38 +01001616
1617 cond_resched();
1618 }
1619
1620 return 0;
1621}
1622
Ian Campbellf942dc22011-03-15 00:06:18 +00001623static int __init netback_init(void)
1624{
Ian Campbellf942dc22011-03-15 00:06:18 +00001625 int rc = 0;
Ian Campbellf942dc22011-03-15 00:06:18 +00001626
Daniel De Graaf2a14b2442011-12-14 15:12:13 -05001627 if (!xen_domain())
Ian Campbellf942dc22011-03-15 00:06:18 +00001628 return -ENODEV;
1629
Wei Liu37641492013-05-02 00:43:59 +00001630 if (fatal_skb_slots < XEN_NETBK_LEGACY_SLOTS_MAX) {
Joe Perches383eda32013-06-27 21:57:49 -07001631 pr_info("fatal_skb_slots too small (%d), bump it to XEN_NETBK_LEGACY_SLOTS_MAX (%d)\n",
1632 fatal_skb_slots, XEN_NETBK_LEGACY_SLOTS_MAX);
Wei Liu37641492013-05-02 00:43:59 +00001633 fatal_skb_slots = XEN_NETBK_LEGACY_SLOTS_MAX;
Wei Liu2810e5b2013-04-22 02:20:42 +00001634 }
1635
Ian Campbellf942dc22011-03-15 00:06:18 +00001636 rc = xenvif_xenbus_init();
1637 if (rc)
1638 goto failed_init;
1639
1640 return 0;
1641
1642failed_init:
Ian Campbellf942dc22011-03-15 00:06:18 +00001643 return rc;
Ian Campbellf942dc22011-03-15 00:06:18 +00001644}
1645
1646module_init(netback_init);
1647
Wei Liub103f352013-05-16 23:26:11 +00001648static void __exit netback_fini(void)
1649{
Wei Liub103f352013-05-16 23:26:11 +00001650 xenvif_xenbus_fini();
Wei Liub103f352013-05-16 23:26:11 +00001651}
1652module_exit(netback_fini);
1653
Ian Campbellf942dc22011-03-15 00:06:18 +00001654MODULE_LICENSE("Dual BSD/GPL");
Bastian Blankf984cec2011-06-30 11:19:09 -07001655MODULE_ALIAS("xen-backend:vif");