flow: Take advantage of zero-padding in struct flow and flow_wildcards.
[sliver-openvswitch.git] / lib / flow.h
1 /*
2  * Copyright (c) 2008, 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 #ifndef FLOW_H
17 #define FLOW_H 1
18
19 #include <sys/types.h>
20 #include <netinet/in.h>
21 #include <stdbool.h>
22 #include <stdint.h>
23 #include <string.h>
24 #include "openflow/nicira-ext.h"
25 #include "openflow/openflow.h"
26 #include "hash.h"
27 #include "util.h"
28
29 struct dpif_flow_stats;
30 struct ds;
31 struct flow_wildcards;
32 struct ofpbuf;
33
34 /* This sequence number should be incremented whenever anything involving flows
35  * or the wildcarding of flows changes.  This will cause build assertion
36  * failures in places which likely need to be updated. */
37 #define FLOW_WC_SEQ 17
38
39 #define FLOW_N_REGS 8
40 BUILD_ASSERT_DECL(FLOW_N_REGS <= NXM_NX_MAX_REGS);
41
42 /* Used for struct flow's dl_type member for frames that have no Ethernet
43  * type, that is, pure 802.2 frames. */
44 #define FLOW_DL_TYPE_NONE 0x5ff
45
46 /* Fragment bits, used for IPv4 and IPv6, always zero for non-IP flows. */
47 #define FLOW_NW_FRAG_ANY   (1 << 0) /* Set for any IP frag. */
48 #define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
49 #define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
50
51 BUILD_ASSERT_DECL(FLOW_NW_FRAG_ANY == NX_IP_FRAG_ANY);
52 BUILD_ASSERT_DECL(FLOW_NW_FRAG_LATER == NX_IP_FRAG_LATER);
53
54 struct flow {
55     ovs_be64 tun_id;            /* Encapsulating tunnel ID. */
56     ovs_be64 metadata;          /* OpenFlow Metadata. */
57     struct in6_addr ipv6_src;   /* IPv6 source address. */
58     struct in6_addr ipv6_dst;   /* IPv6 destination address. */
59     struct in6_addr nd_target;  /* IPv6 neighbor discovery (ND) target. */
60     uint32_t skb_priority;      /* Packet priority for QoS. */
61     uint32_t regs[FLOW_N_REGS]; /* Registers. */
62     ovs_be32 nw_src;            /* IPv4 source address. */
63     ovs_be32 nw_dst;            /* IPv4 destination address. */
64     ovs_be32 ipv6_label;        /* IPv6 flow label. */
65     uint16_t in_port;           /* OpenFlow port number of input port. */
66     ovs_be16 vlan_tci;          /* If 802.1Q, TCI | VLAN_CFI; otherwise 0. */
67     ovs_be16 dl_type;           /* Ethernet frame type. */
68     ovs_be16 tp_src;            /* TCP/UDP source port. */
69     ovs_be16 tp_dst;            /* TCP/UDP destination port. */
70     uint8_t dl_src[6];          /* Ethernet source address. */
71     uint8_t dl_dst[6];          /* Ethernet destination address. */
72     uint8_t nw_proto;           /* IP protocol or low 8 bits of ARP opcode. */
73     uint8_t nw_tos;             /* IP ToS (including DSCP and ECN). */
74     uint8_t arp_sha[6];         /* ARP/ND source hardware address. */
75     uint8_t arp_tha[6];         /* ARP/ND target hardware address. */
76     uint8_t nw_ttl;             /* IP TTL/Hop Limit. */
77     uint8_t nw_frag;            /* FLOW_FRAG_* flags. */
78     uint8_t zeros[2];           /* Must be zero. */
79 };
80 BUILD_ASSERT_DECL(sizeof(struct flow) % 8 == 0);
81
82 /* Remember to update FLOW_WC_SEQ when changing 'struct flow'. */
83 BUILD_ASSERT_DECL(sizeof(struct flow) == 152 && FLOW_WC_SEQ == 17);
84
85 /* Represents the metadata fields of struct flow. */
86 struct flow_metadata {
87     ovs_be64 tun_id;                 /* Encapsulating tunnel ID. */
88     ovs_be64 metadata;               /* OpenFlow 1.1+ metadata field. */
89     uint32_t regs[FLOW_N_REGS];      /* Registers. */
90     uint16_t in_port;                /* OpenFlow port or zero. */
91 };
92
93 void flow_extract(struct ofpbuf *, uint32_t priority, ovs_be64 tun_id,
94                   uint16_t in_port, struct flow *);
95 void flow_zero_wildcards(struct flow *, const struct flow_wildcards *);
96 void flow_get_metadata(const struct flow *, struct flow_metadata *);
97
98 char *flow_to_string(const struct flow *);
99 void flow_format(struct ds *, const struct flow *);
100 void flow_print(FILE *, const struct flow *);
101 static inline int flow_compare_3way(const struct flow *, const struct flow *);
102 static inline bool flow_equal(const struct flow *, const struct flow *);
103 static inline size_t flow_hash(const struct flow *, uint32_t basis);
104
105 void flow_set_dl_vlan(struct flow *, ovs_be16 vid);
106 void flow_set_vlan_vid(struct flow *, ovs_be16 vid);
107 void flow_set_vlan_pcp(struct flow *, uint8_t pcp);
108
109 void flow_compose(struct ofpbuf *, const struct flow *);
110
111 static inline int
112 flow_compare_3way(const struct flow *a, const struct flow *b)
113 {
114     return memcmp(a, b, sizeof *a);
115 }
116
117 static inline bool
118 flow_equal(const struct flow *a, const struct flow *b)
119 {
120     return !flow_compare_3way(a, b);
121 }
122
123 static inline size_t
124 flow_hash(const struct flow *flow, uint32_t basis)
125 {
126     return hash_words((const uint32_t *) flow, sizeof *flow / 4, basis);
127 }
128
129 /* Information on wildcards for a flow, as a supplement to "struct flow". */
130 struct flow_wildcards {
131     ovs_be64 tun_id_mask;       /* 1-bit in each significant tun_id bit. */
132     ovs_be64 metadata_mask;     /* 1-bit in each significant metadata bit. */
133     uint32_t reg_masks[FLOW_N_REGS]; /* 1-bit in each significant regs bit. */
134     ovs_be32 nw_src_mask;       /* 1-bit in each significant nw_src bit. */
135     ovs_be32 nw_dst_mask;       /* 1-bit in each significant nw_dst bit. */
136     struct in6_addr ipv6_src_mask; /* 1-bit in each signficant ipv6_src bit. */
137     struct in6_addr ipv6_dst_mask; /* 1-bit in each signficant ipv6_dst bit. */
138     struct in6_addr nd_target_mask; /* 1-bit in each significant
139                                        nd_target bit. */
140     ovs_be32 ipv6_label_mask;   /* 1 bit in each significant ipv6_label bit. */
141     uint16_t in_port_mask;      /* 1-bit in each significant in_port bit. */
142     ovs_be16 vlan_tci_mask;     /* 1-bit in each significant vlan_tci bit. */
143     ovs_be16 dl_type_mask;      /* 1-bit in each significant dl_type bit. */
144     ovs_be16 tp_src_mask;       /* 1-bit in each significant tp_src bit. */
145     ovs_be16 tp_dst_mask;       /* 1-bit in each significant tp_dst bit. */
146     uint8_t nw_proto_mask;      /* 1-bit in each significant nw_proto bit. */
147     uint8_t nw_frag_mask;       /* 1-bit in each significant nw_frag bit. */
148     uint8_t dl_src_mask[6];     /* 1-bit in each significant dl_src bit. */
149     uint8_t dl_dst_mask[6];     /* 1-bit in each significant dl_dst bit. */
150     uint8_t arp_sha_mask[6];    /* 1-bit in each significant dl_dst bit. */
151     uint8_t arp_tha_mask[6];    /* 1-bit in each significant dl_dst bit. */
152     uint8_t nw_tos_mask;        /* 1-bit in each significant nw_tos bit. */
153     uint8_t nw_ttl_mask;        /* 1-bit in each significant nw_ttl bit. */
154     uint8_t zeros[6];           /* Padding field set to zero. */
155 };
156 BUILD_ASSERT_DECL(sizeof(struct flow_wildcards) % 8 == 0);
157
158 /* Remember to update FLOW_WC_SEQ when updating struct flow_wildcards. */
159 BUILD_ASSERT_DECL(sizeof(struct flow_wildcards) == 152 && FLOW_WC_SEQ == 17);
160
161 void flow_wildcards_init_catchall(struct flow_wildcards *);
162 void flow_wildcards_init_exact(struct flow_wildcards *);
163
164 bool flow_wildcards_is_exact(const struct flow_wildcards *);
165 bool flow_wildcards_is_catchall(const struct flow_wildcards *);
166
167 void flow_wildcards_set_reg_mask(struct flow_wildcards *,
168                                  int idx, uint32_t mask);
169
170 void flow_wildcards_combine(struct flow_wildcards *dst,
171                             const struct flow_wildcards *src1,
172                             const struct flow_wildcards *src2);
173 bool flow_wildcards_has_extra(const struct flow_wildcards *,
174                               const struct flow_wildcards *);
175
176 uint32_t flow_wildcards_hash(const struct flow_wildcards *, uint32_t basis);
177 bool flow_wildcards_equal(const struct flow_wildcards *,
178                           const struct flow_wildcards *);
179 uint32_t flow_hash_symmetric_l4(const struct flow *flow, uint32_t basis);
180
181 uint32_t flow_hash_fields(const struct flow *, enum nx_hash_fields,
182                           uint16_t basis);
183 const char *flow_hash_fields_to_str(enum nx_hash_fields);
184 bool flow_hash_fields_valid(enum nx_hash_fields);
185
186 #endif /* flow.h */