~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/if_tun.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0-or-later */
  2 /*
  3  *  Universal TUN/TAP device driver.
  4  *  Copyright (C) 1999-2000 Maxim Krasnyansky <max_mk@yahoo.com>
  5  */
  6 #ifndef __IF_TUN_H
  7 #define __IF_TUN_H
  8 
  9 #include <uapi/linux/if_tun.h>
 10 #include <uapi/linux/virtio_net.h>
 11 
 12 #define TUN_XDP_FLAG 0x1UL
 13 
 14 #define TUN_MSG_UBUF 1
 15 #define TUN_MSG_PTR  2
 16 struct tun_msg_ctl {
 17         unsigned short type;
 18         unsigned short num;
 19         void *ptr;
 20 };
 21 
 22 struct tun_xdp_hdr {
 23         int buflen;
 24         struct virtio_net_hdr gso;
 25 };
 26 
 27 #if defined(CONFIG_TUN) || defined(CONFIG_TUN_MODULE)
 28 struct socket *tun_get_socket(struct file *);
 29 struct ptr_ring *tun_get_tx_ring(struct file *file);
 30 
 31 static inline bool tun_is_xdp_frame(void *ptr)
 32 {
 33         return (unsigned long)ptr & TUN_XDP_FLAG;
 34 }
 35 
 36 static inline void *tun_xdp_to_ptr(struct xdp_frame *xdp)
 37 {
 38         return (void *)((unsigned long)xdp | TUN_XDP_FLAG);
 39 }
 40 
 41 static inline struct xdp_frame *tun_ptr_to_xdp(void *ptr)
 42 {
 43         return (void *)((unsigned long)ptr & ~TUN_XDP_FLAG);
 44 }
 45 
 46 void tun_ptr_free(void *ptr);
 47 #else
 48 #include <linux/err.h>
 49 #include <linux/errno.h>
 50 struct file;
 51 struct socket;
 52 
 53 static inline struct socket *tun_get_socket(struct file *f)
 54 {
 55         return ERR_PTR(-EINVAL);
 56 }
 57 
 58 static inline struct ptr_ring *tun_get_tx_ring(struct file *f)
 59 {
 60         return ERR_PTR(-EINVAL);
 61 }
 62 
 63 static inline bool tun_is_xdp_frame(void *ptr)
 64 {
 65         return false;
 66 }
 67 
 68 static inline void *tun_xdp_to_ptr(struct xdp_frame *xdp)
 69 {
 70         return NULL;
 71 }
 72 
 73 static inline struct xdp_frame *tun_ptr_to_xdp(void *ptr)
 74 {
 75         return NULL;
 76 }
 77 
 78 static inline void tun_ptr_free(void *ptr)
 79 {
 80 }
 81 #endif /* CONFIG_TUN */
 82 #endif /* __IF_TUN_H */
 83 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php