blob: c8ce701a7efb35280d5d4cac33a7463e89b243d2 [file] [log] [blame]
Ian Campbellf942dc22011-03-15 00:06:18 +00001/*
2 * Back-end of the driver for virtual network devices. This portion of the
3 * driver exports a 'unified' network-device interface that can be accessed
4 * by any operating system that implements a compatible front end. A
5 * reference front-end implementation can be found in:
6 * drivers/net/xen-netfront.c
7 *
8 * Copyright (c) 2002-2005, K A Fraser
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License version 2
12 * as published by the Free Software Foundation; or, when distributed
13 * separately from the Linux kernel or incorporated into other
14 * software packages, subject to the following license:
15 *
16 * Permission is hereby granted, free of charge, to any person obtaining a copy
17 * of this source file (the "Software"), to deal in the Software without
18 * restriction, including without limitation the rights to use, copy, modify,
19 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
20 * and to permit persons to whom the Software is furnished to do so, subject to
21 * the following conditions:
22 *
23 * The above copyright notice and this permission notice shall be included in
24 * all copies or substantial portions of the Software.
25 *
26 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
29 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
30 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
31 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
32 * IN THE SOFTWARE.
33 */
34
35#include "common.h"
36
37#include <linux/kthread.h>
38#include <linux/if_vlan.h>
39#include <linux/udp.h>
Zoltan Kisse3377f32014-03-06 21:48:29 +000040#include <linux/highmem.h>
Ian Campbellf942dc22011-03-15 00:06:18 +000041
42#include <net/tcp.h>
43
Stefano Stabellinica981632012-08-08 17:21:23 +000044#include <xen/xen.h>
Ian Campbellf942dc22011-03-15 00:06:18 +000045#include <xen/events.h>
46#include <xen/interface/memory.h>
47
48#include <asm/xen/hypercall.h>
49#include <asm/xen/page.h>
50
Wei Liue1f00a692013-05-22 06:34:45 +000051/* Provide an option to disable split event channels at load time as
52 * event channels are limited resource. Split event channels are
53 * enabled by default.
54 */
55bool separate_tx_rx_irq = 1;
56module_param(separate_tx_rx_irq, bool, 0644);
57
David Vrabelf48da8b2014-10-22 14:08:54 +010058/* The time that packets can stay on the guest Rx internal queue
59 * before they are dropped.
Zoltan Kiss09350782014-03-06 21:48:30 +000060 */
61unsigned int rx_drain_timeout_msecs = 10000;
62module_param(rx_drain_timeout_msecs, uint, 0444);
Zoltan Kiss09350782014-03-06 21:48:30 +000063
David Vrabelecf08d22014-10-22 14:08:55 +010064/* The length of time before the frontend is considered unresponsive
65 * because it isn't providing Rx slots.
66 */
David Vrabel26c0e102014-12-18 11:13:06 +000067unsigned int rx_stall_timeout_msecs = 60000;
David Vrabelecf08d22014-10-22 14:08:55 +010068module_param(rx_stall_timeout_msecs, uint, 0444);
David Vrabelecf08d22014-10-22 14:08:55 +010069
Andrew J. Bennieston8d3d53b2014-06-04 10:30:43 +010070unsigned int xenvif_max_queues;
71module_param_named(max_queues, xenvif_max_queues, uint, 0644);
72MODULE_PARM_DESC(max_queues,
73 "Maximum number of queues per virtual interface");
74
Wei Liu2810e5b2013-04-22 02:20:42 +000075/*
76 * This is the maximum slots a skb can have. If a guest sends a skb
77 * which exceeds this limit it is considered malicious.
78 */
Wei Liu37641492013-05-02 00:43:59 +000079#define FATAL_SKB_SLOTS_DEFAULT 20
80static unsigned int fatal_skb_slots = FATAL_SKB_SLOTS_DEFAULT;
81module_param(fatal_skb_slots, uint, 0444);
82
Malcolm Crossley7e5d7752014-11-05 10:50:22 +000083/* The amount to copy out of the first guest Tx slot into the skb's
84 * linear area. If the first slot has more data, it will be mapped
85 * and put into the first frag.
86 *
87 * This is sized to avoid pulling headers from the frags for most
88 * TCP/IP packets.
89 */
90#define XEN_NETBACK_TX_COPY_LEN 128
91
92
Wei Liue9ce7cb2014-06-04 10:30:42 +010093static void xenvif_idx_release(struct xenvif_queue *queue, u16 pending_idx,
Wei Liu73764192013-08-26 12:59:39 +010094 u8 status);
95
Wei Liue9ce7cb2014-06-04 10:30:42 +010096static void make_tx_response(struct xenvif_queue *queue,
Ian Campbellf942dc22011-03-15 00:06:18 +000097 struct xen_netif_tx_request *txp,
98 s8 st);
Wei Liub3f980b2013-08-26 12:59:38 +010099
Wei Liue9ce7cb2014-06-04 10:30:42 +0100100static inline int tx_work_todo(struct xenvif_queue *queue);
Wei Liub3f980b2013-08-26 12:59:38 +0100101
Wei Liue9ce7cb2014-06-04 10:30:42 +0100102static struct xen_netif_rx_response *make_rx_response(struct xenvif_queue *queue,
Ian Campbellf942dc22011-03-15 00:06:18 +0000103 u16 id,
104 s8 st,
105 u16 offset,
106 u16 size,
107 u16 flags);
108
Wei Liue9ce7cb2014-06-04 10:30:42 +0100109static inline unsigned long idx_to_pfn(struct xenvif_queue *queue,
Ian Campbellea066ad2011-10-05 00:28:46 +0000110 u16 idx)
Ian Campbellf942dc22011-03-15 00:06:18 +0000111{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100112 return page_to_pfn(queue->mmap_pages[idx]);
Ian Campbellf942dc22011-03-15 00:06:18 +0000113}
114
Wei Liue9ce7cb2014-06-04 10:30:42 +0100115static inline unsigned long idx_to_kaddr(struct xenvif_queue *queue,
Ian Campbellea066ad2011-10-05 00:28:46 +0000116 u16 idx)
Ian Campbellf942dc22011-03-15 00:06:18 +0000117{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100118 return (unsigned long)pfn_to_kaddr(idx_to_pfn(queue, idx));
Ian Campbellf942dc22011-03-15 00:06:18 +0000119}
120
Zoltan Kiss7aceb472014-03-24 23:59:51 +0000121#define callback_param(vif, pending_idx) \
122 (vif->pending_tx_info[pending_idx].callback_struct)
123
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000124/* Find the containing VIF's structure from a pointer in pending_tx_info array
125 */
Wei Liue9ce7cb2014-06-04 10:30:42 +0100126static inline struct xenvif_queue *ubuf_to_queue(const struct ubuf_info *ubuf)
Zoltan Kiss3e2234b2014-03-06 21:48:25 +0000127{
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000128 u16 pending_idx = ubuf->desc;
129 struct pending_tx_info *temp =
130 container_of(ubuf, struct pending_tx_info, callback_struct);
131 return container_of(temp - pending_idx,
Wei Liue9ce7cb2014-06-04 10:30:42 +0100132 struct xenvif_queue,
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000133 pending_tx_info[0]);
Zoltan Kiss3e2234b2014-03-06 21:48:25 +0000134}
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000135
Ian Campbellea066ad2011-10-05 00:28:46 +0000136static u16 frag_get_pending_idx(skb_frag_t *frag)
137{
138 return (u16)frag->page_offset;
139}
140
141static void frag_set_pending_idx(skb_frag_t *frag, u16 pending_idx)
142{
143 frag->page_offset = pending_idx;
144}
145
Ian Campbellf942dc22011-03-15 00:06:18 +0000146static inline pending_ring_idx_t pending_index(unsigned i)
147{
148 return i & (MAX_PENDING_REQS-1);
149}
150
Wei Liue9ce7cb2014-06-04 10:30:42 +0100151bool xenvif_rx_ring_slots_available(struct xenvif_queue *queue, int needed)
Ian Campbellf942dc22011-03-15 00:06:18 +0000152{
Paul Durrantca2f09f2013-12-06 16:36:07 +0000153 RING_IDX prod, cons;
Ian Campbellf942dc22011-03-15 00:06:18 +0000154
Paul Durrantca2f09f2013-12-06 16:36:07 +0000155 do {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100156 prod = queue->rx.sring->req_prod;
157 cons = queue->rx.req_cons;
Ian Campbellf942dc22011-03-15 00:06:18 +0000158
Paul Durrantca2f09f2013-12-06 16:36:07 +0000159 if (prod - cons >= needed)
160 return true;
Ian Campbellf942dc22011-03-15 00:06:18 +0000161
Wei Liue9ce7cb2014-06-04 10:30:42 +0100162 queue->rx.sring->req_event = prod + 1;
Ian Campbellf942dc22011-03-15 00:06:18 +0000163
Paul Durrantca2f09f2013-12-06 16:36:07 +0000164 /* Make sure event is visible before we check prod
165 * again.
166 */
167 mb();
Wei Liue9ce7cb2014-06-04 10:30:42 +0100168 } while (queue->rx.sring->req_prod != prod);
Ian Campbellf942dc22011-03-15 00:06:18 +0000169
Paul Durrantca2f09f2013-12-06 16:36:07 +0000170 return false;
Ian Campbellf942dc22011-03-15 00:06:18 +0000171}
172
David Vrabelf48da8b2014-10-22 14:08:54 +0100173void xenvif_rx_queue_tail(struct xenvif_queue *queue, struct sk_buff *skb)
174{
175 unsigned long flags;
176
177 spin_lock_irqsave(&queue->rx_queue.lock, flags);
178
179 __skb_queue_tail(&queue->rx_queue, skb);
180
181 queue->rx_queue_len += skb->len;
182 if (queue->rx_queue_len > queue->rx_queue_max)
183 netif_tx_stop_queue(netdev_get_tx_queue(queue->vif->dev, queue->id));
184
185 spin_unlock_irqrestore(&queue->rx_queue.lock, flags);
186}
187
188static struct sk_buff *xenvif_rx_dequeue(struct xenvif_queue *queue)
189{
190 struct sk_buff *skb;
191
192 spin_lock_irq(&queue->rx_queue.lock);
193
194 skb = __skb_dequeue(&queue->rx_queue);
195 if (skb)
196 queue->rx_queue_len -= skb->len;
197
198 spin_unlock_irq(&queue->rx_queue.lock);
199
200 return skb;
201}
202
203static void xenvif_rx_queue_maybe_wake(struct xenvif_queue *queue)
204{
205 spin_lock_irq(&queue->rx_queue.lock);
206
207 if (queue->rx_queue_len < queue->rx_queue_max)
208 netif_tx_wake_queue(netdev_get_tx_queue(queue->vif->dev, queue->id));
209
210 spin_unlock_irq(&queue->rx_queue.lock);
211}
212
213
214static void xenvif_rx_queue_purge(struct xenvif_queue *queue)
215{
216 struct sk_buff *skb;
217 while ((skb = xenvif_rx_dequeue(queue)) != NULL)
218 kfree_skb(skb);
219}
220
221static void xenvif_rx_queue_drop_expired(struct xenvif_queue *queue)
222{
223 struct sk_buff *skb;
224
225 for(;;) {
226 skb = skb_peek(&queue->rx_queue);
227 if (!skb)
228 break;
229 if (time_before(jiffies, XENVIF_RX_CB(skb)->expires))
230 break;
231 xenvif_rx_dequeue(queue);
232 kfree_skb(skb);
233 }
234}
235
Ian Campbellf942dc22011-03-15 00:06:18 +0000236/*
237 * Returns true if we should start a new receive buffer instead of
238 * adding 'size' bytes to a buffer which currently contains 'offset'
239 * bytes.
240 */
Zoltan Kiss59ae9fc2014-06-04 19:58:51 +0100241static bool start_new_rx_buffer(int offset, unsigned long size, int head,
242 bool full_coalesce)
Ian Campbellf942dc22011-03-15 00:06:18 +0000243{
244 /* simple case: we have completely filled the current buffer. */
245 if (offset == MAX_BUFFER_OFFSET)
246 return true;
247
248 /*
249 * complex case: start a fresh buffer if the current frag
250 * would overflow the current buffer but only if:
251 * (i) this frag would fit completely in the next buffer
252 * and (ii) there is already some data in the current buffer
253 * and (iii) this is not the head buffer.
Zoltan Kiss59ae9fc2014-06-04 19:58:51 +0100254 * and (iv) there is no need to fully utilize the buffers
Ian Campbellf942dc22011-03-15 00:06:18 +0000255 *
256 * Where:
257 * - (i) stops us splitting a frag into two copies
258 * unless the frag is too large for a single buffer.
259 * - (ii) stops us from leaving a buffer pointlessly empty.
260 * - (iii) stops us leaving the first buffer
261 * empty. Strictly speaking this is already covered
262 * by (ii) but is explicitly checked because
263 * netfront relies on the first buffer being
264 * non-empty and can crash otherwise.
Zoltan Kiss59ae9fc2014-06-04 19:58:51 +0100265 * - (iv) is needed for skbs which can use up more than MAX_SKB_FRAGS
266 * slot
Ian Campbellf942dc22011-03-15 00:06:18 +0000267 *
268 * This means we will effectively linearise small
269 * frags but do not needlessly split large buffers
270 * into multiple copies tend to give large frags their
271 * own buffers as before.
272 */
Paul Durrant0576edd2014-03-28 11:39:05 +0000273 BUG_ON(size > MAX_BUFFER_OFFSET);
Zoltan Kiss59ae9fc2014-06-04 19:58:51 +0100274 if ((offset + size > MAX_BUFFER_OFFSET) && offset && !head &&
275 !full_coalesce)
Ian Campbellf942dc22011-03-15 00:06:18 +0000276 return true;
277
278 return false;
279}
280
Ian Campbellf942dc22011-03-15 00:06:18 +0000281struct netrx_pending_operations {
282 unsigned copy_prod, copy_cons;
283 unsigned meta_prod, meta_cons;
284 struct gnttab_copy *copy;
Wei Liub3f980b2013-08-26 12:59:38 +0100285 struct xenvif_rx_meta *meta;
Ian Campbellf942dc22011-03-15 00:06:18 +0000286 int copy_off;
287 grant_ref_t copy_gref;
288};
289
Wei Liue9ce7cb2014-06-04 10:30:42 +0100290static struct xenvif_rx_meta *get_next_rx_buffer(struct xenvif_queue *queue,
Wei Liub3f980b2013-08-26 12:59:38 +0100291 struct netrx_pending_operations *npo)
Ian Campbellf942dc22011-03-15 00:06:18 +0000292{
Wei Liub3f980b2013-08-26 12:59:38 +0100293 struct xenvif_rx_meta *meta;
Ian Campbellf942dc22011-03-15 00:06:18 +0000294 struct xen_netif_rx_request *req;
295
Wei Liue9ce7cb2014-06-04 10:30:42 +0100296 req = RING_GET_REQUEST(&queue->rx, queue->rx.req_cons++);
Ian Campbellf942dc22011-03-15 00:06:18 +0000297
298 meta = npo->meta + npo->meta_prod++;
Paul Durrant82cada22013-10-16 17:50:32 +0100299 meta->gso_type = XEN_NETIF_GSO_TYPE_NONE;
Ian Campbellf942dc22011-03-15 00:06:18 +0000300 meta->gso_size = 0;
301 meta->size = 0;
302 meta->id = req->id;
303
304 npo->copy_off = 0;
305 npo->copy_gref = req->gref;
306
307 return meta;
308}
309
Wei Liu33bc8012013-10-08 10:54:21 +0100310/*
311 * Set up the grant operations for this fragment. If it's a flipping
312 * interface, we also set up the unmap request from here.
313 */
Wei Liue9ce7cb2014-06-04 10:30:42 +0100314static void xenvif_gop_frag_copy(struct xenvif_queue *queue, struct sk_buff *skb,
Wei Liu73764192013-08-26 12:59:39 +0100315 struct netrx_pending_operations *npo,
316 struct page *page, unsigned long size,
Zoltan Kiss3e2234b2014-03-06 21:48:25 +0000317 unsigned long offset, int *head,
Wei Liue9ce7cb2014-06-04 10:30:42 +0100318 struct xenvif_queue *foreign_queue,
Zoltan Kiss3e2234b2014-03-06 21:48:25 +0000319 grant_ref_t foreign_gref)
Ian Campbellf942dc22011-03-15 00:06:18 +0000320{
321 struct gnttab_copy *copy_gop;
Wei Liub3f980b2013-08-26 12:59:38 +0100322 struct xenvif_rx_meta *meta;
Ian Campbellf942dc22011-03-15 00:06:18 +0000323 unsigned long bytes;
Annie Li5bd07672014-03-10 22:58:34 +0800324 int gso_type = XEN_NETIF_GSO_TYPE_NONE;
Ian Campbellf942dc22011-03-15 00:06:18 +0000325
326 /* Data must not cross a page boundary. */
Ian Campbell6a8ed462012-10-10 03:48:42 +0000327 BUG_ON(size + offset > PAGE_SIZE<<compound_order(page));
Ian Campbellf942dc22011-03-15 00:06:18 +0000328
329 meta = npo->meta + npo->meta_prod - 1;
330
Ian Campbell6a8ed462012-10-10 03:48:42 +0000331 /* Skip unused frames from start of page */
332 page += offset >> PAGE_SHIFT;
333 offset &= ~PAGE_MASK;
334
Ian Campbellf942dc22011-03-15 00:06:18 +0000335 while (size > 0) {
Ian Campbell6a8ed462012-10-10 03:48:42 +0000336 BUG_ON(offset >= PAGE_SIZE);
Ian Campbellf942dc22011-03-15 00:06:18 +0000337 BUG_ON(npo->copy_off > MAX_BUFFER_OFFSET);
338
Ian Campbell6a8ed462012-10-10 03:48:42 +0000339 bytes = PAGE_SIZE - offset;
340
341 if (bytes > size)
342 bytes = size;
343
Zoltan Kiss59ae9fc2014-06-04 19:58:51 +0100344 if (start_new_rx_buffer(npo->copy_off,
345 bytes,
346 *head,
347 XENVIF_RX_CB(skb)->full_coalesce)) {
Ian Campbellf942dc22011-03-15 00:06:18 +0000348 /*
349 * Netfront requires there to be some data in the head
350 * buffer.
351 */
Wei Liu33bc8012013-10-08 10:54:21 +0100352 BUG_ON(*head);
Ian Campbellf942dc22011-03-15 00:06:18 +0000353
Wei Liue9ce7cb2014-06-04 10:30:42 +0100354 meta = get_next_rx_buffer(queue, npo);
Ian Campbellf942dc22011-03-15 00:06:18 +0000355 }
356
Ian Campbellf942dc22011-03-15 00:06:18 +0000357 if (npo->copy_off + bytes > MAX_BUFFER_OFFSET)
358 bytes = MAX_BUFFER_OFFSET - npo->copy_off;
359
360 copy_gop = npo->copy + npo->copy_prod++;
361 copy_gop->flags = GNTCOPY_dest_gref;
Wei Liub3f980b2013-08-26 12:59:38 +0100362 copy_gop->len = bytes;
363
Wei Liue9ce7cb2014-06-04 10:30:42 +0100364 if (foreign_queue) {
365 copy_gop->source.domid = foreign_queue->vif->domid;
Zoltan Kiss3e2234b2014-03-06 21:48:25 +0000366 copy_gop->source.u.ref = foreign_gref;
367 copy_gop->flags |= GNTCOPY_source_gref;
368 } else {
369 copy_gop->source.domid = DOMID_SELF;
370 copy_gop->source.u.gmfn =
371 virt_to_mfn(page_address(page));
372 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000373 copy_gop->source.offset = offset;
Ian Campbellf942dc22011-03-15 00:06:18 +0000374
Wei Liue9ce7cb2014-06-04 10:30:42 +0100375 copy_gop->dest.domid = queue->vif->domid;
Ian Campbellf942dc22011-03-15 00:06:18 +0000376 copy_gop->dest.offset = npo->copy_off;
377 copy_gop->dest.u.ref = npo->copy_gref;
Ian Campbellf942dc22011-03-15 00:06:18 +0000378
379 npo->copy_off += bytes;
380 meta->size += bytes;
381
382 offset += bytes;
383 size -= bytes;
384
Ian Campbell6a8ed462012-10-10 03:48:42 +0000385 /* Next frame */
386 if (offset == PAGE_SIZE && size) {
387 BUG_ON(!PageCompound(page));
388 page++;
389 offset = 0;
390 }
391
Ian Campbellf942dc22011-03-15 00:06:18 +0000392 /* Leave a gap for the GSO descriptor. */
Annie Li5bd07672014-03-10 22:58:34 +0800393 if (skb_is_gso(skb)) {
394 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4)
395 gso_type = XEN_NETIF_GSO_TYPE_TCPV4;
396 else if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6)
397 gso_type = XEN_NETIF_GSO_TYPE_TCPV6;
398 }
Paul Durrant82cada22013-10-16 17:50:32 +0100399
Wei Liue9ce7cb2014-06-04 10:30:42 +0100400 if (*head && ((1 << gso_type) & queue->vif->gso_mask))
401 queue->rx.req_cons++;
Ian Campbellf942dc22011-03-15 00:06:18 +0000402
Wei Liu33bc8012013-10-08 10:54:21 +0100403 *head = 0; /* There must be something in this buffer now. */
Ian Campbellf942dc22011-03-15 00:06:18 +0000404
405 }
406}
407
408/*
Zoltan Kiss58375742014-05-15 11:08:34 +0100409 * Find the grant ref for a given frag in a chain of struct ubuf_info's
410 * skb: the skb itself
411 * i: the frag's number
412 * ubuf: a pointer to an element in the chain. It should not be NULL
413 *
414 * Returns a pointer to the element in the chain where the page were found. If
415 * not found, returns NULL.
416 * See the definition of callback_struct in common.h for more details about
417 * the chain.
418 */
419static const struct ubuf_info *xenvif_find_gref(const struct sk_buff *const skb,
420 const int i,
421 const struct ubuf_info *ubuf)
422{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100423 struct xenvif_queue *foreign_queue = ubuf_to_queue(ubuf);
Zoltan Kiss58375742014-05-15 11:08:34 +0100424
425 do {
426 u16 pending_idx = ubuf->desc;
427
428 if (skb_shinfo(skb)->frags[i].page.p ==
Wei Liue9ce7cb2014-06-04 10:30:42 +0100429 foreign_queue->mmap_pages[pending_idx])
Zoltan Kiss58375742014-05-15 11:08:34 +0100430 break;
431 ubuf = (struct ubuf_info *) ubuf->ctx;
432 } while (ubuf);
433
434 return ubuf;
435}
436
437/*
Ian Campbellf942dc22011-03-15 00:06:18 +0000438 * Prepare an SKB to be transmitted to the frontend.
439 *
440 * This function is responsible for allocating grant operations, meta
441 * structures, etc.
442 *
443 * It returns the number of meta structures consumed. The number of
444 * ring slots used is always equal to the number of meta slots used
445 * plus the number of GSO descriptors used. Currently, we use either
446 * zero GSO descriptors (for non-GSO packets) or one descriptor (for
447 * frontend-side LRO).
448 */
Wei Liu73764192013-08-26 12:59:39 +0100449static int xenvif_gop_skb(struct sk_buff *skb,
Wei Liue9ce7cb2014-06-04 10:30:42 +0100450 struct netrx_pending_operations *npo,
451 struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +0000452{
453 struct xenvif *vif = netdev_priv(skb->dev);
454 int nr_frags = skb_shinfo(skb)->nr_frags;
455 int i;
456 struct xen_netif_rx_request *req;
Wei Liub3f980b2013-08-26 12:59:38 +0100457 struct xenvif_rx_meta *meta;
Ian Campbellf942dc22011-03-15 00:06:18 +0000458 unsigned char *data;
Wei Liu33bc8012013-10-08 10:54:21 +0100459 int head = 1;
Ian Campbellf942dc22011-03-15 00:06:18 +0000460 int old_meta_prod;
Paul Durrant82cada22013-10-16 17:50:32 +0100461 int gso_type;
Zoltan Kiss58375742014-05-15 11:08:34 +0100462 const struct ubuf_info *ubuf = skb_shinfo(skb)->destructor_arg;
463 const struct ubuf_info *const head_ubuf = ubuf;
Ian Campbellf942dc22011-03-15 00:06:18 +0000464
465 old_meta_prod = npo->meta_prod;
466
Annie Li5bd07672014-03-10 22:58:34 +0800467 gso_type = XEN_NETIF_GSO_TYPE_NONE;
468 if (skb_is_gso(skb)) {
469 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4)
470 gso_type = XEN_NETIF_GSO_TYPE_TCPV4;
471 else if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6)
472 gso_type = XEN_NETIF_GSO_TYPE_TCPV6;
Paul Durrant82cada22013-10-16 17:50:32 +0100473 }
474
Ian Campbellf942dc22011-03-15 00:06:18 +0000475 /* Set up a GSO prefix descriptor, if necessary */
Paul Durranta3314f32013-12-12 14:20:13 +0000476 if ((1 << gso_type) & vif->gso_prefix_mask) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100477 req = RING_GET_REQUEST(&queue->rx, queue->rx.req_cons++);
Ian Campbellf942dc22011-03-15 00:06:18 +0000478 meta = npo->meta + npo->meta_prod++;
Paul Durrant82cada22013-10-16 17:50:32 +0100479 meta->gso_type = gso_type;
Annie Li5bd07672014-03-10 22:58:34 +0800480 meta->gso_size = skb_shinfo(skb)->gso_size;
Ian Campbellf942dc22011-03-15 00:06:18 +0000481 meta->size = 0;
482 meta->id = req->id;
483 }
484
Wei Liue9ce7cb2014-06-04 10:30:42 +0100485 req = RING_GET_REQUEST(&queue->rx, queue->rx.req_cons++);
Ian Campbellf942dc22011-03-15 00:06:18 +0000486 meta = npo->meta + npo->meta_prod++;
487
Paul Durrant82cada22013-10-16 17:50:32 +0100488 if ((1 << gso_type) & vif->gso_mask) {
489 meta->gso_type = gso_type;
Annie Li5bd07672014-03-10 22:58:34 +0800490 meta->gso_size = skb_shinfo(skb)->gso_size;
Paul Durrant82cada22013-10-16 17:50:32 +0100491 } else {
492 meta->gso_type = XEN_NETIF_GSO_TYPE_NONE;
Ian Campbellf942dc22011-03-15 00:06:18 +0000493 meta->gso_size = 0;
Paul Durrant82cada22013-10-16 17:50:32 +0100494 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000495
496 meta->size = 0;
497 meta->id = req->id;
498 npo->copy_off = 0;
499 npo->copy_gref = req->gref;
500
501 data = skb->data;
502 while (data < skb_tail_pointer(skb)) {
503 unsigned int offset = offset_in_page(data);
504 unsigned int len = PAGE_SIZE - offset;
505
506 if (data + len > skb_tail_pointer(skb))
507 len = skb_tail_pointer(skb) - data;
508
Wei Liue9ce7cb2014-06-04 10:30:42 +0100509 xenvif_gop_frag_copy(queue, skb, npo,
Zoltan Kiss3e2234b2014-03-06 21:48:25 +0000510 virt_to_page(data), len, offset, &head,
511 NULL,
512 0);
Ian Campbellf942dc22011-03-15 00:06:18 +0000513 data += len;
514 }
515
516 for (i = 0; i < nr_frags; i++) {
Zoltan Kiss58375742014-05-15 11:08:34 +0100517 /* This variable also signals whether foreign_gref has a real
518 * value or not.
519 */
Wei Liue9ce7cb2014-06-04 10:30:42 +0100520 struct xenvif_queue *foreign_queue = NULL;
Zoltan Kiss58375742014-05-15 11:08:34 +0100521 grant_ref_t foreign_gref;
522
523 if ((skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) &&
524 (ubuf->callback == &xenvif_zerocopy_callback)) {
525 const struct ubuf_info *const startpoint = ubuf;
526
527 /* Ideally ubuf points to the chain element which
528 * belongs to this frag. Or if frags were removed from
529 * the beginning, then shortly before it.
530 */
531 ubuf = xenvif_find_gref(skb, i, ubuf);
532
533 /* Try again from the beginning of the list, if we
534 * haven't tried from there. This only makes sense in
535 * the unlikely event of reordering the original frags.
536 * For injected local pages it's an unnecessary second
537 * run.
538 */
539 if (unlikely(!ubuf) && startpoint != head_ubuf)
540 ubuf = xenvif_find_gref(skb, i, head_ubuf);
541
542 if (likely(ubuf)) {
543 u16 pending_idx = ubuf->desc;
544
Wei Liue9ce7cb2014-06-04 10:30:42 +0100545 foreign_queue = ubuf_to_queue(ubuf);
546 foreign_gref =
547 foreign_queue->pending_tx_info[pending_idx].req.gref;
Zoltan Kiss58375742014-05-15 11:08:34 +0100548 /* Just a safety measure. If this was the last
549 * element on the list, the for loop will
550 * iterate again if a local page were added to
551 * the end. Using head_ubuf here prevents the
552 * second search on the chain. Or the original
553 * frags changed order, but that's less likely.
554 * In any way, ubuf shouldn't be NULL.
555 */
556 ubuf = ubuf->ctx ?
557 (struct ubuf_info *) ubuf->ctx :
558 head_ubuf;
559 } else
560 /* This frag was a local page, added to the
561 * array after the skb left netback.
562 */
563 ubuf = head_ubuf;
564 }
Wei Liue9ce7cb2014-06-04 10:30:42 +0100565 xenvif_gop_frag_copy(queue, skb, npo,
Wei Liu73764192013-08-26 12:59:39 +0100566 skb_frag_page(&skb_shinfo(skb)->frags[i]),
567 skb_frag_size(&skb_shinfo(skb)->frags[i]),
568 skb_shinfo(skb)->frags[i].page_offset,
Zoltan Kiss3e2234b2014-03-06 21:48:25 +0000569 &head,
Wei Liue9ce7cb2014-06-04 10:30:42 +0100570 foreign_queue,
571 foreign_queue ? foreign_gref : UINT_MAX);
Ian Campbellf942dc22011-03-15 00:06:18 +0000572 }
573
574 return npo->meta_prod - old_meta_prod;
575}
576
577/*
Wei Liu73764192013-08-26 12:59:39 +0100578 * This is a twin to xenvif_gop_skb. Assume that xenvif_gop_skb was
Ian Campbellf942dc22011-03-15 00:06:18 +0000579 * used to set up the operations on the top of
580 * netrx_pending_operations, which have since been done. Check that
581 * they didn't give any errors and advance over them.
582 */
Wei Liu73764192013-08-26 12:59:39 +0100583static int xenvif_check_gop(struct xenvif *vif, int nr_meta_slots,
584 struct netrx_pending_operations *npo)
Ian Campbellf942dc22011-03-15 00:06:18 +0000585{
586 struct gnttab_copy *copy_op;
587 int status = XEN_NETIF_RSP_OKAY;
588 int i;
589
590 for (i = 0; i < nr_meta_slots; i++) {
591 copy_op = npo->copy + npo->copy_cons++;
592 if (copy_op->status != GNTST_okay) {
593 netdev_dbg(vif->dev,
594 "Bad status %d from copy to DOM%d.\n",
595 copy_op->status, vif->domid);
596 status = XEN_NETIF_RSP_ERROR;
597 }
598 }
599
600 return status;
601}
602
Wei Liue9ce7cb2014-06-04 10:30:42 +0100603static void xenvif_add_frag_responses(struct xenvif_queue *queue, int status,
Wei Liu73764192013-08-26 12:59:39 +0100604 struct xenvif_rx_meta *meta,
605 int nr_meta_slots)
Ian Campbellf942dc22011-03-15 00:06:18 +0000606{
607 int i;
608 unsigned long offset;
609
610 /* No fragments used */
611 if (nr_meta_slots <= 1)
612 return;
613
614 nr_meta_slots--;
615
616 for (i = 0; i < nr_meta_slots; i++) {
617 int flags;
618 if (i == nr_meta_slots - 1)
619 flags = 0;
620 else
621 flags = XEN_NETRXF_more_data;
622
623 offset = 0;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100624 make_rx_response(queue, meta[i].id, status, offset,
Ian Campbellf942dc22011-03-15 00:06:18 +0000625 meta[i].size, flags);
626 }
627}
628
Wei Liue9ce7cb2014-06-04 10:30:42 +0100629void xenvif_kick_thread(struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +0000630{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100631 wake_up(&queue->wq);
Wei Liub3f980b2013-08-26 12:59:38 +0100632}
633
Wei Liue9ce7cb2014-06-04 10:30:42 +0100634static void xenvif_rx_action(struct xenvif_queue *queue)
Wei Liub3f980b2013-08-26 12:59:38 +0100635{
Ian Campbellf942dc22011-03-15 00:06:18 +0000636 s8 status;
Wei Liue1f00a692013-05-22 06:34:45 +0000637 u16 flags;
Ian Campbellf942dc22011-03-15 00:06:18 +0000638 struct xen_netif_rx_response *resp;
639 struct sk_buff_head rxq;
640 struct sk_buff *skb;
641 LIST_HEAD(notify);
642 int ret;
Ian Campbellf942dc22011-03-15 00:06:18 +0000643 unsigned long offset;
Paul Durrant11b57f92014-01-08 12:41:58 +0000644 bool need_to_notify = false;
Ian Campbellf942dc22011-03-15 00:06:18 +0000645
646 struct netrx_pending_operations npo = {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100647 .copy = queue->grant_copy_op,
648 .meta = queue->meta,
Ian Campbellf942dc22011-03-15 00:06:18 +0000649 };
650
651 skb_queue_head_init(&rxq);
652
David Vrabelf48da8b2014-10-22 14:08:54 +0100653 while (xenvif_rx_ring_slots_available(queue, XEN_NETBK_RX_SLOTS_MAX)
654 && (skb = xenvif_rx_dequeue(queue)) != NULL) {
Zoltan Kiss9ab98312014-02-04 19:54:37 +0000655 RING_IDX max_slots_needed;
Paul Durrant1425c7a2014-03-28 11:39:07 +0000656 RING_IDX old_req_cons;
657 RING_IDX ring_slots_used;
Paul Durrantca2f09f2013-12-06 16:36:07 +0000658 int i;
659
David Vrabelecf08d22014-10-22 14:08:55 +0100660 queue->last_rx_time = jiffies;
661
Paul Durrantca2f09f2013-12-06 16:36:07 +0000662 /* We need a cheap worse case estimate for the number of
663 * slots we'll use.
664 */
665
666 max_slots_needed = DIV_ROUND_UP(offset_in_page(skb->data) +
667 skb_headlen(skb),
668 PAGE_SIZE);
669 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
670 unsigned int size;
Paul Durranta02eb472014-03-28 11:39:06 +0000671 unsigned int offset;
672
Paul Durrantca2f09f2013-12-06 16:36:07 +0000673 size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
Paul Durranta02eb472014-03-28 11:39:06 +0000674 offset = skb_shinfo(skb)->frags[i].page_offset;
675
676 /* For a worse-case estimate we need to factor in
677 * the fragment page offset as this will affect the
678 * number of times xenvif_gop_frag_copy() will
679 * call start_new_rx_buffer().
680 */
681 max_slots_needed += DIV_ROUND_UP(offset + size,
682 PAGE_SIZE);
Paul Durrantca2f09f2013-12-06 16:36:07 +0000683 }
Paul Durranta02eb472014-03-28 11:39:06 +0000684
685 /* To avoid the estimate becoming too pessimal for some
686 * frontends that limit posted rx requests, cap the estimate
Zoltan Kiss59ae9fc2014-06-04 19:58:51 +0100687 * at MAX_SKB_FRAGS. In this case netback will fully coalesce
688 * the skb into the provided slots.
Paul Durranta02eb472014-03-28 11:39:06 +0000689 */
Zoltan Kiss59ae9fc2014-06-04 19:58:51 +0100690 if (max_slots_needed > MAX_SKB_FRAGS) {
Paul Durranta02eb472014-03-28 11:39:06 +0000691 max_slots_needed = MAX_SKB_FRAGS;
Zoltan Kiss59ae9fc2014-06-04 19:58:51 +0100692 XENVIF_RX_CB(skb)->full_coalesce = true;
693 } else {
694 XENVIF_RX_CB(skb)->full_coalesce = false;
695 }
Paul Durranta02eb472014-03-28 11:39:06 +0000696
697 /* We may need one more slot for GSO metadata */
Annie Li5bd07672014-03-10 22:58:34 +0800698 if (skb_is_gso(skb) &&
699 (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4 ||
700 skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6))
Paul Durrantca2f09f2013-12-06 16:36:07 +0000701 max_slots_needed++;
702
Wei Liue9ce7cb2014-06-04 10:30:42 +0100703 old_req_cons = queue->rx.req_cons;
704 XENVIF_RX_CB(skb)->meta_slots_used = xenvif_gop_skb(skb, &npo, queue);
705 ring_slots_used = queue->rx.req_cons - old_req_cons;
Paul Durrant1425c7a2014-03-28 11:39:07 +0000706
707 BUG_ON(ring_slots_used > max_slots_needed);
Ian Campbellf942dc22011-03-15 00:06:18 +0000708
709 __skb_queue_tail(&rxq, skb);
Ian Campbellf942dc22011-03-15 00:06:18 +0000710 }
711
Wei Liue9ce7cb2014-06-04 10:30:42 +0100712 BUG_ON(npo.meta_prod > ARRAY_SIZE(queue->meta));
Ian Campbellf942dc22011-03-15 00:06:18 +0000713
714 if (!npo.copy_prod)
Paul Durrantca2f09f2013-12-06 16:36:07 +0000715 goto done;
Ian Campbellf942dc22011-03-15 00:06:18 +0000716
Paul Durrantac3d5ac2013-12-23 09:27:17 +0000717 BUG_ON(npo.copy_prod > MAX_GRANT_COPY_OPS);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100718 gnttab_batch_copy(queue->grant_copy_op, npo.copy_prod);
Ian Campbellf942dc22011-03-15 00:06:18 +0000719
720 while ((skb = __skb_dequeue(&rxq)) != NULL) {
Ian Campbellf942dc22011-03-15 00:06:18 +0000721
Wei Liue9ce7cb2014-06-04 10:30:42 +0100722 if ((1 << queue->meta[npo.meta_cons].gso_type) &
723 queue->vif->gso_prefix_mask) {
724 resp = RING_GET_RESPONSE(&queue->rx,
725 queue->rx.rsp_prod_pvt++);
Ian Campbellf942dc22011-03-15 00:06:18 +0000726
727 resp->flags = XEN_NETRXF_gso_prefix | XEN_NETRXF_more_data;
728
Wei Liue9ce7cb2014-06-04 10:30:42 +0100729 resp->offset = queue->meta[npo.meta_cons].gso_size;
730 resp->id = queue->meta[npo.meta_cons].id;
Zoltan Kiss8f13dd92014-03-06 21:48:23 +0000731 resp->status = XENVIF_RX_CB(skb)->meta_slots_used;
Ian Campbellf942dc22011-03-15 00:06:18 +0000732
733 npo.meta_cons++;
Zoltan Kiss8f13dd92014-03-06 21:48:23 +0000734 XENVIF_RX_CB(skb)->meta_slots_used--;
Ian Campbellf942dc22011-03-15 00:06:18 +0000735 }
736
737
Wei Liue9ce7cb2014-06-04 10:30:42 +0100738 queue->stats.tx_bytes += skb->len;
739 queue->stats.tx_packets++;
Ian Campbellf942dc22011-03-15 00:06:18 +0000740
Wei Liue9ce7cb2014-06-04 10:30:42 +0100741 status = xenvif_check_gop(queue->vif,
Zoltan Kiss8f13dd92014-03-06 21:48:23 +0000742 XENVIF_RX_CB(skb)->meta_slots_used,
743 &npo);
Ian Campbellf942dc22011-03-15 00:06:18 +0000744
Zoltan Kiss8f13dd92014-03-06 21:48:23 +0000745 if (XENVIF_RX_CB(skb)->meta_slots_used == 1)
Ian Campbellf942dc22011-03-15 00:06:18 +0000746 flags = 0;
747 else
748 flags = XEN_NETRXF_more_data;
749
750 if (skb->ip_summed == CHECKSUM_PARTIAL) /* local packet? */
751 flags |= XEN_NETRXF_csum_blank | XEN_NETRXF_data_validated;
752 else if (skb->ip_summed == CHECKSUM_UNNECESSARY)
753 /* remote but checksummed. */
754 flags |= XEN_NETRXF_data_validated;
755
756 offset = 0;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100757 resp = make_rx_response(queue, queue->meta[npo.meta_cons].id,
Ian Campbellf942dc22011-03-15 00:06:18 +0000758 status, offset,
Wei Liue9ce7cb2014-06-04 10:30:42 +0100759 queue->meta[npo.meta_cons].size,
Ian Campbellf942dc22011-03-15 00:06:18 +0000760 flags);
761
Wei Liue9ce7cb2014-06-04 10:30:42 +0100762 if ((1 << queue->meta[npo.meta_cons].gso_type) &
763 queue->vif->gso_mask) {
Ian Campbellf942dc22011-03-15 00:06:18 +0000764 struct xen_netif_extra_info *gso =
765 (struct xen_netif_extra_info *)
Wei Liue9ce7cb2014-06-04 10:30:42 +0100766 RING_GET_RESPONSE(&queue->rx,
767 queue->rx.rsp_prod_pvt++);
Ian Campbellf942dc22011-03-15 00:06:18 +0000768
769 resp->flags |= XEN_NETRXF_extra_info;
770
Wei Liue9ce7cb2014-06-04 10:30:42 +0100771 gso->u.gso.type = queue->meta[npo.meta_cons].gso_type;
772 gso->u.gso.size = queue->meta[npo.meta_cons].gso_size;
Ian Campbellf942dc22011-03-15 00:06:18 +0000773 gso->u.gso.pad = 0;
774 gso->u.gso.features = 0;
775
776 gso->type = XEN_NETIF_EXTRA_TYPE_GSO;
777 gso->flags = 0;
778 }
779
Wei Liue9ce7cb2014-06-04 10:30:42 +0100780 xenvif_add_frag_responses(queue, status,
781 queue->meta + npo.meta_cons + 1,
Zoltan Kiss8f13dd92014-03-06 21:48:23 +0000782 XENVIF_RX_CB(skb)->meta_slots_used);
Ian Campbellf942dc22011-03-15 00:06:18 +0000783
Wei Liue9ce7cb2014-06-04 10:30:42 +0100784 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&queue->rx, ret);
Ian Campbellf942dc22011-03-15 00:06:18 +0000785
Paul Durrant11b57f92014-01-08 12:41:58 +0000786 need_to_notify |= !!ret;
Wei Liub3f980b2013-08-26 12:59:38 +0100787
Zoltan Kiss8f13dd92014-03-06 21:48:23 +0000788 npo.meta_cons += XENVIF_RX_CB(skb)->meta_slots_used;
Ian Campbellf942dc22011-03-15 00:06:18 +0000789 dev_kfree_skb(skb);
790 }
791
Paul Durrantca2f09f2013-12-06 16:36:07 +0000792done:
Wei Liub3f980b2013-08-26 12:59:38 +0100793 if (need_to_notify)
Wei Liue9ce7cb2014-06-04 10:30:42 +0100794 notify_remote_via_irq(queue->rx_irq);
Ian Campbellf942dc22011-03-15 00:06:18 +0000795}
796
Wei Liue9ce7cb2014-06-04 10:30:42 +0100797void xenvif_napi_schedule_or_enable_events(struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +0000798{
799 int more_to_do;
800
Wei Liue9ce7cb2014-06-04 10:30:42 +0100801 RING_FINAL_CHECK_FOR_REQUESTS(&queue->tx, more_to_do);
Ian Campbellf942dc22011-03-15 00:06:18 +0000802
803 if (more_to_do)
Wei Liue9ce7cb2014-06-04 10:30:42 +0100804 napi_schedule(&queue->napi);
Ian Campbellf942dc22011-03-15 00:06:18 +0000805}
806
Wei Liue9ce7cb2014-06-04 10:30:42 +0100807static void tx_add_credit(struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +0000808{
809 unsigned long max_burst, max_credit;
810
811 /*
812 * Allow a burst big enough to transmit a jumbo packet of up to 128kB.
813 * Otherwise the interface can seize up due to insufficient credit.
814 */
Wei Liue9ce7cb2014-06-04 10:30:42 +0100815 max_burst = RING_GET_REQUEST(&queue->tx, queue->tx.req_cons)->size;
Ian Campbellf942dc22011-03-15 00:06:18 +0000816 max_burst = min(max_burst, 131072UL);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100817 max_burst = max(max_burst, queue->credit_bytes);
Ian Campbellf942dc22011-03-15 00:06:18 +0000818
819 /* Take care that adding a new chunk of credit doesn't wrap to zero. */
Wei Liue9ce7cb2014-06-04 10:30:42 +0100820 max_credit = queue->remaining_credit + queue->credit_bytes;
821 if (max_credit < queue->remaining_credit)
Ian Campbellf942dc22011-03-15 00:06:18 +0000822 max_credit = ULONG_MAX; /* wrapped: clamp to ULONG_MAX */
823
Wei Liue9ce7cb2014-06-04 10:30:42 +0100824 queue->remaining_credit = min(max_credit, max_burst);
Ian Campbellf942dc22011-03-15 00:06:18 +0000825}
826
827static void tx_credit_callback(unsigned long data)
828{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100829 struct xenvif_queue *queue = (struct xenvif_queue *)data;
830 tx_add_credit(queue);
831 xenvif_napi_schedule_or_enable_events(queue);
Ian Campbellf942dc22011-03-15 00:06:18 +0000832}
833
Wei Liue9ce7cb2014-06-04 10:30:42 +0100834static void xenvif_tx_err(struct xenvif_queue *queue,
Wei Liu73764192013-08-26 12:59:39 +0100835 struct xen_netif_tx_request *txp, RING_IDX end)
Ian Campbellf942dc22011-03-15 00:06:18 +0000836{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100837 RING_IDX cons = queue->tx.req_cons;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000838 unsigned long flags;
Ian Campbellf942dc22011-03-15 00:06:18 +0000839
840 do {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100841 spin_lock_irqsave(&queue->response_lock, flags);
842 make_tx_response(queue, txp, XEN_NETIF_RSP_ERROR);
843 spin_unlock_irqrestore(&queue->response_lock, flags);
Ian Campbellb9149722013-02-06 23:41:38 +0000844 if (cons == end)
Ian Campbellf942dc22011-03-15 00:06:18 +0000845 break;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100846 txp = RING_GET_REQUEST(&queue->tx, cons++);
Ian Campbellf942dc22011-03-15 00:06:18 +0000847 } while (1);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100848 queue->tx.req_cons = cons;
Ian Campbellf942dc22011-03-15 00:06:18 +0000849}
850
Wei Liu73764192013-08-26 12:59:39 +0100851static void xenvif_fatal_tx_err(struct xenvif *vif)
Ian Campbell488562862013-02-06 23:41:35 +0000852{
853 netdev_err(vif->dev, "fatal error; disabling device\n");
Wei Liue9d8b2c2014-04-01 12:46:12 +0100854 vif->disabled = true;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100855 /* Disable the vif from queue 0's kthread */
856 if (vif->queues)
857 xenvif_kick_thread(&vif->queues[0]);
Ian Campbell488562862013-02-06 23:41:35 +0000858}
859
Wei Liue9ce7cb2014-06-04 10:30:42 +0100860static int xenvif_count_requests(struct xenvif_queue *queue,
Wei Liu73764192013-08-26 12:59:39 +0100861 struct xen_netif_tx_request *first,
862 struct xen_netif_tx_request *txp,
863 int work_to_do)
Ian Campbellf942dc22011-03-15 00:06:18 +0000864{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100865 RING_IDX cons = queue->tx.req_cons;
Wei Liu2810e5b2013-04-22 02:20:42 +0000866 int slots = 0;
867 int drop_err = 0;
Wei Liu59ccb4e2013-05-02 00:43:58 +0000868 int more_data;
Ian Campbellf942dc22011-03-15 00:06:18 +0000869
870 if (!(first->flags & XEN_NETTXF_more_data))
871 return 0;
872
873 do {
Wei Liu59ccb4e2013-05-02 00:43:58 +0000874 struct xen_netif_tx_request dropped_tx = { 0 };
875
Wei Liu2810e5b2013-04-22 02:20:42 +0000876 if (slots >= work_to_do) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100877 netdev_err(queue->vif->dev,
Wei Liu2810e5b2013-04-22 02:20:42 +0000878 "Asked for %d slots but exceeds this limit\n",
879 work_to_do);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100880 xenvif_fatal_tx_err(queue->vif);
David Vrabel35876b52013-02-14 03:18:57 +0000881 return -ENODATA;
Ian Campbellf942dc22011-03-15 00:06:18 +0000882 }
883
Wei Liu2810e5b2013-04-22 02:20:42 +0000884 /* This guest is really using too many slots and
885 * considered malicious.
886 */
Wei Liu37641492013-05-02 00:43:59 +0000887 if (unlikely(slots >= fatal_skb_slots)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100888 netdev_err(queue->vif->dev,
Wei Liu2810e5b2013-04-22 02:20:42 +0000889 "Malicious frontend using %d slots, threshold %u\n",
Wei Liu37641492013-05-02 00:43:59 +0000890 slots, fatal_skb_slots);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100891 xenvif_fatal_tx_err(queue->vif);
David Vrabel35876b52013-02-14 03:18:57 +0000892 return -E2BIG;
Ian Campbellf942dc22011-03-15 00:06:18 +0000893 }
894
Wei Liu2810e5b2013-04-22 02:20:42 +0000895 /* Xen network protocol had implicit dependency on
Wei Liu37641492013-05-02 00:43:59 +0000896 * MAX_SKB_FRAGS. XEN_NETBK_LEGACY_SLOTS_MAX is set to
897 * the historical MAX_SKB_FRAGS value 18 to honor the
898 * same behavior as before. Any packet using more than
899 * 18 slots but less than fatal_skb_slots slots is
900 * dropped
Wei Liu2810e5b2013-04-22 02:20:42 +0000901 */
Wei Liu37641492013-05-02 00:43:59 +0000902 if (!drop_err && slots >= XEN_NETBK_LEGACY_SLOTS_MAX) {
Wei Liu2810e5b2013-04-22 02:20:42 +0000903 if (net_ratelimit())
Wei Liue9ce7cb2014-06-04 10:30:42 +0100904 netdev_dbg(queue->vif->dev,
Wei Liu2810e5b2013-04-22 02:20:42 +0000905 "Too many slots (%d) exceeding limit (%d), dropping packet\n",
Wei Liu37641492013-05-02 00:43:59 +0000906 slots, XEN_NETBK_LEGACY_SLOTS_MAX);
Wei Liu2810e5b2013-04-22 02:20:42 +0000907 drop_err = -E2BIG;
908 }
909
Wei Liu59ccb4e2013-05-02 00:43:58 +0000910 if (drop_err)
911 txp = &dropped_tx;
912
Wei Liue9ce7cb2014-06-04 10:30:42 +0100913 memcpy(txp, RING_GET_REQUEST(&queue->tx, cons + slots),
Ian Campbellf942dc22011-03-15 00:06:18 +0000914 sizeof(*txp));
Wei Liu03393fd52013-04-22 02:20:43 +0000915
916 /* If the guest submitted a frame >= 64 KiB then
917 * first->size overflowed and following slots will
918 * appear to be larger than the frame.
919 *
920 * This cannot be fatal error as there are buggy
921 * frontends that do this.
922 *
923 * Consume all slots and drop the packet.
924 */
925 if (!drop_err && txp->size > first->size) {
926 if (net_ratelimit())
Wei Liue9ce7cb2014-06-04 10:30:42 +0100927 netdev_dbg(queue->vif->dev,
Wei Liu03393fd52013-04-22 02:20:43 +0000928 "Invalid tx request, slot size %u > remaining size %u\n",
929 txp->size, first->size);
930 drop_err = -EIO;
Ian Campbellf942dc22011-03-15 00:06:18 +0000931 }
932
933 first->size -= txp->size;
Wei Liu2810e5b2013-04-22 02:20:42 +0000934 slots++;
Ian Campbellf942dc22011-03-15 00:06:18 +0000935
936 if (unlikely((txp->offset + txp->size) > PAGE_SIZE)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100937 netdev_err(queue->vif->dev, "Cross page boundary, txp->offset: %x, size: %u\n",
Ian Campbellf942dc22011-03-15 00:06:18 +0000938 txp->offset, txp->size);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100939 xenvif_fatal_tx_err(queue->vif);
David Vrabel35876b52013-02-14 03:18:57 +0000940 return -EINVAL;
Ian Campbellf942dc22011-03-15 00:06:18 +0000941 }
Wei Liu59ccb4e2013-05-02 00:43:58 +0000942
943 more_data = txp->flags & XEN_NETTXF_more_data;
944
945 if (!drop_err)
946 txp++;
947
948 } while (more_data);
Wei Liu2810e5b2013-04-22 02:20:42 +0000949
950 if (drop_err) {
Wei Liue9ce7cb2014-06-04 10:30:42 +0100951 xenvif_tx_err(queue, first, cons + slots);
Wei Liu2810e5b2013-04-22 02:20:42 +0000952 return drop_err;
953 }
954
955 return slots;
Ian Campbellf942dc22011-03-15 00:06:18 +0000956}
957
Zoltan Kiss8f13dd92014-03-06 21:48:23 +0000958
959struct xenvif_tx_cb {
960 u16 pending_idx;
961};
962
963#define XENVIF_TX_CB(skb) ((struct xenvif_tx_cb *)(skb)->cb)
964
Wei Liue9ce7cb2014-06-04 10:30:42 +0100965static inline void xenvif_tx_create_map_op(struct xenvif_queue *queue,
Zoltan Kiss9074ce22014-04-02 18:04:57 +0100966 u16 pending_idx,
967 struct xen_netif_tx_request *txp,
968 struct gnttab_map_grant_ref *mop)
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000969{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100970 queue->pages_to_map[mop-queue->tx_map_ops] = queue->mmap_pages[pending_idx];
971 gnttab_set_map_op(mop, idx_to_kaddr(queue, pending_idx),
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000972 GNTMAP_host_map | GNTMAP_readonly,
Wei Liue9ce7cb2014-06-04 10:30:42 +0100973 txp->gref, queue->vif->domid);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000974
Wei Liue9ce7cb2014-06-04 10:30:42 +0100975 memcpy(&queue->pending_tx_info[pending_idx].req, txp,
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000976 sizeof(*txp));
977}
978
Zoltan Kisse3377f32014-03-06 21:48:29 +0000979static inline struct sk_buff *xenvif_alloc_skb(unsigned int size)
980{
981 struct sk_buff *skb =
982 alloc_skb(size + NET_SKB_PAD + NET_IP_ALIGN,
983 GFP_ATOMIC | __GFP_NOWARN);
984 if (unlikely(skb == NULL))
985 return NULL;
986
987 /* Packets passed to netif_rx() must have some headroom. */
988 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
989
990 /* Initialize it here to avoid later surprises */
991 skb_shinfo(skb)->destructor_arg = NULL;
992
993 return skb;
994}
995
Wei Liue9ce7cb2014-06-04 10:30:42 +0100996static struct gnttab_map_grant_ref *xenvif_get_requests(struct xenvif_queue *queue,
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000997 struct sk_buff *skb,
998 struct xen_netif_tx_request *txp,
999 struct gnttab_map_grant_ref *gop)
Ian Campbellf942dc22011-03-15 00:06:18 +00001000{
1001 struct skb_shared_info *shinfo = skb_shinfo(skb);
1002 skb_frag_t *frags = shinfo->frags;
Zoltan Kiss8f13dd92014-03-06 21:48:23 +00001003 u16 pending_idx = XENVIF_TX_CB(skb)->pending_idx;
Zoltan Kiss62bad312014-03-06 21:48:27 +00001004 int start;
1005 pending_ring_idx_t index;
Zoltan Kisse3377f32014-03-06 21:48:29 +00001006 unsigned int nr_slots, frag_overflow = 0;
Wei Liu2810e5b2013-04-22 02:20:42 +00001007
1008 /* At this point shinfo->nr_frags is in fact the number of
Wei Liu37641492013-05-02 00:43:59 +00001009 * slots, which can be as large as XEN_NETBK_LEGACY_SLOTS_MAX.
Wei Liu2810e5b2013-04-22 02:20:42 +00001010 */
Zoltan Kisse3377f32014-03-06 21:48:29 +00001011 if (shinfo->nr_frags > MAX_SKB_FRAGS) {
1012 frag_overflow = shinfo->nr_frags - MAX_SKB_FRAGS;
1013 BUG_ON(frag_overflow > MAX_SKB_FRAGS);
1014 shinfo->nr_frags = MAX_SKB_FRAGS;
1015 }
Wei Liu2810e5b2013-04-22 02:20:42 +00001016 nr_slots = shinfo->nr_frags;
Ian Campbellf942dc22011-03-15 00:06:18 +00001017
1018 /* Skip first skb fragment if it is on same page as header fragment. */
Ian Campbellea066ad2011-10-05 00:28:46 +00001019 start = (frag_get_pending_idx(&shinfo->frags[0]) == pending_idx);
Ian Campbellf942dc22011-03-15 00:06:18 +00001020
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001021 for (shinfo->nr_frags = start; shinfo->nr_frags < nr_slots;
1022 shinfo->nr_frags++, txp++, gop++) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001023 index = pending_index(queue->pending_cons++);
1024 pending_idx = queue->pending_ring[index];
1025 xenvif_tx_create_map_op(queue, pending_idx, txp, gop);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001026 frag_set_pending_idx(&frags[shinfo->nr_frags], pending_idx);
Ian Campbellf942dc22011-03-15 00:06:18 +00001027 }
1028
Zoltan Kisse3377f32014-03-06 21:48:29 +00001029 if (frag_overflow) {
1030 struct sk_buff *nskb = xenvif_alloc_skb(0);
1031 if (unlikely(nskb == NULL)) {
1032 if (net_ratelimit())
Wei Liue9ce7cb2014-06-04 10:30:42 +01001033 netdev_err(queue->vif->dev,
Zoltan Kisse3377f32014-03-06 21:48:29 +00001034 "Can't allocate the frag_list skb.\n");
1035 return NULL;
1036 }
1037
1038 shinfo = skb_shinfo(nskb);
1039 frags = shinfo->frags;
1040
1041 for (shinfo->nr_frags = 0; shinfo->nr_frags < frag_overflow;
1042 shinfo->nr_frags++, txp++, gop++) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001043 index = pending_index(queue->pending_cons++);
1044 pending_idx = queue->pending_ring[index];
1045 xenvif_tx_create_map_op(queue, pending_idx, txp, gop);
Zoltan Kisse3377f32014-03-06 21:48:29 +00001046 frag_set_pending_idx(&frags[shinfo->nr_frags],
1047 pending_idx);
1048 }
1049
1050 skb_shinfo(skb)->frag_list = nskb;
1051 }
Wei Liu2810e5b2013-04-22 02:20:42 +00001052
Ian Campbellf942dc22011-03-15 00:06:18 +00001053 return gop;
1054}
1055
Wei Liue9ce7cb2014-06-04 10:30:42 +01001056static inline void xenvif_grant_handle_set(struct xenvif_queue *queue,
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001057 u16 pending_idx,
1058 grant_handle_t handle)
1059{
Wei Liue9ce7cb2014-06-04 10:30:42 +01001060 if (unlikely(queue->grant_tx_handle[pending_idx] !=
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001061 NETBACK_INVALID_HANDLE)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001062 netdev_err(queue->vif->dev,
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001063 "Trying to overwrite active handle! pending_idx: %x\n",
1064 pending_idx);
1065 BUG();
1066 }
Wei Liue9ce7cb2014-06-04 10:30:42 +01001067 queue->grant_tx_handle[pending_idx] = handle;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001068}
1069
Wei Liue9ce7cb2014-06-04 10:30:42 +01001070static inline void xenvif_grant_handle_reset(struct xenvif_queue *queue,
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001071 u16 pending_idx)
1072{
Wei Liue9ce7cb2014-06-04 10:30:42 +01001073 if (unlikely(queue->grant_tx_handle[pending_idx] ==
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001074 NETBACK_INVALID_HANDLE)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001075 netdev_err(queue->vif->dev,
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001076 "Trying to unmap invalid handle! pending_idx: %x\n",
1077 pending_idx);
1078 BUG();
1079 }
Wei Liue9ce7cb2014-06-04 10:30:42 +01001080 queue->grant_tx_handle[pending_idx] = NETBACK_INVALID_HANDLE;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001081}
1082
Wei Liue9ce7cb2014-06-04 10:30:42 +01001083static int xenvif_tx_check_gop(struct xenvif_queue *queue,
Wei Liu73764192013-08-26 12:59:39 +01001084 struct sk_buff *skb,
Zoltan Kissbdab8272014-04-02 18:04:58 +01001085 struct gnttab_map_grant_ref **gopp_map,
1086 struct gnttab_copy **gopp_copy)
Ian Campbellf942dc22011-03-15 00:06:18 +00001087{
Zoltan Kiss9074ce22014-04-02 18:04:57 +01001088 struct gnttab_map_grant_ref *gop_map = *gopp_map;
Zoltan Kiss8f13dd92014-03-06 21:48:23 +00001089 u16 pending_idx = XENVIF_TX_CB(skb)->pending_idx;
Zoltan Kiss1a998d32014-07-18 19:08:02 +01001090 /* This always points to the shinfo of the skb being checked, which
1091 * could be either the first or the one on the frag_list
1092 */
Ian Campbellf942dc22011-03-15 00:06:18 +00001093 struct skb_shared_info *shinfo = skb_shinfo(skb);
Zoltan Kiss1a998d32014-07-18 19:08:02 +01001094 /* If this is non-NULL, we are currently checking the frag_list skb, and
1095 * this points to the shinfo of the first one
1096 */
1097 struct skb_shared_info *first_shinfo = NULL;
Ian Campbellf942dc22011-03-15 00:06:18 +00001098 int nr_frags = shinfo->nr_frags;
Zoltan Kiss1b860da2014-07-18 19:08:04 +01001099 const bool sharedslot = nr_frags &&
1100 frag_get_pending_idx(&shinfo->frags[0]) == pending_idx;
Zoltan Kissbdab8272014-04-02 18:04:58 +01001101 int i, err;
Ian Campbellf942dc22011-03-15 00:06:18 +00001102
1103 /* Check status of header. */
Zoltan Kissbdab8272014-04-02 18:04:58 +01001104 err = (*gopp_copy)->status;
Zoltan Kissbdab8272014-04-02 18:04:58 +01001105 if (unlikely(err)) {
1106 if (net_ratelimit())
Wei Liue9ce7cb2014-06-04 10:30:42 +01001107 netdev_dbg(queue->vif->dev,
Zoltan Kiss00aefce2014-04-04 15:45:24 +01001108 "Grant copy of header failed! status: %d pending_idx: %u ref: %u\n",
Zoltan Kissbdab8272014-04-02 18:04:58 +01001109 (*gopp_copy)->status,
1110 pending_idx,
1111 (*gopp_copy)->source.u.ref);
Zoltan Kiss1b860da2014-07-18 19:08:04 +01001112 /* The first frag might still have this slot mapped */
1113 if (!sharedslot)
1114 xenvif_idx_release(queue, pending_idx,
1115 XEN_NETIF_RSP_ERROR);
Zoltan Kissbdab8272014-04-02 18:04:58 +01001116 }
Zoltan Kissd8cfbfc2014-07-18 19:08:05 +01001117 (*gopp_copy)++;
Ian Campbellf942dc22011-03-15 00:06:18 +00001118
Zoltan Kisse3377f32014-03-06 21:48:29 +00001119check_frags:
Zoltan Kissbdab8272014-04-02 18:04:58 +01001120 for (i = 0; i < nr_frags; i++, gop_map++) {
Ian Campbellf942dc22011-03-15 00:06:18 +00001121 int j, newerr;
Ian Campbellf942dc22011-03-15 00:06:18 +00001122
Ian Campbellea066ad2011-10-05 00:28:46 +00001123 pending_idx = frag_get_pending_idx(&shinfo->frags[i]);
Ian Campbellf942dc22011-03-15 00:06:18 +00001124
1125 /* Check error status: if okay then remember grant handle. */
Zoltan Kissbdab8272014-04-02 18:04:58 +01001126 newerr = gop_map->status;
Wei Liu2810e5b2013-04-22 02:20:42 +00001127
Ian Campbellf942dc22011-03-15 00:06:18 +00001128 if (likely(!newerr)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001129 xenvif_grant_handle_set(queue,
Zoltan Kiss9074ce22014-04-02 18:04:57 +01001130 pending_idx,
1131 gop_map->handle);
Ian Campbellf942dc22011-03-15 00:06:18 +00001132 /* Had a previous error? Invalidate this fragment. */
Zoltan Kiss1b860da2014-07-18 19:08:04 +01001133 if (unlikely(err)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001134 xenvif_idx_unmap(queue, pending_idx);
Zoltan Kiss1b860da2014-07-18 19:08:04 +01001135 /* If the mapping of the first frag was OK, but
1136 * the header's copy failed, and they are
1137 * sharing a slot, send an error
1138 */
1139 if (i == 0 && sharedslot)
1140 xenvif_idx_release(queue, pending_idx,
1141 XEN_NETIF_RSP_ERROR);
1142 else
1143 xenvif_idx_release(queue, pending_idx,
1144 XEN_NETIF_RSP_OKAY);
1145 }
Ian Campbellf942dc22011-03-15 00:06:18 +00001146 continue;
1147 }
1148
1149 /* Error on this fragment: respond to client with an error. */
Zoltan Kissbdab8272014-04-02 18:04:58 +01001150 if (net_ratelimit())
Wei Liue9ce7cb2014-06-04 10:30:42 +01001151 netdev_dbg(queue->vif->dev,
Zoltan Kiss00aefce2014-04-04 15:45:24 +01001152 "Grant map of %d. frag failed! status: %d pending_idx: %u ref: %u\n",
Zoltan Kissbdab8272014-04-02 18:04:58 +01001153 i,
1154 gop_map->status,
1155 pending_idx,
1156 gop_map->ref);
Zoltan Kiss1b860da2014-07-18 19:08:04 +01001157
Wei Liue9ce7cb2014-06-04 10:30:42 +01001158 xenvif_idx_release(queue, pending_idx, XEN_NETIF_RSP_ERROR);
Ian Campbellf942dc22011-03-15 00:06:18 +00001159
1160 /* Not the first error? Preceding frags already invalidated. */
1161 if (err)
1162 continue;
Zoltan Kiss1b860da2014-07-18 19:08:04 +01001163
1164 /* First error: if the header haven't shared a slot with the
1165 * first frag, release it as well.
1166 */
1167 if (!sharedslot)
1168 xenvif_idx_release(queue,
1169 XENVIF_TX_CB(skb)->pending_idx,
1170 XEN_NETIF_RSP_OKAY);
1171
1172 /* Invalidate preceding fragments of this skb. */
Zoltan Kissbdab8272014-04-02 18:04:58 +01001173 for (j = 0; j < i; j++) {
Jan Beulich5ccb3ea2011-11-18 05:42:05 +00001174 pending_idx = frag_get_pending_idx(&shinfo->frags[j]);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001175 xenvif_idx_unmap(queue, pending_idx);
Zoltan Kiss1b860da2014-07-18 19:08:04 +01001176 xenvif_idx_release(queue, pending_idx,
1177 XEN_NETIF_RSP_OKAY);
Ian Campbellf942dc22011-03-15 00:06:18 +00001178 }
1179
Zoltan Kiss1a998d32014-07-18 19:08:02 +01001180 /* And if we found the error while checking the frag_list, unmap
1181 * the first skb's frags
1182 */
1183 if (first_shinfo) {
1184 for (j = 0; j < first_shinfo->nr_frags; j++) {
1185 pending_idx = frag_get_pending_idx(&first_shinfo->frags[j]);
1186 xenvif_idx_unmap(queue, pending_idx);
Zoltan Kiss1b860da2014-07-18 19:08:04 +01001187 xenvif_idx_release(queue, pending_idx,
1188 XEN_NETIF_RSP_OKAY);
Zoltan Kiss1a998d32014-07-18 19:08:02 +01001189 }
Ian Campbellf942dc22011-03-15 00:06:18 +00001190 }
1191
1192 /* Remember the error: invalidate all subsequent fragments. */
1193 err = newerr;
1194 }
1195
Zoltan Kiss1a998d32014-07-18 19:08:02 +01001196 if (skb_has_frag_list(skb) && !first_shinfo) {
1197 first_shinfo = skb_shinfo(skb);
1198 shinfo = skb_shinfo(skb_shinfo(skb)->frag_list);
Zoltan Kisse3377f32014-03-06 21:48:29 +00001199 nr_frags = shinfo->nr_frags;
Zoltan Kisse3377f32014-03-06 21:48:29 +00001200
1201 goto check_frags;
1202 }
1203
Zoltan Kissbdab8272014-04-02 18:04:58 +01001204 *gopp_map = gop_map;
Ian Campbellf942dc22011-03-15 00:06:18 +00001205 return err;
1206}
1207
Wei Liue9ce7cb2014-06-04 10:30:42 +01001208static void xenvif_fill_frags(struct xenvif_queue *queue, struct sk_buff *skb)
Ian Campbellf942dc22011-03-15 00:06:18 +00001209{
1210 struct skb_shared_info *shinfo = skb_shinfo(skb);
1211 int nr_frags = shinfo->nr_frags;
1212 int i;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001213 u16 prev_pending_idx = INVALID_PENDING_IDX;
1214
Ian Campbellf942dc22011-03-15 00:06:18 +00001215 for (i = 0; i < nr_frags; i++) {
1216 skb_frag_t *frag = shinfo->frags + i;
1217 struct xen_netif_tx_request *txp;
Ian Campbellea066ad2011-10-05 00:28:46 +00001218 struct page *page;
1219 u16 pending_idx;
Ian Campbellf942dc22011-03-15 00:06:18 +00001220
Ian Campbellea066ad2011-10-05 00:28:46 +00001221 pending_idx = frag_get_pending_idx(frag);
Ian Campbellf942dc22011-03-15 00:06:18 +00001222
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001223 /* If this is not the first frag, chain it to the previous*/
Zoltan Kissbdab8272014-04-02 18:04:58 +01001224 if (prev_pending_idx == INVALID_PENDING_IDX)
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001225 skb_shinfo(skb)->destructor_arg =
Wei Liue9ce7cb2014-06-04 10:30:42 +01001226 &callback_param(queue, pending_idx);
Zoltan Kissbdab8272014-04-02 18:04:58 +01001227 else
Wei Liue9ce7cb2014-06-04 10:30:42 +01001228 callback_param(queue, prev_pending_idx).ctx =
1229 &callback_param(queue, pending_idx);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001230
Wei Liue9ce7cb2014-06-04 10:30:42 +01001231 callback_param(queue, pending_idx).ctx = NULL;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001232 prev_pending_idx = pending_idx;
1233
Wei Liue9ce7cb2014-06-04 10:30:42 +01001234 txp = &queue->pending_tx_info[pending_idx].req;
1235 page = virt_to_page(idx_to_kaddr(queue, pending_idx));
Ian Campbellea066ad2011-10-05 00:28:46 +00001236 __skb_fill_page_desc(skb, i, page, txp->offset, txp->size);
Ian Campbellf942dc22011-03-15 00:06:18 +00001237 skb->len += txp->size;
1238 skb->data_len += txp->size;
1239 skb->truesize += txp->size;
1240
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001241 /* Take an extra reference to offset network stack's put_page */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001242 get_page(queue->mmap_pages[pending_idx]);
Ian Campbellf942dc22011-03-15 00:06:18 +00001243 }
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001244 /* FIXME: __skb_fill_page_desc set this to true because page->pfmemalloc
1245 * overlaps with "index", and "mapping" is not set. I think mapping
1246 * should be set. If delivered to local stack, it would drop this
1247 * skb in sk_filter unless the socket has the right to use it.
1248 */
1249 skb->pfmemalloc = false;
Ian Campbellf942dc22011-03-15 00:06:18 +00001250}
1251
Wei Liue9ce7cb2014-06-04 10:30:42 +01001252static int xenvif_get_extras(struct xenvif_queue *queue,
Ian Campbellf942dc22011-03-15 00:06:18 +00001253 struct xen_netif_extra_info *extras,
1254 int work_to_do)
1255{
1256 struct xen_netif_extra_info extra;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001257 RING_IDX cons = queue->tx.req_cons;
Ian Campbellf942dc22011-03-15 00:06:18 +00001258
1259 do {
1260 if (unlikely(work_to_do-- <= 0)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001261 netdev_err(queue->vif->dev, "Missing extra info\n");
1262 xenvif_fatal_tx_err(queue->vif);
Ian Campbellf942dc22011-03-15 00:06:18 +00001263 return -EBADR;
1264 }
1265
Wei Liue9ce7cb2014-06-04 10:30:42 +01001266 memcpy(&extra, RING_GET_REQUEST(&queue->tx, cons),
Ian Campbellf942dc22011-03-15 00:06:18 +00001267 sizeof(extra));
1268 if (unlikely(!extra.type ||
1269 extra.type >= XEN_NETIF_EXTRA_TYPE_MAX)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001270 queue->tx.req_cons = ++cons;
1271 netdev_err(queue->vif->dev,
Ian Campbellf942dc22011-03-15 00:06:18 +00001272 "Invalid extra type: %d\n", extra.type);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001273 xenvif_fatal_tx_err(queue->vif);
Ian Campbellf942dc22011-03-15 00:06:18 +00001274 return -EINVAL;
1275 }
1276
1277 memcpy(&extras[extra.type - 1], &extra, sizeof(extra));
Wei Liue9ce7cb2014-06-04 10:30:42 +01001278 queue->tx.req_cons = ++cons;
Ian Campbellf942dc22011-03-15 00:06:18 +00001279 } while (extra.flags & XEN_NETIF_EXTRA_FLAG_MORE);
1280
1281 return work_to_do;
1282}
1283
Wei Liu73764192013-08-26 12:59:39 +01001284static int xenvif_set_skb_gso(struct xenvif *vif,
1285 struct sk_buff *skb,
1286 struct xen_netif_extra_info *gso)
Ian Campbellf942dc22011-03-15 00:06:18 +00001287{
1288 if (!gso->u.gso.size) {
Ian Campbell488562862013-02-06 23:41:35 +00001289 netdev_err(vif->dev, "GSO size must not be zero.\n");
Wei Liu73764192013-08-26 12:59:39 +01001290 xenvif_fatal_tx_err(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +00001291 return -EINVAL;
1292 }
1293
Paul Durranta9468582013-10-16 17:50:31 +01001294 switch (gso->u.gso.type) {
1295 case XEN_NETIF_GSO_TYPE_TCPV4:
1296 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
1297 break;
1298 case XEN_NETIF_GSO_TYPE_TCPV6:
1299 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
1300 break;
1301 default:
Ian Campbell488562862013-02-06 23:41:35 +00001302 netdev_err(vif->dev, "Bad GSO type %d.\n", gso->u.gso.type);
Wei Liu73764192013-08-26 12:59:39 +01001303 xenvif_fatal_tx_err(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +00001304 return -EINVAL;
1305 }
1306
1307 skb_shinfo(skb)->gso_size = gso->u.gso.size;
Paul Durrantb89587a2013-12-17 11:44:35 +00001308 /* gso_segs will be calculated later */
Ian Campbellf942dc22011-03-15 00:06:18 +00001309
1310 return 0;
1311}
1312
Wei Liue9ce7cb2014-06-04 10:30:42 +01001313static int checksum_setup(struct xenvif_queue *queue, struct sk_buff *skb)
Ian Campbellf942dc22011-03-15 00:06:18 +00001314{
Paul Durrant27216372014-01-09 10:02:47 +00001315 bool recalculate_partial_csum = false;
Ian Campbellf942dc22011-03-15 00:06:18 +00001316
Paul Durrant2eba61d2013-10-16 17:50:29 +01001317 /* A GSO SKB must be CHECKSUM_PARTIAL. However some buggy
Ian Campbellf942dc22011-03-15 00:06:18 +00001318 * peers can fail to set NETRXF_csum_blank when sending a GSO
1319 * frame. In this case force the SKB to CHECKSUM_PARTIAL and
1320 * recalculate the partial checksum.
1321 */
1322 if (skb->ip_summed != CHECKSUM_PARTIAL && skb_is_gso(skb)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001323 queue->stats.rx_gso_checksum_fixup++;
Ian Campbellf942dc22011-03-15 00:06:18 +00001324 skb->ip_summed = CHECKSUM_PARTIAL;
Paul Durrant27216372014-01-09 10:02:47 +00001325 recalculate_partial_csum = true;
Ian Campbellf942dc22011-03-15 00:06:18 +00001326 }
1327
1328 /* A non-CHECKSUM_PARTIAL SKB does not require setup. */
1329 if (skb->ip_summed != CHECKSUM_PARTIAL)
1330 return 0;
1331
Paul Durrant27216372014-01-09 10:02:47 +00001332 return skb_checksum_setup(skb, recalculate_partial_csum);
Ian Campbellf942dc22011-03-15 00:06:18 +00001333}
1334
Wei Liue9ce7cb2014-06-04 10:30:42 +01001335static bool tx_credit_exceeded(struct xenvif_queue *queue, unsigned size)
Ian Campbellf942dc22011-03-15 00:06:18 +00001336{
Wei Liu059dfa62013-10-28 12:07:57 +00001337 u64 now = get_jiffies_64();
Wei Liue9ce7cb2014-06-04 10:30:42 +01001338 u64 next_credit = queue->credit_window_start +
1339 msecs_to_jiffies(queue->credit_usec / 1000);
Ian Campbellf942dc22011-03-15 00:06:18 +00001340
1341 /* Timer could already be pending in rare cases. */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001342 if (timer_pending(&queue->credit_timeout))
Ian Campbellf942dc22011-03-15 00:06:18 +00001343 return true;
1344
1345 /* Passed the point where we can replenish credit? */
Wei Liu059dfa62013-10-28 12:07:57 +00001346 if (time_after_eq64(now, next_credit)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001347 queue->credit_window_start = now;
1348 tx_add_credit(queue);
Ian Campbellf942dc22011-03-15 00:06:18 +00001349 }
1350
1351 /* Still too big to send right now? Set a callback. */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001352 if (size > queue->remaining_credit) {
1353 queue->credit_timeout.data =
1354 (unsigned long)queue;
1355 queue->credit_timeout.function =
Ian Campbellf942dc22011-03-15 00:06:18 +00001356 tx_credit_callback;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001357 mod_timer(&queue->credit_timeout,
Ian Campbellf942dc22011-03-15 00:06:18 +00001358 next_credit);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001359 queue->credit_window_start = next_credit;
Ian Campbellf942dc22011-03-15 00:06:18 +00001360
1361 return true;
1362 }
1363
1364 return false;
1365}
1366
Wei Liue9ce7cb2014-06-04 10:30:42 +01001367static void xenvif_tx_build_gops(struct xenvif_queue *queue,
Zoltan Kissbdab8272014-04-02 18:04:58 +01001368 int budget,
1369 unsigned *copy_ops,
1370 unsigned *map_ops)
Ian Campbellf942dc22011-03-15 00:06:18 +00001371{
Wei Liue9ce7cb2014-06-04 10:30:42 +01001372 struct gnttab_map_grant_ref *gop = queue->tx_map_ops, *request_gop;
Ian Campbellf942dc22011-03-15 00:06:18 +00001373 struct sk_buff *skb;
1374 int ret;
1375
Wei Liue9ce7cb2014-06-04 10:30:42 +01001376 while (skb_queue_len(&queue->tx_queue) < budget) {
Ian Campbellf942dc22011-03-15 00:06:18 +00001377 struct xen_netif_tx_request txreq;
Wei Liu37641492013-05-02 00:43:59 +00001378 struct xen_netif_tx_request txfrags[XEN_NETBK_LEGACY_SLOTS_MAX];
Ian Campbellf942dc22011-03-15 00:06:18 +00001379 struct xen_netif_extra_info extras[XEN_NETIF_EXTRA_TYPE_MAX-1];
1380 u16 pending_idx;
1381 RING_IDX idx;
1382 int work_to_do;
1383 unsigned int data_len;
1384 pending_ring_idx_t index;
1385
Wei Liue9ce7cb2014-06-04 10:30:42 +01001386 if (queue->tx.sring->req_prod - queue->tx.req_cons >
Ian Campbell488562862013-02-06 23:41:35 +00001387 XEN_NETIF_TX_RING_SIZE) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001388 netdev_err(queue->vif->dev,
Ian Campbell488562862013-02-06 23:41:35 +00001389 "Impossible number of requests. "
1390 "req_prod %d, req_cons %d, size %ld\n",
Wei Liue9ce7cb2014-06-04 10:30:42 +01001391 queue->tx.sring->req_prod, queue->tx.req_cons,
Ian Campbell488562862013-02-06 23:41:35 +00001392 XEN_NETIF_TX_RING_SIZE);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001393 xenvif_fatal_tx_err(queue->vif);
Wei Liue9d8b2c2014-04-01 12:46:12 +01001394 break;
Ian Campbell488562862013-02-06 23:41:35 +00001395 }
1396
Wei Liue9ce7cb2014-06-04 10:30:42 +01001397 work_to_do = RING_HAS_UNCONSUMED_REQUESTS(&queue->tx);
Wei Liub3f980b2013-08-26 12:59:38 +01001398 if (!work_to_do)
1399 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001400
Wei Liue9ce7cb2014-06-04 10:30:42 +01001401 idx = queue->tx.req_cons;
Ian Campbellf942dc22011-03-15 00:06:18 +00001402 rmb(); /* Ensure that we see the request before we copy it. */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001403 memcpy(&txreq, RING_GET_REQUEST(&queue->tx, idx), sizeof(txreq));
Ian Campbellf942dc22011-03-15 00:06:18 +00001404
1405 /* Credit-based scheduling. */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001406 if (txreq.size > queue->remaining_credit &&
1407 tx_credit_exceeded(queue, txreq.size))
Wei Liub3f980b2013-08-26 12:59:38 +01001408 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001409
Wei Liue9ce7cb2014-06-04 10:30:42 +01001410 queue->remaining_credit -= txreq.size;
Ian Campbellf942dc22011-03-15 00:06:18 +00001411
1412 work_to_do--;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001413 queue->tx.req_cons = ++idx;
Ian Campbellf942dc22011-03-15 00:06:18 +00001414
1415 memset(extras, 0, sizeof(extras));
1416 if (txreq.flags & XEN_NETTXF_extra_info) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001417 work_to_do = xenvif_get_extras(queue, extras,
Wei Liu73764192013-08-26 12:59:39 +01001418 work_to_do);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001419 idx = queue->tx.req_cons;
Ian Campbell488562862013-02-06 23:41:35 +00001420 if (unlikely(work_to_do < 0))
Wei Liub3f980b2013-08-26 12:59:38 +01001421 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001422 }
1423
Wei Liue9ce7cb2014-06-04 10:30:42 +01001424 ret = xenvif_count_requests(queue, &txreq, txfrags, work_to_do);
Ian Campbell488562862013-02-06 23:41:35 +00001425 if (unlikely(ret < 0))
Wei Liub3f980b2013-08-26 12:59:38 +01001426 break;
Ian Campbell488562862013-02-06 23:41:35 +00001427
Ian Campbellf942dc22011-03-15 00:06:18 +00001428 idx += ret;
1429
1430 if (unlikely(txreq.size < ETH_HLEN)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001431 netdev_dbg(queue->vif->dev,
Ian Campbellf942dc22011-03-15 00:06:18 +00001432 "Bad packet size: %d\n", txreq.size);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001433 xenvif_tx_err(queue, &txreq, idx);
Wei Liub3f980b2013-08-26 12:59:38 +01001434 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001435 }
1436
1437 /* No crossing a page as the payload mustn't fragment. */
1438 if (unlikely((txreq.offset + txreq.size) > PAGE_SIZE)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001439 netdev_err(queue->vif->dev,
Ian Campbellf942dc22011-03-15 00:06:18 +00001440 "txreq.offset: %x, size: %u, end: %lu\n",
1441 txreq.offset, txreq.size,
1442 (txreq.offset&~PAGE_MASK) + txreq.size);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001443 xenvif_fatal_tx_err(queue->vif);
Wei Liub3f980b2013-08-26 12:59:38 +01001444 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001445 }
1446
Wei Liue9ce7cb2014-06-04 10:30:42 +01001447 index = pending_index(queue->pending_cons);
1448 pending_idx = queue->pending_ring[index];
Ian Campbellf942dc22011-03-15 00:06:18 +00001449
Malcolm Crossley7e5d7752014-11-05 10:50:22 +00001450 data_len = (txreq.size > XEN_NETBACK_TX_COPY_LEN &&
Wei Liu37641492013-05-02 00:43:59 +00001451 ret < XEN_NETBK_LEGACY_SLOTS_MAX) ?
Malcolm Crossley7e5d7752014-11-05 10:50:22 +00001452 XEN_NETBACK_TX_COPY_LEN : txreq.size;
Ian Campbellf942dc22011-03-15 00:06:18 +00001453
Zoltan Kisse3377f32014-03-06 21:48:29 +00001454 skb = xenvif_alloc_skb(data_len);
Ian Campbellf942dc22011-03-15 00:06:18 +00001455 if (unlikely(skb == NULL)) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001456 netdev_dbg(queue->vif->dev,
Ian Campbellf942dc22011-03-15 00:06:18 +00001457 "Can't allocate a skb in start_xmit.\n");
Wei Liue9ce7cb2014-06-04 10:30:42 +01001458 xenvif_tx_err(queue, &txreq, idx);
Ian Campbellf942dc22011-03-15 00:06:18 +00001459 break;
1460 }
1461
Ian Campbellf942dc22011-03-15 00:06:18 +00001462 if (extras[XEN_NETIF_EXTRA_TYPE_GSO - 1].type) {
1463 struct xen_netif_extra_info *gso;
1464 gso = &extras[XEN_NETIF_EXTRA_TYPE_GSO - 1];
1465
Wei Liue9ce7cb2014-06-04 10:30:42 +01001466 if (xenvif_set_skb_gso(queue->vif, skb, gso)) {
Wei Liu73764192013-08-26 12:59:39 +01001467 /* Failure in xenvif_set_skb_gso is fatal. */
Ian Campbellf942dc22011-03-15 00:06:18 +00001468 kfree_skb(skb);
Wei Liub3f980b2013-08-26 12:59:38 +01001469 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001470 }
1471 }
1472
Zoltan Kiss8f13dd92014-03-06 21:48:23 +00001473 XENVIF_TX_CB(skb)->pending_idx = pending_idx;
Ian Campbellf942dc22011-03-15 00:06:18 +00001474
1475 __skb_put(skb, data_len);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001476 queue->tx_copy_ops[*copy_ops].source.u.ref = txreq.gref;
1477 queue->tx_copy_ops[*copy_ops].source.domid = queue->vif->domid;
1478 queue->tx_copy_ops[*copy_ops].source.offset = txreq.offset;
Zoltan Kissbdab8272014-04-02 18:04:58 +01001479
Wei Liue9ce7cb2014-06-04 10:30:42 +01001480 queue->tx_copy_ops[*copy_ops].dest.u.gmfn =
Zoltan Kissbdab8272014-04-02 18:04:58 +01001481 virt_to_mfn(skb->data);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001482 queue->tx_copy_ops[*copy_ops].dest.domid = DOMID_SELF;
1483 queue->tx_copy_ops[*copy_ops].dest.offset =
Zoltan Kissbdab8272014-04-02 18:04:58 +01001484 offset_in_page(skb->data);
1485
Wei Liue9ce7cb2014-06-04 10:30:42 +01001486 queue->tx_copy_ops[*copy_ops].len = data_len;
1487 queue->tx_copy_ops[*copy_ops].flags = GNTCOPY_source_gref;
Zoltan Kissbdab8272014-04-02 18:04:58 +01001488
1489 (*copy_ops)++;
Ian Campbellf942dc22011-03-15 00:06:18 +00001490
1491 skb_shinfo(skb)->nr_frags = ret;
1492 if (data_len < txreq.size) {
1493 skb_shinfo(skb)->nr_frags++;
Ian Campbellea066ad2011-10-05 00:28:46 +00001494 frag_set_pending_idx(&skb_shinfo(skb)->frags[0],
1495 pending_idx);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001496 xenvif_tx_create_map_op(queue, pending_idx, &txreq, gop);
Zoltan Kissbdab8272014-04-02 18:04:58 +01001497 gop++;
Ian Campbellf942dc22011-03-15 00:06:18 +00001498 } else {
Ian Campbellea066ad2011-10-05 00:28:46 +00001499 frag_set_pending_idx(&skb_shinfo(skb)->frags[0],
1500 INVALID_PENDING_IDX);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001501 memcpy(&queue->pending_tx_info[pending_idx].req, &txreq,
Zoltan Kissbdab8272014-04-02 18:04:58 +01001502 sizeof(txreq));
Ian Campbellf942dc22011-03-15 00:06:18 +00001503 }
1504
Wei Liue9ce7cb2014-06-04 10:30:42 +01001505 queue->pending_cons++;
Ian Campbellf942dc22011-03-15 00:06:18 +00001506
Wei Liue9ce7cb2014-06-04 10:30:42 +01001507 request_gop = xenvif_get_requests(queue, skb, txfrags, gop);
Ian Campbellf942dc22011-03-15 00:06:18 +00001508 if (request_gop == NULL) {
1509 kfree_skb(skb);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001510 xenvif_tx_err(queue, &txreq, idx);
Wei Liub3f980b2013-08-26 12:59:38 +01001511 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001512 }
1513 gop = request_gop;
1514
Wei Liue9ce7cb2014-06-04 10:30:42 +01001515 __skb_queue_tail(&queue->tx_queue, skb);
Annie Li1e0b6ea2012-06-27 00:46:58 +00001516
Wei Liue9ce7cb2014-06-04 10:30:42 +01001517 queue->tx.req_cons = idx;
Ian Campbellf942dc22011-03-15 00:06:18 +00001518
Wei Liue9ce7cb2014-06-04 10:30:42 +01001519 if (((gop-queue->tx_map_ops) >= ARRAY_SIZE(queue->tx_map_ops)) ||
1520 (*copy_ops >= ARRAY_SIZE(queue->tx_copy_ops)))
Ian Campbellf942dc22011-03-15 00:06:18 +00001521 break;
1522 }
1523
Wei Liue9ce7cb2014-06-04 10:30:42 +01001524 (*map_ops) = gop - queue->tx_map_ops;
Zoltan Kissbdab8272014-04-02 18:04:58 +01001525 return;
Ian Campbellf942dc22011-03-15 00:06:18 +00001526}
1527
Zoltan Kisse3377f32014-03-06 21:48:29 +00001528/* Consolidate skb with a frag_list into a brand new one with local pages on
1529 * frags. Returns 0 or -ENOMEM if can't allocate new pages.
1530 */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001531static int xenvif_handle_frag_list(struct xenvif_queue *queue, struct sk_buff *skb)
Zoltan Kisse3377f32014-03-06 21:48:29 +00001532{
1533 unsigned int offset = skb_headlen(skb);
1534 skb_frag_t frags[MAX_SKB_FRAGS];
1535 int i;
1536 struct ubuf_info *uarg;
1537 struct sk_buff *nskb = skb_shinfo(skb)->frag_list;
1538
Wei Liue9ce7cb2014-06-04 10:30:42 +01001539 queue->stats.tx_zerocopy_sent += 2;
1540 queue->stats.tx_frag_overflow++;
Zoltan Kisse3377f32014-03-06 21:48:29 +00001541
Wei Liue9ce7cb2014-06-04 10:30:42 +01001542 xenvif_fill_frags(queue, nskb);
Zoltan Kisse3377f32014-03-06 21:48:29 +00001543 /* Subtract frags size, we will correct it later */
1544 skb->truesize -= skb->data_len;
1545 skb->len += nskb->len;
1546 skb->data_len += nskb->len;
1547
1548 /* create a brand new frags array and coalesce there */
1549 for (i = 0; offset < skb->len; i++) {
1550 struct page *page;
1551 unsigned int len;
1552
1553 BUG_ON(i >= MAX_SKB_FRAGS);
Zoltan Kiss44cc8ed2014-10-28 15:29:31 +00001554 page = alloc_page(GFP_ATOMIC);
Zoltan Kisse3377f32014-03-06 21:48:29 +00001555 if (!page) {
1556 int j;
1557 skb->truesize += skb->data_len;
1558 for (j = 0; j < i; j++)
1559 put_page(frags[j].page.p);
1560 return -ENOMEM;
1561 }
1562
1563 if (offset + PAGE_SIZE < skb->len)
1564 len = PAGE_SIZE;
1565 else
1566 len = skb->len - offset;
1567 if (skb_copy_bits(skb, offset, page_address(page), len))
1568 BUG();
1569
1570 offset += len;
1571 frags[i].page.p = page;
1572 frags[i].page_offset = 0;
1573 skb_frag_size_set(&frags[i], len);
1574 }
1575 /* swap out with old one */
1576 memcpy(skb_shinfo(skb)->frags,
1577 frags,
1578 i * sizeof(skb_frag_t));
1579 skb_shinfo(skb)->nr_frags = i;
1580 skb->truesize += i * PAGE_SIZE;
1581
1582 /* remove traces of mapped pages and frag_list */
1583 skb_frag_list_init(skb);
1584 uarg = skb_shinfo(skb)->destructor_arg;
Wei Liua64bd932014-08-12 11:48:07 +01001585 /* increase inflight counter to offset decrement in callback */
1586 atomic_inc(&queue->inflight_packets);
Zoltan Kisse3377f32014-03-06 21:48:29 +00001587 uarg->callback(uarg, true);
1588 skb_shinfo(skb)->destructor_arg = NULL;
1589
Wei Liua64bd932014-08-12 11:48:07 +01001590 xenvif_skb_zerocopy_prepare(queue, nskb);
Zoltan Kisse3377f32014-03-06 21:48:29 +00001591 kfree_skb(nskb);
1592
1593 return 0;
1594}
Ian Campbellf942dc22011-03-15 00:06:18 +00001595
Wei Liue9ce7cb2014-06-04 10:30:42 +01001596static int xenvif_tx_submit(struct xenvif_queue *queue)
Wei Liub3f980b2013-08-26 12:59:38 +01001597{
Wei Liue9ce7cb2014-06-04 10:30:42 +01001598 struct gnttab_map_grant_ref *gop_map = queue->tx_map_ops;
1599 struct gnttab_copy *gop_copy = queue->tx_copy_ops;
Wei Liub3f980b2013-08-26 12:59:38 +01001600 struct sk_buff *skb;
1601 int work_done = 0;
1602
Wei Liue9ce7cb2014-06-04 10:30:42 +01001603 while ((skb = __skb_dequeue(&queue->tx_queue)) != NULL) {
Ian Campbellf942dc22011-03-15 00:06:18 +00001604 struct xen_netif_tx_request *txp;
Ian Campbellf942dc22011-03-15 00:06:18 +00001605 u16 pending_idx;
1606 unsigned data_len;
1607
Zoltan Kiss8f13dd92014-03-06 21:48:23 +00001608 pending_idx = XENVIF_TX_CB(skb)->pending_idx;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001609 txp = &queue->pending_tx_info[pending_idx].req;
Ian Campbellf942dc22011-03-15 00:06:18 +00001610
1611 /* Check the remap error code. */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001612 if (unlikely(xenvif_tx_check_gop(queue, skb, &gop_map, &gop_copy))) {
Zoltan Kissb42cc6e2014-07-18 19:08:03 +01001613 /* If there was an error, xenvif_tx_check_gop is
1614 * expected to release all the frags which were mapped,
1615 * so kfree_skb shouldn't do it again
1616 */
Ian Campbellf942dc22011-03-15 00:06:18 +00001617 skb_shinfo(skb)->nr_frags = 0;
Zoltan Kissb42cc6e2014-07-18 19:08:03 +01001618 if (skb_has_frag_list(skb)) {
1619 struct sk_buff *nskb =
1620 skb_shinfo(skb)->frag_list;
1621 skb_shinfo(nskb)->nr_frags = 0;
1622 }
Ian Campbellf942dc22011-03-15 00:06:18 +00001623 kfree_skb(skb);
1624 continue;
1625 }
1626
1627 data_len = skb->len;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001628 callback_param(queue, pending_idx).ctx = NULL;
Ian Campbellf942dc22011-03-15 00:06:18 +00001629 if (data_len < txp->size) {
1630 /* Append the packet payload as a fragment. */
1631 txp->offset += data_len;
1632 txp->size -= data_len;
1633 } else {
1634 /* Schedule a response immediately. */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001635 xenvif_idx_release(queue, pending_idx,
Zoltan Kissbdab8272014-04-02 18:04:58 +01001636 XEN_NETIF_RSP_OKAY);
Ian Campbellf942dc22011-03-15 00:06:18 +00001637 }
1638
1639 if (txp->flags & XEN_NETTXF_csum_blank)
1640 skb->ip_summed = CHECKSUM_PARTIAL;
1641 else if (txp->flags & XEN_NETTXF_data_validated)
1642 skb->ip_summed = CHECKSUM_UNNECESSARY;
1643
Wei Liue9ce7cb2014-06-04 10:30:42 +01001644 xenvif_fill_frags(queue, skb);
Ian Campbellf942dc22011-03-15 00:06:18 +00001645
Zoltan Kisse3377f32014-03-06 21:48:29 +00001646 if (unlikely(skb_has_frag_list(skb))) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001647 if (xenvif_handle_frag_list(queue, skb)) {
Zoltan Kisse3377f32014-03-06 21:48:29 +00001648 if (net_ratelimit())
Wei Liue9ce7cb2014-06-04 10:30:42 +01001649 netdev_err(queue->vif->dev,
Zoltan Kisse3377f32014-03-06 21:48:29 +00001650 "Not enough memory to consolidate frag_list!\n");
Wei Liua64bd932014-08-12 11:48:07 +01001651 xenvif_skb_zerocopy_prepare(queue, skb);
Zoltan Kisse3377f32014-03-06 21:48:29 +00001652 kfree_skb(skb);
1653 continue;
1654 }
1655 }
1656
Wei Liue9ce7cb2014-06-04 10:30:42 +01001657 skb->dev = queue->vif->dev;
Ian Campbellf942dc22011-03-15 00:06:18 +00001658 skb->protocol = eth_type_trans(skb, skb->dev);
Jason Wangf9ca8f72013-03-25 20:19:58 +00001659 skb_reset_network_header(skb);
Ian Campbellf942dc22011-03-15 00:06:18 +00001660
Wei Liue9ce7cb2014-06-04 10:30:42 +01001661 if (checksum_setup(queue, skb)) {
1662 netdev_dbg(queue->vif->dev,
Ian Campbellf942dc22011-03-15 00:06:18 +00001663 "Can't setup checksum in net_tx_action\n");
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001664 /* We have to set this flag to trigger the callback */
1665 if (skb_shinfo(skb)->destructor_arg)
Wei Liua64bd932014-08-12 11:48:07 +01001666 xenvif_skb_zerocopy_prepare(queue, skb);
Ian Campbellf942dc22011-03-15 00:06:18 +00001667 kfree_skb(skb);
1668 continue;
1669 }
1670
Jason Wang40893fd2013-03-26 23:11:22 +00001671 skb_probe_transport_header(skb, 0);
Jason Wangf9ca8f72013-03-25 20:19:58 +00001672
Paul Durrantb89587a2013-12-17 11:44:35 +00001673 /* If the packet is GSO then we will have just set up the
1674 * transport header offset in checksum_setup so it's now
1675 * straightforward to calculate gso_segs.
1676 */
1677 if (skb_is_gso(skb)) {
1678 int mss = skb_shinfo(skb)->gso_size;
1679 int hdrlen = skb_transport_header(skb) -
1680 skb_mac_header(skb) +
1681 tcp_hdrlen(skb);
1682
1683 skb_shinfo(skb)->gso_segs =
1684 DIV_ROUND_UP(skb->len - hdrlen, mss);
1685 }
1686
Wei Liue9ce7cb2014-06-04 10:30:42 +01001687 queue->stats.rx_bytes += skb->len;
1688 queue->stats.rx_packets++;
Ian Campbellf942dc22011-03-15 00:06:18 +00001689
Wei Liub3f980b2013-08-26 12:59:38 +01001690 work_done++;
1691
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001692 /* Set this flag right before netif_receive_skb, otherwise
1693 * someone might think this packet already left netback, and
1694 * do a skb_copy_ubufs while we are still in control of the
1695 * skb. E.g. the __pskb_pull_tail earlier can do such thing.
1696 */
Zoltan Kiss1bb332a2014-03-06 21:48:28 +00001697 if (skb_shinfo(skb)->destructor_arg) {
Wei Liua64bd932014-08-12 11:48:07 +01001698 xenvif_skb_zerocopy_prepare(queue, skb);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001699 queue->stats.tx_zerocopy_sent++;
Zoltan Kiss1bb332a2014-03-06 21:48:28 +00001700 }
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001701
Wei Liub3f980b2013-08-26 12:59:38 +01001702 netif_receive_skb(skb);
Ian Campbellf942dc22011-03-15 00:06:18 +00001703 }
Wei Liub3f980b2013-08-26 12:59:38 +01001704
1705 return work_done;
Ian Campbellf942dc22011-03-15 00:06:18 +00001706}
1707
Zoltan Kiss3e2234b2014-03-06 21:48:25 +00001708void xenvif_zerocopy_callback(struct ubuf_info *ubuf, bool zerocopy_success)
1709{
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001710 unsigned long flags;
1711 pending_ring_idx_t index;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001712 struct xenvif_queue *queue = ubuf_to_queue(ubuf);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001713
1714 /* This is the only place where we grab this lock, to protect callbacks
1715 * from each other.
1716 */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001717 spin_lock_irqsave(&queue->callback_lock, flags);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001718 do {
1719 u16 pending_idx = ubuf->desc;
1720 ubuf = (struct ubuf_info *) ubuf->ctx;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001721 BUG_ON(queue->dealloc_prod - queue->dealloc_cons >=
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001722 MAX_PENDING_REQS);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001723 index = pending_index(queue->dealloc_prod);
1724 queue->dealloc_ring[index] = pending_idx;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001725 /* Sync with xenvif_tx_dealloc_action:
1726 * insert idx then incr producer.
1727 */
1728 smp_wmb();
Wei Liue9ce7cb2014-06-04 10:30:42 +01001729 queue->dealloc_prod++;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001730 } while (ubuf);
Wei Liue9ce7cb2014-06-04 10:30:42 +01001731 wake_up(&queue->dealloc_wq);
1732 spin_unlock_irqrestore(&queue->callback_lock, flags);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001733
Zoltan Kiss1bb332a2014-03-06 21:48:28 +00001734 if (likely(zerocopy_success))
Wei Liue9ce7cb2014-06-04 10:30:42 +01001735 queue->stats.tx_zerocopy_success++;
Zoltan Kiss1bb332a2014-03-06 21:48:28 +00001736 else
Wei Liue9ce7cb2014-06-04 10:30:42 +01001737 queue->stats.tx_zerocopy_fail++;
Wei Liua64bd932014-08-12 11:48:07 +01001738 xenvif_skb_zerocopy_complete(queue);
Zoltan Kiss3e2234b2014-03-06 21:48:25 +00001739}
1740
Wei Liue9ce7cb2014-06-04 10:30:42 +01001741static inline void xenvif_tx_dealloc_action(struct xenvif_queue *queue)
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001742{
1743 struct gnttab_unmap_grant_ref *gop;
1744 pending_ring_idx_t dc, dp;
1745 u16 pending_idx, pending_idx_release[MAX_PENDING_REQS];
1746 unsigned int i = 0;
1747
Wei Liue9ce7cb2014-06-04 10:30:42 +01001748 dc = queue->dealloc_cons;
1749 gop = queue->tx_unmap_ops;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001750
1751 /* Free up any grants we have finished using */
1752 do {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001753 dp = queue->dealloc_prod;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001754
1755 /* Ensure we see all indices enqueued by all
1756 * xenvif_zerocopy_callback().
1757 */
1758 smp_rmb();
1759
1760 while (dc != dp) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001761 BUG_ON(gop - queue->tx_unmap_ops > MAX_PENDING_REQS);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001762 pending_idx =
Wei Liue9ce7cb2014-06-04 10:30:42 +01001763 queue->dealloc_ring[pending_index(dc++)];
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001764
Wei Liue9ce7cb2014-06-04 10:30:42 +01001765 pending_idx_release[gop-queue->tx_unmap_ops] =
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001766 pending_idx;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001767 queue->pages_to_unmap[gop-queue->tx_unmap_ops] =
1768 queue->mmap_pages[pending_idx];
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001769 gnttab_set_unmap_op(gop,
Wei Liue9ce7cb2014-06-04 10:30:42 +01001770 idx_to_kaddr(queue, pending_idx),
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001771 GNTMAP_host_map,
Wei Liue9ce7cb2014-06-04 10:30:42 +01001772 queue->grant_tx_handle[pending_idx]);
1773 xenvif_grant_handle_reset(queue, pending_idx);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001774 ++gop;
1775 }
1776
Wei Liue9ce7cb2014-06-04 10:30:42 +01001777 } while (dp != queue->dealloc_prod);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001778
Wei Liue9ce7cb2014-06-04 10:30:42 +01001779 queue->dealloc_cons = dc;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001780
Wei Liue9ce7cb2014-06-04 10:30:42 +01001781 if (gop - queue->tx_unmap_ops > 0) {
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001782 int ret;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001783 ret = gnttab_unmap_refs(queue->tx_unmap_ops,
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001784 NULL,
Wei Liue9ce7cb2014-06-04 10:30:42 +01001785 queue->pages_to_unmap,
1786 gop - queue->tx_unmap_ops);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001787 if (ret) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001788 netdev_err(queue->vif->dev, "Unmap fail: nr_ops %tx ret %d\n",
1789 gop - queue->tx_unmap_ops, ret);
1790 for (i = 0; i < gop - queue->tx_unmap_ops; ++i) {
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001791 if (gop[i].status != GNTST_okay)
Wei Liue9ce7cb2014-06-04 10:30:42 +01001792 netdev_err(queue->vif->dev,
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001793 " host_addr: %llx handle: %x status: %d\n",
1794 gop[i].host_addr,
1795 gop[i].handle,
1796 gop[i].status);
1797 }
1798 BUG();
1799 }
1800 }
1801
Wei Liue9ce7cb2014-06-04 10:30:42 +01001802 for (i = 0; i < gop - queue->tx_unmap_ops; ++i)
1803 xenvif_idx_release(queue, pending_idx_release[i],
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001804 XEN_NETIF_RSP_OKAY);
1805}
1806
1807
Ian Campbellf942dc22011-03-15 00:06:18 +00001808/* Called after netfront has transmitted */
Wei Liue9ce7cb2014-06-04 10:30:42 +01001809int xenvif_tx_action(struct xenvif_queue *queue, int budget)
Ian Campbellf942dc22011-03-15 00:06:18 +00001810{
Zoltan Kissbdab8272014-04-02 18:04:58 +01001811 unsigned nr_mops, nr_cops = 0;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001812 int work_done, ret;
Ian Campbellf942dc22011-03-15 00:06:18 +00001813
Wei Liue9ce7cb2014-06-04 10:30:42 +01001814 if (unlikely(!tx_work_todo(queue)))
Wei Liub3f980b2013-08-26 12:59:38 +01001815 return 0;
1816
Wei Liue9ce7cb2014-06-04 10:30:42 +01001817 xenvif_tx_build_gops(queue, budget, &nr_cops, &nr_mops);
Ian Campbellf942dc22011-03-15 00:06:18 +00001818
Zoltan Kissbdab8272014-04-02 18:04:58 +01001819 if (nr_cops == 0)
Wei Liub3f980b2013-08-26 12:59:38 +01001820 return 0;
Andres Lagar-Cavillac5718982012-09-14 14:26:59 +00001821
Wei Liue9ce7cb2014-06-04 10:30:42 +01001822 gnttab_batch_copy(queue->tx_copy_ops, nr_cops);
Zoltan Kissbdab8272014-04-02 18:04:58 +01001823 if (nr_mops != 0) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001824 ret = gnttab_map_refs(queue->tx_map_ops,
Zoltan Kissbdab8272014-04-02 18:04:58 +01001825 NULL,
Wei Liue9ce7cb2014-06-04 10:30:42 +01001826 queue->pages_to_map,
Zoltan Kissbdab8272014-04-02 18:04:58 +01001827 nr_mops);
1828 BUG_ON(ret);
1829 }
Ian Campbellf942dc22011-03-15 00:06:18 +00001830
Wei Liue9ce7cb2014-06-04 10:30:42 +01001831 work_done = xenvif_tx_submit(queue);
Wei Liub3f980b2013-08-26 12:59:38 +01001832
1833 return work_done;
Ian Campbellf942dc22011-03-15 00:06:18 +00001834}
1835
Wei Liue9ce7cb2014-06-04 10:30:42 +01001836static void xenvif_idx_release(struct xenvif_queue *queue, u16 pending_idx,
Wei Liu73764192013-08-26 12:59:39 +01001837 u8 status)
Ian Campbellf942dc22011-03-15 00:06:18 +00001838{
Ian Campbellf942dc22011-03-15 00:06:18 +00001839 struct pending_tx_info *pending_tx_info;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001840 pending_ring_idx_t index;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001841 unsigned long flags;
Wei Liu2810e5b2013-04-22 02:20:42 +00001842
Wei Liue9ce7cb2014-06-04 10:30:42 +01001843 pending_tx_info = &queue->pending_tx_info[pending_idx];
1844 spin_lock_irqsave(&queue->response_lock, flags);
1845 make_tx_response(queue, &pending_tx_info->req, status);
1846 index = pending_index(queue->pending_prod);
1847 queue->pending_ring[index] = pending_idx;
Zoltan Kiss62bad312014-03-06 21:48:27 +00001848 /* TX shouldn't use the index before we give it back here */
1849 mb();
Wei Liue9ce7cb2014-06-04 10:30:42 +01001850 queue->pending_prod++;
1851 spin_unlock_irqrestore(&queue->response_lock, flags);
Ian Campbellf942dc22011-03-15 00:06:18 +00001852}
1853
Wei Liu2810e5b2013-04-22 02:20:42 +00001854
Wei Liue9ce7cb2014-06-04 10:30:42 +01001855static void make_tx_response(struct xenvif_queue *queue,
Ian Campbellf942dc22011-03-15 00:06:18 +00001856 struct xen_netif_tx_request *txp,
1857 s8 st)
1858{
Wei Liue9ce7cb2014-06-04 10:30:42 +01001859 RING_IDX i = queue->tx.rsp_prod_pvt;
Ian Campbellf942dc22011-03-15 00:06:18 +00001860 struct xen_netif_tx_response *resp;
1861 int notify;
1862
Wei Liue9ce7cb2014-06-04 10:30:42 +01001863 resp = RING_GET_RESPONSE(&queue->tx, i);
Ian Campbellf942dc22011-03-15 00:06:18 +00001864 resp->id = txp->id;
1865 resp->status = st;
1866
1867 if (txp->flags & XEN_NETTXF_extra_info)
Wei Liue9ce7cb2014-06-04 10:30:42 +01001868 RING_GET_RESPONSE(&queue->tx, ++i)->status = XEN_NETIF_RSP_NULL;
Ian Campbellf942dc22011-03-15 00:06:18 +00001869
Wei Liue9ce7cb2014-06-04 10:30:42 +01001870 queue->tx.rsp_prod_pvt = ++i;
1871 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&queue->tx, notify);
Ian Campbellf942dc22011-03-15 00:06:18 +00001872 if (notify)
Wei Liue9ce7cb2014-06-04 10:30:42 +01001873 notify_remote_via_irq(queue->tx_irq);
Ian Campbellf942dc22011-03-15 00:06:18 +00001874}
1875
Wei Liue9ce7cb2014-06-04 10:30:42 +01001876static struct xen_netif_rx_response *make_rx_response(struct xenvif_queue *queue,
Ian Campbellf942dc22011-03-15 00:06:18 +00001877 u16 id,
1878 s8 st,
1879 u16 offset,
1880 u16 size,
1881 u16 flags)
1882{
Wei Liue9ce7cb2014-06-04 10:30:42 +01001883 RING_IDX i = queue->rx.rsp_prod_pvt;
Ian Campbellf942dc22011-03-15 00:06:18 +00001884 struct xen_netif_rx_response *resp;
1885
Wei Liue9ce7cb2014-06-04 10:30:42 +01001886 resp = RING_GET_RESPONSE(&queue->rx, i);
Ian Campbellf942dc22011-03-15 00:06:18 +00001887 resp->offset = offset;
1888 resp->flags = flags;
1889 resp->id = id;
1890 resp->status = (s16)size;
1891 if (st < 0)
1892 resp->status = (s16)st;
1893
Wei Liue9ce7cb2014-06-04 10:30:42 +01001894 queue->rx.rsp_prod_pvt = ++i;
Ian Campbellf942dc22011-03-15 00:06:18 +00001895
1896 return resp;
1897}
1898
Wei Liue9ce7cb2014-06-04 10:30:42 +01001899void xenvif_idx_unmap(struct xenvif_queue *queue, u16 pending_idx)
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001900{
1901 int ret;
1902 struct gnttab_unmap_grant_ref tx_unmap_op;
1903
1904 gnttab_set_unmap_op(&tx_unmap_op,
Wei Liue9ce7cb2014-06-04 10:30:42 +01001905 idx_to_kaddr(queue, pending_idx),
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001906 GNTMAP_host_map,
Wei Liue9ce7cb2014-06-04 10:30:42 +01001907 queue->grant_tx_handle[pending_idx]);
1908 xenvif_grant_handle_reset(queue, pending_idx);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001909
1910 ret = gnttab_unmap_refs(&tx_unmap_op, NULL,
Wei Liue9ce7cb2014-06-04 10:30:42 +01001911 &queue->mmap_pages[pending_idx], 1);
Zoltan Kiss7aceb472014-03-24 23:59:51 +00001912 if (ret) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01001913 netdev_err(queue->vif->dev,
Zoltan Kiss7aceb472014-03-24 23:59:51 +00001914 "Unmap fail: ret: %d pending_idx: %d host_addr: %llx handle: %x status: %d\n",
1915 ret,
1916 pending_idx,
1917 tx_unmap_op.host_addr,
1918 tx_unmap_op.handle,
1919 tx_unmap_op.status);
1920 BUG();
1921 }
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001922}
1923
Wei Liue9ce7cb2014-06-04 10:30:42 +01001924static inline int tx_work_todo(struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +00001925{
Wei Liue9ce7cb2014-06-04 10:30:42 +01001926 if (likely(RING_HAS_UNCONSUMED_REQUESTS(&queue->tx)))
Ian Campbellf942dc22011-03-15 00:06:18 +00001927 return 1;
1928
1929 return 0;
1930}
1931
Wei Liue9ce7cb2014-06-04 10:30:42 +01001932static inline bool tx_dealloc_work_todo(struct xenvif_queue *queue)
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001933{
Wei Liue9ce7cb2014-06-04 10:30:42 +01001934 return queue->dealloc_cons != queue->dealloc_prod;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00001935}
1936
Wei Liue9ce7cb2014-06-04 10:30:42 +01001937void xenvif_unmap_frontend_rings(struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +00001938{
Wei Liue9ce7cb2014-06-04 10:30:42 +01001939 if (queue->tx.sring)
1940 xenbus_unmap_ring_vfree(xenvif_to_xenbus_device(queue->vif),
1941 queue->tx.sring);
1942 if (queue->rx.sring)
1943 xenbus_unmap_ring_vfree(xenvif_to_xenbus_device(queue->vif),
1944 queue->rx.sring);
Ian Campbellf942dc22011-03-15 00:06:18 +00001945}
1946
Wei Liue9ce7cb2014-06-04 10:30:42 +01001947int xenvif_map_frontend_rings(struct xenvif_queue *queue,
Wei Liu73764192013-08-26 12:59:39 +01001948 grant_ref_t tx_ring_ref,
1949 grant_ref_t rx_ring_ref)
Ian Campbellf942dc22011-03-15 00:06:18 +00001950{
David Vrabelc9d63692011-09-29 16:53:31 +01001951 void *addr;
Ian Campbellf942dc22011-03-15 00:06:18 +00001952 struct xen_netif_tx_sring *txs;
1953 struct xen_netif_rx_sring *rxs;
1954
1955 int err = -ENOMEM;
1956
Wei Liue9ce7cb2014-06-04 10:30:42 +01001957 err = xenbus_map_ring_valloc(xenvif_to_xenbus_device(queue->vif),
David Vrabelc9d63692011-09-29 16:53:31 +01001958 tx_ring_ref, &addr);
1959 if (err)
Ian Campbellf942dc22011-03-15 00:06:18 +00001960 goto err;
1961
David Vrabelc9d63692011-09-29 16:53:31 +01001962 txs = (struct xen_netif_tx_sring *)addr;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001963 BACK_RING_INIT(&queue->tx, txs, PAGE_SIZE);
Ian Campbellf942dc22011-03-15 00:06:18 +00001964
Wei Liue9ce7cb2014-06-04 10:30:42 +01001965 err = xenbus_map_ring_valloc(xenvif_to_xenbus_device(queue->vif),
David Vrabelc9d63692011-09-29 16:53:31 +01001966 rx_ring_ref, &addr);
1967 if (err)
Ian Campbellf942dc22011-03-15 00:06:18 +00001968 goto err;
Ian Campbellf942dc22011-03-15 00:06:18 +00001969
David Vrabelc9d63692011-09-29 16:53:31 +01001970 rxs = (struct xen_netif_rx_sring *)addr;
Wei Liue9ce7cb2014-06-04 10:30:42 +01001971 BACK_RING_INIT(&queue->rx, rxs, PAGE_SIZE);
Ian Campbellf942dc22011-03-15 00:06:18 +00001972
1973 return 0;
1974
1975err:
Wei Liue9ce7cb2014-06-04 10:30:42 +01001976 xenvif_unmap_frontend_rings(queue);
Ian Campbellf942dc22011-03-15 00:06:18 +00001977 return err;
1978}
1979
David Vrabelecf08d22014-10-22 14:08:55 +01001980static void xenvif_queue_carrier_off(struct xenvif_queue *queue)
Paul Durrantca2f09f2013-12-06 16:36:07 +00001981{
David Vrabelecf08d22014-10-22 14:08:55 +01001982 struct xenvif *vif = queue->vif;
1983
1984 queue->stalled = true;
1985
1986 /* At least one queue has stalled? Disable the carrier. */
1987 spin_lock(&vif->lock);
1988 if (vif->stalled_queues++ == 0) {
1989 netdev_info(vif->dev, "Guest Rx stalled");
1990 netif_carrier_off(vif->dev);
1991 }
1992 spin_unlock(&vif->lock);
Paul Durrantca2f09f2013-12-06 16:36:07 +00001993}
1994
David Vrabelecf08d22014-10-22 14:08:55 +01001995static void xenvif_queue_carrier_on(struct xenvif_queue *queue)
Zoltan Kissf34a4cf2014-08-04 16:20:58 +01001996{
David Vrabelecf08d22014-10-22 14:08:55 +01001997 struct xenvif *vif = queue->vif;
Zoltan Kissf34a4cf2014-08-04 16:20:58 +01001998
David Vrabelecf08d22014-10-22 14:08:55 +01001999 queue->last_rx_time = jiffies; /* Reset Rx stall detection. */
2000 queue->stalled = false;
Zoltan Kissf34a4cf2014-08-04 16:20:58 +01002001
David Vrabelecf08d22014-10-22 14:08:55 +01002002 /* All queues are ready? Enable the carrier. */
2003 spin_lock(&vif->lock);
2004 if (--vif->stalled_queues == 0) {
2005 netdev_info(vif->dev, "Guest Rx ready");
2006 netif_carrier_on(vif->dev);
Zoltan Kissf34a4cf2014-08-04 16:20:58 +01002007 }
David Vrabelecf08d22014-10-22 14:08:55 +01002008 spin_unlock(&vif->lock);
2009}
2010
2011static bool xenvif_rx_queue_stalled(struct xenvif_queue *queue)
2012{
2013 RING_IDX prod, cons;
2014
2015 prod = queue->rx.sring->req_prod;
2016 cons = queue->rx.req_cons;
2017
2018 return !queue->stalled
2019 && prod - cons < XEN_NETBK_RX_SLOTS_MAX
2020 && time_after(jiffies,
David Vrabel26c0e102014-12-18 11:13:06 +00002021 queue->last_rx_time + queue->vif->stall_timeout);
David Vrabelecf08d22014-10-22 14:08:55 +01002022}
2023
2024static bool xenvif_rx_queue_ready(struct xenvif_queue *queue)
2025{
2026 RING_IDX prod, cons;
2027
2028 prod = queue->rx.sring->req_prod;
2029 cons = queue->rx.req_cons;
2030
2031 return queue->stalled
2032 && prod - cons >= XEN_NETBK_RX_SLOTS_MAX;
2033}
2034
David Vrabelf48da8b2014-10-22 14:08:54 +01002035static bool xenvif_have_rx_work(struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +00002036{
David Vrabelf48da8b2014-10-22 14:08:54 +01002037 return (!skb_queue_empty(&queue->rx_queue)
2038 && xenvif_rx_ring_slots_available(queue, XEN_NETBK_RX_SLOTS_MAX))
David Vrabel26c0e102014-12-18 11:13:06 +00002039 || (queue->vif->stall_timeout &&
2040 (xenvif_rx_queue_stalled(queue)
2041 || xenvif_rx_queue_ready(queue)))
David Vrabelf48da8b2014-10-22 14:08:54 +01002042 || kthread_should_stop()
2043 || queue->vif->disabled;
Ian Campbellf942dc22011-03-15 00:06:18 +00002044}
2045
David Vrabelf48da8b2014-10-22 14:08:54 +01002046static long xenvif_rx_queue_timeout(struct xenvif_queue *queue)
Zoltan Kissf34a4cf2014-08-04 16:20:58 +01002047{
David Vrabelf48da8b2014-10-22 14:08:54 +01002048 struct sk_buff *skb;
2049 long timeout;
Zoltan Kissf34a4cf2014-08-04 16:20:58 +01002050
David Vrabelf48da8b2014-10-22 14:08:54 +01002051 skb = skb_peek(&queue->rx_queue);
2052 if (!skb)
2053 return MAX_SCHEDULE_TIMEOUT;
Zoltan Kissf34a4cf2014-08-04 16:20:58 +01002054
David Vrabelf48da8b2014-10-22 14:08:54 +01002055 timeout = XENVIF_RX_CB(skb)->expires - jiffies;
2056 return timeout < 0 ? 0 : timeout;
2057}
Zoltan Kissf34a4cf2014-08-04 16:20:58 +01002058
David Vrabelf48da8b2014-10-22 14:08:54 +01002059/* Wait until the guest Rx thread has work.
2060 *
2061 * The timeout needs to be adjusted based on the current head of the
2062 * queue (and not just the head at the beginning). In particular, if
2063 * the queue is initially empty an infinite timeout is used and this
2064 * needs to be reduced when a skb is queued.
2065 *
2066 * This cannot be done with wait_event_timeout() because it only
2067 * calculates the timeout once.
2068 */
2069static void xenvif_wait_for_rx_work(struct xenvif_queue *queue)
2070{
2071 DEFINE_WAIT(wait);
2072
2073 if (xenvif_have_rx_work(queue))
2074 return;
2075
2076 for (;;) {
2077 long ret;
2078
2079 prepare_to_wait(&queue->wq, &wait, TASK_INTERRUPTIBLE);
2080 if (xenvif_have_rx_work(queue))
2081 break;
2082 ret = schedule_timeout(xenvif_rx_queue_timeout(queue));
2083 if (!ret)
2084 break;
Zoltan Kissf34a4cf2014-08-04 16:20:58 +01002085 }
David Vrabelf48da8b2014-10-22 14:08:54 +01002086 finish_wait(&queue->wq, &wait);
Zoltan Kissf34a4cf2014-08-04 16:20:58 +01002087}
2088
Zoltan Kiss121fa4b2014-03-06 21:48:24 +00002089int xenvif_kthread_guest_rx(void *data)
Wei Liub3f980b2013-08-26 12:59:38 +01002090{
Wei Liue9ce7cb2014-06-04 10:30:42 +01002091 struct xenvif_queue *queue = data;
David Vrabelf48da8b2014-10-22 14:08:54 +01002092 struct xenvif *vif = queue->vif;
Wei Liub3f980b2013-08-26 12:59:38 +01002093
David Vrabel26c0e102014-12-18 11:13:06 +00002094 if (!vif->stall_timeout)
2095 xenvif_queue_carrier_on(queue);
2096
David Vrabelf48da8b2014-10-22 14:08:54 +01002097 for (;;) {
2098 xenvif_wait_for_rx_work(queue);
Wei Liue9d8b2c2014-04-01 12:46:12 +01002099
Zoltan Kissf34a4cf2014-08-04 16:20:58 +01002100 if (kthread_should_stop())
2101 break;
2102
Wei Liue9d8b2c2014-04-01 12:46:12 +01002103 /* 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
Wei Liue9ce7cb2014-06-04 10:30:42 +01002107 * context so we defer it here, if this thread is
2108 * associated with queue 0.
Wei Liue9d8b2c2014-04-01 12:46:12 +01002109 */
David Vrabelf48da8b2014-10-22 14:08:54 +01002110 if (unlikely(vif->disabled && queue->id == 0)) {
2111 xenvif_carrier_off(vif);
David Vrabel42b52122015-02-02 16:57:51 +00002112 break;
Zoltan Kiss09350782014-03-06 21:48:30 +00002113 }
2114
Wei Liue9ce7cb2014-06-04 10:30:42 +01002115 if (!skb_queue_empty(&queue->rx_queue))
2116 xenvif_rx_action(queue);
Wei Liub3f980b2013-08-26 12:59:38 +01002117
David Vrabelecf08d22014-10-22 14:08:55 +01002118 /* If the guest hasn't provided any Rx slots for a
2119 * while it's probably not responsive, drop the
2120 * carrier so packets are dropped earlier.
2121 */
David Vrabel26c0e102014-12-18 11:13:06 +00002122 if (vif->stall_timeout) {
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 }
David Vrabelecf08d22014-10-22 14:08:55 +01002128
David Vrabelf48da8b2014-10-22 14:08:54 +01002129 /* Queued packets may have foreign pages from other
2130 * domains. These cannot be queued indefinitely as
2131 * this would starve guests of grant refs and transmit
2132 * slots.
2133 */
2134 xenvif_rx_queue_drop_expired(queue);
2135
2136 xenvif_rx_queue_maybe_wake(queue);
2137
Wei Liub3f980b2013-08-26 12:59:38 +01002138 cond_resched();
2139 }
2140
Paul Durrantca2f09f2013-12-06 16:36:07 +00002141 /* Bin any remaining skbs */
David Vrabelf48da8b2014-10-22 14:08:54 +01002142 xenvif_rx_queue_purge(queue);
Paul Durrantca2f09f2013-12-06 16:36:07 +00002143
Wei Liub3f980b2013-08-26 12:59:38 +01002144 return 0;
2145}
2146
Wei Liua64bd932014-08-12 11:48:07 +01002147static bool xenvif_dealloc_kthread_should_stop(struct xenvif_queue *queue)
2148{
2149 /* Dealloc thread must remain running until all inflight
2150 * packets complete.
2151 */
2152 return kthread_should_stop() &&
2153 !atomic_read(&queue->inflight_packets);
2154}
2155
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00002156int xenvif_dealloc_kthread(void *data)
2157{
Wei Liue9ce7cb2014-06-04 10:30:42 +01002158 struct xenvif_queue *queue = data;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00002159
Wei Liua64bd932014-08-12 11:48:07 +01002160 for (;;) {
Wei Liue9ce7cb2014-06-04 10:30:42 +01002161 wait_event_interruptible(queue->dealloc_wq,
2162 tx_dealloc_work_todo(queue) ||
Wei Liua64bd932014-08-12 11:48:07 +01002163 xenvif_dealloc_kthread_should_stop(queue));
2164 if (xenvif_dealloc_kthread_should_stop(queue))
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00002165 break;
2166
Wei Liue9ce7cb2014-06-04 10:30:42 +01002167 xenvif_tx_dealloc_action(queue);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00002168 cond_resched();
2169 }
2170
2171 /* Unmap anything remaining*/
Wei Liue9ce7cb2014-06-04 10:30:42 +01002172 if (tx_dealloc_work_todo(queue))
2173 xenvif_tx_dealloc_action(queue);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +00002174
2175 return 0;
2176}
2177
Ian Campbellf942dc22011-03-15 00:06:18 +00002178static int __init netback_init(void)
2179{
Ian Campbellf942dc22011-03-15 00:06:18 +00002180 int rc = 0;
Ian Campbellf942dc22011-03-15 00:06:18 +00002181
Daniel De Graaf2a14b2442011-12-14 15:12:13 -05002182 if (!xen_domain())
Ian Campbellf942dc22011-03-15 00:06:18 +00002183 return -ENODEV;
2184
Andrew J. Bennieston8d3d53b2014-06-04 10:30:43 +01002185 /* Allow as many queues as there are CPUs, by default */
2186 xenvif_max_queues = num_online_cpus();
2187
Wei Liu37641492013-05-02 00:43:59 +00002188 if (fatal_skb_slots < XEN_NETBK_LEGACY_SLOTS_MAX) {
Joe Perches383eda32013-06-27 21:57:49 -07002189 pr_info("fatal_skb_slots too small (%d), bump it to XEN_NETBK_LEGACY_SLOTS_MAX (%d)\n",
2190 fatal_skb_slots, XEN_NETBK_LEGACY_SLOTS_MAX);
Wei Liu37641492013-05-02 00:43:59 +00002191 fatal_skb_slots = XEN_NETBK_LEGACY_SLOTS_MAX;
Wei Liu2810e5b2013-04-22 02:20:42 +00002192 }
2193
Ian Campbellf942dc22011-03-15 00:06:18 +00002194 rc = xenvif_xenbus_init();
2195 if (rc)
2196 goto failed_init;
2197
Zoltan Kissf51de242014-07-08 19:49:14 +01002198#ifdef CONFIG_DEBUG_FS
2199 xen_netback_dbg_root = debugfs_create_dir("xen-netback", NULL);
2200 if (IS_ERR_OR_NULL(xen_netback_dbg_root))
2201 pr_warn("Init of debugfs returned %ld!\n",
2202 PTR_ERR(xen_netback_dbg_root));
2203#endif /* CONFIG_DEBUG_FS */
2204
Ian Campbellf942dc22011-03-15 00:06:18 +00002205 return 0;
2206
2207failed_init:
Ian Campbellf942dc22011-03-15 00:06:18 +00002208 return rc;
Ian Campbellf942dc22011-03-15 00:06:18 +00002209}
2210
2211module_init(netback_init);
2212
Wei Liub103f352013-05-16 23:26:11 +00002213static void __exit netback_fini(void)
2214{
Zoltan Kissf51de242014-07-08 19:49:14 +01002215#ifdef CONFIG_DEBUG_FS
2216 if (!IS_ERR_OR_NULL(xen_netback_dbg_root))
2217 debugfs_remove_recursive(xen_netback_dbg_root);
2218#endif /* CONFIG_DEBUG_FS */
Wei Liub103f352013-05-16 23:26:11 +00002219 xenvif_xenbus_fini();
Wei Liub103f352013-05-16 23:26:11 +00002220}
2221module_exit(netback_fini);
2222
Ian Campbellf942dc22011-03-15 00:06:18 +00002223MODULE_LICENSE("Dual BSD/GPL");
Bastian Blankf984cec2011-06-30 11:19:09 -07002224MODULE_ALIAS("xen-backend:vif");