tap.c 28.6 KB
Newer Older
A
Arnd Bergmann 已提交
1
#include <linux/etherdevice.h>
2
#include <linux/if_tap.h>
3
#include <linux/if_vlan.h>
A
Arnd Bergmann 已提交
4 5 6 7 8 9 10
#include <linux/interrupt.h>
#include <linux/nsproxy.h>
#include <linux/compat.h>
#include <linux/if_tun.h>
#include <linux/module.h>
#include <linux/skbuff.h>
#include <linux/cache.h>
11
#include <linux/sched/signal.h>
A
Arnd Bergmann 已提交
12
#include <linux/types.h>
13
#include <linux/slab.h>
A
Arnd Bergmann 已提交
14 15
#include <linux/wait.h>
#include <linux/cdev.h>
A
Al Viro 已提交
16
#include <linux/idr.h>
A
Arnd Bergmann 已提交
17
#include <linux/fs.h>
H
Herbert Xu 已提交
18
#include <linux/uio.h>
A
Arnd Bergmann 已提交
19 20 21 22

#include <net/net_namespace.h>
#include <net/rtnetlink.h>
#include <net/sock.h>
23
#include <linux/virtio_net.h>
J
Jason Wang 已提交
24
#include <linux/skb_array.h>
A
Arnd Bergmann 已提交
25

26
#define TAP_IFFEATURES (IFF_VNET_HDR | IFF_MULTI_QUEUE)
27

28 29
#define TAP_VNET_LE 0x80000000
#define TAP_VNET_BE 0x40000000
30 31

#ifdef CONFIG_TUN_VNET_CROSS_LE
32
static inline bool tap_legacy_is_little_endian(struct tap_queue *q)
33
{
34
	return q->flags & TAP_VNET_BE ? false :
35 36 37
		virtio_legacy_is_little_endian();
}

38
static long tap_get_vnet_be(struct tap_queue *q, int __user *sp)
39
{
40
	int s = !!(q->flags & TAP_VNET_BE);
41 42 43 44 45 46 47

	if (put_user(s, sp))
		return -EFAULT;

	return 0;
}

48
static long tap_set_vnet_be(struct tap_queue *q, int __user *sp)
49 50 51 52 53 54 55
{
	int s;

	if (get_user(s, sp))
		return -EFAULT;

	if (s)
56
		q->flags |= TAP_VNET_BE;
57
	else
58
		q->flags &= ~TAP_VNET_BE;
59 60 61 62

	return 0;
}
#else
63
static inline bool tap_legacy_is_little_endian(struct tap_queue *q)
64 65 66 67
{
	return virtio_legacy_is_little_endian();
}

68
static long tap_get_vnet_be(struct tap_queue *q, int __user *argp)
69 70 71 72
{
	return -EINVAL;
}

73
static long tap_set_vnet_be(struct tap_queue *q, int __user *argp)
74 75 76 77
{
	return -EINVAL;
}
#endif /* CONFIG_TUN_VNET_CROSS_LE */
M
Michael S. Tsirkin 已提交
78

79
static inline bool tap_is_little_endian(struct tap_queue *q)
80
{
81 82
	return q->flags & TAP_VNET_LE ||
		tap_legacy_is_little_endian(q);
83
}
M
Michael S. Tsirkin 已提交
84

85
static inline u16 tap16_to_cpu(struct tap_queue *q, __virtio16 val)
M
Michael S. Tsirkin 已提交
86
{
87
	return __virtio16_to_cpu(tap_is_little_endian(q), val);
M
Michael S. Tsirkin 已提交
88 89
}

90
static inline __virtio16 cpu_to_tap16(struct tap_queue *q, u16 val)
M
Michael S. Tsirkin 已提交
91
{
92
	return __cpu_to_virtio16(tap_is_little_endian(q), val);
M
Michael S. Tsirkin 已提交
93 94
}

95 96
static struct proto tap_proto = {
	.name = "tap",
A
Arnd Bergmann 已提交
97
	.owner = THIS_MODULE,
98
	.obj_size = sizeof(struct tap_queue),
A
Arnd Bergmann 已提交
99 100
};

101
#define TAP_NUM_DEVS (1U << MINORBITS)
102 103 104

static LIST_HEAD(major_list);

105
struct major_info {
106
	struct rcu_head rcu;
107 108 109 110
	dev_t major;
	struct idr minor_idr;
	struct mutex minor_lock;
	const char *device_name;
111 112
	struct list_head next;
};
113

114
#define GOODCOPY_LEN 128
A
Arnd Bergmann 已提交
115

116
static const struct proto_ops tap_socket_ops;
A
Arnd Bergmann 已提交
117

118
#define RX_OFFLOADS (NETIF_F_GRO | NETIF_F_LRO)
119
#define TAP_FEATURES (NETIF_F_GSO | NETIF_F_SG | NETIF_F_FRAGLIST)
120

121
static struct tap_dev *tap_dev_get_rcu(const struct net_device *dev)
122 123 124 125
{
	return rcu_dereference(dev->rx_handler_data);
}

A
Arnd Bergmann 已提交
126 127
/*
 * RCU usage:
128
 * The tap_queue and the macvlan_dev are loosely coupled, the
129
 * pointers from one to the other can only be read while rcu_read_lock
130
 * or rtnl is held.
A
Arnd Bergmann 已提交
131
 *
132
 * Both the file and the macvlan_dev hold a reference on the tap_queue
133 134
 * through sock_hold(&q->sk). When the macvlan_dev goes away first,
 * q->vlan becomes inaccessible. When the files gets closed,
135
 * tap_get_queue() fails.
A
Arnd Bergmann 已提交
136
 *
137 138 139 140
 * There may still be references to the struct sock inside of the
 * queue from outbound SKBs, but these never reference back to the
 * file or the dev. The data structure is freed through __sk_free
 * when both our references and any pending SKBs are gone.
A
Arnd Bergmann 已提交
141 142
 */

143
static int tap_enable_queue(struct tap_dev *tap, struct file *file,
144
			    struct tap_queue *q)
J
Jason Wang 已提交
145 146 147
{
	int err = -EINVAL;

148
	ASSERT_RTNL();
J
Jason Wang 已提交
149 150 151 152 153

	if (q->enabled)
		goto out;

	err = 0;
154 155
	rcu_assign_pointer(tap->taps[tap->numvtaps], q);
	q->queue_index = tap->numvtaps;
J
Jason Wang 已提交
156 157
	q->enabled = true;

158
	tap->numvtaps++;
J
Jason Wang 已提交
159 160 161 162
out:
	return err;
}

163
/* Requires RTNL */
164
static int tap_set_queue(struct tap_dev *tap, struct file *file,
165
			 struct tap_queue *q)
