Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 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 | * interface_format.c: interface formatting |
| 17 | * |
| 18 | * Copyright (c) 2008 Eliot Dresselhaus |
| 19 | * |
| 20 | * Permission is hereby granted, free of charge, to any person obtaining |
| 21 | * a copy of this software and associated documentation files (the |
| 22 | * "Software"), to deal in the Software without restriction, including |
| 23 | * without limitation the rights to use, copy, modify, merge, publish, |
| 24 | * distribute, sublicense, and/or sell copies of the Software, and to |
| 25 | * permit persons to whom the Software is furnished to do so, subject to |
| 26 | * the following conditions: |
| 27 | * |
| 28 | * The above copyright notice and this permission notice shall be |
| 29 | * included in all copies or substantial portions of the Software. |
| 30 | * |
| 31 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 32 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 33 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 34 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 35 | * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 36 | * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 37 | * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 38 | */ |
| 39 | |
| 40 | #include <vnet/vnet.h> |
John Lo | bcebbb9 | 2016-04-05 15:47:43 -0400 | [diff] [blame] | 41 | #include <vppinfra/bitmap.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 42 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 43 | u8 * |
| 44 | format_vnet_sw_interface_flags (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 45 | { |
| 46 | u32 flags = va_arg (*args, u32); |
| 47 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 48 | if (flags & VNET_SW_INTERFACE_FLAG_BOND_SLAVE) |
John Lo | bcebbb9 | 2016-04-05 15:47:43 -0400 | [diff] [blame] | 49 | s = format (s, "bond-slave"); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 50 | else |
John Lo | bcebbb9 | 2016-04-05 15:47:43 -0400 | [diff] [blame] | 51 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 52 | s = format (s, "%s", |
John Lo | bcebbb9 | 2016-04-05 15:47:43 -0400 | [diff] [blame] | 53 | (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? "up" : "down"); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 54 | if (flags & VNET_SW_INTERFACE_FLAG_PUNT) |
John Lo | bcebbb9 | 2016-04-05 15:47:43 -0400 | [diff] [blame] | 55 | s = format (s, "/punt"); |
| 56 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 57 | |
| 58 | return s; |
| 59 | } |
| 60 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 61 | u8 * |
| 62 | format_vnet_hw_interface (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 63 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 64 | vnet_main_t *vnm = va_arg (*args, vnet_main_t *); |
| 65 | vnet_hw_interface_t *hi = va_arg (*args, vnet_hw_interface_t *); |
| 66 | vnet_hw_interface_class_t *hw_class; |
| 67 | vnet_device_class_t *dev_class; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 68 | int verbose = va_arg (*args, int); |
| 69 | uword indent; |
| 70 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 71 | if (!hi) |
| 72 | return format (s, "%=32s%=6s%=8s%s", "Name", "Idx", "Link", "Hardware"); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 73 | |
| 74 | indent = format_get_indent (s); |
| 75 | |
John Lo | bcebbb9 | 2016-04-05 15:47:43 -0400 | [diff] [blame] | 76 | s = format (s, "%-32v%=6d", hi->name, hi->hw_if_index); |
| 77 | |
| 78 | if (hi->bond_info == VNET_HW_INTERFACE_BOND_INFO_SLAVE) |
| 79 | s = format (s, "%=8s", "slave"); |
| 80 | else |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 81 | s = format (s, "%=8s", |
John Lo | bcebbb9 | 2016-04-05 15:47:43 -0400 | [diff] [blame] | 82 | hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP ? "up" : "down"); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 83 | |
| 84 | hw_class = vnet_get_hw_interface_class (vnm, hi->hw_class_index); |
| 85 | dev_class = vnet_get_device_class (vnm, hi->dev_class_index); |
| 86 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 87 | if (hi->bond_info && (hi->bond_info != VNET_HW_INTERFACE_BOND_INFO_SLAVE)) |
John Lo | bcebbb9 | 2016-04-05 15:47:43 -0400 | [diff] [blame] | 88 | { |
| 89 | int hw_idx; |
| 90 | s = format (s, "Slave-Idx:"); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 91 | clib_bitmap_foreach (hw_idx, hi->bond_info, s = |
| 92 | format (s, " %d", hw_idx)); |
John Lo | bcebbb9 | 2016-04-05 15:47:43 -0400 | [diff] [blame] | 93 | } |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 94 | else if (dev_class->format_device_name) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 95 | s = format (s, "%U", dev_class->format_device_name, hi->dev_instance); |
| 96 | else |
| 97 | s = format (s, "%s%d", dev_class->name, hi->dev_instance); |
| 98 | |
| 99 | if (verbose) |
| 100 | { |
| 101 | if (hw_class->format_device) |
| 102 | s = format (s, "\n%U%U", |
| 103 | format_white_space, indent + 2, |
| 104 | hw_class->format_device, hi->hw_if_index, verbose); |
| 105 | else |
| 106 | { |
| 107 | s = format (s, "\n%U%s", |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 108 | format_white_space, indent + 2, hw_class->name); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 109 | if (hw_class->format_address && vec_len (hi->hw_address) > 0) |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 110 | s = |
| 111 | format (s, " address %U", hw_class->format_address, |
| 112 | hi->hw_address); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | if (dev_class->format_device) |
| 116 | s = format (s, "\n%U%U", |
| 117 | format_white_space, indent + 2, |
| 118 | dev_class->format_device, hi->dev_instance, verbose); |
| 119 | } |
| 120 | |
| 121 | return s; |
| 122 | } |
| 123 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 124 | u8 * |
| 125 | format_vnet_sw_interface_name (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 126 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 127 | vnet_main_t *vnm = va_arg (*args, vnet_main_t *); |
| 128 | vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *); |
| 129 | vnet_sw_interface_t *si_sup = |
| 130 | vnet_get_sup_sw_interface (vnm, si->sw_if_index); |
| 131 | vnet_hw_interface_t *hi_sup; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 132 | |
| 133 | ASSERT (si_sup->type == VNET_SW_INTERFACE_TYPE_HARDWARE); |
| 134 | hi_sup = vnet_get_hw_interface (vnm, si_sup->hw_if_index); |
| 135 | |
| 136 | s = format (s, "%v", hi_sup->name); |
| 137 | |
| 138 | if (si->type != VNET_SW_INTERFACE_TYPE_HARDWARE) |
| 139 | s = format (s, ".%d", si->sub.id); |
| 140 | |
| 141 | return s; |
| 142 | } |
| 143 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 144 | u8 * |
| 145 | format_vnet_sw_if_index_name (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 146 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 147 | vnet_main_t *vnm = va_arg (*args, vnet_main_t *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 148 | u32 sw_if_index = va_arg (*args, u32); |
| 149 | return format (s, "%U", |
| 150 | format_vnet_sw_interface_name, vnm, |
| 151 | vnet_get_sw_interface (vnm, sw_if_index)); |
| 152 | } |
| 153 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 154 | u8 * |
| 155 | format_vnet_sw_interface_cntrs (u8 * s, vnet_interface_main_t * im, |
| 156 | vnet_sw_interface_t * si) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 157 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 158 | uword indent, n_printed; |
| 159 | int i, j, n_counters; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 160 | static vnet_main_t **my_vnet_mains; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 161 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 162 | vec_reset_length (my_vnet_mains); |
| 163 | |
| 164 | indent = format_get_indent (s); |
| 165 | n_printed = 0; |
| 166 | |
| 167 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 168 | vlib_combined_counter_main_t *cm; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 169 | vlib_counter_t v, vtotal; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 170 | u8 *n = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 171 | |
| 172 | for (i = 0; i < vec_len (vnet_mains); i++) |
| 173 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 174 | if (vnet_mains[i]) |
| 175 | vec_add1 (my_vnet_mains, vnet_mains[i]); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 176 | } |
| 177 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 178 | if (vec_len (my_vnet_mains) == 0) |
| 179 | vec_add1 (my_vnet_mains, &vnet_main); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 180 | |
| 181 | /* Each vnet_main_t has its own copy of the interface counters */ |
| 182 | n_counters = vec_len (im->combined_sw_if_counters); |
| 183 | |
| 184 | /* rx, tx counters... */ |
| 185 | for (j = 0; j < n_counters; j++) |
| 186 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 187 | vtotal.packets = 0; |
| 188 | vtotal.bytes = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 189 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 190 | for (i = 0; i < vec_len (my_vnet_mains); i++) |
| 191 | { |
| 192 | im = &my_vnet_mains[i]->interface_main; |
| 193 | cm = im->combined_sw_if_counters + j; |
| 194 | vlib_get_combined_counter (cm, si->sw_if_index, &v); |
| 195 | vtotal.packets += v.packets; |
| 196 | vtotal.bytes += v.bytes; |
| 197 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 198 | |
| 199 | /* Only display non-zero counters. */ |
| 200 | if (vtotal.packets == 0) |
| 201 | continue; |
| 202 | |
| 203 | if (n_printed > 0) |
| 204 | s = format (s, "\n%U", format_white_space, indent); |
| 205 | n_printed += 2; |
| 206 | |
| 207 | if (n) |
| 208 | _vec_len (n) = 0; |
| 209 | n = format (n, "%s packets", cm->name); |
| 210 | s = format (s, "%-16v%16Ld", n, vtotal.packets); |
| 211 | |
| 212 | _vec_len (n) = 0; |
| 213 | n = format (n, "%s bytes", cm->name); |
| 214 | s = format (s, "\n%U%-16v%16Ld", |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 215 | format_white_space, indent, n, vtotal.bytes); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 216 | } |
| 217 | vec_free (n); |
| 218 | } |
| 219 | |
| 220 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 221 | vlib_simple_counter_main_t *cm; |
| 222 | u64 v, vtotal; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 223 | |
| 224 | n_counters = vec_len (im->sw_if_counters); |
| 225 | |
| 226 | for (j = 0; j < n_counters; j++) |
| 227 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 228 | vtotal = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 229 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 230 | for (i = 0; i < vec_len (my_vnet_mains); i++) |
| 231 | { |
| 232 | im = &my_vnet_mains[i]->interface_main; |
| 233 | cm = im->sw_if_counters + j; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 234 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 235 | v = vlib_get_simple_counter (cm, si->sw_if_index); |
| 236 | vtotal += v; |
| 237 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 238 | |
| 239 | /* Only display non-zero counters. */ |
| 240 | if (vtotal == 0) |
| 241 | continue; |
| 242 | |
| 243 | if (n_printed > 0) |
| 244 | s = format (s, "\n%U", format_white_space, indent); |
| 245 | n_printed += 1; |
| 246 | |
| 247 | s = format (s, "%-16s%16Ld", cm->name, vtotal); |
| 248 | } |
| 249 | } |
| 250 | |
| 251 | return s; |
| 252 | } |
| 253 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 254 | u8 * |
| 255 | format_vnet_sw_interface (u8 * s, va_list * args) |
Sean Hope | 679ea79 | 2016-02-22 15:12:01 -0500 | [diff] [blame] | 256 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 257 | vnet_main_t *vnm = va_arg (*args, vnet_main_t *); |
| 258 | vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *); |
| 259 | vnet_interface_main_t *im = &vnm->interface_main; |
Sean Hope | 679ea79 | 2016-02-22 15:12:01 -0500 | [diff] [blame] | 260 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 261 | if (!si) |
Sean Hope | 679ea79 | 2016-02-22 15:12:01 -0500 | [diff] [blame] | 262 | return format (s, "%=32s%=5s%=16s%=16s%=16s", |
| 263 | "Name", "Idx", "State", "Counter", "Count"); |
| 264 | |
| 265 | s = format (s, "%-32U%=5d%=16U", |
| 266 | format_vnet_sw_interface_name, vnm, si, si->sw_if_index, |
| 267 | format_vnet_sw_interface_flags, si->flags); |
| 268 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 269 | s = format_vnet_sw_interface_cntrs (s, im, si); |
Sean Hope | 679ea79 | 2016-02-22 15:12:01 -0500 | [diff] [blame] | 270 | |
| 271 | return s; |
| 272 | } |
| 273 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 274 | u8 * |
| 275 | format_vnet_sw_interface_name_override (u8 * s, va_list * args) |
Sean Hope | 679ea79 | 2016-02-22 15:12:01 -0500 | [diff] [blame] | 276 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 277 | vnet_main_t *vnm = va_arg (*args, vnet_main_t *); |
| 278 | vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *); |
Sean Hope | 679ea79 | 2016-02-22 15:12:01 -0500 | [diff] [blame] | 279 | /* caller supplied display name for this interface */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 280 | u8 *name = va_arg (*args, u8 *); |
| 281 | vnet_interface_main_t *im = &vnm->interface_main; |
Sean Hope | 679ea79 | 2016-02-22 15:12:01 -0500 | [diff] [blame] | 282 | |
| 283 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 284 | if (!si) |
Sean Hope | 679ea79 | 2016-02-22 15:12:01 -0500 | [diff] [blame] | 285 | return format (s, "%=32s%=5s%=16s%=16s%=16s", |
| 286 | "Name", "Idx", "State", "Counter", "Count"); |
| 287 | |
| 288 | s = format (s, "%-32v%=5d%=16U", |
| 289 | name, si->sw_if_index, |
| 290 | format_vnet_sw_interface_flags, si->flags); |
| 291 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 292 | s = format_vnet_sw_interface_cntrs (s, im, si); |
Sean Hope | 679ea79 | 2016-02-22 15:12:01 -0500 | [diff] [blame] | 293 | |
| 294 | return s; |
| 295 | } |
| 296 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 297 | uword |
| 298 | unformat_vnet_hw_interface (unformat_input_t * input, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 299 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 300 | vnet_main_t *vnm = va_arg (*args, vnet_main_t *); |
| 301 | u32 *hw_if_index = va_arg (*args, u32 *); |
| 302 | vnet_interface_main_t *im = &vnm->interface_main; |
| 303 | vnet_device_class_t *c; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 304 | |
| 305 | /* Try per device class functions first. */ |
| 306 | vec_foreach (c, im->device_classes) |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 307 | { |
| 308 | if (c->unformat_device_name |
| 309 | && unformat_user (input, c->unformat_device_name, hw_if_index)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 310 | return 1; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 311 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 312 | |
| 313 | return unformat_user (input, unformat_hash_vec_string, |
| 314 | im->hw_interface_by_name, hw_if_index); |
| 315 | } |
| 316 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 317 | uword |
| 318 | unformat_vnet_sw_interface (unformat_input_t * input, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 319 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 320 | vnet_main_t *vnm = va_arg (*args, vnet_main_t *); |
| 321 | u32 *result = va_arg (*args, u32 *); |
| 322 | vnet_hw_interface_t *hi; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 323 | u32 hw_if_index, id, id_specified; |
Eyal Bari | 3212c57 | 2017-03-06 11:47:50 +0200 | [diff] [blame^] | 324 | u32 sw_if_index; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 325 | u8 *if_name = 0; |
| 326 | uword *p, error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 327 | |
| 328 | id = ~0; |
| 329 | if (unformat (input, "%_%v.%d%_", &if_name, &id) |
| 330 | && ((p = hash_get (vnm->interface_main.hw_interface_by_name, if_name)))) |
| 331 | { |
| 332 | hw_if_index = p[0]; |
| 333 | id_specified = 1; |
| 334 | } |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 335 | else |
| 336 | if (unformat (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 337 | id_specified = 0; |
| 338 | else |
| 339 | goto done; |
| 340 | |
| 341 | hi = vnet_get_hw_interface (vnm, hw_if_index); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 342 | if (!id_specified) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 343 | { |
Eyal Bari | 3212c57 | 2017-03-06 11:47:50 +0200 | [diff] [blame^] | 344 | sw_if_index = hi->sw_if_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 345 | } |
| 346 | else |
| 347 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 348 | if (!(p = hash_get (hi->sub_interface_sw_if_index_by_id, id))) |
Eyal Bari | 3212c57 | 2017-03-06 11:47:50 +0200 | [diff] [blame^] | 349 | goto done; |
| 350 | sw_if_index = p[0]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 351 | } |
Eyal Bari | 3212c57 | 2017-03-06 11:47:50 +0200 | [diff] [blame^] | 352 | if (!vnet_sw_interface_is_api_visible (vnm, sw_if_index)) |
| 353 | goto done; |
| 354 | *result = sw_if_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 355 | error = 1; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 356 | done: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 357 | vec_free (if_name); |
| 358 | return error; |
| 359 | } |
| 360 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 361 | uword |
| 362 | unformat_vnet_sw_interface_flags (unformat_input_t * input, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 363 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 364 | u32 *result = va_arg (*args, u32 *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 365 | u32 flags = 0; |
| 366 | |
| 367 | if (unformat (input, "up")) |
| 368 | flags |= VNET_SW_INTERFACE_FLAG_ADMIN_UP; |
| 369 | else if (unformat (input, "down")) |
| 370 | flags &= ~VNET_SW_INTERFACE_FLAG_ADMIN_UP; |
| 371 | else if (unformat (input, "punt")) |
| 372 | flags |= VNET_SW_INTERFACE_FLAG_PUNT; |
| 373 | else if (unformat (input, "enable")) |
| 374 | flags &= ~VNET_SW_INTERFACE_FLAG_PUNT; |
| 375 | else |
| 376 | return 0; |
| 377 | |
| 378 | *result = flags; |
| 379 | return 1; |
| 380 | } |
| 381 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 382 | uword |
| 383 | unformat_vnet_hw_interface_flags (unformat_input_t * input, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 384 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 385 | u32 *result = va_arg (*args, u32 *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 386 | u32 flags = 0; |
| 387 | |
| 388 | if (unformat (input, "up")) |
| 389 | flags |= VNET_HW_INTERFACE_FLAG_LINK_UP; |
| 390 | else if (unformat (input, "down")) |
| 391 | flags &= ~VNET_HW_INTERFACE_FLAG_LINK_UP; |
| 392 | else |
| 393 | return 0; |
| 394 | |
| 395 | *result = flags; |
| 396 | return 1; |
| 397 | } |
| 398 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 399 | /* |
| 400 | * fd.io coding-style-patch-verification: ON |
| 401 | * |
| 402 | * Local Variables: |
| 403 | * eval: (c-set-style "gnu") |
| 404 | * End: |
| 405 | */ |