Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 1 | /* |
| 2 | *------------------------------------------------------------------ |
| 3 | * Copyright (c) 2016 Cisco and/or its affiliates. |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at: |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | *------------------------------------------------------------------ |
| 16 | */ |
| 17 | #include <stdint.h> |
| 18 | #include <net/if.h> |
| 19 | #include <sys/ioctl.h> |
| 20 | #include <inttypes.h> |
| 21 | |
| 22 | #include <vlib/vlib.h> |
| 23 | #include <vlib/unix/unix.h> |
| 24 | #include <vnet/ethernet/ethernet.h> |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 25 | #include <vnet/ip/ip4_packet.h> |
| 26 | #include <vnet/ip/ip6_packet.h> |
| 27 | #include <vnet/ip/format.h> |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 28 | #include <vnet/devices/virtio/virtio.h> |
Damjan Marion | c99b4cd | 2017-12-04 15:25:58 +0100 | [diff] [blame] | 29 | #include <vnet/devices/tap/tap.h> |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 30 | |
| 31 | static clib_error_t * |
| 32 | tap_create_command_fn (vlib_main_t * vm, unformat_input_t * input, |
| 33 | vlib_cli_command_t * cmd) |
| 34 | { |
| 35 | unformat_input_t _line_input, *line_input = &_line_input; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 36 | tap_create_if_args_t args = { 0 }; |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 37 | int ip_addr_set = 0; |
Damjan Marion | 0ba86cb | 2019-11-08 15:15:11 +0100 | [diff] [blame] | 38 | u32 tmp; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 39 | |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 40 | args.id = ~0; |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 41 | args.tap_flags = 0; |
Mohsin Kazmi | c5d5327 | 2019-07-01 10:26:43 +0200 | [diff] [blame] | 42 | args.rv = -1; |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 43 | args.num_rx_queues = 1; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 44 | |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 45 | /* Get a line of input. */ |
| 46 | if (unformat_user (input, unformat_line_input, line_input)) |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 47 | { |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 48 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 49 | { |
| 50 | if (unformat (line_input, "id %u", &args.id)) |
| 51 | ; |
| 52 | else |
| 53 | if (unformat (line_input, "host-if-name %s", &args.host_if_name)) |
| 54 | ; |
| 55 | else if (unformat (line_input, "host-ns %s", &args.host_namespace)) |
| 56 | ; |
| 57 | else if (unformat (line_input, "host-mac-addr %U", |
Mohsin Kazmi | 3039753 | 2020-01-30 13:36:02 +0100 | [diff] [blame] | 58 | unformat_ethernet_address, |
| 59 | args.host_mac_addr.bytes)) |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 60 | ; |
| 61 | else if (unformat (line_input, "host-bridge %s", &args.host_bridge)) |
| 62 | ; |
| 63 | else if (unformat (line_input, "host-ip4-addr %U/%d", |
| 64 | unformat_ip4_address, &args.host_ip4_addr, |
| 65 | &args.host_ip4_prefix_len)) |
| 66 | ip_addr_set = 1; |
Damjan Marion | 7866c45 | 2018-01-18 13:35:11 +0100 | [diff] [blame] | 67 | else if (unformat (line_input, "host-ip4-gw %U", |
| 68 | unformat_ip4_address, &args.host_ip4_gw)) |
| 69 | args.host_ip4_gw_set = 1; |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 70 | else if (unformat (line_input, "host-ip6-addr %U/%d", |
| 71 | unformat_ip6_address, &args.host_ip6_addr, |
| 72 | &args.host_ip6_prefix_len)) |
| 73 | ip_addr_set = 1; |
Damjan Marion | 7866c45 | 2018-01-18 13:35:11 +0100 | [diff] [blame] | 74 | else if (unformat (line_input, "host-ip6-gw %U", |
| 75 | unformat_ip6_address, &args.host_ip6_gw)) |
| 76 | args.host_ip6_gw_set = 1; |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 77 | else if (unformat (line_input, "num-rx-queues %d", &tmp)) |
| 78 | args.num_rx_queues = tmp; |
Damjan Marion | 0ba86cb | 2019-11-08 15:15:11 +0100 | [diff] [blame] | 79 | else if (unformat (line_input, "rx-ring-size %d", &tmp)) |
| 80 | args.rx_ring_sz = tmp; |
| 81 | else if (unformat (line_input, "tx-ring-size %d", &tmp)) |
| 82 | args.tx_ring_sz = tmp; |
Mohsin Kazmi | 97d54ed | 2019-06-10 11:20:15 +0200 | [diff] [blame] | 83 | else |
| 84 | if (unformat |
| 85 | (line_input, "host-mtu-size %d", &args.host_mtu_size)) |
| 86 | args.host_mtu_set = 1; |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 87 | else if (unformat (line_input, "no-gso")) |
| 88 | args.tap_flags &= ~TAP_FLAG_GSO; |
| 89 | else if (unformat (line_input, "gso")) |
| 90 | args.tap_flags |= TAP_FLAG_GSO; |
Mohsin Kazmi | d88fc0f | 2020-04-30 19:05:56 +0200 | [diff] [blame] | 91 | else if (unformat (line_input, "gro-coalesce")) |
| 92 | args.tap_flags |= TAP_FLAG_GRO_COALESCE; |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 93 | else if (unformat (line_input, "csum-offload")) |
| 94 | args.tap_flags |= TAP_FLAG_CSUM_OFFLOAD; |
Mohsin Kazmi | b49bc1a | 2020-02-14 17:51:04 +0000 | [diff] [blame] | 95 | else if (unformat (line_input, "persist")) |
| 96 | args.tap_flags |= TAP_FLAG_PERSIST; |
| 97 | else if (unformat (line_input, "attach")) |
| 98 | args.tap_flags |= TAP_FLAG_ATTACH; |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 99 | else if (unformat (line_input, "tun")) |
| 100 | args.tap_flags |= TAP_FLAG_TUN; |
Mohsin Kazmi | 50bd165 | 2020-08-26 11:07:48 +0200 | [diff] [blame] | 101 | else if (unformat (line_input, "packed")) |
| 102 | args.tap_flags |= TAP_FLAG_PACKED; |
| 103 | else if (unformat (line_input, "in-order")) |
| 104 | args.tap_flags |= TAP_FLAG_IN_ORDER; |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 105 | else if (unformat (line_input, "hw-addr %U", |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 106 | unformat_ethernet_address, args.mac_addr.bytes)) |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 107 | args.mac_addr_set = 1; |
| 108 | else |
Swarup Nayak | 76dc22c | 2017-12-05 09:46:17 +0530 | [diff] [blame] | 109 | { |
| 110 | unformat_free (line_input); |
| 111 | return clib_error_return (0, "unknown input `%U'", |
| 112 | format_unformat_error, input); |
| 113 | } |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 114 | } |
| 115 | unformat_free (line_input); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 116 | } |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 117 | |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 118 | if (ip_addr_set && args.host_bridge) |
| 119 | return clib_error_return (0, "Please specify either host ip address or " |
| 120 | "host bridge"); |
| 121 | |
| 122 | tap_create_if (vm, &args); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 123 | |
Mohsin Kazmi | c5d5327 | 2019-07-01 10:26:43 +0200 | [diff] [blame] | 124 | if (!args.rv) |
| 125 | vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name, |
| 126 | vnet_get_main (), args.sw_if_index); |
| 127 | |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 128 | vec_free (args.host_if_name); |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 129 | vec_free (args.host_namespace); |
| 130 | vec_free (args.host_bridge); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 131 | |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 132 | return args.error; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 133 | |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | /* *INDENT-OFF* */ |
| 137 | VLIB_CLI_COMMAND (tap_create_command, static) = { |
| 138 | .path = "create tap", |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 139 | .short_help = "create tap {id <if-id>} [hw-addr <mac-address>] " |
Mohsin Kazmi | 28adbb3 | 2020-04-29 13:10:08 +0200 | [diff] [blame] | 140 | "[num-rx-queues <n>] [rx-ring-size <size>] [tx-ring-size <size>] " |
| 141 | "[host-ns <netns>] [host-bridge <bridge-name>] " |
| 142 | "[host-ip4-addr <ip4addr/mask>] [host-ip6-addr <ip6-addr>] " |
| 143 | "[host-ip4-gw <ip4-addr>] [host-ip6-gw <ip6-addr>] " |
| 144 | "[host-mac-addr <host-mac-address>] [host-if-name <name>] " |
Mohsin Kazmi | 1017a1d | 2020-09-25 15:36:19 +0200 | [diff] [blame] | 145 | "[host-mtu-size <size>] [no-gso|gso [gro-coalesce]|csum-offload] " |
Mohsin Kazmi | 50bd165 | 2020-08-26 11:07:48 +0200 | [diff] [blame] | 146 | "[persist] [attach] [tun] [packed] [in-order]", |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 147 | .function = tap_create_command_fn, |
| 148 | }; |
| 149 | /* *INDENT-ON* */ |
| 150 | |
| 151 | static clib_error_t * |
| 152 | tap_delete_command_fn (vlib_main_t * vm, unformat_input_t * input, |
| 153 | vlib_cli_command_t * cmd) |
| 154 | { |
| 155 | unformat_input_t _line_input, *line_input = &_line_input; |
| 156 | u32 sw_if_index = ~0; |
| 157 | vnet_main_t *vnm = vnet_get_main (); |
| 158 | int rv; |
| 159 | |
| 160 | /* Get a line of input. */ |
| 161 | if (!unformat_user (input, unformat_line_input, line_input)) |
| 162 | return clib_error_return (0, "Missing <interface>"); |
| 163 | |
| 164 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 165 | { |
| 166 | if (unformat (line_input, "sw_if_index %d", &sw_if_index)) |
| 167 | ; |
| 168 | else if (unformat (line_input, "%U", unformat_vnet_sw_interface, |
| 169 | vnm, &sw_if_index)) |
| 170 | ; |
| 171 | else |
| 172 | return clib_error_return (0, "unknown input `%U'", |
| 173 | format_unformat_error, input); |
| 174 | } |
| 175 | unformat_free (line_input); |
| 176 | |
| 177 | if (sw_if_index == ~0) |
| 178 | return clib_error_return (0, |
| 179 | "please specify interface name or sw_if_index"); |
| 180 | |
| 181 | rv = tap_delete_if (vm, sw_if_index); |
| 182 | if (rv == VNET_API_ERROR_INVALID_SW_IF_INDEX) |
| 183 | return clib_error_return (0, "not a tap interface"); |
| 184 | else if (rv != 0) |
| 185 | return clib_error_return (0, "error on deleting tap interface"); |
| 186 | |
| 187 | return 0; |
| 188 | } |
| 189 | |
| 190 | /* *INDENT-OFF* */ |
| 191 | VLIB_CLI_COMMAND (tap_delete__command, static) = |
| 192 | { |
| 193 | .path = "delete tap", |
| 194 | .short_help = "delete tap {<interface> | sw_if_index <sw_idx>}", |
| 195 | .function = tap_delete_command_fn, |
| 196 | }; |
| 197 | /* *INDENT-ON* */ |
| 198 | |
| 199 | static clib_error_t * |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 200 | tap_offload_command_fn (vlib_main_t * vm, unformat_input_t * input, |
| 201 | vlib_cli_command_t * cmd) |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 202 | { |
| 203 | unformat_input_t _line_input, *line_input = &_line_input; |
| 204 | u32 sw_if_index = ~0; |
| 205 | vnet_main_t *vnm = vnet_get_main (); |
Mohsin Kazmi | 9e2a785 | 2020-08-13 18:57:26 +0200 | [diff] [blame] | 206 | int gso_enable = 0, gso_disable = 0, is_gro_coalesce = 0; |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 207 | int csum_offload_enable = 0, csum_offload_disable = 0; |
| 208 | int rv = 0; |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 209 | |
| 210 | /* Get a line of input. */ |
| 211 | if (!unformat_user (input, unformat_line_input, line_input)) |
| 212 | return clib_error_return (0, "Missing <interface>"); |
| 213 | |
| 214 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 215 | { |
| 216 | if (unformat (line_input, "sw_if_index %d", &sw_if_index)) |
| 217 | ; |
| 218 | else if (unformat (line_input, "%U", unformat_vnet_sw_interface, |
| 219 | vnm, &sw_if_index)) |
| 220 | ; |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 221 | else if (unformat (line_input, "gso-enable")) |
Mohsin Kazmi | 9e2a785 | 2020-08-13 18:57:26 +0200 | [diff] [blame] | 222 | { |
| 223 | gso_enable = 1; |
| 224 | if (unformat (line_input, "gro-coalesce")) |
| 225 | is_gro_coalesce = 1; |
| 226 | } |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 227 | else if (unformat (line_input, "gso-disable")) |
| 228 | gso_disable = 1; |
| 229 | else if (unformat (line_input, "csum-offload-enable")) |
| 230 | csum_offload_enable = 1; |
| 231 | else if (unformat (line_input, "csum-offload-disable")) |
| 232 | csum_offload_disable = 1; |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 233 | else |
| 234 | return clib_error_return (0, "unknown input `%U'", |
| 235 | format_unformat_error, input); |
| 236 | } |
| 237 | unformat_free (line_input); |
| 238 | |
| 239 | if (sw_if_index == ~0) |
| 240 | return clib_error_return (0, |
| 241 | "please specify interface name or sw_if_index"); |
| 242 | |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 243 | if (gso_enable) |
Mohsin Kazmi | 9e2a785 | 2020-08-13 18:57:26 +0200 | [diff] [blame] | 244 | rv = tap_gso_enable_disable (vm, sw_if_index, 1, is_gro_coalesce); |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 245 | else if (csum_offload_enable) |
| 246 | rv = tap_csum_offload_enable_disable (vm, sw_if_index, 1); |
| 247 | else if (gso_disable) |
Mohsin Kazmi | 9e2a785 | 2020-08-13 18:57:26 +0200 | [diff] [blame] | 248 | rv = tap_gso_enable_disable (vm, sw_if_index, 0, 0); |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 249 | else if (csum_offload_disable) |
| 250 | rv = tap_csum_offload_enable_disable (vm, sw_if_index, 0); |
| 251 | |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 252 | if (rv == VNET_API_ERROR_INVALID_SW_IF_INDEX) |
| 253 | return clib_error_return (0, "not a tap interface"); |
| 254 | else if (rv != 0) |
| 255 | return clib_error_return (0, "error on configuring GSO on tap interface"); |
| 256 | |
| 257 | return 0; |
| 258 | } |
| 259 | |
| 260 | /* *INDENT-OFF* */ |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 261 | VLIB_CLI_COMMAND (tap_offload_command, static) = |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 262 | { |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 263 | .path = "set tap offload", |
| 264 | .short_help = "set tap offload {<interface> | sw_if_index <sw_idx>}" |
Mohsin Kazmi | 9e2a785 | 2020-08-13 18:57:26 +0200 | [diff] [blame] | 265 | " <gso-enable [gro-coalesce] | gso-disable | csum-offload-enable |" |
| 266 | "csum-offload-disable>", |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 267 | .function = tap_offload_command_fn, |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 268 | }; |
| 269 | /* *INDENT-ON* */ |
| 270 | |
| 271 | static clib_error_t * |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 272 | tap_show_command_fn (vlib_main_t * vm, unformat_input_t * input, |
| 273 | vlib_cli_command_t * cmd) |
| 274 | { |
| 275 | virtio_main_t *mm = &virtio_main; |
| 276 | virtio_if_t *vif; |
| 277 | vnet_main_t *vnm = vnet_get_main (); |
| 278 | int show_descr = 0; |
| 279 | clib_error_t *error = 0; |
| 280 | u32 hw_if_index, *hw_if_indices = 0; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 281 | |
| 282 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 283 | { |
| 284 | if (unformat |
| 285 | (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index)) |
| 286 | vec_add1 (hw_if_indices, hw_if_index); |
| 287 | else if (unformat (input, "descriptors")) |
| 288 | show_descr = 1; |
| 289 | else |
| 290 | { |
| 291 | error = clib_error_return (0, "unknown input `%U'", |
| 292 | format_unformat_error, input); |
| 293 | goto done; |
| 294 | } |
| 295 | } |
| 296 | |
| 297 | if (vec_len (hw_if_indices) == 0) |
| 298 | { |
| 299 | /* *INDENT-OFF* */ |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 300 | pool_foreach (vif, mm->interfaces) |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 301 | vec_add1 (hw_if_indices, vif->hw_if_index); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 302 | /* *INDENT-ON* */ |
| 303 | } |
| 304 | |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 305 | virtio_show (vm, hw_if_indices, show_descr, VIRTIO_IF_TYPE_TAP); |
| 306 | |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 307 | done: |
| 308 | vec_free (hw_if_indices); |
| 309 | return error; |
| 310 | } |
| 311 | |
| 312 | /* *INDENT-OFF* */ |
| 313 | VLIB_CLI_COMMAND (tap_show_command, static) = { |
| 314 | .path = "show tap", |
| 315 | .short_help = "show tap {<interface>] [descriptors]", |
| 316 | .function = tap_show_command_fn, |
| 317 | }; |
| 318 | /* *INDENT-ON* */ |
| 319 | |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 320 | static clib_error_t * |
| 321 | tun_show_command_fn (vlib_main_t * vm, unformat_input_t * input, |
| 322 | vlib_cli_command_t * cmd) |
| 323 | { |
| 324 | virtio_main_t *mm = &virtio_main; |
| 325 | virtio_if_t *vif; |
| 326 | vnet_main_t *vnm = vnet_get_main (); |
| 327 | int show_descr = 0; |
| 328 | clib_error_t *error = 0; |
| 329 | u32 hw_if_index, *hw_if_indices = 0; |
| 330 | |
| 331 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 332 | { |
| 333 | if (unformat |
| 334 | (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index)) |
| 335 | vec_add1 (hw_if_indices, hw_if_index); |
| 336 | else if (unformat (input, "descriptors")) |
| 337 | show_descr = 1; |
| 338 | else |
| 339 | { |
| 340 | error = clib_error_return (0, "unknown input `%U'", |
| 341 | format_unformat_error, input); |
| 342 | goto done; |
| 343 | } |
| 344 | } |
| 345 | |
| 346 | if (vec_len (hw_if_indices) == 0) |
| 347 | { |
| 348 | /* *INDENT-OFF* */ |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 349 | pool_foreach (vif, mm->interfaces) |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 350 | vec_add1 (hw_if_indices, vif->hw_if_index); |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 351 | /* *INDENT-ON* */ |
| 352 | } |
| 353 | |
| 354 | virtio_show (vm, hw_if_indices, show_descr, VIRTIO_IF_TYPE_TUN); |
| 355 | |
| 356 | done: |
| 357 | vec_free (hw_if_indices); |
| 358 | return error; |
| 359 | } |
| 360 | |
| 361 | /* *INDENT-OFF* */ |
| 362 | VLIB_CLI_COMMAND (tun_show_command, static) = { |
| 363 | .path = "show tun", |
| 364 | .short_help = "show tun {<interface>] [descriptors]", |
| 365 | .function = tun_show_command_fn, |
| 366 | }; |
| 367 | /* *INDENT-ON* */ |
| 368 | |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 369 | clib_error_t * |
| 370 | tap_cli_init (vlib_main_t * vm) |
| 371 | { |
| 372 | return 0; |
| 373 | } |
| 374 | |
| 375 | VLIB_INIT_FUNCTION (tap_cli_init); |
| 376 | |
| 377 | /* |
| 378 | * fd.io coding-style-patch-verification: ON |
| 379 | * |
| 380 | * Local Variables: |
| 381 | * eval: (c-set-style "gnu") |
| 382 | * End: |
| 383 | */ |