DPDK patches and discussions
 help / color / mirror / Atom feed
* Re: [dpdk-dev] [PATCH v2] librte_lpm: Improve performance of the delete and add functions
       [not found] <c6068a65-bee2-4f34-944a-6cd46ac6a188@orsmsx104.amr.corp.intel.com>
@ 2018-07-06 10:13 ` Bruce Richardson
  2018-07-06 10:25   ` Bruce Richardson
  2018-07-06 10:23 ` Bruce Richardson
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 12+ messages in thread
From: Bruce Richardson @ 2018-07-06 10:13 UTC (permalink / raw)
  To: Alex Kiselev; +Cc: dev

On Mon, Jul 02, 2018 at 07:42:11PM +0300, Alex Kiselev wrote:
> There are two major problems with the library:
> first, there is no need to rebuild the whole LPM tree
> when a rule is deleted and second, due to the current
> rules algorithm with complexity O(n) it's almost
> impossible to deal with large rule sets (50k or so rules).
> This patch addresses those two issues.
> 
> Signed-off-by: Alex Kiselev <alex@therouter.net>
> ---
>  lib/librte_lpm/rte_lpm6.c | 1073 ++++++++++++++++++++++++++++++++++-----------
>  1 file changed, 816 insertions(+), 257 deletions(-)
> 

I get a compiler error with gcc8 after this patch:

/home/bruce/dpdk.org/lib/librte_lpm/rte_lpm6.c: In function ‘rte_lpm6_add_v1705’:
/home/bruce/dpdk.org/lib/librte_lpm/rte_lpm6.c:748:18: error: ‘tbl_next_num’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
    lpm->tbl8_hdrs[tbl_ind].ref_cnt++;
            ^

"check-git-log.sh" and "checkpatches.sh" are also reporting issues with
this patch. Please check these too.

Some code review comments to follow.

Regards,
/Bruce

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [dpdk-dev] [PATCH v2] librte_lpm: Improve performance of the delete and add functions
       [not found] <c6068a65-bee2-4f34-944a-6cd46ac6a188@orsmsx104.amr.corp.intel.com>
  2018-07-06 10:13 ` [dpdk-dev] [PATCH v2] librte_lpm: Improve performance of the delete and add functions Bruce Richardson
@ 2018-07-06 10:23 ` Bruce Richardson
  2018-07-06 10:56 ` Bruce Richardson
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 12+ messages in thread
From: Bruce Richardson @ 2018-07-06 10:23 UTC (permalink / raw)
  To: Alex Kiselev; +Cc: dev

On Mon, Jul 02, 2018 at 07:42:11PM +0300, Alex Kiselev wrote:
> There are two major problems with the library:
> first, there is no need to rebuild the whole LPM tree
> when a rule is deleted and second, due to the current
> rules algorithm with complexity O(n) it's almost
> impossible to deal with large rule sets (50k or so rules).
> This patch addresses those two issues.
> 
> Signed-off-by: Alex Kiselev <alex@therouter.net>
> ---
>  lib/librte_lpm/rte_lpm6.c | 1073 ++++++++++++++++++++++++++++++++++-----------
>  1 file changed, 816 insertions(+), 257 deletions(-)
> 
> diff --git a/lib/librte_lpm/rte_lpm6.c b/lib/librte_lpm/rte_lpm6.c
> index 149677eb1..438db0831 100644
> --- a/lib/librte_lpm/rte_lpm6.c
> +++ b/lib/librte_lpm/rte_lpm6.c
> @@ -21,6 +21,10 @@
>  #include <rte_errno.h>
>  #include <rte_rwlock.h>
>  #include <rte_spinlock.h>
> +#include <rte_hash.h>
> +#include <rte_hash_crc.h>
> +#include <rte_mempool.h>
> +#include <assert.h>

For correct compilation, you now need to specify the dependency on the hash
and mempool libraries in both make and meson build files. I believe
something like this should do the trick:

--- a/lib/Makefile
+++ b/lib/Makefile
@@ -47,7 +47,7 @@ DEPDIRS-librte_hash := librte_eal librte_ring
 DIRS-$(CONFIG_RTE_LIBRTE_EFD) += librte_efd
 DEPDIRS-librte_efd := librte_eal librte_ring librte_hash
 DIRS-$(CONFIG_RTE_LIBRTE_LPM) += librte_lpm
-DEPDIRS-librte_lpm := librte_eal
+DEPDIRS-librte_lpm := librte_eal librte_mempool librte_hash
 DIRS-$(CONFIG_RTE_LIBRTE_ACL) += librte_acl
 DEPDIRS-librte_acl := librte_eal
 DIRS-$(CONFIG_RTE_LIBRTE_MEMBER) += librte_member

--- a/lib/librte_lpm/meson.build
+++ b/lib/librte_lpm/meson.build
@@ -7,3 +7,4 @@ headers = files('rte_lpm.h', 'rte_lpm6.h')
 # since header files have different names, we can install all vector headers
 # without worrying about which architecture we actually need
 headers += files('rte_lpm_altivec.h', 'rte_lpm_neon.h', 'rte_lpm_sse.h')
+deps += ['mempool', 'hash']

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [dpdk-dev] [PATCH v2] librte_lpm: Improve performance of the delete and add functions
  2018-07-06 10:13 ` [dpdk-dev] [PATCH v2] librte_lpm: Improve performance of the delete and add functions Bruce Richardson
@ 2018-07-06 10:25   ` Bruce Richardson
  0 siblings, 0 replies; 12+ messages in thread
From: Bruce Richardson @ 2018-07-06 10:25 UTC (permalink / raw)
  To: Alex Kiselev; +Cc: dev

On Fri, Jul 06, 2018 at 11:13:53AM +0100, Bruce Richardson wrote:
> On Mon, Jul 02, 2018 at 07:42:11PM +0300, Alex Kiselev wrote:
> > There are two major problems with the library:
> > first, there is no need to rebuild the whole LPM tree
> > when a rule is deleted and second, due to the current
> > rules algorithm with complexity O(n) it's almost
> > impossible to deal with large rule sets (50k or so rules).
> > This patch addresses those two issues.
> > 
> > Signed-off-by: Alex Kiselev <alex@therouter.net>
> > ---
> >  lib/librte_lpm/rte_lpm6.c | 1073 ++++++++++++++++++++++++++++++++++-----------
> >  1 file changed, 816 insertions(+), 257 deletions(-)
> > 
> 
> I get a compiler error with gcc8 after this patch:
> 
> /home/bruce/dpdk.org/lib/librte_lpm/rte_lpm6.c: In function ‘rte_lpm6_add_v1705’:
> /home/bruce/dpdk.org/lib/librte_lpm/rte_lpm6.c:748:18: error: ‘tbl_next_num’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
>     lpm->tbl8_hdrs[tbl_ind].ref_cnt++;
>             ^
> 

On fixing this, clang errors show up thereafter. I suggest using
"test-meson-builds.sh" to sanity check compile on the patch.

Thanks,
/Bruce

