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