blob: 724924f5f4b1f7ca3456f442f1398850a1e38694 [file] [log] [blame]
Damjan Marionc5170202017-10-11 14:15:47 +02001/*
2 *------------------------------------------------------------------
Damjan Marion83243a02016-02-29 13:09:30 +01003 * 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>
21
22#include <vlib/vlib.h>
23#include <vlib/unix/unix.h>
24#include <vnet/ip/ip.h>
25#include <vnet/ethernet/ethernet.h>
Mohammed Hawari85c19432020-12-18 16:29:45 +010026#include <vnet/interface/rx_queue_funcs.h>
Damjan Marion22311502016-10-28 20:30:15 +020027#include <vnet/feature/feature.h>
Jakub Grajciar92b02752017-10-20 13:37:28 +020028#include <vnet/ethernet/packet.h>
Damjan Marion83243a02016-02-29 13:09:30 +010029
30#include <vnet/devices/af_packet/af_packet.h>
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +000031#include <vnet/devices/virtio/virtio_std.h>
Damjan Marion83243a02016-02-29 13:09:30 +010032
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +000033#define foreach_af_packet_input_error \
34 _ (PARTIAL_PKT, "partial packet") \
35 _ (TIMEDOUT_BLK, "timed out block") \
36 _ (TOTAL_RECV_BLK, "total received block")
Damjan Marion00a9dca2016-08-17 17:05:46 +020037typedef enum
38{
Damjan Marion83243a02016-02-29 13:09:30 +010039#define _(f,s) AF_PACKET_INPUT_ERROR_##f,
40 foreach_af_packet_input_error
41#undef _
Damjan Marion00a9dca2016-08-17 17:05:46 +020042 AF_PACKET_INPUT_N_ERROR,
Damjan Marion83243a02016-02-29 13:09:30 +010043} af_packet_input_error_t;
44
Damjan Marion00a9dca2016-08-17 17:05:46 +020045static char *af_packet_input_error_strings[] = {
Damjan Marion83243a02016-02-29 13:09:30 +010046#define _(n,s) s,
Damjan Marion00a9dca2016-08-17 17:05:46 +020047 foreach_af_packet_input_error
Damjan Marion83243a02016-02-29 13:09:30 +010048#undef _
49};
50
Damjan Marion00a9dca2016-08-17 17:05:46 +020051typedef struct
52{
Damjan Marion83243a02016-02-29 13:09:30 +010053 u32 next_index;
54 u32 hw_if_index;
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +000055 u16 queue_id;
Damjan Marion83243a02016-02-29 13:09:30 +010056 int block;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +000057 u32 pkt_num;
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +000058 void *block_start;
59 block_desc_t bd;
Mohsin Kazmi8b90d892022-09-08 17:21:20 +000060 union
61 {
62 tpacket3_hdr_t tph3;
63 tpacket2_hdr_t tph2;
64 };
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +000065 vnet_virtio_net_hdr_t vnet_hdr;
Mohsin Kazmi8b90d892022-09-08 17:21:20 +000066 u8 is_v3;
Damjan Marion83243a02016-02-29 13:09:30 +010067} af_packet_input_trace_t;
68
Damjan Marion00a9dca2016-08-17 17:05:46 +020069static u8 *
70format_af_packet_input_trace (u8 * s, va_list * args)
Damjan Marion83243a02016-02-29 13:09:30 +010071{
72 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
73 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Damjan Marion00a9dca2016-08-17 17:05:46 +020074 af_packet_input_trace_t *t = va_arg (*args, af_packet_input_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +020075 u32 indent = format_get_indent (s);
Damjan Marion83243a02016-02-29 13:09:30 +010076
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +000077 s = format (s, "af_packet: hw_if_index %d rx-queue %u next-index %d",
78 t->hw_if_index, t->queue_id, t->next_index);
Damjan Marion83243a02016-02-29 13:09:30 +010079
Mohsin Kazmi8b90d892022-09-08 17:21:20 +000080 if (t->is_v3)
81 {
82 s = format (
83 s, "\n%Ublock %u:\n%Uaddress %p version %u seq_num %lu pkt_num %u",
84 format_white_space, indent + 2, t->block, format_white_space,
85 indent + 4, t->block_start, t->bd.version, t->bd.hdr.bh1.seq_num,
86 t->pkt_num);
87 s = format (
88 s,
89 "\n%Utpacket3_hdr:\n%Ustatus 0x%x len %u snaplen %u mac %u net %u"
90 "\n%Usec 0x%x nsec 0x%x vlan %U"
Damjan Marion83243a02016-02-29 13:09:30 +010091#ifdef TP_STATUS_VLAN_TPID_VALID
Mohsin Kazmi8b90d892022-09-08 17:21:20 +000092 " vlan_tpid %u"
Damjan Marion83243a02016-02-29 13:09:30 +010093#endif
Mohsin Kazmi8b90d892022-09-08 17:21:20 +000094 ,
95 format_white_space, indent + 2, format_white_space, indent + 4,
96 t->tph3.tp_status, t->tph3.tp_len, t->tph3.tp_snaplen, t->tph3.tp_mac,
97 t->tph3.tp_net, format_white_space, indent + 4, t->tph3.tp_sec,
98 t->tph3.tp_nsec, format_ethernet_vlan_tci, t->tph3.hv1.tp_vlan_tci
Damjan Marion83243a02016-02-29 13:09:30 +010099#ifdef TP_STATUS_VLAN_TPID_VALID
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000100 ,
101 t->tph3.hv1.tp_vlan_tpid
Damjan Marion83243a02016-02-29 13:09:30 +0100102#endif
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000103 );
104 }
105 else
106 {
107 s = format (
108 s,
109 "\n%Utpacket2_hdr:\n%Ustatus 0x%x len %u snaplen %u mac %u net %u"
110 "\n%Usec 0x%x nsec 0x%x vlan %U"
111#ifdef TP_STATUS_VLAN_TPID_VALID
112 " vlan_tpid %u"
113#endif
114 ,
115 format_white_space, indent + 2, format_white_space, indent + 4,
116 t->tph2.tp_status, t->tph2.tp_len, t->tph2.tp_snaplen, t->tph2.tp_mac,
117 t->tph2.tp_net, format_white_space, indent + 4, t->tph2.tp_sec,
118 t->tph2.tp_nsec, format_ethernet_vlan_tci, t->tph2.tp_vlan_tci
119#ifdef TP_STATUS_VLAN_TPID_VALID
120 ,
121 t->tph2.tp_vlan_tpid
122#endif
123 );
124 }
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000125
126 s = format (s,
127 "\n%Uvnet-hdr:\n%Uflags 0x%02x gso_type 0x%02x hdr_len %u"
128 "\n%Ugso_size %u csum_start %u csum_offset %u",
129 format_white_space, indent + 2, format_white_space, indent + 4,
130 t->vnet_hdr.flags, t->vnet_hdr.gso_type, t->vnet_hdr.hdr_len,
131 format_white_space, indent + 4, t->vnet_hdr.gso_size,
132 t->vnet_hdr.csum_start, t->vnet_hdr.csum_offset);
Damjan Marion83243a02016-02-29 13:09:30 +0100133 return s;
134}
135
136always_inline void
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000137buffer_add_to_chain (vlib_buffer_t *b, vlib_buffer_t *first_b,
138 vlib_buffer_t *prev_b, u32 bi)
Damjan Marion83243a02016-02-29 13:09:30 +0100139{
Damjan Marion83243a02016-02-29 13:09:30 +0100140 /* update first buffer */
Damjan Marion00a9dca2016-08-17 17:05:46 +0200141 first_b->total_length_not_including_first_buffer += b->current_length;
Damjan Marion83243a02016-02-29 13:09:30 +0100142
143 /* update previous buffer */
144 prev_b->next_buffer = bi;
145 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
146
147 /* update current buffer */
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000148 b->next_buffer = ~0;
Damjan Marion83243a02016-02-29 13:09:30 +0100149}
150
Jakub Grajciar92b02752017-10-20 13:37:28 +0200151static_always_inline void
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000152fill_gso_offload (vlib_buffer_t *b, u32 gso_size, u8 l4_hdr_sz)
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +0100153{
154 b->flags |= VNET_BUFFER_F_GSO;
155 vnet_buffer2 (b)->gso_size = gso_size;
156 vnet_buffer2 (b)->gso_l4_hdr_sz = l4_hdr_sz;
157}
158
159static_always_inline void
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000160fill_cksum_offload (vlib_buffer_t *b, u8 *l4_hdr_sz, u8 is_ip)
Jakub Grajciar92b02752017-10-20 13:37:28 +0200161{
Mohsin Kazmi36f7a6a2021-05-05 14:26:38 +0200162 vnet_buffer_oflags_t oflags = 0;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000163 u16 l2hdr_sz = 0;
164 u16 ethertype = 0;
165 u8 l4_proto = 0;
166
167 if (is_ip)
Jakub Grajciar92b02752017-10-20 13:37:28 +0200168 {
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000169 switch (b->data[0] & 0xf0)
Jakub Grajciar92b02752017-10-20 13:37:28 +0200170 {
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000171 case 0x40:
172 ethertype = ETHERNET_TYPE_IP4;
173 break;
174 case 0x60:
175 ethertype = ETHERNET_TYPE_IP6;
176 break;
Jakub Grajciar92b02752017-10-20 13:37:28 +0200177 }
Jakub Grajciar92b02752017-10-20 13:37:28 +0200178 }
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000179 else
Jakub Grajciar92b02752017-10-20 13:37:28 +0200180 {
Mohsin Kazmie0c87552022-04-11 12:52:28 +0000181 ethernet_header_t *eth = (ethernet_header_t *) b->data;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000182 ethertype = clib_net_to_host_u16 (eth->type);
183 l2hdr_sz = sizeof (ethernet_header_t);
184 if (ethernet_frame_is_tagged (ethertype))
185 {
186 ethernet_vlan_header_t *vlan = (ethernet_vlan_header_t *) (eth + 1);
187
188 ethertype = clib_net_to_host_u16 (vlan->type);
189 l2hdr_sz += sizeof (*vlan);
190 if (ethertype == ETHERNET_TYPE_VLAN)
191 {
192 vlan++;
193 ethertype = clib_net_to_host_u16 (vlan->type);
194 l2hdr_sz += sizeof (*vlan);
195 }
196 }
197 }
198
199 vnet_buffer (b)->l2_hdr_offset = 0;
200 vnet_buffer (b)->l3_hdr_offset = l2hdr_sz;
201
202 if (ethertype == ETHERNET_TYPE_IP4)
203 {
Mohsin Kazmie0c87552022-04-11 12:52:28 +0000204 ip4_header_t *ip4 = (ip4_header_t *) (b->data + l2hdr_sz);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000205 vnet_buffer (b)->l4_hdr_offset = l2hdr_sz + ip4_header_bytes (ip4);
206 b->flags |= (VNET_BUFFER_F_IS_IP4 | VNET_BUFFER_F_L2_HDR_OFFSET_VALID |
207 VNET_BUFFER_F_L3_HDR_OFFSET_VALID |
208 VNET_BUFFER_F_L4_HDR_OFFSET_VALID);
209
210 l4_proto = ip4->protocol;
211 }
212 else if (ethertype == ETHERNET_TYPE_IP6)
213 {
Mohsin Kazmie0c87552022-04-11 12:52:28 +0000214 ip6_header_t *ip6 = (ip6_header_t *) (b->data + l2hdr_sz);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000215 b->flags |= (VNET_BUFFER_F_IS_IP6 | VNET_BUFFER_F_L2_HDR_OFFSET_VALID |
216 VNET_BUFFER_F_L3_HDR_OFFSET_VALID |
217 VNET_BUFFER_F_L4_HDR_OFFSET_VALID);
Jakub Grajciar92b02752017-10-20 13:37:28 +0200218 u16 ip6_hdr_len = sizeof (ip6_header_t);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000219
Jakub Grajciar92b02752017-10-20 13:37:28 +0200220 if (ip6_ext_hdr (ip6->protocol))
221 {
222 ip6_ext_header_t *p = (void *) (ip6 + 1);
223 ip6_hdr_len += ip6_ext_header_len (p);
224 while (ip6_ext_hdr (p->next_hdr))
225 {
226 ip6_hdr_len += ip6_ext_header_len (p);
227 p = ip6_ext_next_header (p);
228 }
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000229 l4_proto = p->next_hdr;
Jakub Grajciar92b02752017-10-20 13:37:28 +0200230 }
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000231 else
232 l4_proto = ip6->protocol;
233 vnet_buffer (b)->l4_hdr_offset = l2hdr_sz + ip6_hdr_len;
Jakub Grajciar92b02752017-10-20 13:37:28 +0200234 }
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000235
236 if (l4_proto == IP_PROTOCOL_TCP)
237 {
238 oflags |= VNET_BUFFER_OFFLOAD_F_TCP_CKSUM;
Mohsin Kazmie0c87552022-04-11 12:52:28 +0000239 tcp_header_t *tcp =
240 (tcp_header_t *) (b->data + vnet_buffer (b)->l4_hdr_offset);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000241 *l4_hdr_sz = tcp_header_bytes (tcp);
242 }
243 else if (l4_proto == IP_PROTOCOL_UDP)
244 {
245 oflags |= VNET_BUFFER_OFFLOAD_F_UDP_CKSUM;
246 *l4_hdr_sz = sizeof (udp_header_t);
247 }
248
249 if (oflags)
250 vnet_buffer_offload_flags_set (b, oflags);
Jakub Grajciar92b02752017-10-20 13:37:28 +0200251}
252
Damjan Marion83243a02016-02-29 13:09:30 +0100253always_inline uword
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000254af_packet_v3_device_input_fn (vlib_main_t *vm, vlib_node_runtime_t *node,
255 vlib_frame_t *frame, af_packet_if_t *apif,
256 u16 queue_id, u8 is_cksum_gso_enabled)
Damjan Marion83243a02016-02-29 13:09:30 +0100257{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200258 af_packet_main_t *apm = &af_packet_main;
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000259 af_packet_queue_t *rx_queue = vec_elt_at_index (apif->rx_queues, queue_id);
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000260 tpacket3_hdr_t *tph;
Mohsin Kazmicae84fa2021-10-08 15:10:49 +0000261 u32 next_index;
Damjan Marion83243a02016-02-29 13:09:30 +0100262 u32 n_free_bufs;
263 u32 n_rx_packets = 0;
264 u32 n_rx_bytes = 0;
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000265 u32 timedout_blk = 0;
266 u32 total = 0;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200267 u32 *to_next = 0;
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000268 u32 block = rx_queue->next_rx_block;
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000269 u32 block_nr = rx_queue->rx_req->req3.tp_block_nr;
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000270 u8 *block_start = 0;
Damjan Marion83243a02016-02-29 13:09:30 +0100271 uword n_trace = vlib_get_trace_count (vm, node);
Damjan Marion067cd622018-07-11 12:47:43 +0200272 u32 thread_index = vm->thread_index;
Damjan Marion8934a042019-02-09 23:29:26 +0100273 u32 n_buffer_bytes = vlib_buffer_get_default_data_size (vm);
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000274 u32 min_bufs = rx_queue->rx_req->req3.tp_frame_size / n_buffer_bytes;
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000275 u32 num_pkts = 0;
276 u32 rx_frame_offset = 0;
277 block_desc_t *bd = 0;
Mohsin Kazmi6556a992022-08-31 11:14:28 +0000278 vlib_buffer_t bt = {};
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000279 u8 is_ip = (apif->mode == AF_PACKET_IF_MODE_IP);
Mohsin Kazmicae84fa2021-10-08 15:10:49 +0000280
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000281 if (is_ip)
282 next_index = VNET_DEVICE_INPUT_NEXT_IP4_INPUT;
Mohsin Kazmicae84fa2021-10-08 15:10:49 +0000283 else
284 {
285 next_index = VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT;
286 if (PREDICT_FALSE (apif->per_interface_next_index != ~0))
287 next_index = apif->per_interface_next_index;
288
289 /* redirect if feature path enabled */
290 vnet_feature_start_device_input_x1 (apif->sw_if_index, &next_index, &bt);
291 }
Damjan Marion83243a02016-02-29 13:09:30 +0100292
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000293 if ((((block_desc_t *) (block_start = rx_queue->rx_ring[block]))
Mohsin Kazmi89d74bd2022-03-25 00:33:27 +0000294 ->hdr.bh1.block_status &
295 TP_STATUS_USER) != 0)
Damjan Marion83243a02016-02-29 13:09:30 +0100296 {
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000297 u32 n_required = 0;
Mohsin Kazmi89d74bd2022-03-25 00:33:27 +0000298 bd = (block_desc_t *) block_start;
Damjan Marion83243a02016-02-29 13:09:30 +0100299
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000300 if (PREDICT_FALSE (rx_queue->is_rx_pending))
Damjan Marion83243a02016-02-29 13:09:30 +0100301 {
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000302 num_pkts = rx_queue->num_rx_pkts;
303 rx_frame_offset = rx_queue->rx_frame_offset;
304 rx_queue->is_rx_pending = 0;
Mohsin Kazmi89d74bd2022-03-25 00:33:27 +0000305 }
306 else
307 {
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000308 num_pkts = bd->hdr.bh1.num_pkts;
309 rx_frame_offset = sizeof (block_desc_t);
Mohsin Kazmia94563e2022-04-05 11:23:17 +0000310 total++;
311
312 if (TP_STATUS_BLK_TMO & bd->hdr.bh1.block_status)
313 timedout_blk++;
Damjan Marion83243a02016-02-29 13:09:30 +0100314 }
315
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000316 n_required = clib_max (num_pkts, VLIB_FRAME_SIZE);
317 n_free_bufs = vec_len (apm->rx_buffers[thread_index]);
318 if (PREDICT_FALSE (n_free_bufs < n_required))
319 {
320 vec_validate (apm->rx_buffers[thread_index],
321 n_required + n_free_bufs - 1);
322 n_free_bufs += vlib_buffer_alloc (
323 vm, &apm->rx_buffers[thread_index][n_free_bufs], n_required);
Damjan Marion8bea5892022-04-04 22:40:45 +0200324 vec_set_len (apm->rx_buffers[thread_index], n_free_bufs);
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000325 }
326
Mohsin Kazmi89d74bd2022-03-25 00:33:27 +0000327 while (num_pkts && (n_free_bufs >= min_bufs))
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000328 {
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000329 u32 next0 = next_index;
330 u32 n_left_to_next;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000331
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000332 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000333
Mohsin Kazmi89d74bd2022-03-25 00:33:27 +0000334 while (num_pkts && n_left_to_next && (n_free_bufs >= min_bufs))
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000335 {
336 tph = (tpacket3_hdr_t *) (block_start + rx_frame_offset);
337
338 if (num_pkts > 1)
339 CLIB_PREFETCH (block_start + rx_frame_offset +
340 tph->tp_next_offset,
341 2 * CLIB_CACHE_LINE_BYTES, LOAD);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000342
343 vlib_buffer_t *b0 = 0, *first_b0 = 0, *prev_b0 = 0;
344 vnet_virtio_net_hdr_t *vnet_hdr = 0;
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000345 u32 data_len = tph->tp_snaplen;
346 u32 offset = 0;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000347 u32 bi0 = ~0, first_bi0 = ~0;
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000348 u8 l4_hdr_sz = 0;
349
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000350 if (is_cksum_gso_enabled)
351 vnet_hdr =
352 (vnet_virtio_net_hdr_t *) ((u8 *) tph + tph->tp_mac -
353 sizeof (vnet_virtio_net_hdr_t));
354
Mohsin Kazmi89d74bd2022-03-25 00:33:27 +0000355 // save current state and return
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000356 if (PREDICT_FALSE (((data_len / n_buffer_bytes) + 1) >
357 vec_len (apm->rx_buffers[thread_index])))
358 {
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000359 rx_queue->rx_frame_offset = rx_frame_offset;
360 rx_queue->num_rx_pkts = num_pkts;
361 rx_queue->is_rx_pending = 1;
Mohsin Kazmi89d74bd2022-03-25 00:33:27 +0000362 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
363 goto done;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000364 }
365
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000366 while (data_len)
367 {
368 /* grab free buffer */
369 u32 last_empty_buffer =
370 vec_len (apm->rx_buffers[thread_index]) - 1;
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000371 bi0 = apm->rx_buffers[thread_index][last_empty_buffer];
Damjan Marion8bea5892022-04-04 22:40:45 +0200372 vec_set_len (apm->rx_buffers[thread_index],
373 last_empty_buffer);
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000374 n_free_bufs--;
375
376 /* copy data */
377 u32 bytes_to_copy =
378 data_len > n_buffer_bytes ? n_buffer_bytes : data_len;
379 u32 vlan_len = 0;
380 u32 bytes_copied = 0;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000381
382 b0 = vlib_get_buffer (vm, bi0);
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000383 b0->current_data = 0;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000384
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000385 /* Kernel removes VLAN headers, so reconstruct VLAN */
386 if (PREDICT_FALSE (tph->tp_status & TP_STATUS_VLAN_VALID))
387 {
388 if (PREDICT_TRUE (offset == 0))
389 {
390 clib_memcpy_fast (vlib_buffer_get_current (b0),
391 (u8 *) tph + tph->tp_mac,
392 sizeof (ethernet_header_t));
393 ethernet_header_t *eth =
394 vlib_buffer_get_current (b0);
395 ethernet_vlan_header_t *vlan =
396 (ethernet_vlan_header_t *) (eth + 1);
397 vlan->priority_cfi_and_id =
398 clib_host_to_net_u16 (tph->hv1.tp_vlan_tci);
399 vlan->type = eth->type;
400 eth->type =
401 clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
402 vlan_len = sizeof (ethernet_vlan_header_t);
403 bytes_copied = sizeof (ethernet_header_t);
404 }
405 }
406 clib_memcpy_fast (((u8 *) vlib_buffer_get_current (b0)) +
407 bytes_copied + vlan_len,
408 (u8 *) tph + tph->tp_mac + offset +
409 bytes_copied,
410 (bytes_to_copy - bytes_copied));
411
412 /* fill buffer header */
413 b0->current_length = bytes_to_copy + vlan_len;
414
415 if (offset == 0)
416 {
417 b0->total_length_not_including_first_buffer = 0;
418 b0->flags = VLIB_BUFFER_TOTAL_LENGTH_VALID;
419 vnet_buffer (b0)->sw_if_index[VLIB_RX] =
420 apif->sw_if_index;
421 vnet_buffer (b0)->sw_if_index[VLIB_TX] = (u32) ~0;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000422 first_b0 = b0;
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000423 first_bi0 = bi0;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000424 if (is_cksum_gso_enabled)
425 {
426 if (vnet_hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM)
427 fill_cksum_offload (first_b0, &l4_hdr_sz, is_ip);
428 if (vnet_hdr->gso_type & (VIRTIO_NET_HDR_GSO_TCPV4 |
429 VIRTIO_NET_HDR_GSO_TCPV6))
430 fill_gso_offload (first_b0, vnet_hdr->gso_size,
431 l4_hdr_sz);
432 }
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000433 }
434 else
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000435 buffer_add_to_chain (b0, first_b0, prev_b0, bi0);
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000436
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000437 prev_b0 = b0;
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000438 offset += bytes_to_copy;
439 data_len -= bytes_to_copy;
440 }
441 n_rx_packets++;
442 n_rx_bytes += tph->tp_snaplen;
443 to_next[0] = first_bi0;
444 to_next += 1;
445 n_left_to_next--;
446
447 /* drop partial packets */
448 if (PREDICT_FALSE (tph->tp_len != tph->tp_snaplen))
449 {
450 next0 = VNET_DEVICE_INPUT_NEXT_DROP;
451 first_b0->error =
452 node->errors[AF_PACKET_INPUT_ERROR_PARTIAL_PKT];
453 }
454 else
455 {
456 if (PREDICT_FALSE (apif->mode == AF_PACKET_IF_MODE_IP))
457 {
458 switch (first_b0->data[0] & 0xf0)
459 {
460 case 0x40:
461 next0 = VNET_DEVICE_INPUT_NEXT_IP4_INPUT;
462 break;
463 case 0x60:
464 next0 = VNET_DEVICE_INPUT_NEXT_IP6_INPUT;
465 break;
466 default:
467 next0 = VNET_DEVICE_INPUT_NEXT_DROP;
468 break;
469 }
470 if (PREDICT_FALSE (apif->per_interface_next_index != ~0))
471 next0 = apif->per_interface_next_index;
472 }
473 else
474 {
475 /* copy feature arc data from template */
476 first_b0->current_config_index = bt.current_config_index;
477 vnet_buffer (first_b0)->feature_arc_index =
478 vnet_buffer (&bt)->feature_arc_index;
479 }
480 }
481
482 /* trace */
483 if (PREDICT_FALSE (n_trace > 0 &&
484 vlib_trace_buffer (vm, node, next0, first_b0,
485 /* follow_chain */ 0)))
486 {
487 af_packet_input_trace_t *tr;
488 vlib_set_trace_count (vm, node, --n_trace);
489 tr = vlib_add_trace (vm, node, first_b0, sizeof (*tr));
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000490 tr->is_v3 = 1;
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000491 tr->next_index = next0;
492 tr->hw_if_index = apif->hw_if_index;
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000493 tr->queue_id = queue_id;
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000494 tr->block = block;
495 tr->block_start = bd;
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000496 tr->pkt_num = bd->hdr.bh1.num_pkts - num_pkts;
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000497 clib_memcpy_fast (&tr->bd, bd, sizeof (block_desc_t));
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000498 clib_memcpy_fast (&tr->tph3, tph, sizeof (tpacket3_hdr_t));
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000499 if (is_cksum_gso_enabled)
500 clib_memcpy_fast (&tr->vnet_hdr, vnet_hdr,
501 sizeof (vnet_virtio_net_hdr_t));
502 else
503 clib_memset_u8 (&tr->vnet_hdr, 0,
504 sizeof (vnet_virtio_net_hdr_t));
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +0000505 }
506
507 /* enque and take next packet */
508 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
509 n_left_to_next, first_bi0,
510 next0);
511
512 /* next packet */
513 num_pkts--;
514 rx_frame_offset += tph->tp_next_offset;
515 }
516
517 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
518 }
519
520 if (PREDICT_TRUE (num_pkts == 0))
521 {
522 bd->hdr.bh1.block_status = TP_STATUS_KERNEL;
523 block = (block + 1) % block_nr;
524 }
Mohsin Kazmi89d74bd2022-03-25 00:33:27 +0000525 else
526 {
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000527 rx_queue->rx_frame_offset = rx_frame_offset;
528 rx_queue->num_rx_pkts = num_pkts;
529 rx_queue->is_rx_pending = 1;
Mohsin Kazmi89d74bd2022-03-25 00:33:27 +0000530 }
Damjan Marion83243a02016-02-29 13:09:30 +0100531 }
532
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000533 rx_queue->next_rx_block = block;
Mohsin Kazmi89d74bd2022-03-25 00:33:27 +0000534
535done:
536
Mohsin Kazmi89733a12022-08-30 13:29:06 +0000537 if (apm->polling_count == 0)
538 {
539 if ((((block_desc_t *) (block_start = rx_queue->rx_ring[block]))
540 ->hdr.bh1.block_status &
541 TP_STATUS_USER) != 0)
542 vlib_node_set_state (vm, node->node_index, VLIB_NODE_STATE_POLLING);
543 else
544 vlib_node_set_state (vm, node->node_index, VLIB_NODE_STATE_INTERRUPT);
545 }
Mohsin Kazmi89d74bd2022-03-25 00:33:27 +0000546
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000547 vlib_error_count (vm, node->node_index, AF_PACKET_INPUT_ERROR_TOTAL_RECV_BLK,
548 total);
549 vlib_error_count (vm, node->node_index, AF_PACKET_INPUT_ERROR_TIMEDOUT_BLK,
550 timedout_blk);
551
Damjan Marion83243a02016-02-29 13:09:30 +0100552 vlib_increment_combined_counter
Damjan Marion00a9dca2016-08-17 17:05:46 +0200553 (vnet_get_main ()->interface_main.combined_sw_if_counters
Damjan Marion83243a02016-02-29 13:09:30 +0100554 + VNET_INTERFACE_COUNTER_RX,
Damjan Marion586afd72017-04-05 19:18:20 +0200555 vlib_get_thread_index (), apif->hw_if_index, n_rx_packets, n_rx_bytes);
Damjan Marion83243a02016-02-29 13:09:30 +0100556
Damjan Marion586afd72017-04-05 19:18:20 +0200557 vnet_device_increment_rx_packets (thread_index, n_rx_packets);
Damjan Marion83243a02016-02-29 13:09:30 +0100558 return n_rx_packets;
559}
560
Mohsin Kazmi8b90d892022-09-08 17:21:20 +0000561always_inline uword
562af_packet_v2_device_input_fn (vlib_main_t *vm, vlib_node_runtime_t *node,
563 vlib_frame_t *frame, af_packet_if_t *apif,
564 u16 queue_id, u8 is_cksum_gso_enabled)
565{
566 af_packet_main_t *apm = &af_packet_main;
567 af_packet_queue_t *rx_queue = vec_elt_at_index (apif->rx_queues, queue_id);
568 tpacket2_hdr_t *tph;
569 u32 next_index;
570 u32 block = 0;
571 u32 rx_frame;
572 u32 n_free_bufs;
573 u32 n_rx_packets = 0;
574 u32 n_rx_bytes = 0;
575 u32 *to_next = 0;
576 u32 frame_size = rx_queue->rx_req->req.tp_frame_size;
577 u32 frame_num = rx_queue->rx_req->req.tp_frame_nr;
578 u8 *block_start = rx_queue->rx_ring[block];
579 uword n_trace = vlib_get_trace_count (vm, node);
580 u32 thread_index = vm->thread_index;
581 u32 n_buffer_bytes = vlib_buffer_get_default_data_size (vm);
582 u32 min_bufs = rx_queue->rx_req->req.tp_frame_size / n_buffer_bytes;
583 u8 is_ip = (apif->mode == AF_PACKET_IF_MODE_IP);
584 vlib_buffer_t bt = {};
585
586 if (is_ip)
587 {
588 next_index = VNET_DEVICE_INPUT_NEXT_IP4_INPUT;
589 }
590 else
591 {
592 next_index = VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT;
593 if (PREDICT_FALSE (apif->per_interface_next_index != ~0))
594 next_index = apif->per_interface_next_index;
595
596 /* redirect if feature path enabled */
597 vnet_feature_start_device_input_x1 (apif->sw_if_index, &next_index, &bt);
598 }
599
600 n_free_bufs = vec_len (apm->rx_buffers[thread_index]);
601 if (PREDICT_FALSE (n_free_bufs < VLIB_FRAME_SIZE))
602 {
603 vec_validate (apm->rx_buffers[thread_index],
604 VLIB_FRAME_SIZE + n_free_bufs - 1);
605 n_free_bufs += vlib_buffer_alloc (
606 vm, &apm->rx_buffers[thread_index][n_free_bufs], VLIB_FRAME_SIZE);
607 vec_set_len (apm->rx_buffers[thread_index], n_free_bufs);
608 }
609
610 rx_frame = rx_queue->next_rx_frame;
611 tph = (tpacket2_hdr_t *) (block_start + rx_frame * frame_size);
612 while ((tph->tp_status & TP_STATUS_USER) && (n_free_bufs > min_bufs))
613 {
614 vlib_buffer_t *b0 = 0, *first_b0 = 0, *prev_b0 = 0;
615 u32 next0 = next_index;
616
617 u32 n_left_to_next;
618 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
619 while ((tph->tp_status & TP_STATUS_USER) && (n_free_bufs > min_bufs) &&
620 n_left_to_next)
621 {
622 vnet_virtio_net_hdr_t *vnet_hdr = 0;
623 u32 data_len = tph->tp_snaplen;
624 u32 offset = 0;
625 u32 bi0 = 0, first_bi0 = 0;
626 u8 l4_hdr_sz = 0;
627
628 if (is_cksum_gso_enabled)
629 vnet_hdr =
630 (vnet_virtio_net_hdr_t *) ((u8 *) tph + tph->tp_mac -
631 sizeof (vnet_virtio_net_hdr_t));
632 while (data_len)
633 {
634 /* grab free buffer */
635 u32 last_empty_buffer =
636 vec_len (apm->rx_buffers[thread_index]) - 1;
637 bi0 = apm->rx_buffers[thread_index][last_empty_buffer];
638 b0 = vlib_get_buffer (vm, bi0);
639 vec_set_len (apm->rx_buffers[thread_index], last_empty_buffer);
640 n_free_bufs--;
641
642 /* copy data */
643 u32 bytes_to_copy =
644 data_len > n_buffer_bytes ? n_buffer_bytes : data_len;
645 u32 vlan_len = 0;
646 u32 bytes_copied = 0;
647 b0->current_data = 0;
648 /* Kernel removes VLAN headers, so reconstruct VLAN */
649 if (PREDICT_FALSE (tph->tp_status & TP_STATUS_VLAN_VALID))
650 {
651 if (PREDICT_TRUE (offset == 0))
652 {
653 clib_memcpy_fast (vlib_buffer_get_current (b0),
654 (u8 *) tph + tph->tp_mac,
655 sizeof (ethernet_header_t));
656 ethernet_header_t *eth = vlib_buffer_get_current (b0);
657 ethernet_vlan_header_t *vlan =
658 (ethernet_vlan_header_t *) (eth + 1);
659 vlan->priority_cfi_and_id =
660 clib_host_to_net_u16 (tph->tp_vlan_tci);
661 vlan->type = eth->type;
662 eth->type = clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
663 vlan_len = sizeof (ethernet_vlan_header_t);
664 bytes_copied = sizeof (ethernet_header_t);
665 }
666 }
667 clib_memcpy_fast (((u8 *) vlib_buffer_get_current (b0)) +
668 bytes_copied + vlan_len,
669 (u8 *) tph + tph->tp_mac + offset +
670 bytes_copied,
671 (bytes_to_copy - bytes_copied));
672
673 /* fill buffer header */
674 b0->current_length = bytes_to_copy + vlan_len;
675
676 if (offset == 0)
677 {
678 b0->total_length_not_including_first_buffer = 0;
679 b0->flags = VLIB_BUFFER_TOTAL_LENGTH_VALID;
680 vnet_buffer (b0)->sw_if_index[VLIB_RX] = apif->sw_if_index;
681 vnet_buffer (b0)->sw_if_index[VLIB_TX] = (u32) ~0;
682 first_bi0 = bi0;
683 first_b0 = vlib_get_buffer (vm, first_bi0);
684
685 if (is_cksum_gso_enabled)
686 {
687 if (vnet_hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM)
688 fill_cksum_offload (first_b0, &l4_hdr_sz, is_ip);
689 if (vnet_hdr->gso_type & (VIRTIO_NET_HDR_GSO_TCPV4 |
690 VIRTIO_NET_HDR_GSO_TCPV6))
691 fill_gso_offload (first_b0, vnet_hdr->gso_size,
692 l4_hdr_sz);
693 }
694 }
695 else
696 buffer_add_to_chain (b0, first_b0, prev_b0, bi0);
697
698 prev_b0 = b0;
699 offset += bytes_to_copy;
700 data_len -= bytes_to_copy;
701 }
702 n_rx_packets++;
703 n_rx_bytes += tph->tp_snaplen;
704 to_next[0] = first_bi0;
705 to_next += 1;
706 n_left_to_next--;
707
708 /* drop partial packets */
709 if (PREDICT_FALSE (tph->tp_len != tph->tp_snaplen))
710 {
711 next0 = VNET_DEVICE_INPUT_NEXT_DROP;
712 first_b0->error =
713 node->errors[AF_PACKET_INPUT_ERROR_PARTIAL_PKT];
714 }
715 else
716 {
717 if (PREDICT_FALSE (is_ip))
718 {
719 switch (first_b0->data[0] & 0xf0)
720 {
721 case 0x40:
722 next0 = VNET_DEVICE_INPUT_NEXT_IP4_INPUT;
723 break;
724 case 0x60:
725 next0 = VNET_DEVICE_INPUT_NEXT_IP6_INPUT;
726 break;
727 default:
728 next0 = VNET_DEVICE_INPUT_NEXT_DROP;
729 break;
730 }
731 if (PREDICT_FALSE (apif->per_interface_next_index != ~0))
732 next0 = apif->per_interface_next_index;
733 }
734 else
735 {
736 /* copy feature arc data from template */
737 first_b0->current_config_index = bt.current_config_index;
738 vnet_buffer (first_b0)->feature_arc_index =
739 vnet_buffer (&bt)->feature_arc_index;
740 }
741 }
742
743 /* trace */
744 if (PREDICT_FALSE (n_trace > 0 &&
745 vlib_trace_buffer (vm, node, next0, first_b0,
746 /* follow_chain */ 0)))
747 {
748 af_packet_input_trace_t *tr;
749 vlib_set_trace_count (vm, node, --n_trace);
750 tr = vlib_add_trace (vm, node, first_b0, sizeof (*tr));
751 tr->is_v3 = 0;
752 tr->next_index = next0;
753 tr->hw_if_index = apif->hw_if_index;
754 tr->queue_id = queue_id;
755 clib_memcpy_fast (&tr->tph2, tph, sizeof (struct tpacket2_hdr));
756 if (is_cksum_gso_enabled)
757 clib_memcpy_fast (&tr->vnet_hdr, vnet_hdr,
758 sizeof (vnet_virtio_net_hdr_t));
759 else
760 clib_memset_u8 (&tr->vnet_hdr, 0,
761 sizeof (vnet_virtio_net_hdr_t));
762 }
763
764 /* enque and take next packet */
765 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
766 n_left_to_next, first_bi0, next0);
767
768 /* next packet */
769 tph->tp_status = TP_STATUS_KERNEL;
770 rx_frame = (rx_frame + 1) % frame_num;
771 tph = (struct tpacket2_hdr *) (block_start + rx_frame * frame_size);
772 }
773
774 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
775 }
776
777 rx_queue->next_rx_frame = rx_frame;
778
779 vlib_increment_combined_counter (
780 vnet_get_main ()->interface_main.combined_sw_if_counters +
781 VNET_INTERFACE_COUNTER_RX,
782 vlib_get_thread_index (), apif->hw_if_index, n_rx_packets, n_rx_bytes);
783
784 vnet_device_increment_rx_packets (thread_index, n_rx_packets);
785 return n_rx_packets;
786}
787
788always_inline uword
789af_packet_device_input_fn (vlib_main_t *vm, vlib_node_runtime_t *node,
790 vlib_frame_t *frame, af_packet_if_t *apif,
791 u16 queue_id, u8 is_cksum_gso_enabled)
792
793{
794 if (apif->version == TPACKET_V3)
795 return af_packet_v3_device_input_fn (vm, node, frame, apif, queue_id,
796 is_cksum_gso_enabled);
797 else
798 return af_packet_v2_device_input_fn (vm, node, frame, apif, queue_id,
799 is_cksum_gso_enabled);
800}
801
Filip Tehlar608996d2019-03-04 03:03:13 -0800802VLIB_NODE_FN (af_packet_input_node) (vlib_main_t * vm,
803 vlib_node_runtime_t * node,
804 vlib_frame_t * frame)
Damjan Marion83243a02016-02-29 13:09:30 +0100805{
Damjan Marion83243a02016-02-29 13:09:30 +0100806 u32 n_rx_packets = 0;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200807 af_packet_main_t *apm = &af_packet_main;
Mohammed Hawari85c19432020-12-18 16:29:45 +0100808 vnet_hw_if_rxq_poll_vector_t *pv;
809 pv = vnet_hw_if_get_rxq_poll_vector (vm, node);
810 for (int i = 0; i < vec_len (pv); i++)
811 {
812 af_packet_if_t *apif;
813 apif = vec_elt_at_index (apm->interfaces, pv[i].dev_instance);
814 if (apif->is_admin_up)
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000815 {
816 if (apif->is_cksum_gso_enabled)
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000817 n_rx_packets += af_packet_device_input_fn (vm, node, frame, apif,
818 pv[i].queue_id, 1);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000819 else
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000820 n_rx_packets += af_packet_device_input_fn (vm, node, frame, apif,
821 pv[i].queue_id, 0);
Mohsin Kazmic1fd17b2022-03-22 21:40:04 +0000822 }
Mohammed Hawari85c19432020-12-18 16:29:45 +0100823 }
Damjan Marion83243a02016-02-29 13:09:30 +0100824 return n_rx_packets;
825}
826
Damjan Marion83243a02016-02-29 13:09:30 +0100827VLIB_REGISTER_NODE (af_packet_input_node) = {
Damjan Marion83243a02016-02-29 13:09:30 +0100828 .name = "af-packet-input",
Damjan Marion7ca5aaa2019-09-24 18:10:49 +0200829 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Damjan Marion51327ac2016-11-09 11:59:42 +0100830 .sibling_of = "device-input",
Damjan Marion83243a02016-02-29 13:09:30 +0100831 .format_trace = format_af_packet_input_trace,
832 .type = VLIB_NODE_TYPE_INPUT,
833 .state = VLIB_NODE_STATE_INTERRUPT,
834 .n_errors = AF_PACKET_INPUT_N_ERROR,
835 .error_strings = af_packet_input_error_strings,
Damjan Marion83243a02016-02-29 13:09:30 +0100836};
Damjan Marion1c80e832016-05-11 23:07:18 +0200837
Damjan Marion00a9dca2016-08-17 17:05:46 +0200838
839/*
840 * fd.io coding-style-patch-verification: ON
841 *
842 * Local Variables:
843 * eval: (c-set-style "gnu")
844 * End:
845 */