flow: Extend struct flow to contain tunnel outer header.
[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 miniflow;
33 struct minimask;
34 struct ofpbuf;
35
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. */
39 #define FLOW_WC_SEQ 17
40
41 #define FLOW_N_REGS 8
42 BUILD_ASSERT_DECL(FLOW_N_REGS <= NXM_NX_MAX_REGS);
43
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
48 /* Fragment bits, used for IPv4 and IPv6, always zero for non-IP flows. */
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)
52
53 BUILD_ASSERT_DECL(FLOW_NW_FRAG_ANY == NX_IP_FRAG_ANY);
54 BUILD_ASSERT_DECL(FLOW_NW_FRAG_LATER == NX_IP_FRAG_LATER);
55
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)
59 struct 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
68 struct flow {
69     struct flow_tnl tunnel;     /* Encapsulating tunnel parameters. */
70     ovs_be64 metadata;          /* OpenFlow Metadata. */
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. */
74     uint32_t skb_priority;      /* Packet priority for QoS. */
75     uint32_t regs[FLOW_N_REGS]; /* Registers. */
76     ovs_be32 nw_src;            /* IPv4 source address. */
77     ovs_be32 nw_dst;            /* IPv4 destination address. */
78     ovs_be32 ipv6_label;        /* IPv6 flow label. */
79     uint16_t in_port;           /* OpenFlow port number of input port. */
80     ovs_be16 vlan_tci;          /* If 802.1Q, TCI | VLAN_CFI; otherwise 0. */
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. */
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. */
87     uint8_t nw_tos;             /* IP ToS (including DSCP and ECN). */
88     uint8_t arp_sha[6];         /* ARP/ND source hardware address. */
89     uint8_t arp_tha[6];         /* ARP/ND target hardware address. */
90     uint8_t nw_ttl;             /* IP TTL/Hop Limit. */
91     uint8_t nw_frag;            /* FLOW_FRAG_* flags. */
92     uint8_t zeros[2];           /* Must be zero. */
93 };
94 BUILD_ASSERT_DECL(sizeof(struct flow) % 4 == 0);
95
96 #define FLOW_U32S (sizeof(struct flow) / 4)
97
98 /* Remember to update FLOW_WC_SEQ when changing 'struct flow'. */
99 BUILD_ASSERT_DECL(sizeof(struct flow) == 168 && FLOW_WC_SEQ == 17);
100
101 /* Represents the metadata fields of struct flow. */
102 struct flow_metadata {
103     ovs_be64 tun_id;                 /* Encapsulating tunnel ID. */
104     ovs_be64 metadata;               /* OpenFlow 1.1+ metadata field. */
105     uint32_t regs[FLOW_N_REGS];      /* Registers. */
106     uint16_t in_port;                /* OpenFlow port or zero. */
107 };
108
109 void flow_extract(struct ofpbuf *, uint32_t priority, const struct flow_tnl *,
110                   uint16_t in_port, struct flow *);
111 void flow_zero_wildcards(struct flow *, const struct flow_wildcards *);
112 void flow_get_metadata(const struct flow *, struct flow_metadata *);
113
114 char *flow_to_string(const struct flow *);
115 void flow_format(struct ds *, const struct flow *);
116 void flow_print(FILE *, const struct flow *);
117 static inline int flow_compare_3way(const struct flow *, const struct flow *);
118 static inline bool flow_equal(const struct flow *, const struct flow *);
119 static inline size_t flow_hash(const struct flow *, uint32_t basis);
120
121 void flow_set_dl_vlan(struct flow *, ovs_be16 vid);
122 void flow_set_vlan_vid(struct flow *, ovs_be16 vid);
123 void flow_set_vlan_pcp(struct flow *, uint8_t pcp);
124
125 void flow_compose(struct ofpbuf *, const struct flow *);
126
127 static inline int
128 flow_compare_3way(const struct flow *a, const struct flow *b)
129 {
130     return memcmp(a, b, sizeof *a);
131 }
132
133 static inline bool
134 flow_equal(const struct flow *a, const struct flow *b)
135 {
136     return !flow_compare_3way(a, b);
137 }
138
139 static inline size_t
140 flow_hash(const struct flow *flow, uint32_t basis)
141 {
142     return hash_words((const uint32_t *) flow, sizeof *flow / 4, basis);
143 }
144
145 uint32_t flow_hash_in_minimask(const struct flow *, const struct minimask *,
146                                uint32_t basis);
147 \f
148 /* Wildcards for a flow.
149  *
150  * A 1-bit in each bit in 'masks' indicates that the corresponding bit of
151  * the flow is significant (must match).  A 0-bit indicates that the
152  * corresponding bit of the flow is wildcarded (need not match). */
153 struct flow_wildcards {
154     struct flow masks;
155 };
156
157 void flow_wildcards_init_catchall(struct flow_wildcards *);
158 void flow_wildcards_init_exact(struct flow_wildcards *);
159
160 bool flow_wildcards_is_catchall(const struct flow_wildcards *);
161
162 void flow_wildcards_set_reg_mask(struct flow_wildcards *,
163                                  int idx, uint32_t mask);
164
165 void flow_wildcards_combine(struct flow_wildcards *dst,
166                             const struct flow_wildcards *src1,
167                             const struct flow_wildcards *src2);
168 bool flow_wildcards_has_extra(const struct flow_wildcards *,
169                               const struct flow_wildcards *);
170
171 uint32_t flow_wildcards_hash(const struct flow_wildcards *, uint32_t basis);
172 bool flow_wildcards_equal(const struct flow_wildcards *,
173                           const struct flow_wildcards *);
174 uint32_t flow_hash_symmetric_l4(const struct flow *flow, uint32_t basis);
175
176 uint32_t flow_hash_fields(const struct flow *, enum nx_hash_fields,
177                           uint16_t basis);
178 const char *flow_hash_fields_to_str(enum nx_hash_fields);
179 bool flow_hash_fields_valid(enum nx_hash_fields);
180
181 bool flow_equal_except(const struct flow *a, const struct flow *b,
182                        const struct flow_wildcards *);
183 \f
184 /* Compressed flow. */
185
186 #define MINI_N_INLINE (sizeof(void *) == 4 ? 7 : 8)
187 #define MINI_N_MAPS DIV_ROUND_UP(FLOW_U32S, 32)
188
189 /* A sparse representation of a "struct flow".
190  *
191  * A "struct flow" is fairly large and tends to be mostly zeros.  Sparse
192  * representation has two advantages.  First, it saves memory.  Second, it
193  * saves time when the goal is to iterate over only the nonzero parts of the
194  * struct.
195  *
196  * The 'map' member holds one bit for each uint32_t in a "struct flow".  Each
197  * 0-bit indicates that the corresponding uint32_t is zero, each 1-bit that it
198  * is nonzero.
199  *
200  * 'values' points to the start of an array that has one element for each 1-bit
201  * in 'map'.  The least-numbered 1-bit is in values[0], the next 1-bit is in
202  * values[1], and so on.
203  *
204  * 'values' may point to a few different locations:
205  *
206  *     - If 'map' has MINI_N_INLINE or fewer 1-bits, it may point to
207  *       'inline_values'.  One hopes that this is the common case.
208  *
209  *     - If 'map' has more than MINI_N_INLINE 1-bits, it may point to memory
210  *       allocated with malloc().
211  *
212  *     - The caller could provide storage on the stack for situations where
213  *       that makes sense.  So far that's only proved useful for
214  *       minimask_combine(), but the principle works elsewhere.
215  *
216  * The implementation maintains and depends on the invariant that every element
217  * in 'values' is nonzero; that is, wherever a 1-bit appears in 'map', the
218  * corresponding element of 'values' must be nonzero.
219  */
220 struct miniflow {
221     uint32_t *values;
222     uint32_t inline_values[MINI_N_INLINE];
223     uint32_t map[MINI_N_MAPS];
224 };
225
226 void miniflow_init(struct miniflow *, const struct flow *);
227 void miniflow_clone(struct miniflow *, const struct miniflow *);
228 void miniflow_destroy(struct miniflow *);
229
230 void miniflow_expand(const struct miniflow *, struct flow *);
231
232 uint32_t miniflow_get(const struct miniflow *, unsigned int u32_ofs);
233 uint16_t miniflow_get_vid(const struct miniflow *);
234
235 bool miniflow_equal(const struct miniflow *a, const struct miniflow *b);
236 bool miniflow_equal_in_minimask(const struct miniflow *a,
237                                 const struct miniflow *b,
238                                 const struct minimask *);
239 bool miniflow_equal_flow_in_minimask(const struct miniflow *a,
240                                      const struct flow *b,
241                                      const struct minimask *);
242 uint32_t miniflow_hash(const struct miniflow *, uint32_t basis);
243 uint32_t miniflow_hash_in_minimask(const struct miniflow *,
244                                    const struct minimask *, uint32_t basis);
245 \f
246 /* Compressed flow wildcards. */
247
248 /* A sparse representation of a "struct flow_wildcards".
249  *
250  * See the large comment on struct miniflow for details. */
251 struct minimask {
252     struct miniflow masks;
253 };
254
255 void minimask_init(struct minimask *, const struct flow_wildcards *);
256 void minimask_clone(struct minimask *, const struct minimask *);
257 void minimask_combine(struct minimask *dst,
258                       const struct minimask *a, const struct minimask *b,
259                       uint32_t storage[FLOW_U32S]);
260 void minimask_destroy(struct minimask *);
261
262 void minimask_expand(const struct minimask *, struct flow_wildcards *);
263
264 uint32_t minimask_get(const struct minimask *, unsigned int u32_ofs);
265 uint16_t minimask_get_vid_mask(const struct minimask *);
266
267 bool minimask_equal(const struct minimask *a, const struct minimask *b);
268 uint32_t minimask_hash(const struct minimask *, uint32_t basis);
269
270 bool minimask_has_extra(const struct minimask *, const struct minimask *);
271 bool minimask_is_catchall(const struct minimask *);
272
273 #endif /* flow.h */