413ecb5a982a41745da8b6588e3c35942b03973b
[sliver-openvswitch.git] / lib / flow.h
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014 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 "byte-order.h"
25 #include "openflow/nicira-ext.h"
26 #include "openflow/openflow.h"
27 #include "packets.h"
28 #include "hash.h"
29 #include "util.h"
30
31 struct dpif_flow_stats;
32 struct ds;
33 struct flow_wildcards;
34 struct minimask;
35 struct ofpbuf;
36 struct pkt_metadata;
37
38 /* This sequence number should be incremented whenever anything involving flows
39  * or the wildcarding of flows changes.  This will cause build assertion
40  * failures in places which likely need to be updated. */
41 #define FLOW_WC_SEQ 26
42
43 #define FLOW_N_REGS 8
44 BUILD_ASSERT_DECL(FLOW_N_REGS <= NXM_NX_MAX_REGS);
45
46 /* Used for struct flow's dl_type member for frames that have no Ethernet
47  * type, that is, pure 802.2 frames. */
48 #define FLOW_DL_TYPE_NONE 0x5ff
49
50 /* Fragment bits, used for IPv4 and IPv6, always zero for non-IP flows. */
51 #define FLOW_NW_FRAG_ANY   (1 << 0) /* Set for any IP frag. */
52 #define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
53 #define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
54
55 BUILD_ASSERT_DECL(FLOW_NW_FRAG_ANY == NX_IP_FRAG_ANY);
56 BUILD_ASSERT_DECL(FLOW_NW_FRAG_LATER == NX_IP_FRAG_LATER);
57
58 #define FLOW_TNL_F_DONT_FRAGMENT (1 << 0)
59 #define FLOW_TNL_F_CSUM (1 << 1)
60 #define FLOW_TNL_F_KEY (1 << 2)
61
62 const char *flow_tun_flag_to_string(uint32_t flags);
63
64 /* Maximum number of supported MPLS labels. */
65 #define FLOW_MAX_MPLS_LABELS 3
66
67 /*
68  * A flow in the network.
69  *
70  * Must be initialized to all zeros to make any compiler-induced padding
71  * zeroed.  Helps also in keeping unused fields (such as mutually exclusive
72  * IPv4 and IPv6 addresses) zeroed out.
73  *
74  * The meaning of 'in_port' is context-dependent.  In most cases, it is a
75  * 16-bit OpenFlow 1.0 port number.  In the software datapath interface (dpif)
76  * layer and its implementations (e.g. dpif-linux, dpif-netdev), it is instead
77  * a 32-bit datapath port number.
78  *
79  * The fields are organized in four segments to facilitate staged lookup, where
80  * lower layer fields are first used to determine if the later fields need to
81  * be looked at.  This enables better wildcarding for datapath flows.
82  *
83  * NOTE: Order of the fields is significant, any change in the order must be
84  * reflected in miniflow_extract()!
85  */
86 struct flow {
87     /* L1 */
88     struct flow_tnl tunnel;     /* Encapsulating tunnel parameters. */
89     ovs_be64 metadata;          /* OpenFlow Metadata. */
90     uint32_t regs[FLOW_N_REGS]; /* Registers. */
91     uint32_t skb_priority;      /* Packet priority for QoS. */
92     uint32_t pkt_mark;          /* Packet mark. */
93     uint32_t recirc_id;         /* Must be exact match. */
94     union flow_in_port in_port; /* Input port.*/
95
96     /* L2, Order the same as in the Ethernet header! */
97     uint8_t dl_dst[6];          /* Ethernet destination address. */
98     uint8_t dl_src[6];          /* Ethernet source address. */
99     ovs_be16 dl_type;           /* Ethernet frame type. */
100     ovs_be16 vlan_tci;          /* If 802.1Q, TCI | VLAN_CFI; otherwise 0. */
101     ovs_be32 mpls_lse[FLOW_MAX_MPLS_LABELS]; /* MPLS label stack entry. */
102
103     /* L3 */
104     struct in6_addr ipv6_src;   /* IPv6 source address. */
105     struct in6_addr ipv6_dst;   /* IPv6 destination address. */
106     ovs_be32 ipv6_label;        /* IPv6 flow label. */
107     ovs_be32 nw_src;            /* IPv4 source address. */
108     ovs_be32 nw_dst;            /* IPv4 destination address. */
109     uint8_t nw_frag;            /* FLOW_FRAG_* flags. */
110     uint8_t nw_tos;             /* IP ToS (including DSCP and ECN). */
111     uint8_t nw_ttl;             /* IP TTL/Hop Limit. */
112     uint8_t nw_proto;           /* IP protocol or low 8 bits of ARP opcode. */
113     uint8_t arp_sha[6];         /* ARP/ND source hardware address. */
114     uint8_t arp_tha[6];         /* ARP/ND target hardware address. */
115     struct in6_addr nd_target;  /* IPv6 neighbor discovery (ND) target. */
116     ovs_be16 tcp_flags;         /* TCP flags. With L3 to avoid matching L4. */
117     ovs_be16 pad;               /* Padding. */
118
119     /* L4 */
120     ovs_be16 tp_src;            /* TCP/UDP/SCTP source port. */
121     ovs_be16 tp_dst;            /* TCP/UDP/SCTP destination port.
122                                  * Keep last for the BUILD_ASSERT_DECL below */
123     uint32_t dp_hash;           /* Datapath computed hash value. The exact
124                                    computation is opaque to the user space.*/
125 };
126 BUILD_ASSERT_DECL(sizeof(struct flow) % 4 == 0);
127
128 #define FLOW_U32S (sizeof(struct flow) / 4)
129
130 /* Remember to update FLOW_WC_SEQ when changing 'struct flow'. */
131 BUILD_ASSERT_DECL(offsetof(struct flow, dp_hash) + sizeof(uint32_t)
132                   == sizeof(struct flow_tnl) + 172
133                   && FLOW_WC_SEQ == 26);
134
135 /* Incremental points at which flow classification may be performed in
136  * segments.
137  * This is located here since this is dependent on the structure of the
138  * struct flow defined above:
139  * Each offset must be on a distinct, successive U32 boundary strictly
140  * within the struct flow. */
141 enum {
142     FLOW_SEGMENT_1_ENDS_AT = offsetof(struct flow, dl_dst),
143     FLOW_SEGMENT_2_ENDS_AT = offsetof(struct flow, ipv6_src),
144     FLOW_SEGMENT_3_ENDS_AT = offsetof(struct flow, tp_src),
145 };
146 BUILD_ASSERT_DECL(FLOW_SEGMENT_1_ENDS_AT % 4 == 0);
147 BUILD_ASSERT_DECL(FLOW_SEGMENT_2_ENDS_AT % 4 == 0);
148 BUILD_ASSERT_DECL(FLOW_SEGMENT_3_ENDS_AT % 4 == 0);
149 BUILD_ASSERT_DECL(                     0 < FLOW_SEGMENT_1_ENDS_AT);
150 BUILD_ASSERT_DECL(FLOW_SEGMENT_1_ENDS_AT < FLOW_SEGMENT_2_ENDS_AT);
151 BUILD_ASSERT_DECL(FLOW_SEGMENT_2_ENDS_AT < FLOW_SEGMENT_3_ENDS_AT);
152 BUILD_ASSERT_DECL(FLOW_SEGMENT_3_ENDS_AT < sizeof(struct flow));
153
154 extern const uint8_t flow_segment_u32s[];
155
156 /* Represents the metadata fields of struct flow. */
157 struct flow_metadata {
158     uint32_t dp_hash;                /* Datapath computed hash field. */
159     uint32_t recirc_id;              /* Recirculation ID. */
160     ovs_be64 tun_id;                 /* Encapsulating tunnel ID. */
161     ovs_be32 tun_src;                /* Tunnel outer IPv4 src addr */
162     ovs_be32 tun_dst;                /* Tunnel outer IPv4 dst addr */
163     ovs_be64 metadata;               /* OpenFlow 1.1+ metadata field. */
164     uint32_t regs[FLOW_N_REGS];      /* Registers. */
165     uint32_t pkt_mark;               /* Packet mark. */
166     ofp_port_t in_port;              /* OpenFlow port or zero. */
167 };
168
169 void flow_extract(struct ofpbuf *, const struct pkt_metadata *md,
170                   struct flow *);
171
172 void flow_zero_wildcards(struct flow *, const struct flow_wildcards *);
173 void flow_unwildcard_tp_ports(const struct flow *, struct flow_wildcards *);
174 void flow_get_metadata(const struct flow *, struct flow_metadata *);
175
176 char *flow_to_string(const struct flow *);
177 void format_flags(struct ds *ds, const char *(*bit_to_string)(uint32_t),
178                   uint32_t flags, char del);
179 void format_flags_masked(struct ds *ds, const char *name,
180                          const char *(*bit_to_string)(uint32_t),
181                          uint32_t flags, uint32_t mask);
182
183 void flow_format(struct ds *, const struct flow *);
184 void flow_print(FILE *, const struct flow *);
185 static inline int flow_compare_3way(const struct flow *, const struct flow *);
186 static inline bool flow_equal(const struct flow *, const struct flow *);
187 static inline size_t flow_hash(const struct flow *, uint32_t basis);
188
189 void flow_set_dl_vlan(struct flow *, ovs_be16 vid);
190 void flow_set_vlan_vid(struct flow *, ovs_be16 vid);
191 void flow_set_vlan_pcp(struct flow *, uint8_t pcp);
192
193 int flow_count_mpls_labels(const struct flow *, struct flow_wildcards *);
194 int flow_count_common_mpls_labels(const struct flow *a, int an,
195                                   const struct flow *b, int bn,
196                                   struct flow_wildcards *wc);
197 void flow_push_mpls(struct flow *, int n, ovs_be16 mpls_eth_type,
198                     struct flow_wildcards *);
199 bool flow_pop_mpls(struct flow *, int n, ovs_be16 eth_type,
200                    struct flow_wildcards *);
201 void flow_set_mpls_label(struct flow *, int idx, ovs_be32 label);
202 void flow_set_mpls_ttl(struct flow *, int idx, uint8_t ttl);
203 void flow_set_mpls_tc(struct flow *, int idx, uint8_t tc);
204 void flow_set_mpls_bos(struct flow *, int idx, uint8_t stack);
205 void flow_set_mpls_lse(struct flow *, int idx, ovs_be32 lse);
206
207 void flow_compose(struct ofpbuf *, const struct flow *);
208
209 static inline int
210 flow_compare_3way(const struct flow *a, const struct flow *b)
211 {
212     return memcmp(a, b, sizeof *a);
213 }
214
215 static inline bool
216 flow_equal(const struct flow *a, const struct flow *b)
217 {
218     return !flow_compare_3way(a, b);
219 }
220
221 static inline size_t
222 flow_hash(const struct flow *flow, uint32_t basis)
223 {
224     return hash_words((const uint32_t *) flow, sizeof *flow / 4, basis);
225 }
226
227 static inline uint16_t
228 ofp_to_u16(ofp_port_t ofp_port)
229 {
230     return (OVS_FORCE uint16_t) ofp_port;
231 }
232
233 static inline uint32_t
234 odp_to_u32(odp_port_t odp_port)
235 {
236     return (OVS_FORCE uint32_t) odp_port;
237 }
238
239 static inline uint32_t
240 ofp11_to_u32(ofp11_port_t ofp11_port)
241 {
242     return (OVS_FORCE uint32_t) ofp11_port;
243 }
244
245 static inline ofp_port_t
246 u16_to_ofp(uint16_t port)
247 {
248     return OFP_PORT_C(port);
249 }
250
251 static inline odp_port_t
252 u32_to_odp(uint32_t port)
253 {
254     return ODP_PORT_C(port);
255 }
256
257 static inline ofp11_port_t
258 u32_to_ofp11(uint32_t port)
259 {
260     return OFP11_PORT_C(port);
261 }
262
263 static inline uint32_t
264 hash_ofp_port(ofp_port_t ofp_port)
265 {
266     return hash_int(ofp_to_u16(ofp_port), 0);
267 }
268
269 static inline uint32_t
270 hash_odp_port(odp_port_t odp_port)
271 {
272     return hash_int(odp_to_u32(odp_port), 0);
273 }
274
275 uint32_t flow_hash_in_minimask(const struct flow *, const struct minimask *,
276                                uint32_t basis);
277 uint32_t flow_hash_in_minimask_range(const struct flow *,
278                                      const struct minimask *,
279                                      uint8_t start, uint8_t end,
280                                      uint32_t *basis);
281 \f
282 /* Wildcards for a flow.
283  *
284  * A 1-bit in each bit in 'masks' indicates that the corresponding bit of
285  * the flow is significant (must match).  A 0-bit indicates that the
286  * corresponding bit of the flow is wildcarded (need not match). */
287 struct flow_wildcards {
288     struct flow masks;
289 };
290
291 void flow_wildcards_init_catchall(struct flow_wildcards *);
292
293 void flow_wildcards_clear_non_packet_fields(struct flow_wildcards *);
294
295 bool flow_wildcards_is_catchall(const struct flow_wildcards *);
296
297 void flow_wildcards_set_reg_mask(struct flow_wildcards *,
298                                  int idx, uint32_t mask);
299
300 void flow_wildcards_and(struct flow_wildcards *dst,
301                         const struct flow_wildcards *src1,
302                         const struct flow_wildcards *src2);
303 void flow_wildcards_or(struct flow_wildcards *dst,
304                        const struct flow_wildcards *src1,
305                        const struct flow_wildcards *src2);
306 bool flow_wildcards_has_extra(const struct flow_wildcards *,
307                               const struct flow_wildcards *);
308
309 void flow_wildcards_fold_minimask(struct flow_wildcards *,
310                                   const struct minimask *);
311 void flow_wildcards_fold_minimask_range(struct flow_wildcards *,
312                                         const struct minimask *,
313                                         uint8_t start, uint8_t end);
314
315 uint32_t flow_wildcards_hash(const struct flow_wildcards *, uint32_t basis);
316 bool flow_wildcards_equal(const struct flow_wildcards *,
317                           const struct flow_wildcards *);
318 uint32_t flow_hash_5tuple(const struct flow *flow, uint32_t basis);
319 uint32_t flow_hash_symmetric_l4(const struct flow *flow, uint32_t basis);
320
321 /* Initialize a flow with random fields that matter for nx_hash_fields. */
322 void flow_random_hash_fields(struct flow *);
323 void flow_mask_hash_fields(const struct flow *, struct flow_wildcards *,
324                            enum nx_hash_fields);
325 uint32_t flow_hash_fields(const struct flow *, enum nx_hash_fields,
326                           uint16_t basis);
327 const char *flow_hash_fields_to_str(enum nx_hash_fields);
328 bool flow_hash_fields_valid(enum nx_hash_fields);
329
330 uint32_t flow_hash_in_wildcards(const struct flow *,
331                                 const struct flow_wildcards *,
332                                 uint32_t basis);
333
334 bool flow_equal_except(const struct flow *a, const struct flow *b,
335                        const struct flow_wildcards *);
336 \f
337 /* Compressed flow. */
338
339 #define MINI_N_INLINE (sizeof(void *) == 4 ? 7 : 8)
340 BUILD_ASSERT_DECL(FLOW_U32S <= 64);
341
342 /* A sparse representation of a "struct flow".
343  *
344  * A "struct flow" is fairly large and tends to be mostly zeros.  Sparse
345  * representation has two advantages.  First, it saves memory.  Second, it
346  * saves time when the goal is to iterate over only the nonzero parts of the
347  * struct.
348  *
349  * The 'map' member holds one bit for each uint32_t in a "struct flow".  Each
350  * 0-bit indicates that the corresponding uint32_t is zero, each 1-bit that it
351  * *may* be nonzero.
352  *
353  * 'values' points to the start of an array that has one element for each 1-bit
354  * in 'map'.  The least-numbered 1-bit is in values[0], the next 1-bit is in
355  * values[1], and so on.
356  *
357  * 'values' may point to a few different locations:
358  *
359  *     - If 'map' has MINI_N_INLINE or fewer 1-bits, it may point to
360  *       'inline_values'.  One hopes that this is the common case.
361  *
362  *     - If 'map' has more than MINI_N_INLINE 1-bits, it may point to memory
363  *       allocated with malloc().
364  *
365  *     - The caller could provide storage on the stack for situations where
366  *       that makes sense.  So far that's only proved useful for
367  *       minimask_combine(), but the principle works elsewhere.
368  *
369  * Elements in 'values' are allowed to be zero.  This is useful for "struct
370  * minimatch", for which ensuring that the miniflow and minimask members have
371  * same 'map' allows optimization.  This allowance applies only to a miniflow
372  * that is not a mask.  That is, a minimask may NOT have zero elements in
373  * its 'values'.
374  */
375 struct miniflow {
376     uint64_t map;
377     uint32_t *values;
378     uint32_t inline_values[MINI_N_INLINE];
379 };
380
381 /* This is useful for initializing a miniflow for a miniflow_extract() call. */
382 static inline void miniflow_initialize(struct miniflow *mf,
383                                        uint32_t buf[FLOW_U32S])
384 {
385     mf->map = 0;
386     mf->values = buf;
387 }
388
389 struct pkt_metadata;
390
391 /* The 'dst->values' must be initialized with a buffer with space for
392  * FLOW_U32S.  'dst->map' is ignored on input and set on output to
393  * indicate which fields were extracted. */
394 void miniflow_extract(struct ofpbuf *packet, const struct pkt_metadata *,
395                       struct miniflow *dst);
396 void miniflow_init(struct miniflow *, const struct flow *);
397 void miniflow_init_with_minimask(struct miniflow *, const struct flow *,
398                                  const struct minimask *);
399 void miniflow_clone(struct miniflow *, const struct miniflow *);
400 void miniflow_move(struct miniflow *dst, struct miniflow *);
401 void miniflow_destroy(struct miniflow *);
402
403 void miniflow_expand(const struct miniflow *, struct flow *);
404
405 static inline uint32_t
406 mf_get_next_in_map(uint64_t *fmap, uint64_t rm1bit, const uint32_t **fp,
407                    uint32_t *value)
408 {
409     *value = 0;
410     if (*fmap & rm1bit) {
411         uint64_t trash = *fmap & (rm1bit - 1);
412
413         if (trash) {
414             *fmap -= trash;
415             *fp += count_1bits(trash);
416         }
417         *value = **fp;
418     }
419     return rm1bit != 0;
420 }
421
422 /* Iterate through all miniflow u32 values specified by the 'MAP'.
423  * This works as the first statement in a block.*/
424 #define MINIFLOW_FOR_EACH_IN_MAP(VALUE, FLOW, MAP)                      \
425     const uint32_t *fp_ = (FLOW)->values;                               \
426     uint64_t rm1bit_, fmap_, map_;                                      \
427     for (fmap_ = (FLOW)->map, map_ = (MAP), rm1bit_ = rightmost_1bit(map_); \
428          mf_get_next_in_map(&fmap_, rm1bit_, &fp_, &(VALUE));           \
429          map_ -= rm1bit_, rm1bit_ = rightmost_1bit(map_))
430
431 /* These accessors use byte offsets, which are assumed to be compile-time
432  * constants. */
433 static inline uint8_t miniflow_get_u8(const struct miniflow *,
434                                        unsigned int ofs);
435 static inline uint16_t miniflow_get_u16(const struct miniflow *,
436                                         unsigned int ofs);
437 static inline ovs_be16 miniflow_get_be16(const struct miniflow *,
438                                          unsigned int ofs);
439 static inline uint32_t miniflow_get_u32(const struct miniflow *,
440                                         unsigned int ofs);
441 static inline ovs_be32 miniflow_get_be32(const struct miniflow *,
442                                          unsigned int ofs);
443
444 static inline uint16_t miniflow_get_vid(const struct miniflow *);
445 static inline uint16_t miniflow_get_tcp_flags(const struct miniflow *);
446 static inline ovs_be64 miniflow_get_metadata(const struct miniflow *);
447 static inline uint8_t miniflow_get_u8(const struct miniflow *, unsigned int ofs);
448
449 bool miniflow_equal(const struct miniflow *a, const struct miniflow *b);
450 bool miniflow_equal_in_minimask(const struct miniflow *a,
451                                 const struct miniflow *b,
452                                 const struct minimask *);
453 bool miniflow_equal_flow_in_minimask(const struct miniflow *a,
454                                      const struct flow *b,
455                                      const struct minimask *);
456 uint32_t miniflow_hash(const struct miniflow *, uint32_t basis);
457 uint32_t miniflow_hash_in_minimask(const struct miniflow *,
458                                    const struct minimask *, uint32_t basis);
459 uint64_t miniflow_get_map_in_range(const struct miniflow *miniflow,
460                                    uint8_t start, uint8_t end,
461                                    unsigned int *offset);
462 uint32_t miniflow_hash_5tuple(const struct miniflow *flow, uint32_t basis);
463
464 \f
465 /* Compressed flow wildcards. */
466
467 /* A sparse representation of a "struct flow_wildcards".
468  *
469  * See the large comment on struct miniflow for details.
470  *
471  * Note: While miniflow can have zero data for a 1-bit in the map,
472  * a minimask may not!  We rely on this in the implementation. */
473 struct minimask {
474     struct miniflow masks;
475 };
476
477 void minimask_init(struct minimask *, const struct flow_wildcards *);
478 void minimask_clone(struct minimask *, const struct minimask *);
479 void minimask_move(struct minimask *dst, struct minimask *src);
480 void minimask_combine(struct minimask *dst,
481                       const struct minimask *a, const struct minimask *b,
482                       uint32_t storage[FLOW_U32S]);
483 void minimask_destroy(struct minimask *);
484
485 void minimask_expand(const struct minimask *, struct flow_wildcards *);
486
487 uint32_t minimask_get(const struct minimask *, unsigned int u32_ofs);
488 static inline uint16_t minimask_get_vid_mask(const struct minimask *);
489 static inline ovs_be64 minimask_get_metadata_mask(const struct minimask *);
490
491 bool minimask_equal(const struct minimask *a, const struct minimask *b);
492 uint32_t minimask_hash(const struct minimask *, uint32_t basis);
493
494 bool minimask_has_extra(const struct minimask *, const struct minimask *);
495 bool minimask_is_catchall(const struct minimask *);
496 \f
497
498 /* 'OFS' is a compile-time constant. */
499 #define MINIFLOW_GET_TYPE(MF, TYPE, OFS)                                \
500     (MF->map & UINT64_C(1) << OFS / 4)                                  \
501     ? ((OVS_FORCE const TYPE *)                                         \
502        (MF->values + count_1bits(MF->map & ((UINT64_C(1) << OFS / 4) - 1)))) \
503       [OFS % 4 / sizeof(TYPE)]                                          \
504     : 0
505
506 static inline uint8_t
507 miniflow_get_u8(const struct miniflow *flow, unsigned int ofs)
508 {
509     return MINIFLOW_GET_TYPE(flow, uint8_t, ofs);
510 }
511
512 static inline uint16_t
513 miniflow_get_u16(const struct miniflow *flow, unsigned int ofs)
514 {
515     return MINIFLOW_GET_TYPE(flow, uint16_t, ofs);
516 }
517
518 /* Returns the ovs_be16 that would be at byte offset 'u8_ofs' if 'flow' were
519  * expanded into a "struct flow". */
520 static inline ovs_be16
521 miniflow_get_be16(const struct miniflow *flow, unsigned int ofs)
522 {
523     return MINIFLOW_GET_TYPE(flow, ovs_be16, ofs);
524 }
525
526 static inline uint32_t
527 miniflow_get_u32(const struct miniflow *flow, unsigned int ofs)
528 {
529     return MINIFLOW_GET_TYPE(flow, uint32_t, ofs);
530 }
531
532 static inline ovs_be32
533 miniflow_get_be32(const struct miniflow *flow, unsigned int ofs)
534 {
535     return MINIFLOW_GET_TYPE(flow, ovs_be32, ofs);
536 }
537
538 #undef MINIFLOW_GET_TYPE
539
540 /* Returns the VID within the vlan_tci member of the "struct flow" represented
541  * by 'flow'. */
542 static inline uint16_t
543 miniflow_get_vid(const struct miniflow *flow)
544 {
545     ovs_be16 tci = miniflow_get_be16(flow, offsetof(struct flow, vlan_tci));
546     return vlan_tci_to_vid(tci);
547 }
548
549 /* Returns the VID mask within the vlan_tci member of the "struct
550  * flow_wildcards" represented by 'mask'. */
551 static inline uint16_t
552 minimask_get_vid_mask(const struct minimask *mask)
553 {
554     return miniflow_get_vid(&mask->masks);
555 }
556
557 /* Returns the value of the "tcp_flags" field in 'flow'. */
558 static inline uint16_t
559 miniflow_get_tcp_flags(const struct miniflow *flow)
560 {
561     return ntohs(miniflow_get_be16(flow, offsetof(struct flow, tcp_flags)));
562 }
563
564 /* Returns the value of the OpenFlow 1.1+ "metadata" field in 'flow'. */
565 static inline ovs_be64
566 miniflow_get_metadata(const struct miniflow *flow)
567 {
568     enum { MD_OFS = offsetof(struct flow, metadata) };
569     BUILD_ASSERT_DECL(MD_OFS % sizeof(uint32_t) == 0);
570     ovs_be32 hi = miniflow_get_be32(flow, MD_OFS);
571     ovs_be32 lo = miniflow_get_be32(flow, MD_OFS + 4);
572
573     return htonll(((uint64_t) ntohl(hi) << 32) | ntohl(lo));
574 }
575
576 /* Returns the mask for the OpenFlow 1.1+ "metadata" field in 'mask'.
577  *
578  * The return value is all-1-bits if 'mask' matches on the whole value of the
579  * metadata field, all-0-bits if 'mask' entirely wildcards the metadata field,
580  * or some other value if the metadata field is partially matched, partially
581  * wildcarded. */
582 static inline ovs_be64
583 minimask_get_metadata_mask(const struct minimask *mask)
584 {
585     return miniflow_get_metadata(&mask->masks);
586 }
587
588 static inline struct pkt_metadata
589 pkt_metadata_from_flow(const struct flow *flow)
590 {
591     struct pkt_metadata md;
592
593     md.recirc_id = flow->recirc_id;
594     md.dp_hash = flow->dp_hash;
595     md.tunnel = flow->tunnel;
596     md.skb_priority = flow->skb_priority;
597     md.pkt_mark = flow->pkt_mark;
598     md.in_port = flow->in_port;
599
600     return md;
601 }
602
603 static inline bool is_ip_any(const struct flow *flow)
604 {
605     return dl_type_is_ip_any(flow->dl_type);
606 }
607
608 static inline bool is_icmpv4(const struct flow *flow)
609 {
610     return (flow->dl_type == htons(ETH_TYPE_IP)
611             && flow->nw_proto == IPPROTO_ICMP);
612 }
613
614 static inline bool is_icmpv6(const struct flow *flow)
615 {
616     return (flow->dl_type == htons(ETH_TYPE_IPV6)
617             && flow->nw_proto == IPPROTO_ICMPV6);
618 }
619
620 #endif /* flow.h */