blob: 5c676d32d60e3ce808b102785be0e589fc2c9800 [file] [log] [blame]
Damjan Marion8389fb92017-10-13 18:29:53 +02001/*
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 Marion91c6ef72017-12-01 13:34:24 +010025#include <vnet/ip/ip4_packet.h>
26#include <vnet/ip/ip6_packet.h>
27#include <vnet/ip/format.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020028#include <vnet/devices/virtio/virtio.h>
Damjan Marionc99b4cd2017-12-04 15:25:58 +010029#include <vnet/devices/tap/tap.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020030
31static clib_error_t *
32tap_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 Marion8389fb92017-10-13 18:29:53 +020036 tap_create_if_args_t args = { 0 };
Damjan Marion91c6ef72017-12-01 13:34:24 +010037 int ip_addr_set = 0;
Damjan Marion0ba86cb2019-11-08 15:15:11 +010038 u32 tmp;
Damjan Marion8389fb92017-10-13 18:29:53 +020039
Damjan Marion2df39092017-12-04 20:03:37 +010040 args.id = ~0;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020041 args.tap_flags = 0;
Mohsin Kazmic5d53272019-07-01 10:26:43 +020042 args.rv = -1;
Damjan Marion7c6102b2019-11-08 17:59:56 +010043 args.num_rx_queues = 1;
Nathan Skrzypczak40edaf62021-12-15 18:45:59 +010044 args.num_tx_queues = 1;
Damjan Marion8389fb92017-10-13 18:29:53 +020045
Damjan Marion2df39092017-12-04 20:03:37 +010046 /* Get a line of input. */
47 if (unformat_user (input, unformat_line_input, line_input))
Damjan Marion8389fb92017-10-13 18:29:53 +020048 {
Damjan Marion2df39092017-12-04 20:03:37 +010049 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
50 {
51 if (unformat (line_input, "id %u", &args.id))
52 ;
53 else
54 if (unformat (line_input, "host-if-name %s", &args.host_if_name))
55 ;
56 else if (unformat (line_input, "host-ns %s", &args.host_namespace))
57 ;
58 else if (unformat (line_input, "host-mac-addr %U",
Mohsin Kazmi30397532020-01-30 13:36:02 +010059 unformat_ethernet_address,
60 args.host_mac_addr.bytes))
Damjan Marion2df39092017-12-04 20:03:37 +010061 ;
62 else if (unformat (line_input, "host-bridge %s", &args.host_bridge))
63 ;
64 else if (unformat (line_input, "host-ip4-addr %U/%d",
65 unformat_ip4_address, &args.host_ip4_addr,
66 &args.host_ip4_prefix_len))
67 ip_addr_set = 1;
Damjan Marion7866c452018-01-18 13:35:11 +010068 else if (unformat (line_input, "host-ip4-gw %U",
69 unformat_ip4_address, &args.host_ip4_gw))
70 args.host_ip4_gw_set = 1;
Damjan Marion2df39092017-12-04 20:03:37 +010071 else if (unformat (line_input, "host-ip6-addr %U/%d",
72 unformat_ip6_address, &args.host_ip6_addr,
73 &args.host_ip6_prefix_len))
74 ip_addr_set = 1;
Damjan Marion7866c452018-01-18 13:35:11 +010075 else if (unformat (line_input, "host-ip6-gw %U",
76 unformat_ip6_address, &args.host_ip6_gw))
77 args.host_ip6_gw_set = 1;
Damjan Marion7c6102b2019-11-08 17:59:56 +010078 else if (unformat (line_input, "num-rx-queues %d", &tmp))
79 args.num_rx_queues = tmp;
Nathan Skrzypczak40edaf62021-12-15 18:45:59 +010080 else if (unformat (line_input, "num-tx-queues %d", &tmp))
81 args.num_tx_queues = tmp;
Damjan Marion0ba86cb2019-11-08 15:15:11 +010082 else if (unformat (line_input, "rx-ring-size %d", &tmp))
83 args.rx_ring_sz = tmp;
84 else if (unformat (line_input, "tx-ring-size %d", &tmp))
85 args.tx_ring_sz = tmp;
Mohsin Kazmi97d54ed2019-06-10 11:20:15 +020086 else
87 if (unformat
88 (line_input, "host-mtu-size %d", &args.host_mtu_size))
89 args.host_mtu_set = 1;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020090 else if (unformat (line_input, "no-gso"))
91 args.tap_flags &= ~TAP_FLAG_GSO;
92 else if (unformat (line_input, "gso"))
93 args.tap_flags |= TAP_FLAG_GSO;
Mohsin Kazmid88fc0f2020-04-30 19:05:56 +020094 else if (unformat (line_input, "gro-coalesce"))
95 args.tap_flags |= TAP_FLAG_GRO_COALESCE;
Mohsin Kazmiba0061f2019-12-18 17:08:54 +010096 else if (unformat (line_input, "csum-offload"))
97 args.tap_flags |= TAP_FLAG_CSUM_OFFLOAD;
Mohsin Kazmib49bc1a2020-02-14 17:51:04 +000098 else if (unformat (line_input, "persist"))
99 args.tap_flags |= TAP_FLAG_PERSIST;
100 else if (unformat (line_input, "attach"))
101 args.tap_flags |= TAP_FLAG_ATTACH;
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200102 else if (unformat (line_input, "tun"))
103 args.tap_flags |= TAP_FLAG_TUN;
Mohsin Kazmi50bd1652020-08-26 11:07:48 +0200104 else if (unformat (line_input, "packed"))
105 args.tap_flags |= TAP_FLAG_PACKED;
106 else if (unformat (line_input, "in-order"))
107 args.tap_flags |= TAP_FLAG_IN_ORDER;
Damjan Marion2df39092017-12-04 20:03:37 +0100108 else if (unformat (line_input, "hw-addr %U",
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200109 unformat_ethernet_address, args.mac_addr.bytes))
Damjan Marion2df39092017-12-04 20:03:37 +0100110 args.mac_addr_set = 1;
111 else
Swarup Nayak76dc22c2017-12-05 09:46:17 +0530112 {
113 unformat_free (line_input);
114 return clib_error_return (0, "unknown input `%U'",
115 format_unformat_error, input);
116 }
Damjan Marion2df39092017-12-04 20:03:37 +0100117 }
118 unformat_free (line_input);
Damjan Marion8389fb92017-10-13 18:29:53 +0200119 }
Damjan Marion8389fb92017-10-13 18:29:53 +0200120
Damjan Marion91c6ef72017-12-01 13:34:24 +0100121 if (ip_addr_set && args.host_bridge)
122 return clib_error_return (0, "Please specify either host ip address or "
123 "host bridge");
124
125 tap_create_if (vm, &args);
Damjan Marion8389fb92017-10-13 18:29:53 +0200126
Mohsin Kazmic5d53272019-07-01 10:26:43 +0200127 if (!args.rv)
128 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
129 vnet_get_main (), args.sw_if_index);
130
Damjan Marion2df39092017-12-04 20:03:37 +0100131 vec_free (args.host_if_name);
Damjan Marion91c6ef72017-12-01 13:34:24 +0100132 vec_free (args.host_namespace);
133 vec_free (args.host_bridge);
Damjan Marion8389fb92017-10-13 18:29:53 +0200134
Damjan Marion91c6ef72017-12-01 13:34:24 +0100135 return args.error;
Damjan Marion8389fb92017-10-13 18:29:53 +0200136
Damjan Marion8389fb92017-10-13 18:29:53 +0200137}
138
Damjan Marion8389fb92017-10-13 18:29:53 +0200139VLIB_CLI_COMMAND (tap_create_command, static) = {
140 .path = "create tap",
Nathan Skrzypczak40edaf62021-12-15 18:45:59 +0100141 .short_help =
142 "create tap {id <if-id>} [hw-addr <mac-address>] "
143 "[num-rx-queues <n>] [num-tx-queues <n>] [rx-ring-size <size>] "
144 "[tx-ring-size <size>] [host-ns <netns>] [host-bridge <bridge-name>] "
Mohsin Kazmi28adbb32020-04-29 13:10:08 +0200145 "[host-ip4-addr <ip4addr/mask>] [host-ip6-addr <ip6-addr>] "
146 "[host-ip4-gw <ip4-addr>] [host-ip6-gw <ip6-addr>] "
147 "[host-mac-addr <host-mac-address>] [host-if-name <name>] "
Mohsin Kazmi1017a1d2020-09-25 15:36:19 +0200148 "[host-mtu-size <size>] [no-gso|gso [gro-coalesce]|csum-offload] "
Mohsin Kazmi50bd1652020-08-26 11:07:48 +0200149 "[persist] [attach] [tun] [packed] [in-order]",
Damjan Marion8389fb92017-10-13 18:29:53 +0200150 .function = tap_create_command_fn,
151};
Damjan Marion8389fb92017-10-13 18:29:53 +0200152
153static clib_error_t *
154tap_delete_command_fn (vlib_main_t * vm, unformat_input_t * input,
155 vlib_cli_command_t * cmd)
156{
157 unformat_input_t _line_input, *line_input = &_line_input;
158 u32 sw_if_index = ~0;
159 vnet_main_t *vnm = vnet_get_main ();
160 int rv;
161
162 /* Get a line of input. */
163 if (!unformat_user (input, unformat_line_input, line_input))
164 return clib_error_return (0, "Missing <interface>");
165
166 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
167 {
168 if (unformat (line_input, "sw_if_index %d", &sw_if_index))
169 ;
170 else if (unformat (line_input, "%U", unformat_vnet_sw_interface,
171 vnm, &sw_if_index))
172 ;
173 else
174 return clib_error_return (0, "unknown input `%U'",
175 format_unformat_error, input);
176 }
177 unformat_free (line_input);
178
179 if (sw_if_index == ~0)
180 return clib_error_return (0,
181 "please specify interface name or sw_if_index");
182
183 rv = tap_delete_if (vm, sw_if_index);
184 if (rv == VNET_API_ERROR_INVALID_SW_IF_INDEX)
185 return clib_error_return (0, "not a tap interface");
186 else if (rv != 0)
187 return clib_error_return (0, "error on deleting tap interface");
188
189 return 0;
190}
191
Damjan Marion8389fb92017-10-13 18:29:53 +0200192VLIB_CLI_COMMAND (tap_delete__command, static) =
193{
194 .path = "delete tap",
195 .short_help = "delete tap {<interface> | sw_if_index <sw_idx>}",
196 .function = tap_delete_command_fn,
197};
Damjan Marion8389fb92017-10-13 18:29:53 +0200198
199static clib_error_t *
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100200tap_offload_command_fn (vlib_main_t * vm, unformat_input_t * input,
201 vlib_cli_command_t * cmd)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200202{
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 Kazmi9e2a7852020-08-13 18:57:26 +0200206 int gso_enable = 0, gso_disable = 0, is_gro_coalesce = 0;
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100207 int csum_offload_enable = 0, csum_offload_disable = 0;
208 int rv = 0;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200209
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 Kazmiba0061f2019-12-18 17:08:54 +0100221 else if (unformat (line_input, "gso-enable"))
Mohsin Kazmi9e2a7852020-08-13 18:57:26 +0200222 {
223 gso_enable = 1;
224 if (unformat (line_input, "gro-coalesce"))
225 is_gro_coalesce = 1;
226 }
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100227 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 Yourtchenko6a7cff72018-10-12 16:09:22 +0200233 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 Kazmiba0061f2019-12-18 17:08:54 +0100243 if (gso_enable)
Mohsin Kazmi9e2a7852020-08-13 18:57:26 +0200244 rv = tap_gso_enable_disable (vm, sw_if_index, 1, is_gro_coalesce);
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100245 else if (csum_offload_enable)
246 rv = tap_csum_offload_enable_disable (vm, sw_if_index, 1);
247 else if (gso_disable)
Mohsin Kazmi9e2a7852020-08-13 18:57:26 +0200248 rv = tap_gso_enable_disable (vm, sw_if_index, 0, 0);
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100249 else if (csum_offload_disable)
250 rv = tap_csum_offload_enable_disable (vm, sw_if_index, 0);
251
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200252 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
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100260VLIB_CLI_COMMAND (tap_offload_command, static) =
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200261{
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100262 .path = "set tap offload",
263 .short_help = "set tap offload {<interface> | sw_if_index <sw_idx>}"
Mohsin Kazmi9e2a7852020-08-13 18:57:26 +0200264 " <gso-enable [gro-coalesce] | gso-disable | csum-offload-enable |"
265 "csum-offload-disable>",
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100266 .function = tap_offload_command_fn,
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200267};
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200268
269static clib_error_t *
Damjan Marion8389fb92017-10-13 18:29:53 +0200270tap_show_command_fn (vlib_main_t * vm, unformat_input_t * input,
271 vlib_cli_command_t * cmd)
272{
273 virtio_main_t *mm = &virtio_main;
274 virtio_if_t *vif;
275 vnet_main_t *vnm = vnet_get_main ();
276 int show_descr = 0;
277 clib_error_t *error = 0;
278 u32 hw_if_index, *hw_if_indices = 0;
Damjan Marion8389fb92017-10-13 18:29:53 +0200279
280 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
281 {
282 if (unformat
283 (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
284 vec_add1 (hw_if_indices, hw_if_index);
285 else if (unformat (input, "descriptors"))
286 show_descr = 1;
287 else
288 {
289 error = clib_error_return (0, "unknown input `%U'",
290 format_unformat_error, input);
291 goto done;
292 }
293 }
294
295 if (vec_len (hw_if_indices) == 0)
296 {
Damjan Marionb2c31b62020-12-13 21:47:40 +0100297 pool_foreach (vif, mm->interfaces)
Damjan Marion8389fb92017-10-13 18:29:53 +0200298 vec_add1 (hw_if_indices, vif->hw_if_index);
Damjan Marion8389fb92017-10-13 18:29:53 +0200299 }
300
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200301 virtio_show (vm, hw_if_indices, show_descr, VIRTIO_IF_TYPE_TAP);
302
Damjan Marion8389fb92017-10-13 18:29:53 +0200303done:
304 vec_free (hw_if_indices);
305 return error;
306}
307
Damjan Marion8389fb92017-10-13 18:29:53 +0200308VLIB_CLI_COMMAND (tap_show_command, static) = {
309 .path = "show tap",
310 .short_help = "show tap {<interface>] [descriptors]",
311 .function = tap_show_command_fn,
312};
Damjan Marion8389fb92017-10-13 18:29:53 +0200313
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200314static clib_error_t *
315tun_show_command_fn (vlib_main_t * vm, unformat_input_t * input,
316 vlib_cli_command_t * cmd)
317{
318 virtio_main_t *mm = &virtio_main;
319 virtio_if_t *vif;
320 vnet_main_t *vnm = vnet_get_main ();
321 int show_descr = 0;
322 clib_error_t *error = 0;
323 u32 hw_if_index, *hw_if_indices = 0;
324
325 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
326 {
327 if (unformat
328 (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
329 vec_add1 (hw_if_indices, hw_if_index);
330 else if (unformat (input, "descriptors"))
331 show_descr = 1;
332 else
333 {
334 error = clib_error_return (0, "unknown input `%U'",
335 format_unformat_error, input);
336 goto done;
337 }
338 }
339
340 if (vec_len (hw_if_indices) == 0)
341 {
Damjan Marionb2c31b62020-12-13 21:47:40 +0100342 pool_foreach (vif, mm->interfaces)
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200343 vec_add1 (hw_if_indices, vif->hw_if_index);
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200344 }
345
346 virtio_show (vm, hw_if_indices, show_descr, VIRTIO_IF_TYPE_TUN);
347
348done:
349 vec_free (hw_if_indices);
350 return error;
351}
352
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200353VLIB_CLI_COMMAND (tun_show_command, static) = {
354 .path = "show tun",
355 .short_help = "show tun {<interface>] [descriptors]",
356 .function = tun_show_command_fn,
357};
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200358
Damjan Marion8389fb92017-10-13 18:29:53 +0200359clib_error_t *
360tap_cli_init (vlib_main_t * vm)
361{
362 return 0;
363}
364
365VLIB_INIT_FUNCTION (tap_cli_init);
366
367/*
368 * fd.io coding-style-patch-verification: ON
369 *
370 * Local Variables:
371 * eval: (c-set-style "gnu")
372 * End:
373 */