blob: 631120b96ac950e66db3091cc645e5c32d0c0700 [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 *
Dave Barachba868bb2016-08-08 09:51:21 -040081format_vnet_hw_interface (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070082{
Dave Barachba868bb2016-08-08 09:51:21 -040083 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
84 vnet_hw_interface_t *hi = va_arg (*args, vnet_hw_interface_t *);
85 vnet_hw_interface_class_t *hw_class;
86 vnet_device_class_t *dev_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -070087 int verbose = va_arg (*args, int);
Christophe Fontained3c008d2017-10-02 18:10:54 +020088 u32 indent;
Ed Warnickecb9cada2015-12-08 15:45:58 -070089
Dave Barachba868bb2016-08-08 09:51:21 -040090 if (!hi)
91 return format (s, "%=32s%=6s%=8s%s", "Name", "Idx", "Link", "Hardware");
Ed Warnickecb9cada2015-12-08 15:45:58 -070092
93 indent = format_get_indent (s);
94
John Lobcebbb92016-04-05 15:47:43 -040095 s = format (s, "%-32v%=6d", hi->name, hi->hw_if_index);
96
97 if (hi->bond_info == VNET_HW_INTERFACE_BOND_INFO_SLAVE)
98 s = format (s, "%=8s", "slave");
99 else
Dave Barachba868bb2016-08-08 09:51:21 -0400100 s = format (s, "%=8s",
John Lobcebbb92016-04-05 15:47:43 -0400101 hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP ? "up" : "down");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102
103 hw_class = vnet_get_hw_interface_class (vnm, hi->hw_class_index);
104 dev_class = vnet_get_device_class (vnm, hi->dev_class_index);
105
Dave Barachba868bb2016-08-08 09:51:21 -0400106 if (hi->bond_info && (hi->bond_info != VNET_HW_INTERFACE_BOND_INFO_SLAVE))
John Lobcebbb92016-04-05 15:47:43 -0400107 {
108 int hw_idx;
109 s = format (s, "Slave-Idx:");
Dave Barachba868bb2016-08-08 09:51:21 -0400110 clib_bitmap_foreach (hw_idx, hi->bond_info, s =
111 format (s, " %d", hw_idx));
John Lobcebbb92016-04-05 15:47:43 -0400112 }
Dave Barachba868bb2016-08-08 09:51:21 -0400113 else if (dev_class->format_device_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114 s = format (s, "%U", dev_class->format_device_name, hi->dev_instance);
115 else
116 s = format (s, "%s%d", dev_class->name, hi->dev_instance);
117
118 if (verbose)
119 {
120 if (hw_class->format_device)
121 s = format (s, "\n%U%U",
122 format_white_space, indent + 2,
123 hw_class->format_device, hi->hw_if_index, verbose);
124 else
125 {
126 s = format (s, "\n%U%s",
Dave Barachba868bb2016-08-08 09:51:21 -0400127 format_white_space, indent + 2, hw_class->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128 if (hw_class->format_address && vec_len (hi->hw_address) > 0)
Dave Barachba868bb2016-08-08 09:51:21 -0400129 s =
130 format (s, " address %U", hw_class->format_address,
131 hi->hw_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700132 }
133
134 if (dev_class->format_device)
135 s = format (s, "\n%U%U",
136 format_white_space, indent + 2,
137 dev_class->format_device, hi->dev_instance, verbose);
138 }
139
140 return s;
141}
142
Dave Barachba868bb2016-08-08 09:51:21 -0400143u8 *
144format_vnet_sw_interface_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145{
Dave Barachba868bb2016-08-08 09:51:21 -0400146 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
147 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
148 vnet_sw_interface_t *si_sup =
149 vnet_get_sup_sw_interface (vnm, si->sw_if_index);
150 vnet_hw_interface_t *hi_sup;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151
152 ASSERT (si_sup->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
153 hi_sup = vnet_get_hw_interface (vnm, si_sup->hw_if_index);
154
155 s = format (s, "%v", hi_sup->name);
156
157 if (si->type != VNET_SW_INTERFACE_TYPE_HARDWARE)
158 s = format (s, ".%d", si->sub.id);
159
160 return s;
161}
162
Dave Barachba868bb2016-08-08 09:51:21 -0400163u8 *
164format_vnet_sw_if_index_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700165{
Dave Barachba868bb2016-08-08 09:51:21 -0400166 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167 u32 sw_if_index = va_arg (*args, u32);
Neale Rannsda78f952017-05-24 09:15:43 -0700168 vnet_sw_interface_t *si;
169
170 si = vnet_get_sw_interface_safe (vnm, sw_if_index);
171
172 if (NULL == si)
173 {
174 return format (s, "DELETED");
175 }
176 return format (s, "%U", format_vnet_sw_interface_name, vnm, si);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700177}
178
Dave Barachba868bb2016-08-08 09:51:21 -0400179u8 *
Damjan Mariona35cc142018-03-16 01:25:27 +0100180format_vnet_hw_if_index_name (u8 * s, va_list * args)
181{
182 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
183 u32 hw_if_index = va_arg (*args, u32);
184 vnet_hw_interface_t *hi;
185
186 hi = vnet_get_hw_interface (vnm, hw_if_index);
187
188 if (hi == 0)
189 return format (s, "DELETED");
190
191 return format (s, "%v", hi->name);
192}
193
194u8 *
Dave Barachba868bb2016-08-08 09:51:21 -0400195format_vnet_sw_interface_cntrs (u8 * s, vnet_interface_main_t * im,
196 vnet_sw_interface_t * si)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700197{
Christophe Fontained3c008d2017-10-02 18:10:54 +0200198 u32 indent, n_printed;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700199 int i, j, n_counters;
Dave Barachba868bb2016-08-08 09:51:21 -0400200 static vnet_main_t **my_vnet_mains;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202 vec_reset_length (my_vnet_mains);
203
204 indent = format_get_indent (s);
205 n_printed = 0;
206
207 {
Dave Barachba868bb2016-08-08 09:51:21 -0400208 vlib_combined_counter_main_t *cm;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209 vlib_counter_t v, vtotal;
Dave Barachba868bb2016-08-08 09:51:21 -0400210 u8 *n = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700211
212 for (i = 0; i < vec_len (vnet_mains); i++)
213 {
Dave Barachba868bb2016-08-08 09:51:21 -0400214 if (vnet_mains[i])
215 vec_add1 (my_vnet_mains, vnet_mains[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216 }
217
Dave Barachba868bb2016-08-08 09:51:21 -0400218 if (vec_len (my_vnet_mains) == 0)
219 vec_add1 (my_vnet_mains, &vnet_main);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220
221 /* Each vnet_main_t has its own copy of the interface counters */
222 n_counters = vec_len (im->combined_sw_if_counters);
223
224 /* rx, tx counters... */
225 for (j = 0; j < n_counters; j++)
226 {
Dave Barachba868bb2016-08-08 09:51:21 -0400227 vtotal.packets = 0;
228 vtotal.bytes = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229
Dave Barachba868bb2016-08-08 09:51:21 -0400230 for (i = 0; i < vec_len (my_vnet_mains); i++)
231 {
232 im = &my_vnet_mains[i]->interface_main;
233 cm = im->combined_sw_if_counters + j;
234 vlib_get_combined_counter (cm, si->sw_if_index, &v);
235 vtotal.packets += v.packets;
236 vtotal.bytes += v.bytes;
237 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700238
239 /* Only display non-zero counters. */
240 if (vtotal.packets == 0)
241 continue;
242
243 if (n_printed > 0)
244 s = format (s, "\n%U", format_white_space, indent);
245 n_printed += 2;
246
247 if (n)
248 _vec_len (n) = 0;
249 n = format (n, "%s packets", cm->name);
250 s = format (s, "%-16v%16Ld", n, vtotal.packets);
251
252 _vec_len (n) = 0;
253 n = format (n, "%s bytes", cm->name);
254 s = format (s, "\n%U%-16v%16Ld",
Dave Barachba868bb2016-08-08 09:51:21 -0400255 format_white_space, indent, n, vtotal.bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256 }
257 vec_free (n);
258 }
259
260 {
Dave Barachba868bb2016-08-08 09:51:21 -0400261 vlib_simple_counter_main_t *cm;
262 u64 v, vtotal;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263
264 n_counters = vec_len (im->sw_if_counters);
265
266 for (j = 0; j < n_counters; j++)
267 {
Dave Barachba868bb2016-08-08 09:51:21 -0400268 vtotal = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269
Dave Barachba868bb2016-08-08 09:51:21 -0400270 for (i = 0; i < vec_len (my_vnet_mains); i++)
271 {
272 im = &my_vnet_mains[i]->interface_main;
273 cm = im->sw_if_counters + j;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274
Dave Barachba868bb2016-08-08 09:51:21 -0400275 v = vlib_get_simple_counter (cm, si->sw_if_index);
276 vtotal += v;
277 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700278
279 /* Only display non-zero counters. */
280 if (vtotal == 0)
281 continue;
282
283 if (n_printed > 0)
284 s = format (s, "\n%U", format_white_space, indent);
285 n_printed += 1;
286
287 s = format (s, "%-16s%16Ld", cm->name, vtotal);
288 }
289 }
290
291 return s;
292}
293
Ole Troand7231612018-06-07 10:17:57 +0200294static u8 *
295format_vnet_sw_interface_mtu (u8 * s, va_list * args)
296{
297 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
298
299 return format (s, "%d/%d/%d/%d", si->mtu[VNET_MTU_L3],
300 si->mtu[VNET_MTU_IP4],
301 si->mtu[VNET_MTU_IP6], si->mtu[VNET_MTU_MPLS]);
302}
303
Dave Barachba868bb2016-08-08 09:51:21 -0400304u8 *
305format_vnet_sw_interface (u8 * s, va_list * args)
Sean Hope679ea792016-02-22 15:12:01 -0500306{
Dave Barachba868bb2016-08-08 09:51:21 -0400307 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
308 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
309 vnet_interface_main_t *im = &vnm->interface_main;
Sean Hope679ea792016-02-22 15:12:01 -0500310
Dave Barachba868bb2016-08-08 09:51:21 -0400311 if (!si)
Ole Troand7231612018-06-07 10:17:57 +0200312 return format (s, "%=32s%=5s%=10s%=21s%=16s%=16s",
313 "Name", "Idx", "State", "MTU (L3/IP4/IP6/MPLS)", "Counter",
314 "Count");
Sean Hope679ea792016-02-22 15:12:01 -0500315
Ole Troand7231612018-06-07 10:17:57 +0200316 s = format (s, "%-32U%=5d%=10U%=21U",
Sean Hope679ea792016-02-22 15:12:01 -0500317 format_vnet_sw_interface_name, vnm, si, si->sw_if_index,
Ole Troand7231612018-06-07 10:17:57 +0200318 format_vnet_sw_interface_flags, si->flags,
319 format_vnet_sw_interface_mtu, si);
Sean Hope679ea792016-02-22 15:12:01 -0500320
Dave Barachba868bb2016-08-08 09:51:21 -0400321 s = format_vnet_sw_interface_cntrs (s, im, si);
Sean Hope679ea792016-02-22 15:12:01 -0500322
323 return s;
324}
325
Dave Barachba868bb2016-08-08 09:51:21 -0400326u8 *
327format_vnet_sw_interface_name_override (u8 * s, va_list * args)
Sean Hope679ea792016-02-22 15:12:01 -0500328{
Dave Barachba868bb2016-08-08 09:51:21 -0400329 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
330 vnet_sw_interface_t *si = va_arg (*args, vnet_sw_interface_t *);
Sean Hope679ea792016-02-22 15:12:01 -0500331 /* caller supplied display name for this interface */
Dave Barachba868bb2016-08-08 09:51:21 -0400332 u8 *name = va_arg (*args, u8 *);
333 vnet_interface_main_t *im = &vnm->interface_main;
Sean Hope679ea792016-02-22 15:12:01 -0500334
335
Dave Barachba868bb2016-08-08 09:51:21 -0400336 if (!si)
Sean Hope679ea792016-02-22 15:12:01 -0500337 return format (s, "%=32s%=5s%=16s%=16s%=16s",
338 "Name", "Idx", "State", "Counter", "Count");
339
340 s = format (s, "%-32v%=5d%=16U",
341 name, si->sw_if_index,
342 format_vnet_sw_interface_flags, si->flags);
343
Dave Barachba868bb2016-08-08 09:51:21 -0400344 s = format_vnet_sw_interface_cntrs (s, im, si);
Sean Hope679ea792016-02-22 15:12:01 -0500345
346 return s;
347}
348
Dave Barachba868bb2016-08-08 09:51:21 -0400349uword
350unformat_vnet_hw_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351{
Dave Barachba868bb2016-08-08 09:51:21 -0400352 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
353 u32 *hw_if_index = va_arg (*args, u32 *);
354 vnet_interface_main_t *im = &vnm->interface_main;
355 vnet_device_class_t *c;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700356
357 /* Try per device class functions first. */
358 vec_foreach (c, im->device_classes)
Dave Barachba868bb2016-08-08 09:51:21 -0400359 {
360 if (c->unformat_device_name
361 && unformat_user (input, c->unformat_device_name, hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700362 return 1;
Dave Barachba868bb2016-08-08 09:51:21 -0400363 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700364
365 return unformat_user (input, unformat_hash_vec_string,
366 im->hw_interface_by_name, hw_if_index);
367}
368
Dave Barachba868bb2016-08-08 09:51:21 -0400369uword
370unformat_vnet_sw_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700371{
Dave Barachba868bb2016-08-08 09:51:21 -0400372 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
373 u32 *result = va_arg (*args, u32 *);
374 vnet_hw_interface_t *hi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375 u32 hw_if_index, id, id_specified;
Eyal Bari3212c572017-03-06 11:47:50 +0200376 u32 sw_if_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400377 u8 *if_name = 0;
378 uword *p, error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700379
380 id = ~0;
381 if (unformat (input, "%_%v.%d%_", &if_name, &id)
382 && ((p = hash_get (vnm->interface_main.hw_interface_by_name, if_name))))
383 {
384 hw_if_index = p[0];
385 id_specified = 1;
386 }
Dave Barachba868bb2016-08-08 09:51:21 -0400387 else
388 if (unformat (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700389 id_specified = 0;
390 else
391 goto done;
392
393 hi = vnet_get_hw_interface (vnm, hw_if_index);
Dave Barachba868bb2016-08-08 09:51:21 -0400394 if (!id_specified)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395 {
Eyal Bari3212c572017-03-06 11:47:50 +0200396 sw_if_index = hi->sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397 }
398 else
399 {
Dave Barachba868bb2016-08-08 09:51:21 -0400400 if (!(p = hash_get (hi->sub_interface_sw_if_index_by_id, id)))
Eyal Bari3212c572017-03-06 11:47:50 +0200401 goto done;
402 sw_if_index = p[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700403 }
Eyal Bari3212c572017-03-06 11:47:50 +0200404 if (!vnet_sw_interface_is_api_visible (vnm, sw_if_index))
405 goto done;
406 *result = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700407 error = 1;
Dave Barachba868bb2016-08-08 09:51:21 -0400408done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700409 vec_free (if_name);
410 return error;
411}
412
Dave Barachba868bb2016-08-08 09:51:21 -0400413uword
414unformat_vnet_sw_interface_flags (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700415{
Dave Barachba868bb2016-08-08 09:51:21 -0400416 u32 *result = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700417 u32 flags = 0;
418
419 if (unformat (input, "up"))
420 flags |= VNET_SW_INTERFACE_FLAG_ADMIN_UP;
421 else if (unformat (input, "down"))
422 flags &= ~VNET_SW_INTERFACE_FLAG_ADMIN_UP;
423 else if (unformat (input, "punt"))
424 flags |= VNET_SW_INTERFACE_FLAG_PUNT;
425 else if (unformat (input, "enable"))
426 flags &= ~VNET_SW_INTERFACE_FLAG_PUNT;
427 else
428 return 0;
429
430 *result = flags;
431 return 1;
432}
433
Dave Barachba868bb2016-08-08 09:51:21 -0400434uword
435unformat_vnet_hw_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_HW_INTERFACE_FLAG_LINK_UP;
442 else if (unformat (input, "down"))
443 flags &= ~VNET_HW_INTERFACE_FLAG_LINK_UP;
444 else
445 return 0;
446
447 *result = flags;
448 return 1;
449}
450
Dave Barachba868bb2016-08-08 09:51:21 -0400451/*
452 * fd.io coding-style-patch-verification: ON
453 *
454 * Local Variables:
455 * eval: (c-set-style "gnu")
456 * End:
457 */