]> git.proxmox.com Git - mirror_ovs.git/blob - lib/meta-flow.c
flow: Fix buffer overread in flow_hash_symmetric_l3l4().
[mirror_ovs.git] / lib / meta-flow.c
1 /*
2 * Copyright (c) 2011-2017 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
17 #include <config.h>
18
19 #include "openvswitch/meta-flow.h"
20
21 #include <errno.h>
22 #include <limits.h>
23 #include <netinet/icmp6.h>
24 #include <netinet/ip6.h>
25
26 #include "classifier.h"
27 #include "openvswitch/dynamic-string.h"
28 #include "nx-match.h"
29 #include "openvswitch/ofp-util.h"
30 #include "ovs-atomic.h"
31 #include "ovs-rcu.h"
32 #include "ovs-thread.h"
33 #include "packets.h"
34 #include "random.h"
35 #include "openvswitch/shash.h"
36 #include "socket-util.h"
37 #include "tun-metadata.h"
38 #include "unaligned.h"
39 #include "util.h"
40 #include "openvswitch/ofp-errors.h"
41 #include "openvswitch/vlog.h"
42 #include "vl-mff-map.h"
43
44 VLOG_DEFINE_THIS_MODULE(meta_flow);
45
46 #define FLOW_U32OFS(FIELD) \
47 offsetof(struct flow, FIELD) % 4 ? -1 : offsetof(struct flow, FIELD) / 4
48
49 #define MF_FIELD_SIZES(MEMBER) \
50 sizeof ((union mf_value *)0)->MEMBER, \
51 8 * sizeof ((union mf_value *)0)->MEMBER
52
53 extern const struct mf_field mf_fields[MFF_N_IDS]; /* Silence a warning. */
54
55 const struct mf_field mf_fields[MFF_N_IDS] = {
56 #include "meta-flow.inc"
57 };
58
59 /* Maps from an mf_field's 'name' or 'extra_name' to the mf_field. */
60 static struct shash mf_by_name;
61
62 /* Rate limit for parse errors. These always indicate a bug in an OpenFlow
63 * controller and so there's not much point in showing a lot of them. */
64 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
65
66 #define MF_VALUE_EXACT_8 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
67 #define MF_VALUE_EXACT_16 MF_VALUE_EXACT_8, MF_VALUE_EXACT_8
68 #define MF_VALUE_EXACT_32 MF_VALUE_EXACT_16, MF_VALUE_EXACT_16
69 #define MF_VALUE_EXACT_64 MF_VALUE_EXACT_32, MF_VALUE_EXACT_32
70 #define MF_VALUE_EXACT_128 MF_VALUE_EXACT_64, MF_VALUE_EXACT_64
71 #define MF_VALUE_EXACT_INITIALIZER { .tun_metadata = { MF_VALUE_EXACT_128 } }
72
73 const union mf_value exact_match_mask = MF_VALUE_EXACT_INITIALIZER;
74
75 static void nxm_init(void);
76
77 /* Returns the field with the given 'name', or a null pointer if no field has
78 * that name. */
79 const struct mf_field *
80 mf_from_name(const char *name)
81 {
82 nxm_init();
83 return shash_find_data(&mf_by_name, name);
84 }
85
86 /* Returns the field with the given 'name' (which is 'len' bytes long), or a
87 * null pointer if no field has that name. */
88 const struct mf_field *
89 mf_from_name_len(const char *name, size_t len)
90 {
91 nxm_init();
92
93 struct shash_node *node = shash_find_len(&mf_by_name, name, len);
94 return node ? node->data : NULL;
95 }
96
97 static void
98 nxm_do_init(void)
99 {
100 int i;
101
102 shash_init(&mf_by_name);
103 for (i = 0; i < MFF_N_IDS; i++) {
104 const struct mf_field *mf = &mf_fields[i];
105
106 ovs_assert(mf->id == i); /* Fields must be in the enum order. */
107
108 shash_add_once(&mf_by_name, mf->name, mf);
109 if (mf->extra_name) {
110 shash_add_once(&mf_by_name, mf->extra_name, mf);
111 }
112 }
113 }
114
115 static void
116 nxm_init(void)
117 {
118 static pthread_once_t once = PTHREAD_ONCE_INIT;
119 pthread_once(&once, nxm_do_init);
120 }
121
122 /* Consider the two value/mask pairs 'a_value/a_mask' and 'b_value/b_mask' as
123 * restrictions on a field's value. Then, this function initializes
124 * 'dst_value/dst_mask' such that it combines the restrictions of both pairs.
125 * This is not always possible, i.e. if one pair insists on a value of 0 in
126 * some bit and the other pair insists on a value of 1 in that bit. This
127 * function returns false in a case where the combined restriction is
128 * impossible (in which case 'dst_value/dst_mask' is not fully initialized),
129 * true otherwise.
130 *
131 * (As usually true for value/mask pairs in OVS, any 1-bit in a value must have
132 * a corresponding 1-bit in its mask.) */
133 bool
134 mf_subvalue_intersect(const union mf_subvalue *a_value,
135 const union mf_subvalue *a_mask,
136 const union mf_subvalue *b_value,
137 const union mf_subvalue *b_mask,
138 union mf_subvalue *dst_value,
139 union mf_subvalue *dst_mask)
140 {
141 for (int i = 0; i < ARRAY_SIZE(a_value->be64); i++) {
142 ovs_be64 av = a_value->be64[i];
143 ovs_be64 am = a_mask->be64[i];
144 ovs_be64 bv = b_value->be64[i];
145 ovs_be64 bm = b_mask->be64[i];
146 ovs_be64 *dv = &dst_value->be64[i];
147 ovs_be64 *dm = &dst_mask->be64[i];
148
149 if ((av ^ bv) & (am & bm)) {
150 return false;
151 }
152 *dv = av | bv;
153 *dm = am | bm;
154 }
155 return true;
156 }
157
158 /* Returns the "number of bits" in 'v', e.g. 1 if only the lowest-order bit is
159 * set, 2 if the second-lowest-order bit is set, and so on. */
160 int
161 mf_subvalue_width(const union mf_subvalue *v)
162 {
163 return 1 + bitwise_rscan(v, sizeof *v, true, sizeof *v * 8 - 1, -1);
164 }
165
166 /* For positive 'n', shifts the bits in 'value' 'n' bits to the left, and for
167 * negative 'n', shifts the bits '-n' bits to the right. */
168 void
169 mf_subvalue_shift(union mf_subvalue *value, int n)
170 {
171 if (n) {
172 union mf_subvalue tmp;
173 memset(&tmp, 0, sizeof tmp);
174
175 if (n > 0 && n < 8 * sizeof tmp) {
176 bitwise_copy(value, sizeof *value, 0,
177 &tmp, sizeof tmp, n,
178 8 * sizeof tmp - n);
179 } else if (n < 0 && n > -8 * sizeof tmp) {
180 bitwise_copy(value, sizeof *value, -n,
181 &tmp, sizeof tmp, 0,
182 8 * sizeof tmp + n);
183 }
184 *value = tmp;
185 }
186 }
187
188 /* Appends a formatted representation of 'sv' to 's'. */
189 void
190 mf_subvalue_format(const union mf_subvalue *sv, struct ds *s)
191 {
192 ds_put_hex(s, sv, sizeof *sv);
193 }
194
195 /* Returns true if 'wc' wildcards all the bits in field 'mf', false if 'wc'
196 * specifies at least one bit in the field.
197 *
198 * The caller is responsible for ensuring that 'wc' corresponds to a flow that
199 * meets 'mf''s prerequisites. */
200 bool
201 mf_is_all_wild(const struct mf_field *mf, const struct flow_wildcards *wc)
202 {
203 switch (mf->id) {
204 case MFF_DP_HASH:
205 return !wc->masks.dp_hash;
206 case MFF_RECIRC_ID:
207 return !wc->masks.recirc_id;
208 case MFF_CONJ_ID:
209 return !wc->masks.conj_id;
210 case MFF_TUN_SRC:
211 return !wc->masks.tunnel.ip_src;
212 case MFF_TUN_DST:
213 return !wc->masks.tunnel.ip_dst;
214 case MFF_TUN_IPV6_SRC:
215 return ipv6_mask_is_any(&wc->masks.tunnel.ipv6_src);
216 case MFF_TUN_IPV6_DST:
217 return ipv6_mask_is_any(&wc->masks.tunnel.ipv6_dst);
218 case MFF_TUN_ID:
219 return !wc->masks.tunnel.tun_id;
220 case MFF_TUN_TOS:
221 return !wc->masks.tunnel.ip_tos;
222 case MFF_TUN_TTL:
223 return !wc->masks.tunnel.ip_ttl;
224 case MFF_TUN_FLAGS:
225 return !(wc->masks.tunnel.flags & FLOW_TNL_PUB_F_MASK);
226 case MFF_TUN_GBP_ID:
227 return !wc->masks.tunnel.gbp_id;
228 case MFF_TUN_GBP_FLAGS:
229 return !wc->masks.tunnel.gbp_flags;
230 CASE_MFF_TUN_METADATA:
231 return !ULLONG_GET(wc->masks.tunnel.metadata.present.map,
232 mf->id - MFF_TUN_METADATA0);
233 case MFF_METADATA:
234 return !wc->masks.metadata;
235 case MFF_IN_PORT:
236 case MFF_IN_PORT_OXM:
237 return !wc->masks.in_port.ofp_port;
238 case MFF_SKB_PRIORITY:
239 return !wc->masks.skb_priority;
240 case MFF_PKT_MARK:
241 return !wc->masks.pkt_mark;
242 case MFF_CT_STATE:
243 return !wc->masks.ct_state;
244 case MFF_CT_ZONE:
245 return !wc->masks.ct_zone;
246 case MFF_CT_MARK:
247 return !wc->masks.ct_mark;
248 case MFF_CT_LABEL:
249 return ovs_u128_is_zero(wc->masks.ct_label);
250 case MFF_CT_NW_PROTO:
251 return !wc->masks.ct_nw_proto;
252 case MFF_CT_NW_SRC:
253 return !wc->masks.ct_nw_src;
254 case MFF_CT_NW_DST:
255 return !wc->masks.ct_nw_dst;
256 case MFF_CT_TP_SRC:
257 return !wc->masks.ct_tp_src;
258 case MFF_CT_TP_DST:
259 return !wc->masks.ct_tp_dst;
260 case MFF_CT_IPV6_SRC:
261 return ipv6_mask_is_any(&wc->masks.ct_ipv6_src);
262 case MFF_CT_IPV6_DST:
263 return ipv6_mask_is_any(&wc->masks.ct_ipv6_dst);
264 CASE_MFF_REGS:
265 return !wc->masks.regs[mf->id - MFF_REG0];
266 CASE_MFF_XREGS:
267 return !flow_get_xreg(&wc->masks, mf->id - MFF_XREG0);
268 CASE_MFF_XXREGS: {
269 ovs_u128 value = flow_get_xxreg(&wc->masks, mf->id - MFF_XXREG0);
270 return ovs_u128_is_zero(value);
271 }
272 case MFF_ACTSET_OUTPUT:
273 return !wc->masks.actset_output;
274
275 case MFF_ETH_SRC:
276 return eth_addr_is_zero(wc->masks.dl_src);
277 case MFF_ETH_DST:
278 return eth_addr_is_zero(wc->masks.dl_dst);
279 case MFF_ETH_TYPE:
280 return !wc->masks.dl_type;
281
282 case MFF_ARP_SHA:
283 case MFF_ND_SLL:
284 return eth_addr_is_zero(wc->masks.arp_sha);
285
286 case MFF_ARP_THA:
287 case MFF_ND_TLL:
288 return eth_addr_is_zero(wc->masks.arp_tha);
289
290 case MFF_VLAN_TCI:
291 return !wc->masks.vlans[0].tci;
292 case MFF_DL_VLAN:
293 return !(wc->masks.vlans[0].tci & htons(VLAN_VID_MASK));
294 case MFF_VLAN_VID:
295 return !(wc->masks.vlans[0].tci & htons(VLAN_VID_MASK | VLAN_CFI));
296 case MFF_DL_VLAN_PCP:
297 case MFF_VLAN_PCP:
298 return !(wc->masks.vlans[0].tci & htons(VLAN_PCP_MASK));
299
300 case MFF_MPLS_LABEL:
301 return !(wc->masks.mpls_lse[0] & htonl(MPLS_LABEL_MASK));
302 case MFF_MPLS_TC:
303 return !(wc->masks.mpls_lse[0] & htonl(MPLS_TC_MASK));
304 case MFF_MPLS_BOS:
305 return !(wc->masks.mpls_lse[0] & htonl(MPLS_BOS_MASK));
306 case MFF_MPLS_TTL:
307 return !(wc->masks.mpls_lse[0] & htonl(MPLS_TTL_MASK));
308
309 case MFF_IPV4_SRC:
310 return !wc->masks.nw_src;
311 case MFF_IPV4_DST:
312 return !wc->masks.nw_dst;
313
314 case MFF_IPV6_SRC:
315 return ipv6_mask_is_any(&wc->masks.ipv6_src);
316 case MFF_IPV6_DST:
317 return ipv6_mask_is_any(&wc->masks.ipv6_dst);
318
319 case MFF_IPV6_LABEL:
320 return !wc->masks.ipv6_label;
321
322 case MFF_IP_PROTO:
323 return !wc->masks.nw_proto;
324 case MFF_IP_DSCP:
325 case MFF_IP_DSCP_SHIFTED:
326 return !(wc->masks.nw_tos & IP_DSCP_MASK);
327 case MFF_IP_ECN:
328 return !(wc->masks.nw_tos & IP_ECN_MASK);
329 case MFF_IP_TTL:
330 return !wc->masks.nw_ttl;
331
332 case MFF_ND_TARGET:
333 return ipv6_mask_is_any(&wc->masks.nd_target);
334
335 case MFF_IP_FRAG:
336 return !(wc->masks.nw_frag & FLOW_NW_FRAG_MASK);
337
338 case MFF_ARP_OP:
339 return !wc->masks.nw_proto;
340 case MFF_ARP_SPA:
341 return !wc->masks.nw_src;
342 case MFF_ARP_TPA:
343 return !wc->masks.nw_dst;
344
345 case MFF_TCP_SRC:
346 case MFF_UDP_SRC:
347 case MFF_SCTP_SRC:
348 case MFF_ICMPV4_TYPE:
349 case MFF_ICMPV6_TYPE:
350 return !wc->masks.tp_src;
351 case MFF_TCP_DST:
352 case MFF_UDP_DST:
353 case MFF_SCTP_DST:
354 case MFF_ICMPV4_CODE:
355 case MFF_ICMPV6_CODE:
356 return !wc->masks.tp_dst;
357 case MFF_TCP_FLAGS:
358 return !wc->masks.tcp_flags;
359
360 case MFF_N_IDS:
361 default:
362 OVS_NOT_REACHED();
363 }
364 }
365
366 /* Initializes 'mask' with the wildcard bit pattern for field 'mf' within 'wc'.
367 * Each bit in 'mask' will be set to 1 if the bit is significant for matching
368 * purposes, or to 0 if it is wildcarded.
369 *
370 * The caller is responsible for ensuring that 'wc' corresponds to a flow that
371 * meets 'mf''s prerequisites. */
372 void
373 mf_get_mask(const struct mf_field *mf, const struct flow_wildcards *wc,
374 union mf_value *mask)
375 {
376 mf_get_value(mf, &wc->masks, mask);
377 }
378
379 /* Tests whether 'mask' is a valid wildcard bit pattern for 'mf'. Returns true
380 * if the mask is valid, false otherwise. */
381 bool
382 mf_is_mask_valid(const struct mf_field *mf, const union mf_value *mask)
383 {
384 switch (mf->maskable) {
385 case MFM_NONE:
386 return (is_all_zeros(mask, mf->n_bytes) ||
387 is_all_ones(mask, mf->n_bytes));
388
389 case MFM_FULLY:
390 return true;
391 }
392
393 OVS_NOT_REACHED();
394 }
395
396 /* Returns true if 'flow' meets the prerequisites for 'mf', false otherwise.
397 * If a non-NULL 'mask' is passed, zero-valued matches can also be verified.
398 * Sets inspected bits in 'wc', if non-NULL. */
399 static bool
400 mf_are_prereqs_ok__(const struct mf_field *mf, const struct flow *flow,
401 const struct flow_wildcards *mask,
402 struct flow_wildcards *wc)
403 {
404 switch (mf->prereqs) {
405 case MFP_NONE:
406 return true;
407 case MFP_ARP:
408 return (flow->dl_type == htons(ETH_TYPE_ARP) ||
409 flow->dl_type == htons(ETH_TYPE_RARP));
410 case MFP_IPV4:
411 return flow->dl_type == htons(ETH_TYPE_IP);
412 case MFP_IPV6:
413 return flow->dl_type == htons(ETH_TYPE_IPV6);
414 case MFP_VLAN_VID:
415 return is_vlan(flow, wc);
416 case MFP_MPLS:
417 return eth_type_mpls(flow->dl_type);
418 case MFP_IP_ANY:
419 return is_ip_any(flow);
420 case MFP_CT_VALID:
421 return is_ct_valid(flow, mask, wc);
422 case MFP_TCP:
423 /* Matching !FRAG_LATER is not enforced (mask is not checked). */
424 return is_tcp(flow, wc) && !(flow->nw_frag & FLOW_NW_FRAG_LATER);
425 case MFP_UDP:
426 return is_udp(flow, wc) && !(flow->nw_frag & FLOW_NW_FRAG_LATER);
427 case MFP_SCTP:
428 return is_sctp(flow, wc) && !(flow->nw_frag & FLOW_NW_FRAG_LATER);
429 case MFP_ICMPV4:
430 return is_icmpv4(flow, wc);
431 case MFP_ICMPV6:
432 return is_icmpv6(flow, wc);
433 case MFP_ND:
434 return is_nd(flow, wc);
435 case MFP_ND_SOLICIT:
436 return is_nd(flow, wc) && flow->tp_src == htons(ND_NEIGHBOR_SOLICIT);
437 case MFP_ND_ADVERT:
438 return is_nd(flow, wc) && flow->tp_src == htons(ND_NEIGHBOR_ADVERT);
439 }
440
441 OVS_NOT_REACHED();
442 }
443
444 /* Returns true if 'flow' meets the prerequisites for 'mf', false otherwise.
445 * Sets inspected bits in 'wc', if non-NULL. */
446 bool
447 mf_are_prereqs_ok(const struct mf_field *mf, const struct flow *flow,
448 struct flow_wildcards *wc)
449 {
450 return mf_are_prereqs_ok__(mf, flow, NULL, wc);
451 }
452
453 /* Returns true if 'match' meets the prerequisites for 'mf', false otherwise.
454 */
455 bool
456 mf_are_match_prereqs_ok(const struct mf_field *mf, const struct match *match)
457 {
458 return mf_are_prereqs_ok__(mf, &match->flow, &match->wc, NULL);
459 }
460
461 /* Returns true if 'value' may be a valid value *as part of a masked match*,
462 * false otherwise.
463 *
464 * A value is not rejected just because it is not valid for the field in
465 * question, but only if it doesn't make sense to test the bits in question at
466 * all. For example, the MFF_VLAN_TCI field will never have a nonzero value
467 * without the VLAN_CFI bit being set, but we can't reject those values because
468 * it is still legitimate to test just for those bits (see the documentation
469 * for NXM_OF_VLAN_TCI in meta-flow.h). On the other hand, there is never a
470 * reason to set the low bit of MFF_IP_DSCP to 1, so we reject that. */
471 bool
472 mf_is_value_valid(const struct mf_field *mf, const union mf_value *value)
473 {
474 switch (mf->id) {
475 case MFF_DP_HASH:
476 case MFF_RECIRC_ID:
477 case MFF_CONJ_ID:
478 case MFF_TUN_ID:
479 case MFF_TUN_SRC:
480 case MFF_TUN_DST:
481 case MFF_TUN_IPV6_SRC:
482 case MFF_TUN_IPV6_DST:
483 case MFF_TUN_TOS:
484 case MFF_TUN_TTL:
485 case MFF_TUN_GBP_ID:
486 case MFF_TUN_GBP_FLAGS:
487 CASE_MFF_TUN_METADATA:
488 case MFF_METADATA:
489 case MFF_IN_PORT:
490 case MFF_SKB_PRIORITY:
491 case MFF_PKT_MARK:
492 case MFF_CT_ZONE:
493 case MFF_CT_MARK:
494 case MFF_CT_LABEL:
495 case MFF_CT_NW_PROTO:
496 case MFF_CT_NW_SRC:
497 case MFF_CT_NW_DST:
498 case MFF_CT_IPV6_SRC:
499 case MFF_CT_IPV6_DST:
500 case MFF_CT_TP_SRC:
501 case MFF_CT_TP_DST:
502 CASE_MFF_REGS:
503 CASE_MFF_XREGS:
504 CASE_MFF_XXREGS:
505 case MFF_ETH_SRC:
506 case MFF_ETH_DST:
507 case MFF_ETH_TYPE:
508 case MFF_VLAN_TCI:
509 case MFF_MPLS_TTL:
510 case MFF_IPV4_SRC:
511 case MFF_IPV4_DST:
512 case MFF_IPV6_SRC:
513 case MFF_IPV6_DST:
514 case MFF_IP_PROTO:
515 case MFF_IP_TTL:
516 case MFF_ARP_SPA:
517 case MFF_ARP_TPA:
518 case MFF_ARP_SHA:
519 case MFF_ARP_THA:
520 case MFF_TCP_SRC:
521 case MFF_TCP_DST:
522 case MFF_UDP_SRC:
523 case MFF_UDP_DST:
524 case MFF_SCTP_SRC:
525 case MFF_SCTP_DST:
526 case MFF_ICMPV4_TYPE:
527 case MFF_ICMPV4_CODE:
528 case MFF_ICMPV6_TYPE:
529 case MFF_ICMPV6_CODE:
530 case MFF_ND_TARGET:
531 case MFF_ND_SLL:
532 case MFF_ND_TLL:
533 return true;
534
535 case MFF_IN_PORT_OXM:
536 case MFF_ACTSET_OUTPUT: {
537 ofp_port_t port;
538 return !ofputil_port_from_ofp11(value->be32, &port);
539 }
540
541 case MFF_IP_DSCP:
542 return !(value->u8 & ~IP_DSCP_MASK);
543 case MFF_IP_DSCP_SHIFTED:
544 return !(value->u8 & (~IP_DSCP_MASK >> 2));
545 case MFF_IP_ECN:
546 return !(value->u8 & ~IP_ECN_MASK);
547 case MFF_IP_FRAG:
548 return !(value->u8 & ~FLOW_NW_FRAG_MASK);
549 case MFF_TCP_FLAGS:
550 return !(value->be16 & ~htons(0x0fff));
551
552 case MFF_ARP_OP:
553 return !(value->be16 & htons(0xff00));
554
555 case MFF_DL_VLAN:
556 return !(value->be16 & htons(VLAN_CFI | VLAN_PCP_MASK));
557 case MFF_VLAN_VID:
558 return !(value->be16 & htons(VLAN_PCP_MASK));
559
560 case MFF_DL_VLAN_PCP:
561 case MFF_VLAN_PCP:
562 return !(value->u8 & ~(VLAN_PCP_MASK >> VLAN_PCP_SHIFT));
563
564 case MFF_IPV6_LABEL:
565 return !(value->be32 & ~htonl(IPV6_LABEL_MASK));
566
567 case MFF_MPLS_LABEL:
568 return !(value->be32 & ~htonl(MPLS_LABEL_MASK >> MPLS_LABEL_SHIFT));
569
570 case MFF_MPLS_TC:
571 return !(value->u8 & ~(MPLS_TC_MASK >> MPLS_TC_SHIFT));
572
573 case MFF_MPLS_BOS:
574 return !(value->u8 & ~(MPLS_BOS_MASK >> MPLS_BOS_SHIFT));
575
576 case MFF_TUN_FLAGS:
577 return !(value->be16 & ~htons(FLOW_TNL_PUB_F_MASK));
578
579 case MFF_CT_STATE:
580 return !(value->be32 & ~htonl(CS_SUPPORTED_MASK));
581
582 case MFF_N_IDS:
583 default:
584 OVS_NOT_REACHED();
585 }
586 }
587
588 /* Copies the value of field 'mf' from 'flow' into 'value'. The caller is
589 * responsible for ensuring that 'flow' meets 'mf''s prerequisites. */
590 void
591 mf_get_value(const struct mf_field *mf, const struct flow *flow,
592 union mf_value *value)
593 {
594 switch (mf->id) {
595 case MFF_DP_HASH:
596 value->be32 = htonl(flow->dp_hash);
597 break;
598 case MFF_RECIRC_ID:
599 value->be32 = htonl(flow->recirc_id);
600 break;
601 case MFF_CONJ_ID:
602 value->be32 = htonl(flow->conj_id);
603 break;
604 case MFF_TUN_ID:
605 value->be64 = flow->tunnel.tun_id;
606 break;
607 case MFF_TUN_SRC:
608 value->be32 = flow->tunnel.ip_src;
609 break;
610 case MFF_TUN_DST:
611 value->be32 = flow->tunnel.ip_dst;
612 break;
613 case MFF_TUN_IPV6_SRC:
614 value->ipv6 = flow->tunnel.ipv6_src;
615 break;
616 case MFF_TUN_IPV6_DST:
617 value->ipv6 = flow->tunnel.ipv6_dst;
618 break;
619 case MFF_TUN_FLAGS:
620 value->be16 = htons(flow->tunnel.flags & FLOW_TNL_PUB_F_MASK);
621 break;
622 case MFF_TUN_GBP_ID:
623 value->be16 = flow->tunnel.gbp_id;
624 break;
625 case MFF_TUN_GBP_FLAGS:
626 value->u8 = flow->tunnel.gbp_flags;
627 break;
628 case MFF_TUN_TTL:
629 value->u8 = flow->tunnel.ip_ttl;
630 break;
631 case MFF_TUN_TOS:
632 value->u8 = flow->tunnel.ip_tos;
633 break;
634 CASE_MFF_TUN_METADATA:
635 tun_metadata_read(&flow->tunnel, mf, value);
636 break;
637
638 case MFF_METADATA:
639 value->be64 = flow->metadata;
640 break;
641
642 case MFF_IN_PORT:
643 value->be16 = htons(ofp_to_u16(flow->in_port.ofp_port));
644 break;
645 case MFF_IN_PORT_OXM:
646 value->be32 = ofputil_port_to_ofp11(flow->in_port.ofp_port);
647 break;
648 case MFF_ACTSET_OUTPUT:
649 value->be32 = ofputil_port_to_ofp11(flow->actset_output);
650 break;
651
652 case MFF_SKB_PRIORITY:
653 value->be32 = htonl(flow->skb_priority);
654 break;
655
656 case MFF_PKT_MARK:
657 value->be32 = htonl(flow->pkt_mark);
658 break;
659
660 case MFF_CT_STATE:
661 value->be32 = htonl(flow->ct_state);
662 break;
663
664 case MFF_CT_ZONE:
665 value->be16 = htons(flow->ct_zone);
666 break;
667
668 case MFF_CT_MARK:
669 value->be32 = htonl(flow->ct_mark);
670 break;
671
672 case MFF_CT_LABEL:
673 value->be128 = hton128(flow->ct_label);
674 break;
675
676 case MFF_CT_NW_PROTO:
677 value->u8 = flow->ct_nw_proto;
678 break;
679
680 case MFF_CT_NW_SRC:
681 value->be32 = flow->ct_nw_src;
682 break;
683
684 case MFF_CT_NW_DST:
685 value->be32 = flow->ct_nw_dst;
686 break;
687
688 case MFF_CT_IPV6_SRC:
689 value->ipv6 = flow->ct_ipv6_src;
690 break;
691
692 case MFF_CT_IPV6_DST:
693 value->ipv6 = flow->ct_ipv6_dst;
694 break;
695
696 case MFF_CT_TP_SRC:
697 value->be16 = flow->ct_tp_src;
698 break;
699
700 case MFF_CT_TP_DST:
701 value->be16 = flow->ct_tp_dst;
702 break;
703
704 CASE_MFF_REGS:
705 value->be32 = htonl(flow->regs[mf->id - MFF_REG0]);
706 break;
707
708 CASE_MFF_XREGS:
709 value->be64 = htonll(flow_get_xreg(flow, mf->id - MFF_XREG0));
710 break;
711
712 CASE_MFF_XXREGS:
713 value->be128 = hton128(flow_get_xxreg(flow, mf->id - MFF_XXREG0));
714 break;
715
716 case MFF_ETH_SRC:
717 value->mac = flow->dl_src;
718 break;
719
720 case MFF_ETH_DST:
721 value->mac = flow->dl_dst;
722 break;
723
724 case MFF_ETH_TYPE:
725 value->be16 = flow->dl_type;
726 break;
727
728 case MFF_VLAN_TCI:
729 value->be16 = flow->vlans[0].tci;
730 break;
731
732 case MFF_DL_VLAN:
733 value->be16 = flow->vlans[0].tci & htons(VLAN_VID_MASK);
734 break;
735 case MFF_VLAN_VID:
736 value->be16 = flow->vlans[0].tci & htons(VLAN_VID_MASK | VLAN_CFI);
737 break;
738
739 case MFF_DL_VLAN_PCP:
740 case MFF_VLAN_PCP:
741 value->u8 = vlan_tci_to_pcp(flow->vlans[0].tci);
742 break;
743
744 case MFF_MPLS_LABEL:
745 value->be32 = htonl(mpls_lse_to_label(flow->mpls_lse[0]));
746 break;
747
748 case MFF_MPLS_TC:
749 value->u8 = mpls_lse_to_tc(flow->mpls_lse[0]);
750 break;
751
752 case MFF_MPLS_BOS:
753 value->u8 = mpls_lse_to_bos(flow->mpls_lse[0]);
754 break;
755
756 case MFF_MPLS_TTL:
757 value->u8 = mpls_lse_to_ttl(flow->mpls_lse[0]);
758 break;
759
760 case MFF_IPV4_SRC:
761 value->be32 = flow->nw_src;
762 break;
763
764 case MFF_IPV4_DST:
765 value->be32 = flow->nw_dst;
766 break;
767
768 case MFF_IPV6_SRC:
769 value->ipv6 = flow->ipv6_src;
770 break;
771
772 case MFF_IPV6_DST:
773 value->ipv6 = flow->ipv6_dst;
774 break;
775
776 case MFF_IPV6_LABEL:
777 value->be32 = flow->ipv6_label;
778 break;
779
780 case MFF_IP_PROTO:
781 value->u8 = flow->nw_proto;
782 break;
783
784 case MFF_IP_DSCP:
785 value->u8 = flow->nw_tos & IP_DSCP_MASK;
786 break;
787
788 case MFF_IP_DSCP_SHIFTED:
789 value->u8 = flow->nw_tos >> 2;
790 break;
791
792 case MFF_IP_ECN:
793 value->u8 = flow->nw_tos & IP_ECN_MASK;
794 break;
795
796 case MFF_IP_TTL:
797 value->u8 = flow->nw_ttl;
798 break;
799
800 case MFF_IP_FRAG:
801 value->u8 = flow->nw_frag;
802 break;
803
804 case MFF_ARP_OP:
805 value->be16 = htons(flow->nw_proto);
806 break;
807
808 case MFF_ARP_SPA:
809 value->be32 = flow->nw_src;
810 break;
811
812 case MFF_ARP_TPA:
813 value->be32 = flow->nw_dst;
814 break;
815
816 case MFF_ARP_SHA:
817 case MFF_ND_SLL:
818 value->mac = flow->arp_sha;
819 break;
820
821 case MFF_ARP_THA:
822 case MFF_ND_TLL:
823 value->mac = flow->arp_tha;
824 break;
825
826 case MFF_TCP_SRC:
827 case MFF_UDP_SRC:
828 case MFF_SCTP_SRC:
829 value->be16 = flow->tp_src;
830 break;
831
832 case MFF_TCP_DST:
833 case MFF_UDP_DST:
834 case MFF_SCTP_DST:
835 value->be16 = flow->tp_dst;
836 break;
837
838 case MFF_TCP_FLAGS:
839 value->be16 = flow->tcp_flags;
840 break;
841
842 case MFF_ICMPV4_TYPE:
843 case MFF_ICMPV6_TYPE:
844 value->u8 = ntohs(flow->tp_src);
845 break;
846
847 case MFF_ICMPV4_CODE:
848 case MFF_ICMPV6_CODE:
849 value->u8 = ntohs(flow->tp_dst);
850 break;
851
852 case MFF_ND_TARGET:
853 value->ipv6 = flow->nd_target;
854 break;
855
856 case MFF_N_IDS:
857 default:
858 OVS_NOT_REACHED();
859 }
860 }
861
862 /* Makes 'match' match field 'mf' exactly, with the value matched taken from
863 * 'value'. The caller is responsible for ensuring that 'match' meets 'mf''s
864 * prerequisites.
865 *
866 * If non-NULL, 'err_str' returns a malloc'ed string describing any errors
867 * with the request or NULL if there is no error. The caller is reponsible
868 * for freeing the string. */
869 void
870 mf_set_value(const struct mf_field *mf,
871 const union mf_value *value, struct match *match, char **err_str)
872 {
873 if (err_str) {
874 *err_str = NULL;
875 }
876
877 switch (mf->id) {
878 case MFF_DP_HASH:
879 match_set_dp_hash(match, ntohl(value->be32));
880 break;
881 case MFF_RECIRC_ID:
882 match_set_recirc_id(match, ntohl(value->be32));
883 break;
884 case MFF_CONJ_ID:
885 match_set_conj_id(match, ntohl(value->be32));
886 break;
887 case MFF_TUN_ID:
888 match_set_tun_id(match, value->be64);
889 break;
890 case MFF_TUN_SRC:
891 match_set_tun_src(match, value->be32);
892 break;
893 case MFF_TUN_DST:
894 match_set_tun_dst(match, value->be32);
895 break;
896 case MFF_TUN_IPV6_SRC:
897 match_set_tun_ipv6_src(match, &value->ipv6);
898 break;
899 case MFF_TUN_IPV6_DST:
900 match_set_tun_ipv6_dst(match, &value->ipv6);
901 break;
902 case MFF_TUN_FLAGS:
903 match_set_tun_flags(match, ntohs(value->be16));
904 break;
905 case MFF_TUN_GBP_ID:
906 match_set_tun_gbp_id(match, value->be16);
907 break;
908 case MFF_TUN_GBP_FLAGS:
909 match_set_tun_gbp_flags(match, value->u8);
910 break;
911 case MFF_TUN_TOS:
912 match_set_tun_tos(match, value->u8);
913 break;
914 case MFF_TUN_TTL:
915 match_set_tun_ttl(match, value->u8);
916 break;
917 CASE_MFF_TUN_METADATA:
918 tun_metadata_set_match(mf, value, NULL, match, err_str);
919 break;
920
921 case MFF_METADATA:
922 match_set_metadata(match, value->be64);
923 break;
924
925 case MFF_IN_PORT:
926 match_set_in_port(match, u16_to_ofp(ntohs(value->be16)));
927 break;
928
929 case MFF_IN_PORT_OXM: {
930 ofp_port_t port;
931 ofputil_port_from_ofp11(value->be32, &port);
932 match_set_in_port(match, port);
933 break;
934 }
935 case MFF_ACTSET_OUTPUT: {
936 ofp_port_t port;
937 ofputil_port_from_ofp11(value->be32, &port);
938 match_set_actset_output(match, port);
939 break;
940 }
941
942 case MFF_SKB_PRIORITY:
943 match_set_skb_priority(match, ntohl(value->be32));
944 break;
945
946 case MFF_PKT_MARK:
947 match_set_pkt_mark(match, ntohl(value->be32));
948 break;
949
950 case MFF_CT_STATE:
951 match_set_ct_state(match, ntohl(value->be32));
952 break;
953
954 case MFF_CT_ZONE:
955 match_set_ct_zone(match, ntohs(value->be16));
956 break;
957
958 case MFF_CT_MARK:
959 match_set_ct_mark(match, ntohl(value->be32));
960 break;
961
962 case MFF_CT_LABEL:
963 match_set_ct_label(match, ntoh128(value->be128));
964 break;
965
966 case MFF_CT_NW_PROTO:
967 match_set_ct_nw_proto(match, value->u8);
968 break;
969
970 case MFF_CT_NW_SRC:
971 match_set_ct_nw_src(match, value->be32);
972 break;
973
974 case MFF_CT_NW_DST:
975 match_set_ct_nw_dst(match, value->be32);
976 break;
977
978 case MFF_CT_IPV6_SRC:
979 match_set_ct_ipv6_src(match, &value->ipv6);
980 break;
981
982 case MFF_CT_IPV6_DST:
983 match_set_ct_ipv6_dst(match, &value->ipv6);
984 break;
985
986 case MFF_CT_TP_SRC:
987 match_set_ct_tp_src(match, value->be16);
988 break;
989
990 case MFF_CT_TP_DST:
991 match_set_ct_tp_dst(match, value->be16);
992 break;
993
994 CASE_MFF_REGS:
995 match_set_reg(match, mf->id - MFF_REG0, ntohl(value->be32));
996 break;
997
998 CASE_MFF_XREGS:
999 match_set_xreg(match, mf->id - MFF_XREG0, ntohll(value->be64));
1000 break;
1001
1002 CASE_MFF_XXREGS:
1003 match_set_xxreg(match, mf->id - MFF_XXREG0, ntoh128(value->be128));
1004 break;
1005
1006 case MFF_ETH_SRC:
1007 match_set_dl_src(match, value->mac);
1008 break;
1009
1010 case MFF_ETH_DST:
1011 match_set_dl_dst(match, value->mac);
1012 break;
1013
1014 case MFF_ETH_TYPE:
1015 match_set_dl_type(match, value->be16);
1016 break;
1017
1018 case MFF_VLAN_TCI:
1019 match_set_dl_tci(match, value->be16);
1020 break;
1021
1022 case MFF_DL_VLAN:
1023 match_set_dl_vlan(match, value->be16);
1024 break;
1025 case MFF_VLAN_VID:
1026 match_set_vlan_vid(match, value->be16);
1027 break;
1028
1029 case MFF_DL_VLAN_PCP:
1030 case MFF_VLAN_PCP:
1031 match_set_dl_vlan_pcp(match, value->u8);
1032 break;
1033
1034 case MFF_MPLS_LABEL:
1035 match_set_mpls_label(match, 0, value->be32);
1036 break;
1037
1038 case MFF_MPLS_TC:
1039 match_set_mpls_tc(match, 0, value->u8);
1040 break;
1041
1042 case MFF_MPLS_BOS:
1043 match_set_mpls_bos(match, 0, value->u8);
1044 break;
1045
1046 case MFF_MPLS_TTL:
1047 match_set_mpls_ttl(match, 0, value->u8);
1048 break;
1049
1050 case MFF_IPV4_SRC:
1051 match_set_nw_src(match, value->be32);
1052 break;
1053
1054 case MFF_IPV4_DST:
1055 match_set_nw_dst(match, value->be32);
1056 break;
1057
1058 case MFF_IPV6_SRC:
1059 match_set_ipv6_src(match, &value->ipv6);
1060 break;
1061
1062 case MFF_IPV6_DST:
1063 match_set_ipv6_dst(match, &value->ipv6);
1064 break;
1065
1066 case MFF_IPV6_LABEL:
1067 match_set_ipv6_label(match, value->be32);
1068 break;
1069
1070 case MFF_IP_PROTO:
1071 match_set_nw_proto(match, value->u8);
1072 break;
1073
1074 case MFF_IP_DSCP:
1075 match_set_nw_dscp(match, value->u8);
1076 break;
1077
1078 case MFF_IP_DSCP_SHIFTED:
1079 match_set_nw_dscp(match, value->u8 << 2);
1080 break;
1081
1082 case MFF_IP_ECN:
1083 match_set_nw_ecn(match, value->u8);
1084 break;
1085
1086 case MFF_IP_TTL:
1087 match_set_nw_ttl(match, value->u8);
1088 break;
1089
1090 case MFF_IP_FRAG:
1091 match_set_nw_frag(match, value->u8);
1092 break;
1093
1094 case MFF_ARP_OP:
1095 match_set_nw_proto(match, ntohs(value->be16));
1096 break;
1097
1098 case MFF_ARP_SPA:
1099 match_set_nw_src(match, value->be32);
1100 break;
1101
1102 case MFF_ARP_TPA:
1103 match_set_nw_dst(match, value->be32);
1104 break;
1105
1106 case MFF_ARP_SHA:
1107 case MFF_ND_SLL:
1108 match_set_arp_sha(match, value->mac);
1109 break;
1110
1111 case MFF_ARP_THA:
1112 case MFF_ND_TLL:
1113 match_set_arp_tha(match, value->mac);
1114 break;
1115
1116 case MFF_TCP_SRC:
1117 case MFF_UDP_SRC:
1118 case MFF_SCTP_SRC:
1119 match_set_tp_src(match, value->be16);
1120 break;
1121
1122 case MFF_TCP_DST:
1123 case MFF_UDP_DST:
1124 case MFF_SCTP_DST:
1125 match_set_tp_dst(match, value->be16);
1126 break;
1127
1128 case MFF_TCP_FLAGS:
1129 match_set_tcp_flags(match, value->be16);
1130 break;
1131
1132 case MFF_ICMPV4_TYPE:
1133 case MFF_ICMPV6_TYPE:
1134 match_set_icmp_type(match, value->u8);
1135 break;
1136
1137 case MFF_ICMPV4_CODE:
1138 case MFF_ICMPV6_CODE:
1139 match_set_icmp_code(match, value->u8);
1140 break;
1141
1142 case MFF_ND_TARGET:
1143 match_set_nd_target(match, &value->ipv6);
1144 break;
1145
1146 case MFF_N_IDS:
1147 default:
1148 OVS_NOT_REACHED();
1149 }
1150 }
1151
1152 /* Unwildcard the bits in 'mask' of the 'wc' member field described by 'mf'.
1153 * The caller is responsible for ensuring that 'wc' meets 'mf''s
1154 * prerequisites. */
1155 void
1156 mf_mask_field_masked(const struct mf_field *mf, const union mf_value *mask,
1157 struct flow_wildcards *wc)
1158 {
1159 union mf_value temp_mask;
1160 /* For MFF_DL_VLAN, we cannot send a all 1's to flow_set_dl_vlan() as that
1161 * will be considered as OFP10_VLAN_NONE. So make sure the mask only has
1162 * valid bits in this case. */
1163 if (mf->id == MFF_DL_VLAN) {
1164 temp_mask.be16 = htons(VLAN_VID_MASK) & mask->be16;
1165 mask = &temp_mask;
1166 }
1167
1168 union mf_value mask_value;
1169
1170 mf_get_value(mf, &wc->masks, &mask_value);
1171 for (size_t i = 0; i < mf->n_bytes; i++) {
1172 mask_value.b[i] |= mask->b[i];
1173 }
1174 mf_set_flow_value(mf, &mask_value, &wc->masks);
1175 }
1176
1177 /* Unwildcard 'wc' member field described by 'mf'. The caller is
1178 * responsible for ensuring that 'mask' meets 'mf''s prerequisites. */
1179 void
1180 mf_mask_field(const struct mf_field *mf, struct flow_wildcards *wc)
1181 {
1182 mf_mask_field_masked(mf, &exact_match_mask, wc);
1183 }
1184
1185 static int
1186 field_len(const struct mf_field *mf, const union mf_value *value_)
1187 {
1188 const uint8_t *value = &value_->u8;
1189 int i;
1190
1191 if (!mf->variable_len) {
1192 return mf->n_bytes;
1193 }
1194
1195 if (!value) {
1196 return 0;
1197 }
1198
1199 for (i = 0; i < mf->n_bytes; i++) {
1200 if (value[i] != 0) {
1201 break;
1202 }
1203 }
1204
1205 return mf->n_bytes - i;
1206 }
1207
1208 /* Returns the effective length of the field. For fixed length fields,
1209 * this is just the defined length. For variable length fields, it is
1210 * the minimum size encoding that retains the same meaning (i.e.
1211 * discarding leading zeros).
1212 *
1213 * 'is_masked' returns (if non-NULL) whether the original contained
1214 * a mask. Otherwise, a mask that is the same length as the value
1215 * might be misinterpreted as an exact match. */
1216 int
1217 mf_field_len(const struct mf_field *mf, const union mf_value *value,
1218 const union mf_value *mask, bool *is_masked_)
1219 {
1220 int len, mask_len;
1221 bool is_masked = mask && !is_all_ones(mask, mf->n_bytes);
1222
1223 len = field_len(mf, value);
1224 if (is_masked) {
1225 mask_len = field_len(mf, mask);
1226 len = MAX(len, mask_len);
1227 }
1228
1229 if (is_masked_) {
1230 *is_masked_ = is_masked;
1231 }
1232
1233 return len;
1234 }
1235
1236 /* Sets 'flow' member field described by 'mf' to 'value'. The caller is
1237 * responsible for ensuring that 'flow' meets 'mf''s prerequisites.*/
1238 void
1239 mf_set_flow_value(const struct mf_field *mf,
1240 const union mf_value *value, struct flow *flow)
1241 {
1242 switch (mf->id) {
1243 case MFF_DP_HASH:
1244 flow->dp_hash = ntohl(value->be32);
1245 break;
1246 case MFF_RECIRC_ID:
1247 flow->recirc_id = ntohl(value->be32);
1248 break;
1249 case MFF_CONJ_ID:
1250 flow->conj_id = ntohl(value->be32);
1251 break;
1252 case MFF_TUN_ID:
1253 flow->tunnel.tun_id = value->be64;
1254 break;
1255 case MFF_TUN_SRC:
1256 flow->tunnel.ip_src = value->be32;
1257 break;
1258 case MFF_TUN_DST:
1259 flow->tunnel.ip_dst = value->be32;
1260 break;
1261 case MFF_TUN_IPV6_SRC:
1262 flow->tunnel.ipv6_src = value->ipv6;
1263 break;
1264 case MFF_TUN_IPV6_DST:
1265 flow->tunnel.ipv6_dst = value->ipv6;
1266 break;
1267 case MFF_TUN_FLAGS:
1268 flow->tunnel.flags = (flow->tunnel.flags & ~FLOW_TNL_PUB_F_MASK) |
1269 ntohs(value->be16);
1270 break;
1271 case MFF_TUN_GBP_ID:
1272 flow->tunnel.gbp_id = value->be16;
1273 break;
1274 case MFF_TUN_GBP_FLAGS:
1275 flow->tunnel.gbp_flags = value->u8;
1276 break;
1277 case MFF_TUN_TOS:
1278 flow->tunnel.ip_tos = value->u8;
1279 break;
1280 case MFF_TUN_TTL:
1281 flow->tunnel.ip_ttl = value->u8;
1282 break;
1283 CASE_MFF_TUN_METADATA:
1284 tun_metadata_write(&flow->tunnel, mf, value);
1285 break;
1286 case MFF_METADATA:
1287 flow->metadata = value->be64;
1288 break;
1289
1290 case MFF_IN_PORT:
1291 flow->in_port.ofp_port = u16_to_ofp(ntohs(value->be16));
1292 break;
1293
1294 case MFF_IN_PORT_OXM:
1295 ofputil_port_from_ofp11(value->be32, &flow->in_port.ofp_port);
1296 break;
1297 case MFF_ACTSET_OUTPUT:
1298 ofputil_port_from_ofp11(value->be32, &flow->actset_output);
1299 break;
1300
1301 case MFF_SKB_PRIORITY:
1302 flow->skb_priority = ntohl(value->be32);
1303 break;
1304
1305 case MFF_PKT_MARK:
1306 flow->pkt_mark = ntohl(value->be32);
1307 break;
1308
1309 case MFF_CT_STATE:
1310 flow->ct_state = ntohl(value->be32);
1311 break;
1312
1313 case MFF_CT_ZONE:
1314 flow->ct_zone = ntohs(value->be16);
1315 break;
1316
1317 case MFF_CT_MARK:
1318 flow->ct_mark = ntohl(value->be32);
1319 break;
1320
1321 case MFF_CT_LABEL:
1322 flow->ct_label = ntoh128(value->be128);
1323 break;
1324
1325 case MFF_CT_NW_PROTO:
1326 flow->ct_nw_proto = value->u8;
1327 break;
1328
1329 case MFF_CT_NW_SRC:
1330 flow->ct_nw_src = value->be32;
1331 break;
1332
1333 case MFF_CT_NW_DST:
1334 flow->ct_nw_dst = value->be32;
1335 break;
1336
1337 case MFF_CT_IPV6_SRC:
1338 flow->ct_ipv6_src = value->ipv6;
1339 break;
1340
1341 case MFF_CT_IPV6_DST:
1342 flow->ct_ipv6_dst = value->ipv6;
1343 break;
1344
1345 case MFF_CT_TP_SRC:
1346 flow->ct_tp_src = value->be16;
1347 break;
1348
1349 case MFF_CT_TP_DST:
1350 flow->ct_tp_dst = value->be16;
1351 break;
1352
1353 CASE_MFF_REGS:
1354 flow->regs[mf->id - MFF_REG0] = ntohl(value->be32);
1355 break;
1356
1357 CASE_MFF_XREGS:
1358 flow_set_xreg(flow, mf->id - MFF_XREG0, ntohll(value->be64));
1359 break;
1360
1361 CASE_MFF_XXREGS:
1362 flow_set_xxreg(flow, mf->id - MFF_XXREG0, ntoh128(value->be128));
1363 break;
1364
1365 case MFF_ETH_SRC:
1366 flow->dl_src = value->mac;
1367 break;
1368
1369 case MFF_ETH_DST:
1370 flow->dl_dst = value->mac;
1371 break;
1372
1373 case MFF_ETH_TYPE:
1374 flow->dl_type = value->be16;
1375 break;
1376
1377 case MFF_VLAN_TCI:
1378 flow->vlans[0].tci = value->be16;
1379 flow_fix_vlan_tpid(flow);
1380 break;
1381
1382 case MFF_DL_VLAN:
1383 flow_set_dl_vlan(flow, value->be16);
1384 flow_fix_vlan_tpid(flow);
1385 break;
1386
1387 case MFF_VLAN_VID:
1388 flow_set_vlan_vid(flow, value->be16);
1389 flow_fix_vlan_tpid(flow);
1390 break;
1391
1392 case MFF_DL_VLAN_PCP:
1393 case MFF_VLAN_PCP:
1394 flow_set_vlan_pcp(flow, value->u8);
1395 flow_fix_vlan_tpid(flow);
1396 break;
1397
1398 case MFF_MPLS_LABEL:
1399 flow_set_mpls_label(flow, 0, value->be32);
1400 break;
1401
1402 case MFF_MPLS_TC:
1403 flow_set_mpls_tc(flow, 0, value->u8);
1404 break;
1405
1406 case MFF_MPLS_BOS:
1407 flow_set_mpls_bos(flow, 0, value->u8);
1408 break;
1409
1410 case MFF_MPLS_TTL:
1411 flow_set_mpls_ttl(flow, 0, value->u8);
1412 break;
1413
1414 case MFF_IPV4_SRC:
1415 flow->nw_src = value->be32;
1416 break;
1417
1418 case MFF_IPV4_DST:
1419 flow->nw_dst = value->be32;
1420 break;
1421
1422 case MFF_IPV6_SRC:
1423 flow->ipv6_src = value->ipv6;
1424 break;
1425
1426 case MFF_IPV6_DST:
1427 flow->ipv6_dst = value->ipv6;
1428 break;
1429
1430 case MFF_IPV6_LABEL:
1431 flow->ipv6_label = value->be32 & htonl(IPV6_LABEL_MASK);
1432 break;
1433
1434 case MFF_IP_PROTO:
1435 flow->nw_proto = value->u8;
1436 break;
1437
1438 case MFF_IP_DSCP:
1439 flow->nw_tos &= ~IP_DSCP_MASK;
1440 flow->nw_tos |= value->u8 & IP_DSCP_MASK;
1441 break;
1442
1443 case MFF_IP_DSCP_SHIFTED:
1444 flow->nw_tos &= ~IP_DSCP_MASK;
1445 flow->nw_tos |= value->u8 << 2;
1446 break;
1447
1448 case MFF_IP_ECN:
1449 flow->nw_tos &= ~IP_ECN_MASK;
1450 flow->nw_tos |= value->u8 & IP_ECN_MASK;
1451 break;
1452
1453 case MFF_IP_TTL:
1454 flow->nw_ttl = value->u8;
1455 break;
1456
1457 case MFF_IP_FRAG:
1458 flow->nw_frag = value->u8 & FLOW_NW_FRAG_MASK;
1459 break;
1460
1461 case MFF_ARP_OP:
1462 flow->nw_proto = ntohs(value->be16);
1463 break;
1464
1465 case MFF_ARP_SPA:
1466 flow->nw_src = value->be32;
1467 break;
1468
1469 case MFF_ARP_TPA:
1470 flow->nw_dst = value->be32;
1471 break;
1472
1473 case MFF_ARP_SHA:
1474 case MFF_ND_SLL:
1475 flow->arp_sha = value->mac;
1476 break;
1477
1478 case MFF_ARP_THA:
1479 case MFF_ND_TLL:
1480 flow->arp_tha = value->mac;
1481 break;
1482
1483 case MFF_TCP_SRC:
1484 case MFF_UDP_SRC:
1485 case MFF_SCTP_SRC:
1486 flow->tp_src = value->be16;
1487 break;
1488
1489 case MFF_TCP_DST:
1490 case MFF_UDP_DST:
1491 case MFF_SCTP_DST:
1492 flow->tp_dst = value->be16;
1493 break;
1494
1495 case MFF_TCP_FLAGS:
1496 flow->tcp_flags = value->be16;
1497 break;
1498
1499 case MFF_ICMPV4_TYPE:
1500 case MFF_ICMPV6_TYPE:
1501 flow->tp_src = htons(value->u8);
1502 break;
1503
1504 case MFF_ICMPV4_CODE:
1505 case MFF_ICMPV6_CODE:
1506 flow->tp_dst = htons(value->u8);
1507 break;
1508
1509 case MFF_ND_TARGET:
1510 flow->nd_target = value->ipv6;
1511 break;
1512
1513 case MFF_N_IDS:
1514 default:
1515 OVS_NOT_REACHED();
1516 }
1517 }
1518
1519 /* Consider each of 'src', 'mask', and 'dst' as if they were arrays of 8*n
1520 * bits. Then, for each 0 <= i < 8 * n such that mask[i] == 1, sets dst[i] =
1521 * src[i]. */
1522 static void
1523 apply_mask(const uint8_t *src, const uint8_t *mask, uint8_t *dst, size_t n)
1524 {
1525 size_t i;
1526
1527 for (i = 0; i < n; i++) {
1528 dst[i] = (src[i] & mask[i]) | (dst[i] & ~mask[i]);
1529 }
1530 }
1531
1532 /* Sets 'flow' member field described by 'field' to 'value', except that bits
1533 * for which 'mask' has a 0-bit keep their existing values. The caller is
1534 * responsible for ensuring that 'flow' meets 'field''s prerequisites.*/
1535 void
1536 mf_set_flow_value_masked(const struct mf_field *field,
1537 const union mf_value *value,
1538 const union mf_value *mask,
1539 struct flow *flow)
1540 {
1541 union mf_value tmp;
1542
1543 mf_get_value(field, flow, &tmp);
1544 apply_mask((const uint8_t *) value, (const uint8_t *) mask,
1545 (uint8_t *) &tmp, field->n_bytes);
1546 mf_set_flow_value(field, &tmp, flow);
1547 }
1548
1549 bool
1550 mf_is_tun_metadata(const struct mf_field *mf)
1551 {
1552 return mf->id >= MFF_TUN_METADATA0 &&
1553 mf->id < MFF_TUN_METADATA0 + TUN_METADATA_NUM_OPTS;
1554 }
1555
1556 bool
1557 mf_is_pipeline_field(const struct mf_field *mf)
1558 {
1559 switch (mf->id) {
1560 case MFF_TUN_ID:
1561 case MFF_TUN_SRC:
1562 case MFF_TUN_DST:
1563 case MFF_TUN_IPV6_SRC:
1564 case MFF_TUN_IPV6_DST:
1565 case MFF_TUN_FLAGS:
1566 case MFF_TUN_GBP_ID:
1567 case MFF_TUN_GBP_FLAGS:
1568 CASE_MFF_TUN_METADATA:
1569 case MFF_METADATA:
1570 case MFF_IN_PORT:
1571 case MFF_IN_PORT_OXM:
1572 CASE_MFF_REGS:
1573 CASE_MFF_XREGS:
1574 CASE_MFF_XXREGS:
1575 return true;
1576
1577 case MFF_DP_HASH:
1578 case MFF_RECIRC_ID:
1579 case MFF_CONJ_ID:
1580 case MFF_TUN_TTL:
1581 case MFF_TUN_TOS:
1582 case MFF_ACTSET_OUTPUT:
1583 case MFF_SKB_PRIORITY:
1584 case MFF_PKT_MARK:
1585 case MFF_CT_STATE:
1586 case MFF_CT_ZONE:
1587 case MFF_CT_MARK:
1588 case MFF_CT_LABEL:
1589 case MFF_CT_NW_PROTO:
1590 case MFF_CT_NW_SRC:
1591 case MFF_CT_NW_DST:
1592 case MFF_CT_IPV6_SRC:
1593 case MFF_CT_IPV6_DST:
1594 case MFF_CT_TP_SRC:
1595 case MFF_CT_TP_DST:
1596 case MFF_ETH_SRC:
1597 case MFF_ETH_DST:
1598 case MFF_ETH_TYPE:
1599 case MFF_VLAN_TCI:
1600 case MFF_DL_VLAN:
1601 case MFF_VLAN_VID:
1602 case MFF_DL_VLAN_PCP:
1603 case MFF_VLAN_PCP:
1604 case MFF_MPLS_LABEL:
1605 case MFF_MPLS_TC:
1606 case MFF_MPLS_BOS:
1607 case MFF_MPLS_TTL:
1608 case MFF_IPV4_SRC:
1609 case MFF_IPV4_DST:
1610 case MFF_IPV6_SRC:
1611 case MFF_IPV6_DST:
1612 case MFF_IPV6_LABEL:
1613 case MFF_IP_PROTO:
1614 case MFF_IP_DSCP:
1615 case MFF_IP_DSCP_SHIFTED:
1616 case MFF_IP_ECN:
1617 case MFF_IP_TTL:
1618 case MFF_IP_FRAG:
1619 case MFF_ARP_OP:
1620 case MFF_ARP_SPA:
1621 case MFF_ARP_TPA:
1622 case MFF_ARP_SHA:
1623 case MFF_ARP_THA:
1624 case MFF_TCP_SRC:
1625 case MFF_TCP_DST:
1626 case MFF_TCP_FLAGS:
1627 case MFF_UDP_SRC:
1628 case MFF_UDP_DST:
1629 case MFF_SCTP_SRC:
1630 case MFF_SCTP_DST:
1631 case MFF_ICMPV4_TYPE:
1632 case MFF_ICMPV4_CODE:
1633 case MFF_ICMPV6_TYPE:
1634 case MFF_ICMPV6_CODE:
1635 case MFF_ND_TARGET:
1636 case MFF_ND_SLL:
1637 case MFF_ND_TLL:
1638 return false;
1639
1640 case MFF_N_IDS:
1641 default:
1642 OVS_NOT_REACHED();
1643 }
1644 }
1645
1646 /* Returns true if 'mf' has previously been set in 'flow', false if
1647 * it contains a non-default value.
1648 *
1649 * The caller is responsible for ensuring that 'flow' meets 'mf''s
1650 * prerequisites. */
1651 bool
1652 mf_is_set(const struct mf_field *mf, const struct flow *flow)
1653 {
1654 if (!mf_is_tun_metadata(mf)) {
1655 union mf_value value;
1656
1657 mf_get_value(mf, flow, &value);
1658 return !is_all_zeros(&value, mf->n_bytes);
1659 } else {
1660 return ULLONG_GET(flow->tunnel.metadata.present.map,
1661 mf->id - MFF_TUN_METADATA0);
1662 }
1663 }
1664
1665 /* Makes 'match' wildcard field 'mf'.
1666 *
1667 * The caller is responsible for ensuring that 'match' meets 'mf''s
1668 * prerequisites.
1669 *
1670 * If non-NULL, 'err_str' returns a malloc'ed string describing any errors
1671 * with the request or NULL if there is no error. The caller is reponsible
1672 * for freeing the string. */
1673 void
1674 mf_set_wild(const struct mf_field *mf, struct match *match, char **err_str)
1675 {
1676 if (err_str) {
1677 *err_str = NULL;
1678 }
1679
1680 switch (mf->id) {
1681 case MFF_DP_HASH:
1682 match->flow.dp_hash = 0;
1683 match->wc.masks.dp_hash = 0;
1684 break;
1685 case MFF_RECIRC_ID:
1686 match->flow.recirc_id = 0;
1687 match->wc.masks.recirc_id = 0;
1688 break;
1689 case MFF_CONJ_ID:
1690 match->flow.conj_id = 0;
1691 match->wc.masks.conj_id = 0;
1692 break;
1693 case MFF_TUN_ID:
1694 match_set_tun_id_masked(match, htonll(0), htonll(0));
1695 break;
1696 case MFF_TUN_SRC:
1697 match_set_tun_src_masked(match, htonl(0), htonl(0));
1698 break;
1699 case MFF_TUN_DST:
1700 match_set_tun_dst_masked(match, htonl(0), htonl(0));
1701 break;
1702 case MFF_TUN_IPV6_SRC:
1703 memset(&match->wc.masks.tunnel.ipv6_src, 0,
1704 sizeof match->wc.masks.tunnel.ipv6_src);
1705 memset(&match->flow.tunnel.ipv6_src, 0,
1706 sizeof match->flow.tunnel.ipv6_src);
1707 break;
1708 case MFF_TUN_IPV6_DST:
1709 memset(&match->wc.masks.tunnel.ipv6_dst, 0,
1710 sizeof match->wc.masks.tunnel.ipv6_dst);
1711 memset(&match->flow.tunnel.ipv6_dst, 0,
1712 sizeof match->flow.tunnel.ipv6_dst);
1713 break;
1714 case MFF_TUN_FLAGS:
1715 match_set_tun_flags_masked(match, 0, 0);
1716 break;
1717 case MFF_TUN_GBP_ID:
1718 match_set_tun_gbp_id_masked(match, 0, 0);
1719 break;
1720 case MFF_TUN_GBP_FLAGS:
1721 match_set_tun_gbp_flags_masked(match, 0, 0);
1722 break;
1723 case MFF_TUN_TOS:
1724 match_set_tun_tos_masked(match, 0, 0);
1725 break;
1726 case MFF_TUN_TTL:
1727 match_set_tun_ttl_masked(match, 0, 0);
1728 break;
1729 CASE_MFF_TUN_METADATA:
1730 tun_metadata_set_match(mf, NULL, NULL, match, err_str);
1731 break;
1732
1733 case MFF_METADATA:
1734 match_set_metadata_masked(match, htonll(0), htonll(0));
1735 break;
1736
1737 case MFF_IN_PORT:
1738 case MFF_IN_PORT_OXM:
1739 match->flow.in_port.ofp_port = 0;
1740 match->wc.masks.in_port.ofp_port = 0;
1741 break;
1742 case MFF_ACTSET_OUTPUT:
1743 match->flow.actset_output = 0;
1744 match->wc.masks.actset_output = 0;
1745 break;
1746
1747 case MFF_SKB_PRIORITY:
1748 match->flow.skb_priority = 0;
1749 match->wc.masks.skb_priority = 0;
1750 break;
1751
1752 case MFF_PKT_MARK:
1753 match->flow.pkt_mark = 0;
1754 match->wc.masks.pkt_mark = 0;
1755 break;
1756
1757 case MFF_CT_STATE:
1758 match->flow.ct_state = 0;
1759 match->wc.masks.ct_state = 0;
1760 break;
1761
1762 case MFF_CT_ZONE:
1763 match->flow.ct_zone = 0;
1764 match->wc.masks.ct_zone = 0;
1765 break;
1766
1767 case MFF_CT_MARK:
1768 match->flow.ct_mark = 0;
1769 match->wc.masks.ct_mark = 0;
1770 break;
1771
1772 case MFF_CT_LABEL:
1773 memset(&match->flow.ct_label, 0, sizeof(match->flow.ct_label));
1774 memset(&match->wc.masks.ct_label, 0, sizeof(match->wc.masks.ct_label));
1775 break;
1776
1777 case MFF_CT_NW_PROTO:
1778 match->flow.ct_nw_proto = 0;
1779 match->wc.masks.ct_nw_proto = 0;
1780 break;
1781
1782 case MFF_CT_NW_SRC:
1783 match->flow.ct_nw_src = 0;
1784 match->wc.masks.ct_nw_src = 0;
1785 break;
1786
1787 case MFF_CT_NW_DST:
1788 match->flow.ct_nw_dst = 0;
1789 match->wc.masks.ct_nw_dst = 0;
1790 break;
1791
1792 case MFF_CT_IPV6_SRC:
1793 memset(&match->flow.ct_ipv6_src, 0, sizeof(match->flow.ct_ipv6_src));
1794 WC_UNMASK_FIELD(&match->wc, ct_ipv6_src);
1795 break;
1796
1797 case MFF_CT_IPV6_DST:
1798 memset(&match->flow.ct_ipv6_dst, 0, sizeof(match->flow.ct_ipv6_dst));
1799 WC_UNMASK_FIELD(&match->wc, ct_ipv6_dst);
1800 break;
1801
1802 case MFF_CT_TP_SRC:
1803 match->flow.ct_tp_src = 0;
1804 match->wc.masks.ct_tp_src = 0;
1805 break;
1806
1807 case MFF_CT_TP_DST:
1808 match->flow.ct_tp_dst = 0;
1809 match->wc.masks.ct_tp_dst = 0;
1810 break;
1811
1812 CASE_MFF_REGS:
1813 match_set_reg_masked(match, mf->id - MFF_REG0, 0, 0);
1814 break;
1815
1816 CASE_MFF_XREGS:
1817 match_set_xreg_masked(match, mf->id - MFF_XREG0, 0, 0);
1818 break;
1819
1820 CASE_MFF_XXREGS: {
1821 match_set_xxreg_masked(match, mf->id - MFF_XXREG0, OVS_U128_ZERO,
1822 OVS_U128_ZERO);
1823 break;
1824 }
1825
1826 case MFF_ETH_SRC:
1827 match->flow.dl_src = eth_addr_zero;
1828 match->wc.masks.dl_src = eth_addr_zero;
1829 break;
1830
1831 case MFF_ETH_DST:
1832 match->flow.dl_dst = eth_addr_zero;
1833 match->wc.masks.dl_dst = eth_addr_zero;
1834 break;
1835
1836 case MFF_ETH_TYPE:
1837 match->flow.dl_type = htons(0);
1838 match->wc.masks.dl_type = htons(0);
1839 break;
1840
1841 case MFF_VLAN_TCI:
1842 match_set_dl_tci_masked(match, htons(0), htons(0));
1843 break;
1844
1845 case MFF_DL_VLAN:
1846 case MFF_VLAN_VID:
1847 match_set_any_vid(match);
1848 break;
1849
1850 case MFF_DL_VLAN_PCP:
1851 case MFF_VLAN_PCP:
1852 match_set_any_pcp(match);
1853 break;
1854
1855 case MFF_MPLS_LABEL:
1856 match_set_any_mpls_label(match, 0);
1857 break;
1858
1859 case MFF_MPLS_TC:
1860 match_set_any_mpls_tc(match, 0);
1861 break;
1862
1863 case MFF_MPLS_BOS:
1864 match_set_any_mpls_bos(match, 0);
1865 break;
1866
1867 case MFF_MPLS_TTL:
1868 match_set_any_mpls_ttl(match, 0);
1869 break;
1870
1871 case MFF_IPV4_SRC:
1872 case MFF_ARP_SPA:
1873 match_set_nw_src_masked(match, htonl(0), htonl(0));
1874 break;
1875
1876 case MFF_IPV4_DST:
1877 case MFF_ARP_TPA:
1878 match_set_nw_dst_masked(match, htonl(0), htonl(0));
1879 break;
1880
1881 case MFF_IPV6_SRC:
1882 memset(&match->wc.masks.ipv6_src, 0, sizeof match->wc.masks.ipv6_src);
1883 memset(&match->flow.ipv6_src, 0, sizeof match->flow.ipv6_src);
1884 break;
1885
1886 case MFF_IPV6_DST:
1887 memset(&match->wc.masks.ipv6_dst, 0, sizeof match->wc.masks.ipv6_dst);
1888 memset(&match->flow.ipv6_dst, 0, sizeof match->flow.ipv6_dst);
1889 break;
1890
1891 case MFF_IPV6_LABEL:
1892 match->wc.masks.ipv6_label = htonl(0);
1893 match->flow.ipv6_label = htonl(0);
1894 break;
1895
1896 case MFF_IP_PROTO:
1897 match->wc.masks.nw_proto = 0;
1898 match->flow.nw_proto = 0;
1899 break;
1900
1901 case MFF_IP_DSCP:
1902 case MFF_IP_DSCP_SHIFTED:
1903 match->wc.masks.nw_tos &= ~IP_DSCP_MASK;
1904 match->flow.nw_tos &= ~IP_DSCP_MASK;
1905 break;
1906
1907 case MFF_IP_ECN:
1908 match->wc.masks.nw_tos &= ~IP_ECN_MASK;
1909 match->flow.nw_tos &= ~IP_ECN_MASK;
1910 break;
1911
1912 case MFF_IP_TTL:
1913 match->wc.masks.nw_ttl = 0;
1914 match->flow.nw_ttl = 0;
1915 break;
1916
1917 case MFF_IP_FRAG:
1918 match->wc.masks.nw_frag &= ~FLOW_NW_FRAG_MASK;
1919 match->flow.nw_frag &= ~FLOW_NW_FRAG_MASK;
1920 break;
1921
1922 case MFF_ARP_OP:
1923 match->wc.masks.nw_proto = 0;
1924 match->flow.nw_proto = 0;
1925 break;
1926
1927 case MFF_ARP_SHA:
1928 case MFF_ND_SLL:
1929 match->flow.arp_sha = eth_addr_zero;
1930 match->wc.masks.arp_sha = eth_addr_zero;
1931 break;
1932
1933 case MFF_ARP_THA:
1934 case MFF_ND_TLL:
1935 match->flow.arp_tha = eth_addr_zero;
1936 match->wc.masks.arp_tha = eth_addr_zero;
1937 break;
1938
1939 case MFF_TCP_SRC:
1940 case MFF_UDP_SRC:
1941 case MFF_SCTP_SRC:
1942 case MFF_ICMPV4_TYPE:
1943 case MFF_ICMPV6_TYPE:
1944 match->wc.masks.tp_src = htons(0);
1945 match->flow.tp_src = htons(0);
1946 break;
1947
1948 case MFF_TCP_DST:
1949 case MFF_UDP_DST:
1950 case MFF_SCTP_DST:
1951 case MFF_ICMPV4_CODE:
1952 case MFF_ICMPV6_CODE:
1953 match->wc.masks.tp_dst = htons(0);
1954 match->flow.tp_dst = htons(0);
1955 break;
1956
1957 case MFF_TCP_FLAGS:
1958 match->wc.masks.tcp_flags = htons(0);
1959 match->flow.tcp_flags = htons(0);
1960 break;
1961
1962 case MFF_ND_TARGET:
1963 memset(&match->wc.masks.nd_target, 0,
1964 sizeof match->wc.masks.nd_target);
1965 memset(&match->flow.nd_target, 0, sizeof match->flow.nd_target);
1966 break;
1967
1968 case MFF_N_IDS:
1969 default:
1970 OVS_NOT_REACHED();
1971 }
1972 }
1973
1974 /* Makes 'match' match field 'mf' with the specified 'value' and 'mask'.
1975 * 'value' specifies a value to match and 'mask' specifies a wildcard pattern,
1976 * with a 1-bit indicating that the corresponding value bit must match and a
1977 * 0-bit indicating a don't-care.
1978 *
1979 * If 'mask' is NULL or points to all-1-bits, then this call is equivalent to
1980 * mf_set_value(mf, value, match). If 'mask' points to all-0-bits, then this
1981 * call is equivalent to mf_set_wild(mf, match).
1982 *
1983 * 'mask' must be a valid mask for 'mf' (see mf_is_mask_valid()). The caller
1984 * is responsible for ensuring that 'match' meets 'mf''s prerequisites.
1985 *
1986 * If non-NULL, 'err_str' returns a malloc'ed string describing any errors
1987 * with the request or NULL if there is no error. The caller is reponsible
1988 * for freeing the string.
1989 *
1990 * Return a set of enum ofputil_protocol bits (as an uint32_t to avoid circular
1991 * dependency on enum ofputil_protocol definition) indicating which OpenFlow
1992 * protocol versions can support this functionality. */
1993 uint32_t
1994 mf_set(const struct mf_field *mf,
1995 const union mf_value *value, const union mf_value *mask,
1996 struct match *match, char **err_str)
1997 {
1998 if (!mask || is_all_ones(mask, mf->n_bytes)) {
1999 mf_set_value(mf, value, match, err_str);
2000 return mf->usable_protocols_exact;
2001 } else if (is_all_zeros(mask, mf->n_bytes) && !mf_is_tun_metadata(mf)) {
2002 /* Tunnel metadata matches on the existence of the field itself, so
2003 * it still needs to be encoded even if the value is wildcarded. */
2004 mf_set_wild(mf, match, err_str);
2005 return OFPUTIL_P_ANY;
2006 }
2007
2008 if (err_str) {
2009 *err_str = NULL;
2010 }
2011
2012 switch (mf->id) {
2013 case MFF_CT_ZONE:
2014 case MFF_CT_NW_PROTO:
2015 case MFF_CT_NW_SRC:
2016 case MFF_CT_NW_DST:
2017 case MFF_CT_IPV6_SRC:
2018 case MFF_CT_IPV6_DST:
2019 case MFF_CT_TP_SRC:
2020 case MFF_CT_TP_DST:
2021 case MFF_RECIRC_ID:
2022 case MFF_CONJ_ID:
2023 case MFF_IN_PORT:
2024 case MFF_IN_PORT_OXM:
2025 case MFF_ACTSET_OUTPUT:
2026 case MFF_SKB_PRIORITY:
2027 case MFF_ETH_TYPE:
2028 case MFF_DL_VLAN:
2029 case MFF_DL_VLAN_PCP:
2030 case MFF_VLAN_PCP:
2031 case MFF_MPLS_LABEL:
2032 case MFF_MPLS_TC:
2033 case MFF_MPLS_BOS:
2034 case MFF_MPLS_TTL:
2035 case MFF_IP_PROTO:
2036 case MFF_IP_TTL:
2037 case MFF_IP_DSCP:
2038 case MFF_IP_DSCP_SHIFTED:
2039 case MFF_IP_ECN:
2040 case MFF_ARP_OP:
2041 case MFF_ICMPV4_TYPE:
2042 case MFF_ICMPV4_CODE:
2043 case MFF_ICMPV6_TYPE:
2044 case MFF_ICMPV6_CODE:
2045 return OFPUTIL_P_NONE;
2046
2047 case MFF_DP_HASH:
2048 match_set_dp_hash_masked(match, ntohl(value->be32), ntohl(mask->be32));
2049 break;
2050 case MFF_TUN_ID:
2051 match_set_tun_id_masked(match, value->be64, mask->be64);
2052 break;
2053 case MFF_TUN_SRC:
2054 match_set_tun_src_masked(match, value->be32, mask->be32);
2055 break;
2056 case MFF_TUN_DST:
2057 match_set_tun_dst_masked(match, value->be32, mask->be32);
2058 break;
2059 case MFF_TUN_IPV6_SRC:
2060 match_set_tun_ipv6_src_masked(match, &value->ipv6, &mask->ipv6);
2061 break;
2062 case MFF_TUN_IPV6_DST:
2063 match_set_tun_ipv6_dst_masked(match, &value->ipv6, &mask->ipv6);
2064 break;
2065 case MFF_TUN_FLAGS:
2066 match_set_tun_flags_masked(match, ntohs(value->be16), ntohs(mask->be16));
2067 break;
2068 case MFF_TUN_GBP_ID:
2069 match_set_tun_gbp_id_masked(match, value->be16, mask->be16);
2070 break;
2071 case MFF_TUN_GBP_FLAGS:
2072 match_set_tun_gbp_flags_masked(match, value->u8, mask->u8);
2073 break;
2074 case MFF_TUN_TTL:
2075 match_set_tun_ttl_masked(match, value->u8, mask->u8);
2076 break;
2077 case MFF_TUN_TOS:
2078 match_set_tun_tos_masked(match, value->u8, mask->u8);
2079 break;
2080 CASE_MFF_TUN_METADATA:
2081 tun_metadata_set_match(mf, value, mask, match, err_str);
2082 break;
2083
2084 case MFF_METADATA:
2085 match_set_metadata_masked(match, value->be64, mask->be64);
2086 break;
2087
2088 CASE_MFF_REGS:
2089 match_set_reg_masked(match, mf->id - MFF_REG0,
2090 ntohl(value->be32), ntohl(mask->be32));
2091 break;
2092
2093 CASE_MFF_XREGS:
2094 match_set_xreg_masked(match, mf->id - MFF_XREG0,
2095 ntohll(value->be64), ntohll(mask->be64));
2096 break;
2097
2098 CASE_MFF_XXREGS: {
2099 match_set_xxreg_masked(match, mf->id - MFF_XXREG0,
2100 ntoh128(value->be128), ntoh128(mask->be128));
2101 break;
2102 }
2103
2104 case MFF_PKT_MARK:
2105 match_set_pkt_mark_masked(match, ntohl(value->be32),
2106 ntohl(mask->be32));
2107 break;
2108
2109 case MFF_CT_STATE:
2110 match_set_ct_state_masked(match, ntohl(value->be32), ntohl(mask->be32));
2111 break;
2112
2113 case MFF_CT_MARK:
2114 match_set_ct_mark_masked(match, ntohl(value->be32), ntohl(mask->be32));
2115 break;
2116
2117 case MFF_CT_LABEL:
2118 match_set_ct_label_masked(match, ntoh128(value->be128),
2119 ntoh128(mask->be128));
2120 break;
2121
2122 case MFF_ETH_DST:
2123 match_set_dl_dst_masked(match, value->mac, mask->mac);
2124 break;
2125
2126 case MFF_ETH_SRC:
2127 match_set_dl_src_masked(match, value->mac, mask->mac);
2128 break;
2129
2130 case MFF_ARP_SHA:
2131 case MFF_ND_SLL:
2132 match_set_arp_sha_masked(match, value->mac, mask->mac);
2133 break;
2134
2135 case MFF_ARP_THA:
2136 case MFF_ND_TLL:
2137 match_set_arp_tha_masked(match, value->mac, mask->mac);
2138 break;
2139
2140 case MFF_VLAN_TCI:
2141 match_set_dl_tci_masked(match, value->be16, mask->be16);
2142 break;
2143
2144 case MFF_VLAN_VID:
2145 match_set_vlan_vid_masked(match, value->be16, mask->be16);
2146 break;
2147
2148 case MFF_IPV4_SRC:
2149 match_set_nw_src_masked(match, value->be32, mask->be32);
2150 break;
2151
2152 case MFF_IPV4_DST:
2153 match_set_nw_dst_masked(match, value->be32, mask->be32);
2154 break;
2155
2156 case MFF_IPV6_SRC:
2157 match_set_ipv6_src_masked(match, &value->ipv6, &mask->ipv6);
2158 break;
2159
2160 case MFF_IPV6_DST:
2161 match_set_ipv6_dst_masked(match, &value->ipv6, &mask->ipv6);
2162 break;
2163
2164 case MFF_IPV6_LABEL:
2165 if ((mask->be32 & htonl(IPV6_LABEL_MASK)) == htonl(IPV6_LABEL_MASK)) {
2166 mf_set_value(mf, value, match, err_str);
2167 } else {
2168 match_set_ipv6_label_masked(match, value->be32, mask->be32);
2169 }
2170 break;
2171
2172 case MFF_ND_TARGET:
2173 match_set_nd_target_masked(match, &value->ipv6, &mask->ipv6);
2174 break;
2175
2176 case MFF_IP_FRAG:
2177 match_set_nw_frag_masked(match, value->u8, mask->u8);
2178 break;
2179
2180 case MFF_ARP_SPA:
2181 match_set_nw_src_masked(match, value->be32, mask->be32);
2182 break;
2183
2184 case MFF_ARP_TPA:
2185 match_set_nw_dst_masked(match, value->be32, mask->be32);
2186 break;
2187
2188 case MFF_TCP_SRC:
2189 case MFF_UDP_SRC:
2190 case MFF_SCTP_SRC:
2191 match_set_tp_src_masked(match, value->be16, mask->be16);
2192 break;
2193
2194 case MFF_TCP_DST:
2195 case MFF_UDP_DST:
2196 case MFF_SCTP_DST:
2197 match_set_tp_dst_masked(match, value->be16, mask->be16);
2198 break;
2199
2200 case MFF_TCP_FLAGS:
2201 match_set_tcp_flags_masked(match, value->be16, mask->be16);
2202 break;
2203
2204 case MFF_N_IDS:
2205 default:
2206 OVS_NOT_REACHED();
2207 }
2208
2209 return ((mf->usable_protocols_bitwise == mf->usable_protocols_cidr
2210 || ip_is_cidr(mask->be32))
2211 ? mf->usable_protocols_cidr
2212 : mf->usable_protocols_bitwise);
2213 }
2214
2215 static enum ofperr
2216 mf_check__(const struct mf_subfield *sf, const struct match *match,
2217 const char *type)
2218 {
2219 if (!sf->field) {
2220 VLOG_WARN_RL(&rl, "unknown %s field", type);
2221 return OFPERR_OFPBAC_BAD_SET_TYPE;
2222 } else if (!sf->n_bits) {
2223 VLOG_WARN_RL(&rl, "zero bit %s field %s", type, sf->field->name);
2224 return OFPERR_OFPBAC_BAD_SET_LEN;
2225 } else if (sf->ofs >= sf->field->n_bits) {
2226 VLOG_WARN_RL(&rl, "bit offset %d exceeds %d-bit width of %s field %s",
2227 sf->ofs, sf->field->n_bits, type, sf->field->name);
2228 return OFPERR_OFPBAC_BAD_SET_LEN;
2229 } else if (sf->ofs + sf->n_bits > sf->field->n_bits) {
2230 VLOG_WARN_RL(&rl, "bit offset %d and width %d exceeds %d-bit width "
2231 "of %s field %s", sf->ofs, sf->n_bits,
2232 sf->field->n_bits, type, sf->field->name);
2233 return OFPERR_OFPBAC_BAD_SET_LEN;
2234 } else if (match && !mf_are_match_prereqs_ok(sf->field, match)) {
2235 VLOG_WARN_RL(&rl, "%s field %s lacks correct prerequisites",
2236 type, sf->field->name);
2237 return OFPERR_OFPBAC_MATCH_INCONSISTENT;
2238 } else {
2239 return 0;
2240 }
2241 }
2242
2243 /* Sets all the bits in 'sf' to 1 within 'wc', if 'wc' is nonnull. */
2244 static void
2245 unwildcard_subfield(const struct mf_subfield *sf, struct flow_wildcards *wc)
2246 {
2247 if (wc) {
2248 union mf_value mask;
2249
2250 memset(&mask, 0, sizeof mask);
2251 bitwise_one(&mask, sf->field->n_bytes, sf->ofs, sf->n_bits);
2252 mf_mask_field_masked(sf->field, &mask, wc);
2253 }
2254 }
2255
2256 /* Copies 'src' into 'dst' within 'flow', and sets all the bits in 'src' and
2257 * 'dst' to 1s in 'wc', if 'wc' is nonnull.
2258 *
2259 * 'src' and 'dst' may overlap. */
2260 void
2261 mf_subfield_copy(const struct mf_subfield *src,
2262 const struct mf_subfield *dst,
2263 struct flow *flow, struct flow_wildcards *wc)
2264 {
2265 ovs_assert(src->n_bits == dst->n_bits);
2266 if (mf_are_prereqs_ok(dst->field, flow, wc)
2267 && mf_are_prereqs_ok(src->field, flow, wc)) {
2268 unwildcard_subfield(src, wc);
2269 unwildcard_subfield(dst, wc);
2270
2271 union mf_value src_value;
2272 union mf_value dst_value;
2273 mf_get_value(dst->field, flow, &dst_value);
2274 mf_get_value(src->field, flow, &src_value);
2275 bitwise_copy(&src_value, src->field->n_bytes, src->ofs,
2276 &dst_value, dst->field->n_bytes, dst->ofs,
2277 src->n_bits);
2278 mf_set_flow_value(dst->field, &dst_value, flow);
2279 }
2280 }
2281
2282 /* Swaps the bits in 'src' and 'dst' within 'flow', and sets all the bits in
2283 * 'src' and 'dst' to 1s in 'wc', if 'wc' is nonnull.
2284 *
2285 * 'src' and 'dst' may overlap. */
2286 void
2287 mf_subfield_swap(const struct mf_subfield *a,
2288 const struct mf_subfield *b,
2289 struct flow *flow, struct flow_wildcards *wc)
2290 {
2291 ovs_assert(a->n_bits == b->n_bits);
2292 if (mf_are_prereqs_ok(a->field, flow, wc)
2293 && mf_are_prereqs_ok(b->field, flow, wc)) {
2294 unwildcard_subfield(a, wc);
2295 unwildcard_subfield(b, wc);
2296
2297 union mf_value a_value;
2298 union mf_value b_value;
2299 mf_get_value(a->field, flow, &a_value);
2300 mf_get_value(b->field, flow, &b_value);
2301 union mf_value b2_value = b_value;
2302
2303 /* Copy 'a' into 'b'. */
2304 bitwise_copy(&a_value, a->field->n_bytes, a->ofs,
2305 &b_value, b->field->n_bytes, b->ofs,
2306 a->n_bits);
2307 mf_set_flow_value(b->field, &b_value, flow);
2308
2309 /* Copy original 'b' into 'a'. */
2310 bitwise_copy(&b2_value, b->field->n_bytes, b->ofs,
2311 &a_value, a->field->n_bytes, a->ofs,
2312 b->n_bits);
2313 mf_set_flow_value(a->field, &a_value, flow);
2314 }
2315 }
2316
2317 /* Checks whether 'sf' is valid for reading a subfield out of 'flow'. Returns
2318 * 0 if so, otherwise an OpenFlow error code (e.g. as returned by
2319 * ofp_mkerr()). */
2320 enum ofperr
2321 mf_check_src(const struct mf_subfield *sf, const struct match *match)
2322 {
2323 return mf_check__(sf, match, "source");
2324 }
2325
2326 /* Checks whether 'sf' is valid for writing a subfield into 'flow'. Returns 0
2327 * if so, otherwise an OpenFlow error code (e.g. as returned by
2328 * ofp_mkerr()). */
2329 enum ofperr
2330 mf_check_dst(const struct mf_subfield *sf, const struct match *match)
2331 {
2332 int error = mf_check__(sf, match, "destination");
2333 if (!error && !sf->field->writable) {
2334 VLOG_WARN_RL(&rl, "destination field %s is not writable",
2335 sf->field->name);
2336 return OFPERR_OFPBAC_BAD_SET_ARGUMENT;
2337 }
2338 return error;
2339 }
2340
2341 /* Copies the value and wildcard bit pattern for 'mf' from 'match' into the
2342 * 'value' and 'mask', respectively. */
2343 void
2344 mf_get(const struct mf_field *mf, const struct match *match,
2345 union mf_value *value, union mf_value *mask)
2346 {
2347 mf_get_value(mf, &match->flow, value);
2348 mf_get_mask(mf, &match->wc, mask);
2349 }
2350
2351 static char *
2352 mf_from_integer_string(const struct mf_field *mf, const char *s,
2353 uint8_t *valuep, uint8_t *maskp)
2354 {
2355 char *tail;
2356 const char *err_str = "";
2357 int err;
2358
2359 err = parse_int_string(s, valuep, mf->n_bytes, &tail);
2360 if (err || (*tail != '\0' && *tail != '/')) {
2361 err_str = "value";
2362 goto syntax_error;
2363 }
2364
2365 if (*tail == '/') {
2366 err = parse_int_string(tail + 1, maskp, mf->n_bytes, &tail);
2367 if (err || *tail != '\0') {
2368 err_str = "mask";
2369 goto syntax_error;
2370 }
2371 } else {
2372 memset(maskp, 0xff, mf->n_bytes);
2373 }
2374
2375 return NULL;
2376
2377 syntax_error:
2378 if (err == ERANGE) {
2379 return xasprintf("%s: %s too large for %u-byte field %s",
2380 s, err_str, mf->n_bytes, mf->name);
2381 } else {
2382 return xasprintf("%s: bad syntax for %s %s", s, mf->name, err_str);
2383 }
2384 }
2385
2386 static char *
2387 mf_from_ethernet_string(const struct mf_field *mf, const char *s,
2388 struct eth_addr *mac, struct eth_addr *mask)
2389 {
2390 int n;
2391
2392 ovs_assert(mf->n_bytes == ETH_ADDR_LEN);
2393
2394 n = -1;
2395 if (ovs_scan(s, ETH_ADDR_SCAN_FMT"%n", ETH_ADDR_SCAN_ARGS(*mac), &n)
2396 && n == strlen(s)) {
2397 *mask = eth_addr_exact;
2398 return NULL;
2399 }
2400
2401 n = -1;
2402 if (ovs_scan(s, ETH_ADDR_SCAN_FMT"/"ETH_ADDR_SCAN_FMT"%n",
2403 ETH_ADDR_SCAN_ARGS(*mac), ETH_ADDR_SCAN_ARGS(*mask), &n)
2404 && n == strlen(s)) {
2405 return NULL;
2406 }
2407
2408 return xasprintf("%s: invalid Ethernet address", s);
2409 }
2410
2411 static char *
2412 mf_from_ipv4_string(const struct mf_field *mf, const char *s,
2413 ovs_be32 *ip, ovs_be32 *mask)
2414 {
2415 ovs_assert(mf->n_bytes == sizeof *ip);
2416 return ip_parse_masked(s, ip, mask);
2417 }
2418
2419 static char *
2420 mf_from_ipv6_string(const struct mf_field *mf, const char *s,
2421 struct in6_addr *ipv6, struct in6_addr *mask)
2422 {
2423 ovs_assert(mf->n_bytes == sizeof *ipv6);
2424 return ipv6_parse_masked(s, ipv6, mask);
2425 }
2426
2427 static char *
2428 mf_from_ofp_port_string(const struct mf_field *mf, const char *s,
2429 const struct ofputil_port_map *port_map,
2430 ovs_be16 *valuep, ovs_be16 *maskp)
2431 {
2432 ofp_port_t port;
2433
2434 ovs_assert(mf->n_bytes == sizeof(ovs_be16));
2435
2436 if (ofputil_port_from_string(s, port_map, &port)) {
2437 *valuep = htons(ofp_to_u16(port));
2438 *maskp = OVS_BE16_MAX;
2439 return NULL;
2440 }
2441 return xasprintf("%s: invalid or unknown port for %s", s, mf->name);
2442 }
2443
2444 static char *
2445 mf_from_ofp_port_string32(const struct mf_field *mf, const char *s,
2446 const struct ofputil_port_map *port_map,
2447 ovs_be32 *valuep, ovs_be32 *maskp)
2448 {
2449 ofp_port_t port;
2450
2451 ovs_assert(mf->n_bytes == sizeof(ovs_be32));
2452 if (ofputil_port_from_string(s, port_map, &port)) {
2453 *valuep = ofputil_port_to_ofp11(port);
2454 *maskp = OVS_BE32_MAX;
2455 return NULL;
2456 }
2457 return xasprintf("%s: port value out of range for %s", s, mf->name);
2458 }
2459
2460 struct frag_handling {
2461 const char *name;
2462 uint8_t mask;
2463 uint8_t value;
2464 };
2465
2466 static const struct frag_handling all_frags[] = {
2467 #define A FLOW_NW_FRAG_ANY
2468 #define L FLOW_NW_FRAG_LATER
2469 /* name mask value */
2470
2471 { "no", A|L, 0 },
2472 { "first", A|L, A },
2473 { "later", A|L, A|L },
2474
2475 { "no", A, 0 },
2476 { "yes", A, A },
2477
2478 { "not_later", L, 0 },
2479 { "later", L, L },
2480 #undef A
2481 #undef L
2482 };
2483
2484 static char *
2485 mf_from_frag_string(const char *s, uint8_t *valuep, uint8_t *maskp)
2486 {
2487 const struct frag_handling *h;
2488
2489 for (h = all_frags; h < &all_frags[ARRAY_SIZE(all_frags)]; h++) {
2490 if (!strcasecmp(s, h->name)) {
2491 /* We force the upper bits of the mask on to make mf_parse_value()
2492 * happy (otherwise it will never think it's an exact match.) */
2493 *maskp = h->mask | ~FLOW_NW_FRAG_MASK;
2494 *valuep = h->value;
2495 return NULL;
2496 }
2497 }
2498
2499 return xasprintf("%s: unknown fragment type (valid types are \"no\", "
2500 "\"yes\", \"first\", \"later\", \"not_first\"", s);
2501 }
2502
2503 static char *
2504 parse_mf_flags(const char *s, const char *(*bit_to_string)(uint32_t),
2505 const char *field_name, ovs_be16 *flagsp, ovs_be16 allowed,
2506 ovs_be16 *maskp)
2507 {
2508 int err;
2509 char *err_str;
2510 uint32_t flags, mask;
2511
2512 err = parse_flags(s, bit_to_string, '\0', field_name, &err_str,
2513 &flags, ntohs(allowed), maskp ? &mask : NULL);
2514 if (err < 0) {
2515 return err_str;
2516 }
2517
2518 *flagsp = htons(flags);
2519 if (maskp) {
2520 *maskp = htons(mask);
2521 }
2522
2523 return NULL;
2524 }
2525
2526 static char *
2527 mf_from_tcp_flags_string(const char *s, ovs_be16 *flagsp, ovs_be16 *maskp)
2528 {
2529 return parse_mf_flags(s, packet_tcp_flag_to_string, "TCP", flagsp,
2530 TCP_FLAGS_BE16(OVS_BE16_MAX), maskp);
2531 }
2532
2533 static char *
2534 mf_from_tun_flags_string(const char *s, ovs_be16 *flagsp, ovs_be16 *maskp)
2535 {
2536 return parse_mf_flags(s, flow_tun_flag_to_string, "tunnel", flagsp,
2537 htons(FLOW_TNL_PUB_F_MASK), maskp);
2538 }
2539
2540 static char *
2541 mf_from_ct_state_string(const char *s, ovs_be32 *flagsp, ovs_be32 *maskp)
2542 {
2543 int err;
2544 char *err_str;
2545 uint32_t flags, mask;
2546
2547 err = parse_flags(s, ct_state_to_string, '\0', "ct_state", &err_str,
2548 &flags, CS_SUPPORTED_MASK, maskp ? &mask : NULL);
2549 if (err < 0) {
2550 return err_str;
2551 }
2552
2553 *flagsp = htonl(flags);
2554 if (maskp) {
2555 *maskp = htonl(mask);
2556 }
2557
2558 return NULL;
2559 }
2560
2561 /* Parses 's', a string value for field 'mf', into 'value' and 'mask'. Returns
2562 * NULL if successful, otherwise a malloc()'d string describing the error. */
2563 char *
2564 mf_parse(const struct mf_field *mf, const char *s,
2565 const struct ofputil_port_map *port_map,
2566 union mf_value *value, union mf_value *mask)
2567 {
2568 char *error;
2569
2570 if (!strcmp(s, "*")) {
2571 memset(value, 0, mf->n_bytes);
2572 memset(mask, 0, mf->n_bytes);
2573 return NULL;
2574 }
2575
2576 switch (mf->string) {
2577 case MFS_DECIMAL:
2578 case MFS_HEXADECIMAL:
2579 error = mf_from_integer_string(mf, s,
2580 (uint8_t *) value, (uint8_t *) mask);
2581 break;
2582
2583 case MFS_CT_STATE:
2584 ovs_assert(mf->n_bytes == sizeof(ovs_be32));
2585 error = mf_from_ct_state_string(s, &value->be32, &mask->be32);
2586 break;
2587
2588 case MFS_ETHERNET:
2589 error = mf_from_ethernet_string(mf, s, &value->mac, &mask->mac);
2590 break;
2591
2592 case MFS_IPV4:
2593 error = mf_from_ipv4_string(mf, s, &value->be32, &mask->be32);
2594 break;
2595
2596 case MFS_IPV6:
2597 error = mf_from_ipv6_string(mf, s, &value->ipv6, &mask->ipv6);
2598 break;
2599
2600 case MFS_OFP_PORT:
2601 error = mf_from_ofp_port_string(mf, s, port_map,
2602 &value->be16, &mask->be16);
2603 break;
2604
2605 case MFS_OFP_PORT_OXM:
2606 error = mf_from_ofp_port_string32(mf, s, port_map,
2607 &value->be32, &mask->be32);
2608 break;
2609
2610 case MFS_FRAG:
2611 error = mf_from_frag_string(s, &value->u8, &mask->u8);
2612 break;
2613
2614 case MFS_TNL_FLAGS:
2615 ovs_assert(mf->n_bytes == sizeof(ovs_be16));
2616 error = mf_from_tun_flags_string(s, &value->be16, &mask->be16);
2617 break;
2618
2619 case MFS_TCP_FLAGS:
2620 ovs_assert(mf->n_bytes == sizeof(ovs_be16));
2621 error = mf_from_tcp_flags_string(s, &value->be16, &mask->be16);
2622 break;
2623
2624 default:
2625 OVS_NOT_REACHED();
2626 }
2627
2628 if (!error && !mf_is_mask_valid(mf, mask)) {
2629 error = xasprintf("%s: invalid mask for field %s", s, mf->name);
2630 }
2631 return error;
2632 }
2633
2634 /* Parses 's', a string value for field 'mf', into 'value'. Returns NULL if
2635 * successful, otherwise a malloc()'d string describing the error. */
2636 char *
2637 mf_parse_value(const struct mf_field *mf, const char *s,
2638 const struct ofputil_port_map *port_map, union mf_value *value)
2639 {
2640 union mf_value mask;
2641 char *error;
2642
2643 error = mf_parse(mf, s, port_map, value, &mask);
2644 if (error) {
2645 return error;
2646 }
2647
2648 if (!is_all_ones((const uint8_t *) &mask, mf->n_bytes)) {
2649 return xasprintf("%s: wildcards not allowed here", s);
2650 }
2651 return NULL;
2652 }
2653
2654 static void
2655 mf_format_integer_string(const struct mf_field *mf, const uint8_t *valuep,
2656 const uint8_t *maskp, struct ds *s)
2657 {
2658 if (mf->string == MFS_HEXADECIMAL) {
2659 ds_put_hex(s, valuep, mf->n_bytes);
2660 } else {
2661 unsigned long long int integer = 0;
2662 int i;
2663
2664 ovs_assert(mf->n_bytes <= 8);
2665 for (i = 0; i < mf->n_bytes; i++) {
2666 integer = (integer << 8) | valuep[i];
2667 }
2668 ds_put_format(s, "%lld", integer);
2669 }
2670
2671 if (maskp) {
2672 /* I guess we could write the mask in decimal for MFS_DECIMAL but I'm
2673 * not sure that that a bit-mask written in decimal is ever easier to
2674 * understand than the same bit-mask written in hexadecimal. */
2675 ds_put_char(s, '/');
2676 ds_put_hex(s, maskp, mf->n_bytes);
2677 }
2678 }
2679
2680 static void
2681 mf_format_frag_string(uint8_t value, uint8_t mask, struct ds *s)
2682 {
2683 const struct frag_handling *h;
2684
2685 mask &= FLOW_NW_FRAG_MASK;
2686 value &= mask;
2687
2688 for (h = all_frags; h < &all_frags[ARRAY_SIZE(all_frags)]; h++) {
2689 if (value == h->value && mask == h->mask) {
2690 ds_put_cstr(s, h->name);
2691 return;
2692 }
2693 }
2694 ds_put_cstr(s, "<error>");
2695 }
2696
2697 static void
2698 mf_format_tnl_flags_string(ovs_be16 value, ovs_be16 mask, struct ds *s)
2699 {
2700 format_flags_masked(s, NULL, flow_tun_flag_to_string, ntohs(value),
2701 ntohs(mask) & FLOW_TNL_PUB_F_MASK, FLOW_TNL_PUB_F_MASK);
2702 }
2703
2704 static void
2705 mf_format_tcp_flags_string(ovs_be16 value, ovs_be16 mask, struct ds *s)
2706 {
2707 format_flags_masked(s, NULL, packet_tcp_flag_to_string, ntohs(value),
2708 TCP_FLAGS(mask), TCP_FLAGS(OVS_BE16_MAX));
2709 }
2710
2711 static void
2712 mf_format_ct_state_string(ovs_be32 value, ovs_be32 mask, struct ds *s)
2713 {
2714 format_flags_masked(s, NULL, ct_state_to_string, ntohl(value),
2715 ntohl(mask), UINT16_MAX);
2716 }
2717
2718 /* Appends to 's' a string representation of field 'mf' whose value is in
2719 * 'value' and 'mask'. 'mask' may be NULL to indicate an exact match. */
2720 void
2721 mf_format(const struct mf_field *mf,
2722 const union mf_value *value, const union mf_value *mask,
2723 const struct ofputil_port_map *port_map,
2724 struct ds *s)
2725 {
2726 if (mask) {
2727 if (is_all_zeros(mask, mf->n_bytes)) {
2728 ds_put_cstr(s, "ANY");
2729 return;
2730 } else if (is_all_ones(mask, mf->n_bytes)) {
2731 mask = NULL;
2732 }
2733 }
2734
2735 switch (mf->string) {
2736 case MFS_OFP_PORT_OXM:
2737 if (!mask) {
2738 ofp_port_t port;
2739 ofputil_port_from_ofp11(value->be32, &port);
2740 ofputil_format_port(port, port_map, s);
2741 break;
2742 }
2743 /* fall through */
2744 case MFS_OFP_PORT:
2745 if (!mask) {
2746 ofputil_format_port(u16_to_ofp(ntohs(value->be16)), port_map, s);
2747 break;
2748 }
2749 /* fall through */
2750 case MFS_DECIMAL:
2751 case MFS_HEXADECIMAL:
2752 mf_format_integer_string(mf, (uint8_t *) value, (uint8_t *) mask, s);
2753 break;
2754
2755 case MFS_CT_STATE:
2756 mf_format_ct_state_string(value->be32,
2757 mask ? mask->be32 : OVS_BE32_MAX, s);
2758 break;
2759
2760 case MFS_ETHERNET:
2761 eth_format_masked(value->mac, mask ? &mask->mac : NULL, s);
2762 break;
2763
2764 case MFS_IPV4:
2765 ip_format_masked(value->be32, mask ? mask->be32 : OVS_BE32_MAX, s);
2766 break;
2767
2768 case MFS_IPV6:
2769 ipv6_format_masked(&value->ipv6, mask ? &mask->ipv6 : NULL, s);
2770 break;
2771
2772 case MFS_FRAG:
2773 mf_format_frag_string(value->u8, mask ? mask->u8 : UINT8_MAX, s);
2774 break;
2775
2776 case MFS_TNL_FLAGS:
2777 mf_format_tnl_flags_string(value->be16,
2778 mask ? mask->be16 : OVS_BE16_MAX, s);
2779 break;
2780
2781 case MFS_TCP_FLAGS:
2782 mf_format_tcp_flags_string(value->be16,
2783 mask ? mask->be16 : OVS_BE16_MAX, s);
2784 break;
2785
2786 default:
2787 OVS_NOT_REACHED();
2788 }
2789 }
2790 \f
2791 /* Makes subfield 'sf' within 'flow' exactly match the 'sf->n_bits'
2792 * least-significant bits in 'x'.
2793 */
2794 void
2795 mf_write_subfield_flow(const struct mf_subfield *sf,
2796 const union mf_subvalue *x, struct flow *flow)
2797 {
2798 const struct mf_field *field = sf->field;
2799 union mf_value value;
2800
2801 mf_get_value(field, flow, &value);
2802 bitwise_copy(x, sizeof *x, 0, &value, field->n_bytes,
2803 sf->ofs, sf->n_bits);
2804 mf_set_flow_value(field, &value, flow);
2805 }
2806
2807 /* Makes subfield 'sf' within 'match' exactly match the 'sf->n_bits'
2808 * least-significant bits in 'x'.
2809 */
2810 void
2811 mf_write_subfield(const struct mf_subfield *sf, const union mf_subvalue *x,
2812 struct match *match)
2813 {
2814 const struct mf_field *field = sf->field;
2815 union mf_value value, mask;
2816
2817 mf_get(field, match, &value, &mask);
2818 bitwise_copy(x, sizeof *x, 0, &value, field->n_bytes, sf->ofs, sf->n_bits);
2819 bitwise_one ( &mask, field->n_bytes, sf->ofs, sf->n_bits);
2820 mf_set(field, &value, &mask, match, NULL);
2821 }
2822
2823 void
2824 mf_write_subfield_value(const struct mf_subfield *sf, const void *src,
2825 struct match *match)
2826 {
2827 const struct mf_field *field = sf->field;
2828 union mf_value value, mask;
2829 unsigned int size = DIV_ROUND_UP(sf->n_bits, 8);
2830
2831 mf_get(field, match, &value, &mask);
2832 bitwise_copy(src, size, 0, &value, field->n_bytes, sf->ofs, sf->n_bits);
2833 bitwise_one ( &mask, field->n_bytes, sf->ofs, sf->n_bits);
2834 mf_set(field, &value, &mask, match, NULL);
2835 }
2836
2837 /* 'v' and 'm' correspond to values of 'field'. This function copies them into
2838 * 'match' in the correspond positions. */
2839 void
2840 mf_mask_subfield(const struct mf_field *field,
2841 const union mf_subvalue *v,
2842 const union mf_subvalue *m,
2843 struct match *match)
2844 {
2845 union mf_value value, mask;
2846
2847 mf_get(field, match, &value, &mask);
2848 bitwise_copy(v, sizeof *v, 0, &value, field->n_bytes, 0, field->n_bits);
2849 bitwise_copy(m, sizeof *m, 0, &mask, field->n_bytes, 0, field->n_bits);
2850 mf_set(field, &value, &mask, match, NULL);
2851 }
2852
2853 /* Initializes 'x' to the value of 'sf' within 'flow'. 'sf' must be valid for
2854 * reading 'flow', e.g. as checked by mf_check_src(). */
2855 void
2856 mf_read_subfield(const struct mf_subfield *sf, const struct flow *flow,
2857 union mf_subvalue *x)
2858 {
2859 union mf_value value;
2860
2861 mf_get_value(sf->field, flow, &value);
2862
2863 memset(x, 0, sizeof *x);
2864 bitwise_copy(&value, sf->field->n_bytes, sf->ofs,
2865 x, sizeof *x, 0,
2866 sf->n_bits);
2867 }
2868
2869 /* Returns the value of 'sf' within 'flow'. 'sf' must be valid for reading
2870 * 'flow', e.g. as checked by mf_check_src() and sf->n_bits must be 64 or
2871 * less. */
2872 uint64_t
2873 mf_get_subfield(const struct mf_subfield *sf, const struct flow *flow)
2874 {
2875 union mf_value value;
2876
2877 mf_get_value(sf->field, flow, &value);
2878 return bitwise_get(&value, sf->field->n_bytes, sf->ofs, sf->n_bits);
2879 }
2880
2881 void
2882 mf_format_subvalue(const union mf_subvalue *subvalue, struct ds *s)
2883 {
2884 ds_put_hex(s, subvalue->u8, sizeof subvalue->u8);
2885 }
2886
2887 void
2888 field_array_set(enum mf_field_id id, const union mf_value *value,
2889 struct field_array *fa)
2890 {
2891 size_t i, offset = 0;
2892
2893 ovs_assert(id < MFF_N_IDS);
2894
2895 /* Find the spot for 'id'. */
2896 BITMAP_FOR_EACH_1 (i, id, fa->used.bm) {
2897 offset += mf_from_id(i)->n_bytes;
2898 }
2899
2900 size_t value_size = mf_from_id(id)->n_bytes;
2901
2902 /* make room if necessary. */
2903 if (!bitmap_is_set(fa->used.bm, id)) {
2904 fa->values = xrealloc(fa->values, fa->values_size + value_size);
2905 /* Move remainder forward, if any. */
2906 if (offset < fa->values_size) {
2907 memmove(fa->values + offset + value_size, fa->values + offset,
2908 fa->values_size - offset);
2909 }
2910 fa->values_size += value_size;
2911 }
2912 bitmap_set1(fa->used.bm, id);
2913
2914 memcpy(fa->values + offset, value, value_size);
2915 }
2916
2917 /* A wrapper for variable length mf_fields that is maintained by
2918 * struct vl_mff_map.*/
2919 struct vl_mf_field {
2920 struct mf_field mf;
2921 struct ovs_refcount ref_cnt;
2922 struct cmap_node cmap_node; /* In ofproto->vl_mff_map->cmap. */
2923 };
2924
2925 static inline uint32_t
2926 mf_field_hash(uint32_t key)
2927 {
2928 return hash_int(key, 0);
2929 }
2930
2931 static void
2932 vmf_delete(struct vl_mf_field *vmf)
2933 {
2934 if (ovs_refcount_unref(&vmf->ref_cnt) == 1) {
2935 /* Postpone as this function is typically called immediately
2936 * after removing from cmap. */
2937 ovsrcu_postpone(free, vmf);
2938 } else {
2939 VLOG_WARN_RL(&rl,
2940 "Attempted to delete VMF %s but refcount is nonzero!",
2941 vmf->mf.name);
2942 }
2943 }
2944
2945 enum ofperr
2946 mf_vl_mff_map_clear(struct vl_mff_map *vl_mff_map, bool force)
2947 OVS_REQUIRES(vl_mff_map->mutex)
2948 {
2949 struct vl_mf_field *vmf;
2950
2951 if (!force) {
2952 CMAP_FOR_EACH (vmf, cmap_node, &vl_mff_map->cmap) {
2953 if (ovs_refcount_read(&vmf->ref_cnt) != 1) {
2954 return OFPERR_NXTTMFC_INVALID_TLV_DEL;
2955 }
2956 }
2957 }
2958
2959 CMAP_FOR_EACH (vmf, cmap_node, &vl_mff_map->cmap) {
2960 cmap_remove(&vl_mff_map->cmap, &vmf->cmap_node,
2961 mf_field_hash(vmf->mf.id));
2962 vmf_delete(vmf);
2963 }
2964
2965 return 0;
2966 }
2967
2968 static struct vl_mf_field *
2969 mf_get_vl_mff__(uint32_t id, const struct vl_mff_map *vl_mff_map)
2970 {
2971 struct vl_mf_field *vmf;
2972
2973 CMAP_FOR_EACH_WITH_HASH (vmf, cmap_node, mf_field_hash(id),
2974 &vl_mff_map->cmap) {
2975 if (vmf->mf.id == id) {
2976 return vmf;
2977 }
2978 }
2979
2980 return NULL;
2981 }
2982
2983 /* If 'mff' is a variable length field, looks up 'vl_mff_map', returns a
2984 * pointer to the variable length meta-flow field corresponding to 'mff'.
2985 * Returns NULL if no mapping is existed for 'mff'. */
2986 const struct mf_field *
2987 mf_get_vl_mff(const struct mf_field *mff,
2988 const struct vl_mff_map *vl_mff_map)
2989 {
2990 if (mff && mff->variable_len && vl_mff_map) {
2991 return &mf_get_vl_mff__(mff->id, vl_mff_map)->mf;
2992 }
2993
2994 return NULL;
2995 }
2996
2997 static enum ofperr
2998 mf_vl_mff_map_del(struct vl_mff_map *vl_mff_map,
2999 const struct ofputil_tlv_table_mod *ttm, bool force)
3000 OVS_REQUIRES(vl_mff_map->mutex)
3001 {
3002 struct ofputil_tlv_map *tlv_map;
3003 struct vl_mf_field *vmf;
3004 unsigned int idx;
3005
3006 if (!force) {
3007 LIST_FOR_EACH (tlv_map, list_node, &ttm->mappings) {
3008 idx = MFF_TUN_METADATA0 + tlv_map->index;
3009 if (idx >= MFF_TUN_METADATA0 + TUN_METADATA_NUM_OPTS) {
3010 return OFPERR_NXTTMFC_BAD_FIELD_IDX;
3011 }
3012
3013 vmf = mf_get_vl_mff__(idx, vl_mff_map);
3014 if (vmf && ovs_refcount_read(&vmf->ref_cnt) != 1) {
3015 return OFPERR_NXTTMFC_INVALID_TLV_DEL;
3016 }
3017 }
3018 }
3019
3020 LIST_FOR_EACH (tlv_map, list_node, &ttm->mappings) {
3021 idx = MFF_TUN_METADATA0 + tlv_map->index;
3022 if (idx >= MFF_TUN_METADATA0 + TUN_METADATA_NUM_OPTS) {
3023 return OFPERR_NXTTMFC_BAD_FIELD_IDX;
3024 }
3025
3026 vmf = mf_get_vl_mff__(idx, vl_mff_map);
3027 if (vmf) {
3028 cmap_remove(&vl_mff_map->cmap, &vmf->cmap_node,
3029 mf_field_hash(idx));
3030 vmf_delete(vmf);
3031 }
3032 }
3033
3034 return 0;
3035 }
3036
3037 static enum ofperr
3038 mf_vl_mff_map_add(struct vl_mff_map *vl_mff_map,
3039 const struct ofputil_tlv_table_mod *ttm)
3040 OVS_REQUIRES(vl_mff_map->mutex)
3041 {
3042 struct ofputil_tlv_map *tlv_map;
3043 struct vl_mf_field *vmf;
3044 unsigned int idx;
3045
3046 LIST_FOR_EACH (tlv_map, list_node, &ttm->mappings) {
3047 idx = MFF_TUN_METADATA0 + tlv_map->index;
3048 if (idx >= MFF_TUN_METADATA0 + TUN_METADATA_NUM_OPTS) {
3049 return OFPERR_NXTTMFC_BAD_FIELD_IDX;
3050 }
3051
3052 vmf = xmalloc(sizeof *vmf);
3053 vmf->mf = mf_fields[idx];
3054 vmf->mf.n_bytes = tlv_map->option_len;
3055 vmf->mf.n_bits = tlv_map->option_len * 8;
3056 vmf->mf.mapped = true;
3057 ovs_refcount_init(&vmf->ref_cnt);
3058
3059 cmap_insert(&vl_mff_map->cmap, &vmf->cmap_node,
3060 mf_field_hash(idx));
3061 }
3062
3063 return 0;
3064 }
3065
3066 /* Updates the tun_metadata mf_field in 'vl_mff_map' according to 'ttm'.
3067 * This function must be invoked after tun_metadata_table_mod().
3068 * Returns OFPERR_NXTTMFC_BAD_FIELD_IDX, if the index for the vl_mf_field is
3069 * invalid.
3070 * Returns OFPERR_NXTTMFC_INVALID_TLV_DEL, if 'ttm' tries to delete an
3071 * vl_mf_field that is still used by any active flow.*/
3072 enum ofperr
3073 mf_vl_mff_map_mod_from_tun_metadata(struct vl_mff_map *vl_mff_map,
3074 const struct ofputil_tlv_table_mod *ttm)
3075 OVS_REQUIRES(vl_mff_map->mutex)
3076 {
3077 switch (ttm->command) {
3078 case NXTTMC_ADD:
3079 return mf_vl_mff_map_add(vl_mff_map, ttm);
3080
3081 case NXTTMC_DELETE:
3082 return mf_vl_mff_map_del(vl_mff_map, ttm, false);
3083
3084 case NXTTMC_CLEAR:
3085 return mf_vl_mff_map_clear(vl_mff_map, false);
3086
3087 default:
3088 OVS_NOT_REACHED();
3089 }
3090
3091 return 0;
3092 }
3093
3094 /* Returns true if a variable length meta-flow field 'mff' is not mapped in
3095 * the 'vl_mff_map'. */
3096 bool
3097 mf_vl_mff_invalid(const struct mf_field *mff, const struct vl_mff_map *map)
3098 {
3099 return map && mff && mff->variable_len && !mff->mapped;
3100 }
3101
3102 void
3103 mf_vl_mff_set_tlv_bitmap(const struct mf_field *mff, uint64_t *tlv_bitmap)
3104 {
3105 if (mff && mff->mapped) {
3106 ovs_assert(mf_is_tun_metadata(mff));
3107 ULLONG_SET1(*tlv_bitmap, mff->id - MFF_TUN_METADATA0);
3108 }
3109 }
3110
3111 static void
3112 mf_vl_mff_ref_cnt_mod(const struct vl_mff_map *map, uint64_t tlv_bitmap,
3113 bool ref)
3114 {
3115 struct vl_mf_field *vmf;
3116 int i;
3117
3118 if (map) {
3119 ULLONG_FOR_EACH_1 (i, tlv_bitmap) {
3120 vmf = mf_get_vl_mff__(i + MFF_TUN_METADATA0, map);
3121 if (vmf) {
3122 if (ref) {
3123 ovs_refcount_ref(&vmf->ref_cnt);
3124 } else {
3125 ovs_refcount_unref(&vmf->ref_cnt);
3126 }
3127 } else {
3128 VLOG_WARN("Invalid TLV index %d.", i);
3129 }
3130 }
3131 }
3132 }
3133
3134 void
3135 mf_vl_mff_ref(const struct vl_mff_map *map, uint64_t tlv_bitmap)
3136 {
3137 mf_vl_mff_ref_cnt_mod(map, tlv_bitmap, true);
3138 }
3139
3140 void
3141 mf_vl_mff_unref(const struct vl_mff_map *map, uint64_t tlv_bitmap)
3142 {
3143 mf_vl_mff_ref_cnt_mod(map, tlv_bitmap, false);
3144 }
3145
3146 enum ofperr
3147 mf_vl_mff_nx_pull_header(struct ofpbuf *b, const struct vl_mff_map *vl_mff_map,
3148 const struct mf_field **field, bool *masked,
3149 uint64_t *tlv_bitmap)
3150 {
3151 enum ofperr error = nx_pull_header(b, vl_mff_map, field, masked);
3152 if (error) {
3153 return error;
3154 }
3155
3156 mf_vl_mff_set_tlv_bitmap(*field, tlv_bitmap);
3157 return 0;
3158 }
3159
3160 enum ofperr
3161 mf_vl_mff_nx_pull_entry(struct ofpbuf *b, const struct vl_mff_map *vl_mff_map,
3162 const struct mf_field **field, union mf_value *value,
3163 union mf_value *mask, uint64_t *tlv_bitmap)
3164 {
3165 enum ofperr error = nx_pull_entry(b, vl_mff_map, field, value, mask);
3166 if (error) {
3167 return error;
3168 }
3169
3170 mf_vl_mff_set_tlv_bitmap(*field, tlv_bitmap);
3171 return 0;
3172 }
3173
3174 enum ofperr
3175 mf_vl_mff_mf_from_nxm_header(uint32_t header,
3176 const struct vl_mff_map *vl_mff_map,
3177 const struct mf_field **field,
3178 uint64_t *tlv_bitmap)
3179 {
3180 *field = mf_from_nxm_header(header, vl_mff_map);
3181 if (mf_vl_mff_invalid(*field, vl_mff_map)) {
3182 return OFPERR_NXFMFC_INVALID_TLV_FIELD;
3183 }
3184
3185 mf_vl_mff_set_tlv_bitmap(*field, tlv_bitmap);
3186 return 0;
3187 }