blob: 4acd6ab63e685bbb6ff2a1498c2b664d5853a189 [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);
Damjan Marion3755ac12021-05-22 12:13:48 +0200215 s = format (s, "\n%U%-6s%-7s%-15s", format_white_space, indent + 4,
216 "queue", "shared", "thread(s)");
Damjan Marion1bd6cbb2021-04-15 13:12:51 +0200217 for (int i = 0; i < vec_len (hi->tx_queue_indices); i++)
218 {
219 vnet_hw_if_tx_queue_t *txq;
220 txq = vnet_hw_if_get_tx_queue (vnm, hi->tx_queue_indices[i]);
Damjan Marion3755ac12021-05-22 12:13:48 +0200221 s = format (
222 s, "\n%U%-6u%-7s%U", format_white_space, indent + 4, txq->queue_id,
223 clib_bitmap_count_set_bits (txq->threads) > 1 ? "yes" : "no",
224 format_bitmap_list, txq->threads);
Damjan Marion1bd6cbb2021-04-15 13:12:51 +0200225 }
226 }
227
Chenmin Sunc4665092020-07-06 08:20:39 +0800228 if (hi->rss_queues)
229 {
230 s = format (s, "\n%URSS queues: %U", format_white_space, indent + 2,
231 format_vnet_hw_interface_rss_queues, hi->rss_queues);
232 }
233
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234 if (verbose)
235 {
236 if (hw_class->format_device)
237 s = format (s, "\n%U%U",
238 format_white_space, indent + 2,
239 hw_class->format_device, hi->hw_if_index, verbose);
240 else
241 {
242 s = format (s, "\n%U%s",
Dave Barachba868bb2016-08-08 09:51:21 -0400243 format_white_space, indent + 2, hw_class->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700244 if (hw_class->format_address && vec_len (hi->hw_address) > 0)
Dave Barachba868bb2016-08-08 09:51:21 -0400245 s =
246 format (s, " address %U", hw_class->format_address,
247 hi->hw_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700248 }
249
250 if (dev_class->format_device)
251 s = format (s, "\n%U%U",
252 format_white_space, indent + 2,
253 dev_class->format_device, hi->dev_instance, verbose);
254 }
255
256 return s;
257}
258
Dave Barachba868bb2016-08-08 09:51:21 -0400259u8 *
260format_vnet_sw_interface_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700261{
Dave Barachba868bb2016-08-08 09:51:21 -0400262 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
263 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
264 vnet_sw_interface_t *si_sup =
265 vnet_get_sup_sw_interface (vnm, si->sw_if_index);
266 vnet_hw_interface_t *hi_sup;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700267
268 ASSERT (si_sup->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
269 hi_sup = vnet_get_hw_interface (vnm, si_sup->hw_if_index);
270
271 s = format (s, "%v", hi_sup->name);
272
273 if (si->type != VNET_SW_INTERFACE_TYPE_HARDWARE)
274 s = format (s, ".%d", si->sub.id);
275
276 return s;
277}
278
Dave Barachba868bb2016-08-08 09:51:21 -0400279u8 *
280format_vnet_sw_if_index_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281{
Dave Barachba868bb2016-08-08 09:51:21 -0400282 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283 u32 sw_if_index = va_arg (*args, u32);
Neale Rannsda78f952017-05-24 09:15:43 -0700284 vnet_sw_interface_t *si;
285
Dave Barach3940de32019-07-23 16:28:36 -0400286 si = vnet_get_sw_interface_or_null (vnm, sw_if_index);
Neale Rannsda78f952017-05-24 09:15:43 -0700287
288 if (NULL == si)
289 {
290 return format (s, "DELETED");
291 }
292 return format (s, "%U", format_vnet_sw_interface_name, vnm, si);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700293}
294
Dave Barachba868bb2016-08-08 09:51:21 -0400295u8 *
Damjan Mariona35cc142018-03-16 01:25:27 +0100296format_vnet_hw_if_index_name (u8 * s, va_list * args)
297{
298 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
299 u32 hw_if_index = va_arg (*args, u32);
300 vnet_hw_interface_t *hi;
301
302 hi = vnet_get_hw_interface (vnm, hw_if_index);
303
304 if (hi == 0)
305 return format (s, "DELETED");
306
307 return format (s, "%v", hi->name);
308}
309
310u8 *
Dave Barachba868bb2016-08-08 09:51:21 -0400311format_vnet_sw_interface_cntrs (u8 * s, vnet_interface_main_t * im,
Dave Barach5554c562019-09-11 21:35:48 -0400312 vnet_sw_interface_t * si, int json)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700313{
Christophe Fontained3c008d2017-10-02 18:10:54 +0200314 u32 indent, n_printed;
Dave Barach8fdde3c2019-05-17 10:46:40 -0400315 int j, n_counters;
Dave Barach5554c562019-09-11 21:35:48 -0400316 char *x = "";
317 int json_need_comma_nl = 0;
Dave Barach8fdde3c2019-05-17 10:46:40 -0400318 u8 *n = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700319
Dave Barach5554c562019-09-11 21:35:48 -0400320 /*
321 * to output a json snippet, stick quotes in lots of places
322 * definitely deserves a one-character variable name.
323 */
324 if (json)
325 x = "\"";
326
Ed Warnickecb9cada2015-12-08 15:45:58 -0700327 indent = format_get_indent (s);
328 n_printed = 0;
329
Dave Barach8fdde3c2019-05-17 10:46:40 -0400330 n_counters = vec_len (im->combined_sw_if_counters);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700331
Dave Barach8fdde3c2019-05-17 10:46:40 -0400332 /* rx, tx counters... */
333 for (j = 0; j < n_counters; j++)
334 {
335 vlib_combined_counter_main_t *cm;
336 vlib_counter_t v, vtotal;
337 vtotal.packets = 0;
338 vtotal.bytes = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700339
Dave Barach8fdde3c2019-05-17 10:46:40 -0400340 cm = im->combined_sw_if_counters + j;
341 vlib_get_combined_counter (cm, si->sw_if_index, &v);
342 vtotal.packets += v.packets;
343 vtotal.bytes += v.bytes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700344
Dave Barach8fdde3c2019-05-17 10:46:40 -0400345 /* Only display non-zero counters. */
346 if (vtotal.packets == 0)
347 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700348
Dave Barach5554c562019-09-11 21:35:48 -0400349 if (json)
350 {
351 if (json_need_comma_nl)
352 {
353 vec_add1 (s, ',');
354 vec_add1 (s, '\n');
355 }
356 s = format (s, "%s%s_packets%s: %s%Ld%s,\n", x, cm->name, x, x,
357 vtotal.packets, x);
358 s = format (s, "%s%s_bytes%s: %s%Ld%s", x, cm->name, x, x,
359 vtotal.bytes, x);
360 json_need_comma_nl = 1;
361 continue;
362 }
363
Dave Barach8fdde3c2019-05-17 10:46:40 -0400364 if (n_printed > 0)
365 s = format (s, "\n%U", format_white_space, indent);
366 n_printed += 2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367
Dave Barach8fdde3c2019-05-17 10:46:40 -0400368 if (n)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369 _vec_len (n) = 0;
Dave Barach8fdde3c2019-05-17 10:46:40 -0400370 n = format (n, "%s packets", cm->name);
371 s = format (s, "%-16v%16Ld", n, vtotal.packets);
372
373 _vec_len (n) = 0;
374 n = format (n, "%s bytes", cm->name);
375 s = format (s, "\n%U%-16v%16Ld",
376 format_white_space, indent, n, vtotal.bytes);
377 }
378 vec_free (n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700379
380 {
Dave Barachba868bb2016-08-08 09:51:21 -0400381 vlib_simple_counter_main_t *cm;
382 u64 v, vtotal;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383
384 n_counters = vec_len (im->sw_if_counters);
385
386 for (j = 0; j < n_counters; j++)
387 {
Dave Barachba868bb2016-08-08 09:51:21 -0400388 vtotal = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700389
Dave Barach8fdde3c2019-05-17 10:46:40 -0400390 cm = im->sw_if_counters + j;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700391
Dave Barach8fdde3c2019-05-17 10:46:40 -0400392 v = vlib_get_simple_counter (cm, si->sw_if_index);
393 vtotal += v;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700394
395 /* Only display non-zero counters. */
396 if (vtotal == 0)
397 continue;
398
Dave Barach5554c562019-09-11 21:35:48 -0400399 if (json)
400 {
401 if (json_need_comma_nl)
402 {
403 vec_add1 (s, ',');
404 vec_add1 (s, '\n');
405 }
406 s = format (s, "%s%s%s: %s%Ld%s", x, cm->name, x, x, vtotal, x);
407 json_need_comma_nl = 1;
408 continue;
409 }
410
411
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412 if (n_printed > 0)
413 s = format (s, "\n%U", format_white_space, indent);
414 n_printed += 1;
415
416 s = format (s, "%-16s%16Ld", cm->name, vtotal);
417 }
418 }
419
420 return s;
421}
422
Ole Troand7231612018-06-07 10:17:57 +0200423static u8 *
424format_vnet_sw_interface_mtu (u8 * s, va_list * args)
425{
426 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
427
428 return format (s, "%d/%d/%d/%d", si->mtu[VNET_MTU_L3],
429 si->mtu[VNET_MTU_IP4],
430 si->mtu[VNET_MTU_IP6], si->mtu[VNET_MTU_MPLS]);
431}
432
Dave Barachba868bb2016-08-08 09:51:21 -0400433u8 *
434format_vnet_sw_interface (u8 * s, va_list * args)
Sean Hope679ea792016-02-22 15:12:01 -0500435{
Dave Barachba868bb2016-08-08 09:51:21 -0400436 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
437 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
438 vnet_interface_main_t *im = &vnm->interface_main;
Sean Hope679ea792016-02-22 15:12:01 -0500439
Dave Barachba868bb2016-08-08 09:51:21 -0400440 if (!si)
Ole Troand7231612018-06-07 10:17:57 +0200441 return format (s, "%=32s%=5s%=10s%=21s%=16s%=16s",
442 "Name", "Idx", "State", "MTU (L3/IP4/IP6/MPLS)", "Counter",
443 "Count");
Sean Hope679ea792016-02-22 15:12:01 -0500444
Ole Troand7231612018-06-07 10:17:57 +0200445 s = format (s, "%-32U%=5d%=10U%=21U",
Sean Hope679ea792016-02-22 15:12:01 -0500446 format_vnet_sw_interface_name, vnm, si, si->sw_if_index,
Ole Troand7231612018-06-07 10:17:57 +0200447 format_vnet_sw_interface_flags, si->flags,
448 format_vnet_sw_interface_mtu, si);
Sean Hope679ea792016-02-22 15:12:01 -0500449
Dave Barach5554c562019-09-11 21:35:48 -0400450 s = format_vnet_sw_interface_cntrs (s, im, si, 0 /* want json */ );
Sean Hope679ea792016-02-22 15:12:01 -0500451
452 return s;
453}
454
Dave Barachba868bb2016-08-08 09:51:21 -0400455u8 *
456format_vnet_sw_interface_name_override (u8 * s, va_list * args)
Sean Hope679ea792016-02-22 15:12:01 -0500457{
Dave Barachba868bb2016-08-08 09:51:21 -0400458 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
459 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
Sean Hope679ea792016-02-22 15:12:01 -0500460 /* caller supplied display name for this interface */
Dave Barachba868bb2016-08-08 09:51:21 -0400461 u8 *name = va_arg (*args, u8 *);
462 vnet_interface_main_t *im = &vnm->interface_main;
Sean Hope679ea792016-02-22 15:12:01 -0500463
464
Dave Barachba868bb2016-08-08 09:51:21 -0400465 if (!si)
Sean Hope679ea792016-02-22 15:12:01 -0500466 return format (s, "%=32s%=5s%=16s%=16s%=16s",
467 "Name", "Idx", "State", "Counter", "Count");
468
469 s = format (s, "%-32v%=5d%=16U",
470 name, si->sw_if_index,
471 format_vnet_sw_interface_flags, si->flags);
472
Dave Barach5554c562019-09-11 21:35:48 -0400473 s = format_vnet_sw_interface_cntrs (s, im, si, 0 /* want json */ );
Sean Hope679ea792016-02-22 15:12:01 -0500474
475 return s;
476}
477
Dave Barach7fff3d22018-11-27 16:52:59 -0500478u8 *
479format_vnet_buffer_flags (u8 * s, va_list * args)
480{
481 vlib_buffer_t *buf = va_arg (*args, vlib_buffer_t *);
482
483#define _(a,b,c,v) if (buf->flags & VNET_BUFFER_F_##b) s = format (s, "%s ", c);
484 foreach_vnet_buffer_flag;
485#undef _
486 return s;
487}
488
489u8 *
490format_vnet_buffer_opaque (u8 * s, va_list * args)
491{
492 vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
493 vnet_buffer_opaque_t *o = (vnet_buffer_opaque_t *) b->opaque;
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700494 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
495 vnet_buffer_opquae_formatter_t helper_fp;
Dave Barach7fff3d22018-11-27 16:52:59 -0500496 int i;
497
498 s = format (s, "raw: ");
499
500 for (i = 0; i < ARRAY_LEN (b->opaque); i++)
501 s = format (s, "%08x ", b->opaque[i]);
502
503 vec_add1 (s, '\n');
504
505 s = format (s,
506 "sw_if_index[VLIB_RX]: %d, sw_if_index[VLIB_TX]: %d",
507 o->sw_if_index[0], o->sw_if_index[1]);
508 vec_add1 (s, '\n');
509
510 s = format (s,
511 "L2 offset %d, L3 offset %d, L4 offset %d, feature arc index %d",
512 (u32) (o->l2_hdr_offset),
513 (u32) (o->l3_hdr_offset),
514 (u32) (o->l4_hdr_offset), (u32) (o->feature_arc_index));
515 vec_add1 (s, '\n');
516
517 s = format (s,
518 "ip.adj_index[VLIB_RX]: %d, ip.adj_index[VLIB_TX]: %d",
519 (u32) (o->ip.adj_index[0]), (u32) (o->ip.adj_index[1]));
520 vec_add1 (s, '\n');
521
522 s = format (s,
523 "ip.flow_hash: 0x%x, ip.save_protocol: 0x%x, ip.fib_index: %d",
524 o->ip.flow_hash, o->ip.save_protocol, o->ip.fib_index);
525 vec_add1 (s, '\n');
526
527 s = format (s,
528 "ip.save_rewrite_length: %d, ip.rpf_id: %d",
529 o->ip.save_rewrite_length, o->ip.rpf_id);
530 vec_add1 (s, '\n');
531
532 s = format (s,
533 "ip.icmp.type: %d ip.icmp.code: %d, ip.icmp.data: 0x%x",
534 (u32) (o->ip.icmp.type),
535 (u32) (o->ip.icmp.code), o->ip.icmp.data);
536 vec_add1 (s, '\n');
537
538 s = format (s,
539 "ip.reass.next_index: %d, ip.reass.estimated_mtu: %d",
540 o->ip.reass.next_index, (u32) (o->ip.reass.estimated_mtu));
541 vec_add1 (s, '\n');
Dave Barachd7b30662019-10-24 18:10:10 -0400542 s = format (s,
543 "ip.reass.error_next_index: %d, ip.reass.owner_thread_index: %d",
544 o->ip.reass.error_next_index,
545 (u32) (o->ip.reass.owner_thread_index));
546 vec_add1 (s, '\n');
547 s = format (s,
548 "ip.reass.ip_proto: %d, ip.reass.l4_src_port: %d",
549 o->ip.reass.ip_proto, (u32) (o->ip.reass.l4_src_port));
550 vec_add1 (s, '\n');
551 s = format (s, "ip.reass.l4_dst_port: %d", o->ip.reass.l4_dst_port);
552 vec_add1 (s, '\n');
Dave Barach7fff3d22018-11-27 16:52:59 -0500553
554 s = format (s,
555 "ip.reass.fragment_first: %d ip.reass.fragment_last: %d",
556 (u32) (o->ip.reass.fragment_first),
557 (u32) (o->ip.reass.fragment_last));
558 vec_add1 (s, '\n');
559
560 s = format (s,
561 "ip.reass.range_first: %d ip.reass.range_last: %d",
562 (u32) (o->ip.reass.range_first),
563 (u32) (o->ip.reass.range_last));
564 vec_add1 (s, '\n');
565
566 s = format (s,
567 "ip.reass.next_range_bi: 0x%x, ip.reass.ip6_frag_hdr_offset: %d",
568 o->ip.reass.next_range_bi,
569 (u32) (o->ip.reass.ip6_frag_hdr_offset));
570 vec_add1 (s, '\n');
571
572 s = format (s,
573 "mpls.ttl: %d, mpls.exp: %d, mpls.first: %d, "
574 "mpls.save_rewrite_length: %d, mpls.bier.n_bytes: %d",
575 (u32) (o->mpls.ttl), (u32) (o->mpls.exp), (u32) (o->mpls.first),
576 o->mpls.save_rewrite_length, (u32) (o->mpls.bier.n_bytes));
577 vec_add1 (s, '\n');
Dave Barachd7b30662019-10-24 18:10:10 -0400578 s = format (s, "mpls.mpls_hdr_length: %d", (u32) (o->mpls.mpls_hdr_length));
579 vec_add1 (s, '\n');
Dave Barach7fff3d22018-11-27 16:52:59 -0500580
581 s = format (s,
Dave Barachd7b30662019-10-24 18:10:10 -0400582 "l2.feature_bitmap: %08x, l2.bd_index: %d, l2.l2fib_sn %d, "
583 "l2.l2_len: %d, l2.shg: %d, l2.bd_age: %d",
584 (u32) (o->l2.feature_bitmap), (u32) (o->l2.bd_index),
585 (u32) (o->l2.l2fib_sn),
586 (u32) (o->l2.l2_len), (u32) (o->l2.shg), (u32) (o->l2.bd_age));
Dave Barach7fff3d22018-11-27 16:52:59 -0500587 vec_add1 (s, '\n');
588
589 s = format (s,
Dave Barach7bdaa3f2018-12-03 11:33:09 -0500590 "l2.feature_bitmap_input: %U, L2.feature_bitmap_output: %U",
Neale Ranns47a3d992020-09-29 15:38:51 +0000591 format_l2_input_feature_bitmap, o->l2.feature_bitmap, 0,
Dave Barach7bdaa3f2018-12-03 11:33:09 -0500592 format_l2_output_features, o->l2.feature_bitmap, 0);
593 vec_add1 (s, '\n');
594
595 s = format (s,
Dave Barach7fff3d22018-11-27 16:52:59 -0500596 "l2t.next_index: %d, l2t.session_index: %d",
597 (u32) (o->l2t.next_index), o->l2t.session_index);
598 vec_add1 (s, '\n');
599
600 s = format (s,
601 "l2_classify.table_index: %d, l2_classify.opaque_index: %d, "
602 "l2_classify.hash: 0x%llx",
603 o->l2_classify.table_index,
604 o->l2_classify.opaque_index, o->l2_classify.hash);
605 vec_add1 (s, '\n');
606
607 s = format (s, "policer.index: %d", o->policer.index);
608 vec_add1 (s, '\n');
609
Dave Barachd7b30662019-10-24 18:10:10 -0400610 s = format (s, "ipsec.sad_index: %d, ipsec.protect_index",
611 o->ipsec.sad_index, o->ipsec.protect_index);
Dave Barach7fff3d22018-11-27 16:52:59 -0500612 vec_add1 (s, '\n');
613
614 s = format (s, "map.mtu: %d", (u32) (o->map.mtu));
615 vec_add1 (s, '\n');
616
617 s = format (s,
Dave Barachd7b30662019-10-24 18:10:10 -0400618 "map_t.map_domain_index: %d, map_t.v6.saddr: 0x%x, "
619 "map_t.v6.daddr: 0x%x, map_t.v6.frag_offset: %d, "
620 "map_t.v6.l4_offset: %d, map_t.v6.l4_protocol: %d, "
621 "map.t.checksum_offset: %d",
622 o->map_t.map_domain_index,
Dave Barach7fff3d22018-11-27 16:52:59 -0500623 o->map_t.v6.saddr,
624 o->map_t.v6.daddr,
Dave Barachd7b30662019-10-24 18:10:10 -0400625 (u32) (o->map_t.v6.frag_offset), (u32) (o->map_t.v6.l4_offset),
626 (u32) (o->map_t.v6.l4_protocol),
627 (u32) (o->map_t.checksum_offset));
Dave Barach7fff3d22018-11-27 16:52:59 -0500628 vec_add1 (s, '\n');
629
630 s = format (s,
631 "map_t.v6.l4_protocol: %d, map_t.checksum_offset: %d, "
632 "map_t.mtu: %d",
633 (u32) (o->map_t.v6.l4_protocol),
634 (u32) (o->map_t.checksum_offset), (u32) (o->map_t.mtu));
635 vec_add1 (s, '\n');
636
637 s = format (s,
638 "ip_frag.mtu: %d, ip_frag.next_index: %d, ip_frag.flags: 0x%x",
639 (u32) (o->ip_frag.mtu),
640 (u32) (o->ip_frag.next_index), (u32) (o->ip_frag.flags));
641 vec_add1 (s, '\n');
642
643 s = format (s, "cop.current_config_index: %d", o->cop.current_config_index);
644 vec_add1 (s, '\n');
645
646 s = format (s, "lisp.overlay_afi: %d", (u32) (o->lisp.overlay_afi));
647 vec_add1 (s, '\n');
648
649 s = format
Dave Barachd7b30662019-10-24 18:10:10 -0400650 (s,
651 "tcp.connection_index: %d, tcp.seq_number: %d, tcp.next_node_opaque: %d "
652 "tcp.seq_end: %d, tcp.ack_number: %d, tcp.hdr_offset: %d, "
653 "tcp.data_offset: %d", o->tcp.connection_index, o->tcp.next_node_opaque,
654 o->tcp.seq_number, o->tcp.seq_end, o->tcp.ack_number,
Dave Barach7fff3d22018-11-27 16:52:59 -0500655 (u32) (o->tcp.hdr_offset), (u32) (o->tcp.data_offset));
656 vec_add1 (s, '\n');
657
658 s = format (s,
659 "tcp.data_len: %d, tcp.flags: 0x%x",
660 (u32) (o->tcp.data_len), (u32) (o->tcp.flags));
661 vec_add1 (s, '\n');
662
Dave Barach7fff3d22018-11-27 16:52:59 -0500663 s = format (s, "snat.flags: 0x%x", o->snat.flags);
664 vec_add1 (s, '\n');
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700665
666 for (i = 0; i < vec_len (im->buffer_opaque_format_helpers); i++)
667 {
668 helper_fp = im->buffer_opaque_format_helpers[i];
669 s = (*helper_fp) (b, s);
670 }
671
Dave Barach7fff3d22018-11-27 16:52:59 -0500672 return s;
673}
674
675u8 *
676format_vnet_buffer_opaque2 (u8 * s, va_list * args)
677{
678 vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
679 vnet_buffer_opaque2_t *o = (vnet_buffer_opaque2_t *) b->opaque2;
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700680 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
681 vnet_buffer_opquae_formatter_t helper_fp;
Dave Barach7fff3d22018-11-27 16:52:59 -0500682
683 int i;
684
685 s = format (s, "raw: ");
686
687 for (i = 0; i < ARRAY_LEN (b->opaque2); i++)
688 s = format (s, "%08x ", b->opaque2[i]);
689 vec_add1 (s, '\n');
690
691 s = format (s, "qos.bits: %x, qos.source: %x",
692 (u32) (o->qos.bits), (u32) (o->qos.source));
693 vec_add1 (s, '\n');
694 s = format (s, "loop_counter: %d", o->loop_counter);
695 vec_add1 (s, '\n');
696
Neale Ranns4ba67722019-02-28 11:11:39 +0000697 s = format (s, "gbp.flags: %x, gbp.sclass: %d",
698 (u32) (o->gbp.flags), (u32) (o->gbp.sclass));
Dave Barach7fff3d22018-11-27 16:52:59 -0500699 vec_add1 (s, '\n');
700
Dave Barachd7b30662019-10-24 18:10:10 -0400701 s = format (s, "gso_size: %d, gso_l4_hdr_sz: %d",
702 (u32) (o->gso_size), (u32) (o->gso_l4_hdr_sz));
703 vec_add1 (s, '\n');
704
Dave Barach7fff3d22018-11-27 16:52:59 -0500705 s = format (s, "pg_replay_timestamp: %llu", (u32) (o->pg_replay_timestamp));
706 vec_add1 (s, '\n');
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700707
708 for (i = 0; i < vec_len (im->buffer_opaque2_format_helpers); i++)
709 {
710 helper_fp = im->buffer_opaque2_format_helpers[i];
711 s = (*helper_fp) (b, s);
712 }
713
Dave Barach7fff3d22018-11-27 16:52:59 -0500714 return s;
715}
716
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700717void
718vnet_register_format_buffer_opaque_helper (vnet_buffer_opquae_formatter_t fp)
719{
720 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
721 vec_add1 (im->buffer_opaque_format_helpers, fp);
722}
723
724void
725vnet_register_format_buffer_opaque2_helper (vnet_buffer_opquae_formatter_t fp)
726{
727 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
728 vec_add1 (im->buffer_opaque2_format_helpers, fp);
729}
730
731
Dave Barachba868bb2016-08-08 09:51:21 -0400732uword
Dave Barach08eb2bb2020-04-15 09:34:43 -0400733unformat_vnet_buffer_flags (unformat_input_t * input, va_list * args)
734{
735 u32 *flagp = va_arg (*args, u32 *);
736 int rv = 0;
737 u32 flags = 0;
738
739 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
740 {
741 /* Red herring, there is no such buffer flag */
Mohsin Kazmi68095382021-02-10 11:26:24 +0100742 if (unformat (input, "avail10"))
Dave Barach08eb2bb2020-04-15 09:34:43 -0400743 return 0;
744#define _(bit,enum,str,verbose) \
745 else if (unformat (input, str)) \
746 { \
747 flags |= (1 << LOG2_VLIB_BUFFER_FLAG_USER(bit)); \
748 rv = 1; \
749 }
750 foreach_vnet_buffer_flag
751#undef _
752 else
753 break;
754 }
755 if (rv)
756 *flagp = flags;
757 return rv;
758}
759
760uword
Mohsin Kazmi68095382021-02-10 11:26:24 +0100761unformat_vnet_buffer_offload_flags (unformat_input_t *input, va_list *args)
762{
763 u32 *flagp = va_arg (*args, u32 *);
764 int rv = 0;
Mohsin Kazmi36f7a6a2021-05-05 14:26:38 +0200765 vnet_buffer_oflags_t oflags = 0;
Mohsin Kazmi68095382021-02-10 11:26:24 +0100766
767 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
768 {
769 if (0)
770 ;
771#define _(bit, enum, str, verbose) \
772 else if (unformat (input, str)) \
773 { \
774 oflags |= (1 << bit); \
775 rv = 1; \
776 }
777 foreach_vnet_buffer_offload_flag
778#undef _
779 else break;
780 }
781 if (rv)
Mohsin Kazmi36f7a6a2021-05-05 14:26:38 +0200782 *flagp = (u32) oflags;
Mohsin Kazmi68095382021-02-10 11:26:24 +0100783 return rv;
784}
785
786uword
Dave Barachba868bb2016-08-08 09:51:21 -0400787unformat_vnet_hw_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700788{
Dave Barachba868bb2016-08-08 09:51:21 -0400789 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
790 u32 *hw_if_index = va_arg (*args, u32 *);
791 vnet_interface_main_t *im = &vnm->interface_main;
792 vnet_device_class_t *c;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700793
794 /* Try per device class functions first. */
795 vec_foreach (c, im->device_classes)
Dave Barachba868bb2016-08-08 09:51:21 -0400796 {
797 if (c->unformat_device_name
798 && unformat_user (input, c->unformat_device_name, hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700799 return 1;
Dave Barachba868bb2016-08-08 09:51:21 -0400800 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700801
802 return unformat_user (input, unformat_hash_vec_string,
803 im->hw_interface_by_name, hw_if_index);
804}
805
Dave Barachba868bb2016-08-08 09:51:21 -0400806uword
807unformat_vnet_sw_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700808{
Dave Barachba868bb2016-08-08 09:51:21 -0400809 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
810 u32 *result = va_arg (*args, u32 *);
811 vnet_hw_interface_t *hi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700812 u32 hw_if_index, id, id_specified;
Eyal Bari3212c572017-03-06 11:47:50 +0200813 u32 sw_if_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400814 u8 *if_name = 0;
815 uword *p, error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700816
817 id = ~0;
818 if (unformat (input, "%_%v.%d%_", &if_name, &id)
819 && ((p = hash_get (vnm->interface_main.hw_interface_by_name, if_name))))
820 {
821 hw_if_index = p[0];
822 id_specified = 1;
823 }
Dave Barachba868bb2016-08-08 09:51:21 -0400824 else
825 if (unformat (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700826 id_specified = 0;
827 else
828 goto done;
829
830 hi = vnet_get_hw_interface (vnm, hw_if_index);
Dave Barachba868bb2016-08-08 09:51:21 -0400831 if (!id_specified)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700832 {
Eyal Bari3212c572017-03-06 11:47:50 +0200833 sw_if_index = hi->sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700834 }
835 else
836 {
Dave Barachba868bb2016-08-08 09:51:21 -0400837 if (!(p = hash_get (hi->sub_interface_sw_if_index_by_id, id)))
Eyal Bari3212c572017-03-06 11:47:50 +0200838 goto done;
839 sw_if_index = p[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700840 }
Eyal Bari3212c572017-03-06 11:47:50 +0200841 if (!vnet_sw_interface_is_api_visible (vnm, sw_if_index))
842 goto done;
843 *result = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700844 error = 1;
Dave Barachba868bb2016-08-08 09:51:21 -0400845done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700846 vec_free (if_name);
847 return error;
848}
849
Dave Barachba868bb2016-08-08 09:51:21 -0400850uword
851unformat_vnet_sw_interface_flags (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700852{
Dave Barachba868bb2016-08-08 09:51:21 -0400853 u32 *result = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700854 u32 flags = 0;
855
856 if (unformat (input, "up"))
857 flags |= VNET_SW_INTERFACE_FLAG_ADMIN_UP;
858 else if (unformat (input, "down"))
859 flags &= ~VNET_SW_INTERFACE_FLAG_ADMIN_UP;
860 else if (unformat (input, "punt"))
861 flags |= VNET_SW_INTERFACE_FLAG_PUNT;
862 else if (unformat (input, "enable"))
863 flags &= ~VNET_SW_INTERFACE_FLAG_PUNT;
864 else
865 return 0;
866
867 *result = flags;
868 return 1;
869}
870
Dave Barachba868bb2016-08-08 09:51:21 -0400871uword
872unformat_vnet_hw_interface_flags (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700873{
Dave Barachba868bb2016-08-08 09:51:21 -0400874 u32 *result = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700875 u32 flags = 0;
876
877 if (unformat (input, "up"))
878 flags |= VNET_HW_INTERFACE_FLAG_LINK_UP;
879 else if (unformat (input, "down"))
880 flags &= ~VNET_HW_INTERFACE_FLAG_LINK_UP;
881 else
882 return 0;
883
884 *result = flags;
885 return 1;
886}
887
Dave Barachba868bb2016-08-08 09:51:21 -0400888/*
889 * fd.io coding-style-patch-verification: ON
890 *
891 * Local Variables:
892 * eval: (c-set-style "gnu")
893 * End:
894 */