blob: 347dd4940d4ad3146ef31b0c1632e0af8618ca7a [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>
Ed Warnickecb9cada2015-12-08 15:45:58 -070044
Dave Barachba868bb2016-08-08 09:51:21 -040045u8 *
46format_vnet_sw_interface_flags (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070047{
48 u32 flags = va_arg (*args, u32);
49
Damjan Marionabce5092017-05-10 20:09:31 +020050 if (flags & VNET_SW_INTERFACE_FLAG_ERROR)
51 s = format (s, "error");
Dave Barachba868bb2016-08-08 09:51:21 -040052 else
John Lobcebbb92016-04-05 15:47:43 -040053 {
Dave Barachba868bb2016-08-08 09:51:21 -040054 s = format (s, "%s",
John Lobcebbb92016-04-05 15:47:43 -040055 (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? "up" : "down");
Dave Barachba868bb2016-08-08 09:51:21 -040056 if (flags & VNET_SW_INTERFACE_FLAG_PUNT)
John Lobcebbb92016-04-05 15:47:43 -040057 s = format (s, "/punt");
58 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070059
60 return s;
61}
62
Dave Barachba868bb2016-08-08 09:51:21 -040063u8 *
Damjan Marion44036902017-04-28 12:29:15 +020064format_vnet_hw_interface_rx_mode (u8 * s, va_list * args)
65{
66 vnet_hw_interface_rx_mode mode = va_arg (*args, vnet_hw_interface_rx_mode);
67
68 if (mode == VNET_HW_INTERFACE_RX_MODE_POLLING)
69 return format (s, "polling");
70
71 if (mode == VNET_HW_INTERFACE_RX_MODE_INTERRUPT)
72 return format (s, "interrupt");
73
74 if (mode == VNET_HW_INTERFACE_RX_MODE_ADAPTIVE)
75 return format (s, "adaptive");
76
77 return format (s, "unknown");
78}
79
80u8 *
Damjan Marion5100aa92018-11-08 15:30:16 +010081format_vnet_hw_interface_link_speed (u8 * s, va_list * args)
82{
83 u32 link_speed = va_arg (*args, u32);
84
85 if (link_speed == 0)
86 return format (s, "unknown");
87
88 if (link_speed >= 1000000)
89 return format (s, "%f Gbps", (f64) link_speed / 1000000);
90
91 if (link_speed >= 1000)
92 return format (s, "%f Mbps", (f64) link_speed / 1000);
93
94 return format (s, "%u Kbps", link_speed);
95}
96
97
98u8 *
Dave Barachba868bb2016-08-08 09:51:21 -040099format_vnet_hw_interface (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100{
Dave Barachba868bb2016-08-08 09:51:21 -0400101 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
102 vnet_hw_interface_t *hi = va_arg (*args, vnet_hw_interface_t *);
103 vnet_hw_interface_class_t *hw_class;
104 vnet_device_class_t *dev_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105 int verbose = va_arg (*args, int);
Christophe Fontained3c008d2017-10-02 18:10:54 +0200106 u32 indent;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700107
Dave Barachba868bb2016-08-08 09:51:21 -0400108 if (!hi)
109 return format (s, "%=32s%=6s%=8s%s", "Name", "Idx", "Link", "Hardware");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110
111 indent = format_get_indent (s);
112
John Lobcebbb92016-04-05 15:47:43 -0400113 s = format (s, "%-32v%=6d", hi->name, hi->hw_if_index);
114
115 if (hi->bond_info == VNET_HW_INTERFACE_BOND_INFO_SLAVE)
116 s = format (s, "%=8s", "slave");
117 else
Dave Barachba868bb2016-08-08 09:51:21 -0400118 s = format (s, "%=8s",
John Lobcebbb92016-04-05 15:47:43 -0400119 hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP ? "up" : "down");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120
121 hw_class = vnet_get_hw_interface_class (vnm, hi->hw_class_index);
122 dev_class = vnet_get_device_class (vnm, hi->dev_class_index);
123
Dave Barachba868bb2016-08-08 09:51:21 -0400124 if (hi->bond_info && (hi->bond_info != VNET_HW_INTERFACE_BOND_INFO_SLAVE))
John Lobcebbb92016-04-05 15:47:43 -0400125 {
126 int hw_idx;
127 s = format (s, "Slave-Idx:");
Dave Barachba868bb2016-08-08 09:51:21 -0400128 clib_bitmap_foreach (hw_idx, hi->bond_info, s =
129 format (s, " %d", hw_idx));
John Lobcebbb92016-04-05 15:47:43 -0400130 }
Dave Barachba868bb2016-08-08 09:51:21 -0400131 else if (dev_class->format_device_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700132 s = format (s, "%U", dev_class->format_device_name, hi->dev_instance);
133 else
134 s = format (s, "%s%d", dev_class->name, hi->dev_instance);
135
Damjan Marion5100aa92018-11-08 15:30:16 +0100136 s = format (s, "\n%ULink speed: %U", format_white_space, indent + 2,
137 format_vnet_hw_interface_link_speed, hi->link_speed);
138
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139 if (verbose)
140 {
141 if (hw_class->format_device)
142 s = format (s, "\n%U%U",
143 format_white_space, indent + 2,
144 hw_class->format_device, hi->hw_if_index, verbose);
145 else
146 {
147 s = format (s, "\n%U%s",
Dave Barachba868bb2016-08-08 09:51:21 -0400148 format_white_space, indent + 2, hw_class->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149 if (hw_class->format_address && vec_len (hi->hw_address) > 0)
Dave Barachba868bb2016-08-08 09:51:21 -0400150 s =
151 format (s, " address %U", hw_class->format_address,
152 hi->hw_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700153 }
154
155 if (dev_class->format_device)
156 s = format (s, "\n%U%U",
157 format_white_space, indent + 2,
158 dev_class->format_device, hi->dev_instance, verbose);
159 }
160
161 return s;
162}
163
Dave Barachba868bb2016-08-08 09:51:21 -0400164u8 *
165format_vnet_sw_interface_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166{
Dave Barachba868bb2016-08-08 09:51:21 -0400167 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
168 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
169 vnet_sw_interface_t *si_sup =
170 vnet_get_sup_sw_interface (vnm, si->sw_if_index);
171 vnet_hw_interface_t *hi_sup;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172
173 ASSERT (si_sup->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
174 hi_sup = vnet_get_hw_interface (vnm, si_sup->hw_if_index);
175
176 s = format (s, "%v", hi_sup->name);
177
178 if (si->type != VNET_SW_INTERFACE_TYPE_HARDWARE)
179 s = format (s, ".%d", si->sub.id);
180
181 return s;
182}
183
Dave Barachba868bb2016-08-08 09:51:21 -0400184u8 *
185format_vnet_sw_if_index_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700186{
Dave Barachba868bb2016-08-08 09:51:21 -0400187 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188 u32 sw_if_index = va_arg (*args, u32);
Neale Rannsda78f952017-05-24 09:15:43 -0700189 vnet_sw_interface_t *si;
190
Dave Barach3940de32019-07-23 16:28:36 -0400191 si = vnet_get_sw_interface_or_null (vnm, sw_if_index);
Neale Rannsda78f952017-05-24 09:15:43 -0700192
193 if (NULL == si)
194 {
195 return format (s, "DELETED");
196 }
197 return format (s, "%U", format_vnet_sw_interface_name, vnm, si);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198}
199
Dave Barachba868bb2016-08-08 09:51:21 -0400200u8 *
Damjan Mariona35cc142018-03-16 01:25:27 +0100201format_vnet_hw_if_index_name (u8 * s, va_list * args)
202{
203 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
204 u32 hw_if_index = va_arg (*args, u32);
205 vnet_hw_interface_t *hi;
206
207 hi = vnet_get_hw_interface (vnm, hw_if_index);
208
209 if (hi == 0)
210 return format (s, "DELETED");
211
212 return format (s, "%v", hi->name);
213}
214
215u8 *
Dave Barachba868bb2016-08-08 09:51:21 -0400216format_vnet_sw_interface_cntrs (u8 * s, vnet_interface_main_t * im,
Dave Barach5554c562019-09-11 21:35:48 -0400217 vnet_sw_interface_t * si, int json)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700218{
Christophe Fontained3c008d2017-10-02 18:10:54 +0200219 u32 indent, n_printed;
Dave Barach8fdde3c2019-05-17 10:46:40 -0400220 int j, n_counters;
Dave Barach5554c562019-09-11 21:35:48 -0400221 char *x = "";
222 int json_need_comma_nl = 0;
Dave Barach8fdde3c2019-05-17 10:46:40 -0400223 u8 *n = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700224
Dave Barach5554c562019-09-11 21:35:48 -0400225 /*
226 * to output a json snippet, stick quotes in lots of places
227 * definitely deserves a one-character variable name.
228 */
229 if (json)
230 x = "\"";
231
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232 indent = format_get_indent (s);
233 n_printed = 0;
234
Dave Barach8fdde3c2019-05-17 10:46:40 -0400235 n_counters = vec_len (im->combined_sw_if_counters);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700236
Dave Barach8fdde3c2019-05-17 10:46:40 -0400237 /* rx, tx counters... */
238 for (j = 0; j < n_counters; j++)
239 {
240 vlib_combined_counter_main_t *cm;
241 vlib_counter_t v, vtotal;
242 vtotal.packets = 0;
243 vtotal.bytes = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700244
Dave Barach8fdde3c2019-05-17 10:46:40 -0400245 cm = im->combined_sw_if_counters + j;
246 vlib_get_combined_counter (cm, si->sw_if_index, &v);
247 vtotal.packets += v.packets;
248 vtotal.bytes += v.bytes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249
Dave Barach8fdde3c2019-05-17 10:46:40 -0400250 /* Only display non-zero counters. */
251 if (vtotal.packets == 0)
252 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700253
Dave Barach5554c562019-09-11 21:35:48 -0400254 if (json)
255 {
256 if (json_need_comma_nl)
257 {
258 vec_add1 (s, ',');
259 vec_add1 (s, '\n');
260 }
261 s = format (s, "%s%s_packets%s: %s%Ld%s,\n", x, cm->name, x, x,
262 vtotal.packets, x);
263 s = format (s, "%s%s_bytes%s: %s%Ld%s", x, cm->name, x, x,
264 vtotal.bytes, x);
265 json_need_comma_nl = 1;
266 continue;
267 }
268
Dave Barach8fdde3c2019-05-17 10:46:40 -0400269 if (n_printed > 0)
270 s = format (s, "\n%U", format_white_space, indent);
271 n_printed += 2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272
Dave Barach8fdde3c2019-05-17 10:46:40 -0400273 if (n)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274 _vec_len (n) = 0;
Dave Barach8fdde3c2019-05-17 10:46:40 -0400275 n = format (n, "%s packets", cm->name);
276 s = format (s, "%-16v%16Ld", n, vtotal.packets);
277
278 _vec_len (n) = 0;
279 n = format (n, "%s bytes", cm->name);
280 s = format (s, "\n%U%-16v%16Ld",
281 format_white_space, indent, n, vtotal.bytes);
282 }
283 vec_free (n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284
285 {
Dave Barachba868bb2016-08-08 09:51:21 -0400286 vlib_simple_counter_main_t *cm;
287 u64 v, vtotal;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288
289 n_counters = vec_len (im->sw_if_counters);
290
291 for (j = 0; j < n_counters; j++)
292 {
Dave Barachba868bb2016-08-08 09:51:21 -0400293 vtotal = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294
Dave Barach8fdde3c2019-05-17 10:46:40 -0400295 cm = im->sw_if_counters + j;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700296
Dave Barach8fdde3c2019-05-17 10:46:40 -0400297 v = vlib_get_simple_counter (cm, si->sw_if_index);
298 vtotal += v;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299
300 /* Only display non-zero counters. */
301 if (vtotal == 0)
302 continue;
303
Dave Barach5554c562019-09-11 21:35:48 -0400304 if (json)
305 {
306 if (json_need_comma_nl)
307 {
308 vec_add1 (s, ',');
309 vec_add1 (s, '\n');
310 }
311 s = format (s, "%s%s%s: %s%Ld%s", x, cm->name, x, x, vtotal, x);
312 json_need_comma_nl = 1;
313 continue;
314 }
315
316
Ed Warnickecb9cada2015-12-08 15:45:58 -0700317 if (n_printed > 0)
318 s = format (s, "\n%U", format_white_space, indent);
319 n_printed += 1;
320
321 s = format (s, "%-16s%16Ld", cm->name, vtotal);
322 }
323 }
324
325 return s;
326}
327
Ole Troand7231612018-06-07 10:17:57 +0200328static u8 *
329format_vnet_sw_interface_mtu (u8 * s, va_list * args)
330{
331 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
332
333 return format (s, "%d/%d/%d/%d", si->mtu[VNET_MTU_L3],
334 si->mtu[VNET_MTU_IP4],
335 si->mtu[VNET_MTU_IP6], si->mtu[VNET_MTU_MPLS]);
336}
337
Dave Barachba868bb2016-08-08 09:51:21 -0400338u8 *
339format_vnet_sw_interface (u8 * s, va_list * args)
Sean Hope679ea792016-02-22 15:12:01 -0500340{
Dave Barachba868bb2016-08-08 09:51:21 -0400341 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
342 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
343 vnet_interface_main_t *im = &vnm->interface_main;
Sean Hope679ea792016-02-22 15:12:01 -0500344
Dave Barachba868bb2016-08-08 09:51:21 -0400345 if (!si)
Ole Troand7231612018-06-07 10:17:57 +0200346 return format (s, "%=32s%=5s%=10s%=21s%=16s%=16s",
347 "Name", "Idx", "State", "MTU (L3/IP4/IP6/MPLS)", "Counter",
348 "Count");
Sean Hope679ea792016-02-22 15:12:01 -0500349
Ole Troand7231612018-06-07 10:17:57 +0200350 s = format (s, "%-32U%=5d%=10U%=21U",
Sean Hope679ea792016-02-22 15:12:01 -0500351 format_vnet_sw_interface_name, vnm, si, si->sw_if_index,
Ole Troand7231612018-06-07 10:17:57 +0200352 format_vnet_sw_interface_flags, si->flags,
353 format_vnet_sw_interface_mtu, si);
Sean Hope679ea792016-02-22 15:12:01 -0500354
Dave Barach5554c562019-09-11 21:35:48 -0400355 s = format_vnet_sw_interface_cntrs (s, im, si, 0 /* want json */ );
Sean Hope679ea792016-02-22 15:12:01 -0500356
357 return s;
358}
359
Dave Barachba868bb2016-08-08 09:51:21 -0400360u8 *
361format_vnet_sw_interface_name_override (u8 * s, va_list * args)
Sean Hope679ea792016-02-22 15:12:01 -0500362{
Dave Barachba868bb2016-08-08 09:51:21 -0400363 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
364 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
Sean Hope679ea792016-02-22 15:12:01 -0500365 /* caller supplied display name for this interface */
Dave Barachba868bb2016-08-08 09:51:21 -0400366 u8 *name = va_arg (*args, u8 *);
367 vnet_interface_main_t *im = &vnm->interface_main;
Sean Hope679ea792016-02-22 15:12:01 -0500368
369
Dave Barachba868bb2016-08-08 09:51:21 -0400370 if (!si)
Sean Hope679ea792016-02-22 15:12:01 -0500371 return format (s, "%=32s%=5s%=16s%=16s%=16s",
372 "Name", "Idx", "State", "Counter", "Count");
373
374 s = format (s, "%-32v%=5d%=16U",
375 name, si->sw_if_index,
376 format_vnet_sw_interface_flags, si->flags);
377
Dave Barach5554c562019-09-11 21:35:48 -0400378 s = format_vnet_sw_interface_cntrs (s, im, si, 0 /* want json */ );
Sean Hope679ea792016-02-22 15:12:01 -0500379
380 return s;
381}
382
Dave Barach7fff3d22018-11-27 16:52:59 -0500383u8 *
384format_vnet_buffer_flags (u8 * s, va_list * args)
385{
386 vlib_buffer_t *buf = va_arg (*args, vlib_buffer_t *);
387
388#define _(a,b,c,v) if (buf->flags & VNET_BUFFER_F_##b) s = format (s, "%s ", c);
389 foreach_vnet_buffer_flag;
390#undef _
391 return s;
392}
393
394u8 *
395format_vnet_buffer_opaque (u8 * s, va_list * args)
396{
397 vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
398 vnet_buffer_opaque_t *o = (vnet_buffer_opaque_t *) b->opaque;
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700399 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
400 vnet_buffer_opquae_formatter_t helper_fp;
Dave Barach7fff3d22018-11-27 16:52:59 -0500401 int i;
402
403 s = format (s, "raw: ");
404
405 for (i = 0; i < ARRAY_LEN (b->opaque); i++)
406 s = format (s, "%08x ", b->opaque[i]);
407
408 vec_add1 (s, '\n');
409
410 s = format (s,
411 "sw_if_index[VLIB_RX]: %d, sw_if_index[VLIB_TX]: %d",
412 o->sw_if_index[0], o->sw_if_index[1]);
413 vec_add1 (s, '\n');
414
415 s = format (s,
416 "L2 offset %d, L3 offset %d, L4 offset %d, feature arc index %d",
417 (u32) (o->l2_hdr_offset),
418 (u32) (o->l3_hdr_offset),
419 (u32) (o->l4_hdr_offset), (u32) (o->feature_arc_index));
420 vec_add1 (s, '\n');
421
422 s = format (s,
423 "ip.adj_index[VLIB_RX]: %d, ip.adj_index[VLIB_TX]: %d",
424 (u32) (o->ip.adj_index[0]), (u32) (o->ip.adj_index[1]));
425 vec_add1 (s, '\n');
426
427 s = format (s,
428 "ip.flow_hash: 0x%x, ip.save_protocol: 0x%x, ip.fib_index: %d",
429 o->ip.flow_hash, o->ip.save_protocol, o->ip.fib_index);
430 vec_add1 (s, '\n');
431
432 s = format (s,
433 "ip.save_rewrite_length: %d, ip.rpf_id: %d",
434 o->ip.save_rewrite_length, o->ip.rpf_id);
435 vec_add1 (s, '\n');
436
437 s = format (s,
438 "ip.icmp.type: %d ip.icmp.code: %d, ip.icmp.data: 0x%x",
439 (u32) (o->ip.icmp.type),
440 (u32) (o->ip.icmp.code), o->ip.icmp.data);
441 vec_add1 (s, '\n');
442
443 s = format (s,
444 "ip.reass.next_index: %d, ip.reass.estimated_mtu: %d",
445 o->ip.reass.next_index, (u32) (o->ip.reass.estimated_mtu));
446 vec_add1 (s, '\n');
447
448 s = format (s,
449 "ip.reass.fragment_first: %d ip.reass.fragment_last: %d",
450 (u32) (o->ip.reass.fragment_first),
451 (u32) (o->ip.reass.fragment_last));
452 vec_add1 (s, '\n');
453
454 s = format (s,
455 "ip.reass.range_first: %d ip.reass.range_last: %d",
456 (u32) (o->ip.reass.range_first),
457 (u32) (o->ip.reass.range_last));
458 vec_add1 (s, '\n');
459
460 s = format (s,
461 "ip.reass.next_range_bi: 0x%x, ip.reass.ip6_frag_hdr_offset: %d",
462 o->ip.reass.next_range_bi,
463 (u32) (o->ip.reass.ip6_frag_hdr_offset));
464 vec_add1 (s, '\n');
465
466 s = format (s,
467 "mpls.ttl: %d, mpls.exp: %d, mpls.first: %d, "
468 "mpls.save_rewrite_length: %d, mpls.bier.n_bytes: %d",
469 (u32) (o->mpls.ttl), (u32) (o->mpls.exp), (u32) (o->mpls.first),
470 o->mpls.save_rewrite_length, (u32) (o->mpls.bier.n_bytes));
471 vec_add1 (s, '\n');
472
473 s = format (s,
474 "l2.feature_bitmap: %08x, l2.bd_index: %d, l2.l2_len: %d, "
475 "l2.shg: %d, l2.l2fib_sn: %d, l2.bd_age: %d",
476 o->l2.feature_bitmap, (u32) (o->l2.bd_index),
477 (u32) (o->l2.l2_len), (u32) (o->l2.shg), (u32) (o->l2.l2fib_sn),
478 (u32) (o->l2.bd_age));
479 vec_add1 (s, '\n');
480
481 s = format (s,
Dave Barach7bdaa3f2018-12-03 11:33:09 -0500482 "l2.feature_bitmap_input: %U, L2.feature_bitmap_output: %U",
483 format_l2_input_features, o->l2.feature_bitmap, 0,
484 format_l2_output_features, o->l2.feature_bitmap, 0);
485 vec_add1 (s, '\n');
486
487 s = format (s,
Dave Barach7fff3d22018-11-27 16:52:59 -0500488 "l2t.next_index: %d, l2t.session_index: %d",
489 (u32) (o->l2t.next_index), o->l2t.session_index);
490 vec_add1 (s, '\n');
491
492 s = format (s,
493 "l2_classify.table_index: %d, l2_classify.opaque_index: %d, "
494 "l2_classify.hash: 0x%llx",
495 o->l2_classify.table_index,
496 o->l2_classify.opaque_index, o->l2_classify.hash);
497 vec_add1 (s, '\n');
498
499 s = format (s, "policer.index: %d", o->policer.index);
500 vec_add1 (s, '\n');
501
Neale Rannse524d452019-02-19 15:22:46 +0000502 s = format (s, "ipsec.sad_index: %d", o->ipsec.sad_index);
Dave Barach7fff3d22018-11-27 16:52:59 -0500503 vec_add1 (s, '\n');
504
505 s = format (s, "map.mtu: %d", (u32) (o->map.mtu));
506 vec_add1 (s, '\n');
507
508 s = format (s,
509 "map_t.v6.saddr: 0x%x, map_t.v6.daddr: 0x%x, "
510 "map_t.v6.frag_offset: %d, map_t.v6.l4_offset: %d",
511 o->map_t.v6.saddr,
512 o->map_t.v6.daddr,
513 (u32) (o->map_t.v6.frag_offset), (u32) (o->map_t.v6.l4_offset));
514 vec_add1 (s, '\n');
515
516 s = format (s,
517 "map_t.v6.l4_protocol: %d, map_t.checksum_offset: %d, "
518 "map_t.mtu: %d",
519 (u32) (o->map_t.v6.l4_protocol),
520 (u32) (o->map_t.checksum_offset), (u32) (o->map_t.mtu));
521 vec_add1 (s, '\n');
522
523 s = format (s,
524 "ip_frag.mtu: %d, ip_frag.next_index: %d, ip_frag.flags: 0x%x",
525 (u32) (o->ip_frag.mtu),
526 (u32) (o->ip_frag.next_index), (u32) (o->ip_frag.flags));
527 vec_add1 (s, '\n');
528
529 s = format (s, "cop.current_config_index: %d", o->cop.current_config_index);
530 vec_add1 (s, '\n');
531
532 s = format (s, "lisp.overlay_afi: %d", (u32) (o->lisp.overlay_afi));
533 vec_add1 (s, '\n');
534
535 s = format
536 (s, "tcp.connection_index: %d, tcp.seq_number: %d, tcp.seq_end: %d, "
537 "tcp.ack_number: %d, tcp.hdr_offset: %d, tcp.data_offset: %d",
538 o->tcp.connection_index,
539 o->tcp.seq_number,
540 o->tcp.seq_end,
541 o->tcp.ack_number,
542 (u32) (o->tcp.hdr_offset), (u32) (o->tcp.data_offset));
543 vec_add1 (s, '\n');
544
545 s = format (s,
546 "tcp.data_len: %d, tcp.flags: 0x%x",
547 (u32) (o->tcp.data_len), (u32) (o->tcp.flags));
548 vec_add1 (s, '\n');
549
Dave Barach7fff3d22018-11-27 16:52:59 -0500550 s = format (s, "snat.flags: 0x%x", o->snat.flags);
551 vec_add1 (s, '\n');
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700552
553 for (i = 0; i < vec_len (im->buffer_opaque_format_helpers); i++)
554 {
555 helper_fp = im->buffer_opaque_format_helpers[i];
556 s = (*helper_fp) (b, s);
557 }
558
Dave Barach7fff3d22018-11-27 16:52:59 -0500559 return s;
560}
561
562u8 *
563format_vnet_buffer_opaque2 (u8 * s, va_list * args)
564{
565 vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
566 vnet_buffer_opaque2_t *o = (vnet_buffer_opaque2_t *) b->opaque2;
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700567 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
568 vnet_buffer_opquae_formatter_t helper_fp;
Dave Barach7fff3d22018-11-27 16:52:59 -0500569
570 int i;
571
572 s = format (s, "raw: ");
573
574 for (i = 0; i < ARRAY_LEN (b->opaque2); i++)
575 s = format (s, "%08x ", b->opaque2[i]);
576 vec_add1 (s, '\n');
577
578 s = format (s, "qos.bits: %x, qos.source: %x",
579 (u32) (o->qos.bits), (u32) (o->qos.source));
580 vec_add1 (s, '\n');
581 s = format (s, "loop_counter: %d", o->loop_counter);
582 vec_add1 (s, '\n');
583
Neale Ranns4ba67722019-02-28 11:11:39 +0000584 s = format (s, "gbp.flags: %x, gbp.sclass: %d",
585 (u32) (o->gbp.flags), (u32) (o->gbp.sclass));
Dave Barach7fff3d22018-11-27 16:52:59 -0500586 vec_add1 (s, '\n');
587
588 s = format (s, "pg_replay_timestamp: %llu", (u32) (o->pg_replay_timestamp));
589 vec_add1 (s, '\n');
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700590
591 for (i = 0; i < vec_len (im->buffer_opaque2_format_helpers); i++)
592 {
593 helper_fp = im->buffer_opaque2_format_helpers[i];
594 s = (*helper_fp) (b, s);
595 }
596
Dave Barach7fff3d22018-11-27 16:52:59 -0500597 return s;
598}
599
Florin Coras3ffe6ca2019-06-26 16:27:13 -0700600void
601vnet_register_format_buffer_opaque_helper (vnet_buffer_opquae_formatter_t fp)
602{
603 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
604 vec_add1 (im->buffer_opaque_format_helpers, fp);
605}
606
607void
608vnet_register_format_buffer_opaque2_helper (vnet_buffer_opquae_formatter_t fp)
609{
610 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
611 vec_add1 (im->buffer_opaque2_format_helpers, fp);
612}
613
614
Dave Barachba868bb2016-08-08 09:51:21 -0400615uword
616unformat_vnet_hw_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700617{
Dave Barachba868bb2016-08-08 09:51:21 -0400618 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
619 u32 *hw_if_index = va_arg (*args, u32 *);
620 vnet_interface_main_t *im = &vnm->interface_main;
621 vnet_device_class_t *c;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700622
623 /* Try per device class functions first. */
624 vec_foreach (c, im->device_classes)
Dave Barachba868bb2016-08-08 09:51:21 -0400625 {
626 if (c->unformat_device_name
627 && unformat_user (input, c->unformat_device_name, hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700628 return 1;
Dave Barachba868bb2016-08-08 09:51:21 -0400629 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700630
631 return unformat_user (input, unformat_hash_vec_string,
632 im->hw_interface_by_name, hw_if_index);
633}
634
Dave Barachba868bb2016-08-08 09:51:21 -0400635uword
636unformat_vnet_sw_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700637{
Dave Barachba868bb2016-08-08 09:51:21 -0400638 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
639 u32 *result = va_arg (*args, u32 *);
640 vnet_hw_interface_t *hi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700641 u32 hw_if_index, id, id_specified;
Eyal Bari3212c572017-03-06 11:47:50 +0200642 u32 sw_if_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400643 u8 *if_name = 0;
644 uword *p, error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700645
646 id = ~0;
647 if (unformat (input, "%_%v.%d%_", &if_name, &id)
648 && ((p = hash_get (vnm->interface_main.hw_interface_by_name, if_name))))
649 {
650 hw_if_index = p[0];
651 id_specified = 1;
652 }
Dave Barachba868bb2016-08-08 09:51:21 -0400653 else
654 if (unformat (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700655 id_specified = 0;
656 else
657 goto done;
658
659 hi = vnet_get_hw_interface (vnm, hw_if_index);
Dave Barachba868bb2016-08-08 09:51:21 -0400660 if (!id_specified)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700661 {
Eyal Bari3212c572017-03-06 11:47:50 +0200662 sw_if_index = hi->sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700663 }
664 else
665 {
Dave Barachba868bb2016-08-08 09:51:21 -0400666 if (!(p = hash_get (hi->sub_interface_sw_if_index_by_id, id)))
Eyal Bari3212c572017-03-06 11:47:50 +0200667 goto done;
668 sw_if_index = p[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700669 }
Eyal Bari3212c572017-03-06 11:47:50 +0200670 if (!vnet_sw_interface_is_api_visible (vnm, sw_if_index))
671 goto done;
672 *result = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700673 error = 1;
Dave Barachba868bb2016-08-08 09:51:21 -0400674done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700675 vec_free (if_name);
676 return error;
677}
678
Dave Barachba868bb2016-08-08 09:51:21 -0400679uword
680unformat_vnet_sw_interface_flags (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700681{
Dave Barachba868bb2016-08-08 09:51:21 -0400682 u32 *result = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700683 u32 flags = 0;
684
685 if (unformat (input, "up"))
686 flags |= VNET_SW_INTERFACE_FLAG_ADMIN_UP;
687 else if (unformat (input, "down"))
688 flags &= ~VNET_SW_INTERFACE_FLAG_ADMIN_UP;
689 else if (unformat (input, "punt"))
690 flags |= VNET_SW_INTERFACE_FLAG_PUNT;
691 else if (unformat (input, "enable"))
692 flags &= ~VNET_SW_INTERFACE_FLAG_PUNT;
693 else
694 return 0;
695
696 *result = flags;
697 return 1;
698}
699
Dave Barachba868bb2016-08-08 09:51:21 -0400700uword
701unformat_vnet_hw_interface_flags (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700702{
Dave Barachba868bb2016-08-08 09:51:21 -0400703 u32 *result = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700704 u32 flags = 0;
705
706 if (unformat (input, "up"))
707 flags |= VNET_HW_INTERFACE_FLAG_LINK_UP;
708 else if (unformat (input, "down"))
709 flags &= ~VNET_HW_INTERFACE_FLAG_LINK_UP;
710 else
711 return 0;
712
713 *result = flags;
714 return 1;
715}
716
Dave Barachba868bb2016-08-08 09:51:21 -0400717/*
718 * fd.io coding-style-patch-verification: ON
719 *
720 * Local Variables:
721 * eval: (c-set-style "gnu")
722 * End:
723 */