fb03cf1dcf905600203063f87029fd205ef2f3c5
[dpdk.git] / lib / mbuf / rte_mbuf_dyn.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2019 6WIND S.A.
3  */
4
5 #ifndef _RTE_MBUF_DYN_H_
6 #define _RTE_MBUF_DYN_H_
7
8 /**
9  * @file
10  * RTE Mbuf dynamic fields and flags
11  *
12  * Many DPDK features require to store data inside the mbuf. As the room
13  * in mbuf structure is limited, it is not possible to have a field for
14  * each feature. Also, changing fields in the mbuf structure can break
15  * the API or ABI.
16  *
17  * This module addresses this issue, by enabling the dynamic
18  * registration of fields or flags:
19  *
20  * - a dynamic field is a named area in the rte_mbuf structure, with a
21  *   given size (>= 1 byte) and alignment constraint.
22  * - a dynamic flag is a named bit in the rte_mbuf structure, stored
23  *   in mbuf->ol_flags.
24  *
25  * The placement of the field or flag can be automatic, in this case the
26  * zones that have the smallest size and alignment constraint are
27  * selected in priority. Else, a specific field offset or flag bit
28  * number can be requested through the API.
29  *
30  * The typical use case is when a specific offload feature requires to
31  * register a dedicated offload field in the mbuf structure, and adding
32  * a static field or flag is not justified.
33  *
34  * Example of use:
35  *
36  * - A rte_mbuf_dynfield structure is defined, containing the parameters
37  *   of the dynamic field to be registered:
38  *   const struct rte_mbuf_dynfield rte_dynfield_my_feature = { ... };
39  * - The application initializes the PMD, and asks for this feature
40  *   at port initialization by passing DEV_RX_OFFLOAD_MY_FEATURE in
41  *   rxconf. This will make the PMD to register the field by calling
42  *   rte_mbuf_dynfield_register(&rte_dynfield_my_feature). The PMD
43  *   stores the returned offset.
44  * - The application that uses the offload feature also registers
45  *   the field to retrieve the same offset.
46  * - When the PMD receives a packet, it can set the field:
47  *   *RTE_MBUF_DYNFIELD(m, offset, <type *>) = value;
48  * - In the main loop, the application can retrieve the value with
49  *   the same macro.
50  *
51  * To avoid wasting space, the dynamic fields or flags must only be
52  * reserved on demand, when an application asks for the related feature.
53  *
54  * The registration can be done at any moment, but it is not possible
55  * to unregister fields or flags for now.
56  *
57  * A dynamic field can be reserved and used by an application only.
58  * It can for instance be a packet mark.
59  *
60  * To avoid namespace collisions, the dynamic mbuf field or flag names
61  * have to be chosen with care. It is advised to use the same
62  * conventions than function names in dpdk:
63  * - "rte_mbuf_dynfield_<name>" if defined in mbuf library
64  * - "rte_<libname>_dynfield_<name>" if defined in another library
65  * - "rte_net_<pmd>_dynfield_<name>" if defined in a PMD
66  * - any name that does not start with "rte_" in an application
67  */
68
69 #include <stdio.h>
70 #include <stdint.h>
71 #include <sys/types.h>
72
73 #include <rte_compat.h>
74
75 #ifdef __cplusplus
76 extern "C" {
77 #endif
78
79 /**
80  * Maximum length of the dynamic field or flag string.
81  */
82 #define RTE_MBUF_DYN_NAMESIZE 64
83
84 /**
85  * Structure describing the parameters of a mbuf dynamic field.
86  */
87 struct rte_mbuf_dynfield {
88         char name[RTE_MBUF_DYN_NAMESIZE]; /**< Name of the field. */
89         size_t size;        /**< The number of bytes to reserve. */
90         size_t align;       /**< The alignment constraint (power of 2). */
91         unsigned int flags; /**< Reserved for future use, must be 0. */
92 };
93
94 /**
95  * Structure describing the parameters of a mbuf dynamic flag.
96  */
97 struct rte_mbuf_dynflag {
98         char name[RTE_MBUF_DYN_NAMESIZE]; /**< Name of the dynamic flag. */
99         unsigned int flags; /**< Reserved for future use, must be 0. */
100 };
101
102 /**
103  * Register space for a dynamic field in the mbuf structure.
104  *
105  * If the field is already registered (same name and parameters), its
106  * offset is returned.
107  *
108  * @param params
109  *   A structure containing the requested parameters (name, size,
110  *   alignment constraint and flags).
111  * @return
112  *   The offset in the mbuf structure, or -1 on error.
113  *   Possible values for rte_errno:
114  *   - EINVAL: invalid parameters (size, align, or flags).
115  *   - EEXIST: this name is already register with different parameters.
116  *   - EPERM: called from a secondary process.
117  *   - ENOENT: not enough room in mbuf.
118  *   - ENOMEM: allocation failure.
119  *   - ENAMETOOLONG: name does not ends with \0.
120  */
121 int rte_mbuf_dynfield_register(const struct rte_mbuf_dynfield *params);
122
123 /**
124  * Register space for a dynamic field in the mbuf structure at offset.
125  *
126  * If the field is already registered (same name, parameters and offset),
127  * the offset is returned.
128  *
129  * @param params
130  *   A structure containing the requested parameters (name, size,
131  *   alignment constraint and flags).
132  * @param offset
133  *   The requested offset. Ignored if SIZE_MAX is passed.
134  * @return
135  *   The offset in the mbuf structure, or -1 on error.
136  *   Possible values for rte_errno:
137  *   - EINVAL: invalid parameters (size, align, flags, or offset).
138  *   - EEXIST: this name is already register with different parameters.
139  *   - EBUSY: the requested offset cannot be used.
140  *   - EPERM: called from a secondary process.
141  *   - ENOENT: not enough room in mbuf.
142  *   - ENOMEM: allocation failure.
143  *   - ENAMETOOLONG: name does not ends with \0.
144  */
145 int rte_mbuf_dynfield_register_offset(const struct rte_mbuf_dynfield *params,
146                                 size_t offset);
147
148 /**
149  * Lookup for a registered dynamic mbuf field.
150  *
151  * @param name
152  *   A string identifying the dynamic field.
153  * @param params
154  *   If not NULL, and if the lookup is successful, the structure is
155  *   filled with the parameters of the dynamic field.
156  * @return
157  *   The offset of this field in the mbuf structure, or -1 on error.
158  *   Possible values for rte_errno:
159  *   - ENOENT: no dynamic field matches this name.
160  */
161 int rte_mbuf_dynfield_lookup(const char *name,
162                         struct rte_mbuf_dynfield *params);
163
164 /**
165  * Register a dynamic flag in the mbuf structure.
166  *
167  * If the flag is already registered (same name and parameters), its
168  * bitnum is returned.
169  *
170  * @param params
171  *   A structure containing the requested parameters of the dynamic
172  *   flag (name and options).
173  * @return
174  *   The number of the reserved bit, or -1 on error.
175  *   Possible values for rte_errno:
176  *   - EINVAL: invalid parameters (size, align, or flags).
177  *   - EEXIST: this name is already register with different parameters.
178  *   - EPERM: called from a secondary process.
179  *   - ENOENT: no more flag available.
180  *   - ENOMEM: allocation failure.
181  *   - ENAMETOOLONG: name is longer than RTE_MBUF_DYN_NAMESIZE - 1.
182  */
183 int rte_mbuf_dynflag_register(const struct rte_mbuf_dynflag *params);
184
185 /**
186  * Register a dynamic flag in the mbuf structure specifying bitnum.
187  *
188  * If the flag is already registered (same name, parameters and bitnum),
189  * the bitnum is returned.
190  *
191  * @param params
192  *   A structure containing the requested parameters of the dynamic
193  *   flag (name and options).
194  * @param bitnum
195  *   The requested bitnum. Ignored if UINT_MAX is passed.
196  * @return
197  *   The number of the reserved bit, or -1 on error.
198  *   Possible values for rte_errno:
199  *   - EINVAL: invalid parameters (size, align, or flags).
200  *   - EEXIST: this name is already register with different parameters.
201  *   - EBUSY: the requested bitnum cannot be used.
202  *   - EPERM: called from a secondary process.
203  *   - ENOENT: no more flag available.
204  *   - ENOMEM: allocation failure.
205  *   - ENAMETOOLONG: name is longer than RTE_MBUF_DYN_NAMESIZE - 1.
206  */
207 int rte_mbuf_dynflag_register_bitnum(const struct rte_mbuf_dynflag *params,
208                                 unsigned int bitnum);
209
210 /**
211  * Lookup for a registered dynamic mbuf flag.
212  *
213  * @param name
214  *   A string identifying the dynamic flag.
215  * @param params
216  *   If not NULL, and if the lookup is successful, the structure is
217  *   filled with the parameters of the dynamic flag.
218  * @return
219  *   The offset of this flag in the mbuf structure, or -1 on error.
220  *   Possible values for rte_errno:
221  *   - ENOENT: no dynamic flag matches this name.
222  */
223 int rte_mbuf_dynflag_lookup(const char *name,
224                         struct rte_mbuf_dynflag *params);
225
226 /**
227  * Helper macro to access to a dynamic field.
228  */
229 #define RTE_MBUF_DYNFIELD(m, offset, type) ((type)((uintptr_t)(m) + (offset)))
230
231 /**
232  * Dump the status of dynamic fields and flags.
233  *
234  * @param out
235  *   The stream where the status is displayed.
236  */
237 void rte_mbuf_dyn_dump(FILE *out);
238
239 /*
240  * Placeholder for dynamic fields and flags declarations.
241  * This is centralizing point to gather all field names
242  * and parameters together.
243  */
244
245 /*
246  * The metadata dynamic field provides some extra packet information
247  * to interact with RTE Flow engine. The metadata in sent mbufs can be
248  * used to match on some Flows. The metadata in received mbufs can
249  * provide some feedback from the Flows. The metadata flag tells
250  * whether the field contains actual value to send, or received one.
251  */
252 #define RTE_MBUF_DYNFIELD_METADATA_NAME "rte_flow_dynfield_metadata"
253 #define RTE_MBUF_DYNFLAG_METADATA_NAME "rte_flow_dynflag_metadata"
254
255 /**
256  * The timestamp dynamic field provides some timing information, the
257  * units and time references (initial phase) are not explicitly defined
258  * but are maintained always the same for a given port. Some devices allow
259  * to query rte_eth_read_clock() that will return the current device
260  * timestamp. The dynamic Tx timestamp flag tells whether the field contains
261  * actual timestamp value for the packets being sent, this value can be
262  * used by PMD to schedule packet sending.
263  */
264 #define RTE_MBUF_DYNFIELD_TIMESTAMP_NAME "rte_dynfield_timestamp"
265 typedef uint64_t rte_mbuf_timestamp_t;
266
267 /**
268  * Indicate that the timestamp field in the mbuf was filled by the driver.
269  */
270 #define RTE_MBUF_DYNFLAG_RX_TIMESTAMP_NAME "rte_dynflag_rx_timestamp"
271
272 /**
273  * Register dynamic mbuf field and flag for Rx timestamp.
274  *
275  * @param field_offset
276  *   Pointer to the offset of the registered mbuf field, can be NULL.
277  *   The same field is shared for Rx and Tx timestamp.
278  * @param rx_flag
279  *   Pointer to the mask of the registered offload flag, can be NULL.
280  * @return
281  *   0 on success, -1 otherwise.
282  *   Possible values for rte_errno:
283  *   - EEXIST: already registered with different parameters.
284  *   - EPERM: called from a secondary process.
285  *   - ENOENT: no more field or flag available.
286  *   - ENOMEM: allocation failure.
287  */
288 int rte_mbuf_dyn_rx_timestamp_register(int *field_offset, uint64_t *rx_flag);
289
290 /**
291  * When PMD sees the RTE_MBUF_DYNFLAG_TX_TIMESTAMP_NAME flag set on the
292  * packet being sent it tries to synchronize the time of packet appearing
293  * on the wire with the specified packet timestamp. If the specified one
294  * is in the past it should be ignored, if one is in the distant future
295  * it should be capped with some reasonable value (in range of seconds).
296  *
297  * There is no any packet reordering according to timestamps is supposed,
298  * neither for packet within the burst, nor for the whole bursts, it is
299  * an entirely application responsibility to generate packets and its
300  * timestamps in desired order. The timestamps might be put only in
301  * the first packet in the burst providing the entire burst scheduling.
302  */
303 #define RTE_MBUF_DYNFLAG_TX_TIMESTAMP_NAME "rte_dynflag_tx_timestamp"
304
305 /**
306  * Register dynamic mbuf field and flag for Tx timestamp.
307  *
308  * @param field_offset
309  *   Pointer to the offset of the registered mbuf field, can be NULL.
310  *   The same field is shared for Rx and Tx timestamp.
311  * @param tx_flag
312  *   Pointer to the mask of the registered offload flag, can be NULL.
313  * @return
314  *   0 on success, -1 otherwise.
315  *   Possible values for rte_errno:
316  *   - EEXIST: already registered with different parameters.
317  *   - EPERM: called from a secondary process.
318  *   - ENOENT: no more field or flag available.
319  *   - ENOMEM: allocation failure.
320  */
321 int rte_mbuf_dyn_tx_timestamp_register(int *field_offset, uint64_t *tx_flag);
322
323 #ifdef __cplusplus
324 }
325 #endif
326
327 #endif /* _RTE_MBUF_DYN_H_ */