X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fclassifier.h;h=35516022b3a90ba8d55578293b1a066566dda9f8;hb=28eec6e50c32c7e848835232aa321ad8fa30d987;hp=84a3461e2926121b7a1e64b6c4569d510e4516d8;hpb=959a2ecdc8a5ffe53e74456ff6eb1ec25092db75;p=sliver-openvswitch.git diff --git a/lib/classifier.h b/lib/classifier.h index 84a3461e2..35516022b 100644 --- a/lib/classifier.h +++ b/lib/classifier.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009 Nicira Networks. + * Copyright (c) 2009, 2010 Nicira Networks. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -44,10 +44,11 @@ #include "flow.h" #include "hmap.h" #include "list.h" +#include "openflow/nicira-ext.h" #include "openflow/openflow.h" /* Number of bytes of fields in a rule. */ -#define CLS_N_BYTES 31 +#define CLS_N_BYTES 37 /* Fields in a rule. * @@ -59,6 +60,7 @@ /* wildcard bit(s) member name name */ \ /* ----------------- ----------- -------- */ \ CLS_FIELD(OFPFW_IN_PORT, in_port, IN_PORT) \ + CLS_FIELD(NXFW_TUN_ID, tun_id, TUN_ID) \ CLS_FIELD(OFPFW_DL_VLAN, dl_vlan, DL_VLAN) \ CLS_FIELD(OFPFW_DL_VLAN_PCP, dl_vlan_pcp, DL_VLAN_PCP) \ CLS_FIELD(OFPFW_DL_SRC, dl_src, DL_SRC) \ @@ -67,6 +69,7 @@ CLS_FIELD(OFPFW_NW_SRC_MASK, nw_src, NW_SRC) \ CLS_FIELD(OFPFW_NW_DST_MASK, nw_dst, NW_DST) \ CLS_FIELD(OFPFW_NW_PROTO, nw_proto, NW_PROTO) \ + CLS_FIELD(OFPFW_NW_TOS, nw_tos, NW_TOS) \ CLS_FIELD(OFPFW_TP_SRC, tp_src, TP_SRC) \ CLS_FIELD(OFPFW_TP_DST, tp_dst, TP_DST) @@ -120,10 +123,12 @@ struct cls_rule { unsigned int table_idx; /* Index into struct classifier 'tables'. */ }; -void cls_rule_from_flow(struct cls_rule *, const flow_t *, uint32_t wildcards, - unsigned int priority); -void cls_rule_from_match(struct cls_rule *, const struct ofp_match *, - unsigned int priority); +void cls_rule_from_flow(const flow_t *, uint32_t wildcards, + unsigned int priority, struct cls_rule *); +void cls_rule_from_match(const struct ofp_match *, unsigned int priority, + bool tun_id_from_cookie, uint64_t cookie, + struct cls_rule *); +char *cls_rule_to_string(const struct cls_rule *); void cls_rule_print(const struct cls_rule *); void cls_rule_moved(struct classifier *, struct cls_rule *old, struct cls_rule *new); @@ -143,6 +148,8 @@ struct cls_rule *classifier_lookup_wild(const struct classifier *, const flow_t *); struct cls_rule *classifier_lookup_exact(const struct classifier *, const flow_t *); +bool classifier_rule_overlaps(const struct classifier *, const flow_t *, + uint32_t wildcards, unsigned int priority); typedef void cls_cb_func(struct cls_rule *, void *aux);