blob: fa5fa91e7a62143dd4b555110a301f73abf38e98 [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 <linux/virtio_net.h>
29#include <linux/vhost.h>
30#include <vnet/devices/virtio/virtio.h>
Damjan Marionc99b4cd2017-12-04 15:25:58 +010031#include <vnet/devices/tap/tap.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020032
33static clib_error_t *
34tap_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 Marion8389fb92017-10-13 18:29:53 +020038 tap_create_if_args_t args = { 0 };
Damjan Marion91c6ef72017-12-01 13:34:24 +010039 int ip_addr_set = 0;
Damjan Marion0ba86cb2019-11-08 15:15:11 +010040 u32 tmp;
Damjan Marion8389fb92017-10-13 18:29:53 +020041
Damjan Marion2df39092017-12-04 20:03:37 +010042 args.id = ~0;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020043 args.tap_flags = 0;
Mohsin Kazmic5d53272019-07-01 10:26:43 +020044 args.rv = -1;
Damjan Marion7c6102b2019-11-08 17:59:56 +010045 args.num_rx_queues = 1;
Damjan Marion8389fb92017-10-13 18:29:53 +020046
Damjan Marion2df39092017-12-04 20:03:37 +010047 /* Get a line of input. */
48 if (unformat_user (input, unformat_line_input, line_input))
Damjan Marion8389fb92017-10-13 18:29:53 +020049 {
Damjan Marion2df39092017-12-04 20:03:37 +010050 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
51 {
52 if (unformat (line_input, "id %u", &args.id))
53 ;
54 else
55 if (unformat (line_input, "host-if-name %s", &args.host_if_name))
56 ;
57 else if (unformat (line_input, "host-ns %s", &args.host_namespace))
58 ;
59 else if (unformat (line_input, "host-mac-addr %U",
Mohsin Kazmi30397532020-01-30 13:36:02 +010060 unformat_ethernet_address,
61 args.host_mac_addr.bytes))
Damjan Marion2df39092017-12-04 20:03:37 +010062 ;
63 else if (unformat (line_input, "host-bridge %s", &args.host_bridge))
64 ;
65 else if (unformat (line_input, "host-ip4-addr %U/%d",
66 unformat_ip4_address, &args.host_ip4_addr,
67 &args.host_ip4_prefix_len))
68 ip_addr_set = 1;
Damjan Marion7866c452018-01-18 13:35:11 +010069 else if (unformat (line_input, "host-ip4-gw %U",
70 unformat_ip4_address, &args.host_ip4_gw))
71 args.host_ip4_gw_set = 1;
Damjan Marion2df39092017-12-04 20:03:37 +010072 else if (unformat (line_input, "host-ip6-addr %U/%d",
73 unformat_ip6_address, &args.host_ip6_addr,
74 &args.host_ip6_prefix_len))
75 ip_addr_set = 1;
Damjan Marion7866c452018-01-18 13:35:11 +010076 else if (unformat (line_input, "host-ip6-gw %U",
77 unformat_ip6_address, &args.host_ip6_gw))
78 args.host_ip6_gw_set = 1;
Damjan Marion7c6102b2019-11-08 17:59:56 +010079 else if (unformat (line_input, "num-rx-queues %d", &tmp))
80 args.num_rx_queues = tmp;
Damjan Marion0ba86cb2019-11-08 15:15:11 +010081 else if (unformat (line_input, "rx-ring-size %d", &tmp))
82 args.rx_ring_sz = tmp;
83 else if (unformat (line_input, "tx-ring-size %d", &tmp))
84 args.tx_ring_sz = tmp;
Mohsin Kazmi97d54ed2019-06-10 11:20:15 +020085 else
86 if (unformat
87 (line_input, "host-mtu-size %d", &args.host_mtu_size))
88 args.host_mtu_set = 1;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020089 else if (unformat (line_input, "no-gso"))
90 args.tap_flags &= ~TAP_FLAG_GSO;
91 else if (unformat (line_input, "gso"))
92 args.tap_flags |= TAP_FLAG_GSO;
Mohsin Kazmid88fc0f2020-04-30 19:05:56 +020093 else if (unformat (line_input, "gro-coalesce"))
94 args.tap_flags |= TAP_FLAG_GRO_COALESCE;
Mohsin Kazmiba0061f2019-12-18 17:08:54 +010095 else if (unformat (line_input, "csum-offload"))
96 args.tap_flags |= TAP_FLAG_CSUM_OFFLOAD;
Mohsin Kazmib49bc1a2020-02-14 17:51:04 +000097 else if (unformat (line_input, "persist"))
98 args.tap_flags |= TAP_FLAG_PERSIST;
99 else if (unformat (line_input, "attach"))
100 args.tap_flags |= TAP_FLAG_ATTACH;
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200101 else if (unformat (line_input, "tun"))
102 args.tap_flags |= TAP_FLAG_TUN;
Damjan Marion2df39092017-12-04 20:03:37 +0100103 else if (unformat (line_input, "hw-addr %U",
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200104 unformat_ethernet_address, args.mac_addr.bytes))
Damjan Marion2df39092017-12-04 20:03:37 +0100105 args.mac_addr_set = 1;
106 else
Swarup Nayak76dc22c2017-12-05 09:46:17 +0530107 {
108 unformat_free (line_input);
109 return clib_error_return (0, "unknown input `%U'",
110 format_unformat_error, input);
111 }
Damjan Marion2df39092017-12-04 20:03:37 +0100112 }
113 unformat_free (line_input);
Damjan Marion8389fb92017-10-13 18:29:53 +0200114 }
Damjan Marion8389fb92017-10-13 18:29:53 +0200115
Damjan Marion91c6ef72017-12-01 13:34:24 +0100116 if (ip_addr_set && args.host_bridge)
117 return clib_error_return (0, "Please specify either host ip address or "
118 "host bridge");
119
120 tap_create_if (vm, &args);
Damjan Marion8389fb92017-10-13 18:29:53 +0200121
Mohsin Kazmic5d53272019-07-01 10:26:43 +0200122 if (!args.rv)
123 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
124 vnet_get_main (), args.sw_if_index);
125
Damjan Marion2df39092017-12-04 20:03:37 +0100126 vec_free (args.host_if_name);
Damjan Marion91c6ef72017-12-01 13:34:24 +0100127 vec_free (args.host_namespace);
128 vec_free (args.host_bridge);
Damjan Marion8389fb92017-10-13 18:29:53 +0200129
Damjan Marion91c6ef72017-12-01 13:34:24 +0100130 return args.error;
Damjan Marion8389fb92017-10-13 18:29:53 +0200131
Damjan Marion8389fb92017-10-13 18:29:53 +0200132}
133
134/* *INDENT-OFF* */
135VLIB_CLI_COMMAND (tap_create_command, static) = {
136 .path = "create tap",
Damjan Marion2df39092017-12-04 20:03:37 +0100137 .short_help = "create tap {id <if-id>} [hw-addr <mac-address>] "
Mohsin Kazmi28adbb32020-04-29 13:10:08 +0200138 "[num-rx-queues <n>] [rx-ring-size <size>] [tx-ring-size <size>] "
139 "[host-ns <netns>] [host-bridge <bridge-name>] "
140 "[host-ip4-addr <ip4addr/mask>] [host-ip6-addr <ip6-addr>] "
141 "[host-ip4-gw <ip4-addr>] [host-ip6-gw <ip6-addr>] "
142 "[host-mac-addr <host-mac-address>] [host-if-name <name>] "
Mohsin Kazmid88fc0f2020-04-30 19:05:56 +0200143 "[host-mtu-size <size>] [no-gso|gso|csum-offload|gro-coalesce] "
144 "[persist] [attach] [tun]",
Damjan Marion8389fb92017-10-13 18:29:53 +0200145 .function = tap_create_command_fn,
146};
147/* *INDENT-ON* */
148
149static clib_error_t *
150tap_delete_command_fn (vlib_main_t * vm, unformat_input_t * input,
151 vlib_cli_command_t * cmd)
152{
153 unformat_input_t _line_input, *line_input = &_line_input;
154 u32 sw_if_index = ~0;
155 vnet_main_t *vnm = vnet_get_main ();
156 int rv;
157
158 /* Get a line of input. */
159 if (!unformat_user (input, unformat_line_input, line_input))
160 return clib_error_return (0, "Missing <interface>");
161
162 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
163 {
164 if (unformat (line_input, "sw_if_index %d", &sw_if_index))
165 ;
166 else if (unformat (line_input, "%U", unformat_vnet_sw_interface,
167 vnm, &sw_if_index))
168 ;
169 else
170 return clib_error_return (0, "unknown input `%U'",
171 format_unformat_error, input);
172 }
173 unformat_free (line_input);
174
175 if (sw_if_index == ~0)
176 return clib_error_return (0,
177 "please specify interface name or sw_if_index");
178
179 rv = tap_delete_if (vm, sw_if_index);
180 if (rv == VNET_API_ERROR_INVALID_SW_IF_INDEX)
181 return clib_error_return (0, "not a tap interface");
182 else if (rv != 0)
183 return clib_error_return (0, "error on deleting tap interface");
184
185 return 0;
186}
187
188/* *INDENT-OFF* */
189VLIB_CLI_COMMAND (tap_delete__command, static) =
190{
191 .path = "delete tap",
192 .short_help = "delete tap {<interface> | sw_if_index <sw_idx>}",
193 .function = tap_delete_command_fn,
194};
195/* *INDENT-ON* */
196
197static clib_error_t *
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100198tap_offload_command_fn (vlib_main_t * vm, unformat_input_t * input,
199 vlib_cli_command_t * cmd)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200200{
201 unformat_input_t _line_input, *line_input = &_line_input;
202 u32 sw_if_index = ~0;
203 vnet_main_t *vnm = vnet_get_main ();
Mohsin Kazmi9e2a7852020-08-13 18:57:26 +0200204 int gso_enable = 0, gso_disable = 0, is_gro_coalesce = 0;
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100205 int csum_offload_enable = 0, csum_offload_disable = 0;
206 int rv = 0;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200207
208 /* Get a line of input. */
209 if (!unformat_user (input, unformat_line_input, line_input))
210 return clib_error_return (0, "Missing <interface>");
211
212 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
213 {
214 if (unformat (line_input, "sw_if_index %d", &sw_if_index))
215 ;
216 else if (unformat (line_input, "%U", unformat_vnet_sw_interface,
217 vnm, &sw_if_index))
218 ;
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100219 else if (unformat (line_input, "gso-enable"))
Mohsin Kazmi9e2a7852020-08-13 18:57:26 +0200220 {
221 gso_enable = 1;
222 if (unformat (line_input, "gro-coalesce"))
223 is_gro_coalesce = 1;
224 }
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100225 else if (unformat (line_input, "gso-disable"))
226 gso_disable = 1;
227 else if (unformat (line_input, "csum-offload-enable"))
228 csum_offload_enable = 1;
229 else if (unformat (line_input, "csum-offload-disable"))
230 csum_offload_disable = 1;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200231 else
232 return clib_error_return (0, "unknown input `%U'",
233 format_unformat_error, input);
234 }
235 unformat_free (line_input);
236
237 if (sw_if_index == ~0)
238 return clib_error_return (0,
239 "please specify interface name or sw_if_index");
240
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100241 if (gso_enable)
Mohsin Kazmi9e2a7852020-08-13 18:57:26 +0200242 rv = tap_gso_enable_disable (vm, sw_if_index, 1, is_gro_coalesce);
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100243 else if (csum_offload_enable)
244 rv = tap_csum_offload_enable_disable (vm, sw_if_index, 1);
245 else if (gso_disable)
Mohsin Kazmi9e2a7852020-08-13 18:57:26 +0200246 rv = tap_gso_enable_disable (vm, sw_if_index, 0, 0);
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100247 else if (csum_offload_disable)
248 rv = tap_csum_offload_enable_disable (vm, sw_if_index, 0);
249
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200250 if (rv == VNET_API_ERROR_INVALID_SW_IF_INDEX)
251 return clib_error_return (0, "not a tap interface");
252 else if (rv != 0)
253 return clib_error_return (0, "error on configuring GSO on tap interface");
254
255 return 0;
256}
257
258/* *INDENT-OFF* */
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100259VLIB_CLI_COMMAND (tap_offload_command, static) =
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200260{
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100261 .path = "set tap offload",
262 .short_help = "set tap offload {<interface> | sw_if_index <sw_idx>}"
Mohsin Kazmi9e2a7852020-08-13 18:57:26 +0200263 " <gso-enable [gro-coalesce] | gso-disable | csum-offload-enable |"
264 "csum-offload-disable>",
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100265 .function = tap_offload_command_fn,
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200266};
267/* *INDENT-ON* */
268
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 {
297 /* *INDENT-OFF* */
298 pool_foreach (vif, mm->interfaces,
299 vec_add1 (hw_if_indices, vif->hw_if_index);
300 );
301 /* *INDENT-ON* */
302 }
303
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200304 virtio_show (vm, hw_if_indices, show_descr, VIRTIO_IF_TYPE_TAP);
305
Damjan Marion8389fb92017-10-13 18:29:53 +0200306done:
307 vec_free (hw_if_indices);
308 return error;
309}
310
311/* *INDENT-OFF* */
312VLIB_CLI_COMMAND (tap_show_command, static) = {
313 .path = "show tap",
314 .short_help = "show tap {<interface>] [descriptors]",
315 .function = tap_show_command_fn,
316};
317/* *INDENT-ON* */
318
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200319static clib_error_t *
320tun_show_command_fn (vlib_main_t * vm, unformat_input_t * input,
321 vlib_cli_command_t * cmd)
322{
323 virtio_main_t *mm = &virtio_main;
324 virtio_if_t *vif;
325 vnet_main_t *vnm = vnet_get_main ();
326 int show_descr = 0;
327 clib_error_t *error = 0;
328 u32 hw_if_index, *hw_if_indices = 0;
329
330 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
331 {
332 if (unformat
333 (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
334 vec_add1 (hw_if_indices, hw_if_index);
335 else if (unformat (input, "descriptors"))
336 show_descr = 1;
337 else
338 {
339 error = clib_error_return (0, "unknown input `%U'",
340 format_unformat_error, input);
341 goto done;
342 }
343 }
344
345 if (vec_len (hw_if_indices) == 0)
346 {
347 /* *INDENT-OFF* */
348 pool_foreach (vif, mm->interfaces,
349 vec_add1 (hw_if_indices, vif->hw_if_index);
350 );
351 /* *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 */