Initialize n_flows member in table-hash.
[sliver-openvswitch.git] / switch / table-hash.c
1 /* Copyright (c) 2008 The Board of Trustees of The Leland Stanford
2  * Junior University
3  * 
4  * We are making the OpenFlow specification and associated documentation
5  * (Software) available for public use and benefit with the expectation
6  * that others will use, modify and enhance the Software and contribute
7  * those enhancements back to the community. However, since we would
8  * like to make the Software available for broadest use, with as few
9  * restrictions as possible permission is hereby granted, free of
10  * charge, to any person obtaining a copy of this Software to deal in
11  * the Software under the copyrights without restriction, including
12  * without limitation the rights to use, copy, modify, merge, publish,
13  * distribute, sublicense, and/or sell copies of the Software, and to
14  * permit persons to whom the Software is furnished to do so, subject to
15  * the following conditions:
16  * 
17  * The above copyright notice and this permission notice shall be
18  * included in all copies or substantial portions of the Software.
19  * 
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
24  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
25  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
26  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27  * SOFTWARE.
28  * 
29  * The name and trademarks of copyright holder(s) may NOT be used in
30  * advertising or publicity pertaining to the Software or any
31  * derivatives without specific, written prior permission.
32  */
33
34 #include "table.h"
35 #include <assert.h>
36 #include <stdlib.h>
37 #include <string.h>
38 #include "crc32.h"
39 #include "flow.h"
40 #include "datapath.h"
41
42 struct sw_table_hash {
43     struct sw_table swt;
44     struct crc32 crc32;
45     unsigned int n_flows;
46     unsigned int bucket_mask; /* Number of buckets minus 1. */
47     struct sw_flow **buckets;
48 };
49
50 static struct sw_flow **find_bucket(struct sw_table *swt,
51                                     const struct sw_flow_key *key)
52 {
53     struct sw_table_hash *th = (struct sw_table_hash *) swt;
54     unsigned int crc = crc32_calculate(&th->crc32, key, sizeof *key);
55     return &th->buckets[crc & th->bucket_mask];
56 }
57
58 static struct sw_flow *table_hash_lookup(struct sw_table *swt,
59                                          const struct sw_flow_key *key)
60 {
61     struct sw_flow *flow = *find_bucket(swt, key);
62     return flow && !memcmp(&flow->key, key, sizeof *key) ? flow : NULL;
63 }
64
65 static int table_hash_insert(struct sw_table *swt, struct sw_flow *flow)
66 {
67     struct sw_table_hash *th = (struct sw_table_hash *) swt;
68     struct sw_flow **bucket;
69     int retval;
70
71     if (flow->key.wildcards != 0)
72         return 0;
73
74     bucket = find_bucket(swt, &flow->key);
75     if (*bucket == NULL) {
76         th->n_flows++;
77         *bucket = flow;
78         retval = 1;
79     } else {
80         struct sw_flow *old_flow = *bucket;
81         if (!memcmp(&old_flow->key, &flow->key, sizeof flow->key)) {
82             *bucket = flow;
83             flow_free(old_flow);
84             retval = 1;
85         } else {
86             retval = 0;
87         }
88     }
89     return retval;
90 }
91
92 /* Caller must update n_flows. */
93 static void
94 do_delete(struct sw_flow **bucket)
95 {
96     flow_free(*bucket);
97     *bucket = NULL;
98 }
99
100 /* Returns number of deleted flows.  We can igonre the priority
101  * argument, since all exact-match entries are the same (highest)
102  * priority. */
103 static int table_hash_delete(struct sw_table *swt,
104                              const struct sw_flow_key *key, 
105                              uint16_t priority, int strict)
106 {
107     struct sw_table_hash *th = (struct sw_table_hash *) swt;
108     unsigned int count = 0;
109
110     if (key->wildcards == 0) {
111         struct sw_flow **bucket = find_bucket(swt, key);
112         struct sw_flow *flow = *bucket;
113         if (flow && !memcmp(&flow->key, key, sizeof *key)) {
114             do_delete(bucket);
115             count = 1;
116         }
117     } else {
118         unsigned int i;
119
120         for (i = 0; i <= th->bucket_mask; i++) {
121             struct sw_flow **bucket = &th->buckets[i];
122             struct sw_flow *flow = *bucket;
123             if (flow && flow_del_matches(&flow->key, key, strict)) {
124                 do_delete(bucket);
125                 count++;
126             }
127         }
128     }
129     th->n_flows -= count;
130     return count;
131 }
132
133 static void table_hash_timeout(struct sw_table *swt, struct list *deleted)
134 {
135     struct sw_table_hash *th = (struct sw_table_hash *) swt;
136     unsigned int i;
137
138     for (i = 0; i <= th->bucket_mask; i++) {
139         struct sw_flow **bucket = &th->buckets[i];
140         struct sw_flow *flow = *bucket;
141         if (flow && flow_timeout(flow)) {
142             list_push_back(deleted, &flow->node);
143             *bucket = NULL;
144             th->n_flows--;
145         }
146     }
147 }
148
149 static void table_hash_destroy(struct sw_table *swt)
150 {
151     struct sw_table_hash *th = (struct sw_table_hash *) swt;
152     unsigned int i;
153     for (i = 0; i <= th->bucket_mask; i++) {
154         if (th->buckets[i]) {
155             flow_free(th->buckets[i]); 
156         }
157     }
158     free(th->buckets);
159     free(th);
160 }
161
162 struct swt_iterator_hash {
163     struct sw_table_hash *th;
164     unsigned int bucket_i;
165 };
166
167 static struct sw_flow *next_flow(struct swt_iterator_hash *ih)
168 {
169     for (;ih->bucket_i <= ih->th->bucket_mask; ih->bucket_i++) {
170         struct sw_flow *f = ih->th->buckets[ih->bucket_i];
171         if (f != NULL)
172             return f;
173     }
174
175     return NULL;
176 }
177
178 static int table_hash_iterator(struct sw_table *swt,
179                                struct swt_iterator *swt_iter)
180 {
181     struct swt_iterator_hash *ih;
182
183     swt_iter->private = ih = malloc(sizeof *ih);
184
185     if (ih == NULL)
186         return 0;
187
188     ih->th = (struct sw_table_hash *) swt;
189
190     ih->bucket_i = 0;
191     swt_iter->flow = next_flow(ih);
192
193     return 1;
194 }
195
196 static void table_hash_next(struct swt_iterator *swt_iter)
197 {
198     struct swt_iterator_hash *ih;
199
200     if (swt_iter->flow == NULL)
201         return;
202
203     ih = (struct swt_iterator_hash *) swt_iter->private;
204
205     ih->bucket_i++;
206     swt_iter->flow = next_flow(ih);
207 }
208
209 static void table_hash_iterator_destroy(struct swt_iterator *swt_iter)
210 {
211     free(swt_iter->private);
212 }
213
214 static void table_hash_stats(struct sw_table *swt,
215                              struct sw_table_stats *stats) 
216 {
217     struct sw_table_hash *th = (struct sw_table_hash *) swt;
218     stats->name = "hash";
219     stats->n_flows = th->n_flows;
220     stats->max_flows = th->bucket_mask + 1;
221 }
222
223 struct sw_table *table_hash_create(unsigned int polynomial,
224                                    unsigned int n_buckets)
225 {
226     struct sw_table_hash *th;
227     struct sw_table *swt;
228
229     th = malloc(sizeof *th);
230     if (th == NULL)
231         return NULL;
232
233     assert(!(n_buckets & (n_buckets - 1)));
234     th->buckets = calloc(n_buckets, sizeof *th->buckets);
235     if (th->buckets == NULL) {
236         printf("failed to allocate %u buckets\n", n_buckets);
237         free(th);
238         return NULL;
239     }
240     th->n_flows = 0;
241     th->bucket_mask = n_buckets - 1;
242
243     swt = &th->swt;
244     swt->lookup = table_hash_lookup;
245     swt->insert = table_hash_insert;
246     swt->delete = table_hash_delete;
247     swt->timeout = table_hash_timeout;
248     swt->destroy = table_hash_destroy;
249     swt->iterator = table_hash_iterator;
250     swt->iterator_next = table_hash_next;
251     swt->iterator_destroy = table_hash_iterator_destroy;
252     swt->stats = table_hash_stats;
253
254     crc32_init(&th->crc32, polynomial);
255
256     return swt;
257 }
258
259 /* Double-hashing table. */
260
261 struct sw_table_hash2 {
262     struct sw_table swt;
263     struct sw_table *subtable[2];
264 };
265
266 static struct sw_flow *table_hash2_lookup(struct sw_table *swt,
267                                           const struct sw_flow_key *key)
268 {
269     struct sw_table_hash2 *t2 = (struct sw_table_hash2 *) swt;
270     int i;
271         
272     for (i = 0; i < 2; i++) {
273         struct sw_flow *flow = *find_bucket(t2->subtable[i], key);
274         if (flow && !memcmp(&flow->key, key, sizeof *key))
275             return flow;
276     }
277     return NULL;
278 }
279
280 static int table_hash2_insert(struct sw_table *swt, struct sw_flow *flow)
281 {
282     struct sw_table_hash2 *t2 = (struct sw_table_hash2 *) swt;
283
284     if (table_hash_insert(t2->subtable[0], flow))
285         return 1;
286     return table_hash_insert(t2->subtable[1], flow);
287 }
288
289 static int table_hash2_delete(struct sw_table *swt,
290                               const struct sw_flow_key *key, 
291                               uint16_t priority, int strict)
292 {
293     struct sw_table_hash2 *t2 = (struct sw_table_hash2 *) swt;
294     return (table_hash_delete(t2->subtable[0], key, priority, strict)
295             + table_hash_delete(t2->subtable[1], key, priority, strict));
296 }
297
298 static void table_hash2_timeout(struct sw_table *swt, struct list *deleted)
299 {
300     struct sw_table_hash2 *t2 = (struct sw_table_hash2 *) swt;
301     table_hash_timeout(t2->subtable[0], deleted);
302     table_hash_timeout(t2->subtable[1], deleted);
303 }
304
305 static void table_hash2_destroy(struct sw_table *swt)
306 {
307     struct sw_table_hash2 *t2 = (struct sw_table_hash2 *) swt;
308     table_hash_destroy(t2->subtable[0]);
309     table_hash_destroy(t2->subtable[1]);
310     free(t2);
311 }
312
313 struct swt_iterator_hash2 {
314     struct sw_table_hash2 *th2;
315     struct swt_iterator ih;
316     uint8_t table_i;
317 };
318
319 static int table_hash2_iterator(struct sw_table *swt,
320                                 struct swt_iterator *swt_iter)
321 {
322     struct swt_iterator_hash2 *ih2;
323
324     swt_iter->private = ih2 = malloc(sizeof *ih2);
325     if (ih2 == NULL)
326         return 0;
327
328     ih2->th2 = (struct sw_table_hash2 *) swt;
329     if (!table_hash_iterator(ih2->th2->subtable[0], &ih2->ih)) {
330         free(ih2);
331         return 0;
332     }
333
334     if (ih2->ih.flow != NULL) {
335         swt_iter->flow = ih2->ih.flow;
336         ih2->table_i = 0;
337     } else {
338         table_hash_iterator_destroy(&ih2->ih);
339         ih2->table_i = 1;
340         if (!table_hash_iterator(ih2->th2->subtable[1], &ih2->ih)) {
341             free(ih2);
342             return 0;
343         }
344         swt_iter->flow = ih2->ih.flow;
345     }
346
347     return 1;
348 }
349
350 static void table_hash2_next(struct swt_iterator *swt_iter) 
351 {
352     struct swt_iterator_hash2 *ih2;
353
354     if (swt_iter->flow == NULL)
355         return;
356
357     ih2 = (struct swt_iterator_hash2 *) swt_iter->private;
358     table_hash_next(&ih2->ih);
359
360     if (ih2->ih.flow != NULL) {
361         swt_iter->flow = ih2->ih.flow;
362     } else {
363         if (ih2->table_i == 0) {
364             table_hash_iterator_destroy(&ih2->ih);
365             ih2->table_i = 1;
366             if (!table_hash_iterator(ih2->th2->subtable[1], &ih2->ih)) {
367                 ih2->ih.private = NULL;
368                 swt_iter->flow = NULL;
369             } else {
370                 swt_iter->flow = ih2->ih.flow;
371             }
372         } else {
373             swt_iter->flow = NULL;
374         }
375     }
376 }
377
378 static void table_hash2_iterator_destroy(struct swt_iterator *swt_iter)
379 {
380     struct swt_iterator_hash2 *ih2;
381
382     ih2 = (struct swt_iterator_hash2 *) swt_iter->private;
383     if (ih2->ih.private != NULL)
384         table_hash_iterator_destroy(&ih2->ih);
385     free(ih2);
386 }
387
388 static void table_hash2_stats(struct sw_table *swt,
389                               struct sw_table_stats *stats)
390 {
391     struct sw_table_hash2 *t2 = (struct sw_table_hash2 *) swt;
392     struct sw_table_stats substats[2];
393     int i;
394
395     for (i = 0; i < 2; i++)
396         table_hash_stats(t2->subtable[i], &substats[i]);
397     stats->name = "hash2";
398     stats->n_flows = substats[0].n_flows + substats[1].n_flows;
399     stats->max_flows = substats[0].max_flows + substats[1].max_flows;
400 }
401
402 struct sw_table *table_hash2_create(unsigned int poly0, unsigned int buckets0,
403                                     unsigned int poly1, unsigned int buckets1)
404
405 {
406     struct sw_table_hash2 *t2;
407     struct sw_table *swt;
408
409     t2 = malloc(sizeof *t2);
410     if (t2 == NULL)
411         return NULL;
412
413     t2->subtable[0] = table_hash_create(poly0, buckets0);
414     if (t2->subtable[0] == NULL)
415         goto out_free_t2;
416
417     t2->subtable[1] = table_hash_create(poly1, buckets1);
418     if (t2->subtable[1] == NULL)
419         goto out_free_subtable0;
420
421     swt = &t2->swt;
422     swt->lookup = table_hash2_lookup;
423     swt->insert = table_hash2_insert;
424     swt->delete = table_hash2_delete;
425     swt->timeout = table_hash2_timeout;
426     swt->destroy = table_hash2_destroy;
427     swt->stats = table_hash2_stats;
428
429     swt->iterator = table_hash2_iterator;
430     swt->iterator_next = table_hash2_next;
431     swt->iterator_destroy = table_hash2_iterator_destroy;
432
433     return swt;
434
435 out_free_subtable0:
436     table_hash_destroy(t2->subtable[0]);
437 out_free_t2:
438     free(t2);
439     return NULL;
440 }