blob: 443a1d5c7371f5576f9b97d57bcf857121fd66b8 [file] [log] [blame]
Damjan Marion83243a02016-02-29 13:09:30 +01001/*
2 *------------------------------------------------------------------
3 * af_packet.c - linux kernel packet interface
4 *
5 * Copyright (c) 2016 Cisco and/or its affiliates.
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at:
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *------------------------------------------------------------------
18 */
19
20#include <fcntl.h> /* for open */
21#include <sys/ioctl.h>
22#include <sys/socket.h>
23#include <sys/stat.h>
24#include <sys/types.h>
25#include <sys/uio.h> /* for iovec */
26#include <netinet/in.h>
27
28#include <vlib/vlib.h>
29#include <vlib/unix/unix.h>
30#include <vnet/ip/ip.h>
31#include <vnet/ethernet/ethernet.h>
32
33#include <vnet/devices/af_packet/af_packet.h>
34
Billy McFalla1b99da2017-01-06 12:40:14 -050035/**
36 * @file
37 * @brief CLI for Host Interface Device Driver.
38 *
39 * This file contains the source code for CLI for the host interface.
40 */
41
Damjan Marion83243a02016-02-29 13:09:30 +010042static clib_error_t *
43af_packet_create_command_fn (vlib_main_t * vm, unformat_input_t * input,
44 vlib_cli_command_t * cmd)
45{
Damjan Marion00a9dca2016-08-17 17:05:46 +020046 unformat_input_t _line_input, *line_input = &_line_input;
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +020047 af_packet_create_if_arg_t _arg, *arg = &_arg;
Billy McFalla9a20e72017-02-15 11:39:12 -050048 clib_error_t *error = NULL;
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +020049 u8 hwaddr[6];
50 int r;
51
52 clib_memset (arg, 0, sizeof (*arg));
Damjan Marion83243a02016-02-29 13:09:30 +010053
Mohsin Kazmicae84fa2021-10-08 15:10:49 +000054 // Default mode
55 arg->mode = AF_PACKET_IF_MODE_ETHERNET;
56
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +000057 // Default number of rx/tx queue(s)
58 arg->num_rxqs = 1;
59 arg->num_txqs = 1;
60
Mohsin Kazmi2b6479c2022-04-05 12:03:47 +000061 // Default flags
62 arg->flags = AF_PACKET_IF_FLAGS_QDISC_BYPASS;
63
Damjan Marion83243a02016-02-29 13:09:30 +010064 /* Get a line of input. */
Damjan Marion00a9dca2016-08-17 17:05:46 +020065 if (!unformat_user (input, unformat_line_input, line_input))
Damjan Marion83243a02016-02-29 13:09:30 +010066 return 0;
67
68 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
69 {
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +020070 if (unformat (line_input, "name %s", &arg->host_if_name))
Damjan Marion83243a02016-02-29 13:09:30 +010071 ;
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +020072 else if (unformat (line_input, "rx-size %u", &arg->rx_frame_size))
73 ;
74 else if (unformat (line_input, "tx-size %u", &arg->tx_frame_size))
75 ;
76 else if (unformat (line_input, "rx-per-block %u",
77 &arg->rx_frames_per_block))
78 ;
79 else if (unformat (line_input, "tx-per-block %u",
80 &arg->tx_frames_per_block))
81 ;
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +000082 else if (unformat (line_input, "num-rx-queues %u", &arg->num_rxqs))
83 ;
84 else if (unformat (line_input, "num-tx-queues %u", &arg->num_txqs))
85 ;
Mohsin Kazmi2b6479c2022-04-05 12:03:47 +000086 else if (unformat (line_input, "qdisc-bypass-disable"))
87 arg->flags &= ~AF_PACKET_IF_FLAGS_QDISC_BYPASS;
Mohsin Kazmicae84fa2021-10-08 15:10:49 +000088 else if (unformat (line_input, "mode ip"))
89 arg->mode = AF_PACKET_IF_MODE_IP;
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +020090 else if (unformat (line_input, "hw-addr %U", unformat_ethernet_address,
91 hwaddr))
92 arg->hw_addr = hwaddr;
Damjan Marion83243a02016-02-29 13:09:30 +010093 else
Billy McFalla9a20e72017-02-15 11:39:12 -050094 {
95 error = clib_error_return (0, "unknown input `%U'",
96 format_unformat_error, line_input);
97 goto done;
98 }
Damjan Marion83243a02016-02-29 13:09:30 +010099 }
Damjan Marion83243a02016-02-29 13:09:30 +0100100
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200101 if (arg->host_if_name == NULL)
Billy McFalla9a20e72017-02-15 11:39:12 -0500102 {
103 error = clib_error_return (0, "missing host interface name");
104 goto done;
105 }
Damjan Marion83243a02016-02-29 13:09:30 +0100106
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200107 r = af_packet_create_if (arg);
Damjan Marion83243a02016-02-29 13:09:30 +0100108
109 if (r == VNET_API_ERROR_SYSCALL_ERROR_1)
Billy McFalla9a20e72017-02-15 11:39:12 -0500110 {
111 error = clib_error_return (0, "%s (errno %d)", strerror (errno), errno);
112 goto done;
113 }
Damjan Marion83243a02016-02-29 13:09:30 +0100114
115 if (r == VNET_API_ERROR_INVALID_INTERFACE)
Billy McFalla9a20e72017-02-15 11:39:12 -0500116 {
117 error = clib_error_return (0, "Invalid interface name");
118 goto done;
119 }
Damjan Marion83243a02016-02-29 13:09:30 +0100120
121 if (r == VNET_API_ERROR_SUBIF_ALREADY_EXISTS)
Billy McFalla9a20e72017-02-15 11:39:12 -0500122 {
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700123 error = clib_error_return (0, "Interface already exists");
Billy McFalla9a20e72017-02-15 11:39:12 -0500124 goto done;
125 }
Damjan Marion83243a02016-02-29 13:09:30 +0100126
Damjan Marion00a9dca2016-08-17 17:05:46 +0200127 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name, vnet_get_main (),
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200128 arg->sw_if_index);
Billy McFalla9a20e72017-02-15 11:39:12 -0500129
130done:
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200131 vec_free (arg->host_if_name);
Billy McFalla9a20e72017-02-15 11:39:12 -0500132 unformat_free (line_input);
133
134 return error;
Damjan Marion83243a02016-02-29 13:09:30 +0100135}
136
Billy McFalla1b99da2017-01-06 12:40:14 -0500137/*?
138 * Create a host interface that will attach to a linux AF_PACKET
139 * interface, one side of a veth pair. The veth pair must already
140 * exist. Once created, a new host interface will exist in VPP
141 * with the name '<em>host-<ifname></em>', where '<em><ifname></em>'
142 * is the name of the specified veth pair. Use the
Dave Barach13ad1f02017-03-26 19:36:18 -0400143 * '<em>show interface</em>' command to display host interface details.
Billy McFalla1b99da2017-01-06 12:40:14 -0500144 *
Billy McFall2d0b6e32017-01-11 08:44:52 -0500145 * This command has the following optional parameters:
146 *
147 * - <b>hw-addr <mac-addr></b> - Optional ethernet address, can be in either
148 * X:X:X:X:X:X unix or X.X.X cisco format.
149 *
Billy McFalla1b99da2017-01-06 12:40:14 -0500150 * @cliexpar
151 * Example of how to create a host interface tied to one side of an
152 * existing linux veth pair named vpp1:
153 * @cliexstart{create host-interface name vpp1}
154 * host-vpp1
155 * @cliexend
156 * Once the host interface is created, enable the interface using:
157 * @cliexcmd{set interface state host-vpp1 up}
158?*/
Damjan Marion83243a02016-02-29 13:09:30 +0100159VLIB_CLI_COMMAND (af_packet_create_command, static) = {
160 .path = "create host-interface",
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000161 .short_help = "create host-interface name <ifname> [num-rx-queues <n>] "
Mohsin Kazmi2b6479c2022-04-05 12:03:47 +0000162 "[num-tx-queues <n>] [hw-addr <mac-addr>] [mode ip] "
163 "[qdisc-bypass-disable]",
Damjan Marion83243a02016-02-29 13:09:30 +0100164 .function = af_packet_create_command_fn,
165};
166
Peter Leidba76f22016-04-08 08:16:31 -0700167static clib_error_t *
168af_packet_delete_command_fn (vlib_main_t * vm, unformat_input_t * input,
Damjan Marion00a9dca2016-08-17 17:05:46 +0200169 vlib_cli_command_t * cmd)
Peter Leidba76f22016-04-08 08:16:31 -0700170{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200171 unformat_input_t _line_input, *line_input = &_line_input;
172 u8 *host_if_name = NULL;
Billy McFalla9a20e72017-02-15 11:39:12 -0500173 clib_error_t *error = NULL;
Peter Leidba76f22016-04-08 08:16:31 -0700174
175 /* Get a line of input. */
Damjan Marion00a9dca2016-08-17 17:05:46 +0200176 if (!unformat_user (input, unformat_line_input, line_input))
Peter Leidba76f22016-04-08 08:16:31 -0700177 return 0;
178
179 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
180 {
181 if (unformat (line_input, "name %s", &host_if_name))
Damjan Marion00a9dca2016-08-17 17:05:46 +0200182 ;
Peter Leidba76f22016-04-08 08:16:31 -0700183 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500184 {
185 error = clib_error_return (0, "unknown input `%U'",
186 format_unformat_error, line_input);
187 goto done;
188 }
Peter Leidba76f22016-04-08 08:16:31 -0700189 }
Peter Leidba76f22016-04-08 08:16:31 -0700190
191 if (host_if_name == NULL)
Billy McFalla9a20e72017-02-15 11:39:12 -0500192 {
193 error = clib_error_return (0, "missing host interface name");
194 goto done;
195 }
Peter Leidba76f22016-04-08 08:16:31 -0700196
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200197 af_packet_delete_if (host_if_name);
Peter Leidba76f22016-04-08 08:16:31 -0700198
Billy McFalla9a20e72017-02-15 11:39:12 -0500199done:
200 vec_free (host_if_name);
201 unformat_free (line_input);
202
203 return error;
Peter Leidba76f22016-04-08 08:16:31 -0700204}
205
Billy McFalla1b99da2017-01-06 12:40:14 -0500206/*?
207 * Delete a host interface. Use the linux interface name to identify
208 * the host interface to be deleted. In VPP, host interfaces are
209 * named as '<em>host-<ifname></em>', where '<em><ifname></em>'
210 * is the name of the linux interface.
211 *
212 * @cliexpar
213 * Example of how to delete a host interface named host-vpp1:
214 * @cliexcmd{delete host-interface name vpp1}
215?*/
Peter Leidba76f22016-04-08 08:16:31 -0700216VLIB_CLI_COMMAND (af_packet_delete_command, static) = {
217 .path = "delete host-interface",
Billy McFalla1b99da2017-01-06 12:40:14 -0500218 .short_help = "delete host-interface name <ifname>",
Peter Leidba76f22016-04-08 08:16:31 -0700219 .function = af_packet_delete_command_fn,
220};
221
Jakub Grajciar92b02752017-10-20 13:37:28 +0200222static clib_error_t *
223af_packet_set_l4_cksum_offload_command_fn (vlib_main_t * vm,
224 unformat_input_t * input,
225 vlib_cli_command_t * cmd)
226{
227 unformat_input_t _line_input, *line_input = &_line_input;
228 u8 set = 0;
229 clib_error_t *error = NULL;
230 vnet_main_t *vnm = vnet_get_main ();
231 u32 sw_if_index;
232
233 if (!unformat_user (input, unformat_line_input, line_input))
234 return 0;
235
236 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
237 {
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200238 if (unformat (line_input, "%U", unformat_vnet_sw_interface, vnm,
239 &sw_if_index))
Jakub Grajciar92b02752017-10-20 13:37:28 +0200240 ;
241 else if (unformat (line_input, "on"))
242 set = 1;
243 else if (unformat (line_input, "off"))
244 set = 0;
245 else
246 {
247 error = clib_error_return (0, "unknown input '%U'",
248 format_unformat_error, line_input);
249 goto done;
250 }
251 }
252
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200253 if (af_packet_set_l4_cksum_offload (sw_if_index, set) < 0)
Jakub Grajciar64ae7782017-11-14 13:45:04 +0100254 error = clib_error_return (0, "not an af_packet interface");
Jakub Grajciar92b02752017-10-20 13:37:28 +0200255
256done:
257 unformat_free (line_input);
258 return error;
259}
260
261/*?
262 * Set TCP/UDP offload checksum calculation. Use interface
263 * name to identify the interface to set TCP/UDP offload checksum
264 * calculation.
265 *
266 * @cliexpar
267 * Example of how to set TCP/UDP offload checksum calculation on host-vpp0:
268 * @cliexcmd{set host-interface l4-cksum-offload host-vpp0 off}
269 * @cliexcmd{set host-interface l4-cksum-offload host-vpp0 on}
270?*/
Jakub Grajciar92b02752017-10-20 13:37:28 +0200271VLIB_CLI_COMMAND (af_packet_set_l4_cksum_offload_command, static) = {
272 .path = "set host-interface l4-cksum-offload",
273 .short_help = "set host-interface l4-cksum-offload <host-if-name> <on|off>",
274 .function = af_packet_set_l4_cksum_offload_command_fn,
275};
Jakub Grajciar92b02752017-10-20 13:37:28 +0200276
Damjan Marion83243a02016-02-29 13:09:30 +0100277clib_error_t *
278af_packet_cli_init (vlib_main_t * vm)
279{
280 return 0;
281}
282
283VLIB_INIT_FUNCTION (af_packet_cli_init);
Damjan Marion00a9dca2016-08-17 17:05:46 +0200284
285/*
286 * fd.io coding-style-patch-verification: ON
287 *
288 * Local Variables:
289 * eval: (c-set-style "gnu")
290 * End:
291 */