1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * TUN - Universal TUN/TAP device driver. 4 * Copyright (C) 1999-2002 Maxim Krasnyansky <maxk@qualcomm.com> 5 * 6 * $Id: tun.c,v 1.15 2002/03/01 02:44:24 maxk Exp $ 7 */ 8 9 /* 10 * Changes: 11 * 12 * Mike Kershaw <dragorn@kismetwireless.net> 2005/08/14 13 * Add TUNSETLINK ioctl to set the link encapsulation 14 * 15 * Mark Smith <markzzzsmith@yahoo.com.au> 16 * Use eth_random_addr() for tap MAC address. 17 * 18 * Harald Roelle <harald.roelle@ifi.lmu.de> 2004/04/20 19 * Fixes in packet dropping, queue length setting and queue wakeup. 20 * Increased default tx queue length. 21 * Added ethtool API. 22 * Minor cleanups 23 * 24 * Daniel Podlejski <underley@underley.eu.org> 25 * Modifications for 2.3.99-pre5 kernel. 26 */ 27 28 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 29 30 #define DRV_NAME "tun" 31 #define DRV_VERSION "1.6" 32 #define DRV_DESCRIPTION "Universal TUN/TAP device driver" 33 #define DRV_COPYRIGHT "(C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>" 34 35 #include <linux/module.h> 36 #include <linux/errno.h> 37 #include <linux/kernel.h> 38 #include <linux/sched/signal.h> 39 #include <linux/major.h> 40 #include <linux/slab.h> 41 #include <linux/poll.h> 42 #include <linux/fcntl.h> 43 #include <linux/init.h> 44 #include <linux/skbuff.h> 45 #include <linux/netdevice.h> 46 #include <linux/etherdevice.h> 47 #include <linux/miscdevice.h> 48 #include <linux/ethtool.h> 49 #include <linux/rtnetlink.h> 50 #include <linux/compat.h> 51 #include <linux/if.h> 52 #include <linux/if_arp.h> 53 #include <linux/if_ether.h> 54 #include <linux/if_tun.h> 55 #include <linux/if_vlan.h> 56 #include <linux/crc32.h> 57 #include <linux/math.h> 58 #include <linux/nsproxy.h> 59 #include <linux/virtio_net.h> 60 #include <linux/rcupdate.h> 61 #include <net/net_namespace.h> 62 #include <net/netns/generic.h> 63 #include <net/rtnetlink.h> 64 #include <net/sock.h> 65 #include <net/xdp.h> 66 #include <net/ip_tunnels.h> 67 #include <linux/seq_file.h> 68 #include <linux/uio.h> 69 #include <linux/skb_array.h> 70 #include <linux/bpf.h> 71 #include <linux/bpf_trace.h> 72 #include <linux/mutex.h> 73 #include <linux/ieee802154.h> 74 #include <linux/if_ltalk.h> 75 #include <uapi/linux/if_fddi.h> 76 #include <uapi/linux/if_hippi.h> 77 #include <uapi/linux/if_fc.h> 78 #include <net/ax25.h> 79 #include <net/rose.h> 80 #include <net/6lowpan.h> 81 82 #include <linux/uaccess.h> 83 #include <linux/proc_fs.h> 84 85 static void tun_default_link_ksettings(struct net_device *dev, 86 struct ethtool_link_ksettings *cmd); 87 88 #define TUN_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD) 89 90 /* TUN device flags */ 91 92 /* IFF_ATTACH_QUEUE is never stored in device flags, 93 * overload it to mean fasync when stored there. 94 */ 95 #define TUN_FASYNC IFF_ATTACH_QUEUE 96 /* High bits in flags field are unused. */ 97 #define TUN_VNET_LE 0x80000000 98 #define TUN_VNET_BE 0x40000000 99 100 #define TUN_FEATURES (IFF_NO_PI | IFF_ONE_QUEUE | IFF_VNET_HDR | \ 101 IFF_MULTI_QUEUE | IFF_NAPI | IFF_NAPI_FRAGS) 102 103 #define GOODCOPY_LEN 128 104 105 #define FLT_EXACT_COUNT 8 106 struct tap_filter { 107 unsigned int count; /* Number of addrs. Zero means disabled */ 108 u32 mask[2]; /* Mask of the hashed addrs */ 109 unsigned char addr[FLT_EXACT_COUNT][ETH_ALEN]; 110 }; 111 112 /* MAX_TAP_QUEUES 256 is chosen to allow rx/tx queues to be equal 113 * to max number of VCPUs in guest. */ 114 #define MAX_TAP_QUEUES 256 115 #define MAX_TAP_FLOWS 4096 116 117 #define TUN_FLOW_EXPIRE (3 * HZ) 118 119 /* A tun_file connects an open character device to a tuntap netdevice. It 120 * also contains all socket related structures (except sock_fprog and tap_filter) 121 * to serve as one transmit queue for tuntap device. The sock_fprog and 122 * tap_filter were kept in tun_struct since they were used for filtering for the 123 * netdevice not for a specific queue (at least I didn't see the requirement for 124 * this). 125 * 126 * RCU usage: 127 * The tun_file and tun_struct are loosely coupled, the pointer from one to the 128 * other can only be read while rcu_read_lock or rtnl_lock is held. 129 */ 130 struct tun_file { 131 struct sock sk; 132 struct socket socket; 133 struct tun_struct __rcu *tun; 134 struct fasync_struct *fasync; 135 /* only used for fasnyc */ 136 unsigned int flags; 137 union { 138 u16 queue_index; 139 unsigned int ifindex; 140 }; 141 struct napi_struct napi; 142 bool napi_enabled; 143 bool napi_frags_enabled; 144 struct mutex napi_mutex; /* Protects access to the above napi */ 145 struct list_head next; 146 struct tun_struct *detached; 147 struct ptr_ring tx_ring; 148 struct xdp_rxq_info xdp_rxq; 149 }; 150 151 struct tun_page { 152 struct page *page; 153 int count; 154 }; 155 156 struct tun_flow_entry { 157 struct hlist_node hash_link; 158 struct rcu_head rcu; 159 struct tun_struct *tun; 160 161 u32 rxhash; 162 u32 rps_rxhash; 163 int queue_index; 164 unsigned long updated ____cacheline_aligned_in_smp; 165 }; 166 167 #define TUN_NUM_FLOW_ENTRIES 1024 168 #define TUN_MASK_FLOW_ENTRIES (TUN_NUM_FLOW_ENTRIES - 1) 169 170 struct tun_prog { 171 struct rcu_head rcu; 172 struct bpf_prog *prog; 173 }; 174 175 /* Since the socket were moved to tun_file, to preserve the behavior of persist 176 * device, socket filter, sndbuf and vnet header size were restore when the 177 * file were attached to a persist device. 178 */ 179 struct tun_struct { 180 struct tun_file __rcu *tfiles[MAX_TAP_QUEUES]; 181 unsigned int numqueues; 182 unsigned int flags; 183 kuid_t owner; 184 kgid_t group; 185 186 struct net_device *dev; 187 netdev_features_t set_features; 188 #define TUN_USER_FEATURES (NETIF_F_HW_CSUM|NETIF_F_TSO_ECN|NETIF_F_TSO| \ 189 NETIF_F_TSO6 | NETIF_F_GSO_UDP_L4) 190 191 int align; 192 int vnet_hdr_sz; 193 int sndbuf; 194 struct tap_filter txflt; 195 struct sock_fprog fprog; 196 /* protected by rtnl lock */ 197 bool filter_attached; 198 u32 msg_enable; 199 spinlock_t lock; 200 struct hlist_head flows[TUN_NUM_FLOW_ENTRIES]; 201 struct timer_list flow_gc_timer; 202 unsigned long ageing_time; 203 unsigned int numdisabled; 204 struct list_head disabled; 205 void *security; 206 u32 flow_count; 207 u32 rx_batched; 208 atomic_long_t rx_frame_errors; 209 struct bpf_prog __rcu *xdp_prog; 210 struct tun_prog __rcu *steering_prog; 211 struct tun_prog __rcu *filter_prog; 212 struct ethtool_link_ksettings link_ksettings; 213 /* init args */ 214 struct file *file; 215 struct ifreq *ifr; 216 }; 217 218 struct veth { 219 __be16 h_vlan_proto; 220 __be16 h_vlan_TCI; 221 }; 222 223 static void tun_flow_init(struct tun_struct *tun); 224 static void tun_flow_uninit(struct tun_struct *tun); 225 226 static int tun_napi_receive(struct napi_struct *napi, int budget) 227 { 228 struct tun_file *tfile = container_of(napi, struct tun_file, napi); 229 struct sk_buff_head *queue = &tfile->sk.sk_write_queue; 230 struct sk_buff_head process_queue; 231 struct sk_buff *skb; 232 int received = 0; 233 234 __skb_queue_head_init(&process_queue); 235 236 spin_lock(&queue->lock); 237 skb_queue_splice_tail_init(queue, &process_queue); 238 spin_unlock(&queue->lock); 239 240 while (received < budget && (skb = __skb_dequeue(&process_queue))) { 241 napi_gro_receive(napi, skb); 242 ++received; 243 } 244 245 if (!skb_queue_empty(&process_queue)) { 246 spin_lock(&queue->lock); 247 skb_queue_splice(&process_queue, queue); 248 spin_unlock(&queue->lock); 249 } 250 251 return received; 252 } 253 254 static int tun_napi_poll(struct napi_struct *napi, int budget) 255 { 256 unsigned int received; 257 258 received = tun_napi_receive(napi, budget); 259 260 if (received < budget) 261 napi_complete_done(napi, received); 262 263 return received; 264 } 265 266 static void tun_napi_init(struct tun_struct *tun, struct tun_file *tfile, 267 bool napi_en, bool napi_frags) 268 { 269 tfile->napi_enabled = napi_en; 270 tfile->napi_frags_enabled = napi_en && napi_frags; 271 if (napi_en) { 272 netif_napi_add_tx(tun->dev, &tfile->napi, tun_napi_poll); 273 napi_enable(&tfile->napi); 274 } 275 } 276 277 static void tun_napi_enable(struct tun_file *tfile) 278 { 279 if (tfile->napi_enabled) 280 napi_enable(&tfile->napi); 281 } 282 283 static void tun_napi_disable(struct tun_file *tfile) 284 { 285 if (tfile->napi_enabled) 286 napi_disable(&tfile->napi); 287 } 288 289 static void tun_napi_del(struct tun_file *tfile) 290 { 291 if (tfile->napi_enabled) 292 netif_napi_del(&tfile->napi); 293 } 294 295 static bool tun_napi_frags_enabled(const struct tun_file *tfile) 296 { 297 return tfile->napi_frags_enabled; 298 } 299 300 #ifdef CONFIG_TUN_VNET_CROSS_LE 301 static inline bool tun_legacy_is_little_endian(struct tun_struct *tun) 302 { 303 return tun->flags & TUN_VNET_BE ? false : 304 virtio_legacy_is_little_endian(); 305 } 306 307 static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp) 308 { 309 int be = !!(tun->flags & TUN_VNET_BE); 310 311 if (put_user(be, argp)) 312 return -EFAULT; 313 314 return 0; 315 } 316 317 static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp) 318 { 319 int be; 320 321 if (get_user(be, argp)) 322 return -EFAULT; 323 324 if (be) 325 tun->flags |= TUN_VNET_BE; 326 else 327 tun->flags &= ~TUN_VNET_BE; 328 329 return 0; 330 } 331 #else 332 static inline bool tun_legacy_is_little_endian(struct tun_struct *tun) 333 { 334 return virtio_legacy_is_little_endian(); 335 } 336 337 static long tun_get_vnet_be(struct tun_struct *tun, int __user *argp) 338 { 339 return -EINVAL; 340 } 341 342 static long tun_set_vnet_be(struct tun_struct *tun, int __user *argp) 343 { 344 return -EINVAL; 345 } 346 #endif /* CONFIG_TUN_VNET_CROSS_LE */ 347 348 static inline bool tun_is_little_endian(struct tun_struct *tun) 349 { 350 return tun->flags & TUN_VNET_LE || 351 tun_legacy_is_little_endian(tun); 352 } 353 354 static inline u16 tun16_to_cpu(struct tun_struct *tun, __virtio16 val) 355 { 356 return __virtio16_to_cpu(tun_is_little_endian(tun), val); 357 } 358 359 static inline __virtio16 cpu_to_tun16(struct tun_struct *tun, u16 val) 360 { 361 return __cpu_to_virtio16(tun_is_little_endian(tun), val); 362 } 363 364 static inline u32 tun_hashfn(u32 rxhash) 365 { 366 return rxhash & TUN_MASK_FLOW_ENTRIES; 367 } 368 369 static struct tun_flow_entry *tun_flow_find(struct hlist_head *head, u32 rxhash) 370 { 371 struct tun_flow_entry *e; 372 373 hlist_for_each_entry_rcu(e, head, hash_link) { 374 if (e->rxhash == rxhash) 375 return e; 376 } 377 return NULL; 378 } 379 380 static struct tun_flow_entry *tun_flow_create(struct tun_struct *tun, 381 struct hlist_head *head, 382 u32 rxhash, u16 queue_index) 383 { 384 struct tun_flow_entry *e = kmalloc(sizeof(*e), GFP_ATOMIC); 385 386 if (e) { 387 netif_info(tun, tx_queued, tun->dev, 388 "create flow: hash %u index %u\n", 389 rxhash, queue_index); 390 e->updated = jiffies; 391 e->rxhash = rxhash; 392 e->rps_rxhash = 0; 393 e->queue_index = queue_index; 394 e->tun = tun; 395 hlist_add_head_rcu(&e->hash_link, head); 396 ++tun->flow_count; 397 } 398 return e; 399 } 400 401 static void tun_flow_delete(struct tun_struct *tun, struct tun_flow_entry *e) 402 { 403 netif_info(tun, tx_queued, tun->dev, "delete flow: hash %u index %u\n", 404 e->rxhash, e->queue_index); 405 hlist_del_rcu(&e->hash_link); 406 kfree_rcu(e, rcu); 407 --tun->flow_count; 408 } 409 410 static void tun_flow_flush(struct tun_struct *tun) 411 { 412 int i; 413 414 spin_lock_bh(&tun->lock); 415 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) { 416 struct tun_flow_entry *e; 417 struct hlist_node *n; 418 419 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) 420 tun_flow_delete(tun, e); 421 } 422 spin_unlock_bh(&tun->lock); 423 } 424 425 static void tun_flow_delete_by_queue(struct tun_struct *tun, u16 queue_index) 426 { 427 int i; 428 429 spin_lock_bh(&tun->lock); 430 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) { 431 struct tun_flow_entry *e; 432 struct hlist_node *n; 433 434 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) { 435 if (e->queue_index == queue_index) 436 tun_flow_delete(tun, e); 437 } 438 } 439 spin_unlock_bh(&tun->lock); 440 } 441 442 static void tun_flow_cleanup(struct timer_list *t) 443 { 444 struct tun_struct *tun = from_timer(tun, t, flow_gc_timer); 445 unsigned long delay = tun->ageing_time; 446 unsigned long next_timer = jiffies + delay; 447 unsigned long count = 0; 448 int i; 449 450 spin_lock(&tun->lock); 451 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) { 452 struct tun_flow_entry *e; 453 struct hlist_node *n; 454 455 hlist_for_each_entry_safe(e, n, &tun->flows[i], hash_link) { 456 unsigned long this_timer; 457 458 this_timer = e->updated + delay; 459 if (time_before_eq(this_timer, jiffies)) { 460 tun_flow_delete(tun, e); 461 continue; 462 } 463 count++; 464 if (time_before(this_timer, next_timer)) 465 next_timer = this_timer; 466 } 467 } 468 469 if (count) 470 mod_timer(&tun->flow_gc_timer, round_jiffies_up(next_timer)); 471 spin_unlock(&tun->lock); 472 } 473 474 static void tun_flow_update(struct tun_struct *tun, u32 rxhash, 475 struct tun_file *tfile) 476 { 477 struct hlist_head *head; 478 struct tun_flow_entry *e; 479 unsigned long delay = tun->ageing_time; 480 u16 queue_index = tfile->queue_index; 481 482 head = &tun->flows[tun_hashfn(rxhash)]; 483 484 rcu_read_lock(); 485 486 e = tun_flow_find(head, rxhash); 487 if (likely(e)) { 488 /* TODO: keep queueing to old queue until it's empty? */ 489 if (READ_ONCE(e->queue_index) != queue_index) 490 WRITE_ONCE(e->queue_index, queue_index); 491 if (e->updated != jiffies) 492 e->updated = jiffies; 493 sock_rps_record_flow_hash(e->rps_rxhash); 494 } else { 495 spin_lock_bh(&tun->lock); 496 if (!tun_flow_find(head, rxhash) && 497 tun->flow_count < MAX_TAP_FLOWS) 498 tun_flow_create(tun, head, rxhash, queue_index); 499 500 if (!timer_pending(&tun->flow_gc_timer)) 501 mod_timer(&tun->flow_gc_timer, 502 round_jiffies_up(jiffies + delay)); 503 spin_unlock_bh(&tun->lock); 504 } 505 506 rcu_read_unlock(); 507 } 508 509 /* Save the hash received in the stack receive path and update the 510 * flow_hash table accordingly. 511 */ 512 static inline void tun_flow_save_rps_rxhash(struct tun_flow_entry *e, u32 hash) 513 { 514 if (unlikely(e->rps_rxhash != hash)) 515 e->rps_rxhash = hash; 516 } 517 518 /* We try to identify a flow through its rxhash. The reason that 519 * we do not check rxq no. is because some cards(e.g 82599), chooses 520 * the rxq based on the txq where the last packet of the flow comes. As 521 * the userspace application move between processors, we may get a 522 * different rxq no. here. 523 */ 524 static u16 tun_automq_select_queue(struct tun_struct *tun, struct sk_buff *skb) 525 { 526 struct tun_flow_entry *e; 527 u32 txq, numqueues; 528 529 numqueues = READ_ONCE(tun->numqueues); 530 531 txq = __skb_get_hash_symmetric(skb); 532 e = tun_flow_find(&tun->flows[tun_hashfn(txq)], txq); 533 if (e) { 534 tun_flow_save_rps_rxhash(e, txq); 535 txq = e->queue_index; 536 } else { 537 txq = reciprocal_scale(txq, numqueues); 538 } 539 540 return txq; 541 } 542 543 static u16 tun_ebpf_select_queue(struct tun_struct *tun, struct sk_buff *skb) 544 { 545 struct tun_prog *prog; 546 u32 numqueues; 547 u16 ret = 0; 548 549 numqueues = READ_ONCE(tun->numqueues); 550 if (!numqueues) 551 return 0; 552 553 prog = rcu_dereference(tun->steering_prog); 554 if (prog) 555 ret = bpf_prog_run_clear_cb(prog->prog, skb); 556 557 return ret % numqueues; 558 } 559 560 static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb, 561 struct net_device *sb_dev) 562 { 563 struct tun_struct *tun = netdev_priv(dev); 564 u16 ret; 565 566 rcu_read_lock(); 567 if (rcu_dereference(tun->steering_prog)) 568 ret = tun_ebpf_select_queue(tun, skb); 569 else 570 ret = tun_automq_select_queue(tun, skb); 571 rcu_read_unlock(); 572 573 return ret; 574 } 575 576 static inline bool tun_not_capable(struct tun_struct *tun) 577 { 578 const struct cred *cred = current_cred(); 579 struct net *net = dev_net(tun->dev); 580 581 return ((uid_valid(tun->owner) && !uid_eq(cred->euid, tun->owner)) || 582 (gid_valid(tun->group) && !in_egroup_p(tun->group))) && 583 !ns_capable(net->user_ns, CAP_NET_ADMIN); 584 } 585 586 static void tun_set_real_num_queues(struct tun_struct *tun) 587 { 588 netif_set_real_num_tx_queues(tun->dev, tun->numqueues); 589 netif_set_real_num_rx_queues(tun->dev, tun->numqueues); 590 } 591 592 static void tun_disable_queue(struct tun_struct *tun, struct tun_file *tfile) 593 { 594 tfile->detached = tun; 595 list_add_tail(&tfile->next, &tun->disabled); 596 ++tun->numdisabled; 597 } 598 599 static struct tun_struct *tun_enable_queue(struct tun_file *tfile) 600 { 601 struct tun_struct *tun = tfile->detached; 602 603 tfile->detached = NULL; 604 list_del_init(&tfile->next); 605 --tun->numdisabled; 606 return tun; 607 } 608 609 void tun_ptr_free(void *ptr) 610 { 611 if (!ptr) 612 return; 613 if (tun_is_xdp_frame(ptr)) { 614 struct xdp_frame *xdpf = tun_ptr_to_xdp(ptr); 615 616 xdp_return_frame(xdpf); 617 } else { 618 __skb_array_destroy_skb(ptr); 619 } 620 } 621 EXPORT_SYMBOL_GPL(tun_ptr_free); 622 623 static void tun_queue_purge(struct tun_file *tfile) 624 { 625 void *ptr; 626 627 while ((ptr = ptr_ring_consume(&tfile->tx_ring)) != NULL) 628 tun_ptr_free(ptr); 629 630 skb_queue_purge(&tfile->sk.sk_write_queue); 631 skb_queue_purge(&tfile->sk.sk_error_queue); 632 } 633 634 static void __tun_detach(struct tun_file *tfile, bool clean) 635 { 636 struct tun_file *ntfile; 637 struct tun_struct *tun; 638 639 tun = rtnl_dereference(tfile->tun); 640 641 if (tun && clean) { 642 if (!tfile->detached) 643 tun_napi_disable(tfile); 644 tun_napi_del(tfile); 645 } 646 647 if (tun && !tfile->detached) { 648 u16 index = tfile->queue_index; 649 BUG_ON(index >= tun->numqueues); 650 651 rcu_assign_pointer(tun->tfiles[index], 652 tun->tfiles[tun->numqueues - 1]); 653 ntfile = rtnl_dereference(tun->tfiles[index]); 654 ntfile->queue_index = index; 655 rcu_assign_pointer(tun->tfiles[tun->numqueues - 1], 656 NULL); 657 658 --tun->numqueues; 659 if (clean) { 660 RCU_INIT_POINTER(tfile->tun, NULL); 661 sock_put(&tfile->sk); 662 } else { 663 tun_disable_queue(tun, tfile); 664 tun_napi_disable(tfile); 665 } 666 667 synchronize_net(); 668 tun_flow_delete_by_queue(tun, tun->numqueues + 1); 669 /* Drop read queue */ 670 tun_queue_purge(tfile); 671 tun_set_real_num_queues(tun); 672 } else if (tfile->detached && clean) { 673 tun = tun_enable_queue(tfile); 674 sock_put(&tfile->sk); 675 } 676 677 if (clean) { 678 if (tun && tun->numqueues == 0 && tun->numdisabled == 0) { 679 netif_carrier_off(tun->dev); 680 681 if (!(tun->flags & IFF_PERSIST) && 682 tun->dev->reg_state == NETREG_REGISTERED) 683 unregister_netdevice(tun->dev); 684 } 685 if (tun) 686 xdp_rxq_info_unreg(&tfile->xdp_rxq); 687 ptr_ring_cleanup(&tfile->tx_ring, tun_ptr_free); 688 } 689 } 690 691 static void tun_detach(struct tun_file *tfile, bool clean) 692 { 693 struct tun_struct *tun; 694 struct net_device *dev; 695 696 rtnl_lock(); 697 tun = rtnl_dereference(tfile->tun); 698 dev = tun ? tun->dev : NULL; 699 __tun_detach(tfile, clean); 700 if (dev) 701 netdev_state_change(dev); 702 rtnl_unlock(); 703 704 if (clean) 705 sock_put(&tfile->sk); 706 } 707 708 static void tun_detach_all(struct net_device *dev) 709 { 710 struct tun_struct *tun = netdev_priv(dev); 711 struct tun_file *tfile, *tmp; 712 int i, n = tun->numqueues; 713 714 for (i = 0; i < n; i++) { 715 tfile = rtnl_dereference(tun->tfiles[i]); 716 BUG_ON(!tfile); 717 tun_napi_disable(tfile); 718 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN; 719 tfile->socket.sk->sk_data_ready(tfile->socket.sk); 720 RCU_INIT_POINTER(tfile->tun, NULL); 721 --tun->numqueues; 722 } 723 list_for_each_entry(tfile, &tun->disabled, next) { 724 tfile->socket.sk->sk_shutdown = RCV_SHUTDOWN; 725 tfile->socket.sk->sk_data_ready(tfile->socket.sk); 726 RCU_INIT_POINTER(tfile->tun, NULL); 727 } 728 BUG_ON(tun->numqueues != 0); 729 730 synchronize_net(); 731 for (i = 0; i < n; i++) { 732 tfile = rtnl_dereference(tun->tfiles[i]); 733 tun_napi_del(tfile); 734 /* Drop read queue */ 735 tun_queue_purge(tfile); 736 xdp_rxq_info_unreg(&tfile->xdp_rxq); 737 sock_put(&tfile->sk); 738 } 739 list_for_each_entry_safe(tfile, tmp, &tun->disabled, next) { 740 tun_napi_del(tfile); 741 tun_enable_queue(tfile); 742 tun_queue_purge(tfile); 743 xdp_rxq_info_unreg(&tfile->xdp_rxq); 744 sock_put(&tfile->sk); 745 } 746 BUG_ON(tun->numdisabled != 0); 747 748 if (tun->flags & IFF_PERSIST) 749 module_put(THIS_MODULE); 750 } 751 752 static int tun_attach(struct tun_struct *tun, struct file *file, 753 bool skip_filter, bool napi, bool napi_frags, 754 bool publish_tun) 755 { 756 struct tun_file *tfile = file->private_data; 757 struct net_device *dev = tun->dev; 758 int err; 759 760 err = security_tun_dev_attach(tfile->socket.sk, tun->security); 761 if (err < 0) 762 goto out; 763 764 err = -EINVAL; 765 if (rtnl_dereference(tfile->tun) && !tfile->detached) 766 goto out; 767 768 err = -EBUSY; 769 if (!(tun->flags & IFF_MULTI_QUEUE) && tun->numqueues == 1) 770 goto out; 771 772 err = -E2BIG; 773 if (!tfile->detached && 774 tun->numqueues + tun->numdisabled == MAX_TAP_QUEUES) 775 goto out; 776 777 err = 0; 778 779 /* Re-attach the filter to persist device */ 780 if (!skip_filter && (tun->filter_attached == true)) { 781 lock_sock(tfile->socket.sk); 782 err = sk_attach_filter(&tun->fprog, tfile->socket.sk); 783 release_sock(tfile->socket.sk); 784 if (!err) 785 goto out; 786 } 787 788 if (!tfile->detached && 789 ptr_ring_resize(&tfile->tx_ring, dev->tx_queue_len, 790 GFP_KERNEL, tun_ptr_free)) { 791 err = -ENOMEM; 792 goto out; 793 } 794 795 tfile->queue_index = tun->numqueues; 796 tfile->socket.sk->sk_shutdown &= ~RCV_SHUTDOWN; 797 798 if (tfile->detached) { 799 /* Re-attach detached tfile, updating XDP queue_index */ 800 WARN_ON(!xdp_rxq_info_is_reg(&tfile->xdp_rxq)); 801 802 if (tfile->xdp_rxq.queue_index != tfile->queue_index) 803 tfile->xdp_rxq.queue_index = tfile->queue_index; 804 } else { 805 /* Setup XDP RX-queue info, for new tfile getting attached */ 806 err = xdp_rxq_info_reg(&tfile->xdp_rxq, 807 tun->dev, tfile->queue_index, 0); 808 if (err < 0) 809 goto out; 810 err = xdp_rxq_info_reg_mem_model(&tfile->xdp_rxq, 811 MEM_TYPE_PAGE_SHARED, NULL); 812 if (err < 0) { 813 xdp_rxq_info_unreg(&tfile->xdp_rxq); 814 goto out; 815 } 816 err = 0; 817 } 818 819 if (tfile->detached) { 820 tun_enable_queue(tfile); 821 tun_napi_enable(tfile); 822 } else { 823 sock_hold(&tfile->sk); 824 tun_napi_init(tun, tfile, napi, napi_frags); 825 } 826 827 if (rtnl_dereference(tun->xdp_prog)) 828 sock_set_flag(&tfile->sk, SOCK_XDP); 829 830 /* device is allowed to go away first, so no need to hold extra 831 * refcnt. 832 */ 833 834 /* Publish tfile->tun and tun->tfiles only after we've fully 835 * initialized tfile; otherwise we risk using half-initialized 836 * object. 837 */ 838 if (publish_tun) 839 rcu_assign_pointer(tfile->tun, tun); 840 rcu_assign_pointer(tun->tfiles[tun->numqueues], tfile); 841 tun->numqueues++; 842 tun_set_real_num_queues(tun); 843 out: 844 return err; 845 } 846 847 static struct tun_struct *tun_get(struct tun_file *tfile) 848 { 849 struct tun_struct *tun; 850 851 rcu_read_lock(); 852 tun = rcu_dereference(tfile->tun); 853 if (tun) 854 dev_hold(tun->dev); 855 rcu_read_unlock(); 856 857 return tun; 858 } 859 860 static void tun_put(struct tun_struct *tun) 861 { 862 dev_put(tun->dev); 863 } 864 865 /* TAP filtering */ 866 static void addr_hash_set(u32 *mask, const u8 *addr) 867 { 868 int n = ether_crc(ETH_ALEN, addr) >> 26; 869 mask[n >> 5] |= (1 << (n & 31)); 870 } 871 872 static unsigned int addr_hash_test(const u32 *mask, const u8 *addr) 873 { 874 int n = ether_crc(ETH_ALEN, addr) >> 26; 875 return mask[n >> 5] & (1 << (n & 31)); 876 } 877 878 static int update_filter(struct tap_filter *filter, void __user *arg) 879 { 880 struct { u8 u[ETH_ALEN]; } *addr; 881 struct tun_filter uf; 882 int err, alen, n, nexact; 883 884 if (copy_from_user(&uf, arg, sizeof(uf))) 885 return -EFAULT; 886 887 if (!uf.count) { 888 /* Disabled */ 889 filter->count = 0; 890 return 0; 891 } 892 893 alen = ETH_ALEN * uf.count; 894 addr = memdup_user(arg + sizeof(uf), alen); 895 if (IS_ERR(addr)) 896 return PTR_ERR(addr); 897 898 /* The filter is updated without holding any locks. Which is 899 * perfectly safe. We disable it first and in the worst 900 * case we'll accept a few undesired packets. */ 901 filter->count = 0; 902 wmb(); 903 904 /* Use first set of addresses as an exact filter */ 905 for (n = 0; n < uf.count && n < FLT_EXACT_COUNT; n++) 906 memcpy(filter->addr[n], addr[n].u, ETH_ALEN); 907 908 nexact = n; 909 910 /* Remaining multicast addresses are hashed, 911 * unicast will leave the filter disabled. */ 912 memset(filter->mask, 0, sizeof(filter->mask)); 913 for (; n < uf.count; n++) { 914 if (!is_multicast_ether_addr(addr[n].u)) { 915 err = 0; /* no filter */ 916 goto free_addr; 917 } 918 addr_hash_set(filter->mask, addr[n].u); 919 } 920 921 /* For ALLMULTI just set the mask to all ones. 922 * This overrides the mask populated above. */ 923 if ((uf.flags & TUN_FLT_ALLMULTI)) 924 memset(filter->mask, ~0, sizeof(filter->mask)); 925 926 /* Now enable the filter */ 927 wmb(); 928 filter->count = nexact; 929 930 /* Return the number of exact filters */ 931 err = nexact; 932 free_addr: 933 kfree(addr); 934 return err; 935 } 936 937 /* Returns: 0 - drop, !=0 - accept */ 938 static int run_filter(struct tap_filter *filter, const struct sk_buff *skb) 939 { 940 /* Cannot use eth_hdr(skb) here because skb_mac_hdr() is incorrect 941 * at this point. */ 942 struct ethhdr *eh = (struct ethhdr *) skb->data; 943 int i; 944 945 /* Exact match */ 946 for (i = 0; i < filter->count; i++) 947 if (ether_addr_equal(eh->h_dest, filter->addr[i])) 948 return 1; 949 950 /* Inexact match (multicast only) */ 951 if (is_multicast_ether_addr(eh->h_dest)) 952 return addr_hash_test(filter->mask, eh->h_dest); 953 954 return 0; 955 } 956 957 /* 958 * Checks whether the packet is accepted or not. 959 * Returns: 0 - drop, !=0 - accept 960 */ 961 static int check_filter(struct tap_filter *filter, const struct sk_buff *skb) 962 { 963 if (!filter->count) 964 return 1; 965 966 return run_filter(filter, skb); 967 } 968 969 /* Network device part of the driver */ 970 971 static const struct ethtool_ops tun_ethtool_ops; 972 973 static int tun_net_init(struct net_device *dev) 974 { 975 struct tun_struct *tun = netdev_priv(dev); 976 struct ifreq *ifr = tun->ifr; 977 int err; 978 979 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats); 980 if (!dev->tstats) 981 return -ENOMEM; 982 983 spin_lock_init(&tun->lock); 984 985 err = security_tun_dev_alloc_security(&tun->security); 986 if (err < 0) { 987 free_percpu(dev->tstats); 988 return err; 989 } 990 991 tun_flow_init(tun); 992 993 dev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST | 994 TUN_USER_FEATURES | NETIF_F_HW_VLAN_CTAG_TX | 995 NETIF_F_HW_VLAN_STAG_TX; 996 dev->features = dev->hw_features | NETIF_F_LLTX; 997 dev->vlan_features = dev->features & 998 ~(NETIF_F_HW_VLAN_CTAG_TX | 999 NETIF_F_HW_VLAN_STAG_TX); 1000 1001 tun->flags = (tun->flags & ~TUN_FEATURES) | 1002 (ifr->ifr_flags & TUN_FEATURES); 1003 1004 INIT_LIST_HEAD(&tun->disabled); 1005 err = tun_attach(tun, tun->file, false, ifr->ifr_flags & IFF_NAPI, 1006 ifr->ifr_flags & IFF_NAPI_FRAGS, false); 1007 if (err < 0) { 1008 tun_flow_uninit(tun); 1009 security_tun_dev_free_security(tun->security); 1010 free_percpu(dev->tstats); 1011 return err; 1012 } 1013 return 0; 1014 } 1015 1016 /* Net device detach from fd. */ 1017 static void tun_net_uninit(struct net_device *dev) 1018 { 1019 tun_detach_all(dev); 1020 } 1021 1022 /* Net device open. */ 1023 static int tun_net_open(struct net_device *dev) 1024 { 1025 netif_tx_start_all_queues(dev); 1026 1027 return 0; 1028 } 1029 1030 /* Net device close. */ 1031 static int tun_net_close(struct net_device *dev) 1032 { 1033 netif_tx_stop_all_queues(dev); 1034 return 0; 1035 } 1036 1037 /* Net device start xmit */ 1038 static void tun_automq_xmit(struct tun_struct *tun, struct sk_buff *skb) 1039 { 1040 #ifdef CONFIG_RPS 1041 if (tun->numqueues == 1 && static_branch_unlikely(&rps_needed)) { 1042 /* Select queue was not called for the skbuff, so we extract the 1043 * RPS hash and save it into the flow_table here. 1044 */ 1045 struct tun_flow_entry *e; 1046 __u32 rxhash; 1047 1048 rxhash = __skb_get_hash_symmetric(skb); 1049 e = tun_flow_find(&tun->flows[tun_hashfn(rxhash)], rxhash); 1050 if (e) 1051 tun_flow_save_rps_rxhash(e, rxhash); 1052 } 1053 #endif 1054 } 1055 1056 static unsigned int run_ebpf_filter(struct tun_struct *tun, 1057 struct sk_buff *skb, 1058 int len) 1059 { 1060 struct tun_prog *prog = rcu_dereference(tun->filter_prog); 1061 1062 if (prog) 1063 len = bpf_prog_run_clear_cb(prog->prog, skb); 1064 1065 return len; 1066 } 1067 1068 /* Net device start xmit */ 1069 static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev) 1070 { 1071 struct tun_struct *tun = netdev_priv(dev); 1072 enum skb_drop_reason drop_reason; 1073 int txq = skb->queue_mapping; 1074 struct netdev_queue *queue; 1075 struct tun_file *tfile; 1076 int len = skb->len; 1077 1078 rcu_read_lock(); 1079 tfile = rcu_dereference(tun->tfiles[txq]); 1080 1081 /* Drop packet if interface is not attached */ 1082 if (!tfile) { 1083 drop_reason = SKB_DROP_REASON_DEV_READY; 1084 goto drop; 1085 } 1086 1087 if (!rcu_dereference(tun->steering_prog)) 1088 tun_automq_xmit(tun, skb); 1089 1090 netif_info(tun, tx_queued, tun->dev, "%s %d\n", __func__, skb->len); 1091 1092 /* Drop if the filter does not like it. 1093 * This is a noop if the filter is disabled. 1094 * Filter can be enabled only for the TAP devices. */ 1095 if (!check_filter(&tun->txflt, skb)) { 1096 drop_reason = SKB_DROP_REASON_TAP_TXFILTER; 1097 goto drop; 1098 } 1099 1100 if (tfile->socket.sk->sk_filter && 1101 sk_filter(tfile->socket.sk, skb)) { 1102 drop_reason = SKB_DROP_REASON_SOCKET_FILTER; 1103 goto drop; 1104 } 1105 1106 len = run_ebpf_filter(tun, skb, len); 1107 if (len == 0) { 1108 drop_reason = SKB_DROP_REASON_TAP_FILTER; 1109 goto drop; 1110 } 1111 1112 if (pskb_trim(skb, len)) { 1113 drop_reason = SKB_DROP_REASON_NOMEM; 1114 goto drop; 1115 } 1116 1117 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC))) { 1118 drop_reason = SKB_DROP_REASON_SKB_UCOPY_FAULT; 1119 goto drop; 1120 } 1121 1122 skb_tx_timestamp(skb); 1123 1124 /* Orphan the skb - required as we might hang on to it 1125 * for indefinite time. 1126 */ 1127 skb_orphan(skb); 1128 1129 nf_reset_ct(skb); 1130 1131 if (ptr_ring_produce(&tfile->tx_ring, skb)) { 1132 drop_reason = SKB_DROP_REASON_FULL_RING; 1133 goto drop; 1134 } 1135 1136 /* NETIF_F_LLTX requires to do our own update of trans_start */ 1137 queue = netdev_get_tx_queue(dev, txq); 1138 txq_trans_cond_update(queue); 1139 1140 /* Notify and wake up reader process */ 1141 if (tfile->flags & TUN_FASYNC) 1142 kill_fasync(&tfile->fasync, SIGIO, POLL_IN); 1143 tfile->socket.sk->sk_data_ready(tfile->socket.sk); 1144 1145 rcu_read_unlock(); 1146 return NETDEV_TX_OK; 1147 1148 drop: 1149 dev_core_stats_tx_dropped_inc(dev); 1150 skb_tx_error(skb); 1151 kfree_skb_reason(skb, drop_reason); 1152 rcu_read_unlock(); 1153 return NET_XMIT_DROP; 1154 } 1155 1156 static void tun_net_mclist(struct net_device *dev) 1157 { 1158 /* 1159 * This callback is supposed to deal with mc filter in 1160 * _rx_ path and has nothing to do with the _tx_ path. 1161 * In rx path we always accept everything userspace gives us. 1162 */ 1163 } 1164 1165 static netdev_features_t tun_net_fix_features(struct net_device *dev, 1166 netdev_features_t features) 1167 { 1168 struct tun_struct *tun = netdev_priv(dev); 1169 1170 return (features & tun->set_features) | (features & ~TUN_USER_FEATURES); 1171 } 1172 1173 static void tun_set_headroom(struct net_device *dev, int new_hr) 1174 { 1175 struct tun_struct *tun = netdev_priv(dev); 1176 1177 if (new_hr < NET_SKB_PAD) 1178 new_hr = NET_SKB_PAD; 1179 1180 tun->align = new_hr; 1181 } 1182 1183 static void 1184 tun_net_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats) 1185 { 1186 struct tun_struct *tun = netdev_priv(dev); 1187 1188 dev_get_tstats64(dev, stats); 1189 1190 stats->rx_frame_errors += 1191 (unsigned long)atomic_long_read(&tun->rx_frame_errors); 1192 } 1193 1194 static int tun_xdp_set(struct net_device *dev, struct bpf_prog *prog, 1195 struct netlink_ext_ack *extack) 1196 { 1197 struct tun_struct *tun = netdev_priv(dev); 1198 struct tun_file *tfile; 1199 struct bpf_prog *old_prog; 1200 int i; 1201 1202 old_prog = rtnl_dereference(tun->xdp_prog); 1203 rcu_assign_pointer(tun->xdp_prog, prog); 1204 if (old_prog) 1205 bpf_prog_put(old_prog); 1206 1207 for (i = 0; i < tun->numqueues; i++) { 1208 tfile = rtnl_dereference(tun->tfiles[i]); 1209 if (prog) 1210 sock_set_flag(&tfile->sk, SOCK_XDP); 1211 else 1212 sock_reset_flag(&tfile->sk, SOCK_XDP); 1213 } 1214 list_for_each_entry(tfile, &tun->disabled, next) { 1215 if (prog) 1216 sock_set_flag(&tfile->sk, SOCK_XDP); 1217 else 1218 sock_reset_flag(&tfile->sk, SOCK_XDP); 1219 } 1220 1221 return 0; 1222 } 1223 1224 static int tun_xdp(struct net_device *dev, struct netdev_bpf *xdp) 1225 { 1226 switch (xdp->command) { 1227 case XDP_SETUP_PROG: 1228 return tun_xdp_set(dev, xdp->prog, xdp->extack); 1229 default: 1230 return -EINVAL; 1231 } 1232 } 1233 1234 static int tun_net_change_carrier(struct net_device *dev, bool new_carrier) 1235 { 1236 if (new_carrier) { 1237 struct tun_struct *tun = netdev_priv(dev); 1238 1239 if (!tun->numqueues) 1240 return -EPERM; 1241 1242 netif_carrier_on(dev); 1243 } else { 1244 netif_carrier_off(dev); 1245 } 1246 return 0; 1247 } 1248 1249 static const struct net_device_ops tun_netdev_ops = { 1250 .ndo_init = tun_net_init, 1251 .ndo_uninit = tun_net_uninit, 1252 .ndo_open = tun_net_open, 1253 .ndo_stop = tun_net_close, 1254 .ndo_start_xmit = tun_net_xmit, 1255 .ndo_fix_features = tun_net_fix_features, 1256 .ndo_select_queue = tun_select_queue, 1257 .ndo_set_rx_headroom = tun_set_headroom, 1258 .ndo_get_stats64 = tun_net_get_stats64, 1259 .ndo_change_carrier = tun_net_change_carrier, 1260 }; 1261 1262 static void __tun_xdp_flush_tfile(struct tun_file *tfile) 1263 { 1264 /* Notify and wake up reader process */ 1265 if (tfile->flags & TUN_FASYNC) 1266 kill_fasync(&tfile->fasync, SIGIO, POLL_IN); 1267 tfile->socket.sk->sk_data_ready(tfile->socket.sk); 1268 } 1269 1270 static int tun_xdp_xmit(struct net_device *dev, int n, 1271 struct xdp_frame **frames, u32 flags) 1272 { 1273 struct tun_struct *tun = netdev_priv(dev); 1274 struct tun_file *tfile; 1275 u32 numqueues; 1276 int nxmit = 0; 1277 int i; 1278 1279 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK)) 1280 return -EINVAL; 1281 1282 rcu_read_lock(); 1283 1284 resample: 1285 numqueues = READ_ONCE(tun->numqueues); 1286 if (!numqueues) { 1287 rcu_read_unlock(); 1288 return -ENXIO; /* Caller will free/return all frames */ 1289 } 1290 1291 tfile = rcu_dereference(tun->tfiles[smp_processor_id() % 1292 numqueues]); 1293 if (unlikely(!tfile)) 1294 goto resample; 1295 1296 spin_lock(&tfile->tx_ring.producer_lock); 1297 for (i = 0; i < n; i++) { 1298 struct xdp_frame *xdp = frames[i]; 1299 /* Encode the XDP flag into lowest bit for consumer to differ 1300 * XDP buffer from sk_buff. 1301 */ 1302 void *frame = tun_xdp_to_ptr(xdp); 1303 1304 if (__ptr_ring_produce(&tfile->tx_ring, frame)) { 1305 dev_core_stats_tx_dropped_inc(dev); 1306 break; 1307 } 1308 nxmit++; 1309 } 1310 spin_unlock(&tfile->tx_ring.producer_lock); 1311 1312 if (flags & XDP_XMIT_FLUSH) 1313 __tun_xdp_flush_tfile(tfile); 1314 1315 rcu_read_unlock(); 1316 return nxmit; 1317 } 1318 1319 static int tun_xdp_tx(struct net_device *dev, struct xdp_buff *xdp) 1320 { 1321 struct xdp_frame *frame = xdp_convert_buff_to_frame(xdp); 1322 int nxmit; 1323 1324 if (unlikely(!frame)) 1325 return -EOVERFLOW; 1326 1327 nxmit = tun_xdp_xmit(dev, 1, &frame, XDP_XMIT_FLUSH); 1328 if (!nxmit) 1329 xdp_return_frame_rx_napi(frame); 1330 return nxmit; 1331 } 1332 1333 static const struct net_device_ops tap_netdev_ops = { 1334 .ndo_init = tun_net_init, 1335 .ndo_uninit = tun_net_uninit, 1336 .ndo_open = tun_net_open, 1337 .ndo_stop = tun_net_close, 1338 .ndo_start_xmit = tun_net_xmit, 1339 .ndo_fix_features = tun_net_fix_features, 1340 .ndo_set_rx_mode = tun_net_mclist, 1341 .ndo_set_mac_address = eth_mac_addr, 1342 .ndo_validate_addr = eth_validate_addr, 1343 .ndo_select_queue = tun_select_queue, 1344 .ndo_features_check = passthru_features_check, 1345 .ndo_set_rx_headroom = tun_set_headroom, 1346 .ndo_get_stats64 = dev_get_tstats64, 1347 .ndo_bpf = tun_xdp, 1348 .ndo_xdp_xmit = tun_xdp_xmit, 1349 .ndo_change_carrier = tun_net_change_carrier, 1350 }; 1351 1352 static void tun_flow_init(struct tun_struct *tun) 1353 { 1354 int i; 1355 1356 for (i = 0; i < TUN_NUM_FLOW_ENTRIES; i++) 1357 INIT_HLIST_HEAD(&tun->flows[i]); 1358 1359 tun->ageing_time = TUN_FLOW_EXPIRE; 1360 timer_setup(&tun->flow_gc_timer, tun_flow_cleanup, 0); 1361 mod_timer(&tun->flow_gc_timer, 1362 round_jiffies_up(jiffies + tun->ageing_time)); 1363 } 1364 1365 static void tun_flow_uninit(struct tun_struct *tun) 1366 { 1367 del_timer_sync(&tun->flow_gc_timer); 1368 tun_flow_flush(tun); 1369 } 1370 1371 #define MIN_MTU 68 1372 #define MAX_MTU 65535 1373 1374 /* Initialize net device. */ 1375 static void tun_net_initialize(struct net_device *dev) 1376 { 1377 struct tun_struct *tun = netdev_priv(dev); 1378 1379 switch (tun->flags & TUN_TYPE_MASK) { 1380 case IFF_TUN: 1381 dev->netdev_ops = &tun_netdev_ops; 1382 dev->header_ops = &ip_tunnel_header_ops; 1383 1384 /* Point-to-Point TUN Device */ 1385 dev->hard_header_len = 0; 1386 dev->addr_len = 0; 1387 dev->mtu = 1500; 1388 1389 /* Zero header length */ 1390 dev->type = ARPHRD_NONE; 1391 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST; 1392 break; 1393 1394 case IFF_TAP: 1395 dev->netdev_ops = &tap_netdev_ops; 1396 /* Ethernet TAP Device */ 1397 ether_setup(dev); 1398 dev->priv_flags &= ~IFF_TX_SKB_SHARING; 1399 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE; 1400 1401 eth_hw_addr_random(dev); 1402 1403 /* Currently tun does not support XDP, only tap does. */ 1404 dev->xdp_features = NETDEV_XDP_ACT_BASIC | 1405 NETDEV_XDP_ACT_REDIRECT | 1406 NETDEV_XDP_ACT_NDO_XMIT; 1407 1408 break; 1409 } 1410 1411 dev->min_mtu = MIN_MTU; 1412 dev->max_mtu = MAX_MTU - dev->hard_header_len; 1413 } 1414 1415 static bool tun_sock_writeable(struct tun_struct *tun, struct tun_file *tfile) 1416 { 1417 struct sock *sk = tfile->socket.sk; 1418 1419 return (tun->dev->flags & IFF_UP) && sock_writeable(sk); 1420 } 1421 1422 /* Character device part */ 1423 1424 /* Poll */ 1425 static __poll_t tun_chr_poll(struct file *file, poll_table *wait) 1426 { 1427 struct tun_file *tfile = file->private_data; 1428 struct tun_struct *tun = tun_get(tfile); 1429 struct sock *sk; 1430 __poll_t mask = 0; 1431 1432 if (!tun) 1433 return EPOLLERR; 1434 1435 sk = tfile->socket.sk; 1436 1437 poll_wait(file, sk_sleep(sk), wait); 1438 1439 if (!ptr_ring_empty(&tfile->tx_ring)) 1440 mask |= EPOLLIN | EPOLLRDNORM; 1441 1442 /* Make sure SOCKWQ_ASYNC_NOSPACE is set if not writable to 1443 * guarantee EPOLLOUT to be raised by either here or 1444 * tun_sock_write_space(). Then process could get notification 1445 * after it writes to a down device and meets -EIO. 1446 */ 1447 if (tun_sock_writeable(tun, tfile) || 1448 (!test_and_set_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags) && 1449 tun_sock_writeable(tun, tfile))) 1450 mask |= EPOLLOUT | EPOLLWRNORM; 1451 1452 if (tun->dev->reg_state != NETREG_REGISTERED) 1453 mask = EPOLLERR; 1454 1455 tun_put(tun); 1456 return mask; 1457 } 1458 1459 static struct sk_buff *tun_napi_alloc_frags(struct tun_file *tfile, 1460 size_t len, 1461 const struct iov_iter *it) 1462 { 1463 struct sk_buff *skb; 1464 size_t linear; 1465 int err; 1466 int i; 1467 1468 if (it->nr_segs > MAX_SKB_FRAGS + 1 || 1469 len > (ETH_MAX_MTU - NET_SKB_PAD - NET_IP_ALIGN)) 1470 return ERR_PTR(-EMSGSIZE); 1471 1472 local_bh_disable(); 1473 skb = napi_get_frags(&tfile->napi); 1474 local_bh_enable(); 1475 if (!skb) 1476 return ERR_PTR(-ENOMEM); 1477 1478 linear = iov_iter_single_seg_count(it); 1479 err = __skb_grow(skb, linear); 1480 if (err) 1481 goto free; 1482 1483 skb->len = len; 1484 skb->data_len = len - linear; 1485 skb->truesize += skb->data_len; 1486 1487 for (i = 1; i < it->nr_segs; i++) { 1488 const struct iovec *iov = iter_iov(it); 1489 size_t fragsz = iov->iov_len; 1490 struct page *page; 1491 void *frag; 1492 1493 if (fragsz == 0 || fragsz > PAGE_SIZE) { 1494 err = -EINVAL; 1495 goto free; 1496 } 1497 frag = netdev_alloc_frag(fragsz); 1498 if (!frag) { 1499 err = -ENOMEM; 1500 goto free; 1501 } 1502 page = virt_to_head_page(frag); 1503 skb_fill_page_desc(skb, i - 1, page, 1504 frag - page_address(page), fragsz); 1505 } 1506 1507 return skb; 1508 free: 1509 /* frees skb and all frags allocated with napi_alloc_frag() */ 1510 napi_free_frags(&tfile->napi); 1511 return ERR_PTR(err); 1512 } 1513 1514 /* prepad is the amount to reserve at front. len is length after that. 1515 * linear is a hint as to how much to copy (usually headers). */ 1516 static struct sk_buff *tun_alloc_skb(struct tun_file *tfile, 1517 size_t prepad, size_t len, 1518 size_t linear, int noblock) 1519 { 1520 struct sock *sk = tfile->socket.sk; 1521 struct sk_buff *skb; 1522 int err; 1523 1524 /* Under a page? Don't bother with paged skb. */ 1525 if (prepad + len < PAGE_SIZE) 1526 linear = len; 1527 1528 if (len - linear > MAX_SKB_FRAGS * (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER)) 1529 linear = len - MAX_SKB_FRAGS * (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER); 1530 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock, 1531 &err, PAGE_ALLOC_COSTLY_ORDER); 1532 if (!skb) 1533 return ERR_PTR(err); 1534 1535 skb_reserve(skb, prepad); 1536 skb_put(skb, linear); 1537 skb->data_len = len - linear; 1538 skb->len += len - linear; 1539 1540 return skb; 1541 } 1542 1543 static void tun_rx_batched(struct tun_struct *tun, struct tun_file *tfile, 1544 struct sk_buff *skb, int more) 1545 { 1546 struct sk_buff_head *queue = &tfile->sk.sk_write_queue; 1547 struct sk_buff_head process_queue; 1548 u32 rx_batched = tun->rx_batched; 1549 bool rcv = false; 1550 1551 if (!rx_batched || (!more && skb_queue_empty(queue))) { 1552 local_bh_disable(); 1553 skb_record_rx_queue(skb, tfile->queue_index); 1554 netif_receive_skb(skb); 1555 local_bh_enable(); 1556 return; 1557 } 1558 1559 spin_lock(&queue->lock); 1560 if (!more || skb_queue_len(queue) == rx_batched) { 1561 __skb_queue_head_init(&process_queue); 1562 skb_queue_splice_tail_init(queue, &process_queue); 1563 rcv = true; 1564 } else { 1565 __skb_queue_tail(queue, skb); 1566 } 1567 spin_unlock(&queue->lock); 1568 1569 if (rcv) { 1570 struct sk_buff *nskb; 1571 1572 local_bh_disable(); 1573 while ((nskb = __skb_dequeue(&process_queue))) { 1574 skb_record_rx_queue(nskb, tfile->queue_index); 1575 netif_receive_skb(nskb); 1576 } 1577 skb_record_rx_queue(skb, tfile->queue_index); 1578 netif_receive_skb(skb); 1579 local_bh_enable(); 1580 } 1581 } 1582 1583 static bool tun_can_build_skb(struct tun_struct *tun, struct tun_file *tfile, 1584 int len, int noblock, bool zerocopy) 1585 { 1586 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP) 1587 return false; 1588 1589 if (tfile->socket.sk->sk_sndbuf != INT_MAX) 1590 return false; 1591 1592 if (!noblock) 1593 return false; 1594 1595 if (zerocopy) 1596 return false; 1597 1598 if (SKB_DATA_ALIGN(len + TUN_RX_PAD + XDP_PACKET_HEADROOM) + 1599 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) > PAGE_SIZE) 1600 return false; 1601 1602 return true; 1603 } 1604 1605 static struct sk_buff *__tun_build_skb(struct tun_file *tfile, 1606 struct page_frag *alloc_frag, char *buf, 1607 int buflen, int len, int pad) 1608 { 1609 struct sk_buff *skb = build_skb(buf, buflen); 1610 1611 if (!skb) 1612 return ERR_PTR(-ENOMEM); 1613 1614 skb_reserve(skb, pad); 1615 skb_put(skb, len); 1616 skb_set_owner_w(skb, tfile->socket.sk); 1617 1618 get_page(alloc_frag->page); 1619 alloc_frag->offset += buflen; 1620 1621 return skb; 1622 } 1623 1624 static int tun_xdp_act(struct tun_struct *tun, struct bpf_prog *xdp_prog, 1625 struct xdp_buff *xdp, u32 act) 1626 { 1627 int err; 1628 1629 switch (act) { 1630 case XDP_REDIRECT: 1631 err = xdp_do_redirect(tun->dev, xdp, xdp_prog); 1632 if (err) { 1633 dev_core_stats_rx_dropped_inc(tun->dev); 1634 return err; 1635 } 1636 dev_sw_netstats_rx_add(tun->dev, xdp->data_end - xdp->data); 1637 break; 1638 case XDP_TX: 1639 err = tun_xdp_tx(tun->dev, xdp); 1640 if (err < 0) { 1641 dev_core_stats_rx_dropped_inc(tun->dev); 1642 return err; 1643 } 1644 dev_sw_netstats_rx_add(tun->dev, xdp->data_end - xdp->data); 1645 break; 1646 case XDP_PASS: 1647 break; 1648 default: 1649 bpf_warn_invalid_xdp_action(tun->dev, xdp_prog, act); 1650 fallthrough; 1651 case XDP_ABORTED: 1652 trace_xdp_exception(tun->dev, xdp_prog, act); 1653 fallthrough; 1654 case XDP_DROP: 1655 dev_core_stats_rx_dropped_inc(tun->dev); 1656 break; 1657 } 1658 1659 return act; 1660 } 1661 1662 static struct sk_buff *tun_build_skb(struct tun_struct *tun, 1663 struct tun_file *tfile, 1664 struct iov_iter *from, 1665 struct virtio_net_hdr *hdr, 1666 int len, int *skb_xdp) 1667 { 1668 struct page_frag *alloc_frag = ¤t->task_frag; 1669 struct bpf_prog *xdp_prog; 1670 int buflen = SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); 1671 char *buf; 1672 size_t copied; 1673 int pad = TUN_RX_PAD; 1674 int err = 0; 1675 1676 rcu_read_lock(); 1677 xdp_prog = rcu_dereference(tun->xdp_prog); 1678 if (xdp_prog) 1679 pad += XDP_PACKET_HEADROOM; 1680 buflen += SKB_DATA_ALIGN(len + pad); 1681 rcu_read_unlock(); 1682 1683 alloc_frag->offset = ALIGN((u64)alloc_frag->offset, SMP_CACHE_BYTES); 1684 if (unlikely(!skb_page_frag_refill(buflen, alloc_frag, GFP_KERNEL))) 1685 return ERR_PTR(-ENOMEM); 1686 1687 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset; 1688 copied = copy_page_from_iter(alloc_frag->page, 1689 alloc_frag->offset + pad, 1690 len, from); 1691 if (copied != len) 1692 return ERR_PTR(-EFAULT); 1693 1694 /* There's a small window that XDP may be set after the check 1695 * of xdp_prog above, this should be rare and for simplicity 1696 * we do XDP on skb in case the headroom is not enough. 1697 */ 1698 if (hdr->gso_type || !xdp_prog) { 1699 *skb_xdp = 1; 1700 return __tun_build_skb(tfile, alloc_frag, buf, buflen, len, 1701 pad); 1702 } 1703 1704 *skb_xdp = 0; 1705 1706 local_bh_disable(); 1707 rcu_read_lock(); 1708 xdp_prog = rcu_dereference(tun->xdp_prog); 1709 if (xdp_prog) { 1710 struct xdp_buff xdp; 1711 u32 act; 1712 1713 xdp_init_buff(&xdp, buflen, &tfile->xdp_rxq); 1714 xdp_prepare_buff(&xdp, buf, pad, len, false); 1715 1716 act = bpf_prog_run_xdp(xdp_prog, &xdp); 1717 if (act == XDP_REDIRECT || act == XDP_TX) { 1718 get_page(alloc_frag->page); 1719 alloc_frag->offset += buflen; 1720 } 1721 err = tun_xdp_act(tun, xdp_prog, &xdp, act); 1722 if (err < 0) { 1723 if (act == XDP_REDIRECT || act == XDP_TX) 1724 put_page(alloc_frag->page); 1725 goto out; 1726 } 1727 1728 if (err == XDP_REDIRECT) 1729 xdp_do_flush(); 1730 if (err != XDP_PASS) 1731 goto out; 1732 1733 pad = xdp.data - xdp.data_hard_start; 1734 len = xdp.data_end - xdp.data; 1735 } 1736 rcu_read_unlock(); 1737 local_bh_enable(); 1738 1739 return __tun_build_skb(tfile, alloc_frag, buf, buflen, len, pad); 1740 1741 out: 1742 rcu_read_unlock(); 1743 local_bh_enable(); 1744 return NULL; 1745 } 1746 1747 /* Get packet from user space buffer */ 1748 static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile, 1749 void *msg_control, struct iov_iter *from, 1750 int noblock, bool more) 1751 { 1752 struct tun_pi pi = { 0, cpu_to_be16(ETH_P_IP) }; 1753 struct sk_buff *skb; 1754 size_t total_len = iov_iter_count(from); 1755 size_t len = total_len, align = tun->align, linear; 1756 struct virtio_net_hdr gso = { 0 }; 1757 int good_linear; 1758 int copylen; 1759 bool zerocopy = false; 1760 int err; 1761 u32 rxhash = 0; 1762 int skb_xdp = 1; 1763 bool frags = tun_napi_frags_enabled(tfile); 1764 enum skb_drop_reason drop_reason = SKB_DROP_REASON_NOT_SPECIFIED; 1765 1766 if (!(tun->flags & IFF_NO_PI)) { 1767 if (len < sizeof(pi)) 1768 return -EINVAL; 1769 len -= sizeof(pi); 1770 1771 if (!copy_from_iter_full(&pi, sizeof(pi), from)) 1772 return -EFAULT; 1773 } 1774 1775 if (tun->flags & IFF_VNET_HDR) { 1776 int vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz); 1777 1778 if (len < vnet_hdr_sz) 1779 return -EINVAL; 1780 len -= vnet_hdr_sz; 1781 1782 if (!copy_from_iter_full(&gso, sizeof(gso), from)) 1783 return -EFAULT; 1784 1785 if ((gso.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) && 1786 tun16_to_cpu(tun, gso.csum_start) + tun16_to_cpu(tun, gso.csum_offset) + 2 > tun16_to_cpu(tun, gso.hdr_len)) 1787 gso.hdr_len = cpu_to_tun16(tun, tun16_to_cpu(tun, gso.csum_start) + tun16_to_cpu(tun, gso.csum_offset) + 2); 1788 1789 if (tun16_to_cpu(tun, gso.hdr_len) > len) 1790 return -EINVAL; 1791 iov_iter_advance(from, vnet_hdr_sz - sizeof(gso)); 1792 } 1793 1794 if ((tun->flags & TUN_TYPE_MASK) == IFF_TAP) { 1795 align += NET_IP_ALIGN; 1796 if (unlikely(len < ETH_HLEN || 1797 (gso.hdr_len && tun16_to_cpu(tun, gso.hdr_len) < ETH_HLEN))) 1798 return -EINVAL; 1799 } 1800 1801 good_linear = SKB_MAX_HEAD(align); 1802 1803 if (msg_control) { 1804 struct iov_iter i = *from; 1805 1806 /* There are 256 bytes to be copied in skb, so there is 1807 * enough room for skb expand head in case it is used. 1808 * The rest of the buffer is mapped from userspace. 1809 */ 1810 copylen = gso.hdr_len ? tun16_to_cpu(tun, gso.hdr_len) : GOODCOPY_LEN; 1811 if (copylen > good_linear) 1812 copylen = good_linear; 1813 linear = copylen; 1814 iov_iter_advance(&i, copylen); 1815 if (iov_iter_npages(&i, INT_MAX) <= MAX_SKB_FRAGS) 1816 zerocopy = true; 1817 } 1818 1819 if (!frags && tun_can_build_skb(tun, tfile, len, noblock, zerocopy)) { 1820 /* For the packet that is not easy to be processed 1821 * (e.g gso or jumbo packet), we will do it at after 1822 * skb was created with generic XDP routine. 1823 */ 1824 skb = tun_build_skb(tun, tfile, from, &gso, len, &skb_xdp); 1825 err = PTR_ERR_OR_ZERO(skb); 1826 if (err) 1827 goto drop; 1828 if (!skb) 1829 return total_len; 1830 } else { 1831 if (!zerocopy) { 1832 copylen = len; 1833 if (tun16_to_cpu(tun, gso.hdr_len) > good_linear) 1834 linear = good_linear; 1835 else 1836 linear = tun16_to_cpu(tun, gso.hdr_len); 1837 } 1838 1839 if (frags) { 1840 mutex_lock(&tfile->napi_mutex); 1841 skb = tun_napi_alloc_frags(tfile, copylen, from); 1842 /* tun_napi_alloc_frags() enforces a layout for the skb. 1843 * If zerocopy is enabled, then this layout will be 1844 * overwritten by zerocopy_sg_from_iter(). 1845 */ 1846 zerocopy = false; 1847 } else { 1848 if (!linear) 1849 linear = min_t(size_t, good_linear, copylen); 1850 1851 skb = tun_alloc_skb(tfile, align, copylen, linear, 1852 noblock); 1853 } 1854 1855 err = PTR_ERR_OR_ZERO(skb); 1856 if (err) 1857 goto drop; 1858 1859 if (zerocopy) 1860 err = zerocopy_sg_from_iter(skb, from); 1861 else 1862 err = skb_copy_datagram_from_iter(skb, 0, from, len); 1863 1864 if (err) { 1865 err = -EFAULT; 1866 drop_reason = SKB_DROP_REASON_SKB_UCOPY_FAULT; 1867 goto drop; 1868 } 1869 } 1870 1871 if (virtio_net_hdr_to_skb(skb, &gso, tun_is_little_endian(tun))) { 1872 atomic_long_inc(&tun->rx_frame_errors); 1873 err = -EINVAL; 1874 goto free_skb; 1875 } 1876 1877 switch (tun->flags & TUN_TYPE_MASK) { 1878 case IFF_TUN: 1879 if (tun->flags & IFF_NO_PI) { 1880 u8 ip_version = skb->len ? (skb->data[0] >> 4) : 0; 1881 1882 switch (ip_version) { 1883 case 4: 1884 pi.proto = htons(ETH_P_IP); 1885 break; 1886 case 6: 1887 pi.proto = htons(ETH_P_IPV6); 1888 break; 1889 default: 1890 err = -EINVAL; 1891 goto drop; 1892 } 1893 } 1894 1895 skb_reset_mac_header(skb); 1896 skb->protocol = pi.proto; 1897 skb->dev = tun->dev; 1898 break; 1899 case IFF_TAP: 1900 if (frags && !pskb_may_pull(skb, ETH_HLEN)) { 1901 err = -ENOMEM; 1902 drop_reason = SKB_DROP_REASON_HDR_TRUNC; 1903 goto drop; 1904 } 1905 skb->protocol = eth_type_trans(skb, tun->dev); 1906 break; 1907 } 1908 1909 /* copy skb_ubuf_info for callback when skb has no error */ 1910 if (zerocopy) { 1911 skb_zcopy_init(skb, msg_control); 1912 } else if (msg_control) { 1913 struct ubuf_info *uarg = msg_control; 1914 uarg->callback(NULL, uarg, false); 1915 } 1916 1917 skb_reset_network_header(skb); 1918 skb_probe_transport_header(skb); 1919 skb_record_rx_queue(skb, tfile->queue_index); 1920 1921 if (skb_xdp) { 1922 struct bpf_prog *xdp_prog; 1923 int ret; 1924 1925 local_bh_disable(); 1926 rcu_read_lock(); 1927 xdp_prog = rcu_dereference(tun->xdp_prog); 1928 if (xdp_prog) { 1929 ret = do_xdp_generic(xdp_prog, skb); 1930 if (ret != XDP_PASS) { 1931 rcu_read_unlock(); 1932 local_bh_enable(); 1933 goto unlock_frags; 1934 } 1935 } 1936 rcu_read_unlock(); 1937 local_bh_enable(); 1938 } 1939 1940 /* Compute the costly rx hash only if needed for flow updates. 1941 * We may get a very small possibility of OOO during switching, not 1942 * worth to optimize. 1943 */ 1944 if (!rcu_access_pointer(tun->steering_prog) && tun->numqueues > 1 && 1945 !tfile->detached) 1946 rxhash = __skb_get_hash_symmetric(skb); 1947 1948 rcu_read_lock(); 1949 if (unlikely(!(tun->dev->flags & IFF_UP))) { 1950 err = -EIO; 1951 rcu_read_unlock(); 1952 drop_reason = SKB_DROP_REASON_DEV_READY; 1953 goto drop; 1954 } 1955 1956 if (frags) { 1957 u32 headlen; 1958 1959 /* Exercise flow dissector code path. */ 1960 skb_push(skb, ETH_HLEN); 1961 headlen = eth_get_headlen(tun->dev, skb->data, 1962 skb_headlen(skb)); 1963 1964 if (unlikely(headlen > skb_headlen(skb))) { 1965 WARN_ON_ONCE(1); 1966 err = -ENOMEM; 1967 dev_core_stats_rx_dropped_inc(tun->dev); 1968 napi_busy: 1969 napi_free_frags(&tfile->napi); 1970 rcu_read_unlock(); 1971 mutex_unlock(&tfile->napi_mutex); 1972 return err; 1973 } 1974 1975 if (likely(napi_schedule_prep(&tfile->napi))) { 1976 local_bh_disable(); 1977 napi_gro_frags(&tfile->napi); 1978 napi_complete(&tfile->napi); 1979 local_bh_enable(); 1980 } else { 1981 err = -EBUSY; 1982 goto napi_busy; 1983 } 1984 mutex_unlock(&tfile->napi_mutex); 1985 } else if (tfile->napi_enabled) { 1986 struct sk_buff_head *queue = &tfile->sk.sk_write_queue; 1987 int queue_len; 1988 1989 spin_lock_bh(&queue->lock); 1990 1991 if (unlikely(tfile->detached)) { 1992 spin_unlock_bh(&queue->lock); 1993 rcu_read_unlock(); 1994 err = -EBUSY; 1995 goto free_skb; 1996 } 1997 1998 __skb_queue_tail(queue, skb); 1999 queue_len = skb_queue_len(queue); 2000 spin_unlock(&queue->lock); 2001 2002 if (!more || queue_len > NAPI_POLL_WEIGHT) 2003 napi_schedule(&tfile->napi); 2004 2005 local_bh_enable(); 2006 } else if (!IS_ENABLED(CONFIG_4KSTACKS)) { 2007 tun_rx_batched(tun, tfile, skb, more); 2008 } else { 2009 netif_rx(skb); 2010 } 2011 rcu_read_unlock(); 2012 2013 preempt_disable(); 2014 dev_sw_netstats_rx_add(tun->dev, len); 2015 preempt_enable(); 2016 2017 if (rxhash) 2018 tun_flow_update(tun, rxhash, tfile); 2019 2020 return total_len; 2021 2022 drop: 2023 if (err != -EAGAIN) 2024 dev_core_stats_rx_dropped_inc(tun->dev); 2025 2026 free_skb: 2027 if (!IS_ERR_OR_NULL(skb)) 2028 kfree_skb_reason(skb, drop_reason); 2029 2030 unlock_frags: 2031 if (frags) { 2032 tfile->napi.skb = NULL; 2033 mutex_unlock(&tfile->napi_mutex); 2034 } 2035 2036 return err ?: total_len; 2037 } 2038 2039 static ssize_t tun_chr_write_iter(struct kiocb *iocb, struct iov_iter *from) 2040 { 2041 struct file *file = iocb->ki_filp; 2042 struct tun_file *tfile = file->private_data; 2043 struct tun_struct *tun = tun_get(tfile); 2044 ssize_t result; 2045 int noblock = 0; 2046 2047 if (!tun) 2048 return -EBADFD; 2049 2050 if ((file->f_flags & O_NONBLOCK) || (iocb->ki_flags & IOCB_NOWAIT)) 2051 noblock = 1; 2052 2053 result = tun_get_user(tun, tfile, NULL, from, noblock, false); 2054 2055 tun_put(tun); 2056 return result; 2057 } 2058 2059 static ssize_t tun_put_user_xdp(struct tun_struct *tun, 2060 struct tun_file *tfile, 2061 struct xdp_frame *xdp_frame, 2062 struct iov_iter *iter) 2063 { 2064 int vnet_hdr_sz = 0; 2065 size_t size = xdp_frame->len; 2066 size_t ret; 2067 2068 if (tun->flags & IFF_VNET_HDR) { 2069 struct virtio_net_hdr gso = { 0 }; 2070 2071 vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz); 2072 if (unlikely(iov_iter_count(iter) < vnet_hdr_sz)) 2073 return -EINVAL; 2074 if (unlikely(copy_to_iter(&gso, sizeof(gso), iter) != 2075 sizeof(gso))) 2076 return -EFAULT; 2077 iov_iter_advance(iter, vnet_hdr_sz - sizeof(gso)); 2078 } 2079 2080 ret = copy_to_iter(xdp_frame->data, size, iter) + vnet_hdr_sz; 2081 2082 preempt_disable(); 2083 dev_sw_netstats_tx_add(tun->dev, 1, ret); 2084 preempt_enable(); 2085 2086 return ret; 2087 } 2088 2089 /* Put packet to the user space buffer */ 2090 static ssize_t tun_put_user(struct tun_struct *tun, 2091 struct tun_file *tfile, 2092 struct sk_buff *skb, 2093 struct iov_iter *iter) 2094 { 2095 struct tun_pi pi = { 0, skb->protocol }; 2096 ssize_t total; 2097 int vlan_offset = 0; 2098 int vlan_hlen = 0; 2099 int vnet_hdr_sz = 0; 2100 2101 if (skb_vlan_tag_present(skb)) 2102 vlan_hlen = VLAN_HLEN; 2103 2104 if (tun->flags & IFF_VNET_HDR) 2105 vnet_hdr_sz = READ_ONCE(tun->vnet_hdr_sz); 2106 2107 total = skb->len + vlan_hlen + vnet_hdr_sz; 2108 2109 if (!(tun->flags & IFF_NO_PI)) { 2110 if (iov_iter_count(iter) < sizeof(pi)) 2111 return -EINVAL; 2112 2113 total += sizeof(pi); 2114 if (iov_iter_count(iter) < total) { 2115 /* Packet will be striped */ 2116 pi.flags |= TUN_PKT_STRIP; 2117 } 2118 2119 if (copy_to_iter(&pi, sizeof(pi), iter) != sizeof(pi)) 2120 return -EFAULT; 2121 } 2122 2123 if (vnet_hdr_sz) { 2124 struct virtio_net_hdr gso; 2125 2126 if (iov_iter_count(iter) < vnet_hdr_sz) 2127 return -EINVAL; 2128 2129 if (virtio_net_hdr_from_skb(skb, &gso, 2130 tun_is_little_endian(tun), true, 2131 vlan_hlen)) { 2132 struct skb_shared_info *sinfo = skb_shinfo(skb); 2133 pr_err("unexpected GSO type: " 2134 "0x%x, gso_size %d, hdr_len %d\n", 2135 sinfo->gso_type, tun16_to_cpu(tun, gso.gso_size), 2136 tun16_to_cpu(tun, gso.hdr_len)); 2137 print_hex_dump(KERN_ERR, "tun: ", 2138 DUMP_PREFIX_NONE, 2139 16, 1, skb->head, 2140 min((int)tun16_to_cpu(tun, gso.hdr_len), 64), true); 2141 WARN_ON_ONCE(1); 2142 return -EINVAL; 2143 } 2144 2145 if (copy_to_iter(&gso, sizeof(gso), iter) != sizeof(gso)) 2146 return -EFAULT; 2147 2148 iov_iter_advance(iter, vnet_hdr_sz - sizeof(gso)); 2149 } 2150 2151 if (vlan_hlen) { 2152 int ret; 2153 struct veth veth; 2154 2155 veth.h_vlan_proto = skb->vlan_proto; 2156 veth.h_vlan_TCI = htons(skb_vlan_tag_get(skb)); 2157 2158 vlan_offset = offsetof(struct vlan_ethhdr, h_vlan_proto); 2159 2160 ret = skb_copy_datagram_iter(skb, 0, iter, vlan_offset); 2161 if (ret || !iov_iter_count(iter)) 2162 goto done; 2163 2164 ret = copy_to_iter(&veth, sizeof(veth), iter); 2165 if (ret != sizeof(veth) || !iov_iter_count(iter)) 2166 goto done; 2167 } 2168 2169 skb_copy_datagram_iter(skb, vlan_offset, iter, skb->len - vlan_offset); 2170 2171 done: 2172 /* caller is in process context, */ 2173 preempt_disable(); 2174 dev_sw_netstats_tx_add(tun->dev, 1, skb->len + vlan_hlen); 2175 preempt_enable(); 2176 2177 return total; 2178 } 2179 2180 static void *tun_ring_recv(struct tun_file *tfile, int noblock, int *err) 2181 { 2182 DECLARE_WAITQUEUE(wait, current); 2183 void *ptr = NULL; 2184 int error = 0; 2185 2186 ptr = ptr_ring_consume(&tfile->tx_ring); 2187 if (ptr) 2188 goto out; 2189 if (noblock) { 2190 error = -EAGAIN; 2191 goto out; 2192 } 2193 2194 add_wait_queue(&tfile->socket.wq.wait, &wait); 2195 2196 while (1) { 2197 set_current_state(TASK_INTERRUPTIBLE); 2198 ptr = ptr_ring_consume(&tfile->tx_ring); 2199 if (ptr) 2200 break; 2201 if (signal_pending(current)) { 2202 error = -ERESTARTSYS; 2203 break; 2204 } 2205 if (tfile->socket.sk->sk_shutdown & RCV_SHUTDOWN) { 2206 error = -EFAULT; 2207 break; 2208 } 2209 2210 schedule(); 2211 } 2212 2213 __set_current_state(TASK_RUNNING); 2214 remove_wait_queue(&tfile->socket.wq.wait, &wait); 2215 2216 out: 2217 *err = error; 2218 return ptr; 2219 } 2220 2221 static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile, 2222 struct iov_iter *to, 2223 int noblock, void *ptr) 2224 { 2225 ssize_t ret; 2226 int err; 2227 2228 if (!iov_iter_count(to)) { 2229 tun_ptr_free(ptr); 2230 return 0; 2231 } 2232 2233 if (!ptr) { 2234 /* Read frames from ring */ 2235 ptr = tun_ring_recv(tfile, noblock, &err); 2236 if (!ptr) 2237 return err; 2238 } 2239 2240 if (tun_is_xdp_frame(ptr)) { 2241 struct xdp_frame *xdpf = tun_ptr_to_xdp(ptr); 2242 2243 ret = tun_put_user_xdp(tun, tfile, xdpf, to); 2244 xdp_return_frame(xdpf); 2245 } else { 2246 struct sk_buff *skb = ptr; 2247 2248 ret = tun_put_user(tun, tfile, skb, to); 2249 if (unlikely(ret < 0)) 2250 kfree_skb(skb); 2251 else 2252 consume_skb(skb); 2253 } 2254 2255 return ret; 2256 } 2257 2258 static ssize_t tun_chr_read_iter(struct kiocb *iocb, struct iov_iter *to) 2259 { 2260 struct file *file = iocb->ki_filp; 2261 struct tun_file *tfile = file->private_data; 2262 struct tun_struct *tun = tun_get(tfile); 2263 ssize_t len = iov_iter_count(to), ret; 2264 int noblock = 0; 2265 2266 if (!tun) 2267 return -EBADFD; 2268 2269 if ((file->f_flags & O_NONBLOCK) || (iocb->ki_flags & IOCB_NOWAIT)) 2270 noblock = 1; 2271 2272 ret = tun_do_read(tun, tfile, to, noblock, NULL); 2273 ret = min_t(ssize_t, ret, len); 2274 if (ret > 0) 2275 iocb->ki_pos = ret; 2276 tun_put(tun); 2277 return ret; 2278 } 2279 2280 static void tun_prog_free(struct rcu_head *rcu) 2281 { 2282 struct tun_prog *prog = container_of(rcu, struct tun_prog, rcu); 2283 2284 bpf_prog_destroy(prog->prog); 2285 kfree(prog); 2286 } 2287 2288 static int __tun_set_ebpf(struct tun_struct *tun, 2289 struct tun_prog __rcu **prog_p, 2290 struct bpf_prog *prog) 2291 { 2292 struct tun_prog *old, *new = NULL; 2293 2294 if (prog) { 2295 new = kmalloc(sizeof(*new), GFP_KERNEL); 2296 if (!new) 2297 return -ENOMEM; 2298 new->prog = prog; 2299 } 2300 2301 spin_lock_bh(&tun->lock); 2302 old = rcu_dereference_protected(*prog_p, 2303 lockdep_is_held(&tun->lock)); 2304 rcu_assign_pointer(*prog_p, new); 2305 spin_unlock_bh(&tun->lock); 2306 2307 if (old) 2308 call_rcu(&old->rcu, tun_prog_free); 2309 2310 return 0; 2311 } 2312 2313 static void tun_free_netdev(struct net_device *dev) 2314 { 2315 struct tun_struct *tun = netdev_priv(dev); 2316 2317 BUG_ON(!(list_empty(&tun->disabled))); 2318 2319 free_percpu(dev->tstats); 2320 tun_flow_uninit(tun); 2321 security_tun_dev_free_security(tun->security); 2322 __tun_set_ebpf(tun, &tun->steering_prog, NULL); 2323 __tun_set_ebpf(tun, &tun->filter_prog, NULL); 2324 } 2325 2326 static void tun_setup(struct net_device *dev) 2327 { 2328 struct tun_struct *tun = netdev_priv(dev); 2329 2330 tun->owner = INVALID_UID; 2331 tun->group = INVALID_GID; 2332 tun_default_link_ksettings(dev, &tun->link_ksettings); 2333 2334 dev->ethtool_ops = &tun_ethtool_ops; 2335 dev->needs_free_netdev = true; 2336 dev->priv_destructor = tun_free_netdev; 2337 /* We prefer our own queue length */ 2338 dev->tx_queue_len = TUN_READQ_SIZE; 2339 } 2340 2341 /* Trivial set of netlink ops to allow deleting tun or tap 2342 * device with netlink. 2343 */ 2344 static int tun_validate(struct nlattr *tb[], struct nlattr *data[], 2345 struct netlink_ext_ack *extack) 2346 { 2347 NL_SET_ERR_MSG(extack, 2348 "tun/tap creation via rtnetlink is not supported."); 2349 return -EOPNOTSUPP; 2350 } 2351 2352 static size_t tun_get_size(const struct net_device *dev) 2353 { 2354 BUILD_BUG_ON(sizeof(u32) != sizeof(uid_t)); 2355 BUILD_BUG_ON(sizeof(u32) != sizeof(gid_t)); 2356 2357 return nla_total_size(sizeof(uid_t)) + /* OWNER */ 2358 nla_total_size(sizeof(gid_t)) + /* GROUP */ 2359 nla_total_size(sizeof(u8)) + /* TYPE */ 2360 nla_total_size(sizeof(u8)) + /* PI */ 2361 nla_total_size(sizeof(u8)) + /* VNET_HDR */ 2362 nla_total_size(sizeof(u8)) + /* PERSIST */ 2363 nla_total_size(sizeof(u8)) + /* MULTI_QUEUE */ 2364 nla_total_size(sizeof(u32)) + /* NUM_QUEUES */ 2365 nla_total_size(sizeof(u32)) + /* NUM_DISABLED_QUEUES */ 2366 0; 2367 } 2368 2369 static int tun_fill_info(struct sk_buff *skb, const struct net_device *dev) 2370 { 2371 struct tun_struct *tun = netdev_priv(dev); 2372 2373 if (nla_put_u8(skb, IFLA_TUN_TYPE, tun->flags & TUN_TYPE_MASK)) 2374 goto nla_put_failure; 2375 if (uid_valid(tun->owner) && 2376 nla_put_u32(skb, IFLA_TUN_OWNER, 2377 from_kuid_munged(current_user_ns(), tun->owner))) 2378 goto nla_put_failure; 2379 if (gid_valid(tun->group) && 2380 nla_put_u32(skb, IFLA_TUN_GROUP, 2381 from_kgid_munged(current_user_ns(), tun->group))) 2382 goto nla_put_failure; 2383 if (nla_put_u8(skb, IFLA_TUN_PI, !(tun->flags & IFF_NO_PI))) 2384 goto nla_put_failure; 2385 if (nla_put_u8(skb, IFLA_TUN_VNET_HDR, !!(tun->flags & IFF_VNET_HDR))) 2386 goto nla_put_failure; 2387 if (nla_put_u8(skb, IFLA_TUN_PERSIST, !!(tun->flags & IFF_PERSIST))) 2388 goto nla_put_failure; 2389 if (nla_put_u8(skb, IFLA_TUN_MULTI_QUEUE, 2390 !!(tun->flags & IFF_MULTI_QUEUE))) 2391 goto nla_put_failure; 2392 if (tun->flags & IFF_MULTI_QUEUE) { 2393 if (nla_put_u32(skb, IFLA_TUN_NUM_QUEUES, tun->numqueues)) 2394 goto nla_put_failure; 2395 if (nla_put_u32(skb, IFLA_TUN_NUM_DISABLED_QUEUES, 2396 tun->numdisabled)) 2397 goto nla_put_failure; 2398 } 2399 2400 return 0; 2401 2402 nla_put_failure: 2403 return -EMSGSIZE; 2404 } 2405 2406 static struct rtnl_link_ops tun_link_ops __read_mostly = { 2407 .kind = DRV_NAME, 2408 .priv_size = sizeof(struct tun_struct), 2409 .setup = tun_setup, 2410 .validate = tun_validate, 2411 .get_size = tun_get_size, 2412 .fill_info = tun_fill_info, 2413 }; 2414 2415 static void tun_sock_write_space(struct sock *sk) 2416 { 2417 struct tun_file *tfile; 2418 wait_queue_head_t *wqueue; 2419 2420 if (!sock_writeable(sk)) 2421 return; 2422 2423 if (!test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &sk->sk_socket->flags)) 2424 return; 2425 2426 wqueue = sk_sleep(sk); 2427 if (wqueue && waitqueue_active(wqueue)) 2428 wake_up_interruptible_sync_poll(wqueue, EPOLLOUT | 2429 EPOLLWRNORM | EPOLLWRBAND); 2430 2431 tfile = container_of(sk, struct tun_file, sk); 2432 kill_fasync(&tfile->fasync, SIGIO, POLL_OUT); 2433 } 2434 2435 static void tun_put_page(struct tun_page *tpage) 2436 { 2437 if (tpage->page) 2438 __page_frag_cache_drain(tpage->page, tpage->count); 2439 } 2440 2441 static int tun_xdp_one(struct tun_struct *tun, 2442 struct tun_file *tfile, 2443 struct xdp_buff *xdp, int *flush, 2444 struct tun_page *tpage) 2445 { 2446 unsigned int datasize = xdp->data_end - xdp->data; 2447 struct tun_xdp_hdr *hdr = xdp->data_hard_start; 2448 struct virtio_net_hdr *gso = &hdr->gso; 2449 struct bpf_prog *xdp_prog; 2450 struct sk_buff *skb = NULL; 2451 struct sk_buff_head *queue; 2452 u32 rxhash = 0, act; 2453 int buflen = hdr->buflen; 2454 int ret = 0; 2455 bool skb_xdp = false; 2456 struct page *page; 2457 2458 xdp_prog = rcu_dereference(tun->xdp_prog); 2459 if (xdp_prog) { 2460 if (gso->gso_type) { 2461 skb_xdp = true; 2462 goto build; 2463 } 2464 2465 xdp_init_buff(xdp, buflen, &tfile->xdp_rxq); 2466 xdp_set_data_meta_invalid(xdp); 2467 2468 act = bpf_prog_run_xdp(xdp_prog, xdp); 2469 ret = tun_xdp_act(tun, xdp_prog, xdp, act); 2470 if (ret < 0) { 2471 put_page(virt_to_head_page(xdp->data)); 2472 return ret; 2473 } 2474 2475 switch (ret) { 2476 case XDP_REDIRECT: 2477 *flush = true; 2478 fallthrough; 2479 case XDP_TX: 2480 return 0; 2481 case XDP_PASS: 2482 break; 2483 default: 2484 page = virt_to_head_page(xdp->data); 2485 if (tpage->page == page) { 2486 ++tpage->count; 2487 } else { 2488 tun_put_page(tpage); 2489 tpage->page = page; 2490 tpage->count = 1; 2491 } 2492 return 0; 2493 } 2494 } 2495 2496 build: 2497 skb = build_skb(xdp->data_hard_start, buflen); 2498 if (!skb) { 2499 ret = -ENOMEM; 2500 goto out; 2501 } 2502 2503 skb_reserve(skb, xdp->data - xdp->data_hard_start); 2504 skb_put(skb, xdp->data_end - xdp->data); 2505 2506 if (virtio_net_hdr_to_skb(skb, gso, tun_is_little_endian(tun))) { 2507 atomic_long_inc(&tun->rx_frame_errors); 2508 kfree_skb(skb); 2509 ret = -EINVAL; 2510 goto out; 2511 } 2512 2513 skb->protocol = eth_type_trans(skb, tun->dev); 2514 skb_reset_network_header(skb); 2515 skb_probe_transport_header(skb); 2516 skb_record_rx_queue(skb, tfile->queue_index); 2517 2518 if (skb_xdp) { 2519 ret = do_xdp_generic(xdp_prog, skb); 2520 if (ret != XDP_PASS) { 2521 ret = 0; 2522 goto out; 2523 } 2524 } 2525 2526 if (!rcu_dereference(tun->steering_prog) && tun->numqueues > 1 && 2527 !tfile->detached) 2528 rxhash = __skb_get_hash_symmetric(skb); 2529 2530 if (tfile->napi_enabled) { 2531 queue = &tfile->sk.sk_write_queue; 2532 spin_lock(&queue->lock); 2533 2534 if (unlikely(tfile->detached)) { 2535 spin_unlock(&queue->lock); 2536 kfree_skb(skb); 2537 return -EBUSY; 2538 } 2539 2540 __skb_queue_tail(queue, skb); 2541 spin_unlock(&queue->lock); 2542 ret = 1; 2543 } else { 2544 netif_receive_skb(skb); 2545 ret = 0; 2546 } 2547 2548 /* No need to disable preemption here since this function is 2549 * always called with bh disabled 2550 */ 2551 dev_sw_netstats_rx_add(tun->dev, datasize); 2552 2553 if (rxhash) 2554 tun_flow_update(tun, rxhash, tfile); 2555 2556 out: 2557 return ret; 2558 } 2559 2560 static int tun_sendmsg(struct socket *sock, struct msghdr *m, size_t total_len) 2561 { 2562 int ret, i; 2563 struct tun_file *tfile = container_of(sock, struct tun_file, socket); 2564 struct tun_struct *tun = tun_get(tfile); 2565 struct tun_msg_ctl *ctl = m->msg_control; 2566 struct xdp_buff *xdp; 2567 2568 if (!tun) 2569 return -EBADFD; 2570 2571 if (m->msg_controllen == sizeof(struct tun_msg_ctl) && 2572 ctl && ctl->type == TUN_MSG_PTR) { 2573 struct tun_page tpage; 2574 int n = ctl->num; 2575 int flush = 0, queued = 0; 2576 2577 memset(&tpage, 0, sizeof(tpage)); 2578 2579 local_bh_disable(); 2580 rcu_read_lock(); 2581 2582 for (i = 0; i < n; i++) { 2583 xdp = &((struct xdp_buff *)ctl->ptr)[i]; 2584 ret = tun_xdp_one(tun, tfile, xdp, &flush, &tpage); 2585 if (ret > 0) 2586 queued += ret; 2587 } 2588 2589 if (flush) 2590 xdp_do_flush(); 2591 2592 if (tfile->napi_enabled && queued > 0) 2593 napi_schedule(&tfile->napi); 2594 2595 rcu_read_unlock(); 2596 local_bh_enable(); 2597 2598 tun_put_page(&tpage); 2599 2600 ret = total_len; 2601 goto out; 2602 } 2603 2604 ret = tun_get_user(tun, tfile, ctl ? ctl->ptr : NULL, &m->msg_iter, 2605 m->msg_flags & MSG_DONTWAIT, 2606 m->msg_flags & MSG_MORE); 2607 out: 2608 tun_put(tun); 2609 return ret; 2610 } 2611 2612 static int tun_recvmsg(struct socket *sock, struct msghdr *m, size_t total_len, 2613 int flags) 2614 { 2615 struct tun_file *tfile = container_of(sock, struct tun_file, socket); 2616 struct tun_struct *tun = tun_get(tfile); 2617 void *ptr = m->msg_control; 2618 int ret; 2619 2620 if (!tun) { 2621 ret = -EBADFD; 2622 goto out_free; 2623 } 2624 2625 if (flags & ~(MSG_DONTWAIT|MSG_TRUNC|MSG_ERRQUEUE)) { 2626 ret = -EINVAL; 2627 goto out_put_tun; 2628 } 2629 if (flags & MSG_ERRQUEUE) { 2630 ret = sock_recv_errqueue(sock->sk, m, total_len, 2631 SOL_PACKET, TUN_TX_TIMESTAMP); 2632 goto out; 2633 } 2634 ret = tun_do_read(tun, tfile, &m->msg_iter, flags & MSG_DONTWAIT, ptr); 2635 if (ret > (ssize_t)total_len) { 2636 m->msg_flags |= MSG_TRUNC; 2637 ret = flags & MSG_TRUNC ? ret : total_len; 2638 } 2639 out: 2640 tun_put(tun); 2641 return ret; 2642 2643 out_put_tun: 2644 tun_put(tun); 2645 out_free: 2646 tun_ptr_free(ptr); 2647 return ret; 2648 } 2649 2650 static int tun_ptr_peek_len(void *ptr) 2651 { 2652 if (likely(ptr)) { 2653 if (tun_is_xdp_frame(ptr)) { 2654 struct xdp_frame *xdpf = tun_ptr_to_xdp(ptr); 2655 2656 return xdpf->len; 2657 } 2658 return __skb_array_len_with_tag(ptr); 2659 } else { 2660 return 0; 2661 } 2662 } 2663 2664 static int tun_peek_len(struct socket *sock) 2665 { 2666 struct tun_file *tfile = container_of(sock, struct tun_file, socket); 2667 struct tun_struct *tun; 2668 int ret = 0; 2669 2670 tun = tun_get(tfile); 2671 if (!tun) 2672 return 0; 2673 2674 ret = PTR_RING_PEEK_CALL(&tfile->tx_ring, tun_ptr_peek_len); 2675 tun_put(tun); 2676 2677 return ret; 2678 } 2679 2680 /* Ops structure to mimic raw sockets with tun */ 2681 static const struct proto_ops tun_socket_ops = { 2682 .peek_len = tun_peek_len, 2683 .sendmsg = tun_sendmsg, 2684 .recvmsg = tun_recvmsg, 2685 }; 2686 2687 static struct proto tun_proto = { 2688 .name = "tun", 2689 .owner = THIS_MODULE, 2690 .obj_size = sizeof(struct tun_file), 2691 }; 2692 2693 static int tun_flags(struct tun_struct *tun) 2694 { 2695 return tun->flags & (TUN_FEATURES | IFF_PERSIST | IFF_TUN | IFF_TAP); 2696 } 2697 2698 static ssize_t tun_flags_show(struct device *dev, struct device_attribute *attr, 2699 char *buf) 2700 { 2701 struct tun_struct *tun = netdev_priv(to_net_dev(dev)); 2702 return sysfs_emit(buf, "0x%x\n", tun_flags(tun)); 2703 } 2704 2705 static ssize_t owner_show(struct device *dev, struct device_attribute *attr, 2706 char *buf) 2707 { 2708 struct tun_struct *tun = netdev_priv(to_net_dev(dev)); 2709 return uid_valid(tun->owner)? 2710 sysfs_emit(buf, "%u\n", 2711 from_kuid_munged(current_user_ns(), tun->owner)) : 2712 sysfs_emit(buf, "-1\n"); 2713 } 2714 2715 static ssize_t group_show(struct device *dev, struct device_attribute *attr, 2716 char *buf) 2717 { 2718 struct tun_struct *tun = netdev_priv(to_net_dev(dev)); 2719 return gid_valid(tun->group) ? 2720 sysfs_emit(buf, "%u\n", 2721 from_kgid_munged(current_user_ns(), tun->group)) : 2722 sysfs_emit(buf, "-1\n"); 2723 } 2724 2725 static DEVICE_ATTR_RO(tun_flags); 2726 static DEVICE_ATTR_RO(owner); 2727 static DEVICE_ATTR_RO(group); 2728 2729 static struct attribute *tun_dev_attrs[] = { 2730 &dev_attr_tun_flags.attr, 2731 &dev_attr_owner.attr, 2732 &dev_attr_group.attr, 2733 NULL 2734 }; 2735 2736 static const struct attribute_group tun_attr_group = { 2737 .attrs = tun_dev_attrs 2738 }; 2739 2740 static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr) 2741 { 2742 struct tun_struct *tun; 2743 struct tun_file *tfile = file->private_data; 2744 struct net_device *dev; 2745 int err; 2746 2747 if (tfile->detached) 2748 return -EINVAL; 2749 2750 if ((ifr->ifr_flags & IFF_NAPI_FRAGS)) { 2751 if (!capable(CAP_NET_ADMIN)) 2752 return -EPERM; 2753 2754 if (!(ifr->ifr_flags & IFF_NAPI) || 2755 (ifr->ifr_flags & TUN_TYPE_MASK) != IFF_TAP) 2756 return -EINVAL; 2757 } 2758 2759 dev = __dev_get_by_name(net, ifr->ifr_name); 2760 if (dev) { 2761 if (ifr->ifr_flags & IFF_TUN_EXCL) 2762 return -EBUSY; 2763 if ((ifr->ifr_flags & IFF_TUN) && dev->netdev_ops == &tun_netdev_ops) 2764 tun = netdev_priv(dev); 2765 else if ((ifr->ifr_flags & IFF_TAP) && dev->netdev_ops == &tap_netdev_ops) 2766 tun = netdev_priv(dev); 2767 else 2768 return -EINVAL; 2769 2770 if (!!(ifr->ifr_flags & IFF_MULTI_QUEUE) != 2771 !!(tun->flags & IFF_MULTI_QUEUE)) 2772 return -EINVAL; 2773 2774 if (tun_not_capable(tun)) 2775 return -EPERM; 2776 err = security_tun_dev_open(tun->security); 2777 if (err < 0) 2778 return err; 2779 2780 err = tun_attach(tun, file, ifr->ifr_flags & IFF_NOFILTER, 2781 ifr->ifr_flags & IFF_NAPI, 2782 ifr->ifr_flags & IFF_NAPI_FRAGS, true); 2783 if (err < 0) 2784 return err; 2785 2786 if (tun->flags & IFF_MULTI_QUEUE && 2787 (tun->numqueues + tun->numdisabled > 1)) { 2788 /* One or more queue has already been attached, no need 2789 * to initialize the device again. 2790 */ 2791 netdev_state_change(dev); 2792 return 0; 2793 } 2794 2795 tun->flags = (tun->flags & ~TUN_FEATURES) | 2796 (ifr->ifr_flags & TUN_FEATURES); 2797 2798 netdev_state_change(dev); 2799 } else { 2800 char *name; 2801 unsigned long flags = 0; 2802 int queues = ifr->ifr_flags & IFF_MULTI_QUEUE ? 2803 MAX_TAP_QUEUES : 1; 2804 2805 if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) 2806 return -EPERM; 2807 err = security_tun_dev_create(); 2808 if (err < 0) 2809 return err; 2810 2811 /* Set dev type */ 2812 if (ifr->ifr_flags & IFF_TUN) { 2813 /* TUN device */ 2814 flags |= IFF_TUN; 2815 name = "tun%d"; 2816 } else if (ifr->ifr_flags & IFF_TAP) { 2817 /* TAP device */ 2818 flags |= IFF_TAP; 2819 name = "tap%d"; 2820 } else 2821 return -EINVAL; 2822 2823 if (*ifr->ifr_name) 2824 name = ifr->ifr_name; 2825 2826 dev = alloc_netdev_mqs(sizeof(struct tun_struct), name, 2827 NET_NAME_UNKNOWN, tun_setup, queues, 2828 queues); 2829 2830 if (!dev) 2831 return -ENOMEM; 2832 2833 dev_net_set(dev, net); 2834 dev->rtnl_link_ops = &tun_link_ops; 2835 dev->ifindex = tfile->ifindex; 2836 dev->sysfs_groups[0] = &tun_attr_group; 2837 2838 tun = netdev_priv(dev); 2839 tun->dev = dev; 2840 tun->flags = flags; 2841 tun->txflt.count = 0; 2842 tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr); 2843 2844 tun->align = NET_SKB_PAD; 2845 tun->filter_attached = false; 2846 tun->sndbuf = tfile->socket.sk->sk_sndbuf; 2847 tun->rx_batched = 0; 2848 RCU_INIT_POINTER(tun->steering_prog, NULL); 2849 2850 tun->ifr = ifr; 2851 tun->file = file; 2852 2853 tun_net_initialize(dev); 2854 2855 err = register_netdevice(tun->dev); 2856 if (err < 0) { 2857 free_netdev(dev); 2858 return err; 2859 } 2860 /* free_netdev() won't check refcnt, to avoid race 2861 * with dev_put() we need publish tun after registration. 2862 */ 2863 rcu_assign_pointer(tfile->tun, tun); 2864 } 2865 2866 if (ifr->ifr_flags & IFF_NO_CARRIER) 2867 netif_carrier_off(tun->dev); 2868 else 2869 netif_carrier_on(tun->dev); 2870 2871 /* Make sure persistent devices do not get stuck in 2872 * xoff state. 2873 */ 2874 if (netif_running(tun->dev)) 2875 netif_tx_wake_all_queues(tun->dev); 2876 2877 strcpy(ifr->ifr_name, tun->dev->name); 2878 return 0; 2879 } 2880 2881 static void tun_get_iff(struct tun_struct *tun, struct ifreq *ifr) 2882 { 2883 strcpy(ifr->ifr_name, tun->dev->name); 2884 2885 ifr->ifr_flags = tun_flags(tun); 2886 2887 } 2888 2889 /* This is like a cut-down ethtool ops, except done via tun fd so no 2890 * privs required. */ 2891 static int set_offload(struct tun_struct *tun, unsigned long arg) 2892 { 2893 netdev_features_t features = 0; 2894 2895 if (arg & TUN_F_CSUM) { 2896 features |= NETIF_F_HW_CSUM; 2897 arg &= ~TUN_F_CSUM; 2898 2899 if (arg & (TUN_F_TSO4|TUN_F_TSO6)) { 2900 if (arg & TUN_F_TSO_ECN) { 2901 features |= NETIF_F_TSO_ECN; 2902 arg &= ~TUN_F_TSO_ECN; 2903 } 2904 if (arg & TUN_F_TSO4) 2905 features |= NETIF_F_TSO; 2906 if (arg & TUN_F_TSO6) 2907 features |= NETIF_F_TSO6; 2908 arg &= ~(TUN_F_TSO4|TUN_F_TSO6); 2909 } 2910 2911 arg &= ~TUN_F_UFO; 2912 2913 /* TODO: for now USO4 and USO6 should work simultaneously */ 2914 if (arg & TUN_F_USO4 && arg & TUN_F_USO6) { 2915 features |= NETIF_F_GSO_UDP_L4; 2916 arg &= ~(TUN_F_USO4 | TUN_F_USO6); 2917 } 2918 } 2919 2920 /* This gives the user a way to test for new features in future by 2921 * trying to set them. */ 2922 if (arg) 2923 return -EINVAL; 2924 2925 tun->set_features = features; 2926 tun->dev->wanted_features &= ~TUN_USER_FEATURES; 2927 tun->dev->wanted_features |= features; 2928 netdev_update_features(tun->dev); 2929 2930 return 0; 2931 } 2932 2933 static void tun_detach_filter(struct tun_struct *tun, int n) 2934 { 2935 int i; 2936 struct tun_file *tfile; 2937 2938 for (i = 0; i < n; i++) { 2939 tfile = rtnl_dereference(tun->tfiles[i]); 2940 lock_sock(tfile->socket.sk); 2941 sk_detach_filter(tfile->socket.sk); 2942 release_sock(tfile->socket.sk); 2943 } 2944 2945 tun->filter_attached = false; 2946 } 2947 2948 static int tun_attach_filter(struct tun_struct *tun) 2949 { 2950 int i, ret = 0; 2951 struct tun_file *tfile; 2952 2953 for (i = 0; i < tun->numqueues; i++) { 2954 tfile = rtnl_dereference(tun->tfiles[i]); 2955 lock_sock(tfile->socket.sk); 2956 ret = sk_attach_filter(&tun->fprog, tfile->socket.sk); 2957 release_sock(tfile->socket.sk); 2958 if (ret) { 2959 tun_detach_filter(tun, i); 2960 return ret; 2961 } 2962 } 2963 2964 tun->filter_attached = true; 2965 return ret; 2966 } 2967 2968 static void tun_set_sndbuf(struct tun_struct *tun) 2969 { 2970 struct tun_file *tfile; 2971 int i; 2972 2973 for (i = 0; i < tun->numqueues; i++) { 2974 tfile = rtnl_dereference(tun->tfiles[i]); 2975 tfile->socket.sk->sk_sndbuf = tun->sndbuf; 2976 } 2977 } 2978 2979 static int tun_set_queue(struct file *file, struct ifreq *ifr) 2980 { 2981 struct tun_file *tfile = file->private_data; 2982 struct tun_struct *tun; 2983 int ret = 0; 2984 2985 rtnl_lock(); 2986 2987 if (ifr->ifr_flags & IFF_ATTACH_QUEUE) { 2988 tun = tfile->detached; 2989 if (!tun) { 2990 ret = -EINVAL; 2991 goto unlock; 2992 } 2993 ret = security_tun_dev_attach_queue(tun->security); 2994 if (ret < 0) 2995 goto unlock; 2996 ret = tun_attach(tun, file, false, tun->flags & IFF_NAPI, 2997 tun->flags & IFF_NAPI_FRAGS, true); 2998 } else if (ifr->ifr_flags & IFF_DETACH_QUEUE) { 2999 tun = rtnl_dereference(tfile->tun); 3000 if (!tun || !(tun->flags & IFF_MULTI_QUEUE) || tfile->detached) 3001 ret = -EINVAL; 3002 else 3003 __tun_detach(tfile, false); 3004 } else 3005 ret = -EINVAL; 3006 3007 if (ret >= 0) 3008 netdev_state_change(tun->dev); 3009 3010 unlock: 3011 rtnl_unlock(); 3012 return ret; 3013 } 3014 3015 static int tun_set_ebpf(struct tun_struct *tun, struct tun_prog __rcu **prog_p, 3016 void __user *data) 3017 { 3018 struct bpf_prog *prog; 3019 int fd; 3020 3021 if (copy_from_user(&fd, data, sizeof(fd))) 3022 return -EFAULT; 3023 3024 if (fd == -1) { 3025 prog = NULL; 3026 } else { 3027 prog = bpf_prog_get_type(fd, BPF_PROG_TYPE_SOCKET_FILTER); 3028 if (IS_ERR(prog)) 3029 return PTR_ERR(prog); 3030 } 3031 3032 return __tun_set_ebpf(tun, prog_p, prog); 3033 } 3034 3035 /* Return correct value for tun->dev->addr_len based on tun->dev->type. */ 3036 static unsigned char tun_get_addr_len(unsigned short type) 3037 { 3038 switch (type) { 3039 case ARPHRD_IP6GRE: 3040 case ARPHRD_TUNNEL6: 3041 return sizeof(struct in6_addr); 3042 case ARPHRD_IPGRE: 3043 case ARPHRD_TUNNEL: 3044 case ARPHRD_SIT: 3045 return 4; 3046 case ARPHRD_ETHER: 3047 return ETH_ALEN; 3048 case ARPHRD_IEEE802154: 3049 case ARPHRD_IEEE802154_MONITOR: 3050 return IEEE802154_EXTENDED_ADDR_LEN; 3051 case ARPHRD_PHONET_PIPE: 3052 case ARPHRD_PPP: 3053 case ARPHRD_NONE: 3054 return 0; 3055 case ARPHRD_6LOWPAN: 3056 return EUI64_ADDR_LEN; 3057 case ARPHRD_FDDI: 3058 return FDDI_K_ALEN; 3059 case ARPHRD_HIPPI: 3060 return HIPPI_ALEN; 3061 case ARPHRD_IEEE802: 3062 return FC_ALEN; 3063 case ARPHRD_ROSE: 3064 return ROSE_ADDR_LEN; 3065 case ARPHRD_NETROM: 3066 return AX25_ADDR_LEN; 3067 case ARPHRD_LOCALTLK: 3068 return LTALK_ALEN; 3069 default: 3070 return 0; 3071 } 3072 } 3073 3074 static long __tun_chr_ioctl(struct file *file, unsigned int cmd, 3075 unsigned long arg, int ifreq_len) 3076 { 3077 struct tun_file *tfile = file->private_data; 3078 struct net *net = sock_net(&tfile->sk); 3079 struct tun_struct *tun; 3080 void __user* argp = (void __user*)arg; 3081 unsigned int carrier; 3082 struct ifreq ifr; 3083 kuid_t owner; 3084 kgid_t group; 3085 int ifindex; 3086 int sndbuf; 3087 int vnet_hdr_sz; 3088 int le; 3089 int ret; 3090 bool do_notify = false; 3091 3092 if (cmd == TUNSETIFF || cmd == TUNSETQUEUE || 3093 (_IOC_TYPE(cmd) == SOCK_IOC_TYPE && cmd != SIOCGSKNS)) { 3094 if (copy_from_user(&ifr, argp, ifreq_len)) 3095 return -EFAULT; 3096 } else { 3097 memset(&ifr, 0, sizeof(ifr)); 3098 } 3099 if (cmd == TUNGETFEATURES) { 3100 /* Currently this just means: "what IFF flags are valid?". 3101 * This is needed because we never checked for invalid flags on 3102 * TUNSETIFF. 3103 */ 3104 return put_user(IFF_TUN | IFF_TAP | IFF_NO_CARRIER | 3105 TUN_FEATURES, (unsigned int __user*)argp); 3106 } else if (cmd == TUNSETQUEUE) { 3107 return tun_set_queue(file, &ifr); 3108 } else if (cmd == SIOCGSKNS) { 3109 if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) 3110 return -EPERM; 3111 return open_related_ns(&net->ns, get_net_ns); 3112 } 3113 3114 rtnl_lock(); 3115 3116 tun = tun_get(tfile); 3117 if (cmd == TUNSETIFF) { 3118 ret = -EEXIST; 3119 if (tun) 3120 goto unlock; 3121 3122 ifr.ifr_name[IFNAMSIZ-1] = '\0'; 3123 3124 ret = tun_set_iff(net, file, &ifr); 3125 3126 if (ret) 3127 goto unlock; 3128 3129 if (copy_to_user(argp, &ifr, ifreq_len)) 3130 ret = -EFAULT; 3131 goto unlock; 3132 } 3133 if (cmd == TUNSETIFINDEX) { 3134 ret = -EPERM; 3135 if (tun) 3136 goto unlock; 3137 3138 ret = -EFAULT; 3139 if (copy_from_user(&ifindex, argp, sizeof(ifindex))) 3140 goto unlock; 3141 ret = -EINVAL; 3142 if (ifindex < 0) 3143 goto unlock; 3144 ret = 0; 3145 tfile->ifindex = ifindex; 3146 goto unlock; 3147 } 3148 3149 ret = -EBADFD; 3150 if (!tun) 3151 goto unlock; 3152 3153 netif_info(tun, drv, tun->dev, "tun_chr_ioctl cmd %u\n", cmd); 3154 3155 net = dev_net(tun->dev); 3156 ret = 0; 3157 switch (cmd) { 3158 case TUNGETIFF: 3159 tun_get_iff(tun, &ifr); 3160 3161 if (tfile->detached) 3162 ifr.ifr_flags |= IFF_DETACH_QUEUE; 3163 if (!tfile->socket.sk->sk_filter) 3164 ifr.ifr_flags |= IFF_NOFILTER; 3165 3166 if (copy_to_user(argp, &ifr, ifreq_len)) 3167 ret = -EFAULT; 3168 break; 3169 3170 case TUNSETNOCSUM: 3171 /* Disable/Enable checksum */ 3172 3173 /* [unimplemented] */ 3174 netif_info(tun, drv, tun->dev, "ignored: set checksum %s\n", 3175 arg ? "disabled" : "enabled"); 3176 break; 3177 3178 case TUNSETPERSIST: 3179 /* Disable/Enable persist mode. Keep an extra reference to the 3180 * module to prevent the module being unprobed. 3181 */ 3182 if (arg && !(tun->flags & IFF_PERSIST)) { 3183 tun->flags |= IFF_PERSIST; 3184 __module_get(THIS_MODULE); 3185 do_notify = true; 3186 } 3187 if (!arg && (tun->flags & IFF_PERSIST)) { 3188 tun->flags &= ~IFF_PERSIST; 3189 module_put(THIS_MODULE); 3190 do_notify = true; 3191 } 3192 3193 netif_info(tun, drv, tun->dev, "persist %s\n", 3194 arg ? "enabled" : "disabled"); 3195 break; 3196 3197 case TUNSETOWNER: 3198 /* Set owner of the device */ 3199 owner = make_kuid(current_user_ns(), arg); 3200 if (!uid_valid(owner)) { 3201 ret = -EINVAL; 3202 break; 3203 } 3204 tun->owner = owner; 3205 do_notify = true; 3206 netif_info(tun, drv, tun->dev, "owner set to %u\n", 3207 from_kuid(&init_user_ns, tun->owner)); 3208 break; 3209 3210 case TUNSETGROUP: 3211 /* Set group of the device */ 3212 group = make_kgid(current_user_ns(), arg); 3213 if (!gid_valid(group)) { 3214 ret = -EINVAL; 3215 break; 3216 } 3217 tun->group = group; 3218 do_notify = true; 3219 netif_info(tun, drv, tun->dev, "group set to %u\n", 3220 from_kgid(&init_user_ns, tun->group)); 3221 break; 3222 3223 case TUNSETLINK: 3224 /* Only allow setting the type when the interface is down */ 3225 if (tun->dev->flags & IFF_UP) { 3226 netif_info(tun, drv, tun->dev, 3227 "Linktype set failed because interface is up\n"); 3228 ret = -EBUSY; 3229 } else { 3230 ret = call_netdevice_notifiers(NETDEV_PRE_TYPE_CHANGE, 3231 tun->dev); 3232 ret = notifier_to_errno(ret); 3233 if (ret) { 3234 netif_info(tun, drv, tun->dev, 3235 "Refused to change device type\n"); 3236 break; 3237 } 3238 tun->dev->type = (int) arg; 3239 tun->dev->addr_len = tun_get_addr_len(tun->dev->type); 3240 netif_info(tun, drv, tun->dev, "linktype set to %d\n", 3241 tun->dev->type); 3242 call_netdevice_notifiers(NETDEV_POST_TYPE_CHANGE, 3243 tun->dev); 3244 } 3245 break; 3246 3247 case TUNSETDEBUG: 3248 tun->msg_enable = (u32)arg; 3249 break; 3250 3251 case TUNSETOFFLOAD: 3252 ret = set_offload(tun, arg); 3253 break; 3254 3255 case TUNSETTXFILTER: 3256 /* Can be set only for TAPs */ 3257 ret = -EINVAL; 3258 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP) 3259 break; 3260 ret = update_filter(&tun->txflt, (void __user *)arg); 3261 break; 3262 3263 case SIOCGIFHWADDR: 3264 /* Get hw address */ 3265 dev_get_mac_address(&ifr.ifr_hwaddr, net, tun->dev->name); 3266 if (copy_to_user(argp, &ifr, ifreq_len)) 3267 ret = -EFAULT; 3268 break; 3269 3270 case SIOCSIFHWADDR: 3271 /* Set hw address */ 3272 ret = dev_set_mac_address_user(tun->dev, &ifr.ifr_hwaddr, NULL); 3273 break; 3274 3275 case TUNGETSNDBUF: 3276 sndbuf = tfile->socket.sk->sk_sndbuf; 3277 if (copy_to_user(argp, &sndbuf, sizeof(sndbuf))) 3278 ret = -EFAULT; 3279 break; 3280 3281 case TUNSETSNDBUF: 3282 if (copy_from_user(&sndbuf, argp, sizeof(sndbuf))) { 3283 ret = -EFAULT; 3284 break; 3285 } 3286 if (sndbuf <= 0) { 3287 ret = -EINVAL; 3288 break; 3289 } 3290 3291 tun->sndbuf = sndbuf; 3292 tun_set_sndbuf(tun); 3293 break; 3294 3295 case TUNGETVNETHDRSZ: 3296 vnet_hdr_sz = tun->vnet_hdr_sz; 3297 if (copy_to_user(argp, &vnet_hdr_sz, sizeof(vnet_hdr_sz))) 3298 ret = -EFAULT; 3299 break; 3300 3301 case TUNSETVNETHDRSZ: 3302 if (copy_from_user(&vnet_hdr_sz, argp, sizeof(vnet_hdr_sz))) { 3303 ret = -EFAULT; 3304 break; 3305 } 3306 if (vnet_hdr_sz < (int)sizeof(struct virtio_net_hdr)) { 3307 ret = -EINVAL; 3308 break; 3309 } 3310 3311 tun->vnet_hdr_sz = vnet_hdr_sz; 3312 break; 3313 3314 case TUNGETVNETLE: 3315 le = !!(tun->flags & TUN_VNET_LE); 3316 if (put_user(le, (int __user *)argp)) 3317 ret = -EFAULT; 3318 break; 3319 3320 case TUNSETVNETLE: 3321 if (get_user(le, (int __user *)argp)) { 3322 ret = -EFAULT; 3323 break; 3324 } 3325 if (le) 3326 tun->flags |= TUN_VNET_LE; 3327 else 3328 tun->flags &= ~TUN_VNET_LE; 3329 break; 3330 3331 case TUNGETVNETBE: 3332 ret = tun_get_vnet_be(tun, argp); 3333 break; 3334 3335 case TUNSETVNETBE: 3336 ret = tun_set_vnet_be(tun, argp); 3337 break; 3338 3339 case TUNATTACHFILTER: 3340 /* Can be set only for TAPs */ 3341 ret = -EINVAL; 3342 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP) 3343 break; 3344 ret = -EFAULT; 3345 if (copy_from_user(&tun->fprog, argp, sizeof(tun->fprog))) 3346 break; 3347 3348 ret = tun_attach_filter(tun); 3349 break; 3350 3351 case TUNDETACHFILTER: 3352 /* Can be set only for TAPs */ 3353 ret = -EINVAL; 3354 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP) 3355 break; 3356 ret = 0; 3357 tun_detach_filter(tun, tun->numqueues); 3358 break; 3359 3360 case TUNGETFILTER: 3361 ret = -EINVAL; 3362 if ((tun->flags & TUN_TYPE_MASK) != IFF_TAP) 3363 break; 3364 ret = -EFAULT; 3365 if (copy_to_user(argp, &tun->fprog, sizeof(tun->fprog))) 3366 break; 3367 ret = 0; 3368 break; 3369 3370 case TUNSETSTEERINGEBPF: 3371 ret = tun_set_ebpf(tun, &tun->steering_prog, argp); 3372 break; 3373 3374 case TUNSETFILTEREBPF: 3375 ret = tun_set_ebpf(tun, &tun->filter_prog, argp); 3376 break; 3377 3378 case TUNSETCARRIER: 3379 ret = -EFAULT; 3380 if (copy_from_user(&carrier, argp, sizeof(carrier))) 3381 goto unlock; 3382 3383 ret = tun_net_change_carrier(tun->dev, (bool)carrier); 3384 break; 3385 3386 case TUNGETDEVNETNS: 3387 ret = -EPERM; 3388 if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) 3389 goto unlock; 3390 ret = open_related_ns(&net->ns, get_net_ns); 3391 break; 3392 3393 default: 3394 ret = -EINVAL; 3395 break; 3396 } 3397 3398 if (do_notify) 3399 netdev_state_change(tun->dev); 3400 3401 unlock: 3402 rtnl_unlock(); 3403 if (tun) 3404 tun_put(tun); 3405 return ret; 3406 } 3407 3408 static long tun_chr_ioctl(struct file *file, 3409 unsigned int cmd, unsigned long arg) 3410 { 3411 return __tun_chr_ioctl(file, cmd, arg, sizeof (struct ifreq)); 3412 } 3413 3414 #ifdef CONFIG_COMPAT 3415 static long tun_chr_compat_ioctl(struct file *file, 3416 unsigned int cmd, unsigned long arg) 3417 { 3418 switch (cmd) { 3419 case TUNSETIFF: 3420 case TUNGETIFF: 3421 case TUNSETTXFILTER: 3422 case TUNGETSNDBUF: 3423 case TUNSETSNDBUF: 3424 case SIOCGIFHWADDR: 3425 case SIOCSIFHWADDR: 3426 arg = (unsigned long)compat_ptr(arg); 3427 break; 3428 default: 3429 arg = (compat_ulong_t)arg; 3430 break; 3431 } 3432 3433 /* 3434 * compat_ifreq is shorter than ifreq, so we must not access beyond 3435 * the end of that structure. All fields that are used in this 3436 * driver are compatible though, we don't need to convert the 3437 * contents. 3438 */ 3439 return __tun_chr_ioctl(file, cmd, arg, sizeof(struct compat_ifreq)); 3440 } 3441 #endif /* CONFIG_COMPAT */ 3442 3443 static int tun_chr_fasync(int fd, struct file *file, int on) 3444 { 3445 struct tun_file *tfile = file->private_data; 3446 int ret; 3447 3448 if ((ret = fasync_helper(fd, file, on, &tfile->fasync)) < 0) 3449 goto out; 3450 3451 if (on) { 3452 __f_setown(file, task_pid(current), PIDTYPE_TGID, 0); 3453 tfile->flags |= TUN_FASYNC; 3454 } else 3455 tfile->flags &= ~TUN_FASYNC; 3456 ret = 0; 3457 out: 3458 return ret; 3459 } 3460 3461 static int tun_chr_open(struct inode *inode, struct file * file) 3462 { 3463 struct net *net = current->nsproxy->net_ns; 3464 struct tun_file *tfile; 3465 3466 tfile = (struct tun_file *)sk_alloc(net, AF_UNSPEC, GFP_KERNEL, 3467 &tun_proto, 0); 3468 if (!tfile) 3469 return -ENOMEM; 3470 if (ptr_ring_init(&tfile->tx_ring, 0, GFP_KERNEL)) { 3471 sk_free(&tfile->sk); 3472 return -ENOMEM; 3473 } 3474 3475 mutex_init(&tfile->napi_mutex); 3476 RCU_INIT_POINTER(tfile->tun, NULL); 3477 tfile->flags = 0; 3478 tfile->ifindex = 0; 3479 3480 init_waitqueue_head(&tfile->socket.wq.wait); 3481 3482 tfile->socket.file = file; 3483 tfile->socket.ops = &tun_socket_ops; 3484 3485 sock_init_data_uid(&tfile->socket, &tfile->sk, current_fsuid()); 3486 3487 tfile->sk.sk_write_space = tun_sock_write_space; 3488 tfile->sk.sk_sndbuf = INT_MAX; 3489 3490 file->private_data = tfile; 3491 INIT_LIST_HEAD(&tfile->next); 3492 3493 sock_set_flag(&tfile->sk, SOCK_ZEROCOPY); 3494 3495 /* tun groks IOCB_NOWAIT just fine, mark it as such */ 3496 file->f_mode |= FMODE_NOWAIT; 3497 return 0; 3498 } 3499 3500 static int tun_chr_close(struct inode *inode, struct file *file) 3501 { 3502 struct tun_file *tfile = file->private_data; 3503 3504 tun_detach(tfile, true); 3505 3506 return 0; 3507 } 3508 3509 #ifdef CONFIG_PROC_FS 3510 static void tun_chr_show_fdinfo(struct seq_file *m, struct file *file) 3511 { 3512 struct tun_file *tfile = file->private_data; 3513 struct tun_struct *tun; 3514 struct ifreq ifr; 3515 3516 memset(&ifr, 0, sizeof(ifr)); 3517 3518 rtnl_lock(); 3519 tun = tun_get(tfile); 3520 if (tun) 3521 tun_get_iff(tun, &ifr); 3522 rtnl_unlock(); 3523 3524 if (tun) 3525 tun_put(tun); 3526 3527 seq_printf(m, "iff:\t%s\n", ifr.ifr_name); 3528 } 3529 #endif 3530 3531 static const struct file_operations tun_fops = { 3532 .owner = THIS_MODULE, 3533 .llseek = no_llseek, 3534 .read_iter = tun_chr_read_iter, 3535 .write_iter = tun_chr_write_iter, 3536 .poll = tun_chr_poll, 3537 .unlocked_ioctl = tun_chr_ioctl, 3538 #ifdef CONFIG_COMPAT 3539 .compat_ioctl = tun_chr_compat_ioctl, 3540 #endif 3541 .open = tun_chr_open, 3542 .release = tun_chr_close, 3543 .fasync = tun_chr_fasync, 3544 #ifdef CONFIG_PROC_FS 3545 .show_fdinfo = tun_chr_show_fdinfo, 3546 #endif 3547 }; 3548 3549 static struct miscdevice tun_miscdev = { 3550 .minor = TUN_MINOR, 3551 .name = "tun", 3552 .nodename = "net/tun", 3553 .fops = &tun_fops, 3554 }; 3555 3556 /* ethtool interface */ 3557 3558 static void tun_default_link_ksettings(struct net_device *dev, 3559 struct ethtool_link_ksettings *cmd) 3560 { 3561 ethtool_link_ksettings_zero_link_mode(cmd, supported); 3562 ethtool_link_ksettings_zero_link_mode(cmd, advertising); 3563 cmd->base.speed = SPEED_10000; 3564 cmd->base.duplex = DUPLEX_FULL; 3565 cmd->base.port = PORT_TP; 3566 cmd->base.phy_address = 0; 3567 cmd->base.autoneg = AUTONEG_DISABLE; 3568 } 3569 3570 static int tun_get_link_ksettings(struct net_device *dev, 3571 struct ethtool_link_ksettings *cmd) 3572 { 3573 struct tun_struct *tun = netdev_priv(dev); 3574 3575 memcpy(cmd, &tun->link_ksettings, sizeof(*cmd)); 3576 return 0; 3577 } 3578 3579 static int tun_set_link_ksettings(struct net_device *dev, 3580 const struct ethtool_link_ksettings *cmd) 3581 { 3582 struct tun_struct *tun = netdev_priv(dev); 3583 3584 memcpy(&tun->link_ksettings, cmd, sizeof(*cmd)); 3585 return 0; 3586 } 3587 3588 static void tun_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info) 3589 { 3590 struct tun_struct *tun = netdev_priv(dev); 3591 3592 strscpy(info->driver, DRV_NAME, sizeof(info->driver)); 3593 strscpy(info->version, DRV_VERSION, sizeof(info->version)); 3594 3595 switch (tun->flags & TUN_TYPE_MASK) { 3596 case IFF_TUN: 3597 strscpy(info->bus_info, "tun", sizeof(info->bus_info)); 3598 break; 3599 case IFF_TAP: 3600 strscpy(info->bus_info, "tap", sizeof(info->bus_info)); 3601 break; 3602 } 3603 } 3604 3605 static u32 tun_get_msglevel(struct net_device *dev) 3606 { 3607 struct tun_struct *tun = netdev_priv(dev); 3608 3609 return tun->msg_enable; 3610 } 3611 3612 static void tun_set_msglevel(struct net_device *dev, u32 value) 3613 { 3614 struct tun_struct *tun = netdev_priv(dev); 3615 3616 tun->msg_enable = value; 3617 } 3618 3619 static int tun_get_coalesce(struct net_device *dev, 3620 struct ethtool_coalesce *ec, 3621 struct kernel_ethtool_coalesce *kernel_coal, 3622 struct netlink_ext_ack *extack) 3623 { 3624 struct tun_struct *tun = netdev_priv(dev); 3625 3626 ec->rx_max_coalesced_frames = tun->rx_batched; 3627 3628 return 0; 3629 } 3630 3631 static int tun_set_coalesce(struct net_device *dev, 3632 struct ethtool_coalesce *ec, 3633 struct kernel_ethtool_coalesce *kernel_coal, 3634 struct netlink_ext_ack *extack) 3635 { 3636 struct tun_struct *tun = netdev_priv(dev); 3637 3638 if (ec->rx_max_coalesced_frames > NAPI_POLL_WEIGHT) 3639 tun->rx_batched = NAPI_POLL_WEIGHT; 3640 else 3641 tun->rx_batched = ec->rx_max_coalesced_frames; 3642 3643 return 0; 3644 } 3645 3646 static void tun_get_channels(struct net_device *dev, 3647 struct ethtool_channels *channels) 3648 { 3649 struct tun_struct *tun = netdev_priv(dev); 3650 3651 channels->combined_count = tun->numqueues; 3652 channels->max_combined = tun->flags & IFF_MULTI_QUEUE ? MAX_TAP_QUEUES : 1; 3653 } 3654 3655 static const struct ethtool_ops tun_ethtool_ops = { 3656 .supported_coalesce_params = ETHTOOL_COALESCE_RX_MAX_FRAMES, 3657 .get_drvinfo = tun_get_drvinfo, 3658 .get_msglevel = tun_get_msglevel, 3659 .set_msglevel = tun_set_msglevel, 3660 .get_link = ethtool_op_get_link, 3661 .get_channels = tun_get_channels, 3662 .get_ts_info = ethtool_op_get_ts_info, 3663 .get_coalesce = tun_get_coalesce, 3664 .set_coalesce = tun_set_coalesce, 3665 .get_link_ksettings = tun_get_link_ksettings, 3666 .set_link_ksettings = tun_set_link_ksettings, 3667 }; 3668 3669 static int tun_queue_resize(struct tun_struct *tun) 3670 { 3671 struct net_device *dev = tun->dev; 3672 struct tun_file *tfile; 3673 struct ptr_ring **rings; 3674 int n = tun->numqueues + tun->numdisabled; 3675 int ret, i; 3676 3677 rings = kmalloc_array(n, sizeof(*rings), GFP_KERNEL); 3678 if (!rings) 3679 return -ENOMEM; 3680 3681 for (i = 0; i < tun->numqueues; i++) { 3682 tfile = rtnl_dereference(tun->tfiles[i]); 3683 rings[i] = &tfile->tx_ring; 3684 } 3685 list_for_each_entry(tfile, &tun->disabled, next) 3686 rings[i++] = &tfile->tx_ring; 3687 3688 ret = ptr_ring_resize_multiple(rings, n, 3689 dev->tx_queue_len, GFP_KERNEL, 3690 tun_ptr_free); 3691 3692 kfree(rings); 3693 return ret; 3694 } 3695 3696 static int tun_device_event(struct notifier_block *unused, 3697 unsigned long event, void *ptr) 3698 { 3699 struct net_device *dev = netdev_notifier_info_to_dev(ptr); 3700 struct tun_struct *tun = netdev_priv(dev); 3701 int i; 3702 3703 if (dev->rtnl_link_ops != &tun_link_ops) 3704 return NOTIFY_DONE; 3705 3706 switch (event) { 3707 case NETDEV_CHANGE_TX_QUEUE_LEN: 3708 if (tun_queue_resize(tun)) 3709 return NOTIFY_BAD; 3710 break; 3711 case NETDEV_UP: 3712 for (i = 0; i < tun->numqueues; i++) { 3713 struct tun_file *tfile; 3714 3715 tfile = rtnl_dereference(tun->tfiles[i]); 3716 tfile->socket.sk->sk_write_space(tfile->socket.sk); 3717 } 3718 break; 3719 default: 3720 break; 3721 } 3722 3723 return NOTIFY_DONE; 3724 } 3725 3726 static struct notifier_block tun_notifier_block __read_mostly = { 3727 .notifier_call = tun_device_event, 3728 }; 3729 3730 static int __init tun_init(void) 3731 { 3732 int ret = 0; 3733 3734 pr_info("%s, %s\n", DRV_DESCRIPTION, DRV_VERSION); 3735 3736 ret = rtnl_link_register(&tun_link_ops); 3737 if (ret) { 3738 pr_err("Can't register link_ops\n"); 3739 goto err_linkops; 3740 } 3741 3742 ret = misc_register(&tun_miscdev); 3743 if (ret) { 3744 pr_err("Can't register misc device %d\n", TUN_MINOR); 3745 goto err_misc; 3746 } 3747 3748 ret = register_netdevice_notifier(&tun_notifier_block); 3749 if (ret) { 3750 pr_err("Can't register netdevice notifier\n"); 3751 goto err_notifier; 3752 } 3753 3754 return 0; 3755 3756 err_notifier: 3757 misc_deregister(&tun_miscdev); 3758 err_misc: 3759 rtnl_link_unregister(&tun_link_ops); 3760 err_linkops: 3761 return ret; 3762 } 3763 3764 static void __exit tun_cleanup(void) 3765 { 3766 misc_deregister(&tun_miscdev); 3767 rtnl_link_unregister(&tun_link_ops); 3768 unregister_netdevice_notifier(&tun_notifier_block); 3769 } 3770 3771 /* Get an underlying socket object from tun file. Returns error unless file is 3772 * attached to a device. The returned object works like a packet socket, it 3773 * can be used for sock_sendmsg/sock_recvmsg. The caller is responsible for 3774 * holding a reference to the file for as long as the socket is in use. */ 3775 struct socket *tun_get_socket(struct file *file) 3776 { 3777 struct tun_file *tfile; 3778 if (file->f_op != &tun_fops) 3779 return ERR_PTR(-EINVAL); 3780 tfile = file->private_data; 3781 if (!tfile) 3782 return ERR_PTR(-EBADFD); 3783 return &tfile->socket; 3784 } 3785 EXPORT_SYMBOL_GPL(tun_get_socket); 3786 3787 struct ptr_ring *tun_get_tx_ring(struct file *file) 3788 { 3789 struct tun_file *tfile; 3790 3791 if (file->f_op != &tun_fops) 3792 return ERR_PTR(-EINVAL); 3793 tfile = file->private_data; 3794 if (!tfile) 3795 return ERR_PTR(-EBADFD); 3796 return &tfile->tx_ring; 3797 } 3798 EXPORT_SYMBOL_GPL(tun_get_tx_ring); 3799 3800 module_init(tun_init); 3801 module_exit(tun_cleanup); 3802 MODULE_DESCRIPTION(DRV_DESCRIPTION); 3803 MODULE_AUTHOR(DRV_COPYRIGHT); 3804 MODULE_LICENSE("GPL"); 3805 MODULE_ALIAS_MISCDEV(TUN_MINOR); 3806 MODULE_ALIAS("devname:net/tun"); 3807