A
Arnd Bergmann 已提交
166
{
167
	if (tap->numqueues == MAX_TAP_QUEUES)
168
		return -EBUSY;
A
Arnd Bergmann 已提交
169

170 171
	rcu_assign_pointer(q->tap, tap);
	rcu_assign_pointer(tap->taps[tap->numvtaps], q);
172
	sock_hold(&q->sk);
A
Arnd Bergmann 已提交
173 174

	q->file = file;
175
	q->queue_index = tap->numvtaps;
J
Jason Wang 已提交
176
	q->enabled = true;
177
	file->private_data = q;
178
	list_add_tail(&q->next, &tap->queue_list);
A
Arnd Bergmann 已提交
179

180 181
	tap->numvtaps++;
	tap->numqueues++;
182

183
	return 0;
A
Arnd Bergmann 已提交
184 185
}

186
static int tap_disable_queue(struct tap_queue *q)
J
Jason Wang 已提交
187
{
188
	struct tap_dev *tap;
189
	struct tap_queue *nq;
J
Jason Wang 已提交
190

191
	ASSERT_RTNL();
J
Jason Wang 已提交
192 193 194
	if (!q->enabled)
		return -EINVAL;

195
	tap = rtnl_dereference(q->tap);
196

197
	if (tap) {
J
Jason Wang 已提交
198
		int index = q->queue_index;
199 200
		BUG_ON(index >= tap->numvtaps);
		nq = rtnl_dereference(tap->taps[tap->numvtaps - 1]);
J
Jason Wang 已提交
201 202
		nq->queue_index = index;

203 204
		rcu_assign_pointer(tap->taps[index], nq);
		RCU_INIT_POINTER(tap->taps[tap->numvtaps - 1], NULL);
J
Jason Wang 已提交
205 206
		q->enabled = false;

207
		tap->numvtaps--;
J
Jason Wang 已提交
208 209 210 211 212
	}

	return 0;
}

A
Arnd Bergmann 已提交
213
/*
214 215 216
 * The file owning the queue got closed, give up both
 * the reference that the files holds as well as the
 * one from the macvlan_dev if that still exists.
A
Arnd Bergmann 已提交
217 218 219 220
 *
 * Using the spinlock makes sure that we don't get
 * to the queue again after destroying it.
 */
221
static void tap_put_queue(struct tap_queue *q)
A
Arnd Bergmann 已提交
222
{
223
	struct tap_dev *tap;
A
Arnd Bergmann 已提交
224

225
	rtnl_lock();
226
	tap = rtnl_dereference(q->tap);
227

228
	if (tap) {
J
Jason Wang 已提交
229
		if (q->enabled)
230
			BUG_ON(tap_disable_queue(q));
J
Jason Wang 已提交
231

232 233
		tap->numqueues--;
		RCU_INIT_POINTER(q->tap, NULL);
234
		sock_put(&q->sk);
J
Jason Wang 已提交
235
		list_del_init(&q->next);
A
Arnd Bergmann 已提交
236 237
	}

238
	rtnl_unlock();
A
Arnd Bergmann 已提交
239 240 241 242 243 244

	synchronize_rcu();
	sock_put(&q->sk);
}

/*
245 246 247 248 249
 * Select a queue based on the rxq of the device on which this packet
 * arrived. If the incoming device is not mq, calculate a flow hash
 * to select a queue. If all fails, find the first available queue.
 * Cache vlan->numvtaps since it can become zero during the execution
 * of this function.
A
Arnd Bergmann 已提交
250
 */
251
static struct tap_queue *tap_get_queue(struct tap_dev *tap,
252
				       struct sk_buff *skb)
A
Arnd Bergmann 已提交
253
{
254
	struct tap_queue *queue = NULL;
J
Jason Wang 已提交
255 256 257 258 259
	/* Access to taps array is protected by rcu, but access to numvtaps
	 * isn't. Below we use it to lookup a queue, but treat it as a hint
	 * and validate that the result isn't NULL - in case we are
	 * racing against queue removal.
	 */
260
	int numvtaps = ACCESS_ONCE(tap->numvtaps);
261 262 263 264 265
	__u32 rxq;

	if (!numvtaps)
		goto out;

266 267 268
	if (numvtaps == 1)
		goto single;

269
	/* Check if we can use flow to select a queue */
270
	rxq = skb_get_hash(skb);
271
	if (rxq) {
272
		queue = rcu_dereference(tap->taps[rxq % numvtaps]);
J
Jason Wang 已提交
273
		goto out;
274 275
	}

276 277
	if (likely(skb_rx_queue_recorded(skb))) {
		rxq = skb_get_rx_queue(skb);
A
Arnd Bergmann 已提交
278

279 280 281
		while (unlikely(rxq >= numvtaps))
			rxq -= numvtaps;

282
		queue = rcu_dereference(tap->taps[rxq]);
J
Jason Wang 已提交
283
		goto out;
284 285
	}

286
single:
287
	queue = rcu_dereference(tap->taps[0]);
288
out:
289
	return queue;
A
Arnd Bergmann 已提交
290 291
}

292 293
/*
 * The net_device is going away, give up the reference
294 295
 * that it holds on all queues and safely set the pointer
 * from the queues to NULL.
296
 */
297
void tap_del_queues(struct tap_dev *tap)
A
Arnd Bergmann 已提交
298
{
299
	struct tap_queue *q, *tmp;
300

301
	ASSERT_RTNL();
302
	list_for_each_entry_safe(q, tmp, &tap->queue_list, next) {
J
Jason Wang 已提交
303
		list_del_init(&q->next);
304
		RCU_INIT_POINTER(q->tap, NULL);
J
Jason Wang 已提交
305
		if (q->enabled)
306 307
			tap->numvtaps--;
		tap->numqueues--;
308
		sock_put(&q->sk);
309
	}
310 311
	BUG_ON(tap->numvtaps);
	BUG_ON(tap->numqueues);
312
	/* guarantee that any future tap_set_queue will fail */
313
	tap->numvtaps = MAX_TAP_QUEUES;
A
Arnd Bergmann 已提交
314
}
315
EXPORT_SYMBOL_GPL(tap_del_queues);
A
Arnd Bergmann 已提交
316

