Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 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 | { |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 27 | u32 id; |
| 28 | u8 mac_addr_set; |
| 29 | u8 mac_addr[6]; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 30 | u16 rx_ring_sz; |
| 31 | u16 tx_ring_sz; |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 32 | u8 *host_namespace; |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 33 | u8 *host_if_name; |
| 34 | u8 host_mac_addr[6]; |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 35 | u8 *host_bridge; |
| 36 | ip4_address_t host_ip4_addr; |
Milan Lenco | 73e7f42 | 2017-12-14 10:04:25 +0100 | [diff] [blame] | 37 | u8 host_ip4_prefix_len; |
Damjan Marion | 7866c45 | 2018-01-18 13:35:11 +0100 | [diff] [blame^] | 38 | ip4_address_t host_ip4_gw; |
| 39 | u8 host_ip4_gw_set; |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 40 | ip6_address_t host_ip6_addr; |
Milan Lenco | 73e7f42 | 2017-12-14 10:04:25 +0100 | [diff] [blame] | 41 | u8 host_ip6_prefix_len; |
Damjan Marion | 7866c45 | 2018-01-18 13:35:11 +0100 | [diff] [blame^] | 42 | ip6_address_t host_ip6_gw; |
| 43 | u8 host_ip6_gw_set; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 44 | /* return */ |
| 45 | u32 sw_if_index; |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 46 | int rv; |
| 47 | clib_error_t *error; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 48 | } tap_create_if_args_t; |
| 49 | |
| 50 | /** TAP interface details struct */ |
| 51 | typedef struct |
| 52 | { |
Milan Lenco | 73e7f42 | 2017-12-14 10:04:25 +0100 | [diff] [blame] | 53 | u32 id; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 54 | u32 sw_if_index; |
| 55 | u8 dev_name[64]; |
Milan Lenco | 73e7f42 | 2017-12-14 10:04:25 +0100 | [diff] [blame] | 56 | u16 tx_ring_sz; |
| 57 | u16 rx_ring_sz; |
| 58 | u8 host_mac_addr[6]; |
| 59 | u8 host_if_name[64]; |
| 60 | u8 host_namespace[64]; |
| 61 | u8 host_bridge[64]; |
| 62 | u8 host_ip4_addr[4]; |
| 63 | u8 host_ip4_prefix_len; |
| 64 | u8 host_ip6_addr[16]; |
| 65 | u8 host_ip6_prefix_len; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 66 | } tap_interface_details_t; |
| 67 | |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 68 | typedef struct |
| 69 | { |
| 70 | u32 last_used_interface_id; |
| 71 | uword *dev_instance_by_interface_id; |
| 72 | } tap_main_t; |
| 73 | |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 74 | void tap_create_if (vlib_main_t * vm, tap_create_if_args_t * args); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 75 | int tap_delete_if (vlib_main_t * vm, u32 sw_if_index); |
| 76 | int tap_dump_ifs (tap_interface_details_t ** out_tapids); |
| 77 | |
| 78 | #endif /* _VNET_DEVICES_VIRTIO_TAP_H_ */ |
| 79 | |
| 80 | /* |
| 81 | * fd.io coding-style-patch-verification: ON |
| 82 | * |
| 83 | * Local Variables: |
| 84 | * eval: (c-set-style "gnu") |
| 85 | * End: |
| 86 | */ |