ip: fix udp/tcp checksum corner cases
[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)
218 {
219   u32 indent, n_printed;
220   int j, n_counters;
221   u8 *n = 0;
222
223   indent = format_get_indent (s);
224   n_printed = 0;
225
226   n_counters = vec_len (im->combined_sw_if_counters);
227
228   /* rx, tx counters... */
229   for (j = 0; j < n_counters; j++)
230     {
231       vlib_combined_counter_main_t *cm;
232       vlib_counter_t v, vtotal;
233       vtotal.packets = 0;
234       vtotal.bytes = 0;
235
236       cm = im->combined_sw_if_counters + j;
237       vlib_get_combined_counter (cm, si->sw_if_index, &v);
238       vtotal.packets += v.packets;
239       vtotal.bytes += v.bytes;
240
241       /* Only display non-zero counters. */
242       if (vtotal.packets == 0)
243         continue;
244
245       if (n_printed > 0)
246         s = format (s, "\n%U", format_white_space, indent);
247       n_printed += 2;
248
249       if (n)
250         _vec_len (n) = 0;
251       n = format (n, "%s packets", cm->name);
252       s = format (s, "%-16v%16Ld", n, vtotal.packets);
253
254       _vec_len (n) = 0;
255       n = format (n, "%s bytes", cm->name);
256       s = format (s, "\n%U%-16v%16Ld",
257                   format_white_space, indent, n, vtotal.bytes);
258     }
259   vec_free (n);
260
261   {
262     vlib_simple_counter_main_t *cm;
263     u64 v, vtotal;
264
265     n_counters = vec_len (im->sw_if_counters);
266
267     for (j = 0; j < n_counters; j++)
268       {
269         vtotal = 0;
270
271         cm = im->sw_if_counters + j;
272
273         v = vlib_get_simple_counter (cm, si->sw_if_index);
274         vtotal += v;
275
276         /* Only display non-zero counters. */
277         if (vtotal == 0)
278           continue;
279
280         if (n_printed > 0)
281           s = format (s, "\n%U", format_white_space, indent);
282         n_printed += 1;
283
284         s = format (s, "%-16s%16Ld", cm->name, vtotal);
285       }
286   }
287
288   return s;
289 }
290
291 static u8 *
292 format_vnet_sw_interface_mtu (u8 * s, va_list * args)
293 {
294   vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
295
296   return format (s, "%d/%d/%d/%d", si->mtu[VNET_MTU_L3],
297                  si->mtu[VNET_MTU_IP4],
298                  si->mtu[VNET_MTU_IP6], si->mtu[VNET_MTU_MPLS]);
299 }
300
301 u8 *
302 format_vnet_sw_interface (u8 * s, va_list * args)
303 {
304   vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
305   vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
306   vnet_interface_main_t *im = &vnm->interface_main;
307
308   if (!si)
309     return format (s, "%=32s%=5s%=10s%=21s%=16s%=16s",
310                    "Name", "Idx", "State", "MTU (L3/IP4/IP6/MPLS)", "Counter",
311                    "Count");
312
313   s = format (s, "%-32U%=5d%=10U%=21U",
314               format_vnet_sw_interface_name, vnm, si, si->sw_if_index,
315               format_vnet_sw_interface_flags, si->flags,
316               format_vnet_sw_interface_mtu, si);
317
318   s = format_vnet_sw_interface_cntrs (s, im, si);
319
320   return s;
321 }
322
323 u8 *
324 format_vnet_sw_interface_name_override (u8 * s, va_list * args)
325 {
326   vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
327   vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
328   /* caller supplied display name for this interface */
329   u8 *name = va_arg (*args, u8 *);
330   vnet_interface_main_t *im = &vnm->interface_main;
331
332
333   if (!si)
334     return format (s, "%=32s%=5s%=16s%=16s%=16s",
335                    "Name", "Idx", "State", "Counter", "Count");
336
337   s = format (s, "%-32v%=5d%=16U",
338               name, si->sw_if_index,
339               format_vnet_sw_interface_flags, si->flags);
340
341   s = format_vnet_sw_interface_cntrs (s, im, si);
342
343   return s;
344 }
345
346 u8 *
347 format_vnet_buffer_flags (u8 * s, va_list * args)
348 {
349   vlib_buffer_t *buf = va_arg (*args, vlib_buffer_t *);
350
351 #define _(a,b,c,v) if (buf->flags & VNET_BUFFER_F_##b) s = format (s, "%s ", c);
352   foreach_vnet_buffer_flag;
353 #undef _
354   return s;
355 }
356
357 u8 *
358 format_vnet_buffer_opaque (u8 * s, va_list * args)
359 {
360   vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
361   vnet_buffer_opaque_t *o = (vnet_buffer_opaque_t *) b->opaque;
362   vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
363   vnet_buffer_opquae_formatter_t helper_fp;
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,
445               "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,
451               "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
465   s = format (s, "ipsec.sad_index: %d", o->ipsec.sad_index);
466   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, "snat.flags: 0x%x", o->snat.flags);
514   vec_add1 (s, '\n');
515
516   for (i = 0; i < vec_len (im->buffer_opaque_format_helpers); i++)
517     {
518       helper_fp = im->buffer_opaque_format_helpers[i];
519       s = (*helper_fp) (b, s);
520     }
521
522   return s;
523 }
524
525 u8 *
526 format_vnet_buffer_opaque2 (u8 * s, va_list * args)
527 {
528   vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
529   vnet_buffer_opaque2_t *o = (vnet_buffer_opaque2_t *) b->opaque2;
530   vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
531   vnet_buffer_opquae_formatter_t helper_fp;
532
533   int i;
534
535   s = format (s, "raw: ");
536
537   for (i = 0; i < ARRAY_LEN (b->opaque2); i++)
538     s = format (s, "%08x ", b->opaque2[i]);
539   vec_add1 (s, '\n');
540
541   s = format (s, "qos.bits: %x, qos.source: %x",
542               (u32) (o->qos.bits), (u32) (o->qos.source));
543   vec_add1 (s, '\n');
544   s = format (s, "loop_counter: %d", o->loop_counter);
545   vec_add1 (s, '\n');
546
547   s = format (s, "gbp.flags: %x, gbp.sclass: %d",
548               (u32) (o->gbp.flags), (u32) (o->gbp.sclass));
549   vec_add1 (s, '\n');
550
551   s = format (s, "pg_replay_timestamp: %llu", (u32) (o->pg_replay_timestamp));
552   vec_add1 (s, '\n');
553
554   for (i = 0; i < vec_len (im->buffer_opaque2_format_helpers); i++)
555     {
556       helper_fp = im->buffer_opaque2_format_helpers[i];
557       s = (*helper_fp) (b, s);
558     }
559
560   return s;
561 }
562
563 void
564 vnet_register_format_buffer_opaque_helper (vnet_buffer_opquae_formatter_t fp)
565 {
566   vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
567   vec_add1 (im->buffer_opaque_format_helpers, fp);
568 }
569
570 void
571 vnet_register_format_buffer_opaque2_helper (vnet_buffer_opquae_formatter_t fp)
572 {
573   vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
574   vec_add1 (im->buffer_opaque2_format_helpers, fp);
575 }
576
577
578 uword
579 unformat_vnet_hw_interface (unformat_input_t * input, va_list * args)
580 {
581   vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
582   u32 *hw_if_index = va_arg (*args, u32 *);
583   vnet_interface_main_t *im = &vnm->interface_main;
584   vnet_device_class_t *c;
585
586   /* Try per device class functions first. */
587   vec_foreach (c, im->device_classes)
588   {
589     if (c->unformat_device_name
590         && unformat_user (input, c->unformat_device_name, hw_if_index))
591       return 1;
592   }
593
594   return unformat_user (input, unformat_hash_vec_string,
595                         im->hw_interface_by_name, hw_if_index);
596 }
597
598 uword
599 unformat_vnet_sw_interface (unformat_input_t * input, va_list * args)
600 {
601   vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
602   u32 *result = va_arg (*args, u32 *);
603   vnet_hw_interface_t *hi;
604   u32 hw_if_index, id, id_specified;
605   u32 sw_if_index;
606   u8 *if_name = 0;
607   uword *p, error = 0;
608
609   id = ~0;
610   if (unformat (input, "%_%v.%d%_", &if_name, &id)
611       && ((p = hash_get (vnm->interface_main.hw_interface_by_name, if_name))))
612     {
613       hw_if_index = p[0];
614       id_specified = 1;
615     }
616   else
617     if (unformat (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
618     id_specified = 0;
619   else
620     goto done;
621
622   hi = vnet_get_hw_interface (vnm, hw_if_index);
623   if (!id_specified)
624     {
625       sw_if_index = hi->sw_if_index;
626     }
627   else
628     {
629       if (!(p = hash_get (hi->sub_interface_sw_if_index_by_id, id)))
630         goto done;
631       sw_if_index = p[0];
632     }
633   if (!vnet_sw_interface_is_api_visible (vnm, sw_if_index))
634     goto done;
635   *result = sw_if_index;
636   error = 1;
637 done:
638   vec_free (if_name);
639   return error;
640 }
641
642 uword
643 unformat_vnet_sw_interface_flags (unformat_input_t * input, va_list * args)
644 {
645   u32 *result = va_arg (*args, u32 *);
646   u32 flags = 0;
647
648   if (unformat (input, "up"))
649     flags |= VNET_SW_INTERFACE_FLAG_ADMIN_UP;
650   else if (unformat (input, "down"))
651     flags &= ~VNET_SW_INTERFACE_FLAG_ADMIN_UP;
652   else if (unformat (input, "punt"))
653     flags |= VNET_SW_INTERFACE_FLAG_PUNT;
654   else if (unformat (input, "enable"))
655     flags &= ~VNET_SW_INTERFACE_FLAG_PUNT;
656   else
657     return 0;
658
659   *result = flags;
660   return 1;
661 }
662
663 uword
664 unformat_vnet_hw_interface_flags (unformat_input_t * input, va_list * args)
665 {
666   u32 *result = va_arg (*args, u32 *);
667   u32 flags = 0;
668
669   if (unformat (input, "up"))
670     flags |= VNET_HW_INTERFACE_FLAG_LINK_UP;
671   else if (unformat (input, "down"))
672     flags &= ~VNET_HW_INTERFACE_FLAG_LINK_UP;
673   else
674     return 0;
675
676   *result = flags;
677   return 1;
678 }
679
680 /*
681  * fd.io coding-style-patch-verification: ON
682  *
683  * Local Variables:
684  * eval: (c-set-style "gnu")
685  * End:
686  */