blob: 084fb908dc928c3372c73d8fa41a825ec3f3b419 [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 Marion8389fb92017-10-13 18:29:53 +020040
Damjan Marion2df39092017-12-04 20:03:37 +010041 args.id = ~0;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020042 args.tap_flags = 0;
Damjan Marion8389fb92017-10-13 18:29:53 +020043
Damjan Marion2df39092017-12-04 20:03:37 +010044 /* Get a line of input. */
45 if (unformat_user (input, unformat_line_input, line_input))
Damjan Marion8389fb92017-10-13 18:29:53 +020046 {
Damjan Marion2df39092017-12-04 20:03:37 +010047 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
48 {
49 if (unformat (line_input, "id %u", &args.id))
50 ;
51 else
52 if (unformat (line_input, "host-if-name %s", &args.host_if_name))
53 ;
54 else if (unformat (line_input, "host-ns %s", &args.host_namespace))
55 ;
56 else if (unformat (line_input, "host-mac-addr %U",
57 unformat_ethernet_address, args.host_mac_addr))
58 ;
59 else if (unformat (line_input, "host-bridge %s", &args.host_bridge))
60 ;
61 else if (unformat (line_input, "host-ip4-addr %U/%d",
62 unformat_ip4_address, &args.host_ip4_addr,
63 &args.host_ip4_prefix_len))
64 ip_addr_set = 1;
Damjan Marion7866c452018-01-18 13:35:11 +010065 else if (unformat (line_input, "host-ip4-gw %U",
66 unformat_ip4_address, &args.host_ip4_gw))
67 args.host_ip4_gw_set = 1;
Damjan Marion2df39092017-12-04 20:03:37 +010068 else if (unformat (line_input, "host-ip6-addr %U/%d",
69 unformat_ip6_address, &args.host_ip6_addr,
70 &args.host_ip6_prefix_len))
71 ip_addr_set = 1;
Damjan Marion7866c452018-01-18 13:35:11 +010072 else if (unformat (line_input, "host-ip6-gw %U",
73 unformat_ip6_address, &args.host_ip6_gw))
74 args.host_ip6_gw_set = 1;
Damjan Marion2df39092017-12-04 20:03:37 +010075 else if (unformat (line_input, "rx-ring-size %d", &args.rx_ring_sz))
76 ;
77 else if (unformat (line_input, "tx-ring-size %d", &args.tx_ring_sz))
78 ;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020079 else if (unformat (line_input, "no-gso"))
80 args.tap_flags &= ~TAP_FLAG_GSO;
81 else if (unformat (line_input, "gso"))
82 args.tap_flags |= TAP_FLAG_GSO;
Damjan Marion2df39092017-12-04 20:03:37 +010083 else if (unformat (line_input, "hw-addr %U",
84 unformat_ethernet_address, args.mac_addr))
85 args.mac_addr_set = 1;
86 else
Swarup Nayak76dc22c2017-12-05 09:46:17 +053087 {
88 unformat_free (line_input);
89 return clib_error_return (0, "unknown input `%U'",
90 format_unformat_error, input);
91 }
Damjan Marion2df39092017-12-04 20:03:37 +010092 }
93 unformat_free (line_input);
Damjan Marion8389fb92017-10-13 18:29:53 +020094 }
Damjan Marion8389fb92017-10-13 18:29:53 +020095
Damjan Marion91c6ef72017-12-01 13:34:24 +010096 if (ip_addr_set && args.host_bridge)
97 return clib_error_return (0, "Please specify either host ip address or "
98 "host bridge");
99
100 tap_create_if (vm, &args);
Damjan Marion8389fb92017-10-13 18:29:53 +0200101
Damjan Marion2df39092017-12-04 20:03:37 +0100102 vec_free (args.host_if_name);
Damjan Marion91c6ef72017-12-01 13:34:24 +0100103 vec_free (args.host_namespace);
104 vec_free (args.host_bridge);
Damjan Marion8389fb92017-10-13 18:29:53 +0200105
Damjan Marion91c6ef72017-12-01 13:34:24 +0100106 return args.error;
Damjan Marion8389fb92017-10-13 18:29:53 +0200107
Damjan Marion8389fb92017-10-13 18:29:53 +0200108}
109
110/* *INDENT-OFF* */
111VLIB_CLI_COMMAND (tap_create_command, static) = {
112 .path = "create tap",
Damjan Marion2df39092017-12-04 20:03:37 +0100113 .short_help = "create tap {id <if-id>} [hw-addr <mac-address>] "
Damjan Marion91c6ef72017-12-01 13:34:24 +0100114 "[rx-ring-size <size>] [tx-ring-size <size>] [host-ns <netns>] "
115 "[host-bridge <bridge-name>] [host-ip4-addr <ip4addr/mask>] "
Damjan Marion7866c452018-01-18 13:35:11 +0100116 "[host-ip6-addr <ip6-addr>] [host-ip4-gw <ip4-addr>] "
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200117 "[host-ip6-gw <ip6-addr>] [host-if-name <name>] [no-gso|gso]",
Damjan Marion8389fb92017-10-13 18:29:53 +0200118 .function = tap_create_command_fn,
119};
120/* *INDENT-ON* */
121
122static clib_error_t *
123tap_delete_command_fn (vlib_main_t * vm, unformat_input_t * input,
124 vlib_cli_command_t * cmd)
125{
126 unformat_input_t _line_input, *line_input = &_line_input;
127 u32 sw_if_index = ~0;
128 vnet_main_t *vnm = vnet_get_main ();
129 int rv;
130
131 /* Get a line of input. */
132 if (!unformat_user (input, unformat_line_input, line_input))
133 return clib_error_return (0, "Missing <interface>");
134
135 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
136 {
137 if (unformat (line_input, "sw_if_index %d", &sw_if_index))
138 ;
139 else if (unformat (line_input, "%U", unformat_vnet_sw_interface,
140 vnm, &sw_if_index))
141 ;
142 else
143 return clib_error_return (0, "unknown input `%U'",
144 format_unformat_error, input);
145 }
146 unformat_free (line_input);
147
148 if (sw_if_index == ~0)
149 return clib_error_return (0,
150 "please specify interface name or sw_if_index");
151
152 rv = tap_delete_if (vm, sw_if_index);
153 if (rv == VNET_API_ERROR_INVALID_SW_IF_INDEX)
154 return clib_error_return (0, "not a tap interface");
155 else if (rv != 0)
156 return clib_error_return (0, "error on deleting tap interface");
157
158 return 0;
159}
160
161/* *INDENT-OFF* */
162VLIB_CLI_COMMAND (tap_delete__command, static) =
163{
164 .path = "delete tap",
165 .short_help = "delete tap {<interface> | sw_if_index <sw_idx>}",
166 .function = tap_delete_command_fn,
167};
168/* *INDENT-ON* */
169
170static clib_error_t *
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200171tap_gso_command_fn (vlib_main_t * vm, unformat_input_t * input,
172 vlib_cli_command_t * cmd)
173{
174 unformat_input_t _line_input, *line_input = &_line_input;
175 u32 sw_if_index = ~0;
176 vnet_main_t *vnm = vnet_get_main ();
177 int enable = 1;
178 int rv;
179
180 /* Get a line of input. */
181 if (!unformat_user (input, unformat_line_input, line_input))
182 return clib_error_return (0, "Missing <interface>");
183
184 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
185 {
186 if (unformat (line_input, "sw_if_index %d", &sw_if_index))
187 ;
188 else if (unformat (line_input, "%U", unformat_vnet_sw_interface,
189 vnm, &sw_if_index))
190 ;
191 else if (unformat (line_input, "enable"))
192 enable = 1;
193 else if (unformat (line_input, "disable"))
194 enable = 0;
195 else
196 return clib_error_return (0, "unknown input `%U'",
197 format_unformat_error, input);
198 }
199 unformat_free (line_input);
200
201 if (sw_if_index == ~0)
202 return clib_error_return (0,
203 "please specify interface name or sw_if_index");
204
205 rv = tap_gso_enable_disable (vm, sw_if_index, enable);
206 if (rv == VNET_API_ERROR_INVALID_SW_IF_INDEX)
207 return clib_error_return (0, "not a tap interface");
208 else if (rv != 0)
209 return clib_error_return (0, "error on configuring GSO on tap interface");
210
211 return 0;
212}
213
214/* *INDENT-OFF* */
215VLIB_CLI_COMMAND (tap_gso__command, static) =
216{
217 .path = "set tap gso",
218 .short_help = "set tap gso {<interface> | sw_if_index <sw_idx>} <enable|disable>",
219 .function = tap_gso_command_fn,
220};
221/* *INDENT-ON* */
222
223static clib_error_t *
Damjan Marion8389fb92017-10-13 18:29:53 +0200224tap_show_command_fn (vlib_main_t * vm, unformat_input_t * input,
225 vlib_cli_command_t * cmd)
226{
227 virtio_main_t *mm = &virtio_main;
228 virtio_if_t *vif;
229 vnet_main_t *vnm = vnet_get_main ();
230 int show_descr = 0;
231 clib_error_t *error = 0;
232 u32 hw_if_index, *hw_if_indices = 0;
Damjan Marion8389fb92017-10-13 18:29:53 +0200233
234 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
235 {
236 if (unformat
237 (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
238 vec_add1 (hw_if_indices, hw_if_index);
239 else if (unformat (input, "descriptors"))
240 show_descr = 1;
241 else
242 {
243 error = clib_error_return (0, "unknown input `%U'",
244 format_unformat_error, input);
245 goto done;
246 }
247 }
248
249 if (vec_len (hw_if_indices) == 0)
250 {
251 /* *INDENT-OFF* */
252 pool_foreach (vif, mm->interfaces,
253 vec_add1 (hw_if_indices, vif->hw_if_index);
254 );
255 /* *INDENT-ON* */
256 }
257
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200258 virtio_show (vm, hw_if_indices, show_descr, VIRTIO_IF_TYPE_TAP);
259
Damjan Marion8389fb92017-10-13 18:29:53 +0200260done:
261 vec_free (hw_if_indices);
262 return error;
263}
264
265/* *INDENT-OFF* */
266VLIB_CLI_COMMAND (tap_show_command, static) = {
267 .path = "show tap",
268 .short_help = "show tap {<interface>] [descriptors]",
269 .function = tap_show_command_fn,
270};
271/* *INDENT-ON* */
272
273clib_error_t *
274tap_cli_init (vlib_main_t * vm)
275{
276 return 0;
277}
278
279VLIB_INIT_FUNCTION (tap_cli_init);
280
281/*
282 * fd.io coding-style-patch-verification: ON
283 *
284 * Local Variables:
285 * eval: (c-set-style "gnu")
286 * End:
287 */