blob: f379689dde309b7bf63eb511ef7f28a827f71fc5 [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>
Arnd Bergmanne7b599d2014-06-10 10:34:36 +020037#include <linux/vmalloc.h>
Ian Campbellf942dc22011-03-15 00:06:18 +000038
39#include <xen/events.h>
40#include <asm/xen/hypercall.h>
Zoltan Kissf53c3fe2014-03-06 21:48:26 +000041#include <xen/balloon.h>
Ian Campbellf942dc22011-03-15 00:06:18 +000042
43#define XENVIF_QUEUE_LENGTH 32
Wei Liub3f980b2013-08-26 12:59:38 +010044#define XENVIF_NAPI_WEIGHT 64
Ian Campbellf942dc22011-03-15 00:06:18 +000045
Wei Liua64bd932014-08-12 11:48:07 +010046/* This function is used to set SKBTX_DEV_ZEROCOPY as well as
47 * increasing the inflight counter. We need to increase the inflight
48 * counter because core driver calls into xenvif_zerocopy_callback
49 * which calls xenvif_skb_zerocopy_complete.
50 */
51void xenvif_skb_zerocopy_prepare(struct xenvif_queue *queue,
52 struct sk_buff *skb)
53{
54 skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
55 atomic_inc(&queue->inflight_packets);
56}
57
58void xenvif_skb_zerocopy_complete(struct xenvif_queue *queue)
59{
60 atomic_dec(&queue->inflight_packets);
61}
62
Wei Liue9ce7cb2014-06-04 10:30:42 +010063static inline void xenvif_stop_queue(struct xenvif_queue *queue)
64{
65 struct net_device *dev = queue->vif->dev;
66
67 if (!queue->vif->can_queue)
68 return;
69
70 netif_tx_stop_queue(netdev_get_tx_queue(dev, queue->id));
71}
72
Ian Campbellf942dc22011-03-15 00:06:18 +000073int xenvif_schedulable(struct xenvif *vif)
74{
Zoltan Kiss3d1af1d2014-08-04 16:20:57 +010075 return netif_running(vif->dev) &&
76 test_bit(VIF_STATUS_CONNECTED, &vif->status);
Ian Campbellf942dc22011-03-15 00:06:18 +000077}
78
Wei Liue1f00a692013-05-22 06:34:45 +000079static irqreturn_t xenvif_tx_interrupt(int irq, void *dev_id)
Ian Campbellf942dc22011-03-15 00:06:18 +000080{
Wei Liue9ce7cb2014-06-04 10:30:42 +010081 struct xenvif_queue *queue = dev_id;
Ian Campbellf942dc22011-03-15 00:06:18 +000082
Wei Liue9ce7cb2014-06-04 10:30:42 +010083 if (RING_HAS_UNCONSUMED_REQUESTS(&queue->tx))
84 napi_schedule(&queue->napi);
Ian Campbellf942dc22011-03-15 00:06:18 +000085
Wei Liue1f00a692013-05-22 06:34:45 +000086 return IRQ_HANDLED;
87}
88
Wei Liue9ce7cb2014-06-04 10:30:42 +010089int xenvif_poll(struct napi_struct *napi, int budget)
Wei Liub3f980b2013-08-26 12:59:38 +010090{
Wei Liue9ce7cb2014-06-04 10:30:42 +010091 struct xenvif_queue *queue =
92 container_of(napi, struct xenvif_queue, napi);
Wei Liub3f980b2013-08-26 12:59:38 +010093 int work_done;
94
Wei Liue9d8b2c2014-04-01 12:46:12 +010095 /* This vif is rogue, we pretend we've there is nothing to do
96 * for this vif to deschedule it from NAPI. But this interface
97 * will be turned off in thread context later.
98 */
Zoltan Kiss2561cc12014-08-11 13:01:44 +010099 if (unlikely(queue->vif->disabled)) {
Wei Liue9d8b2c2014-04-01 12:46:12 +0100100 napi_complete(napi);
101 return 0;
102 }
103
Wei Liue9ce7cb2014-06-04 10:30:42 +0100104 work_done = xenvif_tx_action(queue, budget);
Wei Liub3f980b2013-08-26 12:59:38 +0100105
106 if (work_done < budget) {
David Vrabel0d08fce2014-05-16 12:26:04 +0100107 napi_complete(napi);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100108 xenvif_napi_schedule_or_enable_events(queue);
Wei Liub3f980b2013-08-26 12:59:38 +0100109 }
110
111 return work_done;
112}
113
Wei Liue1f00a692013-05-22 06:34:45 +0000114static irqreturn_t xenvif_rx_interrupt(int irq, void *dev_id)
115{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100116 struct xenvif_queue *queue = dev_id;
Zoltan Kissf34a4cf2014-08-04 16:20:58 +0100117 struct netdev_queue *net_queue =
118 netdev_get_tx_queue(queue->vif->dev, queue->id);
Wei Liue1f00a692013-05-22 06:34:45 +0000119
Zoltan Kissf34a4cf2014-08-04 16:20:58 +0100120 /* QUEUE_STATUS_RX_PURGE_EVENT is only set if either QDisc was off OR
121 * the carrier went down and this queue was previously blocked
122 */
123 if (unlikely(netif_tx_queue_stopped(net_queue) ||
124 (!netif_carrier_ok(queue->vif->dev) &&
125 test_bit(QUEUE_STATUS_RX_STALLED, &queue->status))))
126 set_bit(QUEUE_STATUS_RX_PURGE_EVENT, &queue->status);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100127 xenvif_kick_thread(queue);
Ian Campbellf942dc22011-03-15 00:06:18 +0000128
129 return IRQ_HANDLED;
130}
131
Zoltan Kissf51de242014-07-08 19:49:14 +0100132irqreturn_t xenvif_interrupt(int irq, void *dev_id)
Wei Liue1f00a692013-05-22 06:34:45 +0000133{
134 xenvif_tx_interrupt(irq, dev_id);
135 xenvif_rx_interrupt(irq, dev_id);
136
137 return IRQ_HANDLED;
138}
139
Wei Liue9ce7cb2014-06-04 10:30:42 +0100140int xenvif_queue_stopped(struct xenvif_queue *queue)
Zoltan Kiss09350782014-03-06 21:48:30 +0000141{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100142 struct net_device *dev = queue->vif->dev;
143 unsigned int id = queue->id;
144 return netif_tx_queue_stopped(netdev_get_tx_queue(dev, id));
145}
Zoltan Kiss09350782014-03-06 21:48:30 +0000146
Wei Liue9ce7cb2014-06-04 10:30:42 +0100147void xenvif_wake_queue(struct xenvif_queue *queue)
148{
149 struct net_device *dev = queue->vif->dev;
150 unsigned int id = queue->id;
151 netif_tx_wake_queue(netdev_get_tx_queue(dev, id));
152}
153
Zoltan Kissf34a4cf2014-08-04 16:20:58 +0100154/* Callback to wake the queue's thread and turn the carrier off on timeout */
155static void xenvif_rx_stalled(unsigned long data)
Wei Liue9ce7cb2014-06-04 10:30:42 +0100156{
157 struct xenvif_queue *queue = (struct xenvif_queue *)data;
158
159 if (xenvif_queue_stopped(queue)) {
Zoltan Kissf34a4cf2014-08-04 16:20:58 +0100160 set_bit(QUEUE_STATUS_RX_PURGE_EVENT, &queue->status);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100161 xenvif_kick_thread(queue);
Zoltan Kiss09350782014-03-06 21:48:30 +0000162 }
163}
164
Ian Campbellf942dc22011-03-15 00:06:18 +0000165static int xenvif_start_xmit(struct sk_buff *skb, struct net_device *dev)
166{
167 struct xenvif *vif = netdev_priv(dev);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100168 struct xenvif_queue *queue = NULL;
Wei Liuf7b50c42014-06-23 10:50:17 +0100169 unsigned int num_queues = vif->num_queues;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100170 u16 index;
Paul Durrantca2f09f2013-12-06 16:36:07 +0000171 int min_slots_needed;
Ian Campbellf942dc22011-03-15 00:06:18 +0000172
173 BUG_ON(skb->dev != dev);
174
Wei Liue9ce7cb2014-06-04 10:30:42 +0100175 /* Drop the packet if queues are not set up */
176 if (num_queues < 1)
177 goto drop;
178
179 /* Obtain the queue to be used to transmit this packet */
180 index = skb_get_queue_mapping(skb);
181 if (index >= num_queues) {
182 pr_warn_ratelimited("Invalid queue %hu for packet on interface %s\n.",
183 index, vif->dev->name);
184 index %= num_queues;
185 }
186 queue = &vif->queues[index];
187
188 /* Drop the packet if queue is not ready */
189 if (queue->task == NULL ||
190 queue->dealloc_task == NULL ||
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000191 !xenvif_schedulable(vif))
Ian Campbellf942dc22011-03-15 00:06:18 +0000192 goto drop;
193
Paul Durrantca2f09f2013-12-06 16:36:07 +0000194 /* At best we'll need one slot for the header and one for each
195 * frag.
196 */
197 min_slots_needed = 1 + skb_shinfo(skb)->nr_frags;
Ian Campbellf942dc22011-03-15 00:06:18 +0000198
Paul Durrantca2f09f2013-12-06 16:36:07 +0000199 /* If the skb is GSO then we'll also need an extra slot for the
200 * metadata.
201 */
Wei Liu836fbaf2014-03-11 12:45:32 +0000202 if (skb_is_gso(skb))
Paul Durrantca2f09f2013-12-06 16:36:07 +0000203 min_slots_needed++;
Ian Campbellf942dc22011-03-15 00:06:18 +0000204
Paul Durrantca2f09f2013-12-06 16:36:07 +0000205 /* If the skb can't possibly fit in the remaining slots
206 * then turn off the queue to give the ring a chance to
207 * drain.
208 */
Wei Liue9ce7cb2014-06-04 10:30:42 +0100209 if (!xenvif_rx_ring_slots_available(queue, min_slots_needed)) {
Zoltan Kissf34a4cf2014-08-04 16:20:58 +0100210 queue->rx_stalled.function = xenvif_rx_stalled;
211 queue->rx_stalled.data = (unsigned long)queue;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100212 xenvif_stop_queue(queue);
Zoltan Kissf34a4cf2014-08-04 16:20:58 +0100213 mod_timer(&queue->rx_stalled,
214 jiffies + rx_drain_timeout_jiffies);
Zoltan Kiss09350782014-03-06 21:48:30 +0000215 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000216
Wei Liue9ce7cb2014-06-04 10:30:42 +0100217 skb_queue_tail(&queue->rx_queue, skb);
218 xenvif_kick_thread(queue);
Ian Campbellf942dc22011-03-15 00:06:18 +0000219
220 return NETDEV_TX_OK;
221
222 drop:
223 vif->dev->stats.tx_dropped++;
224 dev_kfree_skb(skb);
225 return NETDEV_TX_OK;
226}
227
Ian Campbellf942dc22011-03-15 00:06:18 +0000228static struct net_device_stats *xenvif_get_stats(struct net_device *dev)
229{
230 struct xenvif *vif = netdev_priv(dev);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100231 struct xenvif_queue *queue = NULL;
Wei Liuf7b50c42014-06-23 10:50:17 +0100232 unsigned int num_queues = vif->num_queues;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100233 unsigned long rx_bytes = 0;
234 unsigned long rx_packets = 0;
235 unsigned long tx_bytes = 0;
236 unsigned long tx_packets = 0;
237 unsigned int index;
238
239 if (vif->queues == NULL)
240 goto out;
241
242 /* Aggregate tx and rx stats from each queue */
243 for (index = 0; index < num_queues; ++index) {
244 queue = &vif->queues[index];
245 rx_bytes += queue->stats.rx_bytes;
246 rx_packets += queue->stats.rx_packets;
247 tx_bytes += queue->stats.tx_bytes;
248 tx_packets += queue->stats.tx_packets;
249 }
250
251out:
252 vif->dev->stats.rx_bytes = rx_bytes;
253 vif->dev->stats.rx_packets = rx_packets;
254 vif->dev->stats.tx_bytes = tx_bytes;
255 vif->dev->stats.tx_packets = tx_packets;
256
Ian Campbellf942dc22011-03-15 00:06:18 +0000257 return &vif->dev->stats;
258}
259
260static void xenvif_up(struct xenvif *vif)
261{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100262 struct xenvif_queue *queue = NULL;
Wei Liuf7b50c42014-06-23 10:50:17 +0100263 unsigned int num_queues = vif->num_queues;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100264 unsigned int queue_index;
265
266 for (queue_index = 0; queue_index < num_queues; ++queue_index) {
267 queue = &vif->queues[queue_index];
268 napi_enable(&queue->napi);
269 enable_irq(queue->tx_irq);
270 if (queue->tx_irq != queue->rx_irq)
271 enable_irq(queue->rx_irq);
272 xenvif_napi_schedule_or_enable_events(queue);
273 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000274}
275
276static void xenvif_down(struct xenvif *vif)
277{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100278 struct xenvif_queue *queue = NULL;
Wei Liuf7b50c42014-06-23 10:50:17 +0100279 unsigned int num_queues = vif->num_queues;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100280 unsigned int queue_index;
281
282 for (queue_index = 0; queue_index < num_queues; ++queue_index) {
283 queue = &vif->queues[queue_index];
284 napi_disable(&queue->napi);
285 disable_irq(queue->tx_irq);
286 if (queue->tx_irq != queue->rx_irq)
287 disable_irq(queue->rx_irq);
288 del_timer_sync(&queue->credit_timeout);
289 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000290}
291
292static int xenvif_open(struct net_device *dev)
293{
294 struct xenvif *vif = netdev_priv(dev);
Zoltan Kiss3d1af1d2014-08-04 16:20:57 +0100295 if (test_bit(VIF_STATUS_CONNECTED, &vif->status))
Ian Campbellf942dc22011-03-15 00:06:18 +0000296 xenvif_up(vif);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100297 netif_tx_start_all_queues(dev);
Ian Campbellf942dc22011-03-15 00:06:18 +0000298 return 0;
299}
300
301static int xenvif_close(struct net_device *dev)
302{
303 struct xenvif *vif = netdev_priv(dev);
Zoltan Kiss3d1af1d2014-08-04 16:20:57 +0100304 if (test_bit(VIF_STATUS_CONNECTED, &vif->status))
Ian Campbellf942dc22011-03-15 00:06:18 +0000305 xenvif_down(vif);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100306 netif_tx_stop_all_queues(dev);
Ian Campbellf942dc22011-03-15 00:06:18 +0000307 return 0;
308}
309
310static int xenvif_change_mtu(struct net_device *dev, int mtu)
311{
312 struct xenvif *vif = netdev_priv(dev);
313 int max = vif->can_sg ? 65535 - VLAN_ETH_HLEN : ETH_DATA_LEN;
314
315 if (mtu > max)
316 return -EINVAL;
317 dev->mtu = mtu;
318 return 0;
319}
320
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000321static netdev_features_t xenvif_fix_features(struct net_device *dev,
322 netdev_features_t features)
Ian Campbellf942dc22011-03-15 00:06:18 +0000323{
324 struct xenvif *vif = netdev_priv(dev);
Ian Campbellf942dc22011-03-15 00:06:18 +0000325
Michał Mirosław47103042011-04-19 03:35:06 +0000326 if (!vif->can_sg)
327 features &= ~NETIF_F_SG;
Paul Durrant82cada22013-10-16 17:50:32 +0100328 if (~(vif->gso_mask | vif->gso_prefix_mask) & GSO_BIT(TCPV4))
Michał Mirosław47103042011-04-19 03:35:06 +0000329 features &= ~NETIF_F_TSO;
Paul Durrant82cada22013-10-16 17:50:32 +0100330 if (~(vif->gso_mask | vif->gso_prefix_mask) & GSO_BIT(TCPV6))
331 features &= ~NETIF_F_TSO6;
Paul Durrant146c8a72013-10-16 17:50:28 +0100332 if (!vif->ip_csum)
Michał Mirosław47103042011-04-19 03:35:06 +0000333 features &= ~NETIF_F_IP_CSUM;
Paul Durrant146c8a72013-10-16 17:50:28 +0100334 if (!vif->ipv6_csum)
335 features &= ~NETIF_F_IPV6_CSUM;
Ian Campbellf942dc22011-03-15 00:06:18 +0000336
Michał Mirosław47103042011-04-19 03:35:06 +0000337 return features;
Ian Campbellf942dc22011-03-15 00:06:18 +0000338}
339
340static const struct xenvif_stat {
341 char name[ETH_GSTRING_LEN];
342 u16 offset;
343} xenvif_stats[] = {
344 {
345 "rx_gso_checksum_fixup",
Wei Liue9ce7cb2014-06-04 10:30:42 +0100346 offsetof(struct xenvif_stats, rx_gso_checksum_fixup)
Ian Campbellf942dc22011-03-15 00:06:18 +0000347 },
Zoltan Kiss1bb332a2014-03-06 21:48:28 +0000348 /* If (sent != success + fail), there are probably packets never
349 * freed up properly!
350 */
351 {
352 "tx_zerocopy_sent",
Wei Liue9ce7cb2014-06-04 10:30:42 +0100353 offsetof(struct xenvif_stats, tx_zerocopy_sent),
Zoltan Kiss1bb332a2014-03-06 21:48:28 +0000354 },
355 {
356 "tx_zerocopy_success",
Wei Liue9ce7cb2014-06-04 10:30:42 +0100357 offsetof(struct xenvif_stats, tx_zerocopy_success),
Zoltan Kiss1bb332a2014-03-06 21:48:28 +0000358 },
359 {
360 "tx_zerocopy_fail",
Wei Liue9ce7cb2014-06-04 10:30:42 +0100361 offsetof(struct xenvif_stats, tx_zerocopy_fail)
Zoltan Kiss1bb332a2014-03-06 21:48:28 +0000362 },
Zoltan Kisse3377f32014-03-06 21:48:29 +0000363 /* Number of packets exceeding MAX_SKB_FRAG slots. You should use
364 * a guest with the same MAX_SKB_FRAG
365 */
366 {
367 "tx_frag_overflow",
Wei Liue9ce7cb2014-06-04 10:30:42 +0100368 offsetof(struct xenvif_stats, tx_frag_overflow)
Zoltan Kisse3377f32014-03-06 21:48:29 +0000369 },
Ian Campbellf942dc22011-03-15 00:06:18 +0000370};
371
372static int xenvif_get_sset_count(struct net_device *dev, int string_set)
373{
374 switch (string_set) {
375 case ETH_SS_STATS:
376 return ARRAY_SIZE(xenvif_stats);
377 default:
378 return -EINVAL;
379 }
380}
381
382static void xenvif_get_ethtool_stats(struct net_device *dev,
383 struct ethtool_stats *stats, u64 * data)
384{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100385 struct xenvif *vif = netdev_priv(dev);
Wei Liuf7b50c42014-06-23 10:50:17 +0100386 unsigned int num_queues = vif->num_queues;
Ian Campbellf942dc22011-03-15 00:06:18 +0000387 int i;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100388 unsigned int queue_index;
389 struct xenvif_stats *vif_stats;
Ian Campbellf942dc22011-03-15 00:06:18 +0000390
Wei Liue9ce7cb2014-06-04 10:30:42 +0100391 for (i = 0; i < ARRAY_SIZE(xenvif_stats); i++) {
392 unsigned long accum = 0;
393 for (queue_index = 0; queue_index < num_queues; ++queue_index) {
394 vif_stats = &vif->queues[queue_index].stats;
395 accum += *(unsigned long *)(vif_stats + xenvif_stats[i].offset);
396 }
397 data[i] = accum;
398 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000399}
400
401static void xenvif_get_strings(struct net_device *dev, u32 stringset, u8 * data)
402{
403 int i;
404
405 switch (stringset) {
406 case ETH_SS_STATS:
407 for (i = 0; i < ARRAY_SIZE(xenvif_stats); i++)
408 memcpy(data + i * ETH_GSTRING_LEN,
409 xenvif_stats[i].name, ETH_GSTRING_LEN);
410 break;
411 }
412}
413
stephen hemminger813abbb2012-01-04 11:56:58 +0000414static const struct ethtool_ops xenvif_ethtool_ops = {
Ian Campbellf942dc22011-03-15 00:06:18 +0000415 .get_link = ethtool_op_get_link,
416
417 .get_sset_count = xenvif_get_sset_count,
418 .get_ethtool_stats = xenvif_get_ethtool_stats,
419 .get_strings = xenvif_get_strings,
420};
421
stephen hemminger813abbb2012-01-04 11:56:58 +0000422static const struct net_device_ops xenvif_netdev_ops = {
Ian Campbellf942dc22011-03-15 00:06:18 +0000423 .ndo_start_xmit = xenvif_start_xmit,
424 .ndo_get_stats = xenvif_get_stats,
425 .ndo_open = xenvif_open,
426 .ndo_stop = xenvif_close,
427 .ndo_change_mtu = xenvif_change_mtu,
Michał Mirosław47103042011-04-19 03:35:06 +0000428 .ndo_fix_features = xenvif_fix_features,
Matt Wilson4a633a62013-01-22 08:08:25 +0000429 .ndo_set_mac_address = eth_mac_addr,
430 .ndo_validate_addr = eth_validate_addr,
Ian Campbellf942dc22011-03-15 00:06:18 +0000431};
432
433struct xenvif *xenvif_alloc(struct device *parent, domid_t domid,
434 unsigned int handle)
435{
436 int err;
437 struct net_device *dev;
438 struct xenvif *vif;
439 char name[IFNAMSIZ] = {};
440
441 snprintf(name, IFNAMSIZ - 1, "vif%u.%u", domid, handle);
Andrew J. Bennieston8d3d53b2014-06-04 10:30:43 +0100442 /* Allocate a netdev with the max. supported number of queues.
443 * When the guest selects the desired number, it will be updated
Wei Liuf7b50c42014-06-23 10:50:17 +0100444 * via netif_set_real_num_*_queues().
Andrew J. Bennieston8d3d53b2014-06-04 10:30:43 +0100445 */
Tom Gundersenc835a672014-07-14 16:37:24 +0200446 dev = alloc_netdev_mq(sizeof(struct xenvif), name, NET_NAME_UNKNOWN,
447 ether_setup, xenvif_max_queues);
Ian Campbellf942dc22011-03-15 00:06:18 +0000448 if (dev == NULL) {
Wei Liub3f980b2013-08-26 12:59:38 +0100449 pr_warn("Could not allocate netdev for %s\n", name);
Ian Campbellf942dc22011-03-15 00:06:18 +0000450 return ERR_PTR(-ENOMEM);
451 }
452
453 SET_NETDEV_DEV(dev, parent);
454
455 vif = netdev_priv(dev);
Paul Durrantac3d5ac2013-12-23 09:27:17 +0000456
Ian Campbellf942dc22011-03-15 00:06:18 +0000457 vif->domid = domid;
458 vif->handle = handle;
Ian Campbellf942dc22011-03-15 00:06:18 +0000459 vif->can_sg = 1;
Paul Durrant146c8a72013-10-16 17:50:28 +0100460 vif->ip_csum = 1;
Ian Campbellf942dc22011-03-15 00:06:18 +0000461 vif->dev = dev;
Wei Liue9d8b2c2014-04-01 12:46:12 +0100462 vif->disabled = false;
463
Wei Liuf7b50c42014-06-23 10:50:17 +0100464 /* Start out with no queues. */
Wei Liue9ce7cb2014-06-04 10:30:42 +0100465 vif->queues = NULL;
Wei Liuf7b50c42014-06-23 10:50:17 +0100466 vif->num_queues = 0;
Zoltan Kiss09350782014-03-06 21:48:30 +0000467
Ian Campbellf942dc22011-03-15 00:06:18 +0000468 dev->netdev_ops = &xenvif_netdev_ops;
Paul Durrant146c8a72013-10-16 17:50:28 +0100469 dev->hw_features = NETIF_F_SG |
470 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
Paul Durrant82cada22013-10-16 17:50:32 +0100471 NETIF_F_TSO | NETIF_F_TSO6;
Paul Durrant7365bcf2013-10-16 17:50:30 +0100472 dev->features = dev->hw_features | NETIF_F_RXCSUM;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +0000473 dev->ethtool_ops = &xenvif_ethtool_ops;
Ian Campbellf942dc22011-03-15 00:06:18 +0000474
475 dev->tx_queue_len = XENVIF_QUEUE_LENGTH;
476
477 /*
478 * Initialise a dummy MAC address. We choose the numerically
479 * largest non-broadcast address to prevent the address getting
480 * stolen by an Ethernet bridge for STP purposes.
481 * (FE:FF:FF:FF:FF:FF)
482 */
483 memset(dev->dev_addr, 0xFF, ETH_ALEN);
484 dev->dev_addr[0] &= ~0x01;
485
486 netif_carrier_off(dev);
487
488 err = register_netdev(dev);
489 if (err) {
490 netdev_warn(dev, "Could not register device: err=%d\n", err);
491 free_netdev(dev);
492 return ERR_PTR(err);
493 }
494
495 netdev_dbg(dev, "Successfully created xenvif\n");
Paul Durrant279f4382013-09-17 17:46:08 +0100496
497 __module_get(THIS_MODULE);
498
Ian Campbellf942dc22011-03-15 00:06:18 +0000499 return vif;
500}
501
Wei Liue9ce7cb2014-06-04 10:30:42 +0100502int xenvif_init_queue(struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +0000503{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100504 int err, i;
Ian Campbellf942dc22011-03-15 00:06:18 +0000505
Wei Liue9ce7cb2014-06-04 10:30:42 +0100506 queue->credit_bytes = queue->remaining_credit = ~0UL;
507 queue->credit_usec = 0UL;
508 init_timer(&queue->credit_timeout);
509 queue->credit_window_start = get_jiffies_64();
Ian Campbellf942dc22011-03-15 00:06:18 +0000510
Wei Liue9ce7cb2014-06-04 10:30:42 +0100511 skb_queue_head_init(&queue->rx_queue);
512 skb_queue_head_init(&queue->tx_queue);
Ian Campbellf942dc22011-03-15 00:06:18 +0000513
Wei Liue9ce7cb2014-06-04 10:30:42 +0100514 queue->pending_cons = 0;
515 queue->pending_prod = MAX_PENDING_REQS;
516 for (i = 0; i < MAX_PENDING_REQS; ++i)
517 queue->pending_ring[i] = i;
Paul Durrantca2f09f2013-12-06 16:36:07 +0000518
Wei Liue9ce7cb2014-06-04 10:30:42 +0100519 spin_lock_init(&queue->callback_lock);
520 spin_lock_init(&queue->response_lock);
Wei Liue1f00a692013-05-22 06:34:45 +0000521
Wei Liue9ce7cb2014-06-04 10:30:42 +0100522 /* If ballooning is disabled, this will consume real memory, so you
523 * better enable it. The long term solution would be to use just a
524 * bunch of valid page descriptors, without dependency on ballooning
525 */
526 err = alloc_xenballooned_pages(MAX_PENDING_REQS,
527 queue->mmap_pages,
528 false);
529 if (err) {
530 netdev_err(queue->vif->dev, "Could not reserve mmap_pages\n");
531 return -ENOMEM;
Wei Liue1f00a692013-05-22 06:34:45 +0000532 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000533
Wei Liue9ce7cb2014-06-04 10:30:42 +0100534 for (i = 0; i < MAX_PENDING_REQS; i++) {
535 queue->pending_tx_info[i].callback_struct = (struct ubuf_info)
536 { .callback = xenvif_zerocopy_callback,
537 .ctx = NULL,
538 .desc = i };
539 queue->grant_tx_handle[i] = NETBACK_INVALID_HANDLE;
Wei Liub3f980b2013-08-26 12:59:38 +0100540 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000541
Zoltan Kissf34a4cf2014-08-04 16:20:58 +0100542 init_timer(&queue->rx_stalled);
Paul Durrant67fa3662013-12-03 14:06:25 +0000543
Wei Liue9ce7cb2014-06-04 10:30:42 +0100544 return 0;
545}
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000546
Wei Liue9ce7cb2014-06-04 10:30:42 +0100547void xenvif_carrier_on(struct xenvif *vif)
548{
Ian Campbellf942dc22011-03-15 00:06:18 +0000549 rtnl_lock();
Michał Mirosław47103042011-04-19 03:35:06 +0000550 if (!vif->can_sg && vif->dev->mtu > ETH_DATA_LEN)
551 dev_set_mtu(vif->dev, ETH_DATA_LEN);
552 netdev_update_features(vif->dev);
Zoltan Kiss3d1af1d2014-08-04 16:20:57 +0100553 set_bit(VIF_STATUS_CONNECTED, &vif->status);
Michał Mirosław47103042011-04-19 03:35:06 +0000554 netif_carrier_on(vif->dev);
David Vrabeld0e5d832011-09-30 06:37:51 +0000555 if (netif_running(vif->dev))
556 xenvif_up(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000557 rtnl_unlock();
Wei Liue9ce7cb2014-06-04 10:30:42 +0100558}
Ian Campbellf942dc22011-03-15 00:06:18 +0000559
Wei Liue9ce7cb2014-06-04 10:30:42 +0100560int xenvif_connect(struct xenvif_queue *queue, unsigned long tx_ring_ref,
561 unsigned long rx_ring_ref, unsigned int tx_evtchn,
562 unsigned int rx_evtchn)
563{
564 struct task_struct *task;
565 int err = -ENOMEM;
566
567 BUG_ON(queue->tx_irq);
568 BUG_ON(queue->task);
569 BUG_ON(queue->dealloc_task);
570
571 err = xenvif_map_frontend_rings(queue, tx_ring_ref, rx_ring_ref);
572 if (err < 0)
573 goto err;
574
575 init_waitqueue_head(&queue->wq);
576 init_waitqueue_head(&queue->dealloc_wq);
Wei Liua64bd932014-08-12 11:48:07 +0100577 atomic_set(&queue->inflight_packets, 0);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100578
Wei Liue24f8192014-08-25 16:44:00 +0100579 netif_napi_add(queue->vif->dev, &queue->napi, xenvif_poll,
580 XENVIF_NAPI_WEIGHT);
581
Wei Liue9ce7cb2014-06-04 10:30:42 +0100582 if (tx_evtchn == rx_evtchn) {
583 /* feature-split-event-channels == 0 */
584 err = bind_interdomain_evtchn_to_irqhandler(
585 queue->vif->domid, tx_evtchn, xenvif_interrupt, 0,
586 queue->name, queue);
587 if (err < 0)
588 goto err_unmap;
589 queue->tx_irq = queue->rx_irq = err;
590 disable_irq(queue->tx_irq);
591 } else {
592 /* feature-split-event-channels == 1 */
593 snprintf(queue->tx_irq_name, sizeof(queue->tx_irq_name),
594 "%s-tx", queue->name);
595 err = bind_interdomain_evtchn_to_irqhandler(
596 queue->vif->domid, tx_evtchn, xenvif_tx_interrupt, 0,
597 queue->tx_irq_name, queue);
598 if (err < 0)
599 goto err_unmap;
600 queue->tx_irq = err;
601 disable_irq(queue->tx_irq);
602
603 snprintf(queue->rx_irq_name, sizeof(queue->rx_irq_name),
604 "%s-rx", queue->name);
605 err = bind_interdomain_evtchn_to_irqhandler(
606 queue->vif->domid, rx_evtchn, xenvif_rx_interrupt, 0,
607 queue->rx_irq_name, queue);
608 if (err < 0)
609 goto err_tx_unbind;
610 queue->rx_irq = err;
611 disable_irq(queue->rx_irq);
612 }
613
614 task = kthread_create(xenvif_kthread_guest_rx,
615 (void *)queue, "%s-guest-rx", queue->name);
616 if (IS_ERR(task)) {
617 pr_warn("Could not allocate kthread for %s\n", queue->name);
618 err = PTR_ERR(task);
619 goto err_rx_unbind;
620 }
621 queue->task = task;
622
623 task = kthread_create(xenvif_dealloc_kthread,
624 (void *)queue, "%s-dealloc", queue->name);
625 if (IS_ERR(task)) {
626 pr_warn("Could not allocate kthread for %s\n", queue->name);
627 err = PTR_ERR(task);
628 goto err_rx_unbind;
629 }
630 queue->dealloc_task = task;
631
632 wake_up_process(queue->task);
633 wake_up_process(queue->dealloc_task);
Wei Liub3f980b2013-08-26 12:59:38 +0100634
Ian Campbellf942dc22011-03-15 00:06:18 +0000635 return 0;
Wei Liub3f980b2013-08-26 12:59:38 +0100636
637err_rx_unbind:
Wei Liue9ce7cb2014-06-04 10:30:42 +0100638 unbind_from_irqhandler(queue->rx_irq, queue);
639 queue->rx_irq = 0;
Wei Liue1f00a692013-05-22 06:34:45 +0000640err_tx_unbind:
Wei Liue9ce7cb2014-06-04 10:30:42 +0100641 unbind_from_irqhandler(queue->tx_irq, queue);
642 queue->tx_irq = 0;
Ian Campbellf942dc22011-03-15 00:06:18 +0000643err_unmap:
Wei Liue9ce7cb2014-06-04 10:30:42 +0100644 xenvif_unmap_frontend_rings(queue);
Ian Campbellf942dc22011-03-15 00:06:18 +0000645err:
Wei Liub103f352013-05-16 23:26:11 +0000646 module_put(THIS_MODULE);
Ian Campbellf942dc22011-03-15 00:06:18 +0000647 return err;
648}
649
Ian Campbell488562862013-02-06 23:41:35 +0000650void xenvif_carrier_off(struct xenvif *vif)
Ian Campbellf942dc22011-03-15 00:06:18 +0000651{
652 struct net_device *dev = vif->dev;
Ian Campbell488562862013-02-06 23:41:35 +0000653
654 rtnl_lock();
Zoltan Kiss3d1af1d2014-08-04 16:20:57 +0100655 if (test_and_clear_bit(VIF_STATUS_CONNECTED, &vif->status)) {
656 netif_carrier_off(dev); /* discard queued packets */
657 if (netif_running(dev))
658 xenvif_down(vif);
659 }
Ian Campbell488562862013-02-06 23:41:35 +0000660 rtnl_unlock();
Ian Campbell488562862013-02-06 23:41:35 +0000661}
662
663void xenvif_disconnect(struct xenvif *vif)
664{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100665 struct xenvif_queue *queue = NULL;
Wei Liuf7b50c42014-06-23 10:50:17 +0100666 unsigned int num_queues = vif->num_queues;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100667 unsigned int queue_index;
668
Zoltan Kiss3d1af1d2014-08-04 16:20:57 +0100669 xenvif_carrier_off(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000670
Wei Liue9ce7cb2014-06-04 10:30:42 +0100671 for (queue_index = 0; queue_index < num_queues; ++queue_index) {
672 queue = &vif->queues[queue_index];
David Vrabeldb739ef2013-11-21 15:26:09 +0000673
Wei Liuea2c5e12014-08-12 11:48:06 +0100674 netif_napi_del(&queue->napi);
675
Wei Liue9ce7cb2014-06-04 10:30:42 +0100676 if (queue->task) {
Zoltan Kissf34a4cf2014-08-04 16:20:58 +0100677 del_timer_sync(&queue->rx_stalled);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100678 kthread_stop(queue->task);
679 queue->task = NULL;
Wei Liue1f00a692013-05-22 06:34:45 +0000680 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000681
Wei Liue9ce7cb2014-06-04 10:30:42 +0100682 if (queue->dealloc_task) {
683 kthread_stop(queue->dealloc_task);
684 queue->dealloc_task = NULL;
685 }
686
687 if (queue->tx_irq) {
688 if (queue->tx_irq == queue->rx_irq)
689 unbind_from_irqhandler(queue->tx_irq, queue);
690 else {
691 unbind_from_irqhandler(queue->tx_irq, queue);
692 unbind_from_irqhandler(queue->rx_irq, queue);
693 }
694 queue->tx_irq = 0;
695 }
696
697 xenvif_unmap_frontend_rings(queue);
698 }
Paul Durrant279f4382013-09-17 17:46:08 +0100699}
700
Andrew J. Bennieston8d3d53b2014-06-04 10:30:43 +0100701/* Reverse the relevant parts of xenvif_init_queue().
702 * Used for queue teardown from xenvif_free(), and on the
703 * error handling paths in xenbus.c:connect().
704 */
705void xenvif_deinit_queue(struct xenvif_queue *queue)
706{
707 free_xenballooned_pages(MAX_PENDING_REQS, queue->mmap_pages);
Andrew J. Bennieston8d3d53b2014-06-04 10:30:43 +0100708}
709
Paul Durrant279f4382013-09-17 17:46:08 +0100710void xenvif_free(struct xenvif *vif)
711{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100712 struct xenvif_queue *queue = NULL;
Wei Liuf7b50c42014-06-23 10:50:17 +0100713 unsigned int num_queues = vif->num_queues;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100714 unsigned int queue_index;
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000715
Wei Liue9ce7cb2014-06-04 10:30:42 +0100716 unregister_netdev(vif->dev);
717
718 for (queue_index = 0; queue_index < num_queues; ++queue_index) {
719 queue = &vif->queues[queue_index];
Andrew J. Bennieston8d3d53b2014-06-04 10:30:43 +0100720 xenvif_deinit_queue(queue);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000721 }
722
Wei Liue9ce7cb2014-06-04 10:30:42 +0100723 vfree(vif->queues);
724 vif->queues = NULL;
Wei Liuf7b50c42014-06-23 10:50:17 +0100725 vif->num_queues = 0;
Ian Campbellf942dc22011-03-15 00:06:18 +0000726
Ian Campbellf942dc22011-03-15 00:06:18 +0000727 free_netdev(vif->dev);
Wei Liub103f352013-05-16 23:26:11 +0000728
Paul Durrant279f4382013-09-17 17:46:08 +0100729 module_put(THIS_MODULE);
Ian Campbellf942dc22011-03-15 00:06:18 +0000730}