]> git.proxmox.com Git - mirror_ovs.git/blame - lib/flow.h
Always treat datapath ports as 32 bits.
[mirror_ovs.git] / lib / flow.h
CommitLineData
064af421 1/*
e0edde6f 2 * Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira, Inc.
064af421 3 *
a14bc59f
BP
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:
064af421 7 *
a14bc59f
BP
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.
064af421
BP
15 */
16#ifndef FLOW_H
17#define FLOW_H 1
18
7f3adc00 19#include <sys/types.h>
064af421
BP
20#include <netinet/in.h>
21#include <stdbool.h>
22#include <stdint.h>
23#include <string.h>
659586ef 24#include "openflow/nicira-ext.h"
064af421
BP
25#include "openflow/openflow.h"
26#include "hash.h"
064af421
BP
27#include "util.h"
28
c97fb132 29struct dpif_flow_stats;
064af421 30struct ds;
b63f2ea7 31struct flow_wildcards;
5cb7a798
BP
32struct miniflow;
33struct minimask;
064af421
BP
34struct ofpbuf;
35
a877206f
EJ
36/* This sequence number should be incremented whenever anything involving flows
37 * or the wildcarding of flows changes. This will cause build assertion
38 * failures in places which likely need to be updated. */
e2170cff 39#define FLOW_WC_SEQ 17
a877206f 40
e9358af6 41#define FLOW_N_REGS 8
b6c9e612
BP
42BUILD_ASSERT_DECL(FLOW_N_REGS <= NXM_NX_MAX_REGS);
43
36956a7d
BP
44/* Used for struct flow's dl_type member for frames that have no Ethernet
45 * type, that is, pure 802.2 frames. */
46#define FLOW_DL_TYPE_NONE 0x5ff
47
7257b535 48/* Fragment bits, used for IPv4 and IPv6, always zero for non-IP flows. */
eadef313
JP
49#define FLOW_NW_FRAG_ANY (1 << 0) /* Set for any IP frag. */
50#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
51#define FLOW_NW_FRAG_MASK (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
7257b535 52
eadef313
JP
53BUILD_ASSERT_DECL(FLOW_NW_FRAG_ANY == NX_IP_FRAG_ANY);
54BUILD_ASSERT_DECL(FLOW_NW_FRAG_LATER == NX_IP_FRAG_LATER);
7257b535 55
296e07ac
JG
56#define FLOW_TNL_F_DONT_FRAGMENT (1 << 0)
57#define FLOW_TNL_F_CSUM (1 << 1)
58#define FLOW_TNL_F_KEY (1 << 2)
59struct flow_tnl {
60 ovs_be64 tun_id;
61 ovs_be32 ip_src;
62 ovs_be32 ip_dst;
63 uint16_t flags;
64 uint8_t ip_tos;
65 uint8_t ip_ttl;
66};
67
14608a15 68struct flow {
296e07ac 69 struct flow_tnl tunnel; /* Encapsulating tunnel parameters. */
969fc56c 70 ovs_be64 metadata; /* OpenFlow Metadata. */
5145475f
JP
71 struct in6_addr ipv6_src; /* IPv6 source address. */
72 struct in6_addr ipv6_dst; /* IPv6 destination address. */
73 struct in6_addr nd_target; /* IPv6 neighbor discovery (ND) target. */
deedf7e7 74 uint32_t skb_priority; /* Packet priority for QoS. */
b6c9e612 75 uint32_t regs[FLOW_N_REGS]; /* Registers. */
d31f1109
JP
76 ovs_be32 nw_src; /* IPv4 source address. */
77 ovs_be32 nw_dst; /* IPv4 destination address. */
fa8223b7 78 ovs_be32 ipv6_label; /* IPv6 flow label. */
abe529af 79 uint16_t in_port; /* OpenFlow port number of input port. */
66642cb4 80 ovs_be16 vlan_tci; /* If 802.1Q, TCI | VLAN_CFI; otherwise 0. */
0b3e77bb
BP
81 ovs_be16 dl_type; /* Ethernet frame type. */
82 ovs_be16 tp_src; /* TCP/UDP source port. */
83 ovs_be16 tp_dst; /* TCP/UDP destination port. */
14608a15
BP
84 uint8_t dl_src[6]; /* Ethernet source address. */
85 uint8_t dl_dst[6]; /* Ethernet destination address. */
86 uint8_t nw_proto; /* IP protocol or low 8 bits of ARP opcode. */
eadef313 87 uint8_t nw_tos; /* IP ToS (including DSCP and ECN). */
685a51a5
JP
88 uint8_t arp_sha[6]; /* ARP/ND source hardware address. */
89 uint8_t arp_tha[6]; /* ARP/ND target hardware address. */
a61680c6 90 uint8_t nw_ttl; /* IP TTL/Hop Limit. */
eadef313 91 uint8_t nw_frag; /* FLOW_FRAG_* flags. */
51c14ddd 92 uint8_t zeros[2]; /* Must be zero. */
14608a15 93};
296e07ac 94BUILD_ASSERT_DECL(sizeof(struct flow) % 4 == 0);
16c6d0c3 95
659c2346
BP
96#define FLOW_U32S (sizeof(struct flow) / 4)
97
16c6d0c3 98/* Remember to update FLOW_WC_SEQ when changing 'struct flow'. */
c97a72ea
JG
99BUILD_ASSERT_DECL(sizeof(struct flow) == sizeof(struct flow_tnl) + 144 &&
100 FLOW_WC_SEQ == 17);
14608a15 101
42edbe39 102/* Represents the metadata fields of struct flow. */
5d6c3af0
EJ
103struct flow_metadata {
104 ovs_be64 tun_id; /* Encapsulating tunnel ID. */
42edbe39 105 ovs_be64 metadata; /* OpenFlow 1.1+ metadata field. */
5d6c3af0 106 uint32_t regs[FLOW_N_REGS]; /* Registers. */
5d6c3af0
EJ
107 uint16_t in_port; /* OpenFlow port or zero. */
108};
109
296e07ac 110void flow_extract(struct ofpbuf *, uint32_t priority, const struct flow_tnl *,
abff858b 111 uint16_t in_port, struct flow *);
993410fb 112void flow_zero_wildcards(struct flow *, const struct flow_wildcards *);
5d6c3af0 113void flow_get_metadata(const struct flow *, struct flow_metadata *);
993410fb 114
ae412e7d
BP
115char *flow_to_string(const struct flow *);
116void flow_format(struct ds *, const struct flow *);
117void flow_print(FILE *, const struct flow *);
79049a24 118static inline int flow_compare_3way(const struct flow *, const struct flow *);
ae412e7d
BP
119static inline bool flow_equal(const struct flow *, const struct flow *);
120static inline size_t flow_hash(const struct flow *, uint32_t basis);
064af421 121
fb0451d9 122void flow_set_dl_vlan(struct flow *, ovs_be16 vid);
cc34bc8c 123void flow_set_vlan_vid(struct flow *, ovs_be16 vid);
3719455c
BP
124void flow_set_vlan_pcp(struct flow *, uint8_t pcp);
125
8b3b8dd1
BP
126void flow_compose(struct ofpbuf *, const struct flow *);
127
064af421 128static inline int
79049a24 129flow_compare_3way(const struct flow *a, const struct flow *b)
064af421 130{
16c6d0c3 131 return memcmp(a, b, sizeof *a);
064af421
BP
132}
133
134static inline bool
ae412e7d 135flow_equal(const struct flow *a, const struct flow *b)
064af421 136{
79049a24 137 return !flow_compare_3way(a, b);
064af421
BP
138}
139
140static inline size_t
ae412e7d 141flow_hash(const struct flow *flow, uint32_t basis)
064af421 142{
16c6d0c3 143 return hash_words((const uint32_t *) flow, sizeof *flow / 4, basis);
064af421 144}
5cb7a798
BP
145
146uint32_t flow_hash_in_minimask(const struct flow *, const struct minimask *,
147 uint32_t basis);
659c2346 148\f
26720e24
BP
149/* Wildcards for a flow.
150 *
151 * A 1-bit in each bit in 'masks' indicates that the corresponding bit of
152 * the flow is significant (must match). A 0-bit indicates that the
153 * corresponding bit of the flow is wildcarded (need not match). */
064af421 154struct flow_wildcards {
26720e24 155 struct flow masks;
064af421 156};
a877206f 157
d8ae4d67 158void flow_wildcards_init_catchall(struct flow_wildcards *);
494e43a5
BP
159void flow_wildcards_init_exact(struct flow_wildcards *);
160
ecf1e7ac 161bool flow_wildcards_is_catchall(const struct flow_wildcards *);
00561f41 162
b6c9e612
BP
163void flow_wildcards_set_reg_mask(struct flow_wildcards *,
164 int idx, uint32_t mask);
064af421 165
b5d97350
BP
166void flow_wildcards_combine(struct flow_wildcards *dst,
167 const struct flow_wildcards *src1,
168 const struct flow_wildcards *src2);
169bool flow_wildcards_has_extra(const struct flow_wildcards *,
170 const struct flow_wildcards *);
171
1006cda6 172uint32_t flow_wildcards_hash(const struct flow_wildcards *, uint32_t basis);
b5d97350
BP
173bool flow_wildcards_equal(const struct flow_wildcards *,
174 const struct flow_wildcards *);
ff55ea1f 175uint32_t flow_hash_symmetric_l4(const struct flow *flow, uint32_t basis);
b5d97350 176
520e9a2a
EJ
177uint32_t flow_hash_fields(const struct flow *, enum nx_hash_fields,
178 uint16_t basis);
179const char *flow_hash_fields_to_str(enum nx_hash_fields);
180bool flow_hash_fields_valid(enum nx_hash_fields);
db7f8281 181
659c2346
BP
182bool flow_equal_except(const struct flow *a, const struct flow *b,
183 const struct flow_wildcards *);
5cb7a798
BP
184\f
185/* Compressed flow. */
186
187#define MINI_N_INLINE (sizeof(void *) == 4 ? 7 : 8)
188#define MINI_N_MAPS DIV_ROUND_UP(FLOW_U32S, 32)
189
190/* A sparse representation of a "struct flow".
191 *
192 * A "struct flow" is fairly large and tends to be mostly zeros. Sparse
193 * representation has two advantages. First, it saves memory. Second, it
194 * saves time when the goal is to iterate over only the nonzero parts of the
195 * struct.
196 *
197 * The 'map' member holds one bit for each uint32_t in a "struct flow". Each
198 * 0-bit indicates that the corresponding uint32_t is zero, each 1-bit that it
199 * is nonzero.
200 *
201 * 'values' points to the start of an array that has one element for each 1-bit
202 * in 'map'. The least-numbered 1-bit is in values[0], the next 1-bit is in
203 * values[1], and so on.
204 *
205 * 'values' may point to a few different locations:
206 *
207 * - If 'map' has MINI_N_INLINE or fewer 1-bits, it may point to
208 * 'inline_values'. One hopes that this is the common case.
209 *
210 * - If 'map' has more than MINI_N_INLINE 1-bits, it may point to memory
211 * allocated with malloc().
212 *
213 * - The caller could provide storage on the stack for situations where
214 * that makes sense. So far that's only proved useful for
215 * minimask_combine(), but the principle works elsewhere.
216 *
217 * The implementation maintains and depends on the invariant that every element
218 * in 'values' is nonzero; that is, wherever a 1-bit appears in 'map', the
219 * corresponding element of 'values' must be nonzero.
220 */
221struct miniflow {
222 uint32_t *values;
223 uint32_t inline_values[MINI_N_INLINE];
224 uint32_t map[MINI_N_MAPS];
225};
226
227void miniflow_init(struct miniflow *, const struct flow *);
228void miniflow_clone(struct miniflow *, const struct miniflow *);
229void miniflow_destroy(struct miniflow *);
230
231void miniflow_expand(const struct miniflow *, struct flow *);
232
233uint32_t miniflow_get(const struct miniflow *, unsigned int u32_ofs);
234uint16_t miniflow_get_vid(const struct miniflow *);
235
236bool miniflow_equal(const struct miniflow *a, const struct miniflow *b);
237bool miniflow_equal_in_minimask(const struct miniflow *a,
238 const struct miniflow *b,
239 const struct minimask *);
240bool miniflow_equal_flow_in_minimask(const struct miniflow *a,
241 const struct flow *b,
242 const struct minimask *);
243uint32_t miniflow_hash(const struct miniflow *, uint32_t basis);
244uint32_t miniflow_hash_in_minimask(const struct miniflow *,
245 const struct minimask *, uint32_t basis);
246\f
247/* Compressed flow wildcards. */
248
249/* A sparse representation of a "struct flow_wildcards".
250 *
251 * See the large comment on struct miniflow for details. */
252struct minimask {
253 struct miniflow masks;
254};
255
256void minimask_init(struct minimask *, const struct flow_wildcards *);
257void minimask_clone(struct minimask *, const struct minimask *);
258void minimask_combine(struct minimask *dst,
259 const struct minimask *a, const struct minimask *b,
260 uint32_t storage[FLOW_U32S]);
261void minimask_destroy(struct minimask *);
262
263void minimask_expand(const struct minimask *, struct flow_wildcards *);
264
265uint32_t minimask_get(const struct minimask *, unsigned int u32_ofs);
266uint16_t minimask_get_vid_mask(const struct minimask *);
267
268bool minimask_equal(const struct minimask *a, const struct minimask *b);
269uint32_t minimask_hash(const struct minimask *, uint32_t basis);
270
271bool minimask_has_extra(const struct minimask *, const struct minimask *);
272bool minimask_is_catchall(const struct minimask *);
659c2346 273
064af421 274#endif /* flow.h */