blob: 10f4bb0ee2ed23ea8d06370df4f0a66462e1b40f [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;
Damjan Marion8389fb92017-10-13 18:29:53 +020044
Damjan Marion2df39092017-12-04 20:03:37 +010045 /* Get a line of input. */
46 if (unformat_user (input, unformat_line_input, line_input))
Damjan Marion8389fb92017-10-13 18:29:53 +020047 {
Damjan Marion2df39092017-12-04 20:03:37 +010048 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 Kazmi30397532020-01-30 13:36:02 +010058 unformat_ethernet_address,
59 args.host_mac_addr.bytes))
Damjan Marion2df39092017-12-04 20:03:37 +010060 ;
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 Marion7866c452018-01-18 13:35:11 +010067 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 Marion2df39092017-12-04 20:03:37 +010070 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 Marion7866c452018-01-18 13:35:11 +010074 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 Marion7c6102b2019-11-08 17:59:56 +010077 else if (unformat (line_input, "num-rx-queues %d", &tmp))
78 args.num_rx_queues = tmp;
Damjan Marion0ba86cb2019-11-08 15:15:11 +010079 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 Kazmi97d54ed2019-06-10 11:20:15 +020083 else
84 if (unformat
85 (line_input, "host-mtu-size %d", &args.host_mtu_size))
86 args.host_mtu_set = 1;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020087 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 Kazmid88fc0f2020-04-30 19:05:56 +020091 else if (unformat (line_input, "gro-coalesce"))
92 args.tap_flags |= TAP_FLAG_GRO_COALESCE;
Mohsin Kazmiba0061f2019-12-18 17:08:54 +010093 else if (unformat (line_input, "csum-offload"))
94 args.tap_flags |= TAP_FLAG_CSUM_OFFLOAD;
Mohsin Kazmib49bc1a2020-02-14 17:51:04 +000095 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 Kazmi206acf82020-04-06 14:19:54 +020099 else if (unformat (line_input, "tun"))
100 args.tap_flags |= TAP_FLAG_TUN;
Mohsin Kazmi50bd1652020-08-26 11:07:48 +0200101 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 Marion2df39092017-12-04 20:03:37 +0100105 else if (unformat (line_input, "hw-addr %U",
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200106 unformat_ethernet_address, args.mac_addr.bytes))
Damjan Marion2df39092017-12-04 20:03:37 +0100107 args.mac_addr_set = 1;
108 else
Swarup Nayak76dc22c2017-12-05 09:46:17 +0530109 {
110 unformat_free (line_input);
111 return clib_error_return (0, "unknown input `%U'",
112 format_unformat_error, input);
113 }
Damjan Marion2df39092017-12-04 20:03:37 +0100114 }
115 unformat_free (line_input);
Damjan Marion8389fb92017-10-13 18:29:53 +0200116 }
Damjan Marion8389fb92017-10-13 18:29:53 +0200117
Damjan Marion91c6ef72017-12-01 13:34:24 +0100118 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 Marion8389fb92017-10-13 18:29:53 +0200123
Mohsin Kazmic5d53272019-07-01 10:26:43 +0200124 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 Marion2df39092017-12-04 20:03:37 +0100128 vec_free (args.host_if_name);
Damjan Marion91c6ef72017-12-01 13:34:24 +0100129 vec_free (args.host_namespace);
130 vec_free (args.host_bridge);
Damjan Marion8389fb92017-10-13 18:29:53 +0200131
Damjan Marion91c6ef72017-12-01 13:34:24 +0100132 return args.error;
Damjan Marion8389fb92017-10-13 18:29:53 +0200133
Damjan Marion8389fb92017-10-13 18:29:53 +0200134}
135
136/* *INDENT-OFF* */
137VLIB_CLI_COMMAND (tap_create_command, static) = {
138 .path = "create tap",
Damjan Marion2df39092017-12-04 20:03:37 +0100139 .short_help = "create tap {id <if-id>} [hw-addr <mac-address>] "
Mohsin Kazmi28adbb32020-04-29 13:10:08 +0200140 "[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 Kazmi1017a1d2020-09-25 15:36:19 +0200145 "[host-mtu-size <size>] [no-gso|gso [gro-coalesce]|csum-offload] "
Mohsin Kazmi50bd1652020-08-26 11:07:48 +0200146 "[persist] [attach] [tun] [packed] [in-order]",
Damjan Marion8389fb92017-10-13 18:29:53 +0200147 .function = tap_create_command_fn,
148};
149/* *INDENT-ON* */
150
151static clib_error_t *
152tap_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* */
191VLIB_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
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
260/* *INDENT-OFF* */
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100261VLIB_CLI_COMMAND (tap_offload_command, static) =
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200262{
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100263 .path = "set tap offload",
264 .short_help = "set tap offload {<interface> | sw_if_index <sw_idx>}"
Mohsin Kazmi9e2a7852020-08-13 18:57:26 +0200265 " <gso-enable [gro-coalesce] | gso-disable | csum-offload-enable |"
266 "csum-offload-disable>",
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100267 .function = tap_offload_command_fn,
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200268};
269/* *INDENT-ON* */
270
271static clib_error_t *
Damjan Marion8389fb92017-10-13 18:29:53 +0200272tap_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 Marion8389fb92017-10-13 18:29:53 +0200281
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 Marionb2c31b62020-12-13 21:47:40 +0100300 pool_foreach (vif, mm->interfaces)
Damjan Marion8389fb92017-10-13 18:29:53 +0200301 vec_add1 (hw_if_indices, vif->hw_if_index);
Damjan Marion8389fb92017-10-13 18:29:53 +0200302 /* *INDENT-ON* */
303 }
304
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200305 virtio_show (vm, hw_if_indices, show_descr, VIRTIO_IF_TYPE_TAP);
306
Damjan Marion8389fb92017-10-13 18:29:53 +0200307done:
308 vec_free (hw_if_indices);
309 return error;
310}
311
312/* *INDENT-OFF* */
313VLIB_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 Kazmi206acf82020-04-06 14:19:54 +0200320static clib_error_t *
321tun_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 Marionb2c31b62020-12-13 21:47:40 +0100349 pool_foreach (vif, mm->interfaces)
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200350 vec_add1 (hw_if_indices, vif->hw_if_index);
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200351 /* *INDENT-ON* */
352 }
353
354 virtio_show (vm, hw_if_indices, show_descr, VIRTIO_IF_TYPE_TUN);
355
356done:
357 vec_free (hw_if_indices);
358 return error;
359}
360
361/* *INDENT-OFF* */
362VLIB_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 Marion8389fb92017-10-13 18:29:53 +0200369clib_error_t *
370tap_cli_init (vlib_main_t * vm)
371{
372 return 0;
373}
374
375VLIB_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 */