blob: 0eff8c4597cca87376167a0e2017781c4ed92cef [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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 Lobcebbb92016-04-05 15:47:43 -040041#include <vppinfra/bitmap.h>
Dave Barach7bdaa3f2018-12-03 11:33:09 -050042#include <vnet/l2/l2_input.h>
43#include <vnet/l2/l2_output.h>
Jon Loeliger9485d992019-11-08 15:05:23 -060044#include <vnet/l2/l2_vtr.h>
Damjan Marion94100532020-11-06 23:25:57 +010045#include <vnet/interface/rx_queue_funcs.h>
Damjan Marion1bd6cbb2021-04-15 13:12:51 +020046#include <vnet/interface/tx_queue_funcs.h>
Jon Loeliger9485d992019-11-08 15:05:23 -060047
48u8 *
49format_vtr (u8 * s, va_list * args)
50{
51 u32 vtr_op = va_arg (*args, u32);
52 u32 dot1q = va_arg (*args, u32);
53 u32 tag1 = va_arg (*args, u32);
54 u32 tag2 = va_arg (*args, u32);
55 switch (vtr_op)
56 {
57 case L2_VTR_DISABLED:
58 return format (s, "none");
59 case L2_VTR_PUSH_1:
60 return format (s, "push-1 %s %d", dot1q ? "dot1q" : "dot1ad", tag1);
61 case L2_VTR_PUSH_2:
62 return format (s, "push-2 %s %d %d", dot1q ? "dot1q" : "dot1ad", tag1,
63 tag2);
64 case L2_VTR_POP_1:
65 return format (s, "pop-1");
66 case L2_VTR_POP_2:
67 return format (s, "pop-2");
68 case L2_VTR_TRANSLATE_1_1:
69 return format (s, "trans-1-1 %s %d", dot1q ? "dot1q" : "dot1ad", tag1);
70 case L2_VTR_TRANSLATE_1_2:
71 return format (s, "trans-1-2 %s %d %d", dot1q ? "dot1q" : "dot1ad",
72 tag1, tag2);
73 case L2_VTR_TRANSLATE_2_1:
74 return format (s, "trans-2-1 %s %d", dot1q ? "dot1q" : "dot1ad", tag1);
75 case L2_VTR_TRANSLATE_2_2:
76 return format (s, "trans-2-2 %s %d %d", dot1q ? "dot1q" : "dot1ad",
77 tag1, tag2);
78 default:
79 return format (s, "none");
80 }
81}
Ed Warnickecb9cada2015-12-08 15:45:58 -070082
Dave Barachba868bb2016-08-08 09:51:21 -040083u8 *
84format_vnet_sw_interface_flags (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070085{
86 u32 flags = va_arg (*args, u32);
87
Damjan Marionabce5092017-05-10 20:09:31 +020088 if (flags & VNET_SW_INTERFACE_FLAG_ERROR)
89 s = format (s, "error");
Dave Barachba868bb2016-08-08 09:51:21 -040090 else
John Lobcebbb92016-04-05 15:47:43 -040091 {
Dave Barachba868bb2016-08-08 09:51:21 -040092 s = format (s, "%s",
John Lobcebbb92016-04-05 15:47:43 -040093 (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? "up" : "down");
Dave Barachba868bb2016-08-08 09:51:21 -040094 if (flags & VNET_SW_INTERFACE_FLAG_PUNT)
John Lobcebbb92016-04-05 15:47:43 -040095 s = format (s, "/punt");
96 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070097
98 return s;
99}
100
Dave Barachba868bb2016-08-08 09:51:21 -0400101u8 *
Damjan Marioneabd4242020-10-07 20:59:07 +0200102format_vnet_hw_if_rx_mode (u8 * s, va_list * args)
Damjan Marion44036902017-04-28 12:29:15 +0200103{
Damjan Marioneabd4242020-10-07 20:59:07 +0200104 vnet_hw_if_rx_mode mode = va_arg (*args, vnet_hw_if_rx_mode);
Damjan Marion44036902017-04-28 12:29:15 +0200105
Damjan Marioneabd4242020-10-07 20:59:07 +0200106 if (mode == VNET_HW_IF_RX_MODE_POLLING)
Damjan Marion44036902017-04-28 12:29:15 +0200107 return format (s, "polling");
108
Damjan Marioneabd4242020-10-07 20:59:07 +0200109 if (mode == VNET_HW_IF_RX_MODE_INTERRUPT)
Damjan Marion44036902017-04-28 12:29:15 +0200110 return format (s, "interrupt");
111
Damjan Marioneabd4242020-10-07 20:59:07 +0200112 if (mode == VNET_HW_IF_RX_MODE_ADAPTIVE)
Damjan Marion44036902017-04-28 12:29:15 +0200113 return format (s, "adaptive");
114
115 return format (s, "unknown");
116}
117
118u8 *
Damjan Marion5100aa92018-11-08 15:30:16 +0100119format_vnet_hw_interface_link_speed (u8 * s, va_list * args)
120{
121 u32 link_speed = va_arg (*args, u32);
122
Anton Nikolaev61f6a4c2022-05-16 10:33:17 +0000123 if (link_speed == 0 || link_speed == UINT32_MAX)
Damjan Marion5100aa92018-11-08 15:30:16 +0100124 return format (s, "unknown");
125
126 if (link_speed >= 1000000)
127 return format (s, "%f Gbps", (f64) link_speed / 1000000);
128
129 if (link_speed >= 1000)
130 return format (s, "%f Mbps", (f64) link_speed / 1000);
131
132 return format (s, "%u Kbps", link_speed);
133}
134
Chenmin Sunc4665092020-07-06 08:20:39 +0800135u8 *
136format_vnet_hw_interface_rss_queues (u8 * s, va_list * args)
137{
138 clib_bitmap_t *bitmap = va_arg (*args, clib_bitmap_t *);
139 int i;
140
141 if (bitmap == NULL)
142 return s;
143
144 if (bitmap)
145 {
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100146 clib_bitmap_foreach (i, bitmap) {
Chenmin Sunc4665092020-07-06 08:20:39 +0800147 s = format (s, "%u ", i);
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100148 }
Chenmin Sunc4665092020-07-06 08:20:39 +0800149 }
150
151 return s;
152}
Damjan Marion5100aa92018-11-08 15:30:16 +0100153
154u8 *
Dave Barachba868bb2016-08-08 09:51:21 -0400155format_vnet_hw_interface (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156{
Dave Barachba868bb2016-08-08 09:51:21 -0400157 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
158 vnet_hw_interface_t *hi = va_arg (*args, vnet_hw_interface_t *);
159 vnet_hw_interface_class_t *hw_class;
160 vnet_device_class_t *dev_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161 int verbose = va_arg (*args, int);
Christophe Fontained3c008d2017-10-02 18:10:54 +0200162 u32 indent;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163
Dave Barachba868bb2016-08-08 09:51:21 -0400164 if (!hi)
165 return format (s, "%=32s%=6s%=8s%s", "Name", "Idx", "Link", "Hardware");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166
167 indent = format_get_indent (s);
168
John Lobcebbb92016-04-05 15:47:43 -0400169 s = format (s, "%-32v%=6d", hi->name, hi->hw_if_index);
170
171 if (hi->bond_info == VNET_HW_INTERFACE_BOND_INFO_SLAVE)
172 s = format (s, "%=8s", "slave");
173 else
Dave Barachba868bb2016-08-08 09:51:21 -0400174 s = format (s, "%=8s",
John Lobcebbb92016-04-05 15:47:43 -0400175 hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP ? "up" : "down");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176
177 hw_class = vnet_get_hw_interface_class (vnm, hi->hw_class_index);
178 dev_class = vnet_get_device_class (vnm, hi->dev_class_index);
179
Dave Barachba868bb2016-08-08 09:51:21 -0400180 if (hi->bond_info && (hi->bond_info != VNET_HW_INTERFACE_BOND_INFO_SLAVE))
John Lobcebbb92016-04-05 15:47:43 -0400181 {
182 int hw_idx;
183 s = format (s, "Slave-Idx:");
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100184 clib_bitmap_foreach (hw_idx, hi->bond_info)
185 s = format (s, " %d", hw_idx);
John Lobcebbb92016-04-05 15:47:43 -0400186 }
Dave Barachba868bb2016-08-08 09:51:21 -0400187 else if (dev_class->format_device_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188 s = format (s, "%U", dev_class->format_device_name, hi->dev_instance);
189 else
190 s = format (s, "%s%d", dev_class->name, hi->dev_instance);
191
Damjan Marion5100aa92018-11-08 15:30:16 +0100192 s = format (s, "\n%ULink speed: %U", format_white_space, indent + 2,
193 format_vnet_hw_interface_link_speed, hi->link_speed);
194
Damjan Marion94100532020-11-06 23:25:57 +0100195 if (vec_len (hi->rx_queue_indices))
196 {
197 s = format (s, "\n%URX Queues:", format_white_space, indent + 2);
198 s = format (s, "\n%U%-6s%-15s%-10s", format_white_space, indent + 4,
199 "queue", "thread", "mode");
200 for (int i = 0; i < vec_len (hi->rx_queue_indices); i++)
201 {
202 vnet_hw_if_rx_queue_t *rxq;
203 rxq = vnet_hw_if_get_rx_queue (vnm, hi->rx_queue_indices[i]);
204 s = format (s, "\n%U%-6u%-15U%-10U", format_white_space, indent + 4,
205 rxq->queue_id, format_vlib_thread_name_and_index,
206 rxq->thread_index, format_vnet_hw_if_rx_mode, rxq->mode);
207 }
208 }
209
Damjan Marion1bd6cbb2021-04-15 13:12:51 +0200210 if (vec_len (hi->tx_queue_indices))
211 {
212 s = format (s, "\n%UTX Queues:", format_white_space, indent + 2);
Mohsin Kazmi0d05c0d2021-11-09 17:44:10 +0000213 s = format (
214 s, "\n%UTX Hash: %U", format_white_space, indent + 4, format_vnet_hash,
215 vnet_hash_function_from_func (hi->hf, hw_class->tx_hash_fn_type));
Damjan Marion3755ac12021-05-22 12:13:48 +0200216 s = format (s, "\n%U%-6s%-7s%-15s", format_white_space, indent + 4,
217 "queue", "shared", "thread(s)");
Damjan Marion1bd6cbb2021-04-15 13:12:51 +0200218 for (int i = 0; i < vec_len (hi->tx_queue_indices); i++)
219 {
220 vnet_hw_if_tx_queue_t *txq;
221 txq = vnet_hw_if_get_tx_queue (vnm, hi->tx_queue_indices[i]);
Damjan Marion3755ac12021-05-22 12:13:48 +0200222 s = format (
223 s, "\n%U%-6u%-7s%U", format_white_space, indent + 4, txq->queue_id,
224 clib_bitmap_count_set_bits (txq->threads) > 1 ? "yes" : "no",
225 format_bitmap_list, txq->threads);
Damjan Marion1bd6cbb2021-04-15 13:12:51 +0200226 }
227 }
228
Chenmin Sunc4665092020-07-06 08:20:39 +0800229 if (hi->rss_queues)
230 {
231 s = format (s, "\n%URSS queues: %U", format_white_space, indent + 2,
232 format_vnet_hw_interface_rss_queues, hi->rss_queues);
233 }
234
Ed Warnickecb9cada2015-12-08 15:45:58 -0700235 if (verbose)
236 {
237 if (hw_class->format_device)
238 s = format (s, "\n%U%U",
239 format_white_space, indent + 2,
240 hw_class->format_device, hi->hw_if_index, verbose);
241 else
242 {
243 s = format (s, "\n%U%s",
Dave Barachba868bb2016-08-08 09:51:21 -0400244 format_white_space, indent + 2, hw_class->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245 if (hw_class->format_address && vec_len (hi->hw_address) > 0)
Dave Barachba868bb2016-08-08 09:51:21 -0400246 s =
247 format (s, " address %U", hw_class->format_address,
248 hi->hw_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249 }
250
251 if (dev_class->format_device)
252 s = format (s, "\n%U%U",
253 format_white_space, indent + 2,
254 dev_class->format_device, hi->dev_instance, verbose);
255 }
256
257 return s;
258}
259
Dave Barachba868bb2016-08-08 09:51:21 -0400260u8 *
261format_vnet_sw_interface_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700262{
Dave Barachba868bb2016-08-08 09:51:21 -0400263 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
264 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
265 vnet_sw_interface_t *si_sup =
266 vnet_get_sup_sw_interface (vnm, si->sw_if_index);
267 vnet_hw_interface_t *hi_sup;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700268
269 ASSERT (si_sup->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
270 hi_sup = vnet_get_hw_interface (vnm, si_sup->hw_if_index);
271
272 s = format (s, "%v", hi_sup->name);
273
274 if (si->type != VNET_SW_INTERFACE_TYPE_HARDWARE)
275 s = format (s, ".%d", si->sub.id);
276
277 return s;
278}
279
Dave Barachba868bb2016-08-08 09:51:21 -0400280u8 *
281format_vnet_sw_if_index_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282{
Dave Barachba868bb2016-08-08 09:51:21 -0400283 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284 u32 sw_if_index = va_arg (*args, u32);
Neale Rannsda78f952017-05-24 09:15:43 -0700285 vnet_sw_interface_t *si;
286
Dave Barach3940de32019-07-23 16:28:36 -0400287 si = vnet_get_sw_interface_or_null (vnm, sw_if_index);
Neale Rannsda78f952017-05-24 09:15:43 -0700288
289 if (NULL == si)
290 {
Nathan Skrzypczak535364e2023-12-06 17:34:57 +0100291 return format (s, "DELETED (%u)", sw_if_index);
Neale Rannsda78f952017-05-24 09:15:43 -0700292 }
293 return format (s, "%U", format_vnet_sw_interface_name, vnm, si);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294}
295
Dave Barachba868bb2016-08-08 09:51:21 -0400296u8 *
Damjan Mariona35cc142018-03-16 01:25:27 +0100297format_vnet_hw_if_index_name (u8 * s, va_list * args)
298{
299 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
300 u32 hw_if_index = va_arg (*args, u32);
301 vnet_hw_interface_t *hi;
302
303 hi = vnet_get_hw_interface (vnm, hw_if_index);
304
305 if (hi == 0)
Nathan Skrzypczak535364e2023-12-06 17:34:57 +0100306 return format (s, "DELETED (%u)", hw_if_index);
Damjan Mariona35cc142018-03-16 01:25:27 +0100307
308 return format (s, "%v", hi->name);
309}
310
311u8 *
Dave Barachba868bb2016-08-08 09:51:21 -0400312format_vnet_sw_interface_cntrs (u8 * s, vnet_interface_main_t * im,
Dave Barach5554c562019-09-11 21:35:48 -0400313 vnet_sw_interface_t * si, int json)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314{
Christophe Fontained3c008d2017-10-02 18:10:54 +0200315 u32 indent, n_printed;
Dave Barach8fdde3c2019-05-17 10:46:40 -0400316 int j, n_counters;
Dave Barach5554c562019-09-11 21:35:48 -0400317 char *x = "";
318 int json_need_comma_nl = 0;
Dave Barach8fdde3c2019-05-17 10:46:40 -0400319 u8 *n = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700320
Dave Barach5554c562019-09-11 21:35:48 -0400321 /*
322 * to output a json snippet, stick quotes in lots of places
323 * definitely deserves a one-character variable name.
324 */
325 if (json)
326 x = "\"";
327
Ed Warnickecb9cada2015-12-08 15:45:58 -0700328 indent = format_get_indent (s);
329 n_printed = 0;
330
Dave Barach8fdde3c2019-05-17 10:46:40 -0400331 n_counters = vec_len (im->combined_sw_if_counters);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332
Dave Barach8fdde3c2019-05-17 10:46:40 -0400333 /* rx, tx counters... */
334 for (j = 0; j < n_counters; j++)
335 {
336 vlib_combined_counter_main_t *cm;
337 vlib_counter_t v, vtotal;
338 vtotal.packets = 0;
339 vtotal.bytes = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340
Dave Barach8fdde3c2019-05-17 10:46:40 -0400341 cm = im->combined_sw_if_counters + j;
342 vlib_get_combined_counter (cm, si->sw_if_index, &v);
343 vtotal.packets += v.packets;
344 vtotal.bytes += v.bytes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700345
Dave Barach8fdde3c2019-05-17 10:46:40 -0400346 /* Only display non-zero counters. */
347 if (vtotal.packets == 0)
348 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700349
Dave Barach5554c562019-09-11 21:35:48 -0400350 if (json)
351 {
352 if (json_need_comma_nl)
353 {
354 vec_add1 (s, ',');
355 vec_add1 (s, '\n');
356 }
357 s = format (s, "%s%s_packets%s: %s%Ld%s,\n", x, cm->name, x, x,
358 vtotal.packets, x);
359 s = format (s, "%s%s_bytes%s: %s%Ld%s", x, cm->name, x, x,
360 vtotal.bytes, x);
361 json_need_comma_nl = 1;
362 continue;
363 }
364
Dave Barach8fdde3c2019-05-17 10:46:40 -0400365 if (n_printed > 0)
366 s = format (s, "\n%U", format_white_space, indent);
367 n_printed += 2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368
Dave Barach8fdde3c2019-05-17 10:46:40 -0400369 if (n)
Damjan Marion8bea5892022-04-04 22:40:45 +0200370 vec_set_len (n, 0);
Dave Barach8fdde3c2019-05-17 10:46:40 -0400371 n = format (n, "%s packets", cm->name);
372 s = format (s, "%-16v%16Ld", n, vtotal.packets);
373
Damjan Marion8bea5892022-04-04 22:40:45 +0200374 vec_set_len (n, 0);
Dave Barach8fdde3c2019-05-17 10:46:40 -0400375 n = format (n, "%s bytes", cm->name);
376 s = format (s, "\n%U%-16v%16Ld",
377 format_white_space, indent, n, vtotal.bytes);
378 }
379 vec_free (n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700380
381 {
Dave Barachba868bb2016-08-08 09:51:21 -0400382 vlib_simple_counter_main_t *cm;
383 u64 v, vtotal;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384
385 n_counters = vec_len (im->sw_if_counters);
386
387 for (j = 0; j < n_counters; j++)
388 {
Dave Barachba868bb2016-08-08 09:51:21 -0400389 vtotal = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700390
Dave Barach8fdde3c2019-05-17 10:46:40 -0400391 cm = im->sw_if_counters + j;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700392
Dave Barach8fdde3c2019-05-17 10:46:40 -0400393 v = vlib_get_simple_counter (cm, si->sw_if_index);
394 vtotal += v;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395
396 /* Only display non-zero counters. */
397 if (vtotal == 0)
398 continue;
399
Dave Barach5554c562019-09-11 21:35:48 -0400400 if (json)
401 {
402 if (json_need_comma_nl)
403 {
404 vec_add1 (s, ',');
405 vec_add1 (s, '\n');
406 }
407 s = format (s, "%s%s%s: %s%Ld%s", x, cm->name, x, x, vtotal, x);
408 json_need_comma_nl = 1;
409 continue;
410 }
411
412
Ed Warnickecb9cada2015-12-08 15:45:58 -0700413 if (n_printed > 0)
414 s = format (s, "\n%U", format_white_space, indent);
415 n_printed += 1;
416
417 s = format (s, "%-16s%16Ld", cm->name, vtotal);
418 }
419 }
420
421 return s;
422}
423
Ole Troand7231612018-06-07 10:17:57 +0200424static u8 *
425format_vnet_sw_interface_mtu (u8 * s, va_list * args)
426{
427 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
428
429 return format (s, "%d/%d/%d/%d", si->mtu[VNET_MTU_L3],
430 si->mtu[VNET_MTU_IP4],
431 si->mtu[VNET_MTU_IP6], si->mtu[VNET_MTU_MPLS]);
432}
433
Dave Barachba868bb2016-08-08 09:51:21 -0400434u8 *
435format_vnet_sw_interface (u8 * s, va_list * args)
Sean Hope679ea792016-02-22 15:12:01 -0500436{
Dave Barachba868bb2016-08-08 09:51:21 -0400437 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
438 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
439 vnet_interface_main_t *im = &vnm->interface_main;
Sean Hope679ea792016-02-22 15:12:01 -0500440
Dave Barachba868bb2016-08-08 09:51:21 -0400441 if (!si)
Ole Troand7231612018-06-07 10:17:57 +0200442 return format (s, "%=32s%=5s%=10s%=21s%=16s%=16s",
443 "Name", "Idx", "State", "MTU (L3/IP4/IP6/MPLS)", "Counter",
444 "Count");
Sean Hope679ea792016-02-22 15:12:01 -0500445
Ole Troand7231612018-06-07 10:17:57 +0200446 s = format (s, "%-32U%=5d%=10U%=21U",
Sean Hope679ea792016-02-22 15:12:01 -0500447 format_vnet_sw_interface_name, vnm, si, si->sw_if_index,
Ole Troand7231612018-06-07 10:17:57 +0200448 format_vnet_sw_interface_flags, si->flags,
449 format_vnet_sw_interface_mtu, si);
Sean Hope679ea792016-02-22 15:12:01 -0500450
Dave Barach5554c562019-09-11 21:35:48 -0400451 s = format_vnet_sw_interface_cntrs (s, im, si, 0 /* want json */ );
Sean Hope679ea792016-02-22 15:12:01 -0500452
453 return s;
454}
455
Dave Barachba868bb2016-08-08 09:51:21 -0400456u8 *
457format_vnet_sw_interface_name_override (u8 * s, va_list * args)
Sean Hope679ea792016-02-22 15:12:01 -0500458{
Dave Barachba868bb2016-08-08 09:51:21 -0400459 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
460 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
Sean Hope679ea792016-02-22 15:12:01 -0500461 /* caller supplied display name for this interface */
Dave Barachba868bb2016-08-08 09:51:21 -0400462 u8 *name = va_arg (*args, u8 *);
463 vnet_interface_main_t *im = &vnm->interface_main;
Sean Hope679ea792016-02-22 15:12:01 -0500464
465
Dave Barachba868bb2016-08-08 09:51:21 -0400466 if (!si)
Sean Hope679ea792016-02-22 15:12:01 -0500467 return format (s, "%=32s%=5s%=16s%=16s%=16s",
468 "Name", "Idx", "State", "Counter", "Count");
469
470 s = format (s, "%-32v%=5d%=16U",
471 name, si->sw_if_index,
472 format_vnet_sw_interface_flags, si->flags);
473
Dave Barach5554c562019-09-11 21:35:48 -0400474 s = format_vnet_sw_interface_cntrs (s, im, si, 0 /* want json */ );
Sean Hope679ea792016-02-22 15:12:01 -0500475
476 return s;
477}
478
Dave Barach7fff3d22018-11-27 16:52:59 -0500479u8 *
480format_vnet_buffer_flags (u8 * s, va_list * args)
481{
482 vlib_buffer_t *buf = va_arg (*args, vlib_buffer_t *);
483
484#define _(a,b,c,v) if (buf->flags & VNET_BUFFER_F_##b) s = format (s, "%s ", c);
485 foreach_vnet_buffer_flag;
486#undef _
487 return s;
488}
489
490u8 *
491format_vnet_buffer_opaque (u8 * s, va_list * args)
492{
493 vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
494 vnet_buffer_opaque_t *o = (vnet_buffer_opaque_t *) b->opaque;
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700495 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
496 vnet_buffer_opquae_formatter_t helper_fp;
Dave Barach7fff3d22018-11-27 16:52:59 -0500497 int i;
498
499 s = format (s, "raw: ");
500
501 for (i = 0; i < ARRAY_LEN (b->opaque); i++)
502 s = format (s, "%08x ", b->opaque[i]);
503
504 vec_add1 (s, '\n');
505
506 s = format (s,
507 "sw_if_index[VLIB_RX]: %d, sw_if_index[VLIB_TX]: %d",
508 o->sw_if_index[0], o->sw_if_index[1]);
509 vec_add1 (s, '\n');
510
511 s = format (s,
512 "L2 offset %d, L3 offset %d, L4 offset %d, feature arc index %d",
513 (u32) (o->l2_hdr_offset),
514 (u32) (o->l3_hdr_offset),
515 (u32) (o->l4_hdr_offset), (u32) (o->feature_arc_index));
516 vec_add1 (s, '\n');
517
518 s = format (s,
519 "ip.adj_index[VLIB_RX]: %d, ip.adj_index[VLIB_TX]: %d",
520 (u32) (o->ip.adj_index[0]), (u32) (o->ip.adj_index[1]));
521 vec_add1 (s, '\n');
522
523 s = format (s,
524 "ip.flow_hash: 0x%x, ip.save_protocol: 0x%x, ip.fib_index: %d",
525 o->ip.flow_hash, o->ip.save_protocol, o->ip.fib_index);
526 vec_add1 (s, '\n');
527
528 s = format (s,
529 "ip.save_rewrite_length: %d, ip.rpf_id: %d",
530 o->ip.save_rewrite_length, o->ip.rpf_id);
531 vec_add1 (s, '\n');
532
533 s = format (s,
534 "ip.icmp.type: %d ip.icmp.code: %d, ip.icmp.data: 0x%x",
535 (u32) (o->ip.icmp.type),
536 (u32) (o->ip.icmp.code), o->ip.icmp.data);
537 vec_add1 (s, '\n');
538
539 s = format (s,
540 "ip.reass.next_index: %d, ip.reass.estimated_mtu: %d",
541 o->ip.reass.next_index, (u32) (o->ip.reass.estimated_mtu));
542 vec_add1 (s, '\n');
Dave Barachd7b30662019-10-24 18:10:10 -0400543 s = format (s,
544 "ip.reass.error_next_index: %d, ip.reass.owner_thread_index: %d",
545 o->ip.reass.error_next_index,
546 (u32) (o->ip.reass.owner_thread_index));
547 vec_add1 (s, '\n');
548 s = format (s,
549 "ip.reass.ip_proto: %d, ip.reass.l4_src_port: %d",
550 o->ip.reass.ip_proto, (u32) (o->ip.reass.l4_src_port));
551 vec_add1 (s, '\n');
552 s = format (s, "ip.reass.l4_dst_port: %d", o->ip.reass.l4_dst_port);
553 vec_add1 (s, '\n');
Dave Barach7fff3d22018-11-27 16:52:59 -0500554
555 s = format (s,
556 "ip.reass.fragment_first: %d ip.reass.fragment_last: %d",
557 (u32) (o->ip.reass.fragment_first),
558 (u32) (o->ip.reass.fragment_last));
559 vec_add1 (s, '\n');
560
561 s = format (s,
562 "ip.reass.range_first: %d ip.reass.range_last: %d",
563 (u32) (o->ip.reass.range_first),
564 (u32) (o->ip.reass.range_last));
565 vec_add1 (s, '\n');
566
567 s = format (s,
568 "ip.reass.next_range_bi: 0x%x, ip.reass.ip6_frag_hdr_offset: %d",
569 o->ip.reass.next_range_bi,
570 (u32) (o->ip.reass.ip6_frag_hdr_offset));
571 vec_add1 (s, '\n');
572
573 s = format (s,
574 "mpls.ttl: %d, mpls.exp: %d, mpls.first: %d, "
575 "mpls.save_rewrite_length: %d, mpls.bier.n_bytes: %d",
576 (u32) (o->mpls.ttl), (u32) (o->mpls.exp), (u32) (o->mpls.first),
577 o->mpls.save_rewrite_length, (u32) (o->mpls.bier.n_bytes));
578 vec_add1 (s, '\n');
Dave Barachd7b30662019-10-24 18:10:10 -0400579 s = format (s, "mpls.mpls_hdr_length: %d", (u32) (o->mpls.mpls_hdr_length));
580 vec_add1 (s, '\n');
Dave Barach7fff3d22018-11-27 16:52:59 -0500581
582 s = format (s,
Dave Barachd7b30662019-10-24 18:10:10 -0400583 "l2.feature_bitmap: %08x, l2.bd_index: %d, l2.l2fib_sn %d, "
584 "l2.l2_len: %d, l2.shg: %d, l2.bd_age: %d",
585 (u32) (o->l2.feature_bitmap), (u32) (o->l2.bd_index),
586 (u32) (o->l2.l2fib_sn),
587 (u32) (o->l2.l2_len), (u32) (o->l2.shg), (u32) (o->l2.bd_age));
Dave Barach7fff3d22018-11-27 16:52:59 -0500588 vec_add1 (s, '\n');
589
590 s = format (s,
Dave Barach7bdaa3f2018-12-03 11:33:09 -0500591 "l2.feature_bitmap_input: %U, L2.feature_bitmap_output: %U",
Neale Ranns47a3d992020-09-29 15:38:51 +0000592 format_l2_input_feature_bitmap, o->l2.feature_bitmap, 0,
Dave Barach7bdaa3f2018-12-03 11:33:09 -0500593 format_l2_output_features, o->l2.feature_bitmap, 0);
594 vec_add1 (s, '\n');
595
596 s = format (s,
Dave Barach7fff3d22018-11-27 16:52:59 -0500597 "l2t.next_index: %d, l2t.session_index: %d",
598 (u32) (o->l2t.next_index), o->l2t.session_index);
599 vec_add1 (s, '\n');
600
601 s = format (s,
602 "l2_classify.table_index: %d, l2_classify.opaque_index: %d, "
Benoît Ganneb03eec92022-06-08 10:49:17 +0200603 "l2_classify.hash: 0x%lx",
604 o->l2_classify.table_index, o->l2_classify.opaque_index,
605 o->l2_classify.hash);
Dave Barach7fff3d22018-11-27 16:52:59 -0500606 vec_add1 (s, '\n');
607
608 s = format (s, "policer.index: %d", o->policer.index);
609 vec_add1 (s, '\n');
610
Dave Barachd7b30662019-10-24 18:10:10 -0400611 s = format (s, "ipsec.sad_index: %d, ipsec.protect_index",
612 o->ipsec.sad_index, o->ipsec.protect_index);
Dave Barach7fff3d22018-11-27 16:52:59 -0500613 vec_add1 (s, '\n');
614
615 s = format (s, "map.mtu: %d", (u32) (o->map.mtu));
616 vec_add1 (s, '\n');
617
618 s = format (s,
Dave Barachd7b30662019-10-24 18:10:10 -0400619 "map_t.map_domain_index: %d, map_t.v6.saddr: 0x%x, "
620 "map_t.v6.daddr: 0x%x, map_t.v6.frag_offset: %d, "
621 "map_t.v6.l4_offset: %d, map_t.v6.l4_protocol: %d, "
622 "map.t.checksum_offset: %d",
623 o->map_t.map_domain_index,
Dave Barach7fff3d22018-11-27 16:52:59 -0500624 o->map_t.v6.saddr,
625 o->map_t.v6.daddr,
Dave Barachd7b30662019-10-24 18:10:10 -0400626 (u32) (o->map_t.v6.frag_offset), (u32) (o->map_t.v6.l4_offset),
627 (u32) (o->map_t.v6.l4_protocol),
628 (u32) (o->map_t.checksum_offset));
Dave Barach7fff3d22018-11-27 16:52:59 -0500629 vec_add1 (s, '\n');
630
631 s = format (s,
632 "map_t.v6.l4_protocol: %d, map_t.checksum_offset: %d, "
633 "map_t.mtu: %d",
634 (u32) (o->map_t.v6.l4_protocol),
635 (u32) (o->map_t.checksum_offset), (u32) (o->map_t.mtu));
636 vec_add1 (s, '\n');
637
638 s = format (s,
639 "ip_frag.mtu: %d, ip_frag.next_index: %d, ip_frag.flags: 0x%x",
640 (u32) (o->ip_frag.mtu),
641 (u32) (o->ip_frag.next_index), (u32) (o->ip_frag.flags));
642 vec_add1 (s, '\n');
643
644 s = format (s, "cop.current_config_index: %d", o->cop.current_config_index);
645 vec_add1 (s, '\n');
646
647 s = format (s, "lisp.overlay_afi: %d", (u32) (o->lisp.overlay_afi));
648 vec_add1 (s, '\n');
649
650 s = format
Dave Barachd7b30662019-10-24 18:10:10 -0400651 (s,
652 "tcp.connection_index: %d, tcp.seq_number: %d, tcp.next_node_opaque: %d "
653 "tcp.seq_end: %d, tcp.ack_number: %d, tcp.hdr_offset: %d, "
654 "tcp.data_offset: %d", o->tcp.connection_index, o->tcp.next_node_opaque,
655 o->tcp.seq_number, o->tcp.seq_end, o->tcp.ack_number,
Dave Barach7fff3d22018-11-27 16:52:59 -0500656 (u32) (o->tcp.hdr_offset), (u32) (o->tcp.data_offset));
657 vec_add1 (s, '\n');
658
659 s = format (s,
660 "tcp.data_len: %d, tcp.flags: 0x%x",
661 (u32) (o->tcp.data_len), (u32) (o->tcp.flags));
662 vec_add1 (s, '\n');
663
Dave Barach7fff3d22018-11-27 16:52:59 -0500664 s = format (s, "snat.flags: 0x%x", o->snat.flags);
665 vec_add1 (s, '\n');
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700666
667 for (i = 0; i < vec_len (im->buffer_opaque_format_helpers); i++)
668 {
669 helper_fp = im->buffer_opaque_format_helpers[i];
670 s = (*helper_fp) (b, s);
671 }
672
Dave Barach7fff3d22018-11-27 16:52:59 -0500673 return s;
674}
675
676u8 *
677format_vnet_buffer_opaque2 (u8 * s, va_list * args)
678{
679 vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
680 vnet_buffer_opaque2_t *o = (vnet_buffer_opaque2_t *) b->opaque2;
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700681 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
682 vnet_buffer_opquae_formatter_t helper_fp;
Dave Barach7fff3d22018-11-27 16:52:59 -0500683
684 int i;
685
686 s = format (s, "raw: ");
687
688 for (i = 0; i < ARRAY_LEN (b->opaque2); i++)
689 s = format (s, "%08x ", b->opaque2[i]);
690 vec_add1 (s, '\n');
691
692 s = format (s, "qos.bits: %x, qos.source: %x",
693 (u32) (o->qos.bits), (u32) (o->qos.source));
694 vec_add1 (s, '\n');
695 s = format (s, "loop_counter: %d", o->loop_counter);
696 vec_add1 (s, '\n');
697
Dave Barachd7b30662019-10-24 18:10:10 -0400698 s = format (s, "gso_size: %d, gso_l4_hdr_sz: %d",
699 (u32) (o->gso_size), (u32) (o->gso_l4_hdr_sz));
700 vec_add1 (s, '\n');
701
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700702 for (i = 0; i < vec_len (im->buffer_opaque2_format_helpers); i++)
703 {
704 helper_fp = im->buffer_opaque2_format_helpers[i];
705 s = (*helper_fp) (b, s);
706 }
707
Dave Barach7fff3d22018-11-27 16:52:59 -0500708 return s;
709}
710
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700711void
712vnet_register_format_buffer_opaque_helper (vnet_buffer_opquae_formatter_t fp)
713{
714 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
715 vec_add1 (im->buffer_opaque_format_helpers, fp);
716}
717
718void
719vnet_register_format_buffer_opaque2_helper (vnet_buffer_opquae_formatter_t fp)
720{
721 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
722 vec_add1 (im->buffer_opaque2_format_helpers, fp);
723}
724
725
Dave Barachba868bb2016-08-08 09:51:21 -0400726uword
Dave Barach08eb2bb2020-04-15 09:34:43 -0400727unformat_vnet_buffer_flags (unformat_input_t * input, va_list * args)
728{
729 u32 *flagp = va_arg (*args, u32 *);
730 int rv = 0;
731 u32 flags = 0;
732
733 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
734 {
735 /* Red herring, there is no such buffer flag */
Mohsin Kazmi68095382021-02-10 11:26:24 +0100736 if (unformat (input, "avail10"))
Dave Barach08eb2bb2020-04-15 09:34:43 -0400737 return 0;
738#define _(bit,enum,str,verbose) \
739 else if (unformat (input, str)) \
740 { \
741 flags |= (1 << LOG2_VLIB_BUFFER_FLAG_USER(bit)); \
742 rv = 1; \
743 }
744 foreach_vnet_buffer_flag
745#undef _
746 else
747 break;
748 }
749 if (rv)
750 *flagp = flags;
751 return rv;
752}
753
754uword
Mohsin Kazmi68095382021-02-10 11:26:24 +0100755unformat_vnet_buffer_offload_flags (unformat_input_t *input, va_list *args)
756{
757 u32 *flagp = va_arg (*args, u32 *);
758 int rv = 0;
Mohsin Kazmi36f7a6a2021-05-05 14:26:38 +0200759 vnet_buffer_oflags_t oflags = 0;
Mohsin Kazmi68095382021-02-10 11:26:24 +0100760
761 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
762 {
763 if (0)
764 ;
765#define _(bit, enum, str, verbose) \
766 else if (unformat (input, str)) \
767 { \
768 oflags |= (1 << bit); \
769 rv = 1; \
770 }
771 foreach_vnet_buffer_offload_flag
772#undef _
773 else break;
774 }
775 if (rv)
Mohsin Kazmi36f7a6a2021-05-05 14:26:38 +0200776 *flagp = (u32) oflags;
Mohsin Kazmi68095382021-02-10 11:26:24 +0100777 return rv;
778}
779
780uword
Dave Barachba868bb2016-08-08 09:51:21 -0400781unformat_vnet_hw_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700782{
Dave Barachba868bb2016-08-08 09:51:21 -0400783 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
784 u32 *hw_if_index = va_arg (*args, u32 *);
785 vnet_interface_main_t *im = &vnm->interface_main;
786 vnet_device_class_t *c;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700787
788 /* Try per device class functions first. */
789 vec_foreach (c, im->device_classes)
Dave Barachba868bb2016-08-08 09:51:21 -0400790 {
791 if (c->unformat_device_name
792 && unformat_user (input, c->unformat_device_name, hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700793 return 1;
Dave Barachba868bb2016-08-08 09:51:21 -0400794 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700795
796 return unformat_user (input, unformat_hash_vec_string,
797 im->hw_interface_by_name, hw_if_index);
798}
799
Dave Barachba868bb2016-08-08 09:51:21 -0400800uword
801unformat_vnet_sw_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700802{
Dave Barachba868bb2016-08-08 09:51:21 -0400803 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
804 u32 *result = va_arg (*args, u32 *);
805 vnet_hw_interface_t *hi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700806 u32 hw_if_index, id, id_specified;
Eyal Bari3212c572017-03-06 11:47:50 +0200807 u32 sw_if_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400808 u8 *if_name = 0;
809 uword *p, error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700810
811 id = ~0;
812 if (unformat (input, "%_%v.%d%_", &if_name, &id)
813 && ((p = hash_get (vnm->interface_main.hw_interface_by_name, if_name))))
814 {
815 hw_if_index = p[0];
816 id_specified = 1;
817 }
Dave Barachba868bb2016-08-08 09:51:21 -0400818 else
819 if (unformat (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700820 id_specified = 0;
821 else
822 goto done;
823
824 hi = vnet_get_hw_interface (vnm, hw_if_index);
Dave Barachba868bb2016-08-08 09:51:21 -0400825 if (!id_specified)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700826 {
Eyal Bari3212c572017-03-06 11:47:50 +0200827 sw_if_index = hi->sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700828 }
829 else
830 {
Dave Barachba868bb2016-08-08 09:51:21 -0400831 if (!(p = hash_get (hi->sub_interface_sw_if_index_by_id, id)))
Eyal Bari3212c572017-03-06 11:47:50 +0200832 goto done;
833 sw_if_index = p[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700834 }
Eyal Bari3212c572017-03-06 11:47:50 +0200835 if (!vnet_sw_interface_is_api_visible (vnm, sw_if_index))
836 goto done;
837 *result = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700838 error = 1;
Dave Barachba868bb2016-08-08 09:51:21 -0400839done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700840 vec_free (if_name);
841 return error;
842}
843
Dave Barachba868bb2016-08-08 09:51:21 -0400844uword
845unformat_vnet_sw_interface_flags (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700846{
Dave Barachba868bb2016-08-08 09:51:21 -0400847 u32 *result = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700848 u32 flags = 0;
849
850 if (unformat (input, "up"))
851 flags |= VNET_SW_INTERFACE_FLAG_ADMIN_UP;
852 else if (unformat (input, "down"))
853 flags &= ~VNET_SW_INTERFACE_FLAG_ADMIN_UP;
854 else if (unformat (input, "punt"))
855 flags |= VNET_SW_INTERFACE_FLAG_PUNT;
856 else if (unformat (input, "enable"))
857 flags &= ~VNET_SW_INTERFACE_FLAG_PUNT;
858 else
859 return 0;
860
861 *result = flags;
862 return 1;
863}
864
Dave Barachba868bb2016-08-08 09:51:21 -0400865uword
866unformat_vnet_hw_interface_flags (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700867{
Dave Barachba868bb2016-08-08 09:51:21 -0400868 u32 *result = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700869 u32 flags = 0;
870
871 if (unformat (input, "up"))
872 flags |= VNET_HW_INTERFACE_FLAG_LINK_UP;
873 else if (unformat (input, "down"))
874 flags &= ~VNET_HW_INTERFACE_FLAG_LINK_UP;
875 else
876 return 0;
877
878 *result = flags;
879 return 1;
880}
881
Dave Barachba868bb2016-08-08 09:51:21 -0400882/*
883 * fd.io coding-style-patch-verification: ON
884 *
885 * Local Variables:
886 * eval: (c-set-style "gnu")
887 * End:
888 */