Files
kernel/include/linux/if_tun.h
T

73 lines
1.5 KiB
C
Raw Normal View History

/* SPDX-License-Identifier: GPL-2.0-or-later */
2005-04-16 15:20:36 -07:00
/*
* Universal TUN/TAP device driver.
* Copyright (C) 1999-2000 Maxim Krasnyansky <max_mk@yahoo.com>
*/
#ifndef __IF_TUN_H
#define __IF_TUN_H
2012-10-13 10:46:48 +01:00
#include <uapi/linux/if_tun.h>
2018-09-12 11:17:06 +08:00
#include <uapi/linux/virtio_net.h>
2007-12-22 17:52:42 +00:00
2018-01-04 11:14:28 +08:00
#define TUN_XDP_FLAG 0x1UL
2018-09-12 11:17:06 +08:00
#define TUN_MSG_UBUF 1
#define TUN_MSG_PTR 2
struct tun_msg_ctl {
unsigned short type;
unsigned short num;
void *ptr;
};
struct tun_xdp_hdr {
int buflen;
struct virtio_net_hdr gso;
};
2010-01-14 06:17:09 +00:00
#if defined(CONFIG_TUN) || defined(CONFIG_TUN_MODULE)
struct socket *tun_get_socket(struct file *);
2018-01-04 11:14:27 +08:00
struct ptr_ring *tun_get_tx_ring(struct file *file);
static inline bool tun_is_xdp_frame(void *ptr)
{
return (unsigned long)ptr & TUN_XDP_FLAG;
}
static inline void *tun_xdp_to_ptr(struct xdp_frame *xdp)
{
return (void *)((unsigned long)xdp | TUN_XDP_FLAG);
}
static inline struct xdp_frame *tun_ptr_to_xdp(void *ptr)
{
return (void *)((unsigned long)ptr & ~TUN_XDP_FLAG);
}
void tun_ptr_free(void *ptr);
2010-01-14 06:17:09 +00:00
#else
#include <linux/err.h>
#include <linux/errno.h>
struct file;
struct socket;
static inline struct socket *tun_get_socket(struct file *f)
{
return ERR_PTR(-EINVAL);
}
2018-01-04 11:14:27 +08:00
static inline struct ptr_ring *tun_get_tx_ring(struct file *f)
2017-05-17 12:14:41 +08:00
{
return ERR_PTR(-EINVAL);
}
static inline bool tun_is_xdp_frame(void *ptr)
2018-01-04 11:14:28 +08:00
{
return false;
}
static inline void *tun_xdp_to_ptr(struct xdp_frame *xdp)
2018-01-04 11:14:28 +08:00
{
return NULL;
}
static inline struct xdp_frame *tun_ptr_to_xdp(void *ptr)
2018-01-04 11:14:28 +08:00
{
return NULL;
}
static inline void tun_ptr_free(void *ptr)
{
}
2010-01-14 06:17:09 +00:00
#endif /* CONFIG_TUN */
2005-04-16 15:20:36 -07:00
#endif /* __IF_TUN_H */