2 * Copyright (c) 2009, 2010, 2011 Nicira Networks.
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:
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 #include "classifier.h"
21 #include <netinet/in.h>
22 #include "byte-order.h"
23 #include "dynamic-string.h"
30 static struct cls_table *find_table(const struct classifier *,
31 const struct flow_wildcards *);
32 static struct cls_table *insert_table(struct classifier *,
33 const struct flow_wildcards *);
35 static struct cls_table *classifier_first_table(const struct classifier *);
36 static struct cls_table *classifier_next_table(const struct classifier *,
37 const struct cls_table *);
38 static void destroy_table(struct classifier *, struct cls_table *);
40 static struct cls_rule *find_match(const struct cls_table *,
42 static struct cls_rule *find_equal(struct cls_table *, const struct flow *,
44 static struct cls_rule *insert_rule(struct cls_table *, struct cls_rule *);
46 static bool flow_equal_except(const struct flow *, const struct flow *,
47 const struct flow_wildcards *);
48 static void zero_wildcards(struct flow *, const struct flow_wildcards *);
50 /* Iterates RULE over HEAD and all of the cls_rules on HEAD->list. */
51 #define FOR_EACH_RULE_IN_LIST(RULE, HEAD) \
52 for ((RULE) = (HEAD); (RULE) != NULL; (RULE) = next_rule_in_list(RULE))
53 #define FOR_EACH_RULE_IN_LIST_SAFE(RULE, NEXT, HEAD) \
54 for ((RULE) = (HEAD); \
55 (RULE) != NULL && ((NEXT) = next_rule_in_list(RULE), true); \
58 static struct cls_rule *next_rule_in_list__(struct cls_rule *);
59 static struct cls_rule *next_rule_in_list(struct cls_rule *);
61 static struct cls_table *
62 cls_table_from_hmap_node(const struct hmap_node *node)
64 return node ? CONTAINER_OF(node, struct cls_table, hmap_node) : NULL;
67 /* Converts the flow in 'flow' into a cls_rule in 'rule', with the given
68 * 'wildcards' and 'priority'. */
70 cls_rule_init(const struct flow *flow, const struct flow_wildcards *wildcards,
71 unsigned int priority, struct cls_rule *rule)
74 rule->wc = *wildcards;
75 rule->priority = priority;
76 cls_rule_zero_wildcarded_fields(rule);
79 /* Converts the flow in 'flow' into an exact-match cls_rule in 'rule', with the
80 * given 'priority'. (For OpenFlow 1.0, exact-match rule are always highest
81 * priority, so 'priority' should be at least 65535.) */
83 cls_rule_init_exact(const struct flow *flow,
84 unsigned int priority, struct cls_rule *rule)
87 flow_wildcards_init_exact(&rule->wc);
88 rule->priority = priority;
91 /* Initializes 'rule' as a "catch-all" rule that matches every packet, with
92 * priority 'priority'. */
94 cls_rule_init_catchall(struct cls_rule *rule, unsigned int priority)
96 memset(&rule->flow, 0, sizeof rule->flow);
97 flow_wildcards_init_catchall(&rule->wc);
98 rule->priority = priority;
101 /* For each bit or field wildcarded in 'rule', sets the corresponding bit or
102 * field in 'flow' to all-0-bits. It is important to maintain this invariant
103 * in a clr_rule that might be inserted into a classifier.
105 * It is never necessary to call this function directly for a cls_rule that is
106 * initialized or modified only by cls_rule_*() functions. It is useful to
107 * restore the invariant in a cls_rule whose 'wc' member is modified by hand.
110 cls_rule_zero_wildcarded_fields(struct cls_rule *rule)
112 zero_wildcards(&rule->flow, &rule->wc);
116 cls_rule_set_reg(struct cls_rule *rule, unsigned int reg_idx, uint32_t value)
118 cls_rule_set_reg_masked(rule, reg_idx, value, UINT32_MAX);
122 cls_rule_set_reg_masked(struct cls_rule *rule, unsigned int reg_idx,
123 uint32_t value, uint32_t mask)
125 assert(reg_idx < FLOW_N_REGS);
126 flow_wildcards_set_reg_mask(&rule->wc, reg_idx, mask);
127 rule->flow.regs[reg_idx] = value & mask;
131 cls_rule_set_tun_id(struct cls_rule *rule, ovs_be64 tun_id)
133 cls_rule_set_tun_id_masked(rule, tun_id, htonll(UINT64_MAX));
137 cls_rule_set_tun_id_masked(struct cls_rule *rule,
138 ovs_be64 tun_id, ovs_be64 mask)
140 rule->wc.tun_id_mask = mask;
141 rule->flow.tun_id = tun_id & mask;
145 cls_rule_set_in_port(struct cls_rule *rule, uint16_t ofp_port)
147 rule->wc.wildcards &= ~FWW_IN_PORT;
148 rule->flow.in_port = ofp_port;
152 cls_rule_set_dl_type(struct cls_rule *rule, ovs_be16 dl_type)
154 rule->wc.wildcards &= ~FWW_DL_TYPE;
155 rule->flow.dl_type = dl_type;
159 cls_rule_set_dl_src(struct cls_rule *rule, const uint8_t dl_src[ETH_ADDR_LEN])
161 rule->wc.wildcards &= ~FWW_DL_SRC;
162 memcpy(rule->flow.dl_src, dl_src, ETH_ADDR_LEN);
165 /* Modifies 'rule' so that the Ethernet address must match 'dl_dst' exactly. */
167 cls_rule_set_dl_dst(struct cls_rule *rule, const uint8_t dl_dst[ETH_ADDR_LEN])
169 rule->wc.wildcards &= ~(FWW_DL_DST | FWW_ETH_MCAST);
170 memcpy(rule->flow.dl_dst, dl_dst, ETH_ADDR_LEN);
173 /* Modifies 'rule' so that the Ethernet address must match 'dl_dst' after each
174 * byte is ANDed with the appropriate byte in 'mask'.
176 * This function will assert-fail if 'mask' is invalid. Only 'mask' values
177 * accepted by flow_wildcards_is_dl_dst_mask_valid() are allowed. */
179 cls_rule_set_dl_dst_masked(struct cls_rule *rule,
180 const uint8_t dl_dst[ETH_ADDR_LEN],
181 const uint8_t mask[ETH_ADDR_LEN])
183 flow_wildcards_t *wc = &rule->wc.wildcards;
186 *wc = flow_wildcards_set_dl_dst_mask(*wc, mask);
187 for (i = 0; i < ETH_ADDR_LEN; i++) {
188 rule->flow.dl_dst[i] = dl_dst[i] & mask[i];
193 cls_rule_set_dl_tci(struct cls_rule *rule, ovs_be16 tci)
195 cls_rule_set_dl_tci_masked(rule, tci, htons(0xffff));
199 cls_rule_set_dl_tci_masked(struct cls_rule *rule, ovs_be16 tci, ovs_be16 mask)
201 rule->flow.vlan_tci = tci & mask;
202 rule->wc.vlan_tci_mask = mask;
205 /* Modifies 'rule' so that the VLAN VID is wildcarded. If the PCP is already
206 * wildcarded, then 'rule' will match a packet regardless of whether it has an
207 * 802.1Q header or not. */
209 cls_rule_set_any_vid(struct cls_rule *rule)
211 if (rule->wc.vlan_tci_mask & htons(VLAN_PCP_MASK)) {
212 rule->wc.vlan_tci_mask &= ~htons(VLAN_VID_MASK);
213 rule->flow.vlan_tci &= ~htons(VLAN_VID_MASK);
215 cls_rule_set_dl_tci_masked(rule, htons(0), htons(0));
219 /* Modifies 'rule' depending on 'dl_vlan':
221 * - If 'dl_vlan' is htons(OFP_VLAN_NONE), makes 'rule' match only packets
222 * without an 802.1Q header.
224 * - Otherwise, makes 'rule' match only packets with an 802.1Q header whose
225 * VID equals the low 12 bits of 'dl_vlan'.
228 cls_rule_set_dl_vlan(struct cls_rule *rule, ovs_be16 dl_vlan)
230 if (dl_vlan == htons(OFP_VLAN_NONE)) {
231 cls_rule_set_dl_tci(rule, htons(0));
233 dl_vlan &= htons(VLAN_VID_MASK);
234 rule->flow.vlan_tci &= ~htons(VLAN_VID_MASK);
235 rule->flow.vlan_tci |= htons(VLAN_CFI) | dl_vlan;
236 rule->wc.vlan_tci_mask |= htons(VLAN_VID_MASK | VLAN_CFI);
240 /* Modifies 'rule' so that the VLAN PCP is wildcarded. If the VID is already
241 * wildcarded, then 'rule' will match a packet regardless of whether it has an
242 * 802.1Q header or not. */
244 cls_rule_set_any_pcp(struct cls_rule *rule)
246 if (rule->wc.vlan_tci_mask & htons(VLAN_VID_MASK)) {
247 rule->wc.vlan_tci_mask &= ~htons(VLAN_PCP_MASK);
248 rule->flow.vlan_tci &= ~htons(VLAN_PCP_MASK);
250 cls_rule_set_dl_tci_masked(rule, htons(0), htons(0));
254 /* Modifies 'rule' so that it matches only packets with an 802.1Q header whose
255 * PCP equals the low 3 bits of 'dl_vlan_pcp'. */
257 cls_rule_set_dl_vlan_pcp(struct cls_rule *rule, uint8_t dl_vlan_pcp)
260 rule->flow.vlan_tci &= ~htons(VLAN_PCP_MASK);
261 rule->flow.vlan_tci |= htons((dl_vlan_pcp << VLAN_PCP_SHIFT) | VLAN_CFI);
262 rule->wc.vlan_tci_mask |= htons(VLAN_CFI | VLAN_PCP_MASK);
266 cls_rule_set_tp_src(struct cls_rule *rule, ovs_be16 tp_src)
268 rule->wc.wildcards &= ~FWW_TP_SRC;
269 rule->flow.tp_src = tp_src;
273 cls_rule_set_tp_dst(struct cls_rule *rule, ovs_be16 tp_dst)
275 rule->wc.wildcards &= ~FWW_TP_DST;
276 rule->flow.tp_dst = tp_dst;
280 cls_rule_set_nw_proto(struct cls_rule *rule, uint8_t nw_proto)
282 rule->wc.wildcards &= ~FWW_NW_PROTO;
283 rule->flow.nw_proto = nw_proto;
287 cls_rule_set_nw_src(struct cls_rule *rule, ovs_be32 nw_src)
289 cls_rule_set_nw_src_masked(rule, nw_src, htonl(UINT32_MAX));
293 cls_rule_set_nw_src_masked(struct cls_rule *rule, ovs_be32 ip, ovs_be32 mask)
295 if (flow_wildcards_set_nw_src_mask(&rule->wc, mask)) {
296 rule->flow.nw_src = ip & mask;
304 cls_rule_set_nw_dst(struct cls_rule *rule, ovs_be32 nw_dst)
306 cls_rule_set_nw_dst_masked(rule, nw_dst, htonl(UINT32_MAX));
310 cls_rule_set_nw_dst_masked(struct cls_rule *rule, ovs_be32 ip, ovs_be32 mask)
312 if (flow_wildcards_set_nw_dst_mask(&rule->wc, mask)) {
313 rule->flow.nw_dst = ip & mask;
321 cls_rule_set_nw_tos(struct cls_rule *rule, uint8_t nw_tos)
323 rule->wc.wildcards &= ~FWW_NW_TOS;
324 rule->flow.nw_tos = nw_tos & IP_DSCP_MASK;
328 cls_rule_set_icmp_type(struct cls_rule *rule, uint8_t icmp_type)
330 rule->wc.wildcards &= ~FWW_TP_SRC;
331 rule->flow.icmp_type = htons(icmp_type);
336 cls_rule_set_icmp_code(struct cls_rule *rule, uint8_t icmp_code)
338 rule->wc.wildcards &= ~FWW_TP_DST;
339 rule->flow.icmp_code = htons(icmp_code);
343 cls_rule_set_arp_sha(struct cls_rule *rule, const uint8_t sha[ETH_ADDR_LEN])
345 rule->wc.wildcards &= ~FWW_ARP_SHA;
346 memcpy(rule->flow.arp_sha, sha, ETH_ADDR_LEN);
350 cls_rule_set_arp_tha(struct cls_rule *rule, const uint8_t tha[ETH_ADDR_LEN])
352 rule->wc.wildcards &= ~FWW_ARP_THA;
353 memcpy(rule->flow.arp_tha, tha, ETH_ADDR_LEN);
357 cls_rule_set_ipv6_src(struct cls_rule *rule, const struct in6_addr *src)
359 cls_rule_set_ipv6_src_masked(rule, src, &in6addr_exact);
363 cls_rule_set_ipv6_src_masked(struct cls_rule *rule, const struct in6_addr *src,
364 const struct in6_addr *mask)
366 if (flow_wildcards_set_ipv6_src_mask(&rule->wc, mask)) {
367 rule->flow.ipv6_src = ipv6_addr_bitand(src, mask);
375 cls_rule_set_ipv6_dst(struct cls_rule *rule, const struct in6_addr *dst)
377 cls_rule_set_ipv6_dst_masked(rule, dst, &in6addr_exact);
381 cls_rule_set_ipv6_dst_masked(struct cls_rule *rule, const struct in6_addr *dst,
382 const struct in6_addr *mask)
384 if (flow_wildcards_set_ipv6_dst_mask(&rule->wc, mask)) {
385 rule->flow.ipv6_dst = ipv6_addr_bitand(dst, mask);
393 cls_rule_set_nd_target(struct cls_rule *rule, const struct in6_addr *target)
395 rule->wc.wildcards &= ~FWW_ND_TARGET;
396 rule->flow.nd_target = *target;
399 /* Returns true if 'a' and 'b' have the same priority, wildcard the same
400 * fields, and have the same values for fixed fields, otherwise false. */
402 cls_rule_equal(const struct cls_rule *a, const struct cls_rule *b)
404 return (a->priority == b->priority
405 && flow_wildcards_equal(&a->wc, &b->wc)
406 && flow_equal(&a->flow, &b->flow));
409 /* Returns a hash value for the flow, wildcards, and priority in 'rule',
410 * starting from 'basis'. */
412 cls_rule_hash(const struct cls_rule *rule, uint32_t basis)
414 uint32_t h0 = flow_hash(&rule->flow, basis);
415 uint32_t h1 = flow_wildcards_hash(&rule->wc, h0);
416 return hash_int(rule->priority, h1);
420 format_ip_netmask(struct ds *s, const char *name, ovs_be32 ip,
424 ds_put_format(s, "%s=", name);
425 ip_format_masked(ip, netmask, s);
431 format_ipv6_netmask(struct ds *s, const char *name,
432 const struct in6_addr *addr,
433 const struct in6_addr *netmask)
435 if (!ipv6_mask_is_any(netmask)) {
436 ds_put_format(s, "%s=", name);
437 print_ipv6_masked(s, addr, netmask);
443 cls_rule_format(const struct cls_rule *rule, struct ds *s)
445 const struct flow_wildcards *wc = &rule->wc;
446 size_t start_len = s->length;
447 flow_wildcards_t w = wc->wildcards;
448 const struct flow *f = &rule->flow;
449 bool skip_type = false;
450 bool skip_proto = false;
454 BUILD_ASSERT_DECL(FLOW_WC_SEQ == 1);
456 if (rule->priority != OFP_DEFAULT_PRIORITY) {
457 ds_put_format(s, "priority=%d,", rule->priority);
460 if (!(w & FWW_DL_TYPE)) {
462 if (f->dl_type == htons(ETH_TYPE_IP)) {
463 if (!(w & FWW_NW_PROTO)) {
465 if (f->nw_proto == IPPROTO_ICMP) {
466 ds_put_cstr(s, "icmp,");
467 } else if (f->nw_proto == IPPROTO_TCP) {
468 ds_put_cstr(s, "tcp,");
469 } else if (f->nw_proto == IPPROTO_UDP) {
470 ds_put_cstr(s, "udp,");
472 ds_put_cstr(s, "ip,");
476 ds_put_cstr(s, "ip,");
478 } else if (f->dl_type == htons(ETH_TYPE_IPV6)) {
479 if (!(w & FWW_NW_PROTO)) {
481 if (f->nw_proto == IPPROTO_ICMPV6) {
482 ds_put_cstr(s, "icmp6,");
483 } else if (f->nw_proto == IPPROTO_TCP) {
484 ds_put_cstr(s, "tcp6,");
485 } else if (f->nw_proto == IPPROTO_UDP) {
486 ds_put_cstr(s, "udp6,");
488 ds_put_cstr(s, "ipv6,");
492 ds_put_cstr(s, "ipv6,");
494 } else if (f->dl_type == htons(ETH_TYPE_ARP)) {
495 ds_put_cstr(s, "arp,");
500 for (i = 0; i < FLOW_N_REGS; i++) {
501 switch (wc->reg_masks[i]) {
505 ds_put_format(s, "reg%d=0x%"PRIx32",", i, f->regs[i]);
508 ds_put_format(s, "reg%d=0x%"PRIx32"/0x%"PRIx32",",
509 i, f->regs[i], wc->reg_masks[i]);
513 switch (wc->tun_id_mask) {
516 case CONSTANT_HTONLL(UINT64_MAX):
517 ds_put_format(s, "tun_id=%#"PRIx64",", ntohll(f->tun_id));
520 ds_put_format(s, "tun_id=%#"PRIx64"/%#"PRIx64",",
521 ntohll(f->tun_id), ntohll(wc->tun_id_mask));
524 if (!(w & FWW_IN_PORT)) {
525 ds_put_format(s, "in_port=%"PRIu16",", f->in_port);
527 if (wc->vlan_tci_mask) {
528 ovs_be16 vid_mask = wc->vlan_tci_mask & htons(VLAN_VID_MASK);
529 ovs_be16 pcp_mask = wc->vlan_tci_mask & htons(VLAN_PCP_MASK);
530 ovs_be16 cfi = wc->vlan_tci_mask & htons(VLAN_CFI);
532 if (cfi && f->vlan_tci & htons(VLAN_CFI)
533 && (!vid_mask || vid_mask == htons(VLAN_VID_MASK))
534 && (!pcp_mask || pcp_mask == htons(VLAN_PCP_MASK))
535 && (vid_mask || pcp_mask)) {
537 ds_put_format(s, "dl_vlan=%"PRIu16",",
538 vlan_tci_to_vid(f->vlan_tci));
541 ds_put_format(s, "dl_vlan_pcp=%d,",
542 vlan_tci_to_pcp(f->vlan_tci));
544 } else if (wc->vlan_tci_mask == htons(0xffff)) {
545 ds_put_format(s, "vlan_tci=0x%04"PRIx16",", ntohs(f->vlan_tci));
547 ds_put_format(s, "vlan_tci=0x%04"PRIx16"/0x%04"PRIx16",",
548 ntohs(f->vlan_tci), ntohs(wc->vlan_tci_mask));
551 if (!(w & FWW_DL_SRC)) {
552 ds_put_format(s, "dl_src="ETH_ADDR_FMT",", ETH_ADDR_ARGS(f->dl_src));
554 switch (w & (FWW_DL_DST | FWW_ETH_MCAST)) {
556 ds_put_format(s, "dl_dst="ETH_ADDR_FMT",", ETH_ADDR_ARGS(f->dl_dst));
559 ds_put_format(s, "dl_dst="ETH_ADDR_FMT"/01:00:00:00:00:00,",
560 ETH_ADDR_ARGS(f->dl_dst));
563 ds_put_format(s, "dl_dst="ETH_ADDR_FMT"/fe:ff:ff:ff:ff:ff,",
564 ETH_ADDR_ARGS(f->dl_dst));
566 case FWW_DL_DST | FWW_ETH_MCAST:
569 if (!skip_type && !(w & FWW_DL_TYPE)) {
570 ds_put_format(s, "dl_type=0x%04"PRIx16",", ntohs(f->dl_type));
572 if (f->dl_type == htons(ETH_TYPE_IPV6)) {
573 format_ipv6_netmask(s, "ipv6_src", &f->ipv6_src, &wc->ipv6_src_mask);
574 format_ipv6_netmask(s, "ipv6_dst", &f->ipv6_dst, &wc->ipv6_dst_mask);
576 format_ip_netmask(s, "nw_src", f->nw_src, wc->nw_src_mask);
577 format_ip_netmask(s, "nw_dst", f->nw_dst, wc->nw_dst_mask);
579 if (!skip_proto && !(w & FWW_NW_PROTO)) {
580 if (f->dl_type == htons(ETH_TYPE_ARP)) {
581 ds_put_format(s, "arp_op=%"PRIu8",", f->nw_proto);
583 ds_put_format(s, "nw_proto=%"PRIu8",", f->nw_proto);
586 if (f->dl_type == htons(ETH_TYPE_ARP)) {
587 if (!(w & FWW_ARP_SHA)) {
588 ds_put_format(s, "arp_sha="ETH_ADDR_FMT",",
589 ETH_ADDR_ARGS(f->arp_sha));
591 if (!(w & FWW_ARP_THA)) {
592 ds_put_format(s, "arp_tha="ETH_ADDR_FMT",",
593 ETH_ADDR_ARGS(f->arp_tha));
596 if (!(w & FWW_NW_TOS)) {
597 ds_put_format(s, "nw_tos=%"PRIu8",", f->nw_tos);
599 if (f->nw_proto == IPPROTO_ICMP) {
600 if (!(w & FWW_TP_SRC)) {
601 ds_put_format(s, "icmp_type=%"PRIu16",", ntohs(f->tp_src));
603 if (!(w & FWW_TP_DST)) {
604 ds_put_format(s, "icmp_code=%"PRIu16",", ntohs(f->tp_dst));
606 } else if (f->nw_proto == IPPROTO_ICMPV6) {
607 if (!(w & FWW_TP_SRC)) {
608 ds_put_format(s, "icmp_type=%"PRIu16",", ntohs(f->tp_src));
610 if (!(w & FWW_TP_DST)) {
611 ds_put_format(s, "icmp_code=%"PRIu16",", ntohs(f->tp_dst));
613 if (!(w & FWW_ND_TARGET)) {
614 ds_put_cstr(s, "nd_target=");
615 print_ipv6_addr(s, &f->nd_target);
618 if (!(w & FWW_ARP_SHA)) {
619 ds_put_format(s, "nd_sll="ETH_ADDR_FMT",",
620 ETH_ADDR_ARGS(f->arp_sha));
622 if (!(w & FWW_ARP_THA)) {
623 ds_put_format(s, "nd_tll="ETH_ADDR_FMT",",
624 ETH_ADDR_ARGS(f->arp_tha));
627 if (!(w & FWW_TP_SRC)) {
628 ds_put_format(s, "tp_src=%"PRIu16",", ntohs(f->tp_src));
630 if (!(w & FWW_TP_DST)) {
631 ds_put_format(s, "tp_dst=%"PRIu16",", ntohs(f->tp_dst));
635 if (s->length > start_len && ds_last(s) == ',') {
640 /* Converts 'rule' to a string and returns the string. The caller must free
641 * the string (with free()). */
643 cls_rule_to_string(const struct cls_rule *rule)
645 struct ds s = DS_EMPTY_INITIALIZER;
646 cls_rule_format(rule, &s);
647 return ds_steal_cstr(&s);
651 cls_rule_print(const struct cls_rule *rule)
653 char *s = cls_rule_to_string(rule);
658 /* Initializes 'cls' as a classifier that initially contains no classification
661 classifier_init(struct classifier *cls)
664 hmap_init(&cls->tables);
667 /* Destroys 'cls'. Rules within 'cls', if any, are not freed; this is the
668 * caller's responsibility. */
670 classifier_destroy(struct classifier *cls)
673 struct cls_table *table, *next_table;
675 HMAP_FOR_EACH_SAFE (table, next_table, hmap_node, &cls->tables) {
676 hmap_destroy(&table->rules);
677 hmap_remove(&cls->tables, &table->hmap_node);
680 hmap_destroy(&cls->tables);
684 /* Returns true if 'cls' contains no classification rules, false otherwise. */
686 classifier_is_empty(const struct classifier *cls)
688 return cls->n_rules == 0;
691 /* Returns the number of rules in 'classifier'. */
693 classifier_count(const struct classifier *cls)
698 /* Inserts 'rule' into 'cls'. Until 'rule' is removed from 'cls', the caller
699 * must not modify or free it.
701 * If 'cls' already contains an identical rule (including wildcards, values of
702 * fixed fields, and priority), replaces the old rule by 'rule' and returns the
703 * rule that was replaced. The caller takes ownership of the returned rule and
704 * is thus responsible for freeing it, etc., as necessary.
706 * Returns NULL if 'cls' does not contain a rule with an identical key, after
707 * inserting the new rule. In this case, no rules are displaced by the new
708 * rule, even rules that cannot have any effect because the new rule matches a
709 * superset of their flows and has higher priority. */
711 classifier_replace(struct classifier *cls, struct cls_rule *rule)
713 struct cls_rule *old_rule;
714 struct cls_table *table;
716 table = find_table(cls, &rule->wc);
718 table = insert_table(cls, &rule->wc);
721 old_rule = insert_rule(table, rule);
723 table->n_table_rules++;
729 /* Inserts 'rule' into 'cls'. Until 'rule' is removed from 'cls', the caller
730 * must not modify or free it.
732 * 'cls' must not contain an identical rule (including wildcards, values of
733 * fixed fields, and priority). Use classifier_find_rule_exactly() to find
736 classifier_insert(struct classifier *cls, struct cls_rule *rule)
738 struct cls_rule *displaced_rule = classifier_replace(cls, rule);
739 assert(!displaced_rule);
742 /* Removes 'rule' from 'cls'. It is the caller's responsibility to free
743 * 'rule', if this is desirable. */
745 classifier_remove(struct classifier *cls, struct cls_rule *rule)
747 struct cls_rule *head;
748 struct cls_table *table;
750 table = find_table(cls, &rule->wc);
751 head = find_equal(table, &rule->flow, rule->hmap_node.hash);
753 list_remove(&rule->list);
754 } else if (list_is_empty(&rule->list)) {
755 hmap_remove(&table->rules, &rule->hmap_node);
757 struct cls_rule *next = CONTAINER_OF(rule->list.next,
758 struct cls_rule, list);
760 list_remove(&rule->list);
761 hmap_replace(&table->rules, &rule->hmap_node, &next->hmap_node);
764 if (--table->n_table_rules == 0) {
765 destroy_table(cls, table);
771 /* Finds and returns the highest-priority rule in 'cls' that matches 'flow'.
772 * Returns a null pointer if no rules in 'cls' match 'flow'. If multiple rules
773 * of equal priority match 'flow', returns one arbitrarily. */
775 classifier_lookup(const struct classifier *cls, const struct flow *flow)
777 struct cls_table *table;
778 struct cls_rule *best;
781 HMAP_FOR_EACH (table, hmap_node, &cls->tables) {
782 struct cls_rule *rule = find_match(table, flow);
783 if (rule && (!best || rule->priority > best->priority)) {
790 /* Finds and returns a rule in 'cls' with exactly the same priority and
791 * matching criteria as 'target'. Returns a null pointer if 'cls' doesn't
792 * contain an exact match. */
794 classifier_find_rule_exactly(const struct classifier *cls,
795 const struct cls_rule *target)
797 struct cls_rule *head, *rule;
798 struct cls_table *table;
800 table = find_table(cls, &target->wc);
805 head = find_equal(table, &target->flow, flow_hash(&target->flow, 0));
806 FOR_EACH_RULE_IN_LIST (rule, head) {
807 if (target->priority >= rule->priority) {
808 return target->priority == rule->priority ? rule : NULL;
814 /* Checks if 'target' would overlap any other rule in 'cls'. Two rules are
815 * considered to overlap if both rules have the same priority and a packet
816 * could match both. */
818 classifier_rule_overlaps(const struct classifier *cls,
819 const struct cls_rule *target)
821 struct cls_table *table;
823 HMAP_FOR_EACH (table, hmap_node, &cls->tables) {
824 struct flow_wildcards wc;
825 struct cls_rule *head;
827 flow_wildcards_combine(&wc, &target->wc, &table->wc);
828 HMAP_FOR_EACH (head, hmap_node, &table->rules) {
829 struct cls_rule *rule;
831 FOR_EACH_RULE_IN_LIST (rule, head) {
832 if (rule->priority == target->priority
833 && flow_equal_except(&target->flow, &rule->flow, &wc)) {
846 rule_matches(const struct cls_rule *rule, const struct cls_rule *target)
849 || flow_equal_except(&rule->flow, &target->flow, &target->wc));
852 static struct cls_rule *
853 search_table(const struct cls_table *table, const struct cls_rule *target)
855 if (!target || !flow_wildcards_has_extra(&table->wc, &target->wc)) {
856 struct cls_rule *rule;
858 HMAP_FOR_EACH (rule, hmap_node, &table->rules) {
859 if (rule_matches(rule, target)) {
867 /* Initializes 'cursor' for iterating through 'cls' rules that exactly match
868 * 'target' or are more specific than 'target'. That is, a given 'rule'
869 * matches 'target' if, for every field:
871 * - 'target' and 'rule' specify the same (non-wildcarded) value for the
874 * - 'target' wildcards the field,
878 * - 'target' and 'rule' specify different values for the field, or
880 * - 'target' specifies a value for the field but 'rule' wildcards it.
882 * Equivalently, the truth table for whether a field matches is:
887 * +---------+---------+
888 * t wild | yes | yes |
890 * r +---------+---------+
891 * g exact | no |if values|
893 * t +---------+---------+
895 * This is the matching rule used by OpenFlow 1.0 non-strict OFPT_FLOW_MOD
896 * commands and by OpenFlow 1.0 aggregate and flow stats.
898 * Ignores target->priority.
900 * 'target' may be NULL to iterate over every rule in 'cls'. */
902 cls_cursor_init(struct cls_cursor *cursor, const struct classifier *cls,
903 const struct cls_rule *target)
906 cursor->target = target;
909 /* Returns the first matching cls_rule in 'cursor''s iteration, or a null
910 * pointer if there are no matches. */
912 cls_cursor_first(struct cls_cursor *cursor)
914 struct cls_table *table;
916 for (table = classifier_first_table(cursor->cls); table;
917 table = classifier_next_table(cursor->cls, table)) {
918 struct cls_rule *rule = search_table(table, cursor->target);
920 cursor->table = table;
928 /* Returns the next matching cls_rule in 'cursor''s iteration, or a null
929 * pointer if there are no more matches. */
931 cls_cursor_next(struct cls_cursor *cursor, struct cls_rule *rule)
933 const struct cls_table *table;
934 struct cls_rule *next;
936 next = next_rule_in_list__(rule);
937 if (next->priority < rule->priority) {
941 /* 'next' is the head of the list, that is, the rule that is included in
942 * the table's hmap. (This is important when the classifier contains rules
943 * that differ only in priority.) */
945 HMAP_FOR_EACH_CONTINUE (rule, hmap_node, &cursor->table->rules) {
946 if (rule_matches(rule, cursor->target)) {
951 for (table = classifier_next_table(cursor->cls, cursor->table); table;
952 table = classifier_next_table(cursor->cls, table)) {
953 rule = search_table(table, cursor->target);
955 cursor->table = table;
963 static struct cls_table *
964 find_table(const struct classifier *cls, const struct flow_wildcards *wc)
966 struct cls_table *table;
968 HMAP_FOR_EACH_IN_BUCKET (table, hmap_node, flow_wildcards_hash(wc, 0),
970 if (flow_wildcards_equal(wc, &table->wc)) {
977 static struct cls_table *
978 insert_table(struct classifier *cls, const struct flow_wildcards *wc)
980 struct cls_table *table;
982 table = xzalloc(sizeof *table);
983 hmap_init(&table->rules);
985 hmap_insert(&cls->tables, &table->hmap_node, flow_wildcards_hash(wc, 0));
990 static struct cls_table *
991 classifier_first_table(const struct classifier *cls)
993 return cls_table_from_hmap_node(hmap_first(&cls->tables));
996 static struct cls_table *
997 classifier_next_table(const struct classifier *cls,
998 const struct cls_table *table)
1000 return cls_table_from_hmap_node(hmap_next(&cls->tables,
1001 &table->hmap_node));
1005 destroy_table(struct classifier *cls, struct cls_table *table)
1007 hmap_remove(&cls->tables, &table->hmap_node);
1008 hmap_destroy(&table->rules);
1012 static struct cls_rule *
1013 find_match(const struct cls_table *table, const struct flow *flow)
1015 struct cls_rule *rule;
1019 zero_wildcards(&f, &table->wc);
1020 HMAP_FOR_EACH_WITH_HASH (rule, hmap_node, flow_hash(&f, 0),
1022 if (flow_equal(&f, &rule->flow)) {
1029 static struct cls_rule *
1030 find_equal(struct cls_table *table, const struct flow *flow, uint32_t hash)
1032 struct cls_rule *head;
1034 HMAP_FOR_EACH_WITH_HASH (head, hmap_node, hash, &table->rules) {
1035 if (flow_equal(&head->flow, flow)) {
1042 static struct cls_rule *
1043 insert_rule(struct cls_table *table, struct cls_rule *new)
1045 struct cls_rule *head;
1047 new->hmap_node.hash = flow_hash(&new->flow, 0);
1049 head = find_equal(table, &new->flow, new->hmap_node.hash);
1051 hmap_insert(&table->rules, &new->hmap_node, new->hmap_node.hash);
1052 list_init(&new->list);
1055 /* Scan the list for the insertion point that will keep the list in
1056 * order of decreasing priority. */
1057 struct cls_rule *rule;
1058 FOR_EACH_RULE_IN_LIST (rule, head) {
1059 if (new->priority >= rule->priority) {
1061 /* 'new' is the new highest-priority flow in the list. */
1062 hmap_replace(&table->rules,
1063 &rule->hmap_node, &new->hmap_node);
1066 if (new->priority == rule->priority) {
1067 list_replace(&new->list, &rule->list);
1070 list_insert(&rule->list, &new->list);
1076 /* Insert 'new' at the end of the list. */
1077 list_push_back(&head->list, &new->list);
1082 static struct cls_rule *
1083 next_rule_in_list__(struct cls_rule *rule)
1085 struct cls_rule *next = OBJECT_CONTAINING(rule->list.next, next, list);
1089 static struct cls_rule *
1090 next_rule_in_list(struct cls_rule *rule)
1092 struct cls_rule *next = next_rule_in_list__(rule);
1093 return next->priority < rule->priority ? next : NULL;
1097 ipv6_equal_except(const struct in6_addr *a, const struct in6_addr *b,
1098 const struct in6_addr *mask)
1103 for (i=0; i<4; i++) {
1104 if ((a->s6_addr32[i] ^ b->s6_addr32[i]) & mask->s6_addr32[i]) {
1109 for (i=0; i<16; i++) {
1110 if ((a->s6_addr[i] ^ b->s6_addr[i]) & mask->s6_addr[i]) {
1121 flow_equal_except(const struct flow *a, const struct flow *b,
1122 const struct flow_wildcards *wildcards)
1124 const flow_wildcards_t wc = wildcards->wildcards;
1127 BUILD_ASSERT_DECL(FLOW_WC_SEQ == 1);
1129 for (i = 0; i < FLOW_N_REGS; i++) {
1130 if ((a->regs[i] ^ b->regs[i]) & wildcards->reg_masks[i]) {
1135 return (!((a->tun_id ^ b->tun_id) & wildcards->tun_id_mask)
1136 && !((a->nw_src ^ b->nw_src) & wildcards->nw_src_mask)
1137 && !((a->nw_dst ^ b->nw_dst) & wildcards->nw_dst_mask)
1138 && (wc & FWW_IN_PORT || a->in_port == b->in_port)
1139 && !((a->vlan_tci ^ b->vlan_tci) & wildcards->vlan_tci_mask)
1140 && (wc & FWW_DL_TYPE || a->dl_type == b->dl_type)
1141 && (wc & FWW_TP_SRC || a->tp_src == b->tp_src)
1142 && (wc & FWW_TP_DST || a->tp_dst == b->tp_dst)
1143 && (wc & FWW_DL_SRC || eth_addr_equals(a->dl_src, b->dl_src))
1145 || (!((a->dl_dst[0] ^ b->dl_dst[0]) & 0xfe)
1146 && a->dl_dst[1] == b->dl_dst[1]
1147 && a->dl_dst[2] == b->dl_dst[2]
1148 && a->dl_dst[3] == b->dl_dst[3]
1149 && a->dl_dst[4] == b->dl_dst[4]
1150 && a->dl_dst[5] == b->dl_dst[5]))
1151 && (wc & FWW_ETH_MCAST
1152 || !((a->dl_dst[0] ^ b->dl_dst[0]) & 0x01))
1153 && (wc & FWW_NW_PROTO || a->nw_proto == b->nw_proto)
1154 && (wc & FWW_NW_TOS || a->nw_tos == b->nw_tos)
1155 && (wc & FWW_ARP_SHA || eth_addr_equals(a->arp_sha, b->arp_sha))
1156 && (wc & FWW_ARP_THA || eth_addr_equals(a->arp_tha, b->arp_tha))
1157 && ipv6_equal_except(&a->ipv6_src, &b->ipv6_src,
1158 &wildcards->ipv6_src_mask)
1159 && ipv6_equal_except(&a->ipv6_dst, &b->ipv6_dst,
1160 &wildcards->ipv6_dst_mask)
1161 && (wc & FWW_ND_TARGET
1162 || ipv6_addr_equals(&a->nd_target, &b->nd_target)));
1166 zero_wildcards(struct flow *flow, const struct flow_wildcards *wildcards)
1168 const flow_wildcards_t wc = wildcards->wildcards;
1171 BUILD_ASSERT_DECL(FLOW_WC_SEQ == 1);
1173 for (i = 0; i < FLOW_N_REGS; i++) {
1174 flow->regs[i] &= wildcards->reg_masks[i];
1176 flow->tun_id &= wildcards->tun_id_mask;
1177 flow->nw_src &= wildcards->nw_src_mask;
1178 flow->nw_dst &= wildcards->nw_dst_mask;
1179 if (wc & FWW_IN_PORT) {
1182 flow->vlan_tci &= wildcards->vlan_tci_mask;
1183 if (wc & FWW_DL_TYPE) {
1186 if (wc & FWW_TP_SRC) {
1189 if (wc & FWW_TP_DST) {
1192 if (wc & FWW_DL_SRC) {
1193 memset(flow->dl_src, 0, sizeof flow->dl_src);
1195 if (wc & FWW_DL_DST) {
1196 flow->dl_dst[0] &= 0x01;
1197 memset(&flow->dl_dst[1], 0, 5);
1199 if (wc & FWW_ETH_MCAST) {
1200 flow->dl_dst[0] &= 0xfe;
1202 if (wc & FWW_NW_PROTO) {
1205 if (wc & FWW_NW_TOS) {
1208 if (wc & FWW_ARP_SHA) {
1209 memset(flow->arp_sha, 0, sizeof flow->arp_sha);
1211 if (wc & FWW_ARP_THA) {
1212 memset(flow->arp_tha, 0, sizeof flow->arp_tha);
1214 flow->ipv6_src = ipv6_addr_bitand(&flow->ipv6_src,
1215 &wildcards->ipv6_src_mask);
1216 flow->ipv6_dst = ipv6_addr_bitand(&flow->ipv6_dst,
1217 &wildcards->ipv6_dst_mask);
1218 if (wc & FWW_ND_TARGET) {
1219 memset(&flow->nd_target, 0, sizeof flow->nd_target);