blob: 8d5e3b44e31a59ba2116a10120b5daf84588bac9 [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",
60 unformat_ethernet_address, args.host_mac_addr))
61 ;
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;
Damjan Marion0ba86cb2019-11-08 15:15:11 +010080 else if (unformat (line_input, "rx-ring-size %d", &tmp))
81 args.rx_ring_sz = tmp;
82 else if (unformat (line_input, "tx-ring-size %d", &tmp))
83 args.tx_ring_sz = tmp;
Mohsin Kazmi97d54ed2019-06-10 11:20:15 +020084 else
85 if (unformat
86 (line_input, "host-mtu-size %d", &args.host_mtu_size))
87 args.host_mtu_set = 1;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020088 else if (unformat (line_input, "no-gso"))
89 args.tap_flags &= ~TAP_FLAG_GSO;
90 else if (unformat (line_input, "gso"))
91 args.tap_flags |= TAP_FLAG_GSO;
Mohsin Kazmiba0061f2019-12-18 17:08:54 +010092 else if (unformat (line_input, "csum-offload"))
93 args.tap_flags |= TAP_FLAG_CSUM_OFFLOAD;
Damjan Marion2df39092017-12-04 20:03:37 +010094 else if (unformat (line_input, "hw-addr %U",
Jakub Grajciar5de4fb72019-09-03 10:40:01 +020095 unformat_ethernet_address, args.mac_addr.bytes))
Damjan Marion2df39092017-12-04 20:03:37 +010096 args.mac_addr_set = 1;
97 else
Swarup Nayak76dc22c2017-12-05 09:46:17 +053098 {
99 unformat_free (line_input);
100 return clib_error_return (0, "unknown input `%U'",
101 format_unformat_error, input);
102 }
Damjan Marion2df39092017-12-04 20:03:37 +0100103 }
104 unformat_free (line_input);
Damjan Marion8389fb92017-10-13 18:29:53 +0200105 }
Damjan Marion8389fb92017-10-13 18:29:53 +0200106
Damjan Marion91c6ef72017-12-01 13:34:24 +0100107 if (ip_addr_set && args.host_bridge)
108 return clib_error_return (0, "Please specify either host ip address or "
109 "host bridge");
110
111 tap_create_if (vm, &args);
Damjan Marion8389fb92017-10-13 18:29:53 +0200112
Mohsin Kazmic5d53272019-07-01 10:26:43 +0200113 if (!args.rv)
114 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
115 vnet_get_main (), args.sw_if_index);
116
Damjan Marion2df39092017-12-04 20:03:37 +0100117 vec_free (args.host_if_name);
Damjan Marion91c6ef72017-12-01 13:34:24 +0100118 vec_free (args.host_namespace);
119 vec_free (args.host_bridge);
Damjan Marion8389fb92017-10-13 18:29:53 +0200120
Damjan Marion91c6ef72017-12-01 13:34:24 +0100121 return args.error;
Damjan Marion8389fb92017-10-13 18:29:53 +0200122
Damjan Marion8389fb92017-10-13 18:29:53 +0200123}
124
125/* *INDENT-OFF* */
126VLIB_CLI_COMMAND (tap_create_command, static) = {
127 .path = "create tap",
Damjan Marion2df39092017-12-04 20:03:37 +0100128 .short_help = "create tap {id <if-id>} [hw-addr <mac-address>] "
Damjan Marion91c6ef72017-12-01 13:34:24 +0100129 "[rx-ring-size <size>] [tx-ring-size <size>] [host-ns <netns>] "
130 "[host-bridge <bridge-name>] [host-ip4-addr <ip4addr/mask>] "
Damjan Marion7866c452018-01-18 13:35:11 +0100131 "[host-ip6-addr <ip6-addr>] [host-ip4-gw <ip4-addr>] "
Mohsin Kazmi97d54ed2019-06-10 11:20:15 +0200132 "[host-ip6-gw <ip6-addr>] [host-mac-addr <host-mac-address>] "
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100133 "[host-if-name <name>] [host-mtu-size <size>] [no-gso|gso|csum-offload]",
Damjan Marion8389fb92017-10-13 18:29:53 +0200134 .function = tap_create_command_fn,
135};
136/* *INDENT-ON* */
137
138static clib_error_t *
139tap_delete_command_fn (vlib_main_t * vm, unformat_input_t * input,
140 vlib_cli_command_t * cmd)
141{
142 unformat_input_t _line_input, *line_input = &_line_input;
143 u32 sw_if_index = ~0;
144 vnet_main_t *vnm = vnet_get_main ();
145 int rv;
146
147 /* Get a line of input. */
148 if (!unformat_user (input, unformat_line_input, line_input))
149 return clib_error_return (0, "Missing <interface>");
150
151 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
152 {
153 if (unformat (line_input, "sw_if_index %d", &sw_if_index))
154 ;
155 else if (unformat (line_input, "%U", unformat_vnet_sw_interface,
156 vnm, &sw_if_index))
157 ;
158 else
159 return clib_error_return (0, "unknown input `%U'",
160 format_unformat_error, input);
161 }
162 unformat_free (line_input);
163
164 if (sw_if_index == ~0)
165 return clib_error_return (0,
166 "please specify interface name or sw_if_index");
167
168 rv = tap_delete_if (vm, sw_if_index);
169 if (rv == VNET_API_ERROR_INVALID_SW_IF_INDEX)
170 return clib_error_return (0, "not a tap interface");
171 else if (rv != 0)
172 return clib_error_return (0, "error on deleting tap interface");
173
174 return 0;
175}
176
177/* *INDENT-OFF* */
178VLIB_CLI_COMMAND (tap_delete__command, static) =
179{
180 .path = "delete tap",
181 .short_help = "delete tap {<interface> | sw_if_index <sw_idx>}",
182 .function = tap_delete_command_fn,
183};
184/* *INDENT-ON* */
185
186static clib_error_t *
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100187tap_offload_command_fn (vlib_main_t * vm, unformat_input_t * input,
188 vlib_cli_command_t * cmd)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200189{
190 unformat_input_t _line_input, *line_input = &_line_input;
191 u32 sw_if_index = ~0;
192 vnet_main_t *vnm = vnet_get_main ();
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100193 int gso_enable = 0, gso_disable = 0;
194 int csum_offload_enable = 0, csum_offload_disable = 0;
195 int rv = 0;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200196
197 /* Get a line of input. */
198 if (!unformat_user (input, unformat_line_input, line_input))
199 return clib_error_return (0, "Missing <interface>");
200
201 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
202 {
203 if (unformat (line_input, "sw_if_index %d", &sw_if_index))
204 ;
205 else if (unformat (line_input, "%U", unformat_vnet_sw_interface,
206 vnm, &sw_if_index))
207 ;
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100208 else if (unformat (line_input, "gso-enable"))
209 gso_enable = 1;
210 else if (unformat (line_input, "gso-disable"))
211 gso_disable = 1;
212 else if (unformat (line_input, "csum-offload-enable"))
213 csum_offload_enable = 1;
214 else if (unformat (line_input, "csum-offload-disable"))
215 csum_offload_disable = 1;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200216 else
217 return clib_error_return (0, "unknown input `%U'",
218 format_unformat_error, input);
219 }
220 unformat_free (line_input);
221
222 if (sw_if_index == ~0)
223 return clib_error_return (0,
224 "please specify interface name or sw_if_index");
225
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100226 if (gso_enable)
227 rv = tap_gso_enable_disable (vm, sw_if_index, 1);
228 else if (csum_offload_enable)
229 rv = tap_csum_offload_enable_disable (vm, sw_if_index, 1);
230 else if (gso_disable)
231 rv = tap_gso_enable_disable (vm, sw_if_index, 0);
232 else if (csum_offload_disable)
233 rv = tap_csum_offload_enable_disable (vm, sw_if_index, 0);
234
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200235 if (rv == VNET_API_ERROR_INVALID_SW_IF_INDEX)
236 return clib_error_return (0, "not a tap interface");
237 else if (rv != 0)
238 return clib_error_return (0, "error on configuring GSO on tap interface");
239
240 return 0;
241}
242
243/* *INDENT-OFF* */
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100244VLIB_CLI_COMMAND (tap_offload_command, static) =
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200245{
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100246 .path = "set tap offload",
247 .short_help = "set tap offload {<interface> | sw_if_index <sw_idx>}"
248 " <gso-enable | gso-disable | csum-offload-enable | csum-offload-disable>",
249 .function = tap_offload_command_fn,
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200250};
251/* *INDENT-ON* */
252
253static clib_error_t *
Damjan Marion8389fb92017-10-13 18:29:53 +0200254tap_show_command_fn (vlib_main_t * vm, unformat_input_t * input,
255 vlib_cli_command_t * cmd)
256{
257 virtio_main_t *mm = &virtio_main;
258 virtio_if_t *vif;
259 vnet_main_t *vnm = vnet_get_main ();
260 int show_descr = 0;
261 clib_error_t *error = 0;
262 u32 hw_if_index, *hw_if_indices = 0;
Damjan Marion8389fb92017-10-13 18:29:53 +0200263
264 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
265 {
266 if (unformat
267 (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
268 vec_add1 (hw_if_indices, hw_if_index);
269 else if (unformat (input, "descriptors"))
270 show_descr = 1;
271 else
272 {
273 error = clib_error_return (0, "unknown input `%U'",
274 format_unformat_error, input);
275 goto done;
276 }
277 }
278
279 if (vec_len (hw_if_indices) == 0)
280 {
281 /* *INDENT-OFF* */
282 pool_foreach (vif, mm->interfaces,
283 vec_add1 (hw_if_indices, vif->hw_if_index);
284 );
285 /* *INDENT-ON* */
286 }
287
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200288 virtio_show (vm, hw_if_indices, show_descr, VIRTIO_IF_TYPE_TAP);
289
Damjan Marion8389fb92017-10-13 18:29:53 +0200290done:
291 vec_free (hw_if_indices);
292 return error;
293}
294
295/* *INDENT-OFF* */
296VLIB_CLI_COMMAND (tap_show_command, static) = {
297 .path = "show tap",
298 .short_help = "show tap {<interface>] [descriptors]",
299 .function = tap_show_command_fn,
300};
301/* *INDENT-ON* */
302
303clib_error_t *
304tap_cli_init (vlib_main_t * vm)
305{
306 return 0;
307}
308
309VLIB_INIT_FUNCTION (tap_cli_init);
310
311/*
312 * fd.io coding-style-patch-verification: ON
313 *
314 * Local Variables:
315 * eval: (c-set-style "gnu")
316 * End:
317 */