]> git.proxmox.com Git - mirror_ovs.git/blame - lib/flow.h
flow: Use vlan_tci_to_pcp() helper.
[mirror_ovs.git] / lib / flow.h
CommitLineData
064af421 1/*
fb892732 2 * Copyright (c) 2008, 2009, 2010 Nicira Networks.
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 "openvswitch/datapath-protocol.h"
28#include "util.h"
29
30struct ds;
31struct ofp_match;
32struct ofpbuf;
33
14608a15 34struct flow {
0b3e77bb
BP
35 ovs_be32 tun_id; /* Encapsulating tunnel ID. */
36 ovs_be32 nw_src; /* IP source address. */
37 ovs_be32 nw_dst; /* IP destination address. */
14608a15 38 uint16_t in_port; /* Input switch port. */
0b3e77bb
BP
39 ovs_be16 dl_vlan; /* Input VLAN. */
40 ovs_be16 dl_type; /* Ethernet frame type. */
41 ovs_be16 tp_src; /* TCP/UDP source port. */
42 ovs_be16 tp_dst; /* TCP/UDP destination port. */
14608a15
BP
43 uint8_t dl_src[6]; /* Ethernet source address. */
44 uint8_t dl_dst[6]; /* Ethernet destination address. */
45 uint8_t nw_proto; /* IP protocol or low 8 bits of ARP opcode. */
46 uint8_t dl_vlan_pcp; /* Input VLAN priority. */
47 uint8_t nw_tos; /* IP ToS (DSCP field, 6 bits). */
48};
49
50/* Assert that there are FLOW_SIG_SIZE bytes of significant data in "struct
51 * flow", followed by FLOW_PAD_SIZE bytes of padding. */
52#define FLOW_SIG_SIZE 37
53#define FLOW_PAD_SIZE 3
54BUILD_ASSERT_DECL(offsetof(struct flow, nw_tos) == FLOW_SIG_SIZE - 1);
55BUILD_ASSERT_DECL(sizeof(((struct flow *)0)->nw_tos) == 1);
56BUILD_ASSERT_DECL(sizeof(struct flow) == FLOW_SIG_SIZE + FLOW_PAD_SIZE);
064af421 57
0b3e77bb 58int flow_extract(struct ofpbuf *, ovs_be32 tun_id, uint16_t in_port,
ae412e7d
BP
59 struct flow *);
60void flow_extract_stats(const struct flow *flow, struct ofpbuf *packet,
064af421 61 struct odp_flow_stats *stats);
ae412e7d 62void flow_to_match(const struct flow *, uint32_t wildcards, bool tun_id_cookie,
659586ef
JG
63 struct ofp_match *);
64void flow_from_match(const struct ofp_match *, bool tun_id_from_cookie,
0b3e77bb 65 ovs_be64 cookie, struct flow *, uint32_t *wildcards);
ae412e7d
BP
66char *flow_to_string(const struct flow *);
67void flow_format(struct ds *, const struct flow *);
68void flow_print(FILE *, const struct flow *);
69static inline int flow_compare(const struct flow *, const struct flow *);
70static inline bool flow_equal(const struct flow *, const struct flow *);
71static inline size_t flow_hash(const struct flow *, uint32_t basis);
064af421
BP
72
73static inline int
ae412e7d 74flow_compare(const struct flow *a, const struct flow *b)
064af421 75{
14608a15 76 return memcmp(a, b, FLOW_SIG_SIZE);
064af421
BP
77}
78
79static inline bool
ae412e7d 80flow_equal(const struct flow *a, const struct flow *b)
064af421
BP
81{
82 return !flow_compare(a, b);
83}
84
85static inline size_t
ae412e7d 86flow_hash(const struct flow *flow, uint32_t basis)
064af421 87{
14608a15 88 return hash_bytes(flow, FLOW_SIG_SIZE, basis);
064af421
BP
89}
90
ae412e7d 91/* Information on wildcards for a flow, as a supplement to struct flow. */
064af421 92struct flow_wildcards {
0b3e77bb
BP
93 uint32_t wildcards; /* enum ofp_flow_wildcards. */
94 ovs_be32 nw_src_mask; /* 1-bit in each significant nw_src bit. */
95 ovs_be32 nw_dst_mask; /* 1-bit in each significant nw_dst bit. */
064af421
BP
96};
97
54363004
BP
98ovs_be32 flow_nw_bits_to_mask(uint32_t wildcards, int shift);
99void flow_wildcards_init(struct flow_wildcards *, uint32_t wildcards);
064af421
BP
100
101#endif /* flow.h */