blob: 45ff1d9910e4117d5285d8aabc483d1402bb2cf4 [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;
Andrew Yourtchenko754f24b2019-01-07 20:56:46 +010032 u32 tap_flags;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020033#define TAP_FLAG_GSO (1 << 0)
Damjan Marion91c6ef72017-12-01 13:34:24 +010034 u8 *host_namespace;
Damjan Marion2df39092017-12-04 20:03:37 +010035 u8 *host_if_name;
36 u8 host_mac_addr[6];
Damjan Marion91c6ef72017-12-01 13:34:24 +010037 u8 *host_bridge;
38 ip4_address_t host_ip4_addr;
Milan Lenco73e7f422017-12-14 10:04:25 +010039 u8 host_ip4_prefix_len;
Damjan Marion7866c452018-01-18 13:35:11 +010040 ip4_address_t host_ip4_gw;
41 u8 host_ip4_gw_set;
Damjan Marion91c6ef72017-12-01 13:34:24 +010042 ip6_address_t host_ip6_addr;
Milan Lenco73e7f422017-12-14 10:04:25 +010043 u8 host_ip6_prefix_len;
Damjan Marion7866c452018-01-18 13:35:11 +010044 ip6_address_t host_ip6_gw;
45 u8 host_ip6_gw_set;
Mohsin Kazmi97d54ed2019-06-10 11:20:15 +020046 u8 host_mtu_set;
47 u32 host_mtu_size;
Damjan Marion8389fb92017-10-13 18:29:53 +020048 /* return */
49 u32 sw_if_index;
Damjan Marion91c6ef72017-12-01 13:34:24 +010050 int rv;
51 clib_error_t *error;
Damjan Marion8389fb92017-10-13 18:29:53 +020052} tap_create_if_args_t;
53
54/** TAP interface details struct */
55typedef struct
56{
Milan Lenco73e7f422017-12-14 10:04:25 +010057 u32 id;
Damjan Marion8389fb92017-10-13 18:29:53 +020058 u32 sw_if_index;
Andrew Yourtchenko754f24b2019-01-07 20:56:46 +010059 u32 tap_flags;
Damjan Marion8389fb92017-10-13 18:29:53 +020060 u8 dev_name[64];
Milan Lenco73e7f422017-12-14 10:04:25 +010061 u16 tx_ring_sz;
62 u16 rx_ring_sz;
63 u8 host_mac_addr[6];
64 u8 host_if_name[64];
65 u8 host_namespace[64];
66 u8 host_bridge[64];
67 u8 host_ip4_addr[4];
68 u8 host_ip4_prefix_len;
69 u8 host_ip6_addr[16];
70 u8 host_ip6_prefix_len;
Mohsin Kazmi97d54ed2019-06-10 11:20:15 +020071 u32 host_mtu_size;
Damjan Marion8389fb92017-10-13 18:29:53 +020072} tap_interface_details_t;
73
Damjan Marion2df39092017-12-04 20:03:37 +010074typedef struct
75{
Damjan Marion07a38572018-01-21 06:44:18 -080076 /* logging */
77 vlib_log_class_t log_default;
Neale Rannscbe8d652018-04-27 04:42:47 -070078
79 /* bit-map of in-use IDs */
80 uword *tap_ids;
Mohsin Kazmi97d54ed2019-06-10 11:20:15 +020081
82 /* host mtu size, configurable through startup.conf */
83 int host_mtu_size;
Damjan Marion2df39092017-12-04 20:03:37 +010084} tap_main_t;
85
Damjan Marion91c6ef72017-12-01 13:34:24 +010086void tap_create_if (vlib_main_t * vm, tap_create_if_args_t * args);
Damjan Marion8389fb92017-10-13 18:29:53 +020087int tap_delete_if (vlib_main_t * vm, u32 sw_if_index);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020088int tap_gso_enable_disable (vlib_main_t * vm, u32 sw_if_index,
89 int enable_disable);
Damjan Marion8389fb92017-10-13 18:29:53 +020090int tap_dump_ifs (tap_interface_details_t ** out_tapids);
91
92#endif /* _VNET_DEVICES_VIRTIO_TAP_H_ */
93
94/*
95 * fd.io coding-style-patch-verification: ON
96 *
97 * Local Variables:
98 * eval: (c-set-style "gnu")
99 * End:
100 */