Imported Upstream version 16.04
[deb_dpdk.git] / lib / librte_lpm / rte_lpm6.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 #include <string.h>
34 #include <stdint.h>
35 #include <errno.h>
36 #include <stdarg.h>
37 #include <stdio.h>
38 #include <errno.h>
39 #include <sys/queue.h>
40
41 #include <rte_log.h>
42 #include <rte_branch_prediction.h>
43 #include <rte_common.h>
44 #include <rte_memory.h>
45 #include <rte_malloc.h>
46 #include <rte_memzone.h>
47 #include <rte_memcpy.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_lpm6.h"
57
58 #define RTE_LPM6_TBL24_NUM_ENTRIES        (1 << 24)
59 #define RTE_LPM6_TBL8_GROUP_NUM_ENTRIES         256
60 #define RTE_LPM6_TBL8_MAX_NUM_GROUPS      (1 << 21)
61
62 #define RTE_LPM6_VALID_EXT_ENTRY_BITMASK 0xA0000000
63 #define RTE_LPM6_LOOKUP_SUCCESS          0x20000000
64 #define RTE_LPM6_TBL8_BITMASK            0x001FFFFF
65
66 #define ADD_FIRST_BYTE                            3
67 #define LOOKUP_FIRST_BYTE                         4
68 #define BYTE_SIZE                                 8
69 #define BYTES2_SIZE                              16
70
71 #define lpm6_tbl8_gindex next_hop
72
73 /** Flags for setting an entry as valid/invalid. */
74 enum valid_flag {
75         INVALID = 0,
76         VALID
77 };
78
79 TAILQ_HEAD(rte_lpm6_list, rte_tailq_entry);
80
81 static struct rte_tailq_elem rte_lpm6_tailq = {
82         .name = "RTE_LPM6",
83 };
84 EAL_REGISTER_TAILQ(rte_lpm6_tailq)
85
86 /** Tbl entry structure. It is the same for both tbl24 and tbl8 */
87 struct rte_lpm6_tbl_entry {
88         uint32_t next_hop:      21;  /**< Next hop / next table to be checked. */
89         uint32_t depth  :8;      /**< Rule depth. */
90
91         /* Flags. */
92         uint32_t valid     :1;   /**< Validation flag. */
93         uint32_t valid_group :1; /**< Group validation flag. */
94         uint32_t ext_entry :1;   /**< External entry. */
95 };
96
97 /** Rules tbl entry structure. */
98 struct rte_lpm6_rule {
99         uint8_t ip[RTE_LPM6_IPV6_ADDR_SIZE]; /**< Rule IP address. */
100         uint8_t next_hop; /**< Rule next hop. */
101         uint8_t depth; /**< Rule depth. */
102 };
103
104 /** LPM6 structure. */
105 struct rte_lpm6 {
106         /* LPM metadata. */
107         char name[RTE_LPM6_NAMESIZE];    /**< Name of the lpm. */
108         uint32_t max_rules;              /**< Max number of rules. */
109         uint32_t used_rules;             /**< Used rules so far. */
110         uint32_t number_tbl8s;           /**< Number of tbl8s to allocate. */
111         uint32_t next_tbl8;              /**< Next tbl8 to be used. */
112
113         /* LPM Tables. */
114         struct rte_lpm6_rule *rules_tbl; /**< LPM rules. */
115         struct rte_lpm6_tbl_entry tbl24[RTE_LPM6_TBL24_NUM_ENTRIES]
116                         __rte_cache_aligned; /**< LPM tbl24 table. */
117         struct rte_lpm6_tbl_entry tbl8[0]
118                         __rte_cache_aligned; /**< LPM tbl8 table. */
119 };
120
121 /*
122  * Takes an array of uint8_t (IPv6 address) and masks it using the depth.
123  * It leaves untouched one bit per unit in the depth variable
124  * and set the rest to 0.
125  */
126 static inline void
127 mask_ip(uint8_t *ip, uint8_t depth)
128 {
129         int16_t part_depth, mask;
130         int i;
131
132                 part_depth = depth;
133
134                 for (i = 0; i < RTE_LPM6_IPV6_ADDR_SIZE; i++) {
135                         if (part_depth < BYTE_SIZE && part_depth >= 0) {
136                                 mask = (uint16_t)(~(UINT8_MAX >> part_depth));
137                                 ip[i] = (uint8_t)(ip[i] & mask);
138                         } else if (part_depth < 0) {
139                                 ip[i] = 0;
140                         }
141                         part_depth -= BYTE_SIZE;
142                 }
143 }
144
145 /*
146  * Allocates memory for LPM object
147  */
148 struct rte_lpm6 *
149 rte_lpm6_create(const char *name, int socket_id,
150                 const struct rte_lpm6_config *config)
151 {
152         char mem_name[RTE_LPM6_NAMESIZE];
153         struct rte_lpm6 *lpm = NULL;
154         struct rte_tailq_entry *te;
155         uint64_t mem_size, rules_size;
156         struct rte_lpm6_list *lpm_list;
157
158         lpm_list = RTE_TAILQ_CAST(rte_lpm6_tailq.head, rte_lpm6_list);
159
160         RTE_BUILD_BUG_ON(sizeof(struct rte_lpm6_tbl_entry) != sizeof(uint32_t));
161
162         /* Check user arguments. */
163         if ((name == NULL) || (socket_id < -1) || (config == NULL) ||
164                         (config->max_rules == 0) ||
165                         config->number_tbl8s > RTE_LPM6_TBL8_MAX_NUM_GROUPS) {
166                 rte_errno = EINVAL;
167                 return NULL;
168         }
169
170         snprintf(mem_name, sizeof(mem_name), "LPM_%s", name);
171
172         /* Determine the amount of memory to allocate. */
173         mem_size = sizeof(*lpm) + (sizeof(lpm->tbl8[0]) *
174                         RTE_LPM6_TBL8_GROUP_NUM_ENTRIES * config->number_tbl8s);
175         rules_size = sizeof(struct rte_lpm6_rule) * config->max_rules;
176
177         rte_rwlock_write_lock(RTE_EAL_TAILQ_RWLOCK);
178
179         /* Guarantee there's no existing */
180         TAILQ_FOREACH(te, lpm_list, next) {
181                 lpm = (struct rte_lpm6 *) te->data;
182                 if (strncmp(name, lpm->name, RTE_LPM6_NAMESIZE) == 0)
183                         break;
184         }
185         lpm = NULL;
186         if (te != NULL) {
187                 rte_errno = EEXIST;
188                 goto exit;
189         }
190
191         /* allocate tailq entry */
192         te = rte_zmalloc("LPM6_TAILQ_ENTRY", sizeof(*te), 0);
193         if (te == NULL) {
194                 RTE_LOG(ERR, LPM, "Failed to allocate tailq entry!\n");
195                 goto exit;
196         }
197
198         /* Allocate memory to store the LPM data structures. */
199         lpm = (struct rte_lpm6 *)rte_zmalloc_socket(mem_name, (size_t)mem_size,
200                         RTE_CACHE_LINE_SIZE, socket_id);
201
202         if (lpm == NULL) {
203                 RTE_LOG(ERR, LPM, "LPM memory allocation failed\n");
204                 rte_free(te);
205                 goto exit;
206         }
207
208         lpm->rules_tbl = (struct rte_lpm6_rule *)rte_zmalloc_socket(NULL,
209                         (size_t)rules_size, RTE_CACHE_LINE_SIZE, socket_id);
210
211         if (lpm->rules_tbl == NULL) {
212                 RTE_LOG(ERR, LPM, "LPM rules_tbl allocation failed\n");
213                 rte_free(lpm);
214                 lpm = NULL;
215                 rte_free(te);
216                 goto exit;
217         }
218
219         /* Save user arguments. */
220         lpm->max_rules = config->max_rules;
221         lpm->number_tbl8s = config->number_tbl8s;
222         snprintf(lpm->name, sizeof(lpm->name), "%s", name);
223
224         te->data = (void *) lpm;
225
226         TAILQ_INSERT_TAIL(lpm_list, te, next);
227
228 exit:
229         rte_rwlock_write_unlock(RTE_EAL_TAILQ_RWLOCK);
230
231         return lpm;
232 }
233
234 /*
235  * Find an existing lpm table and return a pointer to it.
236  */
237 struct rte_lpm6 *
238 rte_lpm6_find_existing(const char *name)
239 {
240         struct rte_lpm6 *l = NULL;
241         struct rte_tailq_entry *te;
242         struct rte_lpm6_list *lpm_list;
243
244         lpm_list = RTE_TAILQ_CAST(rte_lpm6_tailq.head, rte_lpm6_list);
245
246         rte_rwlock_read_lock(RTE_EAL_TAILQ_RWLOCK);
247         TAILQ_FOREACH(te, lpm_list, next) {
248                 l = (struct rte_lpm6 *) te->data;
249                 if (strncmp(name, l->name, RTE_LPM6_NAMESIZE) == 0)
250                         break;
251         }
252         rte_rwlock_read_unlock(RTE_EAL_TAILQ_RWLOCK);
253
254         if (te == NULL) {
255                 rte_errno = ENOENT;
256                 return NULL;
257         }
258
259         return l;
260 }
261
262 /*
263  * Deallocates memory for given LPM table.
264  */
265 void
266 rte_lpm6_free(struct rte_lpm6 *lpm)
267 {
268         struct rte_lpm6_list *lpm_list;
269         struct rte_tailq_entry *te;
270
271         /* Check user arguments. */
272         if (lpm == NULL)
273                 return;
274
275         lpm_list = RTE_TAILQ_CAST(rte_lpm6_tailq.head, rte_lpm6_list);
276
277         rte_rwlock_write_lock(RTE_EAL_TAILQ_RWLOCK);
278
279         /* find our tailq entry */
280         TAILQ_FOREACH(te, lpm_list, next) {
281                 if (te->data == (void *) lpm)
282                         break;
283         }
284
285         if (te != NULL)
286                 TAILQ_REMOVE(lpm_list, te, next);
287
288         rte_rwlock_write_unlock(RTE_EAL_TAILQ_RWLOCK);
289
290         rte_free(lpm->rules_tbl);
291         rte_free(lpm);
292         rte_free(te);
293 }
294
295 /*
296  * Checks if a rule already exists in the rules table and updates
297  * the nexthop if so. Otherwise it adds a new rule if enough space is available.
298  */
299 static inline int32_t
300 rule_add(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t next_hop, uint8_t depth)
301 {
302         uint32_t rule_index;
303
304         /* Scan through rule list to see if rule already exists. */
305         for (rule_index = 0; rule_index < lpm->used_rules; rule_index++) {
306
307                 /* If rule already exists update its next_hop and return. */
308                 if ((memcmp (lpm->rules_tbl[rule_index].ip, ip,
309                                 RTE_LPM6_IPV6_ADDR_SIZE) == 0) &&
310                                 lpm->rules_tbl[rule_index].depth == depth) {
311                         lpm->rules_tbl[rule_index].next_hop = next_hop;
312
313                         return rule_index;
314                 }
315         }
316
317         /*
318          * If rule does not exist check if there is space to add a new rule to
319          * this rule group. If there is no space return error.
320          */
321         if (lpm->used_rules == lpm->max_rules) {
322                 return -ENOSPC;
323         }
324
325         /* If there is space for the new rule add it. */
326         rte_memcpy(lpm->rules_tbl[rule_index].ip, ip, RTE_LPM6_IPV6_ADDR_SIZE);
327         lpm->rules_tbl[rule_index].next_hop = next_hop;
328         lpm->rules_tbl[rule_index].depth = depth;
329
330         /* Increment the used rules counter for this rule group. */
331         lpm->used_rules++;
332
333         return rule_index;
334 }
335
336 /*
337  * Function that expands a rule across the data structure when a less-generic
338  * one has been added before. It assures that every possible combination of bits
339  * in the IP address returns a match.
340  */
341 static void
342 expand_rule(struct rte_lpm6 *lpm, uint32_t tbl8_gindex, uint8_t depth,
343                 uint8_t next_hop)
344 {
345         uint32_t tbl8_group_end, tbl8_gindex_next, j;
346
347         tbl8_group_end = tbl8_gindex + RTE_LPM6_TBL8_GROUP_NUM_ENTRIES;
348
349         struct rte_lpm6_tbl_entry new_tbl8_entry = {
350                 .valid = VALID,
351                 .valid_group = VALID,
352                 .depth = depth,
353                 .next_hop = next_hop,
354                 .ext_entry = 0,
355         };
356
357         for (j = tbl8_gindex; j < tbl8_group_end; j++) {
358                 if (!lpm->tbl8[j].valid || (lpm->tbl8[j].ext_entry == 0
359                                 && lpm->tbl8[j].depth <= depth)) {
360
361                         lpm->tbl8[j] = new_tbl8_entry;
362
363                 } else if (lpm->tbl8[j].ext_entry == 1) {
364
365                         tbl8_gindex_next = lpm->tbl8[j].lpm6_tbl8_gindex
366                                         * RTE_LPM6_TBL8_GROUP_NUM_ENTRIES;
367                         expand_rule(lpm, tbl8_gindex_next, depth, next_hop);
368                 }
369         }
370 }
371
372 /*
373  * Partially adds a new route to the data structure (tbl24+tbl8s).
374  * It returns 0 on success, a negative number on failure, or 1 if
375  * the process needs to be continued by calling the function again.
376  */
377 static inline int
378 add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
379                 struct rte_lpm6_tbl_entry **tbl_next, uint8_t *ip, uint8_t bytes,
380                 uint8_t first_byte, uint8_t depth, uint8_t next_hop)
381 {
382         uint32_t tbl_index, tbl_range, tbl8_group_start, tbl8_group_end, i;
383         int32_t tbl8_gindex;
384         int8_t bitshift;
385         uint8_t bits_covered;
386
387         /*
388          * Calculate index to the table based on the number and position
389          * of the bytes being inspected in this step.
390          */
391         tbl_index = 0;
392         for (i = first_byte; i < (uint32_t)(first_byte + bytes); i++) {
393                 bitshift = (int8_t)((bytes - i)*BYTE_SIZE);
394
395                 if (bitshift < 0) bitshift = 0;
396                 tbl_index = tbl_index | ip[i-1] << bitshift;
397         }
398
399         /* Number of bits covered in this step */
400         bits_covered = (uint8_t)((bytes+first_byte-1)*BYTE_SIZE);
401
402         /*
403          * If depth if smaller than this number (ie this is the last step)
404          * expand the rule across the relevant positions in the table.
405          */
406         if (depth <= bits_covered) {
407                 tbl_range = 1 << (bits_covered - depth);
408
409                 for (i = tbl_index; i < (tbl_index + tbl_range); i++) {
410                         if (!tbl[i].valid || (tbl[i].ext_entry == 0 &&
411                                         tbl[i].depth <= depth)) {
412
413                                 struct rte_lpm6_tbl_entry new_tbl_entry = {
414                                         .next_hop = next_hop,
415                                         .depth = depth,
416                                         .valid = VALID,
417                                         .valid_group = VALID,
418                                         .ext_entry = 0,
419                                 };
420
421                                 tbl[i] = new_tbl_entry;
422
423                         } else if (tbl[i].ext_entry == 1) {
424
425                                 /*
426                                  * If tbl entry is valid and extended calculate the index
427                                  * into next tbl8 and expand the rule across the data structure.
428                                  */
429                                 tbl8_gindex = tbl[i].lpm6_tbl8_gindex *
430                                                 RTE_LPM6_TBL8_GROUP_NUM_ENTRIES;
431                                 expand_rule(lpm, tbl8_gindex, depth, next_hop);
432                         }
433                 }
434
435                 return 0;
436         }
437         /*
438          * If this is not the last step just fill one position
439          * and calculate the index to the next table.
440          */
441         else {
442                 /* If it's invalid a new tbl8 is needed */
443                 if (!tbl[tbl_index].valid) {
444                         if (lpm->next_tbl8 < lpm->number_tbl8s)
445                                 tbl8_gindex = (lpm->next_tbl8)++;
446                         else
447                                 return -ENOSPC;
448
449                         struct rte_lpm6_tbl_entry new_tbl_entry = {
450                                 .lpm6_tbl8_gindex = tbl8_gindex,
451                                 .depth = 0,
452                                 .valid = VALID,
453                                 .valid_group = VALID,
454                                 .ext_entry = 1,
455                         };
456
457                         tbl[tbl_index] = new_tbl_entry;
458                 }
459                 /*
460                  * If it's valid but not extended the rule that was stored *
461                  * here needs to be moved to the next table.
462                  */
463                 else if (tbl[tbl_index].ext_entry == 0) {
464                         /* Search for free tbl8 group. */
465                         if (lpm->next_tbl8 < lpm->number_tbl8s)
466                                 tbl8_gindex = (lpm->next_tbl8)++;
467                         else
468                                 return -ENOSPC;
469
470                         tbl8_group_start = tbl8_gindex *
471                                         RTE_LPM6_TBL8_GROUP_NUM_ENTRIES;
472                         tbl8_group_end = tbl8_group_start +
473                                         RTE_LPM6_TBL8_GROUP_NUM_ENTRIES;
474
475                         /* Populate new tbl8 with tbl value. */
476                         for (i = tbl8_group_start; i < tbl8_group_end; i++) {
477                                 lpm->tbl8[i].valid = VALID;
478                                 lpm->tbl8[i].depth = tbl[tbl_index].depth;
479                                 lpm->tbl8[i].next_hop = tbl[tbl_index].next_hop;
480                                 lpm->tbl8[i].ext_entry = 0;
481                         }
482
483                         /*
484                          * Update tbl entry to point to new tbl8 entry. Note: The
485                          * ext_flag and tbl8_index need to be updated simultaneously,
486                          * so assign whole structure in one go.
487                          */
488                         struct rte_lpm6_tbl_entry new_tbl_entry = {
489                                 .lpm6_tbl8_gindex = tbl8_gindex,
490                                 .depth = 0,
491                                 .valid = VALID,
492                                 .valid_group = VALID,
493                                 .ext_entry = 1,
494                         };
495
496                         tbl[tbl_index] = new_tbl_entry;
497                 }
498
499                 *tbl_next = &(lpm->tbl8[tbl[tbl_index].lpm6_tbl8_gindex *
500                                 RTE_LPM6_TBL8_GROUP_NUM_ENTRIES]);
501         }
502
503         return 1;
504 }
505
506 /*
507  * Add a route
508  */
509 int
510 rte_lpm6_add(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth,
511                 uint8_t next_hop)
512 {
513         struct rte_lpm6_tbl_entry *tbl;
514         struct rte_lpm6_tbl_entry *tbl_next;
515         int32_t rule_index;
516         int status;
517         uint8_t masked_ip[RTE_LPM6_IPV6_ADDR_SIZE];
518         int i;
519
520         /* Check user arguments. */
521         if ((lpm == NULL) || (depth < 1) || (depth > RTE_LPM6_MAX_DEPTH))
522                 return -EINVAL;
523
524         /* Copy the IP and mask it to avoid modifying user's input data. */
525         memcpy(masked_ip, ip, RTE_LPM6_IPV6_ADDR_SIZE);
526         mask_ip(masked_ip, depth);
527
528         /* Add the rule to the rule table. */
529         rule_index = rule_add(lpm, masked_ip, next_hop, depth);
530
531         /* If there is no space available for new rule return error. */
532         if (rule_index < 0) {
533                 return rule_index;
534         }
535
536         /* Inspect the first three bytes through tbl24 on the first step. */
537         tbl = lpm->tbl24;
538         status = add_step (lpm, tbl, &tbl_next, masked_ip, ADD_FIRST_BYTE, 1,
539                         depth, next_hop);
540         if (status < 0) {
541                 rte_lpm6_delete(lpm, masked_ip, depth);
542
543                 return status;
544         }
545
546         /*
547          * Inspect one by one the rest of the bytes until
548          * the process is completed.
549          */
550         for (i = ADD_FIRST_BYTE; i < RTE_LPM6_IPV6_ADDR_SIZE && status == 1; i++) {
551                 tbl = tbl_next;
552                 status = add_step (lpm, tbl, &tbl_next, masked_ip, 1, (uint8_t)(i+1),
553                                 depth, next_hop);
554                 if (status < 0) {
555                         rte_lpm6_delete(lpm, masked_ip, depth);
556
557                         return status;
558                 }
559         }
560
561         return status;
562 }
563
564 /*
565  * Takes a pointer to a table entry and inspect one level.
566  * The function returns 0 on lookup success, ENOENT if no match was found
567  * or 1 if the process needs to be continued by calling the function again.
568  */
569 static inline int
570 lookup_step(const struct rte_lpm6 *lpm, const struct rte_lpm6_tbl_entry *tbl,
571                 const struct rte_lpm6_tbl_entry **tbl_next, uint8_t *ip,
572                 uint8_t first_byte, uint8_t *next_hop)
573 {
574         uint32_t tbl8_index, tbl_entry;
575
576         /* Take the integer value from the pointer. */
577         tbl_entry = *(const uint32_t *)tbl;
578
579         /* If it is valid and extended we calculate the new pointer to return. */
580         if ((tbl_entry & RTE_LPM6_VALID_EXT_ENTRY_BITMASK) ==
581                         RTE_LPM6_VALID_EXT_ENTRY_BITMASK) {
582
583                 tbl8_index = ip[first_byte-1] +
584                                 ((tbl_entry & RTE_LPM6_TBL8_BITMASK) *
585                                 RTE_LPM6_TBL8_GROUP_NUM_ENTRIES);
586
587                 *tbl_next = &lpm->tbl8[tbl8_index];
588
589                 return 1;
590         } else {
591                 /* If not extended then we can have a match. */
592                 *next_hop = (uint8_t)tbl_entry;
593                 return (tbl_entry & RTE_LPM6_LOOKUP_SUCCESS) ? 0 : -ENOENT;
594         }
595 }
596
597 /*
598  * Looks up an IP
599  */
600 int
601 rte_lpm6_lookup(const struct rte_lpm6 *lpm, uint8_t *ip, uint8_t *next_hop)
602 {
603         const struct rte_lpm6_tbl_entry *tbl;
604         const struct rte_lpm6_tbl_entry *tbl_next;
605         int status;
606         uint8_t first_byte;
607         uint32_t tbl24_index;
608
609         /* DEBUG: Check user input arguments. */
610         if ((lpm == NULL) || (ip == NULL) || (next_hop == NULL)) {
611                 return -EINVAL;
612         }
613
614         first_byte = LOOKUP_FIRST_BYTE;
615         tbl24_index = (ip[0] << BYTES2_SIZE) | (ip[1] << BYTE_SIZE) | ip[2];
616
617         /* Calculate pointer to the first entry to be inspected */
618         tbl = &lpm->tbl24[tbl24_index];
619
620         do {
621                 /* Continue inspecting following levels until success or failure */
622                 status = lookup_step(lpm, tbl, &tbl_next, ip, first_byte++, next_hop);
623                 tbl = tbl_next;
624         } while (status == 1);
625
626         return status;
627 }
628
629 /*
630  * Looks up a group of IP addresses
631  */
632 int
633 rte_lpm6_lookup_bulk_func(const struct rte_lpm6 *lpm,
634                 uint8_t ips[][RTE_LPM6_IPV6_ADDR_SIZE],
635                 int16_t * next_hops, unsigned n)
636 {
637         unsigned i;
638         const struct rte_lpm6_tbl_entry *tbl;
639         const struct rte_lpm6_tbl_entry *tbl_next;
640         uint32_t tbl24_index;
641         uint8_t first_byte, next_hop;
642         int status;
643
644         /* DEBUG: Check user input arguments. */
645         if ((lpm == NULL) || (ips == NULL) || (next_hops == NULL)) {
646                 return -EINVAL;
647         }
648
649         for (i = 0; i < n; i++) {
650                 first_byte = LOOKUP_FIRST_BYTE;
651                 tbl24_index = (ips[i][0] << BYTES2_SIZE) |
652                                 (ips[i][1] << BYTE_SIZE) | ips[i][2];
653
654                 /* Calculate pointer to the first entry to be inspected */
655                 tbl = &lpm->tbl24[tbl24_index];
656
657                 do {
658                         /* Continue inspecting following levels until success or failure */
659                         status = lookup_step(lpm, tbl, &tbl_next, ips[i], first_byte++,
660                                         &next_hop);
661                         tbl = tbl_next;
662                 } while (status == 1);
663
664                 if (status < 0)
665                         next_hops[i] = -1;
666                 else
667                         next_hops[i] = next_hop;
668         }
669
670         return 0;
671 }
672
673 /*
674  * Finds a rule in rule table.
675  * NOTE: Valid range for depth parameter is 1 .. 128 inclusive.
676  */
677 static inline int32_t
678 rule_find(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth)
679 {
680         uint32_t rule_index;
681
682         /* Scan used rules at given depth to find rule. */
683         for (rule_index = 0; rule_index < lpm->used_rules; rule_index++) {
684                 /* If rule is found return the rule index. */
685                 if ((memcmp (lpm->rules_tbl[rule_index].ip, ip,
686                                 RTE_LPM6_IPV6_ADDR_SIZE) == 0) &&
687                                 lpm->rules_tbl[rule_index].depth == depth) {
688
689                         return rule_index;
690                 }
691         }
692
693         /* If rule is not found return -ENOENT. */
694         return -ENOENT;
695 }
696
697 /*
698  * Look for a rule in the high-level rules table
699  */
700 int
701 rte_lpm6_is_rule_present(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth,
702 uint8_t *next_hop)
703 {
704         uint8_t ip_masked[RTE_LPM6_IPV6_ADDR_SIZE];
705         int32_t rule_index;
706
707         /* Check user arguments. */
708         if ((lpm == NULL) || next_hop == NULL || ip == NULL ||
709                         (depth < 1) || (depth > RTE_LPM6_MAX_DEPTH))
710                 return -EINVAL;
711
712         /* Copy the IP and mask it to avoid modifying user's input data. */
713         memcpy(ip_masked, ip, RTE_LPM6_IPV6_ADDR_SIZE);
714         mask_ip(ip_masked, depth);
715
716         /* Look for the rule using rule_find. */
717         rule_index = rule_find(lpm, ip_masked, depth);
718
719         if (rule_index >= 0) {
720                 *next_hop = lpm->rules_tbl[rule_index].next_hop;
721                 return 1;
722         }
723
724         /* If rule is not found return 0. */
725         return 0;
726 }
727
728 /*
729  * Delete a rule from the rule table.
730  * NOTE: Valid range for depth parameter is 1 .. 128 inclusive.
731  */
732 static inline void
733 rule_delete(struct rte_lpm6 *lpm, int32_t rule_index)
734 {
735         /*
736          * Overwrite redundant rule with last rule in group and decrement rule
737          * counter.
738          */
739         lpm->rules_tbl[rule_index] = lpm->rules_tbl[lpm->used_rules-1];
740         lpm->used_rules--;
741 }
742
743 /*
744  * Deletes a rule
745  */
746 int
747 rte_lpm6_delete(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth)
748 {
749         int32_t rule_to_delete_index;
750         uint8_t ip_masked[RTE_LPM6_IPV6_ADDR_SIZE];
751         unsigned i;
752
753         /*
754          * Check input arguments.
755          */
756         if ((lpm == NULL) || (depth < 1) || (depth > RTE_LPM6_MAX_DEPTH)) {
757                 return -EINVAL;
758         }
759
760         /* Copy the IP and mask it to avoid modifying user's input data. */
761         memcpy(ip_masked, ip, RTE_LPM6_IPV6_ADDR_SIZE);
762         mask_ip(ip_masked, depth);
763
764         /*
765          * Find the index of the input rule, that needs to be deleted, in the
766          * rule table.
767          */
768         rule_to_delete_index = rule_find(lpm, ip_masked, depth);
769
770         /*
771          * Check if rule_to_delete_index was found. If no rule was found the
772          * function rule_find returns -ENOENT.
773          */
774         if (rule_to_delete_index < 0)
775                 return rule_to_delete_index;
776
777         /* Delete the rule from the rule table. */
778         rule_delete(lpm, rule_to_delete_index);
779
780         /*
781          * Set all the table entries to 0 (ie delete every rule
782          * from the data structure.
783          */
784         lpm->next_tbl8 = 0;
785         memset(lpm->tbl24, 0, sizeof(lpm->tbl24));
786         memset(lpm->tbl8, 0, sizeof(lpm->tbl8[0])
787                         * RTE_LPM6_TBL8_GROUP_NUM_ENTRIES * lpm->number_tbl8s);
788
789         /*
790          * Add every rule again (except for the one that was removed from
791          * the rules table).
792          */
793         for (i = 0; i < lpm->used_rules; i++) {
794                 rte_lpm6_add(lpm, lpm->rules_tbl[i].ip, lpm->rules_tbl[i].depth,
795                                 lpm->rules_tbl[i].next_hop);
796         }
797
798         return 0;
799 }
800
801 /*
802  * Deletes a group of rules
803  */
804 int
805 rte_lpm6_delete_bulk_func(struct rte_lpm6 *lpm,
806                 uint8_t ips[][RTE_LPM6_IPV6_ADDR_SIZE], uint8_t *depths, unsigned n)
807 {
808         int32_t rule_to_delete_index;
809         uint8_t ip_masked[RTE_LPM6_IPV6_ADDR_SIZE];
810         unsigned i;
811
812         /*
813          * Check input arguments.
814          */
815         if ((lpm == NULL) || (ips == NULL) || (depths == NULL)) {
816                 return -EINVAL;
817         }
818
819         for (i = 0; i < n; i++) {
820                 /* Copy the IP and mask it to avoid modifying user's input data. */
821                 memcpy(ip_masked, ips[i], RTE_LPM6_IPV6_ADDR_SIZE);
822                 mask_ip(ip_masked, depths[i]);
823
824                 /*
825                  * Find the index of the input rule, that needs to be deleted, in the
826                  * rule table.
827                  */
828                 rule_to_delete_index = rule_find(lpm, ip_masked, depths[i]);
829
830                 /*
831                  * Check if rule_to_delete_index was found. If no rule was found the
832                  * function rule_find returns -ENOENT.
833                  */
834                 if (rule_to_delete_index < 0)
835                         continue;
836
837                 /* Delete the rule from the rule table. */
838                 rule_delete(lpm, rule_to_delete_index);
839         }
840
841         /*
842          * Set all the table entries to 0 (ie delete every rule
843          * from the data structure.
844          */
845         lpm->next_tbl8 = 0;
846         memset(lpm->tbl24, 0, sizeof(lpm->tbl24));
847         memset(lpm->tbl8, 0, sizeof(lpm->tbl8[0])
848                         * RTE_LPM6_TBL8_GROUP_NUM_ENTRIES * lpm->number_tbl8s);
849
850         /*
851          * Add every rule again (except for the ones that were removed from
852          * the rules table).
853          */
854         for (i = 0; i < lpm->used_rules; i++) {
855                 rte_lpm6_add(lpm, lpm->rules_tbl[i].ip, lpm->rules_tbl[i].depth,
856                                 lpm->rules_tbl[i].next_hop);
857         }
858
859         return 0;
860 }
861
862 /*
863  * Delete all rules from the LPM table.
864  */
865 void
866 rte_lpm6_delete_all(struct rte_lpm6 *lpm)
867 {
868         /* Zero used rules counter. */
869         lpm->used_rules = 0;
870
871         /* Zero next tbl8 index. */
872         lpm->next_tbl8 = 0;
873
874         /* Zero tbl24. */
875         memset(lpm->tbl24, 0, sizeof(lpm->tbl24));
876
877         /* Zero tbl8. */
878         memset(lpm->tbl8, 0, sizeof(lpm->tbl8[0]) *
879                         RTE_LPM6_TBL8_GROUP_NUM_ENTRIES * lpm->number_tbl8s);
880
881         /* Delete all rules form the rules table. */
882         memset(lpm->rules_tbl, 0, sizeof(struct rte_lpm6_rule) * lpm->max_rules);
883 }