Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 1 | /* |
| 2 | *------------------------------------------------------------------ |
| 3 | * Copyright (c) 2018 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 | */ |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 17 | #include <vlib/vlib.h> |
| 18 | #include <vlib/unix/unix.h> |
| 19 | #include <vlib/pci/pci.h> |
| 20 | #include <vnet/ethernet/ethernet.h> |
| 21 | #include <vnet/ip/ip4_packet.h> |
| 22 | #include <vnet/ip/ip6_packet.h> |
| 23 | #include <vnet/devices/virtio/virtio.h> |
| 24 | #include <vnet/devices/virtio/pci.h> |
| 25 | |
| 26 | static clib_error_t * |
| 27 | virtio_pci_create_command_fn (vlib_main_t * vm, unformat_input_t * input, |
| 28 | vlib_cli_command_t * cmd) |
| 29 | { |
| 30 | unformat_input_t _line_input, *line_input = &_line_input; |
| 31 | virtio_pci_create_if_args_t args; |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 32 | u64 feature_mask = (u64) ~ (0ULL); |
| 33 | |
| 34 | /* Get a line of input. */ |
| 35 | if (!unformat_user (input, unformat_line_input, line_input)) |
| 36 | return 0; |
| 37 | |
| 38 | memset (&args, 0, sizeof (args)); |
| 39 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 40 | { |
| 41 | if (unformat (line_input, "%U", unformat_vlib_pci_addr, &args.addr)) |
| 42 | ; |
| 43 | else if (unformat (line_input, "feature-mask 0x%llx", &feature_mask)) |
| 44 | args.features = feature_mask; |
Mohsin Kazmi | bbd6b74 | 2019-05-02 13:54:59 +0200 | [diff] [blame] | 45 | else if (unformat (line_input, "gso-enabled")) |
| 46 | args.gso_enabled = 1; |
Mohsin Kazmi | 6d4af89 | 2020-01-03 15:11:53 +0000 | [diff] [blame] | 47 | else if (unformat (line_input, "csum-enabled")) |
| 48 | args.checksum_offload_enabled = 1; |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 49 | else |
| 50 | return clib_error_return (0, "unknown input `%U'", |
| 51 | format_unformat_error, input); |
| 52 | } |
| 53 | unformat_free (line_input); |
| 54 | |
| 55 | virtio_pci_create_if (vm, &args); |
| 56 | |
| 57 | return args.error; |
| 58 | } |
| 59 | |
| 60 | /* *INDENT-OFF* */ |
| 61 | VLIB_CLI_COMMAND (virtio_pci_create_command, static) = { |
| 62 | .path = "create interface virtio", |
Mohsin Kazmi | ddd2183 | 2019-01-22 13:05:00 +0000 | [diff] [blame] | 63 | .short_help = "create interface virtio <pci-address> " |
Mohsin Kazmi | 6d4af89 | 2020-01-03 15:11:53 +0000 | [diff] [blame] | 64 | "[feature-mask <hex-mask>] [gso-enabled] [csum-enabled]", |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 65 | .function = virtio_pci_create_command_fn, |
| 66 | }; |
| 67 | /* *INDENT-ON* */ |
| 68 | |
| 69 | static clib_error_t * |
| 70 | virtio_pci_delete_command_fn (vlib_main_t * vm, unformat_input_t * input, |
| 71 | vlib_cli_command_t * cmd) |
| 72 | { |
| 73 | unformat_input_t _line_input, *line_input = &_line_input; |
| 74 | u32 sw_if_index = ~0; |
| 75 | vnet_hw_interface_t *hw; |
Mohsin Kazmi | 33cc5cf | 2019-01-21 15:19:39 +0000 | [diff] [blame] | 76 | virtio_main_t *vim = &virtio_main; |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 77 | virtio_if_t *vif; |
| 78 | vnet_main_t *vnm = vnet_get_main (); |
| 79 | |
| 80 | /* Get a line of input. */ |
| 81 | if (!unformat_user (input, unformat_line_input, line_input)) |
| 82 | return 0; |
| 83 | |
| 84 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 85 | { |
| 86 | if (unformat (line_input, "sw_if_index %d", &sw_if_index)) |
| 87 | ; |
| 88 | else if (unformat (line_input, "%U", unformat_vnet_sw_interface, |
| 89 | vnm, &sw_if_index)) |
| 90 | ; |
| 91 | else |
| 92 | return clib_error_return (0, "unknown input `%U'", |
| 93 | format_unformat_error, input); |
| 94 | } |
| 95 | unformat_free (line_input); |
| 96 | |
| 97 | if (sw_if_index == ~0) |
| 98 | return clib_error_return (0, |
| 99 | "please specify interface name or sw_if_index"); |
| 100 | |
Dave Barach | 3940de3 | 2019-07-23 16:28:36 -0400 | [diff] [blame] | 101 | hw = vnet_get_sup_hw_interface_api_visible_or_null (vnm, sw_if_index); |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 102 | if (hw == NULL || virtio_device_class.index != hw->dev_class_index) |
| 103 | return clib_error_return (0, "not a virtio interface"); |
| 104 | |
Mohsin Kazmi | 33cc5cf | 2019-01-21 15:19:39 +0000 | [diff] [blame] | 105 | vif = pool_elt_at_index (vim->interfaces, hw->dev_instance); |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 106 | |
| 107 | if (virtio_pci_delete_if (vm, vif) < 0) |
| 108 | return clib_error_return (0, "not a virtio pci interface"); |
| 109 | |
| 110 | return 0; |
| 111 | } |
| 112 | |
| 113 | /* *INDENT-OFF* */ |
| 114 | VLIB_CLI_COMMAND (virtio_pci_delete_command, static) = { |
| 115 | .path = "delete interface virtio", |
Mohsin Kazmi | ddd2183 | 2019-01-22 13:05:00 +0000 | [diff] [blame] | 116 | .short_help = "delete interface virtio " |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 117 | "{<interface> | sw_if_index <sw_idx>}", |
| 118 | .function = virtio_pci_delete_command_fn, |
| 119 | }; |
| 120 | /* *INDENT-ON* */ |
| 121 | |
| 122 | static clib_error_t * |
Mohsin Kazmi | 6d4af89 | 2020-01-03 15:11:53 +0000 | [diff] [blame] | 123 | virtio_pci_enable_command_fn (vlib_main_t * vm, unformat_input_t * input, |
| 124 | vlib_cli_command_t * cmd) |
| 125 | { |
| 126 | unformat_input_t _line_input, *line_input = &_line_input; |
| 127 | u32 sw_if_index = ~0; |
| 128 | vnet_hw_interface_t *hw; |
| 129 | virtio_main_t *vim = &virtio_main; |
| 130 | virtio_if_t *vif; |
| 131 | vnet_main_t *vnm = vnet_get_main (); |
| 132 | int gso_enabled = 0, checksum_offload_enabled = 0; |
| 133 | int offloads_disabled = 0; |
| 134 | |
| 135 | /* Get a line of input. */ |
| 136 | if (!unformat_user (input, unformat_line_input, line_input)) |
| 137 | return 0; |
| 138 | |
| 139 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 140 | { |
| 141 | if (unformat (line_input, "sw_if_index %d", &sw_if_index)) |
| 142 | ; |
| 143 | else if (unformat (line_input, "%U", unformat_vnet_sw_interface, |
| 144 | vnm, &sw_if_index)) |
| 145 | ; |
| 146 | else if (unformat (line_input, "gso-enabled")) |
| 147 | gso_enabled = 1; |
| 148 | else if (unformat (line_input, "csum-offload-enabled")) |
| 149 | checksum_offload_enabled = 1; |
| 150 | else if (unformat (line_input, "offloads-disabled")) |
| 151 | offloads_disabled = 1; |
| 152 | else |
| 153 | return clib_error_return (0, "unknown input `%U'", |
| 154 | format_unformat_error, input); |
| 155 | } |
| 156 | unformat_free (line_input); |
| 157 | |
| 158 | if (sw_if_index == ~0) |
| 159 | return clib_error_return (0, |
| 160 | "please specify interface name or sw_if_index"); |
| 161 | |
| 162 | hw = vnet_get_sup_hw_interface_api_visible_or_null (vnm, sw_if_index); |
| 163 | if (hw == NULL || virtio_device_class.index != hw->dev_class_index) |
| 164 | return clib_error_return (0, "not a virtio interface"); |
| 165 | |
| 166 | vif = pool_elt_at_index (vim->interfaces, hw->dev_instance); |
| 167 | |
| 168 | if (virtio_pci_enable_disable_offloads |
| 169 | (vm, vif, gso_enabled, checksum_offload_enabled, offloads_disabled) < 0) |
| 170 | return clib_error_return (0, "not able to enable/disable offloads"); |
| 171 | |
| 172 | return 0; |
| 173 | } |
| 174 | |
| 175 | /* *INDENT-OFF* */ |
| 176 | VLIB_CLI_COMMAND (virtio_pci_enable_command, static) = { |
| 177 | .path = "set virtio pci", |
| 178 | .short_help = "set virtio pci {<interface> | sw_if_index <sw_idx>}" |
| 179 | " [gso-enabled | csum-offload-enabled | offloads-disabled]", |
| 180 | .function = virtio_pci_enable_command_fn, |
| 181 | }; |
| 182 | /* *INDENT-ON* */ |
| 183 | |
| 184 | static clib_error_t * |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 185 | show_virtio_pci_fn (vlib_main_t * vm, unformat_input_t * input, |
| 186 | vlib_cli_command_t * cmd) |
| 187 | { |
Mohsin Kazmi | 33cc5cf | 2019-01-21 15:19:39 +0000 | [diff] [blame] | 188 | virtio_main_t *vim = &virtio_main; |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 189 | vnet_main_t *vnm = &vnet_main; |
| 190 | virtio_if_t *vif; |
| 191 | clib_error_t *error = 0; |
| 192 | u32 hw_if_index, *hw_if_indices = 0; |
| 193 | vnet_hw_interface_t *hi; |
| 194 | u8 show_descr = 0, show_device_config = 0; |
| 195 | |
| 196 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 197 | { |
| 198 | if (unformat |
| 199 | (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index)) |
| 200 | { |
| 201 | hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 202 | if (virtio_device_class.index != hi->dev_class_index) |
| 203 | { |
| 204 | error = clib_error_return (0, "unknown input `%U'", |
| 205 | format_unformat_error, input); |
| 206 | goto done; |
| 207 | } |
| 208 | vec_add1 (hw_if_indices, hw_if_index); |
| 209 | } |
| 210 | else if (unformat (input, "descriptors") || unformat (input, "desc")) |
| 211 | show_descr = 1; |
| 212 | else if (unformat (input, "debug-device")) |
| 213 | show_device_config = 1; |
| 214 | else |
| 215 | { |
| 216 | error = clib_error_return (0, "unknown input `%U'", |
| 217 | format_unformat_error, input); |
| 218 | goto done; |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | if (vec_len (hw_if_indices) == 0) |
| 223 | { |
Mohsin Kazmi | 33cc5cf | 2019-01-21 15:19:39 +0000 | [diff] [blame] | 224 | pool_foreach (vif, vim->interfaces, |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 225 | vec_add1 (hw_if_indices, vif->hw_if_index); |
| 226 | ); |
| 227 | } |
| 228 | else if (show_device_config) |
| 229 | { |
Mohsin Kazmi | 33cc5cf | 2019-01-21 15:19:39 +0000 | [diff] [blame] | 230 | vif = pool_elt_at_index (vim->interfaces, hi->dev_instance); |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 231 | if (vif->type == VIRTIO_IF_TYPE_PCI) |
| 232 | debug_device_config_space (vm, vif); |
| 233 | } |
| 234 | |
| 235 | virtio_show (vm, hw_if_indices, show_descr, VIRTIO_IF_TYPE_PCI); |
| 236 | |
| 237 | done: |
| 238 | vec_free (hw_if_indices); |
| 239 | return error; |
| 240 | } |
| 241 | |
| 242 | /* *INDENT-OFF* */ |
| 243 | VLIB_CLI_COMMAND (show_virtio_pci_command, static) = { |
| 244 | .path = "show virtio pci", |
| 245 | .short_help = "show virtio pci [<interface>] [descriptors | desc] [debug-device]", |
| 246 | .function = show_virtio_pci_fn, |
| 247 | }; |
| 248 | /* *INDENT-ON* */ |
| 249 | |
| 250 | clib_error_t * |
| 251 | virtio_pci_cli_init (vlib_main_t * vm) |
| 252 | { |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 253 | return 0; |
| 254 | } |
| 255 | |
| 256 | VLIB_INIT_FUNCTION (virtio_pci_cli_init); |
| 257 | |
| 258 | /* |
| 259 | * fd.io coding-style-patch-verification: ON |
| 260 | * |
| 261 | * Local Variables: |
| 262 | * eval: (c-set-style "gnu") |
| 263 | * End: |
| 264 | */ |