tapv2: add "tap_flags" field to the TAPv2 interface API
[vpp.git] / src / vnet / devices / tap / tap.h
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   u8 *host_namespace;
34   u8 *host_if_name;
35   u8 host_mac_addr[6];
36   u8 *host_bridge;
37   ip4_address_t host_ip4_addr;
38   u8 host_ip4_prefix_len;
39   ip4_address_t host_ip4_gw;
40   u8 host_ip4_gw_set;
41   ip6_address_t host_ip6_addr;
42   u8 host_ip6_prefix_len;
43   ip6_address_t host_ip6_gw;
44   u8 host_ip6_gw_set;
45   /* return */
46   u32 sw_if_index;
47   int rv;
48   clib_error_t *error;
49 } tap_create_if_args_t;
50
51 /** TAP interface details struct */
52 typedef struct
53 {
54   u32 id;
55   u32 sw_if_index;
56   u32 tap_flags;
57   u8 dev_name[64];
58   u16 tx_ring_sz;
59   u16 rx_ring_sz;
60   u8 host_mac_addr[6];
61   u8 host_if_name[64];
62   u8 host_namespace[64];
63   u8 host_bridge[64];
64   u8 host_ip4_addr[4];
65   u8 host_ip4_prefix_len;
66   u8 host_ip6_addr[16];
67   u8 host_ip6_prefix_len;
68 } tap_interface_details_t;
69
70 typedef struct
71 {
72   /* logging */
73   vlib_log_class_t log_default;
74
75   /* bit-map of in-use IDs */
76   uword *tap_ids;
77 } tap_main_t;
78
79 void tap_create_if (vlib_main_t * vm, tap_create_if_args_t * args);
80 int tap_delete_if (vlib_main_t * vm, u32 sw_if_index);
81 int tap_dump_ifs (tap_interface_details_t ** out_tapids);
82
83 #endif /* _VNET_DEVICES_VIRTIO_TAP_H_ */
84
85 /*
86  * fd.io coding-style-patch-verification: ON
87  *
88  * Local Variables:
89  * eval: (c-set-style "gnu")
90  * End:
91  */