4 * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of Intel Corporation nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43 #include <rte_acl_osdep.h>
49 #define RTE_ACL_MAX_CATEGORIES 16
51 #define RTE_ACL_RESULTS_MULTIPLIER (XMM_SIZE / sizeof(uint32_t))
53 #define RTE_ACL_MAX_LEVELS 64
54 #define RTE_ACL_MAX_FIELDS 64
56 union rte_acl_field_types {
64 RTE_ACL_FIELD_TYPE_MASK = 0,
65 RTE_ACL_FIELD_TYPE_RANGE,
66 RTE_ACL_FIELD_TYPE_BITMASK
70 * ACL Field definition.
71 * Each field in the ACL rule has an associate definition.
72 * It defines the type of field, its size, its offset in the input buffer,
73 * the field index, and the input index.
74 * For performance reasons, the inner loop of the search function is unrolled
75 * to process four input bytes at a time. This requires the input to be grouped
76 * into sets of 4 consecutive bytes. The loop processes the first input byte as
77 * part of the setup and then subsequent bytes must be in groups of 4
80 struct rte_acl_field_def {
81 uint8_t type; /**< type - RTE_ACL_FIELD_TYPE_*. */
82 uint8_t size; /**< size of field 1,2,4, or 8. */
83 uint8_t field_index; /**< index of field inside the rule. */
84 uint8_t input_index; /**< 0-N input index. */
85 uint32_t offset; /**< offset to start of field. */
89 * ACL build configuration.
90 * Defines the fields of an ACL trie and number of categories to build with.
92 struct rte_acl_config {
93 uint32_t num_categories; /**< Number of categories to build with. */
94 uint32_t num_fields; /**< Number of field definitions. */
95 struct rte_acl_field_def defs[RTE_ACL_MAX_FIELDS];
96 /**< array of field definitions. */
98 /**< max memory limit for internal run-time structures. */
102 * Defines the value of a field for a rule.
104 struct rte_acl_field {
105 union rte_acl_field_types value;
106 /**< a 1,2,4, or 8 byte value of the field. */
107 union rte_acl_field_types mask_range;
109 * depending on field type:
110 * mask -> 1.2.3.4/32 value=0x1020304, mask_range=32,
111 * range -> 0 : 65535 value=0, mask_range=65535,
112 * bitmask -> 0x06/0xff value=6, mask_range=0xff.
117 RTE_ACL_TYPE_SHIFT = 29,
118 RTE_ACL_MAX_INDEX = RTE_LEN2MASK(RTE_ACL_TYPE_SHIFT, uint32_t),
119 RTE_ACL_MAX_PRIORITY = RTE_ACL_MAX_INDEX,
120 RTE_ACL_MIN_PRIORITY = 0,
123 #define RTE_ACL_INVALID_USERDATA 0
125 #define RTE_ACL_MASKLEN_TO_BITMASK(v, s) \
126 ((v) == 0 ? (v) : (typeof(v))((uint64_t)-1 << ((s) * CHAR_BIT - (v))))
129 * Miscellaneous data for ACL rule.
131 struct rte_acl_rule_data {
132 uint32_t category_mask; /**< Mask of categories for that rule. */
133 int32_t priority; /**< Priority for that rule. */
134 uint32_t userdata; /**< Associated with the rule user data. */
138 * Defines single ACL rule.
139 * data - miscellaneous data for the rule.
140 * field[] - value and mask or range for each field.
142 #define RTE_ACL_RULE_DEF(name, fld_num) struct name {\
143 struct rte_acl_rule_data data; \
144 struct rte_acl_field field[fld_num]; \
147 RTE_ACL_RULE_DEF(rte_acl_rule, 0);
149 #define RTE_ACL_RULE_SZ(fld_num) \
150 (sizeof(struct rte_acl_rule) + sizeof(struct rte_acl_field) * (fld_num))
153 /** Max number of characters in name.*/
154 #define RTE_ACL_NAMESIZE 32
157 * Parameters used when creating the ACL context.
159 struct rte_acl_param {
160 const char *name; /**< Name of the ACL context. */
161 int socket_id; /**< Socket ID to allocate memory for. */
162 uint32_t rule_size; /**< Size of each rule. */
163 uint32_t max_rule_num; /**< Maximum number of rules. */
168 * Create a new ACL context.
171 * Parameters used to create and initialise the ACL context.
173 * Pointer to ACL context structure that is used in future ACL
174 * operations, or NULL on error, with error code set in rte_errno.
175 * Possible rte_errno errors include:
176 * - EINVAL - invalid parameter passed to function
179 rte_acl_create(const struct rte_acl_param *param);
182 * Find an existing ACL context object and return a pointer to it.
185 * Name of the ACL context as passed to rte_acl_create()
187 * Pointer to ACL context or NULL if object not found
188 * with rte_errno set appropriately. Possible rte_errno values include:
189 * - ENOENT - value not available for return
192 rte_acl_find_existing(const char *name);
195 * De-allocate all memory used by ACL context.
198 * ACL context to free
201 rte_acl_free(struct rte_acl_ctx *ctx);
204 * Add rules to an existing ACL context.
205 * This function is not multi-thread safe.
208 * ACL context to add patterns to.
210 * Array of rules to add to the ACL context.
211 * Note that all fields in rte_acl_rule structures are expected
212 * to be in host byte order.
213 * Each rule expected to be in the same format and not exceed size
214 * specified at ACL context creation time.
216 * Number of elements in the input array of rules.
218 * - -ENOMEM if there is no space in the ACL context for these rules.
219 * - -EINVAL if the parameters are invalid.
220 * - Zero if operation completed successfully.
223 rte_acl_add_rules(struct rte_acl_ctx *ctx, const struct rte_acl_rule *rules,
227 * Delete all rules from the ACL context.
228 * This function is not multi-thread safe.
229 * Note that internal run-time structures are not affected.
232 * ACL context to delete rules from.
235 rte_acl_reset_rules(struct rte_acl_ctx *ctx);
238 * Analyze set of rules and build required internal run-time structures.
239 * This function is not multi-thread safe.
242 * ACL context to build.
244 * Pointer to struct rte_acl_config - defines build parameters.
246 * - -ENOMEM if couldn't allocate enough memory.
247 * - -EINVAL if the parameters are invalid.
248 * - Negative error code if operation failed.
249 * - Zero if operation completed successfully.
252 rte_acl_build(struct rte_acl_ctx *ctx, const struct rte_acl_config *cfg);
255 * Delete all rules from the ACL context and
256 * destroy all internal run-time structures.
257 * This function is not multi-thread safe.
260 * ACL context to reset.
263 rte_acl_reset(struct rte_acl_ctx *ctx);
266 * Available implementations of ACL classify.
268 enum rte_acl_classify_alg {
269 RTE_ACL_CLASSIFY_DEFAULT = 0,
270 RTE_ACL_CLASSIFY_SCALAR = 1, /**< generic implementation. */
271 RTE_ACL_CLASSIFY_SSE = 2, /**< requires SSE4.1 support. */
272 RTE_ACL_CLASSIFY_AVX2 = 3, /**< requires AVX2 support. */
273 RTE_ACL_CLASSIFY_NUM /* should always be the last one. */
277 * Perform search for a matching ACL rule for each input data buffer.
278 * Each input data buffer can have up to *categories* matches.
279 * That implies that results array should be big enough to hold
280 * (categories * num) elements.
281 * Also categories parameter should be either one or multiple of
282 * RTE_ACL_RESULTS_MULTIPLIER and can't be bigger than RTE_ACL_MAX_CATEGORIES.
283 * If more than one rule is applicable for given input buffer and
284 * given category, then rule with highest priority will be returned as a match.
285 * Note, that it is a caller's responsibility to ensure that input parameters
286 * are valid and point to correct memory locations.
289 * ACL context to search with.
291 * Array of pointers to input data buffers to perform search.
292 * Note that all fields in input data buffers supposed to be in network
295 * Array of search results, *categories* results per each input data buffer.
297 * Number of elements in the input data buffers array.
299 * Number of maximum possible matches for each input buffer, one possible
300 * match per category.
302 * zero on successful completion.
303 * -EINVAL for incorrect arguments.
306 rte_acl_classify(const struct rte_acl_ctx *ctx,
307 const uint8_t **data,
308 uint32_t *results, uint32_t num,
309 uint32_t categories);
312 * Perform search using specified algorithm for a matching ACL rule for
313 * each input data buffer.
314 * Each input data buffer can have up to *categories* matches.
315 * That implies that results array should be big enough to hold
316 * (categories * num) elements.
317 * Also categories parameter should be either one or multiple of
318 * RTE_ACL_RESULTS_MULTIPLIER and can't be bigger than RTE_ACL_MAX_CATEGORIES.
319 * If more than one rule is applicable for given input buffer and
320 * given category, then rule with highest priority will be returned as a match.
321 * Note, that it is a caller's responsibility to ensure that input parameters
322 * are valid and point to correct memory locations.
325 * ACL context to search with.
327 * Array of pointers to input data buffers to perform search.
328 * Note that all fields in input data buffers supposed to be in network
331 * Array of search results, *categories* results per each input data buffer.
333 * Number of elements in the input data buffers array.
335 * Number of maximum possible matches for each input buffer, one possible
336 * match per category.
338 * Algorithm to be used for the search.
339 * It is the caller responsibility to ensure that the value refers to the
340 * existing algorithm, and that it could be run on the given CPU.
342 * zero on successful completion.
343 * -EINVAL for incorrect arguments.
346 rte_acl_classify_alg(const struct rte_acl_ctx *ctx,
347 const uint8_t **data,
348 uint32_t *results, uint32_t num,
350 enum rte_acl_classify_alg alg);
353 * Override the default classifier function for a given ACL context.
355 * ACL context to change classify function for.
357 * New default classify algorithm for given ACL context.
358 * It is the caller responsibility to ensure that the value refers to the
359 * existing algorithm, and that it could be run on the given CPU.
361 * - -EINVAL if the parameters are invalid.
362 * - Zero if operation completed successfully.
365 rte_acl_set_ctx_classify(struct rte_acl_ctx *ctx,
366 enum rte_acl_classify_alg alg);
369 * Dump an ACL context structure to the console.
372 * ACL context to dump.
375 rte_acl_dump(const struct rte_acl_ctx *ctx);
378 * Dump all ACL context structures to the console.
381 rte_acl_list_dump(void);
384 * Legacy support for 7-tuple IPv4 and VLAN rule.
385 * This structure and corresponding API is deprecated.
387 struct rte_acl_ipv4vlan_rule {
388 struct rte_acl_rule_data data; /**< Miscellaneous data for the rule. */
389 uint8_t proto; /**< IPv4 protocol ID. */
390 uint8_t proto_mask; /**< IPv4 protocol ID mask. */
391 uint16_t vlan; /**< VLAN ID. */
392 uint16_t vlan_mask; /**< VLAN ID mask. */
393 uint16_t domain; /**< VLAN domain. */
394 uint16_t domain_mask; /**< VLAN domain mask. */
395 uint32_t src_addr; /**< IPv4 source address. */
396 uint32_t src_mask_len; /**< IPv4 source address mask. */
397 uint32_t dst_addr; /**< IPv4 destination address. */
398 uint32_t dst_mask_len; /**< IPv4 destination address mask. */
399 uint16_t src_port_low; /**< L4 source port low. */
400 uint16_t src_port_high; /**< L4 source port high. */
401 uint16_t dst_port_low; /**< L4 destination port low. */
402 uint16_t dst_port_high; /**< L4 destination port high. */
406 * Specifies fields layout inside rte_acl_rule for rte_acl_ipv4vlan_rule.
409 RTE_ACL_IPV4VLAN_PROTO_FIELD,
410 RTE_ACL_IPV4VLAN_VLAN1_FIELD,
411 RTE_ACL_IPV4VLAN_VLAN2_FIELD,
412 RTE_ACL_IPV4VLAN_SRC_FIELD,
413 RTE_ACL_IPV4VLAN_DST_FIELD,
414 RTE_ACL_IPV4VLAN_SRCP_FIELD,
415 RTE_ACL_IPV4VLAN_DSTP_FIELD,
416 RTE_ACL_IPV4VLAN_NUM_FIELDS
420 * Macro to define rule size for rte_acl_ipv4vlan_rule.
422 #define RTE_ACL_IPV4VLAN_RULE_SZ \
423 RTE_ACL_RULE_SZ(RTE_ACL_IPV4VLAN_NUM_FIELDS)
426 * That effectively defines order of IPV4VLAN classifications:
428 * - VLAN (TAG and DOMAIN)
431 * - PORTS (SRC and DST)
434 RTE_ACL_IPV4VLAN_PROTO,
435 RTE_ACL_IPV4VLAN_VLAN,
436 RTE_ACL_IPV4VLAN_SRC,
437 RTE_ACL_IPV4VLAN_DST,
438 RTE_ACL_IPV4VLAN_PORTS,
443 * Add ipv4vlan rules to an existing ACL context.
444 * This function is not multi-thread safe.
447 * ACL context to add patterns to.
449 * Array of rules to add to the ACL context.
450 * Note that all fields in rte_acl_ipv4vlan_rule structures are expected
451 * to be in host byte order.
453 * Number of elements in the input array of rules.
455 * - -ENOMEM if there is no space in the ACL context for these rules.
456 * - -EINVAL if the parameters are invalid.
457 * - Zero if operation completed successfully.
460 rte_acl_ipv4vlan_add_rules(struct rte_acl_ctx *ctx,
461 const struct rte_acl_ipv4vlan_rule *rules,
465 * Analyze set of ipv4vlan rules and build required internal
466 * run-time structures.
467 * This function is not multi-thread safe.
470 * ACL context to build.
472 * Layout of input data to search through.
473 * @param num_categories
474 * Maximum number of categories to use in that build.
476 * - -ENOMEM if couldn't allocate enough memory.
477 * - -EINVAL if the parameters are invalid.
478 * - Negative error code if operation failed.
479 * - Zero if operation completed successfully.
482 rte_acl_ipv4vlan_build(struct rte_acl_ctx *ctx,
483 const uint32_t layout[RTE_ACL_IPV4VLAN_NUM],
484 uint32_t num_categories);
491 #endif /* _RTE_ACL_H_ */