Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #ifndef __IF_TUN_H |
| 16 | #define __IF_TUN_H |
| 17 | |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 18 | #include <uapi/linux/if_tun.h> |
Jason Wang | fe8dd45 | 2018-09-12 11:17:06 +0800 | [diff] [blame^] | 19 | #include <uapi/linux/virtio_net.h> |
Al Viro | a3edb08 | 2007-12-22 17:52:42 +0000 | [diff] [blame] | 20 | |
Jason Wang | fc72d1d | 2018-01-04 11:14:28 +0800 | [diff] [blame] | 21 | #define TUN_XDP_FLAG 0x1UL |
| 22 | |
Jason Wang | fe8dd45 | 2018-09-12 11:17:06 +0800 | [diff] [blame^] | 23 | #define TUN_MSG_UBUF 1 |
| 24 | #define TUN_MSG_PTR 2 |
| 25 | struct tun_msg_ctl { |
| 26 | unsigned short type; |
| 27 | unsigned short num; |
| 28 | void *ptr; |
| 29 | }; |
| 30 | |
| 31 | struct tun_xdp_hdr { |
| 32 | int buflen; |
| 33 | struct virtio_net_hdr gso; |
| 34 | }; |
| 35 | |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 36 | #if defined(CONFIG_TUN) || defined(CONFIG_TUN_MODULE) |
| 37 | struct socket *tun_get_socket(struct file *); |
Jason Wang | 5990a30 | 2018-01-04 11:14:27 +0800 | [diff] [blame] | 38 | struct ptr_ring *tun_get_tx_ring(struct file *file); |
Jesper Dangaard Brouer | 1ffcbc8 | 2018-04-17 16:45:47 +0200 | [diff] [blame] | 39 | bool tun_is_xdp_frame(void *ptr); |
Jason Wang | fc72d1d | 2018-01-04 11:14:28 +0800 | [diff] [blame] | 40 | void *tun_xdp_to_ptr(void *ptr); |
| 41 | void *tun_ptr_to_xdp(void *ptr); |
Jason Wang | 3a40307 | 2018-03-09 14:50:34 +0800 | [diff] [blame] | 42 | void tun_ptr_free(void *ptr); |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 43 | #else |
| 44 | #include <linux/err.h> |
| 45 | #include <linux/errno.h> |
| 46 | struct file; |
| 47 | struct socket; |
| 48 | static inline struct socket *tun_get_socket(struct file *f) |
| 49 | { |
| 50 | return ERR_PTR(-EINVAL); |
| 51 | } |
Jason Wang | 5990a30 | 2018-01-04 11:14:27 +0800 | [diff] [blame] | 52 | static inline struct ptr_ring *tun_get_tx_ring(struct file *f) |
Jason Wang | 83339c6 | 2017-05-17 12:14:41 +0800 | [diff] [blame] | 53 | { |
| 54 | return ERR_PTR(-EINVAL); |
| 55 | } |
Jesper Dangaard Brouer | 1ffcbc8 | 2018-04-17 16:45:47 +0200 | [diff] [blame] | 56 | static inline bool tun_is_xdp_frame(void *ptr) |
Jason Wang | fc72d1d | 2018-01-04 11:14:28 +0800 | [diff] [blame] | 57 | { |
| 58 | return false; |
| 59 | } |
Stephen Rothwell | 1125b00 | 2018-01-10 15:06:14 +1100 | [diff] [blame] | 60 | static inline void *tun_xdp_to_ptr(void *ptr) |
Jason Wang | fc72d1d | 2018-01-04 11:14:28 +0800 | [diff] [blame] | 61 | { |
| 62 | return NULL; |
| 63 | } |
Stephen Rothwell | 1125b00 | 2018-01-10 15:06:14 +1100 | [diff] [blame] | 64 | static inline void *tun_ptr_to_xdp(void *ptr) |
Jason Wang | fc72d1d | 2018-01-04 11:14:28 +0800 | [diff] [blame] | 65 | { |
| 66 | return NULL; |
| 67 | } |
Jason Wang | 3a40307 | 2018-03-09 14:50:34 +0800 | [diff] [blame] | 68 | static inline void tun_ptr_free(void *ptr) |
| 69 | { |
| 70 | } |
Michael S. Tsirkin | 05c2828 | 2010-01-14 06:17:09 +0000 | [diff] [blame] | 71 | #endif /* CONFIG_TUN */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | #endif /* __IF_TUN_H */ |