tap gso: experimental support
[vpp.git] / src / vnet / devices / tap / cli.c
1 /*
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>
25 #include <vnet/ip/ip4_packet.h>
26 #include <vnet/ip/ip6_packet.h>
27 #include <vnet/ip/format.h>
28 #include <linux/virtio_net.h>
29 #include <linux/vhost.h>
30 #include <vnet/devices/virtio/virtio.h>
31 #include <vnet/devices/tap/tap.h>
32
33 static clib_error_t *
34 tap_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;
38   tap_create_if_args_t args = { 0 };
39   int ip_addr_set = 0;
40
41   args.id = ~0;
42   args.tap_flags = 0;
43
44   /* Get a line of input. */
45   if (unformat_user (input, unformat_line_input, line_input))
46     {
47       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;
65           else if (unformat (line_input, "host-ip4-gw %U",
66                              unformat_ip4_address, &args.host_ip4_gw))
67             args.host_ip4_gw_set = 1;
68           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;
72           else if (unformat (line_input, "host-ip6-gw %U",
73                              unformat_ip6_address, &args.host_ip6_gw))
74             args.host_ip6_gw_set = 1;
75           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             ;
79           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;
83           else if (unformat (line_input, "hw-addr %U",
84                              unformat_ethernet_address, args.mac_addr))
85             args.mac_addr_set = 1;
86           else
87             {
88               unformat_free (line_input);
89               return clib_error_return (0, "unknown input `%U'",
90                                         format_unformat_error, input);
91             }
92         }
93       unformat_free (line_input);
94     }
95
96   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);
101
102   vec_free (args.host_if_name);
103   vec_free (args.host_namespace);
104   vec_free (args.host_bridge);
105
106   return args.error;
107
108 }
109
110 /* *INDENT-OFF* */
111 VLIB_CLI_COMMAND (tap_create_command, static) = {
112   .path = "create tap",
113   .short_help = "create tap {id <if-id>} [hw-addr <mac-address>] "
114     "[rx-ring-size <size>] [tx-ring-size <size>] [host-ns <netns>] "
115     "[host-bridge <bridge-name>] [host-ip4-addr <ip4addr/mask>] "
116     "[host-ip6-addr <ip6-addr>] [host-ip4-gw <ip4-addr>] "
117     "[host-ip6-gw <ip6-addr>] [host-if-name <name>] [no-gso|gso]",
118   .function = tap_create_command_fn,
119 };
120 /* *INDENT-ON* */
121
122 static clib_error_t *
123 tap_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* */
162 VLIB_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
170 static clib_error_t *
171 tap_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* */
215 VLIB_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
223 static clib_error_t *
224 tap_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;
233
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
258   virtio_show (vm, hw_if_indices, show_descr, VIRTIO_IF_TYPE_TAP);
259
260 done:
261   vec_free (hw_if_indices);
262   return error;
263 }
264
265 /* *INDENT-OFF* */
266 VLIB_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
273 clib_error_t *
274 tap_cli_init (vlib_main_t * vm)
275 {
276   return 0;
277 }
278
279 VLIB_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  */