317
rx_handler_result_t tap_handle_frame(struct sk_buff **pskb)
A
Arnd Bergmann 已提交
318
{
319 320
	struct sk_buff *skb = *pskb;
	struct net_device *dev = skb->dev;
321
	struct tap_dev *tap;
322
	struct tap_queue *q;
323 324
	netdev_features_t features = TAP_FEATURES;

325 326
	tap = tap_dev_get_rcu(dev);
	if (!tap)
327 328
		return RX_HANDLER_PASS;

329
	q = tap_get_queue(tap, skb);
A
Arnd Bergmann 已提交
330
	if (!q)
331
		return RX_HANDLER_PASS;
H
Herbert Xu 已提交
332

J
Jason Wang 已提交
333
	if (__skb_array_full(&q->skb_array))
H
Herbert Xu 已提交
334
		goto drop;
A
Arnd Bergmann 已提交
335

336 337
	skb_push(skb, ETH_HLEN);

338
	/* Apply the forward feature mask so that we perform segmentation
339 340
	 * according to users wishes.  This only works if VNET_HDR is
	 * enabled.
341
	 */
342
	if (q->flags & IFF_VNET_HDR)
343
		features |= tap->tap_features;
344
	if (netif_needs_gso(skb, features)) {
345 346 347 348 349 350
		struct sk_buff *segs = __skb_gso_segment(skb, features, false);

		if (IS_ERR(segs))
			goto drop;

		if (!segs) {
J
Jason Wang 已提交
351 352
			if (skb_array_produce(&q->skb_array, skb))
				goto drop;
353 354 355
			goto wake_up;
		}

356
		consume_skb(skb);
357 358 359 360
		while (segs) {
			struct sk_buff *nskb = segs->next;

			segs->next = NULL;
J
Jason Wang 已提交
361 362 363 364 365
			if (skb_array_produce(&q->skb_array, segs)) {
				kfree_skb(segs);
				kfree_skb_list(nskb);
				break;
			}
366 367 368
			segs = nskb;
		}
	} else {
369 370 371
		/* If we receive a partial checksum and the tap side
		 * doesn't support checksum offload, compute the checksum.
		 * Note: it doesn't matter which checksum feature to
S
Sainath Grandhi 已提交
372
		 *	  check, we either support them all or none.
373 374
		 */
		if (skb->ip_summed == CHECKSUM_PARTIAL &&
375
		    !(features & NETIF_F_CSUM_MASK) &&
376 377
		    skb_checksum_help(skb))
			goto drop;
J
Jason Wang 已提交
378 379
		if (skb_array_produce(&q->skb_array, skb))
			goto drop;
380 381 382
	}

wake_up:
E
Eric Dumazet 已提交
383
	wake_up_interruptible_poll(sk_sleep(&q->sk), POLLIN | POLLRDNORM | POLLRDBAND);
384
	return RX_HANDLER_CONSUMED;
H
Herbert Xu 已提交
385 386

drop:
387
	/* Count errors/drops only here, thus don't care about args. */
388 389
	if (tap->count_rx_dropped)
		tap->count_rx_dropped(tap);
H
Herbert Xu 已提交
390
	kfree_skb(skb);
391
	return RX_HANDLER_CONSUMED;
A
Arnd Bergmann 已提交
392
}
393
EXPORT_SYMBOL_GPL(tap_handle_frame);
A
Arnd Bergmann 已提交
394

395 396 397 398 399 400 401 402 403 404 405 406 407
static struct major_info *tap_get_major(int major)
{
	struct major_info *tap_major;

	list_for_each_entry_rcu(tap_major, &major_list, next) {
		if (tap_major->major == major)
			return tap_major;
	}

	return NULL;
}

int tap_get_minor(dev_t major, struct tap_dev *tap)
408 409
{
	int retval = -ENOMEM;
410 411 412 413 414 415 416 417
	struct major_info *tap_major;

	rcu_read_lock();
	tap_major = tap_get_major(MAJOR(major));
	if (!tap_major) {
		retval = -EINVAL;
		goto unlock;
	}
418

419 420
	mutex_lock(&tap_major->minor_lock);
	retval = idr_alloc(&tap_major->minor_idr, tap, 1, TAP_NUM_DEVS, GFP_KERNEL);
T
Tejun Heo 已提交
421
	if (retval >= 0) {
422
		tap->minor = retval;
T
Tejun Heo 已提交
423
	} else if (retval == -ENOSPC) {
424
		netdev_err(tap->dev, "Too many tap devices\n");
425 426
		retval = -EINVAL;
	}
427 428 429 430
	mutex_unlock(&tap_major->minor_lock);

unlock:
	rcu_read_unlock();
T
Tejun Heo 已提交
431
	return retval < 0 ? retval : 0;
432
}
433
EXPORT_SYMBOL_GPL(tap_get_minor);
434

435
void tap_free_minor(dev_t major, struct tap_dev *tap)
436
{
437 438 439 440 441 442 443 444 445
	struct major_info *tap_major;

	rcu_read_lock();
	tap_major = tap_get_major(MAJOR(major));
	if (!tap_major) {
		goto unlock;
	}

	mutex_lock(&tap_major->minor_lock);
446
	if (tap->minor) {
447
		idr_remove(&tap_major->minor_idr, tap->minor);
448
		tap->minor = 0;
449
	}
450 451 452 453
	mutex_unlock(&tap_major->minor_lock);

unlock:
	rcu_read_unlock();
454
}
455
EXPORT_SYMBOL_GPL(tap_free_minor);
456

457
static struct tap_dev *dev_get_by_tap_file(int major, int minor)
458 459
{
	struct net_device *dev = NULL;
460
	struct tap_dev *tap;
461
	struct major_info *tap_major;
462

463 464 465 466 467 468 469 470 471
	rcu_read_lock();
	tap_major = tap_get_major(major);
	if (!tap_major) {
		tap = NULL;
		goto unlock;
	}

	mutex_lock(&tap_major->minor_lock);
	tap = idr_find(&tap_major->minor_idr, minor);
472 473
	if (tap) {
		dev = tap->dev;
474 475
		dev_hold(dev);
	}
476 477 478 479
	mutex_unlock(&tap_major->minor_lock);

unlock:
	rcu_read_unlock();
480
	return tap;
481 482
}

483
static void tap_sock_write_space(struct sock *sk)
A
Arnd Bergmann 已提交
484
{
485 486
	wait_queue_head_t *wqueue;

A
Arnd Bergmann 已提交
487
	if (!sock_writeable(sk) ||
488
	    !test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags))
A
Arnd Bergmann 已提交
489 490
		return;

491 492 493
	wqueue = sk_sleep(sk);
	if (wqueue && waitqueue_active(wqueue))
		wake_up_interruptible_poll(wqueue, POLLOUT | POLLWRNORM | POLLWRBAND);
A
Arnd Bergmann 已提交
494 495
}

496
static void tap_sock_destruct(struct sock *sk)
497
{
498
	struct tap_queue *q = container_of(sk, struct tap_queue, sk);
J
Jason Wang 已提交
499

500
	skb_array_cleanup(&q->skb_array);
501 502
}

