blob: 6005b5d1d404cb5aea27ce19cd60738035f174e2 [file] [log] [blame]
Ian Campbellf942dc22011-03-15 00:06:18 +00001/*
2 * Network-device interface management.
3 *
4 * Copyright (c) 2004-2005, Keir Fraser
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version 2
8 * as published by the Free Software Foundation; or, when distributed
9 * separately from the Linux kernel or incorporated into other
10 * software packages, subject to the following license:
11 *
12 * Permission is hereby granted, free of charge, to any person obtaining a copy
13 * of this source file (the "Software"), to deal in the Software without
14 * restriction, including without limitation the rights to use, copy, modify,
15 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
16 * and to permit persons to whom the Software is furnished to do so, subject to
17 * the following conditions:
18 *
19 * The above copyright notice and this permission notice shall be included in
20 * all copies or substantial portions of the Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
28 * IN THE SOFTWARE.
29 */
30
31#include "common.h"
32
Wei Liub3f980b2013-08-26 12:59:38 +010033#include <linux/kthread.h>
Ian Campbellf942dc22011-03-15 00:06:18 +000034#include <linux/ethtool.h>
35#include <linux/rtnetlink.h>
36#include <linux/if_vlan.h>
37
38#include <xen/events.h>
39#include <asm/xen/hypercall.h>
Zoltan Kissf53c3fe2014-03-06 21:48:26 +000040#include <xen/balloon.h>
Ian Campbellf942dc22011-03-15 00:06:18 +000041
42#define XENVIF_QUEUE_LENGTH 32
Wei Liub3f980b2013-08-26 12:59:38 +010043#define XENVIF_NAPI_WEIGHT 64
Ian Campbellf942dc22011-03-15 00:06:18 +000044
Wei Liue9ce7cb2014-06-04 10:30:42 +010045static inline void xenvif_stop_queue(struct xenvif_queue *queue)
46{
47 struct net_device *dev = queue->vif->dev;
48
49 if (!queue->vif->can_queue)
50 return;
51
52 netif_tx_stop_queue(netdev_get_tx_queue(dev, queue->id));
53}
54
Ian Campbellf942dc22011-03-15 00:06:18 +000055int xenvif_schedulable(struct xenvif *vif)
56{
57 return netif_running(vif->dev) && netif_carrier_ok(vif->dev);
58}
59
Wei Liue1f00a692013-05-22 06:34:45 +000060static irqreturn_t xenvif_tx_interrupt(int irq, void *dev_id)
Ian Campbellf942dc22011-03-15 00:06:18 +000061{
Wei Liue9ce7cb2014-06-04 10:30:42 +010062 struct xenvif_queue *queue = dev_id;
Ian Campbellf942dc22011-03-15 00:06:18 +000063
Wei Liue9ce7cb2014-06-04 10:30:42 +010064 if (RING_HAS_UNCONSUMED_REQUESTS(&queue->tx))
65 napi_schedule(&queue->napi);
Ian Campbellf942dc22011-03-15 00:06:18 +000066
Wei Liue1f00a692013-05-22 06:34:45 +000067 return IRQ_HANDLED;
68}
69
Wei Liue9ce7cb2014-06-04 10:30:42 +010070int xenvif_poll(struct napi_struct *napi, int budget)
Wei Liub3f980b2013-08-26 12:59:38 +010071{
Wei Liue9ce7cb2014-06-04 10:30:42 +010072 struct xenvif_queue *queue =
73 container_of(napi, struct xenvif_queue, napi);
Wei Liub3f980b2013-08-26 12:59:38 +010074 int work_done;
75
Wei Liue9d8b2c2014-04-01 12:46:12 +010076 /* This vif is rogue, we pretend we've there is nothing to do
77 * for this vif to deschedule it from NAPI. But this interface
78 * will be turned off in thread context later.
79 */
Wei Liue9ce7cb2014-06-04 10:30:42 +010080 if (unlikely(queue->vif->disabled)) {
Wei Liue9d8b2c2014-04-01 12:46:12 +010081 napi_complete(napi);
82 return 0;
83 }
84
Wei Liue9ce7cb2014-06-04 10:30:42 +010085 work_done = xenvif_tx_action(queue, budget);
Wei Liub3f980b2013-08-26 12:59:38 +010086
87 if (work_done < budget) {
David Vrabel0d08fce2014-05-16 12:26:04 +010088 napi_complete(napi);
Wei Liue9ce7cb2014-06-04 10:30:42 +010089 xenvif_napi_schedule_or_enable_events(queue);
Wei Liub3f980b2013-08-26 12:59:38 +010090 }
91
92 return work_done;
93}
94
Wei Liue1f00a692013-05-22 06:34:45 +000095static irqreturn_t xenvif_rx_interrupt(int irq, void *dev_id)
96{
Wei Liue9ce7cb2014-06-04 10:30:42 +010097 struct xenvif_queue *queue = dev_id;
Wei Liue1f00a692013-05-22 06:34:45 +000098
Wei Liue9ce7cb2014-06-04 10:30:42 +010099 xenvif_kick_thread(queue);
Ian Campbellf942dc22011-03-15 00:06:18 +0000100
101 return IRQ_HANDLED;
102}
103
Wei Liue1f00a692013-05-22 06:34:45 +0000104static irqreturn_t xenvif_interrupt(int irq, void *dev_id)
105{
106 xenvif_tx_interrupt(irq, dev_id);
107 xenvif_rx_interrupt(irq, dev_id);
108
109 return IRQ_HANDLED;
110}
111
Wei Liue9ce7cb2014-06-04 10:30:42 +0100112int xenvif_queue_stopped(struct xenvif_queue *queue)
Zoltan Kiss09350782014-03-06 21:48:30 +0000113{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100114 struct net_device *dev = queue->vif->dev;
115 unsigned int id = queue->id;
116 return netif_tx_queue_stopped(netdev_get_tx_queue(dev, id));
117}
Zoltan Kiss09350782014-03-06 21:48:30 +0000118
Wei Liue9ce7cb2014-06-04 10:30:42 +0100119void xenvif_wake_queue(struct xenvif_queue *queue)
120{
121 struct net_device *dev = queue->vif->dev;
122 unsigned int id = queue->id;
123 netif_tx_wake_queue(netdev_get_tx_queue(dev, id));
124}
125
126/* Callback to wake the queue and drain it on timeout */
127static void xenvif_wake_queue_callback(unsigned long data)
128{
129 struct xenvif_queue *queue = (struct xenvif_queue *)data;
130
131 if (xenvif_queue_stopped(queue)) {
132 netdev_err(queue->vif->dev, "draining TX queue\n");
133 queue->rx_queue_purge = true;
134 xenvif_kick_thread(queue);
135 xenvif_wake_queue(queue);
Zoltan Kiss09350782014-03-06 21:48:30 +0000136 }
137}
138
Wei Liue9ce7cb2014-06-04 10:30:42 +0100139static u16 xenvif_select_queue(struct net_device *dev, struct sk_buff *skb,
140 void *accel_priv, select_queue_fallback_t fallback)
141{
142 struct xenvif *vif = netdev_priv(dev);
143 unsigned int num_queues = dev->real_num_tx_queues;
144 u32 hash;
145 u16 queue_index;
146
147 /* First, check if there is only one queue to optimise the
148 * single-queue or old frontend scenario.
149 */
150 if (num_queues == 1) {
151 queue_index = 0;
152 } else {
153 /* Use skb_get_hash to obtain an L4 hash if available */
154 hash = skb_get_hash(skb);
155 queue_index = hash % num_queues;
156 }
157
158 return queue_index;
159}
160
Ian Campbellf942dc22011-03-15 00:06:18 +0000161static int xenvif_start_xmit(struct sk_buff *skb, struct net_device *dev)
162{
163 struct xenvif *vif = netdev_priv(dev);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100164 struct xenvif_queue *queue = NULL;
165 unsigned int num_queues = dev->real_num_tx_queues;
166 u16 index;
Paul Durrantca2f09f2013-12-06 16:36:07 +0000167 int min_slots_needed;
Ian Campbellf942dc22011-03-15 00:06:18 +0000168
169 BUG_ON(skb->dev != dev);
170
Wei Liue9ce7cb2014-06-04 10:30:42 +0100171 /* Drop the packet if queues are not set up */
172 if (num_queues < 1)
173 goto drop;
174
175 /* Obtain the queue to be used to transmit this packet */
176 index = skb_get_queue_mapping(skb);
177 if (index >= num_queues) {
178 pr_warn_ratelimited("Invalid queue %hu for packet on interface %s\n.",
179 index, vif->dev->name);
180 index %= num_queues;
181 }
182 queue = &vif->queues[index];
183
184 /* Drop the packet if queue is not ready */
185 if (queue->task == NULL ||
186 queue->dealloc_task == NULL ||
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000187 !xenvif_schedulable(vif))
Ian Campbellf942dc22011-03-15 00:06:18 +0000188 goto drop;
189
Paul Durrantca2f09f2013-12-06 16:36:07 +0000190 /* At best we'll need one slot for the header and one for each
191 * frag.
192 */
193 min_slots_needed = 1 + skb_shinfo(skb)->nr_frags;
Ian Campbellf942dc22011-03-15 00:06:18 +0000194
Paul Durrantca2f09f2013-12-06 16:36:07 +0000195 /* If the skb is GSO then we'll also need an extra slot for the
196 * metadata.
197 */
Wei Liu836fbaf2014-03-11 12:45:32 +0000198 if (skb_is_gso(skb))
Paul Durrantca2f09f2013-12-06 16:36:07 +0000199 min_slots_needed++;
Ian Campbellf942dc22011-03-15 00:06:18 +0000200
Paul Durrantca2f09f2013-12-06 16:36:07 +0000201 /* If the skb can't possibly fit in the remaining slots
202 * then turn off the queue to give the ring a chance to
203 * drain.
204 */
Wei Liue9ce7cb2014-06-04 10:30:42 +0100205 if (!xenvif_rx_ring_slots_available(queue, min_slots_needed)) {
206 queue->wake_queue.function = xenvif_wake_queue_callback;
207 queue->wake_queue.data = (unsigned long)queue;
208 xenvif_stop_queue(queue);
209 mod_timer(&queue->wake_queue,
Zoltan Kiss09350782014-03-06 21:48:30 +0000210 jiffies + rx_drain_timeout_jiffies);
211 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000212
Wei Liue9ce7cb2014-06-04 10:30:42 +0100213 skb_queue_tail(&queue->rx_queue, skb);
214 xenvif_kick_thread(queue);
Ian Campbellf942dc22011-03-15 00:06:18 +0000215
216 return NETDEV_TX_OK;
217
218 drop:
219 vif->dev->stats.tx_dropped++;
220 dev_kfree_skb(skb);
221 return NETDEV_TX_OK;
222}
223
Ian Campbellf942dc22011-03-15 00:06:18 +0000224static struct net_device_stats *xenvif_get_stats(struct net_device *dev)
225{
226 struct xenvif *vif = netdev_priv(dev);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100227 struct xenvif_queue *queue = NULL;
228 unsigned int num_queues = dev->real_num_tx_queues;
229 unsigned long rx_bytes = 0;
230 unsigned long rx_packets = 0;
231 unsigned long tx_bytes = 0;
232 unsigned long tx_packets = 0;
233 unsigned int index;
234
235 if (vif->queues == NULL)
236 goto out;
237
238 /* Aggregate tx and rx stats from each queue */
239 for (index = 0; index < num_queues; ++index) {
240 queue = &vif->queues[index];
241 rx_bytes += queue->stats.rx_bytes;
242 rx_packets += queue->stats.rx_packets;
243 tx_bytes += queue->stats.tx_bytes;
244 tx_packets += queue->stats.tx_packets;
245 }
246
247out:
248 vif->dev->stats.rx_bytes = rx_bytes;
249 vif->dev->stats.rx_packets = rx_packets;
250 vif->dev->stats.tx_bytes = tx_bytes;
251 vif->dev->stats.tx_packets = tx_packets;
252
Ian Campbellf942dc22011-03-15 00:06:18 +0000253 return &vif->dev->stats;
254}
255
256static void xenvif_up(struct xenvif *vif)
257{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100258 struct xenvif_queue *queue = NULL;
259 unsigned int num_queues = vif->dev->real_num_tx_queues;
260 unsigned int queue_index;
261
262 for (queue_index = 0; queue_index < num_queues; ++queue_index) {
263 queue = &vif->queues[queue_index];
264 napi_enable(&queue->napi);
265 enable_irq(queue->tx_irq);
266 if (queue->tx_irq != queue->rx_irq)
267 enable_irq(queue->rx_irq);
268 xenvif_napi_schedule_or_enable_events(queue);
269 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000270}
271
272static void xenvif_down(struct xenvif *vif)
273{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100274 struct xenvif_queue *queue = NULL;
275 unsigned int num_queues = vif->dev->real_num_tx_queues;
276 unsigned int queue_index;
277
278 for (queue_index = 0; queue_index < num_queues; ++queue_index) {
279 queue = &vif->queues[queue_index];
280 napi_disable(&queue->napi);
281 disable_irq(queue->tx_irq);
282 if (queue->tx_irq != queue->rx_irq)
283 disable_irq(queue->rx_irq);
284 del_timer_sync(&queue->credit_timeout);
285 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000286}
287
288static int xenvif_open(struct net_device *dev)
289{
290 struct xenvif *vif = netdev_priv(dev);
291 if (netif_carrier_ok(dev))
292 xenvif_up(vif);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100293 netif_tx_start_all_queues(dev);
Ian Campbellf942dc22011-03-15 00:06:18 +0000294 return 0;
295}
296
297static int xenvif_close(struct net_device *dev)
298{
299 struct xenvif *vif = netdev_priv(dev);
300 if (netif_carrier_ok(dev))
301 xenvif_down(vif);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100302 netif_tx_stop_all_queues(dev);
Ian Campbellf942dc22011-03-15 00:06:18 +0000303 return 0;
304}
305
306static int xenvif_change_mtu(struct net_device *dev, int mtu)
307{
308 struct xenvif *vif = netdev_priv(dev);
309 int max = vif->can_sg ? 65535 - VLAN_ETH_HLEN : ETH_DATA_LEN;
310
311 if (mtu > max)
312 return -EINVAL;
313 dev->mtu = mtu;
314 return 0;
315}
316
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000317static netdev_features_t xenvif_fix_features(struct net_device *dev,
318 netdev_features_t features)
Ian Campbellf942dc22011-03-15 00:06:18 +0000319{
320 struct xenvif *vif = netdev_priv(dev);
Ian Campbellf942dc22011-03-15 00:06:18 +0000321
Michał Mirosław47103042011-04-19 03:35:06 +0000322 if (!vif->can_sg)
323 features &= ~NETIF_F_SG;
Paul Durrant82cada22013-10-16 17:50:32 +0100324 if (~(vif->gso_mask | vif->gso_prefix_mask) & GSO_BIT(TCPV4))
Michał Mirosław47103042011-04-19 03:35:06 +0000325 features &= ~NETIF_F_TSO;
Paul Durrant82cada22013-10-16 17:50:32 +0100326 if (~(vif->gso_mask | vif->gso_prefix_mask) & GSO_BIT(TCPV6))
327 features &= ~NETIF_F_TSO6;
Paul Durrant146c8a72013-10-16 17:50:28 +0100328 if (!vif->ip_csum)
Michał Mirosław47103042011-04-19 03:35:06 +0000329 features &= ~NETIF_F_IP_CSUM;
Paul Durrant146c8a72013-10-16 17:50:28 +0100330 if (!vif->ipv6_csum)
331 features &= ~NETIF_F_IPV6_CSUM;
Ian Campbellf942dc22011-03-15 00:06:18 +0000332
Michał Mirosław47103042011-04-19 03:35:06 +0000333 return features;
Ian Campbellf942dc22011-03-15 00:06:18 +0000334}
335
336static const struct xenvif_stat {
337 char name[ETH_GSTRING_LEN];
338 u16 offset;
339} xenvif_stats[] = {
340 {
341 "rx_gso_checksum_fixup",
Wei Liue9ce7cb2014-06-04 10:30:42 +0100342 offsetof(struct xenvif_stats, rx_gso_checksum_fixup)
Ian Campbellf942dc22011-03-15 00:06:18 +0000343 },
Zoltan Kiss1bb332a2014-03-06 21:48:28 +0000344 /* If (sent != success + fail), there are probably packets never
345 * freed up properly!
346 */
347 {
348 "tx_zerocopy_sent",
Wei Liue9ce7cb2014-06-04 10:30:42 +0100349 offsetof(struct xenvif_stats, tx_zerocopy_sent),
Zoltan Kiss1bb332a2014-03-06 21:48:28 +0000350 },
351 {
352 "tx_zerocopy_success",
Wei Liue9ce7cb2014-06-04 10:30:42 +0100353 offsetof(struct xenvif_stats, tx_zerocopy_success),
Zoltan Kiss1bb332a2014-03-06 21:48:28 +0000354 },
355 {
356 "tx_zerocopy_fail",
Wei Liue9ce7cb2014-06-04 10:30:42 +0100357 offsetof(struct xenvif_stats, tx_zerocopy_fail)
Zoltan Kiss1bb332a2014-03-06 21:48:28 +0000358 },
Zoltan Kisse3377f32014-03-06 21:48:29 +0000359 /* Number of packets exceeding MAX_SKB_FRAG slots. You should use
360 * a guest with the same MAX_SKB_FRAG
361 */
362 {
363 "tx_frag_overflow",
Wei Liue9ce7cb2014-06-04 10:30:42 +0100364 offsetof(struct xenvif_stats, tx_frag_overflow)
Zoltan Kisse3377f32014-03-06 21:48:29 +0000365 },
Ian Campbellf942dc22011-03-15 00:06:18 +0000366};
367
368static int xenvif_get_sset_count(struct net_device *dev, int string_set)
369{
370 switch (string_set) {
371 case ETH_SS_STATS:
372 return ARRAY_SIZE(xenvif_stats);
373 default:
374 return -EINVAL;
375 }
376}
377
378static void xenvif_get_ethtool_stats(struct net_device *dev,
379 struct ethtool_stats *stats, u64 * data)
380{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100381 struct xenvif *vif = netdev_priv(dev);
382 unsigned int num_queues = dev->real_num_tx_queues;
Ian Campbellf942dc22011-03-15 00:06:18 +0000383 int i;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100384 unsigned int queue_index;
385 struct xenvif_stats *vif_stats;
Ian Campbellf942dc22011-03-15 00:06:18 +0000386
Wei Liue9ce7cb2014-06-04 10:30:42 +0100387 for (i = 0; i < ARRAY_SIZE(xenvif_stats); i++) {
388 unsigned long accum = 0;
389 for (queue_index = 0; queue_index < num_queues; ++queue_index) {
390 vif_stats = &vif->queues[queue_index].stats;
391 accum += *(unsigned long *)(vif_stats + xenvif_stats[i].offset);
392 }
393 data[i] = accum;
394 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000395}
396
397static void xenvif_get_strings(struct net_device *dev, u32 stringset, u8 * data)
398{
399 int i;
400
401 switch (stringset) {
402 case ETH_SS_STATS:
403 for (i = 0; i < ARRAY_SIZE(xenvif_stats); i++)
404 memcpy(data + i * ETH_GSTRING_LEN,
405 xenvif_stats[i].name, ETH_GSTRING_LEN);
406 break;
407 }
408}
409
stephen hemminger813abbb2012-01-04 11:56:58 +0000410static const struct ethtool_ops xenvif_ethtool_ops = {
Ian Campbellf942dc22011-03-15 00:06:18 +0000411 .get_link = ethtool_op_get_link,
412
413 .get_sset_count = xenvif_get_sset_count,
414 .get_ethtool_stats = xenvif_get_ethtool_stats,
415 .get_strings = xenvif_get_strings,
416};
417
stephen hemminger813abbb2012-01-04 11:56:58 +0000418static const struct net_device_ops xenvif_netdev_ops = {
Ian Campbellf942dc22011-03-15 00:06:18 +0000419 .ndo_start_xmit = xenvif_start_xmit,
420 .ndo_get_stats = xenvif_get_stats,
421 .ndo_open = xenvif_open,
422 .ndo_stop = xenvif_close,
423 .ndo_change_mtu = xenvif_change_mtu,
Michał Mirosław47103042011-04-19 03:35:06 +0000424 .ndo_fix_features = xenvif_fix_features,
Matt Wilson4a633a62013-01-22 08:08:25 +0000425 .ndo_set_mac_address = eth_mac_addr,
426 .ndo_validate_addr = eth_validate_addr,
Wei Liue9ce7cb2014-06-04 10:30:42 +0100427 .ndo_select_queue = xenvif_select_queue,
Ian Campbellf942dc22011-03-15 00:06:18 +0000428};
429
430struct xenvif *xenvif_alloc(struct device *parent, domid_t domid,
431 unsigned int handle)
432{
433 int err;
434 struct net_device *dev;
435 struct xenvif *vif;
436 char name[IFNAMSIZ] = {};
437
438 snprintf(name, IFNAMSIZ - 1, "vif%u.%u", domid, handle);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100439 dev = alloc_netdev_mq(sizeof(struct xenvif), name, ether_setup, 1);
Ian Campbellf942dc22011-03-15 00:06:18 +0000440 if (dev == NULL) {
Wei Liub3f980b2013-08-26 12:59:38 +0100441 pr_warn("Could not allocate netdev for %s\n", name);
Ian Campbellf942dc22011-03-15 00:06:18 +0000442 return ERR_PTR(-ENOMEM);
443 }
444
445 SET_NETDEV_DEV(dev, parent);
446
447 vif = netdev_priv(dev);
Paul Durrantac3d5ac2013-12-23 09:27:17 +0000448
Ian Campbellf942dc22011-03-15 00:06:18 +0000449 vif->domid = domid;
450 vif->handle = handle;
Ian Campbellf942dc22011-03-15 00:06:18 +0000451 vif->can_sg = 1;
Paul Durrant146c8a72013-10-16 17:50:28 +0100452 vif->ip_csum = 1;
Ian Campbellf942dc22011-03-15 00:06:18 +0000453 vif->dev = dev;
Wei Liue9d8b2c2014-04-01 12:46:12 +0100454 vif->disabled = false;
455
Wei Liue9ce7cb2014-06-04 10:30:42 +0100456 /* Start out with no queues. The call below does not require
457 * rtnl_lock() as it happens before register_netdev().
458 */
459 vif->queues = NULL;
460 netif_set_real_num_tx_queues(dev, 0);
Zoltan Kiss09350782014-03-06 21:48:30 +0000461
Ian Campbellf942dc22011-03-15 00:06:18 +0000462 dev->netdev_ops = &xenvif_netdev_ops;
Paul Durrant146c8a72013-10-16 17:50:28 +0100463 dev->hw_features = NETIF_F_SG |
464 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
Paul Durrant82cada22013-10-16 17:50:32 +0100465 NETIF_F_TSO | NETIF_F_TSO6;
Paul Durrant7365bcf2013-10-16 17:50:30 +0100466 dev->features = dev->hw_features | NETIF_F_RXCSUM;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +0000467 dev->ethtool_ops = &xenvif_ethtool_ops;
Ian Campbellf942dc22011-03-15 00:06:18 +0000468
469 dev->tx_queue_len = XENVIF_QUEUE_LENGTH;
470
471 /*
472 * Initialise a dummy MAC address. We choose the numerically
473 * largest non-broadcast address to prevent the address getting
474 * stolen by an Ethernet bridge for STP purposes.
475 * (FE:FF:FF:FF:FF:FF)
476 */
477 memset(dev->dev_addr, 0xFF, ETH_ALEN);
478 dev->dev_addr[0] &= ~0x01;
479
480 netif_carrier_off(dev);
481
482 err = register_netdev(dev);
483 if (err) {
484 netdev_warn(dev, "Could not register device: err=%d\n", err);
485 free_netdev(dev);
486 return ERR_PTR(err);
487 }
488
489 netdev_dbg(dev, "Successfully created xenvif\n");
Paul Durrant279f4382013-09-17 17:46:08 +0100490
491 __module_get(THIS_MODULE);
492
Ian Campbellf942dc22011-03-15 00:06:18 +0000493 return vif;
494}
495
Wei Liue9ce7cb2014-06-04 10:30:42 +0100496int xenvif_init_queue(struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +0000497{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100498 int err, i;
Ian Campbellf942dc22011-03-15 00:06:18 +0000499
Wei Liue9ce7cb2014-06-04 10:30:42 +0100500 queue->credit_bytes = queue->remaining_credit = ~0UL;
501 queue->credit_usec = 0UL;
502 init_timer(&queue->credit_timeout);
503 queue->credit_window_start = get_jiffies_64();
Ian Campbellf942dc22011-03-15 00:06:18 +0000504
Wei Liue9ce7cb2014-06-04 10:30:42 +0100505 skb_queue_head_init(&queue->rx_queue);
506 skb_queue_head_init(&queue->tx_queue);
Ian Campbellf942dc22011-03-15 00:06:18 +0000507
Wei Liue9ce7cb2014-06-04 10:30:42 +0100508 queue->pending_cons = 0;
509 queue->pending_prod = MAX_PENDING_REQS;
510 for (i = 0; i < MAX_PENDING_REQS; ++i)
511 queue->pending_ring[i] = i;
Paul Durrantca2f09f2013-12-06 16:36:07 +0000512
Wei Liue9ce7cb2014-06-04 10:30:42 +0100513 spin_lock_init(&queue->callback_lock);
514 spin_lock_init(&queue->response_lock);
Wei Liue1f00a692013-05-22 06:34:45 +0000515
Wei Liue9ce7cb2014-06-04 10:30:42 +0100516 /* If ballooning is disabled, this will consume real memory, so you
517 * better enable it. The long term solution would be to use just a
518 * bunch of valid page descriptors, without dependency on ballooning
519 */
520 err = alloc_xenballooned_pages(MAX_PENDING_REQS,
521 queue->mmap_pages,
522 false);
523 if (err) {
524 netdev_err(queue->vif->dev, "Could not reserve mmap_pages\n");
525 return -ENOMEM;
Wei Liue1f00a692013-05-22 06:34:45 +0000526 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000527
Wei Liue9ce7cb2014-06-04 10:30:42 +0100528 for (i = 0; i < MAX_PENDING_REQS; i++) {
529 queue->pending_tx_info[i].callback_struct = (struct ubuf_info)
530 { .callback = xenvif_zerocopy_callback,
531 .ctx = NULL,
532 .desc = i };
533 queue->grant_tx_handle[i] = NETBACK_INVALID_HANDLE;
Wei Liub3f980b2013-08-26 12:59:38 +0100534 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000535
Wei Liue9ce7cb2014-06-04 10:30:42 +0100536 init_timer(&queue->wake_queue);
Paul Durrant67fa3662013-12-03 14:06:25 +0000537
Wei Liue9ce7cb2014-06-04 10:30:42 +0100538 netif_napi_add(queue->vif->dev, &queue->napi, xenvif_poll,
539 XENVIF_NAPI_WEIGHT);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000540
Wei Liue9ce7cb2014-06-04 10:30:42 +0100541 return 0;
542}
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000543
Wei Liue9ce7cb2014-06-04 10:30:42 +0100544void xenvif_carrier_on(struct xenvif *vif)
545{
Ian Campbellf942dc22011-03-15 00:06:18 +0000546 rtnl_lock();
Michał Mirosław47103042011-04-19 03:35:06 +0000547 if (!vif->can_sg && vif->dev->mtu > ETH_DATA_LEN)
548 dev_set_mtu(vif->dev, ETH_DATA_LEN);
549 netdev_update_features(vif->dev);
550 netif_carrier_on(vif->dev);
David Vrabeld0e5d832011-09-30 06:37:51 +0000551 if (netif_running(vif->dev))
552 xenvif_up(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000553 rtnl_unlock();
Wei Liue9ce7cb2014-06-04 10:30:42 +0100554}
Ian Campbellf942dc22011-03-15 00:06:18 +0000555
Wei Liue9ce7cb2014-06-04 10:30:42 +0100556int xenvif_connect(struct xenvif_queue *queue, unsigned long tx_ring_ref,
557 unsigned long rx_ring_ref, unsigned int tx_evtchn,
558 unsigned int rx_evtchn)
559{
560 struct task_struct *task;
561 int err = -ENOMEM;
562
563 BUG_ON(queue->tx_irq);
564 BUG_ON(queue->task);
565 BUG_ON(queue->dealloc_task);
566
567 err = xenvif_map_frontend_rings(queue, tx_ring_ref, rx_ring_ref);
568 if (err < 0)
569 goto err;
570
571 init_waitqueue_head(&queue->wq);
572 init_waitqueue_head(&queue->dealloc_wq);
573
574 if (tx_evtchn == rx_evtchn) {
575 /* feature-split-event-channels == 0 */
576 err = bind_interdomain_evtchn_to_irqhandler(
577 queue->vif->domid, tx_evtchn, xenvif_interrupt, 0,
578 queue->name, queue);
579 if (err < 0)
580 goto err_unmap;
581 queue->tx_irq = queue->rx_irq = err;
582 disable_irq(queue->tx_irq);
583 } else {
584 /* feature-split-event-channels == 1 */
585 snprintf(queue->tx_irq_name, sizeof(queue->tx_irq_name),
586 "%s-tx", queue->name);
587 err = bind_interdomain_evtchn_to_irqhandler(
588 queue->vif->domid, tx_evtchn, xenvif_tx_interrupt, 0,
589 queue->tx_irq_name, queue);
590 if (err < 0)
591 goto err_unmap;
592 queue->tx_irq = err;
593 disable_irq(queue->tx_irq);
594
595 snprintf(queue->rx_irq_name, sizeof(queue->rx_irq_name),
596 "%s-rx", queue->name);
597 err = bind_interdomain_evtchn_to_irqhandler(
598 queue->vif->domid, rx_evtchn, xenvif_rx_interrupt, 0,
599 queue->rx_irq_name, queue);
600 if (err < 0)
601 goto err_tx_unbind;
602 queue->rx_irq = err;
603 disable_irq(queue->rx_irq);
604 }
605
606 task = kthread_create(xenvif_kthread_guest_rx,
607 (void *)queue, "%s-guest-rx", queue->name);
608 if (IS_ERR(task)) {
609 pr_warn("Could not allocate kthread for %s\n", queue->name);
610 err = PTR_ERR(task);
611 goto err_rx_unbind;
612 }
613 queue->task = task;
614
615 task = kthread_create(xenvif_dealloc_kthread,
616 (void *)queue, "%s-dealloc", queue->name);
617 if (IS_ERR(task)) {
618 pr_warn("Could not allocate kthread for %s\n", queue->name);
619 err = PTR_ERR(task);
620 goto err_rx_unbind;
621 }
622 queue->dealloc_task = task;
623
624 wake_up_process(queue->task);
625 wake_up_process(queue->dealloc_task);
Wei Liub3f980b2013-08-26 12:59:38 +0100626
Ian Campbellf942dc22011-03-15 00:06:18 +0000627 return 0;
Wei Liub3f980b2013-08-26 12:59:38 +0100628
629err_rx_unbind:
Wei Liue9ce7cb2014-06-04 10:30:42 +0100630 unbind_from_irqhandler(queue->rx_irq, queue);
631 queue->rx_irq = 0;
Wei Liue1f00a692013-05-22 06:34:45 +0000632err_tx_unbind:
Wei Liue9ce7cb2014-06-04 10:30:42 +0100633 unbind_from_irqhandler(queue->tx_irq, queue);
634 queue->tx_irq = 0;
Ian Campbellf942dc22011-03-15 00:06:18 +0000635err_unmap:
Wei Liue9ce7cb2014-06-04 10:30:42 +0100636 xenvif_unmap_frontend_rings(queue);
Ian Campbellf942dc22011-03-15 00:06:18 +0000637err:
Wei Liub103f352013-05-16 23:26:11 +0000638 module_put(THIS_MODULE);
Ian Campbellf942dc22011-03-15 00:06:18 +0000639 return err;
640}
641
Ian Campbell488562862013-02-06 23:41:35 +0000642void xenvif_carrier_off(struct xenvif *vif)
Ian Campbellf942dc22011-03-15 00:06:18 +0000643{
644 struct net_device *dev = vif->dev;
Ian Campbell488562862013-02-06 23:41:35 +0000645
646 rtnl_lock();
647 netif_carrier_off(dev); /* discard queued packets */
648 if (netif_running(dev))
649 xenvif_down(vif);
650 rtnl_unlock();
Ian Campbell488562862013-02-06 23:41:35 +0000651}
652
Wei Liue9ce7cb2014-06-04 10:30:42 +0100653static void xenvif_wait_unmap_timeout(struct xenvif_queue *queue,
654 unsigned int worst_case_skb_lifetime)
655{
656 int i, unmap_timeout = 0;
657
658 for (i = 0; i < MAX_PENDING_REQS; ++i) {
659 if (queue->grant_tx_handle[i] != NETBACK_INVALID_HANDLE) {
660 unmap_timeout++;
661 schedule_timeout(msecs_to_jiffies(1000));
662 if (unmap_timeout > worst_case_skb_lifetime &&
663 net_ratelimit())
664 netdev_err(queue->vif->dev,
665 "Page still granted! Index: %x\n",
666 i);
667 i = -1;
668 }
669 }
670}
671
Ian Campbell488562862013-02-06 23:41:35 +0000672void xenvif_disconnect(struct xenvif *vif)
673{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100674 struct xenvif_queue *queue = NULL;
675 unsigned int num_queues = vif->dev->real_num_tx_queues;
676 unsigned int queue_index;
677
Ian Campbell488562862013-02-06 23:41:35 +0000678 if (netif_carrier_ok(vif->dev))
679 xenvif_carrier_off(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000680
Wei Liue9ce7cb2014-06-04 10:30:42 +0100681 for (queue_index = 0; queue_index < num_queues; ++queue_index) {
682 queue = &vif->queues[queue_index];
David Vrabeldb739ef2013-11-21 15:26:09 +0000683
Wei Liue9ce7cb2014-06-04 10:30:42 +0100684 if (queue->task) {
685 del_timer_sync(&queue->wake_queue);
686 kthread_stop(queue->task);
687 queue->task = NULL;
Wei Liue1f00a692013-05-22 06:34:45 +0000688 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000689
Wei Liue9ce7cb2014-06-04 10:30:42 +0100690 if (queue->dealloc_task) {
691 kthread_stop(queue->dealloc_task);
692 queue->dealloc_task = NULL;
693 }
694
695 if (queue->tx_irq) {
696 if (queue->tx_irq == queue->rx_irq)
697 unbind_from_irqhandler(queue->tx_irq, queue);
698 else {
699 unbind_from_irqhandler(queue->tx_irq, queue);
700 unbind_from_irqhandler(queue->rx_irq, queue);
701 }
702 queue->tx_irq = 0;
703 }
704
705 xenvif_unmap_frontend_rings(queue);
706 }
Paul Durrant279f4382013-09-17 17:46:08 +0100707}
708
709void xenvif_free(struct xenvif *vif)
710{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100711 struct xenvif_queue *queue = NULL;
712 unsigned int num_queues = vif->dev->real_num_tx_queues;
713 unsigned int queue_index;
Zoltan Kiss0e59a4a2014-03-24 23:59:50 +0000714 /* Here we want to avoid timeout messages if an skb can be legitimately
715 * stuck somewhere else. Realistically this could be an another vif's
Zoltan Kiss09350782014-03-06 21:48:30 +0000716 * internal or QDisc queue. That another vif also has this
717 * rx_drain_timeout_msecs timeout, but the timer only ditches the
718 * internal queue. After that, the QDisc queue can put in worst case
719 * XEN_NETIF_RX_RING_SIZE / MAX_SKB_FRAGS skbs into that another vif's
720 * internal queue, so we need several rounds of such timeouts until we
721 * can be sure that no another vif should have skb's from us. We are
Zoltan Kiss0e59a4a2014-03-24 23:59:50 +0000722 * not sending more skb's, so newly stuck packets are not interesting
Zoltan Kiss09350782014-03-06 21:48:30 +0000723 * for us here.
724 */
725 unsigned int worst_case_skb_lifetime = (rx_drain_timeout_msecs/1000) *
726 DIV_ROUND_UP(XENVIF_QUEUE_LENGTH, (XEN_NETIF_RX_RING_SIZE / MAX_SKB_FRAGS));
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000727
Wei Liue9ce7cb2014-06-04 10:30:42 +0100728 unregister_netdev(vif->dev);
729
730 for (queue_index = 0; queue_index < num_queues; ++queue_index) {
731 queue = &vif->queues[queue_index];
732
733 xenvif_wait_unmap_timeout(queue, worst_case_skb_lifetime);
734 free_xenballooned_pages(MAX_PENDING_REQS, queue->mmap_pages);
735
736 netif_napi_del(&queue->napi);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000737 }
738
Wei Liue9ce7cb2014-06-04 10:30:42 +0100739 /* Free the array of queues. The call below does not require
740 * rtnl_lock() because it happens after unregister_netdev().
741 */
742 netif_set_real_num_tx_queues(vif->dev, 0);
743 vfree(vif->queues);
744 vif->queues = NULL;
Ian Campbellf942dc22011-03-15 00:06:18 +0000745
Ian Campbellf942dc22011-03-15 00:06:18 +0000746 free_netdev(vif->dev);
Wei Liub103f352013-05-16 23:26:11 +0000747
Paul Durrant279f4382013-09-17 17:46:08 +0100748 module_put(THIS_MODULE);
Ian Campbellf942dc22011-03-15 00:06:18 +0000749}