blob: 6c37e1dbc5df12982661099a8d399696e98b5d81 [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Universal TUN/TAP device driver.
4 * Copyright (C) 1999-2000 Maxim Krasnyansky <[email protected]>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#ifndef __IF_TUN_H
7#define __IF_TUN_H
8
David Howells607ca462012-10-13 10:46:48 +01009#include <uapi/linux/if_tun.h>
Jason Wangfe8dd452018-09-12 11:17:06 +080010#include <uapi/linux/virtio_net.h>
Al Viroa3edb082007-12-22 17:52:42 +000011
Jason Wangfc72d1d2018-01-04 11:14:28 +080012#define TUN_XDP_FLAG 0x1UL
13
Jason Wangfe8dd452018-09-12 11:17:06 +080014#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
Michael S. Tsirkin05c28282010-01-14 06:17:09 +000027#if defined(CONFIG_TUN) || defined(CONFIG_TUN_MODULE)
28struct socket *tun_get_socket(struct file *);
Jason Wang5990a302018-01-04 11:14:27 +080029struct ptr_ring *tun_get_tx_ring(struct file *file);
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +020030bool tun_is_xdp_frame(void *ptr);
Maciej Żenczykowskib558b6c2020-08-18 18:07:09 -070031void *tun_xdp_to_ptr(struct xdp_frame *xdp);
32struct xdp_frame *tun_ptr_to_xdp(void *ptr);
Jason Wang3a403072018-03-09 14:50:34 +080033void tun_ptr_free(void *ptr);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +000034#else
35#include <linux/err.h>
36#include <linux/errno.h>
37struct file;
38struct socket;
39static inline struct socket *tun_get_socket(struct file *f)
40{
41 return ERR_PTR(-EINVAL);
42}
Jason Wang5990a302018-01-04 11:14:27 +080043static inline struct ptr_ring *tun_get_tx_ring(struct file *f)
Jason Wang83339c62017-05-17 12:14:41 +080044{
45 return ERR_PTR(-EINVAL);
46}
Jesper Dangaard Brouer1ffcbc82018-04-17 16:45:47 +020047static inline bool tun_is_xdp_frame(void *ptr)
Jason Wangfc72d1d2018-01-04 11:14:28 +080048{
49 return false;
50}
Maciej Żenczykowskib558b6c2020-08-18 18:07:09 -070051static inline void *tun_xdp_to_ptr(struct xdp_frame *xdp)
Jason Wangfc72d1d2018-01-04 11:14:28 +080052{
53 return NULL;
54}
Maciej Żenczykowskib558b6c2020-08-18 18:07:09 -070055static inline struct xdp_frame *tun_ptr_to_xdp(void *ptr)
Jason Wangfc72d1d2018-01-04 11:14:28 +080056{
57 return NULL;
58}
Jason Wang3a403072018-03-09 14:50:34 +080059static inline void tun_ptr_free(void *ptr)
60{
61}
Michael S. Tsirkin05c28282010-01-14 06:17:09 +000062#endif /* CONFIG_TUN */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#endif /* __IF_TUN_H */