blob: 1b24eef788c0c6e653a1d1c2f8ff109be2d2af2b [file] [log] [blame]
Damjan Marion83243a02016-02-29 13:09:30 +01001/*
2 *------------------------------------------------------------------
3 * af_packet.h - linux kernel packet interface header file
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
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +000020#include <linux/if_packet.h>
21
Damjan Marion1927da22017-03-27 17:08:20 +020022#include <vppinfra/lock.h>
Mohsin Kazmiacba9f72018-05-17 15:42:27 +020023#include <vlib/log.h>
24
Mohsin Kazmi219cbcb2022-03-18 16:58:31 +000025typedef struct tpacket_block_desc block_desc_t;
26typedef struct tpacket_req3 tpacket_req3_t;
27typedef struct tpacket3_hdr tpacket3_hdr_t;
28
Mohsin Kazmicae84fa2021-10-08 15:10:49 +000029typedef enum
30{
31 AF_PACKET_IF_MODE_ETHERNET = 1,
32 AF_PACKET_IF_MODE_IP = 2
33} af_packet_if_mode_t;
34
Damjan Marion00a9dca2016-08-17 17:05:46 +020035typedef struct
36{
Mohsin Kazmi04e0bb22018-05-28 18:55:37 +020037 u32 sw_if_index;
38 u8 host_if_name[64];
39} af_packet_if_detail_t;
40
41typedef struct
42{
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +000043 u8 *ring_start_addr;
44 u32 ring_size;
45} af_packet_ring_t;
Mohsin Kazmi89d74bd2022-03-25 00:33:27 +000046
47typedef struct
48{
Damjan Marion00a9dca2016-08-17 17:05:46 +020049 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Damjan Marion1927da22017-03-27 17:08:20 +020050 clib_spinlock_t lockp;
Damjan Marion83243a02016-02-29 13:09:30 +010051 int fd;
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +000052 union
53 {
54 tpacket_req3_t *rx_req;
55 tpacket_req3_t *tx_req;
56 };
57
58 union
59 {
60 u8 **rx_ring;
61 u8 **tx_ring;
62 };
63
64 union
65 {
66 u32 next_rx_block;
67 u32 next_tx_frame;
68 };
69
70 u16 queue_id;
71 u32 queue_index;
72
Damjan Marion56dd5432017-09-08 19:52:02 +020073 u32 clib_file_index;
Damjan Marion83243a02016-02-29 13:09:30 +010074
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +000075 u32 rx_frame_offset;
76 u16 num_rx_pkts;
77 u8 is_rx_pending;
78 vnet_hw_if_rx_mode mode;
79} af_packet_queue_t;
Damjan Marion83243a02016-02-29 13:09:30 +010080
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +000081typedef struct
82{
83 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
84 u32 hw_if_index;
85 u32 sw_if_index;
Damjan Marion83243a02016-02-29 13:09:30 +010086 u32 per_interface_next_index;
Mohsin Kazmicae84fa2021-10-08 15:10:49 +000087 af_packet_if_mode_t mode;
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +000088 u8 is_admin_up;
89 u8 is_cksum_gso_enabled;
90
91 af_packet_queue_t *rx_queues;
92 af_packet_queue_t *tx_queues;
93
94 u8 num_rxqs;
95 u8 num_txqs;
96
97 u8 *host_if_name;
98 int host_if_index;
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +000099
100 u32 host_mtu;
101 u32 dev_instance;
102
103 af_packet_ring_t *rings;
Damjan Marion83243a02016-02-29 13:09:30 +0100104} af_packet_if_t;
105
Damjan Marion00a9dca2016-08-17 17:05:46 +0200106typedef struct
107{
108 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
109 af_packet_if_t *interfaces;
Damjan Marion83243a02016-02-29 13:09:30 +0100110
Damjan Marion83243a02016-02-29 13:09:30 +0100111 /* rx buffer cache */
Damjan Marion553f6bd2016-09-07 11:54:22 +0200112 u32 **rx_buffers;
Damjan Marion83243a02016-02-29 13:09:30 +0100113
114 /* hash of host interface names */
115 mhash_t if_index_by_host_if_name;
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200116
117 /** log class */
118 vlib_log_class_t log_class;
Damjan Marion83243a02016-02-29 13:09:30 +0100119} af_packet_main_t;
120
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200121typedef struct
122{
123 u8 *host_if_name;
124 u8 *hw_addr;
125 u32 rx_frame_size;
126 u32 tx_frame_size;
127 u32 rx_frames_per_block;
128 u32 tx_frames_per_block;
Mohsin Kazmi5a7aa512022-03-25 14:27:45 +0000129 u8 num_rxqs;
130 u8 num_txqs;
Mohsin Kazmicae84fa2021-10-08 15:10:49 +0000131 af_packet_if_mode_t mode;
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200132
133 /* return */
134 u32 sw_if_index;
135} af_packet_create_if_arg_t;
136
Dave Wallace71612d62017-10-24 01:32:41 -0400137extern af_packet_main_t af_packet_main;
Damjan Marion83243a02016-02-29 13:09:30 +0100138extern vnet_device_class_t af_packet_device_class;
139extern vlib_node_registration_t af_packet_input_node;
140
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200141int af_packet_create_if (af_packet_create_if_arg_t *arg);
142int af_packet_delete_if (u8 *host_if_name);
143int af_packet_set_l4_cksum_offload (u32 sw_if_index, u8 set);
Mohsin Kazmi04e0bb22018-05-28 18:55:37 +0200144int af_packet_dump_ifs (af_packet_if_detail_t ** out_af_packet_ifs);
Damjan Marion00a9dca2016-08-17 17:05:46 +0200145
Damjan Marionceab7882018-01-19 20:56:12 +0100146format_function_t format_af_packet_device_name;
147
Mohsin Kazmi04e0bb22018-05-28 18:55:37 +0200148#define MIN(x,y) (((x)<(y))?(x):(y))
149
Damjan Marion00a9dca2016-08-17 17:05:46 +0200150/*
151 * fd.io coding-style-patch-verification: ON
152 *
153 * Local Variables:
154 * eval: (c-set-style "gnu")
155 * End:
156 */