flow: Use bit-mask for IP protocol match, instead of FWW_* flag.
[sliver-openvswitch.git] / tests / test-classifier.c
1 /*
2  * Copyright (c) 2009, 2010, 2011, 2012 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /* "White box" tests for classifier.
18  *
19  * With very few exceptions, these tests obtain complete coverage of every
20  * basic block and every branch in the classifier implementation, e.g. a clean
21  * report from "gcov -b".  (Covering the exceptions would require finding
22  * collisions in the hash function used for flow data, etc.)
23  *
24  * This test should receive a clean report from "valgrind --leak-check=full":
25  * it frees every heap block that it allocates.
26  */
27
28 #include <config.h>
29 #include "classifier.h"
30 #include <errno.h>
31 #include <limits.h>
32 #include "byte-order.h"
33 #include "command-line.h"
34 #include "flow.h"
35 #include "ofp-util.h"
36 #include "packets.h"
37 #include "unaligned.h"
38
39 #undef NDEBUG
40 #include <assert.h>
41
42 /* Fields in a rule. */
43 #define CLS_FIELDS                                                  \
44     /*                                    struct flow  all-caps */  \
45     /*        FWW_* bit(s)                member name  name     */  \
46     /*        --------------------------  -----------  -------- */  \
47     CLS_FIELD(0,                          tun_id,      TUN_ID)      \
48     CLS_FIELD(0,                          metadata,    METADATA)    \
49     CLS_FIELD(0,                          nw_src,      NW_SRC)      \
50     CLS_FIELD(0,                          nw_dst,      NW_DST)      \
51     CLS_FIELD(FWW_IN_PORT,                in_port,     IN_PORT)     \
52     CLS_FIELD(0,                          vlan_tci,    VLAN_TCI)    \
53     CLS_FIELD(FWW_DL_TYPE,                dl_type,     DL_TYPE)     \
54     CLS_FIELD(0,                          tp_src,      TP_SRC)      \
55     CLS_FIELD(0,                          tp_dst,      TP_DST)      \
56     CLS_FIELD(0,                          dl_src,      DL_SRC)      \
57     CLS_FIELD(0,                          dl_dst,      DL_DST)      \
58     CLS_FIELD(0,                          nw_proto,    NW_PROTO)    \
59     CLS_FIELD(0,                          nw_tos,      NW_DSCP)
60
61 /* Field indexes.
62  *
63  * (These are also indexed into struct classifier's 'tables' array.) */
64 enum {
65 #define CLS_FIELD(WILDCARDS, MEMBER, NAME) CLS_F_IDX_##NAME,
66     CLS_FIELDS
67 #undef CLS_FIELD
68     CLS_N_FIELDS
69 };
70
71 /* Field information. */
72 struct cls_field {
73     int ofs;                    /* Offset in struct flow. */
74     int len;                    /* Length in bytes. */
75     flow_wildcards_t wildcards; /* FWW_* bit or bits for this field. */
76     const char *name;           /* Name (for debugging). */
77 };
78
79 static const struct cls_field cls_fields[CLS_N_FIELDS] = {
80 #define CLS_FIELD(WILDCARDS, MEMBER, NAME)      \
81     { offsetof(struct flow, MEMBER),            \
82       sizeof ((struct flow *)0)->MEMBER,        \
83       WILDCARDS,                                \
84       #NAME },
85     CLS_FIELDS
86 #undef CLS_FIELD
87 };
88
89 struct test_rule {
90     int aux;                    /* Auxiliary data. */
91     struct cls_rule cls_rule;   /* Classifier rule data. */
92 };
93
94 static struct test_rule *
95 test_rule_from_cls_rule(const struct cls_rule *rule)
96 {
97     return rule ? CONTAINER_OF(rule, struct test_rule, cls_rule) : NULL;
98 }
99
100 /* Trivial (linear) classifier. */
101 struct tcls {
102     size_t n_rules;
103     size_t allocated_rules;
104     struct test_rule **rules;
105 };
106
107 static void
108 tcls_init(struct tcls *tcls)
109 {
110     tcls->n_rules = 0;
111     tcls->allocated_rules = 0;
112     tcls->rules = NULL;
113 }
114
115 static void
116 tcls_destroy(struct tcls *tcls)
117 {
118     if (tcls) {
119         size_t i;
120
121         for (i = 0; i < tcls->n_rules; i++) {
122             free(tcls->rules[i]);
123         }
124         free(tcls->rules);
125     }
126 }
127
128 static bool
129 tcls_is_empty(const struct tcls *tcls)
130 {
131     return tcls->n_rules == 0;
132 }
133
134 static struct test_rule *
135 tcls_insert(struct tcls *tcls, const struct test_rule *rule)
136 {
137     size_t i;
138
139     assert(!flow_wildcards_is_exact(&rule->cls_rule.wc)
140            || rule->cls_rule.priority == UINT_MAX);
141     for (i = 0; i < tcls->n_rules; i++) {
142         const struct cls_rule *pos = &tcls->rules[i]->cls_rule;
143         if (cls_rule_equal(pos, &rule->cls_rule)) {
144             /* Exact match. */
145             free(tcls->rules[i]);
146             tcls->rules[i] = xmemdup(rule, sizeof *rule);
147             return tcls->rules[i];
148         } else if (pos->priority < rule->cls_rule.priority) {
149             break;
150         }
151     }
152
153     if (tcls->n_rules >= tcls->allocated_rules) {
154         tcls->rules = x2nrealloc(tcls->rules, &tcls->allocated_rules,
155                                  sizeof *tcls->rules);
156     }
157     if (i != tcls->n_rules) {
158         memmove(&tcls->rules[i + 1], &tcls->rules[i],
159                 sizeof *tcls->rules * (tcls->n_rules - i));
160     }
161     tcls->rules[i] = xmemdup(rule, sizeof *rule);
162     tcls->n_rules++;
163     return tcls->rules[i];
164 }
165
166 static void
167 tcls_remove(struct tcls *cls, const struct test_rule *rule)
168 {
169     size_t i;
170
171     for (i = 0; i < cls->n_rules; i++) {
172         struct test_rule *pos = cls->rules[i];
173         if (pos == rule) {
174             free(pos);
175             memmove(&cls->rules[i], &cls->rules[i + 1],
176                     sizeof *cls->rules * (cls->n_rules - i - 1));
177             cls->n_rules--;
178             return;
179         }
180     }
181     NOT_REACHED();
182 }
183
184 static bool
185 match(const struct cls_rule *wild, const struct flow *fixed)
186 {
187     int f_idx;
188
189     for (f_idx = 0; f_idx < CLS_N_FIELDS; f_idx++) {
190         const struct cls_field *f = &cls_fields[f_idx];
191         bool eq;
192
193         if (f->wildcards) {
194             void *wild_field = (char *) &wild->flow + f->ofs;
195             void *fixed_field = (char *) fixed + f->ofs;
196             eq = ((wild->wc.wildcards & f->wildcards) == f->wildcards
197                   || !memcmp(wild_field, fixed_field, f->len));
198         } else if (f_idx == CLS_F_IDX_NW_SRC) {
199             eq = !((fixed->nw_src ^ wild->flow.nw_src) & wild->wc.nw_src_mask);
200         } else if (f_idx == CLS_F_IDX_NW_DST) {
201             eq = !((fixed->nw_dst ^ wild->flow.nw_dst) & wild->wc.nw_dst_mask);
202         } else if (f_idx == CLS_F_IDX_TP_SRC) {
203             eq = !((fixed->tp_src ^ wild->flow.tp_src) & wild->wc.tp_src_mask);
204         } else if (f_idx == CLS_F_IDX_TP_DST) {
205             eq = !((fixed->tp_dst ^ wild->flow.tp_dst) & wild->wc.tp_dst_mask);
206         } else if (f_idx == CLS_F_IDX_DL_SRC) {
207             eq = eth_addr_equal_except(fixed->dl_src, wild->flow.dl_src,
208                                        wild->wc.dl_src_mask);
209         } else if (f_idx == CLS_F_IDX_DL_DST) {
210             eq = eth_addr_equal_except(fixed->dl_dst, wild->flow.dl_dst,
211                                        wild->wc.dl_dst_mask);
212         } else if (f_idx == CLS_F_IDX_VLAN_TCI) {
213             eq = !((fixed->vlan_tci ^ wild->flow.vlan_tci)
214                    & wild->wc.vlan_tci_mask);
215         } else if (f_idx == CLS_F_IDX_TUN_ID) {
216             eq = !((fixed->tun_id ^ wild->flow.tun_id) & wild->wc.tun_id_mask);
217         } else if (f_idx == CLS_F_IDX_METADATA) {
218             eq = !((fixed->metadata ^ wild->flow.metadata)
219                    & wild->wc.metadata_mask);
220         } else if (f_idx == CLS_F_IDX_NW_DSCP) {
221             eq = !((fixed->nw_tos ^ wild->flow.nw_tos) &
222                    (wild->wc.nw_tos_mask & IP_DSCP_MASK));
223         } else if (f_idx == CLS_F_IDX_NW_PROTO) {
224             eq = !((fixed->nw_proto ^ wild->flow.nw_proto)
225                    & wild->wc.nw_proto_mask);
226         } else {
227             NOT_REACHED();
228         }
229
230         if (!eq) {
231             return false;
232         }
233     }
234     return true;
235 }
236
237 static struct cls_rule *
238 tcls_lookup(const struct tcls *cls, const struct flow *flow)
239 {
240     size_t i;
241
242     for (i = 0; i < cls->n_rules; i++) {
243         struct test_rule *pos = cls->rules[i];
244         if (match(&pos->cls_rule, flow)) {
245             return &pos->cls_rule;
246         }
247     }
248     return NULL;
249 }
250
251 static void
252 tcls_delete_matches(struct tcls *cls, const struct cls_rule *target)
253 {
254     size_t i;
255
256     for (i = 0; i < cls->n_rules; ) {
257         struct test_rule *pos = cls->rules[i];
258         if (!flow_wildcards_has_extra(&pos->cls_rule.wc, &target->wc)
259             && match(target, &pos->cls_rule.flow)) {
260             tcls_remove(cls, pos);
261         } else {
262             i++;
263         }
264     }
265 }
266 \f
267 static ovs_be32 nw_src_values[] = { CONSTANT_HTONL(0xc0a80001),
268                                     CONSTANT_HTONL(0xc0a04455) };
269 static ovs_be32 nw_dst_values[] = { CONSTANT_HTONL(0xc0a80002),
270                                     CONSTANT_HTONL(0xc0a04455) };
271 static ovs_be64 tun_id_values[] = {
272     0,
273     CONSTANT_HTONLL(UINT64_C(0xfedcba9876543210)) };
274 static ovs_be64 metadata_values[] = {
275     0,
276     CONSTANT_HTONLL(UINT64_C(0xfedcba9876543210)) };
277 static uint16_t in_port_values[] = { 1, OFPP_LOCAL };
278 static ovs_be16 vlan_tci_values[] = { CONSTANT_HTONS(101), CONSTANT_HTONS(0) };
279 static ovs_be16 dl_type_values[]
280             = { CONSTANT_HTONS(ETH_TYPE_IP), CONSTANT_HTONS(ETH_TYPE_ARP) };
281 static ovs_be16 tp_src_values[] = { CONSTANT_HTONS(49362),
282                                     CONSTANT_HTONS(80) };
283 static ovs_be16 tp_dst_values[] = { CONSTANT_HTONS(6667), CONSTANT_HTONS(22) };
284 static uint8_t dl_src_values[][6] = { { 0x00, 0x02, 0xe3, 0x0f, 0x80, 0xa4 },
285                                       { 0x5e, 0x33, 0x7f, 0x5f, 0x1e, 0x99 } };
286 static uint8_t dl_dst_values[][6] = { { 0x4a, 0x27, 0x71, 0xae, 0x64, 0xc1 },
287                                       { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff } };
288 static uint8_t nw_proto_values[] = { IPPROTO_TCP, IPPROTO_ICMP };
289 static uint8_t nw_dscp_values[] = { 48, 0 };
290
291 static void *values[CLS_N_FIELDS][2];
292
293 static void
294 init_values(void)
295 {
296     values[CLS_F_IDX_TUN_ID][0] = &tun_id_values[0];
297     values[CLS_F_IDX_TUN_ID][1] = &tun_id_values[1];
298
299     values[CLS_F_IDX_METADATA][0] = &metadata_values[0];
300     values[CLS_F_IDX_METADATA][1] = &metadata_values[1];
301
302     values[CLS_F_IDX_IN_PORT][0] = &in_port_values[0];
303     values[CLS_F_IDX_IN_PORT][1] = &in_port_values[1];
304
305     values[CLS_F_IDX_VLAN_TCI][0] = &vlan_tci_values[0];
306     values[CLS_F_IDX_VLAN_TCI][1] = &vlan_tci_values[1];
307
308     values[CLS_F_IDX_DL_SRC][0] = dl_src_values[0];
309     values[CLS_F_IDX_DL_SRC][1] = dl_src_values[1];
310
311     values[CLS_F_IDX_DL_DST][0] = dl_dst_values[0];
312     values[CLS_F_IDX_DL_DST][1] = dl_dst_values[1];
313
314     values[CLS_F_IDX_DL_TYPE][0] = &dl_type_values[0];
315     values[CLS_F_IDX_DL_TYPE][1] = &dl_type_values[1];
316
317     values[CLS_F_IDX_NW_SRC][0] = &nw_src_values[0];
318     values[CLS_F_IDX_NW_SRC][1] = &nw_src_values[1];
319
320     values[CLS_F_IDX_NW_DST][0] = &nw_dst_values[0];
321     values[CLS_F_IDX_NW_DST][1] = &nw_dst_values[1];
322
323     values[CLS_F_IDX_NW_PROTO][0] = &nw_proto_values[0];
324     values[CLS_F_IDX_NW_PROTO][1] = &nw_proto_values[1];
325
326     values[CLS_F_IDX_NW_DSCP][0] = &nw_dscp_values[0];
327     values[CLS_F_IDX_NW_DSCP][1] = &nw_dscp_values[1];
328
329     values[CLS_F_IDX_TP_SRC][0] = &tp_src_values[0];
330     values[CLS_F_IDX_TP_SRC][1] = &tp_src_values[1];
331
332     values[CLS_F_IDX_TP_DST][0] = &tp_dst_values[0];
333     values[CLS_F_IDX_TP_DST][1] = &tp_dst_values[1];
334 }
335
336 #define N_NW_SRC_VALUES ARRAY_SIZE(nw_src_values)
337 #define N_NW_DST_VALUES ARRAY_SIZE(nw_dst_values)
338 #define N_TUN_ID_VALUES ARRAY_SIZE(tun_id_values)
339 #define N_METADATA_VALUES ARRAY_SIZE(metadata_values)
340 #define N_IN_PORT_VALUES ARRAY_SIZE(in_port_values)
341 #define N_VLAN_TCI_VALUES ARRAY_SIZE(vlan_tci_values)
342 #define N_DL_TYPE_VALUES ARRAY_SIZE(dl_type_values)
343 #define N_TP_SRC_VALUES ARRAY_SIZE(tp_src_values)
344 #define N_TP_DST_VALUES ARRAY_SIZE(tp_dst_values)
345 #define N_DL_SRC_VALUES ARRAY_SIZE(dl_src_values)
346 #define N_DL_DST_VALUES ARRAY_SIZE(dl_dst_values)
347 #define N_NW_PROTO_VALUES ARRAY_SIZE(nw_proto_values)
348 #define N_NW_DSCP_VALUES ARRAY_SIZE(nw_dscp_values)
349
350 #define N_FLOW_VALUES (N_NW_SRC_VALUES *        \
351                        N_NW_DST_VALUES *        \
352                        N_TUN_ID_VALUES *        \
353                        N_IN_PORT_VALUES *       \
354                        N_VLAN_TCI_VALUES *       \
355                        N_DL_TYPE_VALUES *       \
356                        N_TP_SRC_VALUES *        \
357                        N_TP_DST_VALUES *        \
358                        N_DL_SRC_VALUES *        \
359                        N_DL_DST_VALUES *        \
360                        N_NW_PROTO_VALUES *      \
361                        N_NW_DSCP_VALUES)
362
363 static unsigned int
364 get_value(unsigned int *x, unsigned n_values)
365 {
366     unsigned int rem = *x % n_values;
367     *x /= n_values;
368     return rem;
369 }
370
371 static void
372 compare_classifiers(struct classifier *cls, struct tcls *tcls)
373 {
374     static const int confidence = 500;
375     unsigned int i;
376
377     assert(classifier_count(cls) == tcls->n_rules);
378     for (i = 0; i < confidence; i++) {
379         struct cls_rule *cr0, *cr1;
380         struct flow flow;
381         unsigned int x;
382
383         x = rand () % N_FLOW_VALUES;
384         flow.nw_src = nw_src_values[get_value(&x, N_NW_SRC_VALUES)];
385         flow.nw_dst = nw_dst_values[get_value(&x, N_NW_DST_VALUES)];
386         flow.tun_id = tun_id_values[get_value(&x, N_TUN_ID_VALUES)];
387         flow.metadata = metadata_values[get_value(&x, N_METADATA_VALUES)];
388         flow.in_port = in_port_values[get_value(&x, N_IN_PORT_VALUES)];
389         flow.vlan_tci = vlan_tci_values[get_value(&x, N_VLAN_TCI_VALUES)];
390         flow.dl_type = dl_type_values[get_value(&x, N_DL_TYPE_VALUES)];
391         flow.tp_src = tp_src_values[get_value(&x, N_TP_SRC_VALUES)];
392         flow.tp_dst = tp_dst_values[get_value(&x, N_TP_DST_VALUES)];
393         memcpy(flow.dl_src, dl_src_values[get_value(&x, N_DL_SRC_VALUES)],
394                ETH_ADDR_LEN);
395         memcpy(flow.dl_dst, dl_dst_values[get_value(&x, N_DL_DST_VALUES)],
396                ETH_ADDR_LEN);
397         flow.nw_proto = nw_proto_values[get_value(&x, N_NW_PROTO_VALUES)];
398         flow.nw_tos = nw_dscp_values[get_value(&x, N_NW_DSCP_VALUES)];
399
400         cr0 = classifier_lookup(cls, &flow);
401         cr1 = tcls_lookup(tcls, &flow);
402         assert((cr0 == NULL) == (cr1 == NULL));
403         if (cr0 != NULL) {
404             const struct test_rule *tr0 = test_rule_from_cls_rule(cr0);
405             const struct test_rule *tr1 = test_rule_from_cls_rule(cr1);
406
407             assert(cls_rule_equal(cr0, cr1));
408             assert(tr0->aux == tr1->aux);
409         }
410     }
411 }
412
413 static void
414 destroy_classifier(struct classifier *cls)
415 {
416     struct test_rule *rule, *next_rule;
417     struct cls_cursor cursor;
418
419     cls_cursor_init(&cursor, cls, NULL);
420     CLS_CURSOR_FOR_EACH_SAFE (rule, next_rule, cls_rule, &cursor) {
421         classifier_remove(cls, &rule->cls_rule);
422         free(rule);
423     }
424     classifier_destroy(cls);
425 }
426
427 static void
428 check_tables(const struct classifier *cls,
429              int n_tables, int n_rules, int n_dups)
430 {
431     const struct cls_table *table;
432     struct test_rule *test_rule;
433     struct cls_cursor cursor;
434     int found_tables = 0;
435     int found_rules = 0;
436     int found_dups = 0;
437     int found_rules2 = 0;
438
439     HMAP_FOR_EACH (table, hmap_node, &cls->tables) {
440         const struct cls_rule *head;
441
442         assert(!hmap_is_empty(&table->rules));
443
444         found_tables++;
445         HMAP_FOR_EACH (head, hmap_node, &table->rules) {
446             unsigned int prev_priority = UINT_MAX;
447             const struct cls_rule *rule;
448
449             found_rules++;
450             LIST_FOR_EACH (rule, list, &head->list) {
451                 assert(rule->priority < prev_priority);
452                 prev_priority = rule->priority;
453                 found_rules++;
454                 found_dups++;
455                 assert(classifier_find_rule_exactly(cls, rule) == rule);
456             }
457         }
458     }
459
460     assert(found_tables == hmap_count(&cls->tables));
461     assert(n_tables == -1 || n_tables == hmap_count(&cls->tables));
462     assert(n_rules == -1 || found_rules == n_rules);
463     assert(n_dups == -1 || found_dups == n_dups);
464
465     cls_cursor_init(&cursor, cls, NULL);
466     CLS_CURSOR_FOR_EACH (test_rule, cls_rule, &cursor) {
467         found_rules2++;
468     }
469     assert(found_rules == found_rules2);
470 }
471
472 static struct test_rule *
473 make_rule(int wc_fields, unsigned int priority, int value_pat)
474 {
475     const struct cls_field *f;
476     struct test_rule *rule;
477
478     rule = xzalloc(sizeof *rule);
479     cls_rule_init_catchall(&rule->cls_rule, wc_fields ? priority : UINT_MAX);
480     for (f = &cls_fields[0]; f < &cls_fields[CLS_N_FIELDS]; f++) {
481         int f_idx = f - cls_fields;
482         int value_idx = (value_pat & (1u << f_idx)) != 0;
483         memcpy((char *) &rule->cls_rule.flow + f->ofs,
484                values[f_idx][value_idx], f->len);
485
486         if (f->wildcards) {
487             rule->cls_rule.wc.wildcards &= ~f->wildcards;
488         } else if (f_idx == CLS_F_IDX_NW_SRC) {
489             rule->cls_rule.wc.nw_src_mask = htonl(UINT32_MAX);
490         } else if (f_idx == CLS_F_IDX_NW_DST) {
491             rule->cls_rule.wc.nw_dst_mask = htonl(UINT32_MAX);
492         } else if (f_idx == CLS_F_IDX_TP_SRC) {
493             rule->cls_rule.wc.tp_src_mask = htons(UINT16_MAX);
494         } else if (f_idx == CLS_F_IDX_TP_DST) {
495             rule->cls_rule.wc.tp_dst_mask = htons(UINT16_MAX);
496         } else if (f_idx == CLS_F_IDX_DL_SRC) {
497             memset(rule->cls_rule.wc.dl_src_mask, 0xff, ETH_ADDR_LEN);
498         } else if (f_idx == CLS_F_IDX_DL_DST) {
499             memset(rule->cls_rule.wc.dl_dst_mask, 0xff, ETH_ADDR_LEN);
500         } else if (f_idx == CLS_F_IDX_VLAN_TCI) {
501             rule->cls_rule.wc.vlan_tci_mask = htons(UINT16_MAX);
502         } else if (f_idx == CLS_F_IDX_TUN_ID) {
503             rule->cls_rule.wc.tun_id_mask = htonll(UINT64_MAX);
504         } else if (f_idx == CLS_F_IDX_METADATA) {
505             rule->cls_rule.wc.metadata_mask = htonll(UINT64_MAX);
506         } else if (f_idx == CLS_F_IDX_NW_DSCP) {
507             rule->cls_rule.wc.nw_tos_mask |= IP_DSCP_MASK;
508         } else if (f_idx == CLS_F_IDX_NW_PROTO) {
509             rule->cls_rule.wc.nw_proto_mask = UINT8_MAX;
510         } else {
511             NOT_REACHED();
512         }
513     }
514     return rule;
515 }
516
517 static void
518 shuffle(unsigned int *p, size_t n)
519 {
520     for (; n > 1; n--, p++) {
521         unsigned int *q = &p[rand() % n];
522         unsigned int tmp = *p;
523         *p = *q;
524         *q = tmp;
525     }
526 }
527 \f
528 /* Tests an empty classifier. */
529 static void
530 test_empty(int argc OVS_UNUSED, char *argv[] OVS_UNUSED)
531 {
532     struct classifier cls;
533     struct tcls tcls;
534
535     classifier_init(&cls);
536     tcls_init(&tcls);
537     assert(classifier_is_empty(&cls));
538     assert(tcls_is_empty(&tcls));
539     compare_classifiers(&cls, &tcls);
540     classifier_destroy(&cls);
541     tcls_destroy(&tcls);
542 }
543
544 /* Destroys a null classifier. */
545 static void
546 test_destroy_null(int argc OVS_UNUSED, char *argv[] OVS_UNUSED)
547 {
548     classifier_destroy(NULL);
549 }
550
551 /* Tests classification with one rule at a time. */
552 static void
553 test_single_rule(int argc OVS_UNUSED, char *argv[] OVS_UNUSED)
554 {
555     unsigned int wc_fields;     /* Hilarious. */
556
557     for (wc_fields = 0; wc_fields < (1u << CLS_N_FIELDS); wc_fields++) {
558         struct classifier cls;
559         struct test_rule *rule, *tcls_rule;
560         struct tcls tcls;
561
562         rule = make_rule(wc_fields,
563                          hash_bytes(&wc_fields, sizeof wc_fields, 0), 0);
564
565         classifier_init(&cls);
566         tcls_init(&tcls);
567
568         tcls_rule = tcls_insert(&tcls, rule);
569         classifier_insert(&cls, &rule->cls_rule);
570         check_tables(&cls, 1, 1, 0);
571         compare_classifiers(&cls, &tcls);
572
573         classifier_remove(&cls, &rule->cls_rule);
574         tcls_remove(&tcls, tcls_rule);
575         assert(classifier_is_empty(&cls));
576         assert(tcls_is_empty(&tcls));
577         compare_classifiers(&cls, &tcls);
578
579         free(rule);
580         classifier_destroy(&cls);
581         tcls_destroy(&tcls);
582     }
583 }
584
585 /* Tests replacing one rule by another. */
586 static void
587 test_rule_replacement(int argc OVS_UNUSED, char *argv[] OVS_UNUSED)
588 {
589     unsigned int wc_fields;
590
591     for (wc_fields = 0; wc_fields < (1u << CLS_N_FIELDS); wc_fields++) {
592         struct classifier cls;
593         struct test_rule *rule1;
594         struct test_rule *rule2;
595         struct tcls tcls;
596
597         rule1 = make_rule(wc_fields, OFP_DEFAULT_PRIORITY, UINT_MAX);
598         rule2 = make_rule(wc_fields, OFP_DEFAULT_PRIORITY, UINT_MAX);
599         rule2->aux += 5;
600         rule2->aux += 5;
601
602         classifier_init(&cls);
603         tcls_init(&tcls);
604         tcls_insert(&tcls, rule1);
605         classifier_insert(&cls, &rule1->cls_rule);
606         check_tables(&cls, 1, 1, 0);
607         compare_classifiers(&cls, &tcls);
608         tcls_destroy(&tcls);
609
610         tcls_init(&tcls);
611         tcls_insert(&tcls, rule2);
612         assert(test_rule_from_cls_rule(
613                    classifier_replace(&cls, &rule2->cls_rule)) == rule1);
614         free(rule1);
615         check_tables(&cls, 1, 1, 0);
616         compare_classifiers(&cls, &tcls);
617         tcls_destroy(&tcls);
618         destroy_classifier(&cls);
619     }
620 }
621
622 static int
623 factorial(int n_items)
624 {
625     int n, i;
626
627     n = 1;
628     for (i = 2; i <= n_items; i++) {
629         n *= i;
630     }
631     return n;
632 }
633
634 static void
635 swap(int *a, int *b)
636 {
637     int tmp = *a;
638     *a = *b;
639     *b = tmp;
640 }
641
642 static void
643 reverse(int *a, int n)
644 {
645     int i;
646
647     for (i = 0; i < n / 2; i++) {
648         int j = n - (i + 1);
649         swap(&a[i], &a[j]);
650     }
651 }
652
653 static bool
654 next_permutation(int *a, int n)
655 {
656     int k;
657
658     for (k = n - 2; k >= 0; k--) {
659         if (a[k] < a[k + 1]) {
660             int l;
661
662             for (l = n - 1; ; l--) {
663                 if (a[l] > a[k]) {
664                     swap(&a[k], &a[l]);
665                     reverse(a + (k + 1), n - (k + 1));
666                     return true;
667                 }
668             }
669         }
670     }
671     return false;
672 }
673
674 /* Tests classification with rules that have the same matching criteria. */
675 static void
676 test_many_rules_in_one_list (int argc OVS_UNUSED, char *argv[] OVS_UNUSED)
677 {
678     enum { N_RULES = 3 };
679     int n_pris;
680
681     for (n_pris = N_RULES; n_pris >= 1; n_pris--) {
682         int ops[N_RULES * 2];
683         int pris[N_RULES];
684         int n_permutations;
685         int i;
686
687         pris[0] = 0;
688         for (i = 1; i < N_RULES; i++) {
689             pris[i] = pris[i - 1] + (n_pris > i);
690         }
691
692         for (i = 0; i < N_RULES * 2; i++) {
693             ops[i] = i / 2;
694         }
695
696         n_permutations = 0;
697         do {
698             struct test_rule *rules[N_RULES];
699             struct test_rule *tcls_rules[N_RULES];
700             int pri_rules[N_RULES];
701             struct classifier cls;
702             struct tcls tcls;
703
704             n_permutations++;
705
706             for (i = 0; i < N_RULES; i++) {
707                 rules[i] = make_rule(456, pris[i], 0);
708                 tcls_rules[i] = NULL;
709                 pri_rules[i] = -1;
710             }
711
712             classifier_init(&cls);
713             tcls_init(&tcls);
714
715             for (i = 0; i < ARRAY_SIZE(ops); i++) {
716                 int j = ops[i];
717                 int m, n;
718
719                 if (!tcls_rules[j]) {
720                     struct test_rule *displaced_rule;
721
722                     tcls_rules[j] = tcls_insert(&tcls, rules[j]);
723                     displaced_rule = test_rule_from_cls_rule(
724                         classifier_replace(&cls, &rules[j]->cls_rule));
725                     if (pri_rules[pris[j]] >= 0) {
726                         int k = pri_rules[pris[j]];
727                         assert(displaced_rule != NULL);
728                         assert(displaced_rule != rules[j]);
729                         assert(pris[j] == displaced_rule->cls_rule.priority);
730                         tcls_rules[k] = NULL;
731                     } else {
732                         assert(displaced_rule == NULL);
733                     }
734                     pri_rules[pris[j]] = j;
735                 } else {
736                     classifier_remove(&cls, &rules[j]->cls_rule);
737                     tcls_remove(&tcls, tcls_rules[j]);
738                     tcls_rules[j] = NULL;
739                     pri_rules[pris[j]] = -1;
740                 }
741
742                 n = 0;
743                 for (m = 0; m < N_RULES; m++) {
744                     n += tcls_rules[m] != NULL;
745                 }
746                 check_tables(&cls, n > 0, n, n - 1);
747
748                 compare_classifiers(&cls, &tcls);
749             }
750
751             classifier_destroy(&cls);
752             tcls_destroy(&tcls);
753
754             for (i = 0; i < N_RULES; i++) {
755                 free(rules[i]);
756             }
757         } while (next_permutation(ops, ARRAY_SIZE(ops)));
758         assert(n_permutations == (factorial(N_RULES * 2) >> N_RULES));
759     }
760 }
761
762 static int
763 count_ones(unsigned long int x)
764 {
765     int n = 0;
766
767     while (x) {
768         x &= x - 1;
769         n++;
770     }
771
772     return n;
773 }
774
775 static bool
776 array_contains(int *array, int n, int value)
777 {
778     int i;
779
780     for (i = 0; i < n; i++) {
781         if (array[i] == value) {
782             return true;
783         }
784     }
785
786     return false;
787 }
788
789 /* Tests classification with two rules at a time that fall into the same
790  * table but different lists. */
791 static void
792 test_many_rules_in_one_table(int argc OVS_UNUSED, char *argv[] OVS_UNUSED)
793 {
794     int iteration;
795
796     for (iteration = 0; iteration < 50; iteration++) {
797         enum { N_RULES = 20 };
798         struct test_rule *rules[N_RULES];
799         struct test_rule *tcls_rules[N_RULES];
800         struct classifier cls;
801         struct tcls tcls;
802         int value_pats[N_RULES];
803         int value_mask;
804         int wcf;
805         int i;
806
807         do {
808             wcf = rand() & ((1u << CLS_N_FIELDS) - 1);
809             value_mask = ~wcf & ((1u << CLS_N_FIELDS) - 1);
810         } while ((1 << count_ones(value_mask)) < N_RULES);
811
812         classifier_init(&cls);
813         tcls_init(&tcls);
814
815         for (i = 0; i < N_RULES; i++) {
816             unsigned int priority = rand();
817
818             do {
819                 value_pats[i] = rand() & value_mask;
820             } while (array_contains(value_pats, i, value_pats[i]));
821
822             rules[i] = make_rule(wcf, priority, value_pats[i]);
823             tcls_rules[i] = tcls_insert(&tcls, rules[i]);
824             classifier_insert(&cls, &rules[i]->cls_rule);
825
826             check_tables(&cls, 1, i + 1, 0);
827             compare_classifiers(&cls, &tcls);
828         }
829
830         for (i = 0; i < N_RULES; i++) {
831             tcls_remove(&tcls, tcls_rules[i]);
832             classifier_remove(&cls, &rules[i]->cls_rule);
833             free(rules[i]);
834
835             check_tables(&cls, i < N_RULES - 1, N_RULES - (i + 1), 0);
836             compare_classifiers(&cls, &tcls);
837         }
838
839         classifier_destroy(&cls);
840         tcls_destroy(&tcls);
841     }
842 }
843
844 /* Tests classification with many rules at a time that fall into random lists
845  * in 'n' tables. */
846 static void
847 test_many_rules_in_n_tables(int n_tables)
848 {
849     enum { MAX_RULES = 50 };
850     int wcfs[10];
851     int iteration;
852     int i;
853
854     assert(n_tables < 10);
855     for (i = 0; i < n_tables; i++) {
856         do {
857             wcfs[i] = rand() & ((1u << CLS_N_FIELDS) - 1);
858         } while (array_contains(wcfs, i, wcfs[i]));
859     }
860
861     for (iteration = 0; iteration < 30; iteration++) {
862         unsigned int priorities[MAX_RULES];
863         struct classifier cls;
864         struct tcls tcls;
865
866         srand(iteration);
867         for (i = 0; i < MAX_RULES; i++) {
868             priorities[i] = i * 129;
869         }
870         shuffle(priorities, ARRAY_SIZE(priorities));
871
872         classifier_init(&cls);
873         tcls_init(&tcls);
874
875         for (i = 0; i < MAX_RULES; i++) {
876             struct test_rule *rule;
877             unsigned int priority = priorities[i];
878             int wcf = wcfs[rand() % n_tables];
879             int value_pat = rand() & ((1u << CLS_N_FIELDS) - 1);
880             rule = make_rule(wcf, priority, value_pat);
881             tcls_insert(&tcls, rule);
882             classifier_insert(&cls, &rule->cls_rule);
883             check_tables(&cls, -1, i + 1, -1);
884             compare_classifiers(&cls, &tcls);
885         }
886
887         while (!classifier_is_empty(&cls)) {
888             struct test_rule *rule, *next_rule;
889             struct test_rule *target;
890             struct cls_cursor cursor;
891
892             target = xmemdup(tcls.rules[rand() % tcls.n_rules],
893                              sizeof(struct test_rule));
894
895             cls_cursor_init(&cursor, &cls, &target->cls_rule);
896             CLS_CURSOR_FOR_EACH_SAFE (rule, next_rule, cls_rule, &cursor) {
897                 classifier_remove(&cls, &rule->cls_rule);
898                 free(rule);
899             }
900             tcls_delete_matches(&tcls, &target->cls_rule);
901             compare_classifiers(&cls, &tcls);
902             check_tables(&cls, -1, -1, -1);
903             free(target);
904         }
905
906         destroy_classifier(&cls);
907         tcls_destroy(&tcls);
908     }
909 }
910
911 static void
912 test_many_rules_in_two_tables(int argc OVS_UNUSED, char *argv[] OVS_UNUSED)
913 {
914     test_many_rules_in_n_tables(2);
915 }
916
917 static void
918 test_many_rules_in_five_tables(int argc OVS_UNUSED, char *argv[] OVS_UNUSED)
919 {
920     test_many_rules_in_n_tables(5);
921 }
922 \f
923 static const struct command commands[] = {
924     {"empty", 0, 0, test_empty},
925     {"destroy-null", 0, 0, test_destroy_null},
926     {"single-rule", 0, 0, test_single_rule},
927     {"rule-replacement", 0, 0, test_rule_replacement},
928     {"many-rules-in-one-list", 0, 0, test_many_rules_in_one_list},
929     {"many-rules-in-one-table", 0, 0, test_many_rules_in_one_table},
930     {"many-rules-in-two-tables", 0, 0, test_many_rules_in_two_tables},
931     {"many-rules-in-five-tables", 0, 0, test_many_rules_in_five_tables},
932     {NULL, 0, 0, NULL},
933 };
934
935 int
936 main(int argc, char *argv[])
937 {
938     set_program_name(argv[0]);
939     init_values();
940     run_command(argc - 1, argv + 1, commands);
941     return 0;
942 }