blob: e25a05aa9f1df12fc060364eb4fed54067383190 [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");
52 else if (flags & VNET_SW_INTERFACE_FLAG_BOND_SLAVE)
John Lobcebbb92016-04-05 15:47:43 -040053 s = format (s, "bond-slave");
Dave Barachba868bb2016-08-08 09:51:21 -040054 else
John Lobcebbb92016-04-05 15:47:43 -040055 {
Dave Barachba868bb2016-08-08 09:51:21 -040056 s = format (s, "%s",
John Lobcebbb92016-04-05 15:47:43 -040057 (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? "up" : "down");
Dave Barachba868bb2016-08-08 09:51:21 -040058 if (flags & VNET_SW_INTERFACE_FLAG_PUNT)
John Lobcebbb92016-04-05 15:47:43 -040059 s = format (s, "/punt");
60 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070061
62 return s;
63}
64
Dave Barachba868bb2016-08-08 09:51:21 -040065u8 *
Damjan Marion44036902017-04-28 12:29:15 +020066format_vnet_hw_interface_rx_mode (u8 * s, va_list * args)
67{
68 vnet_hw_interface_rx_mode mode = va_arg (*args, vnet_hw_interface_rx_mode);
69
70 if (mode == VNET_HW_INTERFACE_RX_MODE_POLLING)
71 return format (s, "polling");
72
73 if (mode == VNET_HW_INTERFACE_RX_MODE_INTERRUPT)
74 return format (s, "interrupt");
75
76 if (mode == VNET_HW_INTERFACE_RX_MODE_ADAPTIVE)
77 return format (s, "adaptive");
78
79 return format (s, "unknown");
80}
81
82u8 *
Damjan Marion5100aa92018-11-08 15:30:16 +010083format_vnet_hw_interface_link_speed (u8 * s, va_list * args)
84{
85 u32 link_speed = va_arg (*args, u32);
86
87 if (link_speed == 0)
88 return format (s, "unknown");
89
90 if (link_speed >= 1000000)
91 return format (s, "%f Gbps", (f64) link_speed / 1000000);
92
93 if (link_speed >= 1000)
94 return format (s, "%f Mbps", (f64) link_speed / 1000);
95
96 return format (s, "%u Kbps", link_speed);
97}
98
99
100u8 *
Dave Barachba868bb2016-08-08 09:51:21 -0400101format_vnet_hw_interface (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102{
Dave Barachba868bb2016-08-08 09:51:21 -0400103 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
104 vnet_hw_interface_t *hi = va_arg (*args, vnet_hw_interface_t *);
105 vnet_hw_interface_class_t *hw_class;
106 vnet_device_class_t *dev_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700107 int verbose = va_arg (*args, int);
Christophe Fontained3c008d2017-10-02 18:10:54 +0200108 u32 indent;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109
Dave Barachba868bb2016-08-08 09:51:21 -0400110 if (!hi)
111 return format (s, "%=32s%=6s%=8s%s", "Name", "Idx", "Link", "Hardware");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112
113 indent = format_get_indent (s);
114
John Lobcebbb92016-04-05 15:47:43 -0400115 s = format (s, "%-32v%=6d", hi->name, hi->hw_if_index);
116
117 if (hi->bond_info == VNET_HW_INTERFACE_BOND_INFO_SLAVE)
118 s = format (s, "%=8s", "slave");
119 else
Dave Barachba868bb2016-08-08 09:51:21 -0400120 s = format (s, "%=8s",
John Lobcebbb92016-04-05 15:47:43 -0400121 hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP ? "up" : "down");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122
123 hw_class = vnet_get_hw_interface_class (vnm, hi->hw_class_index);
124 dev_class = vnet_get_device_class (vnm, hi->dev_class_index);
125
Dave Barachba868bb2016-08-08 09:51:21 -0400126 if (hi->bond_info && (hi->bond_info != VNET_HW_INTERFACE_BOND_INFO_SLAVE))
John Lobcebbb92016-04-05 15:47:43 -0400127 {
128 int hw_idx;
129 s = format (s, "Slave-Idx:");
Dave Barachba868bb2016-08-08 09:51:21 -0400130 clib_bitmap_foreach (hw_idx, hi->bond_info, s =
131 format (s, " %d", hw_idx));
John Lobcebbb92016-04-05 15:47:43 -0400132 }
Dave Barachba868bb2016-08-08 09:51:21 -0400133 else if (dev_class->format_device_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134 s = format (s, "%U", dev_class->format_device_name, hi->dev_instance);
135 else
136 s = format (s, "%s%d", dev_class->name, hi->dev_instance);
137
Damjan Marion5100aa92018-11-08 15:30:16 +0100138 s = format (s, "\n%ULink speed: %U", format_white_space, indent + 2,
139 format_vnet_hw_interface_link_speed, hi->link_speed);
140
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141 if (verbose)
142 {
143 if (hw_class->format_device)
144 s = format (s, "\n%U%U",
145 format_white_space, indent + 2,
146 hw_class->format_device, hi->hw_if_index, verbose);
147 else
148 {
149 s = format (s, "\n%U%s",
Dave Barachba868bb2016-08-08 09:51:21 -0400150 format_white_space, indent + 2, hw_class->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151 if (hw_class->format_address && vec_len (hi->hw_address) > 0)
Dave Barachba868bb2016-08-08 09:51:21 -0400152 s =
153 format (s, " address %U", hw_class->format_address,
154 hi->hw_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155 }
156
157 if (dev_class->format_device)
158 s = format (s, "\n%U%U",
159 format_white_space, indent + 2,
160 dev_class->format_device, hi->dev_instance, verbose);
161 }
162
163 return s;
164}
165
Dave Barachba868bb2016-08-08 09:51:21 -0400166u8 *
167format_vnet_sw_interface_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168{
Dave Barachba868bb2016-08-08 09:51:21 -0400169 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
170 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
171 vnet_sw_interface_t *si_sup =
172 vnet_get_sup_sw_interface (vnm, si->sw_if_index);
173 vnet_hw_interface_t *hi_sup;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700174
175 ASSERT (si_sup->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
176 hi_sup = vnet_get_hw_interface (vnm, si_sup->hw_if_index);
177
178 s = format (s, "%v", hi_sup->name);
179
180 if (si->type != VNET_SW_INTERFACE_TYPE_HARDWARE)
181 s = format (s, ".%d", si->sub.id);
182
183 return s;
184}
185
Dave Barachba868bb2016-08-08 09:51:21 -0400186u8 *
187format_vnet_sw_if_index_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188{
Dave Barachba868bb2016-08-08 09:51:21 -0400189 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700190 u32 sw_if_index = va_arg (*args, u32);
Neale Rannsda78f952017-05-24 09:15:43 -0700191 vnet_sw_interface_t *si;
192
193 si = vnet_get_sw_interface_safe (vnm, sw_if_index);
194
195 if (NULL == si)
196 {
197 return format (s, "DELETED");
198 }
199 return format (s, "%U", format_vnet_sw_interface_name, vnm, si);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700200}
201
Dave Barachba868bb2016-08-08 09:51:21 -0400202u8 *
Damjan Mariona35cc142018-03-16 01:25:27 +0100203format_vnet_hw_if_index_name (u8 * s, va_list * args)
204{
205 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
206 u32 hw_if_index = va_arg (*args, u32);
207 vnet_hw_interface_t *hi;
208
209 hi = vnet_get_hw_interface (vnm, hw_if_index);
210
211 if (hi == 0)
212 return format (s, "DELETED");
213
214 return format (s, "%v", hi->name);
215}
216
217u8 *
Dave Barachba868bb2016-08-08 09:51:21 -0400218format_vnet_sw_interface_cntrs (u8 * s, vnet_interface_main_t * im,
219 vnet_sw_interface_t * si)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220{
Christophe Fontained3c008d2017-10-02 18:10:54 +0200221 u32 indent, n_printed;
Dave Barach8fdde3c2019-05-17 10:46:40 -0400222 int j, n_counters;
223 u8 *n = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700224
225 indent = format_get_indent (s);
226 n_printed = 0;
227
Dave Barach8fdde3c2019-05-17 10:46:40 -0400228 n_counters = vec_len (im->combined_sw_if_counters);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229
Dave Barach8fdde3c2019-05-17 10:46:40 -0400230 /* rx, tx counters... */
231 for (j = 0; j < n_counters; j++)
232 {
233 vlib_combined_counter_main_t *cm;
234 vlib_counter_t v, vtotal;
235 vtotal.packets = 0;
236 vtotal.bytes = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237
Dave Barach8fdde3c2019-05-17 10:46:40 -0400238 cm = im->combined_sw_if_counters + j;
239 vlib_get_combined_counter (cm, si->sw_if_index, &v);
240 vtotal.packets += v.packets;
241 vtotal.bytes += v.bytes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700242
Dave Barach8fdde3c2019-05-17 10:46:40 -0400243 /* Only display non-zero counters. */
244 if (vtotal.packets == 0)
245 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246
Dave Barach8fdde3c2019-05-17 10:46:40 -0400247 if (n_printed > 0)
248 s = format (s, "\n%U", format_white_space, indent);
249 n_printed += 2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250
Dave Barach8fdde3c2019-05-17 10:46:40 -0400251 if (n)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252 _vec_len (n) = 0;
Dave Barach8fdde3c2019-05-17 10:46:40 -0400253 n = format (n, "%s packets", cm->name);
254 s = format (s, "%-16v%16Ld", n, vtotal.packets);
255
256 _vec_len (n) = 0;
257 n = format (n, "%s bytes", cm->name);
258 s = format (s, "\n%U%-16v%16Ld",
259 format_white_space, indent, n, vtotal.bytes);
260 }
261 vec_free (n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700262
263 {
Dave Barachba868bb2016-08-08 09:51:21 -0400264 vlib_simple_counter_main_t *cm;
265 u64 v, vtotal;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266
267 n_counters = vec_len (im->sw_if_counters);
268
269 for (j = 0; j < n_counters; j++)
270 {
Dave Barachba868bb2016-08-08 09:51:21 -0400271 vtotal = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272
Dave Barach8fdde3c2019-05-17 10:46:40 -0400273 cm = im->sw_if_counters + j;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274
Dave Barach8fdde3c2019-05-17 10:46:40 -0400275 v = vlib_get_simple_counter (cm, si->sw_if_index);
276 vtotal += v;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277
278 /* Only display non-zero counters. */
279 if (vtotal == 0)
280 continue;
281
282 if (n_printed > 0)
283 s = format (s, "\n%U", format_white_space, indent);
284 n_printed += 1;
285
286 s = format (s, "%-16s%16Ld", cm->name, vtotal);
287 }
288 }
289
290 return s;
291}
292
Ole Troand7231612018-06-07 10:17:57 +0200293static u8 *
294format_vnet_sw_interface_mtu (u8 * s, va_list * args)
295{
296 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
297
298 return format (s, "%d/%d/%d/%d", si->mtu[VNET_MTU_L3],
299 si->mtu[VNET_MTU_IP4],
300 si->mtu[VNET_MTU_IP6], si->mtu[VNET_MTU_MPLS]);
301}
302
Dave Barachba868bb2016-08-08 09:51:21 -0400303u8 *
304format_vnet_sw_interface (u8 * s, va_list * args)
Sean Hope679ea792016-02-22 15:12:01 -0500305{
Dave Barachba868bb2016-08-08 09:51:21 -0400306 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
307 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
308 vnet_interface_main_t *im = &vnm->interface_main;
Sean Hope679ea792016-02-22 15:12:01 -0500309
Dave Barachba868bb2016-08-08 09:51:21 -0400310 if (!si)
Ole Troand7231612018-06-07 10:17:57 +0200311 return format (s, "%=32s%=5s%=10s%=21s%=16s%=16s",
312 "Name", "Idx", "State", "MTU (L3/IP4/IP6/MPLS)", "Counter",
313 "Count");
Sean Hope679ea792016-02-22 15:12:01 -0500314
Ole Troand7231612018-06-07 10:17:57 +0200315 s = format (s, "%-32U%=5d%=10U%=21U",
Sean Hope679ea792016-02-22 15:12:01 -0500316 format_vnet_sw_interface_name, vnm, si, si->sw_if_index,
Ole Troand7231612018-06-07 10:17:57 +0200317 format_vnet_sw_interface_flags, si->flags,
318 format_vnet_sw_interface_mtu, si);
Sean Hope679ea792016-02-22 15:12:01 -0500319
Dave Barachba868bb2016-08-08 09:51:21 -0400320 s = format_vnet_sw_interface_cntrs (s, im, si);
Sean Hope679ea792016-02-22 15:12:01 -0500321
322 return s;
323}
324
Dave Barachba868bb2016-08-08 09:51:21 -0400325u8 *
326format_vnet_sw_interface_name_override (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 *);
Sean Hope679ea792016-02-22 15:12:01 -0500330 /* caller supplied display name for this interface */
Dave Barachba868bb2016-08-08 09:51:21 -0400331 u8 *name = va_arg (*args, u8 *);
332 vnet_interface_main_t *im = &vnm->interface_main;
Sean Hope679ea792016-02-22 15:12:01 -0500333
334
Dave Barachba868bb2016-08-08 09:51:21 -0400335 if (!si)
Sean Hope679ea792016-02-22 15:12:01 -0500336 return format (s, "%=32s%=5s%=16s%=16s%=16s",
337 "Name", "Idx", "State", "Counter", "Count");
338
339 s = format (s, "%-32v%=5d%=16U",
340 name, si->sw_if_index,
341 format_vnet_sw_interface_flags, si->flags);
342
Dave Barachba868bb2016-08-08 09:51:21 -0400343 s = format_vnet_sw_interface_cntrs (s, im, si);
Sean Hope679ea792016-02-22 15:12:01 -0500344
345 return s;
346}
347
Dave Barach7fff3d22018-11-27 16:52:59 -0500348u8 *
349format_vnet_buffer_flags (u8 * s, va_list * args)
350{
351 vlib_buffer_t *buf = va_arg (*args, vlib_buffer_t *);
352
353#define _(a,b,c,v) if (buf->flags & VNET_BUFFER_F_##b) s = format (s, "%s ", c);
354 foreach_vnet_buffer_flag;
355#undef _
356 return s;
357}
358
359u8 *
360format_vnet_buffer_opaque (u8 * s, va_list * args)
361{
362 vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
363 vnet_buffer_opaque_t *o = (vnet_buffer_opaque_t *) b->opaque;
364 int i;
365
366 s = format (s, "raw: ");
367
368 for (i = 0; i < ARRAY_LEN (b->opaque); i++)
369 s = format (s, "%08x ", b->opaque[i]);
370
371 vec_add1 (s, '\n');
372
373 s = format (s,
374 "sw_if_index[VLIB_RX]: %d, sw_if_index[VLIB_TX]: %d",
375 o->sw_if_index[0], o->sw_if_index[1]);
376 vec_add1 (s, '\n');
377
378 s = format (s,
379 "L2 offset %d, L3 offset %d, L4 offset %d, feature arc index %d",
380 (u32) (o->l2_hdr_offset),
381 (u32) (o->l3_hdr_offset),
382 (u32) (o->l4_hdr_offset), (u32) (o->feature_arc_index));
383 vec_add1 (s, '\n');
384
385 s = format (s,
386 "ip.adj_index[VLIB_RX]: %d, ip.adj_index[VLIB_TX]: %d",
387 (u32) (o->ip.adj_index[0]), (u32) (o->ip.adj_index[1]));
388 vec_add1 (s, '\n');
389
390 s = format (s,
391 "ip.flow_hash: 0x%x, ip.save_protocol: 0x%x, ip.fib_index: %d",
392 o->ip.flow_hash, o->ip.save_protocol, o->ip.fib_index);
393 vec_add1 (s, '\n');
394
395 s = format (s,
396 "ip.save_rewrite_length: %d, ip.rpf_id: %d",
397 o->ip.save_rewrite_length, o->ip.rpf_id);
398 vec_add1 (s, '\n');
399
400 s = format (s,
401 "ip.icmp.type: %d ip.icmp.code: %d, ip.icmp.data: 0x%x",
402 (u32) (o->ip.icmp.type),
403 (u32) (o->ip.icmp.code), o->ip.icmp.data);
404 vec_add1 (s, '\n');
405
406 s = format (s,
407 "ip.reass.next_index: %d, ip.reass.estimated_mtu: %d",
408 o->ip.reass.next_index, (u32) (o->ip.reass.estimated_mtu));
409 vec_add1 (s, '\n');
410
411 s = format (s,
412 "ip.reass.fragment_first: %d ip.reass.fragment_last: %d",
413 (u32) (o->ip.reass.fragment_first),
414 (u32) (o->ip.reass.fragment_last));
415 vec_add1 (s, '\n');
416
417 s = format (s,
418 "ip.reass.range_first: %d ip.reass.range_last: %d",
419 (u32) (o->ip.reass.range_first),
420 (u32) (o->ip.reass.range_last));
421 vec_add1 (s, '\n');
422
423 s = format (s,
424 "ip.reass.next_range_bi: 0x%x, ip.reass.ip6_frag_hdr_offset: %d",
425 o->ip.reass.next_range_bi,
426 (u32) (o->ip.reass.ip6_frag_hdr_offset));
427 vec_add1 (s, '\n');
428
429 s = format (s,
430 "mpls.ttl: %d, mpls.exp: %d, mpls.first: %d, "
431 "mpls.save_rewrite_length: %d, mpls.bier.n_bytes: %d",
432 (u32) (o->mpls.ttl), (u32) (o->mpls.exp), (u32) (o->mpls.first),
433 o->mpls.save_rewrite_length, (u32) (o->mpls.bier.n_bytes));
434 vec_add1 (s, '\n');
435
436 s = format (s,
437 "l2.feature_bitmap: %08x, l2.bd_index: %d, l2.l2_len: %d, "
438 "l2.shg: %d, l2.l2fib_sn: %d, l2.bd_age: %d",
439 o->l2.feature_bitmap, (u32) (o->l2.bd_index),
440 (u32) (o->l2.l2_len), (u32) (o->l2.shg), (u32) (o->l2.l2fib_sn),
441 (u32) (o->l2.bd_age));
442 vec_add1 (s, '\n');
443
444 s = format (s,
Dave Barach7bdaa3f2018-12-03 11:33:09 -0500445 "l2.feature_bitmap_input: %U, L2.feature_bitmap_output: %U",
446 format_l2_input_features, o->l2.feature_bitmap, 0,
447 format_l2_output_features, o->l2.feature_bitmap, 0);
448 vec_add1 (s, '\n');
449
450 s = format (s,
Dave Barach7fff3d22018-11-27 16:52:59 -0500451 "l2t.next_index: %d, l2t.session_index: %d",
452 (u32) (o->l2t.next_index), o->l2t.session_index);
453 vec_add1 (s, '\n');
454
455 s = format (s,
456 "l2_classify.table_index: %d, l2_classify.opaque_index: %d, "
457 "l2_classify.hash: 0x%llx",
458 o->l2_classify.table_index,
459 o->l2_classify.opaque_index, o->l2_classify.hash);
460 vec_add1 (s, '\n');
461
462 s = format (s, "policer.index: %d", o->policer.index);
463 vec_add1 (s, '\n');
464
Neale Rannse524d452019-02-19 15:22:46 +0000465 s = format (s, "ipsec.sad_index: %d", o->ipsec.sad_index);
Dave Barach7fff3d22018-11-27 16:52:59 -0500466 vec_add1 (s, '\n');
467
468 s = format (s, "map.mtu: %d", (u32) (o->map.mtu));
469 vec_add1 (s, '\n');
470
471 s = format (s,
472 "map_t.v6.saddr: 0x%x, map_t.v6.daddr: 0x%x, "
473 "map_t.v6.frag_offset: %d, map_t.v6.l4_offset: %d",
474 o->map_t.v6.saddr,
475 o->map_t.v6.daddr,
476 (u32) (o->map_t.v6.frag_offset), (u32) (o->map_t.v6.l4_offset));
477 vec_add1 (s, '\n');
478
479 s = format (s,
480 "map_t.v6.l4_protocol: %d, map_t.checksum_offset: %d, "
481 "map_t.mtu: %d",
482 (u32) (o->map_t.v6.l4_protocol),
483 (u32) (o->map_t.checksum_offset), (u32) (o->map_t.mtu));
484 vec_add1 (s, '\n');
485
486 s = format (s,
487 "ip_frag.mtu: %d, ip_frag.next_index: %d, ip_frag.flags: 0x%x",
488 (u32) (o->ip_frag.mtu),
489 (u32) (o->ip_frag.next_index), (u32) (o->ip_frag.flags));
490 vec_add1 (s, '\n');
491
492 s = format (s, "cop.current_config_index: %d", o->cop.current_config_index);
493 vec_add1 (s, '\n');
494
495 s = format (s, "lisp.overlay_afi: %d", (u32) (o->lisp.overlay_afi));
496 vec_add1 (s, '\n');
497
498 s = format
499 (s, "tcp.connection_index: %d, tcp.seq_number: %d, tcp.seq_end: %d, "
500 "tcp.ack_number: %d, tcp.hdr_offset: %d, tcp.data_offset: %d",
501 o->tcp.connection_index,
502 o->tcp.seq_number,
503 o->tcp.seq_end,
504 o->tcp.ack_number,
505 (u32) (o->tcp.hdr_offset), (u32) (o->tcp.data_offset));
506 vec_add1 (s, '\n');
507
508 s = format (s,
509 "tcp.data_len: %d, tcp.flags: 0x%x",
510 (u32) (o->tcp.data_len), (u32) (o->tcp.flags));
511 vec_add1 (s, '\n');
512
513 s = format (s,
514 "sctp.connection_index: %d, sctp.sid: %d, sctp.ssn: %d, "
515 "sctp.tsn: %d, sctp.hdr_offset: %d",
516 o->sctp.connection_index,
517 (u32) (o->sctp.sid),
518 (u32) (o->sctp.ssn),
519 (u32) (o->sctp.tsn), (u32) (o->sctp.hdr_offset));
520 vec_add1 (s, '\n');
521
522 s = format
523 (s, "sctp.data_offset: %d, sctp.data_len: %d, sctp.subconn_idx: %d, "
524 "sctp.flags: 0x%x",
525 (u32) (o->sctp.data_offset),
526 (u32) (o->sctp.data_len),
527 (u32) (o->sctp.subconn_idx), (u32) (o->sctp.flags));
528 vec_add1 (s, '\n');
529
530 s = format (s, "snat.flags: 0x%x", o->snat.flags);
531 vec_add1 (s, '\n');
532 return s;
533}
534
535u8 *
536format_vnet_buffer_opaque2 (u8 * s, va_list * args)
537{
538 vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
539 vnet_buffer_opaque2_t *o = (vnet_buffer_opaque2_t *) b->opaque2;
540
541 int i;
542
543 s = format (s, "raw: ");
544
545 for (i = 0; i < ARRAY_LEN (b->opaque2); i++)
546 s = format (s, "%08x ", b->opaque2[i]);
547 vec_add1 (s, '\n');
548
549 s = format (s, "qos.bits: %x, qos.source: %x",
550 (u32) (o->qos.bits), (u32) (o->qos.source));
551 vec_add1 (s, '\n');
552 s = format (s, "loop_counter: %d", o->loop_counter);
553 vec_add1 (s, '\n');
554
Neale Ranns4ba67722019-02-28 11:11:39 +0000555 s = format (s, "gbp.flags: %x, gbp.sclass: %d",
556 (u32) (o->gbp.flags), (u32) (o->gbp.sclass));
Dave Barach7fff3d22018-11-27 16:52:59 -0500557 vec_add1 (s, '\n');
558
559 s = format (s, "pg_replay_timestamp: %llu", (u32) (o->pg_replay_timestamp));
560 vec_add1 (s, '\n');
561 return s;
562}
563
Dave Barachba868bb2016-08-08 09:51:21 -0400564uword
565unformat_vnet_hw_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700566{
Dave Barachba868bb2016-08-08 09:51:21 -0400567 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
568 u32 *hw_if_index = va_arg (*args, u32 *);
569 vnet_interface_main_t *im = &vnm->interface_main;
570 vnet_device_class_t *c;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700571
572 /* Try per device class functions first. */
573 vec_foreach (c, im->device_classes)
Dave Barachba868bb2016-08-08 09:51:21 -0400574 {
575 if (c->unformat_device_name
576 && unformat_user (input, c->unformat_device_name, hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700577 return 1;
Dave Barachba868bb2016-08-08 09:51:21 -0400578 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700579
580 return unformat_user (input, unformat_hash_vec_string,
581 im->hw_interface_by_name, hw_if_index);
582}
583
Dave Barachba868bb2016-08-08 09:51:21 -0400584uword
585unformat_vnet_sw_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700586{
Dave Barachba868bb2016-08-08 09:51:21 -0400587 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
588 u32 *result = va_arg (*args, u32 *);
589 vnet_hw_interface_t *hi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700590 u32 hw_if_index, id, id_specified;
Eyal Bari3212c572017-03-06 11:47:50 +0200591 u32 sw_if_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400592 u8 *if_name = 0;
593 uword *p, error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594
595 id = ~0;
596 if (unformat (input, "%_%v.%d%_", &if_name, &id)
597 && ((p = hash_get (vnm->interface_main.hw_interface_by_name, if_name))))
598 {
599 hw_if_index = p[0];
600 id_specified = 1;
601 }
Dave Barachba868bb2016-08-08 09:51:21 -0400602 else
603 if (unformat (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700604 id_specified = 0;
605 else
606 goto done;
607
608 hi = vnet_get_hw_interface (vnm, hw_if_index);
Dave Barachba868bb2016-08-08 09:51:21 -0400609 if (!id_specified)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700610 {
Eyal Bari3212c572017-03-06 11:47:50 +0200611 sw_if_index = hi->sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700612 }
613 else
614 {
Dave Barachba868bb2016-08-08 09:51:21 -0400615 if (!(p = hash_get (hi->sub_interface_sw_if_index_by_id, id)))
Eyal Bari3212c572017-03-06 11:47:50 +0200616 goto done;
617 sw_if_index = p[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700618 }
Eyal Bari3212c572017-03-06 11:47:50 +0200619 if (!vnet_sw_interface_is_api_visible (vnm, sw_if_index))
620 goto done;
621 *result = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700622 error = 1;
Dave Barachba868bb2016-08-08 09:51:21 -0400623done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700624 vec_free (if_name);
625 return error;
626}
627
Dave Barachba868bb2016-08-08 09:51:21 -0400628uword
629unformat_vnet_sw_interface_flags (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700630{
Dave Barachba868bb2016-08-08 09:51:21 -0400631 u32 *result = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700632 u32 flags = 0;
633
634 if (unformat (input, "up"))
635 flags |= VNET_SW_INTERFACE_FLAG_ADMIN_UP;
636 else if (unformat (input, "down"))
637 flags &= ~VNET_SW_INTERFACE_FLAG_ADMIN_UP;
638 else if (unformat (input, "punt"))
639 flags |= VNET_SW_INTERFACE_FLAG_PUNT;
640 else if (unformat (input, "enable"))
641 flags &= ~VNET_SW_INTERFACE_FLAG_PUNT;
642 else
643 return 0;
644
645 *result = flags;
646 return 1;
647}
648
Dave Barachba868bb2016-08-08 09:51:21 -0400649uword
650unformat_vnet_hw_interface_flags (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700651{
Dave Barachba868bb2016-08-08 09:51:21 -0400652 u32 *result = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700653 u32 flags = 0;
654
655 if (unformat (input, "up"))
656 flags |= VNET_HW_INTERFACE_FLAG_LINK_UP;
657 else if (unformat (input, "down"))
658 flags &= ~VNET_HW_INTERFACE_FLAG_LINK_UP;
659 else
660 return 0;
661
662 *result = flags;
663 return 1;
664}
665
Dave Barachba868bb2016-08-08 09:51:21 -0400666/*
667 * fd.io coding-style-patch-verification: ON
668 *
669 * Local Variables:
670 * eval: (c-set-style "gnu")
671 * End:
672 */