503
static int tap_open(struct inode *inode, struct file *file)
A
Arnd Bergmann 已提交
504 505
{
	struct net *net = current->nsproxy->net_ns;
506
	struct tap_dev *tap;
507
	struct tap_queue *q;
508
	int err = -ENODEV;
A
Arnd Bergmann 已提交
509

510
	rtnl_lock();
511
	tap = dev_get_by_tap_file(imajor(inode), iminor(inode));
512
	if (!tap)
J
Jason Wang 已提交
513
		goto err;
A
Arnd Bergmann 已提交
514 515

	err = -ENOMEM;
516 517
	q = (struct tap_queue *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL,
					     &tap_proto, 0);
A
Arnd Bergmann 已提交
518
	if (!q)
J
Jason Wang 已提交
519
		goto err;
A
Arnd Bergmann 已提交
520

J
Jason Wang 已提交
521
	RCU_INIT_POINTER(q->sock.wq, &q->wq);
522
	init_waitqueue_head(&q->wq.wait);
A
Arnd Bergmann 已提交
523 524
	q->sock.type = SOCK_RAW;
	q->sock.state = SS_CONNECTED;
A
Arnd Bergmann 已提交
525
	q->sock.file = file;
526
	q->sock.ops = &tap_socket_ops;
A
Arnd Bergmann 已提交
527
	sock_init_data(&q->sock, &q->sk);
528 529
	q->sk.sk_write_space = tap_sock_write_space;
	q->sk.sk_destruct = tap_sock_destruct;
530
	q->flags = IFF_VNET_HDR | IFF_NO_PI | IFF_TAP;
531
	q->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
A
Arnd Bergmann 已提交
532

533
	/*
534
	 * so far only KVM virtio_net uses tap, enable zero copy between
535
	 * guest kernel and host kernel when lower device supports zerocopy
536 537 538
	 *
	 * The macvlan supports zerocopy iff the lower device supports zero
	 * copy so we don't have to look at the lower device directly.
539
	 */
540
	if ((tap->dev->features & NETIF_F_HIGHDMA) && (tap->dev->features & NETIF_F_SG))
541
		sock_set_flag(&q->sk, SOCK_ZEROCOPY);
542

J
Jason Wang 已提交
543
	err = -ENOMEM;
544
	if (skb_array_init(&q->skb_array, tap->dev->tx_queue_len, GFP_KERNEL))
J
Jason Wang 已提交
545 546
		goto err_array;

547
	err = tap_set_queue(tap, file, q);
A
Arnd Bergmann 已提交
548
	if (err)
J
Jason Wang 已提交
549
		goto err_queue;
A
Arnd Bergmann 已提交
550

551
	dev_put(tap->dev);
J
Jason Wang 已提交
552 553 554 555 556 557 558 559 560

	rtnl_unlock();
	return err;

err_queue:
	skb_array_cleanup(&q->skb_array);
err_array:
	sock_put(&q->sk);
err:
561 562
	if (tap)
		dev_put(tap->dev);
A
Arnd Bergmann 已提交
563

564
	rtnl_unlock();
A
Arnd Bergmann 已提交
565 566 567
	return err;
}

568
static int tap_release(struct inode *inode, struct file *file)
A
Arnd Bergmann 已提交
569
{
570 571
	struct tap_queue *q = file->private_data;
	tap_put_queue(q);
A
Arnd Bergmann 已提交
572 573 574
	return 0;
}

575
static unsigned int tap_poll(struct file *file, poll_table *wait)
A
Arnd Bergmann 已提交
576
{
577
	struct tap_queue *q = file->private_data;
A
Arnd Bergmann 已提交
578 579 580 581 582 583
	unsigned int mask = POLLERR;

	if (!q)
		goto out;

	mask = 0;
584
	poll_wait(file, &q->wq.wait, wait);
A
Arnd Bergmann 已提交
585

J
Jason Wang 已提交
586
	if (!skb_array_empty(&q->skb_array))
A
Arnd Bergmann 已提交
587 588 589
		mask |= POLLIN | POLLRDNORM;

	if (sock_writeable(&q->sk) ||
590
	    (!test_and_set_bit(SOCKWQ_ASYNC_NOSPACE, &q->sock.flags) &&
A
Arnd Bergmann 已提交
591 592 593 594 595 596 597
	     sock_writeable(&q->sk)))
		mask |= POLLOUT | POLLWRNORM;

out:
	return mask;
}

598 599
static inline struct sk_buff *tap_alloc_skb(struct sock *sk, size_t prepad,
					    size_t len, size_t linear,
600 601 602 603 604 605 606 607 608
						int noblock, int *err)
{
	struct sk_buff *skb;

	/* Under a page?  Don't bother with paged skb. */
	if (prepad + len < PAGE_SIZE || !linear)
		linear = len;

	skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
609
				   err, 0);
610 611 612 613 614 615 616 617 618 619 620
	if (!skb)
		return NULL;

	skb_reserve(skb, prepad);
	skb_put(skb, linear);
	skb->data_len = len - linear;
	skb->len += len - linear;

	return skb;
}

621
/* Neighbour code has some assumptions on HH_DATA_MOD alignment */
622
#define TAP_RESERVE HH_DATA_OFF(ETH_HLEN)
623

A
Arnd Bergmann 已提交
624
/* Get packet from user space buffer */
625 626
static ssize_t tap_get_user(struct tap_queue *q, struct msghdr *m,
			    struct iov_iter *from, int noblock)
