]> git.proxmox.com Git - mirror_ovs.git/blame - lib/nx-match.c
cfm: Notify connectivity_seq on cfm_set_fault
[mirror_ovs.git] / lib / nx-match.c
CommitLineData
09246b99 1/*
1638b906 2 * Copyright (c) 2010, 2011, 2012, 2013 Nicira, Inc.
09246b99
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
17#include <config.h>
18
19#include "nx-match.h"
20
685a51a5
JP
21#include <netinet/icmp6.h>
22
09246b99
BP
23#include "classifier.h"
24#include "dynamic-string.h"
6a885fd0 25#include "meta-flow.h"
f25d0cf3 26#include "ofp-actions.h"
90bf1e07 27#include "ofp-errors.h"
09246b99
BP
28#include "ofp-util.h"
29#include "ofpbuf.h"
30#include "openflow/nicira-ext.h"
31#include "packets.h"
32#include "unaligned.h"
ddc4f8e2 33#include "util.h"
09246b99
BP
34#include "vlog.h"
35
36VLOG_DEFINE_THIS_MODULE(nx_match);
37
38/* Rate limit for nx_match parse errors. These always indicate a bug in the
39 * peer and so there's not much point in showing a lot of them. */
40static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
41
09246b99
BP
42/* Returns the width of the data for a field with the given 'header', in
43 * bytes. */
4291acd2 44int
09246b99
BP
45nxm_field_bytes(uint32_t header)
46{
47 unsigned int length = NXM_LENGTH(header);
48 return NXM_HASMASK(header) ? length / 2 : length;
49}
b6c9e612
BP
50
51/* Returns the width of the data for a field with the given 'header', in
52 * bits. */
4291acd2 53int
b6c9e612
BP
54nxm_field_bits(uint32_t header)
55{
56 return nxm_field_bytes(header) * 8;
57}
6a885fd0
BP
58\f
59/* nx_pull_match() and helpers. */
09246b99
BP
60
61static uint32_t
62nx_entry_ok(const void *p, unsigned int match_len)
63{
64 unsigned int payload_len;
65 ovs_be32 header_be;
66 uint32_t header;
67
68 if (match_len < 4) {
69 if (match_len) {
74f868c6
BP
70 VLOG_DBG_RL(&rl, "nx_match ends with partial (%u-byte) nxm_header",
71 match_len);
09246b99
BP
72 }
73 return 0;
74 }
75 memcpy(&header_be, p, 4);
76 header = ntohl(header_be);
77
78 payload_len = NXM_LENGTH(header);
79 if (!payload_len) {
80 VLOG_DBG_RL(&rl, "nxm_entry %08"PRIx32" has invalid payload "
81 "length 0", header);
82 return 0;
83 }
84 if (match_len < payload_len + 4) {
85 VLOG_DBG_RL(&rl, "%"PRIu32"-byte nxm_entry but only "
86 "%u bytes left in nx_match", payload_len + 4, match_len);
87 return 0;
88 }
89
90 return header;
91}
92
e1cfc4e4
BP
93/* Given NXM/OXM value 'value' and mask 'mask', each 'width' bytes long,
94 * checks for any 1-bit in the value where there is a 0-bit in the mask. If it
95 * finds one, logs a warning. */
96static void
97check_mask_consistency(const uint8_t *p, const struct mf_field *mf)
98{
99 unsigned int width = mf->n_bytes;
100 const uint8_t *value = p + 4;
101 const uint8_t *mask = p + 4 + width;
102 unsigned int i;
103
104 for (i = 0; i < width; i++) {
105 if (value[i] & ~mask[i]) {
106 if (!VLOG_DROP_WARN(&rl)) {
107 char *s = nx_match_to_string(p, width * 2 + 4);
108 VLOG_WARN_RL(&rl, "NXM/OXM entry %s has 1-bits in value for "
109 "bits wildcarded by the mask. (Future versions "
110 "of OVS may report this as an OpenFlow error.)",
111 s);
112 break;
113 }
114 }
115 }
116}
117
90bf1e07 118static enum ofperr
7623f4dd 119nx_pull_raw(const uint8_t *p, unsigned int match_len, bool strict,
81a76618 120 struct match *match, ovs_be64 *cookie, ovs_be64 *cookie_mask)
09246b99
BP
121{
122 uint32_t header;
09246b99 123
cb22974d 124 ovs_assert((cookie != NULL) == (cookie_mask != NULL));
e729e793 125
81a76618 126 match_init_catchall(match);
a3a0c29e
BP
127 if (cookie) {
128 *cookie = *cookie_mask = htonll(0);
129 }
130 if (!match_len) {
131 return 0;
132 }
133
102ce766
EJ
134 for (;
135 (header = nx_entry_ok(p, match_len)) != 0;
136 p += 4 + NXM_LENGTH(header), match_len -= 4 + NXM_LENGTH(header)) {
28da1f8f 137 const struct mf_field *mf;
90bf1e07 138 enum ofperr error;
09246b99 139
28da1f8f
BP
140 mf = mf_from_nxm_header(header);
141 if (!mf) {
102ce766 142 if (strict) {
2e0525bc 143 error = OFPERR_OFPBMC_BAD_FIELD;
102ce766
EJ
144 } else {
145 continue;
146 }
81a76618 147 } else if (!mf_are_prereqs_ok(mf, &match->flow)) {
2e0525bc 148 error = OFPERR_OFPBMC_BAD_PREREQ;
81a76618 149 } else if (!mf_is_all_wild(mf, &match->wc)) {
2e0525bc 150 error = OFPERR_OFPBMC_DUP_FIELD;
72333065 151 } else {
28da1f8f 152 unsigned int width = mf->n_bytes;
6a885fd0
BP
153 union mf_value value;
154
155 memcpy(&value, p + 4, width);
28da1f8f 156 if (!mf_is_value_valid(mf, &value)) {
2e0525bc 157 error = OFPERR_OFPBMC_BAD_VALUE;
6a885fd0
BP
158 } else if (!NXM_HASMASK(header)) {
159 error = 0;
81a76618 160 mf_set_value(mf, &value, match);
6a885fd0
BP
161 } else {
162 union mf_value mask;
163
164 memcpy(&mask, p + 4 + width, width);
28da1f8f 165 if (!mf_is_mask_valid(mf, &mask)) {
2e0525bc 166 error = OFPERR_OFPBMC_BAD_MASK;
6a885fd0
BP
167 } else {
168 error = 0;
e1cfc4e4 169 check_mask_consistency(p, mf);
81a76618 170 mf_set(mf, &value, &mask, match);
6a885fd0
BP
171 }
172 }
09246b99 173 }
6a885fd0 174
e729e793
JP
175 /* Check if the match is for a cookie rather than a classifier rule. */
176 if ((header == NXM_NX_COOKIE || header == NXM_NX_COOKIE_W) && cookie) {
177 if (*cookie_mask) {
2e0525bc 178 error = OFPERR_OFPBMC_DUP_FIELD;
e729e793
JP
179 } else {
180 unsigned int width = sizeof *cookie;
181
182 memcpy(cookie, p + 4, width);
183 if (NXM_HASMASK(header)) {
184 memcpy(cookie_mask, p + 4 + width, width);
185 } else {
b8266395 186 *cookie_mask = OVS_BE64_MAX;
e729e793
JP
187 }
188 error = 0;
189 }
190 }
191
09246b99 192 if (error) {
28da1f8f
BP
193 VLOG_DBG_RL(&rl, "bad nxm_entry %#08"PRIx32" (vendor=%"PRIu32", "
194 "field=%"PRIu32", hasmask=%"PRIu32", len=%"PRIu32"), "
195 "(%s)", header,
09246b99 196 NXM_VENDOR(header), NXM_FIELD(header),
28da1f8f 197 NXM_HASMASK(header), NXM_LENGTH(header),
90bf1e07 198 ofperr_to_string(error));
09246b99
BP
199 return error;
200 }
09246b99
BP
201 }
202
2e0525bc 203 return match_len ? OFPERR_OFPBMC_BAD_LEN : 0;
09246b99 204}
102ce766 205
7623f4dd
SH
206static enum ofperr
207nx_pull_match__(struct ofpbuf *b, unsigned int match_len, bool strict,
81a76618 208 struct match *match,
7623f4dd
SH
209 ovs_be64 *cookie, ovs_be64 *cookie_mask)
210{
211 uint8_t *p = NULL;
212
213 if (match_len) {
214 p = ofpbuf_try_pull(b, ROUND_UP(match_len, 8));
215 if (!p) {
216 VLOG_DBG_RL(&rl, "nx_match length %u, rounded up to a "
217 "multiple of 8, is longer than space in message (max "
34582733 218 "length %"PRIuSIZE")", match_len, b->size);
7623f4dd
SH
219 return OFPERR_OFPBMC_BAD_LEN;
220 }
221 }
222
81a76618 223 return nx_pull_raw(p, match_len, strict, match, cookie, cookie_mask);
7623f4dd
SH
224}
225
102ce766 226/* Parses the nx_match formatted match description in 'b' with length
81a76618
BP
227 * 'match_len'. Stores the results in 'match'. If 'cookie' and 'cookie_mask'
228 * are valid pointers, then stores the cookie and mask in them if 'b' contains
229 * a "NXM_NX_COOKIE*" match. Otherwise, stores 0 in both.
102ce766 230 *
81a76618 231 * Fails with an error upon encountering an unknown NXM header.
102ce766
EJ
232 *
233 * Returns 0 if successful, otherwise an OpenFlow error code. */
90bf1e07 234enum ofperr
81a76618 235nx_pull_match(struct ofpbuf *b, unsigned int match_len, struct match *match,
102ce766
EJ
236 ovs_be64 *cookie, ovs_be64 *cookie_mask)
237{
81a76618 238 return nx_pull_match__(b, match_len, true, match, cookie, cookie_mask);
102ce766
EJ
239}
240
81a76618
BP
241/* Behaves the same as nx_pull_match(), but skips over unknown NXM headers,
242 * instead of failing with an error. */
90bf1e07 243enum ofperr
102ce766 244nx_pull_match_loose(struct ofpbuf *b, unsigned int match_len,
81a76618 245 struct match *match,
102ce766
EJ
246 ovs_be64 *cookie, ovs_be64 *cookie_mask)
247{
81a76618 248 return nx_pull_match__(b, match_len, false, match, cookie, cookie_mask);
102ce766 249}
7623f4dd
SH
250
251static enum ofperr
81a76618 252oxm_pull_match__(struct ofpbuf *b, bool strict, struct match *match)
7623f4dd
SH
253{
254 struct ofp11_match_header *omh = b->data;
255 uint8_t *p;
256 uint16_t match_len;
257
258 if (b->size < sizeof *omh) {
259 return OFPERR_OFPBMC_BAD_LEN;
260 }
261
262 match_len = ntohs(omh->length);
263 if (match_len < sizeof *omh) {
264 return OFPERR_OFPBMC_BAD_LEN;
265 }
266
267 if (omh->type != htons(OFPMT_OXM)) {
268 return OFPERR_OFPBMC_BAD_TYPE;
269 }
270
271 p = ofpbuf_try_pull(b, ROUND_UP(match_len, 8));
272 if (!p) {
273 VLOG_DBG_RL(&rl, "oxm length %u, rounded up to a "
274 "multiple of 8, is longer than space in message (max "
34582733 275 "length %"PRIuSIZE")", match_len, b->size);
7623f4dd
SH
276 return OFPERR_OFPBMC_BAD_LEN;
277 }
278
279 return nx_pull_raw(p + sizeof *omh, match_len - sizeof *omh,
81a76618 280 strict, match, NULL, NULL);
7623f4dd
SH
281}
282
aa0667bc
YT
283/* Parses the oxm formatted match description preceded by a struct
284 * ofp11_match_header in 'b'. Stores the result in 'match'.
7623f4dd
SH
285 *
286 * Fails with an error when encountering unknown OXM headers.
287 *
288 * Returns 0 if successful, otherwise an OpenFlow error code. */
289enum ofperr
81a76618 290oxm_pull_match(struct ofpbuf *b, struct match *match)
7623f4dd 291{
81a76618 292 return oxm_pull_match__(b, true, match);
7623f4dd
SH
293}
294
295/* Behaves the same as oxm_pull_match() with one exception. Skips over unknown
aa0667bc 296 * OXM headers instead of failing with an error when they are encountered. */
7623f4dd 297enum ofperr
81a76618 298oxm_pull_match_loose(struct ofpbuf *b, struct match *match)
7623f4dd 299{
81a76618 300 return oxm_pull_match__(b, false, match);
7623f4dd 301}
09246b99
BP
302\f
303/* nx_put_match() and helpers.
304 *
305 * 'put' functions whose names end in 'w' add a wildcarded field.
306 * 'put' functions whose names end in 'm' add a field that might be wildcarded.
307 * Other 'put' functions add exact-match fields.
308 */
309
310static void
311nxm_put_header(struct ofpbuf *b, uint32_t header)
312{
313 ovs_be32 n_header = htonl(header);
314 ofpbuf_put(b, &n_header, sizeof n_header);
315}
316
317static void
318nxm_put_8(struct ofpbuf *b, uint32_t header, uint8_t value)
319{
320 nxm_put_header(b, header);
321 ofpbuf_put(b, &value, sizeof value);
322}
323
7257b535
BP
324static void
325nxm_put_8m(struct ofpbuf *b, uint32_t header, uint8_t value, uint8_t mask)
326{
327 switch (mask) {
328 case 0:
329 break;
330
331 case UINT8_MAX:
332 nxm_put_8(b, header, value);
333 break;
334
335 default:
336 nxm_put_header(b, NXM_MAKE_WILD_HEADER(header));
337 ofpbuf_put(b, &value, sizeof value);
338 ofpbuf_put(b, &mask, sizeof mask);
339 }
340}
341
09246b99
BP
342static void
343nxm_put_16(struct ofpbuf *b, uint32_t header, ovs_be16 value)
344{
345 nxm_put_header(b, header);
346 ofpbuf_put(b, &value, sizeof value);
347}
348
349static void
350nxm_put_16w(struct ofpbuf *b, uint32_t header, ovs_be16 value, ovs_be16 mask)
351{
352 nxm_put_header(b, header);
353 ofpbuf_put(b, &value, sizeof value);
354 ofpbuf_put(b, &mask, sizeof mask);
355}
356
66642cb4
BP
357static void
358nxm_put_16m(struct ofpbuf *b, uint32_t header, ovs_be16 value, ovs_be16 mask)
359{
360 switch (mask) {
361 case 0:
362 break;
363
b8266395 364 case OVS_BE16_MAX:
66642cb4
BP
365 nxm_put_16(b, header, value);
366 break;
367
368 default:
369 nxm_put_16w(b, NXM_MAKE_WILD_HEADER(header), value, mask);
370 break;
371 }
372}
373
09246b99
BP
374static void
375nxm_put_32(struct ofpbuf *b, uint32_t header, ovs_be32 value)
376{
377 nxm_put_header(b, header);
378 ofpbuf_put(b, &value, sizeof value);
379}
380
381static void
382nxm_put_32w(struct ofpbuf *b, uint32_t header, ovs_be32 value, ovs_be32 mask)
383{
384 nxm_put_header(b, header);
385 ofpbuf_put(b, &value, sizeof value);
386 ofpbuf_put(b, &mask, sizeof mask);
387}
388
389static void
390nxm_put_32m(struct ofpbuf *b, uint32_t header, ovs_be32 value, ovs_be32 mask)
391{
392 switch (mask) {
393 case 0:
394 break;
395
b8266395 396 case OVS_BE32_MAX:
09246b99
BP
397 nxm_put_32(b, header, value);
398 break;
399
400 default:
401 nxm_put_32w(b, NXM_MAKE_WILD_HEADER(header), value, mask);
402 break;
403 }
404}
405
406static void
407nxm_put_64(struct ofpbuf *b, uint32_t header, ovs_be64 value)
408{
409 nxm_put_header(b, header);
410 ofpbuf_put(b, &value, sizeof value);
411}
412
8368c090
BP
413static void
414nxm_put_64w(struct ofpbuf *b, uint32_t header, ovs_be64 value, ovs_be64 mask)
415{
416 nxm_put_header(b, header);
417 ofpbuf_put(b, &value, sizeof value);
418 ofpbuf_put(b, &mask, sizeof mask);
419}
420
421static void
422nxm_put_64m(struct ofpbuf *b, uint32_t header, ovs_be64 value, ovs_be64 mask)
423{
424 switch (mask) {
425 case 0:
426 break;
427
b8266395 428 case OVS_BE64_MAX:
8368c090
BP
429 nxm_put_64(b, header, value);
430 break;
431
432 default:
433 nxm_put_64w(b, NXM_MAKE_WILD_HEADER(header), value, mask);
434 break;
435 }
436}
437
09246b99
BP
438static void
439nxm_put_eth(struct ofpbuf *b, uint32_t header,
440 const uint8_t value[ETH_ADDR_LEN])
441{
442 nxm_put_header(b, header);
443 ofpbuf_put(b, value, ETH_ADDR_LEN);
444}
445
1e37a2d7 446static void
73c0ce34
JS
447nxm_put_eth_masked(struct ofpbuf *b, uint32_t header,
448 const uint8_t value[ETH_ADDR_LEN],
449 const uint8_t mask[ETH_ADDR_LEN])
1e37a2d7 450{
73c0ce34
JS
451 if (!eth_addr_is_zero(mask)) {
452 if (eth_mask_is_exact(mask)) {
453 nxm_put_eth(b, header, value);
454 } else {
455 nxm_put_header(b, NXM_MAKE_WILD_HEADER(header));
456 ofpbuf_put(b, value, ETH_ADDR_LEN);
457 ofpbuf_put(b, mask, ETH_ADDR_LEN);
458 }
1e37a2d7
BP
459 }
460}
461
d31f1109
JP
462static void
463nxm_put_ipv6(struct ofpbuf *b, uint32_t header,
464 const struct in6_addr *value, const struct in6_addr *mask)
465{
466 if (ipv6_mask_is_any(mask)) {
467 return;
468 } else if (ipv6_mask_is_exact(mask)) {
469 nxm_put_header(b, header);
470 ofpbuf_put(b, value, sizeof *value);
471 } else {
472 nxm_put_header(b, NXM_MAKE_WILD_HEADER(header));
473 ofpbuf_put(b, value, sizeof *value);
474 ofpbuf_put(b, mask, sizeof *mask);
475 }
476}
477
7257b535 478static void
81a76618 479nxm_put_frag(struct ofpbuf *b, const struct match *match)
7257b535 480{
81a76618
BP
481 uint8_t nw_frag = match->flow.nw_frag;
482 uint8_t nw_frag_mask = match->wc.masks.nw_frag;
7257b535 483
eadef313 484 switch (nw_frag_mask) {
7257b535
BP
485 case 0:
486 break;
487
eadef313
JP
488 case FLOW_NW_FRAG_MASK:
489 nxm_put_8(b, NXM_NX_IP_FRAG, nw_frag);
7257b535
BP
490 break;
491
492 default:
eadef313
JP
493 nxm_put_8m(b, NXM_NX_IP_FRAG, nw_frag,
494 nw_frag_mask & FLOW_NW_FRAG_MASK);
7257b535
BP
495 break;
496 }
497}
498
8e7082b0 499static void
81a76618 500nxm_put_ip(struct ofpbuf *b, const struct match *match,
b5ae8913
SH
501 uint8_t icmp_proto, uint32_t icmp_type, uint32_t icmp_code,
502 bool oxm)
8e7082b0 503{
81a76618 504 const struct flow *flow = &match->flow;
8e7082b0 505
81a76618 506 nxm_put_frag(b, match);
8e7082b0 507
81a76618 508 if (match->wc.masks.nw_tos & IP_DSCP_MASK) {
1638b906
BP
509 if (oxm) {
510 nxm_put_8(b, OXM_OF_IP_DSCP, flow->nw_tos >> 2);
511 } else {
512 nxm_put_8(b, NXM_OF_IP_TOS, flow->nw_tos & IP_DSCP_MASK);
513 }
8e7082b0
BP
514 }
515
81a76618 516 if (match->wc.masks.nw_tos & IP_ECN_MASK) {
b5ae8913
SH
517 nxm_put_8(b, oxm ? OXM_OF_IP_ECN : NXM_NX_IP_ECN,
518 flow->nw_tos & IP_ECN_MASK);
8e7082b0
BP
519 }
520
81a76618 521 if (!oxm && match->wc.masks.nw_ttl) {
8e7082b0
BP
522 nxm_put_8(b, NXM_NX_IP_TTL, flow->nw_ttl);
523 }
524
81a76618 525 if (match->wc.masks.nw_proto) {
b5ae8913 526 nxm_put_8(b, oxm ? OXM_OF_IP_PROTO : NXM_OF_IP_PROTO, flow->nw_proto);
8e7082b0
BP
527
528 if (flow->nw_proto == IPPROTO_TCP) {
b5ae8913 529 nxm_put_16m(b, oxm ? OXM_OF_TCP_SRC : NXM_OF_TCP_SRC,
81a76618 530 flow->tp_src, match->wc.masks.tp_src);
b5ae8913 531 nxm_put_16m(b, oxm ? OXM_OF_TCP_DST : NXM_OF_TCP_DST,
81a76618 532 flow->tp_dst, match->wc.masks.tp_dst);
dc235f7f
JR
533 nxm_put_16m(b, NXM_NX_TCP_FLAGS,
534 flow->tcp_flags, match->wc.masks.tcp_flags);
8e7082b0 535 } else if (flow->nw_proto == IPPROTO_UDP) {
b5ae8913 536 nxm_put_16m(b, oxm ? OXM_OF_UDP_SRC : NXM_OF_UDP_SRC,
81a76618 537 flow->tp_src, match->wc.masks.tp_src);
b5ae8913 538 nxm_put_16m(b, oxm ? OXM_OF_UDP_DST : NXM_OF_UDP_DST,
81a76618 539 flow->tp_dst, match->wc.masks.tp_dst);
0d56eaf2
JS
540 } else if (flow->nw_proto == IPPROTO_SCTP) {
541 nxm_put_16m(b, OXM_OF_SCTP_SRC, flow->tp_src,
542 match->wc.masks.tp_src);
543 nxm_put_16m(b, OXM_OF_SCTP_DST, flow->tp_dst,
544 match->wc.masks.tp_dst);
8e7082b0 545 } else if (flow->nw_proto == icmp_proto) {
81a76618 546 if (match->wc.masks.tp_src) {
8e7082b0
BP
547 nxm_put_8(b, icmp_type, ntohs(flow->tp_src));
548 }
81a76618 549 if (match->wc.masks.tp_dst) {
8e7082b0
BP
550 nxm_put_8(b, icmp_code, ntohs(flow->tp_dst));
551 }
552 }
553 }
554}
555
81a76618 556/* Appends to 'b' the nx_match format that expresses 'match'. For Flow Mod and
7623f4dd
SH
557 * Flow Stats Requests messages, a 'cookie' and 'cookie_mask' may be supplied.
558 * Otherwise, 'cookie_mask' should be zero.
4d0ed519
BP
559 *
560 * This function can cause 'b''s data to be reallocated.
561 *
562 * Returns the number of bytes appended to 'b', excluding padding.
563 *
81a76618 564 * If 'match' is a catch-all rule that matches every packet, then this function
4d0ed519 565 * appends nothing to 'b' and returns 0. */
7623f4dd 566static int
81a76618 567nx_put_raw(struct ofpbuf *b, bool oxm, const struct match *match,
7623f4dd 568 ovs_be64 cookie, ovs_be64 cookie_mask)
09246b99 569{
81a76618 570 const struct flow *flow = &match->flow;
09246b99 571 const size_t start_len = b->size;
09246b99 572 int match_len;
b6c9e612 573 int i;
09246b99 574
476f36e8 575 BUILD_ASSERT_DECL(FLOW_WC_SEQ == 23);
a877206f 576
09246b99 577 /* Metadata. */
4e022ec0
AW
578 if (match->wc.masks.in_port.ofp_port) {
579 ofp_port_t in_port = flow->in_port.ofp_port;
b5ae8913
SH
580 if (oxm) {
581 nxm_put_32(b, OXM_OF_IN_PORT, ofputil_port_to_ofp11(in_port));
582 } else {
4e022ec0 583 nxm_put_16(b, NXM_OF_IN_PORT, htons(ofp_to_u16(in_port)));
b5ae8913 584 }
09246b99
BP
585 }
586
587 /* Ethernet. */
b5ae8913 588 nxm_put_eth_masked(b, oxm ? OXM_OF_ETH_SRC : NXM_OF_ETH_SRC,
81a76618 589 flow->dl_src, match->wc.masks.dl_src);
b5ae8913 590 nxm_put_eth_masked(b, oxm ? OXM_OF_ETH_DST : NXM_OF_ETH_DST,
81a76618 591 flow->dl_dst, match->wc.masks.dl_dst);
e2170cff
BP
592 nxm_put_16m(b, oxm ? OXM_OF_ETH_TYPE : NXM_OF_ETH_TYPE,
593 ofputil_dl_type_to_openflow(flow->dl_type),
81a76618 594 match->wc.masks.dl_type);
09246b99 595
95f61ba8
SH
596 /* 802.1Q. */
597 if (oxm) {
26720e24
BP
598 ovs_be16 VID_CFI_MASK = htons(VLAN_VID_MASK | VLAN_CFI);
599 ovs_be16 vid = flow->vlan_tci & VID_CFI_MASK;
81a76618 600 ovs_be16 mask = match->wc.masks.vlan_tci & VID_CFI_MASK;
95f61ba8
SH
601
602 if (mask == htons(VLAN_VID_MASK | VLAN_CFI)) {
603 nxm_put_16(b, OXM_OF_VLAN_VID, vid);
604 } else if (mask) {
605 nxm_put_16m(b, OXM_OF_VLAN_VID, vid, mask);
606 }
607
81a76618 608 if (vid && vlan_tci_to_pcp(match->wc.masks.vlan_tci)) {
95f61ba8
SH
609 nxm_put_8(b, OXM_OF_VLAN_PCP, vlan_tci_to_pcp(flow->vlan_tci));
610 }
611
612 } else {
81a76618
BP
613 nxm_put_16m(b, NXM_OF_VLAN_TCI, flow->vlan_tci,
614 match->wc.masks.vlan_tci);
95f61ba8 615 }
09246b99 616
b02475c5
SH
617 /* MPLS. */
618 if (eth_type_mpls(flow->dl_type)) {
619 if (match->wc.masks.mpls_lse & htonl(MPLS_TC_MASK)) {
620 nxm_put_8(b, OXM_OF_MPLS_TC, mpls_lse_to_tc(flow->mpls_lse));
621 }
622
623 if (match->wc.masks.mpls_lse & htonl(MPLS_BOS_MASK)) {
624 nxm_put_8(b, OXM_OF_MPLS_BOS, mpls_lse_to_bos(flow->mpls_lse));
625 }
626
627 if (match->wc.masks.mpls_lse & htonl(MPLS_LABEL_MASK)) {
628 nxm_put_32(b, OXM_OF_MPLS_LABEL,
629 htonl(mpls_lse_to_label(flow->mpls_lse)));
630 }
631 }
632
66642cb4 633 /* L3. */
e2170cff 634 if (flow->dl_type == htons(ETH_TYPE_IP)) {
09246b99 635 /* IP. */
b5ae8913 636 nxm_put_32m(b, oxm ? OXM_OF_IPV4_SRC : NXM_OF_IP_SRC,
81a76618 637 flow->nw_src, match->wc.masks.nw_src);
b5ae8913 638 nxm_put_32m(b, oxm ? OXM_OF_IPV4_DST : NXM_OF_IP_DST,
81a76618
BP
639 flow->nw_dst, match->wc.masks.nw_dst);
640 nxm_put_ip(b, match, IPPROTO_ICMP,
b5ae8913
SH
641 oxm ? OXM_OF_ICMPV4_TYPE : NXM_OF_ICMP_TYPE,
642 oxm ? OXM_OF_ICMPV4_CODE : NXM_OF_ICMP_CODE, oxm);
e2170cff 643 } else if (flow->dl_type == htons(ETH_TYPE_IPV6)) {
d31f1109 644 /* IPv6. */
b5ae8913 645 nxm_put_ipv6(b, oxm ? OXM_OF_IPV6_SRC : NXM_NX_IPV6_SRC,
81a76618 646 &flow->ipv6_src, &match->wc.masks.ipv6_src);
b5ae8913 647 nxm_put_ipv6(b, oxm ? OXM_OF_IPV6_DST : NXM_NX_IPV6_DST,
81a76618
BP
648 &flow->ipv6_dst, &match->wc.masks.ipv6_dst);
649 nxm_put_ip(b, match, IPPROTO_ICMPV6,
b5ae8913
SH
650 oxm ? OXM_OF_ICMPV6_TYPE : NXM_NX_ICMPV6_TYPE,
651 oxm ? OXM_OF_ICMPV6_CODE : NXM_NX_ICMPV6_CODE, oxm);
9e44d715 652
32455024 653 nxm_put_32m(b, oxm ? OXM_OF_IPV6_FLABEL : NXM_NX_IPV6_LABEL,
81a76618 654 flow->ipv6_label, match->wc.masks.ipv6_label);
d31f1109 655
8e7082b0
BP
656 if (flow->nw_proto == IPPROTO_ICMPV6
657 && (flow->tp_src == htons(ND_NEIGHBOR_SOLICIT) ||
658 flow->tp_src == htons(ND_NEIGHBOR_ADVERT))) {
b5ae8913 659 nxm_put_ipv6(b, oxm ? OXM_OF_IPV6_ND_TARGET : NXM_NX_ND_TARGET,
81a76618 660 &flow->nd_target, &match->wc.masks.nd_target);
e878338b
SH
661 if (flow->tp_src == htons(ND_NEIGHBOR_SOLICIT)) {
662 nxm_put_eth_masked(b, oxm ? OXM_OF_IPV6_ND_SLL : NXM_NX_ND_SLL,
81a76618 663 flow->arp_sha, match->wc.masks.arp_sha);
8e7082b0 664 }
e878338b
SH
665 if (flow->tp_src == htons(ND_NEIGHBOR_ADVERT)) {
666 nxm_put_eth_masked(b, oxm ? OXM_OF_IPV6_ND_TLL : NXM_NX_ND_TLL,
81a76618 667 flow->arp_tha, match->wc.masks.arp_tha);
d31f1109
JP
668 }
669 }
8087f5ff
MM
670 } else if (flow->dl_type == htons(ETH_TYPE_ARP) ||
671 flow->dl_type == htons(ETH_TYPE_RARP)) {
09246b99 672 /* ARP. */
81a76618 673 if (match->wc.masks.nw_proto) {
b5ae8913
SH
674 nxm_put_16(b, oxm ? OXM_OF_ARP_OP : NXM_OF_ARP_OP,
675 htons(flow->nw_proto));
09246b99 676 }
b5ae8913 677 nxm_put_32m(b, oxm ? OXM_OF_ARP_SPA : NXM_OF_ARP_SPA,
81a76618 678 flow->nw_src, match->wc.masks.nw_src);
b5ae8913 679 nxm_put_32m(b, oxm ? OXM_OF_ARP_TPA : NXM_OF_ARP_TPA,
81a76618 680 flow->nw_dst, match->wc.masks.nw_dst);
e878338b 681 nxm_put_eth_masked(b, oxm ? OXM_OF_ARP_SHA : NXM_NX_ARP_SHA,
81a76618 682 flow->arp_sha, match->wc.masks.arp_sha);
e878338b 683 nxm_put_eth_masked(b, oxm ? OXM_OF_ARP_THA : NXM_NX_ARP_THA,
81a76618 684 flow->arp_tha, match->wc.masks.arp_tha);
09246b99
BP
685 }
686
687 /* Tunnel ID. */
2f2eb46c 688 nxm_put_64m(b, oxm ? OXM_OF_TUNNEL_ID : NXM_NX_TUN_ID,
0ad90c84
JR
689 flow->tunnel.tun_id, match->wc.masks.tunnel.tun_id);
690
691 /* Other tunnel metadata. */
692 nxm_put_32m(b, NXM_NX_TUN_IPV4_SRC,
693 flow->tunnel.ip_src, match->wc.masks.tunnel.ip_src);
694 nxm_put_32m(b, NXM_NX_TUN_IPV4_DST,
695 flow->tunnel.ip_dst, match->wc.masks.tunnel.ip_dst);
09246b99 696
b6c9e612
BP
697 /* Registers. */
698 for (i = 0; i < FLOW_N_REGS; i++) {
699 nxm_put_32m(b, NXM_NX_REG(i),
81a76618 700 htonl(flow->regs[i]), htonl(match->wc.masks.regs[i]));
b6c9e612
BP
701 }
702
ac923e91
JG
703 /* Mark. */
704 nxm_put_32m(b, NXM_NX_PKT_MARK, htonl(flow->pkt_mark),
705 htonl(match->wc.masks.pkt_mark));
706
969fc56c 707 /* OpenFlow 1.1+ Metadata. */
81a76618 708 nxm_put_64m(b, OXM_OF_METADATA, flow->metadata, match->wc.masks.metadata);
969fc56c 709
e729e793
JP
710 /* Cookie. */
711 nxm_put_64m(b, NXM_NX_COOKIE, cookie, cookie_mask);
712
09246b99 713 match_len = b->size - start_len;
7623f4dd
SH
714 return match_len;
715}
716
81a76618 717/* Appends to 'b' the nx_match format that expresses 'match', plus enough zero
7623f4dd
SH
718 * bytes to pad the nx_match out to a multiple of 8. For Flow Mod and Flow
719 * Stats Requests messages, a 'cookie' and 'cookie_mask' may be supplied.
720 * Otherwise, 'cookie_mask' should be zero.
721 *
722 * This function can cause 'b''s data to be reallocated.
723 *
724 * Returns the number of bytes appended to 'b', excluding padding. The return
725 * value can be zero if it appended nothing at all to 'b' (which happens if
726 * 'cr' is a catch-all rule that matches every packet). */
727int
81a76618 728nx_put_match(struct ofpbuf *b, const struct match *match,
7623f4dd
SH
729 ovs_be64 cookie, ovs_be64 cookie_mask)
730{
81a76618 731 int match_len = nx_put_raw(b, false, match, cookie, cookie_mask);
7623f4dd
SH
732
733 ofpbuf_put_zeros(b, ROUND_UP(match_len, 8) - match_len);
734 return match_len;
735}
736
737
738/* Appends to 'b' an struct ofp11_match_header followed by the oxm format that
81a76618
BP
739 * expresses 'cr', plus enough zero bytes to pad the data appended out to a
740 * multiple of 8.
7623f4dd
SH
741 *
742 * This function can cause 'b''s data to be reallocated.
743 *
744 * Returns the number of bytes appended to 'b', excluding the padding. Never
745 * returns zero. */
746int
81a76618 747oxm_put_match(struct ofpbuf *b, const struct match *match)
7623f4dd
SH
748{
749 int match_len;
750 struct ofp11_match_header *omh;
751 size_t start_len = b->size;
752 ovs_be64 cookie = htonll(0), cookie_mask = htonll(0);
753
754 ofpbuf_put_uninit(b, sizeof *omh);
81a76618 755 match_len = nx_put_raw(b, true, match, cookie, cookie_mask) + sizeof *omh;
09246b99 756 ofpbuf_put_zeros(b, ROUND_UP(match_len, 8) - match_len);
7623f4dd 757
db5a1019 758 omh = ofpbuf_at(b, start_len, sizeof *omh);
7623f4dd
SH
759 omh->type = htons(OFPMT_OXM);
760 omh->length = htons(match_len);
761
09246b99
BP
762 return match_len;
763}
764\f
765/* nx_match_to_string() and helpers. */
766
f393f81e
BP
767static void format_nxm_field_name(struct ds *, uint32_t header);
768
09246b99
BP
769char *
770nx_match_to_string(const uint8_t *p, unsigned int match_len)
771{
772 uint32_t header;
773 struct ds s;
774
775 if (!match_len) {
776 return xstrdup("<any>");
777 }
778
779 ds_init(&s);
780 while ((header = nx_entry_ok(p, match_len)) != 0) {
781 unsigned int length = NXM_LENGTH(header);
782 unsigned int value_len = nxm_field_bytes(header);
783 const uint8_t *value = p + 4;
784 const uint8_t *mask = value + value_len;
09246b99
BP
785 unsigned int i;
786
787 if (s.length) {
788 ds_put_cstr(&s, ", ");
789 }
790
f393f81e 791 format_nxm_field_name(&s, header);
09246b99
BP
792 ds_put_char(&s, '(');
793
794 for (i = 0; i < value_len; i++) {
795 ds_put_format(&s, "%02x", value[i]);
796 }
797 if (NXM_HASMASK(header)) {
798 ds_put_char(&s, '/');
799 for (i = 0; i < value_len; i++) {
800 ds_put_format(&s, "%02x", mask[i]);
801 }
802 }
803 ds_put_char(&s, ')');
804
805 p += 4 + length;
806 match_len -= 4 + length;
807 }
808
809 if (match_len) {
810 if (s.length) {
811 ds_put_cstr(&s, ", ");
812 }
813
814 ds_put_format(&s, "<%u invalid bytes>", match_len);
815 }
816
817 return ds_steal_cstr(&s);
818}
819
7623f4dd 820char *
db5a1019 821oxm_match_to_string(const struct ofpbuf *p, unsigned int match_len)
7623f4dd 822{
db5a1019 823 const struct ofp11_match_header *omh = p->data;
7623f4dd
SH
824 uint16_t match_len_;
825 struct ds s;
826
827 ds_init(&s);
828
829 if (match_len < sizeof *omh) {
830 ds_put_format(&s, "<match too short: %u>", match_len);
831 goto err;
832 }
833
834 if (omh->type != htons(OFPMT_OXM)) {
835 ds_put_format(&s, "<bad match type field: %u>", ntohs(omh->type));
836 goto err;
837 }
838
839 match_len_ = ntohs(omh->length);
840 if (match_len_ < sizeof *omh) {
841 ds_put_format(&s, "<match length field too short: %u>", match_len_);
842 goto err;
843 }
844
845 if (match_len_ != match_len) {
846 ds_put_format(&s, "<match length field incorrect: %u != %u>",
847 match_len_, match_len);
848 goto err;
849 }
850
db5a1019
AW
851 return nx_match_to_string(ofpbuf_at(p, sizeof *omh, 0),
852 match_len - sizeof *omh);
7623f4dd
SH
853
854err:
855 return ds_steal_cstr(&s);
856}
857
f393f81e
BP
858static void
859format_nxm_field_name(struct ds *s, uint32_t header)
860{
28da1f8f
BP
861 const struct mf_field *mf = mf_from_nxm_header(header);
862 if (mf) {
b5ae8913 863 ds_put_cstr(s, IS_OXM_HEADER(header) ? mf->oxm_name : mf->nxm_name);
28da1f8f
BP
864 if (NXM_HASMASK(header)) {
865 ds_put_cstr(s, "_W");
866 }
e729e793
JP
867 } else if (header == NXM_NX_COOKIE) {
868 ds_put_cstr(s, "NXM_NX_COOKIE");
869 } else if (header == NXM_NX_COOKIE_W) {
870 ds_put_cstr(s, "NXM_NX_COOKIE_W");
f393f81e
BP
871 } else {
872 ds_put_format(s, "%d:%d", NXM_VENDOR(header), NXM_FIELD(header));
873 }
874}
875
558d80cb
BP
876static uint32_t
877parse_nxm_field_name(const char *name, int name_len)
09246b99 878{
28da1f8f
BP
879 bool wild;
880 int i;
09246b99 881
558d80cb 882 /* Check whether it's a field name. */
28da1f8f
BP
883 wild = name_len > 2 && !memcmp(&name[name_len - 2], "_W", 2);
884 if (wild) {
885 name_len -= 2;
886 }
e729e793 887
28da1f8f
BP
888 for (i = 0; i < MFF_N_IDS; i++) {
889 const struct mf_field *mf = mf_from_id(i);
b5ae8913
SH
890 uint32_t header;
891
892 if (mf->nxm_name &&
893 !strncmp(mf->nxm_name, name, name_len) &&
894 mf->nxm_name[name_len] == '\0') {
895 header = mf->nxm_header;
896 } else if (mf->oxm_name &&
897 !strncmp(mf->oxm_name, name, name_len) &&
898 mf->oxm_name[name_len] == '\0') {
899 header = mf->oxm_header;
900 } else {
901 continue;
902 }
28da1f8f 903
b5ae8913
SH
904 if (!wild) {
905 return header;
906 } else if (mf->maskable != MFM_NONE) {
907 return NXM_MAKE_WILD_HEADER(header);
09246b99
BP
908 }
909 }
910
b5ae8913
SH
911 if (!strncmp("NXM_NX_COOKIE", name, name_len) &&
912 (name_len == strlen("NXM_NX_COOKIE"))) {
e729e793
JP
913 if (!wild) {
914 return NXM_NX_COOKIE;
915 } else {
916 return NXM_NX_COOKIE_W;
917 }
918 }
919
558d80cb
BP
920 /* Check whether it's a 32-bit field header value as hex.
921 * (This isn't ordinarily useful except for testing error behavior.) */
922 if (name_len == 8) {
923 uint32_t header = hexits_value(name, name_len, NULL);
924 if (header != UINT_MAX) {
925 return header;
926 }
927 }
928
929 return 0;
09246b99 930}
09246b99
BP
931\f
932/* nx_match_from_string(). */
933
7623f4dd
SH
934static int
935nx_match_from_string_raw(const char *s, struct ofpbuf *b)
09246b99
BP
936{
937 const char *full_s = s;
938 const size_t start_len = b->size;
09246b99
BP
939
940 if (!strcmp(s, "<any>")) {
941 /* Ensure that 'b->data' isn't actually null. */
942 ofpbuf_prealloc_tailroom(b, 1);
943 return 0;
944 }
945
946 for (s += strspn(s, ", "); *s; s += strspn(s, ", ")) {
558d80cb
BP
947 const char *name;
948 uint32_t header;
09246b99 949 int name_len;
78090f63 950 size_t n;
09246b99 951
558d80cb 952 name = s;
09246b99
BP
953 name_len = strcspn(s, "(");
954 if (s[name_len] != '(') {
955 ovs_fatal(0, "%s: missing ( at end of nx_match", full_s);
956 }
957
558d80cb
BP
958 header = parse_nxm_field_name(name, name_len);
959 if (!header) {
09246b99
BP
960 ovs_fatal(0, "%s: unknown field `%.*s'", full_s, name_len, s);
961 }
962
963 s += name_len + 1;
964
558d80cb 965 nxm_put_header(b, header);
78090f63
BP
966 s = ofpbuf_put_hex(b, s, &n);
967 if (n != nxm_field_bytes(header)) {
968 ovs_fatal(0, "%.2s: hex digits expected", s);
969 }
558d80cb 970 if (NXM_HASMASK(header)) {
09246b99
BP
971 s += strspn(s, " ");
972 if (*s != '/') {
558d80cb
BP
973 ovs_fatal(0, "%s: missing / in masked field %.*s",
974 full_s, name_len, name);
09246b99 975 }
78090f63
BP
976 s = ofpbuf_put_hex(b, s + 1, &n);
977 if (n != nxm_field_bytes(header)) {
978 ovs_fatal(0, "%.2s: hex digits expected", s);
979 }
09246b99
BP
980 }
981
982 s += strspn(s, " ");
983 if (*s != ')') {
558d80cb
BP
984 ovs_fatal(0, "%s: missing ) following field %.*s",
985 full_s, name_len, name);
09246b99
BP
986 }
987 s++;
988 }
989
7623f4dd
SH
990 return b->size - start_len;
991}
992
993int
994nx_match_from_string(const char *s, struct ofpbuf *b)
995{
996 int match_len = nx_match_from_string_raw(s, b);
997 ofpbuf_put_zeros(b, ROUND_UP(match_len, 8) - match_len);
998 return match_len;
999}
1000
1001int
1002oxm_match_from_string(const char *s, struct ofpbuf *b)
1003{
1004 int match_len;
1005 struct ofp11_match_header *omh;
1006 size_t start_len = b->size;
1007
1008 ofpbuf_put_uninit(b, sizeof *omh);
1009 match_len = nx_match_from_string_raw(s, b) + sizeof *omh;
09246b99 1010 ofpbuf_put_zeros(b, ROUND_UP(match_len, 8) - match_len);
7623f4dd 1011
db5a1019 1012 omh = ofpbuf_at(b, start_len, sizeof *omh);
7623f4dd
SH
1013 omh->type = htons(OFPMT_OXM);
1014 omh->length = htons(match_len);
1015
09246b99
BP
1016 return match_len;
1017}
b6c9e612 1018\f
bdda5aca
BP
1019/* Parses 's' as a "move" action, in the form described in ovs-ofctl(8), into
1020 * '*move'.
1021 *
1022 * Returns NULL if successful, otherwise a malloc()'d string describing the
1023 * error. The caller is responsible for freeing the returned string. */
1024char * WARN_UNUSED_RESULT
f25d0cf3 1025nxm_parse_reg_move(struct ofpact_reg_move *move, const char *s)
f393f81e
BP
1026{
1027 const char *full_s = s;
bdda5aca 1028 char *error;
f393f81e 1029
bdda5aca
BP
1030 error = mf_parse_subfield__(&move->src, &s);
1031 if (error) {
1032 return error;
1033 }
f393f81e 1034 if (strncmp(s, "->", 2)) {
bdda5aca 1035 return xasprintf("%s: missing `->' following source", full_s);
f393f81e
BP
1036 }
1037 s += 2;
bdda5aca
BP
1038 error = mf_parse_subfield(&move->dst, s);
1039 if (error) {
1040 return error;
f393f81e
BP
1041 }
1042
f25d0cf3 1043 if (move->src.n_bits != move->dst.n_bits) {
bdda5aca
BP
1044 return xasprintf("%s: source field is %d bits wide but destination is "
1045 "%d bits wide", full_s,
1046 move->src.n_bits, move->dst.n_bits);
f393f81e 1047 }
bdda5aca 1048 return NULL;
f393f81e
BP
1049}
1050
bdda5aca
BP
1051/* Parses 's' as a "load" action, in the form described in ovs-ofctl(8), into
1052 * '*load'.
1053 *
1054 * Returns NULL if successful, otherwise a malloc()'d string describing the
1055 * error. The caller is responsible for freeing the returned string. */
1056char * WARN_UNUSED_RESULT
f25d0cf3 1057nxm_parse_reg_load(struct ofpact_reg_load *load, const char *s)
f393f81e
BP
1058{
1059 const char *full_s = s;
9bab681f 1060 uint64_t value = strtoull(s, (char **) &s, 0);
bdda5aca 1061 char *error;
f393f81e 1062
f393f81e 1063 if (strncmp(s, "->", 2)) {
bdda5aca 1064 return xasprintf("%s: missing `->' following value", full_s);
f393f81e
BP
1065 }
1066 s += 2;
bdda5aca
BP
1067 error = mf_parse_subfield(&load->dst, s);
1068 if (error) {
1069 return error;
f393f81e
BP
1070 }
1071
9bab681f 1072 if (load->dst.n_bits < 64 && (value >> load->dst.n_bits) != 0) {
bdda5aca
BP
1073 return xasprintf("%s: value %"PRIu64" does not fit into %d bits",
1074 full_s, value, load->dst.n_bits);
f393f81e 1075 }
9bab681f 1076
158edc8d
BP
1077 load->subvalue.be64[0] = htonll(0);
1078 load->subvalue.be64[1] = htonll(value);
bdda5aca 1079 return NULL;
f393f81e
BP
1080}
1081\f
1082/* nxm_format_reg_move(), nxm_format_reg_load(). */
1083
f393f81e 1084void
f25d0cf3 1085nxm_format_reg_move(const struct ofpact_reg_move *move, struct ds *s)
f393f81e 1086{
f393f81e 1087 ds_put_format(s, "move:");
f25d0cf3 1088 mf_format_subfield(&move->src, s);
f393f81e 1089 ds_put_cstr(s, "->");
f25d0cf3 1090 mf_format_subfield(&move->dst, s);
f393f81e
BP
1091}
1092
b2dd70be
JR
1093void
1094nxm_format_reg_load(const struct ofpact_reg_load *load, struct ds *s)
f25d0cf3 1095{
9bab681f 1096 ds_put_cstr(s, "load:");
158edc8d 1097 mf_format_subvalue(&load->subvalue, s);
9bab681f 1098 ds_put_cstr(s, "->");
f25d0cf3
BP
1099 mf_format_subfield(&load->dst, s);
1100}
1101\f
1102enum ofperr
1103nxm_reg_move_from_openflow(const struct nx_action_reg_move *narm,
1104 struct ofpbuf *ofpacts)
f393f81e 1105{
f25d0cf3 1106 struct ofpact_reg_move *move;
f393f81e 1107
f25d0cf3
BP
1108 move = ofpact_put_REG_MOVE(ofpacts);
1109 move->src.field = mf_from_nxm_header(ntohl(narm->src));
1110 move->src.ofs = ntohs(narm->src_ofs);
1111 move->src.n_bits = ntohs(narm->n_bits);
1112 move->dst.field = mf_from_nxm_header(ntohl(narm->dst));
1113 move->dst.ofs = ntohs(narm->dst_ofs);
1114 move->dst.n_bits = ntohs(narm->n_bits);
816fd533 1115
f25d0cf3 1116 return nxm_reg_move_check(move, NULL);
f393f81e 1117}
b6c9e612 1118
816fd533 1119enum ofperr
f25d0cf3
BP
1120nxm_reg_load_from_openflow(const struct nx_action_reg_load *narl,
1121 struct ofpbuf *ofpacts)
b6c9e612 1122{
f25d0cf3 1123 struct ofpact_reg_load *load;
b6c9e612 1124
f25d0cf3
BP
1125 load = ofpact_put_REG_LOAD(ofpacts);
1126 load->dst.field = mf_from_nxm_header(ntohl(narl->dst));
1127 load->dst.ofs = nxm_decode_ofs(narl->ofs_nbits);
1128 load->dst.n_bits = nxm_decode_n_bits(narl->ofs_nbits);
158edc8d 1129 load->subvalue.be64[1] = narl->value;
f25d0cf3
BP
1130
1131 /* Reject 'narl' if a bit numbered 'n_bits' or higher is set to 1 in
1132 * narl->value. */
9bab681f
IY
1133 if (load->dst.n_bits < 64 &&
1134 ntohll(narl->value) >> load->dst.n_bits) {
f25d0cf3 1135 return OFPERR_OFPBAC_BAD_ARGUMENT;
b6c9e612
BP
1136 }
1137
f25d0cf3 1138 return nxm_reg_load_check(load, NULL);
43edca57 1139}
f25d0cf3 1140\f
90bf1e07 1141enum ofperr
f25d0cf3 1142nxm_reg_move_check(const struct ofpact_reg_move *move, const struct flow *flow)
43edca57 1143{
90bf1e07 1144 enum ofperr error;
43edca57 1145
f25d0cf3 1146 error = mf_check_src(&move->src, flow);
43edca57
EJ
1147 if (error) {
1148 return error;
b6c9e612
BP
1149 }
1150
f25d0cf3
BP
1151 return mf_check_dst(&move->dst, NULL);
1152}
b6c9e612 1153
f25d0cf3
BP
1154enum ofperr
1155nxm_reg_load_check(const struct ofpact_reg_load *load, const struct flow *flow)
1156{
1157 return mf_check_dst(&load->dst, flow);
b6c9e612
BP
1158}
1159\f
b6c9e612 1160void
f25d0cf3
BP
1161nxm_reg_move_to_nxast(const struct ofpact_reg_move *move,
1162 struct ofpbuf *openflow)
b6c9e612 1163{
f25d0cf3 1164 struct nx_action_reg_move *narm;
28da1f8f 1165
f25d0cf3
BP
1166 narm = ofputil_put_NXAST_REG_MOVE(openflow);
1167 narm->n_bits = htons(move->dst.n_bits);
1168 narm->src_ofs = htons(move->src.ofs);
1169 narm->dst_ofs = htons(move->dst.ofs);
1170 narm->src = htonl(move->src.field->nxm_header);
1171 narm->dst = htonl(move->dst.field->nxm_header);
1172}
816fd533 1173
b2dd70be
JR
1174void
1175nxm_reg_load_to_nxast(const struct ofpact_reg_load *load,
1176 struct ofpbuf *openflow)
f25d0cf3
BP
1177{
1178 struct nx_action_reg_load *narl;
1179
1180 narl = ofputil_put_NXAST_REG_LOAD(openflow);
1181 narl->ofs_nbits = nxm_encode_ofs_nbits(load->dst.ofs, load->dst.n_bits);
1182 narl->dst = htonl(load->dst.field->nxm_header);
158edc8d 1183 narl->value = load->subvalue.be64[1];
b6c9e612 1184}
f25d0cf3
BP
1185\f
1186/* nxm_execute_reg_move(), nxm_execute_reg_load(). */
b6c9e612
BP
1187
1188void
f25d0cf3 1189nxm_execute_reg_move(const struct ofpact_reg_move *move,
bcd2633a 1190 struct flow *flow, struct flow_wildcards *wc)
b6c9e612 1191{
f25d0cf3
BP
1192 union mf_value src_value;
1193 union mf_value dst_value;
816fd533 1194
f47ea021
JR
1195 mf_mask_field_and_prereqs(move->dst.field, &wc->masks);
1196 mf_mask_field_and_prereqs(move->src.field, &wc->masks);
bcd2633a 1197
f25d0cf3
BP
1198 mf_get_value(move->dst.field, flow, &dst_value);
1199 mf_get_value(move->src.field, flow, &src_value);
1200 bitwise_copy(&src_value, move->src.field->n_bytes, move->src.ofs,
1201 &dst_value, move->dst.field->n_bytes, move->dst.ofs,
1202 move->src.n_bits);
1203 mf_set_flow_value(move->dst.field, &dst_value, flow);
43edca57 1204}
b6c9e612 1205
43edca57 1206void
f47ea021
JR
1207nxm_execute_reg_load(const struct ofpact_reg_load *load, struct flow *flow,
1208 struct flow_wildcards *wc)
43edca57 1209{
f47ea021
JR
1210 /* Since at the datapath interface we do not have set actions for
1211 * individual fields, but larger sets of fields for a given protocol
1212 * layer, the set action will in practice only ever apply to exactly
1213 * matched flows for the given protocol layer. For example, if the
1214 * reg_load changes the IP TTL, the corresponding datapath action will
1215 * rewrite also the IP addresses and TOS byte. Since these other field
1216 * values may not be explicitly set, they depend on the incoming flow field
1217 * values, and are hence all of them are set in the wildcards masks, when
1218 * the action is committed to the datapath. For the rare case, where the
1219 * reg_load action does not actually change the value, and no other flow
1220 * field values are set (or loaded), the datapath action is skipped, and
1221 * no mask bits are set. Such a datapath flow should, however, be
1222 * dependent on the specific field value, so the corresponding wildcard
1223 * mask bits must be set, lest the datapath flow be applied to packets
1224 * containing some other value in the field and the field value remain
1225 * unchanged regardless of the incoming value.
1226 *
1227 * We set the masks here for the whole fields, and their prerequisities.
1228 * Even if only the lower byte of a TCP destination port is set,
1229 * we set the mask for the whole field, and also the ip_proto in the IP
1230 * header, so that the kernel flow would not be applied on, e.g., a UDP
1231 * packet, or any other IP protocol in addition to TCP packets.
1232 */
1233 mf_mask_field_and_prereqs(load->dst.field, &wc->masks);
9bab681f 1234 mf_write_subfield_flow(&load->dst, &load->subvalue, flow);
816fd533 1235}
28da1f8f 1236
816fd533 1237void
f25d0cf3 1238nxm_reg_load(const struct mf_subfield *dst, uint64_t src_data,
f74e7df7 1239 struct flow *flow, struct flow_wildcards *wc)
816fd533 1240{
9bab681f 1241 union mf_subvalue src_subvalue;
f74e7df7 1242 union mf_subvalue mask_value;
9bab681f 1243 ovs_be64 src_data_be = htonll(src_data);
f25d0cf3 1244
f74e7df7
JP
1245 memset(&mask_value, 0xff, sizeof mask_value);
1246 mf_write_subfield_flow(dst, &mask_value, &wc->masks);
1247
9bab681f
IY
1248 bitwise_copy(&src_data_be, sizeof src_data_be, 0,
1249 &src_subvalue, sizeof src_subvalue, 0,
1250 sizeof src_data_be * 8);
1251 mf_write_subfield_flow(dst, &src_subvalue, flow);
b6c9e612 1252}
bd85dac1
AZ
1253\f
1254/* nxm_parse_stack_action, works for both push() and pop(). */
bdda5aca
BP
1255
1256/* Parses 's' as a "push" or "pop" action, in the form described in
1257 * ovs-ofctl(8), into '*stack_action'.
1258 *
1259 * Returns NULL if successful, otherwise a malloc()'d string describing the
1260 * error. The caller is responsible for freeing the returned string. */
1261char * WARN_UNUSED_RESULT
bd85dac1
AZ
1262nxm_parse_stack_action(struct ofpact_stack *stack_action, const char *s)
1263{
bdda5aca
BP
1264 char *error;
1265
1266 error = mf_parse_subfield__(&stack_action->subfield, &s);
1267 if (error) {
1268 return error;
1269 }
1270
bd85dac1 1271 if (*s != '\0') {
bdda5aca 1272 return xasprintf("%s: trailing garbage following push or pop", s);
bd85dac1 1273 }
bdda5aca
BP
1274
1275 return NULL;
bd85dac1
AZ
1276}
1277
1278void
1279nxm_format_stack_push(const struct ofpact_stack *push, struct ds *s)
1280{
1281 ds_put_cstr(s, "push:");
1282 mf_format_subfield(&push->subfield, s);
1283}
1284
1285void
1286nxm_format_stack_pop(const struct ofpact_stack *pop, struct ds *s)
1287{
1288 ds_put_cstr(s, "pop:");
1289 mf_format_subfield(&pop->subfield, s);
1290}
1291
1292/* Common set for both push and pop actions. */
1293static void
1294stack_action_from_openflow__(const struct nx_action_stack *nasp,
1295 struct ofpact_stack *stack_action)
1296{
1297 stack_action->subfield.field = mf_from_nxm_header(ntohl(nasp->field));
1298 stack_action->subfield.ofs = ntohs(nasp->offset);
1299 stack_action->subfield.n_bits = ntohs(nasp->n_bits);
1300}
1301
1302static void
1303nxm_stack_to_nxast__(const struct ofpact_stack *stack_action,
1304 struct nx_action_stack *nasp)
1305{
1306 nasp->offset = htons(stack_action->subfield.ofs);
1307 nasp->n_bits = htons(stack_action->subfield.n_bits);
1308 nasp->field = htonl(stack_action->subfield.field->nxm_header);
1309}
1310
1311enum ofperr
1312nxm_stack_push_from_openflow(const struct nx_action_stack *nasp,
1313 struct ofpbuf *ofpacts)
1314{
1315 struct ofpact_stack *push;
1316
1317 push = ofpact_put_STACK_PUSH(ofpacts);
1318 stack_action_from_openflow__(nasp, push);
1319
1320 return nxm_stack_push_check(push, NULL);
1321}
1322
1323enum ofperr
1324nxm_stack_pop_from_openflow(const struct nx_action_stack *nasp,
1325 struct ofpbuf *ofpacts)
1326{
1327 struct ofpact_stack *pop;
1328
1329 pop = ofpact_put_STACK_POP(ofpacts);
1330 stack_action_from_openflow__(nasp, pop);
1331
1332 return nxm_stack_pop_check(pop, NULL);
1333}
1334
1335enum ofperr
1336nxm_stack_push_check(const struct ofpact_stack *push,
1337 const struct flow *flow)
1338{
1339 return mf_check_src(&push->subfield, flow);
1340}
1341
1342enum ofperr
1343nxm_stack_pop_check(const struct ofpact_stack *pop,
1344 const struct flow *flow)
1345{
1346 return mf_check_dst(&pop->subfield, flow);
1347}
1348
1349void
1350nxm_stack_push_to_nxast(const struct ofpact_stack *stack,
1351 struct ofpbuf *openflow)
1352{
1353 nxm_stack_to_nxast__(stack, ofputil_put_NXAST_STACK_PUSH(openflow));
1354}
1355
1356void
1357nxm_stack_pop_to_nxast(const struct ofpact_stack *stack,
1358 struct ofpbuf *openflow)
1359{
1360 nxm_stack_to_nxast__(stack, ofputil_put_NXAST_STACK_POP(openflow));
1361}
1362
1363/* nxm_execute_stack_push(), nxm_execute_stack_pop(). */
1364static void
1365nx_stack_push(struct ofpbuf *stack, union mf_subvalue *v)
1366{
1367 ofpbuf_put(stack, v, sizeof *v);
1368}
1369
1370static union mf_subvalue *
1371nx_stack_pop(struct ofpbuf *stack)
1372{
1373 union mf_subvalue *v = NULL;
1374
1375 if (stack->size) {
1376 stack->size -= sizeof *v;
1377 v = (union mf_subvalue *) ofpbuf_tail(stack);
1378 }
1379
1380 return v;
1381}
1382
1383void
1384nxm_execute_stack_push(const struct ofpact_stack *push,
bcd2633a
JP
1385 const struct flow *flow, struct flow_wildcards *wc,
1386 struct ofpbuf *stack)
bd85dac1 1387{
bcd2633a 1388 union mf_subvalue mask_value;
bd85dac1
AZ
1389 union mf_subvalue dst_value;
1390
bcd2633a
JP
1391 memset(&mask_value, 0xff, sizeof mask_value);
1392 mf_write_subfield_flow(&push->subfield, &mask_value, &wc->masks);
1393
bd85dac1
AZ
1394 mf_read_subfield(&push->subfield, flow, &dst_value);
1395 nx_stack_push(stack, &dst_value);
1396}
1397
1398void
1399nxm_execute_stack_pop(const struct ofpact_stack *pop,
f74e7df7
JP
1400 struct flow *flow, struct flow_wildcards *wc,
1401 struct ofpbuf *stack)
bd85dac1
AZ
1402{
1403 union mf_subvalue *src_value;
1404
1405 src_value = nx_stack_pop(stack);
1406
1407 /* Only pop if stack is not empty. Otherwise, give warning. */
1408 if (src_value) {
f74e7df7
JP
1409 union mf_subvalue mask_value;
1410
1411 memset(&mask_value, 0xff, sizeof mask_value);
1412 mf_write_subfield_flow(&pop->subfield, &mask_value, &wc->masks);
bd85dac1
AZ
1413 mf_write_subfield_flow(&pop->subfield, src_value, flow);
1414 } else {
1415 if (!VLOG_DROP_WARN(&rl)) {
1416 char *flow_str = flow_to_string(flow);
1417 VLOG_WARN_RL(&rl, "Failed to pop from an empty stack. On flow \n"
1418 " %s", flow_str);
1419 free(flow_str);
1420 }
1421 }
1422}