blob: c62e770e57b006ea24976493334553dca152d4f8 [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 Barachba868bb2016-08-08 09:51:21 -0400370uword
371unformat_vnet_hw_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700372{
Dave Barachba868bb2016-08-08 09:51:21 -0400373 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
374 u32 *hw_if_index = va_arg (*args, u32 *);
375 vnet_interface_main_t *im = &vnm->interface_main;
376 vnet_device_class_t *c;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377
378 /* Try per device class functions first. */
379 vec_foreach (c, im->device_classes)
Dave Barachba868bb2016-08-08 09:51:21 -0400380 {
381 if (c->unformat_device_name
382 && unformat_user (input, c->unformat_device_name, hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383 return 1;
Dave Barachba868bb2016-08-08 09:51:21 -0400384 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700385
386 return unformat_user (input, unformat_hash_vec_string,
387 im->hw_interface_by_name, hw_if_index);
388}
389
Dave Barachba868bb2016-08-08 09:51:21 -0400390uword
391unformat_vnet_sw_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700392{
Dave Barachba868bb2016-08-08 09:51:21 -0400393 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
394 u32 *result = va_arg (*args, u32 *);
395 vnet_hw_interface_t *hi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700396 u32 hw_if_index, id, id_specified;
Eyal Bari3212c572017-03-06 11:47:50 +0200397 u32 sw_if_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400398 u8 *if_name = 0;
399 uword *p, error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400
401 id = ~0;
402 if (unformat (input, "%_%v.%d%_", &if_name, &id)
403 && ((p = hash_get (vnm->interface_main.hw_interface_by_name, if_name))))
404 {
405 hw_if_index = p[0];
406 id_specified = 1;
407 }
Dave Barachba868bb2016-08-08 09:51:21 -0400408 else
409 if (unformat (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700410 id_specified = 0;
411 else
412 goto done;
413
414 hi = vnet_get_hw_interface (vnm, hw_if_index);
Dave Barachba868bb2016-08-08 09:51:21 -0400415 if (!id_specified)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700416 {
Eyal Bari3212c572017-03-06 11:47:50 +0200417 sw_if_index = hi->sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418 }
419 else
420 {
Dave Barachba868bb2016-08-08 09:51:21 -0400421 if (!(p = hash_get (hi->sub_interface_sw_if_index_by_id, id)))
Eyal Bari3212c572017-03-06 11:47:50 +0200422 goto done;
423 sw_if_index = p[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700424 }
Eyal Bari3212c572017-03-06 11:47:50 +0200425 if (!vnet_sw_interface_is_api_visible (vnm, sw_if_index))
426 goto done;
427 *result = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700428 error = 1;
Dave Barachba868bb2016-08-08 09:51:21 -0400429done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700430 vec_free (if_name);
431 return error;
432}
433
Dave Barachba868bb2016-08-08 09:51:21 -0400434uword
435unformat_vnet_sw_interface_flags (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700436{
Dave Barachba868bb2016-08-08 09:51:21 -0400437 u32 *result = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438 u32 flags = 0;
439
440 if (unformat (input, "up"))
441 flags |= VNET_SW_INTERFACE_FLAG_ADMIN_UP;
442 else if (unformat (input, "down"))
443 flags &= ~VNET_SW_INTERFACE_FLAG_ADMIN_UP;
444 else if (unformat (input, "punt"))
445 flags |= VNET_SW_INTERFACE_FLAG_PUNT;
446 else if (unformat (input, "enable"))
447 flags &= ~VNET_SW_INTERFACE_FLAG_PUNT;
448 else
449 return 0;
450
451 *result = flags;
452 return 1;
453}
454
Dave Barachba868bb2016-08-08 09:51:21 -0400455uword
456unformat_vnet_hw_interface_flags (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700457{
Dave Barachba868bb2016-08-08 09:51:21 -0400458 u32 *result = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700459 u32 flags = 0;
460
461 if (unformat (input, "up"))
462 flags |= VNET_HW_INTERFACE_FLAG_LINK_UP;
463 else if (unformat (input, "down"))
464 flags &= ~VNET_HW_INTERFACE_FLAG_LINK_UP;
465 else
466 return 0;
467
468 *result = flags;
469 return 1;
470}
471
Dave Barachba868bb2016-08-08 09:51:21 -0400472/*
473 * fd.io coding-style-patch-verification: ON
474 *
475 * Local Variables:
476 * eval: (c-set-style "gnu")
477 * End:
478 */