blob: 35f7a0182377ee873fa86af8195e0698975fd2b8 [file] [log] [blame]
Damjan Marion8389fb92017-10-13 18:29:53 +02001/*
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
25typedef struct
26{
Damjan Marion2df39092017-12-04 20:03:37 +010027 u32 id;
28 u8 mac_addr_set;
29 u8 mac_addr[6];
Damjan Marion8389fb92017-10-13 18:29:53 +020030 u16 rx_ring_sz;
31 u16 tx_ring_sz;
Damjan Marion91c6ef72017-12-01 13:34:24 +010032 u8 *host_namespace;
Damjan Marion2df39092017-12-04 20:03:37 +010033 u8 *host_if_name;
34 u8 host_mac_addr[6];
Damjan Marion91c6ef72017-12-01 13:34:24 +010035 u8 *host_bridge;
36 ip4_address_t host_ip4_addr;
Milan Lenco73e7f422017-12-14 10:04:25 +010037 u8 host_ip4_prefix_len;
Damjan Marion91c6ef72017-12-01 13:34:24 +010038 ip6_address_t host_ip6_addr;
Milan Lenco73e7f422017-12-14 10:04:25 +010039 u8 host_ip6_prefix_len;
Damjan Marion8389fb92017-10-13 18:29:53 +020040 /* return */
41 u32 sw_if_index;
Damjan Marion91c6ef72017-12-01 13:34:24 +010042 int rv;
43 clib_error_t *error;
Damjan Marion8389fb92017-10-13 18:29:53 +020044} tap_create_if_args_t;
45
46/** TAP interface details struct */
47typedef struct
48{
Milan Lenco73e7f422017-12-14 10:04:25 +010049 u32 id;
Damjan Marion8389fb92017-10-13 18:29:53 +020050 u32 sw_if_index;
51 u8 dev_name[64];
Milan Lenco73e7f422017-12-14 10:04:25 +010052 u16 tx_ring_sz;
53 u16 rx_ring_sz;
54 u8 host_mac_addr[6];
55 u8 host_if_name[64];
56 u8 host_namespace[64];
57 u8 host_bridge[64];
58 u8 host_ip4_addr[4];
59 u8 host_ip4_prefix_len;
60 u8 host_ip6_addr[16];
61 u8 host_ip6_prefix_len;
Damjan Marion8389fb92017-10-13 18:29:53 +020062} tap_interface_details_t;
63
Damjan Marion2df39092017-12-04 20:03:37 +010064typedef struct
65{
66 u32 last_used_interface_id;
67 uword *dev_instance_by_interface_id;
68} tap_main_t;
69
Damjan Marion91c6ef72017-12-01 13:34:24 +010070void tap_create_if (vlib_main_t * vm, tap_create_if_args_t * args);
Damjan Marion8389fb92017-10-13 18:29:53 +020071int tap_delete_if (vlib_main_t * vm, u32 sw_if_index);
72int tap_dump_ifs (tap_interface_details_t ** out_tapids);
73
74#endif /* _VNET_DEVICES_VIRTIO_TAP_H_ */
75
76/*
77 * fd.io coding-style-patch-verification: ON
78 *
79 * Local Variables:
80 * eval: (c-set-style "gnu")
81 * End:
82 */