A
Arnd Bergmann 已提交
627
{
628
	int good_linear = SKB_MAX_HEAD(TAP_RESERVE);
A
Arnd Bergmann 已提交
629
	struct sk_buff *skb;
630
	struct tap_dev *tap;
631
	unsigned long total_len = iov_iter_count(from);
632
	unsigned long len = total_len;
A
Arnd Bergmann 已提交
633
	int err;
634 635
	struct virtio_net_hdr vnet_hdr = { 0 };
	int vnet_hdr_len = 0;
636
	int copylen = 0;
637
	int depth;
638
	bool zerocopy = false;
639
	size_t linear;
640 641

	if (q->flags & IFF_VNET_HDR) {
642
		vnet_hdr_len = READ_ONCE(q->vnet_hdr_sz);
643 644

		err = -EINVAL;
645
		if (len < vnet_hdr_len)
646
			goto err;
647
		len -= vnet_hdr_len;
648

649
		err = -EFAULT;
650
		if (!copy_from_iter_full(&vnet_hdr, sizeof(vnet_hdr), from))
651
			goto err;
652
		iov_iter_advance(from, vnet_hdr_len - sizeof(vnet_hdr));
653
		if ((vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
654 655 656 657 658 659
		     tap16_to_cpu(q, vnet_hdr.csum_start) +
		     tap16_to_cpu(q, vnet_hdr.csum_offset) + 2 >
			     tap16_to_cpu(q, vnet_hdr.hdr_len))
			vnet_hdr.hdr_len = cpu_to_tap16(q,
				 tap16_to_cpu(q, vnet_hdr.csum_start) +
				 tap16_to_cpu(q, vnet_hdr.csum_offset) + 2);
660
		err = -EINVAL;
661
		if (tap16_to_cpu(q, vnet_hdr.hdr_len) > len)
662 663
			goto err;
	}
A
Arnd Bergmann 已提交
664

665
	err = -EINVAL;
A
Arnd Bergmann 已提交
666
	if (unlikely(len < ETH_HLEN))
667
		goto err;
A
Arnd Bergmann 已提交
668

669
	if (m && m->msg_control && sock_flag(&q->sk, SOCK_ZEROCOPY)) {
670 671
		struct iov_iter i;

M
Michael S. Tsirkin 已提交
672
		copylen = vnet_hdr.hdr_len ?
673
			tap16_to_cpu(q, vnet_hdr.hdr_len) : GOODCOPY_LEN;
674 675
		if (copylen > good_linear)
			copylen = good_linear;
676 677
		else if (copylen < ETH_HLEN)
			copylen = ETH_HLEN;
678
		linear = copylen;
679 680 681
		i = *from;
		iov_iter_advance(&i, copylen);
		if (iov_iter_npages(&i, INT_MAX) <= MAX_SKB_FRAGS)
682 683 684 685
			zerocopy = true;
	}

	if (!zerocopy) {
686
		copylen = len;
687
		linear = tap16_to_cpu(q, vnet_hdr.hdr_len);
688
		if (linear > good_linear)
689
			linear = good_linear;
690 691
		else if (linear < ETH_HLEN)
			linear = ETH_HLEN;
692
	}
693

694 695
	skb = tap_alloc_skb(&q->sk, TAP_RESERVE, copylen,
			    linear, noblock, &err);
696 697
	if (!skb)
		goto err;
A
Arnd Bergmann 已提交
698

699
	if (zerocopy)
700
		err = zerocopy_sg_from_iter(skb, from);
701
	else
702
		err = skb_copy_datagram_from_iter(skb, 0, from, len);
703

704
	if (err)
705
		goto err_kfree;
A
Arnd Bergmann 已提交
706 707

	skb_set_network_header(skb, ETH_HLEN);
708 709 710 711
	skb_reset_mac_header(skb);
	skb->protocol = eth_hdr(skb)->h_proto;

	if (vnet_hdr_len) {
712
		err = virtio_net_hdr_to_skb(skb, &vnet_hdr,
713
					    tap_is_little_endian(q));
714 715 716 717
		if (err)
			goto err_kfree;
	}

718
	skb_probe_transport_header(skb, ETH_HLEN);
719

720 721 722 723 724 725
	/* Move network header to the right position for VLAN tagged packets */
	if ((skb->protocol == htons(ETH_P_8021Q) ||
	     skb->protocol == htons(ETH_P_8021AD)) &&
	    __vlan_get_protocol(skb, skb->protocol, &depth) != 0)
		skb_set_network_header(skb, depth);

726
	rcu_read_lock();
727
	tap = rcu_dereference(q->tap);
728
	/* copy skb_ubuf_info for callback when skb has no error */
729
	if (zerocopy) {
730
		skb_shinfo(skb)->destructor_arg = m->msg_control;
731
		skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY;
732
		skb_shinfo(skb)->tx_flags |= SKBTX_SHARED_FRAG;
733 734 735
	} else if (m && m->msg_control) {
		struct ubuf_info *uarg = m->msg_control;
		uarg->callback(uarg, false);
736
	}
737

738 739
	if (tap) {
		skb->dev = tap->dev;
740
		dev_queue_xmit(skb);
E
Eric Dumazet 已提交
741
	} else {
742
		kfree_skb(skb);
E
Eric Dumazet 已提交
743
	}
744
	rcu_read_unlock();
A
Arnd Bergmann 已提交
745

746
	return total_len;
747

748 749 750
err_kfree:
	kfree_skb(skb);

751
err:
752
	rcu_read_lock();
753 754 755
	tap = rcu_dereference(q->tap);
	if (tap && tap->count_tx_dropped)
		tap->count_tx_dropped(tap);
756
	rcu_read_unlock();
757 758

	return err;
A
Arnd Bergmann 已提交
759 760
}

761
static ssize_t tap_write_iter(struct kiocb *iocb, struct iov_iter *from)
A
Arnd Bergmann 已提交
762 763
{
	struct file *file = iocb->ki_filp;
764
	struct tap_queue *q = file->private_data;
A
Arnd Bergmann 已提交
765

766
	return tap_get_user(q, NULL, from, file->f_flags & O_NONBLOCK);
A
Arnd Bergmann 已提交
767 768 769
}

/* Put packet to the user space buffer */
770 771 772
static ssize_t tap_put_user(struct tap_queue *q,
			    const struct sk_buff *skb,
			    struct iov_iter *iter)
A
Arnd Bergmann 已提交
773 774
{
	int ret;
775
	int vnet_hdr_len = 0;
776
	int vlan_offset = 0;
H
Herbert Xu 已提交
777
	int total;
778 779 780

	if (q->flags & IFF_VNET_HDR) {
		struct virtio_net_hdr vnet_hdr;
781
		vnet_hdr_len = READ_ONCE(q->vnet_hdr_sz);
H
Herbert Xu 已提交
782
		if (iov_iter_count(iter) < vnet_hdr_len)
783 784
			return -EINVAL;

785
		if (virtio_net_hdr_from_skb(skb, &vnet_hdr,
786
					    tap_is_little_endian(q), true))
787
			BUG();
788

H
Herbert Xu 已提交
789 790
		if (copy_to_iter(&vnet_hdr, sizeof(vnet_hdr), iter) !=
		    sizeof(vnet_hdr))
791
			return -EFAULT;
792 793

		iov_iter_advance(iter, vnet_hdr_len - sizeof(vnet_hdr));
794
	}
H
Herbert Xu 已提交
795
	total = vnet_hdr_len;
J
Jason Wang 已提交
796
	total += skb->len;
797

798
	if (skb_vlan_tag_present(skb)) {
799 800 801 802
		struct {
			__be16 h_vlan_proto;
			__be16 h_vlan_TCI;
		} veth;
803
		veth.h_vlan_proto = skb->vlan_proto;
804
		veth.h_vlan_TCI = htons(skb_vlan_tag_get(skb));
805 806

		vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto);
J
Jason Wang 已提交
807
		total += VLAN_HLEN;
808

H
Herbert Xu 已提交
809 810
		ret = skb_copy_datagram_iter(skb, 0, iter, vlan_offset);
		if (ret || !iov_iter_count(iter))
811 812
			goto done;

H
Herbert Xu 已提交
813 814
		ret = copy_to_iter(&veth, sizeof(veth), iter);
		if (ret != sizeof(veth) || !iov_iter_count(iter))
815 816
			goto done;
	}
A
Arnd Bergmann 已提交
817

H
Herbert Xu 已提交
818 819
	ret = skb_copy_datagram_iter(skb, vlan_offset, iter,
				     skb->len - vlan_offset);
A
Arnd Bergmann 已提交
820

821
done:
J
Jason Wang 已提交
822
	return ret ? ret : total;
A
Arnd Bergmann 已提交
823 824
}

