]> git.proxmox.com Git - mirror_ovs.git/blame - include/openvswitch/match.h
flow: Improve type-safety of MINIFLOW_GET_TYPE.
[mirror_ovs.git] / include / openvswitch / match.h
CommitLineData
81a76618 1/*
50f96b10 2 * Copyright (c) 2009-2017 Nicira, Inc.
81a76618
BP
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
e29747e4
BW
17#ifndef OPENVSWITCH_MATCH_H
18#define OPENVSWITCH_MATCH_H 1
81a76618 19
e29747e4
BW
20#include "openvswitch/flow.h"
21#include "openvswitch/packets.h"
22#include "openvswitch/tun-metadata.h"
81a76618 23
ec30ca5f
BP
24#ifdef __cplusplus
25extern "C" {
26#endif
27
5cb7a798 28struct ds;
50f96b10 29struct ofputil_port_map;
3d4b2e6e 30struct mf_field;
5cb7a798 31
81a76618
BP
32/* A flow classification match.
33 *
34 * Use one of the match_*() functions to initialize a "struct match".
35 *
36 * The match_*() functions below maintain the following important invariant.
37 * If a bit or a field is wildcarded in 'wc', then the corresponding bit or
38 * field in 'flow' is set to all-0-bits. (The match_zero_wildcarded_fields()
39 * function can be used to restore this invariant after adding wildcards.) */
40struct match {
41 struct flow flow;
42 struct flow_wildcards wc;
9558d2a5 43 struct tun_metadata_allocation tun_md;
81a76618
BP
44};
45
01f8894c 46/* Initializer for a "struct match" that matches every packet. */
ccccabda 47#define MATCH_CATCHALL_INITIALIZER { .flow = { .dl_type = 0 } }
01f8894c 48
3d2fbd70
JS
49#define MATCH_SET_FIELD_MASKED(match, field, value, msk) \
50 do { \
51 (match)->wc.masks.field = (msk); \
52 (match)->flow.field = (value) & (msk); \
53 } while (0)
54
55#define MATCH_SET_FIELD_UINT8(match, field, value) \
56 MATCH_SET_FIELD_MASKED(match, field, value, UINT8_MAX)
57
58#define MATCH_SET_FIELD_BE32(match, field, value) \
59 MATCH_SET_FIELD_MASKED(match, field, value, OVS_BE32_MAX)
60
81a76618
BP
61void match_init(struct match *,
62 const struct flow *, const struct flow_wildcards *);
aa6c9932 63void match_wc_init(struct match *match, const struct flow *flow);
81a76618 64void match_init_catchall(struct match *);
81a76618
BP
65
66void match_zero_wildcarded_fields(struct match *);
67
a79f29f2
AZ
68void match_set_dp_hash(struct match *, uint32_t value);
69void match_set_dp_hash_masked(struct match *, uint32_t value, uint32_t mask);
70
71void match_set_recirc_id(struct match *, uint32_t value);
18080541
BP
72
73void match_set_conj_id(struct match *, uint32_t value);
a79f29f2 74
81a76618
BP
75void match_set_reg(struct match *, unsigned int reg_idx, uint32_t value);
76void match_set_reg_masked(struct match *, unsigned int reg_idx,
77 uint32_t value, uint32_t mask);
79fe0f46
BP
78void match_set_xreg(struct match *, unsigned int xreg_idx, uint64_t value);
79void match_set_xreg_masked(struct match *, unsigned int xreg_idx,
80 uint64_t value, uint64_t mask);
b23ada8e
JP
81void match_set_xxreg(struct match *, unsigned int xxreg_idx, ovs_u128 value);
82void match_set_xxreg_masked(struct match *, unsigned int xxreg_idx,
83 ovs_u128 value, ovs_u128 mask);
c61f3870 84void match_set_actset_output(struct match *, ofp_port_t actset_output);
81a76618
BP
85void match_set_metadata(struct match *, ovs_be64 metadata);
86void match_set_metadata_masked(struct match *,
87 ovs_be64 metadata, ovs_be64 mask);
88void match_set_tun_id(struct match *, ovs_be64 tun_id);
89void match_set_tun_id_masked(struct match *, ovs_be64 tun_id, ovs_be64 mask);
4fe3445a
PS
90void match_set_tun_src(struct match *match, ovs_be32 src);
91void match_set_tun_src_masked(struct match *match, ovs_be32 src, ovs_be32 mask);
92void match_set_tun_dst(struct match *match, ovs_be32 dst);
93void match_set_tun_dst_masked(struct match *match, ovs_be32 dst, ovs_be32 mask);
ffe4c74f
JB
94void match_set_tun_ipv6_src(struct match *, const struct in6_addr *);
95void match_set_tun_ipv6_src_masked(struct match *, const struct in6_addr *,
96 const struct in6_addr *);
97void match_set_tun_ipv6_dst(struct match *, const struct in6_addr *);
98void match_set_tun_ipv6_dst_masked(struct match *, const struct in6_addr *,
99 const struct in6_addr *);
4fe3445a
PS
100void match_set_tun_ttl(struct match *match, uint8_t ttl);
101void match_set_tun_ttl_masked(struct match *match, uint8_t ttl, uint8_t mask);
102void match_set_tun_tos(struct match *match, uint8_t tos);
103void match_set_tun_tos_masked(struct match *match, uint8_t tos, uint8_t mask);
104void match_set_tun_flags(struct match *match, uint16_t flags);
105void match_set_tun_flags_masked(struct match *match, uint16_t flags, uint16_t mask);
3def36a8
RD
106void match_set_tun_tp_dst(struct match *match, ovs_be16 tp_dst);
107void match_set_tun_tp_dst_masked(struct match *match, ovs_be16 port, ovs_be16 mask);
ac6073e3
MC
108void match_set_tun_gbp_id_masked(struct match *match, ovs_be16 gbp_id, ovs_be16 mask);
109void match_set_tun_gbp_id(struct match *match, ovs_be16 gbp_id);
110void match_set_tun_gbp_flags_masked(struct match *match, uint8_t flags, uint8_t mask);
111void match_set_tun_gbp_flags(struct match *match, uint8_t flags);
4e022ec0 112void match_set_in_port(struct match *, ofp_port_t ofp_port);
1362e248 113void match_set_pkt_mark(struct match *, uint32_t pkt_mark);
ac923e91 114void match_set_pkt_mark_masked(struct match *, uint32_t pkt_mark, uint32_t mask);
07659514
JS
115void match_set_ct_state(struct match *, uint32_t ct_state);
116void match_set_ct_state_masked(struct match *, uint32_t ct_state, uint32_t mask);
117void match_set_ct_zone(struct match *, uint16_t ct_zone);
8e53fe8c
JS
118void match_set_ct_mark(struct match *, uint32_t ct_mark);
119void match_set_ct_mark_masked(struct match *, uint32_t ct_mark, uint32_t mask);
9daf2348
JS
120void match_set_ct_label(struct match *, ovs_u128 ct_label);
121void match_set_ct_label_masked(struct match *, ovs_u128 ct_label, ovs_u128 mask);
daf4d3c1
JR
122void match_set_ct_nw_src(struct match *, ovs_be32);
123void match_set_ct_nw_src_masked(struct match *, ovs_be32, ovs_be32 mask);
124void match_set_ct_nw_dst(struct match *, ovs_be32);
125void match_set_ct_nw_dst_masked(struct match *, ovs_be32, ovs_be32 mask);
126void match_set_ct_nw_proto(struct match *, uint8_t);
127void match_set_ct_tp_src(struct match *, ovs_be16);
128void match_set_ct_tp_src_masked(struct match *, ovs_be16, ovs_be16 mask);
129void match_set_ct_tp_dst(struct match *, ovs_be16);
130void match_set_ct_tp_dst_masked(struct match *, ovs_be16, ovs_be16 mask);
131void match_set_ct_ipv6_src(struct match *, const struct in6_addr *);
132void match_set_ct_ipv6_src_masked(struct match *, const struct in6_addr *,
133 const struct in6_addr *);
134void match_set_ct_ipv6_dst(struct match *, const struct in6_addr *);
135void match_set_ct_ipv6_dst_masked(struct match *, const struct in6_addr *,
136 const struct in6_addr *);
137
beb75a40 138void match_set_packet_type(struct match *, ovs_be32 packet_type);
3d4b2e6e
JS
139void match_set_default_packet_type(struct match *);
140bool match_has_default_packet_type(const struct match *);
141void match_add_ethernet_prereq(struct match *, const struct mf_field *);
142
1b567fb9 143void match_set_skb_priority(struct match *, uint32_t skb_priority);
81a76618 144void match_set_dl_type(struct match *, ovs_be16);
74ff3298
JR
145void match_set_dl_src(struct match *, const struct eth_addr );
146void match_set_dl_src_masked(struct match *, const struct eth_addr dl_src,
147 const struct eth_addr mask);
148void match_set_dl_dst(struct match *, const struct eth_addr);
149void match_set_dl_dst_masked(struct match *, const struct eth_addr dl_dst,
150 const struct eth_addr mask);
81a76618
BP
151void match_set_dl_tci(struct match *, ovs_be16 tci);
152void match_set_dl_tci_masked(struct match *, ovs_be16 tci, ovs_be16 mask);
153void match_set_any_vid(struct match *);
154void match_set_dl_vlan(struct match *, ovs_be16);
155void match_set_vlan_vid(struct match *, ovs_be16);
156void match_set_vlan_vid_masked(struct match *, ovs_be16 vid, ovs_be16 mask);
157void match_set_any_pcp(struct match *);
158void match_set_dl_vlan_pcp(struct match *, uint8_t);
8bfd0fda
BP
159void match_set_any_mpls_lse(struct match *, int idx);
160void match_set_mpls_lse(struct match *, int idx, ovs_be32);
161void match_set_any_mpls_label(struct match *, int idx);
162void match_set_mpls_label(struct match *, int idx, ovs_be32);
163void match_set_any_mpls_tc(struct match *, int idx);
164void match_set_mpls_tc(struct match *, int idx, uint8_t);
165void match_set_any_mpls_bos(struct match *, int idx);
166void match_set_mpls_bos(struct match *, int idx, uint8_t);
bef3f465
BP
167void match_set_any_mpls_ttl(struct match *, int idx);
168void match_set_mpls_ttl(struct match *, int idx, uint8_t);
81a76618 169void match_set_tp_src(struct match *, ovs_be16);
8bfd0fda 170void match_set_mpls_lse(struct match *, int idx, ovs_be32 lse);
81a76618
BP
171void match_set_tp_src_masked(struct match *, ovs_be16 port, ovs_be16 mask);
172void match_set_tp_dst(struct match *, ovs_be16);
173void match_set_tp_dst_masked(struct match *, ovs_be16 port, ovs_be16 mask);
dc235f7f
JR
174void match_set_tcp_flags(struct match *, ovs_be16);
175void match_set_tcp_flags_masked(struct match *, ovs_be16 flags, ovs_be16 mask);
81a76618
BP
176void match_set_nw_proto(struct match *, uint8_t);
177void match_set_nw_src(struct match *, ovs_be32);
178void match_set_nw_src_masked(struct match *, ovs_be32 ip, ovs_be32 mask);
179void match_set_nw_dst(struct match *, ovs_be32);
180void match_set_nw_dst_masked(struct match *, ovs_be32 ip, ovs_be32 mask);
181void match_set_nw_dscp(struct match *, uint8_t);
182void match_set_nw_ecn(struct match *, uint8_t);
c489ad67
PB
183void match_set_nw_ttl(struct match *, uint8_t nw_ttl);
184void match_set_nw_ttl_masked(struct match *, uint8_t nw_ttl, uint8_t mask);
81a76618
BP
185void match_set_nw_frag(struct match *, uint8_t nw_frag);
186void match_set_nw_frag_masked(struct match *, uint8_t nw_frag, uint8_t mask);
187void match_set_icmp_type(struct match *, uint8_t);
188void match_set_icmp_code(struct match *, uint8_t);
74ff3298 189void match_set_arp_sha(struct match *, const struct eth_addr);
81a76618 190void match_set_arp_sha_masked(struct match *,
74ff3298
JR
191 const struct eth_addr arp_sha,
192 const struct eth_addr mask);
193void match_set_arp_tha(struct match *, const struct eth_addr);
81a76618 194void match_set_arp_tha_masked(struct match *,
74ff3298
JR
195 const struct eth_addr arp_tha,
196 const struct eth_addr mask);
81a76618
BP
197void match_set_ipv6_src(struct match *, const struct in6_addr *);
198void match_set_ipv6_src_masked(struct match *, const struct in6_addr *,
199 const struct in6_addr *);
200void match_set_ipv6_dst(struct match *, const struct in6_addr *);
201void match_set_ipv6_dst_masked(struct match *, const struct in6_addr *,
202 const struct in6_addr *);
203void match_set_ipv6_label(struct match *, ovs_be32);
204void match_set_ipv6_label_masked(struct match *, ovs_be32, ovs_be32);
205void match_set_nd_target(struct match *, const struct in6_addr *);
206void match_set_nd_target_masked(struct match *, const struct in6_addr *,
207 const struct in6_addr *);
208
209bool match_equal(const struct match *, const struct match *);
210uint32_t match_hash(const struct match *, uint32_t basis);
211
adcf00ba
AZ
212void match_init_hidden_fields(struct match *);
213bool match_has_default_hidden_fields(const struct match *);
214
50f96b10
BP
215void match_format(const struct match *, const struct ofputil_port_map *,
216 struct ds *, int priority);
217char *match_to_string(const struct match *, const struct ofputil_port_map *,
218 int priority);
219void match_print(const struct match *, const struct ofputil_port_map *);
5cb7a798
BP
220\f
221/* Compressed match. */
222
223/* A sparse representation of a "struct match".
ceb3bd67
JR
224 *
225 * 'flows' is used for allocating both 'flow' and 'mask' with one
226 * miniflow_alloc() call.
5cb7a798 227 *
df40c152 228 * There are two invariants:
5cb7a798 229 *
df40c152
BP
230 * - The same invariant as "struct match", that is, a 1-bit in the 'flow'
231 * must correspond to a 1-bit in 'mask'.
232 *
233 * - 'flow' and 'mask' have the same 'map'. This implies that 'flow' and
234 * 'mask' have the same part of "struct flow" at the same offset into
235 * 'values', which makes minimatch_matches_flow() faster.
236 */
5cb7a798 237struct minimatch {
ceb3bd67
JR
238 union {
239 struct {
240 struct miniflow *flow;
241 struct minimask *mask;
242 };
243 struct miniflow *flows[2];
244 };
1f7270d7 245 struct tun_metadata_allocation *tun_md;
5cb7a798
BP
246};
247
248void minimatch_init(struct minimatch *, const struct match *);
249void minimatch_clone(struct minimatch *, const struct minimatch *);
b2c1f00b 250void minimatch_move(struct minimatch *dst, struct minimatch *src);
5cb7a798
BP
251void minimatch_destroy(struct minimatch *);
252
253void minimatch_expand(const struct minimatch *, struct match *);
254
255bool minimatch_equal(const struct minimatch *a, const struct minimatch *b);
5cb7a798 256
df40c152
BP
257bool minimatch_matches_flow(const struct minimatch *, const struct flow *);
258
8d8ab6c2 259void minimatch_format(const struct minimatch *, const struct tun_table *,
50f96b10 260 const struct ofputil_port_map *,
8d8ab6c2 261 struct ds *, int priority);
50f96b10
BP
262char *minimatch_to_string(const struct minimatch *,
263 const struct ofputil_port_map *, int priority);
81a76618 264
ec30ca5f
BP
265#ifdef __cplusplus
266}
267#endif
268
81a76618 269#endif /* match.h */