4db810f9188e2a21f9363568b166fd6b7ad98fc0
[dpdk.git] / lib / librte_lpm / rte_lpm6.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33 #ifndef _RTE_LPM6_H_
34 #define _RTE_LPM6_H_
35
36 /**
37  * @file
38  * RTE Longest Prefix Match for IPv6 (LPM6)
39  */
40
41 #ifdef __cplusplus
42 extern "C" {
43 #endif
44
45
46 #define RTE_LPM6_MAX_DEPTH               128
47 #define RTE_LPM6_IPV6_ADDR_SIZE           16
48 /** Max number of characters in LPM name. */
49 #define RTE_LPM6_NAMESIZE                 32
50
51 /** LPM structure. */
52 struct rte_lpm6;
53
54 /** LPM configuration structure. */
55 struct rte_lpm6_config {
56         uint32_t max_rules;      /**< Max number of rules. */
57         uint32_t number_tbl8s;   /**< Number of tbl8s to allocate. */
58         int flags;               /**< This field is currently unused. */
59 };
60
61 /**
62  * Create an LPM object.
63  *
64  * @param name
65  *   LPM object name
66  * @param socket_id
67  *   NUMA socket ID for LPM table memory allocation
68  * @param config
69  *   Structure containing the configuration
70  * @return
71  *   Handle to LPM object on success, NULL otherwise with rte_errno set
72  *   to an appropriate values. Possible rte_errno values include:
73  *    - E_RTE_NO_CONFIG - function could not get pointer to rte_config structure
74  *    - E_RTE_SECONDARY - function was called from a secondary process instance
75  *    - E_RTE_NO_TAILQ - no tailq list could be got for the lpm object list
76  *    - EINVAL - invalid parameter passed to function
77  *    - ENOSPC - the maximum number of memzones has already been allocated
78  *    - EEXIST - a memzone with the same name already exists
79  *    - ENOMEM - no appropriate memory area found in which to create memzone
80  */
81 struct rte_lpm6 *
82 rte_lpm6_create(const char *name, int socket_id,
83                 const struct rte_lpm6_config *config);
84
85 /**
86  * Find an existing LPM object and return a pointer to it.
87  *
88  * @param name
89  *   Name of the lpm object as passed to rte_lpm6_create()
90  * @return
91  *   Pointer to lpm object or NULL if object not found with rte_errno
92  *   set appropriately. Possible rte_errno values include:
93  *    - ENOENT - required entry not available to return.
94  */
95 struct rte_lpm6 *
96 rte_lpm6_find_existing(const char *name);
97
98 /**
99  * Free an LPM object.
100  *
101  * @param lpm
102  *   LPM object handle
103  * @return
104  *   None
105  */
106 void
107 rte_lpm6_free(struct rte_lpm6 *lpm);
108
109 /**
110  * Add a rule to the LPM table.
111  *
112  * @param lpm
113  *   LPM object handle
114  * @param ip
115  *   IP of the rule to be added to the LPM table
116  * @param depth
117  *   Depth of the rule to be added to the LPM table
118  * @param next_hop
119  *   Next hop of the rule to be added to the LPM table
120  * @return
121  *   0 on success, negative value otherwise
122  */
123 int
124 rte_lpm6_add(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth,
125                 uint8_t next_hop);
126
127 /**
128  * Check if a rule is present in the LPM table,
129  * and provide its next hop if it is.
130  *
131  * @param lpm
132  *   LPM object handle
133  * @param ip
134  *   IP of the rule to be searched
135  * @param depth
136  *   Depth of the rule to searched
137  * @param next_hop
138  *   Next hop of the rule (valid only if it is found)
139  * @return
140  *   1 if the rule exists, 0 if it does not, a negative value on failure
141  */
142 int
143 rte_lpm6_is_rule_present(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth,
144 uint8_t *next_hop);
145
146 /**
147  * Delete a rule from the LPM table.
148  *
149  * @param lpm
150  *   LPM object handle
151  * @param ip
152  *   IP of the rule to be deleted from the LPM table
153  * @param depth
154  *   Depth of the rule to be deleted from the LPM table
155  * @return
156  *   0 on success, negative value otherwise
157  */
158 int
159 rte_lpm6_delete(struct rte_lpm6 *lpm, uint8_t *ip, uint8_t depth);
160
161 /**
162  * Delete a rule from the LPM table.
163  *
164  * @param lpm
165  *   LPM object handle
166  * @param ips
167  *   Array of IPs to be deleted from the LPM table
168  * @param depths
169  *   Array of depths of the rules to be deleted from the LPM table
170  * @param n
171  *   Number of rules to be deleted from the LPM table
172  * @return
173  *   0 on success, negative value otherwise.
174  */
175 int
176 rte_lpm6_delete_bulk_func(struct rte_lpm6 *lpm,
177                 uint8_t ips[][RTE_LPM6_IPV6_ADDR_SIZE], uint8_t *depths, unsigned n);
178
179 /**
180  * Delete all rules from the LPM table.
181  *
182  * @param lpm
183  *   LPM object handle
184  */
185 void
186 rte_lpm6_delete_all(struct rte_lpm6 *lpm);
187
188 /**
189  * Lookup an IP into the LPM table.
190  *
191  * @param lpm
192  *   LPM object handle
193  * @param ip
194  *   IP to be looked up in the LPM table
195  * @param next_hop
196  *   Next hop of the most specific rule found for IP (valid on lookup hit only)
197  * @return
198  *   -EINVAL for incorrect arguments, -ENOENT on lookup miss, 0 on lookup hit
199  */
200 int
201 rte_lpm6_lookup(const struct rte_lpm6 *lpm, uint8_t *ip, uint8_t *next_hop);
202
203 /**
204  * Lookup multiple IP addresses in an LPM table.
205  *
206  * @param lpm
207  *   LPM object handle
208  * @param ips
209  *   Array of IPs to be looked up in the LPM table
210  * @param next_hops
211  *   Next hop of the most specific rule found for IP (valid on lookup hit only).
212  *   This is an array of two byte values. The next hop will be stored on
213  *   each position on success; otherwise the position will be set to -1.
214  * @param n
215  *   Number of elements in ips (and next_hops) array to lookup.
216  *  @return
217  *   -EINVAL for incorrect arguments, otherwise 0
218  */
219 int
220 rte_lpm6_lookup_bulk_func(const struct rte_lpm6 *lpm,
221                 uint8_t ips[][RTE_LPM6_IPV6_ADDR_SIZE],
222                 int16_t * next_hops, unsigned n);
223
224 #ifdef __cplusplus
225 }
226 #endif
227
228 #endif