825 826
static ssize_t tap_do_read(struct tap_queue *q,
			   struct iov_iter *to,
827
			   int noblock, struct sk_buff *skb)
A
Arnd Bergmann 已提交
828
{
829
	DEFINE_WAIT(wait);
A
Arnd Bergmann 已提交
830
	ssize_t ret = 0;
A
Arnd Bergmann 已提交
831

A
Al Viro 已提交
832 833 834
	if (!iov_iter_count(to))
		return 0;

835 836 837
	if (skb)
		goto put;

A
Al Viro 已提交
838
	while (1) {
839 840 841
		if (!noblock)
			prepare_to_wait(sk_sleep(&q->sk), &wait,
					TASK_INTERRUPTIBLE);
A
Arnd Bergmann 已提交
842 843

		/* Read frames from the queue */
J
Jason Wang 已提交
844
		skb = skb_array_consume(&q->skb_array);
A
Al Viro 已提交
845 846 847 848 849
		if (skb)
			break;
		if (noblock) {
			ret = -EAGAIN;
			break;
A
Arnd Bergmann 已提交
850
		}
A
Al Viro 已提交
851 852 853 854 855 856 857
		if (signal_pending(current)) {
			ret = -ERESTARTSYS;
			break;
		}
		/* Nothing to read, let's sleep */
		schedule();
	}
858 859 860
	if (!noblock)
		finish_wait(sk_sleep(&q->sk), &wait);

861
put:
A
Al Viro 已提交
862
	if (skb) {
863
		ret = tap_put_user(q, skb, to);
864 865 866 867
		if (unlikely(ret < 0))
			kfree_skb(skb);
		else
			consume_skb(skb);
A
Arnd Bergmann 已提交
868
	}
A
Arnd Bergmann 已提交
869 870 871
	return ret;
}

872
static ssize_t tap_read_iter(struct kiocb *iocb, struct iov_iter *to)
A
Arnd Bergmann 已提交
873 874
{
	struct file *file = iocb->ki_filp;
875
	struct tap_queue *q = file->private_data;
A
Al Viro 已提交
876
	ssize_t len = iov_iter_count(to), ret;
A
Arnd Bergmann 已提交
877

878
	ret = tap_do_read(q, to, file->f_flags & O_NONBLOCK, NULL);
J
Jason Wang 已提交
879
	ret = min_t(ssize_t, ret, len);
880 881
	if (ret > 0)
		iocb->ki_pos = ret;
A
Arnd Bergmann 已提交
882 883 884
	return ret;
}

885
static struct tap_dev *tap_get_tap_dev(struct tap_queue *q)
886
{
887
	struct tap_dev *tap;
888

889
	ASSERT_RTNL();
890 891 892
	tap = rtnl_dereference(q->tap);
	if (tap)
		dev_hold(tap->dev);
893

894
	return tap;
895 896
}

897
static void tap_put_tap_dev(struct tap_dev *tap)
898
{
899
	dev_put(tap->dev);
900 901
}

902
static int tap_ioctl_set_queue(struct file *file, unsigned int flags)
J
Jason Wang 已提交
903
{
904
	struct tap_queue *q = file->private_data;
905
	struct tap_dev *tap;
J
Jason Wang 已提交
906 907
	int ret;

908 909
	tap = tap_get_tap_dev(q);
	if (!tap)
J
Jason Wang 已提交
910 911 912
		return -EINVAL;

	if (flags & IFF_ATTACH_QUEUE)
913
		ret = tap_enable_queue(tap, file, q);
J
Jason Wang 已提交
914
	else if (flags & IFF_DETACH_QUEUE)
915
		ret = tap_disable_queue(q);
916 917
	else
		ret = -EINVAL;
J
Jason Wang 已提交
918

919
	tap_put_tap_dev(tap);
J
Jason Wang 已提交
920 921 922
	return ret;
}

923
static int set_offload(struct tap_queue *q, unsigned long arg)
924
{
925
	struct tap_dev *tap;
926 927 928
	netdev_features_t features;
	netdev_features_t feature_mask = 0;

929 930
	tap = rtnl_dereference(q->tap);
	if (!tap)
931 932
		return -ENOLINK;

933
	features = tap->dev->features;
934 935 936 937 938 939 940 941 942 943 944 945

	if (arg & TUN_F_CSUM) {
		feature_mask = NETIF_F_HW_CSUM;

		if (arg & (TUN_F_TSO4 | TUN_F_TSO6)) {
			if (arg & TUN_F_TSO_ECN)
				feature_mask |= NETIF_F_TSO_ECN;
			if (arg & TUN_F_TSO4)
				feature_mask |= NETIF_F_TSO;
			if (arg & TUN_F_TSO6)
				feature_mask |= NETIF_F_TSO6;
		}
946 947 948

		if (arg & TUN_F_UFO)
			feature_mask |= NETIF_F_UFO;
949 950 951 952 953 954
	}

	/* tun/tap driver inverts the usage for TSO offloads, where
	 * setting the TSO bit means that the userspace wants to
	 * accept TSO frames and turning it off means that user space
	 * does not support TSO.
955
	 * For tap, we have to invert it to mean the same thing.
956 957 958
	 * When user space turns off TSO, we turn off GSO/LRO so that
	 * user-space will not receive TSO frames.
	 */
959
	if (feature_mask & (NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_UFO))
960 961 962 963 964 965 966
		features |= RX_OFFLOADS;
	else
		features &= ~RX_OFFLOADS;

	/* tap_features are the same as features on tun/tap and
	 * reflect user expectations.
	 */
967 968 969
	tap->tap_features = feature_mask;
	if (tap->update_features)
		tap->update_features(tap, features);
970 971 972 973

	return 0;
}

A
Arnd Bergmann 已提交
974 975 976
/*
 * provide compatibility with generic tun/tap interface
 */
977 978
static long tap_ioctl(struct file *file, unsigned int cmd,
		      unsigned long arg)
