blob: c5b0a75a78121935e3ab2874c03a1b9bc123f1cf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Universal TUN/TAP device driver.
3 * Copyright (C) 1999-2000 Maxim Krasnyansky <max_mk@yahoo.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#ifndef __IF_TUN_H
16#define __IF_TUN_H
17
David Howells607ca462012-10-13 10:46:48 +010018#include <uapi/linux/if_tun.h>
Al Viroa3edb082007-12-22 17:52:42 +000019
Jason Wangfc72d1d2018-01-04 11:14:28 +080020#define TUN_XDP_FLAG 0x1UL
21
Michael S. Tsirkin05c28282010-01-14 06:17:09 +000022#if defined(CONFIG_TUN) || defined(CONFIG_TUN_MODULE)
23struct socket *tun_get_socket(struct file *);
Jason Wang5990a302018-01-04 11:14:27 +080024struct ptr_ring *tun_get_tx_ring(struct file *file);
Jason Wangfc72d1d2018-01-04 11:14:28 +080025bool tun_is_xdp_buff(void *ptr);
26void *tun_xdp_to_ptr(void *ptr);
27void *tun_ptr_to_xdp(void *ptr);
Michael S. Tsirkin05c28282010-01-14 06:17:09 +000028#else
29#include <linux/err.h>
30#include <linux/errno.h>
31struct file;
32struct socket;
33static inline struct socket *tun_get_socket(struct file *f)
34{
35 return ERR_PTR(-EINVAL);
36}
Jason Wang5990a302018-01-04 11:14:27 +080037static inline struct ptr_ring *tun_get_tx_ring(struct file *f)
Jason Wang83339c62017-05-17 12:14:41 +080038{
39 return ERR_PTR(-EINVAL);
40}
Jason Wangfc72d1d2018-01-04 11:14:28 +080041static inline bool tun_is_xdp_buff(void *ptr)
42{
43 return false;
44}
Stephen Rothwell1125b002018-01-10 15:06:14 +110045static inline void *tun_xdp_to_ptr(void *ptr)
Jason Wangfc72d1d2018-01-04 11:14:28 +080046{
47 return NULL;
48}
Stephen Rothwell1125b002018-01-10 15:06:14 +110049static inline void *tun_ptr_to_xdp(void *ptr)
Jason Wangfc72d1d2018-01-04 11:14:28 +080050{
51 return NULL;
52}
Michael S. Tsirkin05c28282010-01-14 06:17:09 +000053#endif /* CONFIG_TUN */
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#endif /* __IF_TUN_H */