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