A
Arnd Bergmann 已提交
979
{
980
	struct tap_queue *q = file->private_data;
981
	struct tap_dev *tap;
A
Arnd Bergmann 已提交
982 983 984
	void __user *argp = (void __user *)arg;
	struct ifreq __user *ifr = argp;
	unsigned int __user *up = argp;
985
	unsigned short u;
986
	int __user *sp = argp;
987
	struct sockaddr sa;
988
	int s;
989
	int ret;
A
Arnd Bergmann 已提交
990 991 992 993 994 995

	switch (cmd) {
	case TUNSETIFF:
		/* ignore the name, just look at flags */
		if (get_user(u, &ifr->ifr_flags))
			return -EFAULT;
996 997

		ret = 0;
998
		if ((u & ~TAP_IFFEATURES) != (IFF_NO_PI | IFF_TAP))
999 1000
			ret = -EINVAL;
		else
1001
			q->flags = (q->flags & ~TAP_IFFEATURES) | u;
1002 1003

		return ret;
A
Arnd Bergmann 已提交
1004 1005

	case TUNGETIFF:
1006
		rtnl_lock();
1007 1008
		tap = tap_get_tap_dev(q);
		if (!tap) {
1009
			rtnl_unlock();
A
Arnd Bergmann 已提交
1010
			return -ENOLINK;
1011
		}
A
Arnd Bergmann 已提交
1012

1013
		ret = 0;
1014
		u = q->flags;
1015
		if (copy_to_user(&ifr->ifr_name, tap->dev->name, IFNAMSIZ) ||
1016
		    put_user(u, &ifr->ifr_flags))
1017
			ret = -EFAULT;
1018
		tap_put_tap_dev(tap);
1019
		rtnl_unlock();
1020
		return ret;
A
Arnd Bergmann 已提交
1021

J
Jason Wang 已提交
1022 1023 1024
	case TUNSETQUEUE:
		if (get_user(u, &ifr->ifr_flags))
			return -EFAULT;
1025
		rtnl_lock();
1026
		ret = tap_ioctl_set_queue(file, u);
1027
		rtnl_unlock();
1028
		return ret;
J
Jason Wang 已提交
1029

A
Arnd Bergmann 已提交
1030
	case TUNGETFEATURES:
1031
		if (put_user(IFF_TAP | IFF_NO_PI | TAP_IFFEATURES, up))
A
Arnd Bergmann 已提交
1032 1033 1034 1035
			return -EFAULT;
		return 0;

	case TUNSETSNDBUF:
1036
		if (get_user(s, sp))
A
Arnd Bergmann 已提交
1037 1038
			return -EFAULT;

1039
		q->sk.sk_sndbuf = s;
A
Arnd Bergmann 已提交
1040 1041
		return 0;

1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056
	case TUNGETVNETHDRSZ:
		s = q->vnet_hdr_sz;
		if (put_user(s, sp))
			return -EFAULT;
		return 0;

	case TUNSETVNETHDRSZ:
		if (get_user(s, sp))
			return -EFAULT;
		if (s < (int)sizeof(struct virtio_net_hdr))
			return -EINVAL;

		q->vnet_hdr_sz = s;
		return 0;

1057
	case TUNGETVNETLE:
1058
		s = !!(q->flags & TAP_VNET_LE);
1059 1060 1061 1062 1063 1064 1065 1066
		if (put_user(s, sp))
			return -EFAULT;
		return 0;

	case TUNSETVNETLE:
		if (get_user(s, sp))
			return -EFAULT;
		if (s)
1067
			q->flags |= TAP_VNET_LE;
1068
		else
1069
			q->flags &= ~TAP_VNET_LE;
1070 1071
		return 0;

1072
	case TUNGETVNETBE:
1073
		return tap_get_vnet_be(q, sp);
1074 1075

	case TUNSETVNETBE:
1076
		return tap_set_vnet_be(q, sp);
1077

A
Arnd Bergmann 已提交
1078 1079 1080
	case TUNSETOFFLOAD:
		/* let the user check for future flags */
		if (arg & ~(TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6 |
1081
			    TUN_F_TSO_ECN | TUN_F_UFO))
A
Arnd Bergmann 已提交
1082 1083
			return -EINVAL;

1084 1085 1086 1087
		rtnl_lock();
		ret = set_offload(q, arg);
		rtnl_unlock();
		return ret;
A
Arnd Bergmann 已提交
1088

1089 1090
	case SIOCGIFHWADDR:
		rtnl_lock();
1091 1092
		tap = tap_get_tap_dev(q);
		if (!tap) {
1093 1094 1095 1096
			rtnl_unlock();
			return -ENOLINK;
		}
		ret = 0;
1097 1098 1099
		u = tap->dev->type;
		if (copy_to_user(&ifr->ifr_name, tap->dev->name, IFNAMSIZ) ||
		    copy_to_user(&ifr->ifr_hwaddr.sa_data, tap->dev->dev_addr, ETH_ALEN) ||
1100 1101
		    put_user(u, &ifr->ifr_hwaddr.sa_family))
			ret = -EFAULT;
1102
		tap_put_tap_dev(tap);
1103 1104 1105 1106
		rtnl_unlock();
		return ret;

	case SIOCSIFHWADDR:
1107 1108
		if (copy_from_user(&sa, &ifr->ifr_hwaddr, sizeof(sa)))
			return -EFAULT;
1109
		rtnl_lock();
1110 1111
		tap = tap_get_tap_dev(q);
		if (!tap) {
1112 1113 1114
			rtnl_unlock();
			return -ENOLINK;
		}
1115 1116
		ret = dev_set_mac_address(tap->dev, &sa);
		tap_put_tap_dev(tap);
1117 1118 1119
		rtnl_unlock();
		return ret;

A
Arnd Bergmann 已提交
1120 1121 1122 1123 1124 1125
	default:
		return -EINVAL;
	}
}

#ifdef CONFIG_COMPAT
1126 1127
static long tap_compat_ioctl(struct file *file, unsigned int cmd,
			     unsigned long arg)
A
Arnd Bergmann 已提交
1128
{
1129
	return tap_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
A
Arnd Bergmann 已提交
1130 1131 1132
}
#endif

1133
const struct file_operations tap_fops = {
A
Arnd Bergmann 已提交
1134
	.owner		= THIS_MODULE,
1135 1136 1137 1138 1139
	.open		= tap_open,
	.release	= tap_release,
	.read_iter	= tap_read_iter,
	.write_iter	= tap_write_iter,
	.poll		= tap_poll,
A
Arnd Bergmann 已提交
1140
	.llseek		= no_llseek,
1141
	.unlocked_ioctl	= tap_ioctl,
A
Arnd Bergmann 已提交
1142
#ifdef CONFIG_COMPAT
1143
	.compat_ioctl	= tap_compat_ioctl,
A
Arnd Bergmann 已提交
1144 1145 1146
#endif
};

