blob: 68b8cef2a211834fc89d4feecf03d931f165c05d [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 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;
Damjan Marion2df39092017-12-04 20:03:37 +010099 else if (unformat (line_input, "hw-addr %U",
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200100 unformat_ethernet_address, args.mac_addr.bytes))
Damjan Marion2df39092017-12-04 20:03:37 +0100101 args.mac_addr_set = 1;
102 else
Swarup Nayak76dc22c2017-12-05 09:46:17 +0530103 {
104 unformat_free (line_input);
105 return clib_error_return (0, "unknown input `%U'",
106 format_unformat_error, input);
107 }
Damjan Marion2df39092017-12-04 20:03:37 +0100108 }
109 unformat_free (line_input);
Damjan Marion8389fb92017-10-13 18:29:53 +0200110 }
Damjan Marion8389fb92017-10-13 18:29:53 +0200111
Damjan Marion91c6ef72017-12-01 13:34:24 +0100112 if (ip_addr_set && args.host_bridge)
113 return clib_error_return (0, "Please specify either host ip address or "
114 "host bridge");
115
116 tap_create_if (vm, &args);
Damjan Marion8389fb92017-10-13 18:29:53 +0200117
Mohsin Kazmic5d53272019-07-01 10:26:43 +0200118 if (!args.rv)
119 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
120 vnet_get_main (), args.sw_if_index);
121
Damjan Marion2df39092017-12-04 20:03:37 +0100122 vec_free (args.host_if_name);
Damjan Marion91c6ef72017-12-01 13:34:24 +0100123 vec_free (args.host_namespace);
124 vec_free (args.host_bridge);
Damjan Marion8389fb92017-10-13 18:29:53 +0200125
Damjan Marion91c6ef72017-12-01 13:34:24 +0100126 return args.error;
Damjan Marion8389fb92017-10-13 18:29:53 +0200127
Damjan Marion8389fb92017-10-13 18:29:53 +0200128}
129
130/* *INDENT-OFF* */
131VLIB_CLI_COMMAND (tap_create_command, static) = {
132 .path = "create tap",
Damjan Marion2df39092017-12-04 20:03:37 +0100133 .short_help = "create tap {id <if-id>} [hw-addr <mac-address>] "
Damjan Marion91c6ef72017-12-01 13:34:24 +0100134 "[rx-ring-size <size>] [tx-ring-size <size>] [host-ns <netns>] "
135 "[host-bridge <bridge-name>] [host-ip4-addr <ip4addr/mask>] "
Damjan Marion7866c452018-01-18 13:35:11 +0100136 "[host-ip6-addr <ip6-addr>] [host-ip4-gw <ip4-addr>] "
Mohsin Kazmi97d54ed2019-06-10 11:20:15 +0200137 "[host-ip6-gw <ip6-addr>] [host-mac-addr <host-mac-address>] "
Mohsin Kazmib49bc1a2020-02-14 17:51:04 +0000138 "[host-if-name <name>] [host-mtu-size <size>] [no-gso|gso|csum-offload] "
139 "[persist] [attach]",
Damjan Marion8389fb92017-10-13 18:29:53 +0200140 .function = tap_create_command_fn,
141};
142/* *INDENT-ON* */
143
144static clib_error_t *
145tap_delete_command_fn (vlib_main_t * vm, unformat_input_t * input,
146 vlib_cli_command_t * cmd)
147{
148 unformat_input_t _line_input, *line_input = &_line_input;
149 u32 sw_if_index = ~0;
150 vnet_main_t *vnm = vnet_get_main ();
151 int rv;
152
153 /* Get a line of input. */
154 if (!unformat_user (input, unformat_line_input, line_input))
155 return clib_error_return (0, "Missing <interface>");
156
157 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
158 {
159 if (unformat (line_input, "sw_if_index %d", &sw_if_index))
160 ;
161 else if (unformat (line_input, "%U", unformat_vnet_sw_interface,
162 vnm, &sw_if_index))
163 ;
164 else
165 return clib_error_return (0, "unknown input `%U'",
166 format_unformat_error, input);
167 }
168 unformat_free (line_input);
169
170 if (sw_if_index == ~0)
171 return clib_error_return (0,
172 "please specify interface name or sw_if_index");
173
174 rv = tap_delete_if (vm, sw_if_index);
175 if (rv == VNET_API_ERROR_INVALID_SW_IF_INDEX)
176 return clib_error_return (0, "not a tap interface");
177 else if (rv != 0)
178 return clib_error_return (0, "error on deleting tap interface");
179
180 return 0;
181}
182
183/* *INDENT-OFF* */
184VLIB_CLI_COMMAND (tap_delete__command, static) =
185{
186 .path = "delete tap",
187 .short_help = "delete tap {<interface> | sw_if_index <sw_idx>}",
188 .function = tap_delete_command_fn,
189};
190/* *INDENT-ON* */
191
192static clib_error_t *
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100193tap_offload_command_fn (vlib_main_t * vm, unformat_input_t * input,
194 vlib_cli_command_t * cmd)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200195{
196 unformat_input_t _line_input, *line_input = &_line_input;
197 u32 sw_if_index = ~0;
198 vnet_main_t *vnm = vnet_get_main ();
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100199 int gso_enable = 0, gso_disable = 0;
200 int csum_offload_enable = 0, csum_offload_disable = 0;
201 int rv = 0;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200202
203 /* Get a line of input. */
204 if (!unformat_user (input, unformat_line_input, line_input))
205 return clib_error_return (0, "Missing <interface>");
206
207 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
208 {
209 if (unformat (line_input, "sw_if_index %d", &sw_if_index))
210 ;
211 else if (unformat (line_input, "%U", unformat_vnet_sw_interface,
212 vnm, &sw_if_index))
213 ;
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100214 else if (unformat (line_input, "gso-enable"))
215 gso_enable = 1;
216 else if (unformat (line_input, "gso-disable"))
217 gso_disable = 1;
218 else if (unformat (line_input, "csum-offload-enable"))
219 csum_offload_enable = 1;
220 else if (unformat (line_input, "csum-offload-disable"))
221 csum_offload_disable = 1;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200222 else
223 return clib_error_return (0, "unknown input `%U'",
224 format_unformat_error, input);
225 }
226 unformat_free (line_input);
227
228 if (sw_if_index == ~0)
229 return clib_error_return (0,
230 "please specify interface name or sw_if_index");
231
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100232 if (gso_enable)
233 rv = tap_gso_enable_disable (vm, sw_if_index, 1);
234 else if (csum_offload_enable)
235 rv = tap_csum_offload_enable_disable (vm, sw_if_index, 1);
236 else if (gso_disable)
237 rv = tap_gso_enable_disable (vm, sw_if_index, 0);
238 else if (csum_offload_disable)
239 rv = tap_csum_offload_enable_disable (vm, sw_if_index, 0);
240
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200241 if (rv == VNET_API_ERROR_INVALID_SW_IF_INDEX)
242 return clib_error_return (0, "not a tap interface");
243 else if (rv != 0)
244 return clib_error_return (0, "error on configuring GSO on tap interface");
245
246 return 0;
247}
248
249/* *INDENT-OFF* */
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100250VLIB_CLI_COMMAND (tap_offload_command, static) =
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200251{
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100252 .path = "set tap offload",
253 .short_help = "set tap offload {<interface> | sw_if_index <sw_idx>}"
254 " <gso-enable | gso-disable | csum-offload-enable | csum-offload-disable>",
255 .function = tap_offload_command_fn,
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200256};
257/* *INDENT-ON* */
258
259static clib_error_t *
Damjan Marion8389fb92017-10-13 18:29:53 +0200260tap_show_command_fn (vlib_main_t * vm, unformat_input_t * input,
261 vlib_cli_command_t * cmd)
262{
263 virtio_main_t *mm = &virtio_main;
264 virtio_if_t *vif;
265 vnet_main_t *vnm = vnet_get_main ();
266 int show_descr = 0;
267 clib_error_t *error = 0;
268 u32 hw_if_index, *hw_if_indices = 0;
Damjan Marion8389fb92017-10-13 18:29:53 +0200269
270 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
271 {
272 if (unformat
273 (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
274 vec_add1 (hw_if_indices, hw_if_index);
275 else if (unformat (input, "descriptors"))
276 show_descr = 1;
277 else
278 {
279 error = clib_error_return (0, "unknown input `%U'",
280 format_unformat_error, input);
281 goto done;
282 }
283 }
284
285 if (vec_len (hw_if_indices) == 0)
286 {
287 /* *INDENT-OFF* */
288 pool_foreach (vif, mm->interfaces,
289 vec_add1 (hw_if_indices, vif->hw_if_index);
290 );
291 /* *INDENT-ON* */
292 }
293
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200294 virtio_show (vm, hw_if_indices, show_descr, VIRTIO_IF_TYPE_TAP);
295
Damjan Marion8389fb92017-10-13 18:29:53 +0200296done:
297 vec_free (hw_if_indices);
298 return error;
299}
300
301/* *INDENT-OFF* */
302VLIB_CLI_COMMAND (tap_show_command, static) = {
303 .path = "show tap",
304 .short_help = "show tap {<interface>] [descriptors]",
305 .function = tap_show_command_fn,
306};
307/* *INDENT-ON* */
308
309clib_error_t *
310tap_cli_init (vlib_main_t * vm)
311{
312 return 0;
313}
314
315VLIB_INIT_FUNCTION (tap_cli_init);
316
317/*
318 * fd.io coding-style-patch-verification: ON
319 *
320 * Local Variables:
321 * eval: (c-set-style "gnu")
322 * End:
323 */