blob: dc2edff7c67d6892a3807037515d5f64790eee38 [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>
Jon Loeliger9485d992019-11-08 15:05:23 -060046
47u8 *
48format_vtr (u8 * s, va_list * args)
49{
50 u32 vtr_op = va_arg (*args, u32);
51 u32 dot1q = va_arg (*args, u32);
52 u32 tag1 = va_arg (*args, u32);
53 u32 tag2 = va_arg (*args, u32);
54 switch (vtr_op)
55 {
56 case L2_VTR_DISABLED:
57 return format (s, "none");
58 case L2_VTR_PUSH_1:
59 return format (s, "push-1 %s %d", dot1q ? "dot1q" : "dot1ad", tag1);
60 case L2_VTR_PUSH_2:
61 return format (s, "push-2 %s %d %d", dot1q ? "dot1q" : "dot1ad", tag1,
62 tag2);
63 case L2_VTR_POP_1:
64 return format (s, "pop-1");
65 case L2_VTR_POP_2:
66 return format (s, "pop-2");
67 case L2_VTR_TRANSLATE_1_1:
68 return format (s, "trans-1-1 %s %d", dot1q ? "dot1q" : "dot1ad", tag1);
69 case L2_VTR_TRANSLATE_1_2:
70 return format (s, "trans-1-2 %s %d %d", dot1q ? "dot1q" : "dot1ad",
71 tag1, tag2);
72 case L2_VTR_TRANSLATE_2_1:
73 return format (s, "trans-2-1 %s %d", dot1q ? "dot1q" : "dot1ad", tag1);
74 case L2_VTR_TRANSLATE_2_2:
75 return format (s, "trans-2-2 %s %d %d", dot1q ? "dot1q" : "dot1ad",
76 tag1, tag2);
77 default:
78 return format (s, "none");
79 }
80}
Ed Warnickecb9cada2015-12-08 15:45:58 -070081
Dave Barachba868bb2016-08-08 09:51:21 -040082u8 *
83format_vnet_sw_interface_flags (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070084{
85 u32 flags = va_arg (*args, u32);
86
Damjan Marionabce5092017-05-10 20:09:31 +020087 if (flags & VNET_SW_INTERFACE_FLAG_ERROR)
88 s = format (s, "error");
Dave Barachba868bb2016-08-08 09:51:21 -040089 else
John Lobcebbb92016-04-05 15:47:43 -040090 {
Dave Barachba868bb2016-08-08 09:51:21 -040091 s = format (s, "%s",
John Lobcebbb92016-04-05 15:47:43 -040092 (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? "up" : "down");
Dave Barachba868bb2016-08-08 09:51:21 -040093 if (flags & VNET_SW_INTERFACE_FLAG_PUNT)
John Lobcebbb92016-04-05 15:47:43 -040094 s = format (s, "/punt");
95 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070096
97 return s;
98}
99
Dave Barachba868bb2016-08-08 09:51:21 -0400100u8 *
Damjan Marioneabd4242020-10-07 20:59:07 +0200101format_vnet_hw_if_rx_mode (u8 * s, va_list * args)
Damjan Marion44036902017-04-28 12:29:15 +0200102{
Damjan Marioneabd4242020-10-07 20:59:07 +0200103 vnet_hw_if_rx_mode mode = va_arg (*args, vnet_hw_if_rx_mode);
Damjan Marion44036902017-04-28 12:29:15 +0200104
Damjan Marioneabd4242020-10-07 20:59:07 +0200105 if (mode == VNET_HW_IF_RX_MODE_POLLING)
Damjan Marion44036902017-04-28 12:29:15 +0200106 return format (s, "polling");
107
Damjan Marioneabd4242020-10-07 20:59:07 +0200108 if (mode == VNET_HW_IF_RX_MODE_INTERRUPT)
Damjan Marion44036902017-04-28 12:29:15 +0200109 return format (s, "interrupt");
110
Damjan Marioneabd4242020-10-07 20:59:07 +0200111 if (mode == VNET_HW_IF_RX_MODE_ADAPTIVE)
Damjan Marion44036902017-04-28 12:29:15 +0200112 return format (s, "adaptive");
113
114 return format (s, "unknown");
115}
116
117u8 *
Damjan Marion5100aa92018-11-08 15:30:16 +0100118format_vnet_hw_interface_link_speed (u8 * s, va_list * args)
119{
120 u32 link_speed = va_arg (*args, u32);
121
122 if (link_speed == 0)
123 return format (s, "unknown");
124
125 if (link_speed >= 1000000)
126 return format (s, "%f Gbps", (f64) link_speed / 1000000);
127
128 if (link_speed >= 1000)
129 return format (s, "%f Mbps", (f64) link_speed / 1000);
130
131 return format (s, "%u Kbps", link_speed);
132}
133
Chenmin Sunc4665092020-07-06 08:20:39 +0800134u8 *
135format_vnet_hw_interface_rss_queues (u8 * s, va_list * args)
136{
137 clib_bitmap_t *bitmap = va_arg (*args, clib_bitmap_t *);
138 int i;
139
140 if (bitmap == NULL)
141 return s;
142
143 if (bitmap)
144 {
145 /* *INDENT-OFF* */
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 /* *INDENT-ON* */
150 }
151
152 return s;
153}
Damjan Marion5100aa92018-11-08 15:30:16 +0100154
155u8 *
Dave Barachba868bb2016-08-08 09:51:21 -0400156format_vnet_hw_interface (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157{
Dave Barachba868bb2016-08-08 09:51:21 -0400158 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
159 vnet_hw_interface_t *hi = va_arg (*args, vnet_hw_interface_t *);
160 vnet_hw_interface_class_t *hw_class;
161 vnet_device_class_t *dev_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162 int verbose = va_arg (*args, int);
Christophe Fontained3c008d2017-10-02 18:10:54 +0200163 u32 indent;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164
Dave Barachba868bb2016-08-08 09:51:21 -0400165 if (!hi)
166 return format (s, "%=32s%=6s%=8s%s", "Name", "Idx", "Link", "Hardware");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167
168 indent = format_get_indent (s);
169
John Lobcebbb92016-04-05 15:47:43 -0400170 s = format (s, "%-32v%=6d", hi->name, hi->hw_if_index);
171
172 if (hi->bond_info == VNET_HW_INTERFACE_BOND_INFO_SLAVE)
173 s = format (s, "%=8s", "slave");
174 else
Dave Barachba868bb2016-08-08 09:51:21 -0400175 s = format (s, "%=8s",
John Lobcebbb92016-04-05 15:47:43 -0400176 hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP ? "up" : "down");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700177
178 hw_class = vnet_get_hw_interface_class (vnm, hi->hw_class_index);
179 dev_class = vnet_get_device_class (vnm, hi->dev_class_index);
180
Dave Barachba868bb2016-08-08 09:51:21 -0400181 if (hi->bond_info && (hi->bond_info != VNET_HW_INTERFACE_BOND_INFO_SLAVE))
John Lobcebbb92016-04-05 15:47:43 -0400182 {
183 int hw_idx;
184 s = format (s, "Slave-Idx:");
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100185 clib_bitmap_foreach (hw_idx, hi->bond_info)
186 s = format (s, " %d", hw_idx);
John Lobcebbb92016-04-05 15:47:43 -0400187 }
Dave Barachba868bb2016-08-08 09:51:21 -0400188 else if (dev_class->format_device_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700189 s = format (s, "%U", dev_class->format_device_name, hi->dev_instance);
190 else
191 s = format (s, "%s%d", dev_class->name, hi->dev_instance);
192
Damjan Marion5100aa92018-11-08 15:30:16 +0100193 s = format (s, "\n%ULink speed: %U", format_white_space, indent + 2,
194 format_vnet_hw_interface_link_speed, hi->link_speed);
195
Damjan Marion94100532020-11-06 23:25:57 +0100196 if (vec_len (hi->rx_queue_indices))
197 {
198 s = format (s, "\n%URX Queues:", format_white_space, indent + 2);
199 s = format (s, "\n%U%-6s%-15s%-10s", format_white_space, indent + 4,
200 "queue", "thread", "mode");
201 for (int i = 0; i < vec_len (hi->rx_queue_indices); i++)
202 {
203 vnet_hw_if_rx_queue_t *rxq;
204 rxq = vnet_hw_if_get_rx_queue (vnm, hi->rx_queue_indices[i]);
205 s = format (s, "\n%U%-6u%-15U%-10U", format_white_space, indent + 4,
206 rxq->queue_id, format_vlib_thread_name_and_index,
207 rxq->thread_index, format_vnet_hw_if_rx_mode, rxq->mode);
208 }
209 }
210
Chenmin Sunc4665092020-07-06 08:20:39 +0800211 if (hi->rss_queues)
212 {
213 s = format (s, "\n%URSS queues: %U", format_white_space, indent + 2,
214 format_vnet_hw_interface_rss_queues, hi->rss_queues);
215 }
216
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217 if (verbose)
218 {
219 if (hw_class->format_device)
220 s = format (s, "\n%U%U",
221 format_white_space, indent + 2,
222 hw_class->format_device, hi->hw_if_index, verbose);
223 else
224 {
225 s = format (s, "\n%U%s",
Dave Barachba868bb2016-08-08 09:51:21 -0400226 format_white_space, indent + 2, hw_class->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700227 if (hw_class->format_address && vec_len (hi->hw_address) > 0)
Dave Barachba868bb2016-08-08 09:51:21 -0400228 s =
229 format (s, " address %U", hw_class->format_address,
230 hi->hw_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231 }
232
233 if (dev_class->format_device)
234 s = format (s, "\n%U%U",
235 format_white_space, indent + 2,
236 dev_class->format_device, hi->dev_instance, verbose);
237 }
238
239 return s;
240}
241
Dave Barachba868bb2016-08-08 09:51:21 -0400242u8 *
243format_vnet_sw_interface_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700244{
Dave Barachba868bb2016-08-08 09:51:21 -0400245 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
246 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
247 vnet_sw_interface_t *si_sup =
248 vnet_get_sup_sw_interface (vnm, si->sw_if_index);
249 vnet_hw_interface_t *hi_sup;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250
251 ASSERT (si_sup->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
252 hi_sup = vnet_get_hw_interface (vnm, si_sup->hw_if_index);
253
254 s = format (s, "%v", hi_sup->name);
255
256 if (si->type != VNET_SW_INTERFACE_TYPE_HARDWARE)
257 s = format (s, ".%d", si->sub.id);
258
259 return s;
260}
261
Dave Barachba868bb2016-08-08 09:51:21 -0400262u8 *
263format_vnet_sw_if_index_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 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266 u32 sw_if_index = va_arg (*args, u32);
Neale Rannsda78f952017-05-24 09:15:43 -0700267 vnet_sw_interface_t *si;
268
Dave Barach3940de32019-07-23 16:28:36 -0400269 si = vnet_get_sw_interface_or_null (vnm, sw_if_index);
Neale Rannsda78f952017-05-24 09:15:43 -0700270
271 if (NULL == si)
272 {
273 return format (s, "DELETED");
274 }
275 return format (s, "%U", format_vnet_sw_interface_name, vnm, si);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700276}
277
Dave Barachba868bb2016-08-08 09:51:21 -0400278u8 *
Damjan Mariona35cc142018-03-16 01:25:27 +0100279format_vnet_hw_if_index_name (u8 * s, va_list * args)
280{
281 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
282 u32 hw_if_index = va_arg (*args, u32);
283 vnet_hw_interface_t *hi;
284
285 hi = vnet_get_hw_interface (vnm, hw_if_index);
286
287 if (hi == 0)
288 return format (s, "DELETED");
289
290 return format (s, "%v", hi->name);
291}
292
293u8 *
Dave Barachba868bb2016-08-08 09:51:21 -0400294format_vnet_sw_interface_cntrs (u8 * s, vnet_interface_main_t * im,
Dave Barach5554c562019-09-11 21:35:48 -0400295 vnet_sw_interface_t * si, int json)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700296{
Christophe Fontained3c008d2017-10-02 18:10:54 +0200297 u32 indent, n_printed;
Dave Barach8fdde3c2019-05-17 10:46:40 -0400298 int j, n_counters;
Dave Barach5554c562019-09-11 21:35:48 -0400299 char *x = "";
300 int json_need_comma_nl = 0;
Dave Barach8fdde3c2019-05-17 10:46:40 -0400301 u8 *n = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700302
Dave Barach5554c562019-09-11 21:35:48 -0400303 /*
304 * to output a json snippet, stick quotes in lots of places
305 * definitely deserves a one-character variable name.
306 */
307 if (json)
308 x = "\"";
309
Ed Warnickecb9cada2015-12-08 15:45:58 -0700310 indent = format_get_indent (s);
311 n_printed = 0;
312
Dave Barach8fdde3c2019-05-17 10:46:40 -0400313 n_counters = vec_len (im->combined_sw_if_counters);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314
Dave Barach8fdde3c2019-05-17 10:46:40 -0400315 /* rx, tx counters... */
316 for (j = 0; j < n_counters; j++)
317 {
318 vlib_combined_counter_main_t *cm;
319 vlib_counter_t v, vtotal;
320 vtotal.packets = 0;
321 vtotal.bytes = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700322
Dave Barach8fdde3c2019-05-17 10:46:40 -0400323 cm = im->combined_sw_if_counters + j;
324 vlib_get_combined_counter (cm, si->sw_if_index, &v);
325 vtotal.packets += v.packets;
326 vtotal.bytes += v.bytes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700327
Dave Barach8fdde3c2019-05-17 10:46:40 -0400328 /* Only display non-zero counters. */
329 if (vtotal.packets == 0)
330 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700331
Dave Barach5554c562019-09-11 21:35:48 -0400332 if (json)
333 {
334 if (json_need_comma_nl)
335 {
336 vec_add1 (s, ',');
337 vec_add1 (s, '\n');
338 }
339 s = format (s, "%s%s_packets%s: %s%Ld%s,\n", x, cm->name, x, x,
340 vtotal.packets, x);
341 s = format (s, "%s%s_bytes%s: %s%Ld%s", x, cm->name, x, x,
342 vtotal.bytes, x);
343 json_need_comma_nl = 1;
344 continue;
345 }
346
Dave Barach8fdde3c2019-05-17 10:46:40 -0400347 if (n_printed > 0)
348 s = format (s, "\n%U", format_white_space, indent);
349 n_printed += 2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700350
Dave Barach8fdde3c2019-05-17 10:46:40 -0400351 if (n)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352 _vec_len (n) = 0;
Dave Barach8fdde3c2019-05-17 10:46:40 -0400353 n = format (n, "%s packets", cm->name);
354 s = format (s, "%-16v%16Ld", n, vtotal.packets);
355
356 _vec_len (n) = 0;
357 n = format (n, "%s bytes", cm->name);
358 s = format (s, "\n%U%-16v%16Ld",
359 format_white_space, indent, n, vtotal.bytes);
360 }
361 vec_free (n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700362
363 {
Dave Barachba868bb2016-08-08 09:51:21 -0400364 vlib_simple_counter_main_t *cm;
365 u64 v, vtotal;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700366
367 n_counters = vec_len (im->sw_if_counters);
368
369 for (j = 0; j < n_counters; j++)
370 {
Dave Barachba868bb2016-08-08 09:51:21 -0400371 vtotal = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700372
Dave Barach8fdde3c2019-05-17 10:46:40 -0400373 cm = im->sw_if_counters + j;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700374
Dave Barach8fdde3c2019-05-17 10:46:40 -0400375 v = vlib_get_simple_counter (cm, si->sw_if_index);
376 vtotal += v;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377
378 /* Only display non-zero counters. */
379 if (vtotal == 0)
380 continue;
381
Dave Barach5554c562019-09-11 21:35:48 -0400382 if (json)
383 {
384 if (json_need_comma_nl)
385 {
386 vec_add1 (s, ',');
387 vec_add1 (s, '\n');
388 }
389 s = format (s, "%s%s%s: %s%Ld%s", x, cm->name, x, x, vtotal, x);
390 json_need_comma_nl = 1;
391 continue;
392 }
393
394
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395 if (n_printed > 0)
396 s = format (s, "\n%U", format_white_space, indent);
397 n_printed += 1;
398
399 s = format (s, "%-16s%16Ld", cm->name, vtotal);
400 }
401 }
402
403 return s;
404}
405
Ole Troand7231612018-06-07 10:17:57 +0200406static u8 *
407format_vnet_sw_interface_mtu (u8 * s, va_list * args)
408{
409 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
410
411 return format (s, "%d/%d/%d/%d", si->mtu[VNET_MTU_L3],
412 si->mtu[VNET_MTU_IP4],
413 si->mtu[VNET_MTU_IP6], si->mtu[VNET_MTU_MPLS]);
414}
415
Dave Barachba868bb2016-08-08 09:51:21 -0400416u8 *
417format_vnet_sw_interface (u8 * s, va_list * args)
Sean Hope679ea792016-02-22 15:12:01 -0500418{
Dave Barachba868bb2016-08-08 09:51:21 -0400419 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
420 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
421 vnet_interface_main_t *im = &vnm->interface_main;
Sean Hope679ea792016-02-22 15:12:01 -0500422
Dave Barachba868bb2016-08-08 09:51:21 -0400423 if (!si)
Ole Troand7231612018-06-07 10:17:57 +0200424 return format (s, "%=32s%=5s%=10s%=21s%=16s%=16s",
425 "Name", "Idx", "State", "MTU (L3/IP4/IP6/MPLS)", "Counter",
426 "Count");
Sean Hope679ea792016-02-22 15:12:01 -0500427
Ole Troand7231612018-06-07 10:17:57 +0200428 s = format (s, "%-32U%=5d%=10U%=21U",
Sean Hope679ea792016-02-22 15:12:01 -0500429 format_vnet_sw_interface_name, vnm, si, si->sw_if_index,
Ole Troand7231612018-06-07 10:17:57 +0200430 format_vnet_sw_interface_flags, si->flags,
431 format_vnet_sw_interface_mtu, si);
Sean Hope679ea792016-02-22 15:12:01 -0500432
Dave Barach5554c562019-09-11 21:35:48 -0400433 s = format_vnet_sw_interface_cntrs (s, im, si, 0 /* want json */ );
Sean Hope679ea792016-02-22 15:12:01 -0500434
435 return s;
436}
437
Dave Barachba868bb2016-08-08 09:51:21 -0400438u8 *
439format_vnet_sw_interface_name_override (u8 * s, va_list * args)
Sean Hope679ea792016-02-22 15:12:01 -0500440{
Dave Barachba868bb2016-08-08 09:51:21 -0400441 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
442 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
Sean Hope679ea792016-02-22 15:12:01 -0500443 /* caller supplied display name for this interface */
Dave Barachba868bb2016-08-08 09:51:21 -0400444 u8 *name = va_arg (*args, u8 *);
445 vnet_interface_main_t *im = &vnm->interface_main;
Sean Hope679ea792016-02-22 15:12:01 -0500446
447
Dave Barachba868bb2016-08-08 09:51:21 -0400448 if (!si)
Sean Hope679ea792016-02-22 15:12:01 -0500449 return format (s, "%=32s%=5s%=16s%=16s%=16s",
450 "Name", "Idx", "State", "Counter", "Count");
451
452 s = format (s, "%-32v%=5d%=16U",
453 name, si->sw_if_index,
454 format_vnet_sw_interface_flags, si->flags);
455
Dave Barach5554c562019-09-11 21:35:48 -0400456 s = format_vnet_sw_interface_cntrs (s, im, si, 0 /* want json */ );
Sean Hope679ea792016-02-22 15:12:01 -0500457
458 return s;
459}
460
Dave Barach7fff3d22018-11-27 16:52:59 -0500461u8 *
462format_vnet_buffer_flags (u8 * s, va_list * args)
463{
464 vlib_buffer_t *buf = va_arg (*args, vlib_buffer_t *);
465
466#define _(a,b,c,v) if (buf->flags & VNET_BUFFER_F_##b) s = format (s, "%s ", c);
467 foreach_vnet_buffer_flag;
468#undef _
469 return s;
470}
471
472u8 *
473format_vnet_buffer_opaque (u8 * s, va_list * args)
474{
475 vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
476 vnet_buffer_opaque_t *o = (vnet_buffer_opaque_t *) b->opaque;
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700477 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
478 vnet_buffer_opquae_formatter_t helper_fp;
Dave Barach7fff3d22018-11-27 16:52:59 -0500479 int i;
480
481 s = format (s, "raw: ");
482
483 for (i = 0; i < ARRAY_LEN (b->opaque); i++)
484 s = format (s, "%08x ", b->opaque[i]);
485
486 vec_add1 (s, '\n');
487
488 s = format (s,
489 "sw_if_index[VLIB_RX]: %d, sw_if_index[VLIB_TX]: %d",
490 o->sw_if_index[0], o->sw_if_index[1]);
491 vec_add1 (s, '\n');
492
493 s = format (s,
494 "L2 offset %d, L3 offset %d, L4 offset %d, feature arc index %d",
495 (u32) (o->l2_hdr_offset),
496 (u32) (o->l3_hdr_offset),
497 (u32) (o->l4_hdr_offset), (u32) (o->feature_arc_index));
498 vec_add1 (s, '\n');
499
500 s = format (s,
501 "ip.adj_index[VLIB_RX]: %d, ip.adj_index[VLIB_TX]: %d",
502 (u32) (o->ip.adj_index[0]), (u32) (o->ip.adj_index[1]));
503 vec_add1 (s, '\n');
504
505 s = format (s,
506 "ip.flow_hash: 0x%x, ip.save_protocol: 0x%x, ip.fib_index: %d",
507 o->ip.flow_hash, o->ip.save_protocol, o->ip.fib_index);
508 vec_add1 (s, '\n');
509
510 s = format (s,
511 "ip.save_rewrite_length: %d, ip.rpf_id: %d",
512 o->ip.save_rewrite_length, o->ip.rpf_id);
513 vec_add1 (s, '\n');
514
515 s = format (s,
516 "ip.icmp.type: %d ip.icmp.code: %d, ip.icmp.data: 0x%x",
517 (u32) (o->ip.icmp.type),
518 (u32) (o->ip.icmp.code), o->ip.icmp.data);
519 vec_add1 (s, '\n');
520
521 s = format (s,
522 "ip.reass.next_index: %d, ip.reass.estimated_mtu: %d",
523 o->ip.reass.next_index, (u32) (o->ip.reass.estimated_mtu));
524 vec_add1 (s, '\n');
Dave Barachd7b30662019-10-24 18:10:10 -0400525 s = format (s,
526 "ip.reass.error_next_index: %d, ip.reass.owner_thread_index: %d",
527 o->ip.reass.error_next_index,
528 (u32) (o->ip.reass.owner_thread_index));
529 vec_add1 (s, '\n');
530 s = format (s,
531 "ip.reass.ip_proto: %d, ip.reass.l4_src_port: %d",
532 o->ip.reass.ip_proto, (u32) (o->ip.reass.l4_src_port));
533 vec_add1 (s, '\n');
534 s = format (s, "ip.reass.l4_dst_port: %d", o->ip.reass.l4_dst_port);
535 vec_add1 (s, '\n');
Dave Barach7fff3d22018-11-27 16:52:59 -0500536
537 s = format (s,
538 "ip.reass.fragment_first: %d ip.reass.fragment_last: %d",
539 (u32) (o->ip.reass.fragment_first),
540 (u32) (o->ip.reass.fragment_last));
541 vec_add1 (s, '\n');
542
543 s = format (s,
544 "ip.reass.range_first: %d ip.reass.range_last: %d",
545 (u32) (o->ip.reass.range_first),
546 (u32) (o->ip.reass.range_last));
547 vec_add1 (s, '\n');
548
549 s = format (s,
550 "ip.reass.next_range_bi: 0x%x, ip.reass.ip6_frag_hdr_offset: %d",
551 o->ip.reass.next_range_bi,
552 (u32) (o->ip.reass.ip6_frag_hdr_offset));
553 vec_add1 (s, '\n');
554
555 s = format (s,
556 "mpls.ttl: %d, mpls.exp: %d, mpls.first: %d, "
557 "mpls.save_rewrite_length: %d, mpls.bier.n_bytes: %d",
558 (u32) (o->mpls.ttl), (u32) (o->mpls.exp), (u32) (o->mpls.first),
559 o->mpls.save_rewrite_length, (u32) (o->mpls.bier.n_bytes));
560 vec_add1 (s, '\n');
Dave Barachd7b30662019-10-24 18:10:10 -0400561 s = format (s, "mpls.mpls_hdr_length: %d", (u32) (o->mpls.mpls_hdr_length));
562 vec_add1 (s, '\n');
Dave Barach7fff3d22018-11-27 16:52:59 -0500563
564 s = format (s,
Dave Barachd7b30662019-10-24 18:10:10 -0400565 "l2.feature_bitmap: %08x, l2.bd_index: %d, l2.l2fib_sn %d, "
566 "l2.l2_len: %d, l2.shg: %d, l2.bd_age: %d",
567 (u32) (o->l2.feature_bitmap), (u32) (o->l2.bd_index),
568 (u32) (o->l2.l2fib_sn),
569 (u32) (o->l2.l2_len), (u32) (o->l2.shg), (u32) (o->l2.bd_age));
Dave Barach7fff3d22018-11-27 16:52:59 -0500570 vec_add1 (s, '\n');
571
572 s = format (s,
Dave Barach7bdaa3f2018-12-03 11:33:09 -0500573 "l2.feature_bitmap_input: %U, L2.feature_bitmap_output: %U",
Neale Ranns47a3d992020-09-29 15:38:51 +0000574 format_l2_input_feature_bitmap, o->l2.feature_bitmap, 0,
Dave Barach7bdaa3f2018-12-03 11:33:09 -0500575 format_l2_output_features, o->l2.feature_bitmap, 0);
576 vec_add1 (s, '\n');
577
578 s = format (s,
Dave Barach7fff3d22018-11-27 16:52:59 -0500579 "l2t.next_index: %d, l2t.session_index: %d",
580 (u32) (o->l2t.next_index), o->l2t.session_index);
581 vec_add1 (s, '\n');
582
583 s = format (s,
584 "l2_classify.table_index: %d, l2_classify.opaque_index: %d, "
585 "l2_classify.hash: 0x%llx",
586 o->l2_classify.table_index,
587 o->l2_classify.opaque_index, o->l2_classify.hash);
588 vec_add1 (s, '\n');
589
590 s = format (s, "policer.index: %d", o->policer.index);
591 vec_add1 (s, '\n');
592
Dave Barachd7b30662019-10-24 18:10:10 -0400593 s = format (s, "ipsec.sad_index: %d, ipsec.protect_index",
594 o->ipsec.sad_index, o->ipsec.protect_index);
Dave Barach7fff3d22018-11-27 16:52:59 -0500595 vec_add1 (s, '\n');
596
597 s = format (s, "map.mtu: %d", (u32) (o->map.mtu));
598 vec_add1 (s, '\n');
599
600 s = format (s,
Dave Barachd7b30662019-10-24 18:10:10 -0400601 "map_t.map_domain_index: %d, map_t.v6.saddr: 0x%x, "
602 "map_t.v6.daddr: 0x%x, map_t.v6.frag_offset: %d, "
603 "map_t.v6.l4_offset: %d, map_t.v6.l4_protocol: %d, "
604 "map.t.checksum_offset: %d",
605 o->map_t.map_domain_index,
Dave Barach7fff3d22018-11-27 16:52:59 -0500606 o->map_t.v6.saddr,
607 o->map_t.v6.daddr,
Dave Barachd7b30662019-10-24 18:10:10 -0400608 (u32) (o->map_t.v6.frag_offset), (u32) (o->map_t.v6.l4_offset),
609 (u32) (o->map_t.v6.l4_protocol),
610 (u32) (o->map_t.checksum_offset));
Dave Barach7fff3d22018-11-27 16:52:59 -0500611 vec_add1 (s, '\n');
612
613 s = format (s,
614 "map_t.v6.l4_protocol: %d, map_t.checksum_offset: %d, "
615 "map_t.mtu: %d",
616 (u32) (o->map_t.v6.l4_protocol),
617 (u32) (o->map_t.checksum_offset), (u32) (o->map_t.mtu));
618 vec_add1 (s, '\n');
619
620 s = format (s,
621 "ip_frag.mtu: %d, ip_frag.next_index: %d, ip_frag.flags: 0x%x",
622 (u32) (o->ip_frag.mtu),
623 (u32) (o->ip_frag.next_index), (u32) (o->ip_frag.flags));
624 vec_add1 (s, '\n');
625
626 s = format (s, "cop.current_config_index: %d", o->cop.current_config_index);
627 vec_add1 (s, '\n');
628
629 s = format (s, "lisp.overlay_afi: %d", (u32) (o->lisp.overlay_afi));
630 vec_add1 (s, '\n');
631
632 s = format
Dave Barachd7b30662019-10-24 18:10:10 -0400633 (s,
634 "tcp.connection_index: %d, tcp.seq_number: %d, tcp.next_node_opaque: %d "
635 "tcp.seq_end: %d, tcp.ack_number: %d, tcp.hdr_offset: %d, "
636 "tcp.data_offset: %d", o->tcp.connection_index, o->tcp.next_node_opaque,
637 o->tcp.seq_number, o->tcp.seq_end, o->tcp.ack_number,
Dave Barach7fff3d22018-11-27 16:52:59 -0500638 (u32) (o->tcp.hdr_offset), (u32) (o->tcp.data_offset));
639 vec_add1 (s, '\n');
640
641 s = format (s,
642 "tcp.data_len: %d, tcp.flags: 0x%x",
643 (u32) (o->tcp.data_len), (u32) (o->tcp.flags));
644 vec_add1 (s, '\n');
645
Dave Barach7fff3d22018-11-27 16:52:59 -0500646 s = format (s, "snat.flags: 0x%x", o->snat.flags);
647 vec_add1 (s, '\n');
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700648
649 for (i = 0; i < vec_len (im->buffer_opaque_format_helpers); i++)
650 {
651 helper_fp = im->buffer_opaque_format_helpers[i];
652 s = (*helper_fp) (b, s);
653 }
654
Dave Barach7fff3d22018-11-27 16:52:59 -0500655 return s;
656}
657
658u8 *
659format_vnet_buffer_opaque2 (u8 * s, va_list * args)
660{
661 vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
662 vnet_buffer_opaque2_t *o = (vnet_buffer_opaque2_t *) b->opaque2;
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700663 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
664 vnet_buffer_opquae_formatter_t helper_fp;
Dave Barach7fff3d22018-11-27 16:52:59 -0500665
666 int i;
667
668 s = format (s, "raw: ");
669
670 for (i = 0; i < ARRAY_LEN (b->opaque2); i++)
671 s = format (s, "%08x ", b->opaque2[i]);
672 vec_add1 (s, '\n');
673
674 s = format (s, "qos.bits: %x, qos.source: %x",
675 (u32) (o->qos.bits), (u32) (o->qos.source));
676 vec_add1 (s, '\n');
677 s = format (s, "loop_counter: %d", o->loop_counter);
678 vec_add1 (s, '\n');
679
Neale Ranns4ba67722019-02-28 11:11:39 +0000680 s = format (s, "gbp.flags: %x, gbp.sclass: %d",
681 (u32) (o->gbp.flags), (u32) (o->gbp.sclass));
Dave Barach7fff3d22018-11-27 16:52:59 -0500682 vec_add1 (s, '\n');
683
Dave Barachd7b30662019-10-24 18:10:10 -0400684 s = format (s, "gso_size: %d, gso_l4_hdr_sz: %d",
685 (u32) (o->gso_size), (u32) (o->gso_l4_hdr_sz));
686 vec_add1 (s, '\n');
687
Dave Barach7fff3d22018-11-27 16:52:59 -0500688 s = format (s, "pg_replay_timestamp: %llu", (u32) (o->pg_replay_timestamp));
689 vec_add1 (s, '\n');
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700690
691 for (i = 0; i < vec_len (im->buffer_opaque2_format_helpers); i++)
692 {
693 helper_fp = im->buffer_opaque2_format_helpers[i];
694 s = (*helper_fp) (b, s);
695 }
696
Dave Barach7fff3d22018-11-27 16:52:59 -0500697 return s;
698}
699
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700700void
701vnet_register_format_buffer_opaque_helper (vnet_buffer_opquae_formatter_t fp)
702{
703 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
704 vec_add1 (im->buffer_opaque_format_helpers, fp);
705}
706
707void
708vnet_register_format_buffer_opaque2_helper (vnet_buffer_opquae_formatter_t fp)
709{
710 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
711 vec_add1 (im->buffer_opaque2_format_helpers, fp);
712}
713
714
Dave Barachba868bb2016-08-08 09:51:21 -0400715uword
Dave Barach08eb2bb2020-04-15 09:34:43 -0400716unformat_vnet_buffer_flags (unformat_input_t * input, va_list * args)
717{
718 u32 *flagp = va_arg (*args, u32 *);
719 int rv = 0;
720 u32 flags = 0;
721
722 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
723 {
724 /* Red herring, there is no such buffer flag */
725 if (unformat (input, "avail8"))
726 return 0;
727#define _(bit,enum,str,verbose) \
728 else if (unformat (input, str)) \
729 { \
730 flags |= (1 << LOG2_VLIB_BUFFER_FLAG_USER(bit)); \
731 rv = 1; \
732 }
733 foreach_vnet_buffer_flag
734#undef _
735 else
736 break;
737 }
738 if (rv)
739 *flagp = flags;
740 return rv;
741}
742
743uword
Dave Barachba868bb2016-08-08 09:51:21 -0400744unformat_vnet_hw_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700745{
Dave Barachba868bb2016-08-08 09:51:21 -0400746 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
747 u32 *hw_if_index = va_arg (*args, u32 *);
748 vnet_interface_main_t *im = &vnm->interface_main;
749 vnet_device_class_t *c;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700750
751 /* Try per device class functions first. */
752 vec_foreach (c, im->device_classes)
Dave Barachba868bb2016-08-08 09:51:21 -0400753 {
754 if (c->unformat_device_name
755 && unformat_user (input, c->unformat_device_name, hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700756 return 1;
Dave Barachba868bb2016-08-08 09:51:21 -0400757 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700758
759 return unformat_user (input, unformat_hash_vec_string,
760 im->hw_interface_by_name, hw_if_index);
761}
762
Dave Barachba868bb2016-08-08 09:51:21 -0400763uword
764unformat_vnet_sw_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700765{
Dave Barachba868bb2016-08-08 09:51:21 -0400766 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
767 u32 *result = va_arg (*args, u32 *);
768 vnet_hw_interface_t *hi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700769 u32 hw_if_index, id, id_specified;
Eyal Bari3212c572017-03-06 11:47:50 +0200770 u32 sw_if_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400771 u8 *if_name = 0;
772 uword *p, error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700773
774 id = ~0;
775 if (unformat (input, "%_%v.%d%_", &if_name, &id)
776 && ((p = hash_get (vnm->interface_main.hw_interface_by_name, if_name))))
777 {
778 hw_if_index = p[0];
779 id_specified = 1;
780 }
Dave Barachba868bb2016-08-08 09:51:21 -0400781 else
782 if (unformat (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700783 id_specified = 0;
784 else
785 goto done;
786
787 hi = vnet_get_hw_interface (vnm, hw_if_index);
Dave Barachba868bb2016-08-08 09:51:21 -0400788 if (!id_specified)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700789 {
Eyal Bari3212c572017-03-06 11:47:50 +0200790 sw_if_index = hi->sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700791 }
792 else
793 {
Dave Barachba868bb2016-08-08 09:51:21 -0400794 if (!(p = hash_get (hi->sub_interface_sw_if_index_by_id, id)))
Eyal Bari3212c572017-03-06 11:47:50 +0200795 goto done;
796 sw_if_index = p[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700797 }
Eyal Bari3212c572017-03-06 11:47:50 +0200798 if (!vnet_sw_interface_is_api_visible (vnm, sw_if_index))
799 goto done;
800 *result = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700801 error = 1;
Dave Barachba868bb2016-08-08 09:51:21 -0400802done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700803 vec_free (if_name);
804 return error;
805}
806
Dave Barachba868bb2016-08-08 09:51:21 -0400807uword
808unformat_vnet_sw_interface_flags (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700809{
Dave Barachba868bb2016-08-08 09:51:21 -0400810 u32 *result = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700811 u32 flags = 0;
812
813 if (unformat (input, "up"))
814 flags |= VNET_SW_INTERFACE_FLAG_ADMIN_UP;
815 else if (unformat (input, "down"))
816 flags &= ~VNET_SW_INTERFACE_FLAG_ADMIN_UP;
817 else if (unformat (input, "punt"))
818 flags |= VNET_SW_INTERFACE_FLAG_PUNT;
819 else if (unformat (input, "enable"))
820 flags &= ~VNET_SW_INTERFACE_FLAG_PUNT;
821 else
822 return 0;
823
824 *result = flags;
825 return 1;
826}
827
Dave Barachba868bb2016-08-08 09:51:21 -0400828uword
829unformat_vnet_hw_interface_flags (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700830{
Dave Barachba868bb2016-08-08 09:51:21 -0400831 u32 *result = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700832 u32 flags = 0;
833
834 if (unformat (input, "up"))
835 flags |= VNET_HW_INTERFACE_FLAG_LINK_UP;
836 else if (unformat (input, "down"))
837 flags &= ~VNET_HW_INTERFACE_FLAG_LINK_UP;
838 else
839 return 0;
840
841 *result = flags;
842 return 1;
843}
844
Dave Barachba868bb2016-08-08 09:51:21 -0400845/*
846 * fd.io coding-style-patch-verification: ON
847 *
848 * Local Variables:
849 * eval: (c-set-style "gnu")
850 * End:
851 */