update Intel copyright years to 2014
[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 CACHE_LINE_SIZE */
46 #include <rte_malloc.h>
47 #include <rte_memzone.h>
48 #include <rte_tailq.h>
49 #include <rte_eal.h>
50 #include <rte_eal_memconfig.h>
51 #include <rte_per_lcore.h>
52 #include <rte_string_fns.h>
53 #include <rte_errno.h>
54 #include <rte_rwlock.h>
55 #include <rte_spinlock.h>
56
57 #include "rte_lpm.h"
58
59 TAILQ_HEAD(rte_lpm_list, rte_lpm);
60  
61 #define MAX_DEPTH_TBL24 24
62
63 enum valid_flag {
64         INVALID = 0,
65         VALID
66 };
67
68 /* Macro to enable/disable run-time checks. */
69 #if defined(RTE_LIBRTE_LPM_DEBUG)
70 #include <rte_debug.h>
71 #define VERIFY_DEPTH(depth) do {                                \
72         if ((depth == 0) || (depth > RTE_LPM_MAX_DEPTH))        \
73                 rte_panic("LPM: Invalid depth (%u) at line %d", \
74                                 (unsigned)(depth), __LINE__);   \
75 } while (0)
76 #else
77 #define VERIFY_DEPTH(depth)
78 #endif
79
80 /*
81  * Converts a given depth value to its corresponding mask value.
82  *
83  * depth  (IN)          : range = 1 - 32
84  * mask   (OUT)         : 32bit mask
85  */
86 static uint32_t __attribute__((pure))
87 depth_to_mask(uint8_t depth)
88 {
89         VERIFY_DEPTH(depth);
90
91         /* To calculate a mask start with a 1 on the left hand side and right
92          * shift while populating the left hand side with 1's
93          */
94         return (int)0x80000000 >> (depth - 1);
95 }
96
97 /*
98  * Converts given depth value to its corresponding range value.
99  */
100 static inline uint32_t __attribute__((pure))
101 depth_to_range(uint8_t depth)
102 {
103         VERIFY_DEPTH(depth);
104
105         /*
106          * Calculate tbl24 range. (Note: 2^depth = 1 << depth)
107          */
108         if (depth <= MAX_DEPTH_TBL24)
109                 return 1 << (MAX_DEPTH_TBL24 - depth);
110
111         /* Else if depth is greater than 24 */
112         return (1 << (RTE_LPM_MAX_DEPTH - depth));
113 }
114
115 /*
116  * Find an existing lpm table and return a pointer to it.
117  */
118 struct rte_lpm *
119 rte_lpm_find_existing(const char *name)
120 {
121         struct rte_lpm *l;
122         struct rte_lpm_list *lpm_list;
123
124         /* check that we have an initialised tail queue */
125         if ((lpm_list = RTE_TAILQ_LOOKUP_BY_IDX(RTE_TAILQ_LPM, rte_lpm_list)) == NULL) {
126                 rte_errno = E_RTE_NO_TAILQ;
127                 return NULL;
128         }
129
130         rte_rwlock_read_lock(RTE_EAL_TAILQ_RWLOCK);
131         TAILQ_FOREACH(l, lpm_list, next) {
132                 if (strncmp(name, l->name, RTE_LPM_NAMESIZE) == 0)
133                         break;
134         }
135         rte_rwlock_read_unlock(RTE_EAL_TAILQ_RWLOCK);
136
137         if (l == NULL)
138                 rte_errno = ENOENT;
139
140         return l;
141 }
142
143 /*
144  * Allocates memory for LPM object
145  */
146 struct rte_lpm *
147 rte_lpm_create(const char *name, int socket_id, int max_rules,
148                 __rte_unused int flags)
149 {
150         char mem_name[RTE_LPM_NAMESIZE];
151         struct rte_lpm *lpm = NULL;
152         uint32_t mem_size;
153         struct rte_lpm_list *lpm_list;
154
155         /* check that we have an initialised tail queue */
156         if ((lpm_list = 
157              RTE_TAILQ_LOOKUP_BY_IDX(RTE_TAILQ_LPM, rte_lpm_list)) == NULL) {
158                 rte_errno = E_RTE_NO_TAILQ;
159                 return NULL;    
160         }
161
162         RTE_BUILD_BUG_ON(sizeof(struct rte_lpm_tbl24_entry) != 2);
163         RTE_BUILD_BUG_ON(sizeof(struct rte_lpm_tbl8_entry) != 2);
164
165         /* Check user arguments. */
166         if ((name == NULL) || (socket_id < -1) || (max_rules == 0)){
167                 rte_errno = EINVAL;
168                 return NULL;
169         }
170
171         rte_snprintf(mem_name, sizeof(mem_name), "LPM_%s", name);
172
173         /* Determine the amount of memory to allocate. */
174         mem_size = sizeof(*lpm) + (sizeof(lpm->rules_tbl[0]) * max_rules);
175
176         rte_rwlock_write_lock(RTE_EAL_TAILQ_RWLOCK);
177
178         /* guarantee there's no existing */
179         TAILQ_FOREACH(lpm, lpm_list, next) {
180                 if (strncmp(name, lpm->name, RTE_LPM_NAMESIZE) == 0)
181                         break;
182         }
183         if (lpm != NULL)
184                 goto exit;
185
186         /* Allocate memory to store the LPM data structures. */
187         lpm = (struct rte_lpm *)rte_zmalloc_socket(mem_name, mem_size,
188                         CACHE_LINE_SIZE, socket_id);
189         if (lpm == NULL) {
190                 RTE_LOG(ERR, LPM, "LPM memory allocation failed\n");
191                 goto exit;
192         }
193
194         /* Save user arguments. */
195         lpm->max_rules = max_rules;
196         rte_snprintf(lpm->name, sizeof(lpm->name), "%s", name);
197
198         TAILQ_INSERT_TAIL(lpm_list, lpm, next);
199
200 exit:   
201         rte_rwlock_write_unlock(RTE_EAL_TAILQ_RWLOCK);
202
203         return lpm;
204 }
205
206 /*
207  * Deallocates memory for given LPM table.
208  */
209 void
210 rte_lpm_free(struct rte_lpm *lpm)
211 {
212         /* Check user arguments. */
213         if (lpm == NULL)
214                 return;
215
216         RTE_EAL_TAILQ_REMOVE(RTE_TAILQ_LPM, rte_lpm_list, lpm);
217         rte_free(lpm);
218 }
219
220 /*
221  * Adds a rule to the rule table.
222  *
223  * NOTE: The rule table is split into 32 groups. Each group contains rules that
224  * apply to a specific prefix depth (i.e. group 1 contains rules that apply to
225  * prefixes with a depth of 1 etc.). In the following code (depth - 1) is used
226  * to refer to depth 1 because even though the depth range is 1 - 32, depths
227  * are stored in the rule table from 0 - 31.
228  * NOTE: Valid range for depth parameter is 1 .. 32 inclusive.
229  */
230 static inline int32_t
231 rule_add(struct rte_lpm *lpm, uint32_t ip_masked, uint8_t depth,
232         uint8_t next_hop)
233 {
234         uint32_t rule_gindex, rule_index, last_rule;
235         int i;
236
237         VERIFY_DEPTH(depth);
238
239         /* Scan through rule group to see if rule already exists. */
240         if (lpm->rule_info[depth - 1].used_rules > 0) {
241
242                 /* rule_gindex stands for rule group index. */
243                 rule_gindex = lpm->rule_info[depth - 1].first_rule;
244                 /* Initialise rule_index to point to start of rule group. */
245                 rule_index = rule_gindex;
246                 /* Last rule = Last used rule in this rule group. */
247                 last_rule = rule_gindex + lpm->rule_info[depth - 1].used_rules;
248
249                 for (; rule_index < last_rule; rule_index++) {
250
251                         /* If rule already exists update its next_hop and return. */
252                         if (lpm->rules_tbl[rule_index].ip == ip_masked) {
253                                 lpm->rules_tbl[rule_index].next_hop = next_hop;
254         
255                                 return rule_index;
256                         }
257                 }
258         } else {
259                 /* Calculate the position in which the rule will be stored. */
260                 rule_index = 0;
261
262                 for (i = depth - 1; i > 0; i--) {
263                         if (lpm->rule_info[i - 1].used_rules > 0) {
264                                 rule_index = lpm->rule_info[i - 1].first_rule + lpm->rule_info[i - 1].used_rules;
265                                 break;
266                         }
267                 }
268                 if (rule_index == lpm->max_rules)
269                         return -ENOSPC;
270
271                 lpm->rule_info[depth - 1].first_rule = rule_index;
272         }
273
274         /* Make room for the new rule in the array. */
275         for (i = RTE_LPM_MAX_DEPTH; i > depth; i--) {
276                 if (lpm->rule_info[i - 1].first_rule + lpm->rule_info[i - 1].used_rules == lpm->max_rules)
277                         return -ENOSPC;
278
279                 if (lpm->rule_info[i - 1].used_rules > 0) {
280                         lpm->rules_tbl[lpm->rule_info[i - 1].first_rule + lpm->rule_info[i - 1].used_rules]
281                                         = lpm->rules_tbl[lpm->rule_info[i - 1].first_rule];
282                         lpm->rule_info[i - 1].first_rule++;
283                 }
284         }
285
286         /* Add the new rule. */
287         lpm->rules_tbl[rule_index].ip = ip_masked;
288         lpm->rules_tbl[rule_index].next_hop = next_hop;
289
290         /* Increment the used rules counter for this rule group. */
291         lpm->rule_info[depth - 1].used_rules++;
292
293         return rule_index;
294 }
295
296 /*
297  * Delete a rule from the rule table.
298  * NOTE: Valid range for depth parameter is 1 .. 32 inclusive.
299  */
300 static inline void
301 rule_delete(struct rte_lpm *lpm, int32_t rule_index, uint8_t depth)
302 {
303         int i;
304
305         VERIFY_DEPTH(depth);
306
307         lpm->rules_tbl[rule_index] = lpm->rules_tbl[lpm->rule_info[depth - 1].first_rule
308                         + lpm->rule_info[depth - 1].used_rules - 1];
309
310         for (i = depth; i < RTE_LPM_MAX_DEPTH; i++) {
311                 if (lpm->rule_info[i].used_rules > 0) {
312                         lpm->rules_tbl[lpm->rule_info[i].first_rule - 1] =
313                                         lpm->rules_tbl[lpm->rule_info[i].first_rule + lpm->rule_info[i].used_rules - 1];
314                         lpm->rule_info[i].first_rule--;
315                 }
316         }
317
318         lpm->rule_info[depth - 1].used_rules--;
319 }
320
321 /*
322  * Finds a rule in rule table.
323  * NOTE: Valid range for depth parameter is 1 .. 32 inclusive.
324  */
325 static inline int32_t
326 rule_find(struct rte_lpm *lpm, uint32_t ip_masked, uint8_t depth)
327 {
328         uint32_t rule_gindex, last_rule, rule_index;
329
330         VERIFY_DEPTH(depth);
331
332         rule_gindex = lpm->rule_info[depth - 1].first_rule;
333         last_rule = rule_gindex + lpm->rule_info[depth - 1].used_rules;
334
335         /* Scan used rules at given depth to find rule. */
336         for (rule_index = rule_gindex; rule_index < last_rule; rule_index++) {
337                 /* If rule is found return the rule index. */
338                 if (lpm->rules_tbl[rule_index].ip == ip_masked)
339                         return (rule_index);
340         }
341
342         /* If rule is not found return -E_RTE_NO_TAILQ. */
343         return -E_RTE_NO_TAILQ;
344 }
345
346 /*
347  * Find, clean and allocate a tbl8.
348  */
349 static inline int32_t
350 tbl8_alloc(struct rte_lpm_tbl8_entry *tbl8)
351 {
352         uint32_t tbl8_gindex; /* tbl8 group index. */
353         struct rte_lpm_tbl8_entry *tbl8_entry;
354
355         /* Scan through tbl8 to find a free (i.e. INVALID) tbl8 group. */
356         for (tbl8_gindex = 0; tbl8_gindex < RTE_LPM_TBL8_NUM_GROUPS;
357                         tbl8_gindex++) {
358                 tbl8_entry = &tbl8[tbl8_gindex *
359                                    RTE_LPM_TBL8_GROUP_NUM_ENTRIES];
360                 /* If a free tbl8 group is found clean it and set as VALID. */
361                 if (!tbl8_entry->valid_group) {
362                         memset(&tbl8_entry[0], 0,
363                                         RTE_LPM_TBL8_GROUP_NUM_ENTRIES *
364                                         sizeof(tbl8_entry[0]));
365
366                         tbl8_entry->valid_group = VALID;
367
368                         /* Return group index for allocated tbl8 group. */
369                         return tbl8_gindex;
370                 }
371         }
372
373         /* If there are no tbl8 groups free then return error. */
374         return -ENOSPC;
375 }
376
377 static inline void
378 tbl8_free(struct rte_lpm_tbl8_entry *tbl8, uint32_t tbl8_group_start)
379 {
380         /* Set tbl8 group invalid*/
381         tbl8[tbl8_group_start].valid_group = INVALID;
382 }
383
384 static inline int32_t
385 add_depth_small(struct rte_lpm *lpm, uint32_t ip, uint8_t depth,
386                 uint8_t next_hop)
387 {
388         uint32_t tbl24_index, tbl24_range, tbl8_index, tbl8_group_end, i, j;
389
390         /* Calculate the index into Table24. */
391         tbl24_index = ip >> 8;
392         tbl24_range = depth_to_range(depth);
393
394         for (i = tbl24_index; i < (tbl24_index + tbl24_range); i++) {
395                 /*
396                  * For invalid OR valid and non-extended tbl 24 entries set
397                  * entry.
398                  */
399                 if (!lpm->tbl24[i].valid || (lpm->tbl24[i].ext_entry == 0 &&
400                                 lpm->tbl24[i].depth <= depth)) {
401
402                         struct rte_lpm_tbl24_entry new_tbl24_entry = {
403                                 { .next_hop = next_hop, },
404                                 .valid = VALID,
405                                 .ext_entry = 0,
406                                 .depth = depth,
407                         };
408
409                         /* Setting tbl24 entry in one go to avoid race
410                          * conditions */
411                         lpm->tbl24[i] = new_tbl24_entry;
412
413                         continue;
414                 }
415
416                 /* If tbl24 entry is valid and extended calculate the index
417                  * into tbl8. */
418                 tbl8_index = lpm->tbl24[i].tbl8_gindex * 
419                                 RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
420                 tbl8_group_end = tbl8_index + RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
421
422                 for (j = tbl8_index; j < tbl8_group_end; j++) {
423                         if (!lpm->tbl8[j].valid ||
424                                         lpm->tbl8[j].depth <= depth) {
425                                 struct rte_lpm_tbl8_entry new_tbl8_entry = {
426                                         .valid = VALID,
427                                         .valid_group = VALID,
428                                         .depth = depth,
429                                         .next_hop = next_hop,
430                                 };
431
432                                 /*
433                                  * Setting tbl8 entry in one go to avoid race
434                                  * conditions
435                                  */
436                                 lpm->tbl8[j] = new_tbl8_entry;
437
438                                 continue;
439                         }
440                 }
441         }
442
443         return 0;
444 }
445
446 static inline int32_t
447 add_depth_big(struct rte_lpm *lpm, uint32_t ip_masked, uint8_t depth,
448                 uint8_t next_hop)
449 {
450         uint32_t tbl24_index;
451         int32_t tbl8_group_index, tbl8_group_start, tbl8_group_end, tbl8_index,
452                 tbl8_range, i;
453
454         tbl24_index = (ip_masked >> 8);
455         tbl8_range = depth_to_range(depth);
456
457         if (!lpm->tbl24[tbl24_index].valid) {
458                 /* Search for a free tbl8 group. */
459                 tbl8_group_index = tbl8_alloc(lpm->tbl8);
460
461                 /* Check tbl8 allocation was successful. */
462                 if (tbl8_group_index < 0) {
463                         return tbl8_group_index;
464                 }
465
466                 /* Find index into tbl8 and range. */
467                 tbl8_index = (tbl8_group_index *
468                                 RTE_LPM_TBL8_GROUP_NUM_ENTRIES) +
469                                 (ip_masked & 0xFF);
470
471                 /* Set tbl8 entry. */
472                 for (i = tbl8_index; i < (tbl8_index + tbl8_range); i++) {
473                         lpm->tbl8[i].depth = depth;
474                         lpm->tbl8[i].next_hop = next_hop;
475                         lpm->tbl8[i].valid = VALID;
476                 }
477
478                 /*
479                  * Update tbl24 entry to point to new tbl8 entry. Note: The
480                  * ext_flag and tbl8_index need to be updated simultaneously,
481                  * so assign whole structure in one go
482                  */
483
484                 struct rte_lpm_tbl24_entry new_tbl24_entry = {
485                         { .tbl8_gindex = (uint8_t)tbl8_group_index, },
486                         .valid = VALID,
487                         .ext_entry = 1,
488                         .depth = 0,
489                 };
490
491                 lpm->tbl24[tbl24_index] = new_tbl24_entry;
492
493         }/* If valid entry but not extended calculate the index into Table8. */
494         else if (lpm->tbl24[tbl24_index].ext_entry == 0) {
495                 /* Search for free tbl8 group. */
496                 tbl8_group_index = tbl8_alloc(lpm->tbl8);
497
498                 if (tbl8_group_index < 0) {
499                         return tbl8_group_index;
500                 }
501
502                 tbl8_group_start = tbl8_group_index *
503                                 RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
504                 tbl8_group_end = tbl8_group_start +
505                                 RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
506
507                 /* Populate new tbl8 with tbl24 value. */
508                 for (i = tbl8_group_start; i < tbl8_group_end; i++) {
509                         lpm->tbl8[i].valid = VALID;
510                         lpm->tbl8[i].depth = lpm->tbl24[tbl24_index].depth;
511                         lpm->tbl8[i].next_hop =
512                                         lpm->tbl24[tbl24_index].next_hop;
513                 }
514
515                 tbl8_index = tbl8_group_start + (ip_masked & 0xFF);
516
517                 /* Insert new rule into the tbl8 entry. */
518                 for (i = tbl8_index; i < tbl8_index + tbl8_range; i++) {
519                         if (!lpm->tbl8[i].valid ||
520                                         lpm->tbl8[i].depth <= depth) {
521                                 lpm->tbl8[i].valid = VALID;
522                                 lpm->tbl8[i].depth = depth;
523                                 lpm->tbl8[i].next_hop = next_hop;
524
525                                 continue;
526                         }
527                 }
528
529                 /*
530                  * Update tbl24 entry to point to new tbl8 entry. Note: The
531                  * ext_flag and tbl8_index need to be updated simultaneously,
532                  * so assign whole structure in one go.
533                  */
534
535                 struct rte_lpm_tbl24_entry new_tbl24_entry = {
536                                 { .tbl8_gindex = (uint8_t)tbl8_group_index, },
537                                 .valid = VALID,
538                                 .ext_entry = 1,
539                                 .depth = 0,
540                 };
541
542                 lpm->tbl24[tbl24_index] = new_tbl24_entry;
543
544         }
545         else { /*
546                 * If it is valid, extended entry calculate the index into tbl8.
547                 */
548                 tbl8_group_index = lpm->tbl24[tbl24_index].tbl8_gindex;
549                 tbl8_group_start = tbl8_group_index *
550                                 RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
551                 tbl8_index = tbl8_group_start + (ip_masked & 0xFF);
552
553                 for (i = tbl8_index; i < (tbl8_index + tbl8_range); i++) {
554
555                         if (!lpm->tbl8[i].valid ||
556                                         lpm->tbl8[i].depth <= depth) {
557                                 struct rte_lpm_tbl8_entry new_tbl8_entry = {
558                                         .valid = VALID,
559                                         .depth = depth,
560                                         .next_hop = next_hop,
561                                         .valid_group = lpm->tbl8[i].valid_group,
562                                 };
563
564                                 /*
565                                  * Setting tbl8 entry in one go to avoid race
566                                  * condition
567                                  */
568                                 lpm->tbl8[i] = new_tbl8_entry;
569
570                                 continue;
571                         }
572                 }
573         }
574
575         return 0;
576 }
577
578 /*
579  * Add a route
580  */
581 int
582 rte_lpm_add(struct rte_lpm *lpm, uint32_t ip, uint8_t depth,
583                 uint8_t next_hop)
584 {
585         int32_t rule_index, status = 0;
586         uint32_t ip_masked;
587
588         /* Check user arguments. */
589         if ((lpm == NULL) || (depth < 1) || (depth > RTE_LPM_MAX_DEPTH))
590                 return -EINVAL;
591
592         ip_masked = ip & depth_to_mask(depth);
593
594         /* Add the rule to the rule table. */
595         rule_index = rule_add(lpm, ip_masked, depth, next_hop);
596
597         /* If the is no space available for new rule return error. */
598         if (rule_index < 0) {
599                 return rule_index;
600         }
601
602         if (depth <= MAX_DEPTH_TBL24) {
603                 status = add_depth_small(lpm, ip_masked, depth, next_hop);
604         }
605         else { /* If depth > RTE_LPM_MAX_DEPTH_TBL24 */
606                 status = add_depth_big(lpm, ip_masked, depth, next_hop);
607
608                 /*
609                  * If add fails due to exhaustion of tbl8 extensions delete
610                  * rule that was added to rule table.
611                  */
612                 if (status < 0) {
613                         rule_delete(lpm, rule_index, depth);
614
615                         return status;
616                 }
617         }
618
619         return 0;
620 }
621
622 static inline int32_t
623 find_previous_rule(struct rte_lpm *lpm, uint32_t ip, uint8_t depth, uint8_t *sub_rule_depth)
624 {
625         int32_t rule_index;
626         uint32_t ip_masked;
627         uint8_t prev_depth;
628
629         for (prev_depth = (uint8_t)(depth - 1); prev_depth > 0; prev_depth--) {
630                 ip_masked = ip & depth_to_mask(prev_depth);
631
632                 rule_index = rule_find(lpm, ip_masked, prev_depth);
633
634                 if (rule_index >= 0) {
635                         *sub_rule_depth = prev_depth;
636                         return rule_index;
637                 }
638         }
639
640         return -1;
641 }
642
643 static inline int32_t
644 delete_depth_small(struct rte_lpm *lpm, uint32_t ip_masked,
645         uint8_t depth, int32_t sub_rule_index, uint8_t sub_rule_depth)
646 {
647         uint32_t tbl24_range, tbl24_index, tbl8_group_index, tbl8_index, i, j;
648
649         /* Calculate the range and index into Table24. */
650         tbl24_range = depth_to_range(depth);
651         tbl24_index = (ip_masked >> 8);
652
653         /*
654          * Firstly check the sub_rule_index. A -1 indicates no replacement rule
655          * and a positive number indicates a sub_rule_index.
656          */
657         if (sub_rule_index < 0) {
658                 /*
659                  * If no replacement rule exists then invalidate entries
660                  * associated with this rule.
661                  */
662                 for (i = tbl24_index; i < (tbl24_index + tbl24_range); i++) {
663                         
664                         if (lpm->tbl24[i].ext_entry == 0 &&
665                                         lpm->tbl24[i].depth <= depth ) {
666                                 lpm->tbl24[i].valid = INVALID;
667                         }
668                         else {
669                                 /*
670                                  * If TBL24 entry is extended, then there has
671                                  * to be a rule with depth >= 25 in the
672                                  * associated TBL8 group.
673                                  */
674
675                                 tbl8_group_index = lpm->tbl24[i].tbl8_gindex;
676                                 tbl8_index = tbl8_group_index *
677                                                 RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
678
679                                 for (j = tbl8_index; j < (tbl8_index +
680                                         RTE_LPM_TBL8_GROUP_NUM_ENTRIES); j++) {
681
682                                         if (lpm->tbl8[j].depth <= depth)
683                                                 lpm->tbl8[j].valid = INVALID;
684                                 }
685                         }
686                 }
687         }
688         else {
689                 /*
690                  * If a replacement rule exists then modify entries
691                  * associated with this rule.
692                  */
693
694                 struct rte_lpm_tbl24_entry new_tbl24_entry = {
695                         {.next_hop = lpm->rules_tbl[sub_rule_index].next_hop,},
696                         .valid = VALID,
697                         .ext_entry = 0,
698                         .depth = sub_rule_depth,
699                 };
700
701                 struct rte_lpm_tbl8_entry new_tbl8_entry = {
702                         .valid = VALID,
703                         .depth = sub_rule_depth,
704                         .next_hop = lpm->rules_tbl
705                         [sub_rule_index].next_hop,
706                 };
707
708                 for (i = tbl24_index; i < (tbl24_index + tbl24_range); i++) {
709
710                         if (lpm->tbl24[i].ext_entry == 0 &&
711                                         lpm->tbl24[i].depth <= depth ) {
712                                 lpm->tbl24[i] = new_tbl24_entry;
713                         }
714                         else {
715                                 /*
716                                  * If TBL24 entry is extended, then there has
717                                  * to be a rule with depth >= 25 in the
718                                  * associated TBL8 group.
719                                  */
720
721                                 tbl8_group_index = lpm->tbl24[i].tbl8_gindex;
722                                 tbl8_index = tbl8_group_index *
723                                                 RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
724                                 
725                                 for (j = tbl8_index; j < (tbl8_index +
726                                         RTE_LPM_TBL8_GROUP_NUM_ENTRIES); j++) {
727
728                                         if (lpm->tbl8[j].depth <= depth)
729                                                 lpm->tbl8[j] = new_tbl8_entry;
730                                 }
731                         }
732                 }
733         }
734
735         return 0;
736 }
737
738 /*
739  * Checks if table 8 group can be recycled.
740  *
741  * Return of -EEXIST means tbl8 is in use and thus can not be recycled.
742  * Return of -EINVAL means tbl8 is empty and thus can be recycled
743  * Return of value > -1 means tbl8 is in use but has all the same values and
744  * thus can be recycled
745  */
746 static inline int32_t
747 tbl8_recycle_check(struct rte_lpm_tbl8_entry *tbl8, uint32_t tbl8_group_start)
748 {
749         uint32_t tbl8_group_end, i;
750         tbl8_group_end = tbl8_group_start + RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
751
752         /*
753          * Check the first entry of the given tbl8. If it is invalid we know
754          * this tbl8 does not contain any rule with a depth < RTE_LPM_MAX_DEPTH
755          *  (As they would affect all entries in a tbl8) and thus this table
756          *  can not be recycled.
757          */
758         if (tbl8[tbl8_group_start].valid) {
759                 /*
760                  * If first entry is valid check if the depth is less than 24
761                  * and if so check the rest of the entries to verify that they
762                  * are all of this depth.
763                  */
764                 if (tbl8[tbl8_group_start].depth < MAX_DEPTH_TBL24) {
765                         for (i = (tbl8_group_start + 1); i < tbl8_group_end;
766                                         i++) {
767
768                                 if (tbl8[i].depth !=
769                                                 tbl8[tbl8_group_start].depth) {
770
771                                         return -EEXIST;
772                                 }
773                         }
774                         /* If all entries are the same return the tb8 index */
775                         return tbl8_group_start;
776                 }
777
778                 return -EEXIST;
779         }
780         /*
781          * If the first entry is invalid check if the rest of the entries in
782          * the tbl8 are invalid.
783          */
784         for (i = (tbl8_group_start + 1); i < tbl8_group_end; i++) {
785                 if (tbl8[i].valid)
786                         return -EEXIST;
787         }
788         /* If no valid entries are found then return -EINVAL. */
789         return -EINVAL;
790 }
791
792 static inline int32_t
793 delete_depth_big(struct rte_lpm *lpm, uint32_t ip_masked,
794         uint8_t depth, int32_t sub_rule_index, uint8_t sub_rule_depth)
795 {
796         uint32_t tbl24_index, tbl8_group_index, tbl8_group_start, tbl8_index,
797                         tbl8_range, i;
798         int32_t tbl8_recycle_index;
799
800         /*
801          * Calculate the index into tbl24 and range. Note: All depths larger
802          * than MAX_DEPTH_TBL24 are associated with only one tbl24 entry.
803          */
804         tbl24_index = ip_masked >> 8;
805
806         /* Calculate the index into tbl8 and range. */
807         tbl8_group_index = lpm->tbl24[tbl24_index].tbl8_gindex;
808         tbl8_group_start = tbl8_group_index * RTE_LPM_TBL8_GROUP_NUM_ENTRIES;
809         tbl8_index = tbl8_group_start + (ip_masked & 0xFF);
810         tbl8_range = depth_to_range(depth);
811
812         if (sub_rule_index < 0) {
813                 /*
814                  * Loop through the range of entries on tbl8 for which the
815                  * rule_to_delete must be removed or modified.
816                  */
817                 for (i = tbl8_index; i < (tbl8_index + tbl8_range); i++) {
818                         if (lpm->tbl8[i].depth <= depth)
819                                 lpm->tbl8[i].valid = INVALID;
820                 }
821         }
822         else {
823                 /* Set new tbl8 entry. */
824                 struct rte_lpm_tbl8_entry new_tbl8_entry = {
825                         .valid = VALID,
826                         .depth = sub_rule_depth,
827                         .valid_group = lpm->tbl8[tbl8_group_start].valid_group,
828                         .next_hop = lpm->rules_tbl[sub_rule_index].next_hop,
829                 };
830
831                 /*
832                  * Loop through the range of entries on tbl8 for which the
833                  * rule_to_delete must be modified.
834                  */
835                 for (i = tbl8_index; i < (tbl8_index + tbl8_range); i++) {
836                         if (lpm->tbl8[i].depth <= depth)
837                                 lpm->tbl8[i] = new_tbl8_entry;
838                 }
839         }
840
841         /*
842          * Check if there are any valid entries in this tbl8 group. If all
843          * tbl8 entries are invalid we can free the tbl8 and invalidate the
844          * associated tbl24 entry.
845          */
846
847         tbl8_recycle_index = tbl8_recycle_check(lpm->tbl8, tbl8_group_start);
848
849         if (tbl8_recycle_index == -EINVAL){
850                 /* Set tbl24 before freeing tbl8 to avoid race condition. */
851                 lpm->tbl24[tbl24_index].valid = 0;
852                 tbl8_free(lpm->tbl8, tbl8_group_start);
853         }
854         else if (tbl8_recycle_index > -1) {
855                 /* Update tbl24 entry. */
856                 struct rte_lpm_tbl24_entry new_tbl24_entry = {
857                         { .next_hop = lpm->tbl8[tbl8_recycle_index].next_hop, },
858                         .valid = VALID,
859                         .ext_entry = 0,
860                         .depth = lpm->tbl8[tbl8_recycle_index].depth,
861                 };
862
863                 /* Set tbl24 before freeing tbl8 to avoid race condition. */
864                 lpm->tbl24[tbl24_index] = new_tbl24_entry;
865                 tbl8_free(lpm->tbl8, tbl8_group_start);
866         }
867
868         return 0;
869 }
870
871 /*
872  * Deletes a rule
873  */
874 int
875 rte_lpm_delete(struct rte_lpm *lpm, uint32_t ip, uint8_t depth)
876 {
877         int32_t rule_to_delete_index, sub_rule_index;
878         uint32_t ip_masked;
879         uint8_t sub_rule_depth;
880         /*
881          * Check input arguments. Note: IP must be a positive integer of 32
882          * bits in length therefore it need not be checked.
883          */
884         if ((lpm == NULL) || (depth < 1) || (depth > RTE_LPM_MAX_DEPTH)) {
885                 return -EINVAL;
886         }
887
888         ip_masked = ip & depth_to_mask(depth);
889
890         /*
891          * Find the index of the input rule, that needs to be deleted, in the
892          * rule table.
893          */
894         rule_to_delete_index = rule_find(lpm, ip_masked, depth);
895
896         /*
897          * Check if rule_to_delete_index was found. If no rule was found the
898          * function rule_find returns -E_RTE_NO_TAILQ.
899          */
900         if (rule_to_delete_index < 0)
901                 return -E_RTE_NO_TAILQ;
902
903         /* Delete the rule from the rule table. */
904         rule_delete(lpm, rule_to_delete_index, depth);
905
906         /*
907          * Find rule to replace the rule_to_delete. If there is no rule to
908          * replace the rule_to_delete we return -1 and invalidate the table
909          * entries associated with this rule.
910          */
911         sub_rule_depth = 0;
912         sub_rule_index = find_previous_rule(lpm, ip, depth, &sub_rule_depth);
913
914         /*
915          * If the input depth value is less than 25 use function
916          * delete_depth_small otherwise use delete_depth_big.
917          */
918         if (depth <= MAX_DEPTH_TBL24) {
919                 return delete_depth_small(lpm, ip_masked, depth,
920                                 sub_rule_index, sub_rule_depth);
921         }
922         else { /* If depth > MAX_DEPTH_TBL24 */
923                 return delete_depth_big(lpm, ip_masked, depth, sub_rule_index, sub_rule_depth);
924         }
925 }
926
927 /*
928  * Delete all rules from the LPM table.
929  */
930 void
931 rte_lpm_delete_all(struct rte_lpm *lpm)
932 {
933         /* Zero rule information. */
934         memset(lpm->rule_info, 0, sizeof(lpm->rule_info));
935
936         /* Zero tbl24. */
937         memset(lpm->tbl24, 0, sizeof(lpm->tbl24));
938
939         /* Zero tbl8. */
940         memset(lpm->tbl8, 0, sizeof(lpm->tbl8));
941
942         /* Delete all rules form the rules table. */
943         memset(lpm->rules_tbl, 0, sizeof(lpm->rules_tbl[0]) * lpm->max_rules);
944 }
945