blob: d1fe9b877bb6e5234dd8804aaa35ab0d802a7308 [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
123 if (link_speed == 0)
124 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 {
146 /* *INDENT-OFF* */
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100147 clib_bitmap_foreach (i, bitmap) {
Chenmin Sunc4665092020-07-06 08:20:39 +0800148 s = format (s, "%u ", i);
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100149 }
Chenmin Sunc4665092020-07-06 08:20:39 +0800150 /* *INDENT-ON* */
151 }
152
153 return s;
154}
Damjan Marion5100aa92018-11-08 15:30:16 +0100155
156u8 *
Dave Barachba868bb2016-08-08 09:51:21 -0400157format_vnet_hw_interface (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158{
Dave Barachba868bb2016-08-08 09:51:21 -0400159 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
160 vnet_hw_interface_t *hi = va_arg (*args, vnet_hw_interface_t *);
161 vnet_hw_interface_class_t *hw_class;
162 vnet_device_class_t *dev_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163 int verbose = va_arg (*args, int);
Christophe Fontained3c008d2017-10-02 18:10:54 +0200164 u32 indent;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700165
Dave Barachba868bb2016-08-08 09:51:21 -0400166 if (!hi)
167 return format (s, "%=32s%=6s%=8s%s", "Name", "Idx", "Link", "Hardware");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168
169 indent = format_get_indent (s);
170
John Lobcebbb92016-04-05 15:47:43 -0400171 s = format (s, "%-32v%=6d", hi->name, hi->hw_if_index);
172
173 if (hi->bond_info == VNET_HW_INTERFACE_BOND_INFO_SLAVE)
174 s = format (s, "%=8s", "slave");
175 else
Dave Barachba868bb2016-08-08 09:51:21 -0400176 s = format (s, "%=8s",
John Lobcebbb92016-04-05 15:47:43 -0400177 hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP ? "up" : "down");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178
179 hw_class = vnet_get_hw_interface_class (vnm, hi->hw_class_index);
180 dev_class = vnet_get_device_class (vnm, hi->dev_class_index);
181
Dave Barachba868bb2016-08-08 09:51:21 -0400182 if (hi->bond_info && (hi->bond_info != VNET_HW_INTERFACE_BOND_INFO_SLAVE))
John Lobcebbb92016-04-05 15:47:43 -0400183 {
184 int hw_idx;
185 s = format (s, "Slave-Idx:");
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100186 clib_bitmap_foreach (hw_idx, hi->bond_info)
187 s = format (s, " %d", hw_idx);
John Lobcebbb92016-04-05 15:47:43 -0400188 }
Dave Barachba868bb2016-08-08 09:51:21 -0400189 else if (dev_class->format_device_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700190 s = format (s, "%U", dev_class->format_device_name, hi->dev_instance);
191 else
192 s = format (s, "%s%d", dev_class->name, hi->dev_instance);
193
Damjan Marion5100aa92018-11-08 15:30:16 +0100194 s = format (s, "\n%ULink speed: %U", format_white_space, indent + 2,
195 format_vnet_hw_interface_link_speed, hi->link_speed);
196
Damjan Marion94100532020-11-06 23:25:57 +0100197 if (vec_len (hi->rx_queue_indices))
198 {
199 s = format (s, "\n%URX Queues:", format_white_space, indent + 2);
200 s = format (s, "\n%U%-6s%-15s%-10s", format_white_space, indent + 4,
201 "queue", "thread", "mode");
202 for (int i = 0; i < vec_len (hi->rx_queue_indices); i++)
203 {
204 vnet_hw_if_rx_queue_t *rxq;
205 rxq = vnet_hw_if_get_rx_queue (vnm, hi->rx_queue_indices[i]);
206 s = format (s, "\n%U%-6u%-15U%-10U", format_white_space, indent + 4,
207 rxq->queue_id, format_vlib_thread_name_and_index,
208 rxq->thread_index, format_vnet_hw_if_rx_mode, rxq->mode);
209 }
210 }
211
Damjan Marion1bd6cbb2021-04-15 13:12:51 +0200212 if (vec_len (hi->tx_queue_indices))
213 {
214 s = format (s, "\n%UTX Queues:", format_white_space, indent + 2);
Mohsin Kazmi0d05c0d2021-11-09 17:44:10 +0000215 s = format (
216 s, "\n%UTX Hash: %U", format_white_space, indent + 4, format_vnet_hash,
217 vnet_hash_function_from_func (hi->hf, hw_class->tx_hash_fn_type));
Damjan Marion3755ac12021-05-22 12:13:48 +0200218 s = format (s, "\n%U%-6s%-7s%-15s", format_white_space, indent + 4,
219 "queue", "shared", "thread(s)");
Damjan Marion1bd6cbb2021-04-15 13:12:51 +0200220 for (int i = 0; i < vec_len (hi->tx_queue_indices); i++)
221 {
222 vnet_hw_if_tx_queue_t *txq;
223 txq = vnet_hw_if_get_tx_queue (vnm, hi->tx_queue_indices[i]);
Damjan Marion3755ac12021-05-22 12:13:48 +0200224 s = format (
225 s, "\n%U%-6u%-7s%U", format_white_space, indent + 4, txq->queue_id,
226 clib_bitmap_count_set_bits (txq->threads) > 1 ? "yes" : "no",
227 format_bitmap_list, txq->threads);
Damjan Marion1bd6cbb2021-04-15 13:12:51 +0200228 }
229 }
230
Chenmin Sunc4665092020-07-06 08:20:39 +0800231 if (hi->rss_queues)
232 {
233 s = format (s, "\n%URSS queues: %U", format_white_space, indent + 2,
234 format_vnet_hw_interface_rss_queues, hi->rss_queues);
235 }
236
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237 if (verbose)
238 {
239 if (hw_class->format_device)
240 s = format (s, "\n%U%U",
241 format_white_space, indent + 2,
242 hw_class->format_device, hi->hw_if_index, verbose);
243 else
244 {
245 s = format (s, "\n%U%s",
Dave Barachba868bb2016-08-08 09:51:21 -0400246 format_white_space, indent + 2, hw_class->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247 if (hw_class->format_address && vec_len (hi->hw_address) > 0)
Dave Barachba868bb2016-08-08 09:51:21 -0400248 s =
249 format (s, " address %U", hw_class->format_address,
250 hi->hw_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700251 }
252
253 if (dev_class->format_device)
254 s = format (s, "\n%U%U",
255 format_white_space, indent + 2,
256 dev_class->format_device, hi->dev_instance, verbose);
257 }
258
259 return s;
260}
261
Dave Barachba868bb2016-08-08 09:51:21 -0400262u8 *
263format_vnet_sw_interface_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264{
Dave Barachba868bb2016-08-08 09:51:21 -0400265 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
266 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
267 vnet_sw_interface_t *si_sup =
268 vnet_get_sup_sw_interface (vnm, si->sw_if_index);
269 vnet_hw_interface_t *hi_sup;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270
271 ASSERT (si_sup->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
272 hi_sup = vnet_get_hw_interface (vnm, si_sup->hw_if_index);
273
274 s = format (s, "%v", hi_sup->name);
275
276 if (si->type != VNET_SW_INTERFACE_TYPE_HARDWARE)
277 s = format (s, ".%d", si->sub.id);
278
279 return s;
280}
281
Dave Barachba868bb2016-08-08 09:51:21 -0400282u8 *
283format_vnet_sw_if_index_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284{
Dave Barachba868bb2016-08-08 09:51:21 -0400285 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286 u32 sw_if_index = va_arg (*args, u32);
Neale Rannsda78f952017-05-24 09:15:43 -0700287 vnet_sw_interface_t *si;
288
Dave Barach3940de32019-07-23 16:28:36 -0400289 si = vnet_get_sw_interface_or_null (vnm, sw_if_index);
Neale Rannsda78f952017-05-24 09:15:43 -0700290
291 if (NULL == si)
292 {
293 return format (s, "DELETED");
294 }
295 return format (s, "%U", format_vnet_sw_interface_name, vnm, si);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700296}
297
Dave Barachba868bb2016-08-08 09:51:21 -0400298u8 *
Damjan Mariona35cc142018-03-16 01:25:27 +0100299format_vnet_hw_if_index_name (u8 * s, va_list * args)
300{
301 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
302 u32 hw_if_index = va_arg (*args, u32);
303 vnet_hw_interface_t *hi;
304
305 hi = vnet_get_hw_interface (vnm, hw_if_index);
306
307 if (hi == 0)
308 return format (s, "DELETED");
309
310 return format (s, "%v", hi->name);
311}
312
313u8 *
Dave Barachba868bb2016-08-08 09:51:21 -0400314format_vnet_sw_interface_cntrs (u8 * s, vnet_interface_main_t * im,
Dave Barach5554c562019-09-11 21:35:48 -0400315 vnet_sw_interface_t * si, int json)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316{
Christophe Fontained3c008d2017-10-02 18:10:54 +0200317 u32 indent, n_printed;
Dave Barach8fdde3c2019-05-17 10:46:40 -0400318 int j, n_counters;
Dave Barach5554c562019-09-11 21:35:48 -0400319 char *x = "";
320 int json_need_comma_nl = 0;
Dave Barach8fdde3c2019-05-17 10:46:40 -0400321 u8 *n = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700322
Dave Barach5554c562019-09-11 21:35:48 -0400323 /*
324 * to output a json snippet, stick quotes in lots of places
325 * definitely deserves a one-character variable name.
326 */
327 if (json)
328 x = "\"";
329
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330 indent = format_get_indent (s);
331 n_printed = 0;
332
Dave Barach8fdde3c2019-05-17 10:46:40 -0400333 n_counters = vec_len (im->combined_sw_if_counters);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334
Dave Barach8fdde3c2019-05-17 10:46:40 -0400335 /* rx, tx counters... */
336 for (j = 0; j < n_counters; j++)
337 {
338 vlib_combined_counter_main_t *cm;
339 vlib_counter_t v, vtotal;
340 vtotal.packets = 0;
341 vtotal.bytes = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700342
Dave Barach8fdde3c2019-05-17 10:46:40 -0400343 cm = im->combined_sw_if_counters + j;
344 vlib_get_combined_counter (cm, si->sw_if_index, &v);
345 vtotal.packets += v.packets;
346 vtotal.bytes += v.bytes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700347
Dave Barach8fdde3c2019-05-17 10:46:40 -0400348 /* Only display non-zero counters. */
349 if (vtotal.packets == 0)
350 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351
Dave Barach5554c562019-09-11 21:35:48 -0400352 if (json)
353 {
354 if (json_need_comma_nl)
355 {
356 vec_add1 (s, ',');
357 vec_add1 (s, '\n');
358 }
359 s = format (s, "%s%s_packets%s: %s%Ld%s,\n", x, cm->name, x, x,
360 vtotal.packets, x);
361 s = format (s, "%s%s_bytes%s: %s%Ld%s", x, cm->name, x, x,
362 vtotal.bytes, x);
363 json_need_comma_nl = 1;
364 continue;
365 }
366
Dave Barach8fdde3c2019-05-17 10:46:40 -0400367 if (n_printed > 0)
368 s = format (s, "\n%U", format_white_space, indent);
369 n_printed += 2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700370
Dave Barach8fdde3c2019-05-17 10:46:40 -0400371 if (n)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700372 _vec_len (n) = 0;
Dave Barach8fdde3c2019-05-17 10:46:40 -0400373 n = format (n, "%s packets", cm->name);
374 s = format (s, "%-16v%16Ld", n, vtotal.packets);
375
376 _vec_len (n) = 0;
377 n = format (n, "%s bytes", cm->name);
378 s = format (s, "\n%U%-16v%16Ld",
379 format_white_space, indent, n, vtotal.bytes);
380 }
381 vec_free (n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700382
383 {
Dave Barachba868bb2016-08-08 09:51:21 -0400384 vlib_simple_counter_main_t *cm;
385 u64 v, vtotal;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386
387 n_counters = vec_len (im->sw_if_counters);
388
389 for (j = 0; j < n_counters; j++)
390 {
Dave Barachba868bb2016-08-08 09:51:21 -0400391 vtotal = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700392
Dave Barach8fdde3c2019-05-17 10:46:40 -0400393 cm = im->sw_if_counters + j;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700394
Dave Barach8fdde3c2019-05-17 10:46:40 -0400395 v = vlib_get_simple_counter (cm, si->sw_if_index);
396 vtotal += v;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397
398 /* Only display non-zero counters. */
399 if (vtotal == 0)
400 continue;
401
Dave Barach5554c562019-09-11 21:35:48 -0400402 if (json)
403 {
404 if (json_need_comma_nl)
405 {
406 vec_add1 (s, ',');
407 vec_add1 (s, '\n');
408 }
409 s = format (s, "%s%s%s: %s%Ld%s", x, cm->name, x, x, vtotal, x);
410 json_need_comma_nl = 1;
411 continue;
412 }
413
414
Ed Warnickecb9cada2015-12-08 15:45:58 -0700415 if (n_printed > 0)
416 s = format (s, "\n%U", format_white_space, indent);
417 n_printed += 1;
418
419 s = format (s, "%-16s%16Ld", cm->name, vtotal);
420 }
421 }
422
423 return s;
424}
425
Ole Troand7231612018-06-07 10:17:57 +0200426static u8 *
427format_vnet_sw_interface_mtu (u8 * s, va_list * args)
428{
429 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
430
431 return format (s, "%d/%d/%d/%d", si->mtu[VNET_MTU_L3],
432 si->mtu[VNET_MTU_IP4],
433 si->mtu[VNET_MTU_IP6], si->mtu[VNET_MTU_MPLS]);
434}
435
Dave Barachba868bb2016-08-08 09:51:21 -0400436u8 *
437format_vnet_sw_interface (u8 * s, va_list * args)
Sean Hope679ea792016-02-22 15:12:01 -0500438{
Dave Barachba868bb2016-08-08 09:51:21 -0400439 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
440 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
441 vnet_interface_main_t *im = &vnm->interface_main;
Sean Hope679ea792016-02-22 15:12:01 -0500442
Dave Barachba868bb2016-08-08 09:51:21 -0400443 if (!si)
Ole Troand7231612018-06-07 10:17:57 +0200444 return format (s, "%=32s%=5s%=10s%=21s%=16s%=16s",
445 "Name", "Idx", "State", "MTU (L3/IP4/IP6/MPLS)", "Counter",
446 "Count");
Sean Hope679ea792016-02-22 15:12:01 -0500447
Ole Troand7231612018-06-07 10:17:57 +0200448 s = format (s, "%-32U%=5d%=10U%=21U",
Sean Hope679ea792016-02-22 15:12:01 -0500449 format_vnet_sw_interface_name, vnm, si, si->sw_if_index,
Ole Troand7231612018-06-07 10:17:57 +0200450 format_vnet_sw_interface_flags, si->flags,
451 format_vnet_sw_interface_mtu, si);
Sean Hope679ea792016-02-22 15:12:01 -0500452
Dave Barach5554c562019-09-11 21:35:48 -0400453 s = format_vnet_sw_interface_cntrs (s, im, si, 0 /* want json */ );
Sean Hope679ea792016-02-22 15:12:01 -0500454
455 return s;
456}
457
Dave Barachba868bb2016-08-08 09:51:21 -0400458u8 *
459format_vnet_sw_interface_name_override (u8 * s, va_list * args)
Sean Hope679ea792016-02-22 15:12:01 -0500460{
Dave Barachba868bb2016-08-08 09:51:21 -0400461 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
462 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
Sean Hope679ea792016-02-22 15:12:01 -0500463 /* caller supplied display name for this interface */
Dave Barachba868bb2016-08-08 09:51:21 -0400464 u8 *name = va_arg (*args, u8 *);
465 vnet_interface_main_t *im = &vnm->interface_main;
Sean Hope679ea792016-02-22 15:12:01 -0500466
467
Dave Barachba868bb2016-08-08 09:51:21 -0400468 if (!si)
Sean Hope679ea792016-02-22 15:12:01 -0500469 return format (s, "%=32s%=5s%=16s%=16s%=16s",
470 "Name", "Idx", "State", "Counter", "Count");
471
472 s = format (s, "%-32v%=5d%=16U",
473 name, si->sw_if_index,
474 format_vnet_sw_interface_flags, si->flags);
475
Dave Barach5554c562019-09-11 21:35:48 -0400476 s = format_vnet_sw_interface_cntrs (s, im, si, 0 /* want json */ );
Sean Hope679ea792016-02-22 15:12:01 -0500477
478 return s;
479}
480
Dave Barach7fff3d22018-11-27 16:52:59 -0500481u8 *
482format_vnet_buffer_flags (u8 * s, va_list * args)
483{
484 vlib_buffer_t *buf = va_arg (*args, vlib_buffer_t *);
485
486#define _(a,b,c,v) if (buf->flags & VNET_BUFFER_F_##b) s = format (s, "%s ", c);
487 foreach_vnet_buffer_flag;
488#undef _
489 return s;
490}
491
492u8 *
493format_vnet_buffer_opaque (u8 * s, va_list * args)
494{
495 vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
496 vnet_buffer_opaque_t *o = (vnet_buffer_opaque_t *) b->opaque;
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700497 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
498 vnet_buffer_opquae_formatter_t helper_fp;
Dave Barach7fff3d22018-11-27 16:52:59 -0500499 int i;
500
501 s = format (s, "raw: ");
502
503 for (i = 0; i < ARRAY_LEN (b->opaque); i++)
504 s = format (s, "%08x ", b->opaque[i]);
505
506 vec_add1 (s, '\n');
507
508 s = format (s,
509 "sw_if_index[VLIB_RX]: %d, sw_if_index[VLIB_TX]: %d",
510 o->sw_if_index[0], o->sw_if_index[1]);
511 vec_add1 (s, '\n');
512
513 s = format (s,
514 "L2 offset %d, L3 offset %d, L4 offset %d, feature arc index %d",
515 (u32) (o->l2_hdr_offset),
516 (u32) (o->l3_hdr_offset),
517 (u32) (o->l4_hdr_offset), (u32) (o->feature_arc_index));
518 vec_add1 (s, '\n');
519
520 s = format (s,
521 "ip.adj_index[VLIB_RX]: %d, ip.adj_index[VLIB_TX]: %d",
522 (u32) (o->ip.adj_index[0]), (u32) (o->ip.adj_index[1]));
523 vec_add1 (s, '\n');
524
525 s = format (s,
526 "ip.flow_hash: 0x%x, ip.save_protocol: 0x%x, ip.fib_index: %d",
527 o->ip.flow_hash, o->ip.save_protocol, o->ip.fib_index);
528 vec_add1 (s, '\n');
529
530 s = format (s,
531 "ip.save_rewrite_length: %d, ip.rpf_id: %d",
532 o->ip.save_rewrite_length, o->ip.rpf_id);
533 vec_add1 (s, '\n');
534
535 s = format (s,
536 "ip.icmp.type: %d ip.icmp.code: %d, ip.icmp.data: 0x%x",
537 (u32) (o->ip.icmp.type),
538 (u32) (o->ip.icmp.code), o->ip.icmp.data);
539 vec_add1 (s, '\n');
540
541 s = format (s,
542 "ip.reass.next_index: %d, ip.reass.estimated_mtu: %d",
543 o->ip.reass.next_index, (u32) (o->ip.reass.estimated_mtu));
544 vec_add1 (s, '\n');
Dave Barachd7b30662019-10-24 18:10:10 -0400545 s = format (s,
546 "ip.reass.error_next_index: %d, ip.reass.owner_thread_index: %d",
547 o->ip.reass.error_next_index,
548 (u32) (o->ip.reass.owner_thread_index));
549 vec_add1 (s, '\n');
550 s = format (s,
551 "ip.reass.ip_proto: %d, ip.reass.l4_src_port: %d",
552 o->ip.reass.ip_proto, (u32) (o->ip.reass.l4_src_port));
553 vec_add1 (s, '\n');
554 s = format (s, "ip.reass.l4_dst_port: %d", o->ip.reass.l4_dst_port);
555 vec_add1 (s, '\n');
Dave Barach7fff3d22018-11-27 16:52:59 -0500556
557 s = format (s,
558 "ip.reass.fragment_first: %d ip.reass.fragment_last: %d",
559 (u32) (o->ip.reass.fragment_first),
560 (u32) (o->ip.reass.fragment_last));
561 vec_add1 (s, '\n');
562
563 s = format (s,
564 "ip.reass.range_first: %d ip.reass.range_last: %d",
565 (u32) (o->ip.reass.range_first),
566 (u32) (o->ip.reass.range_last));
567 vec_add1 (s, '\n');
568
569 s = format (s,
570 "ip.reass.next_range_bi: 0x%x, ip.reass.ip6_frag_hdr_offset: %d",
571 o->ip.reass.next_range_bi,
572 (u32) (o->ip.reass.ip6_frag_hdr_offset));
573 vec_add1 (s, '\n');
574
575 s = format (s,
576 "mpls.ttl: %d, mpls.exp: %d, mpls.first: %d, "
577 "mpls.save_rewrite_length: %d, mpls.bier.n_bytes: %d",
578 (u32) (o->mpls.ttl), (u32) (o->mpls.exp), (u32) (o->mpls.first),
579 o->mpls.save_rewrite_length, (u32) (o->mpls.bier.n_bytes));
580 vec_add1 (s, '\n');
Dave Barachd7b30662019-10-24 18:10:10 -0400581 s = format (s, "mpls.mpls_hdr_length: %d", (u32) (o->mpls.mpls_hdr_length));
582 vec_add1 (s, '\n');
Dave Barach7fff3d22018-11-27 16:52:59 -0500583
584 s = format (s,
Dave Barachd7b30662019-10-24 18:10:10 -0400585 "l2.feature_bitmap: %08x, l2.bd_index: %d, l2.l2fib_sn %d, "
586 "l2.l2_len: %d, l2.shg: %d, l2.bd_age: %d",
587 (u32) (o->l2.feature_bitmap), (u32) (o->l2.bd_index),
588 (u32) (o->l2.l2fib_sn),
589 (u32) (o->l2.l2_len), (u32) (o->l2.shg), (u32) (o->l2.bd_age));
Dave Barach7fff3d22018-11-27 16:52:59 -0500590 vec_add1 (s, '\n');
591
592 s = format (s,
Dave Barach7bdaa3f2018-12-03 11:33:09 -0500593 "l2.feature_bitmap_input: %U, L2.feature_bitmap_output: %U",
Neale Ranns47a3d992020-09-29 15:38:51 +0000594 format_l2_input_feature_bitmap, o->l2.feature_bitmap, 0,
Dave Barach7bdaa3f2018-12-03 11:33:09 -0500595 format_l2_output_features, o->l2.feature_bitmap, 0);
596 vec_add1 (s, '\n');
597
598 s = format (s,
Dave Barach7fff3d22018-11-27 16:52:59 -0500599 "l2t.next_index: %d, l2t.session_index: %d",
600 (u32) (o->l2t.next_index), o->l2t.session_index);
601 vec_add1 (s, '\n');
602
603 s = format (s,
604 "l2_classify.table_index: %d, l2_classify.opaque_index: %d, "
605 "l2_classify.hash: 0x%llx",
606 o->l2_classify.table_index,
607 o->l2_classify.opaque_index, o->l2_classify.hash);
608 vec_add1 (s, '\n');
609
610 s = format (s, "policer.index: %d", o->policer.index);
611 vec_add1 (s, '\n');
612
Dave Barachd7b30662019-10-24 18:10:10 -0400613 s = format (s, "ipsec.sad_index: %d, ipsec.protect_index",
614 o->ipsec.sad_index, o->ipsec.protect_index);
Dave Barach7fff3d22018-11-27 16:52:59 -0500615 vec_add1 (s, '\n');
616
617 s = format (s, "map.mtu: %d", (u32) (o->map.mtu));
618 vec_add1 (s, '\n');
619
620 s = format (s,
Dave Barachd7b30662019-10-24 18:10:10 -0400621 "map_t.map_domain_index: %d, map_t.v6.saddr: 0x%x, "
622 "map_t.v6.daddr: 0x%x, map_t.v6.frag_offset: %d, "
623 "map_t.v6.l4_offset: %d, map_t.v6.l4_protocol: %d, "
624 "map.t.checksum_offset: %d",
625 o->map_t.map_domain_index,
Dave Barach7fff3d22018-11-27 16:52:59 -0500626 o->map_t.v6.saddr,
627 o->map_t.v6.daddr,
Dave Barachd7b30662019-10-24 18:10:10 -0400628 (u32) (o->map_t.v6.frag_offset), (u32) (o->map_t.v6.l4_offset),
629 (u32) (o->map_t.v6.l4_protocol),
630 (u32) (o->map_t.checksum_offset));
Dave Barach7fff3d22018-11-27 16:52:59 -0500631 vec_add1 (s, '\n');
632
633 s = format (s,
634 "map_t.v6.l4_protocol: %d, map_t.checksum_offset: %d, "
635 "map_t.mtu: %d",
636 (u32) (o->map_t.v6.l4_protocol),
637 (u32) (o->map_t.checksum_offset), (u32) (o->map_t.mtu));
638 vec_add1 (s, '\n');
639
640 s = format (s,
641 "ip_frag.mtu: %d, ip_frag.next_index: %d, ip_frag.flags: 0x%x",
642 (u32) (o->ip_frag.mtu),
643 (u32) (o->ip_frag.next_index), (u32) (o->ip_frag.flags));
644 vec_add1 (s, '\n');
645
646 s = format (s, "cop.current_config_index: %d", o->cop.current_config_index);
647 vec_add1 (s, '\n');
648
649 s = format (s, "lisp.overlay_afi: %d", (u32) (o->lisp.overlay_afi));
650 vec_add1 (s, '\n');
651
652 s = format
Dave Barachd7b30662019-10-24 18:10:10 -0400653 (s,
654 "tcp.connection_index: %d, tcp.seq_number: %d, tcp.next_node_opaque: %d "
655 "tcp.seq_end: %d, tcp.ack_number: %d, tcp.hdr_offset: %d, "
656 "tcp.data_offset: %d", o->tcp.connection_index, o->tcp.next_node_opaque,
657 o->tcp.seq_number, o->tcp.seq_end, o->tcp.ack_number,
Dave Barach7fff3d22018-11-27 16:52:59 -0500658 (u32) (o->tcp.hdr_offset), (u32) (o->tcp.data_offset));
659 vec_add1 (s, '\n');
660
661 s = format (s,
662 "tcp.data_len: %d, tcp.flags: 0x%x",
663 (u32) (o->tcp.data_len), (u32) (o->tcp.flags));
664 vec_add1 (s, '\n');
665
Dave Barach7fff3d22018-11-27 16:52:59 -0500666 s = format (s, "snat.flags: 0x%x", o->snat.flags);
667 vec_add1 (s, '\n');
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700668
669 for (i = 0; i < vec_len (im->buffer_opaque_format_helpers); i++)
670 {
671 helper_fp = im->buffer_opaque_format_helpers[i];
672 s = (*helper_fp) (b, s);
673 }
674
Dave Barach7fff3d22018-11-27 16:52:59 -0500675 return s;
676}
677
678u8 *
679format_vnet_buffer_opaque2 (u8 * s, va_list * args)
680{
681 vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
682 vnet_buffer_opaque2_t *o = (vnet_buffer_opaque2_t *) b->opaque2;
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700683 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
684 vnet_buffer_opquae_formatter_t helper_fp;
Dave Barach7fff3d22018-11-27 16:52:59 -0500685
686 int i;
687
688 s = format (s, "raw: ");
689
690 for (i = 0; i < ARRAY_LEN (b->opaque2); i++)
691 s = format (s, "%08x ", b->opaque2[i]);
692 vec_add1 (s, '\n');
693
694 s = format (s, "qos.bits: %x, qos.source: %x",
695 (u32) (o->qos.bits), (u32) (o->qos.source));
696 vec_add1 (s, '\n');
697 s = format (s, "loop_counter: %d", o->loop_counter);
698 vec_add1 (s, '\n');
699
Dave Barachd7b30662019-10-24 18:10:10 -0400700 s = format (s, "gso_size: %d, gso_l4_hdr_sz: %d",
701 (u32) (o->gso_size), (u32) (o->gso_l4_hdr_sz));
702 vec_add1 (s, '\n');
703
Dave Barach7fff3d22018-11-27 16:52:59 -0500704 s = format (s, "pg_replay_timestamp: %llu", (u32) (o->pg_replay_timestamp));
705 vec_add1 (s, '\n');
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700706
707 for (i = 0; i < vec_len (im->buffer_opaque2_format_helpers); i++)
708 {
709 helper_fp = im->buffer_opaque2_format_helpers[i];
710 s = (*helper_fp) (b, s);
711 }
712
Dave Barach7fff3d22018-11-27 16:52:59 -0500713 return s;
714}
715
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700716void
717vnet_register_format_buffer_opaque_helper (vnet_buffer_opquae_formatter_t fp)
718{
719 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
720 vec_add1 (im->buffer_opaque_format_helpers, fp);
721}
722
723void
724vnet_register_format_buffer_opaque2_helper (vnet_buffer_opquae_formatter_t fp)
725{
726 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
727 vec_add1 (im->buffer_opaque2_format_helpers, fp);
728}
729
730
Dave Barachba868bb2016-08-08 09:51:21 -0400731uword
Dave Barach08eb2bb2020-04-15 09:34:43 -0400732unformat_vnet_buffer_flags (unformat_input_t * input, va_list * args)
733{
734 u32 *flagp = va_arg (*args, u32 *);
735 int rv = 0;
736 u32 flags = 0;
737
738 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
739 {
740 /* Red herring, there is no such buffer flag */
Mohsin Kazmi68095382021-02-10 11:26:24 +0100741 if (unformat (input, "avail10"))
Dave Barach08eb2bb2020-04-15 09:34:43 -0400742 return 0;
743#define _(bit,enum,str,verbose) \
744 else if (unformat (input, str)) \
745 { \
746 flags |= (1 << LOG2_VLIB_BUFFER_FLAG_USER(bit)); \
747 rv = 1; \
748 }
749 foreach_vnet_buffer_flag
750#undef _
751 else
752 break;
753 }
754 if (rv)
755 *flagp = flags;
756 return rv;
757}
758
759uword
Mohsin Kazmi68095382021-02-10 11:26:24 +0100760unformat_vnet_buffer_offload_flags (unformat_input_t *input, va_list *args)
761{
762 u32 *flagp = va_arg (*args, u32 *);
763 int rv = 0;
Mohsin Kazmi36f7a6a2021-05-05 14:26:38 +0200764 vnet_buffer_oflags_t oflags = 0;
Mohsin Kazmi68095382021-02-10 11:26:24 +0100765
766 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
767 {
768 if (0)
769 ;
770#define _(bit, enum, str, verbose) \
771 else if (unformat (input, str)) \
772 { \
773 oflags |= (1 << bit); \
774 rv = 1; \
775 }
776 foreach_vnet_buffer_offload_flag
777#undef _
778 else break;
779 }
780 if (rv)
Mohsin Kazmi36f7a6a2021-05-05 14:26:38 +0200781 *flagp = (u32) oflags;
Mohsin Kazmi68095382021-02-10 11:26:24 +0100782 return rv;
783}
784
785uword
Dave Barachba868bb2016-08-08 09:51:21 -0400786unformat_vnet_hw_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700787{
Dave Barachba868bb2016-08-08 09:51:21 -0400788 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
789 u32 *hw_if_index = va_arg (*args, u32 *);
790 vnet_interface_main_t *im = &vnm->interface_main;
791 vnet_device_class_t *c;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700792
793 /* Try per device class functions first. */
794 vec_foreach (c, im->device_classes)
Dave Barachba868bb2016-08-08 09:51:21 -0400795 {
796 if (c->unformat_device_name
797 && unformat_user (input, c->unformat_device_name, hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700798 return 1;
Dave Barachba868bb2016-08-08 09:51:21 -0400799 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700800
801 return unformat_user (input, unformat_hash_vec_string,
802 im->hw_interface_by_name, hw_if_index);
803}
804
Dave Barachba868bb2016-08-08 09:51:21 -0400805uword
806unformat_vnet_sw_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700807{
Dave Barachba868bb2016-08-08 09:51:21 -0400808 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
809 u32 *result = va_arg (*args, u32 *);
810 vnet_hw_interface_t *hi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700811 u32 hw_if_index, id, id_specified;
Eyal Bari3212c572017-03-06 11:47:50 +0200812 u32 sw_if_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400813 u8 *if_name = 0;
814 uword *p, error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700815
816 id = ~0;
817 if (unformat (input, "%_%v.%d%_", &if_name, &id)
818 && ((p = hash_get (vnm->interface_main.hw_interface_by_name, if_name))))
819 {
820 hw_if_index = p[0];
821 id_specified = 1;
822 }
Dave Barachba868bb2016-08-08 09:51:21 -0400823 else
824 if (unformat (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700825 id_specified = 0;
826 else
827 goto done;
828
829 hi = vnet_get_hw_interface (vnm, hw_if_index);
Dave Barachba868bb2016-08-08 09:51:21 -0400830 if (!id_specified)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700831 {
Eyal Bari3212c572017-03-06 11:47:50 +0200832 sw_if_index = hi->sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700833 }
834 else
835 {
Dave Barachba868bb2016-08-08 09:51:21 -0400836 if (!(p = hash_get (hi->sub_interface_sw_if_index_by_id, id)))
Eyal Bari3212c572017-03-06 11:47:50 +0200837 goto done;
838 sw_if_index = p[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700839 }
Eyal Bari3212c572017-03-06 11:47:50 +0200840 if (!vnet_sw_interface_is_api_visible (vnm, sw_if_index))
841 goto done;
842 *result = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700843 error = 1;
Dave Barachba868bb2016-08-08 09:51:21 -0400844done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700845 vec_free (if_name);
846 return error;
847}
848
Dave Barachba868bb2016-08-08 09:51:21 -0400849uword
850unformat_vnet_sw_interface_flags (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700851{
Dave Barachba868bb2016-08-08 09:51:21 -0400852 u32 *result = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700853 u32 flags = 0;
854
855 if (unformat (input, "up"))
856 flags |= VNET_SW_INTERFACE_FLAG_ADMIN_UP;
857 else if (unformat (input, "down"))
858 flags &= ~VNET_SW_INTERFACE_FLAG_ADMIN_UP;
859 else if (unformat (input, "punt"))
860 flags |= VNET_SW_INTERFACE_FLAG_PUNT;
861 else if (unformat (input, "enable"))
862 flags &= ~VNET_SW_INTERFACE_FLAG_PUNT;
863 else
864 return 0;
865
866 *result = flags;
867 return 1;
868}
869
Dave Barachba868bb2016-08-08 09:51:21 -0400870uword
871unformat_vnet_hw_interface_flags (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700872{
Dave Barachba868bb2016-08-08 09:51:21 -0400873 u32 *result = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700874 u32 flags = 0;
875
876 if (unformat (input, "up"))
877 flags |= VNET_HW_INTERFACE_FLAG_LINK_UP;
878 else if (unformat (input, "down"))
879 flags &= ~VNET_HW_INTERFACE_FLAG_LINK_UP;
880 else
881 return 0;
882
883 *result = flags;
884 return 1;
885}
886
Dave Barachba868bb2016-08-08 09:51:21 -0400887/*
888 * fd.io coding-style-patch-verification: ON
889 *
890 * Local Variables:
891 * eval: (c-set-style "gnu")
892 * End:
893 */