ccache clang -Ilib/lib@@rte_lpm@sta -Ilib -I../lib -Ilib/librte_lpm -I../lib/librte_lpm -I. -I../ -Iconfig -I../config -Ilib/librte_eal/common -I../lib/librte_eal/common -Ilib/librte_eal/common/include -I../lib/librte_eal/common/include -Ilib/librte_eal/common/include/arch/x86 -I../lib/librte_eal/common/include/arch/x86 -I../lib/librte_eal/linuxapp/eal/include -Ilib/librte_eal/linuxapp/eal/../../../librte_compat -I../lib/librte_eal/linuxapp/eal/../../../librte_compat -Ilib/librte_eal -I../lib/librte_eal -Ilib/librte_compat -I../lib/librte_compat -Ilib/librte_mempool -I../lib/librte_mempool -Ilib/librte_ring -I../lib/librte_ring -Ilib/librte_hash -I../lib/librte_hash -Xclang -fcolor-diagnostics -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Werror -O3 -include rte_config.h -Wsign-compare -Wcast-qual -Wno-address-of-packed-member -fPIC -march=native  -MD -MQ 'lib/lib@@rte_lpm@sta/librte_lpm_rte_lpm6.c.o' -MF 'lib/lib@@rte_lpm@sta/librte_lpm_rte_lpm6.c.o.d' -o 'lib/lib@@rte_lpm@sta/librte_lpm_rte_lpm6.c.o' -c ../lib/librte_lpm/rte_lpm6.c
../lib/librte_lpm/rte_lpm6.c:233:58: error: cast from 'struct rte_lpm6_rule **' to 'const void **' must have all intermediate pointers const qualified to be safe [-Werror,-Wcast-qual]
        while (rte_hash_iterate(lpm->rules_tbl, (const void **) &rule_key,
                                                                ^
../lib/librte_lpm/rte_lpm6.c:247:58: error: cast from 'struct rte_lpm6_rule **' to 'const void **' must have all intermediate pointers const qualified to be safe [-Werror,-Wcast-qual]
        while (rte_hash_iterate(lpm->rules_tbl, (const void **) &rule_key,
                                                                ^

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [dpdk-dev] [PATCH v2] librte_lpm: Improve performance of the delete and add functions
       [not found] <c6068a65-bee2-4f34-944a-6cd46ac6a188@orsmsx104.amr.corp.intel.com>
  2018-07-06 10:13 ` [dpdk-dev] [PATCH v2] librte_lpm: Improve performance of the delete and add functions Bruce Richardson
  2018-07-06 10:23 ` Bruce Richardson
@ 2018-07-06 10:56 ` Bruce Richardson
  2018-07-06 12:00   ` Alex Kiselev
  2018-07-06 16:16 ` Bruce Richardson
  2018-07-09 11:24 ` Bruce Richardson
  4 siblings, 1 reply; 12+ messages in thread
From: Bruce Richardson @ 2018-07-06 10:56 UTC (permalink / raw)
  To: Alex Kiselev; +Cc: dev

On Mon, Jul 02, 2018 at 07:42:11PM +0300, Alex Kiselev wrote:
> There are two major problems with the library:
> first, there is no need to rebuild the whole LPM tree
> when a rule is deleted and second, due to the current
> rules algorithm with complexity O(n) it's almost
> impossible to deal with large rule sets (50k or so rules).
> This patch addresses those two issues.
> 
> Signed-off-by: Alex Kiselev <alex@therouter.net>
> ---
>  lib/librte_lpm/rte_lpm6.c | 1073 ++++++++++++++++++++++++++++++++++-----------
>  1 file changed, 816 insertions(+), 257 deletions(-)
> 
The lpm6_autotest is now giving me an error when I run it, which wasn't
there before, though interestingly the test is still passing overall, which
seems wrong:

RTE>>lpm6_autotest
# test 00
# test 01
LPM: LPM rules mempool allocation failed: Unknown error 17 (17)# test 02
# test 03
...

On the other hand, the performance numbers, especially for delete, look far
better:

Before:
	Average LPM Add: 531220 cycles
	Average LPM Lookup: 41.7 cycles (fails = 0.0%)
	BULK LPM Lookup: 33.8 cycles (fails = 0.0%)
	Average LPM Delete: 1.41825e+08 cycles

After:
	Average LPM Add: 487116 cycles
	Average LPM Lookup: 41.7 cycles (fails = 0.0%)
	BULK LPM Lookup: 33.3 cycles (fails = 0.0%)
	Average LPM Delete: 3.65125e+06 cycles

/Bruce

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [dpdk-dev] [PATCH v2] librte_lpm: Improve performance of the delete and add functions
  2018-07-06 10:56 ` Bruce Richardson
@ 2018-07-06 12:00   ` Alex Kiselev
  0 siblings, 0 replies; 12+ messages in thread
From: Alex Kiselev @ 2018-07-06 12:00 UTC (permalink / raw)
  To: Bruce Richardson; +Cc: dev

Hi Bruce.

It's the test #1 which is giving you the error message.
And I don't see anything wrong here.
The test is trying to create LMP with the name "LPM1" which is in use 
by the already created LPM, so it writes error message to the LOG: 

  LPM rules mempool allocation failed: File exists (17)

It's strange thought that you don't get the right message.
Instead "File exists" you get "Unknown error 17".
 

	/* rte_lpm6_create: lpm name == LPM1 */
	lpm1 = rte_lpm6_create("LPM1", SOCKET_ID_ANY, &config);
	TEST_LPM_ASSERT(lpm1 != NULL);

	/* rte_lpm6_create: lpm name == LPM2 */
	lpm2 = rte_lpm6_create("LPM2", SOCKET_ID_ANY, &config);
	TEST_LPM_ASSERT(lpm2 != NULL);

	/* rte_lpm6_create: lpm name == LPM2 */
	lpm3 = rte_lpm6_create("LPM1", SOCKET_ID_ANY, &config);
	TEST_LPM_ASSERT(lpm3 == NULL);


> On Mon, Jul 02, 2018 at 07:42:11PM +0300, Alex Kiselev wrote:
>> There are two major problems with the library:
>> first, there is no need to rebuild the whole LPM tree
>> when a rule is deleted and second, due to the current
>> rules algorithm with complexity O(n) it's almost
>> impossible to deal with large rule sets (50k or so rules).
>> This patch addresses those two issues.

>> Signed-off-by: Alex Kiselev <alex@therouter.net>
>> ---
>>  lib/librte_lpm/rte_lpm6.c | 1073 ++++++++++++++++++++++++++++++++++-----------
>>  1 file changed, 816 insertions(+), 257 deletions(-)

> The lpm6_autotest is now giving me an error when I run it, which wasn't
> there before, though interestingly the test is still passing overall, which
> seems wrong:

RTE>>>lpm6_autotest
> # test 00
> # test 01
> LPM: LPM rules mempool allocation failed: Unknown error 17 (17)# test 02
> # test 03
> ...

> On the other hand, the performance numbers, especially for delete, look far
> better:

> Before:
>         Average LPM Add: 531220 cycles
>         Average LPM Lookup: 41.7 cycles (fails = 0.0%)
>         BULK LPM Lookup: 33.8 cycles (fails = 0.0%)
>         Average LPM Delete: 1.41825e+08 cycles

> After:
>         Average LPM Add: 487116 cycles
>         Average LPM Lookup: 41.7 cycles (fails = 0.0%)
>         BULK LPM Lookup: 33.3 cycles (fails = 0.0%)
>         Average LPM Delete: 3.65125e+06 cycles

> /Bruce



-- 
Alex

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [dpdk-dev] [PATCH v2] librte_lpm: Improve performance of the delete and add functions
       [not found] <c6068a65-bee2-4f34-944a-6cd46ac6a188@orsmsx104.amr.corp.intel.com>
                   ` (2 preceding siblings ...)
  2018-07-06 10:56 ` Bruce Richardson
@ 2018-07-06 16:16 ` Bruce Richardson
  2018-07-06 16:59   ` Alex Kiselev
  2018-07-09 11:24 ` Bruce Richardson
  4 siblings, 1 reply; 12+ messages in thread
From: Bruce Richardson @ 2018-07-06 16:16 UTC (permalink / raw)
  To: Alex Kiselev; +Cc: dev

On Mon, Jul 02, 2018 at 07:42:11PM +0300, Alex Kiselev wrote:
> There are two major problems with the library:
> first, there is no need to rebuild the whole LPM tree
> when a rule is deleted and second, due to the current
> rules algorithm with complexity O(n) it's almost
> impossible to deal with large rule sets (50k or so rules).
> This patch addresses those two issues.
> 
> Signed-off-by: Alex Kiselev <alex@therouter.net>

Hi,

Some initial review comments inline below

/Bruce
> ---
>  lib/librte_lpm/rte_lpm6.c | 1073 ++++++++++++++++++++++++++++++++++-----------
>  1 file changed, 816 insertions(+), 257 deletions(-)
> 
> diff --git a/lib/librte_lpm/rte_lpm6.c b/lib/librte_lpm/rte_lpm6.c
> index 149677eb1..438db0831 100644
> --- a/lib/librte_lpm/rte_lpm6.c
> +++ b/lib/librte_lpm/rte_lpm6.c
> @@ -21,6 +21,10 @@
>  #include <rte_errno.h>
>  #include <rte_rwlock.h>
>  #include <rte_spinlock.h>
> +#include <rte_hash.h>
> +#include <rte_hash_crc.h>
> +#include <rte_mempool.h>
> +#include <assert.h>
>  
>  #include "rte_lpm6.h"
>  
> @@ -37,6 +41,9 @@
>  #define BYTE_SIZE                                 8
>  #define BYTES2_SIZE                              16
>  
> +#define RULE_HASH_TABLE_EXTRA_SPACE             256
> +#define TBL24_IND                        UINT32_MAX
> +
>  #define lpm6_tbl8_gindex next_hop
>  
>  /** Flags for setting an entry as valid/invalid. */
> @@ -70,6 +77,23 @@ struct rte_lpm6_rule {
>  	uint8_t depth; /**< Rule depth. */
>  };
>  
> +/** Rules tbl entry key. */
> +struct rte_lpm6_rule_key {
> +	uint8_t ip[RTE_LPM6_IPV6_ADDR_SIZE]; /**< Rule IP address. */
> +	uint8_t depth; /**< Rule depth. */
> +};
> +
> +/* Header of tbl8 */
> +struct rte_lpm_tbl8_hdr {
> +	uint32_t owner_tbl_ind; /**< owner table: TBL24_IND if owner is tbl24,
> +					* otherwise index of tbl8
> +					*/
> +	uint32_t owner_entry_ind; /**< index of the owner table entry where
> +					* pointer to the tbl8 is stored
> +					*/
> +	uint32_t ref_cnt; /**< table reference counter */
> +};
> +
>  /** LPM6 structure. */
>  struct rte_lpm6 {
>  	/* LPM metadata. */
> @@ -77,12 +101,18 @@ struct rte_lpm6 {
>  	uint32_t max_rules;              /**< Max number of rules. */
>  	uint32_t used_rules;             /**< Used rules so far. */
>  	uint32_t number_tbl8s;           /**< Number of tbl8s to allocate. */
> -	uint32_t next_tbl8;              /**< Next tbl8 to be used. */
>  
>  	/* LPM Tables. */
> -	struct rte_lpm6_rule *rules_tbl; /**< LPM rules. */
> +	struct rte_mempool *rules_pool; /**< LPM rules mempool. */
> +	struct rte_hash *rules_tbl; /**< LPM rules. */
>  	struct rte_lpm6_tbl_entry tbl24[RTE_LPM6_TBL24_NUM_ENTRIES]
>  			__rte_cache_aligned; /**< LPM tbl24 table. */
> +
> +	uint32_t *tbl8_pool; /**< pool of indexes of free tbl8s */
> +	uint32_t tbl8_pool_pos; /**< current position in the tbl8 pool */
> +
> +	struct rte_lpm_tbl8_hdr *tbl8_hdrs; /* array of tbl8 headers */
> +
>  	struct rte_lpm6_tbl_entry tbl8[0]
>  			__rte_cache_aligned; /**< LPM tbl8 table. */
>  };
> @@ -93,22 +123,130 @@ struct rte_lpm6 {
>   * and set the rest to 0.
>   */
>  static inline void
> -mask_ip(uint8_t *ip, uint8_t depth)
> +ip6_mask_addr(uint8_t *ip, uint8_t depth)
>  {
> -        int16_t part_depth, mask;
> -        int i;
> +	int16_t part_depth, mask;
> +	int i;
>  
> -		part_depth = depth;
> +	part_depth = depth;
>  
> -		for (i = 0; i < RTE_LPM6_IPV6_ADDR_SIZE; i++) {
> -			if (part_depth < BYTE_SIZE && part_depth >= 0) {
> -				mask = (uint16_t)(~(UINT8_MAX >> part_depth));
> -				ip[i] = (uint8_t)(ip[i] & mask);
> -			} else if (part_depth < 0) {
> -				ip[i] = 0;
> -			}
> -			part_depth -= BYTE_SIZE;
> -		}
> +	for (i = 0; i < RTE_LPM6_IPV6_ADDR_SIZE; i++) {
> +		if (part_depth < BYTE_SIZE && part_depth >= 0) {
> +			mask = (uint16_t)(~(UINT8_MAX >> part_depth));
> +			ip[i] = (uint8_t)(ip[i] & mask);
> +		} else if (part_depth < 0)
> +			ip[i] = 0;
> +
> +		part_depth -= BYTE_SIZE;
> +	}
> +}

This block is just a whitespace cleanup, as far as I can see. If there are
other little cleanups like that as part of this set, it would be nice to
have them as a separate initial patch, to make it easier to review the more
complicated changes.

> +
> +/* copy ipv6 address */
> +static inline void
> +ip6_copy_addr(uint8_t *dst, const uint8_t *src)
> +{
> +	rte_memcpy(dst, src, RTE_LPM6_IPV6_ADDR_SIZE);
> +}
> +
> +/*
> + * LPM6 rule hash function
> + */
> +static inline uint32_t
> +rule_hash_crc(const void *data, __rte_unused uint32_t data_len,
> +		  uint32_t init_val)
> +{
> +	return rte_hash_crc(data, sizeof(struct rte_lpm6_rule_key), init_val);
> +}

Why bother passing in the length and making the data a void pointer. Why
not just have the prototype:

rule_hash_crc(struct rte_lpm6_rule_key *data, uint32_t init_val)

> +
> +/*
> + * Init pool of free tbl8 indexes
> + */
> +static void
> +tbl8_pool_init(struct rte_lpm6 *lpm)
> +{
> +	/* put entire range of indexes to the tbl8 pool */
> +	uint32_t i;
> +	for (i = 0; i < lpm->number_tbl8s; i++)
> +		lpm->tbl8_pool[i] = i;
> +
> +	lpm->tbl8_pool_pos = 0;
> +}
> +
> +/*
> + * Get an index of a free tbl8 from the pool
> + */
> +static inline uint32_t
> +tbl8_get(struct rte_lpm6 *lpm, uint32_t *tbl8_ind)
> +{
> +	if (lpm->tbl8_pool_pos == lpm->number_tbl8s)
> +		/* no more free tbl8 */
> +		return -ENOSPC;
> +
> +	/* next index */
> +	*tbl8_ind = lpm->tbl8_pool[lpm->tbl8_pool_pos++];
> +	return 0;
> +}
> +
> +/*
> + * Put an index of a free tbl8 back to the pool
> + */
> +static inline uint32_t
> +tbl8_put(struct rte_lpm6 *lpm, uint32_t tbl8_ind)
> +{
> +	if (lpm->tbl8_pool_pos == 0)
> +		/* pool is full */
> +		return -ENOSPC;
> +
> +	lpm->tbl8_pool[--lpm->tbl8_pool_pos] = tbl8_ind;
> +	return 0;
> +}
> +
> +/*
> + * Returns number of tbl8s awailable in the pool

Typo: available

> + */
> +static inline uint32_t
> +tbl8_available(struct rte_lpm6 *lpm)
> +{
> +	return lpm->number_tbl8s - lpm->tbl8_pool_pos;
> +}
> +
> +/*
> + * Init a rule key.
> + *		note that ip must be already masked
> + */
> +static inline void
> +rule_key_init(struct rte_lpm6_rule_key *key, uint8_t *ip, uint8_t depth)
> +{
> +	ip6_copy_addr(key->ip, ip);
> +	key->depth = depth;
> +}
> +
> +/*
> + * Recreate the entire LPM tree by reinserting all rules
> + */
> +static void
> +recreate_lpm(struct rte_lpm6 *lpm)
> +{
> +	struct rte_lpm6_rule *rule;
> +	struct rte_lpm6_rule *rule_key;
> +	uint32_t iter = 0;
> +	while (rte_hash_iterate(lpm->rules_tbl, (const void **) &rule_key,
> +			(void **) &rule, &iter) >= 0)
> +		rte_lpm6_add(lpm, rule->ip, rule->depth, rule->next_hop);
> +}
> +
> +/*
> + *	Free all rules
> + */
> +static void
> +rules_free(struct rte_lpm6 *lpm)
> +{
> +	struct rte_lpm6_rule *rule;
> +	struct rte_lpm6_rule *rule_key;
> +	uint32_t iter = 0;
> +	while (rte_hash_iterate(lpm->rules_tbl, (const void **) &rule_key,
> +			(void **) &rule, &iter) >= 0)
> +		rte_mempool_put(lpm->rules_pool, rule);
>  }
>  
>  /*
> @@ -121,7 +259,7 @@ rte_lpm6_create(const char *name, int socket_id,
>  	char mem_name[RTE_LPM6_NAMESIZE];
>  	struct rte_lpm6 *lpm = NULL;
>  	struct rte_tailq_entry *te;
> -	uint64_t mem_size, rules_size;
> +	uint64_t mem_size;
>  	struct rte_lpm6_list *lpm_list;
>  
>  	lpm_list = RTE_TAILQ_CAST(rte_lpm6_tailq.head, rte_lpm6_list);
> @@ -136,12 +274,72 @@ rte_lpm6_create(const char *name, int socket_id,
>  		return NULL;
>  	}
>  
> +	struct rte_mempool *rules_mempool = NULL;
> +	struct rte_hash *rules_tbl = NULL;
> +	uint32_t *tbl8_pool = NULL;
> +	struct rte_lpm_tbl8_hdr *tbl8_hdrs = NULL;
> +
> +	/* allocate rules mempool */
> +	snprintf(mem_name, sizeof(mem_name), "LRM_%s", name);

LRM == "LPM Rules Mempool" I assume? [Not that it actually matters]

> +	rules_mempool = rte_mempool_create(mem_name,
> +			config->max_rules, sizeof(struct rte_lpm6_rule), 0, 0,
> +			NULL, NULL, NULL, NULL, socket_id,
> +			MEMPOOL_F_NO_CACHE_ALIGN);
> +	if (rules_mempool == NULL) {
> +		RTE_LOG(ERR, LPM, "LPM rules mempool allocation failed: %s (%d)",
> +				  rte_strerror(rte_errno), rte_errno);
> +		rte_errno = ENOMEM;
> +		goto fail_wo_unlock;
> +	}
> +
> +	/* create rules hash table */
> +	snprintf(mem_name, sizeof(mem_name), "LRH_%s", name);
> +
> +	struct rte_hash_parameters rule_hash_tbl_params = {
> +		.entries = config->max_rules + RULE_HASH_TABLE_EXTRA_SPACE,

Are 256 extra slots going to be enough here? Would it be safer to multiply
max_rules by e.g. 1.2 or similar?

> +		.key_len = sizeof(struct rte_lpm6_rule_key),
> +		.hash_func = rule_hash_crc,

Given that this is not for data plane use, it might be better to use jhash
as the hash function. It's slower, but it does give a better rule
distribution so allows more compact tables.

> +		.hash_func_init_val = 0,
> +		.name = mem_name,
> +		.reserved = 0,
> +		.socket_id = socket_id,
> +		.extra_flag = 0
> +	};
> +
> +	rules_tbl = rte_hash_create(&rule_hash_tbl_params);
> +	if (rules_tbl == NULL) {
> +		RTE_LOG(ERR, LPM, "LPM rules hash table allocation failed: %s (%d)",
> +				  rte_strerror(rte_errno), rte_errno);
> +		goto fail_wo_unlock;
> +	}
> +
> +	/* allocate tbl8 indexes pool */
> +	tbl8_pool = rte_malloc(NULL,
> +			sizeof(uint32_t) * config->number_tbl8s,
> +			RTE_CACHE_LINE_SIZE);
> +	if (tbl8_pool == NULL) {
> +		RTE_LOG(ERR, LPM, "LPM tbl8 pool allocation failed: %s (%d)",
> +				  rte_strerror(rte_errno), rte_errno);
> +		rte_errno = ENOMEM;
> +		goto fail_wo_unlock;
> +	}
> +
> +	/* allocate tbl8 headers */
> +	tbl8_hdrs = rte_malloc(NULL,
> +			sizeof(struct rte_lpm_tbl8_hdr) * config->number_tbl8s,
> +			RTE_CACHE_LINE_SIZE);
> +	if (tbl8_hdrs == NULL) {
> +		RTE_LOG(ERR, LPM, "LPM tbl8 headers allocation failed: %s (%d)",
> +				  rte_strerror(rte_errno), rte_errno);
> +		rte_errno = ENOMEM;
> +		goto fail_wo_unlock;
> +	}
> +
>  	snprintf(mem_name, sizeof(mem_name), "LPM_%s", name);
>  
>  	/* Determine the amount of memory to allocate. */
>  	mem_size = sizeof(*lpm) + (sizeof(lpm->tbl8[0]) *
>  			RTE_LPM6_TBL8_GROUP_NUM_ENTRIES * config->number_tbl8s);
> -	rules_size = sizeof(struct rte_lpm6_rule) * config->max_rules;
>  
>  	rte_rwlock_write_lock(RTE_EAL_TAILQ_RWLOCK);
>  
> @@ -154,7 +352,7 @@ rte_lpm6_create(const char *name, int socket_id,
>  	lpm = NULL;
>  	if (te != NULL) {
>  		rte_errno = EEXIST;
> -		goto exit;
> +		goto fail;
>  	}
>  
>  	/* allocate tailq entry */
> @@ -162,30 +360,18 @@ rte_lpm6_create(const char *name, int socket_id,
>  	if (te == NULL) {
>  		RTE_LOG(ERR, LPM, "Failed to allocate tailq entry!\n");
>  		rte_errno = ENOMEM;
> -		goto exit;
> +		goto fail;
>  	}
>  
>  	/* Allocate memory to store the LPM data structures. */
> -	lpm = rte_zmalloc_socket(mem_name, (size_t)mem_size,
> +	lpm = (struct rte_lpm6 *)rte_zmalloc_socket(mem_name, (size_t)mem_size,
>  			RTE_CACHE_LINE_SIZE, socket_id);
>  
>  	if (lpm == NULL) {
>  		RTE_LOG(ERR, LPM, "LPM memory allocation failed\n");
>  		rte_free(te);
>  		rte_errno = ENOMEM;
> -		goto exit;
> -	}
> -
> -	lpm->rules_tbl = rte_zmalloc_socket(NULL,
> -			(size_t)rules_size, RTE_CACHE_LINE_SIZE, socket_id);
> -
> -	if (lpm->rules_tbl == NULL) {
> -		RTE_LOG(ERR, LPM, "LPM rules_tbl allocation failed\n");
> -		rte_free(lpm);
> -		lpm = NULL;
> -		rte_free(te);
> -		rte_errno = ENOMEM;
> -		goto exit;
> +		goto fail;
>  	}
>  
>  	/* Save user arguments. */
> @@ -193,14 +379,37 @@ rte_lpm6_create(const char *name, int socket_id,
>  	lpm->number_tbl8s = config->number_tbl8s;
>  	snprintf(lpm->name, sizeof(lpm->name), "%s", name);
>  
> +	lpm->rules_tbl = rules_tbl;
> +	lpm->tbl8_pool = tbl8_pool;
> +	lpm->tbl8_hdrs = tbl8_hdrs;
> +	lpm->rules_pool = rules_mempool;
> +
> +	/* init the stack */
> +	tbl8_pool_init(lpm);
> +
>  	te->data = (void *) lpm;
>  
>  	TAILQ_INSERT_TAIL(lpm_list, te, next);
> +	rte_rwlock_write_unlock(RTE_EAL_TAILQ_RWLOCK);
> +	return lpm;
>  
> -exit:
> +fail:
>  	rte_rwlock_write_unlock(RTE_EAL_TAILQ_RWLOCK);
>  
> -	return lpm;
> +fail_wo_unlock:
> +	if (rules_mempool != NULL)
> +		rte_mempool_free(rules_mempool);
> +
> +	if (tbl8_hdrs != NULL)
> +		rte_free(tbl8_hdrs);
> +
> +	if (tbl8_pool != NULL)
> +		rte_free(tbl8_pool);
> +
> +	if (rules_tbl != NULL)
> +		rte_hash_free(rules_tbl);
> +

rte_free doesn't have an issue with taking NULL as parameter, so you can
omit the various NULL checks and just have the series of free calls.

> +	return NULL;
>  }
>  
>  /*
> @@ -259,50 +468,93 @@ rte_lpm6_free(struct rte_lpm6 *lpm)
>  
>  	rte_rwlock_write_unlock(RTE_EAL_TAILQ_RWLOCK);
>  
> -	rte_free(lpm->rules_tbl);
> +	rte_mempool_free(lpm->rules_pool);
> +	rte_free(lpm->tbl8_hdrs);
> +	rte_free(lpm->tbl8_pool);
> +	rte_hash_free(lpm->rules_tbl);
>  	rte_free(lpm);
>  	rte_free(te);
>  }
>  
> +/* Find a rule */
> +static inline struct rte_lpm6_rule*
> +rule_find_with_key(struct rte_lpm6 *lpm,
> +		  const struct rte_lpm6_rule_key *rule_key)
> +{
> +	/* look for a rule */
> +	struct rte_lpm6_rule	*rule;
> +	int ret = rte_hash_lookup_data(lpm->rules_tbl,
> +		(const void *) rule_key, (void **) &rule);
> +	return (ret >= 0) ? rule : NULL;
> +}
> +
> +/* Find a rule */
> +static struct rte_lpm6_rule*
> +rule_find(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth)
> +{
> +	/* init a rule key */
> +	struct rte_lpm6_rule_key rule_key;
> +	rule_key_init(&rule_key, ip, depth);
> +
> +	return rule_find_with_key(lpm, &rule_key);
> +}
> +
>  /*
>   * Checks if a rule already exists in the rules table and updates
>   * the nexthop if so. Otherwise it adds a new rule if enough space is available.
> + *
> + * Returns:
> + *    0 - next hop of existed rule is updated
> + *    1 - new rule successfuly added
> + *   <0 - error
>   */
> -static inline int32_t
> -rule_add(struct rte_lpm6 *lpm, uint8_t *ip, uint32_t next_hop, uint8_t depth)
> +static inline int
> +rule_add(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth, uint32_t next_hop)
>  {
> -	uint32_t rule_index;
> +	/* init a rule key */
> +	struct rte_lpm6_rule_key rule_key;
> +	rule_key_init(&rule_key, ip, depth);
>  
>  	/* Scan through rule list to see if rule already exists. */
> -	for (rule_index = 0; rule_index < lpm->used_rules; rule_index++) {
> -
> -		/* If rule already exists update its next_hop and return. */
> -		if ((memcmp (lpm->rules_tbl[rule_index].ip, ip,
> -				RTE_LPM6_IPV6_ADDR_SIZE) == 0) &&
> -				lpm->rules_tbl[rule_index].depth == depth) {
> -			lpm->rules_tbl[rule_index].next_hop = next_hop;
> +	struct rte_lpm6_rule *rule = rule_find_with_key(lpm, &rule_key);
>  
> -			return rule_index;
> -		}
> +	/* If rule already exists update its next_hop and return. */
> +	if (rule != NULL) {
> +		rule->next_hop = next_hop;
> +		return 0;
>  	}
>  
>  	/*
>  	 * If rule does not exist check if there is space to add a new rule to
>  	 * this rule group. If there is no space return error.
>  	 */
> -	if (lpm->used_rules == lpm->max_rules) {
> +	if (lpm->used_rules == lpm->max_rules)
>  		return -ENOSPC;
> -	}
>  
> -	/* If there is space for the new rule add it. */
> -	rte_memcpy(lpm->rules_tbl[rule_index].ip, ip, RTE_LPM6_IPV6_ADDR_SIZE);
> -	lpm->rules_tbl[rule_index].next_hop = next_hop;
> -	lpm->rules_tbl[rule_index].depth = depth;
> +	/*
> +	 * If there is space for the new rule add it.
> +	 */
> +
> +	/* get a new rule */
> +	int ret = rte_mempool_get(lpm->rules_pool, (void **) &rule);
> +	if (ret < 0)
> +		return ret;
> +
> +	/* init the rule */
> +	rule->depth = depth;
> +	ip6_copy_addr(rule->ip, ip);
> +	rule->next_hop = next_hop;
> +
> +	/* add the rule */
> +	ret = rte_hash_add_key_data(lpm->rules_tbl, &rule_key, rule);
> +	if (ret < 0) {
> +		rte_mempool_put(lpm->rules_pool, rule);
> +		return ret;
> +	}
>  
>  	/* Increment the used rules counter for this rule group. */
>  	lpm->used_rules++;
> -
> -	return rule_index;
> +	return 1;
>  }
>  
>  /*
> @@ -311,24 +563,24 @@ rule_add(struct rte_lpm6 *lpm, uint8_t *ip, uint32_t next_hop, uint8_t depth)
>   * in the IP address returns a match.
>   */
>  static void
> -expand_rule(struct rte_lpm6 *lpm, uint32_t tbl8_gindex, uint8_t depth,
> -		uint32_t next_hop)
> +expand_rule(struct rte_lpm6 *lpm, uint32_t tbl8_gindex, uint8_t old_depth,
> +		uint8_t new_depth, uint32_t next_hop, uint8_t valid)

Is this change to have separate old depths and new depths a bug fix for an
existing issue, or just a change needed due to the rework below?

>  {
>  	uint32_t tbl8_group_end, tbl8_gindex_next, j;
>  
>  	tbl8_group_end = tbl8_gindex + RTE_LPM6_TBL8_GROUP_NUM_ENTRIES;
>  
>  	struct rte_lpm6_tbl_entry new_tbl8_entry = {
> -		.valid = VALID,
> -		.valid_group = VALID,
> -		.depth = depth,
> +		.valid = valid,
> +		.valid_group = valid,
> +		.depth = new_depth,
>  		.next_hop = next_hop,
>  		.ext_entry = 0,
>  	};
>  
>  	for (j = tbl8_gindex; j < tbl8_group_end; j++) {
>  		if (!lpm->tbl8[j].valid || (lpm->tbl8[j].ext_entry == 0
> -				&& lpm->tbl8[j].depth <= depth)) {
> +				&& lpm->tbl8[j].depth <= old_depth)) {
>  
>  			lpm->tbl8[j] = new_tbl8_entry;
>  
> @@ -336,11 +588,101 @@ expand_rule(struct rte_lpm6 *lpm, uint32_t tbl8_gindex, uint8_t depth,
>  
>  			tbl8_gindex_next = lpm->tbl8[j].lpm6_tbl8_gindex
>  					* RTE_LPM6_TBL8_GROUP_NUM_ENTRIES;
> -			expand_rule(lpm, tbl8_gindex_next, depth, next_hop);
> +			expand_rule(lpm, tbl8_gindex_next, old_depth, new_depth,
> +					next_hop, valid);
>  		}
>  	}
>  }
>  
> +/*
> + * Init a tbl8 header
> + */
> +static inline void
> +init_tbl8_header(struct rte_lpm6 *lpm, uint32_t tbl_ind,
> +		uint32_t owner_tbl_ind, uint32_t owner_entry_ind)
> +{
> +	struct rte_lpm_tbl8_hdr *tbl_hdr = &lpm->tbl8_hdrs[tbl_ind];
> +	tbl_hdr->owner_tbl_ind = owner_tbl_ind;
> +	tbl_hdr->owner_entry_ind = owner_entry_ind;
> +	tbl_hdr->ref_cnt = 0;
> +}
> +
> +/*
> + * Calculate index to the table based on the number and position
> + * of the bytes being inspected in this step.
> + */
> +static uint32_t
> +get_bitshift(const uint8_t *ip, uint8_t first_byte, uint8_t bytes)
> +{
> +	uint32_t entry_ind, i;
> +	int8_t bitshift;
> +
> +	entry_ind = 0;
> +	for (i = first_byte; i < (uint32_t)(first_byte + bytes); i++) {
> +		bitshift = (int8_t)((bytes - i)*BYTE_SIZE);
> +
> +		if (bitshift < 0)
> +			bitshift = 0;
> +		entry_ind = entry_ind | ip[i-1] << bitshift;
> +	}
> +
> +	return entry_ind;
> +}
> +
> +/*
> + * Simulate adding a new route to the LPM counting number
> + * of new tables that will be needed
> + *
> + * It returns 0 on success, or 1 if
> + * the process needs to be continued by calling the function again.
> + */
> +static inline int
> +simulate_add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
> +		struct rte_lpm6_tbl_entry **next_tbl, const uint8_t *ip,
> +		uint8_t bytes, uint8_t first_byte, uint8_t depth,
> +		uint32_t *need_tbl_nb)
> +{
> +	uint32_t entry_ind;
> +	uint8_t bits_covered;
> +	uint32_t next_tbl_ind;
> +
> +	/*
> +	 * Calculate index to the table based on the number and position
> +	 * of the bytes being inspected in this step.
> +	 */
> +	entry_ind = get_bitshift(ip, first_byte, bytes);
> +
> +	/* Number of bits covered in this step */
> +	bits_covered = (uint8_t)((bytes+first_byte-1)*BYTE_SIZE);
> +
> +	if (depth <= bits_covered) {
> +		*need_tbl_nb = 0;
> +		return 0;
> +	}
> +
> +	if (tbl[entry_ind].valid == 0 || tbl[entry_ind].ext_entry == 0) {
> +		/* from this point on a new table is needed on each level
> +		 * that is not covered yet
> +		 */
> +		depth -= bits_covered;
> +		uint32_t cnt = depth >> 3; /* depth / 3 */

depth / 8, not / 3. Perhaps "/ BYTE_SIZE" might be best.

> +		if (depth & 7) /* 0b00000111 */
> +			/* if depth % 8 > 0 then one more table is needed
> +			 * for those last bits
> +			 */
> +			cnt++;
> +
> +		*need_tbl_nb = cnt;
> +		return 0;
> +	}
> +
> +	next_tbl_ind = tbl[entry_ind].lpm6_tbl8_gindex;
> +	*next_tbl = &(lpm->tbl8[next_tbl_ind *
> +		RTE_LPM6_TBL8_GROUP_NUM_ENTRIES]);
> +	*need_tbl_nb = 0;
> +	return 1;
> +}
> +
>  /*
>   * Partially adds a new route to the data structure (tbl24+tbl8s).
>   * It returns 0 on success, a negative number on failure, or 1 if
> @@ -348,25 +690,21 @@ expand_rule(struct rte_lpm6 *lpm, uint32_t tbl8_gindex, uint8_t depth,
>   */
>  static inline int
>  add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
> -		struct rte_lpm6_tbl_entry **tbl_next, uint8_t *ip, uint8_t bytes,
> -		uint8_t first_byte, uint8_t depth, uint32_t next_hop)
> +		uint32_t tbl_ind, struct rte_lpm6_tbl_entry **next_tbl,
> +		uint32_t *next_tbl_ind, uint8_t *ip, uint8_t bytes,
> +		uint8_t first_byte, uint8_t depth, uint32_t next_hop,
> +		uint8_t is_new_rule)
>  {
> -	uint32_t tbl_index, tbl_range, tbl8_group_start, tbl8_group_end, i;
> -	int32_t tbl8_gindex;
> -	int8_t bitshift;
> +	uint32_t entry_ind, tbl_range, tbl8_group_start, tbl8_group_end, i;
> +	uint32_t tbl8_gindex;
>  	uint8_t bits_covered;
> +	int ret;
>  
>  	/*
>  	 * Calculate index to the table based on the number and position
>  	 * of the bytes being inspected in this step.
>  	 */
> -	tbl_index = 0;
> -	for (i = first_byte; i < (uint32_t)(first_byte + bytes); i++) {
> -		bitshift = (int8_t)((bytes - i)*BYTE_SIZE);
> -
> -		if (bitshift < 0) bitshift = 0;
> -		tbl_index = tbl_index | ip[i-1] << bitshift;
> -	}
> +	entry_ind = get_bitshift(ip, first_byte, bytes);
>  
>  	/* Number of bits covered in this step */
>  	bits_covered = (uint8_t)((bytes+first_byte-1)*BYTE_SIZE);
> @@ -378,7 +716,7 @@ add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
>  	if (depth <= bits_covered) {
>  		tbl_range = 1 << (bits_covered - depth);
>  
> -		for (i = tbl_index; i < (tbl_index + tbl_range); i++) {
> +		for (i = entry_ind; i < (entry_ind + tbl_range); i++) {
>  			if (!tbl[i].valid || (tbl[i].ext_entry == 0 &&
>  					tbl[i].depth <= depth)) {
>  
> @@ -400,10 +738,15 @@ add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
>  				 */
>  				tbl8_gindex = tbl[i].lpm6_tbl8_gindex *
>  						RTE_LPM6_TBL8_GROUP_NUM_ENTRIES;
> -				expand_rule(lpm, tbl8_gindex, depth, next_hop);
> +				expand_rule(lpm, tbl8_gindex, depth, depth,
> +						next_hop, VALID);
>  			}
>  		}
>  
> +		/* update tbl8 rule reference counter */
> +		if (tbl_ind != TBL24_IND && is_new_rule)
> +			lpm->tbl8_hdrs[tbl_ind].ref_cnt++;
> +
>  		return 0;
>  	}
>  	/*
> @@ -412,12 +755,24 @@ add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
>  	 */
>  	else {
>  		/* If it's invalid a new tbl8 is needed */
> -		if (!tbl[tbl_index].valid) {
> -			if (lpm->next_tbl8 < lpm->number_tbl8s)
> -				tbl8_gindex = (lpm->next_tbl8)++;
> -			else
> +		if (!tbl[entry_ind].valid) {
> +			/* get a new table */
> +			ret = tbl8_get(lpm, &tbl8_gindex);
> +			if (ret != 0)
>  				return -ENOSPC;
>  
> +			/* invalidate all new tbl8 entries */
> +			tbl8_group_start = tbl8_gindex *
> +					RTE_LPM6_TBL8_GROUP_NUM_ENTRIES;
> +			memset(&lpm->tbl8[tbl8_group_start], 0,
> +					  RTE_LPM6_TBL8_GROUP_NUM_ENTRIES);
> +
> +			/* init the new table's header:
> +			 *   save the reference to the owner table
> +			 */
> +			init_tbl8_header(lpm, tbl8_gindex, tbl_ind, entry_ind);
> +
> +			/* reference to a new tbl8 */
>  			struct rte_lpm6_tbl_entry new_tbl_entry = {
>  				.lpm6_tbl8_gindex = tbl8_gindex,
>  				.depth = 0,
> @@ -426,17 +781,20 @@ add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
>  				.ext_entry = 1,
>  			};
>  
> -			tbl[tbl_index] = new_tbl_entry;
> +			tbl[entry_ind] = new_tbl_entry;
> +
> +			/* update the current table's reference counter */
> +			if (tbl_ind != TBL24_IND)
> +				lpm->tbl8_hdrs[tbl_ind].ref_cnt++;
>  		}
>  		/*
> -		 * If it's valid but not extended the rule that was stored *
> +		 * If it's valid but not extended the rule that was stored
>  		 * here needs to be moved to the next table.
>  		 */
> -		else if (tbl[tbl_index].ext_entry == 0) {
> -			/* Search for free tbl8 group. */
> -			if (lpm->next_tbl8 < lpm->number_tbl8s)
> -				tbl8_gindex = (lpm->next_tbl8)++;
> -			else
> +		else if (tbl[entry_ind].ext_entry == 0) {
> +			/* get a new tbl8 index */
> +			ret = tbl8_get(lpm, &tbl8_gindex);
> +			if (ret != 0)
>  				return -ENOSPC;
>  
>  			tbl8_group_start = tbl8_gindex *
> @@ -444,13 +802,22 @@ add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
>  			tbl8_group_end = tbl8_group_start +
>  					RTE_LPM6_TBL8_GROUP_NUM_ENTRIES;
>  
> +			struct rte_lpm6_tbl_entry tbl_entry = {
> +				.next_hop = tbl[entry_ind].next_hop,
> +				.depth = tbl[entry_ind].depth,
> +				.valid = VALID,
> +				.valid_group = VALID,
> +				.ext_entry = 0
> +			};
> +
>  			/* Populate new tbl8 with tbl value. */
> -			for (i = tbl8_group_start; i < tbl8_group_end; i++) {
> -				lpm->tbl8[i].valid = VALID;
> -				lpm->tbl8[i].depth = tbl[tbl_index].depth;
> -				lpm->tbl8[i].next_hop = tbl[tbl_index].next_hop;
> -				lpm->tbl8[i].ext_entry = 0;
> -			}
> +			for (i = tbl8_group_start; i < tbl8_group_end; i++)
> +				lpm->tbl8[i] = tbl_entry;
> +
> +			/* init the new table's header:
> +			 *   save the reference to the owner table
> +			 */
> +			init_tbl8_header(lpm, tbl8_gindex, tbl_ind, entry_ind);
>  
>  			/*
>  			 * Update tbl entry to point to new tbl8 entry. Note: The
> @@ -465,11 +832,16 @@ add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
>  				.ext_entry = 1,
>  			};
>  
> -			tbl[tbl_index] = new_tbl_entry;
> +			tbl[entry_ind] = new_tbl_entry;
> +
> +			/* update the current table's reference counter */
> +			if (tbl_ind != TBL24_IND)
> +				lpm->tbl8_hdrs[tbl_ind].ref_cnt++;
>  		}
>  
> -		*tbl_next = &(lpm->tbl8[tbl[tbl_index].lpm6_tbl8_gindex *
> -				RTE_LPM6_TBL8_GROUP_NUM_ENTRIES]);
> +		*next_tbl_ind = tbl[entry_ind].lpm6_tbl8_gindex;
> +		*next_tbl = &(lpm->tbl8[*next_tbl_ind *
> +				  RTE_LPM6_TBL8_GROUP_NUM_ENTRIES]);
>  	}
>  
>  	return 1;
> @@ -486,13 +858,55 @@ rte_lpm6_add_v20(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth,
>  }
>  VERSION_SYMBOL(rte_lpm6_add, _v20, 2.0);
>  
> +
> +/*
> + * Simulate adding a route to LPM
> + *
> + *	Returns:
> + *		0 if success
> + *    -ENOSPC not enought tbl8 left
> + */
> +static int
> +simulate_add(struct rte_lpm6 *lpm, const uint8_t *masked_ip, uint8_t depth)
> +{
> +	struct rte_lpm6_tbl_entry *tbl;
> +	struct rte_lpm6_tbl_entry *tbl_next = NULL;
> +	int ret, i;
> +
> +	/* number of new tables needed for a step */
> +	uint32_t need_tbl_nb;
> +	/* total number of new tables needed */
> +	uint32_t total_need_tbl_nb;
> +
> +	/* Inspect the first three bytes through tbl24 on the first step. */
> +	ret = simulate_add_step(lpm, lpm->tbl24, &tbl_next, masked_ip,
> +			ADD_FIRST_BYTE, 1, depth, &need_tbl_nb);
> +	total_need_tbl_nb = need_tbl_nb;
> +	/*
> +	 * Inspect one by one the rest of the bytes until
> +	 * the process is completed.
> +	 */
> +	for (i = ADD_FIRST_BYTE; i < RTE_LPM6_IPV6_ADDR_SIZE && ret == 1; i++) {
> +		tbl = tbl_next;
> +		ret = simulate_add_step(lpm, tbl, &tbl_next, masked_ip, 1,
> +				(uint8_t)(i+1), depth, &need_tbl_nb);
> +		total_need_tbl_nb += need_tbl_nb;
> +	}
> +
> +	if (tbl8_available(lpm) < total_need_tbl_nb)
> +		/* not enought tbl8 to add a rule */
> +		return -ENOSPC;
> +
> +	return 0;
> +}
> +
>  int
>  rte_lpm6_add_v1705(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth,
>  		uint32_t next_hop)
>  {
>  	struct rte_lpm6_tbl_entry *tbl;
>  	struct rte_lpm6_tbl_entry *tbl_next = NULL;
> -	int32_t rule_index;
> +	uint32_t tbl_next_num;
>  	int status;
>  	uint8_t masked_ip[RTE_LPM6_IPV6_ADDR_SIZE];
>  	int i;
> @@ -502,26 +916,26 @@ rte_lpm6_add_v1705(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth,
>  		return -EINVAL;
>  
>  	/* Copy the IP and mask it to avoid modifying user's input data. */
> -	memcpy(masked_ip, ip, RTE_LPM6_IPV6_ADDR_SIZE);
> -	mask_ip(masked_ip, depth);
> +	ip6_copy_addr(masked_ip, ip);
> +	ip6_mask_addr(masked_ip, depth);
>  
>  	/* Add the rule to the rule table. */
> -	rule_index = rule_add(lpm, masked_ip, next_hop, depth);
> -
> +	int is_new_rule = rule_add(lpm, masked_ip, depth, next_hop);
>  	/* If there is no space available for new rule return error. */
> -	if (rule_index < 0) {
> -		return rule_index;
> -	}
> +	if (is_new_rule < 0)
> +		return is_new_rule;
> +
> +	/* Simulate adding a new route */
> +	int ret = simulate_add(lpm, masked_ip, depth);
> +	if (ret < 0)
> +		return ret;

Do we need any rollback here for the rule that was just added?

>  
>  	/* Inspect the first three bytes through tbl24 on the first step. */
>  	tbl = lpm->tbl24;
> -	status = add_step (lpm, tbl, &tbl_next, masked_ip, ADD_FIRST_BYTE, 1,
> -			depth, next_hop);
> -	if (status < 0) {
> -		rte_lpm6_delete(lpm, masked_ip, depth);
> -
> -		return status;
> -	}
> +	status = add_step(lpm, tbl, TBL24_IND, &tbl_next, &tbl_next_num,
> +			masked_ip, ADD_FIRST_BYTE, 1, depth, next_hop,
> +			is_new_rule);
> +	assert(status >= 0);
>  
>  	/*
>  	 * Inspect one by one the rest of the bytes until
> @@ -529,13 +943,10 @@ rte_lpm6_add_v1705(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth,
>  	 */
>  	for (i = ADD_FIRST_BYTE; i < RTE_LPM6_IPV6_ADDR_SIZE && status == 1; i++) {
>  		tbl = tbl_next;
> -		status = add_step (lpm, tbl, &tbl_next, masked_ip, 1, (uint8_t)(i+1),
> -				depth, next_hop);
> -		if (status < 0) {
> -			rte_lpm6_delete(lpm, masked_ip, depth);
> -
> -			return status;
> -		}
> +		status = add_step(lpm, tbl, tbl_next_num, &tbl_next,
> +				&tbl_next_num, masked_ip, 1, (uint8_t)(i+1),
> +				depth, next_hop, is_new_rule);
> +		assert(status >= 0);
>  	}
>  
>  	return status;
> @@ -610,9 +1021,8 @@ rte_lpm6_lookup_v1705(const struct rte_lpm6 *lpm, uint8_t *ip,
>  	uint32_t tbl24_index;
>  
>  	/* DEBUG: Check user input arguments. */
> -	if ((lpm == NULL) || (ip == NULL) || (next_hop == NULL)) {
> +	if ((lpm == NULL) || (ip == NULL) || (next_hop == NULL))
>  		return -EINVAL;
> -	}
>  
>  	first_byte = LOOKUP_FIRST_BYTE;
>  	tbl24_index = (ip[0] << BYTES2_SIZE) | (ip[1] << BYTE_SIZE) | ip[2];
> @@ -648,9 +1058,8 @@ rte_lpm6_lookup_bulk_func_v20(const struct rte_lpm6 *lpm,
>  	int status;
>  
>  	/* DEBUG: Check user input arguments. */
> -	if ((lpm == NULL) || (ips == NULL) || (next_hops == NULL)) {
> +	if ((lpm == NULL) || (ips == NULL) || (next_hops == NULL))
>  		return -EINVAL;
> -	}
>  
>  	for (i = 0; i < n; i++) {
>  		first_byte = LOOKUP_FIRST_BYTE;
> @@ -724,30 +1133,6 @@ MAP_STATIC_SYMBOL(int rte_lpm6_lookup_bulk_func(const struct rte_lpm6 *lpm,
>  				int32_t *next_hops, unsigned int n),
>  		rte_lpm6_lookup_bulk_func_v1705);
>  
> -/*
> - * Finds a rule in rule table.
> - * NOTE: Valid range for depth parameter is 1 .. 128 inclusive.
> - */
> -static inline int32_t
> -rule_find(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth)
> -{
> -	uint32_t rule_index;
> -
> -	/* Scan used rules at given depth to find rule. */
> -	for (rule_index = 0; rule_index < lpm->used_rules; rule_index++) {
> -		/* If rule is found return the rule index. */
> -		if ((memcmp (lpm->rules_tbl[rule_index].ip, ip,
> -				RTE_LPM6_IPV6_ADDR_SIZE) == 0) &&
> -				lpm->rules_tbl[rule_index].depth == depth) {
> -
> -			return rule_index;
> -		}
> -	}
> -
> -	/* If rule is not found return -ENOENT. */
> -	return -ENOENT;
> -}
> -
>  /*
>   * Look for a rule in the high-level rules table
>   */
> @@ -775,23 +1160,20 @@ int
>  rte_lpm6_is_rule_present_v1705(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth,
>  		uint32_t *next_hop)
>  {
> -	uint8_t ip_masked[RTE_LPM6_IPV6_ADDR_SIZE];
> -	int32_t rule_index;
> -
>  	/* Check user arguments. */
>  	if ((lpm == NULL) || next_hop == NULL || ip == NULL ||
>  			(depth < 1) || (depth > RTE_LPM6_MAX_DEPTH))
>  		return -EINVAL;
>  
>  	/* Copy the IP and mask it to avoid modifying user's input data. */
> -	memcpy(ip_masked, ip, RTE_LPM6_IPV6_ADDR_SIZE);
> -	mask_ip(ip_masked, depth);
> +	uint8_t masked_ip[RTE_LPM6_IPV6_ADDR_SIZE];

The line above doesn't strictly need to be moved. It's still recommended to
have variables at the top of the block.

> +	ip6_copy_addr(masked_ip, ip);
> +	ip6_mask_addr(masked_ip, depth);
>  
> -	/* Look for the rule using rule_find. */
> -	rule_index = rule_find(lpm, ip_masked, depth);
> +	struct rte_lpm6_rule *rule = rule_find(lpm, masked_ip, depth);
>  

Can mark this as const, which can help justify having it declared
mid-block. :-)

<rest snipped>

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [dpdk-dev] [PATCH v2] librte_lpm: Improve performance of the delete and add functions
  2018-07-06 16:16 ` Bruce Richardson
@ 2018-07-06 16:59   ` Alex Kiselev
  2018-07-09  9:07     ` Bruce Richardson
  0 siblings, 1 reply; 12+ messages in thread
From: Alex Kiselev @ 2018-07-06 16:59 UTC (permalink / raw)
  To: Bruce Richardson; +Cc: dev

Please see inline replies

> On Mon, Jul 02, 2018 at 07:42:11PM +0300, Alex Kiselev wrote:
>> There are two major problems with the library:
>> first, there is no need to rebuild the whole LPM tree
>> when a rule is deleted and second, due to the current
>> rules algorithm with complexity O(n) it's almost
>> impossible to deal with large rule sets (50k or so rules).
>> This patch addresses those two issues.

>> Signed-off-by: Alex Kiselev <alex@therouter.net>

> Hi,

> Some initial review comments inline below

> /Bruce
>> ---
>>  lib/librte_lpm/rte_lpm6.c | 1073 ++++++++++++++++++++++++++++++++++-----------
>>  1 file changed, 816 insertions(+), 257 deletions(-)

>> diff --git a/lib/librte_lpm/rte_lpm6.c b/lib/librte_lpm/rte_lpm6.c
>> index 149677eb1..438db0831 100644
>> --- a/lib/librte_lpm/rte_lpm6.c
>> +++ b/lib/librte_lpm/rte_lpm6.c
>> @@ -21,6 +21,10 @@
>>  #include <rte_errno.h>
>>  #include <rte_rwlock.h>
>>  #include <rte_spinlock.h>
>> +#include <rte_hash.h>
>> +#include <rte_hash_crc.h>
>> +#include <rte_mempool.h>
>> +#include <assert.h>
>>  
>>  #include "rte_lpm6.h"
>>  
>> @@ -37,6 +41,9 @@
>>  #define BYTE_SIZE                                 8
>>  #define BYTES2_SIZE                              16
>>  
>> +#define RULE_HASH_TABLE_EXTRA_SPACE             256
>> +#define TBL24_IND                        UINT32_MAX
>> +
>>  #define lpm6_tbl8_gindex next_hop
>>  
>>  /** Flags for setting an entry as valid/invalid. */
>> @@ -70,6 +77,23 @@ struct rte_lpm6_rule {
>>       uint8_t depth; /**< Rule depth. */
>>  };
>>  
>> +/** Rules tbl entry key. */
>> +struct rte_lpm6_rule_key {
>> +     uint8_t ip[RTE_LPM6_IPV6_ADDR_SIZE]; /**< Rule IP address. */
>> +     uint8_t depth; /**< Rule depth. */
>> +};
>> +
>> +/* Header of tbl8 */
>> +struct rte_lpm_tbl8_hdr {
>> +     uint32_t owner_tbl_ind; /**< owner table: TBL24_IND if owner is tbl24,
>> +                                     * otherwise index of tbl8
>> +                                     */
>> +     uint32_t owner_entry_ind; /**< index of the owner table entry where
>> +                                     * pointer to the tbl8 is stored
>> +                                     */
>> +     uint32_t ref_cnt; /**< table reference counter */
>> +};
>> +
>>  /** LPM6 structure. */
>>  struct rte_lpm6 {
>>       /* LPM metadata. */
>> @@ -77,12 +101,18 @@ struct rte_lpm6 {
>>       uint32_t max_rules;              /**< Max number of rules. */
>>       uint32_t used_rules;             /**< Used rules so far. */
>>       uint32_t number_tbl8s;           /**< Number of tbl8s to allocate. */
>> -     uint32_t next_tbl8;              /**< Next tbl8 to be used. */
>>  
>>       /* LPM Tables. */
>> -     struct rte_lpm6_rule *rules_tbl; /**< LPM rules. */
>> +     struct rte_mempool *rules_pool; /**< LPM rules mempool. */
>> +     struct rte_hash *rules_tbl; /**< LPM rules. */
>>       struct rte_lpm6_tbl_entry tbl24[RTE_LPM6_TBL24_NUM_ENTRIES]
>>                       __rte_cache_aligned; /**< LPM tbl24 table. */
>> +
>> +     uint32_t *tbl8_pool; /**< pool of indexes of free tbl8s */
>> +     uint32_t tbl8_pool_pos; /**< current position in the tbl8 pool */
>> +
>> +     struct rte_lpm_tbl8_hdr *tbl8_hdrs; /* array of tbl8 headers */
>> +
>>       struct rte_lpm6_tbl_entry tbl8[0]
>>                       __rte_cache_aligned; /**< LPM tbl8 table. */
>>  };
>> @@ -93,22 +123,130 @@ struct rte_lpm6 {
>>   * and set the rest to 0.
>>   */
>>  static inline void
>> -mask_ip(uint8_t *ip, uint8_t depth)
>> +ip6_mask_addr(uint8_t *ip, uint8_t depth)
>>  {
>> -        int16_t part_depth, mask;
>> -        int i;
>> +     int16_t part_depth, mask;
>> +     int i;
>>  
>> -             part_depth = depth;
>> +     part_depth = depth;
>>  
>> -             for (i = 0; i < RTE_LPM6_IPV6_ADDR_SIZE; i++) {
>> -                     if (part_depth < BYTE_SIZE && part_depth >= 0) {
>> -                             mask = (uint16_t)(~(UINT8_MAX >> part_depth));
>> -                             ip[i] = (uint8_t)(ip[i] & mask);
>> -                     } else if (part_depth < 0) {
>> -                             ip[i] = 0;
>> -                     }
>> -                     part_depth -= BYTE_SIZE;
>> -             }
>> +     for (i = 0; i < RTE_LPM6_IPV6_ADDR_SIZE; i++) {
>> +             if (part_depth < BYTE_SIZE && part_depth >= 0) {
>> +                     mask = (uint16_t)(~(UINT8_MAX >> part_depth));
>> +                     ip[i] = (uint8_t)(ip[i] & mask);
>> +             } else if (part_depth < 0)
>> +                     ip[i] = 0;
>> +
>> +             part_depth -= BYTE_SIZE;
>> +     }
>> +}

> This block is just a whitespace cleanup, as far as I can see. If there are
> other little cleanups like that as part of this set, it would be nice to
> have them as a separate initial patch, to make it easier to review the more
> complicated changes.
If I am not mistaken there was only one place that needed cleanup.


>> +
>> +/* copy ipv6 address */
>> +static inline void
>> +ip6_copy_addr(uint8_t *dst, const uint8_t *src)
>> +{
>> +     rte_memcpy(dst, src, RTE_LPM6_IPV6_ADDR_SIZE);
>> +}
>> +
>> +/*
>> + * LPM6 rule hash function
>> + */
>> +static inline uint32_t
>> +rule_hash_crc(const void *data, __rte_unused uint32_t data_len,
>> +               uint32_t init_val)
>> +{
>> +     return rte_hash_crc(data, sizeof(struct rte_lpm6_rule_key), init_val);
>> +}

> Why bother passing in the length and making the data a void pointer.
 
I beleive it should be compatible with the rte_hash_function prototype.

> Why
> not just have the prototype:
> rule_hash_crc(struct rte_lpm6_rule_key *data, uint32_t init_val)


>> +
>> +/*
>> + * Init pool of free tbl8 indexes
>> + */
>> +static void
>> +tbl8_pool_init(struct rte_lpm6 *lpm)
>> +{
>> +     /* put entire range of indexes to the tbl8 pool */
>> +     uint32_t i;
>> +     for (i = 0; i < lpm->number_tbl8s; i++)
>> +             lpm->tbl8_pool[i] = i;
>> +
>> +     lpm->tbl8_pool_pos = 0;
>> +}
>> +
>> +/*
>> + * Get an index of a free tbl8 from the pool
>> + */
>> +static inline uint32_t
>> +tbl8_get(struct rte_lpm6 *lpm, uint32_t *tbl8_ind)
>> +{
>> +     if (lpm->tbl8_pool_pos == lpm->number_tbl8s)
>> +             /* no more free tbl8 */
>> +             return -ENOSPC;
>> +
>> +     /* next index */
>> +     *tbl8_ind = lpm->tbl8_pool[lpm->tbl8_pool_pos++];
>> +     return 0;
>> +}
>> +
>> +/*
>> + * Put an index of a free tbl8 back to the pool
>> + */
>> +static inline uint32_t
>> +tbl8_put(struct rte_lpm6 *lpm, uint32_t tbl8_ind)
>> +{
>> +     if (lpm->tbl8_pool_pos == 0)
>> +             /* pool is full */
>> +             return -ENOSPC;
>> +
>> +     lpm->tbl8_pool[--lpm->tbl8_pool_pos] = tbl8_ind;
>> +     return 0;
>> +}
>> +
>> +/*
>> + * Returns number of tbl8s awailable in the pool

> Typo: available
ok, I'll fix it.

>> + */
>> +static inline uint32_t
>> +tbl8_available(struct rte_lpm6 *lpm)
>> +{
>> +     return lpm->number_tbl8s - lpm->tbl8_pool_pos;
>> +}
>> +
>> +/*
>> + * Init a rule key.
>> + *           note that ip must be already masked
>> + */
>> +static inline void
>> +rule_key_init(struct rte_lpm6_rule_key *key, uint8_t *ip, uint8_t depth)
>> +{
>> +     ip6_copy_addr(key->ip, ip);
>> +     key->depth = depth;
>> +}
>> +
>> +/*
>> + * Recreate the entire LPM tree by reinserting all rules
>> + */
>> +static void
>> +recreate_lpm(struct rte_lpm6 *lpm)
>> +{
>> +     struct rte_lpm6_rule *rule;
>> +     struct rte_lpm6_rule *rule_key;
>> +     uint32_t iter = 0;
>> +     while (rte_hash_iterate(lpm->rules_tbl, (const void **) &rule_key,
>> +                     (void **) &rule, &iter) >= 0)
>> +             rte_lpm6_add(lpm, rule->ip, rule->depth, rule->next_hop);
>> +}
>> +
>> +/*
>> + *   Free all rules
>> + */
>> +static void
>> +rules_free(struct rte_lpm6 *lpm)
>> +{
>> +     struct rte_lpm6_rule *rule;
>> +     struct rte_lpm6_rule *rule_key;
>> +     uint32_t iter = 0;
>> +     while (rte_hash_iterate(lpm->rules_tbl, (const void **) &rule_key,
>> +                     (void **) &rule, &iter) >= 0)
>> +             rte_mempool_put(lpm->rules_pool, rule);
>>  }
>>  
>>  /*
>> @@ -121,7 +259,7 @@ rte_lpm6_create(const char *name, int socket_id,
>>       char mem_name[RTE_LPM6_NAMESIZE];
>>       struct rte_lpm6 *lpm = NULL;
>>       struct rte_tailq_entry *te;
>> -     uint64_t mem_size, rules_size;
>> +     uint64_t mem_size;
>>       struct rte_lpm6_list *lpm_list;
>>  
>>       lpm_list = RTE_TAILQ_CAST(rte_lpm6_tailq.head, rte_lpm6_list);
>> @@ -136,12 +274,72 @@ rte_lpm6_create(const char *name, int socket_id,
>>               return NULL;
>>       }
>>  
>> +     struct rte_mempool *rules_mempool = NULL;
>> +     struct rte_hash *rules_tbl = NULL;
>> +     uint32_t *tbl8_pool = NULL;
>> +     struct rte_lpm_tbl8_hdr *tbl8_hdrs = NULL;
>> +
>> +     /* allocate rules mempool */
>> +     snprintf(mem_name, sizeof(mem_name), "LRM_%s", name);

> LRM == "LPM Rules Mempool" I assume? [Not that it actually matters]
yes


>> +     rules_mempool = rte_mempool_create(mem_name,
>> +                     config->max_rules, sizeof(struct rte_lpm6_rule), 0, 0,
>> +                     NULL, NULL, NULL, NULL, socket_id,
>> +                     MEMPOOL_F_NO_CACHE_ALIGN);
>> +     if (rules_mempool == NULL) {
>> +             RTE_LOG(ERR, LPM, "LPM rules mempool allocation failed: %s (%d)",
>> +                               rte_strerror(rte_errno), rte_errno);
>> +             rte_errno = ENOMEM;
>> +             goto fail_wo_unlock;
>> +     }
>> +
>> +     /* create rules hash table */
>> +     snprintf(mem_name, sizeof(mem_name), "LRH_%s", name);
>> +
>> +     struct rte_hash_parameters rule_hash_tbl_params = {
>> +             .entries = config->max_rules + RULE_HASH_TABLE_EXTRA_SPACE,

> Are 256 extra slots going to be enough here? Would it be safer to multiply
> max_rules by e.g. 1.2 or similar?
yes. it would be safer.


>> +             .key_len = sizeof(struct rte_lpm6_rule_key),
>> +             .hash_func = rule_hash_crc,

> Given that this is not for data plane use, it might be better to use jhash
> as the hash function. It's slower, but it does give a better rule
> distribution so allows more compact tables.
yeah, good idea 


>> +             .hash_func_init_val = 0,
>> +             .name = mem_name,
>> +             .reserved = 0,
>> +             .socket_id = socket_id,
>> +             .extra_flag = 0
>> +     };
>> +
>> +     rules_tbl = rte_hash_create(&rule_hash_tbl_params);
>> +     if (rules_tbl == NULL) {
>> +             RTE_LOG(ERR, LPM, "LPM rules hash table allocation failed: %s (%d)",
>> +                               rte_strerror(rte_errno), rte_errno);
>> +             goto fail_wo_unlock;
>> +     }
>> +
>> +     /* allocate tbl8 indexes pool */
>> +     tbl8_pool = rte_malloc(NULL,
>> +                     sizeof(uint32_t) * config->number_tbl8s,
>> +                     RTE_CACHE_LINE_SIZE);
>> +     if (tbl8_pool == NULL) {
>> +             RTE_LOG(ERR, LPM, "LPM tbl8 pool allocation failed: %s (%d)",
>> +                               rte_strerror(rte_errno), rte_errno);
>> +             rte_errno = ENOMEM;
>> +             goto fail_wo_unlock;
>> +     }
>> +
>> +     /* allocate tbl8 headers */
>> +     tbl8_hdrs = rte_malloc(NULL,
>> +                     sizeof(struct rte_lpm_tbl8_hdr) * config->number_tbl8s,
>> +                     RTE_CACHE_LINE_SIZE);
>> +     if (tbl8_hdrs == NULL) {
>> +             RTE_LOG(ERR, LPM, "LPM tbl8 headers allocation failed: %s (%d)",
>> +                               rte_strerror(rte_errno), rte_errno);
>> +             rte_errno = ENOMEM;
>> +             goto fail_wo_unlock;
>> +     }
>> +
>>       snprintf(mem_name, sizeof(mem_name), "LPM_%s", name);
>>  
>>       /* Determine the amount of memory to allocate. */
>>       mem_size = sizeof(*lpm) + (sizeof(lpm->tbl8[0]) *
>>                       RTE_LPM6_TBL8_GROUP_NUM_ENTRIES * config->number_tbl8s);
>> -     rules_size = sizeof(struct rte_lpm6_rule) * config->max_rules;
>>  
>>       rte_rwlock_write_lock(RTE_EAL_TAILQ_RWLOCK);
>>  
>> @@ -154,7 +352,7 @@ rte_lpm6_create(const char *name, int socket_id,
>>       lpm = NULL;
>>       if (te != NULL) {
>>               rte_errno = EEXIST;
>> -             goto exit;
>> +             goto fail;
>>       }
>>  
>>       /* allocate tailq entry */
>> @@ -162,30 +360,18 @@ rte_lpm6_create(const char *name, int socket_id,
>>       if (te == NULL) {
>>               RTE_LOG(ERR, LPM, "Failed to allocate tailq entry!\n");
>>               rte_errno = ENOMEM;
>> -             goto exit;
>> +             goto fail;
>>       }
>>  
>>       /* Allocate memory to store the LPM data structures. */
>> -     lpm = rte_zmalloc_socket(mem_name, (size_t)mem_size,
>> +     lpm = (struct rte_lpm6 *)rte_zmalloc_socket(mem_name, (size_t)mem_size,
>>                       RTE_CACHE_LINE_SIZE, socket_id);
>>  
>>       if (lpm == NULL) {
>>               RTE_LOG(ERR, LPM, "LPM memory allocation failed\n");
>>               rte_free(te);
>>               rte_errno = ENOMEM;
>> -             goto exit;
>> -     }
>> -
>> -     lpm->rules_tbl = rte_zmalloc_socket(NULL,
>> -                     (size_t)rules_size, RTE_CACHE_LINE_SIZE, socket_id);
>> -
>> -     if (lpm->rules_tbl == NULL) {
>> -             RTE_LOG(ERR, LPM, "LPM rules_tbl allocation failed\n");
>> -             rte_free(lpm);
>> -             lpm = NULL;
>> -             rte_free(te);
>> -             rte_errno = ENOMEM;
>> -             goto exit;
>> +             goto fail;
>>       }
>>  
>>       /* Save user arguments. */
>> @@ -193,14 +379,37 @@ rte_lpm6_create(const char *name, int socket_id,
>>       lpm->number_tbl8s = config->number_tbl8s;
>>       snprintf(lpm->name, sizeof(lpm->name), "%s", name);
>>  
>> +     lpm->rules_tbl = rules_tbl;
>> +     lpm->tbl8_pool = tbl8_pool;
>> +     lpm->tbl8_hdrs = tbl8_hdrs;
>> +     lpm->rules_pool = rules_mempool;
>> +
>> +     /* init the stack */
>> +     tbl8_pool_init(lpm);
>> +
>>       te->data = (void *) lpm;
>>  
>>       TAILQ_INSERT_TAIL(lpm_list, te, next);
>> +     rte_rwlock_write_unlock(RTE_EAL_TAILQ_RWLOCK);
>> +     return lpm;
>>  
>> -exit:
>> +fail:
>>       rte_rwlock_write_unlock(RTE_EAL_TAILQ_RWLOCK);
>>  
>> -     return lpm;
>> +fail_wo_unlock:
>> +     if (rules_mempool != NULL)
>> +             rte_mempool_free(rules_mempool);
>> +
>> +     if (tbl8_hdrs != NULL)
>> +             rte_free(tbl8_hdrs);
>> +
>> +     if (tbl8_pool != NULL)
>> +             rte_free(tbl8_pool);
>> +
>> +     if (rules_tbl != NULL)
>> +             rte_hash_free(rules_tbl);
>> +

> rte_free doesn't have an issue with taking NULL as parameter, so you can
> omit the various NULL checks and just have the series of free calls.
got it

>> +     return NULL;
>>  }
>>  
>>  /*
>> @@ -259,50 +468,93 @@ rte_lpm6_free(struct rte_lpm6 *lpm)
>>  
>>       rte_rwlock_write_unlock(RTE_EAL_TAILQ_RWLOCK);
>>  
>> -     rte_free(lpm->rules_tbl);
>> +     rte_mempool_free(lpm->rules_pool);
>> +     rte_free(lpm->tbl8_hdrs);
>> +     rte_free(lpm->tbl8_pool);
>> +     rte_hash_free(lpm->rules_tbl);
>>       rte_free(lpm);
>>       rte_free(te);
>>  }
>>  
>> +/* Find a rule */
>> +static inline struct rte_lpm6_rule*
>> +rule_find_with_key(struct rte_lpm6 *lpm,
>> +               const struct rte_lpm6_rule_key *rule_key)
>> +{
>> +     /* look for a rule */
>> +     struct rte_lpm6_rule    *rule;
>> +     int ret = rte_hash_lookup_data(lpm->rules_tbl,
>> +             (const void *) rule_key, (void **) &rule);
>> +     return (ret >= 0) ? rule : NULL;
>> +}
>> +
>> +/* Find a rule */
>> +static struct rte_lpm6_rule*
>> +rule_find(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth)
>> +{
>> +     /* init a rule key */
>> +     struct rte_lpm6_rule_key rule_key;
>> +     rule_key_init(&rule_key, ip, depth);
>> +
>> +     return rule_find_with_key(lpm, &rule_key);
>> +}
>> +
>>  /*
>>   * Checks if a rule already exists in the rules table and updates
>>   * the nexthop if so. Otherwise it adds a new rule if enough space is available.
>> + *
>> + * Returns:
>> + *    0 - next hop of existed rule is updated
>> + *    1 - new rule successfuly added
>> + *   <0 - error
>>   */
>> -static inline int32_t
>> -rule_add(struct rte_lpm6 *lpm, uint8_t *ip, uint32_t next_hop, uint8_t depth)
>> +static inline int
>> +rule_add(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth, uint32_t next_hop)
>>  {
>> -     uint32_t rule_index;
>> +     /* init a rule key */
>> +     struct rte_lpm6_rule_key rule_key;
>> +     rule_key_init(&rule_key, ip, depth);
>>  
>>       /* Scan through rule list to see if rule already exists. */
>> -     for (rule_index = 0; rule_index < lpm->used_rules; rule_index++) {
>> -
>> -             /* If rule already exists update its next_hop and return. */
>> -             if ((memcmp (lpm->rules_tbl[rule_index].ip, ip,
>> -                             RTE_LPM6_IPV6_ADDR_SIZE) == 0) &&
>> -                             lpm->rules_tbl[rule_index].depth == depth) {
>> -                     lpm->rules_tbl[rule_index].next_hop = next_hop;
>> +     struct rte_lpm6_rule *rule = rule_find_with_key(lpm, &rule_key);
>>  
>> -                     return rule_index;
>> -             }
>> +     /* If rule already exists update its next_hop and return. */
>> +     if (rule != NULL) {
>> +             rule->next_hop = next_hop;
>> +             return 0;
>>       }
>>  
>>       /*
>>        * If rule does not exist check if there is space to add a new rule to
>>        * this rule group. If there is no space return error.
>>        */
>> -     if (lpm->used_rules == lpm->max_rules) {
>> +     if (lpm->used_rules == lpm->max_rules)
>>               return -ENOSPC;
>> -     }
>>  
>> -     /* If there is space for the new rule add it. */
>> -     rte_memcpy(lpm->rules_tbl[rule_index].ip, ip, RTE_LPM6_IPV6_ADDR_SIZE);
>> -     lpm->rules_tbl[rule_index].next_hop = next_hop;
>> -     lpm->rules_tbl[rule_index].depth = depth;
>> +     /*
>> +      * If there is space for the new rule add it.
>> +      */
>> +
>> +     /* get a new rule */
>> +     int ret = rte_mempool_get(lpm->rules_pool, (void **) &rule);
>> +     if (ret < 0)
>> +             return ret;
>> +
>> +     /* init the rule */
>> +     rule->depth = depth;
>> +     ip6_copy_addr(rule->ip, ip);
>> +     rule->next_hop = next_hop;
>> +
>> +     /* add the rule */
>> +     ret = rte_hash_add_key_data(lpm->rules_tbl, &rule_key, rule);
>> +     if (ret < 0) {
>> +             rte_mempool_put(lpm->rules_pool, rule);
>> +             return ret;
>> +     }
>>  
>>       /* Increment the used rules counter for this rule group. */
>>       lpm->used_rules++;
>> -
>> -     return rule_index;
>> +     return 1;
>>  }
>>  
>>  /*
>> @@ -311,24 +563,24 @@ rule_add(struct rte_lpm6 *lpm, uint8_t *ip, uint32_t next_hop, uint8_t depth)
>>   * in the IP address returns a match.
>>   */
>>  static void
>> -expand_rule(struct rte_lpm6 *lpm, uint32_t tbl8_gindex, uint8_t depth,
>> -             uint32_t next_hop)
>> +expand_rule(struct rte_lpm6 *lpm, uint32_t tbl8_gindex, uint8_t old_depth,
>> +             uint8_t new_depth, uint32_t next_hop, uint8_t valid)

> Is this change to have separate old depths and new depths a bug fix for an
> existing issue, or just a change needed due to the rework below?

It's not a bug fix. the function is now used not only in the add rule, 
but in delete rule operation too, which requires a little bit 
more complicated logic. 

>>  {
>>       uint32_t tbl8_group_end, tbl8_gindex_next, j;
>>  
>>       tbl8_group_end = tbl8_gindex + RTE_LPM6_TBL8_GROUP_NUM_ENTRIES;
>>  
>>       struct rte_lpm6_tbl_entry new_tbl8_entry = {
>> -             .valid = VALID,
>> -             .valid_group = VALID,
>> -             .depth = depth,
>> +             .valid = valid,
>> +             .valid_group = valid,
>> +             .depth = new_depth,
>>               .next_hop = next_hop,
>>               .ext_entry = 0,
>>       };
>>  
>>       for (j = tbl8_gindex; j < tbl8_group_end; j++) {
>>               if (!lpm->tbl8[j].valid || (lpm->tbl8[j].ext_entry == 0
>> -                             && lpm->tbl8[j].depth <= depth)) {
>> +                             && lpm->tbl8[j].depth <= old_depth)) {
>>  
>>                       lpm->tbl8[j] = new_tbl8_entry;
>>  
>> @@ -336,11 +588,101 @@ expand_rule(struct rte_lpm6 *lpm, uint32_t tbl8_gindex, uint8_t depth,
>>  
>>                       tbl8_gindex_next = lpm->tbl8[j].lpm6_tbl8_gindex
>>                                       * RTE_LPM6_TBL8_GROUP_NUM_ENTRIES;
>> -                     expand_rule(lpm, tbl8_gindex_next, depth, next_hop);
>> +                     expand_rule(lpm, tbl8_gindex_next, old_depth, new_depth,
>> +                                     next_hop, valid);
>>               }
>>       }
>>  }
>>  
>> +/*
>> + * Init a tbl8 header
>> + */
>> +static inline void
>> +init_tbl8_header(struct rte_lpm6 *lpm, uint32_t tbl_ind,
>> +             uint32_t owner_tbl_ind, uint32_t owner_entry_ind)
>> +{
>> +     struct rte_lpm_tbl8_hdr *tbl_hdr = &lpm->tbl8_hdrs[tbl_ind];
>> +     tbl_hdr->owner_tbl_ind = owner_tbl_ind;
>> +     tbl_hdr->owner_entry_ind = owner_entry_ind;
>> +     tbl_hdr->ref_cnt = 0;
>> +}
>> +
>> +/*
>> + * Calculate index to the table based on the number and position
>> + * of the bytes being inspected in this step.
>> + */
>> +static uint32_t
>> +get_bitshift(const uint8_t *ip, uint8_t first_byte, uint8_t bytes)
>> +{
>> +     uint32_t entry_ind, i;
>> +     int8_t bitshift;
>> +
>> +     entry_ind = 0;
>> +     for (i = first_byte; i < (uint32_t)(first_byte + bytes); i++) {
>> +             bitshift = (int8_t)((bytes - i)*BYTE_SIZE);
>> +
>> +             if (bitshift < 0)
>> +                     bitshift = 0;
>> +             entry_ind = entry_ind | ip[i-1] << bitshift;
>> +     }
>> +
>> +     return entry_ind;
>> +}
>> +
>> +/*
>> + * Simulate adding a new route to the LPM counting number
>> + * of new tables that will be needed
>> + *
>> + * It returns 0 on success, or 1 if
>> + * the process needs to be continued by calling the function again.
>> + */
>> +static inline int
>> +simulate_add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
>> +             struct rte_lpm6_tbl_entry **next_tbl, const uint8_t *ip,
>> +             uint8_t bytes, uint8_t first_byte, uint8_t depth,
>> +             uint32_t *need_tbl_nb)
>> +{
>> +     uint32_t entry_ind;
>> +     uint8_t bits_covered;
>> +     uint32_t next_tbl_ind;
>> +
>> +     /*
>> +      * Calculate index to the table based on the number and position
>> +      * of the bytes being inspected in this step.
>> +      */
>> +     entry_ind = get_bitshift(ip, first_byte, bytes);
>> +
>> +     /* Number of bits covered in this step */
>> +     bits_covered = (uint8_t)((bytes+first_byte-1)*BYTE_SIZE);
>> +
>> +     if (depth <= bits_covered) {
>> +             *need_tbl_nb = 0;
>> +             return 0;
>> +     }
>> +
>> +     if (tbl[entry_ind].valid == 0 || tbl[entry_ind].ext_entry == 0) {
>> +             /* from this point on a new table is needed on each level
>> +              * that is not covered yet
>> +              */
>> +             depth -= bits_covered;
>> +             uint32_t cnt = depth >> 3; /* depth / 3 */

> depth / 8, not / 3. Perhaps "/ BYTE_SIZE" might be best.

>> +             if (depth & 7) /* 0b00000111 */
>> +                     /* if depth % 8 > 0 then one more table is needed
>> +                      * for those last bits
>> +                      */
>> +                     cnt++;
>> +
>> +             *need_tbl_nb = cnt;
>> +             return 0;
>> +     }
>> +
>> +     next_tbl_ind = tbl[entry_ind].lpm6_tbl8_gindex;
>> +     *next_tbl = &(lpm->tbl8[next_tbl_ind *
>> +             RTE_LPM6_TBL8_GROUP_NUM_ENTRIES]);
>> +     *need_tbl_nb = 0;
>> +     return 1;
>> +}
>> +
>>  /*
>>   * Partially adds a new route to the data structure (tbl24+tbl8s).
>>   * It returns 0 on success, a negative number on failure, or 1 if
>> @@ -348,25 +690,21 @@ expand_rule(struct rte_lpm6 *lpm, uint32_t tbl8_gindex, uint8_t depth,
>>   */
>>  static inline int
>>  add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
>> -             struct rte_lpm6_tbl_entry **tbl_next, uint8_t *ip, uint8_t bytes,
>> -             uint8_t first_byte, uint8_t depth, uint32_t next_hop)
>> +             uint32_t tbl_ind, struct rte_lpm6_tbl_entry **next_tbl,
>> +             uint32_t *next_tbl_ind, uint8_t *ip, uint8_t bytes,
>> +             uint8_t first_byte, uint8_t depth, uint32_t next_hop,
>> +             uint8_t is_new_rule)
>>  {
>> -     uint32_t tbl_index, tbl_range, tbl8_group_start, tbl8_group_end, i;
>> -     int32_t tbl8_gindex;
>> -     int8_t bitshift;
>> +     uint32_t entry_ind, tbl_range, tbl8_group_start, tbl8_group_end, i;
>> +     uint32_t tbl8_gindex;
>>       uint8_t bits_covered;
>> +     int ret;
>>  
>>       /*
>>        * Calculate index to the table based on the number and position
>>        * of the bytes being inspected in this step.
>>        */
>> -     tbl_index = 0;
>> -     for (i = first_byte; i < (uint32_t)(first_byte + bytes); i++) {
>> -             bitshift = (int8_t)((bytes - i)*BYTE_SIZE);
>> -
>> -             if (bitshift < 0) bitshift = 0;
>> -             tbl_index = tbl_index | ip[i-1] << bitshift;
>> -     }
>> +     entry_ind = get_bitshift(ip, first_byte, bytes);
>>  
>>       /* Number of bits covered in this step */
>>       bits_covered = (uint8_t)((bytes+first_byte-1)*BYTE_SIZE);
>> @@ -378,7 +716,7 @@ add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
>>       if (depth <= bits_covered) {
>>               tbl_range = 1 << (bits_covered - depth);
>>  
>> -             for (i = tbl_index; i < (tbl_index + tbl_range); i++) {
>> +             for (i = entry_ind; i < (entry_ind + tbl_range); i++) {
>>                       if (!tbl[i].valid || (tbl[i].ext_entry == 0 &&
>>                                       tbl[i].depth <= depth)) {
>>  
>> @@ -400,10 +738,15 @@ add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
>>                                */
>>                               tbl8_gindex = tbl[i].lpm6_tbl8_gindex *
>>                                               RTE_LPM6_TBL8_GROUP_NUM_ENTRIES;
>> -                             expand_rule(lpm, tbl8_gindex, depth, next_hop);
>> +                             expand_rule(lpm, tbl8_gindex, depth, depth,
>> +                                             next_hop, VALID);
>>                       }
>>               }
>>  
>> +             /* update tbl8 rule reference counter */
>> +             if (tbl_ind != TBL24_IND && is_new_rule)
>> +                     lpm->tbl8_hdrs[tbl_ind].ref_cnt++;
>> +
>>               return 0;
>>       }
>>       /*
>> @@ -412,12 +755,24 @@ add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
>>        */
>>       else {
>>               /* If it's invalid a new tbl8 is needed */
>> -             if (!tbl[tbl_index].valid) {
>> -                     if (lpm->next_tbl8 < lpm->number_tbl8s)
>> -                             tbl8_gindex = (lpm->next_tbl8)++;
>> -                     else
>> +             if (!tbl[entry_ind].valid) {
>> +                     /* get a new table */
>> +                     ret = tbl8_get(lpm, &tbl8_gindex);
>> +                     if (ret != 0)
>>                               return -ENOSPC;
>>  
>> +                     /* invalidate all new tbl8 entries */
>> +                     tbl8_group_start = tbl8_gindex *
>> +                                     RTE_LPM6_TBL8_GROUP_NUM_ENTRIES;
>> +                     memset(&lpm->tbl8[tbl8_group_start], 0,
>> +                                       RTE_LPM6_TBL8_GROUP_NUM_ENTRIES);
>> +
>> +                     /* init the new table's header:
>> +                      *   save the reference to the owner table
>> +                      */
>> +                     init_tbl8_header(lpm, tbl8_gindex, tbl_ind, entry_ind);
>> +
>> +                     /* reference to a new tbl8 */
>>                       struct rte_lpm6_tbl_entry new_tbl_entry = {
>>                               .lpm6_tbl8_gindex = tbl8_gindex,
>>                               .depth = 0,
>> @@ -426,17 +781,20 @@ add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
>>                               .ext_entry = 1,
>>                       };
>>  
>> -                     tbl[tbl_index] = new_tbl_entry;
>> +                     tbl[entry_ind] = new_tbl_entry;
>> +
>> +                     /* update the current table's reference counter */
>> +                     if (tbl_ind != TBL24_IND)
>> +                             lpm->tbl8_hdrs[tbl_ind].ref_cnt++;
>>               }
>>               /*
>> -              * If it's valid but not extended the rule that was stored *
>> +              * If it's valid but not extended the rule that was stored
>>                * here needs to be moved to the next table.
>>                */
>> -             else if (tbl[tbl_index].ext_entry == 0) {
>> -                     /* Search for free tbl8 group. */
>> -                     if (lpm->next_tbl8 < lpm->number_tbl8s)
>> -                             tbl8_gindex = (lpm->next_tbl8)++;
>> -                     else
>> +             else if (tbl[entry_ind].ext_entry == 0) {
>> +                     /* get a new tbl8 index */
>> +                     ret = tbl8_get(lpm, &tbl8_gindex);
>> +                     if (ret != 0)
>>                               return -ENOSPC;
>>  
>>                       tbl8_group_start = tbl8_gindex *
>> @@ -444,13 +802,22 @@ add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
>>                       tbl8_group_end = tbl8_group_start +
>>                                       RTE_LPM6_TBL8_GROUP_NUM_ENTRIES;
>>  
>> +                     struct rte_lpm6_tbl_entry tbl_entry = {
>> +                             .next_hop = tbl[entry_ind].next_hop,
>> +                             .depth = tbl[entry_ind].depth,
>> +                             .valid = VALID,
>> +                             .valid_group = VALID,
>> +                             .ext_entry = 0
>> +                     };
>> +
>>                       /* Populate new tbl8 with tbl value. */
>> -                     for (i = tbl8_group_start; i < tbl8_group_end; i++) {
>> -                             lpm->tbl8[i].valid = VALID;
>> -                             lpm->tbl8[i].depth = tbl[tbl_index].depth;
>> -                             lpm->tbl8[i].next_hop = tbl[tbl_index].next_hop;
>> -                             lpm->tbl8[i].ext_entry = 0;
>> -                     }
>> +                     for (i = tbl8_group_start; i < tbl8_group_end; i++)
>> +                             lpm->tbl8[i] = tbl_entry;
>> +
>> +                     /* init the new table's header:
>> +                      *   save the reference to the owner table
>> +                      */
>> +                     init_tbl8_header(lpm, tbl8_gindex, tbl_ind, entry_ind);
>>  
>>                       /*
>>                        * Update tbl entry to point to new tbl8 entry. Note: The
>> @@ -465,11 +832,16 @@ add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
>>                               .ext_entry = 1,
>>                       };
>>  
>> -                     tbl[tbl_index] = new_tbl_entry;
>> +                     tbl[entry_ind] = new_tbl_entry;
>> +
>> +                     /* update the current table's reference counter */
>> +                     if (tbl_ind != TBL24_IND)
>> +                             lpm->tbl8_hdrs[tbl_ind].ref_cnt++;
>>               }
>>  
>> -             *tbl_next = &(lpm->tbl8[tbl[tbl_index].lpm6_tbl8_gindex *
>> -                             RTE_LPM6_TBL8_GROUP_NUM_ENTRIES]);
>> +             *next_tbl_ind = tbl[entry_ind].lpm6_tbl8_gindex;
>> +             *next_tbl = &(lpm->tbl8[*next_tbl_ind *
>> +                               RTE_LPM6_TBL8_GROUP_NUM_ENTRIES]);
>>       }
>>  
>>       return 1;
>> @@ -486,13 +858,55 @@ rte_lpm6_add_v20(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth,
>>  }
>>  VERSION_SYMBOL(rte_lpm6_add, _v20, 2.0);
>>  
>> +
>> +/*
>> + * Simulate adding a route to LPM
>> + *
>> + *   Returns:
>> + *           0 if success
>> + *    -ENOSPC not enought tbl8 left
>> + */
>> +static int
>> +simulate_add(struct rte_lpm6 *lpm, const uint8_t *masked_ip, uint8_t depth)
>> +{
>> +     struct rte_lpm6_tbl_entry *tbl;
>> +     struct rte_lpm6_tbl_entry *tbl_next = NULL;
>> +     int ret, i;
>> +
>> +     /* number of new tables needed for a step */
>> +     uint32_t need_tbl_nb;
>> +     /* total number of new tables needed */
>> +     uint32_t total_need_tbl_nb;
>> +
>> +     /* Inspect the first three bytes through tbl24 on the first step. */
>> +     ret = simulate_add_step(lpm, lpm->tbl24, &tbl_next, masked_ip,
>> +                     ADD_FIRST_BYTE, 1, depth, &need_tbl_nb);
>> +     total_need_tbl_nb = need_tbl_nb;
>> +     /*
>> +      * Inspect one by one the rest of the bytes until
>> +      * the process is completed.
>> +      */
>> +     for (i = ADD_FIRST_BYTE; i < RTE_LPM6_IPV6_ADDR_SIZE && ret == 1; i++) {
>> +             tbl = tbl_next;
>> +             ret = simulate_add_step(lpm, tbl, &tbl_next, masked_ip, 1,
>> +                             (uint8_t)(i+1), depth, &need_tbl_nb);
>> +             total_need_tbl_nb += need_tbl_nb;
>> +     }
>> +
>> +     if (tbl8_available(lpm) < total_need_tbl_nb)
>> +             /* not enought tbl8 to add a rule */
>> +             return -ENOSPC;
>> +
>> +     return 0;
>> +}
>> +
>>  int
>>  rte_lpm6_add_v1705(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth,
>>               uint32_t next_hop)
>>  {
>>       struct rte_lpm6_tbl_entry *tbl;
>>       struct rte_lpm6_tbl_entry *tbl_next = NULL;
>> -     int32_t rule_index;
>> +     uint32_t tbl_next_num;
>>       int status;
>>       uint8_t masked_ip[RTE_LPM6_IPV6_ADDR_SIZE];
>>       int i;
>> @@ -502,26 +916,26 @@ rte_lpm6_add_v1705(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth,
>>               return -EINVAL;
>>  
>>       /* Copy the IP and mask it to avoid modifying user's input data. */
>> -     memcpy(masked_ip, ip, RTE_LPM6_IPV6_ADDR_SIZE);
>> -     mask_ip(masked_ip, depth);
>> +     ip6_copy_addr(masked_ip, ip);
>> +     ip6_mask_addr(masked_ip, depth);
>>  
>>       /* Add the rule to the rule table. */
>> -     rule_index = rule_add(lpm, masked_ip, next_hop, depth);
>> -
>> +     int is_new_rule = rule_add(lpm, masked_ip, depth, next_hop);
>>       /* If there is no space available for new rule return error. */
>> -     if (rule_index < 0) {
>> -             return rule_index;
>> -     }
>> +     if (is_new_rule < 0)
>> +             return is_new_rule;
>> +
>> +     /* Simulate adding a new route */
>> +     int ret = simulate_add(lpm, masked_ip, depth);
>> +     if (ret < 0)
>> +             return ret;

> Do we need any rollback here for the rule that was just added?
yeah, my mistake. definitely, a rollback must be used.


>>  
>>       /* Inspect the first three bytes through tbl24 on the first step. */
>>       tbl = lpm->tbl24;
>> -     status = add_step (lpm, tbl, &tbl_next, masked_ip, ADD_FIRST_BYTE, 1,
>> -                     depth, next_hop);
>> -     if (status < 0) {
>> -             rte_lpm6_delete(lpm, masked_ip, depth);
>> -
>> -             return status;
>> -     }
>> +     status = add_step(lpm, tbl, TBL24_IND, &tbl_next, &tbl_next_num,
>> +                     masked_ip, ADD_FIRST_BYTE, 1, depth, next_hop,
>> +                     is_new_rule);
>> +     assert(status >= 0);
>>  
>>       /*
>>        * Inspect one by one the rest of the bytes until
>> @@ -529,13 +943,10 @@ rte_lpm6_add_v1705(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth,
>>        */
>>       for (i = ADD_FIRST_BYTE; i < RTE_LPM6_IPV6_ADDR_SIZE && status == 1; i++) {
>>               tbl = tbl_next;
>> -             status = add_step (lpm, tbl, &tbl_next, masked_ip, 1, (uint8_t)(i+1),
>> -                             depth, next_hop);
>> -             if (status < 0) {
>> -                     rte_lpm6_delete(lpm, masked_ip, depth);
>> -
>> -                     return status;
>> -             }
>> +             status = add_step(lpm, tbl, tbl_next_num, &tbl_next,
>> +                             &tbl_next_num, masked_ip, 1, (uint8_t)(i+1),
>> +                             depth, next_hop, is_new_rule);
>> +             assert(status >= 0);
>>       }
>>  
>>       return status;
>> @@ -610,9 +1021,8 @@ rte_lpm6_lookup_v1705(const struct rte_lpm6 *lpm, uint8_t *ip,
>>       uint32_t tbl24_index;
>>  
>>       /* DEBUG: Check user input arguments. */
>> -     if ((lpm == NULL) || (ip == NULL) || (next_hop == NULL)) {
>> +     if ((lpm == NULL) || (ip == NULL) || (next_hop == NULL))
>>               return -EINVAL;
>> -     }
>>  
>>       first_byte = LOOKUP_FIRST_BYTE;
>>       tbl24_index = (ip[0] << BYTES2_SIZE) | (ip[1] << BYTE_SIZE) | ip[2];
>> @@ -648,9 +1058,8 @@ rte_lpm6_lookup_bulk_func_v20(const struct rte_lpm6 *lpm,
>>       int status;
>>  
>>       /* DEBUG: Check user input arguments. */
>> -     if ((lpm == NULL) || (ips == NULL) || (next_hops == NULL)) {
>> +     if ((lpm == NULL) || (ips == NULL) || (next_hops == NULL))
>>               return -EINVAL;
>> -     }
>>  
>>       for (i = 0; i < n; i++) {
>>               first_byte = LOOKUP_FIRST_BYTE;
>> @@ -724,30 +1133,6 @@ MAP_STATIC_SYMBOL(int rte_lpm6_lookup_bulk_func(const struct rte_lpm6 *lpm,
>>                               int32_t *next_hops, unsigned int n),
>>               rte_lpm6_lookup_bulk_func_v1705);
>>  
>> -/*
>> - * Finds a rule in rule table.
>> - * NOTE: Valid range for depth parameter is 1 .. 128 inclusive.
>> - */
>> -static inline int32_t
>> -rule_find(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth)
>> -{
>> -     uint32_t rule_index;
>> -
>> -     /* Scan used rules at given depth to find rule. */
>> -     for (rule_index = 0; rule_index < lpm->used_rules; rule_index++) {
>> -             /* If rule is found return the rule index. */
>> -             if ((memcmp (lpm->rules_tbl[rule_index].ip, ip,
>> -                             RTE_LPM6_IPV6_ADDR_SIZE) == 0) &&
>> -                             lpm->rules_tbl[rule_index].depth == depth) {
>> -
>> -                     return rule_index;
>> -             }
>> -     }
>> -
>> -     /* If rule is not found return -ENOENT. */
>> -     return -ENOENT;
>> -}
>> -
>>  /*
>>   * Look for a rule in the high-level rules table
>>   */
>> @@ -775,23 +1160,20 @@ int
>>  rte_lpm6_is_rule_present_v1705(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth,
>>               uint32_t *next_hop)
>>  {
>> -     uint8_t ip_masked[RTE_LPM6_IPV6_ADDR_SIZE];
>> -     int32_t rule_index;
>> -
>>       /* Check user arguments. */
>>       if ((lpm == NULL) || next_hop == NULL || ip == NULL ||
>>                       (depth < 1) || (depth > RTE_LPM6_MAX_DEPTH))
>>               return -EINVAL;
>>  
>>       /* Copy the IP and mask it to avoid modifying user's input data. */
>> -     memcpy(ip_masked, ip, RTE_LPM6_IPV6_ADDR_SIZE);
>> -     mask_ip(ip_masked, depth);
>> +     uint8_t masked_ip[RTE_LPM6_IPV6_ADDR_SIZE];

> The line above doesn't strictly need to be moved. It's still recommended to
> have variables at the top of the block.
ok, I'll move it the top of the block

>> +     ip6_copy_addr(masked_ip, ip);
>> +     ip6_mask_addr(masked_ip, depth);
>>  
>> -     /* Look for the rule using rule_find. */
>> -     rule_index = rule_find(lpm, ip_masked, depth);
>> +     struct rte_lpm6_rule *rule = rule_find(lpm, masked_ip, depth);
>>  

> Can mark this as const, which can help justify having it declared
> mid-block. :-)
ok, I'll move it the top of the block

> <rest snipped>


-- 
Alex

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [dpdk-dev] [PATCH v2] librte_lpm: Improve performance of the delete and add functions
  2018-07-06 16:59   ` Alex Kiselev
@ 2018-07-09  9:07     ` Bruce Richardson
  0 siblings, 0 replies; 12+ messages in thread
From: Bruce Richardson @ 2018-07-09  9:07 UTC (permalink / raw)
  To: Alex Kiselev; +Cc: dev

On Fri, Jul 06, 2018 at 07:59:22PM +0300, Alex Kiselev wrote:
> Please see inline replies
> 
> > On Mon, Jul 02, 2018 at 07:42:11PM +0300, Alex Kiselev wrote:
> >> There are two major problems with the library:
> >> first, there is no need to rebuild the whole LPM tree
> >> when a rule is deleted and second, due to the current
> >> rules algorithm with complexity O(n) it's almost
> >> impossible to deal with large rule sets (50k or so rules).
> >> This patch addresses those two issues.
> 
> >> Signed-off-by: Alex Kiselev <alex@therouter.net>
> 
> > Hi,
> 
> > Some initial review comments inline below
> 
> > /Bruce
> >> ---
> >>  lib/librte_lpm/rte_lpm6.c | 1073 ++++++++++++++++++++++++++++++++++-----------
> >>  1 file changed, 816 insertions(+), 257 deletions(-)
> 
<snip>
> >> +/*
> >> + * LPM6 rule hash function
> >> + */
> >> +static inline uint32_t
> >> +rule_hash_crc(const void *data, __rte_unused uint32_t data_len,
> >> +               uint32_t init_val)
> >> +{
> >> +     return rte_hash_crc(data, sizeof(struct rte_lpm6_rule_key), init_val);
> >> +}
> 
> > Why bother passing in the length and making the data a void pointer.
>  
> I beleive it should be compatible with the rte_hash_function prototype.

Ah, ok, you are passing this to rte_hash. Makes sense now. I suggest
putting in a comment explaining why you have the extra unused parameter so.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [dpdk-dev] [PATCH v2] librte_lpm: Improve performance of the delete and add functions
       [not found] <c6068a65-bee2-4f34-944a-6cd46ac6a188@orsmsx104.amr.corp.intel.com>
                   ` (3 preceding siblings ...)
  2018-07-06 16:16 ` Bruce Richardson
@ 2018-07-09 11:24 ` Bruce Richardson
  2018-07-09 12:33   ` Alex Kiselev
  4 siblings, 1 reply; 12+ messages in thread
From: Bruce Richardson @ 2018-07-09 11:24 UTC (permalink / raw)
  To: Alex Kiselev; +Cc: dev

On Mon, Jul 02, 2018 at 07:42:11PM +0300, Alex Kiselev wrote:
> There are two major problems with the library:
> first, there is no need to rebuild the whole LPM tree
> when a rule is deleted and second, due to the current
> rules algorithm with complexity O(n) it's almost
> impossible to deal with large rule sets (50k or so rules).
> This patch addresses those two issues.
> 
> Signed-off-by: Alex Kiselev <alex@therouter.net>
> ---
>  lib/librte_lpm/rte_lpm6.c | 1073 ++++++++++++++++++++++++++++++++++-----------
>  1 file changed, 816 insertions(+), 257 deletions(-)
> 

<snip code block previously commented on>

> @@ -806,156 +1188,333 @@ MAP_STATIC_SYMBOL(int rte_lpm6_is_rule_present(struct rte_lpm6 *lpm,
>  /*
>   * Delete a rule from the rule table.
>   * NOTE: Valid range for depth parameter is 1 .. 128 inclusive.
> + * return
> + *		0 if successful delete
> + *   <0 if failure

whitespace in comment.

>   */
> -static inline void
> -rule_delete(struct rte_lpm6 *lpm, int32_t rule_index)
> +static inline int
> +rule_delete(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth)
>  {
> -	/*
> -	 * Overwrite redundant rule with last rule in group and decrement rule
> -	 * counter.
> -	 */
> -	lpm->rules_tbl[rule_index] = lpm->rules_tbl[lpm->used_rules-1];
> -	lpm->used_rules--;
> +	/* init a rule key */
> +	struct rte_lpm6_rule_key rule_key;
> +	rule_key_init(&rule_key, ip, depth);
> +
> +	/* Look for a rule */
> +	struct rte_lpm6_rule	*rule;

nit: whitespace

> +	int ret = rte_hash_lookup_data(lpm->rules_tbl, (void *) &rule_key,
> +		(void **) &rule);
> +	if (ret >= 0) {
> +		/* delete the rule */
> +		rte_hash_del_key(lpm->rules_tbl, (void *) &rule_key);
> +		lpm->used_rules--;
> +		rte_mempool_put(lpm->rules_pool, rule);
> +	}

Rather than doing a lookup and then delete, why not just try the delete
straight off. If you want to check for the key not being present, it can be
detected from the output of the delete call. From rte_hash.h:

 * @return
 *   - -EINVAL if the parameters are invalid.
 *   - -ENOENT if the key is not found.


> +
> +	return ret;
>  }
>  
>  /*
> - * Deletes a rule
> + * Deletes a group of rules

Include a comment that this bulk function will rebuild the lpm table,
rather than doing incremental updates like the regular delete function.

>   */
>  int
> -rte_lpm6_delete(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth)
> +rte_lpm6_delete_bulk_func(struct rte_lpm6 *lpm,
> +		uint8_t ips[][RTE_LPM6_IPV6_ADDR_SIZE], uint8_t *depths,
> +		unsigned n)
>  {
> -	int32_t rule_to_delete_index;
> -	uint8_t ip_masked[RTE_LPM6_IPV6_ADDR_SIZE];
> -	unsigned i;
> -
> -	/*
> -	 * Check input arguments.
> -	 */
> -	if ((lpm == NULL) || (depth < 1) || (depth > RTE_LPM6_MAX_DEPTH)) {
> +	/* Check input arguments. */
> +	if ((lpm == NULL) || (ips == NULL) || (depths == NULL))
>  		return -EINVAL;
> -	}
> -
> -	/* Copy the IP and mask it to avoid modifying user's input data. */
> -	memcpy(ip_masked, ip, RTE_LPM6_IPV6_ADDR_SIZE);
> -	mask_ip(ip_masked, depth);
> -
> -	/*
> -	 * Find the index of the input rule, that needs to be deleted, in the
> -	 * rule table.
> -	 */
> -	rule_to_delete_index = rule_find(lpm, ip_masked, depth);
> -
> -	/*
> -	 * Check if rule_to_delete_index was found. If no rule was found the
> -	 * function rule_find returns -ENOENT.
> -	 */
> -	if (rule_to_delete_index < 0)
> -		return rule_to_delete_index;
>  
> -	/* Delete the rule from the rule table. */
> -	rule_delete(lpm, rule_to_delete_index);
> +	unsigned i;
> +	for (i = 0; i < n; i++)
> +		rule_delete(lpm, ips[i], depths[i]);
>  
>  	/*
>  	 * Set all the table entries to 0 (ie delete every rule
>  	 * from the data structure.
>  	 */
> -	lpm->next_tbl8 = 0;
>  	memset(lpm->tbl24, 0, sizeof(lpm->tbl24));
>  	memset(lpm->tbl8, 0, sizeof(lpm->tbl8[0])
>  			* RTE_LPM6_TBL8_GROUP_NUM_ENTRIES * lpm->number_tbl8s);
> +	tbl8_pool_init(lpm);
>  
>  	/*
> -	 * Add every rule again (except for the one that was removed from
> +	 * Add every rule again (except for the ones that were removed from
>  	 * the rules table).
>  	 */
> -	for (i = 0; i < lpm->used_rules; i++) {
> -		rte_lpm6_add(lpm, lpm->rules_tbl[i].ip, lpm->rules_tbl[i].depth,
> -				lpm->rules_tbl[i].next_hop);
> -	}
> +	recreate_lpm(lpm);
>  
>  	return 0;
>  }
>  
>  /*
> - * Deletes a group of rules
> + * Delete all rules from the LPM table.
>   */
> -int
> -rte_lpm6_delete_bulk_func(struct rte_lpm6 *lpm,
> -		uint8_t ips[][RTE_LPM6_IPV6_ADDR_SIZE], uint8_t *depths, unsigned n)
> +void
> +rte_lpm6_delete_all(struct rte_lpm6 *lpm)
>  {
> -	int32_t rule_to_delete_index;
> -	uint8_t ip_masked[RTE_LPM6_IPV6_ADDR_SIZE];
> -	unsigned i;
> +	/* Zero used rules counter. */
> +	lpm->used_rules = 0;
>  
> -	/*
> -	 * Check input arguments.
> +	/* Zero tbl24. */
> +	memset(lpm->tbl24, 0, sizeof(lpm->tbl24));
> +
> +	/* Zero tbl8. */
> +	memset(lpm->tbl8, 0, sizeof(lpm->tbl8[0]) *
> +			RTE_LPM6_TBL8_GROUP_NUM_ENTRIES * lpm->number_tbl8s);
> +
> +	/* init pool of free tbl8 indexes */
> +	tbl8_pool_init(lpm);
> +
> +	/* put all rules back to the mempool */
> +	rules_free(lpm);
> +
> +	/* Delete all rules form the rules table. */
> +	rte_hash_reset(lpm->rules_tbl);
> +}
> +
> +/*
> + * Convert a depth to a one byte long mask
> + */
> +static uint8_t __attribute__((pure))
> +depth_to_mask_1b(uint8_t depth)
> +{
> +	/* To calculate a mask start with a 1 on the left hand side and right
> +	 * shift while populating the left hand side with 1's
>  	 */
> -	if ((lpm == NULL) || (ips == NULL) || (depths == NULL)) {
> -		return -EINVAL;
> +	return (signed char)0x80 >> (depth - 1);

I'd make the comment on the function a little clearer e.g. using an
example: "4 => 0xF0", which should remove the need to have the second comment
above the return statement.

An alternative that might be a little clearer for the calculation would be:
"(uint8_t)(~(0xFF >> depth))".

> +}
> +
> +/*
> + * Find a less specific rule
> + */
> +static struct rte_lpm6_rule*
> +rule_find_less_specific(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth)
> +{
> +	if (depth == 1)
> +		return NULL;
> +
> +	struct rte_lpm6_rule *rule;
> +	struct rte_lpm6_rule_key rule_key;
> +	rule_key_init(&rule_key, ip, depth);
> +	uint8_t mask;
> +
> +	while (depth > 1) {
> +		depth--;
> +
> +		/* each iteration zero one more bit of the key */
> +		mask = depth & 7; /* depth % 8 */
> +		if (mask > 0)
> +			mask = depth_to_mask_1b(mask);
> +
> +		rule_key.depth = depth;
> +		rule_key.ip[depth >> 3] &= mask;
> +

It seems strange that when you adjust the depth, you also need to mask out
bits of the key which should be ignored. Can you make the masking part of
the hash calculation, which would simplify the logic here a lot, and if so,
does it affect performance much?

> +		rule = rule_find_with_key(lpm, &rule_key);
> +		if (rule != NULL)
> +			return rule;
>  	}
>  
> -	for (i = 0; i < n; i++) {
> -		/* Copy the IP and mask it to avoid modifying user's input data. */
> -		memcpy(ip_masked, ips[i], RTE_LPM6_IPV6_ADDR_SIZE);
> -		mask_ip(ip_masked, depths[i]);
> +	return NULL;
> +}
>  
> -		/*
> -		 * Find the index of the input rule, that needs to be deleted, in the
> -		 * rule table.
> +/*
> + * Find range of tbl8 cells occupied by a rule
> + */
> +static void
> +rule_find_range(struct rte_lpm6 *lpm, const uint8_t *ip, uint8_t depth,
> +		  struct rte_lpm6_tbl_entry **from,
> +		  struct rte_lpm6_tbl_entry **to,
> +		  uint32_t *out_tbl_ind)
> +{
> +	uint32_t ind;
> +	uint32_t first_3bytes = (uint32_t)ip[0] << 16 | ip[1] << 8 | ip[2];
> +
> +	if (depth <= 24) {
> +		/* rule is within the top level */
> +		ind = first_3bytes;
> +		*from = &lpm->tbl24[ind];
> +		ind += (1 << (24 - depth)) - 1;
> +		*to = &lpm->tbl24[ind];
> +		*out_tbl_ind = TBL24_IND;
> +	} else {
> +		/* top level entry */
> +		struct rte_lpm6_tbl_entry *tbl = &lpm->tbl24[first_3bytes];
> +		assert(tbl->ext_entry == 1);
> +		/* first tbl8 */
> +		uint32_t tbl_ind = tbl->lpm6_tbl8_gindex;
> +		tbl = &lpm->tbl8[tbl_ind *
> +				RTE_LPM6_TBL8_GROUP_NUM_ENTRIES];
> +		/* current ip byte, the top level is already behind */
> +		uint8_t byte = 3;
> +		/* minus top level */
> +		depth -= 24;
> +
> +		/* interate through levels (tbl8s)
> +		 * until we reach the last one
>  		 */
> -		rule_to_delete_index = rule_find(lpm, ip_masked, depths[i]);
> +		while (depth > 8) {
> +			tbl += ip[byte];
> +			assert(tbl->ext_entry == 1);
> +			/* go to the next level/tbl8 */
> +			tbl_ind = tbl->lpm6_tbl8_gindex;
> +			tbl = &lpm->tbl8[tbl_ind *
> +					RTE_LPM6_TBL8_GROUP_NUM_ENTRIES];
> +			byte += 1;
> +			depth -= 8;
> +		}
>  
> -		/*
> -		 * Check if rule_to_delete_index was found. If no rule was found the
> -		 * function rule_find returns -ENOENT.
> -		 */
> -		if (rule_to_delete_index < 0)
> -			continue;
> +		/* last level/tbl8 */
> +		ind = ip[byte] & depth_to_mask_1b(depth);
> +		*from = &tbl[ind];
> +		ind += (1 << (8 - depth)) - 1;
> +		*to = &tbl[ind];
> +		*out_tbl_ind = tbl_ind;
> +	}
> +}
>  
> -		/* Delete the rule from the rule table. */
> -		rule_delete(lpm, rule_to_delete_index);
> +/*
> + * Remove a table from the LPM tree
> + */
> +static void
> +remove_tbl(struct rte_lpm6 *lpm, struct rte_lpm_tbl8_hdr *tbl_hdr,
> +		  uint32_t tbl_ind, struct rte_lpm6_rule *lsp_rule)
> +{
> +	struct rte_lpm6_tbl_entry *owner_entry;
> +
> +	if (tbl_hdr->owner_tbl_ind == TBL24_IND)
> +		owner_entry = &lpm->tbl24[tbl_hdr->owner_entry_ind];
> +	else {
> +		uint32_t owner_tbl_ind = tbl_hdr->owner_tbl_ind;
> +		owner_entry = &lpm->tbl8[
> +			owner_tbl_ind * RTE_LPM6_TBL8_GROUP_NUM_ENTRIES +
> +			tbl_hdr->owner_entry_ind];
> +
> +		struct rte_lpm_tbl8_hdr *owner_tbl_hdr =
> +			&lpm->tbl8_hdrs[owner_tbl_ind];
> +		if (--owner_tbl_hdr->ref_cnt == 0)
> +			remove_tbl(lpm, owner_tbl_hdr, owner_tbl_ind, lsp_rule);
>  	}
>  
> -	/*
> -	 * Set all the table entries to 0 (ie delete every rule
> -	 * from the data structure.
> -	 */
> -	lpm->next_tbl8 = 0;
> -	memset(lpm->tbl24, 0, sizeof(lpm->tbl24));
> -	memset(lpm->tbl8, 0, sizeof(lpm->tbl8[0])
> -			* RTE_LPM6_TBL8_GROUP_NUM_ENTRIES * lpm->number_tbl8s);
> +	assert(owner_entry->ext_entry == 1);
>  
> -	/*
> -	 * Add every rule again (except for the ones that were removed from
> -	 * the rules table).
> -	 */
> -	for (i = 0; i < lpm->used_rules; i++) {
> -		rte_lpm6_add(lpm, lpm->rules_tbl[i].ip, lpm->rules_tbl[i].depth,
> -				lpm->rules_tbl[i].next_hop);
> +	/* unlink the table */
> +	if (lsp_rule != NULL) {
> +		struct rte_lpm6_tbl_entry new_tbl_entry = {
> +			.next_hop = lsp_rule->next_hop,
> +			.depth = lsp_rule->depth,
> +			.valid = VALID,
> +			.valid_group = VALID,
> +			.ext_entry = 0
> +		};
> +
> +		*owner_entry = new_tbl_entry;
> +	} else {
> +		struct rte_lpm6_tbl_entry new_tbl_entry = {
> +			.next_hop = 0,
> +			.depth = 0,
> +			.valid = INVALID,
> +			.valid_group = INVALID,
> +			.ext_entry = 0
> +		};
> +
> +		*owner_entry = new_tbl_entry;
>  	}
>  
> -	return 0;
> +	/* return the table to the pool */
> +	tbl8_put(lpm, tbl_ind);
>  }
>  
>  /*
> - * Delete all rules from the LPM table.
> + * Deletes a rule
>   */
> -void
> -rte_lpm6_delete_all(struct rte_lpm6 *lpm)
> +int
> +rte_lpm6_delete(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth)
>  {
> -	/* Zero used rules counter. */
> -	lpm->used_rules = 0;
> +	/* Check input arguments. */
> +	if ((lpm == NULL) || (depth < 1) || (depth > RTE_LPM6_MAX_DEPTH))
> +		return -EINVAL;
>  
> -	/* Zero next tbl8 index. */
> -	lpm->next_tbl8 = 0;
> +	/* Copy the IP and mask it to avoid modifying user's input data. */
> +	uint8_t masked_ip[RTE_LPM6_IPV6_ADDR_SIZE];
> +	ip6_copy_addr(masked_ip, ip);
> +	ip6_mask_addr(masked_ip, depth);
>  
> -	/* Zero tbl24. */
> -	memset(lpm->tbl24, 0, sizeof(lpm->tbl24));
> +	/* Delete the rule from the rule table. */
> +	int ret = rule_delete(lpm, masked_ip, depth);
> +	if (ret < 0)
> +		return -ENOENT;
>  
> -	/* Zero tbl8. */
> -	memset(lpm->tbl8, 0, sizeof(lpm->tbl8[0]) *
> -			RTE_LPM6_TBL8_GROUP_NUM_ENTRIES * lpm->number_tbl8s);
> +	/* find rule cells */
> +	struct rte_lpm6_tbl_entry *from, *to;
> +	uint32_t tbl_ind;
> +	rule_find_range(lpm, masked_ip, depth, &from, &to, &tbl_ind);
>  
> -	/* Delete all rules form the rules table. */
> -	memset(lpm->rules_tbl, 0, sizeof(struct rte_lpm6_rule) * lpm->max_rules);
> +	/* find a less specific rule (a rule with smaller depth)
> +	 * note: masked_ip will be modified, don't use it anymore
> +	 */
> +	struct rte_lpm6_rule *lsp_rule = rule_find_less_specific(lpm,
> +			masked_ip, depth);
> +
> +	/* decrement the table rule counter,
> +	 * note that tbl24 doesn't have a header
> +	 */
> +	if (tbl_ind != TBL24_IND) {
> +		struct rte_lpm_tbl8_hdr *tbl_hdr = &lpm->tbl8_hdrs[tbl_ind];
> +		if (--tbl_hdr->ref_cnt == 0) {
> +			/* remove the table */
> +			remove_tbl(lpm, tbl_hdr, tbl_ind, lsp_rule);
> +			return 0;
> +		}
> +	}
> +
> +	/* iterate rule cells */
> +	for (; from <= to; from++)
> +		if (from->ext_entry == 1) {
> +			/* reference to a more specific space
> +			 * of the prefix/rule. Entries in a more
> +			 * specific space that are not used by
> +			 * a more specific prefix must be occupied
> +			 * by the prefix
> +			 */
> +			if (lsp_rule != NULL)
> +				expand_rule(lpm,
> +					from->lpm6_tbl8_gindex *
> +					RTE_LPM6_TBL8_GROUP_NUM_ENTRIES,
> +					depth, lsp_rule->depth,
> +					lsp_rule->next_hop, VALID);
> +			else
> +				/* since the prefix has no less specific prefix,
> +				 * its more specific space must be invalidated
> +				 */
> +				expand_rule(lpm,
> +					from->lpm6_tbl8_gindex *
> +					RTE_LPM6_TBL8_GROUP_NUM_ENTRIES,
> +					depth, 0, 0, INVALID);
> +		} else if (from->depth == depth) {
> +			/* entry is not a reference and belongs to the prefix */
> +			if (lsp_rule != NULL) {
> +				struct rte_lpm6_tbl_entry new_tbl_entry = {
> +					.next_hop = lsp_rule->next_hop,
> +					.depth = lsp_rule->depth,
> +					.valid = VALID,
> +					.valid_group = VALID,
> +					.ext_entry = 0
> +				};
> +
> +				*from = new_tbl_entry;
> +			} else {
> +				struct rte_lpm6_tbl_entry new_tbl_entry = {
> +					.next_hop = 0,
> +					.depth = 0,
> +					.valid = INVALID,
> +					.valid_group = INVALID,
> +					.ext_entry = 0
> +				};
> +
> +				*from = new_tbl_entry;
> +			}
> +		}
> +
> +	return 0;
>  }
> -- 
Rest of the patch looks fine to me, though I can't say I've followed all
the logic paths in full detail.

Main concern I have about the patch is the size. Is there any way this
patch could be split up into a few smaller ones with more gradual changes?

Regards,
/Bruce

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [dpdk-dev] [PATCH v2] librte_lpm: Improve performance of the delete and add functions
  2018-07-09 11:24 ` Bruce Richardson
@ 2018-07-09 12:33   ` Alex Kiselev
  2018-07-09 13:35     ` Bruce Richardson
  0 siblings, 1 reply; 12+ messages in thread
From: Alex Kiselev @ 2018-07-09 12:33 UTC (permalink / raw)
  To: Bruce Richardson; +Cc: dev

>> +     int ret = rte_hash_lookup_data(lpm->rules_tbl, (void *) &rule_key,
>> +             (void **) &rule);
>> +     if (ret >= 0) {
>> +             /* delete the rule */
>> +             rte_hash_del_key(lpm->rules_tbl, (void *) &rule_key);
>> +             lpm->used_rules--;
>> +             rte_mempool_put(lpm->rules_pool, rule);
>> +     }

> Rather than doing a lookup and then delete, why not just try the delete
> straight off. If you want to check for the key not being present, it can be
> detected from the output of the delete call. From rte_hash.h:

>  * @return
>  *   - -EINVAL if the parameters are invalid.
>  *   - -ENOENT if the key is not found.

A deleted rule has to be returned back to the mempool.
And I don't see any delete function in the rte_hash that can
return a deleted item back to a caller. 

>> +
>> +     return ret;
>>  }
>>  
>>  /*
>> - * Deletes a rule
>> + * Deletes a group of rules

> Include a comment that this bulk function will rebuild the lpm table,
> rather than doing incremental updates like the regular delete function.
ok


>> + * Convert a depth to a one byte long mask
>> + */
>> +static uint8_t __attribute__((pure))
>> +depth_to_mask_1b(uint8_t depth)
>> +{
>> +     /* To calculate a mask start with a 1 on the left hand side and right
>> +      * shift while populating the left hand side with 1's
>>        */
>> -     if ((lpm == NULL) || (ips == NULL) || (depths == NULL)) {
>> -             return -EINVAL;
>> +     return (signed char)0x80 >> (depth - 1);

> I'd make the comment on the function a little clearer e.g. using an
example: "4 =>> 0xF0", which should remove the need to have the second comment
> above the return statement.

> An alternative that might be a little clearer for the calculation would be:
"(uint8_t)(~(0xFF >>> depth))".

I've just copied this function from rte_lpm.c and converted it to 1byte version.
I'll add an example 4 =>> 0xF0.

>> +}
>> +
>> +/*
>> + * Find a less specific rule
>> + */
>> +static struct rte_lpm6_rule*
>> +rule_find_less_specific(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth)
>> +{
>> +     if (depth == 1)
>> +             return NULL;
>> +
>> +     struct rte_lpm6_rule *rule;
>> +     struct rte_lpm6_rule_key rule_key;
>> +     rule_key_init(&rule_key, ip, depth);
>> +     uint8_t mask;
>> +
>> +     while (depth > 1) {
>> +             depth--;
>> +
>> +             /* each iteration zero one more bit of the key */
>> +             mask = depth & 7; /* depth % 8 */
>> +             if (mask > 0)
>> +                     mask = depth_to_mask_1b(mask);
>> +
>> +             rule_key.depth = depth;
>> +             rule_key.ip[depth >> 3] &= mask;
>> +

> It seems strange that when you adjust the depth, you also need to mask out
> bits of the key which should be ignored. Can you make the masking part of
> the hash calculation, which would simplify the logic here a lot, and if so,
> does it affect performance much?

The first version of rule_find_less_specific() was doing exactly what you are proposing,
masking whole ipv6 address every time. But then I just couldn't stop myself from
using this shortcut since it's a performance optimization patch.

So, yes, it could be a part of the hash calculation, but why? It's definetly not
the most difficult part of the algorithm (even without this optimizations), 
so it would not make life easier :)
  

>>  }
>> -- 
> Rest of the patch looks fine to me, though I can't say I've followed all
> the logic paths in full detail.

> Main concern I have about the patch is the size. Is there any way this
> patch could be split up into a few smaller ones with more gradual changes?
I could try to split it in two parts. The first part will introduce the new rule
subsystem using a hashtable instead of a flat array. And the second one will include
the rest. 

> Regards,
> /Bruce



-- 
Alex

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [dpdk-dev] [PATCH v2] librte_lpm: Improve performance of the delete and add functions
  2018-07-09 12:33   ` Alex Kiselev
@ 2018-07-09 13:35     ` Bruce Richardson
  0 siblings, 0 replies; 12+ messages in thread
From: Bruce Richardson @ 2018-07-09 13:35 UTC (permalink / raw)
  To: Alex Kiselev; +Cc: dev

On Mon, Jul 09, 2018 at 03:33:44PM +0300, Alex Kiselev wrote:
> >> +     int ret = rte_hash_lookup_data(lpm->rules_tbl, (void *) &rule_key,
> >> +             (void **) &rule);
> >> +     if (ret >= 0) {
> >> +             /* delete the rule */
> >> +             rte_hash_del_key(lpm->rules_tbl, (void *) &rule_key);
> >> +             lpm->used_rules--;
> >> +             rte_mempool_put(lpm->rules_pool, rule);
> >> +     }
> 
> > Rather than doing a lookup and then delete, why not just try the delete
> > straight off. If you want to check for the key not being present, it can be
> > detected from the output of the delete call. From rte_hash.h:
> 
> >  * @return
> >  *   - -EINVAL if the parameters are invalid.
> >  *   - -ENOENT if the key is not found.
> 
> A deleted rule has to be returned back to the mempool.
> And I don't see any delete function in the rte_hash that can
> return a deleted item back to a caller. 
> 
Good point, never mind my comment, so.

> >> +
> >> +     return ret;
> >>  }
> >>  
> >>  /*
> >> - * Deletes a rule
> >> + * Deletes a group of rules
> 
> > Include a comment that this bulk function will rebuild the lpm table,
> > rather than doing incremental updates like the regular delete function.
> ok
> 
> 
> >> + * Convert a depth to a one byte long mask
> >> + */
> >> +static uint8_t __attribute__((pure))
> >> +depth_to_mask_1b(uint8_t depth)
> >> +{
> >> +     /* To calculate a mask start with a 1 on the left hand side and right
> >> +      * shift while populating the left hand side with 1's
> >>        */
> >> -     if ((lpm == NULL) || (ips == NULL) || (depths == NULL)) {
> >> -             return -EINVAL;
> >> +     return (signed char)0x80 >> (depth - 1);
> 
> > I'd make the comment on the function a little clearer e.g. using an
> example: "4 =>> 0xF0", which should remove the need to have the second comment
> > above the return statement.
> 
> > An alternative that might be a little clearer for the calculation would be:
> "(uint8_t)(~(0xFF >>> depth))".
> 
> I've just copied this function from rte_lpm.c and converted it to 1byte version.
> I'll add an example 4 =>> 0xF0.
> 
Ok. Keeping the code as-is is fine.

> >> +}
> >> +
> >> +/*
> >> + * Find a less specific rule
> >> + */
> >> +static struct rte_lpm6_rule*
> >> +rule_find_less_specific(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth)
> >> +{
> >> +     if (depth == 1)
> >> +             return NULL;
> >> +
> >> +     struct rte_lpm6_rule *rule;
> >> +     struct rte_lpm6_rule_key rule_key;
> >> +     rule_key_init(&rule_key, ip, depth);
> >> +     uint8_t mask;
> >> +
> >> +     while (depth > 1) {
> >> +             depth--;
> >> +
> >> +             /* each iteration zero one more bit of the key */
> >> +             mask = depth & 7; /* depth % 8 */
> >> +             if (mask > 0)
> >> +                     mask = depth_to_mask_1b(mask);
> >> +
> >> +             rule_key.depth = depth;
> >> +             rule_key.ip[depth >> 3] &= mask;
> >> +
> 
> > It seems strange that when you adjust the depth, you also need to mask out
> > bits of the key which should be ignored. Can you make the masking part of
> > the hash calculation, which would simplify the logic here a lot, and if so,
> > does it affect performance much?
> 
> The first version of rule_find_less_specific() was doing exactly what you are proposing,
> masking whole ipv6 address every time. But then I just couldn't stop myself from
> using this shortcut since it's a performance optimization patch.
> 
> So, yes, it could be a part of the hash calculation, but why? It's definetly not
> the most difficult part of the algorithm (even without this optimizations), 
> so it would not make life easier :)
>   

Ok, makes sense.

> >>  }
> >> -- 
> > Rest of the patch looks fine to me, though I can't say I've followed all
> > the logic paths in full detail.
> 
> > Main concern I have about the patch is the size. Is there any way this
> > patch could be split up into a few smaller ones with more gradual changes?
> I could try to split it in two parts. The first part will introduce the new rule
> subsystem using a hashtable instead of a flat array. And the second one will include
> the rest. 
> 
Please attempt to do so, if possible, for the next version.

Thanks,
/Bruce

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [dpdk-dev] [PATCH v2] librte_lpm: Improve performance of the delete and add functions
@ 2018-07-02 16:42 Alex Kiselev
  0 siblings, 0 replies; 12+ messages in thread
From: Alex Kiselev @ 2018-07-02 16:42 UTC (permalink / raw)
  To: dev, Bruce Richardson

There are two major problems with the library:
first, there is no need to rebuild the whole LPM tree
when a rule is deleted and second, due to the current
rules algorithm with complexity O(n) it's almost
impossible to deal with large rule sets (50k or so rules).
This patch addresses those two issues.

Signed-off-by: Alex Kiselev <alex@therouter.net>
---
 lib/librte_lpm/rte_lpm6.c | 1073 ++++++++++++++++++++++++++++++++++-----------
 1 file changed, 816 insertions(+), 257 deletions(-)

diff --git a/lib/librte_lpm/rte_lpm6.c b/lib/librte_lpm/rte_lpm6.c
index 149677eb1..438db0831 100644
--- a/lib/librte_lpm/rte_lpm6.c
+++ b/lib/librte_lpm/rte_lpm6.c
@@ -21,6 +21,10 @@
 #include <rte_errno.h>
 #include <rte_rwlock.h>
 #include <rte_spinlock.h>
+#include <rte_hash.h>
+#include <rte_hash_crc.h>
+#include <rte_mempool.h>
+#include <assert.h>
 
 #include "rte_lpm6.h"
 
@@ -37,6 +41,9 @@
 #define BYTE_SIZE                                 8
 #define BYTES2_SIZE                              16
 
+#define RULE_HASH_TABLE_EXTRA_SPACE             256
+#define TBL24_IND                        UINT32_MAX
+
 #define lpm6_tbl8_gindex next_hop
 
 /** Flags for setting an entry as valid/invalid. */
@@ -70,6 +77,23 @@ struct rte_lpm6_rule {
 	uint8_t depth; /**< Rule depth. */
 };
 
+/** Rules tbl entry key. */
+struct rte_lpm6_rule_key {
+	uint8_t ip[RTE_LPM6_IPV6_ADDR_SIZE]; /**< Rule IP address. */
+	uint8_t depth; /**< Rule depth. */
+};
+
+/* Header of tbl8 */
+struct rte_lpm_tbl8_hdr {
+	uint32_t owner_tbl_ind; /**< owner table: TBL24_IND if owner is tbl24,
+					* otherwise index of tbl8
+					*/
+	uint32_t owner_entry_ind; /**< index of the owner table entry where
+					* pointer to the tbl8 is stored
+					*/
+	uint32_t ref_cnt; /**< table reference counter */
+};
+
 /** LPM6 structure. */
 struct rte_lpm6 {
 	/* LPM metadata. */
@@ -77,12 +101,18 @@ struct rte_lpm6 {
 	uint32_t max_rules;              /**< Max number of rules. */
 	uint32_t used_rules;             /**< Used rules so far. */
 	uint32_t number_tbl8s;           /**< Number of tbl8s to allocate. */
-	uint32_t next_tbl8;              /**< Next tbl8 to be used. */
 
 	/* LPM Tables. */
-	struct rte_lpm6_rule *rules_tbl; /**< LPM rules. */
+	struct rte_mempool *rules_pool; /**< LPM rules mempool. */
+	struct rte_hash *rules_tbl; /**< LPM rules. */
 	struct rte_lpm6_tbl_entry tbl24[RTE_LPM6_TBL24_NUM_ENTRIES]
 			__rte_cache_aligned; /**< LPM tbl24 table. */
+
+	uint32_t *tbl8_pool; /**< pool of indexes of free tbl8s */
+	uint32_t tbl8_pool_pos; /**< current position in the tbl8 pool */
+
+	struct rte_lpm_tbl8_hdr *tbl8_hdrs; /* array of tbl8 headers */
+
 	struct rte_lpm6_tbl_entry tbl8[0]
 			__rte_cache_aligned; /**< LPM tbl8 table. */
 };
@@ -93,22 +123,130 @@ struct rte_lpm6 {
  * and set the rest to 0.
  */
 static inline void
-mask_ip(uint8_t *ip, uint8_t depth)
+ip6_mask_addr(uint8_t *ip, uint8_t depth)
 {
-        int16_t part_depth, mask;
-        int i;
+	int16_t part_depth, mask;
+	int i;
 
-		part_depth = depth;
+	part_depth = depth;
 
-		for (i = 0; i < RTE_LPM6_IPV6_ADDR_SIZE; i++) {
-			if (part_depth < BYTE_SIZE && part_depth >= 0) {
-				mask = (uint16_t)(~(UINT8_MAX >> part_depth));
-				ip[i] = (uint8_t)(ip[i] & mask);
-			} else if (part_depth < 0) {
-				ip[i] = 0;
-			}
-			part_depth -= BYTE_SIZE;
-		}
+	for (i = 0; i < RTE_LPM6_IPV6_ADDR_SIZE; i++) {
+		if (part_depth < BYTE_SIZE && part_depth >= 0) {
+			mask = (uint16_t)(~(UINT8_MAX >> part_depth));
+			ip[i] = (uint8_t)(ip[i] & mask);
+		} else if (part_depth < 0)
+			ip[i] = 0;
+
+		part_depth -= BYTE_SIZE;
+	}
+}
+
+/* copy ipv6 address */
+static inline void
+ip6_copy_addr(uint8_t *dst, const uint8_t *src)
+{
+	rte_memcpy(dst, src, RTE_LPM6_IPV6_ADDR_SIZE);
+}
+
+/*
+ * LPM6 rule hash function
+ */
+static inline uint32_t
+rule_hash_crc(const void *data, __rte_unused uint32_t data_len,
+		  uint32_t init_val)
+{
+	return rte_hash_crc(data, sizeof(struct rte_lpm6_rule_key), init_val);
+}
+
+/*
+ * Init pool of free tbl8 indexes
+ */
+static void
+tbl8_pool_init(struct rte_lpm6 *lpm)
+{
+	/* put entire range of indexes to the tbl8 pool */
+	uint32_t i;
+	for (i = 0; i < lpm->number_tbl8s; i++)
+		lpm->tbl8_pool[i] = i;
+
+	lpm->tbl8_pool_pos = 0;
+}
+
+/*
+ * Get an index of a free tbl8 from the pool
+ */
+static inline uint32_t
+tbl8_get(struct rte_lpm6 *lpm, uint32_t *tbl8_ind)
+{
+	if (lpm->tbl8_pool_pos == lpm->number_tbl8s)
+		/* no more free tbl8 */
+		return -ENOSPC;
+
+	/* next index */
+	*tbl8_ind = lpm->tbl8_pool[lpm->tbl8_pool_pos++];
+	return 0;
+}
+
+/*
+ * Put an index of a free tbl8 back to the pool
+ */
+static inline uint32_t
+tbl8_put(struct rte_lpm6 *lpm, uint32_t tbl8_ind)
+{
+	if (lpm->tbl8_pool_pos == 0)
+		/* pool is full */
+		return -ENOSPC;
+
+	lpm->tbl8_pool[--lpm->tbl8_pool_pos] = tbl8_ind;
+	return 0;
+}
+
+/*
+ * Returns number of tbl8s awailable in the pool
+ */
+static inline uint32_t
+tbl8_available(struct rte_lpm6 *lpm)
+{
+	return lpm->number_tbl8s - lpm->tbl8_pool_pos;
+}
+
+/*
+ * Init a rule key.
+ *		note that ip must be already masked
+ */
+static inline void
+rule_key_init(struct rte_lpm6_rule_key *key, uint8_t *ip, uint8_t depth)
+{
+	ip6_copy_addr(key->ip, ip);
+	key->depth = depth;
+}
+
+/*
+ * Recreate the entire LPM tree by reinserting all rules
+ */
+static void
+recreate_lpm(struct rte_lpm6 *lpm)
+{
+	struct rte_lpm6_rule *rule;
+	struct rte_lpm6_rule *rule_key;
+	uint32_t iter = 0;
+	while (rte_hash_iterate(lpm->rules_tbl, (const void **) &rule_key,
+			(void **) &rule, &iter) >= 0)
+		rte_lpm6_add(lpm, rule->ip, rule->depth, rule->next_hop);
+}
+
+/*
+ *	Free all rules
+ */
+static void
+rules_free(struct rte_lpm6 *lpm)
+{
+	struct rte_lpm6_rule *rule;
+	struct rte_lpm6_rule *rule_key;
+	uint32_t iter = 0;
+	while (rte_hash_iterate(lpm->rules_tbl, (const void **) &rule_key,
+			(void **) &rule, &iter) >= 0)
+		rte_mempool_put(lpm->rules_pool, rule);
 }
 
 /*
@@ -121,7 +259,7 @@ rte_lpm6_create(const char *name, int socket_id,
 	char mem_name[RTE_LPM6_NAMESIZE];
 	struct rte_lpm6 *lpm = NULL;
 	struct rte_tailq_entry *te;
-	uint64_t mem_size, rules_size;
+	uint64_t mem_size;
 	struct rte_lpm6_list *lpm_list;
 
 	lpm_list = RTE_TAILQ_CAST(rte_lpm6_tailq.head, rte_lpm6_list);
@@ -136,12 +274,72 @@ rte_lpm6_create(const char *name, int socket_id,
 		return NULL;
 	}
 
+	struct rte_mempool *rules_mempool = NULL;
+	struct rte_hash *rules_tbl = NULL;
+	uint32_t *tbl8_pool = NULL;
+	struct rte_lpm_tbl8_hdr *tbl8_hdrs = NULL;
+
+	/* allocate rules mempool */
+	snprintf(mem_name, sizeof(mem_name), "LRM_%s", name);
+	rules_mempool = rte_mempool_create(mem_name,
+			config->max_rules, sizeof(struct rte_lpm6_rule), 0, 0,
+			NULL, NULL, NULL, NULL, socket_id,
+			MEMPOOL_F_NO_CACHE_ALIGN);
+	if (rules_mempool == NULL) {
+		RTE_LOG(ERR, LPM, "LPM rules mempool allocation failed: %s (%d)",
+				  rte_strerror(rte_errno), rte_errno);
+		rte_errno = ENOMEM;
+		goto fail_wo_unlock;
+	}
+
+	/* create rules hash table */
+	snprintf(mem_name, sizeof(mem_name), "LRH_%s", name);
+
+	struct rte_hash_parameters rule_hash_tbl_params = {
+		.entries = config->max_rules + RULE_HASH_TABLE_EXTRA_SPACE,
+		.key_len = sizeof(struct rte_lpm6_rule_key),
+		.hash_func = rule_hash_crc,
+		.hash_func_init_val = 0,
+		.name = mem_name,
+		.reserved = 0,
+		.socket_id = socket_id,
+		.extra_flag = 0
+	};
+
+	rules_tbl = rte_hash_create(&rule_hash_tbl_params);
+	if (rules_tbl == NULL) {
+		RTE_LOG(ERR, LPM, "LPM rules hash table allocation failed: %s (%d)",
+				  rte_strerror(rte_errno), rte_errno);
+		goto fail_wo_unlock;
+	}
+
+	/* allocate tbl8 indexes pool */
+	tbl8_pool = rte_malloc(NULL,
+			sizeof(uint32_t) * config->number_tbl8s,
+			RTE_CACHE_LINE_SIZE);
+	if (tbl8_pool == NULL) {
+		RTE_LOG(ERR, LPM, "LPM tbl8 pool allocation failed: %s (%d)",
+				  rte_strerror(rte_errno), rte_errno);
+		rte_errno = ENOMEM;
+		goto fail_wo_unlock;
+	}
+
+	/* allocate tbl8 headers */
+	tbl8_hdrs = rte_malloc(NULL,
+			sizeof(struct rte_lpm_tbl8_hdr) * config->number_tbl8s,
+			RTE_CACHE_LINE_SIZE);
+	if (tbl8_hdrs == NULL) {
+		RTE_LOG(ERR, LPM, "LPM tbl8 headers allocation failed: %s (%d)",
+				  rte_strerror(rte_errno), rte_errno);
+		rte_errno = ENOMEM;
+		goto fail_wo_unlock;
+	}
+
 	snprintf(mem_name, sizeof(mem_name), "LPM_%s", name);
 
 	/* Determine the amount of memory to allocate. */
 	mem_size = sizeof(*lpm) + (sizeof(lpm->tbl8[0]) *
 			RTE_LPM6_TBL8_GROUP_NUM_ENTRIES * config->number_tbl8s);
-	rules_size = sizeof(struct rte_lpm6_rule) * config->max_rules;
 
 	rte_rwlock_write_lock(RTE_EAL_TAILQ_RWLOCK);
 
@@ -154,7 +352,7 @@ rte_lpm6_create(const char *name, int socket_id,
 	lpm = NULL;
 	if (te != NULL) {
 		rte_errno = EEXIST;
-		goto exit;
+		goto fail;
 	}
 
 	/* allocate tailq entry */
@@ -162,30 +360,18 @@ rte_lpm6_create(const char *name, int socket_id,
 	if (te == NULL) {
 		RTE_LOG(ERR, LPM, "Failed to allocate tailq entry!\n");
 		rte_errno = ENOMEM;
-		goto exit;
+		goto fail;
 	}
 
 	/* Allocate memory to store the LPM data structures. */
-	lpm = rte_zmalloc_socket(mem_name, (size_t)mem_size,
+	lpm = (struct rte_lpm6 *)rte_zmalloc_socket(mem_name, (size_t)mem_size,
 			RTE_CACHE_LINE_SIZE, socket_id);
 
 	if (lpm == NULL) {
 		RTE_LOG(ERR, LPM, "LPM memory allocation failed\n");
 		rte_free(te);
 		rte_errno = ENOMEM;
-		goto exit;
-	}
-
-	lpm->rules_tbl = rte_zmalloc_socket(NULL,
-			(size_t)rules_size, RTE_CACHE_LINE_SIZE, socket_id);
-
-	if (lpm->rules_tbl == NULL) {
-		RTE_LOG(ERR, LPM, "LPM rules_tbl allocation failed\n");
-		rte_free(lpm);
-		lpm = NULL;
-		rte_free(te);
-		rte_errno = ENOMEM;
-		goto exit;
+		goto fail;
 	}
 
 	/* Save user arguments. */
@@ -193,14 +379,37 @@ rte_lpm6_create(const char *name, int socket_id,
 	lpm->number_tbl8s = config->number_tbl8s;
 	snprintf(lpm->name, sizeof(lpm->name), "%s", name);
 
+	lpm->rules_tbl = rules_tbl;
+	lpm->tbl8_pool = tbl8_pool;
+	lpm->tbl8_hdrs = tbl8_hdrs;
+	lpm->rules_pool = rules_mempool;
+
+	/* init the stack */
+	tbl8_pool_init(lpm);
+
 	te->data = (void *) lpm;
 
 	TAILQ_INSERT_TAIL(lpm_list, te, next);
+	rte_rwlock_write_unlock(RTE_EAL_TAILQ_RWLOCK);
+	return lpm;
 
-exit:
+fail:
 	rte_rwlock_write_unlock(RTE_EAL_TAILQ_RWLOCK);
 
-	return lpm;
+fail_wo_unlock:
+	if (rules_mempool != NULL)
+		rte_mempool_free(rules_mempool);
+
+	if (tbl8_hdrs != NULL)
+		rte_free(tbl8_hdrs);
+
+	if (tbl8_pool != NULL)
+		rte_free(tbl8_pool);
+
+	if (rules_tbl != NULL)
+		rte_hash_free(rules_tbl);
+
+	return NULL;
 }
 
 /*
@@ -259,50 +468,93 @@ rte_lpm6_free(struct rte_lpm6 *lpm)
 
 	rte_rwlock_write_unlock(RTE_EAL_TAILQ_RWLOCK);
 
-	rte_free(lpm->rules_tbl);
+	rte_mempool_free(lpm->rules_pool);
+	rte_free(lpm->tbl8_hdrs);
+	rte_free(lpm->tbl8_pool);
+	rte_hash_free(lpm->rules_tbl);
 	rte_free(lpm);
 	rte_free(te);
 }
 
+/* Find a rule */
+static inline struct rte_lpm6_rule*
+rule_find_with_key(struct rte_lpm6 *lpm,
+		  const struct rte_lpm6_rule_key *rule_key)
+{
+	/* look for a rule */
+	struct rte_lpm6_rule	*rule;
+	int ret = rte_hash_lookup_data(lpm->rules_tbl,
+		(const void *) rule_key, (void **) &rule);
+	return (ret >= 0) ? rule : NULL;
+}
+
+/* Find a rule */
+static struct rte_lpm6_rule*
+rule_find(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth)
+{
+	/* init a rule key */
+	struct rte_lpm6_rule_key rule_key;
+	rule_key_init(&rule_key, ip, depth);
+
+	return rule_find_with_key(lpm, &rule_key);
+}
+
 /*
  * Checks if a rule already exists in the rules table and updates
  * the nexthop if so. Otherwise it adds a new rule if enough space is available.
+ *
+ * Returns:
+ *    0 - next hop of existed rule is updated
+ *    1 - new rule successfuly added
+ *   <0 - error
  */
-static inline int32_t
-rule_add(struct rte_lpm6 *lpm, uint8_t *ip, uint32_t next_hop, uint8_t depth)
+static inline int
+rule_add(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth, uint32_t next_hop)
 {
-	uint32_t rule_index;
+	/* init a rule key */
+	struct rte_lpm6_rule_key rule_key;
+	rule_key_init(&rule_key, ip, depth);
 
 	/* Scan through rule list to see if rule already exists. */
-	for (rule_index = 0; rule_index < lpm->used_rules; rule_index++) {
-
-		/* If rule already exists update its next_hop and return. */
-		if ((memcmp (lpm->rules_tbl[rule_index].ip, ip,
-				RTE_LPM6_IPV6_ADDR_SIZE) == 0) &&
-				lpm->rules_tbl[rule_index].depth == depth) {
-			lpm->rules_tbl[rule_index].next_hop = next_hop;
+	struct rte_lpm6_rule *rule = rule_find_with_key(lpm, &rule_key);
 
-			return rule_index;
-		}
+	/* If rule already exists update its next_hop and return. */
+	if (rule != NULL) {
+		rule->next_hop = next_hop;
+		return 0;
 	}
 
 	/*
 	 * If rule does not exist check if there is space to add a new rule to
 	 * this rule group. If there is no space return error.
 	 */
-	if (lpm->used_rules == lpm->max_rules) {
+	if (lpm->used_rules == lpm->max_rules)
 		return -ENOSPC;
-	}
 
-	/* If there is space for the new rule add it. */
-	rte_memcpy(lpm->rules_tbl[rule_index].ip, ip, RTE_LPM6_IPV6_ADDR_SIZE);
-	lpm->rules_tbl[rule_index].next_hop = next_hop;
-	lpm->rules_tbl[rule_index].depth = depth;
+	/*
+	 * If there is space for the new rule add it.
+	 */
+
+	/* get a new rule */
+	int ret = rte_mempool_get(lpm->rules_pool, (void **) &rule);
+	if (ret < 0)
+		return ret;
+
+	/* init the rule */
+	rule->depth = depth;
+	ip6_copy_addr(rule->ip, ip);
+	rule->next_hop = next_hop;
+
+	/* add the rule */
+	ret = rte_hash_add_key_data(lpm->rules_tbl, &rule_key, rule);
+	if (ret < 0) {
+		rte_mempool_put(lpm->rules_pool, rule);
+		return ret;
+	}
 
 	/* Increment the used rules counter for this rule group. */
 	lpm->used_rules++;
-
-	return rule_index;
+	return 1;
 }
 
 /*
@@ -311,24 +563,24 @@ rule_add(struct rte_lpm6 *lpm, uint8_t *ip, uint32_t next_hop, uint8_t depth)
  * in the IP address returns a match.
  */
 static void
-expand_rule(struct rte_lpm6 *lpm, uint32_t tbl8_gindex, uint8_t depth,
-		uint32_t next_hop)
+expand_rule(struct rte_lpm6 *lpm, uint32_t tbl8_gindex, uint8_t old_depth,
+		uint8_t new_depth, uint32_t next_hop, uint8_t valid)
 {
 	uint32_t tbl8_group_end, tbl8_gindex_next, j;
 
 	tbl8_group_end = tbl8_gindex + RTE_LPM6_TBL8_GROUP_NUM_ENTRIES;
 
 	struct rte_lpm6_tbl_entry new_tbl8_entry = {
-		.valid = VALID,
-		.valid_group = VALID,
-		.depth = depth,
+		.valid = valid,
+		.valid_group = valid,
+		.depth = new_depth,
 		.next_hop = next_hop,
 		.ext_entry = 0,
 	};
 
 	for (j = tbl8_gindex; j < tbl8_group_end; j++) {
 		if (!lpm->tbl8[j].valid || (lpm->tbl8[j].ext_entry == 0
-				&& lpm->tbl8[j].depth <= depth)) {
+				&& lpm->tbl8[j].depth <= old_depth)) {
 
 			lpm->tbl8[j] = new_tbl8_entry;
 
@@ -336,11 +588,101 @@ expand_rule(struct rte_lpm6 *lpm, uint32_t tbl8_gindex, uint8_t depth,
 
 			tbl8_gindex_next = lpm->tbl8[j].lpm6_tbl8_gindex
 					* RTE_LPM6_TBL8_GROUP_NUM_ENTRIES;
-			expand_rule(lpm, tbl8_gindex_next, depth, next_hop);
+			expand_rule(lpm, tbl8_gindex_next, old_depth, new_depth,
+					next_hop, valid);
 		}
 	}
 }
 
+/*
+ * Init a tbl8 header
+ */
+static inline void
+init_tbl8_header(struct rte_lpm6 *lpm, uint32_t tbl_ind,
+		uint32_t owner_tbl_ind, uint32_t owner_entry_ind)
+{
+	struct rte_lpm_tbl8_hdr *tbl_hdr = &lpm->tbl8_hdrs[tbl_ind];
+	tbl_hdr->owner_tbl_ind = owner_tbl_ind;
+	tbl_hdr->owner_entry_ind = owner_entry_ind;
+	tbl_hdr->ref_cnt = 0;
+}
+
+/*
+ * Calculate index to the table based on the number and position
+ * of the bytes being inspected in this step.
+ */
+static uint32_t
+get_bitshift(const uint8_t *ip, uint8_t first_byte, uint8_t bytes)
+{
+	uint32_t entry_ind, i;
+	int8_t bitshift;
+
+	entry_ind = 0;
+	for (i = first_byte; i < (uint32_t)(first_byte + bytes); i++) {
+		bitshift = (int8_t)((bytes - i)*BYTE_SIZE);
+
+		if (bitshift < 0)
+			bitshift = 0;
+		entry_ind = entry_ind | ip[i-1] << bitshift;
+	}
+
+	return entry_ind;
+}
+
+/*
+ * Simulate adding a new route to the LPM counting number
+ * of new tables that will be needed
+ *
+ * It returns 0 on success, or 1 if
+ * the process needs to be continued by calling the function again.
+ */
+static inline int
+simulate_add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
+		struct rte_lpm6_tbl_entry **next_tbl, const uint8_t *ip,
+		uint8_t bytes, uint8_t first_byte, uint8_t depth,
+		uint32_t *need_tbl_nb)
+{
+	uint32_t entry_ind;
+	uint8_t bits_covered;
+	uint32_t next_tbl_ind;
+
+	/*
+	 * Calculate index to the table based on the number and position
+	 * of the bytes being inspected in this step.
+	 */
+	entry_ind = get_bitshift(ip, first_byte, bytes);
+
+	/* Number of bits covered in this step */
+	bits_covered = (uint8_t)((bytes+first_byte-1)*BYTE_SIZE);
+
+	if (depth <= bits_covered) {
+		*need_tbl_nb = 0;
+		return 0;
+	}
+
+	if (tbl[entry_ind].valid == 0 || tbl[entry_ind].ext_entry == 0) {
+		/* from this point on a new table is needed on each level
+		 * that is not covered yet
+		 */
+		depth -= bits_covered;
+		uint32_t cnt = depth >> 3; /* depth / 3 */
+		if (depth & 7) /* 0b00000111 */
+			/* if depth % 8 > 0 then one more table is needed
+			 * for those last bits
+			 */
+			cnt++;
+
+		*need_tbl_nb = cnt;
+		return 0;
+	}
+
+	next_tbl_ind = tbl[entry_ind].lpm6_tbl8_gindex;
+	*next_tbl = &(lpm->tbl8[next_tbl_ind *
+		RTE_LPM6_TBL8_GROUP_NUM_ENTRIES]);
+	*need_tbl_nb = 0;
+	return 1;
+}
+
 /*
  * Partially adds a new route to the data structure (tbl24+tbl8s).
  * It returns 0 on success, a negative number on failure, or 1 if
@@ -348,25 +690,21 @@ expand_rule(struct rte_lpm6 *lpm, uint32_t tbl8_gindex, uint8_t depth,
  */
 static inline int
 add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
-		struct rte_lpm6_tbl_entry **tbl_next, uint8_t *ip, uint8_t bytes,
-		uint8_t first_byte, uint8_t depth, uint32_t next_hop)
+		uint32_t tbl_ind, struct rte_lpm6_tbl_entry **next_tbl,
+		uint32_t *next_tbl_ind, uint8_t *ip, uint8_t bytes,
+		uint8_t first_byte, uint8_t depth, uint32_t next_hop,
+		uint8_t is_new_rule)
 {
-	uint32_t tbl_index, tbl_range, tbl8_group_start, tbl8_group_end, i;
-	int32_t tbl8_gindex;
-	int8_t bitshift;
+	uint32_t entry_ind, tbl_range, tbl8_group_start, tbl8_group_end, i;
+	uint32_t tbl8_gindex;
 	uint8_t bits_covered;
+	int ret;
 
 	/*
 	 * Calculate index to the table based on the number and position
 	 * of the bytes being inspected in this step.
 	 */
-	tbl_index = 0;
-	for (i = first_byte; i < (uint32_t)(first_byte + bytes); i++) {
-		bitshift = (int8_t)((bytes - i)*BYTE_SIZE);
-
-		if (bitshift < 0) bitshift = 0;
-		tbl_index = tbl_index | ip[i-1] << bitshift;
-	}
+	entry_ind = get_bitshift(ip, first_byte, bytes);
 
 	/* Number of bits covered in this step */
 	bits_covered = (uint8_t)((bytes+first_byte-1)*BYTE_SIZE);
@@ -378,7 +716,7 @@ add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
 	if (depth <= bits_covered) {
 		tbl_range = 1 << (bits_covered - depth);
 
-		for (i = tbl_index; i < (tbl_index + tbl_range); i++) {
+		for (i = entry_ind; i < (entry_ind + tbl_range); i++) {
 			if (!tbl[i].valid || (tbl[i].ext_entry == 0 &&
 					tbl[i].depth <= depth)) {
 
@@ -400,10 +738,15 @@ add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
 				 */
 				tbl8_gindex = tbl[i].lpm6_tbl8_gindex *
 						RTE_LPM6_TBL8_GROUP_NUM_ENTRIES;
-				expand_rule(lpm, tbl8_gindex, depth, next_hop);
+				expand_rule(lpm, tbl8_gindex, depth, depth,
+						next_hop, VALID);
 			}
 		}
 
+		/* update tbl8 rule reference counter */
+		if (tbl_ind != TBL24_IND && is_new_rule)
+			lpm->tbl8_hdrs[tbl_ind].ref_cnt++;
+
 		return 0;
 	}
 	/*
@@ -412,12 +755,24 @@ add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
 	 */
 	else {
 		/* If it's invalid a new tbl8 is needed */
-		if (!tbl[tbl_index].valid) {
-			if (lpm->next_tbl8 < lpm->number_tbl8s)
-				tbl8_gindex = (lpm->next_tbl8)++;
-			else
+		if (!tbl[entry_ind].valid) {
+			/* get a new table */
+			ret = tbl8_get(lpm, &tbl8_gindex);
+			if (ret != 0)
 				return -ENOSPC;
 
+			/* invalidate all new tbl8 entries */
+			tbl8_group_start = tbl8_gindex *
+					RTE_LPM6_TBL8_GROUP_NUM_ENTRIES;
+			memset(&lpm->tbl8[tbl8_group_start], 0,
+					  RTE_LPM6_TBL8_GROUP_NUM_ENTRIES);
+
+			/* init the new table's header:
+			 *   save the reference to the owner table
+			 */
+			init_tbl8_header(lpm, tbl8_gindex, tbl_ind, entry_ind);
+
+			/* reference to a new tbl8 */
 			struct rte_lpm6_tbl_entry new_tbl_entry = {
 				.lpm6_tbl8_gindex = tbl8_gindex,
 				.depth = 0,
@@ -426,17 +781,20 @@ add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
 				.ext_entry = 1,
 			};
 
-			tbl[tbl_index] = new_tbl_entry;
+			tbl[entry_ind] = new_tbl_entry;
+
+			/* update the current table's reference counter */
+			if (tbl_ind != TBL24_IND)
+				lpm->tbl8_hdrs[tbl_ind].ref_cnt++;
 		}
 		/*
-		 * If it's valid but not extended the rule that was stored *
+		 * If it's valid but not extended the rule that was stored
 		 * here needs to be moved to the next table.
 		 */
-		else if (tbl[tbl_index].ext_entry == 0) {
-			/* Search for free tbl8 group. */
-			if (lpm->next_tbl8 < lpm->number_tbl8s)
-				tbl8_gindex = (lpm->next_tbl8)++;
-			else
+		else if (tbl[entry_ind].ext_entry == 0) {
+			/* get a new tbl8 index */
+			ret = tbl8_get(lpm, &tbl8_gindex);
+			if (ret != 0)
 				return -ENOSPC;
 
 			tbl8_group_start = tbl8_gindex *
@@ -444,13 +802,22 @@ add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
 			tbl8_group_end = tbl8_group_start +
 					RTE_LPM6_TBL8_GROUP_NUM_ENTRIES;
 
+			struct rte_lpm6_tbl_entry tbl_entry = {
+				.next_hop = tbl[entry_ind].next_hop,
+				.depth = tbl[entry_ind].depth,
+				.valid = VALID,
+				.valid_group = VALID,
+				.ext_entry = 0
+			};
+
 			/* Populate new tbl8 with tbl value. */
-			for (i = tbl8_group_start; i < tbl8_group_end; i++) {
-				lpm->tbl8[i].valid = VALID;
-				lpm->tbl8[i].depth = tbl[tbl_index].depth;
-				lpm->tbl8[i].next_hop = tbl[tbl_index].next_hop;
-				lpm->tbl8[i].ext_entry = 0;
-			}
+			for (i = tbl8_group_start; i < tbl8_group_end; i++)
+				lpm->tbl8[i] = tbl_entry;
+
+			/* init the new table's header:
+			 *   save the reference to the owner table
+			 */
+			init_tbl8_header(lpm, tbl8_gindex, tbl_ind, entry_ind);
 
 			/*
 			 * Update tbl entry to point to new tbl8 entry. Note: The
@@ -465,11 +832,16 @@ add_step(struct rte_lpm6 *lpm, struct rte_lpm6_tbl_entry *tbl,
 				.ext_entry = 1,
 			};
 
-			tbl[tbl_index] = new_tbl_entry;
+			tbl[entry_ind] = new_tbl_entry;
+
+			/* update the current table's reference counter */
+			if (tbl_ind != TBL24_IND)
+				lpm->tbl8_hdrs[tbl_ind].ref_cnt++;
 		}
 
-		*tbl_next = &(lpm->tbl8[tbl[tbl_index].lpm6_tbl8_gindex *
-				RTE_LPM6_TBL8_GROUP_NUM_ENTRIES]);
+		*next_tbl_ind = tbl[entry_ind].lpm6_tbl8_gindex;
+		*next_tbl = &(lpm->tbl8[*next_tbl_ind *
+				  RTE_LPM6_TBL8_GROUP_NUM_ENTRIES]);
 	}
 
 	return 1;
@@ -486,13 +858,55 @@ rte_lpm6_add_v20(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth,
 }
 VERSION_SYMBOL(rte_lpm6_add, _v20, 2.0);
 
+
+/*
+ * Simulate adding a route to LPM
+ *
+ *	Returns:
+ *		0 if success
+ *    -ENOSPC not enought tbl8 left
+ */
+static int
+simulate_add(struct rte_lpm6 *lpm, const uint8_t *masked_ip, uint8_t depth)
+{
+	struct rte_lpm6_tbl_entry *tbl;
+	struct rte_lpm6_tbl_entry *tbl_next = NULL;
+	int ret, i;
+
+	/* number of new tables needed for a step */
+	uint32_t need_tbl_nb;
+	/* total number of new tables needed */
+	uint32_t total_need_tbl_nb;
+
+	/* Inspect the first three bytes through tbl24 on the first step. */
+	ret = simulate_add_step(lpm, lpm->tbl24, &tbl_next, masked_ip,
+			ADD_FIRST_BYTE, 1, depth, &need_tbl_nb);
+	total_need_tbl_nb = need_tbl_nb;
+	/*
+	 * Inspect one by one the rest of the bytes until
+	 * the process is completed.
+	 */
+	for (i = ADD_FIRST_BYTE; i < RTE_LPM6_IPV6_ADDR_SIZE && ret == 1; i++) {
+		tbl = tbl_next;
+		ret = simulate_add_step(lpm, tbl, &tbl_next, masked_ip, 1,
+				(uint8_t)(i+1), depth, &need_tbl_nb);
+		total_need_tbl_nb += need_tbl_nb;
+	}
+
+	if (tbl8_available(lpm) < total_need_tbl_nb)
+		/* not enought tbl8 to add a rule */
+		return -ENOSPC;
+
+	return 0;
+}
+
 int
 rte_lpm6_add_v1705(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth,
 		uint32_t next_hop)
 {
 	struct rte_lpm6_tbl_entry *tbl;
 	struct rte_lpm6_tbl_entry *tbl_next = NULL;
-	int32_t rule_index;
+	uint32_t tbl_next_num;
 	int status;
 	uint8_t masked_ip[RTE_LPM6_IPV6_ADDR_SIZE];
 	int i;
@@ -502,26 +916,26 @@ rte_lpm6_add_v1705(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth,
 		return -EINVAL;
 
 	/* Copy the IP and mask it to avoid modifying user's input data. */
-	memcpy(masked_ip, ip, RTE_LPM6_IPV6_ADDR_SIZE);
-	mask_ip(masked_ip, depth);
+	ip6_copy_addr(masked_ip, ip);
+	ip6_mask_addr(masked_ip, depth);
 
 	/* Add the rule to the rule table. */
-	rule_index = rule_add(lpm, masked_ip, next_hop, depth);
-
+	int is_new_rule = rule_add(lpm, masked_ip, depth, next_hop);
 	/* If there is no space available for new rule return error. */
-	if (rule_index < 0) {
-		return rule_index;
-	}
+	if (is_new_rule < 0)
+		return is_new_rule;
+
+	/* Simulate adding a new route */
+	int ret = simulate_add(lpm, masked_ip, depth);
+	if (ret < 0)
+		return ret;
 
 	/* Inspect the first three bytes through tbl24 on the first step. */
 	tbl = lpm->tbl24;
-	status = add_step (lpm, tbl, &tbl_next, masked_ip, ADD_FIRST_BYTE, 1,
-			depth, next_hop);
-	if (status < 0) {
-		rte_lpm6_delete(lpm, masked_ip, depth);
-
-		return status;
-	}
+	status = add_step(lpm, tbl, TBL24_IND, &tbl_next, &tbl_next_num,
+			masked_ip, ADD_FIRST_BYTE, 1, depth, next_hop,
+			is_new_rule);
+	assert(status >= 0);
 
 	/*
 	 * Inspect one by one the rest of the bytes until
@@ -529,13 +943,10 @@ rte_lpm6_add_v1705(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth,
 	 */
 	for (i = ADD_FIRST_BYTE; i < RTE_LPM6_IPV6_ADDR_SIZE && status == 1; i++) {
 		tbl = tbl_next;
-		status = add_step (lpm, tbl, &tbl_next, masked_ip, 1, (uint8_t)(i+1),
-				depth, next_hop);
-		if (status < 0) {
-			rte_lpm6_delete(lpm, masked_ip, depth);
-
-			return status;
-		}
+		status = add_step(lpm, tbl, tbl_next_num, &tbl_next,
+				&tbl_next_num, masked_ip, 1, (uint8_t)(i+1),
+				depth, next_hop, is_new_rule);
+		assert(status >= 0);
 	}
 
 	return status;
@@ -610,9 +1021,8 @@ rte_lpm6_lookup_v1705(const struct rte_lpm6 *lpm, uint8_t *ip,
 	uint32_t tbl24_index;
 
 	/* DEBUG: Check user input arguments. */
-	if ((lpm == NULL) || (ip == NULL) || (next_hop == NULL)) {
+	if ((lpm == NULL) || (ip == NULL) || (next_hop == NULL))
 		return -EINVAL;
-	}
 
 	first_byte = LOOKUP_FIRST_BYTE;
 	tbl24_index = (ip[0] << BYTES2_SIZE) | (ip[1] << BYTE_SIZE) | ip[2];
@@ -648,9 +1058,8 @@ rte_lpm6_lookup_bulk_func_v20(const struct rte_lpm6 *lpm,
 	int status;
 
 	/* DEBUG: Check user input arguments. */
-	if ((lpm == NULL) || (ips == NULL) || (next_hops == NULL)) {
+	if ((lpm == NULL) || (ips == NULL) || (next_hops == NULL))
 		return -EINVAL;
-	}
 
 	for (i = 0; i < n; i++) {
 		first_byte = LOOKUP_FIRST_BYTE;
@@ -724,30 +1133,6 @@ MAP_STATIC_SYMBOL(int rte_lpm6_lookup_bulk_func(const struct rte_lpm6 *lpm,
 				int32_t *next_hops, unsigned int n),
 		rte_lpm6_lookup_bulk_func_v1705);
 
-/*
- * Finds a rule in rule table.
- * NOTE: Valid range for depth parameter is 1 .. 128 inclusive.
- */
-static inline int32_t
-rule_find(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth)
-{
-	uint32_t rule_index;
-
-	/* Scan used rules at given depth to find rule. */
-	for (rule_index = 0; rule_index < lpm->used_rules; rule_index++) {
-		/* If rule is found return the rule index. */
-		if ((memcmp (lpm->rules_tbl[rule_index].ip, ip,
-				RTE_LPM6_IPV6_ADDR_SIZE) == 0) &&
-				lpm->rules_tbl[rule_index].depth == depth) {
-
-			return rule_index;
-		}
-	}
-
-	/* If rule is not found return -ENOENT. */
-	return -ENOENT;
-}
-
 /*
  * Look for a rule in the high-level rules table
  */
@@ -775,23 +1160,20 @@ int
 rte_lpm6_is_rule_present_v1705(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth,
 		uint32_t *next_hop)
 {
-	uint8_t ip_masked[RTE_LPM6_IPV6_ADDR_SIZE];
-	int32_t rule_index;
-
 	/* Check user arguments. */
 	if ((lpm == NULL) || next_hop == NULL || ip == NULL ||
 			(depth < 1) || (depth > RTE_LPM6_MAX_DEPTH))
 		return -EINVAL;
 
 	/* Copy the IP and mask it to avoid modifying user's input data. */
-	memcpy(ip_masked, ip, RTE_LPM6_IPV6_ADDR_SIZE);
-	mask_ip(ip_masked, depth);
+	uint8_t masked_ip[RTE_LPM6_IPV6_ADDR_SIZE];
+	ip6_copy_addr(masked_ip, ip);
+	ip6_mask_addr(masked_ip, depth);
 
-	/* Look for the rule using rule_find. */
-	rule_index = rule_find(lpm, ip_masked, depth);
+	struct rte_lpm6_rule *rule = rule_find(lpm, masked_ip, depth);
 
-	if (rule_index >= 0) {
-		*next_hop = lpm->rules_tbl[rule_index].next_hop;
+	if (rule != NULL) {
+		*next_hop = rule->next_hop;
 		return 1;
 	}
 
@@ -806,156 +1188,333 @@ MAP_STATIC_SYMBOL(int rte_lpm6_is_rule_present(struct rte_lpm6 *lpm,
 /*
  * Delete a rule from the rule table.
  * NOTE: Valid range for depth parameter is 1 .. 128 inclusive.
+ * return
+ *		0 if successful delete
+ *   <0 if failure
  */
-static inline void
-rule_delete(struct rte_lpm6 *lpm, int32_t rule_index)
+static inline int
+rule_delete(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth)
 {
-	/*
-	 * Overwrite redundant rule with last rule in group and decrement rule
-	 * counter.
-	 */
-	lpm->rules_tbl[rule_index] = lpm->rules_tbl[lpm->used_rules-1];
-	lpm->used_rules--;
+	/* init a rule key */
+	struct rte_lpm6_rule_key rule_key;
+	rule_key_init(&rule_key, ip, depth);
+
+	/* Look for a rule */
+	struct rte_lpm6_rule	*rule;
+	int ret = rte_hash_lookup_data(lpm->rules_tbl, (void *) &rule_key,
+		(void **) &rule);
+	if (ret >= 0) {
+		/* delete the rule */
+		rte_hash_del_key(lpm->rules_tbl, (void *) &rule_key);
+		lpm->used_rules--;
+		rte_mempool_put(lpm->rules_pool, rule);
+	}
+
+	return ret;
 }
 
 /*
- * Deletes a rule
+ * Deletes a group of rules
  */
 int
-rte_lpm6_delete(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth)
+rte_lpm6_delete_bulk_func(struct rte_lpm6 *lpm,
+		uint8_t ips[][RTE_LPM6_IPV6_ADDR_SIZE], uint8_t *depths,
+		unsigned n)
 {
-	int32_t rule_to_delete_index;
-	uint8_t ip_masked[RTE_LPM6_IPV6_ADDR_SIZE];
-	unsigned i;
-
-	/*
-	 * Check input arguments.
-	 */
-	if ((lpm == NULL) || (depth < 1) || (depth > RTE_LPM6_MAX_DEPTH)) {
+	/* Check input arguments. */
+	if ((lpm == NULL) || (ips == NULL) || (depths == NULL))
 		return -EINVAL;
-	}
-
-	/* Copy the IP and mask it to avoid modifying user's input data. */
-	memcpy(ip_masked, ip, RTE_LPM6_IPV6_ADDR_SIZE);
-	mask_ip(ip_masked, depth);
-
-	/*
-	 * Find the index of the input rule, that needs to be deleted, in the
-	 * rule table.
-	 */
-	rule_to_delete_index = rule_find(lpm, ip_masked, depth);
-
-	/*
-	 * Check if rule_to_delete_index was found. If no rule was found the
-	 * function rule_find returns -ENOENT.
-	 */
-	if (rule_to_delete_index < 0)
-		return rule_to_delete_index;
 
-	/* Delete the rule from the rule table. */
-	rule_delete(lpm, rule_to_delete_index);
+	unsigned i;
+	for (i = 0; i < n; i++)
+		rule_delete(lpm, ips[i], depths[i]);
 
 	/*
 	 * Set all the table entries to 0 (ie delete every rule
 	 * from the data structure.
 	 */
-	lpm->next_tbl8 = 0;
 	memset(lpm->tbl24, 0, sizeof(lpm->tbl24));
 	memset(lpm->tbl8, 0, sizeof(lpm->tbl8[0])
 			* RTE_LPM6_TBL8_GROUP_NUM_ENTRIES * lpm->number_tbl8s);
+	tbl8_pool_init(lpm);
 
 	/*
-	 * Add every rule again (except for the one that was removed from
+	 * Add every rule again (except for the ones that were removed from
 	 * the rules table).
 	 */
-	for (i = 0; i < lpm->used_rules; i++) {
-		rte_lpm6_add(lpm, lpm->rules_tbl[i].ip, lpm->rules_tbl[i].depth,
-				lpm->rules_tbl[i].next_hop);
-	}
+	recreate_lpm(lpm);
 
 	return 0;
 }
 
 /*
- * Deletes a group of rules
+ * Delete all rules from the LPM table.
  */
-int
-rte_lpm6_delete_bulk_func(struct rte_lpm6 *lpm,
-		uint8_t ips[][RTE_LPM6_IPV6_ADDR_SIZE], uint8_t *depths, unsigned n)
+void
+rte_lpm6_delete_all(struct rte_lpm6 *lpm)
 {
-	int32_t rule_to_delete_index;
-	uint8_t ip_masked[RTE_LPM6_IPV6_ADDR_SIZE];
-	unsigned i;
+	/* Zero used rules counter. */
+	lpm->used_rules = 0;
 
-	/*
-	 * Check input arguments.
+	/* Zero tbl24. */
+	memset(lpm->tbl24, 0, sizeof(lpm->tbl24));
+
+	/* Zero tbl8. */
+	memset(lpm->tbl8, 0, sizeof(lpm->tbl8[0]) *
+			RTE_LPM6_TBL8_GROUP_NUM_ENTRIES * lpm->number_tbl8s);
+
+	/* init pool of free tbl8 indexes */
+	tbl8_pool_init(lpm);
+
+	/* put all rules back to the mempool */
+	rules_free(lpm);
+
+	/* Delete all rules form the rules table. */
+	rte_hash_reset(lpm->rules_tbl);
+}
+
+/*
+ * Convert a depth to a one byte long mask
+ */
+static uint8_t __attribute__((pure))
+depth_to_mask_1b(uint8_t depth)
+{
+	/* To calculate a mask start with a 1 on the left hand side and right
+	 * shift while populating the left hand side with 1's
 	 */
-	if ((lpm == NULL) || (ips == NULL) || (depths == NULL)) {
-		return -EINVAL;
+	return (signed char)0x80 >> (depth - 1);
+}
+
+/*
+ * Find a less specific rule
+ */
+static struct rte_lpm6_rule*
+rule_find_less_specific(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth)
+{
+	if (depth == 1)
+		return NULL;
+
+	struct rte_lpm6_rule *rule;
+	struct rte_lpm6_rule_key rule_key;
+	rule_key_init(&rule_key, ip, depth);
+	uint8_t mask;
+
+	while (depth > 1) {
+		depth--;
+
+		/* each iteration zero one more bit of the key */
+		mask = depth & 7; /* depth % 8 */
+		if (mask > 0)
+			mask = depth_to_mask_1b(mask);
+
+		rule_key.depth = depth;
+		rule_key.ip[depth >> 3] &= mask;
+
+		rule = rule_find_with_key(lpm, &rule_key);
+		if (rule != NULL)
+			return rule;
 	}
 
-	for (i = 0; i < n; i++) {
-		/* Copy the IP and mask it to avoid modifying user's input data. */
-		memcpy(ip_masked, ips[i], RTE_LPM6_IPV6_ADDR_SIZE);
-		mask_ip(ip_masked, depths[i]);
+	return NULL;
+}
 
-		/*
-		 * Find the index of the input rule, that needs to be deleted, in the
-		 * rule table.
+/*
+ * Find range of tbl8 cells occupied by a rule
+ */
+static void
+rule_find_range(struct rte_lpm6 *lpm, const uint8_t *ip, uint8_t depth,
+		  struct rte_lpm6_tbl_entry **from,
+		  struct rte_lpm6_tbl_entry **to,
+		  uint32_t *out_tbl_ind)
+{
+	uint32_t ind;
+	uint32_t first_3bytes = (uint32_t)ip[0] << 16 | ip[1] << 8 | ip[2];
+
+	if (depth <= 24) {
+		/* rule is within the top level */
+		ind = first_3bytes;
+		*from = &lpm->tbl24[ind];
+		ind += (1 << (24 - depth)) - 1;
+		*to = &lpm->tbl24[ind];
+		*out_tbl_ind = TBL24_IND;
+	} else {
+		/* top level entry */
+		struct rte_lpm6_tbl_entry *tbl = &lpm->tbl24[first_3bytes];
+		assert(tbl->ext_entry == 1);
+		/* first tbl8 */
+		uint32_t tbl_ind = tbl->lpm6_tbl8_gindex;
+		tbl = &lpm->tbl8[tbl_ind *
+				RTE_LPM6_TBL8_GROUP_NUM_ENTRIES];
+		/* current ip byte, the top level is already behind */
+		uint8_t byte = 3;
+		/* minus top level */
+		depth -= 24;
+
+		/* interate through levels (tbl8s)
+		 * until we reach the last one
 		 */
-		rule_to_delete_index = rule_find(lpm, ip_masked, depths[i]);
+		while (depth > 8) {
+			tbl += ip[byte];
+			assert(tbl->ext_entry == 1);
+			/* go to the next level/tbl8 */
+			tbl_ind = tbl->lpm6_tbl8_gindex;
+			tbl = &lpm->tbl8[tbl_ind *
+					RTE_LPM6_TBL8_GROUP_NUM_ENTRIES];
+			byte += 1;
+			depth -= 8;
+		}
 
-		/*
-		 * Check if rule_to_delete_index was found. If no rule was found the
-		 * function rule_find returns -ENOENT.
-		 */
-		if (rule_to_delete_index < 0)
-			continue;
+		/* last level/tbl8 */
+		ind = ip[byte] & depth_to_mask_1b(depth);
+		*from = &tbl[ind];
+		ind += (1 << (8 - depth)) - 1;
+		*to = &tbl[ind];
+		*out_tbl_ind = tbl_ind;
+	}
+}
 
-		/* Delete the rule from the rule table. */
-		rule_delete(lpm, rule_to_delete_index);
+/*
+ * Remove a table from the LPM tree
+ */
+static void
+remove_tbl(struct rte_lpm6 *lpm, struct rte_lpm_tbl8_hdr *tbl_hdr,
+		  uint32_t tbl_ind, struct rte_lpm6_rule *lsp_rule)
+{
+	struct rte_lpm6_tbl_entry *owner_entry;
+
+	if (tbl_hdr->owner_tbl_ind == TBL24_IND)
+		owner_entry = &lpm->tbl24[tbl_hdr->owner_entry_ind];
+	else {
+		uint32_t owner_tbl_ind = tbl_hdr->owner_tbl_ind;
+		owner_entry = &lpm->tbl8[
+			owner_tbl_ind * RTE_LPM6_TBL8_GROUP_NUM_ENTRIES +
+			tbl_hdr->owner_entry_ind];
+
+		struct rte_lpm_tbl8_hdr *owner_tbl_hdr =
+			&lpm->tbl8_hdrs[owner_tbl_ind];
+		if (--owner_tbl_hdr->ref_cnt == 0)
+			remove_tbl(lpm, owner_tbl_hdr, owner_tbl_ind, lsp_rule);
 	}
 
-	/*
-	 * Set all the table entries to 0 (ie delete every rule
-	 * from the data structure.
-	 */
-	lpm->next_tbl8 = 0;
-	memset(lpm->tbl24, 0, sizeof(lpm->tbl24));
-	memset(lpm->tbl8, 0, sizeof(lpm->tbl8[0])
-			* RTE_LPM6_TBL8_GROUP_NUM_ENTRIES * lpm->number_tbl8s);
+	assert(owner_entry->ext_entry == 1);
 
-	/*
-	 * Add every rule again (except for the ones that were removed from
-	 * the rules table).
-	 */
-	for (i = 0; i < lpm->used_rules; i++) {
-		rte_lpm6_add(lpm, lpm->rules_tbl[i].ip, lpm->rules_tbl[i].depth,
-				lpm->rules_tbl[i].next_hop);
+	/* unlink the table */
+	if (lsp_rule != NULL) {
+		struct rte_lpm6_tbl_entry new_tbl_entry = {
+			.next_hop = lsp_rule->next_hop,
+			.depth = lsp_rule->depth,
+			.valid = VALID,
+			.valid_group = VALID,
+			.ext_entry = 0
+		};
+
+		*owner_entry = new_tbl_entry;
+	} else {
+		struct rte_lpm6_tbl_entry new_tbl_entry = {
+			.next_hop = 0,
+			.depth = 0,
+			.valid = INVALID,
+			.valid_group = INVALID,
+			.ext_entry = 0
+		};
+
+		*owner_entry = new_tbl_entry;
 	}
 
-	return 0;
+	/* return the table to the pool */
+	tbl8_put(lpm, tbl_ind);
 }
 
 /*
- * Delete all rules from the LPM table.
+ * Deletes a rule
  */
-void
-rte_lpm6_delete_all(struct rte_lpm6 *lpm)
+int
+rte_lpm6_delete(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth)
 {
-	/* Zero used rules counter. */
-	lpm->used_rules = 0;
+	/* Check input arguments. */
+	if ((lpm == NULL) || (depth < 1) || (depth > RTE_LPM6_MAX_DEPTH))
+		return -EINVAL;
 
-	/* Zero next tbl8 index. */
-	lpm->next_tbl8 = 0;
+	/* Copy the IP and mask it to avoid modifying user's input data. */
+	uint8_t masked_ip[RTE_LPM6_IPV6_ADDR_SIZE];
+	ip6_copy_addr(masked_ip, ip);
+	ip6_mask_addr(masked_ip, depth);
 
-	/* Zero tbl24. */
-	memset(lpm->tbl24, 0, sizeof(lpm->tbl24));
+	/* Delete the rule from the rule table. */
+	int ret = rule_delete(lpm, masked_ip, depth);
+	if (ret < 0)
+		return -ENOENT;
 
-	/* Zero tbl8. */
-	memset(lpm->tbl8, 0, sizeof(lpm->tbl8[0]) *
-			RTE_LPM6_TBL8_GROUP_NUM_ENTRIES * lpm->number_tbl8s);
+	/* find rule cells */
+	struct rte_lpm6_tbl_entry *from, *to;
+	uint32_t tbl_ind;
+	rule_find_range(lpm, masked_ip, depth, &from, &to, &tbl_ind);
 
-	/* Delete all rules form the rules table. */
-	memset(lpm->rules_tbl, 0, sizeof(struct rte_lpm6_rule) * lpm->max_rules);
+	/* find a less specific rule (a rule with smaller depth)
+	 * note: masked_ip will be modified, don't use it anymore
+	 */
+	struct rte_lpm6_rule *lsp_rule = rule_find_less_specific(lpm,
+			masked_ip, depth);
+
+	/* decrement the table rule counter,
+	 * note that tbl24 doesn't have a header
+	 */
+	if (tbl_ind != TBL24_IND) {
+		struct rte_lpm_tbl8_hdr *tbl_hdr = &lpm->tbl8_hdrs[tbl_ind];
+		if (--tbl_hdr->ref_cnt == 0) {
+			/* remove the table */
+			remove_tbl(lpm, tbl_hdr, tbl_ind, lsp_rule);
+			return 0;
+		}
+	}
+
+	/* iterate rule cells */
+	for (; from <= to; from++)
+		if (from->ext_entry == 1) {
+			/* reference to a more specific space
+			 * of the prefix/rule. Entries in a more
+			 * specific space that are not used by
+			 * a more specific prefix must be occupied
+			 * by the prefix
+			 */
+			if (lsp_rule != NULL)
+				expand_rule(lpm,
+					from->lpm6_tbl8_gindex *
+					RTE_LPM6_TBL8_GROUP_NUM_ENTRIES,
+					depth, lsp_rule->depth,
+					lsp_rule->next_hop, VALID);
+			else
+				/* since the prefix has no less specific prefix,
+				 * its more specific space must be invalidated
+				 */
+				expand_rule(lpm,
+					from->lpm6_tbl8_gindex *
+					RTE_LPM6_TBL8_GROUP_NUM_ENTRIES,
+					depth, 0, 0, INVALID);
+		} else if (from->depth == depth) {
+			/* entry is not a reference and belongs to the prefix */
+			if (lsp_rule != NULL) {
+				struct rte_lpm6_tbl_entry new_tbl_entry = {
+					.next_hop = lsp_rule->next_hop,
+					.depth = lsp_rule->depth,
+					.valid = VALID,
+					.valid_group = VALID,
+					.ext_entry = 0
+				};
+
+				*from = new_tbl_entry;
+			} else {
+				struct rte_lpm6_tbl_entry new_tbl_entry = {
+					.next_hop = 0,
+					.depth = 0,
+					.valid = INVALID,
+					.valid_group = INVALID,
+					.ext_entry = 0
+				};
+
+				*from = new_tbl_entry;
+			}
+		}
+
+	return 0;
 }
-- 
2.16.1.windows.1

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2018-07-09 13:35 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <c6068a65-bee2-4f34-944a-6cd46ac6a188@orsmsx104.amr.corp.intel.com>
2018-07-06 10:13 ` [dpdk-dev] [PATCH v2] librte_lpm: Improve performance of the delete and add functions Bruce Richardson
2018-07-06 10:25   ` Bruce Richardson
2018-07-06 10:23 ` Bruce Richardson
2018-07-06 10:56 ` Bruce Richardson
2018-07-06 12:00   ` Alex Kiselev
2018-07-06 16:16 ` Bruce Richardson
2018-07-06 16:59   ` Alex Kiselev
2018-07-09  9:07     ` Bruce Richardson
2018-07-09 11:24 ` Bruce Richardson
2018-07-09 12:33   ` Alex Kiselev
2018-07-09 13:35     ` Bruce Richardson
2018-07-02 16:42 Alex Kiselev

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).