FD.io VPP  v21.06-3-gbb25fbf28
Vector Packet Processing
memif.h
Go to the documentation of this file.
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2017 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 
18 #ifndef _MEMIF_H_
19 #define _MEMIF_H_
20 
21 #include <stdint.h>
22 
23 #ifndef MEMIF_CACHELINE_SIZE
24 #define MEMIF_CACHELINE_SIZE 64
25 #endif
26 
27 #define MEMIF_COOKIE 0x3E31F20
28 #define MEMIF_VERSION_MAJOR 2
29 #define MEMIF_VERSION_MINOR 0
30 #define MEMIF_VERSION ((MEMIF_VERSION_MAJOR << 8) | MEMIF_VERSION_MINOR)
31 
32 /*
33  * Type definitions
34  */
35 
36 typedef enum memif_msg_type
37 {
48 
49 typedef enum
50 {
54 
55 typedef enum
56 {
61 
62 typedef uint16_t memif_region_index_t;
63 typedef uint32_t memif_region_offset_t;
64 typedef uint64_t memif_region_size_t;
65 typedef uint16_t memif_ring_index_t;
66 typedef uint32_t memif_interface_id_t;
67 typedef uint16_t memif_version_t;
68 typedef uint8_t memif_log2_ring_size_t;
69 
70 /*
71  * Socket messages
72  */
73 
74 typedef struct __attribute__ ((packed))
75 {
76  uint8_t name[32];
77  memif_version_t min_version;
78  memif_version_t max_version;
79  memif_region_index_t max_region;
80  memif_ring_index_t max_m2s_ring;
81  memif_ring_index_t max_s2m_ring;
82  memif_log2_ring_size_t max_log2_ring_size;
84 
85 typedef struct __attribute__ ((packed))
86 {
90  uint8_t secret[24];
91  uint8_t name[32];
93 
94 typedef struct __attribute__ ((packed))
95 {
99 
100 typedef struct __attribute__ ((packed))
101 {
102  uint16_t flags;
103 #define MEMIF_MSG_ADD_RING_FLAG_S2M (1 << 0)
105  memif_region_index_t region;
107  memif_log2_ring_size_t log2_ring_size;
108  uint16_t private_hdr_size; /* used for private metadata */
110 
111 typedef struct __attribute__ ((packed))
112 {
113  uint8_t if_name[32];
115 
116 typedef struct __attribute__ ((packed))
117 {
118  uint8_t if_name[32];
120 
121 typedef struct __attribute__ ((packed))
122 {
123  uint32_t code;
124  uint8_t string[96];
126 
127 typedef struct __attribute__ ((packed, aligned (128)))
128 {
130  union
131  {
132  memif_msg_hello_t hello;
134  memif_msg_add_region_t add_region;
135  memif_msg_add_ring_t add_ring;
136  memif_msg_connect_t connect;
137  memif_msg_connected_t connected;
138  memif_msg_disconnect_t disconnect;
139  };
140 } memif_msg_t;
141 
142 _Static_assert (sizeof (memif_msg_t) == 128,
143  "Size of memif_msg_t must be 128");
144 
145 /*
146  * Ring and Descriptor Layout
147  */
148 
149 typedef struct __attribute__ ((packed))
150 {
151  uint16_t flags;
152 #define MEMIF_DESC_FLAG_NEXT (1 << 0)
153  memif_region_index_t region;
154  uint32_t length;
156  uint32_t metadata;
157 } memif_desc_t;
158 
159 _Static_assert (sizeof (memif_desc_t) == 16,
160  "Size of memif_dsct_t must be 16 bytes");
161 
162 #define MEMIF_CACHELINE_ALIGN_MARK(mark) \
163  uint8_t mark[0] __attribute__((aligned(MEMIF_CACHELINE_SIZE)))
164 
165 typedef struct
166 {
167  MEMIF_CACHELINE_ALIGN_MARK (cacheline0);
168  uint32_t cookie;
169  uint16_t flags;
170 #define MEMIF_RING_FLAG_MASK_INT 1
171  volatile uint16_t head;
172  MEMIF_CACHELINE_ALIGN_MARK (cacheline1);
173  volatile uint16_t tail;
174  MEMIF_CACHELINE_ALIGN_MARK (cacheline2);
175  memif_desc_t desc[0];
176 } memif_ring_t;
177 
178 #endif /* _MEMIF_H_ */
179 
180 /*
181  * fd.io coding-style-patch-verification: ON
182  *
183  * Local Variables:
184  * eval: (c-set-style "gnu")
185  * End:
186  */
MEMIF_MSG_TYPE_DISCONNECT
@ MEMIF_MSG_TYPE_DISCONNECT
Definition: memif.h:46
MEMIF_RING_S2M
@ MEMIF_RING_S2M
Definition: memif.h:51
MEMIF_MSG_TYPE_NONE
@ MEMIF_MSG_TYPE_NONE
Definition: memif.h:38
name
string name[64]
Definition: fib.api:25
init
static void init(void)
Definition: client.c:83
MEMIF_MSG_TYPE_INIT
@ MEMIF_MSG_TYPE_INIT
Definition: memif.h:41
MEMIF_INTERFACE_MODE_IP
@ MEMIF_INTERFACE_MODE_IP
Definition: memif.h:58
memif_region_offset_t
uint32_t memif_region_offset_t
Definition: memif.h:63
mode
vl_api_tunnel_mode_t mode
Definition: gre.api:48
MEMIF_MSG_TYPE_CONNECTED
@ MEMIF_MSG_TYPE_CONNECTED
Definition: memif.h:45
MEMIF_MSG_TYPE_HELLO
@ MEMIF_MSG_TYPE_HELLO
Definition: memif.h:40
MEMIF_MSG_TYPE_ADD_RING
@ MEMIF_MSG_TYPE_ADD_RING
Definition: memif.h:43
memif_msg_hello_t
Definition: memif.h:74
MEMIF_CACHELINE_ALIGN_MARK
#define MEMIF_CACHELINE_ALIGN_MARK(mark)
Definition: memif.h:162
MEMIF_INTERFACE_MODE_PUNT_INJECT
@ MEMIF_INTERFACE_MODE_PUNT_INJECT
Definition: memif.h:59
MEMIF_MSG_TYPE_ADD_REGION
@ MEMIF_MSG_TYPE_ADD_REGION
Definition: memif.h:42
memif_ring_type_t
memif_ring_type_t
Definition: memif.h:49
offset
struct clib_bihash_value offset
template key/value backing page structure
memif_msg_type
memif_msg_type
Definition: memif.h:36
memif_interface_id_t
uint32_t memif_interface_id_t
Definition: memif.h:66
memif_msg_type_t
enum memif_msg_type memif_msg_type_t
memif_msg_connected_t
Definition: memif.h:116
memif_region_index_t
uint16_t memif_region_index_t
Definition: memif.h:62
memif_msg_add_region_t
Definition: memif.h:94
memif_msg_disconnect_t
Definition: memif.h:121
MEMIF_RING_M2S
@ MEMIF_RING_M2S
Definition: memif.h:52
memif_log2_ring_size_t
uint8_t memif_log2_ring_size_t
Definition: memif.h:68
id
u8 id[64]
Definition: dhcp.api:160
memif_desc_t
Definition: memif.h:149
memif_msg_t
Definition: memif.h:127
size
u32 size
Definition: vhost_user.h:125
index
u32 index
Definition: flow_types.api:221
memif_ring_index_t
uint16_t memif_ring_index_t
Definition: memif.h:65
version
option version
Definition: sample.api:19
memif_region_size_t
uint64_t memif_region_size_t
Definition: memif.h:64
memif_msg_add_ring_t
Definition: memif.h:100
memif_msg_connect_t
Definition: memif.h:111
memif_interface_mode_t
memif_interface_mode_t
Definition: memif.h:55
memif_msg_init_t
Definition: memif.h:85
length
char const int length
Definition: cJSON.h:163
MEMIF_INTERFACE_MODE_ETHERNET
@ MEMIF_INTERFACE_MODE_ETHERNET
Definition: memif.h:57
MEMIF_MSG_TYPE_ACK
@ MEMIF_MSG_TYPE_ACK
Definition: memif.h:39
MEMIF_MSG_TYPE_CONNECT
@ MEMIF_MSG_TYPE_CONNECT
Definition: memif.h:44
memif_version_t
uint16_t memif_version_t
Definition: memif.h:67
memif_ring_t
Definition: memif.h:165
type
vl_api_fib_path_type_t type
Definition: fib_types.api:123
flags
vl_api_wireguard_peer_flags_t flags
Definition: wireguard.api:105