mdata: buffer metadata change tracker plugin
[vpp.git] / src / vnet / interface_format.c
1 /*
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>
41 #include <vppinfra/bitmap.h>
42 #include <vnet/l2/l2_input.h>
43 #include <vnet/l2/l2_output.h>
44
45 u8 *
46 format_vnet_sw_interface_flags (u8 * s, va_list * args)
47 {
48   u32 flags = va_arg (*args, u32);
49
50   if (flags & VNET_SW_INTERFACE_FLAG_ERROR)
51     s = format (s, "error");
52   else
53     {
54       s = format (s, "%s",
55                   (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? "up" : "down");
56       if (flags & VNET_SW_INTERFACE_FLAG_PUNT)
57         s = format (s, "/punt");
58     }
59
60   return s;
61 }
62
63 u8 *
64 format_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
80 u8 *
81 format_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
98 u8 *
99 format_vnet_hw_interface (u8 * s, va_list * args)
100 {
101   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;
105   int verbose = va_arg (*args, int);
106   u32 indent;
107
108   if (!hi)
109     return format (s, "%=32s%=6s%=8s%s", "Name", "Idx", "Link", "Hardware");
110
111   indent = format_get_indent (s);
112
113   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
118     s = format (s, "%=8s",
119                 hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP ? "up" : "down");
120
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
124   if (hi->bond_info && (hi->bond_info != VNET_HW_INTERFACE_BOND_INFO_SLAVE))
125     {
126       int hw_idx;
127       s = format (s, "Slave-Idx:");
128       clib_bitmap_foreach (hw_idx, hi->bond_info, s =
129                            format (s, " %d", hw_idx));
130     }
131   else if (dev_class->format_device_name)
132     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
136   s = format (s, "\n%ULink speed: %U", format_white_space, indent + 2,
137               format_vnet_hw_interface_link_speed, hi->link_speed);
138
139   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",
148                       format_white_space, indent + 2, hw_class->name);
149           if (hw_class->format_address && vec_len (hi->hw_address) > 0)
150             s =
151               format (s, " address %U", hw_class->format_address,
152                       hi->hw_address);
153         }
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
164 u8 *
165 format_vnet_sw_interface_name (u8 * s, va_list * args)
166 {
167   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;
172
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
184 u8 *
185 format_vnet_sw_if_index_name (u8 * s, va_list * args)
186 {
187   vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
188   u32 sw_if_index = va_arg (*args, u32);
189   vnet_sw_interface_t *si;
190
191   si = vnet_get_sw_interface_or_null (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);
198 }
199
200 u8 *
201 format_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
215 u8 *
216 format_vnet_sw_interface_cntrs (u8 * s, vnet_interface_main_t * im,
217                                 vnet_sw_interface_t * si, int json)
218 {
219   u32 indent, n_printed;
220   int j, n_counters;
221   char *x = "";
222   int json_need_comma_nl = 0;
223   u8 *n = 0;
224
225   /*
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
232   indent = format_get_indent (s);
233   n_printed = 0;
234
235   n_counters = vec_len (im->combined_sw_if_counters);
236
237   /* 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;
244
245       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;
249
250       /* Only display non-zero counters. */
251       if (vtotal.packets == 0)
252         continue;
253
254       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
269       if (n_printed > 0)
270         s = format (s, "\n%U", format_white_space, indent);
271       n_printed += 2;
272
273       if (n)
274         _vec_len (n) = 0;
275       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);
284
285   {
286     vlib_simple_counter_main_t *cm;
287     u64 v, vtotal;
288
289     n_counters = vec_len (im->sw_if_counters);
290
291     for (j = 0; j < n_counters; j++)
292       {
293         vtotal = 0;
294
295         cm = im->sw_if_counters + j;
296
297         v = vlib_get_simple_counter (cm, si->sw_if_index);
298         vtotal += v;
299
300         /* Only display non-zero counters. */
301         if (vtotal == 0)
302           continue;
303
304         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
317         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
328 static u8 *
329 format_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
338 u8 *
339 format_vnet_sw_interface (u8 * s, va_list * args)
340 {
341   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;
344
345   if (!si)
346     return format (s, "%=32s%=5s%=10s%=21s%=16s%=16s",
347                    "Name", "Idx", "State", "MTU (L3/IP4/IP6/MPLS)", "Counter",
348                    "Count");
349
350   s = format (s, "%-32U%=5d%=10U%=21U",
351               format_vnet_sw_interface_name, vnm, si, si->sw_if_index,
352               format_vnet_sw_interface_flags, si->flags,
353               format_vnet_sw_interface_mtu, si);
354
355   s = format_vnet_sw_interface_cntrs (s, im, si, 0 /* want json */ );
356
357   return s;
358 }
359
360 u8 *
361 format_vnet_sw_interface_name_override (u8 * s, va_list * args)
362 {
363   vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
364   vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
365   /* caller supplied display name for this interface */
366   u8 *name = va_arg (*args, u8 *);
367   vnet_interface_main_t *im = &vnm->interface_main;
368
369
370   if (!si)
371     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
378   s = format_vnet_sw_interface_cntrs (s, im, si, 0 /* want json */ );
379
380   return s;
381 }
382
383 u8 *
384 format_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
394 u8 *
395 format_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;
399   vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
400   vnet_buffer_opquae_formatter_t helper_fp;
401   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   s = format (s,
448               "ip.reass.error_next_index: %d, ip.reass.owner_thread_index: %d",
449               o->ip.reass.error_next_index,
450               (u32) (o->ip.reass.owner_thread_index));
451   vec_add1 (s, '\n');
452   s = format (s,
453               "ip.reass.ip_proto: %d, ip.reass.l4_src_port: %d",
454               o->ip.reass.ip_proto, (u32) (o->ip.reass.l4_src_port));
455   vec_add1 (s, '\n');
456   s = format (s, "ip.reass.l4_dst_port: %d", o->ip.reass.l4_dst_port);
457   vec_add1 (s, '\n');
458
459   s = format (s,
460               "ip.reass.fragment_first: %d ip.reass.fragment_last: %d",
461               (u32) (o->ip.reass.fragment_first),
462               (u32) (o->ip.reass.fragment_last));
463   vec_add1 (s, '\n');
464
465   s = format (s,
466               "ip.reass.range_first: %d ip.reass.range_last: %d",
467               (u32) (o->ip.reass.range_first),
468               (u32) (o->ip.reass.range_last));
469   vec_add1 (s, '\n');
470
471   s = format (s,
472               "ip.reass.next_range_bi: 0x%x, ip.reass.ip6_frag_hdr_offset: %d",
473               o->ip.reass.next_range_bi,
474               (u32) (o->ip.reass.ip6_frag_hdr_offset));
475   vec_add1 (s, '\n');
476
477   s = format (s,
478               "mpls.ttl: %d, mpls.exp: %d, mpls.first: %d, "
479               "mpls.save_rewrite_length: %d, mpls.bier.n_bytes: %d",
480               (u32) (o->mpls.ttl), (u32) (o->mpls.exp), (u32) (o->mpls.first),
481               o->mpls.save_rewrite_length, (u32) (o->mpls.bier.n_bytes));
482   vec_add1 (s, '\n');
483   s = format (s, "mpls.mpls_hdr_length: %d", (u32) (o->mpls.mpls_hdr_length));
484   vec_add1 (s, '\n');
485
486   s = format (s,
487               "l2.feature_bitmap: %08x, l2.bd_index: %d, l2.l2fib_sn %d, "
488               "l2.l2_len: %d, l2.shg: %d, l2.bd_age: %d",
489               (u32) (o->l2.feature_bitmap), (u32) (o->l2.bd_index),
490               (u32) (o->l2.l2fib_sn),
491               (u32) (o->l2.l2_len), (u32) (o->l2.shg), (u32) (o->l2.bd_age));
492   vec_add1 (s, '\n');
493
494   s = format (s,
495               "l2.feature_bitmap_input: %U, L2.feature_bitmap_output: %U",
496               format_l2_input_features, o->l2.feature_bitmap, 0,
497               format_l2_output_features, o->l2.feature_bitmap, 0);
498   vec_add1 (s, '\n');
499
500   s = format (s,
501               "l2t.next_index: %d, l2t.session_index: %d",
502               (u32) (o->l2t.next_index), o->l2t.session_index);
503   vec_add1 (s, '\n');
504
505   s = format (s,
506               "l2_classify.table_index: %d, l2_classify.opaque_index: %d, "
507               "l2_classify.hash: 0x%llx",
508               o->l2_classify.table_index,
509               o->l2_classify.opaque_index, o->l2_classify.hash);
510   vec_add1 (s, '\n');
511
512   s = format (s, "policer.index: %d", o->policer.index);
513   vec_add1 (s, '\n');
514
515   s = format (s, "ipsec.sad_index: %d, ipsec.protect_index",
516               o->ipsec.sad_index, o->ipsec.protect_index);
517   vec_add1 (s, '\n');
518
519   s = format (s, "map.mtu: %d", (u32) (o->map.mtu));
520   vec_add1 (s, '\n');
521
522   s = format (s,
523               "map_t.map_domain_index: %d, map_t.v6.saddr: 0x%x, "
524               "map_t.v6.daddr: 0x%x, map_t.v6.frag_offset: %d, "
525               "map_t.v6.l4_offset: %d, map_t.v6.l4_protocol: %d, "
526               "map.t.checksum_offset: %d",
527               o->map_t.map_domain_index,
528               o->map_t.v6.saddr,
529               o->map_t.v6.daddr,
530               (u32) (o->map_t.v6.frag_offset), (u32) (o->map_t.v6.l4_offset),
531               (u32) (o->map_t.v6.l4_protocol),
532               (u32) (o->map_t.checksum_offset));
533   vec_add1 (s, '\n');
534
535   s = format (s,
536               "map_t.v6.l4_protocol: %d, map_t.checksum_offset: %d, "
537               "map_t.mtu: %d",
538               (u32) (o->map_t.v6.l4_protocol),
539               (u32) (o->map_t.checksum_offset), (u32) (o->map_t.mtu));
540   vec_add1 (s, '\n');
541
542   s = format (s,
543               "ip_frag.mtu: %d, ip_frag.next_index: %d, ip_frag.flags: 0x%x",
544               (u32) (o->ip_frag.mtu),
545               (u32) (o->ip_frag.next_index), (u32) (o->ip_frag.flags));
546   vec_add1 (s, '\n');
547
548   s = format (s, "cop.current_config_index: %d", o->cop.current_config_index);
549   vec_add1 (s, '\n');
550
551   s = format (s, "lisp.overlay_afi: %d", (u32) (o->lisp.overlay_afi));
552   vec_add1 (s, '\n');
553
554   s = format
555     (s,
556      "tcp.connection_index: %d, tcp.seq_number: %d, tcp.next_node_opaque: %d "
557      "tcp.seq_end: %d, tcp.ack_number: %d, tcp.hdr_offset: %d, "
558      "tcp.data_offset: %d", o->tcp.connection_index, o->tcp.next_node_opaque,
559      o->tcp.seq_number, o->tcp.seq_end, o->tcp.ack_number,
560      (u32) (o->tcp.hdr_offset), (u32) (o->tcp.data_offset));
561   vec_add1 (s, '\n');
562
563   s = format (s,
564               "tcp.data_len: %d, tcp.flags: 0x%x",
565               (u32) (o->tcp.data_len), (u32) (o->tcp.flags));
566   vec_add1 (s, '\n');
567
568   s = format (s, "snat.flags: 0x%x", o->snat.flags);
569   vec_add1 (s, '\n');
570
571   for (i = 0; i < vec_len (im->buffer_opaque_format_helpers); i++)
572     {
573       helper_fp = im->buffer_opaque_format_helpers[i];
574       s = (*helper_fp) (b, s);
575     }
576
577   return s;
578 }
579
580 u8 *
581 format_vnet_buffer_opaque2 (u8 * s, va_list * args)
582 {
583   vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
584   vnet_buffer_opaque2_t *o = (vnet_buffer_opaque2_t *) b->opaque2;
585   vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
586   vnet_buffer_opquae_formatter_t helper_fp;
587
588   int i;
589
590   s = format (s, "raw: ");
591
592   for (i = 0; i < ARRAY_LEN (b->opaque2); i++)
593     s = format (s, "%08x ", b->opaque2[i]);
594   vec_add1 (s, '\n');
595
596   s = format (s, "qos.bits: %x, qos.source: %x",
597               (u32) (o->qos.bits), (u32) (o->qos.source));
598   vec_add1 (s, '\n');
599   s = format (s, "loop_counter: %d", o->loop_counter);
600   vec_add1 (s, '\n');
601
602   s = format (s, "gbp.flags: %x, gbp.sclass: %d",
603               (u32) (o->gbp.flags), (u32) (o->gbp.sclass));
604   vec_add1 (s, '\n');
605
606   s = format (s, "gso_size: %d, gso_l4_hdr_sz: %d",
607               (u32) (o->gso_size), (u32) (o->gso_l4_hdr_sz));
608   vec_add1 (s, '\n');
609
610   s = format (s, "pg_replay_timestamp: %llu", (u32) (o->pg_replay_timestamp));
611   vec_add1 (s, '\n');
612
613   for (i = 0; i < vec_len (im->buffer_opaque2_format_helpers); i++)
614     {
615       helper_fp = im->buffer_opaque2_format_helpers[i];
616       s = (*helper_fp) (b, s);
617     }
618
619   return s;
620 }
621
622 void
623 vnet_register_format_buffer_opaque_helper (vnet_buffer_opquae_formatter_t fp)
624 {
625   vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
626   vec_add1 (im->buffer_opaque_format_helpers, fp);
627 }
628
629 void
630 vnet_register_format_buffer_opaque2_helper (vnet_buffer_opquae_formatter_t fp)
631 {
632   vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
633   vec_add1 (im->buffer_opaque2_format_helpers, fp);
634 }
635
636
637 uword
638 unformat_vnet_hw_interface (unformat_input_t * input, va_list * args)
639 {
640   vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
641   u32 *hw_if_index = va_arg (*args, u32 *);
642   vnet_interface_main_t *im = &vnm->interface_main;
643   vnet_device_class_t *c;
644
645   /* Try per device class functions first. */
646   vec_foreach (c, im->device_classes)
647   {
648     if (c->unformat_device_name
649         && unformat_user (input, c->unformat_device_name, hw_if_index))
650       return 1;
651   }
652
653   return unformat_user (input, unformat_hash_vec_string,
654                         im->hw_interface_by_name, hw_if_index);
655 }
656
657 uword
658 unformat_vnet_sw_interface (unformat_input_t * input, va_list * args)
659 {
660   vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
661   u32 *result = va_arg (*args, u32 *);
662   vnet_hw_interface_t *hi;
663   u32 hw_if_index, id, id_specified;
664   u32 sw_if_index;
665   u8 *if_name = 0;
666   uword *p, error = 0;
667
668   id = ~0;
669   if (unformat (input, "%_%v.%d%_", &if_name, &id)
670       && ((p = hash_get (vnm->interface_main.hw_interface_by_name, if_name))))
671     {
672       hw_if_index = p[0];
673       id_specified = 1;
674     }
675   else
676     if (unformat (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
677     id_specified = 0;
678   else
679     goto done;
680
681   hi = vnet_get_hw_interface (vnm, hw_if_index);
682   if (!id_specified)
683     {
684       sw_if_index = hi->sw_if_index;
685     }
686   else
687     {
688       if (!(p = hash_get (hi->sub_interface_sw_if_index_by_id, id)))
689         goto done;
690       sw_if_index = p[0];
691     }
692   if (!vnet_sw_interface_is_api_visible (vnm, sw_if_index))
693     goto done;
694   *result = sw_if_index;
695   error = 1;
696 done:
697   vec_free (if_name);
698   return error;
699 }
700
701 uword
702 unformat_vnet_sw_interface_flags (unformat_input_t * input, va_list * args)
703 {
704   u32 *result = va_arg (*args, u32 *);
705   u32 flags = 0;
706
707   if (unformat (input, "up"))
708     flags |= VNET_SW_INTERFACE_FLAG_ADMIN_UP;
709   else if (unformat (input, "down"))
710     flags &= ~VNET_SW_INTERFACE_FLAG_ADMIN_UP;
711   else if (unformat (input, "punt"))
712     flags |= VNET_SW_INTERFACE_FLAG_PUNT;
713   else if (unformat (input, "enable"))
714     flags &= ~VNET_SW_INTERFACE_FLAG_PUNT;
715   else
716     return 0;
717
718   *result = flags;
719   return 1;
720 }
721
722 uword
723 unformat_vnet_hw_interface_flags (unformat_input_t * input, va_list * args)
724 {
725   u32 *result = va_arg (*args, u32 *);
726   u32 flags = 0;
727
728   if (unformat (input, "up"))
729     flags |= VNET_HW_INTERFACE_FLAG_LINK_UP;
730   else if (unformat (input, "down"))
731     flags &= ~VNET_HW_INTERFACE_FLAG_LINK_UP;
732   else
733     return 0;
734
735   *result = flags;
736   return 1;
737 }
738
739 /*
740  * fd.io coding-style-patch-verification: ON
741  *
742  * Local Variables:
743  * eval: (c-set-style "gnu")
744  * End:
745  */