blob: 9d08c620d9492a46d354bd0d2b8e48b1807ad4ed [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 <linux/if_packet.h>
Ray Kinsella2038ad02017-05-18 11:56:28 +010021#include <sys/socket.h>
Ray Kinsellac855b732017-04-21 12:24:43 +010022#include <sys/ioctl.h>
23#include <net/if.h>
Ray Kinsella2038ad02017-05-18 11:56:28 +010024#include <net/if_arp.h>
Damjan Marion83243a02016-02-29 13:09:30 +010025
26#include <vlib/vlib.h>
27#include <vlib/unix/unix.h>
28#include <vnet/ip/ip.h>
29#include <vnet/ethernet/ethernet.h>
30
31#include <vnet/devices/af_packet/af_packet.h>
32
Chris Luke4b46c842016-05-23 21:30:26 -040033#define foreach_af_packet_tx_func_error \
34_(FRAME_NOT_READY, "tx frame not ready") \
35_(TXRING_EAGAIN, "tx sendto temporary failure") \
36_(TXRING_FATAL, "tx sendto fatal failure") \
37_(TXRING_OVERRUN, "tx ring overrun")
Damjan Marion83243a02016-02-29 13:09:30 +010038
Damjan Marion00a9dca2016-08-17 17:05:46 +020039typedef enum
40{
Damjan Marion83243a02016-02-29 13:09:30 +010041#define _(f,s) AF_PACKET_TX_ERROR_##f,
42 foreach_af_packet_tx_func_error
43#undef _
Damjan Marion00a9dca2016-08-17 17:05:46 +020044 AF_PACKET_TX_N_ERROR,
Damjan Marion83243a02016-02-29 13:09:30 +010045} af_packet_tx_func_error_t;
46
Damjan Marion00a9dca2016-08-17 17:05:46 +020047static char *af_packet_tx_func_error_strings[] = {
Damjan Marion83243a02016-02-29 13:09:30 +010048#define _(n,s) s,
Damjan Marion00a9dca2016-08-17 17:05:46 +020049 foreach_af_packet_tx_func_error
Damjan Marion83243a02016-02-29 13:09:30 +010050#undef _
51};
52
Damjan Marionc5170202017-10-11 14:15:47 +020053
Damjan Marionceab7882018-01-19 20:56:12 +010054u8 *
Damjan Marion00a9dca2016-08-17 17:05:46 +020055format_af_packet_device_name (u8 * s, va_list * args)
Damjan Marion83243a02016-02-29 13:09:30 +010056{
57 u32 i = va_arg (*args, u32);
Damjan Marion00a9dca2016-08-17 17:05:46 +020058 af_packet_main_t *apm = &af_packet_main;
59 af_packet_if_t *apif = pool_elt_at_index (apm->interfaces, i);
Damjan Marion83243a02016-02-29 13:09:30 +010060
61 s = format (s, "host-%s", apif->host_if_name);
62 return s;
63}
64
Damjan Marion00a9dca2016-08-17 17:05:46 +020065static u8 *
66format_af_packet_device (u8 * s, va_list * args)
Damjan Marion83243a02016-02-29 13:09:30 +010067{
68 s = format (s, "Linux PACKET socket interface");
69 return s;
70}
71
Damjan Marion00a9dca2016-08-17 17:05:46 +020072static u8 *
73format_af_packet_tx_trace (u8 * s, va_list * args)
Damjan Marion83243a02016-02-29 13:09:30 +010074{
75 s = format (s, "Unimplemented...");
76 return s;
77}
78
79static uword
80af_packet_interface_tx (vlib_main_t * vm,
Damjan Marion00a9dca2016-08-17 17:05:46 +020081 vlib_node_runtime_t * node, vlib_frame_t * frame)
Damjan Marion83243a02016-02-29 13:09:30 +010082{
Damjan Marion00a9dca2016-08-17 17:05:46 +020083 af_packet_main_t *apm = &af_packet_main;
Damjan Mariona3d59862018-11-10 10:23:00 +010084 u32 *buffers = vlib_frame_vector_args (frame);
Damjan Marion83243a02016-02-29 13:09:30 +010085 u32 n_left = frame->n_vectors;
86 u32 n_sent = 0;
Damjan Marion00a9dca2016-08-17 17:05:46 +020087 vnet_interface_output_runtime_t *rd = (void *) node->runtime_data;
88 af_packet_if_t *apif =
89 pool_elt_at_index (apm->interfaces, rd->dev_instance);
Pierre Pfister8cedff22018-02-07 15:48:21 +010090 clib_spinlock_lock_if_init (&apif->lockp);
Damjan Marion83243a02016-02-29 13:09:30 +010091 int block = 0;
92 u32 block_size = apif->tx_req->tp_block_size;
93 u32 frame_size = apif->tx_req->tp_frame_size;
94 u32 frame_num = apif->tx_req->tp_frame_nr;
Damjan Marion00a9dca2016-08-17 17:05:46 +020095 u8 *block_start = apif->tx_ring + block * block_size;
Damjan Marion83243a02016-02-29 13:09:30 +010096 u32 tx_frame = apif->next_tx_frame;
Damjan Marion00a9dca2016-08-17 17:05:46 +020097 struct tpacket2_hdr *tph;
Damjan Marion83243a02016-02-29 13:09:30 +010098 u32 frame_not_ready = 0;
99
Damjan Marion00a9dca2016-08-17 17:05:46 +0200100 while (n_left > 0)
Damjan Marion83243a02016-02-29 13:09:30 +0100101 {
102 u32 len;
103 u32 offset = 0;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200104 vlib_buffer_t *b0;
Damjan Marion83243a02016-02-29 13:09:30 +0100105 n_left--;
106 u32 bi = buffers[0];
107 buffers++;
108
109 tph = (struct tpacket2_hdr *) (block_start + tx_frame * frame_size);
110
Damjan Marion00a9dca2016-08-17 17:05:46 +0200111 if (PREDICT_FALSE
112 (tph->tp_status & (TP_STATUS_SEND_REQUEST | TP_STATUS_SENDING)))
Damjan Marion83243a02016-02-29 13:09:30 +0100113 {
114 frame_not_ready++;
115 goto next;
116 }
117
118 do
119 {
120 b0 = vlib_get_buffer (vm, bi);
121 len = b0->current_length;
Dave Barach178cf492018-11-13 16:34:13 -0500122 clib_memcpy_fast ((u8 *) tph +
123 TPACKET_ALIGN (sizeof (struct tpacket2_hdr)) +
124 offset, vlib_buffer_get_current (b0), len);
Damjan Marion83243a02016-02-29 13:09:30 +0100125 offset += len;
126 }
Jim Gibson22db11b2017-03-27 19:46:12 +0000127 while ((bi =
128 (b0->flags & VLIB_BUFFER_NEXT_PRESENT) ? b0->next_buffer : 0));
Damjan Marion83243a02016-02-29 13:09:30 +0100129
130 tph->tp_len = tph->tp_snaplen = offset;
131 tph->tp_status = TP_STATUS_SEND_REQUEST;
132 n_sent++;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200133 next:
Florin Coras837503c2017-11-28 11:59:20 -0800134 tx_frame = (tx_frame + 1) % frame_num;
135
Chris Luke4b46c842016-05-23 21:30:26 -0400136 /* check if we've exhausted the ring */
Damjan Marion00a9dca2016-08-17 17:05:46 +0200137 if (PREDICT_FALSE (frame_not_ready + n_sent == frame_num))
138 break;
Damjan Marion83243a02016-02-29 13:09:30 +0100139 }
140
Damjan Marion00a9dca2016-08-17 17:05:46 +0200141 CLIB_MEMORY_BARRIER ();
Damjan Marion83243a02016-02-29 13:09:30 +0100142
Damjan Marion00a9dca2016-08-17 17:05:46 +0200143 if (PREDICT_TRUE (n_sent))
Damjan Marion83243a02016-02-29 13:09:30 +0100144 {
145 apif->next_tx_frame = tx_frame;
Chris Luke4b46c842016-05-23 21:30:26 -0400146
Damjan Marion00a9dca2016-08-17 17:05:46 +0200147 if (PREDICT_FALSE (sendto (apif->fd, NULL, 0,
148 MSG_DONTWAIT, NULL, 0) == -1))
149 {
150 /* Uh-oh, drop & move on, but count whether it was fatal or not.
151 * Note that we have no reliable way to properly determine the
152 * disposition of the packets we just enqueued for delivery.
153 */
154 vlib_error_count (vm, node->node_index,
155 unix_error_is_fatal (errno) ?
156 AF_PACKET_TX_ERROR_TXRING_FATAL :
157 AF_PACKET_TX_ERROR_TXRING_EAGAIN, n_sent);
158 }
Damjan Marion83243a02016-02-29 13:09:30 +0100159 }
160
Damjan Marion1927da22017-03-27 17:08:20 +0200161 clib_spinlock_unlock_if_init (&apif->lockp);
Mohsin KAZMIcf751ec2017-01-18 11:59:45 +0100162
Damjan Marion00a9dca2016-08-17 17:05:46 +0200163 if (PREDICT_FALSE (frame_not_ready))
164 vlib_error_count (vm, node->node_index,
165 AF_PACKET_TX_ERROR_FRAME_NOT_READY, frame_not_ready);
Chris Luke4b46c842016-05-23 21:30:26 -0400166
Damjan Marion00a9dca2016-08-17 17:05:46 +0200167 if (PREDICT_FALSE (frame_not_ready + n_sent == frame_num))
Chris Luke4b46c842016-05-23 21:30:26 -0400168 vlib_error_count (vm, node->node_index, AF_PACKET_TX_ERROR_TXRING_OVERRUN,
Damjan Marion00a9dca2016-08-17 17:05:46 +0200169 n_left);
Damjan Marion83243a02016-02-29 13:09:30 +0100170
Damjan Mariona3d59862018-11-10 10:23:00 +0100171 vlib_buffer_free (vm, vlib_frame_vector_args (frame), frame->n_vectors);
Damjan Marion83243a02016-02-29 13:09:30 +0100172 return frame->n_vectors;
173}
174
175static void
Damjan Marion00a9dca2016-08-17 17:05:46 +0200176af_packet_set_interface_next_node (vnet_main_t * vnm, u32 hw_if_index,
177 u32 node_index)
Damjan Marion83243a02016-02-29 13:09:30 +0100178{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200179 af_packet_main_t *apm = &af_packet_main;
Damjan Marion83243a02016-02-29 13:09:30 +0100180 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
Damjan Marion00a9dca2016-08-17 17:05:46 +0200181 af_packet_if_t *apif =
182 pool_elt_at_index (apm->interfaces, hw->dev_instance);
Damjan Marion83243a02016-02-29 13:09:30 +0100183
184 /* Shut off redirection */
185 if (node_index == ~0)
186 {
187 apif->per_interface_next_index = node_index;
188 return;
189 }
190
191 apif->per_interface_next_index =
Damjan Marion00a9dca2016-08-17 17:05:46 +0200192 vlib_node_add_next (vlib_get_main (), af_packet_input_node.index,
193 node_index);
Damjan Marion83243a02016-02-29 13:09:30 +0100194}
195
Damjan Marion00a9dca2016-08-17 17:05:46 +0200196static void
197af_packet_clear_hw_interface_counters (u32 instance)
Damjan Marion83243a02016-02-29 13:09:30 +0100198{
199 /* Nothing for now */
200}
201
202static clib_error_t *
Damjan Marion00a9dca2016-08-17 17:05:46 +0200203af_packet_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index,
204 u32 flags)
Damjan Marion83243a02016-02-29 13:09:30 +0100205{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200206 af_packet_main_t *apm = &af_packet_main;
Damjan Marion83243a02016-02-29 13:09:30 +0100207 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
Damjan Marion00a9dca2016-08-17 17:05:46 +0200208 af_packet_if_t *apif =
209 pool_elt_at_index (apm->interfaces, hw->dev_instance);
Alpesh Patel83cc4e12016-04-05 12:49:30 -0700210 u32 hw_flags;
Ray Kinsellac855b732017-04-21 12:24:43 +0100211 int rv, fd = socket (AF_UNIX, SOCK_DGRAM, 0);
212 struct ifreq ifr;
213
Ray Kinsellae6cc9cc2017-05-20 13:42:30 +0100214 if (0 > fd)
215 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200216 vlib_log_warn (apm->log_class, "af_packet_%s could not open socket",
217 apif->host_if_name);
Ray Kinsellae6cc9cc2017-05-20 13:42:30 +0100218 return 0;
219 }
220
Ray Kinsellac855b732017-04-21 12:24:43 +0100221 /* if interface is a bridge ignore */
222 if (apif->host_if_index < 0)
Ray Kinsella2038ad02017-05-18 11:56:28 +0100223 goto error; /* no error */
Ray Kinsellac855b732017-04-21 12:24:43 +0100224
225 /* use host_if_index in case host name has changed */
226 ifr.ifr_ifindex = apif->host_if_index;
227 if ((rv = ioctl (fd, SIOCGIFNAME, &ifr)) < 0)
228 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200229 vlib_log_warn (apm->log_class,
230 "af_packet_%s ioctl could not retrieve eth name",
231 apif->host_if_name);
Ray Kinsella2038ad02017-05-18 11:56:28 +0100232 goto error;
Ray Kinsellac855b732017-04-21 12:24:43 +0100233 }
Damjan Marion83243a02016-02-29 13:09:30 +0100234
235 apif->is_admin_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
236
Ray Kinsellac855b732017-04-21 12:24:43 +0100237 if ((rv = ioctl (fd, SIOCGIFFLAGS, &ifr)) < 0)
238 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200239 vlib_log_warn (apm->log_class, "af_packet_%s error: %d",
240 apif->is_admin_up ? "up" : "down", rv);
Ray Kinsella2038ad02017-05-18 11:56:28 +0100241 goto error;
Ray Kinsellac855b732017-04-21 12:24:43 +0100242 }
243
Alpesh Patel83cc4e12016-04-05 12:49:30 -0700244 if (apif->is_admin_up)
Ray Kinsellac855b732017-04-21 12:24:43 +0100245 {
246 hw_flags = VNET_HW_INTERFACE_FLAG_LINK_UP;
247 ifr.ifr_flags |= IFF_UP;
248 }
Alpesh Patel83cc4e12016-04-05 12:49:30 -0700249 else
Ray Kinsellac855b732017-04-21 12:24:43 +0100250 {
251 hw_flags = 0;
252 ifr.ifr_flags &= ~IFF_UP;
253 }
254
255 if ((rv = ioctl (fd, SIOCSIFFLAGS, &ifr)) < 0)
256 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200257 vlib_log_warn (apm->log_class, "af_packet_%s error: %d",
258 apif->is_admin_up ? "up" : "down", rv);
Ray Kinsella2038ad02017-05-18 11:56:28 +0100259 goto error;
Ray Kinsellac855b732017-04-21 12:24:43 +0100260 }
Alpesh Patel83cc4e12016-04-05 12:49:30 -0700261
Damjan Marion00a9dca2016-08-17 17:05:46 +0200262 vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
Alpesh Patel83cc4e12016-04-05 12:49:30 -0700263
Ray Kinsella2038ad02017-05-18 11:56:28 +0100264error:
Ray Kinsellae6cc9cc2017-05-20 13:42:30 +0100265 if (0 <= fd)
266 close (fd);
Ray Kinsellac855b732017-04-21 12:24:43 +0100267
268 return 0; /* no error */
Damjan Marion83243a02016-02-29 13:09:30 +0100269}
270
271static clib_error_t *
272af_packet_subif_add_del_function (vnet_main_t * vnm,
Damjan Marion00a9dca2016-08-17 17:05:46 +0200273 u32 hw_if_index,
274 struct vnet_sw_interface_t *st, int is_add)
Damjan Marion83243a02016-02-29 13:09:30 +0100275{
276 /* Nothing for now */
277 return 0;
278}
279
Ray Kinsella2038ad02017-05-18 11:56:28 +0100280static clib_error_t *af_packet_set_mac_address_function
Neale Ranns3b81a1e2018-09-06 09:50:26 -0700281 (struct vnet_hw_interface_t *hi, const u8 * old_address, const u8 * address)
Ray Kinsella2038ad02017-05-18 11:56:28 +0100282{
283 af_packet_main_t *apm = &af_packet_main;
284 af_packet_if_t *apif =
285 pool_elt_at_index (apm->interfaces, hi->dev_instance);
286 int rv, fd = socket (AF_UNIX, SOCK_DGRAM, 0);
287 struct ifreq ifr;
288
Ray Kinsellae6cc9cc2017-05-20 13:42:30 +0100289 if (0 > fd)
290 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200291 vlib_log_warn (apm->log_class, "af_packet_%s could not open socket",
292 apif->host_if_name);
Ray Kinsellae6cc9cc2017-05-20 13:42:30 +0100293 return 0;
294 }
295
Ray Kinsella2038ad02017-05-18 11:56:28 +0100296 /* if interface is a bridge ignore */
297 if (apif->host_if_index < 0)
298 goto error; /* no error */
299
300 /* use host_if_index in case host name has changed */
301 ifr.ifr_ifindex = apif->host_if_index;
302 if ((rv = ioctl (fd, SIOCGIFNAME, &ifr)) < 0)
303 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200304 vlib_log_warn
305 (apm->log_class,
306 "af_packet_%s ioctl could not retrieve eth name, error: %d",
Ray Kinsella2038ad02017-05-18 11:56:28 +0100307 apif->host_if_name, rv);
308 goto error;
309 }
310
311 clib_memcpy (ifr.ifr_hwaddr.sa_data, address, 6);
312 ifr.ifr_hwaddr.sa_family = ARPHRD_ETHER;
313
314 if ((rv = ioctl (fd, SIOCSIFHWADDR, &ifr)) < 0)
315 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200316 vlib_log_warn (apm->log_class,
317 "af_packet_%s ioctl could not set mac, error: %d",
318 apif->host_if_name, rv);
Ray Kinsella2038ad02017-05-18 11:56:28 +0100319 goto error;
320 }
321
322error:
Ray Kinsellae6cc9cc2017-05-20 13:42:30 +0100323
324 if (0 <= fd)
325 close (fd);
Ray Kinsella2038ad02017-05-18 11:56:28 +0100326
327 return 0; /* no error */
328}
329
Damjan Marion00a9dca2016-08-17 17:05:46 +0200330/* *INDENT-OFF* */
Damjan Marion83243a02016-02-29 13:09:30 +0100331VNET_DEVICE_CLASS (af_packet_device_class) = {
332 .name = "af-packet",
333 .tx_function = af_packet_interface_tx,
334 .format_device_name = format_af_packet_device_name,
335 .format_device = format_af_packet_device,
336 .format_tx_trace = format_af_packet_tx_trace,
337 .tx_function_n_errors = AF_PACKET_TX_N_ERROR,
338 .tx_function_error_strings = af_packet_tx_func_error_strings,
339 .rx_redirect_to_node = af_packet_set_interface_next_node,
340 .clear_counters = af_packet_clear_hw_interface_counters,
341 .admin_up_down_function = af_packet_interface_admin_up_down,
342 .subif_add_del_function = af_packet_subif_add_del_function,
Ray Kinsella2038ad02017-05-18 11:56:28 +0100343 .mac_addr_change_function = af_packet_set_mac_address_function,
Alpesh Patel83cc4e12016-04-05 12:49:30 -0700344};
Damjan Marion1c80e832016-05-11 23:07:18 +0200345
346VLIB_DEVICE_TX_FUNCTION_MULTIARCH (af_packet_device_class,
347 af_packet_interface_tx)
Damjan Marion00a9dca2016-08-17 17:05:46 +0200348/* *INDENT-ON* */
349
350/*
351 * fd.io coding-style-patch-verification: ON
352 *
353 * Local Variables:
354 * eval: (c-set-style "gnu")
355 * End:
356 */