1147 1148
static int tap_sendmsg(struct socket *sock, struct msghdr *m,
		       size_t total_len)
A
Arnd Bergmann 已提交
1149
{
1150 1151
	struct tap_queue *q = container_of(sock, struct tap_queue, sock);
	return tap_get_user(q, m, &m->msg_iter, m->msg_flags & MSG_DONTWAIT);
A
Arnd Bergmann 已提交
1152 1153
}

1154 1155
static int tap_recvmsg(struct socket *sock, struct msghdr *m,
		       size_t total_len, int flags)
A
Arnd Bergmann 已提交
1156
{
1157
	struct tap_queue *q = container_of(sock, struct tap_queue, sock);
A
Arnd Bergmann 已提交
1158 1159 1160
	int ret;
	if (flags & ~(MSG_DONTWAIT|MSG_TRUNC))
		return -EINVAL;
1161 1162
	ret = tap_do_read(q, &m->msg_iter, flags & MSG_DONTWAIT,
			  m->msg_control);
1163 1164 1165 1166
	if (ret > total_len) {
		m->msg_flags |= MSG_TRUNC;
		ret = flags & MSG_TRUNC ? ret : total_len;
	}
A
Arnd Bergmann 已提交
1167 1168 1169
	return ret;
}

1170
static int tap_peek_len(struct socket *sock)
J
Jason Wang 已提交
1171
{
1172
	struct tap_queue *q = container_of(sock, struct tap_queue,
J
Jason Wang 已提交
1173 1174 1175 1176
					       sock);
	return skb_array_peek_len(&q->skb_array);
}

A
Arnd Bergmann 已提交
1177
/* Ops structure to mimic raw sockets with tun */
1178 1179 1180 1181
static const struct proto_ops tap_socket_ops = {
	.sendmsg = tap_sendmsg,
	.recvmsg = tap_recvmsg,
	.peek_len = tap_peek_len,
A
Arnd Bergmann 已提交
1182 1183 1184 1185 1186 1187
};

/* Get an underlying socket object from tun file.  Returns error unless file is
 * attached to a device.  The returned object works like a packet socket, it
 * can be used for sock_sendmsg/sock_recvmsg.  The caller is responsible for
 * holding a reference to the file for as long as the socket is in use. */
1188
struct socket *tap_get_socket(struct file *file)
A
Arnd Bergmann 已提交
1189
{
1190 1191
	struct tap_queue *q;
	if (file->f_op != &tap_fops)
A
Arnd Bergmann 已提交
1192 1193 1194 1195 1196 1197
		return ERR_PTR(-EINVAL);
	q = file->private_data;
	if (!q)
		return ERR_PTR(-EBADFD);
	return &q->sock;
}
1198
EXPORT_SYMBOL_GPL(tap_get_socket);
A
Arnd Bergmann 已提交
1199

J
Jason Wang 已提交
1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212
struct skb_array *tap_get_skb_array(struct file *file)
{
	struct tap_queue *q;

	if (file->f_op != &tap_fops)
		return ERR_PTR(-EINVAL);
	q = file->private_data;
	if (!q)
		return ERR_PTR(-EBADFD);
	return &q->skb_array;
}
EXPORT_SYMBOL_GPL(tap_get_skb_array);

1213
int tap_queue_resize(struct tap_dev *tap)
J
Jason Wang 已提交
1214
{
1215
	struct net_device *dev = tap->dev;
1216
	struct tap_queue *q;
J
Jason Wang 已提交
1217
	struct skb_array **arrays;
1218
	int n = tap->numqueues;
J
Jason Wang 已提交
1219 1220 1221 1222 1223 1224
	int ret, i = 0;

	arrays = kmalloc(sizeof *arrays * n, GFP_KERNEL);
	if (!arrays)
		return -ENOMEM;

1225
	list_for_each_entry(q, &tap->queue_list, next)
J
Jason Wang 已提交
1226 1227 1228 1229 1230 1231 1232 1233
		arrays[i++] = &q->skb_array;

	ret = skb_array_resize_multiple(arrays, n,
					dev->tx_queue_len, GFP_KERNEL);

	kfree(arrays);
	return ret;
}
1234
EXPORT_SYMBOL_GPL(tap_queue_resize);
1235

1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254
static int tap_list_add(dev_t major, const char *device_name)
{
	struct major_info *tap_major;

	tap_major = kzalloc(sizeof(*tap_major), GFP_ATOMIC);
	if (!tap_major)
		return -ENOMEM;

	tap_major->major = MAJOR(major);

	idr_init(&tap_major->minor_idr);
	mutex_init(&tap_major->minor_lock);

	tap_major->device_name = device_name;

	list_add_tail_rcu(&tap_major->next, &major_list);
	return 0;
}

1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268
int tap_create_cdev(struct cdev *tap_cdev,
		    dev_t *tap_major, const char *device_name)
{
	int err;

	err = alloc_chrdev_region(tap_major, 0, TAP_NUM_DEVS, device_name);
	if (err)
		goto out1;

	cdev_init(tap_cdev, &tap_fops);
	err = cdev_add(tap_cdev, *tap_major, TAP_NUM_DEVS);
	if (err)
		goto out2;

1269 1270 1271
	err =  tap_list_add(*tap_major, device_name);
	if (err)
		goto out3;
1272 1273 1274

	return 0;

1275 1276
out3:
	cdev_del(tap_cdev);
1277 1278 1279 1280 1281
out2:
	unregister_chrdev_region(*tap_major, TAP_NUM_DEVS);
out1:
	return err;
}
1282
EXPORT_SYMBOL_GPL(tap_create_cdev);
1283 1284 1285

void tap_destroy_cdev(dev_t major, struct cdev *tap_cdev)
{
1286 1287
	struct major_info *tap_major, *tmp;

1288 1289
	cdev_del(tap_cdev);
	unregister_chrdev_region(major, TAP_NUM_DEVS);
1290 1291 1292 1293 1294 1295 1296
	list_for_each_entry_safe(tap_major, tmp, &major_list, next) {
		if (tap_major->major == MAJOR(major)) {
			idr_destroy(&tap_major->minor_idr);
			list_del_rcu(&tap_major->next);
			kfree_rcu(tap_major, rcu);
		}
	}
1297
}
1298 1299 1300 1301 1302
EXPORT_SYMBOL_GPL(tap_destroy_cdev);

MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>");
MODULE_AUTHOR("Sainath Grandhi <sainath.grandhi@intel.com>");
MODULE_LICENSE("GPL");