Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | |
| 16 | #ifndef VNET_CONTROL_H_ |
| 17 | #define VNET_CONTROL_H_ |
| 18 | |
| 19 | #include <vnet/vnet.h> |
| 20 | #include <vnet/lisp-cp/gid_dictionary.h> |
| 21 | #include <vnet/lisp-cp/lisp_types.h> |
| 22 | |
| 23 | typedef struct |
| 24 | { |
| 25 | gid_address_t src; |
| 26 | gid_address_t dst; |
| 27 | u32 src_mapping_index; |
| 28 | } pending_map_request_t; |
| 29 | |
| 30 | typedef struct |
| 31 | { |
| 32 | gid_address_t seid; |
| 33 | gid_address_t deid; |
| 34 | ip_address_t src_loc; |
| 35 | ip_address_t dst_loc; |
| 36 | } fwd_entry_t; |
| 37 | |
| 38 | typedef enum |
| 39 | { |
| 40 | IP4_MISS_PACKET, |
| 41 | IP6_MISS_PACKET |
| 42 | } miss_packet_type_t; |
| 43 | |
| 44 | typedef struct |
| 45 | { |
| 46 | /* headers */ |
| 47 | u8 data[100]; |
| 48 | u32 length; |
| 49 | miss_packet_type_t type; |
| 50 | } miss_packet_t; |
| 51 | |
| 52 | typedef struct |
| 53 | { |
Filip Tehlar | 46d4e36 | 2016-05-09 09:39:26 +0200 | [diff] [blame^] | 54 | /* LISP feature status */ |
| 55 | u8 is_enabled; |
| 56 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 57 | /* eid table */ |
| 58 | gid_dictionary_t mapping_index_by_gid; |
| 59 | |
| 60 | /* pool of mappings */ |
| 61 | mapping_t * mapping_pool; |
| 62 | |
| 63 | /* pool of locators */ |
| 64 | locator_t * locator_pool; |
| 65 | |
| 66 | /* pool of locator-sets */ |
| 67 | locator_set_t * locator_set_pool; |
| 68 | |
| 69 | /* vector of locator-set vectors composed of and indexed by locator index */ |
| 70 | u32 ** locator_to_locator_sets; |
| 71 | |
| 72 | /* hash map of locators by name */ |
| 73 | uword * locator_set_index_by_name; |
| 74 | |
| 75 | /* vector of eid index vectors supported and indexed by locator-set index */ |
| 76 | u32 ** locator_set_to_eids; |
| 77 | |
| 78 | /* vectors of indexes for local locator-sets and mappings */ |
| 79 | u32 * local_mappings_indexes; |
| 80 | u32 * local_locator_set_indexes; |
| 81 | |
| 82 | /* hash map of forwarding entries by mapping index */ |
| 83 | u32 * fwd_entry_by_mapping_index; |
| 84 | |
| 85 | /* forwarding entries pool */ |
| 86 | fwd_entry_t * fwd_entry_pool; |
| 87 | |
| 88 | /* hash map keyed by nonce of pending map-requests */ |
| 89 | uword * pending_map_requests_by_nonce; |
| 90 | |
| 91 | /* pool of pending map requests */ |
| 92 | pending_map_request_t * pending_map_requests_pool; |
| 93 | |
| 94 | /* vector of map-resolver addresses */ |
| 95 | ip_address_t * map_resolvers; |
| 96 | |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 97 | /* Lookup vrf by vni */ |
| 98 | uword * table_id_by_vni; |
| 99 | |
| 100 | /* Number of src prefixes in a vni that use an interface */ |
| 101 | uword * dp_if_refcount_by_vni; |
| 102 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 103 | /* commodity */ |
| 104 | ip4_main_t * im4; |
| 105 | ip6_main_t * im6; |
| 106 | vlib_main_t * vlib_main; |
| 107 | vnet_main_t * vnet_main; |
| 108 | } lisp_cp_main_t; |
| 109 | |
| 110 | /* lisp-gpe control plane */ |
| 111 | lisp_cp_main_t lisp_control_main; |
| 112 | |
| 113 | extern vlib_node_registration_t lisp_cp_input_node; |
| 114 | extern vlib_node_registration_t lisp_cp_lookup_node; |
| 115 | |
| 116 | clib_error_t * |
| 117 | lisp_cp_init (); |
| 118 | |
| 119 | typedef struct |
| 120 | { |
| 121 | u8 is_add; |
| 122 | union |
| 123 | { |
| 124 | u8 * name; |
| 125 | u32 index; |
| 126 | }; |
| 127 | locator_t * locators; |
| 128 | u8 local; |
| 129 | } vnet_lisp_add_del_locator_set_args_t; |
| 130 | |
| 131 | int |
| 132 | vnet_lisp_add_del_locator_set (vnet_lisp_add_del_locator_set_args_t * a, |
| 133 | u32 * ls_index); |
Andrej Kozemcak | b92feb6 | 2016-03-31 13:51:42 +0200 | [diff] [blame] | 134 | int |
| 135 | vnet_lisp_add_del_locator_set_name (vnet_lisp_add_del_locator_set_args_t * a, |
| 136 | u32 * ls_index); |
| 137 | int |
| 138 | vnet_lisp_add_del_locator (vnet_lisp_add_del_locator_set_args_t * a, |
| 139 | u32 * ls_index); |
| 140 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 141 | typedef struct |
| 142 | { |
| 143 | u8 is_add; |
| 144 | gid_address_t deid; |
| 145 | u32 locator_set_index; |
| 146 | |
| 147 | u32 ttl; |
| 148 | u8 action; |
| 149 | u8 authoritative; |
| 150 | |
| 151 | u8 local; |
| 152 | } vnet_lisp_add_del_mapping_args_t; |
| 153 | |
| 154 | int |
| 155 | vnet_lisp_add_del_mapping (vnet_lisp_add_del_mapping_args_t *a, |
| 156 | u32 * map_index); |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 157 | int |
| 158 | vnet_lisp_add_del_local_mapping (vnet_lisp_add_del_mapping_args_t * a, |
| 159 | u32 * map_index_result); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 160 | |
| 161 | typedef struct |
| 162 | { |
| 163 | u8 is_add; |
| 164 | ip_address_t address; |
| 165 | } vnet_lisp_add_del_map_resolver_args_t; |
| 166 | |
| 167 | int |
| 168 | vnet_lisp_add_del_map_resolver (vnet_lisp_add_del_map_resolver_args_t * a); |
| 169 | |
| 170 | always_inline lisp_cp_main_t * |
| 171 | vnet_lisp_cp_get_main() { |
| 172 | return &lisp_control_main; |
| 173 | } |
| 174 | |
Filip Tehlar | 46d4e36 | 2016-05-09 09:39:26 +0200 | [diff] [blame^] | 175 | clib_error_t * vnet_lisp_enable_disable (u8 is_enabled); |
| 176 | u8 vnet_lisp_enable_disable_status (void); |
| 177 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 178 | #endif /* VNET_CONTROL_H_ */ |