Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | * |
Mike Kershaw | ff4cc3a | 2005-09-01 17:40:05 -0700 | [diff] [blame] | 21 | * Mike Kershaw <dragorn@kismetwireless.net> 2005/08/14 |
| 22 | * Add TUNSETLINK ioctl to set the link encapsulation |
| 23 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | * Mark Smith <markzzzsmith@yahoo.com.au> |
Joe Perches | 344dc8e | 2012-07-12 19:33:09 +0000 | [diff] [blame] | 25 | * Use eth_random_addr() for tap MAC address. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Joe Perches | 6b8a66e | 2011-03-02 07:18:10 +0000 | [diff] [blame] | 37 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Arnd Bergmann | 50857e2 | 2009-11-06 22:52:32 -0800 | [diff] [blame] | 58 | #include <linux/compat.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Pavel Emelyanov | d647a59 | 2008-04-16 00:41:16 -0700 | [diff] [blame] | 64 | #include <linux/nsproxy.h> |
Rusty Russell | f43798c | 2008-07-03 03:48:02 -0700 | [diff] [blame] | 65 | #include <linux/virtio_net.h> |
Michael S. Tsirkin | 9940516 | 2010-02-14 01:01:10 +0000 | [diff] [blame] | 66 | #include <linux/rcupdate.h> |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 67 | #include <net/net_namespace.h> |
Pavel Emelyanov | 79d1760 | 2008-04-16 00:40:46 -0700 | [diff] [blame] | 68 | #include <net/netns/generic.h> |
Eric W. Biederman | f019a7a | 2009-01-21 16:02:16 -0800 | [diff] [blame] | 69 | #include <net/rtnetlink.h> |
Herbert Xu | 33dccbb | 2009-02-05 21:25:32 -0800 | [diff] [blame] | 70 | #include <net/sock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | #include <asm/uaccess.h> |
| 73 | |
Rusty Russell | 14daa02 | 2008-04-12 18:48:58 -0700 | [diff] [blame] | 74 | /* Uncomment to enable debugging */ |
| 75 | /* #define TUN_DEBUG 1 */ |
| 76 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | #ifdef TUN_DEBUG |
| 78 | static int debug; |
Rusty Russell | 14daa02 | 2008-04-12 18:48:58 -0700 | [diff] [blame] | 79 | |
Joe Perches | 6b8a66e | 2011-03-02 07:18:10 +0000 | [diff] [blame] | 80 | #define tun_debug(level, tun, fmt, args...) \ |
| 81 | do { \ |
| 82 | if (tun->debug) \ |
| 83 | netdev_printk(level, tun->dev, fmt, ##args); \ |
| 84 | } while (0) |
| 85 | #define DBG1(level, fmt, args...) \ |
| 86 | do { \ |
| 87 | if (debug == 2) \ |
| 88 | printk(level fmt, ##args); \ |
| 89 | } while (0) |
Rusty Russell | 14daa02 | 2008-04-12 18:48:58 -0700 | [diff] [blame] | 90 | #else |
Joe Perches | 6b8a66e | 2011-03-02 07:18:10 +0000 | [diff] [blame] | 91 | #define tun_debug(level, tun, fmt, args...) \ |
| 92 | do { \ |
| 93 | if (0) \ |
| 94 | netdev_printk(level, tun->dev, fmt, ##args); \ |
| 95 | } while (0) |
| 96 | #define DBG1(level, fmt, args...) \ |
| 97 | do { \ |
| 98 | if (0) \ |
| 99 | printk(level fmt, ##args); \ |
| 100 | } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | #endif |
| 102 | |
Michael S. Tsirkin | 0690899 | 2012-07-20 09:23:23 +0000 | [diff] [blame] | 103 | #define GOODCOPY_LEN 128 |
| 104 | |
Max Krasnyansky | f271b2c | 2008-07-14 22:18:19 -0700 | [diff] [blame] | 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 | |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 112 | /* 1024 is probably a high enough limit: modern hypervisors seem to support on |
| 113 | * the order of 100-200 CPUs so this leaves us some breathing space if we want |
| 114 | * to match a queue per guest CPU. |
| 115 | */ |
| 116 | #define MAX_TAP_QUEUES 1024 |
| 117 | |
Jason Wang | 96442e42 | 2012-10-31 19:46:02 +0000 | [diff] [blame] | 118 | #define TUN_FLOW_EXPIRE (3 * HZ) |
| 119 | |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 120 | /* A tun_file connects an open character device to a tuntap netdevice. It |
| 121 | * also contains all socket related strctures (except sock_fprog and tap_filter) |
| 122 | * to serve as one transmit queue for tuntap device. The sock_fprog and |
| 123 | * tap_filter were kept in tun_struct since they were used for filtering for the |
Rami Rosen | 36fe8c09 | 2012-11-25 22:07:40 +0000 | [diff] [blame] | 124 | * netdevice not for a specific queue (at least I didn't see the requirement for |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 125 | * this). |
Jason Wang | 6e914fc | 2012-10-31 19:45:58 +0000 | [diff] [blame] | 126 | * |
| 127 | * RCU usage: |
Rami Rosen | 36fe8c09 | 2012-11-25 22:07:40 +0000 | [diff] [blame] | 128 | * The tun_file and tun_struct are loosely coupled, the pointer from one to the |
Jason Wang | 6e914fc | 2012-10-31 19:45:58 +0000 | [diff] [blame] | 129 | * other can only be read while rcu_read_lock or rtnl_lock is held. |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 130 | */ |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 131 | struct tun_file { |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 132 | struct sock sk; |
| 133 | struct socket socket; |
| 134 | struct socket_wq wq; |
Jason Wang | 6e914fc | 2012-10-31 19:45:58 +0000 | [diff] [blame] | 135 | struct tun_struct __rcu *tun; |
Eric W. Biederman | 36b50ba | 2009-01-20 11:01:48 +0000 | [diff] [blame] | 136 | struct net *net; |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 137 | struct fasync_struct *fasync; |
| 138 | /* only used for fasnyc */ |
| 139 | unsigned int flags; |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 140 | u16 queue_index; |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 141 | }; |
| 142 | |
Jason Wang | 96442e42 | 2012-10-31 19:46:02 +0000 | [diff] [blame] | 143 | struct tun_flow_entry { |
| 144 | struct hlist_node hash_link; |
| 145 | struct rcu_head rcu; |
| 146 | struct tun_struct *tun; |
| 147 | |
| 148 | u32 rxhash; |
| 149 | int queue_index; |
| 150 | unsigned long updated; |
| 151 | }; |
| 152 | |
| 153 | #define TUN_NUM_FLOW_ENTRIES 1024 |
| 154 | |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 155 | /* Since the socket were moved to tun_file, to preserve the behavior of persist |
Rami Rosen | 36fe8c09 | 2012-11-25 22:07:40 +0000 | [diff] [blame] | 156 | * device, socket filter, sndbuf and vnet header size were restore when the |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 157 | * file were attached to a persist device. |
| 158 | */ |
Rusty Russell | 14daa02 | 2008-04-12 18:48:58 -0700 | [diff] [blame] | 159 | struct tun_struct { |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 160 | struct tun_file __rcu *tfiles[MAX_TAP_QUEUES]; |
| 161 | unsigned int numqueues; |
Max Krasnyansky | f271b2c | 2008-07-14 22:18:19 -0700 | [diff] [blame] | 162 | unsigned int flags; |
Eric W. Biederman | 0625c88 | 2012-02-07 16:48:55 -0800 | [diff] [blame] | 163 | kuid_t owner; |
| 164 | kgid_t group; |
Rusty Russell | 14daa02 | 2008-04-12 18:48:58 -0700 | [diff] [blame] | 165 | |
Rusty Russell | 14daa02 | 2008-04-12 18:48:58 -0700 | [diff] [blame] | 166 | struct net_device *dev; |
Michał Mirosław | c8f44af | 2011-11-15 15:29:55 +0000 | [diff] [blame] | 167 | netdev_features_t set_features; |
Michał Mirosław | 8825537 | 2011-04-19 06:13:10 +0000 | [diff] [blame] | 168 | #define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \ |
| 169 | NETIF_F_TSO6|NETIF_F_UFO) |
Michael S. Tsirkin | d9d52b5 | 2010-03-17 17:45:01 +0200 | [diff] [blame] | 170 | |
| 171 | int vnet_hdr_sz; |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 172 | int sndbuf; |
| 173 | struct tap_filter txflt; |
| 174 | struct sock_fprog fprog; |
| 175 | /* protected by rtnl lock */ |
| 176 | bool filter_attached; |
Rusty Russell | 14daa02 | 2008-04-12 18:48:58 -0700 | [diff] [blame] | 177 | #ifdef TUN_DEBUG |
| 178 | int debug; |
| 179 | #endif |
Jason Wang | 96442e42 | 2012-10-31 19:46:02 +0000 | [diff] [blame] | 180 | spinlock_t lock; |
| 181 | struct kmem_cache *flow_cache; |
| 182 | struct hlist_head flows[TUN_NUM_FLOW_ENTRIES]; |
| 183 | struct timer_list flow_gc_timer; |
| 184 | unsigned long ageing_time; |
Rusty Russell | 14daa02 | 2008-04-12 18:48:58 -0700 | [diff] [blame] | 185 | }; |
| 186 | |
Jason Wang | 96442e42 | 2012-10-31 19:46:02 +0000 | [diff] [blame] | 187 | static inline u32 tun_hashfn(u32 rxhash) |
| 188 | { |
| 189 | return rxhash & 0x3ff; |
| 190 | } |
| 191 | |
| 192 | static struct tun_flow_entry *tun_flow_find(struct hlist_head *head, u32 rxhash) |
| 193 | { |
| 194 | struct tun_flow_entry *e; |
| 195 | struct hlist_node *n; |
| 196 | |
| 197 | hlist_for_each_entry_rcu(e, n, head, hash_link) { |
| 198 | if (e->rxhash == rxhash) |
| 199 | return e; |
| 200 | } |
| 201 | return NULL; |
| 202 | } |
| 203 | |
| 204 | static struct tun_flow_entry *tun_flow_create(struct tun_struct *tun, |
| 205 | struct hlist_head *head, |
| 206 | u32 rxhash, u16 queue_index) |
| 207 | { |
| 208 | struct tun_flow_entry *e = kmem_cache_alloc(tun->flow_cache, |
| 209 | GFP_ATOMIC); |
| 210 | if (e) { |
| 211 | tun_debug(KERN_INFO, tun, "create flow: hash %u index %u\n", |
| 212 | rxhash, queue_index); |
| 213 | e->updated = jiffies; |
| 214 | e->rxhash = rxhash; |
| 215 | e->queue_index = queue_index; |
| 216 | e->tun = tun; |
| 217 | hlist_add_head_rcu(&e->hash_link, head); |
| 218 | } |
| 219 | return e; |
| 220 | } |
| 221 | |
| 222 | static void tun_flow_free(struct rcu_head *head) |
| 223 | { |
| 224 | struct tun_flow_entry *e |
| 225 | = container_of(head, struct tun_flow_entry, rcu); |
| 226 | kmem_cache_free(e->tun->flow_cache, e); |
| 227 | } |
| 228 | |
| 229 | static void tun_flow_delete(struct tun_struct *tun, struct tun_flow_entry *e) |
| 230 | { |
| 231 | tun_debug(KERN_INFO, tun, "delete flow: hash %u index %u\n", |
| 232 | e->rxhash, e->queue_index); |
| 233 | hlist_del_rcu(&e->hash_link); |
| 234 | call_rcu(&e->rcu, tun_flow_free); |
| 235 | } |
| 236 | |
| 237 | static void tun_flow_flush(struct tun_struct *tun) |
| 238 | { |
| 239 | int i; |
| 240 | |
| 241 | spin_lock_bh(&tun->lock); |
| 242 | for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) { |
| 243 | struct tun_flow_entry *e; |
| 244 | struct hlist_node *h, *n; |
| 245 | |
| 246 | hlist_for_each_entry_safe(e, h, n, &tun->flows[i], hash_link) |
| 247 | tun_flow_delete(tun, e); |
| 248 | } |
| 249 | spin_unlock_bh(&tun->lock); |
| 250 | } |
| 251 | |
| 252 | static void tun_flow_delete_by_queue(struct tun_struct *tun, u16 queue_index) |
| 253 | { |
| 254 | int i; |
| 255 | |
| 256 | spin_lock_bh(&tun->lock); |
| 257 | for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) { |
| 258 | struct tun_flow_entry *e; |
| 259 | struct hlist_node *h, *n; |
| 260 | |
| 261 | hlist_for_each_entry_safe(e, h, n, &tun->flows[i], hash_link) { |
| 262 | if (e->queue_index == queue_index) |
| 263 | tun_flow_delete(tun, e); |
| 264 | } |
| 265 | } |
| 266 | spin_unlock_bh(&tun->lock); |
| 267 | } |
| 268 | |
| 269 | static void tun_flow_cleanup(unsigned long data) |
| 270 | { |
| 271 | struct tun_struct *tun = (struct tun_struct *)data; |
| 272 | unsigned long delay = tun->ageing_time; |
| 273 | unsigned long next_timer = jiffies + delay; |
| 274 | unsigned long count = 0; |
| 275 | int i; |
| 276 | |
| 277 | tun_debug(KERN_INFO, tun, "tun_flow_cleanup\n"); |
| 278 | |
| 279 | spin_lock_bh(&tun->lock); |
| 280 | for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) { |
| 281 | struct tun_flow_entry *e; |
| 282 | struct hlist_node *h, *n; |
| 283 | |
| 284 | hlist_for_each_entry_safe(e, h, n, &tun->flows[i], hash_link) { |
| 285 | unsigned long this_timer; |
| 286 | count++; |
| 287 | this_timer = e->updated + delay; |
| 288 | if (time_before_eq(this_timer, jiffies)) |
| 289 | tun_flow_delete(tun, e); |
| 290 | else if (time_before(this_timer, next_timer)) |
| 291 | next_timer = this_timer; |
| 292 | } |
| 293 | } |
| 294 | |
| 295 | if (count) |
| 296 | mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer)); |
| 297 | spin_unlock_bh(&tun->lock); |
| 298 | } |
| 299 | |
| 300 | static void tun_flow_update(struct tun_struct *tun, struct sk_buff *skb, |
| 301 | u16 queue_index) |
| 302 | { |
| 303 | struct hlist_head *head; |
| 304 | struct tun_flow_entry *e; |
| 305 | unsigned long delay = tun->ageing_time; |
| 306 | u32 rxhash = skb_get_rxhash(skb); |
| 307 | |
| 308 | if (!rxhash) |
| 309 | return; |
| 310 | else |
| 311 | head = &tun->flows[tun_hashfn(rxhash)]; |
| 312 | |
| 313 | rcu_read_lock(); |
| 314 | |
| 315 | if (tun->numqueues == 1) |
| 316 | goto unlock; |
| 317 | |
| 318 | e = tun_flow_find(head, rxhash); |
| 319 | if (likely(e)) { |
| 320 | /* TODO: keep queueing to old queue until it's empty? */ |
| 321 | e->queue_index = queue_index; |
| 322 | e->updated = jiffies; |
| 323 | } else { |
| 324 | spin_lock_bh(&tun->lock); |
| 325 | if (!tun_flow_find(head, rxhash)) |
| 326 | tun_flow_create(tun, head, rxhash, queue_index); |
| 327 | |
| 328 | if (!timer_pending(&tun->flow_gc_timer)) |
| 329 | mod_timer(&tun->flow_gc_timer, |
| 330 | round_jiffies_up(jiffies + delay)); |
| 331 | spin_unlock_bh(&tun->lock); |
| 332 | } |
| 333 | |
| 334 | unlock: |
| 335 | rcu_read_unlock(); |
| 336 | } |
| 337 | |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 338 | /* We try to identify a flow through its rxhash first. The reason that |
| 339 | * we do not check rxq no. is becuase some cards(e.g 82599), chooses |
| 340 | * the rxq based on the txq where the last packet of the flow comes. As |
| 341 | * the userspace application move between processors, we may get a |
| 342 | * different rxq no. here. If we could not get rxhash, then we would |
| 343 | * hope the rxq no. may help here. |
| 344 | */ |
| 345 | static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb) |
| 346 | { |
| 347 | struct tun_struct *tun = netdev_priv(dev); |
Jason Wang | 96442e42 | 2012-10-31 19:46:02 +0000 | [diff] [blame] | 348 | struct tun_flow_entry *e; |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 349 | u32 txq = 0; |
| 350 | u32 numqueues = 0; |
| 351 | |
| 352 | rcu_read_lock(); |
| 353 | numqueues = tun->numqueues; |
| 354 | |
| 355 | txq = skb_get_rxhash(skb); |
| 356 | if (txq) { |
Jason Wang | 96442e42 | 2012-10-31 19:46:02 +0000 | [diff] [blame] | 357 | e = tun_flow_find(&tun->flows[tun_hashfn(txq)], txq); |
| 358 | if (e) |
| 359 | txq = e->queue_index; |
| 360 | else |
| 361 | /* use multiply and shift instead of expensive divide */ |
| 362 | txq = ((u64)txq * numqueues) >> 32; |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 363 | } else if (likely(skb_rx_queue_recorded(skb))) { |
| 364 | txq = skb_get_rx_queue(skb); |
| 365 | while (unlikely(txq >= numqueues)) |
| 366 | txq -= numqueues; |
| 367 | } |
| 368 | |
| 369 | rcu_read_unlock(); |
| 370 | return txq; |
| 371 | } |
| 372 | |
Jason Wang | cde8b15 | 2012-10-31 19:46:01 +0000 | [diff] [blame] | 373 | static inline bool tun_not_capable(struct tun_struct *tun) |
| 374 | { |
| 375 | const struct cred *cred = current_cred(); |
Eric W. Biederman | c260b77 | 2012-11-18 21:34:11 +0000 | [diff] [blame] | 376 | struct net *net = dev_net(tun->dev); |
Jason Wang | cde8b15 | 2012-10-31 19:46:01 +0000 | [diff] [blame] | 377 | |
| 378 | return ((uid_valid(tun->owner) && !uid_eq(cred->euid, tun->owner)) || |
| 379 | (gid_valid(tun->group) && !in_egroup_p(tun->group))) && |
Eric W. Biederman | c260b77 | 2012-11-18 21:34:11 +0000 | [diff] [blame] | 380 | !ns_capable(net->user_ns, CAP_NET_ADMIN); |
Jason Wang | cde8b15 | 2012-10-31 19:46:01 +0000 | [diff] [blame] | 381 | } |
| 382 | |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 383 | static void tun_set_real_num_queues(struct tun_struct *tun) |
| 384 | { |
| 385 | netif_set_real_num_tx_queues(tun->dev, tun->numqueues); |
| 386 | netif_set_real_num_rx_queues(tun->dev, tun->numqueues); |
| 387 | } |
| 388 | |
| 389 | static void __tun_detach(struct tun_file *tfile, bool clean) |
| 390 | { |
| 391 | struct tun_file *ntfile; |
| 392 | struct tun_struct *tun; |
| 393 | struct net_device *dev; |
| 394 | |
| 395 | tun = rcu_dereference_protected(tfile->tun, |
| 396 | lockdep_rtnl_is_held()); |
| 397 | if (tun) { |
| 398 | u16 index = tfile->queue_index; |
| 399 | BUG_ON(index >= tun->numqueues); |
| 400 | dev = tun->dev; |
| 401 | |
| 402 | rcu_assign_pointer(tun->tfiles[index], |
| 403 | tun->tfiles[tun->numqueues - 1]); |
| 404 | rcu_assign_pointer(tfile->tun, NULL); |
| 405 | ntfile = rcu_dereference_protected(tun->tfiles[index], |
| 406 | lockdep_rtnl_is_held()); |
| 407 | ntfile->queue_index = index; |
| 408 | |
| 409 | --tun->numqueues; |
| 410 | sock_put(&tfile->sk); |
| 411 | |
| 412 | synchronize_net(); |
Jason Wang | 96442e42 | 2012-10-31 19:46:02 +0000 | [diff] [blame] | 413 | tun_flow_delete_by_queue(tun, tun->numqueues + 1); |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 414 | /* Drop read queue */ |
| 415 | skb_queue_purge(&tfile->sk.sk_receive_queue); |
| 416 | tun_set_real_num_queues(tun); |
| 417 | |
| 418 | if (tun->numqueues == 0 && !(tun->flags & TUN_PERSIST)) |
| 419 | if (dev->reg_state == NETREG_REGISTERED) |
| 420 | unregister_netdevice(dev); |
| 421 | } |
| 422 | |
| 423 | if (clean) { |
| 424 | BUG_ON(!test_bit(SOCK_EXTERNALLY_ALLOCATED, |
| 425 | &tfile->socket.flags)); |
| 426 | sk_release_kernel(&tfile->sk); |
| 427 | } |
| 428 | } |
| 429 | |
| 430 | static void tun_detach(struct tun_file *tfile, bool clean) |
| 431 | { |
| 432 | rtnl_lock(); |
| 433 | __tun_detach(tfile, clean); |
| 434 | rtnl_unlock(); |
| 435 | } |
| 436 | |
| 437 | static void tun_detach_all(struct net_device *dev) |
| 438 | { |
| 439 | struct tun_struct *tun = netdev_priv(dev); |
| 440 | struct tun_file *tfile; |
| 441 | int i, n = tun->numqueues; |
| 442 | |
| 443 | for (i = 0; i < n; i++) { |
| 444 | tfile = rcu_dereference_protected(tun->tfiles[i], |
| 445 | lockdep_rtnl_is_held()); |
| 446 | BUG_ON(!tfile); |
| 447 | wake_up_all(&tfile->wq.wait); |
| 448 | rcu_assign_pointer(tfile->tun, NULL); |
| 449 | --tun->numqueues; |
| 450 | } |
| 451 | BUG_ON(tun->numqueues != 0); |
| 452 | |
| 453 | synchronize_net(); |
| 454 | for (i = 0; i < n; i++) { |
| 455 | tfile = rcu_dereference_protected(tun->tfiles[i], |
| 456 | lockdep_rtnl_is_held()); |
| 457 | /* Drop read queue */ |
| 458 | skb_queue_purge(&tfile->sk.sk_receive_queue); |
| 459 | sock_put(&tfile->sk); |
| 460 | } |
| 461 | } |
| 462 | |
Eric W. Biederman | a7385ba | 2009-01-20 10:57:48 +0000 | [diff] [blame] | 463 | static int tun_attach(struct tun_struct *tun, struct file *file) |
| 464 | { |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 465 | struct tun_file *tfile = file->private_data; |
Eric W. Biederman | 38231b7 | 2009-01-20 11:02:28 +0000 | [diff] [blame] | 466 | int err; |
Eric W. Biederman | a7385ba | 2009-01-20 10:57:48 +0000 | [diff] [blame] | 467 | |
Eric W. Biederman | 38231b7 | 2009-01-20 11:02:28 +0000 | [diff] [blame] | 468 | err = -EINVAL; |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 469 | if (rcu_dereference_protected(tfile->tun, lockdep_rtnl_is_held())) |
Eric W. Biederman | 38231b7 | 2009-01-20 11:02:28 +0000 | [diff] [blame] | 470 | goto out; |
| 471 | |
| 472 | err = -EBUSY; |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 473 | if (!(tun->flags & TUN_TAP_MQ) && tun->numqueues == 1) |
| 474 | goto out; |
| 475 | |
| 476 | err = -E2BIG; |
| 477 | if (tun->numqueues == MAX_TAP_QUEUES) |
Eric W. Biederman | 38231b7 | 2009-01-20 11:02:28 +0000 | [diff] [blame] | 478 | goto out; |
| 479 | |
| 480 | err = 0; |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 481 | |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 482 | /* Re-attach the filter to presist device */ |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 483 | if (tun->filter_attached == true) { |
| 484 | err = sk_attach_filter(&tun->fprog, tfile->socket.sk); |
| 485 | if (!err) |
| 486 | goto out; |
| 487 | } |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 488 | tfile->queue_index = tun->numqueues; |
Jason Wang | 6e914fc | 2012-10-31 19:45:58 +0000 | [diff] [blame] | 489 | rcu_assign_pointer(tfile->tun, tun); |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 490 | rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile); |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 491 | sock_hold(&tfile->sk); |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 492 | tun->numqueues++; |
| 493 | |
| 494 | tun_set_real_num_queues(tun); |
| 495 | |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 496 | /* device is allowed to go away first, so no need to hold extra |
| 497 | * refcnt. |
| 498 | */ |
Eric W. Biederman | a7385ba | 2009-01-20 10:57:48 +0000 | [diff] [blame] | 499 | |
Eric W. Biederman | 38231b7 | 2009-01-20 11:02:28 +0000 | [diff] [blame] | 500 | out: |
Eric W. Biederman | 38231b7 | 2009-01-20 11:02:28 +0000 | [diff] [blame] | 501 | return err; |
Eric W. Biederman | a7385ba | 2009-01-20 10:57:48 +0000 | [diff] [blame] | 502 | } |
| 503 | |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 504 | static struct tun_struct *__tun_get(struct tun_file *tfile) |
| 505 | { |
Jason Wang | 6e914fc | 2012-10-31 19:45:58 +0000 | [diff] [blame] | 506 | struct tun_struct *tun; |
Eric W. Biederman | c70f182 | 2009-01-20 11:07:17 +0000 | [diff] [blame] | 507 | |
Jason Wang | 6e914fc | 2012-10-31 19:45:58 +0000 | [diff] [blame] | 508 | rcu_read_lock(); |
| 509 | tun = rcu_dereference(tfile->tun); |
| 510 | if (tun) |
| 511 | dev_hold(tun->dev); |
| 512 | rcu_read_unlock(); |
Eric W. Biederman | c70f182 | 2009-01-20 11:07:17 +0000 | [diff] [blame] | 513 | |
| 514 | return tun; |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 515 | } |
| 516 | |
| 517 | static struct tun_struct *tun_get(struct file *file) |
| 518 | { |
| 519 | return __tun_get(file->private_data); |
| 520 | } |
| 521 | |
| 522 | static void tun_put(struct tun_struct *tun) |
| 523 | { |
Jason Wang | 6e914fc | 2012-10-31 19:45:58 +0000 | [diff] [blame] | 524 | dev_put(tun->dev); |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 525 | } |
| 526 | |
Joe Perches | 6b8a66e | 2011-03-02 07:18:10 +0000 | [diff] [blame] | 527 | /* TAP filtering */ |
Max Krasnyansky | f271b2c | 2008-07-14 22:18:19 -0700 | [diff] [blame] | 528 | static void addr_hash_set(u32 *mask, const u8 *addr) |
| 529 | { |
| 530 | int n = ether_crc(ETH_ALEN, addr) >> 26; |
| 531 | mask[n >> 5] |= (1 << (n & 31)); |
| 532 | } |
| 533 | |
| 534 | static unsigned int addr_hash_test(const u32 *mask, const u8 *addr) |
| 535 | { |
| 536 | int n = ether_crc(ETH_ALEN, addr) >> 26; |
| 537 | return mask[n >> 5] & (1 << (n & 31)); |
| 538 | } |
| 539 | |
| 540 | static int update_filter(struct tap_filter *filter, void __user *arg) |
| 541 | { |
| 542 | struct { u8 u[ETH_ALEN]; } *addr; |
| 543 | struct tun_filter uf; |
| 544 | int err, alen, n, nexact; |
| 545 | |
| 546 | if (copy_from_user(&uf, arg, sizeof(uf))) |
| 547 | return -EFAULT; |
| 548 | |
| 549 | if (!uf.count) { |
| 550 | /* Disabled */ |
| 551 | filter->count = 0; |
| 552 | return 0; |
| 553 | } |
| 554 | |
| 555 | alen = ETH_ALEN * uf.count; |
| 556 | addr = kmalloc(alen, GFP_KERNEL); |
| 557 | if (!addr) |
| 558 | return -ENOMEM; |
| 559 | |
| 560 | if (copy_from_user(addr, arg + sizeof(uf), alen)) { |
| 561 | err = -EFAULT; |
| 562 | goto done; |
| 563 | } |
| 564 | |
| 565 | /* The filter is updated without holding any locks. Which is |
| 566 | * perfectly safe. We disable it first and in the worst |
| 567 | * case we'll accept a few undesired packets. */ |
| 568 | filter->count = 0; |
| 569 | wmb(); |
| 570 | |
| 571 | /* Use first set of addresses as an exact filter */ |
| 572 | for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++) |
| 573 | memcpy(filter->addr[n], addr[n].u, ETH_ALEN); |
| 574 | |
| 575 | nexact = n; |
| 576 | |
Alex Williamson | cfbf84f | 2009-02-08 17:49:17 -0800 | [diff] [blame] | 577 | /* Remaining multicast addresses are hashed, |
| 578 | * unicast will leave the filter disabled. */ |
Max Krasnyansky | f271b2c | 2008-07-14 22:18:19 -0700 | [diff] [blame] | 579 | memset(filter->mask, 0, sizeof(filter->mask)); |
Alex Williamson | cfbf84f | 2009-02-08 17:49:17 -0800 | [diff] [blame] | 580 | for (; n < uf.count; n++) { |
| 581 | if (!is_multicast_ether_addr(addr[n].u)) { |
| 582 | err = 0; /* no filter */ |
| 583 | goto done; |
| 584 | } |
Max Krasnyansky | f271b2c | 2008-07-14 22:18:19 -0700 | [diff] [blame] | 585 | addr_hash_set(filter->mask, addr[n].u); |
Alex Williamson | cfbf84f | 2009-02-08 17:49:17 -0800 | [diff] [blame] | 586 | } |
Max Krasnyansky | f271b2c | 2008-07-14 22:18:19 -0700 | [diff] [blame] | 587 | |
| 588 | /* For ALLMULTI just set the mask to all ones. |
| 589 | * This overrides the mask populated above. */ |
| 590 | if ((uf.flags & TUN_FLT_ALLMULTI)) |
| 591 | memset(filter->mask, ~0, sizeof(filter->mask)); |
| 592 | |
| 593 | /* Now enable the filter */ |
| 594 | wmb(); |
| 595 | filter->count = nexact; |
| 596 | |
| 597 | /* Return the number of exact filters */ |
| 598 | err = nexact; |
| 599 | |
| 600 | done: |
| 601 | kfree(addr); |
| 602 | return err; |
| 603 | } |
| 604 | |
| 605 | /* Returns: 0 - drop, !=0 - accept */ |
| 606 | static int run_filter(struct tap_filter *filter, const struct sk_buff *skb) |
| 607 | { |
| 608 | /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect |
| 609 | * at this point. */ |
| 610 | struct ethhdr *eh = (struct ethhdr *) skb->data; |
| 611 | int i; |
| 612 | |
| 613 | /* Exact match */ |
| 614 | for (i = 0; i < filter->count; i++) |
Joe Perches | 2e42e47 | 2012-05-09 17:17:46 +0000 | [diff] [blame] | 615 | if (ether_addr_equal(eh->h_dest, filter->addr[i])) |
Max Krasnyansky | f271b2c | 2008-07-14 22:18:19 -0700 | [diff] [blame] | 616 | return 1; |
| 617 | |
| 618 | /* Inexact match (multicast only) */ |
| 619 | if (is_multicast_ether_addr(eh->h_dest)) |
| 620 | return addr_hash_test(filter->mask, eh->h_dest); |
| 621 | |
| 622 | return 0; |
| 623 | } |
| 624 | |
| 625 | /* |
| 626 | * Checks whether the packet is accepted or not. |
| 627 | * Returns: 0 - drop, !=0 - accept |
| 628 | */ |
| 629 | static int check_filter(struct tap_filter *filter, const struct sk_buff *skb) |
| 630 | { |
| 631 | if (!filter->count) |
| 632 | return 1; |
| 633 | |
| 634 | return run_filter(filter, skb); |
| 635 | } |
| 636 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | /* Network device part of the driver */ |
| 638 | |
Jeff Garzik | 7282d49 | 2006-09-13 14:30:00 -0400 | [diff] [blame] | 639 | static const struct ethtool_ops tun_ethtool_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | |
Eric W. Biederman | c70f182 | 2009-01-20 11:07:17 +0000 | [diff] [blame] | 641 | /* Net device detach from fd. */ |
| 642 | static void tun_net_uninit(struct net_device *dev) |
| 643 | { |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 644 | tun_detach_all(dev); |
Eric W. Biederman | c70f182 | 2009-01-20 11:07:17 +0000 | [diff] [blame] | 645 | } |
| 646 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | /* Net device open. */ |
| 648 | static int tun_net_open(struct net_device *dev) |
| 649 | { |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 650 | netif_tx_start_all_queues(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | return 0; |
| 652 | } |
| 653 | |
| 654 | /* Net device close. */ |
| 655 | static int tun_net_close(struct net_device *dev) |
| 656 | { |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 657 | netif_tx_stop_all_queues(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | return 0; |
| 659 | } |
| 660 | |
| 661 | /* Net device start xmit */ |
Stephen Hemminger | 424efe9 | 2009-08-31 19:50:51 +0000 | [diff] [blame] | 662 | static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | { |
| 664 | struct tun_struct *tun = netdev_priv(dev); |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 665 | int txq = skb->queue_mapping; |
Jason Wang | 6e914fc | 2012-10-31 19:45:58 +0000 | [diff] [blame] | 666 | struct tun_file *tfile; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | |
Jason Wang | 6e914fc | 2012-10-31 19:45:58 +0000 | [diff] [blame] | 668 | rcu_read_lock(); |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 669 | tfile = rcu_dereference(tun->tfiles[txq]); |
| 670 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | /* Drop packet if interface is not attached */ |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 672 | if (txq >= tun->numqueues) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | goto drop; |
| 674 | |
Jason Wang | 6e914fc | 2012-10-31 19:45:58 +0000 | [diff] [blame] | 675 | tun_debug(KERN_INFO, tun, "tun_net_xmit %d\n", skb->len); |
| 676 | |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 677 | BUG_ON(!tfile); |
| 678 | |
Max Krasnyansky | f271b2c | 2008-07-14 22:18:19 -0700 | [diff] [blame] | 679 | /* Drop if the filter does not like it. |
| 680 | * This is a noop if the filter is disabled. |
| 681 | * Filter can be enabled only for the TAP devices. */ |
| 682 | if (!check_filter(&tun->txflt, skb)) |
| 683 | goto drop; |
| 684 | |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 685 | if (tfile->socket.sk->sk_filter && |
| 686 | sk_filter(tfile->socket.sk, skb)) |
Michael S. Tsirkin | 9940516 | 2010-02-14 01:01:10 +0000 | [diff] [blame] | 687 | goto drop; |
| 688 | |
Rami Rosen | 36fe8c09 | 2012-11-25 22:07:40 +0000 | [diff] [blame] | 689 | /* Limit the number of packets queued by dividing txq length with the |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 690 | * number of queues. |
| 691 | */ |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 692 | if (skb_queue_len(&tfile->socket.sk->sk_receive_queue) |
Michael S. Tsirkin | 5d09710 | 2012-12-03 10:07:14 +0000 | [diff] [blame^] | 693 | >= dev->tx_queue_len / tun->numqueues) |
| 694 | goto drop; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | |
Michael S. Tsirkin | 0110d6f | 2010-04-13 04:59:44 +0000 | [diff] [blame] | 696 | /* Orphan the skb - required as we might hang on to it |
| 697 | * for indefinite time. */ |
Michael S. Tsirkin | 868eefe | 2012-07-20 09:23:14 +0000 | [diff] [blame] | 698 | if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC))) |
| 699 | goto drop; |
Michael S. Tsirkin | 0110d6f | 2010-04-13 04:59:44 +0000 | [diff] [blame] | 700 | skb_orphan(skb); |
| 701 | |
Max Krasnyansky | f271b2c | 2008-07-14 22:18:19 -0700 | [diff] [blame] | 702 | /* Enqueue packet */ |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 703 | skb_queue_tail(&tfile->socket.sk->sk_receive_queue, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | |
| 705 | /* Notify and wake up reader process */ |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 706 | if (tfile->flags & TUN_FASYNC) |
| 707 | kill_fasync(&tfile->fasync, SIGIO, POLL_IN); |
| 708 | wake_up_interruptible_poll(&tfile->wq.wait, POLLIN | |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 709 | POLLRDNORM | POLLRDBAND); |
Jason Wang | 6e914fc | 2012-10-31 19:45:58 +0000 | [diff] [blame] | 710 | |
| 711 | rcu_read_unlock(); |
Patrick McHardy | 6ed1065 | 2009-06-23 06:03:08 +0000 | [diff] [blame] | 712 | return NETDEV_TX_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | |
| 714 | drop: |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 715 | dev->stats.tx_dropped++; |
Michael S. Tsirkin | 149d36f | 2012-11-01 09:16:32 +0000 | [diff] [blame] | 716 | skb_tx_error(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | kfree_skb(skb); |
Jason Wang | 6e914fc | 2012-10-31 19:45:58 +0000 | [diff] [blame] | 718 | rcu_read_unlock(); |
Patrick McHardy | 6ed1065 | 2009-06-23 06:03:08 +0000 | [diff] [blame] | 719 | return NETDEV_TX_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | } |
| 721 | |
Max Krasnyansky | f271b2c | 2008-07-14 22:18:19 -0700 | [diff] [blame] | 722 | static void tun_net_mclist(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | { |
Max Krasnyansky | f271b2c | 2008-07-14 22:18:19 -0700 | [diff] [blame] | 724 | /* |
| 725 | * This callback is supposed to deal with mc filter in |
| 726 | * _rx_ path and has nothing to do with the _tx_ path. |
| 727 | * In rx path we always accept everything userspace gives us. |
| 728 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | } |
| 730 | |
Ed Swierk | 4885a50 | 2007-09-16 12:21:38 -0700 | [diff] [blame] | 731 | #define MIN_MTU 68 |
| 732 | #define MAX_MTU 65535 |
| 733 | |
| 734 | static int |
| 735 | tun_net_change_mtu(struct net_device *dev, int new_mtu) |
| 736 | { |
| 737 | if (new_mtu < MIN_MTU || new_mtu + dev->hard_header_len > MAX_MTU) |
| 738 | return -EINVAL; |
| 739 | dev->mtu = new_mtu; |
| 740 | return 0; |
| 741 | } |
| 742 | |
Michał Mirosław | c8f44af | 2011-11-15 15:29:55 +0000 | [diff] [blame] | 743 | static netdev_features_t tun_net_fix_features(struct net_device *dev, |
| 744 | netdev_features_t features) |
Michał Mirosław | 8825537 | 2011-04-19 06:13:10 +0000 | [diff] [blame] | 745 | { |
| 746 | struct tun_struct *tun = netdev_priv(dev); |
| 747 | |
| 748 | return (features & tun->set_features) | (features & ~TUN_USER_FEATURES); |
| 749 | } |
Neil Horman | bebd097 | 2011-06-15 05:25:01 +0000 | [diff] [blame] | 750 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 751 | static void tun_poll_controller(struct net_device *dev) |
| 752 | { |
| 753 | /* |
| 754 | * Tun only receives frames when: |
| 755 | * 1) the char device endpoint gets data from user space |
| 756 | * 2) the tun socket gets a sendmsg call from user space |
| 757 | * Since both of those are syncronous operations, we are guaranteed |
| 758 | * never to have pending data when we poll for it |
| 759 | * so theres nothing to do here but return. |
| 760 | * We need this though so netpoll recognizes us as an interface that |
| 761 | * supports polling, which enables bridge devices in virt setups to |
| 762 | * still use netconsole |
| 763 | */ |
| 764 | return; |
| 765 | } |
| 766 | #endif |
Stephen Hemminger | 758e43b | 2008-11-19 22:10:37 -0800 | [diff] [blame] | 767 | static const struct net_device_ops tun_netdev_ops = { |
Eric W. Biederman | c70f182 | 2009-01-20 11:07:17 +0000 | [diff] [blame] | 768 | .ndo_uninit = tun_net_uninit, |
Stephen Hemminger | 758e43b | 2008-11-19 22:10:37 -0800 | [diff] [blame] | 769 | .ndo_open = tun_net_open, |
| 770 | .ndo_stop = tun_net_close, |
Stephen Hemminger | 0082982 | 2008-11-20 20:14:53 -0800 | [diff] [blame] | 771 | .ndo_start_xmit = tun_net_xmit, |
Stephen Hemminger | 758e43b | 2008-11-19 22:10:37 -0800 | [diff] [blame] | 772 | .ndo_change_mtu = tun_net_change_mtu, |
Michał Mirosław | 8825537 | 2011-04-19 06:13:10 +0000 | [diff] [blame] | 773 | .ndo_fix_features = tun_net_fix_features, |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 774 | .ndo_select_queue = tun_select_queue, |
Neil Horman | bebd097 | 2011-06-15 05:25:01 +0000 | [diff] [blame] | 775 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 776 | .ndo_poll_controller = tun_poll_controller, |
| 777 | #endif |
Stephen Hemminger | 758e43b | 2008-11-19 22:10:37 -0800 | [diff] [blame] | 778 | }; |
| 779 | |
| 780 | static const struct net_device_ops tap_netdev_ops = { |
Eric W. Biederman | c70f182 | 2009-01-20 11:07:17 +0000 | [diff] [blame] | 781 | .ndo_uninit = tun_net_uninit, |
Stephen Hemminger | 758e43b | 2008-11-19 22:10:37 -0800 | [diff] [blame] | 782 | .ndo_open = tun_net_open, |
| 783 | .ndo_stop = tun_net_close, |
Stephen Hemminger | 0082982 | 2008-11-20 20:14:53 -0800 | [diff] [blame] | 784 | .ndo_start_xmit = tun_net_xmit, |
Stephen Hemminger | 758e43b | 2008-11-19 22:10:37 -0800 | [diff] [blame] | 785 | .ndo_change_mtu = tun_net_change_mtu, |
Michał Mirosław | 8825537 | 2011-04-19 06:13:10 +0000 | [diff] [blame] | 786 | .ndo_fix_features = tun_net_fix_features, |
Jiri Pirko | afc4b13 | 2011-08-16 06:29:01 +0000 | [diff] [blame] | 787 | .ndo_set_rx_mode = tun_net_mclist, |
Stephen Hemminger | 758e43b | 2008-11-19 22:10:37 -0800 | [diff] [blame] | 788 | .ndo_set_mac_address = eth_mac_addr, |
| 789 | .ndo_validate_addr = eth_validate_addr, |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 790 | .ndo_select_queue = tun_select_queue, |
Neil Horman | bebd097 | 2011-06-15 05:25:01 +0000 | [diff] [blame] | 791 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 792 | .ndo_poll_controller = tun_poll_controller, |
| 793 | #endif |
Stephen Hemminger | 758e43b | 2008-11-19 22:10:37 -0800 | [diff] [blame] | 794 | }; |
| 795 | |
Jason Wang | 96442e42 | 2012-10-31 19:46:02 +0000 | [diff] [blame] | 796 | static int tun_flow_init(struct tun_struct *tun) |
| 797 | { |
| 798 | int i; |
| 799 | |
| 800 | tun->flow_cache = kmem_cache_create("tun_flow_cache", |
| 801 | sizeof(struct tun_flow_entry), 0, 0, |
| 802 | NULL); |
| 803 | if (!tun->flow_cache) |
| 804 | return -ENOMEM; |
| 805 | |
| 806 | for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) |
| 807 | INIT_HLIST_HEAD(&tun->flows[i]); |
| 808 | |
| 809 | tun->ageing_time = TUN_FLOW_EXPIRE; |
| 810 | setup_timer(&tun->flow_gc_timer, tun_flow_cleanup, (unsigned long)tun); |
| 811 | mod_timer(&tun->flow_gc_timer, |
| 812 | round_jiffies_up(jiffies + tun->ageing_time)); |
| 813 | |
| 814 | return 0; |
| 815 | } |
| 816 | |
| 817 | static void tun_flow_uninit(struct tun_struct *tun) |
| 818 | { |
| 819 | del_timer_sync(&tun->flow_gc_timer); |
| 820 | tun_flow_flush(tun); |
| 821 | |
| 822 | /* Wait for completion of call_rcu()'s */ |
| 823 | rcu_barrier(); |
| 824 | kmem_cache_destroy(tun->flow_cache); |
| 825 | } |
| 826 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | /* Initialize net device. */ |
| 828 | static void tun_net_init(struct net_device *dev) |
| 829 | { |
| 830 | struct tun_struct *tun = netdev_priv(dev); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 831 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | switch (tun->flags & TUN_TYPE_MASK) { |
| 833 | case TUN_TUN_DEV: |
Stephen Hemminger | 758e43b | 2008-11-19 22:10:37 -0800 | [diff] [blame] | 834 | dev->netdev_ops = &tun_netdev_ops; |
| 835 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | /* Point-to-Point TUN Device */ |
| 837 | dev->hard_header_len = 0; |
| 838 | dev->addr_len = 0; |
| 839 | dev->mtu = 1500; |
| 840 | |
| 841 | /* Zero header length */ |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 842 | dev->type = ARPHRD_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST; |
| 844 | dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */ |
| 845 | break; |
| 846 | |
| 847 | case TUN_TAP_DEV: |
Kusanagi Kouichi | 7a0a960 | 2008-12-29 18:23:28 -0800 | [diff] [blame] | 848 | dev->netdev_ops = &tap_netdev_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | /* Ethernet TAP Device */ |
Max Krasnyansky | f271b2c | 2008-07-14 22:18:19 -0700 | [diff] [blame] | 850 | ether_setup(dev); |
Neil Horman | 550fd08 | 2011-07-26 06:05:38 +0000 | [diff] [blame] | 851 | dev->priv_flags &= ~IFF_TX_SKB_SHARING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | |
Danny Kukawka | f2cedb6 | 2012-02-15 06:45:39 +0000 | [diff] [blame] | 853 | eth_hw_addr_random(dev); |
Brian Braunstein | 36226a8 | 2007-04-26 01:00:55 -0700 | [diff] [blame] | 854 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | dev->tx_queue_len = TUN_READQ_SIZE; /* We prefer our own queue length */ |
| 856 | break; |
| 857 | } |
| 858 | } |
| 859 | |
| 860 | /* Character device part */ |
| 861 | |
| 862 | /* Poll */ |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 863 | static unsigned int tun_chr_poll(struct file *file, poll_table *wait) |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 864 | { |
Eric W. Biederman | b2430de | 2009-01-20 11:03:21 +0000 | [diff] [blame] | 865 | struct tun_file *tfile = file->private_data; |
| 866 | struct tun_struct *tun = __tun_get(tfile); |
Mariusz Kozlowski | 3c8a9c6 | 2009-07-05 19:48:35 +0000 | [diff] [blame] | 867 | struct sock *sk; |
Herbert Xu | 33dccbb | 2009-02-05 21:25:32 -0800 | [diff] [blame] | 868 | unsigned int mask = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | |
| 870 | if (!tun) |
Eric W. Biederman | eac9e90 | 2009-01-20 10:59:05 +0000 | [diff] [blame] | 871 | return POLLERR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 873 | sk = tfile->socket.sk; |
Mariusz Kozlowski | 3c8a9c6 | 2009-07-05 19:48:35 +0000 | [diff] [blame] | 874 | |
Joe Perches | 6b8a66e | 2011-03-02 07:18:10 +0000 | [diff] [blame] | 875 | tun_debug(KERN_INFO, tun, "tun_chr_poll\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 877 | poll_wait(file, &tfile->wq.wait, wait); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 878 | |
Michael S. Tsirkin | 89f56d1 | 2009-08-30 07:04:42 +0000 | [diff] [blame] | 879 | if (!skb_queue_empty(&sk->sk_receive_queue)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | mask |= POLLIN | POLLRDNORM; |
| 881 | |
Herbert Xu | 33dccbb | 2009-02-05 21:25:32 -0800 | [diff] [blame] | 882 | if (sock_writeable(sk) || |
| 883 | (!test_and_set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags) && |
| 884 | sock_writeable(sk))) |
| 885 | mask |= POLLOUT | POLLWRNORM; |
| 886 | |
Eric W. Biederman | c70f182 | 2009-01-20 11:07:17 +0000 | [diff] [blame] | 887 | if (tun->dev->reg_state != NETREG_REGISTERED) |
| 888 | mask = POLLERR; |
| 889 | |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 890 | tun_put(tun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | return mask; |
| 892 | } |
| 893 | |
Rusty Russell | f42157c | 2008-08-15 15:15:10 -0700 | [diff] [blame] | 894 | /* prepad is the amount to reserve at front. len is length after that. |
| 895 | * linear is a hint as to how much to copy (usually headers). */ |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 896 | static struct sk_buff *tun_alloc_skb(struct tun_file *tfile, |
stephen hemminger | 6f7c156 | 2011-06-08 14:33:08 +0000 | [diff] [blame] | 897 | size_t prepad, size_t len, |
| 898 | size_t linear, int noblock) |
Rusty Russell | f42157c | 2008-08-15 15:15:10 -0700 | [diff] [blame] | 899 | { |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 900 | struct sock *sk = tfile->socket.sk; |
Rusty Russell | f42157c | 2008-08-15 15:15:10 -0700 | [diff] [blame] | 901 | struct sk_buff *skb; |
Herbert Xu | 33dccbb | 2009-02-05 21:25:32 -0800 | [diff] [blame] | 902 | int err; |
Rusty Russell | f42157c | 2008-08-15 15:15:10 -0700 | [diff] [blame] | 903 | |
| 904 | /* Under a page? Don't bother with paged skb. */ |
Herbert Xu | 0eca93b | 2009-04-14 02:09:43 -0700 | [diff] [blame] | 905 | if (prepad + len < PAGE_SIZE || !linear) |
Herbert Xu | 33dccbb | 2009-02-05 21:25:32 -0800 | [diff] [blame] | 906 | linear = len; |
Rusty Russell | f42157c | 2008-08-15 15:15:10 -0700 | [diff] [blame] | 907 | |
Herbert Xu | 33dccbb | 2009-02-05 21:25:32 -0800 | [diff] [blame] | 908 | skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock, |
| 909 | &err); |
Rusty Russell | f42157c | 2008-08-15 15:15:10 -0700 | [diff] [blame] | 910 | if (!skb) |
Herbert Xu | 33dccbb | 2009-02-05 21:25:32 -0800 | [diff] [blame] | 911 | return ERR_PTR(err); |
Rusty Russell | f42157c | 2008-08-15 15:15:10 -0700 | [diff] [blame] | 912 | |
| 913 | skb_reserve(skb, prepad); |
| 914 | skb_put(skb, linear); |
Herbert Xu | 33dccbb | 2009-02-05 21:25:32 -0800 | [diff] [blame] | 915 | skb->data_len = len - linear; |
| 916 | skb->len += len - linear; |
Rusty Russell | f42157c | 2008-08-15 15:15:10 -0700 | [diff] [blame] | 917 | |
| 918 | return skb; |
| 919 | } |
| 920 | |
Michael S. Tsirkin | 0690899 | 2012-07-20 09:23:23 +0000 | [diff] [blame] | 921 | /* set skb frags from iovec, this can move to core network code for reuse */ |
| 922 | static int zerocopy_sg_from_iovec(struct sk_buff *skb, const struct iovec *from, |
| 923 | int offset, size_t count) |
| 924 | { |
| 925 | int len = iov_length(from, count) - offset; |
| 926 | int copy = skb_headlen(skb); |
| 927 | int size, offset1 = 0; |
| 928 | int i = 0; |
| 929 | |
| 930 | /* Skip over from offset */ |
| 931 | while (count && (offset >= from->iov_len)) { |
| 932 | offset -= from->iov_len; |
| 933 | ++from; |
| 934 | --count; |
| 935 | } |
| 936 | |
| 937 | /* copy up to skb headlen */ |
| 938 | while (count && (copy > 0)) { |
| 939 | size = min_t(unsigned int, copy, from->iov_len - offset); |
| 940 | if (copy_from_user(skb->data + offset1, from->iov_base + offset, |
| 941 | size)) |
| 942 | return -EFAULT; |
| 943 | if (copy > size) { |
| 944 | ++from; |
| 945 | --count; |
| 946 | offset = 0; |
| 947 | } else |
| 948 | offset += size; |
| 949 | copy -= size; |
| 950 | offset1 += size; |
| 951 | } |
| 952 | |
| 953 | if (len == offset1) |
| 954 | return 0; |
| 955 | |
| 956 | while (count--) { |
| 957 | struct page *page[MAX_SKB_FRAGS]; |
| 958 | int num_pages; |
| 959 | unsigned long base; |
| 960 | unsigned long truesize; |
| 961 | |
| 962 | len = from->iov_len - offset; |
| 963 | if (!len) { |
| 964 | offset = 0; |
| 965 | ++from; |
| 966 | continue; |
| 967 | } |
| 968 | base = (unsigned long)from->iov_base + offset; |
| 969 | size = ((base & ~PAGE_MASK) + len + ~PAGE_MASK) >> PAGE_SHIFT; |
| 970 | if (i + size > MAX_SKB_FRAGS) |
| 971 | return -EMSGSIZE; |
| 972 | num_pages = get_user_pages_fast(base, size, 0, &page[i]); |
| 973 | if (num_pages != size) { |
| 974 | for (i = 0; i < num_pages; i++) |
| 975 | put_page(page[i]); |
| 976 | return -EFAULT; |
| 977 | } |
| 978 | truesize = size * PAGE_SIZE; |
| 979 | skb->data_len += len; |
| 980 | skb->len += len; |
| 981 | skb->truesize += truesize; |
| 982 | atomic_add(truesize, &skb->sk->sk_wmem_alloc); |
| 983 | while (len) { |
| 984 | int off = base & ~PAGE_MASK; |
| 985 | int size = min_t(int, len, PAGE_SIZE - off); |
| 986 | __skb_fill_page_desc(skb, i, page[i], off, size); |
| 987 | skb_shinfo(skb)->nr_frags++; |
| 988 | /* increase sk_wmem_alloc */ |
| 989 | base += size; |
| 990 | len -= size; |
| 991 | i++; |
| 992 | } |
| 993 | offset = 0; |
| 994 | ++from; |
| 995 | } |
| 996 | return 0; |
| 997 | } |
| 998 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | /* Get packet from user space buffer */ |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1000 | static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile, |
| 1001 | void *msg_control, const struct iovec *iv, |
| 1002 | size_t total_len, size_t count, int noblock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | { |
Harvey Harrison | 09640e6 | 2009-02-01 00:45:17 -0800 | [diff] [blame] | 1004 | struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | struct sk_buff *skb; |
Michael S. Tsirkin | 0690899 | 2012-07-20 09:23:23 +0000 | [diff] [blame] | 1006 | size_t len = total_len, align = NET_SKB_PAD; |
Rusty Russell | f43798c | 2008-07-03 03:48:02 -0700 | [diff] [blame] | 1007 | struct virtio_net_hdr gso = { 0 }; |
Michael S. Tsirkin | 6f26c9a | 2009-04-20 01:26:11 +0000 | [diff] [blame] | 1008 | int offset = 0; |
Michael S. Tsirkin | 0690899 | 2012-07-20 09:23:23 +0000 | [diff] [blame] | 1009 | int copylen; |
| 1010 | bool zerocopy = false; |
| 1011 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | |
| 1013 | if (!(tun->flags & TUN_NO_PI)) { |
Michael S. Tsirkin | 0690899 | 2012-07-20 09:23:23 +0000 | [diff] [blame] | 1014 | if ((len -= sizeof(pi)) > total_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | return -EINVAL; |
| 1016 | |
Michael S. Tsirkin | 6f26c9a | 2009-04-20 01:26:11 +0000 | [diff] [blame] | 1017 | if (memcpy_fromiovecend((void *)&pi, iv, 0, sizeof(pi))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | return -EFAULT; |
Michael S. Tsirkin | 6f26c9a | 2009-04-20 01:26:11 +0000 | [diff] [blame] | 1019 | offset += sizeof(pi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | } |
| 1021 | |
Rusty Russell | f43798c | 2008-07-03 03:48:02 -0700 | [diff] [blame] | 1022 | if (tun->flags & TUN_VNET_HDR) { |
Michael S. Tsirkin | 0690899 | 2012-07-20 09:23:23 +0000 | [diff] [blame] | 1023 | if ((len -= tun->vnet_hdr_sz) > total_len) |
Rusty Russell | f43798c | 2008-07-03 03:48:02 -0700 | [diff] [blame] | 1024 | return -EINVAL; |
| 1025 | |
Michael S. Tsirkin | 6f26c9a | 2009-04-20 01:26:11 +0000 | [diff] [blame] | 1026 | if (memcpy_fromiovecend((void *)&gso, iv, offset, sizeof(gso))) |
Rusty Russell | f43798c | 2008-07-03 03:48:02 -0700 | [diff] [blame] | 1027 | return -EFAULT; |
| 1028 | |
Herbert Xu | 4909122 | 2009-06-08 00:20:01 -0700 | [diff] [blame] | 1029 | if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) && |
| 1030 | gso.csum_start + gso.csum_offset + 2 > gso.hdr_len) |
| 1031 | gso.hdr_len = gso.csum_start + gso.csum_offset + 2; |
| 1032 | |
Rusty Russell | f43798c | 2008-07-03 03:48:02 -0700 | [diff] [blame] | 1033 | if (gso.hdr_len > len) |
| 1034 | return -EINVAL; |
Michael S. Tsirkin | d9d52b5 | 2010-03-17 17:45:01 +0200 | [diff] [blame] | 1035 | offset += tun->vnet_hdr_sz; |
Rusty Russell | f43798c | 2008-07-03 03:48:02 -0700 | [diff] [blame] | 1036 | } |
| 1037 | |
Rusty Russell | e01bf1c | 2008-04-12 18:49:30 -0700 | [diff] [blame] | 1038 | if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) { |
stephen hemminger | a504b86 | 2011-06-08 14:33:07 +0000 | [diff] [blame] | 1039 | align += NET_IP_ALIGN; |
Herbert Xu | 0eca93b | 2009-04-14 02:09:43 -0700 | [diff] [blame] | 1040 | if (unlikely(len < ETH_HLEN || |
| 1041 | (gso.hdr_len && gso.hdr_len < ETH_HLEN))) |
Rusty Russell | e01bf1c | 2008-04-12 18:49:30 -0700 | [diff] [blame] | 1042 | return -EINVAL; |
| 1043 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1044 | |
Michael S. Tsirkin | 0690899 | 2012-07-20 09:23:23 +0000 | [diff] [blame] | 1045 | if (msg_control) |
| 1046 | zerocopy = true; |
| 1047 | |
| 1048 | if (zerocopy) { |
| 1049 | /* Userspace may produce vectors with count greater than |
| 1050 | * MAX_SKB_FRAGS, so we need to linearize parts of the skb |
| 1051 | * to let the rest of data to be fit in the frags. |
| 1052 | */ |
| 1053 | if (count > MAX_SKB_FRAGS) { |
| 1054 | copylen = iov_length(iv, count - MAX_SKB_FRAGS); |
| 1055 | if (copylen < offset) |
| 1056 | copylen = 0; |
| 1057 | else |
| 1058 | copylen -= offset; |
| 1059 | } else |
| 1060 | copylen = 0; |
| 1061 | /* There are 256 bytes to be copied in skb, so there is enough |
| 1062 | * room for skb expand head in case it is used. |
| 1063 | * The rest of the buffer is mapped from userspace. |
| 1064 | */ |
| 1065 | if (copylen < gso.hdr_len) |
| 1066 | copylen = gso.hdr_len; |
| 1067 | if (!copylen) |
| 1068 | copylen = GOODCOPY_LEN; |
| 1069 | } else |
| 1070 | copylen = len; |
| 1071 | |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1072 | skb = tun_alloc_skb(tfile, align, copylen, gso.hdr_len, noblock); |
Herbert Xu | 33dccbb | 2009-02-05 21:25:32 -0800 | [diff] [blame] | 1073 | if (IS_ERR(skb)) { |
| 1074 | if (PTR_ERR(skb) != -EAGAIN) |
| 1075 | tun->dev->stats.rx_dropped++; |
| 1076 | return PTR_ERR(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | } |
| 1078 | |
Michael S. Tsirkin | 0690899 | 2012-07-20 09:23:23 +0000 | [diff] [blame] | 1079 | if (zerocopy) |
| 1080 | err = zerocopy_sg_from_iovec(skb, iv, offset, count); |
| 1081 | else |
| 1082 | err = skb_copy_datagram_from_iovec(skb, 0, iv, offset, len); |
| 1083 | |
| 1084 | if (err) { |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 1085 | tun->dev->stats.rx_dropped++; |
Dave Jones | 8f22757 | 2006-03-11 18:49:13 -0800 | [diff] [blame] | 1086 | kfree_skb(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | return -EFAULT; |
Dave Jones | 8f22757 | 2006-03-11 18:49:13 -0800 | [diff] [blame] | 1088 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | |
Rusty Russell | f43798c | 2008-07-03 03:48:02 -0700 | [diff] [blame] | 1090 | if (gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) { |
| 1091 | if (!skb_partial_csum_set(skb, gso.csum_start, |
| 1092 | gso.csum_offset)) { |
| 1093 | tun->dev->stats.rx_frame_errors++; |
| 1094 | kfree_skb(skb); |
| 1095 | return -EINVAL; |
| 1096 | } |
Michał Mirosław | 8825537 | 2011-04-19 06:13:10 +0000 | [diff] [blame] | 1097 | } |
Rusty Russell | f43798c | 2008-07-03 03:48:02 -0700 | [diff] [blame] | 1098 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | switch (tun->flags & TUN_TYPE_MASK) { |
| 1100 | case TUN_TUN_DEV: |
Ang Way Chuang | f09f7ee | 2008-06-17 21:10:33 -0700 | [diff] [blame] | 1101 | if (tun->flags & TUN_NO_PI) { |
| 1102 | switch (skb->data[0] & 0xf0) { |
| 1103 | case 0x40: |
| 1104 | pi.proto = htons(ETH_P_IP); |
| 1105 | break; |
| 1106 | case 0x60: |
| 1107 | pi.proto = htons(ETH_P_IPV6); |
| 1108 | break; |
| 1109 | default: |
| 1110 | tun->dev->stats.rx_dropped++; |
| 1111 | kfree_skb(skb); |
| 1112 | return -EINVAL; |
| 1113 | } |
| 1114 | } |
| 1115 | |
Arnaldo Carvalho de Melo | 459a98e | 2007-03-19 15:30:44 -0700 | [diff] [blame] | 1116 | skb_reset_mac_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | skb->protocol = pi.proto; |
Arnaldo Carvalho de Melo | 4c13eb6 | 2007-04-25 17:40:23 -0700 | [diff] [blame] | 1118 | skb->dev = tun->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | break; |
| 1120 | case TUN_TAP_DEV: |
| 1121 | skb->protocol = eth_type_trans(skb, tun->dev); |
| 1122 | break; |
Joe Perches | 6403eab | 2011-06-03 11:51:20 +0000 | [diff] [blame] | 1123 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | |
Rusty Russell | f43798c | 2008-07-03 03:48:02 -0700 | [diff] [blame] | 1125 | if (gso.gso_type != VIRTIO_NET_HDR_GSO_NONE) { |
| 1126 | pr_debug("GSO!\n"); |
| 1127 | switch (gso.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) { |
| 1128 | case VIRTIO_NET_HDR_GSO_TCPV4: |
| 1129 | skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4; |
| 1130 | break; |
| 1131 | case VIRTIO_NET_HDR_GSO_TCPV6: |
| 1132 | skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6; |
| 1133 | break; |
Sridhar Samudrala | e36aa25 | 2009-07-14 14:21:04 +0000 | [diff] [blame] | 1134 | case VIRTIO_NET_HDR_GSO_UDP: |
| 1135 | skb_shinfo(skb)->gso_type = SKB_GSO_UDP; |
| 1136 | break; |
Rusty Russell | f43798c | 2008-07-03 03:48:02 -0700 | [diff] [blame] | 1137 | default: |
| 1138 | tun->dev->stats.rx_frame_errors++; |
| 1139 | kfree_skb(skb); |
| 1140 | return -EINVAL; |
| 1141 | } |
| 1142 | |
| 1143 | if (gso.gso_type & VIRTIO_NET_HDR_GSO_ECN) |
| 1144 | skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN; |
| 1145 | |
| 1146 | skb_shinfo(skb)->gso_size = gso.gso_size; |
| 1147 | if (skb_shinfo(skb)->gso_size == 0) { |
| 1148 | tun->dev->stats.rx_frame_errors++; |
| 1149 | kfree_skb(skb); |
| 1150 | return -EINVAL; |
| 1151 | } |
| 1152 | |
| 1153 | /* Header must be checked, and gso_segs computed. */ |
| 1154 | skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY; |
| 1155 | skb_shinfo(skb)->gso_segs = 0; |
| 1156 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1157 | |
Michael S. Tsirkin | 0690899 | 2012-07-20 09:23:23 +0000 | [diff] [blame] | 1158 | /* copy skb_ubuf_info for callback when skb has no error */ |
| 1159 | if (zerocopy) { |
| 1160 | skb_shinfo(skb)->destructor_arg = msg_control; |
| 1161 | skb_shinfo(skb)->tx_flags |= SKBTX_DEV_ZEROCOPY; |
| 1162 | } |
| 1163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | netif_rx_ni(skb); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1165 | |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 1166 | tun->dev->stats.rx_packets++; |
| 1167 | tun->dev->stats.rx_bytes += len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | |
Jason Wang | 96442e42 | 2012-10-31 19:46:02 +0000 | [diff] [blame] | 1169 | tun_flow_update(tun, skb, tfile->queue_index); |
Michael S. Tsirkin | 0690899 | 2012-07-20 09:23:23 +0000 | [diff] [blame] | 1170 | return total_len; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1171 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | |
Badari Pulavarty | ee0b3e6 | 2006-09-30 23:28:47 -0700 | [diff] [blame] | 1173 | static ssize_t tun_chr_aio_write(struct kiocb *iocb, const struct iovec *iv, |
| 1174 | unsigned long count, loff_t pos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | { |
Herbert Xu | 33dccbb | 2009-02-05 21:25:32 -0800 | [diff] [blame] | 1176 | struct file *file = iocb->ki_filp; |
Herbert Xu | ab46d77 | 2009-02-14 20:46:39 -0800 | [diff] [blame] | 1177 | struct tun_struct *tun = tun_get(file); |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1178 | struct tun_file *tfile = file->private_data; |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 1179 | ssize_t result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | |
| 1181 | if (!tun) |
| 1182 | return -EBADFD; |
| 1183 | |
Joe Perches | 6b8a66e | 2011-03-02 07:18:10 +0000 | [diff] [blame] | 1184 | tun_debug(KERN_INFO, tun, "tun_chr_write %ld\n", count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1186 | result = tun_get_user(tun, tfile, NULL, iv, iov_length(iv, count), |
| 1187 | count, file->f_flags & O_NONBLOCK); |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 1188 | |
| 1189 | tun_put(tun); |
| 1190 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | } |
| 1192 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 | /* Put packet to the user space buffer */ |
stephen hemminger | 6f7c156 | 2011-06-08 14:33:08 +0000 | [diff] [blame] | 1194 | static ssize_t tun_put_user(struct tun_struct *tun, |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1195 | struct tun_file *tfile, |
stephen hemminger | 6f7c156 | 2011-06-08 14:33:08 +0000 | [diff] [blame] | 1196 | struct sk_buff *skb, |
| 1197 | const struct iovec *iv, int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | { |
| 1199 | struct tun_pi pi = { 0, skb->protocol }; |
| 1200 | ssize_t total = 0; |
| 1201 | |
| 1202 | if (!(tun->flags & TUN_NO_PI)) { |
| 1203 | if ((len -= sizeof(pi)) < 0) |
| 1204 | return -EINVAL; |
| 1205 | |
| 1206 | if (len < skb->len) { |
| 1207 | /* Packet will be striped */ |
| 1208 | pi.flags |= TUN_PKT_STRIP; |
| 1209 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1210 | |
Michael S. Tsirkin | 43b39dc | 2009-04-20 01:25:59 +0000 | [diff] [blame] | 1211 | if (memcpy_toiovecend(iv, (void *) &pi, 0, sizeof(pi))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | return -EFAULT; |
| 1213 | total += sizeof(pi); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1214 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | |
Rusty Russell | f43798c | 2008-07-03 03:48:02 -0700 | [diff] [blame] | 1216 | if (tun->flags & TUN_VNET_HDR) { |
| 1217 | struct virtio_net_hdr gso = { 0 }; /* no info leak */ |
Michael S. Tsirkin | d9d52b5 | 2010-03-17 17:45:01 +0200 | [diff] [blame] | 1218 | if ((len -= tun->vnet_hdr_sz) < 0) |
Rusty Russell | f43798c | 2008-07-03 03:48:02 -0700 | [diff] [blame] | 1219 | return -EINVAL; |
| 1220 | |
| 1221 | if (skb_is_gso(skb)) { |
| 1222 | struct skb_shared_info *sinfo = skb_shinfo(skb); |
| 1223 | |
| 1224 | /* This is a hint as to how much should be linear. */ |
| 1225 | gso.hdr_len = skb_headlen(skb); |
| 1226 | gso.gso_size = sinfo->gso_size; |
| 1227 | if (sinfo->gso_type & SKB_GSO_TCPV4) |
| 1228 | gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV4; |
| 1229 | else if (sinfo->gso_type & SKB_GSO_TCPV6) |
| 1230 | gso.gso_type = VIRTIO_NET_HDR_GSO_TCPV6; |
Sridhar Samudrala | e36aa25 | 2009-07-14 14:21:04 +0000 | [diff] [blame] | 1231 | else if (sinfo->gso_type & SKB_GSO_UDP) |
| 1232 | gso.gso_type = VIRTIO_NET_HDR_GSO_UDP; |
Michael S. Tsirkin | ef3db4a | 2010-07-21 04:32:45 +0000 | [diff] [blame] | 1233 | else { |
Joe Perches | 6b8a66e | 2011-03-02 07:18:10 +0000 | [diff] [blame] | 1234 | pr_err("unexpected GSO type: " |
Michael S. Tsirkin | ef3db4a | 2010-07-21 04:32:45 +0000 | [diff] [blame] | 1235 | "0x%x, gso_size %d, hdr_len %d\n", |
| 1236 | sinfo->gso_type, gso.gso_size, |
| 1237 | gso.hdr_len); |
| 1238 | print_hex_dump(KERN_ERR, "tun: ", |
| 1239 | DUMP_PREFIX_NONE, |
| 1240 | 16, 1, skb->head, |
| 1241 | min((int)gso.hdr_len, 64), true); |
| 1242 | WARN_ON_ONCE(1); |
| 1243 | return -EINVAL; |
| 1244 | } |
Rusty Russell | f43798c | 2008-07-03 03:48:02 -0700 | [diff] [blame] | 1245 | if (sinfo->gso_type & SKB_GSO_TCP_ECN) |
| 1246 | gso.gso_type |= VIRTIO_NET_HDR_GSO_ECN; |
| 1247 | } else |
| 1248 | gso.gso_type = VIRTIO_NET_HDR_GSO_NONE; |
| 1249 | |
| 1250 | if (skb->ip_summed == CHECKSUM_PARTIAL) { |
| 1251 | gso.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM; |
Michał Mirosław | 55508d6 | 2010-12-14 15:24:08 +0000 | [diff] [blame] | 1252 | gso.csum_start = skb_checksum_start_offset(skb); |
Rusty Russell | f43798c | 2008-07-03 03:48:02 -0700 | [diff] [blame] | 1253 | gso.csum_offset = skb->csum_offset; |
Jason Wang | 10a8d94 | 2011-06-10 00:56:17 +0000 | [diff] [blame] | 1254 | } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) { |
| 1255 | gso.flags = VIRTIO_NET_HDR_F_DATA_VALID; |
Rusty Russell | f43798c | 2008-07-03 03:48:02 -0700 | [diff] [blame] | 1256 | } /* else everything is zero */ |
| 1257 | |
Michael S. Tsirkin | 43b39dc | 2009-04-20 01:25:59 +0000 | [diff] [blame] | 1258 | if (unlikely(memcpy_toiovecend(iv, (void *)&gso, total, |
| 1259 | sizeof(gso)))) |
Rusty Russell | f43798c | 2008-07-03 03:48:02 -0700 | [diff] [blame] | 1260 | return -EFAULT; |
Michael S. Tsirkin | d9d52b5 | 2010-03-17 17:45:01 +0200 | [diff] [blame] | 1261 | total += tun->vnet_hdr_sz; |
Rusty Russell | f43798c | 2008-07-03 03:48:02 -0700 | [diff] [blame] | 1262 | } |
| 1263 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1264 | len = min_t(int, skb->len, len); |
| 1265 | |
Michael S. Tsirkin | 43b39dc | 2009-04-20 01:25:59 +0000 | [diff] [blame] | 1266 | skb_copy_datagram_const_iovec(skb, 0, iv, total, len); |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 1267 | total += skb->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1268 | |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 1269 | tun->dev->stats.tx_packets++; |
| 1270 | tun->dev->stats.tx_bytes += len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | |
| 1272 | return total; |
| 1273 | } |
| 1274 | |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1275 | static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile, |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 1276 | struct kiocb *iocb, const struct iovec *iv, |
| 1277 | ssize_t len, int noblock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | DECLARE_WAITQUEUE(wait, current); |
| 1280 | struct sk_buff *skb; |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 1281 | ssize_t ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | |
Rami Rosen | 3872baf | 2012-11-25 22:07:41 +0000 | [diff] [blame] | 1283 | tun_debug(KERN_INFO, tun, "tun_do_read\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | |
Amos Kong | 61a5ff1 | 2011-06-09 00:27:10 -0700 | [diff] [blame] | 1285 | if (unlikely(!noblock)) |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1286 | add_wait_queue(&tfile->wq.wait, &wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1287 | while (len) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1288 | current->state = TASK_INTERRUPTIBLE; |
| 1289 | |
| 1290 | /* Read frames from the queue */ |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1291 | if (!(skb = skb_dequeue(&tfile->socket.sk->sk_receive_queue))) { |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 1292 | if (noblock) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | ret = -EAGAIN; |
| 1294 | break; |
| 1295 | } |
| 1296 | if (signal_pending(current)) { |
| 1297 | ret = -ERESTARTSYS; |
| 1298 | break; |
| 1299 | } |
Eric W. Biederman | c70f182 | 2009-01-20 11:07:17 +0000 | [diff] [blame] | 1300 | if (tun->dev->reg_state != NETREG_REGISTERED) { |
| 1301 | ret = -EIO; |
| 1302 | break; |
| 1303 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1304 | |
| 1305 | /* Nothing to read, let's sleep */ |
| 1306 | schedule(); |
| 1307 | continue; |
| 1308 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1310 | ret = tun_put_user(tun, tfile, skb, iv, len); |
Max Krasnyansky | f271b2c | 2008-07-14 22:18:19 -0700 | [diff] [blame] | 1311 | kfree_skb(skb); |
| 1312 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | } |
| 1314 | |
| 1315 | current->state = TASK_RUNNING; |
Amos Kong | 61a5ff1 | 2011-06-09 00:27:10 -0700 | [diff] [blame] | 1316 | if (unlikely(!noblock)) |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1317 | remove_wait_queue(&tfile->wq.wait, &wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1318 | |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 1319 | return ret; |
| 1320 | } |
| 1321 | |
| 1322 | static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv, |
| 1323 | unsigned long count, loff_t pos) |
| 1324 | { |
| 1325 | struct file *file = iocb->ki_filp; |
| 1326 | struct tun_file *tfile = file->private_data; |
| 1327 | struct tun_struct *tun = __tun_get(tfile); |
| 1328 | ssize_t len, ret; |
| 1329 | |
| 1330 | if (!tun) |
| 1331 | return -EBADFD; |
| 1332 | len = iov_length(iv, count); |
| 1333 | if (len < 0) { |
| 1334 | ret = -EINVAL; |
| 1335 | goto out; |
| 1336 | } |
| 1337 | |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1338 | ret = tun_do_read(tun, tfile, iocb, iv, len, |
| 1339 | file->f_flags & O_NONBLOCK); |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 1340 | ret = min_t(ssize_t, ret, len); |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 1341 | out: |
| 1342 | tun_put(tun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1343 | return ret; |
| 1344 | } |
| 1345 | |
Jason Wang | 96442e42 | 2012-10-31 19:46:02 +0000 | [diff] [blame] | 1346 | static void tun_free_netdev(struct net_device *dev) |
| 1347 | { |
| 1348 | struct tun_struct *tun = netdev_priv(dev); |
| 1349 | |
| 1350 | tun_flow_uninit(tun); |
| 1351 | free_netdev(dev); |
| 1352 | } |
| 1353 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | static void tun_setup(struct net_device *dev) |
| 1355 | { |
| 1356 | struct tun_struct *tun = netdev_priv(dev); |
| 1357 | |
Eric W. Biederman | 0625c88 | 2012-02-07 16:48:55 -0800 | [diff] [blame] | 1358 | tun->owner = INVALID_UID; |
| 1359 | tun->group = INVALID_GID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1360 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1361 | dev->ethtool_ops = &tun_ethtool_ops; |
Jason Wang | 96442e42 | 2012-10-31 19:46:02 +0000 | [diff] [blame] | 1362 | dev->destructor = tun_free_netdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1363 | } |
| 1364 | |
Eric W. Biederman | f019a7a | 2009-01-21 16:02:16 -0800 | [diff] [blame] | 1365 | /* Trivial set of netlink ops to allow deleting tun or tap |
| 1366 | * device with netlink. |
| 1367 | */ |
| 1368 | static int tun_validate(struct nlattr *tb[], struct nlattr *data[]) |
| 1369 | { |
| 1370 | return -EINVAL; |
| 1371 | } |
| 1372 | |
| 1373 | static struct rtnl_link_ops tun_link_ops __read_mostly = { |
| 1374 | .kind = DRV_NAME, |
| 1375 | .priv_size = sizeof(struct tun_struct), |
| 1376 | .setup = tun_setup, |
| 1377 | .validate = tun_validate, |
| 1378 | }; |
| 1379 | |
Herbert Xu | 33dccbb | 2009-02-05 21:25:32 -0800 | [diff] [blame] | 1380 | static void tun_sock_write_space(struct sock *sk) |
| 1381 | { |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1382 | struct tun_file *tfile; |
Eric Dumazet | 4381548 | 2010-04-29 11:01:49 +0000 | [diff] [blame] | 1383 | wait_queue_head_t *wqueue; |
Herbert Xu | 33dccbb | 2009-02-05 21:25:32 -0800 | [diff] [blame] | 1384 | |
| 1385 | if (!sock_writeable(sk)) |
| 1386 | return; |
| 1387 | |
Herbert Xu | 33dccbb | 2009-02-05 21:25:32 -0800 | [diff] [blame] | 1388 | if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags)) |
| 1389 | return; |
| 1390 | |
Eric Dumazet | 4381548 | 2010-04-29 11:01:49 +0000 | [diff] [blame] | 1391 | wqueue = sk_sleep(sk); |
| 1392 | if (wqueue && waitqueue_active(wqueue)) |
| 1393 | wake_up_interruptible_sync_poll(wqueue, POLLOUT | |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 1394 | POLLWRNORM | POLLWRBAND); |
Herbert Xu | c722c62 | 2009-06-03 21:45:55 -0700 | [diff] [blame] | 1395 | |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1396 | tfile = container_of(sk, struct tun_file, sk); |
| 1397 | kill_fasync(&tfile->fasync, SIGIO, POLL_OUT); |
Herbert Xu | 33dccbb | 2009-02-05 21:25:32 -0800 | [diff] [blame] | 1398 | } |
| 1399 | |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 1400 | static int tun_sendmsg(struct kiocb *iocb, struct socket *sock, |
| 1401 | struct msghdr *m, size_t total_len) |
| 1402 | { |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1403 | int ret; |
| 1404 | struct tun_file *tfile = container_of(sock, struct tun_file, socket); |
| 1405 | struct tun_struct *tun = __tun_get(tfile); |
| 1406 | |
| 1407 | if (!tun) |
| 1408 | return -EBADFD; |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1409 | ret = tun_get_user(tun, tfile, m->msg_control, m->msg_iov, total_len, |
| 1410 | m->msg_iovlen, m->msg_flags & MSG_DONTWAIT); |
| 1411 | tun_put(tun); |
| 1412 | return ret; |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 1413 | } |
| 1414 | |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1415 | |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 1416 | static int tun_recvmsg(struct kiocb *iocb, struct socket *sock, |
| 1417 | struct msghdr *m, size_t total_len, |
| 1418 | int flags) |
| 1419 | { |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1420 | struct tun_file *tfile = container_of(sock, struct tun_file, socket); |
| 1421 | struct tun_struct *tun = __tun_get(tfile); |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 1422 | int ret; |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1423 | |
| 1424 | if (!tun) |
| 1425 | return -EBADFD; |
| 1426 | |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 1427 | if (flags & ~(MSG_DONTWAIT|MSG_TRUNC)) |
| 1428 | return -EINVAL; |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1429 | ret = tun_do_read(tun, tfile, iocb, m->msg_iov, total_len, |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 1430 | flags & MSG_DONTWAIT); |
| 1431 | if (ret > total_len) { |
| 1432 | m->msg_flags |= MSG_TRUNC; |
| 1433 | ret = flags & MSG_TRUNC ? ret : total_len; |
| 1434 | } |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1435 | tun_put(tun); |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 1436 | return ret; |
| 1437 | } |
| 1438 | |
Stanislav Kinsbursky | 1ab5ecb | 2012-03-12 02:59:41 +0000 | [diff] [blame] | 1439 | static int tun_release(struct socket *sock) |
| 1440 | { |
| 1441 | if (sock->sk) |
| 1442 | sock_put(sock->sk); |
| 1443 | return 0; |
| 1444 | } |
| 1445 | |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 1446 | /* Ops structure to mimic raw sockets with tun */ |
| 1447 | static const struct proto_ops tun_socket_ops = { |
| 1448 | .sendmsg = tun_sendmsg, |
| 1449 | .recvmsg = tun_recvmsg, |
Stanislav Kinsbursky | 1ab5ecb | 2012-03-12 02:59:41 +0000 | [diff] [blame] | 1450 | .release = tun_release, |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 1451 | }; |
| 1452 | |
Herbert Xu | 33dccbb | 2009-02-05 21:25:32 -0800 | [diff] [blame] | 1453 | static struct proto tun_proto = { |
| 1454 | .name = "tun", |
| 1455 | .owner = THIS_MODULE, |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1456 | .obj_size = sizeof(struct tun_file), |
Herbert Xu | 33dccbb | 2009-02-05 21:25:32 -0800 | [diff] [blame] | 1457 | }; |
Eric W. Biederman | f019a7a | 2009-01-21 16:02:16 -0800 | [diff] [blame] | 1458 | |
David Woodhouse | 980c9e8 | 2009-05-09 22:54:21 -0700 | [diff] [blame] | 1459 | static int tun_flags(struct tun_struct *tun) |
| 1460 | { |
| 1461 | int flags = 0; |
| 1462 | |
| 1463 | if (tun->flags & TUN_TUN_DEV) |
| 1464 | flags |= IFF_TUN; |
| 1465 | else |
| 1466 | flags |= IFF_TAP; |
| 1467 | |
| 1468 | if (tun->flags & TUN_NO_PI) |
| 1469 | flags |= IFF_NO_PI; |
| 1470 | |
Michael S. Tsirkin | 5d09710 | 2012-12-03 10:07:14 +0000 | [diff] [blame^] | 1471 | /* This flag has no real effect. We track the value for backwards |
| 1472 | * compatibility. |
| 1473 | */ |
David Woodhouse | 980c9e8 | 2009-05-09 22:54:21 -0700 | [diff] [blame] | 1474 | if (tun->flags & TUN_ONE_QUEUE) |
| 1475 | flags |= IFF_ONE_QUEUE; |
| 1476 | |
| 1477 | if (tun->flags & TUN_VNET_HDR) |
| 1478 | flags |= IFF_VNET_HDR; |
| 1479 | |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 1480 | if (tun->flags & TUN_TAP_MQ) |
| 1481 | flags |= IFF_MULTI_QUEUE; |
| 1482 | |
David Woodhouse | 980c9e8 | 2009-05-09 22:54:21 -0700 | [diff] [blame] | 1483 | return flags; |
| 1484 | } |
| 1485 | |
| 1486 | static ssize_t tun_show_flags(struct device *dev, struct device_attribute *attr, |
| 1487 | char *buf) |
| 1488 | { |
| 1489 | struct tun_struct *tun = netdev_priv(to_net_dev(dev)); |
| 1490 | return sprintf(buf, "0x%x\n", tun_flags(tun)); |
| 1491 | } |
| 1492 | |
| 1493 | static ssize_t tun_show_owner(struct device *dev, struct device_attribute *attr, |
| 1494 | char *buf) |
| 1495 | { |
| 1496 | struct tun_struct *tun = netdev_priv(to_net_dev(dev)); |
Eric W. Biederman | 0625c88 | 2012-02-07 16:48:55 -0800 | [diff] [blame] | 1497 | return uid_valid(tun->owner)? |
| 1498 | sprintf(buf, "%u\n", |
| 1499 | from_kuid_munged(current_user_ns(), tun->owner)): |
| 1500 | sprintf(buf, "-1\n"); |
David Woodhouse | 980c9e8 | 2009-05-09 22:54:21 -0700 | [diff] [blame] | 1501 | } |
| 1502 | |
| 1503 | static ssize_t tun_show_group(struct device *dev, struct device_attribute *attr, |
| 1504 | char *buf) |
| 1505 | { |
| 1506 | struct tun_struct *tun = netdev_priv(to_net_dev(dev)); |
Eric W. Biederman | 0625c88 | 2012-02-07 16:48:55 -0800 | [diff] [blame] | 1507 | return gid_valid(tun->group) ? |
| 1508 | sprintf(buf, "%u\n", |
| 1509 | from_kgid_munged(current_user_ns(), tun->group)): |
| 1510 | sprintf(buf, "-1\n"); |
David Woodhouse | 980c9e8 | 2009-05-09 22:54:21 -0700 | [diff] [blame] | 1511 | } |
| 1512 | |
| 1513 | static DEVICE_ATTR(tun_flags, 0444, tun_show_flags, NULL); |
| 1514 | static DEVICE_ATTR(owner, 0444, tun_show_owner, NULL); |
| 1515 | static DEVICE_ATTR(group, 0444, tun_show_group, NULL); |
| 1516 | |
Pavel Emelyanov | d647a59 | 2008-04-16 00:41:16 -0700 | [diff] [blame] | 1517 | static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1518 | { |
| 1519 | struct tun_struct *tun; |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1520 | struct tun_file *tfile = file->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1521 | struct net_device *dev; |
| 1522 | int err; |
| 1523 | |
Eric W. Biederman | 74a3e5a | 2009-01-20 10:56:20 +0000 | [diff] [blame] | 1524 | dev = __dev_get_by_name(net, ifr->ifr_name); |
| 1525 | if (dev) { |
David Woodhouse | f85ba78 | 2009-04-27 03:23:54 -0700 | [diff] [blame] | 1526 | if (ifr->ifr_flags & IFF_TUN_EXCL) |
| 1527 | return -EBUSY; |
Eric W. Biederman | 74a3e5a | 2009-01-20 10:56:20 +0000 | [diff] [blame] | 1528 | if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops) |
| 1529 | tun = netdev_priv(dev); |
| 1530 | else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops) |
| 1531 | tun = netdev_priv(dev); |
| 1532 | else |
| 1533 | return -EINVAL; |
| 1534 | |
Jason Wang | cde8b15 | 2012-10-31 19:46:01 +0000 | [diff] [blame] | 1535 | if (tun_not_capable(tun)) |
Paul Moore | 2b980db | 2009-08-28 18:12:43 -0400 | [diff] [blame] | 1536 | return -EPERM; |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1537 | err = security_tun_dev_attach(tfile->socket.sk); |
Paul Moore | 2b980db | 2009-08-28 18:12:43 -0400 | [diff] [blame] | 1538 | if (err < 0) |
| 1539 | return err; |
| 1540 | |
Eric W. Biederman | a7385ba | 2009-01-20 10:57:48 +0000 | [diff] [blame] | 1541 | err = tun_attach(tun, file); |
| 1542 | if (err < 0) |
| 1543 | return err; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1544 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1545 | else { |
| 1546 | char *name; |
| 1547 | unsigned long flags = 0; |
| 1548 | |
Eric W. Biederman | c260b77 | 2012-11-18 21:34:11 +0000 | [diff] [blame] | 1549 | if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
David Woodhouse | ca6bb5d | 2006-06-22 16:07:52 -0700 | [diff] [blame] | 1550 | return -EPERM; |
Paul Moore | 2b980db | 2009-08-28 18:12:43 -0400 | [diff] [blame] | 1551 | err = security_tun_dev_create(); |
| 1552 | if (err < 0) |
| 1553 | return err; |
David Woodhouse | ca6bb5d | 2006-06-22 16:07:52 -0700 | [diff] [blame] | 1554 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1555 | /* Set dev type */ |
| 1556 | if (ifr->ifr_flags & IFF_TUN) { |
| 1557 | /* TUN device */ |
| 1558 | flags |= TUN_TUN_DEV; |
| 1559 | name = "tun%d"; |
| 1560 | } else if (ifr->ifr_flags & IFF_TAP) { |
| 1561 | /* TAP device */ |
| 1562 | flags |= TUN_TAP_DEV; |
| 1563 | name = "tap%d"; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1564 | } else |
Kusanagi Kouichi | 36989b9 | 2009-09-16 21:36:13 +0000 | [diff] [blame] | 1565 | return -EINVAL; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1566 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1567 | if (*ifr->ifr_name) |
| 1568 | name = ifr->ifr_name; |
| 1569 | |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 1570 | dev = alloc_netdev_mqs(sizeof(struct tun_struct), name, |
| 1571 | tun_setup, |
| 1572 | MAX_TAP_QUEUES, MAX_TAP_QUEUES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1573 | if (!dev) |
| 1574 | return -ENOMEM; |
| 1575 | |
Pavel Emelyanov | fc54c65 | 2008-04-16 00:41:53 -0700 | [diff] [blame] | 1576 | dev_net_set(dev, net); |
Eric W. Biederman | f019a7a | 2009-01-21 16:02:16 -0800 | [diff] [blame] | 1577 | dev->rtnl_link_ops = &tun_link_ops; |
Stephen Hemminger | 758e43b | 2008-11-19 22:10:37 -0800 | [diff] [blame] | 1578 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1579 | tun = netdev_priv(dev); |
| 1580 | tun->dev = dev; |
| 1581 | tun->flags = flags; |
Max Krasnyansky | f271b2c | 2008-07-14 22:18:19 -0700 | [diff] [blame] | 1582 | tun->txflt.count = 0; |
Michael S. Tsirkin | d9d52b5 | 2010-03-17 17:45:01 +0200 | [diff] [blame] | 1583 | tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1584 | |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1585 | tun->filter_attached = false; |
| 1586 | tun->sndbuf = tfile->socket.sk->sk_sndbuf; |
Herbert Xu | 33dccbb | 2009-02-05 21:25:32 -0800 | [diff] [blame] | 1587 | |
Jason Wang | 96442e42 | 2012-10-31 19:46:02 +0000 | [diff] [blame] | 1588 | spin_lock_init(&tun->lock); |
| 1589 | |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1590 | security_tun_dev_post_create(&tfile->sk); |
Paul Moore | 2b980db | 2009-08-28 18:12:43 -0400 | [diff] [blame] | 1591 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1592 | tun_net_init(dev); |
| 1593 | |
Jason Wang | 96442e42 | 2012-10-31 19:46:02 +0000 | [diff] [blame] | 1594 | if (tun_flow_init(tun)) |
| 1595 | goto err_free_dev; |
| 1596 | |
Michał Mirosław | 8825537 | 2011-04-19 06:13:10 +0000 | [diff] [blame] | 1597 | dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST | |
| 1598 | TUN_USER_FEATURES; |
| 1599 | dev->features = dev->hw_features; |
| 1600 | |
Jason Wang | eb0fb36 | 2012-12-02 17:19:45 +0000 | [diff] [blame] | 1601 | err = tun_attach(tun, file); |
| 1602 | if (err < 0) |
| 1603 | goto err_free_dev; |
| 1604 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1605 | err = register_netdevice(tun->dev); |
| 1606 | if (err < 0) |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1607 | goto err_free_dev; |
Herbert Xu | 9c3fea6 | 2009-04-18 14:15:52 +0000 | [diff] [blame] | 1608 | |
David Woodhouse | 980c9e8 | 2009-05-09 22:54:21 -0700 | [diff] [blame] | 1609 | if (device_create_file(&tun->dev->dev, &dev_attr_tun_flags) || |
| 1610 | device_create_file(&tun->dev->dev, &dev_attr_owner) || |
| 1611 | device_create_file(&tun->dev->dev, &dev_attr_group)) |
Joe Perches | 6b8a66e | 2011-03-02 07:18:10 +0000 | [diff] [blame] | 1612 | pr_err("Failed to create tun sysfs files\n"); |
David Woodhouse | 980c9e8 | 2009-05-09 22:54:21 -0700 | [diff] [blame] | 1613 | |
Jason Wang | eb0fb36 | 2012-12-02 17:19:45 +0000 | [diff] [blame] | 1614 | netif_carrier_on(tun->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1615 | } |
| 1616 | |
Joe Perches | 6b8a66e | 2011-03-02 07:18:10 +0000 | [diff] [blame] | 1617 | tun_debug(KERN_INFO, tun, "tun_set_iff\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1618 | |
| 1619 | if (ifr->ifr_flags & IFF_NO_PI) |
| 1620 | tun->flags |= TUN_NO_PI; |
Nathaniel Filardo | a26af1e | 2008-02-05 03:05:07 -0800 | [diff] [blame] | 1621 | else |
| 1622 | tun->flags &= ~TUN_NO_PI; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1623 | |
Michael S. Tsirkin | 5d09710 | 2012-12-03 10:07:14 +0000 | [diff] [blame^] | 1624 | /* This flag has no real effect. We track the value for backwards |
| 1625 | * compatibility. |
| 1626 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1627 | if (ifr->ifr_flags & IFF_ONE_QUEUE) |
| 1628 | tun->flags |= TUN_ONE_QUEUE; |
Nathaniel Filardo | a26af1e | 2008-02-05 03:05:07 -0800 | [diff] [blame] | 1629 | else |
| 1630 | tun->flags &= ~TUN_ONE_QUEUE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1631 | |
Rusty Russell | f43798c | 2008-07-03 03:48:02 -0700 | [diff] [blame] | 1632 | if (ifr->ifr_flags & IFF_VNET_HDR) |
| 1633 | tun->flags |= TUN_VNET_HDR; |
| 1634 | else |
| 1635 | tun->flags &= ~TUN_VNET_HDR; |
| 1636 | |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 1637 | if (ifr->ifr_flags & IFF_MULTI_QUEUE) |
| 1638 | tun->flags |= TUN_TAP_MQ; |
| 1639 | else |
| 1640 | tun->flags &= ~TUN_TAP_MQ; |
| 1641 | |
Max Krasnyansky | e35259a | 2008-07-10 16:59:11 -0700 | [diff] [blame] | 1642 | /* Make sure persistent devices do not get stuck in |
| 1643 | * xoff state. |
| 1644 | */ |
| 1645 | if (netif_running(tun->dev)) |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 1646 | netif_tx_wake_all_queues(tun->dev); |
Max Krasnyansky | e35259a | 2008-07-10 16:59:11 -0700 | [diff] [blame] | 1647 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 | strcpy(ifr->ifr_name, tun->dev->name); |
| 1649 | return 0; |
| 1650 | |
| 1651 | err_free_dev: |
| 1652 | free_netdev(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1653 | return err; |
| 1654 | } |
| 1655 | |
Rami Rosen | 9ce99cf | 2012-11-23 03:58:10 +0000 | [diff] [blame] | 1656 | static void tun_get_iff(struct net *net, struct tun_struct *tun, |
Herbert Xu | 876bfd4 | 2009-08-06 14:22:44 +0000 | [diff] [blame] | 1657 | struct ifreq *ifr) |
Mark McLoughlin | e3b9955 | 2008-08-15 15:09:56 -0700 | [diff] [blame] | 1658 | { |
Joe Perches | 6b8a66e | 2011-03-02 07:18:10 +0000 | [diff] [blame] | 1659 | tun_debug(KERN_INFO, tun, "tun_get_iff\n"); |
Mark McLoughlin | e3b9955 | 2008-08-15 15:09:56 -0700 | [diff] [blame] | 1660 | |
| 1661 | strcpy(ifr->ifr_name, tun->dev->name); |
| 1662 | |
David Woodhouse | 980c9e8 | 2009-05-09 22:54:21 -0700 | [diff] [blame] | 1663 | ifr->ifr_flags = tun_flags(tun); |
Mark McLoughlin | e3b9955 | 2008-08-15 15:09:56 -0700 | [diff] [blame] | 1664 | |
Mark McLoughlin | e3b9955 | 2008-08-15 15:09:56 -0700 | [diff] [blame] | 1665 | } |
| 1666 | |
Rusty Russell | 5228ddc | 2008-07-03 03:46:16 -0700 | [diff] [blame] | 1667 | /* This is like a cut-down ethtool ops, except done via tun fd so no |
| 1668 | * privs required. */ |
Michał Mirosław | 8825537 | 2011-04-19 06:13:10 +0000 | [diff] [blame] | 1669 | static int set_offload(struct tun_struct *tun, unsigned long arg) |
Rusty Russell | 5228ddc | 2008-07-03 03:46:16 -0700 | [diff] [blame] | 1670 | { |
Michał Mirosław | c8f44af | 2011-11-15 15:29:55 +0000 | [diff] [blame] | 1671 | netdev_features_t features = 0; |
Rusty Russell | 5228ddc | 2008-07-03 03:46:16 -0700 | [diff] [blame] | 1672 | |
| 1673 | if (arg & TUN_F_CSUM) { |
Michał Mirosław | 8825537 | 2011-04-19 06:13:10 +0000 | [diff] [blame] | 1674 | features |= NETIF_F_HW_CSUM; |
Rusty Russell | 5228ddc | 2008-07-03 03:46:16 -0700 | [diff] [blame] | 1675 | arg &= ~TUN_F_CSUM; |
| 1676 | |
| 1677 | if (arg & (TUN_F_TSO4|TUN_F_TSO6)) { |
| 1678 | if (arg & TUN_F_TSO_ECN) { |
| 1679 | features |= NETIF_F_TSO_ECN; |
| 1680 | arg &= ~TUN_F_TSO_ECN; |
| 1681 | } |
| 1682 | if (arg & TUN_F_TSO4) |
| 1683 | features |= NETIF_F_TSO; |
| 1684 | if (arg & TUN_F_TSO6) |
| 1685 | features |= NETIF_F_TSO6; |
| 1686 | arg &= ~(TUN_F_TSO4|TUN_F_TSO6); |
| 1687 | } |
Sridhar Samudrala | e36aa25 | 2009-07-14 14:21:04 +0000 | [diff] [blame] | 1688 | |
| 1689 | if (arg & TUN_F_UFO) { |
| 1690 | features |= NETIF_F_UFO; |
| 1691 | arg &= ~TUN_F_UFO; |
| 1692 | } |
Rusty Russell | 5228ddc | 2008-07-03 03:46:16 -0700 | [diff] [blame] | 1693 | } |
| 1694 | |
| 1695 | /* This gives the user a way to test for new features in future by |
| 1696 | * trying to set them. */ |
| 1697 | if (arg) |
| 1698 | return -EINVAL; |
| 1699 | |
Michał Mirosław | 8825537 | 2011-04-19 06:13:10 +0000 | [diff] [blame] | 1700 | tun->set_features = features; |
| 1701 | netdev_update_features(tun->dev); |
Rusty Russell | 5228ddc | 2008-07-03 03:46:16 -0700 | [diff] [blame] | 1702 | |
| 1703 | return 0; |
| 1704 | } |
| 1705 | |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 1706 | static void tun_detach_filter(struct tun_struct *tun, int n) |
| 1707 | { |
| 1708 | int i; |
| 1709 | struct tun_file *tfile; |
| 1710 | |
| 1711 | for (i = 0; i < n; i++) { |
| 1712 | tfile = rcu_dereference_protected(tun->tfiles[i], |
| 1713 | lockdep_rtnl_is_held()); |
| 1714 | sk_detach_filter(tfile->socket.sk); |
| 1715 | } |
| 1716 | |
| 1717 | tun->filter_attached = false; |
| 1718 | } |
| 1719 | |
| 1720 | static int tun_attach_filter(struct tun_struct *tun) |
| 1721 | { |
| 1722 | int i, ret = 0; |
| 1723 | struct tun_file *tfile; |
| 1724 | |
| 1725 | for (i = 0; i < tun->numqueues; i++) { |
| 1726 | tfile = rcu_dereference_protected(tun->tfiles[i], |
| 1727 | lockdep_rtnl_is_held()); |
| 1728 | ret = sk_attach_filter(&tun->fprog, tfile->socket.sk); |
| 1729 | if (ret) { |
| 1730 | tun_detach_filter(tun, i); |
| 1731 | return ret; |
| 1732 | } |
| 1733 | } |
| 1734 | |
| 1735 | tun->filter_attached = true; |
| 1736 | return ret; |
| 1737 | } |
| 1738 | |
| 1739 | static void tun_set_sndbuf(struct tun_struct *tun) |
| 1740 | { |
| 1741 | struct tun_file *tfile; |
| 1742 | int i; |
| 1743 | |
| 1744 | for (i = 0; i < tun->numqueues; i++) { |
| 1745 | tfile = rcu_dereference_protected(tun->tfiles[i], |
| 1746 | lockdep_rtnl_is_held()); |
| 1747 | tfile->socket.sk->sk_sndbuf = tun->sndbuf; |
| 1748 | } |
| 1749 | } |
| 1750 | |
Jason Wang | cde8b15 | 2012-10-31 19:46:01 +0000 | [diff] [blame] | 1751 | static int tun_set_queue(struct file *file, struct ifreq *ifr) |
| 1752 | { |
| 1753 | struct tun_file *tfile = file->private_data; |
| 1754 | struct tun_struct *tun; |
| 1755 | struct net_device *dev; |
| 1756 | int ret = 0; |
| 1757 | |
| 1758 | rtnl_lock(); |
| 1759 | |
| 1760 | if (ifr->ifr_flags & IFF_ATTACH_QUEUE) { |
| 1761 | dev = __dev_get_by_name(tfile->net, ifr->ifr_name); |
| 1762 | if (!dev) { |
| 1763 | ret = -EINVAL; |
| 1764 | goto unlock; |
| 1765 | } |
| 1766 | |
| 1767 | tun = netdev_priv(dev); |
| 1768 | if (dev->netdev_ops != &tap_netdev_ops && |
| 1769 | dev->netdev_ops != &tun_netdev_ops) |
| 1770 | ret = -EINVAL; |
| 1771 | else if (tun_not_capable(tun)) |
| 1772 | ret = -EPERM; |
| 1773 | else |
| 1774 | ret = tun_attach(tun, file); |
| 1775 | } else if (ifr->ifr_flags & IFF_DETACH_QUEUE) |
| 1776 | __tun_detach(tfile, false); |
| 1777 | else |
| 1778 | ret = -EINVAL; |
| 1779 | |
| 1780 | unlock: |
| 1781 | rtnl_unlock(); |
| 1782 | return ret; |
| 1783 | } |
| 1784 | |
Arnd Bergmann | 50857e2 | 2009-11-06 22:52:32 -0800 | [diff] [blame] | 1785 | static long __tun_chr_ioctl(struct file *file, unsigned int cmd, |
| 1786 | unsigned long arg, int ifreq_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1787 | { |
Eric W. Biederman | 36b50ba | 2009-01-20 11:01:48 +0000 | [diff] [blame] | 1788 | struct tun_file *tfile = file->private_data; |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 1789 | struct tun_struct *tun; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1790 | void __user* argp = (void __user*)arg; |
| 1791 | struct ifreq ifr; |
Eric W. Biederman | 0625c88 | 2012-02-07 16:48:55 -0800 | [diff] [blame] | 1792 | kuid_t owner; |
| 1793 | kgid_t group; |
Herbert Xu | 33dccbb | 2009-02-05 21:25:32 -0800 | [diff] [blame] | 1794 | int sndbuf; |
Michael S. Tsirkin | d9d52b5 | 2010-03-17 17:45:01 +0200 | [diff] [blame] | 1795 | int vnet_hdr_sz; |
Max Krasnyansky | f271b2c | 2008-07-14 22:18:19 -0700 | [diff] [blame] | 1796 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1797 | |
Jason Wang | cde8b15 | 2012-10-31 19:46:01 +0000 | [diff] [blame] | 1798 | if (cmd == TUNSETIFF || cmd == TUNSETQUEUE || _IOC_TYPE(cmd) == 0x89) { |
Arnd Bergmann | 50857e2 | 2009-11-06 22:52:32 -0800 | [diff] [blame] | 1799 | if (copy_from_user(&ifr, argp, ifreq_len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1800 | return -EFAULT; |
David S. Miller | 8bbb181 | 2012-07-30 14:52:48 -0700 | [diff] [blame] | 1801 | } else { |
Mathias Krause | a117dac | 2012-07-29 19:45:14 +0000 | [diff] [blame] | 1802 | memset(&ifr, 0, sizeof(ifr)); |
David S. Miller | 8bbb181 | 2012-07-30 14:52:48 -0700 | [diff] [blame] | 1803 | } |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 1804 | if (cmd == TUNGETFEATURES) { |
| 1805 | /* Currently this just means: "what IFF flags are valid?". |
| 1806 | * This is needed because we never checked for invalid flags on |
| 1807 | * TUNSETIFF. */ |
| 1808 | return put_user(IFF_TUN | IFF_TAP | IFF_NO_PI | IFF_ONE_QUEUE | |
Jason Wang | cde8b15 | 2012-10-31 19:46:01 +0000 | [diff] [blame] | 1809 | IFF_VNET_HDR | IFF_MULTI_QUEUE, |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 1810 | (unsigned int __user*)argp); |
Jason Wang | cde8b15 | 2012-10-31 19:46:01 +0000 | [diff] [blame] | 1811 | } else if (cmd == TUNSETQUEUE) |
| 1812 | return tun_set_queue(file, &ifr); |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 1813 | |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 1814 | ret = 0; |
Herbert Xu | 876bfd4 | 2009-08-06 14:22:44 +0000 | [diff] [blame] | 1815 | rtnl_lock(); |
| 1816 | |
Eric W. Biederman | 36b50ba | 2009-01-20 11:01:48 +0000 | [diff] [blame] | 1817 | tun = __tun_get(tfile); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1818 | if (cmd == TUNSETIFF && !tun) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1819 | ifr.ifr_name[IFNAMSIZ-1] = '\0'; |
| 1820 | |
Herbert Xu | 876bfd4 | 2009-08-06 14:22:44 +0000 | [diff] [blame] | 1821 | ret = tun_set_iff(tfile->net, file, &ifr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1822 | |
Herbert Xu | 876bfd4 | 2009-08-06 14:22:44 +0000 | [diff] [blame] | 1823 | if (ret) |
| 1824 | goto unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1825 | |
Arnd Bergmann | 50857e2 | 2009-11-06 22:52:32 -0800 | [diff] [blame] | 1826 | if (copy_to_user(argp, &ifr, ifreq_len)) |
Herbert Xu | 876bfd4 | 2009-08-06 14:22:44 +0000 | [diff] [blame] | 1827 | ret = -EFAULT; |
| 1828 | goto unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1829 | } |
| 1830 | |
Herbert Xu | 876bfd4 | 2009-08-06 14:22:44 +0000 | [diff] [blame] | 1831 | ret = -EBADFD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1832 | if (!tun) |
Herbert Xu | 876bfd4 | 2009-08-06 14:22:44 +0000 | [diff] [blame] | 1833 | goto unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1834 | |
Jason Wang | 1e58833 | 2012-10-31 19:45:56 +0000 | [diff] [blame] | 1835 | tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1836 | |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 1837 | ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1838 | switch (cmd) { |
Mark McLoughlin | e3b9955 | 2008-08-15 15:09:56 -0700 | [diff] [blame] | 1839 | case TUNGETIFF: |
Rami Rosen | 9ce99cf | 2012-11-23 03:58:10 +0000 | [diff] [blame] | 1840 | tun_get_iff(current->nsproxy->net_ns, tun, &ifr); |
Mark McLoughlin | e3b9955 | 2008-08-15 15:09:56 -0700 | [diff] [blame] | 1841 | |
Arnd Bergmann | 50857e2 | 2009-11-06 22:52:32 -0800 | [diff] [blame] | 1842 | if (copy_to_user(argp, &ifr, ifreq_len)) |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 1843 | ret = -EFAULT; |
Mark McLoughlin | e3b9955 | 2008-08-15 15:09:56 -0700 | [diff] [blame] | 1844 | break; |
| 1845 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1846 | case TUNSETNOCSUM: |
| 1847 | /* Disable/Enable checksum */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1848 | |
Michał Mirosław | 8825537 | 2011-04-19 06:13:10 +0000 | [diff] [blame] | 1849 | /* [unimplemented] */ |
| 1850 | tun_debug(KERN_INFO, tun, "ignored: set checksum %s\n", |
Joe Perches | 6b8a66e | 2011-03-02 07:18:10 +0000 | [diff] [blame] | 1851 | arg ? "disabled" : "enabled"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1852 | break; |
| 1853 | |
| 1854 | case TUNSETPERSIST: |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1855 | /* Disable/Enable persist mode. Keep an extra reference to the |
| 1856 | * module to prevent the module being unprobed. |
| 1857 | */ |
| 1858 | if (arg) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1859 | tun->flags |= TUN_PERSIST; |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1860 | __module_get(THIS_MODULE); |
| 1861 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1862 | tun->flags &= ~TUN_PERSIST; |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1863 | module_put(THIS_MODULE); |
| 1864 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1865 | |
Joe Perches | 6b8a66e | 2011-03-02 07:18:10 +0000 | [diff] [blame] | 1866 | tun_debug(KERN_INFO, tun, "persist %s\n", |
| 1867 | arg ? "enabled" : "disabled"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1868 | break; |
| 1869 | |
| 1870 | case TUNSETOWNER: |
| 1871 | /* Set owner of the device */ |
Eric W. Biederman | 0625c88 | 2012-02-07 16:48:55 -0800 | [diff] [blame] | 1872 | owner = make_kuid(current_user_ns(), arg); |
| 1873 | if (!uid_valid(owner)) { |
| 1874 | ret = -EINVAL; |
| 1875 | break; |
| 1876 | } |
| 1877 | tun->owner = owner; |
Jason Wang | 1e58833 | 2012-10-31 19:45:56 +0000 | [diff] [blame] | 1878 | tun_debug(KERN_INFO, tun, "owner set to %u\n", |
Eric W. Biederman | 0625c88 | 2012-02-07 16:48:55 -0800 | [diff] [blame] | 1879 | from_kuid(&init_user_ns, tun->owner)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1880 | break; |
| 1881 | |
Guido Guenther | 8c64462 | 2007-07-02 22:50:25 -0700 | [diff] [blame] | 1882 | case TUNSETGROUP: |
| 1883 | /* Set group of the device */ |
Eric W. Biederman | 0625c88 | 2012-02-07 16:48:55 -0800 | [diff] [blame] | 1884 | group = make_kgid(current_user_ns(), arg); |
| 1885 | if (!gid_valid(group)) { |
| 1886 | ret = -EINVAL; |
| 1887 | break; |
| 1888 | } |
| 1889 | tun->group = group; |
Jason Wang | 1e58833 | 2012-10-31 19:45:56 +0000 | [diff] [blame] | 1890 | tun_debug(KERN_INFO, tun, "group set to %u\n", |
Eric W. Biederman | 0625c88 | 2012-02-07 16:48:55 -0800 | [diff] [blame] | 1891 | from_kgid(&init_user_ns, tun->group)); |
Guido Guenther | 8c64462 | 2007-07-02 22:50:25 -0700 | [diff] [blame] | 1892 | break; |
| 1893 | |
Mike Kershaw | ff4cc3a | 2005-09-01 17:40:05 -0700 | [diff] [blame] | 1894 | case TUNSETLINK: |
| 1895 | /* Only allow setting the type when the interface is down */ |
| 1896 | if (tun->dev->flags & IFF_UP) { |
Joe Perches | 6b8a66e | 2011-03-02 07:18:10 +0000 | [diff] [blame] | 1897 | tun_debug(KERN_INFO, tun, |
| 1898 | "Linktype set failed because interface is up\n"); |
David S. Miller | 48abfe0 | 2008-04-23 19:37:58 -0700 | [diff] [blame] | 1899 | ret = -EBUSY; |
Mike Kershaw | ff4cc3a | 2005-09-01 17:40:05 -0700 | [diff] [blame] | 1900 | } else { |
| 1901 | tun->dev->type = (int) arg; |
Joe Perches | 6b8a66e | 2011-03-02 07:18:10 +0000 | [diff] [blame] | 1902 | tun_debug(KERN_INFO, tun, "linktype set to %d\n", |
| 1903 | tun->dev->type); |
David S. Miller | 48abfe0 | 2008-04-23 19:37:58 -0700 | [diff] [blame] | 1904 | ret = 0; |
Mike Kershaw | ff4cc3a | 2005-09-01 17:40:05 -0700 | [diff] [blame] | 1905 | } |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 1906 | break; |
Mike Kershaw | ff4cc3a | 2005-09-01 17:40:05 -0700 | [diff] [blame] | 1907 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | #ifdef TUN_DEBUG |
| 1909 | case TUNSETDEBUG: |
| 1910 | tun->debug = arg; |
| 1911 | break; |
| 1912 | #endif |
Rusty Russell | 5228ddc | 2008-07-03 03:46:16 -0700 | [diff] [blame] | 1913 | case TUNSETOFFLOAD: |
Michał Mirosław | 8825537 | 2011-04-19 06:13:10 +0000 | [diff] [blame] | 1914 | ret = set_offload(tun, arg); |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 1915 | break; |
Rusty Russell | 5228ddc | 2008-07-03 03:46:16 -0700 | [diff] [blame] | 1916 | |
Max Krasnyansky | f271b2c | 2008-07-14 22:18:19 -0700 | [diff] [blame] | 1917 | case TUNSETTXFILTER: |
| 1918 | /* Can be set only for TAPs */ |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 1919 | ret = -EINVAL; |
Max Krasnyansky | f271b2c | 2008-07-14 22:18:19 -0700 | [diff] [blame] | 1920 | if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV) |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 1921 | break; |
Harvey Harrison | c0e5a8c | 2008-07-16 12:45:34 -0700 | [diff] [blame] | 1922 | ret = update_filter(&tun->txflt, (void __user *)arg); |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 1923 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1924 | |
| 1925 | case SIOCGIFHWADDR: |
Uwe Kleine-König | b595076 | 2010-11-01 15:38:34 -0400 | [diff] [blame] | 1926 | /* Get hw address */ |
Max Krasnyansky | f271b2c | 2008-07-14 22:18:19 -0700 | [diff] [blame] | 1927 | memcpy(ifr.ifr_hwaddr.sa_data, tun->dev->dev_addr, ETH_ALEN); |
| 1928 | ifr.ifr_hwaddr.sa_family = tun->dev->type; |
Arnd Bergmann | 50857e2 | 2009-11-06 22:52:32 -0800 | [diff] [blame] | 1929 | if (copy_to_user(argp, &ifr, ifreq_len)) |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 1930 | ret = -EFAULT; |
| 1931 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1932 | |
| 1933 | case SIOCSIFHWADDR: |
Max Krasnyansky | f271b2c | 2008-07-14 22:18:19 -0700 | [diff] [blame] | 1934 | /* Set hw address */ |
Joe Perches | 6b8a66e | 2011-03-02 07:18:10 +0000 | [diff] [blame] | 1935 | tun_debug(KERN_DEBUG, tun, "set hw address: %pM\n", |
| 1936 | ifr.ifr_hwaddr.sa_data); |
Kim B. Heino | 4010237 | 2008-02-29 12:26:21 -0800 | [diff] [blame] | 1937 | |
Kim B. Heino | 4010237 | 2008-02-29 12:26:21 -0800 | [diff] [blame] | 1938 | ret = dev_set_mac_address(tun->dev, &ifr.ifr_hwaddr); |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 1939 | break; |
Herbert Xu | 33dccbb | 2009-02-05 21:25:32 -0800 | [diff] [blame] | 1940 | |
| 1941 | case TUNGETSNDBUF: |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1942 | sndbuf = tfile->socket.sk->sk_sndbuf; |
Herbert Xu | 33dccbb | 2009-02-05 21:25:32 -0800 | [diff] [blame] | 1943 | if (copy_to_user(argp, &sndbuf, sizeof(sndbuf))) |
| 1944 | ret = -EFAULT; |
| 1945 | break; |
| 1946 | |
| 1947 | case TUNSETSNDBUF: |
| 1948 | if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) { |
| 1949 | ret = -EFAULT; |
| 1950 | break; |
| 1951 | } |
| 1952 | |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 1953 | tun->sndbuf = sndbuf; |
| 1954 | tun_set_sndbuf(tun); |
Herbert Xu | 33dccbb | 2009-02-05 21:25:32 -0800 | [diff] [blame] | 1955 | break; |
| 1956 | |
Michael S. Tsirkin | d9d52b5 | 2010-03-17 17:45:01 +0200 | [diff] [blame] | 1957 | case TUNGETVNETHDRSZ: |
| 1958 | vnet_hdr_sz = tun->vnet_hdr_sz; |
| 1959 | if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz))) |
| 1960 | ret = -EFAULT; |
| 1961 | break; |
| 1962 | |
| 1963 | case TUNSETVNETHDRSZ: |
| 1964 | if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) { |
| 1965 | ret = -EFAULT; |
| 1966 | break; |
| 1967 | } |
| 1968 | if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) { |
| 1969 | ret = -EINVAL; |
| 1970 | break; |
| 1971 | } |
| 1972 | |
| 1973 | tun->vnet_hdr_sz = vnet_hdr_sz; |
| 1974 | break; |
| 1975 | |
Michael S. Tsirkin | 9940516 | 2010-02-14 01:01:10 +0000 | [diff] [blame] | 1976 | case TUNATTACHFILTER: |
| 1977 | /* Can be set only for TAPs */ |
| 1978 | ret = -EINVAL; |
| 1979 | if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV) |
| 1980 | break; |
| 1981 | ret = -EFAULT; |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 1982 | if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog))) |
Michael S. Tsirkin | 9940516 | 2010-02-14 01:01:10 +0000 | [diff] [blame] | 1983 | break; |
| 1984 | |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 1985 | ret = tun_attach_filter(tun); |
Michael S. Tsirkin | 9940516 | 2010-02-14 01:01:10 +0000 | [diff] [blame] | 1986 | break; |
| 1987 | |
| 1988 | case TUNDETACHFILTER: |
| 1989 | /* Can be set only for TAPs */ |
| 1990 | ret = -EINVAL; |
| 1991 | if ((tun->flags & TUN_TYPE_MASK) != TUN_TAP_DEV) |
| 1992 | break; |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 1993 | ret = 0; |
| 1994 | tun_detach_filter(tun, tun->numqueues); |
Michael S. Tsirkin | 9940516 | 2010-02-14 01:01:10 +0000 | [diff] [blame] | 1995 | break; |
| 1996 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | default: |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 1998 | ret = -EINVAL; |
| 1999 | break; |
Joe Perches | ee289b6 | 2010-05-17 22:47:34 -0700 | [diff] [blame] | 2000 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2001 | |
Herbert Xu | 876bfd4 | 2009-08-06 14:22:44 +0000 | [diff] [blame] | 2002 | unlock: |
| 2003 | rtnl_unlock(); |
| 2004 | if (tun) |
| 2005 | tun_put(tun); |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 2006 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2007 | } |
| 2008 | |
Arnd Bergmann | 50857e2 | 2009-11-06 22:52:32 -0800 | [diff] [blame] | 2009 | static long tun_chr_ioctl(struct file *file, |
| 2010 | unsigned int cmd, unsigned long arg) |
| 2011 | { |
| 2012 | return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq)); |
| 2013 | } |
| 2014 | |
| 2015 | #ifdef CONFIG_COMPAT |
| 2016 | static long tun_chr_compat_ioctl(struct file *file, |
| 2017 | unsigned int cmd, unsigned long arg) |
| 2018 | { |
| 2019 | switch (cmd) { |
| 2020 | case TUNSETIFF: |
| 2021 | case TUNGETIFF: |
| 2022 | case TUNSETTXFILTER: |
| 2023 | case TUNGETSNDBUF: |
| 2024 | case TUNSETSNDBUF: |
| 2025 | case SIOCGIFHWADDR: |
| 2026 | case SIOCSIFHWADDR: |
| 2027 | arg = (unsigned long)compat_ptr(arg); |
| 2028 | break; |
| 2029 | default: |
| 2030 | arg = (compat_ulong_t)arg; |
| 2031 | break; |
| 2032 | } |
| 2033 | |
| 2034 | /* |
| 2035 | * compat_ifreq is shorter than ifreq, so we must not access beyond |
| 2036 | * the end of that structure. All fields that are used in this |
| 2037 | * driver are compatible though, we don't need to convert the |
| 2038 | * contents. |
| 2039 | */ |
| 2040 | return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq)); |
| 2041 | } |
| 2042 | #endif /* CONFIG_COMPAT */ |
| 2043 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2044 | static int tun_chr_fasync(int fd, struct file *file, int on) |
| 2045 | { |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 2046 | struct tun_file *tfile = file->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2047 | int ret; |
| 2048 | |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 2049 | if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0) |
Jonathan Corbet | 9d31952 | 2008-06-19 15:50:37 -0600 | [diff] [blame] | 2050 | goto out; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2051 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2052 | if (on) { |
Eric W. Biederman | 609d7fa | 2006-10-02 02:17:15 -0700 | [diff] [blame] | 2053 | ret = __f_setown(file, task_pid(current), PIDTYPE_PID, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2054 | if (ret) |
Jonathan Corbet | 9d31952 | 2008-06-19 15:50:37 -0600 | [diff] [blame] | 2055 | goto out; |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 2056 | tfile->flags |= TUN_FASYNC; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2057 | } else |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 2058 | tfile->flags &= ~TUN_FASYNC; |
Jonathan Corbet | 9d31952 | 2008-06-19 15:50:37 -0600 | [diff] [blame] | 2059 | ret = 0; |
| 2060 | out: |
Jonathan Corbet | 9d31952 | 2008-06-19 15:50:37 -0600 | [diff] [blame] | 2061 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2062 | } |
| 2063 | |
| 2064 | static int tun_chr_open(struct inode *inode, struct file * file) |
| 2065 | { |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 2066 | struct tun_file *tfile; |
Thomas Gleixner | deed49f | 2009-10-14 01:19:46 -0700 | [diff] [blame] | 2067 | |
Joe Perches | 6b8a66e | 2011-03-02 07:18:10 +0000 | [diff] [blame] | 2068 | DBG1(KERN_INFO, "tunX: tun_chr_open\n"); |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 2069 | |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 2070 | tfile = (struct tun_file *)sk_alloc(&init_net, AF_UNSPEC, GFP_KERNEL, |
| 2071 | &tun_proto); |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 2072 | if (!tfile) |
| 2073 | return -ENOMEM; |
Jason Wang | 6e914fc | 2012-10-31 19:45:58 +0000 | [diff] [blame] | 2074 | rcu_assign_pointer(tfile->tun, NULL); |
Eric W. Biederman | 36b50ba | 2009-01-20 11:01:48 +0000 | [diff] [blame] | 2075 | tfile->net = get_net(current->nsproxy->net_ns); |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 2076 | tfile->flags = 0; |
| 2077 | |
| 2078 | rcu_assign_pointer(tfile->socket.wq, &tfile->wq); |
| 2079 | init_waitqueue_head(&tfile->wq.wait); |
| 2080 | |
| 2081 | tfile->socket.file = file; |
| 2082 | tfile->socket.ops = &tun_socket_ops; |
| 2083 | |
| 2084 | sock_init_data(&tfile->socket, &tfile->sk); |
| 2085 | sk_change_net(&tfile->sk, tfile->net); |
| 2086 | |
| 2087 | tfile->sk.sk_write_space = tun_sock_write_space; |
| 2088 | tfile->sk.sk_sndbuf = INT_MAX; |
| 2089 | |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 2090 | file->private_data = tfile; |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 2091 | set_bit(SOCK_EXTERNALLY_ALLOCATED, &tfile->socket.flags); |
| 2092 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2093 | return 0; |
| 2094 | } |
| 2095 | |
| 2096 | static int tun_chr_close(struct inode *inode, struct file *file) |
| 2097 | { |
Eric W. Biederman | 631ab46 | 2009-01-20 11:00:40 +0000 | [diff] [blame] | 2098 | struct tun_file *tfile = file->private_data; |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 2099 | struct net *net = tfile->net; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2100 | |
Jason Wang | c8d68e6 | 2012-10-31 19:46:00 +0000 | [diff] [blame] | 2101 | tun_detach(tfile, true); |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 2102 | put_net(net); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2103 | |
| 2104 | return 0; |
| 2105 | } |
| 2106 | |
Arjan van de Ven | d54b1fd | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 2107 | static const struct file_operations tun_fops = { |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2108 | .owner = THIS_MODULE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2109 | .llseek = no_llseek, |
Badari Pulavarty | ee0b3e6 | 2006-09-30 23:28:47 -0700 | [diff] [blame] | 2110 | .read = do_sync_read, |
| 2111 | .aio_read = tun_chr_aio_read, |
| 2112 | .write = do_sync_write, |
| 2113 | .aio_write = tun_chr_aio_write, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2114 | .poll = tun_chr_poll, |
Arnd Bergmann | 50857e2 | 2009-11-06 22:52:32 -0800 | [diff] [blame] | 2115 | .unlocked_ioctl = tun_chr_ioctl, |
| 2116 | #ifdef CONFIG_COMPAT |
| 2117 | .compat_ioctl = tun_chr_compat_ioctl, |
| 2118 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2119 | .open = tun_chr_open, |
| 2120 | .release = tun_chr_close, |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2121 | .fasync = tun_chr_fasync |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2122 | }; |
| 2123 | |
| 2124 | static struct miscdevice tun_miscdev = { |
| 2125 | .minor = TUN_MINOR, |
| 2126 | .name = "tun", |
Kay Sievers | e454cea | 2009-09-18 23:01:12 +0200 | [diff] [blame] | 2127 | .nodename = "net/tun", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2128 | .fops = &tun_fops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2129 | }; |
| 2130 | |
| 2131 | /* ethtool interface */ |
| 2132 | |
| 2133 | static int tun_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) |
| 2134 | { |
| 2135 | cmd->supported = 0; |
| 2136 | cmd->advertising = 0; |
David Decotigny | 7073949 | 2011-04-27 18:32:40 +0000 | [diff] [blame] | 2137 | ethtool_cmd_speed_set(cmd, SPEED_10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2138 | cmd->duplex = DUPLEX_FULL; |
| 2139 | cmd->port = PORT_TP; |
| 2140 | cmd->phy_address = 0; |
| 2141 | cmd->transceiver = XCVR_INTERNAL; |
| 2142 | cmd->autoneg = AUTONEG_DISABLE; |
| 2143 | cmd->maxtxpkt = 0; |
| 2144 | cmd->maxrxpkt = 0; |
| 2145 | return 0; |
| 2146 | } |
| 2147 | |
| 2148 | static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info) |
| 2149 | { |
| 2150 | struct tun_struct *tun = netdev_priv(dev); |
| 2151 | |
Rick Jones | 33a5ba1 | 2011-11-15 14:59:53 +0000 | [diff] [blame] | 2152 | strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); |
| 2153 | strlcpy(info->version, DRV_VERSION, sizeof(info->version)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2154 | |
| 2155 | switch (tun->flags & TUN_TYPE_MASK) { |
| 2156 | case TUN_TUN_DEV: |
Rick Jones | 33a5ba1 | 2011-11-15 14:59:53 +0000 | [diff] [blame] | 2157 | strlcpy(info->bus_info, "tun", sizeof(info->bus_info)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2158 | break; |
| 2159 | case TUN_TAP_DEV: |
Rick Jones | 33a5ba1 | 2011-11-15 14:59:53 +0000 | [diff] [blame] | 2160 | strlcpy(info->bus_info, "tap", sizeof(info->bus_info)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2161 | break; |
| 2162 | } |
| 2163 | } |
| 2164 | |
| 2165 | static u32 tun_get_msglevel(struct net_device *dev) |
| 2166 | { |
| 2167 | #ifdef TUN_DEBUG |
| 2168 | struct tun_struct *tun = netdev_priv(dev); |
| 2169 | return tun->debug; |
| 2170 | #else |
| 2171 | return -EOPNOTSUPP; |
| 2172 | #endif |
| 2173 | } |
| 2174 | |
| 2175 | static void tun_set_msglevel(struct net_device *dev, u32 value) |
| 2176 | { |
| 2177 | #ifdef TUN_DEBUG |
| 2178 | struct tun_struct *tun = netdev_priv(dev); |
| 2179 | tun->debug = value; |
| 2180 | #endif |
| 2181 | } |
| 2182 | |
Jeff Garzik | 7282d49 | 2006-09-13 14:30:00 -0400 | [diff] [blame] | 2183 | static const struct ethtool_ops tun_ethtool_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2184 | .get_settings = tun_get_settings, |
| 2185 | .get_drvinfo = tun_get_drvinfo, |
| 2186 | .get_msglevel = tun_get_msglevel, |
| 2187 | .set_msglevel = tun_set_msglevel, |
Nolan Leake | bee3136 | 2010-07-27 13:53:43 +0000 | [diff] [blame] | 2188 | .get_link = ethtool_op_get_link, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2189 | }; |
| 2190 | |
Pavel Emelyanov | 79d1760 | 2008-04-16 00:40:46 -0700 | [diff] [blame] | 2191 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2192 | static int __init tun_init(void) |
| 2193 | { |
| 2194 | int ret = 0; |
| 2195 | |
Joe Perches | 6b8a66e | 2011-03-02 07:18:10 +0000 | [diff] [blame] | 2196 | pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION); |
| 2197 | pr_info("%s\n", DRV_COPYRIGHT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2198 | |
Eric W. Biederman | f019a7a | 2009-01-21 16:02:16 -0800 | [diff] [blame] | 2199 | ret = rtnl_link_register(&tun_link_ops); |
Pavel Emelyanov | 79d1760 | 2008-04-16 00:40:46 -0700 | [diff] [blame] | 2200 | if (ret) { |
Joe Perches | 6b8a66e | 2011-03-02 07:18:10 +0000 | [diff] [blame] | 2201 | pr_err("Can't register link_ops\n"); |
Eric W. Biederman | f019a7a | 2009-01-21 16:02:16 -0800 | [diff] [blame] | 2202 | goto err_linkops; |
Pavel Emelyanov | 79d1760 | 2008-04-16 00:40:46 -0700 | [diff] [blame] | 2203 | } |
| 2204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2205 | ret = misc_register(&tun_miscdev); |
Pavel Emelyanov | 79d1760 | 2008-04-16 00:40:46 -0700 | [diff] [blame] | 2206 | if (ret) { |
Joe Perches | 6b8a66e | 2011-03-02 07:18:10 +0000 | [diff] [blame] | 2207 | pr_err("Can't register misc device %d\n", TUN_MINOR); |
Pavel Emelyanov | 79d1760 | 2008-04-16 00:40:46 -0700 | [diff] [blame] | 2208 | goto err_misc; |
| 2209 | } |
Eric W. Biederman | f019a7a | 2009-01-21 16:02:16 -0800 | [diff] [blame] | 2210 | return 0; |
Pavel Emelyanov | 79d1760 | 2008-04-16 00:40:46 -0700 | [diff] [blame] | 2211 | err_misc: |
Eric W. Biederman | f019a7a | 2009-01-21 16:02:16 -0800 | [diff] [blame] | 2212 | rtnl_link_unregister(&tun_link_ops); |
| 2213 | err_linkops: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2214 | return ret; |
| 2215 | } |
| 2216 | |
| 2217 | static void tun_cleanup(void) |
| 2218 | { |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2219 | misc_deregister(&tun_miscdev); |
Eric W. Biederman | f019a7a | 2009-01-21 16:02:16 -0800 | [diff] [blame] | 2220 | rtnl_link_unregister(&tun_link_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2221 | } |
| 2222 | |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 2223 | /* Get an underlying socket object from tun file. Returns error unless file is |
| 2224 | * attached to a device. The returned object works like a packet socket, it |
| 2225 | * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for |
| 2226 | * holding a reference to the file for as long as the socket is in use. */ |
| 2227 | struct socket *tun_get_socket(struct file *file) |
| 2228 | { |
Jason Wang | 6e914fc | 2012-10-31 19:45:58 +0000 | [diff] [blame] | 2229 | struct tun_file *tfile; |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 2230 | if (file->f_op != &tun_fops) |
| 2231 | return ERR_PTR(-EINVAL); |
Jason Wang | 6e914fc | 2012-10-31 19:45:58 +0000 | [diff] [blame] | 2232 | tfile = file->private_data; |
| 2233 | if (!tfile) |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 2234 | return ERR_PTR(-EBADFD); |
Jason Wang | 54f968d | 2012-10-31 19:45:57 +0000 | [diff] [blame] | 2235 | return &tfile->socket; |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 2236 | } |
| 2237 | EXPORT_SYMBOL_GPL(tun_get_socket); |
| 2238 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2239 | module_init(tun_init); |
| 2240 | module_exit(tun_cleanup); |
| 2241 | MODULE_DESCRIPTION(DRV_DESCRIPTION); |
| 2242 | MODULE_AUTHOR(DRV_COPYRIGHT); |
| 2243 | MODULE_LICENSE("GPL"); |
| 2244 | MODULE_ALIAS_MISCDEV(TUN_MINOR); |
Kay Sievers | 578454f | 2010-05-20 18:07:20 +0200 | [diff] [blame] | 2245 | MODULE_ALIAS("devname:net/tun"); |