1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Universal TUN/TAP device driver.
4 * Copyright (C) 1999-2000 Maxim Krasnyansky <max_mk@yahoo.com>
9 #include <uapi/linux/if_tun.h>
10 #include <uapi/linux/virtio_net.h>
12 #define TUN_XDP_FLAG 0x1UL
14 #define TUN_MSG_UBUF 1
24 struct virtio_net_hdr gso;
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 static inline bool tun_is_xdp_frame(void *ptr)
32 return (unsigned long)ptr & TUN_XDP_FLAG;
34 static inline void *tun_xdp_to_ptr(struct xdp_frame *xdp)
36 return (void *)((unsigned long)xdp | TUN_XDP_FLAG);
38 static inline struct xdp_frame *tun_ptr_to_xdp(void *ptr)
40 return (void *)((unsigned long)ptr & ~TUN_XDP_FLAG);
42 void tun_ptr_free(void *ptr);
44 #include <linux/err.h>
45 #include <linux/errno.h>
48 static inline struct socket *tun_get_socket(struct file *f)
50 return ERR_PTR(-EINVAL);
52 static inline struct ptr_ring *tun_get_tx_ring(struct file *f)
54 return ERR_PTR(-EINVAL);
56 static inline bool tun_is_xdp_frame(void *ptr)
60 static inline void *tun_xdp_to_ptr(struct xdp_frame *xdp)
64 static inline struct xdp_frame *tun_ptr_to_xdp(void *ptr)
68 static inline void tun_ptr_free(void *ptr)
71 #endif /* CONFIG_TUN */
72 #endif /* __IF_TUN_H */