pandora: defconfig: update
[pandora-kernel.git] / drivers / net / tun.c
1 /*
2  *  TUN - Universal TUN/TAP device driver.
3  *  Copyright (C) 1999-2002 Maxim Krasnyansky <maxk@qualcomm.com>
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  *  GNU General Public License for more details.
14  *
15  *  $Id: tun.c,v 1.15 2002/03/01 02:44:24 maxk Exp $
16  */
17
18 /*
19  *  Changes:
20  *
21  *  Mike Kershaw <dragorn@kismetwireless.net> 2005/08/14
22  *    Add TUNSETLINK ioctl to set the link encapsulation
23  *
24  *  Mark Smith <markzzzsmith@yahoo.com.au>
25  *    Use random_ether_addr() for tap MAC address.
26  *
27  *  Harald Roelle <harald.roelle@ifi.lmu.de>  2004/04/20
28  *    Fixes in packet dropping, queue length setting and queue wakeup.
29  *    Increased default tx queue length.
30  *    Added ethtool API.
31  *    Minor cleanups
32  *
33  *  Daniel Podlejski <underley@underley.eu.org>
34  *    Modifications for 2.3.99-pre5 kernel.
35  */
36
37 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
38
39 #define DRV_NAME        "tun"
40 #define DRV_VERSION     "1.6"
41 #define DRV_DESCRIPTION "Universal TUN/TAP device driver"
42 #define DRV_COPYRIGHT   "(C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>"
43
44 #include <linux/module.h>
45 #include <linux/errno.h>
46 #include <linux/kernel.h>
47 #include <linux/major.h>
48 #include <linux/slab.h>
49 #include <linux/poll.h>
50 #include <linux/fcntl.h>
51 #include <linux/init.h>
52 #include <linux/skbuff.h>
53 #include <linux/netdevice.h>
54 #include <linux/etherdevice.h>
55 #include <linux/miscdevice.h>
56 #include <linux/ethtool.h>
57 #include <linux/rtnetlink.h>
58 #include <linux/compat.h>
59 #include <linux/if.h>
60 #include <linux/if_arp.h>
61 #include <linux/if_ether.h>
62 #include <linux/if_tun.h>
63 #include <linux/crc32.h>
64 #include <linux/nsproxy.h>
65 #include <linux/virtio_net.h>
66 #include <linux/rcupdate.h>
67 #include <net/ipv6.h>
68 #include <net/net_namespace.h>
69 #include <net/netns/generic.h>
70 #include <net/rtnetlink.h>
71 #include <net/sock.h>
72
73 #include <asm/system.h>
74 #include <asm/uaccess.h>
75
76 /* Uncomment to enable debugging */
77 /* #define TUN_DEBUG 1 */
78
79 #ifdef TUN_DEBUG
80 static int debug;
81
82 #define tun_debug(level, tun, fmt, args...)                     \
83 do {                                                            \
84         if (tun->debug)                                         \
85                 netdev_printk(level, tun->dev, fmt, ##args);    \
86 } while (0)
87 #define DBG1(level, fmt, args...)                               \
88 do {                                                            \
89         if (debug == 2)                                         \
90                 printk(level fmt, ##args);                      \
91 } while (0)
92 #else
93 #define tun_debug(level, tun, fmt, args...)                     \
94 do {                                                            \
95         if (0)                                                  \
96                 netdev_printk(level, tun->dev, fmt, ##args);    \
97 } while (0)
98 #define DBG1(level, fmt, args...)                               \
99 do {                                                            \
100         if (0)                                                  \
101                 printk(level fmt, ##args);                      \
102 } while (0)
103 #endif
104
105 #define FLT_EXACT_COUNT 8
106 struct tap_filter {
107         unsigned int    count;    /* Number of addrs. Zero means disabled */
108         u32             mask[2];  /* Mask of the hashed addrs */
109         unsigned char   addr[FLT_EXACT_COUNT][ETH_ALEN];
110 };
111
112 struct tun_file {
113         atomic_t count;
114         struct tun_struct *tun;
115         struct net *net;
116 };
117
118 struct tun_sock;
119
120 struct tun_struct {
121         struct tun_file         *tfile;
122         unsigned int            flags;
123         uid_t                   owner;
124         gid_t                   group;
125
126         struct net_device       *dev;
127         u32                     set_features;
128 #define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \
129                           NETIF_F_TSO6|NETIF_F_UFO)
130         struct fasync_struct    *fasync;
131
132         struct tap_filter       txflt;
133         struct socket           socket;
134         struct socket_wq        wq;
135
136         int                     vnet_hdr_sz;
137
138 #ifdef TUN_DEBUG
139         int debug;
140 #endif
141 };
142
143 struct tun_sock {
144         struct sock             sk;
145         struct tun_struct       *tun;
146 };
147
148 static inline struct tun_sock *tun_sk(struct sock *sk)
149 {
150         return container_of(sk, struct tun_sock, sk);
151 }
152
153 static int tun_attach(struct tun_struct *tun, struct file *file)
154 {
155         struct tun_file *tfile = file->private_data;
156         int err;
157
158         ASSERT_RTNL();
159
160         netif_tx_lock_bh(tun->dev);
161
162         err = -EINVAL;
163         if (tfile->tun)
164                 goto out;
165
166         err = -EBUSY;
167         if (tun->tfile)
168                 goto out;
169
170         err = 0;
171         tfile->tun = tun;
172         tun->tfile = tfile;
173         tun->socket.file = file;
174         netif_carrier_on(tun->dev);
175         dev_hold(tun->dev);
176         sock_hold(tun->socket.sk);
177         atomic_inc(&tfile->count);
178
179 out:
180         netif_tx_unlock_bh(tun->dev);
181         return err;
182 }
183
184 static void __tun_detach(struct tun_struct *tun)
185 {
186         /* Detach from net device */
187         netif_tx_lock_bh(tun->dev);
188         netif_carrier_off(tun->dev);
189         tun->tfile = NULL;
190         tun->socket.file = NULL;
191         netif_tx_unlock_bh(tun->dev);
192
193         /* Drop read queue */
194         skb_queue_purge(&tun->socket.sk->sk_receive_queue);
195
196         /* Drop the extra count on the net device */
197         dev_put(tun->dev);
198 }
199
200 static void tun_detach(struct tun_struct *tun)
201 {
202         rtnl_lock();
203         __tun_detach(tun);
204         rtnl_unlock();
205 }
206
207 static struct tun_struct *__tun_get(struct tun_file *tfile)
208 {
209         struct tun_struct *tun = NULL;
210
211         if (atomic_inc_not_zero(&tfile->count))
212                 tun = tfile->tun;
213
214         return tun;
215 }
216
217 static struct tun_struct *tun_get(struct file *file)
218 {
219         return __tun_get(file->private_data);
220 }
221
222 static void tun_put(struct tun_struct *tun)
223 {
224         struct tun_file *tfile = tun->tfile;
225
226         if (atomic_dec_and_test(&tfile->count))
227                 tun_detach(tfile->tun);
228 }
229
230 /* TAP filtering */
231 static void addr_hash_set(u32 *mask, const u8 *addr)
232 {
233         int n = ether_crc(ETH_ALEN, addr) >> 26;
234         mask[n >> 5] |= (1 << (n & 31));
235 }
236
237 static unsigned int addr_hash_test(const u32 *mask, const u8 *addr)
238 {
239         int n = ether_crc(ETH_ALEN, addr) >> 26;
240         return mask[n >> 5] & (1 << (n & 31));
241 }
242
243 static int update_filter(struct tap_filter *filter, void __user *arg)
244 {
245         struct { u8 u[ETH_ALEN]; } *addr;
246         struct tun_filter uf;
247         int err, alen, n, nexact;
248
249         if (copy_from_user(&uf, arg, sizeof(uf)))
250                 return -EFAULT;
251
252         if (!uf.count) {
253                 /* Disabled */
254                 filter->count = 0;
255                 return 0;
256         }
257
258         alen = ETH_ALEN * uf.count;
259         addr = kmalloc(alen, GFP_KERNEL);
260         if (!addr)
261                 return -ENOMEM;
262
263         if (copy_from_user(addr, arg + sizeof(uf), alen)) {
264                 err = -EFAULT;
265                 goto done;
266         }
267
268         /* The filter is updated without holding any locks. Which is
269          * perfectly safe. We disable it first and in the worst
270          * case we'll accept a few undesired packets. */
271         filter->count = 0;
272         wmb();
273
274         /* Use first set of addresses as an exact filter */
275         for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++)
276                 memcpy(filter->addr[n], addr[n].u, ETH_ALEN);
277
278         nexact = n;
279
280         /* Remaining multicast addresses are hashed,
281          * unicast will leave the filter disabled. */
282         memset(filter->mask, 0, sizeof(filter->mask));
283         for (; n < uf.count; n++) {
284                 if (!is_multicast_ether_addr(addr[n].u)) {
285                         err = 0; /* no filter */
286                         goto done;
287                 }
288                 addr_hash_set(filter->mask, addr[n].u);
289         }
290
291         /* For ALLMULTI just set the mask to all ones.
292          * This overrides the mask populated above. */
293         if ((uf.flags & TUN_FLT_ALLMULTI))
294                 memset(filter->mask, ~0, sizeof(filter->mask));
295
296         /* Now enable the filter */
297         wmb();
298         filter->count = nexact;
299
300         /* Return the number of exact filters */
301         err = nexact;
302
303 done:
304         kfree(addr);
305         return err;
306 }
307
308 /* Returns: 0 - drop, !=0 - accept */
309 static int run_filter(struct tap_filter *filter, const struct sk_buff *skb)
310 {
311         /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect
312          * at this point. */
313         struct ethhdr *eh = (struct ethhdr *) skb->data;
314         int i;
315
316         /* Exact match */
317         for (i = 0; i < filter->count; i++)
318                 if (!compare_ether_addr(eh->h_dest, filter->addr[i]))
319                         return 1;
320
321         /* Inexact match (multicast only) */
322         if (is_multicast_ether_addr(eh->h_dest))
323                 return addr_hash_test(filter->mask, eh->h_dest);
324
325         return 0;
326 }
327
328 /*
329  * Checks whether the packet is accepted or not.
330  * Returns: 0 - drop, !=0 - accept
331  */
332 static int check_filter(struct tap_filter *filter, const struct sk_buff *skb)
333 {
334         if (!filter->count)
335                 return 1;
336
337         return run_filter(filter, skb);
338 }
339
340 /* Network device part of the driver */
341
342 static const struct ethtool_ops tun_ethtool_ops;
343
344 /* Net device detach from fd. */
345 static void tun_net_uninit(struct net_device *dev)
346 {
347         struct tun_struct *tun = netdev_priv(dev);
348         struct tun_file *tfile = tun->tfile;
349
350         /* Inform the methods they need to stop using the dev.
351          */
352         if (tfile) {
353                 wake_up_all(&tun->wq.wait);
354                 if (atomic_dec_and_test(&tfile->count))
355                         __tun_detach(tun);
356         }
357 }
358
359 static void tun_free_netdev(struct net_device *dev)
360 {
361         struct tun_struct *tun = netdev_priv(dev);
362
363         sock_put(tun->socket.sk);
364 }
365
366 /* Net device open. */
367 static int tun_net_open(struct net_device *dev)
368 {
369         netif_start_queue(dev);
370         return 0;
371 }
372
373 /* Net device close. */
374 static int tun_net_close(struct net_device *dev)
375 {
376         netif_stop_queue(dev);
377         return 0;
378 }
379
380 /* Net device start xmit */
381 static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)
382 {
383         struct tun_struct *tun = netdev_priv(dev);
384
385         tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len);
386
387         /* Drop packet if interface is not attached */
388         if (!tun->tfile)
389                 goto drop;
390
391         /* Drop if the filter does not like it.
392          * This is a noop if the filter is disabled.
393          * Filter can be enabled only for the TAP devices. */
394         if (!check_filter(&tun->txflt, skb))
395                 goto drop;
396
397         if (tun->socket.sk->sk_filter &&
398             sk_filter(tun->socket.sk, skb))
399                 goto drop;
400
401         if (skb_queue_len(&tun->socket.sk->sk_receive_queue) >= dev->tx_queue_len) {
402                 if (!(tun->flags & TUN_ONE_QUEUE)) {
403                         /* Normal queueing mode. */
404                         /* Packet scheduler handles dropping of further packets. */
405                         netif_stop_queue(dev);
406
407                         /* We won't see all dropped packets individually, so overrun
408                          * error is more appropriate. */
409                         dev->stats.tx_fifo_errors++;
410                 } else {
411                         /* Single queue mode.
412                          * Driver handles dropping of all packets itself. */
413                         goto drop;
414                 }
415         }
416
417         /* Orphan the skb - required as we might hang on to it
418          * for indefinite time. */
419         skb_orphan(skb);
420
421         nf_reset(skb);
422
423         /* Enqueue packet */
424         skb_queue_tail(&tun->socket.sk->sk_receive_queue, skb);
425
426         /* Notify and wake up reader process */
427         if (tun->flags & TUN_FASYNC)
428                 kill_fasync(&tun->fasync, SIGIO, POLL_IN);
429         wake_up_interruptible_poll(&tun->wq.wait, POLLIN |
430                                    POLLRDNORM | POLLRDBAND);
431         return NETDEV_TX_OK;
432
433 drop:
434         dev->stats.tx_dropped++;
435         kfree_skb(skb);
436         return NETDEV_TX_OK;
437 }
438
439 static void tun_net_mclist(struct net_device *dev)
440 {
441         /*
442          * This callback is supposed to deal with mc filter in
443          * _rx_ path and has nothing to do with the _tx_ path.
444          * In rx path we always accept everything userspace gives us.
445          */
446 }
447
448 #define MIN_MTU 68
449 #define MAX_MTU 65535
450
451 static int
452 tun_net_change_mtu(struct net_device *dev, int new_mtu)
453 {
454         if (new_mtu < MIN_MTU || new_mtu + dev->hard_header_len > MAX_MTU)
455                 return -EINVAL;
456         dev->mtu = new_mtu;
457         return 0;
458 }
459
460 static u32 tun_net_fix_features(struct net_device *dev, u32 features)
461 {
462         struct tun_struct *tun = netdev_priv(dev);
463
464         return (features & tun->set_features) | (features & ~TUN_USER_FEATURES);
465 }
466 #ifdef CONFIG_NET_POLL_CONTROLLER
467 static void tun_poll_controller(struct net_device *dev)
468 {
469         /*
470          * Tun only receives frames when:
471          * 1) the char device endpoint gets data from user space
472          * 2) the tun socket gets a sendmsg call from user space
473          * Since both of those are syncronous operations, we are guaranteed
474          * never to have pending data when we poll for it
475          * so theres nothing to do here but return.
476          * We need this though so netpoll recognizes us as an interface that
477          * supports polling, which enables bridge devices in virt setups to
478          * still use netconsole
479          */
480         return;
481 }
482 #endif
483 static const struct net_device_ops tun_netdev_ops = {
484         .ndo_uninit             = tun_net_uninit,
485         .ndo_open               = tun_net_open,
486         .ndo_stop               = tun_net_close,
487         .ndo_start_xmit         = tun_net_xmit,
488         .ndo_change_mtu         = tun_net_change_mtu,
489         .ndo_fix_features       = tun_net_fix_features,
490 #ifdef CONFIG_NET_POLL_CONTROLLER
491         .ndo_poll_controller    = tun_poll_controller,
492 #endif
493 };
494
495 static const struct net_device_ops tap_netdev_ops = {
496         .ndo_uninit             = tun_net_uninit,
497         .ndo_open               = tun_net_open,
498         .ndo_stop               = tun_net_close,
499         .ndo_start_xmit         = tun_net_xmit,
500         .ndo_change_mtu         = tun_net_change_mtu,
501         .ndo_fix_features       = tun_net_fix_features,
502         .ndo_set_rx_mode        = tun_net_mclist,
503         .ndo_set_mac_address    = eth_mac_addr,
504         .ndo_validate_addr      = eth_validate_addr,
505 #ifdef CONFIG_NET_POLL_CONTROLLER
506         .ndo_poll_controller    = tun_poll_controller,
507 #endif
508 };
509
510 /* Initialize net device. */
511 static void tun_net_init(struct net_device *dev)
512 {
513         struct tun_struct *tun = netdev_priv(dev);
514
515         switch (tun->flags & TUN_TYPE_MASK) {
516         case TUN_TUN_DEV:
517                 dev->netdev_ops = &tun_netdev_ops;
518
519                 /* Point-to-Point TUN Device */
520                 dev->hard_header_len = 0;
521                 dev->addr_len = 0;
522                 dev->mtu = 1500;
523
524                 /* Zero header length */
525                 dev->type = ARPHRD_NONE;
526                 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
527                 dev->tx_queue_len = TUN_READQ_SIZE;  /* We prefer our own queue length */
528                 break;
529
530         case TUN_TAP_DEV:
531                 dev->netdev_ops = &tap_netdev_ops;
532                 /* Ethernet TAP Device */
533                 ether_setup(dev);
534                 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
535
536                 random_ether_addr(dev->dev_addr);
537
538                 dev->tx_queue_len = TUN_READQ_SIZE;  /* We prefer our own queue length */
539                 break;
540         }
541 }
542
543 /* Character device part */
544
545 /* Poll */
546 static unsigned int tun_chr_poll(struct file *file, poll_table * wait)
547 {
548         struct tun_file *tfile = file->private_data;
549         struct tun_struct *tun = __tun_get(tfile);
550         struct sock *sk;
551         unsigned int mask = 0;
552
553         if (!tun)
554                 return POLLERR;
555
556         sk = tun->socket.sk;
557
558         tun_debug(KERN_INFO, tun, "tun_chr_poll\n");
559
560         poll_wait(file, &tun->wq.wait, wait);
561
562         if (!skb_queue_empty(&sk->sk_receive_queue))
563                 mask |= POLLIN | POLLRDNORM;
564
565         if (sock_writeable(sk) ||
566             (!test_and_set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags) &&
567              sock_writeable(sk)))
568                 mask |= POLLOUT | POLLWRNORM;
569
570         if (tun->dev->reg_state != NETREG_REGISTERED)
571                 mask = POLLERR;
572
573         tun_put(tun);
574         return mask;
575 }
576
577 /* prepad is the amount to reserve at front.  len is length after that.
578  * linear is a hint as to how much to copy (usually headers). */
579 static struct sk_buff *tun_alloc_skb(struct tun_struct *tun,
580                                      size_t prepad, size_t len,
581                                      size_t linear, int noblock)
582 {
583         struct sock *sk = tun->socket.sk;
584         struct sk_buff *skb;
585         int err;
586
587         sock_update_classid(sk);
588
589         /* Under a page?  Don't bother with paged skb. */
590         if (prepad + len < PAGE_SIZE || !linear)
591                 linear = len;
592
593         skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
594                                    &err);
595         if (!skb)
596                 return ERR_PTR(err);
597
598         skb_reserve(skb, prepad);
599         skb_put(skb, linear);
600         skb->data_len = len - linear;
601         skb->len += len - linear;
602
603         return skb;
604 }
605
606 /* Get packet from user space buffer */
607 static ssize_t tun_get_user(struct tun_struct *tun,
608                             const struct iovec *iv, size_t count,
609                             int noblock)
610 {
611         struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) };
612         struct sk_buff *skb;
613         size_t len = count, align = NET_SKB_PAD;
614         struct virtio_net_hdr gso = { 0 };
615         int offset = 0;
616
617         if (!(tun->flags & TUN_NO_PI)) {
618                 if (len < sizeof(pi))
619                         return -EINVAL;
620                 len -= sizeof(pi);
621
622                 if (memcpy_fromiovecend((void *)&pi, iv, 0, sizeof(pi)))
623                         return -EFAULT;
624                 offset += sizeof(pi);
625         }
626
627         if (tun->flags & TUN_VNET_HDR) {
628                 int vnet_hdr_sz = ACCESS_ONCE(tun->vnet_hdr_sz);
629
630                 if (len < vnet_hdr_sz)
631                         return -EINVAL;
632                 len -= vnet_hdr_sz;
633
634                 if (memcpy_fromiovecend((void *)&gso, iv, offset, sizeof(gso)))
635                         return -EFAULT;
636
637                 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
638                     gso.csum_start + gso.csum_offset + 2 > gso.hdr_len)
639                         gso.hdr_len = gso.csum_start + gso.csum_offset + 2;
640
641                 if (gso.hdr_len > len)
642                         return -EINVAL;
643                 offset += vnet_hdr_sz;
644         }
645
646         if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) {
647                 align += NET_IP_ALIGN;
648                 if (unlikely(len < ETH_HLEN ||
649                              (gso.hdr_len && gso.hdr_len < ETH_HLEN)))
650                         return -EINVAL;
651         }
652
653         skb = tun_alloc_skb(tun, align, len, gso.hdr_len, noblock);
654         if (IS_ERR(skb)) {
655                 if (PTR_ERR(skb) != -EAGAIN)
656                         tun->dev->stats.rx_dropped++;
657                 return PTR_ERR(skb);
658         }
659
660         if (skb_copy_datagram_from_iovec(skb, 0, iv, offset, len)) {
661                 tun->dev->stats.rx_dropped++;
662                 kfree_skb(skb);
663                 return -EFAULT;
664         }
665
666         if (gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
667                 if (!skb_partial_csum_set(skb, gso.csum_start,
668                                           gso.csum_offset)) {
669                         tun->dev->stats.rx_frame_errors++;
670                         kfree_skb(skb);
671                         return -EINVAL;
672                 }
673         }
674
675         switch (tun->flags & TUN_TYPE_MASK) {
676         case TUN_TUN_DEV:
677                 if (tun->flags & TUN_NO_PI) {
678                         switch (skb->data[0] & 0xf0) {
679                         case 0x40:
680                                 pi.proto = htons(ETH_P_IP);
681                                 break;
682                         case 0x60:
683                                 pi.proto = htons(ETH_P_IPV6);
684                                 break;
685                         default:
686                                 tun->dev->stats.rx_dropped++;
687                                 kfree_skb(skb);
688                                 return -EINVAL;
689                         }
690                 }
691
692                 skb_reset_mac_header(skb);
693                 skb->protocol = pi.proto;
694                 skb->dev = tun->dev;
695                 break;
696         case TUN_TAP_DEV:
697                 skb->protocol = eth_type_trans(skb, tun->dev);
698                 break;
699         }
700
701         skb_reset_network_header(skb);
702
703         if (gso.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
704                 pr_debug("GSO!\n");
705                 switch (gso.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
706                 case VIRTIO_NET_HDR_GSO_TCPV4:
707                         skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
708                         break;
709                 case VIRTIO_NET_HDR_GSO_TCPV6:
710                         skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
711                         break;
712                 case VIRTIO_NET_HDR_GSO_UDP:
713                         skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
714                         if (skb->protocol == htons(ETH_P_IPV6))
715                                 ipv6_proxy_select_ident(skb);
716                         break;
717                 default:
718                         tun->dev->stats.rx_frame_errors++;
719                         kfree_skb(skb);
720                         return -EINVAL;
721                 }
722
723                 if (gso.gso_type & VIRTIO_NET_HDR_GSO_ECN)
724                         skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
725
726                 skb_shinfo(skb)->gso_size = gso.gso_size;
727                 if (skb_shinfo(skb)->gso_size == 0) {
728                         tun->dev->stats.rx_frame_errors++;
729                         kfree_skb(skb);
730                         return -EINVAL;
731                 }
732
733                 /* Header must be checked, and gso_segs computed. */
734                 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
735                 skb_shinfo(skb)->gso_segs = 0;
736         }
737
738         netif_rx_ni(skb);
739
740         tun->dev->stats.rx_packets++;
741         tun->dev->stats.rx_bytes += len;
742
743         return count;
744 }
745
746 static ssize_t tun_chr_aio_write(struct kiocb *iocb, const struct iovec *iv,
747                               unsigned long count, loff_t pos)
748 {
749         struct file *file = iocb->ki_filp;
750         struct tun_struct *tun = tun_get(file);
751         ssize_t result;
752
753         if (!tun)
754                 return -EBADFD;
755
756         tun_debug(KERN_INFO, tun, "tun_chr_write %ld\n", count);
757
758         result = tun_get_user(tun, iv, iov_length(iv, count),
759                               file->f_flags & O_NONBLOCK);
760
761         tun_put(tun);
762         return result;
763 }
764
765 /* Put packet to the user space buffer */
766 static ssize_t tun_put_user(struct tun_struct *tun,
767                             struct sk_buff *skb,
768                             const struct iovec *iv, int len)
769 {
770         struct tun_pi pi = { 0, skb->protocol };
771         ssize_t total = 0;
772         int vnet_hdr_sz = 0;
773
774         if (tun->flags & TUN_VNET_HDR)
775                 vnet_hdr_sz = ACCESS_ONCE(tun->vnet_hdr_sz);
776
777         if (!(tun->flags & TUN_NO_PI)) {
778                 if ((len -= sizeof(pi)) < 0)
779                         return -EINVAL;
780
781                 if (len < skb->len + vnet_hdr_sz) {
782                         /* Packet will be striped */
783                         pi.flags |= TUN_PKT_STRIP;
784                 }
785
786                 if (memcpy_toiovecend(iv, (void *) &pi, 0, sizeof(pi)))
787                         return -EFAULT;
788                 total += sizeof(pi);
789         }
790
791         if (vnet_hdr_sz) {
792                 struct virtio_net_hdr gso = { 0 }; /* no info leak */
793                 if ((len -= vnet_hdr_sz) < 0)
794                         return -EINVAL;
795
796                 if (skb_is_gso(skb)) {
797                         struct skb_shared_info *sinfo = skb_shinfo(skb);
798
799                         /* This is a hint as to how much should be linear. */
800                         gso.hdr_len = skb_headlen(skb);
801                         gso.gso_size = sinfo->gso_size;
802                         if (sinfo->gso_type & SKB_GSO_TCPV4)
803                                 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
804                         else if (sinfo->gso_type & SKB_GSO_TCPV6)
805                                 gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
806                         else if (sinfo->gso_type & SKB_GSO_UDP)
807                                 gso.gso_type = VIRTIO_NET_HDR_GSO_UDP;
808                         else {
809                                 pr_err("unexpected GSO type: "
810                                        "0x%x, gso_size %d, hdr_len %d\n",
811                                        sinfo->gso_type, gso.gso_size,
812                                        gso.hdr_len);
813                                 print_hex_dump(KERN_ERR, "tun: ",
814                                                DUMP_PREFIX_NONE,
815                                                16, 1, skb->head,
816                                                min((int)gso.hdr_len, 64), true);
817                                 WARN_ON_ONCE(1);
818                                 return -EINVAL;
819                         }
820                         if (sinfo->gso_type & SKB_GSO_TCP_ECN)
821                                 gso.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
822                 } else
823                         gso.gso_type = VIRTIO_NET_HDR_GSO_NONE;
824
825                 if (skb->ip_summed == CHECKSUM_PARTIAL) {
826                         gso.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
827                         gso.csum_start = skb_checksum_start_offset(skb);
828                         gso.csum_offset = skb->csum_offset;
829                 } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
830                         gso.flags = VIRTIO_NET_HDR_F_DATA_VALID;
831                 } /* else everything is zero */
832
833                 if (unlikely(memcpy_toiovecend(iv, (void *)&gso, total,
834                                                sizeof(gso))))
835                         return -EFAULT;
836                 total += vnet_hdr_sz;
837         }
838
839         len = min_t(int, skb->len, len);
840
841         skb_copy_datagram_const_iovec(skb, 0, iv, total, len);
842         total += skb->len;
843
844         tun->dev->stats.tx_packets++;
845         tun->dev->stats.tx_bytes += len;
846
847         return total;
848 }
849
850 static ssize_t tun_do_read(struct tun_struct *tun,
851                            struct kiocb *iocb, const struct iovec *iv,
852                            ssize_t len, int noblock)
853 {
854         DECLARE_WAITQUEUE(wait, current);
855         struct sk_buff *skb;
856         ssize_t ret = 0;
857
858         tun_debug(KERN_INFO, tun, "tun_chr_read\n");
859
860         if (unlikely(!noblock))
861                 add_wait_queue(&tun->wq.wait, &wait);
862         while (len) {
863                 current->state = TASK_INTERRUPTIBLE;
864
865                 /* Read frames from the queue */
866                 if (!(skb=skb_dequeue(&tun->socket.sk->sk_receive_queue))) {
867                         if (noblock) {
868                                 ret = -EAGAIN;
869                                 break;
870                         }
871                         if (signal_pending(current)) {
872                                 ret = -ERESTARTSYS;
873                                 break;
874                         }
875                         if (tun->dev->reg_state != NETREG_REGISTERED) {
876                                 ret = -EIO;
877                                 break;
878                         }
879
880                         /* Nothing to read, let's sleep */
881                         schedule();
882                         continue;
883                 }
884                 netif_wake_queue(tun->dev);
885
886                 ret = tun_put_user(tun, skb, iv, len);
887                 kfree_skb(skb);
888                 break;
889         }
890
891         current->state = TASK_RUNNING;
892         if (unlikely(!noblock))
893                 remove_wait_queue(&tun->wq.wait, &wait);
894
895         return ret;
896 }
897
898 static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv,
899                             unsigned long count, loff_t pos)
900 {
901         struct file *file = iocb->ki_filp;
902         struct tun_file *tfile = file->private_data;
903         struct tun_struct *tun = __tun_get(tfile);
904         ssize_t len, ret;
905
906         if (!tun)
907                 return -EBADFD;
908         len = iov_length(iv, count);
909         if (len < 0) {
910                 ret = -EINVAL;
911                 goto out;
912         }
913
914         ret = tun_do_read(tun, iocb, iv, len, file->f_flags & O_NONBLOCK);
915         ret = min_t(ssize_t, ret, len);
916 out:
917         tun_put(tun);
918         return ret;
919 }
920
921 static void tun_setup(struct net_device *dev)
922 {
923         struct tun_struct *tun = netdev_priv(dev);
924
925         tun->owner = -1;
926         tun->group = -1;
927
928         dev->ethtool_ops = &tun_ethtool_ops;
929         dev->destructor = tun_free_netdev;
930 }
931
932 /* Trivial set of netlink ops to allow deleting tun or tap
933  * device with netlink.
934  */
935 static int tun_validate(struct nlattr *tb[], struct nlattr *data[])
936 {
937         return -EINVAL;
938 }
939
940 static struct rtnl_link_ops tun_link_ops __read_mostly = {
941         .kind           = DRV_NAME,
942         .priv_size      = sizeof(struct tun_struct),
943         .setup          = tun_setup,
944         .validate       = tun_validate,
945 };
946
947 static void tun_sock_write_space(struct sock *sk)
948 {
949         struct tun_struct *tun;
950         wait_queue_head_t *wqueue;
951
952         if (!sock_writeable(sk))
953                 return;
954
955         if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags))
956                 return;
957
958         wqueue = sk_sleep(sk);
959         if (wqueue && waitqueue_active(wqueue))
960                 wake_up_interruptible_sync_poll(wqueue, POLLOUT |
961                                                 POLLWRNORM | POLLWRBAND);
962
963         tun = tun_sk(sk)->tun;
964         kill_fasync(&tun->fasync, SIGIO, POLL_OUT);
965 }
966
967 static void tun_sock_destruct(struct sock *sk)
968 {
969         free_netdev(tun_sk(sk)->tun->dev);
970 }
971
972 static int tun_sendmsg(struct kiocb *iocb, struct socket *sock,
973                        struct msghdr *m, size_t total_len)
974 {
975         struct tun_struct *tun = container_of(sock, struct tun_struct, socket);
976         return tun_get_user(tun, m->msg_iov, total_len,
977                             m->msg_flags & MSG_DONTWAIT);
978 }
979
980 static int tun_recvmsg(struct kiocb *iocb, struct socket *sock,
981                        struct msghdr *m, size_t total_len,
982                        int flags)
983 {
984         struct tun_struct *tun = container_of(sock, struct tun_struct, socket);
985         int ret;
986         if (flags & ~(MSG_DONTWAIT|MSG_TRUNC))
987                 return -EINVAL;
988         ret = tun_do_read(tun, iocb, m->msg_iov, total_len,
989                           flags & MSG_DONTWAIT);
990         if (ret > total_len) {
991                 m->msg_flags |= MSG_TRUNC;
992                 ret = flags & MSG_TRUNC ? ret : total_len;
993         }
994         return ret;
995 }
996
997 /* Ops structure to mimic raw sockets with tun */
998 static const struct proto_ops tun_socket_ops = {
999         .sendmsg = tun_sendmsg,
1000         .recvmsg = tun_recvmsg,
1001 };
1002
1003 static struct proto tun_proto = {
1004         .name           = "tun",
1005         .owner          = THIS_MODULE,
1006         .obj_size       = sizeof(struct tun_sock),
1007 };
1008
1009 static int tun_flags(struct tun_struct *tun)
1010 {
1011         int flags = 0;
1012
1013         if (tun->flags & TUN_TUN_DEV)
1014                 flags |= IFF_TUN;
1015         else
1016                 flags |= IFF_TAP;
1017
1018         if (tun->flags & TUN_NO_PI)
1019                 flags |= IFF_NO_PI;
1020
1021         if (tun->flags & TUN_ONE_QUEUE)
1022                 flags |= IFF_ONE_QUEUE;
1023
1024         if (tun->flags & TUN_VNET_HDR)
1025                 flags |= IFF_VNET_HDR;
1026
1027         return flags;
1028 }
1029
1030 static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr,
1031                               char *buf)
1032 {
1033         struct tun_struct *tun = netdev_priv(to_net_dev(dev));
1034         return sprintf(buf, "0x%x\n", tun_flags(tun));
1035 }
1036
1037 static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr,
1038                               char *buf)
1039 {
1040         struct tun_struct *tun = netdev_priv(to_net_dev(dev));
1041         return sprintf(buf, "%d\n", tun->owner);
1042 }
1043
1044 static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr,
1045                               char *buf)
1046 {
1047         struct tun_struct *tun = netdev_priv(to_net_dev(dev));
1048         return sprintf(buf, "%d\n", tun->group);
1049 }
1050
1051 static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL);
1052 static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL);
1053 static DEVICE_ATTR(group, 0444, tun_show_group, NULL);
1054
1055 static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr)
1056 {
1057         struct sock *sk;
1058         struct tun_struct *tun;
1059         struct net_device *dev;
1060         int err;
1061
1062         dev = __dev_get_by_name(net, ifr->ifr_name);
1063         if (dev) {
1064                 const struct cred *cred = current_cred();
1065
1066                 if (ifr->ifr_flags & IFF_TUN_EXCL)
1067                         return -EBUSY;
1068                 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops)
1069                         tun = netdev_priv(dev);
1070                 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops)
1071                         tun = netdev_priv(dev);
1072                 else
1073                         return -EINVAL;
1074
1075                 if (((tun->owner != -1 && cred->euid != tun->owner) ||
1076                      (tun->group != -1 && !in_egroup_p(tun->group))) &&
1077                     !capable(CAP_NET_ADMIN))
1078                         return -EPERM;
1079                 err = security_tun_dev_attach(tun->socket.sk);
1080                 if (err < 0)
1081                         return err;
1082
1083                 err = tun_attach(tun, file);
1084                 if (err < 0)
1085                         return err;
1086         }
1087         else {
1088                 char *name;
1089                 unsigned long flags = 0;
1090
1091                 if (!capable(CAP_NET_ADMIN))
1092                         return -EPERM;
1093                 err = security_tun_dev_create();
1094                 if (err < 0)
1095                         return err;
1096
1097                 /* Set dev type */
1098                 if (ifr->ifr_flags & IFF_TUN) {
1099                         /* TUN device */
1100                         flags |= TUN_TUN_DEV;
1101                         name = "tun%d";
1102                 } else if (ifr->ifr_flags & IFF_TAP) {
1103                         /* TAP device */
1104                         flags |= TUN_TAP_DEV;
1105                         name = "tap%d";
1106                 } else
1107                         return -EINVAL;
1108
1109                 if (*ifr->ifr_name)
1110                         name = ifr->ifr_name;
1111
1112                 dev = alloc_netdev(sizeof(struct tun_struct), name,
1113                                    tun_setup);
1114                 if (!dev)
1115                         return -ENOMEM;
1116
1117                 dev_net_set(dev, net);
1118                 dev->rtnl_link_ops = &tun_link_ops;
1119
1120                 tun = netdev_priv(dev);
1121                 tun->dev = dev;
1122                 tun->flags = flags;
1123                 tun->txflt.count = 0;
1124                 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr);
1125
1126                 err = -ENOMEM;
1127                 sk = sk_alloc(net, AF_UNSPEC, GFP_KERNEL, &tun_proto);
1128                 if (!sk)
1129                         goto err_free_dev;
1130
1131                 tun->socket.wq = &tun->wq;
1132                 init_waitqueue_head(&tun->wq.wait);
1133                 tun->socket.ops = &tun_socket_ops;
1134                 sock_init_data(&tun->socket, sk);
1135                 sk->sk_write_space = tun_sock_write_space;
1136                 sk->sk_sndbuf = INT_MAX;
1137
1138                 tun_sk(sk)->tun = tun;
1139
1140                 security_tun_dev_post_create(sk);
1141
1142                 tun_net_init(dev);
1143
1144                 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST |
1145                         TUN_USER_FEATURES;
1146                 dev->features = dev->hw_features;
1147
1148                 err = register_netdevice(tun->dev);
1149                 if (err < 0)
1150                         goto err_free_sk;
1151
1152                 if (device_create_file(&tun->dev->dev, &dev_attr_tun_flags) ||
1153                     device_create_file(&tun->dev->dev, &dev_attr_owner) ||
1154                     device_create_file(&tun->dev->dev, &dev_attr_group))
1155                         pr_err("Failed to create tun sysfs files\n");
1156
1157                 sk->sk_destruct = tun_sock_destruct;
1158
1159                 err = tun_attach(tun, file);
1160                 if (err < 0)
1161                         goto failed;
1162         }
1163
1164         tun_debug(KERN_INFO, tun, "tun_set_iff\n");
1165
1166         if (ifr->ifr_flags & IFF_NO_PI)
1167                 tun->flags |= TUN_NO_PI;
1168         else
1169                 tun->flags &= ~TUN_NO_PI;
1170
1171         if (ifr->ifr_flags & IFF_ONE_QUEUE)
1172                 tun->flags |= TUN_ONE_QUEUE;
1173         else
1174                 tun->flags &= ~TUN_ONE_QUEUE;
1175
1176         if (ifr->ifr_flags & IFF_VNET_HDR)
1177                 tun->flags |= TUN_VNET_HDR;
1178         else
1179                 tun->flags &= ~TUN_VNET_HDR;
1180
1181         /* Make sure persistent devices do not get stuck in
1182          * xoff state.
1183          */
1184         if (netif_running(tun->dev))
1185                 netif_wake_queue(tun->dev);
1186
1187         strcpy(ifr->ifr_name, tun->dev->name);
1188         return 0;
1189
1190  err_free_sk:
1191         sock_put(sk);
1192  err_free_dev:
1193         free_netdev(dev);
1194  failed:
1195         return err;
1196 }
1197
1198 static int tun_get_iff(struct net *net, struct tun_struct *tun,
1199                        struct ifreq *ifr)
1200 {
1201         tun_debug(KERN_INFO, tun, "tun_get_iff\n");
1202
1203         strcpy(ifr->ifr_name, tun->dev->name);
1204
1205         ifr->ifr_flags = tun_flags(tun);
1206
1207         return 0;
1208 }
1209
1210 /* This is like a cut-down ethtool ops, except done via tun fd so no
1211  * privs required. */
1212 static int set_offload(struct tun_struct *tun, unsigned long arg)
1213 {
1214         u32 features = 0;
1215
1216         if (arg & TUN_F_CSUM) {
1217                 features |= NETIF_F_HW_CSUM;
1218                 arg &= ~TUN_F_CSUM;
1219
1220                 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) {
1221                         if (arg & TUN_F_TSO_ECN) {
1222                                 features |= NETIF_F_TSO_ECN;
1223                                 arg &= ~TUN_F_TSO_ECN;
1224                         }
1225                         if (arg & TUN_F_TSO4)
1226                                 features |= NETIF_F_TSO;
1227                         if (arg & TUN_F_TSO6)
1228                                 features |= NETIF_F_TSO6;
1229                         arg &= ~(TUN_F_TSO4|TUN_F_TSO6);
1230                 }
1231
1232                 if (arg & TUN_F_UFO) {
1233                         features |= NETIF_F_UFO;
1234                         arg &= ~TUN_F_UFO;
1235                 }
1236         }
1237
1238         /* This gives the user a way to test for new features in future by
1239          * trying to set them. */
1240         if (arg)
1241                 return -EINVAL;
1242
1243         tun->set_features = features;
1244         netdev_update_features(tun->dev);
1245
1246         return 0;
1247 }
1248
1249 static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
1250                             unsigned long arg, int ifreq_len)
1251 {
1252         struct tun_file *tfile = file->private_data;
1253         struct tun_struct *tun;
1254         void __user* argp = (void __user*)arg;
1255         struct sock_fprog fprog;
1256         struct ifreq ifr;
1257         int sndbuf;
1258         int vnet_hdr_sz;
1259         int ret;
1260
1261         if (cmd == TUNSETIFF || _IOC_TYPE(cmd) == 0x89) {
1262                 if (copy_from_user(&ifr, argp, ifreq_len))
1263                         return -EFAULT;
1264         } else {
1265                 memset(&ifr, 0, sizeof(ifr));
1266         }
1267         if (cmd == TUNGETFEATURES) {
1268                 /* Currently this just means: "what IFF flags are valid?".
1269                  * This is needed because we never checked for invalid flags on
1270                  * TUNSETIFF. */
1271                 return put_user(IFF_TUN | IFF_TAP | IFF_NO_PI | IFF_ONE_QUEUE |
1272                                 IFF_VNET_HDR,
1273                                 (unsigned int __user*)argp);
1274         }
1275
1276         rtnl_lock();
1277
1278         tun = __tun_get(tfile);
1279         if (cmd == TUNSETIFF && !tun) {
1280                 ifr.ifr_name[IFNAMSIZ-1] = '\0';
1281
1282                 ret = tun_set_iff(tfile->net, file, &ifr);
1283
1284                 if (ret)
1285                         goto unlock;
1286
1287                 if (copy_to_user(argp, &ifr, ifreq_len))
1288                         ret = -EFAULT;
1289                 goto unlock;
1290         }
1291
1292         ret = -EBADFD;
1293         if (!tun)
1294                 goto unlock;
1295
1296         tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %d\n", cmd);
1297
1298         ret = 0;
1299         switch (cmd) {
1300         case TUNGETIFF:
1301                 ret = tun_get_iff(current->nsproxy->net_ns, tun, &ifr);
1302                 if (ret)
1303                         break;
1304
1305                 if (copy_to_user(argp, &ifr, ifreq_len))
1306                         ret = -EFAULT;
1307                 break;
1308
1309         case TUNSETNOCSUM:
1310                 /* Disable/Enable checksum */
1311
1312                 /* [unimplemented] */
1313                 tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n",
1314                           arg ? "disabled" : "enabled");
1315                 break;
1316
1317         case TUNSETPERSIST:
1318                 /* Disable/Enable persist mode */
1319                 if (arg)
1320                         tun->flags |= TUN_PERSIST;
1321                 else
1322                         tun->flags &= ~TUN_PERSIST;
1323
1324                 tun_debug(KERN_INFO, tun, "persist %s\n",
1325                           arg ? "enabled" : "disabled");
1326                 break;
1327
1328         case TUNSETOWNER:
1329                 /* Set owner of the device */
1330                 tun->owner = (uid_t) arg;
1331
1332                 tun_debug(KERN_INFO, tun, "owner set to %d\n", tun->owner);
1333                 break;
1334
1335         case TUNSETGROUP:
1336                 /* Set group of the device */
1337                 tun->group= (gid_t) arg;
1338
1339                 tun_debug(KERN_INFO, tun, "group set to %d\n", tun->group);
1340                 break;
1341
1342         case TUNSETLINK:
1343                 /* Only allow setting the type when the interface is down */
1344                 if (tun->dev->flags & IFF_UP) {
1345                         tun_debug(KERN_INFO, tun,
1346                                   "Linktype set failed because interface is up\n");
1347                         ret = -EBUSY;
1348                 } else {
1349                         tun->dev->type = (int) arg;
1350                         tun_debug(KERN_INFO, tun, "linktype set to %d\n",
1351                                   tun->dev->type);
1352                         ret = 0;
1353                 }
1354                 break;
1355
1356 #ifdef TUN_DEBUG
1357         case TUNSETDEBUG:
1358                 tun->debug = arg;
1359                 break;
1360 #endif
1361         case TUNSETOFFLOAD:
1362                 ret = set_offload(tun, arg);
1363                 break;
1364
1365         case TUNSETTXFILTER:
1366                 /* Can be set only for TAPs */
1367                 ret = -EINVAL;
1368                 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
1369                         break;
1370                 ret = update_filter(&tun->txflt, (void __user *)arg);
1371                 break;
1372
1373         case SIOCGIFHWADDR:
1374                 /* Get hw address */
1375                 memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN);
1376                 ifr.ifr_hwaddr.sa_family = tun->dev->type;
1377                 if (copy_to_user(argp, &ifr, ifreq_len))
1378                         ret = -EFAULT;
1379                 break;
1380
1381         case SIOCSIFHWADDR:
1382                 /* Set hw address */
1383                 tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n",
1384                           ifr.ifr_hwaddr.sa_data);
1385
1386                 ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr);
1387                 break;
1388
1389         case TUNGETSNDBUF:
1390                 sndbuf = tun->socket.sk->sk_sndbuf;
1391                 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf)))
1392                         ret = -EFAULT;
1393                 break;
1394
1395         case TUNSETSNDBUF:
1396                 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) {
1397                         ret = -EFAULT;
1398                         break;
1399                 }
1400                 if (sndbuf <= 0) {
1401                         ret = -EINVAL;
1402                         break;
1403                 }
1404
1405                 tun->socket.sk->sk_sndbuf = sndbuf;
1406                 break;
1407
1408         case TUNGETVNETHDRSZ:
1409                 vnet_hdr_sz = tun->vnet_hdr_sz;
1410                 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz)))
1411                         ret = -EFAULT;
1412                 break;
1413
1414         case TUNSETVNETHDRSZ:
1415                 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) {
1416                         ret = -EFAULT;
1417                         break;
1418                 }
1419                 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) {
1420                         ret = -EINVAL;
1421                         break;
1422                 }
1423
1424                 tun->vnet_hdr_sz = vnet_hdr_sz;
1425                 break;
1426
1427         case TUNATTACHFILTER:
1428                 /* Can be set only for TAPs */
1429                 ret = -EINVAL;
1430                 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
1431                         break;
1432                 ret = -EFAULT;
1433                 if (copy_from_user(&fprog, argp, sizeof(fprog)))
1434                         break;
1435
1436                 ret = sk_attach_filter(&fprog, tun->socket.sk);
1437                 break;
1438
1439         case TUNDETACHFILTER:
1440                 /* Can be set only for TAPs */
1441                 ret = -EINVAL;
1442                 if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV)
1443                         break;
1444                 ret = sk_detach_filter(tun->socket.sk);
1445                 break;
1446
1447         default:
1448                 ret = -EINVAL;
1449                 break;
1450         }
1451
1452 unlock:
1453         rtnl_unlock();
1454         if (tun)
1455                 tun_put(tun);
1456         return ret;
1457 }
1458
1459 static long tun_chr_ioctl(struct file *file,
1460                           unsigned int cmd, unsigned long arg)
1461 {
1462         return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq));
1463 }
1464
1465 #ifdef CONFIG_COMPAT
1466 static long tun_chr_compat_ioctl(struct file *file,
1467                          unsigned int cmd, unsigned long arg)
1468 {
1469         switch (cmd) {
1470         case TUNSETIFF:
1471         case TUNGETIFF:
1472         case TUNSETTXFILTER:
1473         case TUNGETSNDBUF:
1474         case TUNSETSNDBUF:
1475         case SIOCGIFHWADDR:
1476         case SIOCSIFHWADDR:
1477                 arg = (unsigned long)compat_ptr(arg);
1478                 break;
1479         default:
1480                 arg = (compat_ulong_t)arg;
1481                 break;
1482         }
1483
1484         /*
1485          * compat_ifreq is shorter than ifreq, so we must not access beyond
1486          * the end of that structure. All fields that are used in this
1487          * driver are compatible though, we don't need to convert the
1488          * contents.
1489          */
1490         return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq));
1491 }
1492 #endif /* CONFIG_COMPAT */
1493
1494 static int tun_chr_fasync(int fd, struct file *file, int on)
1495 {
1496         struct tun_struct *tun = tun_get(file);
1497         int ret;
1498
1499         if (!tun)
1500                 return -EBADFD;
1501
1502         tun_debug(KERN_INFO, tun, "tun_chr_fasync %d\n", on);
1503
1504         if ((ret = fasync_helper(fd, file, on, &tun->fasync)) < 0)
1505                 goto out;
1506
1507         if (on) {
1508                 ret = __f_setown(file, task_pid(current), PIDTYPE_PID, 0);
1509                 if (ret)
1510                         goto out;
1511                 tun->flags |= TUN_FASYNC;
1512         } else
1513                 tun->flags &= ~TUN_FASYNC;
1514         ret = 0;
1515 out:
1516         tun_put(tun);
1517         return ret;
1518 }
1519
1520 static int tun_chr_open(struct inode *inode, struct file * file)
1521 {
1522         struct tun_file *tfile;
1523
1524         DBG1(KERN_INFO, "tunX: tun_chr_open\n");
1525
1526         tfile = kmalloc(sizeof(*tfile), GFP_KERNEL);
1527         if (!tfile)
1528                 return -ENOMEM;
1529         atomic_set(&tfile->count, 0);
1530         tfile->tun = NULL;
1531         tfile->net = get_net(current->nsproxy->net_ns);
1532         file->private_data = tfile;
1533         return 0;
1534 }
1535
1536 static int tun_chr_close(struct inode *inode, struct file *file)
1537 {
1538         struct tun_file *tfile = file->private_data;
1539         struct tun_struct *tun;
1540
1541         tun = __tun_get(tfile);
1542         if (tun) {
1543                 struct net_device *dev = tun->dev;
1544
1545                 tun_debug(KERN_INFO, tun, "tun_chr_close\n");
1546
1547                 __tun_detach(tun);
1548
1549                 /* If desirable, unregister the netdevice. */
1550                 if (!(tun->flags & TUN_PERSIST)) {
1551                         rtnl_lock();
1552                         if (dev->reg_state == NETREG_REGISTERED)
1553                                 unregister_netdevice(dev);
1554                         rtnl_unlock();
1555                 }
1556         }
1557
1558         tun = tfile->tun;
1559         if (tun)
1560                 sock_put(tun->socket.sk);
1561
1562         put_net(tfile->net);
1563         kfree(tfile);
1564
1565         return 0;
1566 }
1567
1568 static const struct file_operations tun_fops = {
1569         .owner  = THIS_MODULE,
1570         .llseek = no_llseek,
1571         .read  = do_sync_read,
1572         .aio_read  = tun_chr_aio_read,
1573         .write = do_sync_write,
1574         .aio_write = tun_chr_aio_write,
1575         .poll   = tun_chr_poll,
1576         .unlocked_ioctl = tun_chr_ioctl,
1577 #ifdef CONFIG_COMPAT
1578         .compat_ioctl = tun_chr_compat_ioctl,
1579 #endif
1580         .open   = tun_chr_open,
1581         .release = tun_chr_close,
1582         .fasync = tun_chr_fasync
1583 };
1584
1585 static struct miscdevice tun_miscdev = {
1586         .minor = TUN_MINOR,
1587         .name = "tun",
1588         .nodename = "net/tun",
1589         .fops = &tun_fops,
1590 };
1591
1592 /* ethtool interface */
1593
1594 static int tun_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1595 {
1596         cmd->supported          = 0;
1597         cmd->advertising        = 0;
1598         ethtool_cmd_speed_set(cmd, SPEED_10);
1599         cmd->duplex             = DUPLEX_FULL;
1600         cmd->port               = PORT_TP;
1601         cmd->phy_address        = 0;
1602         cmd->transceiver        = XCVR_INTERNAL;
1603         cmd->autoneg            = AUTONEG_DISABLE;
1604         cmd->maxtxpkt           = 0;
1605         cmd->maxrxpkt           = 0;
1606         return 0;
1607 }
1608
1609 static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
1610 {
1611         struct tun_struct *tun = netdev_priv(dev);
1612
1613         strcpy(info->driver, DRV_NAME);
1614         strcpy(info->version, DRV_VERSION);
1615         strcpy(info->fw_version, "N/A");
1616
1617         switch (tun->flags & TUN_TYPE_MASK) {
1618         case TUN_TUN_DEV:
1619                 strcpy(info->bus_info, "tun");
1620                 break;
1621         case TUN_TAP_DEV:
1622                 strcpy(info->bus_info, "tap");
1623                 break;
1624         }
1625 }
1626
1627 static u32 tun_get_msglevel(struct net_device *dev)
1628 {
1629 #ifdef TUN_DEBUG
1630         struct tun_struct *tun = netdev_priv(dev);
1631         return tun->debug;
1632 #else
1633         return -EOPNOTSUPP;
1634 #endif
1635 }
1636
1637 static void tun_set_msglevel(struct net_device *dev, u32 value)
1638 {
1639 #ifdef TUN_DEBUG
1640         struct tun_struct *tun = netdev_priv(dev);
1641         tun->debug = value;
1642 #endif
1643 }
1644
1645 static const struct ethtool_ops tun_ethtool_ops = {
1646         .get_settings   = tun_get_settings,
1647         .get_drvinfo    = tun_get_drvinfo,
1648         .get_msglevel   = tun_get_msglevel,
1649         .set_msglevel   = tun_set_msglevel,
1650         .get_link       = ethtool_op_get_link,
1651 };
1652
1653
1654 static int __init tun_init(void)
1655 {
1656         int ret = 0;
1657
1658         pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
1659         pr_info("%s\n", DRV_COPYRIGHT);
1660
1661         ret = rtnl_link_register(&tun_link_ops);
1662         if (ret) {
1663                 pr_err("Can't register link_ops\n");
1664                 goto err_linkops;
1665         }
1666
1667         ret = misc_register(&tun_miscdev);
1668         if (ret) {
1669                 pr_err("Can't register misc device %d\n", TUN_MINOR);
1670                 goto err_misc;
1671         }
1672         return  0;
1673 err_misc:
1674         rtnl_link_unregister(&tun_link_ops);
1675 err_linkops:
1676         return ret;
1677 }
1678
1679 static void tun_cleanup(void)
1680 {
1681         misc_deregister(&tun_miscdev);
1682         rtnl_link_unregister(&tun_link_ops);
1683 }
1684
1685 /* Get an underlying socket object from tun file.  Returns error unless file is
1686  * attached to a device.  The returned object works like a packet socket, it
1687  * can be used for sock_sendmsg/sock_recvmsg.  The caller is responsible for
1688  * holding a reference to the file for as long as the socket is in use. */
1689 struct socket *tun_get_socket(struct file *file)
1690 {
1691         struct tun_struct *tun;
1692         if (file->f_op != &tun_fops)
1693                 return ERR_PTR(-EINVAL);
1694         tun = tun_get(file);
1695         if (!tun)
1696                 return ERR_PTR(-EBADFD);
1697         tun_put(tun);
1698         return &tun->socket;
1699 }
1700 EXPORT_SYMBOL_GPL(tun_get_socket);
1701
1702 module_init(tun_init);
1703 module_exit(tun_cleanup);
1704 MODULE_DESCRIPTION(DRV_DESCRIPTION);
1705 MODULE_AUTHOR(DRV_COPYRIGHT);
1706 MODULE_LICENSE("GPL");
1707 MODULE_ALIAS_MISCDEV(TUN_MINOR);
1708 MODULE_ALIAS("devname:net/tun");