| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-or-later */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Universal TUN/TAP device driver. |
|---|
| 3 | 4 | * 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. |
|---|
| 14 | 5 | */ |
|---|
| 15 | 6 | #ifndef __IF_TUN_H |
|---|
| 16 | 7 | #define __IF_TUN_H |
|---|
| 17 | 8 | |
|---|
| 18 | 9 | #include <uapi/linux/if_tun.h> |
|---|
| 10 | +#include <uapi/linux/virtio_net.h> |
|---|
| 19 | 11 | |
|---|
| 20 | 12 | #define TUN_XDP_FLAG 0x1UL |
|---|
| 13 | + |
|---|
| 14 | +#define TUN_MSG_UBUF 1 |
|---|
| 15 | +#define TUN_MSG_PTR 2 |
|---|
| 16 | +struct tun_msg_ctl { |
|---|
| 17 | + unsigned short type; |
|---|
| 18 | + unsigned short num; |
|---|
| 19 | + void *ptr; |
|---|
| 20 | +}; |
|---|
| 21 | + |
|---|
| 22 | +struct tun_xdp_hdr { |
|---|
| 23 | + int buflen; |
|---|
| 24 | + struct virtio_net_hdr gso; |
|---|
| 25 | +}; |
|---|
| 21 | 26 | |
|---|
| 22 | 27 | #if defined(CONFIG_TUN) || defined(CONFIG_TUN_MODULE) |
|---|
| 23 | 28 | struct socket *tun_get_socket(struct file *); |
|---|
| 24 | 29 | struct ptr_ring *tun_get_tx_ring(struct file *file); |
|---|
| 25 | | -bool tun_is_xdp_frame(void *ptr); |
|---|
| 26 | | -void *tun_xdp_to_ptr(void *ptr); |
|---|
| 27 | | -void *tun_ptr_to_xdp(void *ptr); |
|---|
| 30 | +static inline bool tun_is_xdp_frame(void *ptr) |
|---|
| 31 | +{ |
|---|
| 32 | + return (unsigned long)ptr & TUN_XDP_FLAG; |
|---|
| 33 | +} |
|---|
| 34 | +static inline void *tun_xdp_to_ptr(struct xdp_frame *xdp) |
|---|
| 35 | +{ |
|---|
| 36 | + return (void *)((unsigned long)xdp | TUN_XDP_FLAG); |
|---|
| 37 | +} |
|---|
| 38 | +static inline struct xdp_frame *tun_ptr_to_xdp(void *ptr) |
|---|
| 39 | +{ |
|---|
| 40 | + return (void *)((unsigned long)ptr & ~TUN_XDP_FLAG); |
|---|
| 41 | +} |
|---|
| 28 | 42 | void tun_ptr_free(void *ptr); |
|---|
| 29 | 43 | #else |
|---|
| 30 | 44 | #include <linux/err.h> |
|---|
| .. | .. |
|---|
| 43 | 57 | { |
|---|
| 44 | 58 | return false; |
|---|
| 45 | 59 | } |
|---|
| 46 | | -static inline void *tun_xdp_to_ptr(void *ptr) |
|---|
| 60 | +static inline void *tun_xdp_to_ptr(struct xdp_frame *xdp) |
|---|
| 47 | 61 | { |
|---|
| 48 | 62 | return NULL; |
|---|
| 49 | 63 | } |
|---|
| 50 | | -static inline void *tun_ptr_to_xdp(void *ptr) |
|---|
| 64 | +static inline struct xdp_frame *tun_ptr_to_xdp(void *ptr) |
|---|
| 51 | 65 | { |
|---|
| 52 | 66 | return NULL; |
|---|
| 53 | 67 | } |
|---|