blob: 98be8728e7706f4e6d633793b3724bd1686b2dac [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>
Ed Warnickecb9cada2015-12-08 15:45:58 -070042
Dave Barachba868bb2016-08-08 09:51:21 -040043u8 *
44format_vnet_sw_interface_flags (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070045{
46 u32 flags = va_arg (*args, u32);
47
Damjan Marionabce5092017-05-10 20:09:31 +020048 if (flags & VNET_SW_INTERFACE_FLAG_ERROR)
49 s = format (s, "error");
50 else if (flags & VNET_SW_INTERFACE_FLAG_BOND_SLAVE)
John Lobcebbb92016-04-05 15:47:43 -040051 s = format (s, "bond-slave");
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
191 si = vnet_get_sw_interface_safe (vnm, sw_if_index);
192
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,
217 vnet_sw_interface_t * si)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700218{
Christophe Fontained3c008d2017-10-02 18:10:54 +0200219 u32 indent, n_printed;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220 int i, j, n_counters;
Dave Barachba868bb2016-08-08 09:51:21 -0400221 static vnet_main_t **my_vnet_mains;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700222
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223 vec_reset_length (my_vnet_mains);
224
225 indent = format_get_indent (s);
226 n_printed = 0;
227
228 {
Dave Barachba868bb2016-08-08 09:51:21 -0400229 vlib_combined_counter_main_t *cm;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700230 vlib_counter_t v, vtotal;
Dave Barachba868bb2016-08-08 09:51:21 -0400231 u8 *n = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232
233 for (i = 0; i < vec_len (vnet_mains); i++)
234 {
Dave Barachba868bb2016-08-08 09:51:21 -0400235 if (vnet_mains[i])
236 vec_add1 (my_vnet_mains, vnet_mains[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237 }
238
Dave Barachba868bb2016-08-08 09:51:21 -0400239 if (vec_len (my_vnet_mains) == 0)
240 vec_add1 (my_vnet_mains, &vnet_main);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700241
242 /* Each vnet_main_t has its own copy of the interface counters */
243 n_counters = vec_len (im->combined_sw_if_counters);
244
245 /* rx, tx counters... */
246 for (j = 0; j < n_counters; j++)
247 {
Dave Barachba868bb2016-08-08 09:51:21 -0400248 vtotal.packets = 0;
249 vtotal.bytes = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250
Dave Barachba868bb2016-08-08 09:51:21 -0400251 for (i = 0; i < vec_len (my_vnet_mains); i++)
252 {
253 im = &my_vnet_mains[i]->interface_main;
254 cm = im->combined_sw_if_counters + j;
255 vlib_get_combined_counter (cm, si->sw_if_index, &v);
256 vtotal.packets += v.packets;
257 vtotal.bytes += v.bytes;
258 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700259
260 /* Only display non-zero counters. */
261 if (vtotal.packets == 0)
262 continue;
263
264 if (n_printed > 0)
265 s = format (s, "\n%U", format_white_space, indent);
266 n_printed += 2;
267
268 if (n)
269 _vec_len (n) = 0;
270 n = format (n, "%s packets", cm->name);
271 s = format (s, "%-16v%16Ld", n, vtotal.packets);
272
273 _vec_len (n) = 0;
274 n = format (n, "%s bytes", cm->name);
275 s = format (s, "\n%U%-16v%16Ld",
Dave Barachba868bb2016-08-08 09:51:21 -0400276 format_white_space, indent, n, vtotal.bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277 }
278 vec_free (n);
279 }
280
281 {
Dave Barachba868bb2016-08-08 09:51:21 -0400282 vlib_simple_counter_main_t *cm;
283 u64 v, vtotal;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284
285 n_counters = vec_len (im->sw_if_counters);
286
287 for (j = 0; j < n_counters; j++)
288 {
Dave Barachba868bb2016-08-08 09:51:21 -0400289 vtotal = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290
Dave Barachba868bb2016-08-08 09:51:21 -0400291 for (i = 0; i < vec_len (my_vnet_mains); i++)
292 {
293 im = &my_vnet_mains[i]->interface_main;
294 cm = im->sw_if_counters + j;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700295
Dave Barachba868bb2016-08-08 09:51:21 -0400296 v = vlib_get_simple_counter (cm, si->sw_if_index);
297 vtotal += v;
298 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299
300 /* Only display non-zero counters. */
301 if (vtotal == 0)
302 continue;
303
304 if (n_printed > 0)
305 s = format (s, "\n%U", format_white_space, indent);
306 n_printed += 1;
307
308 s = format (s, "%-16s%16Ld", cm->name, vtotal);
309 }
310 }
311
312 return s;
313}
314
Ole Troand7231612018-06-07 10:17:57 +0200315static u8 *
316format_vnet_sw_interface_mtu (u8 * s, va_list * args)
317{
318 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
319
320 return format (s, "%d/%d/%d/%d", si->mtu[VNET_MTU_L3],
321 si->mtu[VNET_MTU_IP4],
322 si->mtu[VNET_MTU_IP6], si->mtu[VNET_MTU_MPLS]);
323}
324
Dave Barachba868bb2016-08-08 09:51:21 -0400325u8 *
326format_vnet_sw_interface (u8 * s, va_list * args)
Sean Hope679ea792016-02-22 15:12:01 -0500327{
Dave Barachba868bb2016-08-08 09:51:21 -0400328 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
329 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
330 vnet_interface_main_t *im = &vnm->interface_main;
Sean Hope679ea792016-02-22 15:12:01 -0500331
Dave Barachba868bb2016-08-08 09:51:21 -0400332 if (!si)
Ole Troand7231612018-06-07 10:17:57 +0200333 return format (s, "%=32s%=5s%=10s%=21s%=16s%=16s",
334 "Name", "Idx", "State", "MTU (L3/IP4/IP6/MPLS)", "Counter",
335 "Count");
Sean Hope679ea792016-02-22 15:12:01 -0500336
Ole Troand7231612018-06-07 10:17:57 +0200337 s = format (s, "%-32U%=5d%=10U%=21U",
Sean Hope679ea792016-02-22 15:12:01 -0500338 format_vnet_sw_interface_name, vnm, si, si->sw_if_index,
Ole Troand7231612018-06-07 10:17:57 +0200339 format_vnet_sw_interface_flags, si->flags,
340 format_vnet_sw_interface_mtu, si);
Sean Hope679ea792016-02-22 15:12:01 -0500341
Dave Barachba868bb2016-08-08 09:51:21 -0400342 s = format_vnet_sw_interface_cntrs (s, im, si);
Sean Hope679ea792016-02-22 15:12:01 -0500343
344 return s;
345}
346
Dave Barachba868bb2016-08-08 09:51:21 -0400347u8 *
348format_vnet_sw_interface_name_override (u8 * s, va_list * args)
Sean Hope679ea792016-02-22 15:12:01 -0500349{
Dave Barachba868bb2016-08-08 09:51:21 -0400350 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
351 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
Sean Hope679ea792016-02-22 15:12:01 -0500352 /* caller supplied display name for this interface */
Dave Barachba868bb2016-08-08 09:51:21 -0400353 u8 *name = va_arg (*args, u8 *);
354 vnet_interface_main_t *im = &vnm->interface_main;
Sean Hope679ea792016-02-22 15:12:01 -0500355
356
Dave Barachba868bb2016-08-08 09:51:21 -0400357 if (!si)
Sean Hope679ea792016-02-22 15:12:01 -0500358 return format (s, "%=32s%=5s%=16s%=16s%=16s",
359 "Name", "Idx", "State", "Counter", "Count");
360
361 s = format (s, "%-32v%=5d%=16U",
362 name, si->sw_if_index,
363 format_vnet_sw_interface_flags, si->flags);
364
Dave Barachba868bb2016-08-08 09:51:21 -0400365 s = format_vnet_sw_interface_cntrs (s, im, si);
Sean Hope679ea792016-02-22 15:12:01 -0500366
367 return s;
368}
369
Dave Barach7fff3d22018-11-27 16:52:59 -0500370u8 *
371format_vnet_buffer_flags (u8 * s, va_list * args)
372{
373 vlib_buffer_t *buf = va_arg (*args, vlib_buffer_t *);
374
375#define _(a,b,c,v) if (buf->flags & VNET_BUFFER_F_##b) s = format (s, "%s ", c);
376 foreach_vnet_buffer_flag;
377#undef _
378 return s;
379}
380
381u8 *
382format_vnet_buffer_opaque (u8 * s, va_list * args)
383{
384 vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
385 vnet_buffer_opaque_t *o = (vnet_buffer_opaque_t *) b->opaque;
386 int i;
387
388 s = format (s, "raw: ");
389
390 for (i = 0; i < ARRAY_LEN (b->opaque); i++)
391 s = format (s, "%08x ", b->opaque[i]);
392
393 vec_add1 (s, '\n');
394
395 s = format (s,
396 "sw_if_index[VLIB_RX]: %d, sw_if_index[VLIB_TX]: %d",
397 o->sw_if_index[0], o->sw_if_index[1]);
398 vec_add1 (s, '\n');
399
400 s = format (s,
401 "L2 offset %d, L3 offset %d, L4 offset %d, feature arc index %d",
402 (u32) (o->l2_hdr_offset),
403 (u32) (o->l3_hdr_offset),
404 (u32) (o->l4_hdr_offset), (u32) (o->feature_arc_index));
405 vec_add1 (s, '\n');
406
407 s = format (s,
408 "ip.adj_index[VLIB_RX]: %d, ip.adj_index[VLIB_TX]: %d",
409 (u32) (o->ip.adj_index[0]), (u32) (o->ip.adj_index[1]));
410 vec_add1 (s, '\n');
411
412 s = format (s,
413 "ip.flow_hash: 0x%x, ip.save_protocol: 0x%x, ip.fib_index: %d",
414 o->ip.flow_hash, o->ip.save_protocol, o->ip.fib_index);
415 vec_add1 (s, '\n');
416
417 s = format (s,
418 "ip.save_rewrite_length: %d, ip.rpf_id: %d",
419 o->ip.save_rewrite_length, o->ip.rpf_id);
420 vec_add1 (s, '\n');
421
422 s = format (s,
423 "ip.icmp.type: %d ip.icmp.code: %d, ip.icmp.data: 0x%x",
424 (u32) (o->ip.icmp.type),
425 (u32) (o->ip.icmp.code), o->ip.icmp.data);
426 vec_add1 (s, '\n');
427
428 s = format (s,
429 "ip.reass.next_index: %d, ip.reass.estimated_mtu: %d",
430 o->ip.reass.next_index, (u32) (o->ip.reass.estimated_mtu));
431 vec_add1 (s, '\n');
432
433 s = format (s,
434 "ip.reass.fragment_first: %d ip.reass.fragment_last: %d",
435 (u32) (o->ip.reass.fragment_first),
436 (u32) (o->ip.reass.fragment_last));
437 vec_add1 (s, '\n');
438
439 s = format (s,
440 "ip.reass.range_first: %d ip.reass.range_last: %d",
441 (u32) (o->ip.reass.range_first),
442 (u32) (o->ip.reass.range_last));
443 vec_add1 (s, '\n');
444
445 s = format (s,
446 "ip.reass.next_range_bi: 0x%x, ip.reass.ip6_frag_hdr_offset: %d",
447 o->ip.reass.next_range_bi,
448 (u32) (o->ip.reass.ip6_frag_hdr_offset));
449 vec_add1 (s, '\n');
450
451 s = format (s,
452 "mpls.ttl: %d, mpls.exp: %d, mpls.first: %d, "
453 "mpls.save_rewrite_length: %d, mpls.bier.n_bytes: %d",
454 (u32) (o->mpls.ttl), (u32) (o->mpls.exp), (u32) (o->mpls.first),
455 o->mpls.save_rewrite_length, (u32) (o->mpls.bier.n_bytes));
456 vec_add1 (s, '\n');
457
458 s = format (s,
459 "l2.feature_bitmap: %08x, l2.bd_index: %d, l2.l2_len: %d, "
460 "l2.shg: %d, l2.l2fib_sn: %d, l2.bd_age: %d",
461 o->l2.feature_bitmap, (u32) (o->l2.bd_index),
462 (u32) (o->l2.l2_len), (u32) (o->l2.shg), (u32) (o->l2.l2fib_sn),
463 (u32) (o->l2.bd_age));
464 vec_add1 (s, '\n');
465
466 s = format (s,
467 "l2t.next_index: %d, l2t.session_index: %d",
468 (u32) (o->l2t.next_index), o->l2t.session_index);
469 vec_add1 (s, '\n');
470
471 s = format (s,
472 "l2_classify.table_index: %d, l2_classify.opaque_index: %d, "
473 "l2_classify.hash: 0x%llx",
474 o->l2_classify.table_index,
475 o->l2_classify.opaque_index, o->l2_classify.hash);
476 vec_add1 (s, '\n');
477
478 s = format (s, "policer.index: %d", o->policer.index);
479 vec_add1 (s, '\n');
480
481 s = format (s,
482 "ipsec.flags: 0x%x, ipsec.sad_index: %d",
483 o->ipsec.flags, o->ipsec.sad_index);
484 vec_add1 (s, '\n');
485
486 s = format (s, "map.mtu: %d", (u32) (o->map.mtu));
487 vec_add1 (s, '\n');
488
489 s = format (s,
490 "map_t.v6.saddr: 0x%x, map_t.v6.daddr: 0x%x, "
491 "map_t.v6.frag_offset: %d, map_t.v6.l4_offset: %d",
492 o->map_t.v6.saddr,
493 o->map_t.v6.daddr,
494 (u32) (o->map_t.v6.frag_offset), (u32) (o->map_t.v6.l4_offset));
495 vec_add1 (s, '\n');
496
497 s = format (s,
498 "map_t.v6.l4_protocol: %d, map_t.checksum_offset: %d, "
499 "map_t.mtu: %d",
500 (u32) (o->map_t.v6.l4_protocol),
501 (u32) (o->map_t.checksum_offset), (u32) (o->map_t.mtu));
502 vec_add1 (s, '\n');
503
504 s = format (s,
505 "ip_frag.mtu: %d, ip_frag.next_index: %d, ip_frag.flags: 0x%x",
506 (u32) (o->ip_frag.mtu),
507 (u32) (o->ip_frag.next_index), (u32) (o->ip_frag.flags));
508 vec_add1 (s, '\n');
509
510 s = format (s, "cop.current_config_index: %d", o->cop.current_config_index);
511 vec_add1 (s, '\n');
512
513 s = format (s, "lisp.overlay_afi: %d", (u32) (o->lisp.overlay_afi));
514 vec_add1 (s, '\n');
515
516 s = format
517 (s, "tcp.connection_index: %d, tcp.seq_number: %d, tcp.seq_end: %d, "
518 "tcp.ack_number: %d, tcp.hdr_offset: %d, tcp.data_offset: %d",
519 o->tcp.connection_index,
520 o->tcp.seq_number,
521 o->tcp.seq_end,
522 o->tcp.ack_number,
523 (u32) (o->tcp.hdr_offset), (u32) (o->tcp.data_offset));
524 vec_add1 (s, '\n');
525
526 s = format (s,
527 "tcp.data_len: %d, tcp.flags: 0x%x",
528 (u32) (o->tcp.data_len), (u32) (o->tcp.flags));
529 vec_add1 (s, '\n');
530
531 s = format (s,
532 "sctp.connection_index: %d, sctp.sid: %d, sctp.ssn: %d, "
533 "sctp.tsn: %d, sctp.hdr_offset: %d",
534 o->sctp.connection_index,
535 (u32) (o->sctp.sid),
536 (u32) (o->sctp.ssn),
537 (u32) (o->sctp.tsn), (u32) (o->sctp.hdr_offset));
538 vec_add1 (s, '\n');
539
540 s = format
541 (s, "sctp.data_offset: %d, sctp.data_len: %d, sctp.subconn_idx: %d, "
542 "sctp.flags: 0x%x",
543 (u32) (o->sctp.data_offset),
544 (u32) (o->sctp.data_len),
545 (u32) (o->sctp.subconn_idx), (u32) (o->sctp.flags));
546 vec_add1 (s, '\n');
547
548 s = format (s, "snat.flags: 0x%x", o->snat.flags);
549 vec_add1 (s, '\n');
550 return s;
551}
552
553u8 *
554format_vnet_buffer_opaque2 (u8 * s, va_list * args)
555{
556 vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
557 vnet_buffer_opaque2_t *o = (vnet_buffer_opaque2_t *) b->opaque2;
558
559 int i;
560
561 s = format (s, "raw: ");
562
563 for (i = 0; i < ARRAY_LEN (b->opaque2); i++)
564 s = format (s, "%08x ", b->opaque2[i]);
565 vec_add1 (s, '\n');
566
567 s = format (s, "qos.bits: %x, qos.source: %x",
568 (u32) (o->qos.bits), (u32) (o->qos.source));
569 vec_add1 (s, '\n');
570 s = format (s, "loop_counter: %d", o->loop_counter);
571 vec_add1 (s, '\n');
572
573 s = format (s, "gbp.flags: %x, gbp.src_epg: %d",
574 (u32) (o->gbp.flags), (u32) (o->gbp.src_epg));
575 vec_add1 (s, '\n');
576
577 s = format (s, "pg_replay_timestamp: %llu", (u32) (o->pg_replay_timestamp));
578 vec_add1 (s, '\n');
579 return s;
580}
581
Dave Barachba868bb2016-08-08 09:51:21 -0400582uword
583unformat_vnet_hw_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700584{
Dave Barachba868bb2016-08-08 09:51:21 -0400585 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
586 u32 *hw_if_index = va_arg (*args, u32 *);
587 vnet_interface_main_t *im = &vnm->interface_main;
588 vnet_device_class_t *c;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700589
590 /* Try per device class functions first. */
591 vec_foreach (c, im->device_classes)
Dave Barachba868bb2016-08-08 09:51:21 -0400592 {
593 if (c->unformat_device_name
594 && unformat_user (input, c->unformat_device_name, hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700595 return 1;
Dave Barachba868bb2016-08-08 09:51:21 -0400596 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700597
598 return unformat_user (input, unformat_hash_vec_string,
599 im->hw_interface_by_name, hw_if_index);
600}
601
Dave Barachba868bb2016-08-08 09:51:21 -0400602uword
603unformat_vnet_sw_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700604{
Dave Barachba868bb2016-08-08 09:51:21 -0400605 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
606 u32 *result = va_arg (*args, u32 *);
607 vnet_hw_interface_t *hi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700608 u32 hw_if_index, id, id_specified;
Eyal Bari3212c572017-03-06 11:47:50 +0200609 u32 sw_if_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400610 u8 *if_name = 0;
611 uword *p, error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700612
613 id = ~0;
614 if (unformat (input, "%_%v.%d%_", &if_name, &id)
615 && ((p = hash_get (vnm->interface_main.hw_interface_by_name, if_name))))
616 {
617 hw_if_index = p[0];
618 id_specified = 1;
619 }
Dave Barachba868bb2016-08-08 09:51:21 -0400620 else
621 if (unformat (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700622 id_specified = 0;
623 else
624 goto done;
625
626 hi = vnet_get_hw_interface (vnm, hw_if_index);
Dave Barachba868bb2016-08-08 09:51:21 -0400627 if (!id_specified)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700628 {
Eyal Bari3212c572017-03-06 11:47:50 +0200629 sw_if_index = hi->sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700630 }
631 else
632 {
Dave Barachba868bb2016-08-08 09:51:21 -0400633 if (!(p = hash_get (hi->sub_interface_sw_if_index_by_id, id)))
Eyal Bari3212c572017-03-06 11:47:50 +0200634 goto done;
635 sw_if_index = p[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700636 }
Eyal Bari3212c572017-03-06 11:47:50 +0200637 if (!vnet_sw_interface_is_api_visible (vnm, sw_if_index))
638 goto done;
639 *result = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700640 error = 1;
Dave Barachba868bb2016-08-08 09:51:21 -0400641done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700642 vec_free (if_name);
643 return error;
644}
645
Dave Barachba868bb2016-08-08 09:51:21 -0400646uword
647unformat_vnet_sw_interface_flags (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700648{
Dave Barachba868bb2016-08-08 09:51:21 -0400649 u32 *result = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700650 u32 flags = 0;
651
652 if (unformat (input, "up"))
653 flags |= VNET_SW_INTERFACE_FLAG_ADMIN_UP;
654 else if (unformat (input, "down"))
655 flags &= ~VNET_SW_INTERFACE_FLAG_ADMIN_UP;
656 else if (unformat (input, "punt"))
657 flags |= VNET_SW_INTERFACE_FLAG_PUNT;
658 else if (unformat (input, "enable"))
659 flags &= ~VNET_SW_INTERFACE_FLAG_PUNT;
660 else
661 return 0;
662
663 *result = flags;
664 return 1;
665}
666
Dave Barachba868bb2016-08-08 09:51:21 -0400667uword
668unformat_vnet_hw_interface_flags (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700669{
Dave Barachba868bb2016-08-08 09:51:21 -0400670 u32 *result = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700671 u32 flags = 0;
672
673 if (unformat (input, "up"))
674 flags |= VNET_HW_INTERFACE_FLAG_LINK_UP;
675 else if (unformat (input, "down"))
676 flags &= ~VNET_HW_INTERFACE_FLAG_LINK_UP;
677 else
678 return 0;
679
680 *result = flags;
681 return 1;
682}
683
Dave Barachba868bb2016-08-08 09:51:21 -0400684/*
685 * fd.io coding-style-patch-verification: ON
686 *
687 * Local Variables:
688 * eval: (c-set-style "gnu")
689 * End:
690 */