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 | |
Damjan Marion | abce509 | 2017-05-10 20:09:31 +0200 | [diff] [blame] | 48 | if (flags & VNET_SW_INTERFACE_FLAG_ERROR) |
| 49 | s = format (s, "error"); |
| 50 | else if (flags & VNET_SW_INTERFACE_FLAG_BOND_SLAVE) |
John Lo | bcebbb9 | 2016-04-05 15:47:43 -0400 | [diff] [blame] | 51 | s = format (s, "bond-slave"); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 52 | else |
John Lo | bcebbb9 | 2016-04-05 15:47:43 -0400 | [diff] [blame] | 53 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 54 | s = format (s, "%s", |
John Lo | bcebbb9 | 2016-04-05 15:47:43 -0400 | [diff] [blame] | 55 | (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? "up" : "down"); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 56 | if (flags & VNET_SW_INTERFACE_FLAG_PUNT) |
John Lo | bcebbb9 | 2016-04-05 15:47:43 -0400 | [diff] [blame] | 57 | s = format (s, "/punt"); |
| 58 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 59 | |
| 60 | return s; |
| 61 | } |
| 62 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 63 | u8 * |
Damjan Marion | 4403690 | 2017-04-28 12:29:15 +0200 | [diff] [blame] | 64 | format_vnet_hw_interface_rx_mode (u8 * s, va_list * args) |
| 65 | { |
| 66 | vnet_hw_interface_rx_mode mode = va_arg (*args, vnet_hw_interface_rx_mode); |
| 67 | |
| 68 | if (mode == VNET_HW_INTERFACE_RX_MODE_POLLING) |
| 69 | return format (s, "polling"); |
| 70 | |
| 71 | if (mode == VNET_HW_INTERFACE_RX_MODE_INTERRUPT) |
| 72 | return format (s, "interrupt"); |
| 73 | |
| 74 | if (mode == VNET_HW_INTERFACE_RX_MODE_ADAPTIVE) |
| 75 | return format (s, "adaptive"); |
| 76 | |
| 77 | return format (s, "unknown"); |
| 78 | } |
| 79 | |
| 80 | u8 * |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 81 | format_vnet_hw_interface (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 82 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 83 | vnet_main_t *vnm = va_arg (*args, vnet_main_t *); |
| 84 | vnet_hw_interface_t *hi = va_arg (*args, vnet_hw_interface_t *); |
| 85 | vnet_hw_interface_class_t *hw_class; |
| 86 | vnet_device_class_t *dev_class; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 87 | int verbose = va_arg (*args, int); |
Christophe Fontaine | d3c008d | 2017-10-02 18:10:54 +0200 | [diff] [blame] | 88 | u32 indent; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 89 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 90 | if (!hi) |
| 91 | return format (s, "%=32s%=6s%=8s%s", "Name", "Idx", "Link", "Hardware"); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 92 | |
| 93 | indent = format_get_indent (s); |
| 94 | |
John Lo | bcebbb9 | 2016-04-05 15:47:43 -0400 | [diff] [blame] | 95 | s = format (s, "%-32v%=6d", hi->name, hi->hw_if_index); |
| 96 | |
| 97 | if (hi->bond_info == VNET_HW_INTERFACE_BOND_INFO_SLAVE) |
| 98 | s = format (s, "%=8s", "slave"); |
| 99 | else |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 100 | s = format (s, "%=8s", |
John Lo | bcebbb9 | 2016-04-05 15:47:43 -0400 | [diff] [blame] | 101 | hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP ? "up" : "down"); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 102 | |
| 103 | hw_class = vnet_get_hw_interface_class (vnm, hi->hw_class_index); |
| 104 | dev_class = vnet_get_device_class (vnm, hi->dev_class_index); |
| 105 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 106 | 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] | 107 | { |
| 108 | int hw_idx; |
| 109 | s = format (s, "Slave-Idx:"); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 110 | clib_bitmap_foreach (hw_idx, hi->bond_info, s = |
| 111 | format (s, " %d", hw_idx)); |
John Lo | bcebbb9 | 2016-04-05 15:47:43 -0400 | [diff] [blame] | 112 | } |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 113 | else if (dev_class->format_device_name) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 114 | s = format (s, "%U", dev_class->format_device_name, hi->dev_instance); |
| 115 | else |
| 116 | s = format (s, "%s%d", dev_class->name, hi->dev_instance); |
| 117 | |
| 118 | if (verbose) |
| 119 | { |
| 120 | if (hw_class->format_device) |
| 121 | s = format (s, "\n%U%U", |
| 122 | format_white_space, indent + 2, |
| 123 | hw_class->format_device, hi->hw_if_index, verbose); |
| 124 | else |
| 125 | { |
| 126 | s = format (s, "\n%U%s", |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 127 | format_white_space, indent + 2, hw_class->name); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 128 | if (hw_class->format_address && vec_len (hi->hw_address) > 0) |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 129 | s = |
| 130 | format (s, " address %U", hw_class->format_address, |
| 131 | hi->hw_address); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | if (dev_class->format_device) |
| 135 | s = format (s, "\n%U%U", |
| 136 | format_white_space, indent + 2, |
| 137 | dev_class->format_device, hi->dev_instance, verbose); |
| 138 | } |
| 139 | |
| 140 | return s; |
| 141 | } |
| 142 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 143 | u8 * |
| 144 | format_vnet_sw_interface_name (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 145 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 146 | vnet_main_t *vnm = va_arg (*args, vnet_main_t *); |
| 147 | vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *); |
| 148 | vnet_sw_interface_t *si_sup = |
| 149 | vnet_get_sup_sw_interface (vnm, si->sw_if_index); |
| 150 | vnet_hw_interface_t *hi_sup; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 151 | |
| 152 | ASSERT (si_sup->type == VNET_SW_INTERFACE_TYPE_HARDWARE); |
| 153 | hi_sup = vnet_get_hw_interface (vnm, si_sup->hw_if_index); |
| 154 | |
| 155 | s = format (s, "%v", hi_sup->name); |
| 156 | |
| 157 | if (si->type != VNET_SW_INTERFACE_TYPE_HARDWARE) |
| 158 | s = format (s, ".%d", si->sub.id); |
| 159 | |
| 160 | return s; |
| 161 | } |
| 162 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 163 | u8 * |
| 164 | format_vnet_sw_if_index_name (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 165 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 166 | vnet_main_t *vnm = va_arg (*args, vnet_main_t *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 167 | u32 sw_if_index = va_arg (*args, u32); |
Neale Ranns | da78f95 | 2017-05-24 09:15:43 -0700 | [diff] [blame] | 168 | vnet_sw_interface_t *si; |
| 169 | |
| 170 | si = vnet_get_sw_interface_safe (vnm, sw_if_index); |
| 171 | |
| 172 | if (NULL == si) |
| 173 | { |
| 174 | return format (s, "DELETED"); |
| 175 | } |
| 176 | return format (s, "%U", format_vnet_sw_interface_name, vnm, si); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 177 | } |
| 178 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 179 | u8 * |
Damjan Marion | a35cc14 | 2018-03-16 01:25:27 +0100 | [diff] [blame] | 180 | format_vnet_hw_if_index_name (u8 * s, va_list * args) |
| 181 | { |
| 182 | vnet_main_t *vnm = va_arg (*args, vnet_main_t *); |
| 183 | u32 hw_if_index = va_arg (*args, u32); |
| 184 | vnet_hw_interface_t *hi; |
| 185 | |
| 186 | hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 187 | |
| 188 | if (hi == 0) |
| 189 | return format (s, "DELETED"); |
| 190 | |
| 191 | return format (s, "%v", hi->name); |
| 192 | } |
| 193 | |
| 194 | u8 * |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 195 | format_vnet_sw_interface_cntrs (u8 * s, vnet_interface_main_t * im, |
| 196 | vnet_sw_interface_t * si) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 197 | { |
Christophe Fontaine | d3c008d | 2017-10-02 18:10:54 +0200 | [diff] [blame] | 198 | u32 indent, n_printed; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 199 | int i, j, n_counters; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 200 | static vnet_main_t **my_vnet_mains; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 201 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 202 | vec_reset_length (my_vnet_mains); |
| 203 | |
| 204 | indent = format_get_indent (s); |
| 205 | n_printed = 0; |
| 206 | |
| 207 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 208 | vlib_combined_counter_main_t *cm; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 209 | vlib_counter_t v, vtotal; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 210 | u8 *n = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 211 | |
| 212 | for (i = 0; i < vec_len (vnet_mains); i++) |
| 213 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 214 | if (vnet_mains[i]) |
| 215 | vec_add1 (my_vnet_mains, vnet_mains[i]); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 216 | } |
| 217 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 218 | if (vec_len (my_vnet_mains) == 0) |
| 219 | vec_add1 (my_vnet_mains, &vnet_main); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 220 | |
| 221 | /* Each vnet_main_t has its own copy of the interface counters */ |
| 222 | n_counters = vec_len (im->combined_sw_if_counters); |
| 223 | |
| 224 | /* rx, tx counters... */ |
| 225 | for (j = 0; j < n_counters; j++) |
| 226 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 227 | vtotal.packets = 0; |
| 228 | vtotal.bytes = 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->combined_sw_if_counters + j; |
| 234 | vlib_get_combined_counter (cm, si->sw_if_index, &v); |
| 235 | vtotal.packets += v.packets; |
| 236 | vtotal.bytes += v.bytes; |
| 237 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 238 | |
| 239 | /* Only display non-zero counters. */ |
| 240 | if (vtotal.packets == 0) |
| 241 | continue; |
| 242 | |
| 243 | if (n_printed > 0) |
| 244 | s = format (s, "\n%U", format_white_space, indent); |
| 245 | n_printed += 2; |
| 246 | |
| 247 | if (n) |
| 248 | _vec_len (n) = 0; |
| 249 | n = format (n, "%s packets", cm->name); |
| 250 | s = format (s, "%-16v%16Ld", n, vtotal.packets); |
| 251 | |
| 252 | _vec_len (n) = 0; |
| 253 | n = format (n, "%s bytes", cm->name); |
| 254 | s = format (s, "\n%U%-16v%16Ld", |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 255 | format_white_space, indent, n, vtotal.bytes); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 256 | } |
| 257 | vec_free (n); |
| 258 | } |
| 259 | |
| 260 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 261 | vlib_simple_counter_main_t *cm; |
| 262 | u64 v, vtotal; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 263 | |
| 264 | n_counters = vec_len (im->sw_if_counters); |
| 265 | |
| 266 | for (j = 0; j < n_counters; j++) |
| 267 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 268 | vtotal = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 269 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 270 | for (i = 0; i < vec_len (my_vnet_mains); i++) |
| 271 | { |
| 272 | im = &my_vnet_mains[i]->interface_main; |
| 273 | cm = im->sw_if_counters + j; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 274 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 275 | v = vlib_get_simple_counter (cm, si->sw_if_index); |
| 276 | vtotal += v; |
| 277 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 278 | |
| 279 | /* Only display non-zero counters. */ |
| 280 | if (vtotal == 0) |
| 281 | continue; |
| 282 | |
| 283 | if (n_printed > 0) |
| 284 | s = format (s, "\n%U", format_white_space, indent); |
| 285 | n_printed += 1; |
| 286 | |
| 287 | s = format (s, "%-16s%16Ld", cm->name, vtotal); |
| 288 | } |
| 289 | } |
| 290 | |
| 291 | return s; |
| 292 | } |
| 293 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 294 | u8 * |
| 295 | format_vnet_sw_interface (u8 * s, va_list * args) |
Sean Hope | 679ea79 | 2016-02-22 15:12:01 -0500 | [diff] [blame] | 296 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 297 | vnet_main_t *vnm = va_arg (*args, vnet_main_t *); |
| 298 | vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *); |
| 299 | vnet_interface_main_t *im = &vnm->interface_main; |
Sean Hope | 679ea79 | 2016-02-22 15:12:01 -0500 | [diff] [blame] | 300 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 301 | if (!si) |
Sean Hope | 679ea79 | 2016-02-22 15:12:01 -0500 | [diff] [blame] | 302 | return format (s, "%=32s%=5s%=16s%=16s%=16s", |
| 303 | "Name", "Idx", "State", "Counter", "Count"); |
| 304 | |
| 305 | s = format (s, "%-32U%=5d%=16U", |
| 306 | format_vnet_sw_interface_name, vnm, si, si->sw_if_index, |
| 307 | format_vnet_sw_interface_flags, si->flags); |
| 308 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 309 | s = format_vnet_sw_interface_cntrs (s, im, si); |
Sean Hope | 679ea79 | 2016-02-22 15:12:01 -0500 | [diff] [blame] | 310 | |
| 311 | return s; |
| 312 | } |
| 313 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 314 | u8 * |
| 315 | format_vnet_sw_interface_name_override (u8 * s, va_list * args) |
Sean Hope | 679ea79 | 2016-02-22 15:12:01 -0500 | [diff] [blame] | 316 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 317 | vnet_main_t *vnm = va_arg (*args, vnet_main_t *); |
| 318 | vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *); |
Sean Hope | 679ea79 | 2016-02-22 15:12:01 -0500 | [diff] [blame] | 319 | /* caller supplied display name for this interface */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 320 | u8 *name = va_arg (*args, u8 *); |
| 321 | vnet_interface_main_t *im = &vnm->interface_main; |
Sean Hope | 679ea79 | 2016-02-22 15:12:01 -0500 | [diff] [blame] | 322 | |
| 323 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 324 | if (!si) |
Sean Hope | 679ea79 | 2016-02-22 15:12:01 -0500 | [diff] [blame] | 325 | return format (s, "%=32s%=5s%=16s%=16s%=16s", |
| 326 | "Name", "Idx", "State", "Counter", "Count"); |
| 327 | |
| 328 | s = format (s, "%-32v%=5d%=16U", |
| 329 | name, si->sw_if_index, |
| 330 | format_vnet_sw_interface_flags, si->flags); |
| 331 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 332 | s = format_vnet_sw_interface_cntrs (s, im, si); |
Sean Hope | 679ea79 | 2016-02-22 15:12:01 -0500 | [diff] [blame] | 333 | |
| 334 | return s; |
| 335 | } |
| 336 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 337 | uword |
| 338 | unformat_vnet_hw_interface (unformat_input_t * input, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 339 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 340 | vnet_main_t *vnm = va_arg (*args, vnet_main_t *); |
| 341 | u32 *hw_if_index = va_arg (*args, u32 *); |
| 342 | vnet_interface_main_t *im = &vnm->interface_main; |
| 343 | vnet_device_class_t *c; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 344 | |
| 345 | /* Try per device class functions first. */ |
| 346 | vec_foreach (c, im->device_classes) |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 347 | { |
| 348 | if (c->unformat_device_name |
| 349 | && unformat_user (input, c->unformat_device_name, hw_if_index)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 350 | return 1; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 351 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 352 | |
| 353 | return unformat_user (input, unformat_hash_vec_string, |
| 354 | im->hw_interface_by_name, hw_if_index); |
| 355 | } |
| 356 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 357 | uword |
| 358 | unformat_vnet_sw_interface (unformat_input_t * input, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 359 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 360 | vnet_main_t *vnm = va_arg (*args, vnet_main_t *); |
| 361 | u32 *result = va_arg (*args, u32 *); |
| 362 | vnet_hw_interface_t *hi; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 363 | u32 hw_if_index, id, id_specified; |
Eyal Bari | 3212c57 | 2017-03-06 11:47:50 +0200 | [diff] [blame] | 364 | u32 sw_if_index; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 365 | u8 *if_name = 0; |
| 366 | uword *p, error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 367 | |
| 368 | id = ~0; |
| 369 | if (unformat (input, "%_%v.%d%_", &if_name, &id) |
| 370 | && ((p = hash_get (vnm->interface_main.hw_interface_by_name, if_name)))) |
| 371 | { |
| 372 | hw_if_index = p[0]; |
| 373 | id_specified = 1; |
| 374 | } |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 375 | else |
| 376 | if (unformat (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 377 | id_specified = 0; |
| 378 | else |
| 379 | goto done; |
| 380 | |
| 381 | hi = vnet_get_hw_interface (vnm, hw_if_index); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 382 | if (!id_specified) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 383 | { |
Eyal Bari | 3212c57 | 2017-03-06 11:47:50 +0200 | [diff] [blame] | 384 | sw_if_index = hi->sw_if_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 385 | } |
| 386 | else |
| 387 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 388 | 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] | 389 | goto done; |
| 390 | sw_if_index = p[0]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 391 | } |
Eyal Bari | 3212c57 | 2017-03-06 11:47:50 +0200 | [diff] [blame] | 392 | if (!vnet_sw_interface_is_api_visible (vnm, sw_if_index)) |
| 393 | goto done; |
| 394 | *result = sw_if_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 395 | error = 1; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 396 | done: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 397 | vec_free (if_name); |
| 398 | return error; |
| 399 | } |
| 400 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 401 | uword |
| 402 | unformat_vnet_sw_interface_flags (unformat_input_t * input, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 403 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 404 | u32 *result = va_arg (*args, u32 *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 405 | u32 flags = 0; |
| 406 | |
| 407 | if (unformat (input, "up")) |
| 408 | flags |= VNET_SW_INTERFACE_FLAG_ADMIN_UP; |
| 409 | else if (unformat (input, "down")) |
| 410 | flags &= ~VNET_SW_INTERFACE_FLAG_ADMIN_UP; |
| 411 | else if (unformat (input, "punt")) |
| 412 | flags |= VNET_SW_INTERFACE_FLAG_PUNT; |
| 413 | else if (unformat (input, "enable")) |
| 414 | flags &= ~VNET_SW_INTERFACE_FLAG_PUNT; |
| 415 | else |
| 416 | return 0; |
| 417 | |
| 418 | *result = flags; |
| 419 | return 1; |
| 420 | } |
| 421 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 422 | uword |
| 423 | unformat_vnet_hw_interface_flags (unformat_input_t * input, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 424 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 425 | u32 *result = va_arg (*args, u32 *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 426 | u32 flags = 0; |
| 427 | |
| 428 | if (unformat (input, "up")) |
| 429 | flags |= VNET_HW_INTERFACE_FLAG_LINK_UP; |
| 430 | else if (unformat (input, "down")) |
| 431 | flags &= ~VNET_HW_INTERFACE_FLAG_LINK_UP; |
| 432 | else |
| 433 | return 0; |
| 434 | |
| 435 | *result = flags; |
| 436 | return 1; |
| 437 | } |
| 438 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 439 | /* |
| 440 | * fd.io coding-style-patch-verification: ON |
| 441 | * |
| 442 | * Local Variables: |
| 443 | * eval: (c-set-style "gnu") |
| 444 | * End: |
| 445 | */ |