Imported Upstream version 16.07-rc1
[deb_dpdk.git] / lib / librte_lpm / rte_lpm.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
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
16  *       distribution.
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.
20  *
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.
32  */
33
34 #include <string.h>
35 #include <stdint.h>
36 #include <errno.h>
37 #include <stdarg.h>
38 #include <stdio.h>
39 #include <errno.h>
40 #include <sys/queue.h>
41
42 #include <rte_log.h>
43 #include <rte_branch_prediction.h>
44 #include <rte_common.h>
45 #include <rte_memory.h>        /* for definition of RTE_CACHE_LINE_SIZE */
46 #include <rte_malloc.h>
47 #include <rte_memzone.h>
48 #include <rte_eal.h>
49 #include <rte_eal_memconfig.h>
50 #include <rte_per_lcore.h>
51 #include <rte_string_fns.h>
52 #include <rte_errno.h>
53 #include <rte_rwlock.h>
54 #include <rte_spinlock.h>
55
56 #include "rte_lpm.h"
57
58 TAILQ_HEAD(rte_lpm_list, rte_tailq_entry);
59
60 static struct rte_tailq_elem rte_lpm_tailq = {
61         .name = "RTE_LPM",
62 };
63 EAL_REGISTER_TAILQ(rte_lpm_tailq)
64
65 #define MAX_DEPTH_TBL24 24
66
67 enum valid_flag {
68         INVALID = 0,
69         VALID
70 };
71
72 /* Macro to enable/disable run-time checks. */
73 #if defined(RTE_LIBRTE_LPM_DEBUG)
74 #include <rte_debug.h>
75 #define VERIFY_DEPTH(depth) do {                                \
76         if ((depth == 0) || (depth > RTE_LPM_MAX_DEPTH))        \
77                 rte_panic("LPM: Invalid depth (%u) at line %d", \
78                                 (unsigned)(depth), __LINE__);   \
79 } while (0)
80 #else
81 #define VERIFY_DEPTH(depth)
82 #endif
83
84 /*
85  * Converts a given depth value to its corresponding mask value.
86  *
87  * depth  (IN)          : range = 1 - 32
88  * mask   (OUT)         : 32bit mask
89  */
90 static uint32_t __attribute__((pure))
91 depth_to_mask(uint8_t depth)
92 {
93         VERIFY_DEPTH(depth);
94
95         /* To calculate a mask start with a 1 on the left hand side and right
96          * shift while populating the left hand side with 1's
97          */
98         return (int)0x80000000 >> (depth - 1);
99 }
100
101 /*
102  * Converts given depth value to its corresponding range value.
103  */
104 static inline uint32_t __attribute__((pure))
105 depth_to_range(uint8_t depth)
106 {
107         VERIFY_DEPTH(depth);
108
109         /*
110          * Calculate tbl24 range. (Note: 2^depth = 1 << depth)
111          */
112         if (depth <= MAX_DEPTH_TBL24)
113                 return 1 << (MAX_DEPTH_TBL24 - depth);
114
115         /* Else if depth is greater than 24 */
116         return 1 << (RTE_LPM_MAX_DEPTH - depth);
117 }
118
119 /*
120  * Find an existing lpm table and return a pointer to it.
121  */
122 struct rte_lpm_v20 *
123 rte_lpm_find_existing_v20(const char *name)
124 {
125         struct rte_lpm_v20 *l = NULL;
126         struct rte_tailq_entry *te;
127         struct rte_lpm_list *lpm_list;
128
129         lpm_list = RTE_TAILQ_CAST(rte_lpm_tailq.head, rte_lpm_list);
130
131         rte_rwlock_read_lock(RTE_EAL_TAILQ_RWLOCK);
132         TAILQ_FOREACH(te, lpm_list, next) {
133                 l = (struct rte_lpm_v20 *) te->data;
134                 if (strncmp(name, l->name, RTE_LPM_NAMESIZE) == 0)
135                         break;
136         }
137         rte_rwlock_read_unlock(RTE_EAL_TAILQ_RWLOCK);
138
139         if (te == NULL) {
140                 rte_errno = ENOENT;
141                 return NULL;
142         }
143
144         return l;
145 }
146 VERSION_SYMBOL(rte_lpm_find_existing, _v20, 2.0);
147
148 struct rte_lpm *
149 rte_lpm_find_existing_v1604(const char *name)
150 {
151         struct rte_lpm *l = NULL;
152         struct rte_tailq_entry *te;
153         struct rte_lpm_list *lpm_list;
154
155         lpm_list = RTE_TAILQ_CAST(rte_lpm_tailq.head, rte_lpm_list);
156
157         rte_rwlock_read_lock(RTE_EAL_TAILQ_RWLOCK);
158         TAILQ_FOREACH(te, lpm_list, next) {
159                 l = (struct rte_lpm *) te->data;
160                 if (strncmp(name, l->name, RTE_LPM_NAMESIZE) == 0)
161                         break;
162         }
163         rte_rwlock_read_unlock(RTE_EAL_TAILQ_RWLOCK);
164
165         if (te == NULL) {
166                 rte_errno = ENOENT;
167                 return NULL;
168         }
169
170         return l;
171 }
172 BIND_DEFAULT_SYMBOL(rte_lpm_find_existing, _v1604, 16.04);
173 MAP_STATIC_SYMBOL(struct rte_lpm *rte_lpm_find_existing(const char *name),
174                 rte_lpm_find_existing_v1604);
175
176 /*
177  * Allocates memory for LPM object
178  */
179 struct rte_lpm_v20 *
180 rte_lpm_create_v20(const char *name, int socket_id, int max_rules,
181                 __rte_unused int flags)
182 {
183         char mem_name[RTE_LPM_NAMESIZE];
184         struct rte_lpm_v20 *lpm = NULL;
185         struct rte_tailq_entry *te;
186         uint32_t mem_size;
187         struct rte_lpm_list *lpm_list;
188
189         lpm_list = RTE_TAILQ_CAST(rte_lpm_tailq.head, rte_lpm_list);
190
191         RTE_BUILD_BUG_ON(sizeof(struct rte_lpm_tbl_entry_v20) != 2);
192
193         /* Check user arguments. */
194         if ((name == NULL) || (socket_id < -1) || (max_rules == 0)) {
195                 rte_errno = EINVAL;
196                 return NULL;
197         }
198
199         snprintf(mem_name, sizeof(mem_name), "LPM_%s", name);
200
201         /* Determine the amount of memory to allocate. */
202         mem_size = sizeof(*lpm) + (sizeof(lpm->rules_tbl[0]) * max_rules);
203
204         rte_rwlock_write_lock(RTE_EAL_TAILQ_RWLOCK);
205
206         /* guarantee there's no existing */
207         TAILQ_FOREACH(te, lpm_list, next) {
208                 lpm = (struct rte_lpm_v20 *) te->data;
209                 if (strncmp(name, lpm->name, RTE_LPM_NAMESIZE) == 0)
210                         break;
211         }
212         lpm = NULL;
213         if (te != NULL) {
214                 rte_errno = EEXIST;
215                 goto exit;
216         }
217
218         /* allocate tailq entry */
219         te = rte_zmalloc("LPM_TAILQ_ENTRY", sizeof(*te), 0);
220         if (te == NULL) {
221                 RTE_LOG(ERR, LPM, "Failed to allocate tailq entry\n");
222                 goto exit;
223         }
224
225         /* Allocate memory to store the LPM data structures. */
226         lpm = (struct rte_lpm_v20 *)rte_zmalloc_socket(mem_name, mem_size,
227                         RTE_CACHE_LINE_SIZE, socket_id);
228         if (lpm == NULL) {
229                 RTE_LOG(ERR, LPM, "LPM memory allocation failed\n");
230                 rte_free(te);
231                 goto exit;
232         }
233
234         /* Save user arguments. */
235         lpm->max_rules = max_rules;
236         snprintf(lpm->name, sizeof(lpm->name), "%s", name);
237
238         te->data = (void *) lpm;
239
240         TAILQ_INSERT_TAIL(lpm_list, te, next);
241
242 exit:
243         rte_rwlock_write_unlock(RTE_EAL_TAILQ_RWLOCK);
244
245         return lpm;
246 }
247 VERSION_SYMBOL(rte_lpm_create, _v20, 2.0);
248
249 struct rte_lpm *
250 rte_lpm_create_v1604(const char *name, int socket_id,
251                 const struct rte_lpm_config *config)
252 {
253         char mem_name[RTE_LPM_NAMESIZE];
254         struct rte_lpm *lpm = NULL;
255         struct rte_tailq_entry *te;
256         uint32_t mem_size, rules_size, tbl8s_size;
257         struct rte_lpm_list *lpm_list;
258
259         lpm_list = RTE_TAILQ_CAST(rte_lpm_tailq.head, rte_lpm_list);
260
261         RTE_BUILD_BUG_ON(sizeof(struct rte_lpm_tbl_entry) != 4);
262
263         /* Check user arguments. */
264         if ((name == NULL) || (socket_id < -1) || (config->max_rules == 0)
265                         || config->number_tbl8s > RTE_LPM_MAX_TBL8_NUM_GROUPS) {
266                 rte_errno = EINVAL;
267                 return NULL;
268         }
269
270         snprintf(mem_name, sizeof(mem_name), "LPM_%s", name);
271
272         /* Determine the amount of memory to allocate. */
273         mem_size = sizeof(*lpm);
274         rules_size = sizeof(struct rte_lpm_rule) * config->max_rules;
275         tbl8s_size = (sizeof(struct rte_lpm_tbl_entry) *
276                         RTE_LPM_TBL8_GROUP_NUM_ENTRIES * config->number_tbl8s);
277
278         rte_rwlock_write_lock(RTE_EAL_TAILQ_RWLOCK);
279
280         /* guarantee there's no existing */
281         TAILQ_FOREACH(te, lpm_list, next) {
282                 lpm = (struct rte_lpm *) te->data;
283                 if (strncmp(name, lpm->name, RTE_LPM_NAMESIZE) == 0)
284                         break;
285         }
286         lpm = NULL;
287         if (te != NULL) {
288                 rte_errno = EEXIST;
289                 goto exit;
290         }
291
292         /* allocate tailq entry */
293         te = rte_zmalloc("LPM_TAILQ_ENTRY", sizeof(*te), 0);
294         if (te == NULL) {
295                 RTE_LOG(ERR, LPM, "Failed to allocate tailq entry\n");
296                 goto exit;
297         }
298
299         /* Allocate memory to store the LPM data structures. */
300         lpm = (struct rte_lpm *)rte_zmalloc_socket(mem_name, mem_size,
301                         RTE_CACHE_LINE_SIZE, socket_id);
302         if (lpm == NULL) {
303                 RTE_LOG(ERR, LPM, "LPM memory allocation failed\n");
304                 rte_free(te);
305                 goto exit;
306         }
307
308         lpm->rules_tbl = (struct rte_lpm_rule *)rte_zmalloc_socket(NULL,
309                         (size_t)rules_size, RTE_CACHE_LINE_SIZE, socket_id);
310
311         if (lpm->rules_tbl == NULL) {
312                 RTE_LOG(ERR, LPM, "LPM rules_tbl memory allocation failed\n");
313                 rte_free(lpm);
314                 lpm = NULL;
315                 rte_free(te);
316                 goto exit;
317         }
318
319         lpm->tbl8 = (struct rte_lpm_tbl_entry *)rte_zmalloc_socket(NULL,
320                         (size_t)tbl8s_size, RTE_CACHE_LINE_SIZE, socket_id);
321
322         if (lpm->tbl8 == NULL) {
323                 RTE_LOG(ERR, LPM, "LPM tbl8 memory allocation failed\n");
324                 rte_free(lpm);
325                 lpm = NULL;
326                 rte_free(te);
327                 goto exit;
328         }
329
330         /* Save user arguments. */
331         lpm->max_rules = config->max_rules;
332         lpm->number_tbl8s = config->number_tbl8s;
333         snprintf(lpm->name, sizeof(lpm->name), "%s", name);
334
335         te->data = (void *) lpm;
336
337         TAILQ_INSERT_TAIL(lpm_list, te, next);
338
339 exit:
340         rte_rwlock_write_unlock(RTE_EAL_TAILQ_RWLOCK);
341
342         return lpm;
343 }
344 BIND_DEFAULT_SYMBOL(rte_lpm_create, _v1604, 16.04);
345 MAP_STATIC_SYMBOL(
346         struct rte_lpm *rte_lpm_create(const char *name, int socket_id,
347                         const struct rte_lpm_config *config), rte_lpm_create_v1604);
348
349 /*
350  * Deallocates memory for given LPM table.
351  */
352 void
353 rte_lpm_free_v20(struct rte_lpm_v20 *lpm)
354 {
355         struct rte_lpm_list *lpm_list;
356         struct rte_tailq_entry *te;
357
358         /* Check user arguments. */
359         if (lpm == NULL)
360                 return;
361
362         lpm_list = RTE_TAILQ_CAST(rte_lpm_tailq.head, rte_lpm_list);
363
364         rte_rwlock_write_lock(RTE_EAL_TAILQ_RWLOCK);
365
366         /* find our tailq entry */
367         TAILQ_FOREACH(te, lpm_list, next) {
368                 if (te->data == (void *) lpm)
369                         break;
370         }
371         if (te != NULL)
372                 TAILQ_REMOVE(lpm_list, te, next);
373
374         rte_rwlock_write_unlock(RTE_EAL_TAILQ_RWLOCK);
375
376         rte_free(lpm);
377         rte_free(te);
378 }
379 VERSION_SYMBOL(rte_lpm_free, _v20, 2.0);
380
381 void
382 rte_lpm_free_v1604(struct rte_lpm *lpm)
383 {
384         struct rte_lpm_list *lpm_list;
385         struct rte_tailq_entry *te;
386
387         /* Check user arguments. */
388         if (lpm == NULL)
389                 return;
390
391         lpm_list = RTE_TAILQ_CAST(rte_lpm_tailq.head, rte_lpm_list);
392
393         rte_rwlock_write_lock(RTE_EAL_TAILQ_RWLOCK);
394
395         /* find our tailq entry */
396         TAILQ_FOREACH(te, lpm_list, next) {
397                 if (te->data == (void *) lpm)
398                         break;
399         }
400         if (te != NULL)
401                 TAILQ_REMOVE(lpm_list, te, next);
402
403         rte_rwlock_write_unlock(RTE_EAL_TAILQ_RWLOCK);
404
405         rte_free(lpm->rules_tbl);
406         rte_free(lpm);
407         rte_free(te);
408 }
409 BIND_DEFAULT_SYMBOL(rte_lpm_free, _v1604, 16.04);
410 MAP_STATIC_SYMBOL(void rte_lpm_free(struct rte_lpm *lpm),
411                 rte_lpm_free_v1604);
412
413 /*
414  * Adds a rule to the rule table.
415  *
416  * NOTE: The rule table is split into 32 groups. Each group contains rules that
417  * apply to a specific prefix depth (i.e. group 1 contains rules that apply to
418  * prefixes with a depth of 1 etc.). In the following code (depth - 1) is used
419  * to refer to depth 1 because even though the depth range is 1 - 32, depths
420  * are stored in the rule table from 0 - 31.
421  * NOTE: Valid range for depth parameter is 1 .. 32 inclusive.
422  */
423 static inline int32_t
424 rule_add_v20(struct rte_lpm_v20 *lpm, uint32_t ip_masked, uint8_t depth,
425         uint8_t next_hop)
426 {
427         uint32_t rule_gindex, rule_index, last_rule;
428         int i;
429
430         VERIFY_DEPTH(depth);
431
432         /* Scan through rule group to see if rule already exists. */
433         if (lpm->rule_info[depth - 1].used_rules > 0) {
434
435                 /* rule_gindex stands for rule group index. */
436                 rule_gindex = lpm->rule_info[depth - 1].first_rule;
437                 /* Initialise rule_index to point to start of rule group. */
438                 rule_index = rule_gindex;
439                 /* Last rule = Last used rule in this rule group. */
440                 last_rule = rule_gindex + lpm->rule_info[depth - 1].used_rules;
441
442                 for (; rule_index < last_rule; rule_index++) {
443
444                         /* If rule already exists update its next_hop and return. */
445                         if (lpm->rules_tbl[rule_index].ip == ip_masked) {
446                                 lpm->rules_tbl[rule_index].next_hop = next_hop;
447
448                                 return rule_index;
449                         }
450                 }
451
452                 if (rule_index == lpm->max_rules)
453                         return -ENOSPC;
454         } else {
455                 /* Calculate the position in which the rule will be stored. */
456                 rule_index = 0;
457
458                 for (i = depth - 1; i > 0; i--) {
459                         if (lpm->rule_info[i - 1].used_rules > 0) {
460                                 rule_index = lpm->rule_info[i - 1].first_rule
461                                                 + lpm->rule_info[i - 1].used_rules;
462                                 break;
463                         }
464                 }
465                 if (rule_index == lpm->max_rules)
466                         return -ENOSPC;
467
468                 lpm->rule_info[depth - 1].first_rule = rule_index;
469         }
470
471         /* Make room for the new rule in the array. */
472         for (i = RTE_LPM_MAX_DEPTH; i > depth; i--) {
473                 if (lpm->rule_info[i - 1].first_rule
474                                 + lpm->rule_info[i - 1].used_rules == lpm->max_rules)
475                         return -ENOSPC;
476
477                 if (lpm->rule_info[i - 1].used_rules > 0) {
478                         lpm->rules_tbl[lpm->rule_info[i - 1].first_rule
479                                 + lpm->rule_info[i - 1].used_rules]
480                                         = lpm->rules_tbl[lpm->rule_info[i - 1].first_rule];
481                         lpm->rule_info[i - 1].first_rule++;
482                 }
483         }
484
485         /* Add the new rule. */
486         lpm->rules_tbl[rule_index].ip = ip_masked;
487         lpm->rules_tbl[rule_index].next_hop = next_hop;
488
489         /* Increment the used rules counter for this rule group. */
490         lpm->rule_info[depth - 1].used_rules++;
491
492         return rule_index;
493 }
494
495 static inline int32_t
496 rule_add_v1604(struct rte_lpm *lpm, uint32_t ip_masked, uint8_t depth,
497         uint32_t next_hop)
498 {
499         uint32_t rule_gindex, rule_index, last_rule;
500         int i;
501
502         VERIFY_DEPTH(depth);
503
504         /* Scan through rule group to see if rule already exists. */
505         if (lpm->rule_info[depth - 1].used_rules > 0) {
506
507                 /* rule_gindex stands for rule group index. */
508                 rule_gindex = lpm->rule_info[depth - 1].first_rule;
509                 /* Initialise rule_index to point to start of rule group. */
510                 rule_index = rule_gindex;
511                 /* Last rule = Last used rule in this rule group. */
512                 last_rule = rule_gindex + lpm->rule_info[depth - 1].used_rules;
513
514                 for (; rule_index < last_rule; rule_index++) {
515
516                         /* If rule already exists update its next_hop and return. */
517                         if (lpm->rules_tbl[rule_index].ip == ip_masked) {
518                                 lpm->rules_tbl[rule_index].next_hop = next_hop;
519
520                                 return rule_index;
521                         }
522                 }
523
524                 if (rule_index == lpm->max_rules)
525                         return -ENOSPC;
526         } else {
527                 /* Calculate the position in which the rule will be stored. */
528                 rule_index = 0;
529
530                 for (i = depth - 1; i > 0; i--) {
531                         if (lpm->rule_info[i - 1].used_rules > 0) {
532                                 rule_index = lpm->rule_info[i - 1].first_rule
533                                                 + lpm->rule_info[i - 1].used_rules;
534                                 break;
535                         }
536                 }
537                 if (rule_index == lpm->max_rules)
538                         return -ENOSPC;
539
540                 lpm->rule_info[depth - 1].first_rule = rule_index;
541         }
542
543         /* Make room for the new rule in the array. */
544         for (i = RTE_LPM_MAX_DEPTH; i > depth; i--) {
545                 if (lpm->rule_info[i - 1].first_rule
546                                 + lpm->rule_info[i - 1].used_rules == lpm->max_rules)
547                         return -ENOSPC;
548
549                 if (lpm->rule_info[i - 1].used_rules > 0) {
550                         lpm->rules_tbl[lpm->rule_info[i - 1].first_rule
551                                 + lpm->rule_info[i - 1].used_rules]
552                                         = lpm->rules_tbl[lpm->rule_info[i - 1].first_rule];
553                         lpm->rule_info[i - 1].first_rule++;
554                 }
555         }
556
557         /* Add the new rule. */
558         lpm->rules_tbl[rule_index].ip = ip_masked;
559         lpm->rules_tbl[rule_index].next_hop = next_hop;
560
561         /* Increment the used rules counter for this rule group. */
562         lpm->rule_info[depth - 1].used_rules++;
563
564         return rule_index;
565 }
566
567 /*
568  * Delete a rule from the rule table.
569  * NOTE: Valid range for depth parameter is 1 .. 32 inclusive.
570  */
571 static inline void
572 rule_delete_v20(struct rte_lpm_v20 *lpm, int32_t rule_index, uint8_t depth)
573 {
574         int i;
575
576         VERIFY_DEPTH(depth);
577
578         lpm->rules_tbl[rule_index] =
579                         lpm->rules_tbl[lpm->rule_info[depth - 1].first_rule
580                                 + lpm->rule_info[depth - 1].used_rules - 1];
581
582         for (i = depth; i < RTE_LPM_MAX_DEPTH; i++) {
583                 if (lpm->rule_info[i].used_rules > 0) {
584                         lpm->rules_tbl[lpm->rule_info[i].first_rule - 1] =
585                                 lpm->rules_tbl[lpm->rule_info[i].first_rule
586                                         + lpm->rule_info[i].used_rules - 1];
587                         lpm->rule_info[i].first_rule--;
588                 }
589         }
590
591         lpm->rule_info[depth - 1].used_rules--;
592 }
593
594 static inline void
595 rule_delete_v1604(struct rte_lpm *lpm, int32_t rule_index, uint8_t depth)
596 {
597         int i;
598
599         VERIFY_DEPTH(depth);
600
601         lpm->rules_tbl[rule_index] =
602                         lpm->rules_tbl[lpm->rule_info[depth - 1].first_rule
603                         + lpm->rule_info[depth - 1].used_rules - 1];
604
605         for (i = depth; i < RTE_LPM_MAX_DEPTH; i++) {
606                 if (lpm->rule_info[i].used_rules > 0) {
607                         lpm->rules_tbl[lpm->rule_info[i].first_rule - 1] =
608                                         lpm->rules_tbl[lpm->rule_info[i].first_rule
609                                                 + lpm->rule_info[i].used_rules - 1];
610                         lpm->rule_info[i].first_rule--;
611                 }
612         }
613
614         lpm->rule_info[depth - 1].used_rules--;
615 }
616
617 /*
618  * Finds a rule in rule table.
619  * NOTE: Valid range for depth parameter is 1 .. 32 inclusive.
620  */
621 static inline int32_t
622 rule_find_v20(struct rte_lpm_v20 *lpm, uint32_t ip_masked, uint8_t depth)
623 {
624         uint32_t rule_gindex, last_rule, rule_index;
625
626         VERIFY_DEPTH(depth);
627
628         rule_gindex = lpm->rule_info[depth - 1].first_rule;
629         last_rule = rule_gindex + lpm->rule_info[depth - 1].used_rules;
630
631         /* Scan used rules at given depth to find rule. */
632         for (rule_index = rule_gindex; rule_index < last_rule; rule_index++) {
633                 /* If rule is found return the rule index. */
634                 if (lpm->rules_tbl[rule_index].ip == ip_masked)
635                         return rule_index;
636         }
637
638         /* If rule is not found return -EINVAL. */
639         return -EINVAL;
640 }
641
642 static inline int32_t
643 rule_find_v1604(struct rte_lpm *lpm, uint32_t ip_masked, uint8_t depth)
644 {
645         uint32_t rule_gindex, last_rule, rule_index;
646
647         VERIFY_DEPTH(depth);
648
649         rule_gindex = lpm->rule_info[depth - 1].first_rule;
650         last_rule = rule_gindex + lpm->rule_info[depth - 1].used_rules;
651
652         /* Scan used rules at given depth to find rule. */
653         for (rule_index = rule_gindex; rule_index < last_rule; rule_index++) {
654                 /* If rule is found return the rule index. */
655                 if (lpm->rules_tbl[rule_index].ip == ip_masked)
656                         return rule_index;
657         }
658
659         /* If rule is not found return -EINVAL. */
660         return -EINVAL;
661 }
662
663 /*
664  * Find, clean and allocate a tbl8.
665  */
666 static inline int32_t
667 tbl8_alloc_v20(struct rte_lpm_tbl_entry_v20 *tbl8)
668 {
669         uint32_t group_idx; /* tbl8 group index. */
670         struct rte_lpm_tbl_entry_v20 *tbl8_entry;
671
672         /* Scan through tbl8 to find a free (i.e. INVALID) tbl8 group. */
673         for (group_idx = 0; group_idx < RTE_LPM_TBL8_NUM_GROUPS;
674                         group_idx++) {
675                 tbl8_entry = &tbl8[group_idx * RTE_LPM_TBL8_GROUP_NUM_ENTRIES];
676                 /* If a free tbl8 group is found clean it and set as VALID. */
677                 if (!tbl8_entry->valid_group) {
678                         memset(&tbl8_entry[0], 0,
679                                         RTE_LPM_TBL8_GROUP_NUM_ENTRIES *
680                                         sizeof(tbl8_entry[0]));
681
682                         tbl8_entry->valid_group = VALID;
683
684                         /* Return group index for allocated tbl8 group. */
685                         return group_idx;
686                 }
687         }
688
689         /* If there are no tbl8 groups free then return error. */
690         return -ENOSPC;
691 }
692
693 static inline int32_t
694 tbl8_alloc_v1604(struct rte_lpm_tbl_entry *tbl8, uint32_t number_tbl8s)
695 {
696         uint32_t group_idx; /* tbl8 group index. */
697         struct rte_lpm_tbl_entry *tbl8_entry;
698
699         /* Scan through tbl8 to find a free (i.e. INVALID) tbl8 group. */
700         for (group_idx = 0; group_idx < number_tbl8s; group_idx++) {
701                 tbl8_entry = &tbl8[group_idx * RTE_LPM_TBL8_GROUP_NUM_ENTRIES];
702                 /* If a free tbl8 group is found clean it and set as VALID. */
703                 if (!tbl8_entry->valid_group) {
704                         memset(&tbl8_entry[0], 0,
705                                         RTE_LPM_TBL8_GROUP_NUM_ENTRIES *
706                                         sizeof(tbl8_entry[0]));
707
708                         tbl8_entry->valid_group = VALID;
709
710                         /* Return group index for allocated tbl8 group. */
711                         return group_idx;
712                 }
713         }
714
715         /* If there are no tbl8 groups free then return error. */
716         return -ENOSPC;
717 }
718
719 static inline void
720 tbl8_free_v20(struct rte_lpm_tbl_entry_v20 *tbl8, uint32_t tbl8_group_start)
721 {
722         /* Set tbl8 group invalid*/
723         tbl8[tbl8_group_start].valid_group = INVALID;
724 }
725
726 static inline void
727 tbl8_free_v1604(struct rte_lpm_tbl_entry *tbl8, uint32_t tbl8_group_start)
728 {
729         /* Set tbl8 group invalid*/
730         tbl8[tbl8_group_start].valid_group = INVALID;
731 }
732
733 static inline int32_t
734 add_depth_small_v20(struct rte_lpm_v20 *lpm, uint32_t ip, uint8_t depth,
735                 uint8_t next_hop)
736 {
737         uint32_t tbl24_index, tbl24_range, tbl8_index, tbl8_group_end, i, j;
738
739         /* Calculate the index into Table24. */
740         tbl24_index = ip >> 8;
741         tbl24_range = depth_to_range(depth);
742
743         for (i = tbl24_index; i < (tbl24_index + tbl24_range); i++) {
744                 /*
745                  * For invalid OR valid and non-extended tbl 24 entries set
746                  * entry.
747                  */
748                 if (!lpm->tbl24[i].valid || (lpm->tbl24[i].valid_group == 0 &&
749                                 lpm->tbl24[i].depth <= depth)) {
750
751                         struct rte_lpm_tbl_entry_v20 new_tbl24_entry = {
752                                 .valid = VALID,
753                                 .valid_group = 0,
754                                 .depth = depth,
755                         };
756                         new_tbl24_entry.next_hop = next_hop;
757
758                         /* Setting tbl24 entry in one go to avoid race
759                          * conditions
760                          */
761                         lpm->tbl24[i] = new_tbl24_entry;
762
763                         continue;
764                 }
765
766                 if (lpm->tbl24[i].valid_group == 1) {
767                         /* If tbl24 entry is valid and extended calculate the
768                          *  index into tbl8.
769                          */
770                         tbl8_index = lpm->tbl24[i].group_idx *
771                                         RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
772                         tbl8_group_end = tbl8_index +
773                                         RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
774
775                         for (j = tbl8_index; j < tbl8_group_end; j++) {
776                                 if (!lpm->tbl8[j].valid ||
777                                                 lpm->tbl8[j].depth <= depth) {
778                                         struct rte_lpm_tbl_entry_v20
779                                                 new_tbl8_entry = {
780                                                 .valid = VALID,
781                                                 .valid_group = VALID,
782                                                 .depth = depth,
783                                         };
784                                         new_tbl8_entry.next_hop = next_hop;
785
786                                         /*
787                                          * Setting tbl8 entry in one go to avoid
788                                          * race conditions
789                                          */
790                                         lpm->tbl8[j] = new_tbl8_entry;
791
792                                         continue;
793                                 }
794                         }
795                 }
796         }
797
798         return 0;
799 }
800
801 static inline int32_t
802 add_depth_small_v1604(struct rte_lpm *lpm, uint32_t ip, uint8_t depth,
803                 uint32_t next_hop)
804 {
805 #define group_idx next_hop
806         uint32_t tbl24_index, tbl24_range, tbl8_index, tbl8_group_end, i, j;
807
808         /* Calculate the index into Table24. */
809         tbl24_index = ip >> 8;
810         tbl24_range = depth_to_range(depth);
811
812         for (i = tbl24_index; i < (tbl24_index + tbl24_range); i++) {
813                 /*
814                  * For invalid OR valid and non-extended tbl 24 entries set
815                  * entry.
816                  */
817                 if (!lpm->tbl24[i].valid || (lpm->tbl24[i].valid_group == 0 &&
818                                 lpm->tbl24[i].depth <= depth)) {
819
820                         struct rte_lpm_tbl_entry new_tbl24_entry = {
821                                 .next_hop = next_hop,
822                                 .valid = VALID,
823                                 .valid_group = 0,
824                                 .depth = depth,
825                         };
826
827                         /* Setting tbl24 entry in one go to avoid race
828                          * conditions
829                          */
830                         lpm->tbl24[i] = new_tbl24_entry;
831
832                         continue;
833                 }
834
835                 if (lpm->tbl24[i].valid_group == 1) {
836                         /* If tbl24 entry is valid and extended calculate the
837                          *  index into tbl8.
838                          */
839                         tbl8_index = lpm->tbl24[i].group_idx *
840                                         RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
841                         tbl8_group_end = tbl8_index +
842                                         RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
843
844                         for (j = tbl8_index; j < tbl8_group_end; j++) {
845                                 if (!lpm->tbl8[j].valid ||
846                                                 lpm->tbl8[j].depth <= depth) {
847                                         struct rte_lpm_tbl_entry
848                                                 new_tbl8_entry = {
849                                                 .valid = VALID,
850                                                 .valid_group = VALID,
851                                                 .depth = depth,
852                                                 .next_hop = next_hop,
853                                         };
854
855                                         /*
856                                          * Setting tbl8 entry in one go to avoid
857                                          * race conditions
858                                          */
859                                         lpm->tbl8[j] = new_tbl8_entry;
860
861                                         continue;
862                                 }
863                         }
864                 }
865         }
866 #undef group_idx
867         return 0;
868 }
869
870 static inline int32_t
871 add_depth_big_v20(struct rte_lpm_v20 *lpm, uint32_t ip_masked, uint8_t depth,
872                 uint8_t next_hop)
873 {
874         uint32_t tbl24_index;
875         int32_t tbl8_group_index, tbl8_group_start, tbl8_group_end, tbl8_index,
876                 tbl8_range, i;
877
878         tbl24_index = (ip_masked >> 8);
879         tbl8_range = depth_to_range(depth);
880
881         if (!lpm->tbl24[tbl24_index].valid) {
882                 /* Search for a free tbl8 group. */
883                 tbl8_group_index = tbl8_alloc_v20(lpm->tbl8);
884
885                 /* Check tbl8 allocation was successful. */
886                 if (tbl8_group_index < 0) {
887                         return tbl8_group_index;
888                 }
889
890                 /* Find index into tbl8 and range. */
891                 tbl8_index = (tbl8_group_index *
892                                 RTE_LPM_TBL8_GROUP_NUM_ENTRIES) +
893                                 (ip_masked & 0xFF);
894
895                 /* Set tbl8 entry. */
896                 for (i = tbl8_index; i < (tbl8_index + tbl8_range); i++) {
897                         lpm->tbl8[i].depth = depth;
898                         lpm->tbl8[i].next_hop = next_hop;
899                         lpm->tbl8[i].valid = VALID;
900                 }
901
902                 /*
903                  * Update tbl24 entry to point to new tbl8 entry. Note: The
904                  * ext_flag and tbl8_index need to be updated simultaneously,
905                  * so assign whole structure in one go
906                  */
907
908                 struct rte_lpm_tbl_entry_v20 new_tbl24_entry = {
909                         { .group_idx = (uint8_t)tbl8_group_index, },
910                         .valid = VALID,
911                         .valid_group = 1,
912                         .depth = 0,
913                 };
914
915                 lpm->tbl24[tbl24_index] = new_tbl24_entry;
916
917         } /* If valid entry but not extended calculate the index into Table8. */
918         else if (lpm->tbl24[tbl24_index].valid_group == 0) {
919                 /* Search for free tbl8 group. */
920                 tbl8_group_index = tbl8_alloc_v20(lpm->tbl8);
921
922                 if (tbl8_group_index < 0) {
923                         return tbl8_group_index;
924                 }
925
926                 tbl8_group_start = tbl8_group_index *
927                                 RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
928                 tbl8_group_end = tbl8_group_start +
929                                 RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
930
931                 /* Populate new tbl8 with tbl24 value. */
932                 for (i = tbl8_group_start; i < tbl8_group_end; i++) {
933                         lpm->tbl8[i].valid = VALID;
934                         lpm->tbl8[i].depth = lpm->tbl24[tbl24_index].depth;
935                         lpm->tbl8[i].next_hop =
936                                         lpm->tbl24[tbl24_index].next_hop;
937                 }
938
939                 tbl8_index = tbl8_group_start + (ip_masked & 0xFF);
940
941                 /* Insert new rule into the tbl8 entry. */
942                 for (i = tbl8_index; i < tbl8_index + tbl8_range; i++) {
943                         if (!lpm->tbl8[i].valid ||
944                                         lpm->tbl8[i].depth <= depth) {
945                                 lpm->tbl8[i].valid = VALID;
946                                 lpm->tbl8[i].depth = depth;
947                                 lpm->tbl8[i].next_hop = next_hop;
948
949                                 continue;
950                         }
951                 }
952
953                 /*
954                  * Update tbl24 entry to point to new tbl8 entry. Note: The
955                  * ext_flag and tbl8_index need to be updated simultaneously,
956                  * so assign whole structure in one go.
957                  */
958
959                 struct rte_lpm_tbl_entry_v20 new_tbl24_entry = {
960                                 { .group_idx = (uint8_t)tbl8_group_index, },
961                                 .valid = VALID,
962                                 .valid_group = 1,
963                                 .depth = 0,
964                 };
965
966                 lpm->tbl24[tbl24_index] = new_tbl24_entry;
967
968         } else { /*
969                 * If it is valid, extended entry calculate the index into tbl8.
970                 */
971                 tbl8_group_index = lpm->tbl24[tbl24_index].group_idx;
972                 tbl8_group_start = tbl8_group_index *
973                                 RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
974                 tbl8_index = tbl8_group_start + (ip_masked & 0xFF);
975
976                 for (i = tbl8_index; i < (tbl8_index + tbl8_range); i++) {
977
978                         if (!lpm->tbl8[i].valid ||
979                                         lpm->tbl8[i].depth <= depth) {
980                                 struct rte_lpm_tbl_entry_v20 new_tbl8_entry = {
981                                         .valid = VALID,
982                                         .depth = depth,
983                                         .valid_group = lpm->tbl8[i].valid_group,
984                                 };
985                                 new_tbl8_entry.next_hop = next_hop;
986                                 /*
987                                  * Setting tbl8 entry in one go to avoid race
988                                  * condition
989                                  */
990                                 lpm->tbl8[i] = new_tbl8_entry;
991
992                                 continue;
993                         }
994                 }
995         }
996
997         return 0;
998 }
999
1000 static inline int32_t
1001 add_depth_big_v1604(struct rte_lpm *lpm, uint32_t ip_masked, uint8_t depth,
1002                 uint32_t next_hop)
1003 {
1004 #define group_idx next_hop
1005         uint32_t tbl24_index;
1006         int32_t tbl8_group_index, tbl8_group_start, tbl8_group_end, tbl8_index,
1007                 tbl8_range, i;
1008
1009         tbl24_index = (ip_masked >> 8);
1010         tbl8_range = depth_to_range(depth);
1011
1012         if (!lpm->tbl24[tbl24_index].valid) {
1013                 /* Search for a free tbl8 group. */
1014                 tbl8_group_index = tbl8_alloc_v1604(lpm->tbl8, lpm->number_tbl8s);
1015
1016                 /* Check tbl8 allocation was successful. */
1017                 if (tbl8_group_index < 0) {
1018                         return tbl8_group_index;
1019                 }
1020
1021                 /* Find index into tbl8 and range. */
1022                 tbl8_index = (tbl8_group_index *
1023                                 RTE_LPM_TBL8_GROUP_NUM_ENTRIES) +
1024                                 (ip_masked & 0xFF);
1025
1026                 /* Set tbl8 entry. */
1027                 for (i = tbl8_index; i < (tbl8_index + tbl8_range); i++) {
1028                         lpm->tbl8[i].depth = depth;
1029                         lpm->tbl8[i].next_hop = next_hop;
1030                         lpm->tbl8[i].valid = VALID;
1031                 }
1032
1033                 /*
1034                  * Update tbl24 entry to point to new tbl8 entry. Note: The
1035                  * ext_flag and tbl8_index need to be updated simultaneously,
1036                  * so assign whole structure in one go
1037                  */
1038
1039                 struct rte_lpm_tbl_entry new_tbl24_entry = {
1040                         .group_idx = (uint8_t)tbl8_group_index,
1041                         .valid = VALID,
1042                         .valid_group = 1,
1043                         .depth = 0,
1044                 };
1045
1046                 lpm->tbl24[tbl24_index] = new_tbl24_entry;
1047
1048         } /* If valid entry but not extended calculate the index into Table8. */
1049         else if (lpm->tbl24[tbl24_index].valid_group == 0) {
1050                 /* Search for free tbl8 group. */
1051                 tbl8_group_index = tbl8_alloc_v1604(lpm->tbl8, lpm->number_tbl8s);
1052
1053                 if (tbl8_group_index < 0) {
1054                         return tbl8_group_index;
1055                 }
1056
1057                 tbl8_group_start = tbl8_group_index *
1058                                 RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
1059                 tbl8_group_end = tbl8_group_start +
1060                                 RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
1061
1062                 /* Populate new tbl8 with tbl24 value. */
1063                 for (i = tbl8_group_start; i < tbl8_group_end; i++) {
1064                         lpm->tbl8[i].valid = VALID;
1065                         lpm->tbl8[i].depth = lpm->tbl24[tbl24_index].depth;
1066                         lpm->tbl8[i].next_hop =
1067                                         lpm->tbl24[tbl24_index].next_hop;
1068                 }
1069
1070                 tbl8_index = tbl8_group_start + (ip_masked & 0xFF);
1071
1072                 /* Insert new rule into the tbl8 entry. */
1073                 for (i = tbl8_index; i < tbl8_index + tbl8_range; i++) {
1074                         if (!lpm->tbl8[i].valid ||
1075                                         lpm->tbl8[i].depth <= depth) {
1076                                 lpm->tbl8[i].valid = VALID;
1077                                 lpm->tbl8[i].depth = depth;
1078                                 lpm->tbl8[i].next_hop = next_hop;
1079
1080                                 continue;
1081                         }
1082                 }
1083
1084                 /*
1085                  * Update tbl24 entry to point to new tbl8 entry. Note: The
1086                  * ext_flag and tbl8_index need to be updated simultaneously,
1087                  * so assign whole structure in one go.
1088                  */
1089
1090                 struct rte_lpm_tbl_entry new_tbl24_entry = {
1091                                 .group_idx = (uint8_t)tbl8_group_index,
1092                                 .valid = VALID,
1093                                 .valid_group = 1,
1094                                 .depth = 0,
1095                 };
1096
1097                 lpm->tbl24[tbl24_index] = new_tbl24_entry;
1098
1099         } else { /*
1100                 * If it is valid, extended entry calculate the index into tbl8.
1101                 */
1102                 tbl8_group_index = lpm->tbl24[tbl24_index].group_idx;
1103                 tbl8_group_start = tbl8_group_index *
1104                                 RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
1105                 tbl8_index = tbl8_group_start + (ip_masked & 0xFF);
1106
1107                 for (i = tbl8_index; i < (tbl8_index + tbl8_range); i++) {
1108
1109                         if (!lpm->tbl8[i].valid ||
1110                                         lpm->tbl8[i].depth <= depth) {
1111                                 struct rte_lpm_tbl_entry new_tbl8_entry = {
1112                                         .valid = VALID,
1113                                         .depth = depth,
1114                                         .next_hop = next_hop,
1115                                         .valid_group = lpm->tbl8[i].valid_group,
1116                                 };
1117
1118                                 /*
1119                                  * Setting tbl8 entry in one go to avoid race
1120                                  * condition
1121                                  */
1122                                 lpm->tbl8[i] = new_tbl8_entry;
1123
1124                                 continue;
1125                         }
1126                 }
1127         }
1128 #undef group_idx
1129         return 0;
1130 }
1131
1132 /*
1133  * Add a route
1134  */
1135 int
1136 rte_lpm_add_v20(struct rte_lpm_v20 *lpm, uint32_t ip, uint8_t depth,
1137                 uint8_t next_hop)
1138 {
1139         int32_t rule_index, status = 0;
1140         uint32_t ip_masked;
1141
1142         /* Check user arguments. */
1143         if ((lpm == NULL) || (depth < 1) || (depth > RTE_LPM_MAX_DEPTH))
1144                 return -EINVAL;
1145
1146         ip_masked = ip & depth_to_mask(depth);
1147
1148         /* Add the rule to the rule table. */
1149         rule_index = rule_add_v20(lpm, ip_masked, depth, next_hop);
1150
1151         /* If the is no space available for new rule return error. */
1152         if (rule_index < 0) {
1153                 return rule_index;
1154         }
1155
1156         if (depth <= MAX_DEPTH_TBL24) {
1157                 status = add_depth_small_v20(lpm, ip_masked, depth, next_hop);
1158         } else { /* If depth > RTE_LPM_MAX_DEPTH_TBL24 */
1159                 status = add_depth_big_v20(lpm, ip_masked, depth, next_hop);
1160
1161                 /*
1162                  * If add fails due to exhaustion of tbl8 extensions delete
1163                  * rule that was added to rule table.
1164                  */
1165                 if (status < 0) {
1166                         rule_delete_v20(lpm, rule_index, depth);
1167
1168                         return status;
1169                 }
1170         }
1171
1172         return 0;
1173 }
1174 VERSION_SYMBOL(rte_lpm_add, _v20, 2.0);
1175
1176 int
1177 rte_lpm_add_v1604(struct rte_lpm *lpm, uint32_t ip, uint8_t depth,
1178                 uint32_t next_hop)
1179 {
1180         int32_t rule_index, status = 0;
1181         uint32_t ip_masked;
1182
1183         /* Check user arguments. */
1184         if ((lpm == NULL) || (depth < 1) || (depth > RTE_LPM_MAX_DEPTH))
1185                 return -EINVAL;
1186
1187         ip_masked = ip & depth_to_mask(depth);
1188
1189         /* Add the rule to the rule table. */
1190         rule_index = rule_add_v1604(lpm, ip_masked, depth, next_hop);
1191
1192         /* If the is no space available for new rule return error. */
1193         if (rule_index < 0) {
1194                 return rule_index;
1195         }
1196
1197         if (depth <= MAX_DEPTH_TBL24) {
1198                 status = add_depth_small_v1604(lpm, ip_masked, depth, next_hop);
1199         } else { /* If depth > RTE_LPM_MAX_DEPTH_TBL24 */
1200                 status = add_depth_big_v1604(lpm, ip_masked, depth, next_hop);
1201
1202                 /*
1203                  * If add fails due to exhaustion of tbl8 extensions delete
1204                  * rule that was added to rule table.
1205                  */
1206                 if (status < 0) {
1207                         rule_delete_v1604(lpm, rule_index, depth);
1208
1209                         return status;
1210                 }
1211         }
1212
1213         return 0;
1214 }
1215 BIND_DEFAULT_SYMBOL(rte_lpm_add, _v1604, 16.04);
1216 MAP_STATIC_SYMBOL(int rte_lpm_add(struct rte_lpm *lpm, uint32_t ip,
1217                 uint8_t depth, uint32_t next_hop), rte_lpm_add_v1604);
1218
1219 /*
1220  * Look for a rule in the high-level rules table
1221  */
1222 int
1223 rte_lpm_is_rule_present_v20(struct rte_lpm_v20 *lpm, uint32_t ip, uint8_t depth,
1224 uint8_t *next_hop)
1225 {
1226         uint32_t ip_masked;
1227         int32_t rule_index;
1228
1229         /* Check user arguments. */
1230         if ((lpm == NULL) ||
1231                 (next_hop == NULL) ||
1232                 (depth < 1) || (depth > RTE_LPM_MAX_DEPTH))
1233                 return -EINVAL;
1234
1235         /* Look for the rule using rule_find. */
1236         ip_masked = ip & depth_to_mask(depth);
1237         rule_index = rule_find_v20(lpm, ip_masked, depth);
1238
1239         if (rule_index >= 0) {
1240                 *next_hop = lpm->rules_tbl[rule_index].next_hop;
1241                 return 1;
1242         }
1243
1244         /* If rule is not found return 0. */
1245         return 0;
1246 }
1247 VERSION_SYMBOL(rte_lpm_is_rule_present, _v20, 2.0);
1248
1249 int
1250 rte_lpm_is_rule_present_v1604(struct rte_lpm *lpm, uint32_t ip, uint8_t depth,
1251 uint32_t *next_hop)
1252 {
1253         uint32_t ip_masked;
1254         int32_t rule_index;
1255
1256         /* Check user arguments. */
1257         if ((lpm == NULL) ||
1258                 (next_hop == NULL) ||
1259                 (depth < 1) || (depth > RTE_LPM_MAX_DEPTH))
1260                 return -EINVAL;
1261
1262         /* Look for the rule using rule_find. */
1263         ip_masked = ip & depth_to_mask(depth);
1264         rule_index = rule_find_v1604(lpm, ip_masked, depth);
1265
1266         if (rule_index >= 0) {
1267                 *next_hop = lpm->rules_tbl[rule_index].next_hop;
1268                 return 1;
1269         }
1270
1271         /* If rule is not found return 0. */
1272         return 0;
1273 }
1274 BIND_DEFAULT_SYMBOL(rte_lpm_is_rule_present, _v1604, 16.04);
1275 MAP_STATIC_SYMBOL(int rte_lpm_is_rule_present(struct rte_lpm *lpm, uint32_t ip,
1276                 uint8_t depth, uint32_t *next_hop), rte_lpm_is_rule_present_v1604);
1277
1278 static inline int32_t
1279 find_previous_rule_v20(struct rte_lpm_v20 *lpm, uint32_t ip, uint8_t depth,
1280                 uint8_t *sub_rule_depth)
1281 {
1282         int32_t rule_index;
1283         uint32_t ip_masked;
1284         uint8_t prev_depth;
1285
1286         for (prev_depth = (uint8_t)(depth - 1); prev_depth > 0; prev_depth--) {
1287                 ip_masked = ip & depth_to_mask(prev_depth);
1288
1289                 rule_index = rule_find_v20(lpm, ip_masked, prev_depth);
1290
1291                 if (rule_index >= 0) {
1292                         *sub_rule_depth = prev_depth;
1293                         return rule_index;
1294                 }
1295         }
1296
1297         return -1;
1298 }
1299
1300 static inline int32_t
1301 find_previous_rule_v1604(struct rte_lpm *lpm, uint32_t ip, uint8_t depth,
1302                 uint8_t *sub_rule_depth)
1303 {
1304         int32_t rule_index;
1305         uint32_t ip_masked;
1306         uint8_t prev_depth;
1307
1308         for (prev_depth = (uint8_t)(depth - 1); prev_depth > 0; prev_depth--) {
1309                 ip_masked = ip & depth_to_mask(prev_depth);
1310
1311                 rule_index = rule_find_v1604(lpm, ip_masked, prev_depth);
1312
1313                 if (rule_index >= 0) {
1314                         *sub_rule_depth = prev_depth;
1315                         return rule_index;
1316                 }
1317         }
1318
1319         return -1;
1320 }
1321
1322 static inline int32_t
1323 delete_depth_small_v20(struct rte_lpm_v20 *lpm, uint32_t ip_masked,
1324         uint8_t depth, int32_t sub_rule_index, uint8_t sub_rule_depth)
1325 {
1326         uint32_t tbl24_range, tbl24_index, tbl8_group_index, tbl8_index, i, j;
1327
1328         /* Calculate the range and index into Table24. */
1329         tbl24_range = depth_to_range(depth);
1330         tbl24_index = (ip_masked >> 8);
1331
1332         /*
1333          * Firstly check the sub_rule_index. A -1 indicates no replacement rule
1334          * and a positive number indicates a sub_rule_index.
1335          */
1336         if (sub_rule_index < 0) {
1337                 /*
1338                  * If no replacement rule exists then invalidate entries
1339                  * associated with this rule.
1340                  */
1341                 for (i = tbl24_index; i < (tbl24_index + tbl24_range); i++) {
1342
1343                         if (lpm->tbl24[i].valid_group == 0 &&
1344                                         lpm->tbl24[i].depth <= depth) {
1345                                 lpm->tbl24[i].valid = INVALID;
1346                         } else if (lpm->tbl24[i].valid_group == 1) {
1347                                 /*
1348                                  * If TBL24 entry is extended, then there has
1349                                  * to be a rule with depth >= 25 in the
1350                                  * associated TBL8 group.
1351                                  */
1352
1353                                 tbl8_group_index = lpm->tbl24[i].group_idx;
1354                                 tbl8_index = tbl8_group_index *
1355                                                 RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
1356
1357                                 for (j = tbl8_index; j < (tbl8_index +
1358                                         RTE_LPM_TBL8_GROUP_NUM_ENTRIES); j++) {
1359
1360                                         if (lpm->tbl8[j].depth <= depth)
1361                                                 lpm->tbl8[j].valid = INVALID;
1362                                 }
1363                         }
1364                 }
1365         } else {
1366                 /*
1367                  * If a replacement rule exists then modify entries
1368                  * associated with this rule.
1369                  */
1370
1371                 struct rte_lpm_tbl_entry_v20 new_tbl24_entry = {
1372                         {.next_hop = lpm->rules_tbl[sub_rule_index].next_hop,},
1373                         .valid = VALID,
1374                         .valid_group = 0,
1375                         .depth = sub_rule_depth,
1376                 };
1377
1378                 struct rte_lpm_tbl_entry_v20 new_tbl8_entry = {
1379                         .valid = VALID,
1380                         .valid_group = VALID,
1381                         .depth = sub_rule_depth,
1382                 };
1383                 new_tbl8_entry.next_hop =
1384                                 lpm->rules_tbl[sub_rule_index].next_hop;
1385
1386                 for (i = tbl24_index; i < (tbl24_index + tbl24_range); i++) {
1387
1388                         if (lpm->tbl24[i].valid_group == 0 &&
1389                                         lpm->tbl24[i].depth <= depth) {
1390                                 lpm->tbl24[i] = new_tbl24_entry;
1391                         } else  if (lpm->tbl24[i].valid_group == 1) {
1392                                 /*
1393                                  * If TBL24 entry is extended, then there has
1394                                  * to be a rule with depth >= 25 in the
1395                                  * associated TBL8 group.
1396                                  */
1397
1398                                 tbl8_group_index = lpm->tbl24[i].group_idx;
1399                                 tbl8_index = tbl8_group_index *
1400                                                 RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
1401
1402                                 for (j = tbl8_index; j < (tbl8_index +
1403                                         RTE_LPM_TBL8_GROUP_NUM_ENTRIES); j++) {
1404
1405                                         if (lpm->tbl8[j].depth <= depth)
1406                                                 lpm->tbl8[j] = new_tbl8_entry;
1407                                 }
1408                         }
1409                 }
1410         }
1411
1412         return 0;
1413 }
1414
1415 static inline int32_t
1416 delete_depth_small_v1604(struct rte_lpm *lpm, uint32_t ip_masked,
1417         uint8_t depth, int32_t sub_rule_index, uint8_t sub_rule_depth)
1418 {
1419 #define group_idx next_hop
1420         uint32_t tbl24_range, tbl24_index, tbl8_group_index, tbl8_index, i, j;
1421
1422         /* Calculate the range and index into Table24. */
1423         tbl24_range = depth_to_range(depth);
1424         tbl24_index = (ip_masked >> 8);
1425
1426         /*
1427          * Firstly check the sub_rule_index. A -1 indicates no replacement rule
1428          * and a positive number indicates a sub_rule_index.
1429          */
1430         if (sub_rule_index < 0) {
1431                 /*
1432                  * If no replacement rule exists then invalidate entries
1433                  * associated with this rule.
1434                  */
1435                 for (i = tbl24_index; i < (tbl24_index + tbl24_range); i++) {
1436
1437                         if (lpm->tbl24[i].valid_group == 0 &&
1438                                         lpm->tbl24[i].depth <= depth) {
1439                                 lpm->tbl24[i].valid = INVALID;
1440                         } else if (lpm->tbl24[i].valid_group == 1) {
1441                                 /*
1442                                  * If TBL24 entry is extended, then there has
1443                                  * to be a rule with depth >= 25 in the
1444                                  * associated TBL8 group.
1445                                  */
1446
1447                                 tbl8_group_index = lpm->tbl24[i].group_idx;
1448                                 tbl8_index = tbl8_group_index *
1449                                                 RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
1450
1451                                 for (j = tbl8_index; j < (tbl8_index +
1452                                         RTE_LPM_TBL8_GROUP_NUM_ENTRIES); j++) {
1453
1454                                         if (lpm->tbl8[j].depth <= depth)
1455                                                 lpm->tbl8[j].valid = INVALID;
1456                                 }
1457                         }
1458                 }
1459         } else {
1460                 /*
1461                  * If a replacement rule exists then modify entries
1462                  * associated with this rule.
1463                  */
1464
1465                 struct rte_lpm_tbl_entry new_tbl24_entry = {
1466                         .next_hop = lpm->rules_tbl[sub_rule_index].next_hop,
1467                         .valid = VALID,
1468                         .valid_group = 0,
1469                         .depth = sub_rule_depth,
1470                 };
1471
1472                 struct rte_lpm_tbl_entry new_tbl8_entry = {
1473                         .valid = VALID,
1474                         .valid_group = VALID,
1475                         .depth = sub_rule_depth,
1476                         .next_hop = lpm->rules_tbl
1477                         [sub_rule_index].next_hop,
1478                 };
1479
1480                 for (i = tbl24_index; i < (tbl24_index + tbl24_range); i++) {
1481
1482                         if (lpm->tbl24[i].valid_group == 0 &&
1483                                         lpm->tbl24[i].depth <= depth) {
1484                                 lpm->tbl24[i] = new_tbl24_entry;
1485                         } else  if (lpm->tbl24[i].valid_group == 1) {
1486                                 /*
1487                                  * If TBL24 entry is extended, then there has
1488                                  * to be a rule with depth >= 25 in the
1489                                  * associated TBL8 group.
1490                                  */
1491
1492                                 tbl8_group_index = lpm->tbl24[i].group_idx;
1493                                 tbl8_index = tbl8_group_index *
1494                                                 RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
1495
1496                                 for (j = tbl8_index; j < (tbl8_index +
1497                                         RTE_LPM_TBL8_GROUP_NUM_ENTRIES); j++) {
1498
1499                                         if (lpm->tbl8[j].depth <= depth)
1500                                                 lpm->tbl8[j] = new_tbl8_entry;
1501                                 }
1502                         }
1503                 }
1504         }
1505 #undef group_idx
1506         return 0;
1507 }
1508
1509 /*
1510  * Checks if table 8 group can be recycled.
1511  *
1512  * Return of -EEXIST means tbl8 is in use and thus can not be recycled.
1513  * Return of -EINVAL means tbl8 is empty and thus can be recycled
1514  * Return of value > -1 means tbl8 is in use but has all the same values and
1515  * thus can be recycled
1516  */
1517 static inline int32_t
1518 tbl8_recycle_check_v20(struct rte_lpm_tbl_entry_v20 *tbl8,
1519                 uint32_t tbl8_group_start)
1520 {
1521         uint32_t tbl8_group_end, i;
1522         tbl8_group_end = tbl8_group_start + RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
1523
1524         /*
1525          * Check the first entry of the given tbl8. If it is invalid we know
1526          * this tbl8 does not contain any rule with a depth < RTE_LPM_MAX_DEPTH
1527          *  (As they would affect all entries in a tbl8) and thus this table
1528          *  can not be recycled.
1529          */
1530         if (tbl8[tbl8_group_start].valid) {
1531                 /*
1532                  * If first entry is valid check if the depth is less than 24
1533                  * and if so check the rest of the entries to verify that they
1534                  * are all of this depth.
1535                  */
1536                 if (tbl8[tbl8_group_start].depth < MAX_DEPTH_TBL24) {
1537                         for (i = (tbl8_group_start + 1); i < tbl8_group_end;
1538                                         i++) {
1539
1540                                 if (tbl8[i].depth !=
1541                                                 tbl8[tbl8_group_start].depth) {
1542
1543                                         return -EEXIST;
1544                                 }
1545                         }
1546                         /* If all entries are the same return the tb8 index */
1547                         return tbl8_group_start;
1548                 }
1549
1550                 return -EEXIST;
1551         }
1552         /*
1553          * If the first entry is invalid check if the rest of the entries in
1554          * the tbl8 are invalid.
1555          */
1556         for (i = (tbl8_group_start + 1); i < tbl8_group_end; i++) {
1557                 if (tbl8[i].valid)
1558                         return -EEXIST;
1559         }
1560         /* If no valid entries are found then return -EINVAL. */
1561         return -EINVAL;
1562 }
1563
1564 static inline int32_t
1565 tbl8_recycle_check_v1604(struct rte_lpm_tbl_entry *tbl8,
1566                 uint32_t tbl8_group_start)
1567 {
1568         uint32_t tbl8_group_end, i;
1569         tbl8_group_end = tbl8_group_start + RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
1570
1571         /*
1572          * Check the first entry of the given tbl8. If it is invalid we know
1573          * this tbl8 does not contain any rule with a depth < RTE_LPM_MAX_DEPTH
1574          *  (As they would affect all entries in a tbl8) and thus this table
1575          *  can not be recycled.
1576          */
1577         if (tbl8[tbl8_group_start].valid) {
1578                 /*
1579                  * If first entry is valid check if the depth is less than 24
1580                  * and if so check the rest of the entries to verify that they
1581                  * are all of this depth.
1582                  */
1583                 if (tbl8[tbl8_group_start].depth < MAX_DEPTH_TBL24) {
1584                         for (i = (tbl8_group_start + 1); i < tbl8_group_end;
1585                                         i++) {
1586
1587                                 if (tbl8[i].depth !=
1588                                                 tbl8[tbl8_group_start].depth) {
1589
1590                                         return -EEXIST;
1591                                 }
1592                         }
1593                         /* If all entries are the same return the tb8 index */
1594                         return tbl8_group_start;
1595                 }
1596
1597                 return -EEXIST;
1598         }
1599         /*
1600          * If the first entry is invalid check if the rest of the entries in
1601          * the tbl8 are invalid.
1602          */
1603         for (i = (tbl8_group_start + 1); i < tbl8_group_end; i++) {
1604                 if (tbl8[i].valid)
1605                         return -EEXIST;
1606         }
1607         /* If no valid entries are found then return -EINVAL. */
1608         return -EINVAL;
1609 }
1610
1611 static inline int32_t
1612 delete_depth_big_v20(struct rte_lpm_v20 *lpm, uint32_t ip_masked,
1613         uint8_t depth, int32_t sub_rule_index, uint8_t sub_rule_depth)
1614 {
1615         uint32_t tbl24_index, tbl8_group_index, tbl8_group_start, tbl8_index,
1616                         tbl8_range, i;
1617         int32_t tbl8_recycle_index;
1618
1619         /*
1620          * Calculate the index into tbl24 and range. Note: All depths larger
1621          * than MAX_DEPTH_TBL24 are associated with only one tbl24 entry.
1622          */
1623         tbl24_index = ip_masked >> 8;
1624
1625         /* Calculate the index into tbl8 and range. */
1626         tbl8_group_index = lpm->tbl24[tbl24_index].group_idx;
1627         tbl8_group_start = tbl8_group_index * RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
1628         tbl8_index = tbl8_group_start + (ip_masked & 0xFF);
1629         tbl8_range = depth_to_range(depth);
1630
1631         if (sub_rule_index < 0) {
1632                 /*
1633                  * Loop through the range of entries on tbl8 for which the
1634                  * rule_to_delete must be removed or modified.
1635                  */
1636                 for (i = tbl8_index; i < (tbl8_index + tbl8_range); i++) {
1637                         if (lpm->tbl8[i].depth <= depth)
1638                                 lpm->tbl8[i].valid = INVALID;
1639                 }
1640         } else {
1641                 /* Set new tbl8 entry. */
1642                 struct rte_lpm_tbl_entry_v20 new_tbl8_entry = {
1643                         .valid = VALID,
1644                         .depth = sub_rule_depth,
1645                         .valid_group = lpm->tbl8[tbl8_group_start].valid_group,
1646                 };
1647
1648                 new_tbl8_entry.next_hop =
1649                                 lpm->rules_tbl[sub_rule_index].next_hop;
1650                 /*
1651                  * Loop through the range of entries on tbl8 for which the
1652                  * rule_to_delete must be modified.
1653                  */
1654                 for (i = tbl8_index; i < (tbl8_index + tbl8_range); i++) {
1655                         if (lpm->tbl8[i].depth <= depth)
1656                                 lpm->tbl8[i] = new_tbl8_entry;
1657                 }
1658         }
1659
1660         /*
1661          * Check if there are any valid entries in this tbl8 group. If all
1662          * tbl8 entries are invalid we can free the tbl8 and invalidate the
1663          * associated tbl24 entry.
1664          */
1665
1666         tbl8_recycle_index = tbl8_recycle_check_v20(lpm->tbl8, tbl8_group_start);
1667
1668         if (tbl8_recycle_index == -EINVAL) {
1669                 /* Set tbl24 before freeing tbl8 to avoid race condition. */
1670                 lpm->tbl24[tbl24_index].valid = 0;
1671                 tbl8_free_v20(lpm->tbl8, tbl8_group_start);
1672         } else if (tbl8_recycle_index > -1) {
1673                 /* Update tbl24 entry. */
1674                 struct rte_lpm_tbl_entry_v20 new_tbl24_entry = {
1675                         { .next_hop = lpm->tbl8[tbl8_recycle_index].next_hop, },
1676                         .valid = VALID,
1677                         .valid_group = 0,
1678                         .depth = lpm->tbl8[tbl8_recycle_index].depth,
1679                 };
1680
1681                 /* Set tbl24 before freeing tbl8 to avoid race condition. */
1682                 lpm->tbl24[tbl24_index] = new_tbl24_entry;
1683                 tbl8_free_v20(lpm->tbl8, tbl8_group_start);
1684         }
1685
1686         return 0;
1687 }
1688
1689 static inline int32_t
1690 delete_depth_big_v1604(struct rte_lpm *lpm, uint32_t ip_masked,
1691         uint8_t depth, int32_t sub_rule_index, uint8_t sub_rule_depth)
1692 {
1693 #define group_idx next_hop
1694         uint32_t tbl24_index, tbl8_group_index, tbl8_group_start, tbl8_index,
1695                         tbl8_range, i;
1696         int32_t tbl8_recycle_index;
1697
1698         /*
1699          * Calculate the index into tbl24 and range. Note: All depths larger
1700          * than MAX_DEPTH_TBL24 are associated with only one tbl24 entry.
1701          */
1702         tbl24_index = ip_masked >> 8;
1703
1704         /* Calculate the index into tbl8 and range. */
1705         tbl8_group_index = lpm->tbl24[tbl24_index].group_idx;
1706         tbl8_group_start = tbl8_group_index * RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
1707         tbl8_index = tbl8_group_start + (ip_masked & 0xFF);
1708         tbl8_range = depth_to_range(depth);
1709
1710         if (sub_rule_index < 0) {
1711                 /*
1712                  * Loop through the range of entries on tbl8 for which the
1713                  * rule_to_delete must be removed or modified.
1714                  */
1715                 for (i = tbl8_index; i < (tbl8_index + tbl8_range); i++) {
1716                         if (lpm->tbl8[i].depth <= depth)
1717                                 lpm->tbl8[i].valid = INVALID;
1718                 }
1719         } else {
1720                 /* Set new tbl8 entry. */
1721                 struct rte_lpm_tbl_entry new_tbl8_entry = {
1722                         .valid = VALID,
1723                         .depth = sub_rule_depth,
1724                         .valid_group = lpm->tbl8[tbl8_group_start].valid_group,
1725                         .next_hop = lpm->rules_tbl[sub_rule_index].next_hop,
1726                 };
1727
1728                 /*
1729                  * Loop through the range of entries on tbl8 for which the
1730                  * rule_to_delete must be modified.
1731                  */
1732                 for (i = tbl8_index; i < (tbl8_index + tbl8_range); i++) {
1733                         if (lpm->tbl8[i].depth <= depth)
1734                                 lpm->tbl8[i] = new_tbl8_entry;
1735                 }
1736         }
1737
1738         /*
1739          * Check if there are any valid entries in this tbl8 group. If all
1740          * tbl8 entries are invalid we can free the tbl8 and invalidate the
1741          * associated tbl24 entry.
1742          */
1743
1744         tbl8_recycle_index = tbl8_recycle_check_v1604(lpm->tbl8, tbl8_group_start);
1745
1746         if (tbl8_recycle_index == -EINVAL) {
1747                 /* Set tbl24 before freeing tbl8 to avoid race condition. */
1748                 lpm->tbl24[tbl24_index].valid = 0;
1749                 tbl8_free_v1604(lpm->tbl8, tbl8_group_start);
1750         } else if (tbl8_recycle_index > -1) {
1751                 /* Update tbl24 entry. */
1752                 struct rte_lpm_tbl_entry new_tbl24_entry = {
1753                         .next_hop = lpm->tbl8[tbl8_recycle_index].next_hop,
1754                         .valid = VALID,
1755                         .valid_group = 0,
1756                         .depth = lpm->tbl8[tbl8_recycle_index].depth,
1757                 };
1758
1759                 /* Set tbl24 before freeing tbl8 to avoid race condition. */
1760                 lpm->tbl24[tbl24_index] = new_tbl24_entry;
1761                 tbl8_free_v1604(lpm->tbl8, tbl8_group_start);
1762         }
1763 #undef group_idx
1764         return 0;
1765 }
1766
1767 /*
1768  * Deletes a rule
1769  */
1770 int
1771 rte_lpm_delete_v20(struct rte_lpm_v20 *lpm, uint32_t ip, uint8_t depth)
1772 {
1773         int32_t rule_to_delete_index, sub_rule_index;
1774         uint32_t ip_masked;
1775         uint8_t sub_rule_depth;
1776         /*
1777          * Check input arguments. Note: IP must be a positive integer of 32
1778          * bits in length therefore it need not be checked.
1779          */
1780         if ((lpm == NULL) || (depth < 1) || (depth > RTE_LPM_MAX_DEPTH)) {
1781                 return -EINVAL;
1782         }
1783
1784         ip_masked = ip & depth_to_mask(depth);
1785
1786         /*
1787          * Find the index of the input rule, that needs to be deleted, in the
1788          * rule table.
1789          */
1790         rule_to_delete_index = rule_find_v20(lpm, ip_masked, depth);
1791
1792         /*
1793          * Check if rule_to_delete_index was found. If no rule was found the
1794          * function rule_find returns -EINVAL.
1795          */
1796         if (rule_to_delete_index < 0)
1797                 return -EINVAL;
1798
1799         /* Delete the rule from the rule table. */
1800         rule_delete_v20(lpm, rule_to_delete_index, depth);
1801
1802         /*
1803          * Find rule to replace the rule_to_delete. If there is no rule to
1804          * replace the rule_to_delete we return -1 and invalidate the table
1805          * entries associated with this rule.
1806          */
1807         sub_rule_depth = 0;
1808         sub_rule_index = find_previous_rule_v20(lpm, ip, depth, &sub_rule_depth);
1809
1810         /*
1811          * If the input depth value is less than 25 use function
1812          * delete_depth_small otherwise use delete_depth_big.
1813          */
1814         if (depth <= MAX_DEPTH_TBL24) {
1815                 return delete_depth_small_v20(lpm, ip_masked, depth,
1816                                 sub_rule_index, sub_rule_depth);
1817         } else { /* If depth > MAX_DEPTH_TBL24 */
1818                 return delete_depth_big_v20(lpm, ip_masked, depth, sub_rule_index,
1819                                 sub_rule_depth);
1820         }
1821 }
1822 VERSION_SYMBOL(rte_lpm_delete, _v20, 2.0);
1823
1824 int
1825 rte_lpm_delete_v1604(struct rte_lpm *lpm, uint32_t ip, uint8_t depth)
1826 {
1827         int32_t rule_to_delete_index, sub_rule_index;
1828         uint32_t ip_masked;
1829         uint8_t sub_rule_depth;
1830         /*
1831          * Check input arguments. Note: IP must be a positive integer of 32
1832          * bits in length therefore it need not be checked.
1833          */
1834         if ((lpm == NULL) || (depth < 1) || (depth > RTE_LPM_MAX_DEPTH)) {
1835                 return -EINVAL;
1836         }
1837
1838         ip_masked = ip & depth_to_mask(depth);
1839
1840         /*
1841          * Find the index of the input rule, that needs to be deleted, in the
1842          * rule table.
1843          */
1844         rule_to_delete_index = rule_find_v1604(lpm, ip_masked, depth);
1845
1846         /*
1847          * Check if rule_to_delete_index was found. If no rule was found the
1848          * function rule_find returns -EINVAL.
1849          */
1850         if (rule_to_delete_index < 0)
1851                 return -EINVAL;
1852
1853         /* Delete the rule from the rule table. */
1854         rule_delete_v1604(lpm, rule_to_delete_index, depth);
1855
1856         /*
1857          * Find rule to replace the rule_to_delete. If there is no rule to
1858          * replace the rule_to_delete we return -1 and invalidate the table
1859          * entries associated with this rule.
1860          */
1861         sub_rule_depth = 0;
1862         sub_rule_index = find_previous_rule_v1604(lpm, ip, depth, &sub_rule_depth);
1863
1864         /*
1865          * If the input depth value is less than 25 use function
1866          * delete_depth_small otherwise use delete_depth_big.
1867          */
1868         if (depth <= MAX_DEPTH_TBL24) {
1869                 return delete_depth_small_v1604(lpm, ip_masked, depth,
1870                                 sub_rule_index, sub_rule_depth);
1871         } else { /* If depth > MAX_DEPTH_TBL24 */
1872                 return delete_depth_big_v1604(lpm, ip_masked, depth, sub_rule_index,
1873                                 sub_rule_depth);
1874         }
1875 }
1876 BIND_DEFAULT_SYMBOL(rte_lpm_delete, _v1604, 16.04);
1877 MAP_STATIC_SYMBOL(int rte_lpm_delete(struct rte_lpm *lpm, uint32_t ip,
1878                 uint8_t depth), rte_lpm_delete_v1604);
1879
1880 /*
1881  * Delete all rules from the LPM table.
1882  */
1883 void
1884 rte_lpm_delete_all_v20(struct rte_lpm_v20 *lpm)
1885 {
1886         /* Zero rule information. */
1887         memset(lpm->rule_info, 0, sizeof(lpm->rule_info));
1888
1889         /* Zero tbl24. */
1890         memset(lpm->tbl24, 0, sizeof(lpm->tbl24));
1891
1892         /* Zero tbl8. */
1893         memset(lpm->tbl8, 0, sizeof(lpm->tbl8));
1894
1895         /* Delete all rules form the rules table. */
1896         memset(lpm->rules_tbl, 0, sizeof(lpm->rules_tbl[0]) * lpm->max_rules);
1897 }
1898 VERSION_SYMBOL(rte_lpm_delete_all, _v20, 2.0);
1899
1900 void
1901 rte_lpm_delete_all_v1604(struct rte_lpm *lpm)
1902 {
1903         /* Zero rule information. */
1904         memset(lpm->rule_info, 0, sizeof(lpm->rule_info));
1905
1906         /* Zero tbl24. */
1907         memset(lpm->tbl24, 0, sizeof(lpm->tbl24));
1908
1909         /* Zero tbl8. */
1910         memset(lpm->tbl8, 0, sizeof(lpm->tbl8[0])
1911                         * RTE_LPM_TBL8_GROUP_NUM_ENTRIES * lpm->number_tbl8s);
1912
1913         /* Delete all rules form the rules table. */
1914         memset(lpm->rules_tbl, 0, sizeof(lpm->rules_tbl[0]) * lpm->max_rules);
1915 }
1916 BIND_DEFAULT_SYMBOL(rte_lpm_delete_all, _v1604, 16.04);
1917 MAP_STATIC_SYMBOL(void rte_lpm_delete_all(struct rte_lpm *lpm),
1918                 rte_lpm_delete_all_v1604);