Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 2 | * Copyright (c) 2016 Cisco and/or its affiliates. |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 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 | */ |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 15 | /** |
| 16 | * @file |
| 17 | * @brief LISP-GPE definitions. |
| 18 | */ |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 19 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 20 | #ifndef included_vnet_lisp_gpe_h |
| 21 | #define included_vnet_lisp_gpe_h |
| 22 | |
| 23 | #include <vppinfra/error.h> |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 24 | #include <vppinfra/mhash.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 25 | #include <vnet/vnet.h> |
| 26 | #include <vnet/ip/ip.h> |
| 27 | #include <vnet/l2/l2_input.h> |
| 28 | #include <vnet/ethernet/ethernet.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 29 | #include <vnet/ip/ip4_packet.h> |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 30 | #include <vnet/udp/udp.h> |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 31 | #include <vnet/lisp-cp/lisp_types.h> |
| 32 | #include <vnet/lisp-gpe/lisp_gpe_packet.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 33 | #include <vnet/adj/adj_types.h> |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 34 | #include <vppinfra/bihash_24_8.h> |
| 35 | #include <vppinfra/bihash_template.h> |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 36 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 37 | /** IP4-UDP-LISP encap header */ |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 38 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 39 | typedef CLIB_PACKED (struct { |
| 40 | ip4_header_t ip4; /* 20 bytes */ |
| 41 | udp_header_t udp; /* 8 bytes */ |
| 42 | lisp_gpe_header_t lisp; /* 8 bytes */ |
| 43 | }) ip4_udp_lisp_gpe_header_t; |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 44 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 45 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 46 | /** IP6-UDP-LISP encap header */ |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 47 | /* *INDENT-OFF* */ |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 48 | typedef CLIB_PACKED (struct { |
| 49 | ip6_header_t ip6; /* 40 bytes */ |
| 50 | udp_header_t udp; /* 8 bytes */ |
| 51 | lisp_gpe_header_t lisp; /* 8 bytes */ |
| 52 | }) ip6_udp_lisp_gpe_header_t; |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 53 | /* *INDENT-ON* */ |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 54 | |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 55 | #define foreach_lisp_gpe_ip_input_next \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 56 | _(DROP, "error-drop") \ |
| 57 | _(IP4_INPUT, "ip4-input") \ |
| 58 | _(IP6_INPUT, "ip6-input") \ |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 59 | _(L2_INPUT, "l2-input") |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 60 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 61 | /** Enum of possible next nodes post LISP-GPE decap */ |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 62 | typedef enum |
| 63 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 64 | #define _(s,n) LISP_GPE_INPUT_NEXT_##s, |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 65 | foreach_lisp_gpe_ip_input_next |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 66 | #undef _ |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 67 | LISP_GPE_INPUT_N_NEXT, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 68 | } lisp_gpe_input_next_t; |
| 69 | |
Florin Coras | 263440e | 2017-02-22 23:38:08 -0800 | [diff] [blame] | 70 | /* Arc to nsh-input added only if nsh-input exists */ |
| 71 | #define LISP_GPE_INPUT_NEXT_NSH_INPUT 4 |
| 72 | |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 73 | typedef enum |
| 74 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 75 | #define lisp_gpe_error(n,s) LISP_GPE_ERROR_##n, |
| 76 | #include <vnet/lisp-gpe/lisp_gpe_error.def> |
| 77 | #undef lisp_gpe_error |
| 78 | LISP_GPE_N_ERROR, |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 79 | } lisp_gpe_error_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 80 | |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 81 | typedef struct tunnel_lookup |
| 82 | { |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 83 | /** Lookup lisp-gpe interfaces by dp table (eg. vrf/bridge index) */ |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 84 | uword *hw_if_index_by_dp_table; |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 85 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 86 | /** lookup decap tunnel termination sw_if_index by vni and vice versa */ |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 87 | uword *sw_if_index_by_vni; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 88 | |
| 89 | // FIXME - Need this? |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 90 | uword *vni_by_sw_if_index; |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 91 | } tunnel_lookup_t; |
| 92 | |
Filip Tehlar | 4868ff6 | 2017-03-09 16:48:39 +0100 | [diff] [blame] | 93 | typedef struct |
| 94 | { |
| 95 | u32 fwd_entry_index; |
| 96 | u32 tunnel_index; |
| 97 | } lisp_stats_key_t; |
| 98 | |
| 99 | typedef struct |
| 100 | { |
| 101 | u32 pkt_count; |
| 102 | u32 bytes; |
| 103 | } lisp_stats_t; |
| 104 | |
| 105 | typedef struct |
| 106 | { |
| 107 | u32 vni; |
| 108 | dp_address_t deid; |
| 109 | dp_address_t seid; |
| 110 | ip_address_t loc_rloc; |
| 111 | ip_address_t rmt_rloc; |
| 112 | |
| 113 | lisp_stats_t stats; |
| 114 | } lisp_api_stats_t; |
Filip Tehlar | 3e7b5693 | 2017-02-21 18:28:34 +0100 | [diff] [blame] | 115 | |
| 116 | typedef enum gpe_encap_mode_e |
| 117 | { |
| 118 | GPE_ENCAP_LISP, |
| 119 | GPE_ENCAP_VXLAN, |
| 120 | GPE_ENCAP_COUNT |
| 121 | } gpe_encap_mode_t; |
| 122 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 123 | /** LISP-GPE global state*/ |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 124 | typedef struct lisp_gpe_main |
| 125 | { |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 126 | /** |
| 127 | * @brief DB of all forwarding entries. The Key is:{l-EID,r-EID,vni} |
| 128 | * where the EID encodes L2 or L3 |
| 129 | */ |
| 130 | uword *lisp_gpe_fwd_entries; |
| 131 | |
| 132 | /** |
| 133 | * @brief A Pool of all LISP forwarding entries |
| 134 | */ |
| 135 | struct lisp_gpe_fwd_entry_t_ *lisp_fwd_entry_pool; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 136 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 137 | /** Free vlib hw_if_indices */ |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 138 | u32 *free_tunnel_hw_if_indices; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 139 | |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 140 | u8 is_en; |
| 141 | |
| 142 | /* L3 data structures |
| 143 | * ================== */ |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 144 | tunnel_lookup_t l3_ifaces; |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 145 | |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 146 | /* L2 data structures |
| 147 | * ================== */ |
| 148 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 149 | /** L2 LISP FIB */ |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 150 | BVT (clib_bihash) l2_fib; |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 151 | |
| 152 | tunnel_lookup_t l2_ifaces; |
| 153 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 154 | /** Load-balance for a miss in the table */ |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 155 | dpo_id_t l2_lb_cp_lkup; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 156 | |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 157 | /* NSH data structures |
| 158 | * ================== */ |
| 159 | |
| 160 | BVT (clib_bihash) nsh_fib; |
| 161 | |
| 162 | tunnel_lookup_t nsh_ifaces; |
| 163 | |
| 164 | const dpo_id_t *nsh_cp_lkup; |
| 165 | |
Filip Tehlar | 3e7b5693 | 2017-02-21 18:28:34 +0100 | [diff] [blame] | 166 | gpe_encap_mode_t encap_mode; |
| 167 | |
Filip Tehlar | 4868ff6 | 2017-03-09 16:48:39 +0100 | [diff] [blame] | 168 | lisp_stats_t *lisp_stats_pool; |
| 169 | uword *lisp_stats_index_by_key; |
| 170 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 171 | /** convenience */ |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 172 | vlib_main_t *vlib_main; |
| 173 | vnet_main_t *vnet_main; |
| 174 | ip4_main_t *im4; |
| 175 | ip6_main_t *im6; |
| 176 | ip_lookup_main_t *lm4; |
| 177 | ip_lookup_main_t *lm6; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 178 | } lisp_gpe_main_t; |
| 179 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 180 | /** LISP-GPE global state*/ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 181 | lisp_gpe_main_t lisp_gpe_main; |
| 182 | |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 183 | always_inline lisp_gpe_main_t * |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 184 | vnet_lisp_gpe_get_main () |
| 185 | { |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 186 | return &lisp_gpe_main; |
| 187 | } |
| 188 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 189 | |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 190 | extern vlib_node_registration_t lisp_gpe_ip4_input_node; |
| 191 | extern vlib_node_registration_t lisp_gpe_ip6_input_node; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 192 | extern vnet_hw_interface_class_t lisp_gpe_hw_class; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 193 | |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 194 | u8 *format_lisp_gpe_header_with_length (u8 * s, va_list * args); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 195 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 196 | /** Read LISP-GPE status */ |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 197 | u8 vnet_lisp_gpe_enable_disable_status (void); |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 198 | |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 199 | u32 |
| 200 | lisp_gpe_l3_iface_find_or_create (lisp_gpe_main_t * lgm, |
| 201 | u32 overlay_table_id, u32 vni); |
| 202 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 203 | /** Add/del LISP-GPE interface. */ |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 204 | extern void lisp_gpe_del_l2_iface (lisp_gpe_main_t * lgm, u32 vni, u32 bd_id); |
| 205 | extern u32 lisp_gpe_add_l2_iface (lisp_gpe_main_t * lgm, u32 vni, u32 bd_id); |
| 206 | extern void lisp_gpe_del_l3_iface (lisp_gpe_main_t * lgm, u32 vni, u32 bd_id); |
| 207 | extern u32 lisp_gpe_add_l3_iface (lisp_gpe_main_t * lgm, u32 vni, u32 bd_id); |
| 208 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 209 | |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 210 | typedef struct |
| 211 | { |
| 212 | u8 is_en; |
| 213 | } vnet_lisp_gpe_enable_disable_args_t; |
| 214 | |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 215 | clib_error_t |
| 216 | * vnet_lisp_gpe_enable_disable (vnet_lisp_gpe_enable_disable_args_t * a); |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 217 | |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 218 | typedef enum |
| 219 | { |
| 220 | NO_ACTION, |
| 221 | FORWARD_NATIVE, |
| 222 | SEND_MAP_REQUEST, |
| 223 | DROP |
| 224 | } negative_fwd_actions_e; |
| 225 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 226 | /** */ |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 227 | typedef struct |
| 228 | { |
Filip Tehlar | ed6b52b | 2017-03-22 09:02:33 +0100 | [diff] [blame^] | 229 | u8 is_src_dst; |
| 230 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 231 | u8 is_add; |
Florin Coras | ed09a05 | 2016-05-06 14:22:40 +0200 | [diff] [blame] | 232 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 233 | /** type of mapping */ |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 234 | u8 is_negative; |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 235 | |
| 236 | /** action for negative mappings */ |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 237 | negative_fwd_actions_e action; |
Florin Coras | ed09a05 | 2016-05-06 14:22:40 +0200 | [diff] [blame] | 238 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 239 | /** local eid */ |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 240 | gid_address_t lcl_eid; |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 241 | |
| 242 | /** remote eid */ |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 243 | gid_address_t rmt_eid; |
Florin Coras | ed09a05 | 2016-05-06 14:22:40 +0200 | [diff] [blame] | 244 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 245 | /** vector of locator pairs */ |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 246 | locator_pair_t *locator_pairs; |
Florin Coras | ed09a05 | 2016-05-06 14:22:40 +0200 | [diff] [blame] | 247 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 248 | /** FIB index to lookup remote locator at encap */ |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 249 | u32 encap_fib_index; |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 250 | |
| 251 | /** FIB index to lookup inner IP at decap */ |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 252 | u32 decap_fib_index; |
Florin Coras | ed09a05 | 2016-05-06 14:22:40 +0200 | [diff] [blame] | 253 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 254 | /* TODO remove */ |
| 255 | u32 decap_next_index; |
Florin Coras | ed09a05 | 2016-05-06 14:22:40 +0200 | [diff] [blame] | 256 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 257 | /** VNI/tenant id in HOST byte order */ |
Florin Coras | ed09a05 | 2016-05-06 14:22:40 +0200 | [diff] [blame] | 258 | u32 vni; |
| 259 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 260 | /** vrf or bd where fwd entry should be inserted */ |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 261 | union |
| 262 | { |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 263 | /** table (vrf) id */ |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 264 | u32 table_id; |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 265 | |
| 266 | /** bridge domain id */ |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 267 | u16 bd_id; |
Florin Coras | 429e795 | 2016-08-02 02:31:03 +0200 | [diff] [blame] | 268 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 269 | /** generic access */ |
Florin Coras | 429e795 | 2016-08-02 02:31:03 +0200 | [diff] [blame] | 270 | u32 dp_table; |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 271 | }; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 272 | } vnet_lisp_gpe_add_del_fwd_entry_args_t; |
| 273 | |
Filip Tehlar | 5fae99c | 2017-01-18 12:57:37 +0100 | [diff] [blame] | 274 | typedef struct |
| 275 | { |
| 276 | u32 fwd_entry_index; |
| 277 | u32 dp_table; |
| 278 | u32 vni; |
| 279 | dp_address_t leid; |
| 280 | dp_address_t reid; |
| 281 | } lisp_api_gpe_fwd_entry_t; |
| 282 | |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 283 | #define foreach_lgpe_ip4_lookup_next \ |
| 284 | _(DROP, "error-drop") \ |
| 285 | _(LISP_CP_LOOKUP, "lisp-cp-lookup") |
| 286 | |
| 287 | typedef enum lgpe_ip4_lookup_next |
| 288 | { |
| 289 | #define _(sym,str) LGPE_IP4_LOOKUP_NEXT_##sym, |
| 290 | foreach_lgpe_ip4_lookup_next |
| 291 | #undef _ |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 292 | LGPE_IP4_LOOKUP_N_NEXT, |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 293 | } lgpe_ip4_lookup_next_t; |
| 294 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 295 | #define foreach_lgpe_ip6_lookup_next \ |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 296 | _(DROP, "error-drop") \ |
| 297 | _(LISP_CP_LOOKUP, "lisp-cp-lookup") |
| 298 | |
| 299 | typedef enum lgpe_ip6_lookup_next |
| 300 | { |
| 301 | #define _(sym,str) LGPE_IP6_LOOKUP_NEXT_##sym, |
| 302 | foreach_lgpe_ip6_lookup_next |
| 303 | #undef _ |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 304 | LGPE_IP6_LOOKUP_N_NEXT, |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 305 | } lgpe_ip6_lookup_next_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 306 | |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 307 | u8 *format_vnet_lisp_gpe_status (u8 * s, va_list * args); |
Filip Tehlar | 46d4e36 | 2016-05-09 09:39:26 +0200 | [diff] [blame] | 308 | |
Filip Tehlar | 5fae99c | 2017-01-18 12:57:37 +0100 | [diff] [blame] | 309 | lisp_api_gpe_fwd_entry_t *vnet_lisp_gpe_fwd_entries_get_by_vni (u32 vni); |
Filip Tehlar | 3e7b5693 | 2017-02-21 18:28:34 +0100 | [diff] [blame] | 310 | gpe_encap_mode_t vnet_gpe_get_encap_mode (void); |
| 311 | int vnet_gpe_set_encap_mode (gpe_encap_mode_t mode); |
Filip Tehlar | 5fae99c | 2017-01-18 12:57:37 +0100 | [diff] [blame] | 312 | |
Filip Tehlar | 4868ff6 | 2017-03-09 16:48:39 +0100 | [diff] [blame] | 313 | u8 vnet_lisp_stats_enable_disable_state (void); |
| 314 | vnet_api_error_t vnet_lisp_stats_enable_disable (u8 enable); |
| 315 | lisp_api_stats_t *vnet_lisp_get_stats (void); |
| 316 | void vnet_lisp_flush_stats (void); |
| 317 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 318 | #endif /* included_vnet_lisp_gpe_h */ |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 319 | |
| 320 | /* |
| 321 | * fd.io coding-style-patch-verification: ON |
| 322 | * |
| 323 | * Local Variables: |
| 324 | * eval: (c-set-style "gnu") |
| 325 | * End: |
| 326 | */ |