FD.io VPP
v19.04-6-g6f05f72
Vector Packet Processing
Main Page
Related Pages
Modules
Namespaces
Data Structures
Source
Files
Symbols
tap.h
Go to the documentation of this file.
1
/*
2
*------------------------------------------------------------------
3
* Copyright (c) 2017 Cisco and/or its affiliates.
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
6
* You may obtain a copy of the License at:
7
*
8
* http://www.apache.org/licenses/LICENSE-2.0
9
*
10
* Unless required by applicable law or agreed to in writing, software
11
* distributed under the License is distributed on an "AS IS" BASIS,
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
* See the License for the specific language governing permissions and
14
* limitations under the License.
15
*------------------------------------------------------------------
16
*/
17
18
#ifndef _VNET_DEVICES_VIRTIO_TAP_H_
19
#define _VNET_DEVICES_VIRTIO_TAP_H_
20
21
#ifndef MIN
22
#define MIN(x,y) (((x)<(y))?(x):(y))
23
#endif
24
25
typedef
struct
26
{
27
u32
id
;
28
u8
mac_addr_set
;
29
u8
mac_addr[6];
30
u16
rx_ring_sz
;
31
u16
tx_ring_sz
;
32
u32
tap_flags
;
33
#define TAP_FLAG_GSO (1 << 0)
34
u8
*
host_namespace
;
35
u8
*
host_if_name
;
36
u8
host_mac_addr[6];
37
u8
*
host_bridge
;
38
ip4_address_t
host_ip4_addr
;
39
u8
host_ip4_prefix_len
;
40
ip4_address_t
host_ip4_gw
;
41
u8
host_ip4_gw_set
;
42
ip6_address_t
host_ip6_addr
;
43
u8
host_ip6_prefix_len
;
44
ip6_address_t
host_ip6_gw
;
45
u8
host_ip6_gw_set
;
46
/* return */
47
u32
sw_if_index
;
48
int
rv
;
49
clib_error_t
*
error
;
50
}
tap_create_if_args_t
;
51
52
/** TAP interface details struct */
53
typedef
struct
54
{
55
u32
id
;
56
u32
sw_if_index
;
57
u32
tap_flags
;
58
u8
dev_name[64];
59
u16
tx_ring_sz
;
60
u16
rx_ring_sz
;
61
u8
host_mac_addr[6];
62
u8
host_if_name[64];
63
u8
host_namespace[64];
64
u8
host_bridge[64];
65
u8
host_ip4_addr[4];
66
u8
host_ip4_prefix_len
;
67
u8
host_ip6_addr[16];
68
u8
host_ip6_prefix_len
;
69
}
tap_interface_details_t
;
70
71
typedef
struct
72
{
73
/* logging */
74
vlib_log_class_t
log_default
;
75
76
/* bit-map of in-use IDs */
77
uword
*
tap_ids
;
78
}
tap_main_t
;
79
80
void
tap_create_if
(
vlib_main_t
*
vm
,
tap_create_if_args_t
* args);
81
int
tap_delete_if
(
vlib_main_t
*
vm
,
u32
sw_if_index
);
82
int
tap_gso_enable_disable
(
vlib_main_t
*
vm
,
u32
sw_if_index
,
83
int
enable_disable);
84
int
tap_dump_ifs
(
tap_interface_details_t
** out_tapids);
85
86
#endif
/* _VNET_DEVICES_VIRTIO_TAP_H_ */
87
88
/*
89
* fd.io coding-style-patch-verification: ON
90
*
91
* Local Variables:
92
* eval: (c-set-style "gnu")
93
* End:
94
*/
sw_if_index
u32 sw_if_index
Definition:
ipsec_gre.api:37
tap_interface_details_t::tap_flags
u32 tap_flags
Definition:
tap.h:57
tap_main_t::tap_ids
uword * tap_ids
Definition:
tap.h:77
tap_main_t::log_default
vlib_log_class_t log_default
Definition:
tap.h:74
tap_create_if_args_t::host_ip4_addr
ip4_address_t host_ip4_addr
Definition:
tap.h:38
tap_create_if_args_t::tap_flags
u32 tap_flags
Definition:
tap.h:32
tap_interface_details_t::host_ip6_prefix_len
u8 host_ip6_prefix_len
Definition:
tap.h:68
tap_create_if_args_t::rx_ring_sz
u16 rx_ring_sz
Definition:
tap.h:30
tap_create_if_args_t::host_ip6_prefix_len
u8 host_ip6_prefix_len
Definition:
tap.h:43
tap_create_if_args_t::host_ip4_gw_set
u8 host_ip4_gw_set
Definition:
tap.h:41
u8
unsigned char u8
Definition:
types.h:56
vlib_log_class_t
u32 vlib_log_class_t
Definition:
vlib.h:50
tap_create_if
void tap_create_if(vlib_main_t *vm, tap_create_if_args_t *args)
Definition:
tap.c:81
tap_interface_details_t::host_ip4_prefix_len
u8 host_ip4_prefix_len
Definition:
tap.h:66
tap_delete_if
int tap_delete_if(vlib_main_t *vm, u32 sw_if_index)
Definition:
tap.c:444
u32
unsigned int u32
Definition:
types.h:88
tap_create_if_args_t::sw_if_index
u32 sw_if_index
Definition:
tap.h:47
ip4_address_t
Definition:
ip4_packet.h:49
tap_dump_ifs
int tap_dump_ifs(tap_interface_details_t **out_tapids)
Definition:
tap.c:541
tap_create_if_args_t::tx_ring_sz
u16 tx_ring_sz
Definition:
tap.h:31
u16
unsigned short u16
Definition:
types.h:57
tap_create_if_args_t::rv
int rv
Definition:
tap.h:48
tap_create_if_args_t::mac_addr_set
u8 mac_addr_set
Definition:
tap.h:28
tap_create_if_args_t::host_ip4_gw
ip4_address_t host_ip4_gw
Definition:
tap.h:40
tap_create_if_args_t::host_ip6_addr
ip6_address_t host_ip6_addr
Definition:
tap.h:42
tap_create_if_args_t::host_ip4_prefix_len
u8 host_ip4_prefix_len
Definition:
tap.h:39
vm
vlib_main_t * vm
Definition:
buffer.c:312
tap_gso_enable_disable
int tap_gso_enable_disable(vlib_main_t *vm, u32 sw_if_index, int enable_disable)
Definition:
tap.c:495
tap_create_if_args_t::host_bridge
u8 * host_bridge
Definition:
tap.h:37
tap_create_if_args_t::host_ip6_gw
ip6_address_t host_ip6_gw
Definition:
tap.h:44
tap_create_if_args_t::host_if_name
u8 * host_if_name
Definition:
tap.h:35
tap_interface_details_t::id
u32 id
Definition:
tap.h:55
tap_create_if_args_t::host_ip6_gw_set
u8 host_ip6_gw_set
Definition:
tap.h:45
clib_error_t
Definition:
clib_error.h:21
vlib_main_t
Definition:
main.h:68
uword
u64 uword
Definition:
types.h:112
tap_main_t
Definition:
tap.h:71
tap_create_if_args_t::error
clib_error_t * error
Definition:
tap.h:49
tap_interface_details_t
TAP interface details struct.
Definition:
tap.h:53
tap_interface_details_t::tx_ring_sz
u16 tx_ring_sz
Definition:
tap.h:59
tap_interface_details_t::rx_ring_sz
u16 rx_ring_sz
Definition:
tap.h:60
tap_create_if_args_t::host_namespace
u8 * host_namespace
Definition:
tap.h:34
tap_create_if_args_t::id
u32 id
Definition:
tap.h:27
tap_interface_details_t::sw_if_index
u32 sw_if_index
Definition:
tap.h:56
tap_create_if_args_t
Definition:
tap.h:25
ip6_address_t
Definition:
ip6_packet.h:46
src
vnet
devices
tap
tap.h
Generated on Fri May 3 2019 17:29:58 for FD.io VPP by
1.8.11