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 <linux/virtio_net.h> |
| 29 | #include <linux/vhost.h> |
| 30 | #include <vnet/devices/virtio/virtio.h> |
Damjan Marion | c99b4cd | 2017-12-04 15:25:58 +0100 | [diff] [blame] | 31 | #include <vnet/devices/tap/tap.h> |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 32 | |
| 33 | static clib_error_t * |
| 34 | tap_create_command_fn (vlib_main_t * vm, unformat_input_t * input, |
| 35 | vlib_cli_command_t * cmd) |
| 36 | { |
| 37 | unformat_input_t _line_input, *line_input = &_line_input; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 38 | tap_create_if_args_t args = { 0 }; |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 39 | int ip_addr_set = 0; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 40 | |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 41 | args.id = ~0; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 42 | |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 43 | /* Get a line of input. */ |
| 44 | if (unformat_user (input, unformat_line_input, line_input)) |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 45 | { |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 46 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 47 | { |
| 48 | if (unformat (line_input, "id %u", &args.id)) |
| 49 | ; |
| 50 | else |
| 51 | if (unformat (line_input, "host-if-name %s", &args.host_if_name)) |
| 52 | ; |
| 53 | else if (unformat (line_input, "host-ns %s", &args.host_namespace)) |
| 54 | ; |
| 55 | else if (unformat (line_input, "host-mac-addr %U", |
| 56 | unformat_ethernet_address, args.host_mac_addr)) |
| 57 | ; |
| 58 | else if (unformat (line_input, "host-bridge %s", &args.host_bridge)) |
| 59 | ; |
| 60 | else if (unformat (line_input, "host-ip4-addr %U/%d", |
| 61 | unformat_ip4_address, &args.host_ip4_addr, |
| 62 | &args.host_ip4_prefix_len)) |
| 63 | ip_addr_set = 1; |
Damjan Marion | 7866c45 | 2018-01-18 13:35:11 +0100 | [diff] [blame] | 64 | else if (unformat (line_input, "host-ip4-gw %U", |
| 65 | unformat_ip4_address, &args.host_ip4_gw)) |
| 66 | args.host_ip4_gw_set = 1; |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 67 | else if (unformat (line_input, "host-ip6-addr %U/%d", |
| 68 | unformat_ip6_address, &args.host_ip6_addr, |
| 69 | &args.host_ip6_prefix_len)) |
| 70 | ip_addr_set = 1; |
Damjan Marion | 7866c45 | 2018-01-18 13:35:11 +0100 | [diff] [blame] | 71 | else if (unformat (line_input, "host-ip6-gw %U", |
| 72 | unformat_ip6_address, &args.host_ip6_gw)) |
| 73 | args.host_ip6_gw_set = 1; |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 74 | else if (unformat (line_input, "rx-ring-size %d", &args.rx_ring_sz)) |
| 75 | ; |
| 76 | else if (unformat (line_input, "tx-ring-size %d", &args.tx_ring_sz)) |
| 77 | ; |
| 78 | else if (unformat (line_input, "hw-addr %U", |
| 79 | unformat_ethernet_address, args.mac_addr)) |
| 80 | args.mac_addr_set = 1; |
| 81 | else |
Swarup Nayak | 76dc22c | 2017-12-05 09:46:17 +0530 | [diff] [blame] | 82 | { |
| 83 | unformat_free (line_input); |
| 84 | return clib_error_return (0, "unknown input `%U'", |
| 85 | format_unformat_error, input); |
| 86 | } |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 87 | } |
| 88 | unformat_free (line_input); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 89 | } |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 90 | |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 91 | if (ip_addr_set && args.host_bridge) |
| 92 | return clib_error_return (0, "Please specify either host ip address or " |
| 93 | "host bridge"); |
| 94 | |
| 95 | tap_create_if (vm, &args); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 96 | |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 97 | vec_free (args.host_if_name); |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 98 | vec_free (args.host_namespace); |
| 99 | vec_free (args.host_bridge); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 100 | |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 101 | return args.error; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 102 | |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | /* *INDENT-OFF* */ |
| 106 | VLIB_CLI_COMMAND (tap_create_command, static) = { |
| 107 | .path = "create tap", |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 108 | .short_help = "create tap {id <if-id>} [hw-addr <mac-address>] " |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 109 | "[rx-ring-size <size>] [tx-ring-size <size>] [host-ns <netns>] " |
| 110 | "[host-bridge <bridge-name>] [host-ip4-addr <ip4addr/mask>] " |
Damjan Marion | 7866c45 | 2018-01-18 13:35:11 +0100 | [diff] [blame] | 111 | "[host-ip6-addr <ip6-addr>] [host-ip4-gw <ip4-addr>] " |
| 112 | "[host-ip6-gw <ip6-addr>] [host-if-name <name>]", |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 113 | .function = tap_create_command_fn, |
| 114 | }; |
| 115 | /* *INDENT-ON* */ |
| 116 | |
| 117 | static clib_error_t * |
| 118 | tap_delete_command_fn (vlib_main_t * vm, unformat_input_t * input, |
| 119 | vlib_cli_command_t * cmd) |
| 120 | { |
| 121 | unformat_input_t _line_input, *line_input = &_line_input; |
| 122 | u32 sw_if_index = ~0; |
| 123 | vnet_main_t *vnm = vnet_get_main (); |
| 124 | int rv; |
| 125 | |
| 126 | /* Get a line of input. */ |
| 127 | if (!unformat_user (input, unformat_line_input, line_input)) |
| 128 | return clib_error_return (0, "Missing <interface>"); |
| 129 | |
| 130 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 131 | { |
| 132 | if (unformat (line_input, "sw_if_index %d", &sw_if_index)) |
| 133 | ; |
| 134 | else if (unformat (line_input, "%U", unformat_vnet_sw_interface, |
| 135 | vnm, &sw_if_index)) |
| 136 | ; |
| 137 | else |
| 138 | return clib_error_return (0, "unknown input `%U'", |
| 139 | format_unformat_error, input); |
| 140 | } |
| 141 | unformat_free (line_input); |
| 142 | |
| 143 | if (sw_if_index == ~0) |
| 144 | return clib_error_return (0, |
| 145 | "please specify interface name or sw_if_index"); |
| 146 | |
| 147 | rv = tap_delete_if (vm, sw_if_index); |
| 148 | if (rv == VNET_API_ERROR_INVALID_SW_IF_INDEX) |
| 149 | return clib_error_return (0, "not a tap interface"); |
| 150 | else if (rv != 0) |
| 151 | return clib_error_return (0, "error on deleting tap interface"); |
| 152 | |
| 153 | return 0; |
| 154 | } |
| 155 | |
| 156 | /* *INDENT-OFF* */ |
| 157 | VLIB_CLI_COMMAND (tap_delete__command, static) = |
| 158 | { |
| 159 | .path = "delete tap", |
| 160 | .short_help = "delete tap {<interface> | sw_if_index <sw_idx>}", |
| 161 | .function = tap_delete_command_fn, |
| 162 | }; |
| 163 | /* *INDENT-ON* */ |
| 164 | |
| 165 | static clib_error_t * |
| 166 | tap_show_command_fn (vlib_main_t * vm, unformat_input_t * input, |
| 167 | vlib_cli_command_t * cmd) |
| 168 | { |
| 169 | virtio_main_t *mm = &virtio_main; |
| 170 | virtio_if_t *vif; |
| 171 | vnet_main_t *vnm = vnet_get_main (); |
| 172 | int show_descr = 0; |
| 173 | clib_error_t *error = 0; |
| 174 | u32 hw_if_index, *hw_if_indices = 0; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 175 | |
| 176 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 177 | { |
| 178 | if (unformat |
| 179 | (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index)) |
| 180 | vec_add1 (hw_if_indices, hw_if_index); |
| 181 | else if (unformat (input, "descriptors")) |
| 182 | show_descr = 1; |
| 183 | else |
| 184 | { |
| 185 | error = clib_error_return (0, "unknown input `%U'", |
| 186 | format_unformat_error, input); |
| 187 | goto done; |
| 188 | } |
| 189 | } |
| 190 | |
| 191 | if (vec_len (hw_if_indices) == 0) |
| 192 | { |
| 193 | /* *INDENT-OFF* */ |
| 194 | pool_foreach (vif, mm->interfaces, |
| 195 | vec_add1 (hw_if_indices, vif->hw_if_index); |
| 196 | ); |
| 197 | /* *INDENT-ON* */ |
| 198 | } |
| 199 | |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame^] | 200 | virtio_show (vm, hw_if_indices, show_descr, VIRTIO_IF_TYPE_TAP); |
| 201 | |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 202 | done: |
| 203 | vec_free (hw_if_indices); |
| 204 | return error; |
| 205 | } |
| 206 | |
| 207 | /* *INDENT-OFF* */ |
| 208 | VLIB_CLI_COMMAND (tap_show_command, static) = { |
| 209 | .path = "show tap", |
| 210 | .short_help = "show tap {<interface>] [descriptors]", |
| 211 | .function = tap_show_command_fn, |
| 212 | }; |
| 213 | /* *INDENT-ON* */ |
| 214 | |
| 215 | clib_error_t * |
| 216 | tap_cli_init (vlib_main_t * vm) |
| 217 | { |
| 218 | return 0; |
| 219 | } |
| 220 | |
| 221 | VLIB_INIT_FUNCTION (tap_cli_init); |
| 222 | |
| 223 | /* |
| 224 | * fd.io coding-style-patch-verification: ON |
| 225 | * |
| 226 | * Local Variables: |
| 227 | * eval: (c-set-style "gnu") |
| 228 | * End: |
| 229 | */ |