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 Common utility functions for IPv4, IPv6 and L2 LISP-GPE tunnels. |
| 18 | * |
| 19 | */ |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 20 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 21 | #include <vnet/lisp-gpe/lisp_gpe.h> |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 22 | #include <vnet/lisp-gpe/lisp_gpe_fwd_entry.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 23 | #include <vnet/lisp-gpe/lisp_gpe_adjacency.h> |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 24 | #include <vnet/lisp-gpe/lisp_gpe_tenant.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 25 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 26 | /** LISP-GPE global state */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 27 | lisp_gpe_main_t lisp_gpe_main; |
| 28 | |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 29 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 30 | /** CLI command to add/del forwarding entry. */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 31 | static clib_error_t * |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 32 | lisp_gpe_add_del_fwd_entry_command_fn (vlib_main_t * vm, |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 33 | unformat_input_t * input, |
| 34 | vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 35 | { |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 36 | unformat_input_t _line_input, *line_input = &_line_input; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 37 | u8 is_add = 1; |
Florin Coras | bb5c22f | 2016-08-02 02:31:03 +0200 | [diff] [blame] | 38 | ip_address_t lloc, rloc; |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 39 | clib_error_t *error = 0; |
| 40 | gid_address_t _reid, *reid = &_reid, _leid, *leid = &_leid; |
Florin Coras | 03c4f99 | 2016-07-19 15:27:58 +0200 | [diff] [blame] | 41 | u8 reid_set = 0, leid_set = 0, is_negative = 0, vrf_set = 0, vni_set = 0; |
Florin Coras | bb5c22f | 2016-08-02 02:31:03 +0200 | [diff] [blame] | 42 | u32 vni, vrf, action = ~0, p, w; |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 43 | locator_pair_t pair, *pairs = 0; |
Andrej Kozemcak | 8ebb2a1 | 2016-06-07 12:25:20 +0200 | [diff] [blame] | 44 | int rv; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 45 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 46 | /* Get a line of input. */ |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 47 | if (!unformat_user (input, unformat_line_input, line_input)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 48 | return 0; |
| 49 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 50 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 51 | { |
| 52 | if (unformat (line_input, "del")) |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 53 | is_add = 0; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 54 | else if (unformat (line_input, "add")) |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 55 | is_add = 1; |
| 56 | else if (unformat (line_input, "leid %U", unformat_gid_address, leid)) |
| 57 | { |
| 58 | leid_set = 1; |
| 59 | } |
| 60 | else if (unformat (line_input, "reid %U", unformat_gid_address, reid)) |
| 61 | { |
| 62 | reid_set = 1; |
| 63 | } |
Florin Coras | 03c4f99 | 2016-07-19 15:27:58 +0200 | [diff] [blame] | 64 | else if (unformat (line_input, "vni %u", &vni)) |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 65 | { |
| 66 | gid_address_vni (leid) = vni; |
| 67 | gid_address_vni (reid) = vni; |
| 68 | vni_set = 1; |
| 69 | } |
Florin Coras | 03c4f99 | 2016-07-19 15:27:58 +0200 | [diff] [blame] | 70 | else if (unformat (line_input, "vrf %u", &vrf)) |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 71 | { |
| 72 | vrf_set = 1; |
| 73 | } |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 74 | else if (unformat (line_input, "bd %u", &vrf)) |
| 75 | { |
| 76 | vrf_set = 1; |
| 77 | } |
Florin Coras | 03c4f99 | 2016-07-19 15:27:58 +0200 | [diff] [blame] | 78 | else if (unformat (line_input, "negative action %U", |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 79 | unformat_negative_mapping_action, &action)) |
| 80 | { |
| 81 | is_negative = 1; |
| 82 | } |
Florin Coras | bb5c22f | 2016-08-02 02:31:03 +0200 | [diff] [blame] | 83 | else if (unformat (line_input, "loc-pair %U %U p %d w %d", |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 84 | unformat_ip_address, &lloc, |
| 85 | unformat_ip_address, &rloc, &p, &w)) |
| 86 | { |
| 87 | pair.lcl_loc = lloc; |
| 88 | pair.rmt_loc = rloc; |
| 89 | pair.priority = p; |
| 90 | pair.weight = w; |
| 91 | vec_add1 (pairs, pair); |
| 92 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 93 | else |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 94 | { |
| 95 | error = unformat_parse_error (line_input); |
| 96 | goto done; |
| 97 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 98 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 99 | unformat_free (line_input); |
| 100 | |
Florin Coras | 03c4f99 | 2016-07-19 15:27:58 +0200 | [diff] [blame] | 101 | if (!vni_set || !vrf_set) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 102 | { |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 103 | error = clib_error_return (0, "vni and vrf must be set!"); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 104 | goto done; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 105 | } |
| 106 | |
Florin Coras | 03c4f99 | 2016-07-19 15:27:58 +0200 | [diff] [blame] | 107 | if (!reid_set) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 108 | { |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 109 | error = clib_error_return (0, "remote eid must be set!"); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 110 | goto done; |
| 111 | } |
| 112 | |
Florin Coras | 03c4f99 | 2016-07-19 15:27:58 +0200 | [diff] [blame] | 113 | if (is_negative) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 114 | { |
Florin Coras | 03c4f99 | 2016-07-19 15:27:58 +0200 | [diff] [blame] | 115 | if (~0 == action) |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 116 | { |
| 117 | error = clib_error_return (0, "no action set for negative tunnel!"); |
| 118 | goto done; |
| 119 | } |
Florin Coras | 03c4f99 | 2016-07-19 15:27:58 +0200 | [diff] [blame] | 120 | } |
| 121 | else |
| 122 | { |
Florin Coras | bb5c22f | 2016-08-02 02:31:03 +0200 | [diff] [blame] | 123 | if (vec_len (pairs) == 0) |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 124 | { |
| 125 | error = clib_error_return (0, "expected ip4/ip6 locators."); |
| 126 | goto done; |
| 127 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 128 | } |
| 129 | |
Florin Coras | 03c4f99 | 2016-07-19 15:27:58 +0200 | [diff] [blame] | 130 | if (!leid_set) |
| 131 | { |
| 132 | /* if leid not set, make sure it's the same AFI like reid */ |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 133 | gid_address_type (leid) = gid_address_type (reid); |
Florin Coras | 03c4f99 | 2016-07-19 15:27:58 +0200 | [diff] [blame] | 134 | if (GID_ADDR_IP_PREFIX == gid_address_type (reid)) |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 135 | gid_address_ip_version (leid) = gid_address_ip_version (reid); |
Florin Coras | 03c4f99 | 2016-07-19 15:27:58 +0200 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | /* add fwd entry */ |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 139 | vnet_lisp_gpe_add_del_fwd_entry_args_t _a, *a = &_a; |
| 140 | memset (a, 0, sizeof (a[0])); |
Florin Coras | 03c4f99 | 2016-07-19 15:27:58 +0200 | [diff] [blame] | 141 | |
| 142 | a->is_add = is_add; |
Florin Coras | 82bf7cd | 2016-09-26 18:59:44 +0300 | [diff] [blame] | 143 | a->is_negative = is_negative; |
Florin Coras | 03c4f99 | 2016-07-19 15:27:58 +0200 | [diff] [blame] | 144 | a->vni = vni; |
| 145 | a->table_id = vrf; |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 146 | gid_address_copy (&a->lcl_eid, leid); |
| 147 | gid_address_copy (&a->rmt_eid, reid); |
Florin Coras | bb5c22f | 2016-08-02 02:31:03 +0200 | [diff] [blame] | 148 | a->locator_pairs = pairs; |
Florin Coras | 03c4f99 | 2016-07-19 15:27:58 +0200 | [diff] [blame] | 149 | |
| 150 | rv = vnet_lisp_gpe_add_del_fwd_entry (a, 0); |
| 151 | if (0 != rv) |
| 152 | { |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 153 | error = clib_error_return (0, "failed to %s gpe tunnel!", |
| 154 | is_add ? "add" : "delete"); |
Florin Coras | 03c4f99 | 2016-07-19 15:27:58 +0200 | [diff] [blame] | 155 | } |
| 156 | |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 157 | done: |
| 158 | vec_free (pairs); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 159 | return error; |
| 160 | } |
| 161 | |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 162 | /* *INDENT-OFF* */ |
Florin Coras | ed09a05 | 2016-05-06 14:22:40 +0200 | [diff] [blame] | 163 | VLIB_CLI_COMMAND (lisp_gpe_add_del_fwd_entry_command, static) = { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 164 | .path = "lisp gpe entry", |
| 165 | .short_help = "lisp gpe entry add/del vni <vni> vrf <vrf> [leid <leid>]" |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 166 | "reid <reid> [loc-pair <lloc> <rloc> p <priority> w <weight>] " |
| 167 | "[negative action <action>]", |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 168 | .function = lisp_gpe_add_del_fwd_entry_command_fn, |
| 169 | }; |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 170 | /* *INDENT-ON* */ |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 171 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 172 | /** Check if LISP-GPE is enabled. */ |
Andrej Kozemcak | a9edd85 | 2016-05-02 12:14:33 +0200 | [diff] [blame] | 173 | u8 |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 174 | vnet_lisp_gpe_enable_disable_status (void) |
Andrej Kozemcak | a9edd85 | 2016-05-02 12:14:33 +0200 | [diff] [blame] | 175 | { |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 176 | lisp_gpe_main_t *lgm = &lisp_gpe_main; |
Andrej Kozemcak | a9edd85 | 2016-05-02 12:14:33 +0200 | [diff] [blame] | 177 | |
| 178 | return lgm->is_en; |
| 179 | } |
| 180 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 181 | /** Enable/disable LISP-GPE. */ |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 182 | clib_error_t * |
| 183 | vnet_lisp_gpe_enable_disable (vnet_lisp_gpe_enable_disable_args_t * a) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 184 | { |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 185 | lisp_gpe_main_t *lgm = &lisp_gpe_main; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 186 | |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 187 | if (a->is_en) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 188 | { |
Andrej Kozemcak | a9edd85 | 2016-05-02 12:14:33 +0200 | [diff] [blame] | 189 | lgm->is_en = 1; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 190 | } |
| 191 | else |
| 192 | { |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 193 | /* remove all entries */ |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 194 | vnet_lisp_gpe_fwd_entry_flush (); |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 195 | |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 196 | /* disable all l3 ifaces */ |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 197 | lisp_gpe_tenant_flush (); |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 198 | |
Andrej Kozemcak | a9edd85 | 2016-05-02 12:14:33 +0200 | [diff] [blame] | 199 | lgm->is_en = 0; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 200 | } |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 201 | |
| 202 | return 0; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 203 | } |
| 204 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 205 | /** CLI command to enable/disable LISP-GPE. */ |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 206 | static clib_error_t * |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 207 | lisp_gpe_enable_disable_command_fn (vlib_main_t * vm, |
| 208 | unformat_input_t * input, |
| 209 | vlib_cli_command_t * cmd) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 210 | { |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 211 | unformat_input_t _line_input, *line_input = &_line_input; |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 212 | u8 is_en = 1; |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 213 | vnet_lisp_gpe_enable_disable_args_t _a, *a = &_a; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 214 | |
| 215 | /* Get a line of input. */ |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 216 | if (!unformat_user (input, unformat_line_input, line_input)) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 217 | return 0; |
| 218 | |
| 219 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 220 | { |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 221 | if (unformat (line_input, "enable")) |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 222 | is_en = 1; |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 223 | else if (unformat (line_input, "disable")) |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 224 | is_en = 0; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 225 | else |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 226 | { |
| 227 | return clib_error_return (0, "parse error: '%U'", |
| 228 | format_unformat_error, line_input); |
| 229 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 230 | } |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 231 | a->is_en = is_en; |
| 232 | return vnet_lisp_gpe_enable_disable (a); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 233 | } |
| 234 | |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 235 | /* *INDENT-OFF* */ |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 236 | VLIB_CLI_COMMAND (enable_disable_lisp_gpe_command, static) = { |
| 237 | .path = "lisp gpe", |
| 238 | .short_help = "lisp gpe [enable|disable]", |
| 239 | .function = lisp_gpe_enable_disable_command_fn, |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 240 | }; |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 241 | /* *INDENT-ON* */ |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 242 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 243 | /** CLI command to show LISP-GPE interfaces. */ |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 244 | static clib_error_t * |
| 245 | lisp_show_iface_command_fn (vlib_main_t * vm, |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 246 | unformat_input_t * input, |
| 247 | vlib_cli_command_t * cmd) |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 248 | { |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 249 | lisp_gpe_main_t *lgm = &lisp_gpe_main; |
| 250 | hash_pair_t *p; |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 251 | |
| 252 | vlib_cli_output (vm, "%=10s%=12s", "vrf", "hw_if_index"); |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 253 | |
| 254 | /* *INDENT-OFF* */ |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 255 | hash_foreach_pair (p, lgm->l3_ifaces.hw_if_index_by_dp_table, ({ |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 256 | vlib_cli_output (vm, "%=10d%=10d", p->key, p->value[0]); |
| 257 | })); |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 258 | /* *INDENT-ON* */ |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 259 | |
| 260 | if (0 != lgm->l2_ifaces.hw_if_index_by_dp_table) |
| 261 | { |
| 262 | vlib_cli_output (vm, "%=10s%=12s", "bd_id", "hw_if_index"); |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 263 | /* *INDENT-OFF* */ |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 264 | hash_foreach_pair (p, lgm->l2_ifaces.hw_if_index_by_dp_table, ({ |
| 265 | vlib_cli_output (vm, "%=10d%=10d", p->key, p->value[0]); |
| 266 | })); |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 267 | /* *INDENT-ON* */ |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 268 | } |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 269 | return 0; |
| 270 | } |
| 271 | |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 272 | /* *INDENT-OFF* */ |
Filip Tehlar | 53f09e3 | 2016-05-19 14:25:44 +0200 | [diff] [blame] | 273 | VLIB_CLI_COMMAND (lisp_show_iface_command) = { |
| 274 | .path = "show lisp gpe interface", |
| 275 | .short_help = "show lisp gpe interface", |
| 276 | .function = lisp_show_iface_command_fn, |
| 277 | }; |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 278 | /* *INDENT-ON* */ |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 279 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 280 | /** Format LISP-GPE status. */ |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 281 | u8 * |
| 282 | format_vnet_lisp_gpe_status (u8 * s, va_list * args) |
| 283 | { |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 284 | lisp_gpe_main_t *lgm = &lisp_gpe_main; |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 285 | return format (s, "%s", lgm->is_en ? "enabled" : "disabled"); |
| 286 | } |
| 287 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 288 | |
Florin Coras | ff0bf13 | 2016-09-05 19:30:35 +0200 | [diff] [blame] | 289 | /** LISP-GPE init function. */ |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 290 | clib_error_t * |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 291 | lisp_gpe_init (vlib_main_t * vm) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 292 | { |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 293 | lisp_gpe_main_t *lgm = &lisp_gpe_main; |
| 294 | clib_error_t *error = 0; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 295 | |
| 296 | if ((error = vlib_call_init_function (vm, ip_main_init))) |
| 297 | return error; |
| 298 | |
| 299 | if ((error = vlib_call_init_function (vm, ip4_lookup_init))) |
| 300 | return error; |
| 301 | |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 302 | lgm->vnet_main = vnet_get_main (); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 303 | lgm->vlib_main = vm; |
| 304 | lgm->im4 = &ip4_main; |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 305 | lgm->im6 = &ip6_main; |
| 306 | lgm->lm4 = &ip4_main.lookup_main; |
| 307 | lgm->lm6 = &ip6_main.lookup_main; |
Florin Coras | 577c355 | 2016-04-21 00:45:40 +0200 | [diff] [blame] | 308 | |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 309 | lgm->lisp_gpe_fwd_entries = |
| 310 | hash_create_mem (0, sizeof (lisp_gpe_fwd_entry_key_t), sizeof (uword)); |
Florin Coras | 1a1adc7 | 2016-07-22 01:45:30 +0200 | [diff] [blame] | 311 | |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 312 | udp_register_dst_port (vm, UDP_DST_PORT_lisp_gpe, |
| 313 | lisp_gpe_ip4_input_node.index, 1 /* is_ip4 */ ); |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 314 | udp_register_dst_port (vm, UDP_DST_PORT_lisp_gpe6, |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 315 | lisp_gpe_ip6_input_node.index, 0 /* is_ip4 */ ); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 316 | return 0; |
| 317 | } |
| 318 | |
Florin Coras | 220beac | 2016-08-16 23:04:00 +0200 | [diff] [blame] | 319 | VLIB_INIT_FUNCTION (lisp_gpe_init); |
| 320 | |
| 321 | /* |
| 322 | * fd.io coding-style-patch-verification: ON |
| 323 | * |
| 324 | * Local Variables: |
| 325 | * eval: (c-set-style "gnu") |
| 326 | * End: |
| 327 | */ |