]> git.proxmox.com Git - mirror_ovs.git/blame - lib/flow.h
ofp-util: New function ofputil_port_to_string().
[mirror_ovs.git] / lib / flow.h
CommitLineData
064af421 1/*
b02475c5 2 * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 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. */
cff78c88 39#define FLOW_WC_SEQ 20
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)
4fe3445a
PS
59
60const char *flow_tun_flag_to_string(uint32_t flags);
61
296e07ac
JG
62struct flow_tnl {
63 ovs_be64 tun_id;
64 ovs_be32 ip_src;
65 ovs_be32 ip_dst;
66 uint16_t flags;
67 uint8_t ip_tos;
68 uint8_t ip_ttl;
69};
70
4e022ec0
AW
71/* Unfortunately, a "struct flow" sometimes has to handle OpenFlow port
72 * numbers and other times datapath (dpif) port numbers. This union allows
73 * access to both. */
74union flow_in_port {
75 ofp_port_t ofp_port;
76 odp_port_t odp_port;
77};
78
ddbfda84
JP
79/*
80* A flow in the network.
81*
82* The meaning of 'in_port' is context-dependent. In most cases, it is a
83* 16-bit OpenFlow 1.0 port number. In the software datapath interface (dpif)
84* layer and its implementations (e.g. dpif-linux, dpif-netdev), it is instead
85* a 32-bit datapath port number.
86*/
14608a15 87struct flow {
296e07ac 88 struct flow_tnl tunnel; /* Encapsulating tunnel parameters. */
969fc56c 89 ovs_be64 metadata; /* OpenFlow Metadata. */
5145475f
JP
90 struct in6_addr ipv6_src; /* IPv6 source address. */
91 struct in6_addr ipv6_dst; /* IPv6 destination address. */
92 struct in6_addr nd_target; /* IPv6 neighbor discovery (ND) target. */
deedf7e7 93 uint32_t skb_priority; /* Packet priority for QoS. */
b6c9e612 94 uint32_t regs[FLOW_N_REGS]; /* Registers. */
d31f1109
JP
95 ovs_be32 nw_src; /* IPv4 source address. */
96 ovs_be32 nw_dst; /* IPv4 destination address. */
fa8223b7 97 ovs_be32 ipv6_label; /* IPv6 flow label. */
4e022ec0 98 union flow_in_port in_port; /* Input port.*/
72e8bf28 99 uint32_t skb_mark; /* Packet mark. */
b02475c5
SH
100 ovs_be32 mpls_lse; /* MPLS label stack entry. */
101 uint16_t mpls_depth; /* Depth of MPLS stack. */
66642cb4 102 ovs_be16 vlan_tci; /* If 802.1Q, TCI | VLAN_CFI; otherwise 0. */
0b3e77bb
BP
103 ovs_be16 dl_type; /* Ethernet frame type. */
104 ovs_be16 tp_src; /* TCP/UDP source port. */
105 ovs_be16 tp_dst; /* TCP/UDP destination port. */
14608a15
BP
106 uint8_t dl_src[6]; /* Ethernet source address. */
107 uint8_t dl_dst[6]; /* Ethernet destination address. */
108 uint8_t nw_proto; /* IP protocol or low 8 bits of ARP opcode. */
eadef313 109 uint8_t nw_tos; /* IP ToS (including DSCP and ECN). */
685a51a5
JP
110 uint8_t arp_sha[6]; /* ARP/ND source hardware address. */
111 uint8_t arp_tha[6]; /* ARP/ND target hardware address. */
a61680c6 112 uint8_t nw_ttl; /* IP TTL/Hop Limit. */
eadef313 113 uint8_t nw_frag; /* FLOW_FRAG_* flags. */
cff78c88 114 uint8_t zeros[6];
14608a15 115};
296e07ac 116BUILD_ASSERT_DECL(sizeof(struct flow) % 4 == 0);
16c6d0c3 117
659c2346
BP
118#define FLOW_U32S (sizeof(struct flow) / 4)
119
16c6d0c3 120/* Remember to update FLOW_WC_SEQ when changing 'struct flow'. */
b02475c5 121BUILD_ASSERT_DECL(sizeof(struct flow) == sizeof(struct flow_tnl) + 160 &&
cff78c88 122 FLOW_WC_SEQ == 20);
14608a15 123
42edbe39 124/* Represents the metadata fields of struct flow. */
5d6c3af0
EJ
125struct flow_metadata {
126 ovs_be64 tun_id; /* Encapsulating tunnel ID. */
0ad90c84
JR
127 ovs_be32 tun_src; /* Tunnel outer IPv4 src addr */
128 ovs_be32 tun_dst; /* Tunnel outer IPv4 dst addr */
42edbe39 129 ovs_be64 metadata; /* OpenFlow 1.1+ metadata field. */
5d6c3af0 130 uint32_t regs[FLOW_N_REGS]; /* Registers. */
4e022ec0 131 ofp_port_t in_port; /* OpenFlow port or zero. */
5d6c3af0
EJ
132};
133
72e8bf28 134void flow_extract(struct ofpbuf *, uint32_t priority, uint32_t mark,
4e022ec0
AW
135 const struct flow_tnl *, const union flow_in_port *in_port,
136 struct flow *);
b02475c5 137
993410fb 138void flow_zero_wildcards(struct flow *, const struct flow_wildcards *);
5d6c3af0 139void flow_get_metadata(const struct flow *, struct flow_metadata *);
993410fb 140
ae412e7d 141char *flow_to_string(const struct flow *);
4fe3445a
PS
142void format_flags(struct ds *ds, const char *(*bit_to_string)(uint32_t),
143 uint32_t flags, char del);
144
ae412e7d
BP
145void flow_format(struct ds *, const struct flow *);
146void flow_print(FILE *, const struct flow *);
79049a24 147static inline int flow_compare_3way(const struct flow *, const struct flow *);
ae412e7d
BP
148static inline bool flow_equal(const struct flow *, const struct flow *);
149static inline size_t flow_hash(const struct flow *, uint32_t basis);
064af421 150
fb0451d9 151void flow_set_dl_vlan(struct flow *, ovs_be16 vid);
cc34bc8c 152void flow_set_vlan_vid(struct flow *, ovs_be16 vid);
3719455c
BP
153void flow_set_vlan_pcp(struct flow *, uint8_t pcp);
154
b02475c5
SH
155void flow_set_mpls_label(struct flow *flow, ovs_be32 label);
156void flow_set_mpls_ttl(struct flow *flow, uint8_t ttl);
157void flow_set_mpls_tc(struct flow *flow, uint8_t tc);
158void flow_set_mpls_bos(struct flow *flow, uint8_t stack);
159
8b3b8dd1
BP
160void flow_compose(struct ofpbuf *, const struct flow *);
161
064af421 162static inline int
79049a24 163flow_compare_3way(const struct flow *a, const struct flow *b)
064af421 164{
16c6d0c3 165 return memcmp(a, b, sizeof *a);
064af421
BP
166}
167
168static inline bool
ae412e7d 169flow_equal(const struct flow *a, const struct flow *b)
064af421 170{
79049a24 171 return !flow_compare_3way(a, b);
064af421
BP
172}
173
174static inline size_t
ae412e7d 175flow_hash(const struct flow *flow, uint32_t basis)
064af421 176{
16c6d0c3 177 return hash_words((const uint32_t *) flow, sizeof *flow / 4, basis);
064af421 178}
5cb7a798 179
4e022ec0
AW
180static inline uint16_t
181ofp_to_u16(ofp_port_t ofp_port)
182{
183 return (OVS_FORCE uint16_t) ofp_port;
184}
185
186static inline uint32_t
187odp_to_u32(odp_port_t odp_port)
188{
189 return (OVS_FORCE uint32_t) odp_port;
190}
191
192static inline uint32_t
193ofp11_to_u32(ofp11_port_t ofp11_port)
194{
195 return (OVS_FORCE uint32_t) ofp11_port;
196}
197
198static inline ofp_port_t
199u16_to_ofp(uint16_t port)
200{
201 return OFP_PORT_C(port);
202}
203
204static inline odp_port_t
205u32_to_odp(uint32_t port)
206{
207 return ODP_PORT_C(port);
208}
209
210static inline ofp11_port_t
211u32_to_ofp11(uint32_t port)
212{
213 return OFP11_PORT_C(port);
214}
215
5cb7a798
BP
216uint32_t flow_hash_in_minimask(const struct flow *, const struct minimask *,
217 uint32_t basis);
659c2346 218\f
26720e24
BP
219/* Wildcards for a flow.
220 *
221 * A 1-bit in each bit in 'masks' indicates that the corresponding bit of
222 * the flow is significant (must match). A 0-bit indicates that the
223 * corresponding bit of the flow is wildcarded (need not match). */
064af421 224struct flow_wildcards {
26720e24 225 struct flow masks;
064af421 226};
a877206f 227
d8ae4d67 228void flow_wildcards_init_catchall(struct flow_wildcards *);
494e43a5
BP
229void flow_wildcards_init_exact(struct flow_wildcards *);
230
ecf1e7ac 231bool flow_wildcards_is_catchall(const struct flow_wildcards *);
00561f41 232
b6c9e612
BP
233void flow_wildcards_set_reg_mask(struct flow_wildcards *,
234 int idx, uint32_t mask);
064af421 235
368eefac
EJ
236void flow_wildcards_and(struct flow_wildcards *dst,
237 const struct flow_wildcards *src1,
238 const struct flow_wildcards *src2);
239void flow_wildcards_or(struct flow_wildcards *dst,
240 const struct flow_wildcards *src1,
241 const struct flow_wildcards *src2);
b5d97350
BP
242bool flow_wildcards_has_extra(const struct flow_wildcards *,
243 const struct flow_wildcards *);
244
ad77e3c5
EJ
245void flow_wildcards_fold_minimask(struct flow_wildcards *,
246 const struct minimask *);
247
1006cda6 248uint32_t flow_wildcards_hash(const struct flow_wildcards *, uint32_t basis);
b5d97350
BP
249bool flow_wildcards_equal(const struct flow_wildcards *,
250 const struct flow_wildcards *);
ff55ea1f 251uint32_t flow_hash_symmetric_l4(const struct flow *flow, uint32_t basis);
b5d97350 252
bcd2633a 253void flow_mask_hash_fields(struct flow_wildcards *, enum nx_hash_fields);
520e9a2a
EJ
254uint32_t flow_hash_fields(const struct flow *, enum nx_hash_fields,
255 uint16_t basis);
256const char *flow_hash_fields_to_str(enum nx_hash_fields);
257bool flow_hash_fields_valid(enum nx_hash_fields);
db7f8281 258
368eefac
EJ
259uint32_t flow_hash_in_wildcards(const struct flow *,
260 const struct flow_wildcards *,
261 uint32_t basis);
262
659c2346
BP
263bool flow_equal_except(const struct flow *a, const struct flow *b,
264 const struct flow_wildcards *);
5cb7a798
BP
265\f
266/* Compressed flow. */
267
268#define MINI_N_INLINE (sizeof(void *) == 4 ? 7 : 8)
269#define MINI_N_MAPS DIV_ROUND_UP(FLOW_U32S, 32)
270
271/* A sparse representation of a "struct flow".
272 *
273 * A "struct flow" is fairly large and tends to be mostly zeros. Sparse
274 * representation has two advantages. First, it saves memory. Second, it
275 * saves time when the goal is to iterate over only the nonzero parts of the
276 * struct.
277 *
278 * The 'map' member holds one bit for each uint32_t in a "struct flow". Each
279 * 0-bit indicates that the corresponding uint32_t is zero, each 1-bit that it
280 * is nonzero.
281 *
282 * 'values' points to the start of an array that has one element for each 1-bit
283 * in 'map'. The least-numbered 1-bit is in values[0], the next 1-bit is in
284 * values[1], and so on.
285 *
286 * 'values' may point to a few different locations:
287 *
288 * - If 'map' has MINI_N_INLINE or fewer 1-bits, it may point to
289 * 'inline_values'. One hopes that this is the common case.
290 *
291 * - If 'map' has more than MINI_N_INLINE 1-bits, it may point to memory
292 * allocated with malloc().
293 *
294 * - The caller could provide storage on the stack for situations where
295 * that makes sense. So far that's only proved useful for
296 * minimask_combine(), but the principle works elsewhere.
297 *
298 * The implementation maintains and depends on the invariant that every element
299 * in 'values' is nonzero; that is, wherever a 1-bit appears in 'map', the
300 * corresponding element of 'values' must be nonzero.
301 */
302struct miniflow {
303 uint32_t *values;
304 uint32_t inline_values[MINI_N_INLINE];
305 uint32_t map[MINI_N_MAPS];
306};
307
308void miniflow_init(struct miniflow *, const struct flow *);
309void miniflow_clone(struct miniflow *, const struct miniflow *);
310void miniflow_destroy(struct miniflow *);
311
312void miniflow_expand(const struct miniflow *, struct flow *);
313
314uint32_t miniflow_get(const struct miniflow *, unsigned int u32_ofs);
315uint16_t miniflow_get_vid(const struct miniflow *);
316
317bool miniflow_equal(const struct miniflow *a, const struct miniflow *b);
318bool miniflow_equal_in_minimask(const struct miniflow *a,
319 const struct miniflow *b,
320 const struct minimask *);
321bool miniflow_equal_flow_in_minimask(const struct miniflow *a,
322 const struct flow *b,
323 const struct minimask *);
324uint32_t miniflow_hash(const struct miniflow *, uint32_t basis);
325uint32_t miniflow_hash_in_minimask(const struct miniflow *,
326 const struct minimask *, uint32_t basis);
327\f
328/* Compressed flow wildcards. */
329
330/* A sparse representation of a "struct flow_wildcards".
331 *
332 * See the large comment on struct miniflow for details. */
333struct minimask {
334 struct miniflow masks;
335};
336
337void minimask_init(struct minimask *, const struct flow_wildcards *);
338void minimask_clone(struct minimask *, const struct minimask *);
339void minimask_combine(struct minimask *dst,
340 const struct minimask *a, const struct minimask *b,
341 uint32_t storage[FLOW_U32S]);
342void minimask_destroy(struct minimask *);
343
344void minimask_expand(const struct minimask *, struct flow_wildcards *);
345
346uint32_t minimask_get(const struct minimask *, unsigned int u32_ofs);
347uint16_t minimask_get_vid_mask(const struct minimask *);
348
349bool minimask_equal(const struct minimask *a, const struct minimask *b);
350uint32_t minimask_hash(const struct minimask *, uint32_t basis);
351
352bool minimask_has_extra(const struct minimask *, const struct minimask *);
353bool minimask_is_catchall(const struct minimask *);
659c2346 354
064af421 355#endif /* flow.h */