DPDK
20.05.0
|
#include <errno.h>
#include <sys/queue.h>
#include <stdint.h>
#include <stdlib.h>
#include <rte_branch_prediction.h>
#include <rte_byteorder.h>
#include <rte_config.h>
#include <rte_memory.h>
#include <rte_common.h>
#include <rte_vect.h>
#include "rte_lpm_sse.h"
Go to the source code of this file.
Data Structures | |
struct | rte_lpm_config |
Macros | |
#define | RTE_LPM_NAMESIZE 32 |
#define | RTE_LPM_MAX_DEPTH 32 |
#define | RTE_LPM_LOOKUP_SUCCESS 0x01000000 |
#define | rte_lpm_lookup_bulk(lpm, ips, next_hops, n) rte_lpm_lookup_bulk_func(lpm, ips, next_hops, n) |
Functions | |
struct rte_lpm * | rte_lpm_create (const char *name, int socket_id, const struct rte_lpm_config *config) |
struct rte_lpm * | rte_lpm_find_existing (const char *name) |
void | rte_lpm_free (struct rte_lpm *lpm) |
int | rte_lpm_add (struct rte_lpm *lpm, uint32_t ip, uint8_t depth, uint32_t next_hop) |
int | rte_lpm_is_rule_present (struct rte_lpm *lpm, uint32_t ip, uint8_t depth, uint32_t *next_hop) |
int | rte_lpm_delete (struct rte_lpm *lpm, uint32_t ip, uint8_t depth) |
void | rte_lpm_delete_all (struct rte_lpm *lpm) |
static int | rte_lpm_lookup (struct rte_lpm *lpm, uint32_t ip, uint32_t *next_hop) |
static void | rte_lpm_lookupx4 (const struct rte_lpm *lpm, xmm_t ip, uint32_t hop[4], uint32_t defv) |
RTE Longest Prefix Match (LPM)
Definition in file rte_lpm.h.
#define RTE_LPM_NAMESIZE 32 |
#define RTE_LPM_MAX_DEPTH 32 |
#define RTE_LPM_LOOKUP_SUCCESS 0x01000000 |
Bitmask used to indicate successful lookup
#define rte_lpm_lookup_bulk | ( | lpm, | |
ips, | |||
next_hops, | |||
n | |||
) | rte_lpm_lookup_bulk_func(lpm, ips, next_hops, n) |
Lookup multiple IP addresses in an LPM table. This may be implemented as a macro, so the address of the function should not be used.
lpm | LPM object handle |
ips | Array of IPs to be looked up in the LPM table |
next_hops | Next hop of the most specific rule found for IP (valid on lookup hit only). This is an array of two byte values. The most significant byte in each value says whether the lookup was successful (bitmask RTE_LPM_LOOKUP_SUCCESS is set). The least significant byte is the actual next hop. |
n | Number of elements in ips (and next_hops) array to lookup. This should be a compile time constant, and divisible by 8 for best performance. |
struct rte_lpm* rte_lpm_create | ( | const char * | name, |
int | socket_id, | ||
const struct rte_lpm_config * | config | ||
) |
Create an LPM object.
name | LPM object name |
socket_id | NUMA socket ID for LPM table memory allocation |
config | Structure containing the configuration |
struct rte_lpm* rte_lpm_find_existing | ( | const char * | name | ) |
Find an existing LPM object and return a pointer to it.
name | Name of the lpm object as passed to rte_lpm_create() |
void rte_lpm_free | ( | struct rte_lpm * | lpm | ) |
Free an LPM object.
lpm | LPM object handle |
int rte_lpm_add | ( | struct rte_lpm * | lpm, |
uint32_t | ip, | ||
uint8_t | depth, | ||
uint32_t | next_hop | ||
) |
Add a rule to the LPM table.
lpm | LPM object handle |
ip | IP of the rule to be added to the LPM table |
depth | Depth of the rule to be added to the LPM table |
next_hop | Next hop of the rule to be added to the LPM table |
int rte_lpm_is_rule_present | ( | struct rte_lpm * | lpm, |
uint32_t | ip, | ||
uint8_t | depth, | ||
uint32_t * | next_hop | ||
) |
Check if a rule is present in the LPM table, and provide its next hop if it is.
lpm | LPM object handle |
ip | IP of the rule to be searched |
depth | Depth of the rule to searched |
next_hop | Next hop of the rule (valid only if it is found) |
int rte_lpm_delete | ( | struct rte_lpm * | lpm, |
uint32_t | ip, | ||
uint8_t | depth | ||
) |
Delete a rule from the LPM table.
lpm | LPM object handle |
ip | IP of the rule to be deleted from the LPM table |
depth | Depth of the rule to be deleted from the LPM table |
void rte_lpm_delete_all | ( | struct rte_lpm * | lpm | ) |
Delete all rules from the LPM table.
lpm | LPM object handle |
|
inlinestatic |
Lookup an IP into the LPM table.
lpm | LPM object handle |
ip | IP to be looked up in the LPM table |
next_hop | Next hop of the most specific rule found for IP (valid on lookup hit only) |
|
inlinestatic |
Lookup four IP addresses in an LPM table.
lpm | LPM object handle |
ip | Four IPs to be looked up in the LPM table |
hop | Next hop of the most specific rule found for IP (valid on lookup hit only). This is an 4 elements array of two byte values. If the lookup was successful for the given IP, then least significant byte of the corresponding element is the actual next hop and the most significant byte is zero. If the lookup for the given IP failed, then corresponding element would contain default value, see description of then next parameter. |
defv | Default value to populate into corresponding element of hop[] array, if lookup would fail. |