datapath-windows: Add WMI Script that updates Hyper-V friendly port names.
[cascardo/ovs.git] / lib / nx-match.c
1 /*
2  * Copyright (c) 2010, 2011, 2012, 2013, 2014 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18
19 #include "nx-match.h"
20
21 #include <netinet/icmp6.h>
22
23 #include "classifier.h"
24 #include "dynamic-string.h"
25 #include "meta-flow.h"
26 #include "ofp-actions.h"
27 #include "ofp-errors.h"
28 #include "ofp-util.h"
29 #include "ofpbuf.h"
30 #include "openflow/nicira-ext.h"
31 #include "packets.h"
32 #include "unaligned.h"
33 #include "util.h"
34 #include "vlog.h"
35
36 VLOG_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. */
40 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
41
42 /* Returns the width of the data for a field with the given 'header', in
43  * bytes. */
44 int
45 nxm_field_bytes(uint32_t header)
46 {
47     unsigned int length = NXM_LENGTH(header);
48     return NXM_HASMASK(header) ? length / 2 : length;
49 }
50
51 /* Returns the width of the data for a field with the given 'header', in
52  * bits. */
53 int
54 nxm_field_bits(uint32_t header)
55 {
56     return nxm_field_bytes(header) * 8;
57 }
58 \f
59 /* nx_pull_match() and helpers. */
60
61 static uint32_t
62 nx_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) {
70             VLOG_DBG_RL(&rl, "nx_match ends with partial (%u-byte) nxm_header",
71                         match_len);
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
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. */
96 static void
97 check_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                 free(s);
113                 break;
114             }
115         }
116     }
117 }
118
119 static enum ofperr
120 nx_pull_raw(const uint8_t *p, unsigned int match_len, bool strict,
121             struct match *match, ovs_be64 *cookie, ovs_be64 *cookie_mask)
122 {
123     uint32_t header;
124
125     ovs_assert((cookie != NULL) == (cookie_mask != NULL));
126
127     match_init_catchall(match);
128     if (cookie) {
129         *cookie = *cookie_mask = htonll(0);
130     }
131     if (!match_len) {
132         return 0;
133     }
134
135     for (;
136          (header = nx_entry_ok(p, match_len)) != 0;
137          p += 4 + NXM_LENGTH(header), match_len -= 4 + NXM_LENGTH(header)) {
138         const struct mf_field *mf;
139         enum ofperr error;
140
141         mf = mf_from_nxm_header(header);
142         if (!mf) {
143             if (strict) {
144                 error = OFPERR_OFPBMC_BAD_FIELD;
145             } else {
146                 continue;
147             }
148         } else if (!mf_are_prereqs_ok(mf, &match->flow)) {
149             error = OFPERR_OFPBMC_BAD_PREREQ;
150         } else if (!mf_is_all_wild(mf, &match->wc)) {
151             error = OFPERR_OFPBMC_DUP_FIELD;
152         } else {
153             unsigned int width = mf->n_bytes;
154             union mf_value value;
155
156             memcpy(&value, p + 4, width);
157             if (!mf_is_value_valid(mf, &value)) {
158                 error = OFPERR_OFPBMC_BAD_VALUE;
159             } else if (!NXM_HASMASK(header)) {
160                 error = 0;
161                 mf_set_value(mf, &value, match);
162             } else {
163                 union mf_value mask;
164
165                 memcpy(&mask, p + 4 + width, width);
166                 if (!mf_is_mask_valid(mf, &mask)) {
167                     error = OFPERR_OFPBMC_BAD_MASK;
168                 } else {
169                     error = 0;
170                     check_mask_consistency(p, mf);
171                     mf_set(mf, &value, &mask, match);
172                 }
173             }
174         }
175
176         /* Check if the match is for a cookie rather than a classifier rule. */
177         if ((header == NXM_NX_COOKIE || header == NXM_NX_COOKIE_W) && cookie) {
178             if (*cookie_mask) {
179                 error = OFPERR_OFPBMC_DUP_FIELD;
180             } else {
181                 unsigned int width = sizeof *cookie;
182
183                 memcpy(cookie, p + 4, width);
184                 if (NXM_HASMASK(header)) {
185                     memcpy(cookie_mask, p + 4 + width, width);
186                 } else {
187                     *cookie_mask = OVS_BE64_MAX;
188                 }
189                 error = 0;
190             }
191         }
192
193         if (error) {
194             VLOG_DBG_RL(&rl, "bad nxm_entry %#08"PRIx32" (vendor=%"PRIu32", "
195                         "field=%"PRIu32", hasmask=%"PRIu32", len=%"PRIu32"), "
196                         "(%s)", header,
197                         NXM_VENDOR(header), NXM_FIELD(header),
198                         NXM_HASMASK(header), NXM_LENGTH(header),
199                         ofperr_to_string(error));
200             return error;
201         }
202     }
203
204     return match_len ? OFPERR_OFPBMC_BAD_LEN : 0;
205 }
206
207 static enum ofperr
208 nx_pull_match__(struct ofpbuf *b, unsigned int match_len, bool strict,
209                 struct match *match,
210                 ovs_be64 *cookie, ovs_be64 *cookie_mask)
211 {
212     uint8_t *p = NULL;
213
214     if (match_len) {
215         p = ofpbuf_try_pull(b, ROUND_UP(match_len, 8));
216         if (!p) {
217             VLOG_DBG_RL(&rl, "nx_match length %u, rounded up to a "
218                         "multiple of 8, is longer than space in message (max "
219                         "length %"PRIu32")", match_len, ofpbuf_size(b));
220             return OFPERR_OFPBMC_BAD_LEN;
221         }
222     }
223
224     return nx_pull_raw(p, match_len, strict, match, cookie, cookie_mask);
225 }
226
227 /* Parses the nx_match formatted match description in 'b' with length
228  * 'match_len'.  Stores the results in 'match'.  If 'cookie' and 'cookie_mask'
229  * are valid pointers, then stores the cookie and mask in them if 'b' contains
230  * a "NXM_NX_COOKIE*" match.  Otherwise, stores 0 in both.
231  *
232  * Fails with an error upon encountering an unknown NXM header.
233  *
234  * Returns 0 if successful, otherwise an OpenFlow error code. */
235 enum ofperr
236 nx_pull_match(struct ofpbuf *b, unsigned int match_len, struct match *match,
237               ovs_be64 *cookie, ovs_be64 *cookie_mask)
238 {
239     return nx_pull_match__(b, match_len, true, match, cookie, cookie_mask);
240 }
241
242 /* Behaves the same as nx_pull_match(), but skips over unknown NXM headers,
243  * instead of failing with an error. */
244 enum ofperr
245 nx_pull_match_loose(struct ofpbuf *b, unsigned int match_len,
246                     struct match *match,
247                     ovs_be64 *cookie, ovs_be64 *cookie_mask)
248 {
249     return nx_pull_match__(b, match_len, false, match, cookie, cookie_mask);
250 }
251
252 static enum ofperr
253 oxm_pull_match__(struct ofpbuf *b, bool strict, struct match *match)
254 {
255     struct ofp11_match_header *omh = ofpbuf_data(b);
256     uint8_t *p;
257     uint16_t match_len;
258
259     if (ofpbuf_size(b) < sizeof *omh) {
260         return OFPERR_OFPBMC_BAD_LEN;
261     }
262
263     match_len = ntohs(omh->length);
264     if (match_len < sizeof *omh) {
265         return OFPERR_OFPBMC_BAD_LEN;
266     }
267
268     if (omh->type != htons(OFPMT_OXM)) {
269         return OFPERR_OFPBMC_BAD_TYPE;
270     }
271
272     p = ofpbuf_try_pull(b, ROUND_UP(match_len, 8));
273     if (!p) {
274         VLOG_DBG_RL(&rl, "oxm length %u, rounded up to a "
275                     "multiple of 8, is longer than space in message (max "
276                     "length %"PRIu32")", match_len, ofpbuf_size(b));
277         return OFPERR_OFPBMC_BAD_LEN;
278     }
279
280     return nx_pull_raw(p + sizeof *omh, match_len - sizeof *omh,
281                        strict, match, NULL, NULL);
282 }
283
284 /* Parses the oxm formatted match description preceded by a struct
285  * ofp11_match_header in 'b'.  Stores the result in 'match'.
286  *
287  * Fails with an error when encountering unknown OXM headers.
288  *
289  * Returns 0 if successful, otherwise an OpenFlow error code. */
290 enum ofperr
291 oxm_pull_match(struct ofpbuf *b, struct match *match)
292 {
293     return oxm_pull_match__(b, true, match);
294 }
295
296 /* Behaves the same as oxm_pull_match() with one exception.  Skips over unknown
297  * OXM headers instead of failing with an error when they are encountered. */
298 enum ofperr
299 oxm_pull_match_loose(struct ofpbuf *b, struct match *match)
300 {
301     return oxm_pull_match__(b, false, match);
302 }
303 \f
304 /* nx_put_match() and helpers.
305  *
306  * 'put' functions whose names end in 'w' add a wildcarded field.
307  * 'put' functions whose names end in 'm' add a field that might be wildcarded.
308  * Other 'put' functions add exact-match fields.
309  */
310
311 static void
312 nxm_put_header(struct ofpbuf *b, uint32_t header)
313 {
314     ovs_be32 n_header = htonl(header);
315     ofpbuf_put(b, &n_header, sizeof n_header);
316 }
317
318 static void
319 nxm_put_8(struct ofpbuf *b, uint32_t header, uint8_t value)
320 {
321     nxm_put_header(b, header);
322     ofpbuf_put(b, &value, sizeof value);
323 }
324
325 static void
326 nxm_put_8m(struct ofpbuf *b, uint32_t header, uint8_t value, uint8_t mask)
327 {
328     switch (mask) {
329     case 0:
330         break;
331
332     case UINT8_MAX:
333         nxm_put_8(b, header, value);
334         break;
335
336     default:
337         nxm_put_header(b, NXM_MAKE_WILD_HEADER(header));
338         ofpbuf_put(b, &value, sizeof value);
339         ofpbuf_put(b, &mask, sizeof mask);
340     }
341 }
342
343 static void
344 nxm_put_16(struct ofpbuf *b, uint32_t header, ovs_be16 value)
345 {
346     nxm_put_header(b, header);
347     ofpbuf_put(b, &value, sizeof value);
348 }
349
350 static void
351 nxm_put_16w(struct ofpbuf *b, uint32_t header, ovs_be16 value, ovs_be16 mask)
352 {
353     nxm_put_header(b, header);
354     ofpbuf_put(b, &value, sizeof value);
355     ofpbuf_put(b, &mask, sizeof mask);
356 }
357
358 static void
359 nxm_put_16m(struct ofpbuf *b, uint32_t header, ovs_be16 value, ovs_be16 mask)
360 {
361     switch (mask) {
362     case 0:
363         break;
364
365     case OVS_BE16_MAX:
366         nxm_put_16(b, header, value);
367         break;
368
369     default:
370         nxm_put_16w(b, NXM_MAKE_WILD_HEADER(header), value, mask);
371         break;
372     }
373 }
374
375 static void
376 nxm_put_32(struct ofpbuf *b, uint32_t header, ovs_be32 value)
377 {
378     nxm_put_header(b, header);
379     ofpbuf_put(b, &value, sizeof value);
380 }
381
382 static void
383 nxm_put_32w(struct ofpbuf *b, uint32_t header, ovs_be32 value, ovs_be32 mask)
384 {
385     nxm_put_header(b, header);
386     ofpbuf_put(b, &value, sizeof value);
387     ofpbuf_put(b, &mask, sizeof mask);
388 }
389
390 static void
391 nxm_put_32m(struct ofpbuf *b, uint32_t header, ovs_be32 value, ovs_be32 mask)
392 {
393     switch (mask) {
394     case 0:
395         break;
396
397     case OVS_BE32_MAX:
398         nxm_put_32(b, header, value);
399         break;
400
401     default:
402         nxm_put_32w(b, NXM_MAKE_WILD_HEADER(header), value, mask);
403         break;
404     }
405 }
406
407 static void
408 nxm_put_64(struct ofpbuf *b, uint32_t header, ovs_be64 value)
409 {
410     nxm_put_header(b, header);
411     ofpbuf_put(b, &value, sizeof value);
412 }
413
414 static void
415 nxm_put_64w(struct ofpbuf *b, uint32_t header, ovs_be64 value, ovs_be64 mask)
416 {
417     nxm_put_header(b, header);
418     ofpbuf_put(b, &value, sizeof value);
419     ofpbuf_put(b, &mask, sizeof mask);
420 }
421
422 static void
423 nxm_put_64m(struct ofpbuf *b, uint32_t header, ovs_be64 value, ovs_be64 mask)
424 {
425     switch (mask) {
426     case 0:
427         break;
428
429     case OVS_BE64_MAX:
430         nxm_put_64(b, header, value);
431         break;
432
433     default:
434         nxm_put_64w(b, NXM_MAKE_WILD_HEADER(header), value, mask);
435         break;
436     }
437 }
438
439 static void
440 nxm_put_eth(struct ofpbuf *b, uint32_t header,
441             const uint8_t value[ETH_ADDR_LEN])
442 {
443     nxm_put_header(b, header);
444     ofpbuf_put(b, value, ETH_ADDR_LEN);
445 }
446
447 static void
448 nxm_put_eth_masked(struct ofpbuf *b, uint32_t header,
449                    const uint8_t value[ETH_ADDR_LEN],
450                    const uint8_t mask[ETH_ADDR_LEN])
451 {
452     if (!eth_addr_is_zero(mask)) {
453         if (eth_mask_is_exact(mask)) {
454             nxm_put_eth(b, header, value);
455         } else {
456             nxm_put_header(b, NXM_MAKE_WILD_HEADER(header));
457             ofpbuf_put(b, value, ETH_ADDR_LEN);
458             ofpbuf_put(b, mask, ETH_ADDR_LEN);
459         }
460     }
461 }
462
463 static void
464 nxm_put_ipv6(struct ofpbuf *b, uint32_t header,
465              const struct in6_addr *value, const struct in6_addr *mask)
466 {
467     if (ipv6_mask_is_any(mask)) {
468         return;
469     } else if (ipv6_mask_is_exact(mask)) {
470         nxm_put_header(b, header);
471         ofpbuf_put(b, value, sizeof *value);
472     } else {
473         nxm_put_header(b, NXM_MAKE_WILD_HEADER(header));
474         ofpbuf_put(b, value, sizeof *value);
475         ofpbuf_put(b, mask, sizeof *mask);
476     }
477 }
478
479 static void
480 nxm_put_frag(struct ofpbuf *b, const struct match *match)
481 {
482     uint8_t nw_frag = match->flow.nw_frag;
483     uint8_t nw_frag_mask = match->wc.masks.nw_frag;
484
485     switch (nw_frag_mask) {
486     case 0:
487         break;
488
489     case FLOW_NW_FRAG_MASK:
490         nxm_put_8(b, NXM_NX_IP_FRAG, nw_frag);
491         break;
492
493     default:
494         nxm_put_8m(b, NXM_NX_IP_FRAG, nw_frag,
495                    nw_frag_mask & FLOW_NW_FRAG_MASK);
496         break;
497     }
498 }
499
500 /* Appends to 'b' a set of OXM or NXM matches for the IPv4 or IPv6 fields in
501  * 'match'.  */
502 static void
503 nxm_put_ip(struct ofpbuf *b, const struct match *match, enum ofp_version oxm)
504 {
505     const struct flow *flow = &match->flow;
506
507     if (flow->dl_type == htons(ETH_TYPE_IP)) {
508         nxm_put_32m(b, mf_oxm_header(MFF_IPV4_SRC, oxm),
509                     flow->nw_src, match->wc.masks.nw_src);
510         nxm_put_32m(b, mf_oxm_header(MFF_IPV4_DST, oxm),
511                     flow->nw_dst, match->wc.masks.nw_dst);
512     } else {
513         nxm_put_ipv6(b, mf_oxm_header(MFF_IPV6_SRC, oxm),
514                      &flow->ipv6_src, &match->wc.masks.ipv6_src);
515         nxm_put_ipv6(b, mf_oxm_header(MFF_IPV6_DST, oxm),
516                      &flow->ipv6_dst, &match->wc.masks.ipv6_dst);
517     }
518
519     nxm_put_frag(b, match);
520
521     if (match->wc.masks.nw_tos & IP_DSCP_MASK) {
522         if (oxm) {
523             nxm_put_8(b, mf_oxm_header(MFF_IP_DSCP_SHIFTED, oxm),
524                       flow->nw_tos >> 2);
525         } else {
526             nxm_put_8(b, mf_oxm_header(MFF_IP_DSCP, oxm),
527                       flow->nw_tos & IP_DSCP_MASK);
528         }
529     }
530
531     if (match->wc.masks.nw_tos & IP_ECN_MASK) {
532         nxm_put_8(b, mf_oxm_header(MFF_IP_ECN, oxm),
533                   flow->nw_tos & IP_ECN_MASK);
534     }
535
536     if (!oxm && match->wc.masks.nw_ttl) {
537         nxm_put_8(b, mf_oxm_header(MFF_IP_TTL, oxm), flow->nw_ttl);
538     }
539
540     nxm_put_32m(b, mf_oxm_header(MFF_IPV6_LABEL, oxm),
541                 flow->ipv6_label, match->wc.masks.ipv6_label);
542
543     if (match->wc.masks.nw_proto) {
544         nxm_put_8(b, mf_oxm_header(MFF_IP_PROTO, oxm), flow->nw_proto);
545
546         if (flow->nw_proto == IPPROTO_TCP) {
547             nxm_put_16m(b, mf_oxm_header(MFF_TCP_SRC, oxm),
548                         flow->tp_src, match->wc.masks.tp_src);
549             nxm_put_16m(b, mf_oxm_header(MFF_TCP_DST, oxm),
550                         flow->tp_dst, match->wc.masks.tp_dst);
551             nxm_put_16m(b, mf_oxm_header(MFF_TCP_FLAGS, oxm),
552                         flow->tcp_flags, match->wc.masks.tcp_flags);
553         } else if (flow->nw_proto == IPPROTO_UDP) {
554             nxm_put_16m(b, mf_oxm_header(MFF_UDP_SRC, oxm),
555                         flow->tp_src, match->wc.masks.tp_src);
556             nxm_put_16m(b, mf_oxm_header(MFF_UDP_DST, oxm),
557                         flow->tp_dst, match->wc.masks.tp_dst);
558         } else if (flow->nw_proto == IPPROTO_SCTP) {
559             nxm_put_16m(b, mf_oxm_header(MFF_SCTP_SRC, oxm), flow->tp_src,
560                         match->wc.masks.tp_src);
561             nxm_put_16m(b, mf_oxm_header(MFF_SCTP_DST, oxm), flow->tp_dst,
562                         match->wc.masks.tp_dst);
563         } else if (is_icmpv4(flow)) {
564             if (match->wc.masks.tp_src) {
565                 nxm_put_8(b, mf_oxm_header(MFF_ICMPV4_TYPE, oxm),
566                           ntohs(flow->tp_src));
567             }
568             if (match->wc.masks.tp_dst) {
569                 nxm_put_8(b, mf_oxm_header(MFF_ICMPV4_CODE, oxm),
570                           ntohs(flow->tp_dst));
571             }
572         } else if (is_icmpv6(flow)) {
573             if (match->wc.masks.tp_src) {
574                 nxm_put_8(b, mf_oxm_header(MFF_ICMPV6_TYPE, oxm),
575                           ntohs(flow->tp_src));
576             }
577             if (match->wc.masks.tp_dst) {
578                 nxm_put_8(b, mf_oxm_header(MFF_ICMPV6_CODE, oxm),
579                           ntohs(flow->tp_dst));
580             }
581             if (flow->tp_src == htons(ND_NEIGHBOR_SOLICIT) ||
582                 flow->tp_src == htons(ND_NEIGHBOR_ADVERT)) {
583                 nxm_put_ipv6(b, mf_oxm_header(MFF_ND_TARGET, oxm),
584                              &flow->nd_target, &match->wc.masks.nd_target);
585                 if (flow->tp_src == htons(ND_NEIGHBOR_SOLICIT)) {
586                     nxm_put_eth_masked(b, mf_oxm_header(MFF_ND_SLL, oxm),
587                                        flow->arp_sha, match->wc.masks.arp_sha);
588                 }
589                 if (flow->tp_src == htons(ND_NEIGHBOR_ADVERT)) {
590                     nxm_put_eth_masked(b, mf_oxm_header(MFF_ND_TLL, oxm),
591                                        flow->arp_tha, match->wc.masks.arp_tha);
592                 }
593             }
594         }
595     }
596 }
597
598 /* Appends to 'b' the nx_match format that expresses 'match'.  For Flow Mod and
599  * Flow Stats Requests messages, a 'cookie' and 'cookie_mask' may be supplied.
600  * Otherwise, 'cookie_mask' should be zero.
601  *
602  * Specify 'oxm' as 0 to express the match in NXM format; otherwise, specify
603  * 'oxm' as the OpenFlow version number for the OXM format to use.
604  *
605  * This function can cause 'b''s data to be reallocated.
606  *
607  * Returns the number of bytes appended to 'b', excluding padding.
608  *
609  * If 'match' is a catch-all rule that matches every packet, then this function
610  * appends nothing to 'b' and returns 0. */
611 static int
612 nx_put_raw(struct ofpbuf *b, enum ofp_version oxm, const struct match *match,
613            ovs_be64 cookie, ovs_be64 cookie_mask)
614 {
615     const struct flow *flow = &match->flow;
616     const size_t start_len = ofpbuf_size(b);
617     int match_len;
618     int i;
619
620     BUILD_ASSERT_DECL(FLOW_WC_SEQ == 27);
621
622     /* Metadata. */
623     if (match->wc.masks.dp_hash) {
624         if (!oxm) {
625             nxm_put_32m(b, NXM_NX_DP_HASH, htonl(flow->dp_hash),
626                         htonl(match->wc.masks.dp_hash));
627         }
628     }
629
630     if (match->wc.masks.recirc_id) {
631         if (!oxm) {
632             nxm_put_32(b, NXM_NX_RECIRC_ID, htonl(flow->recirc_id));
633         }
634     }
635
636     if (match->wc.masks.in_port.ofp_port) {
637         ofp_port_t in_port = flow->in_port.ofp_port;
638         if (oxm) {
639             nxm_put_32(b, mf_oxm_header(MFF_IN_PORT_OXM, oxm),
640                        ofputil_port_to_ofp11(in_port));
641         } else {
642             nxm_put_16(b, mf_oxm_header(MFF_IN_PORT, oxm),
643                        htons(ofp_to_u16(in_port)));
644         }
645     }
646
647     /* Ethernet. */
648     nxm_put_eth_masked(b, mf_oxm_header(MFF_ETH_SRC, oxm),
649                        flow->dl_src, match->wc.masks.dl_src);
650     nxm_put_eth_masked(b, mf_oxm_header(MFF_ETH_DST, oxm),
651                        flow->dl_dst, match->wc.masks.dl_dst);
652     nxm_put_16m(b, mf_oxm_header(MFF_ETH_TYPE, oxm),
653                 ofputil_dl_type_to_openflow(flow->dl_type),
654                 match->wc.masks.dl_type);
655
656     /* 802.1Q. */
657     if (oxm) {
658         ovs_be16 VID_CFI_MASK = htons(VLAN_VID_MASK | VLAN_CFI);
659         ovs_be16 vid = flow->vlan_tci & VID_CFI_MASK;
660         ovs_be16 mask = match->wc.masks.vlan_tci & VID_CFI_MASK;
661
662         if (mask == htons(VLAN_VID_MASK | VLAN_CFI)) {
663             nxm_put_16(b, mf_oxm_header(MFF_VLAN_VID, oxm), vid);
664         } else if (mask) {
665             nxm_put_16m(b, mf_oxm_header(MFF_VLAN_VID, oxm), vid, mask);
666         }
667
668         if (vid && vlan_tci_to_pcp(match->wc.masks.vlan_tci)) {
669             nxm_put_8(b, mf_oxm_header(MFF_VLAN_PCP, oxm),
670                       vlan_tci_to_pcp(flow->vlan_tci));
671         }
672
673     } else {
674         nxm_put_16m(b, mf_oxm_header(MFF_VLAN_TCI, oxm), flow->vlan_tci,
675                     match->wc.masks.vlan_tci);
676     }
677
678     /* MPLS. */
679     if (eth_type_mpls(flow->dl_type)) {
680         if (match->wc.masks.mpls_lse[0] & htonl(MPLS_TC_MASK)) {
681             nxm_put_8(b, mf_oxm_header(MFF_MPLS_TC, oxm),
682                       mpls_lse_to_tc(flow->mpls_lse[0]));
683         }
684
685         if (match->wc.masks.mpls_lse[0] & htonl(MPLS_BOS_MASK)) {
686             nxm_put_8(b, mf_oxm_header(MFF_MPLS_BOS, oxm),
687                       mpls_lse_to_bos(flow->mpls_lse[0]));
688         }
689
690         if (match->wc.masks.mpls_lse[0] & htonl(MPLS_LABEL_MASK)) {
691             nxm_put_32(b, mf_oxm_header(MFF_MPLS_LABEL, oxm),
692                        htonl(mpls_lse_to_label(flow->mpls_lse[0])));
693         }
694     }
695
696     /* L3. */
697     if (is_ip_any(flow)) {
698         nxm_put_ip(b, match, oxm);
699     } else if (flow->dl_type == htons(ETH_TYPE_ARP) ||
700                flow->dl_type == htons(ETH_TYPE_RARP)) {
701         /* ARP. */
702         if (match->wc.masks.nw_proto) {
703             nxm_put_16(b, mf_oxm_header(MFF_ARP_OP, oxm),
704                        htons(flow->nw_proto));
705         }
706         nxm_put_32m(b, mf_oxm_header(MFF_ARP_SPA, oxm),
707                     flow->nw_src, match->wc.masks.nw_src);
708         nxm_put_32m(b, mf_oxm_header(MFF_ARP_TPA, oxm),
709                     flow->nw_dst, match->wc.masks.nw_dst);
710         nxm_put_eth_masked(b, mf_oxm_header(MFF_ARP_SHA, oxm),
711                            flow->arp_sha, match->wc.masks.arp_sha);
712         nxm_put_eth_masked(b, mf_oxm_header(MFF_ARP_THA, oxm),
713                            flow->arp_tha, match->wc.masks.arp_tha);
714     }
715
716     /* Tunnel ID. */
717     nxm_put_64m(b, mf_oxm_header(MFF_TUN_ID, oxm),
718                 flow->tunnel.tun_id, match->wc.masks.tunnel.tun_id);
719
720     /* Other tunnel metadata. */
721     nxm_put_32m(b, mf_oxm_header(MFF_TUN_SRC, oxm),
722                 flow->tunnel.ip_src, match->wc.masks.tunnel.ip_src);
723     nxm_put_32m(b, mf_oxm_header(MFF_TUN_DST, oxm),
724                 flow->tunnel.ip_dst, match->wc.masks.tunnel.ip_dst);
725
726     /* Registers. */
727     if (oxm < OFP15_VERSION) {
728         for (i = 0; i < FLOW_N_REGS; i++) {
729             nxm_put_32m(b, mf_oxm_header(MFF_REG0 + i, oxm),
730                         htonl(flow->regs[i]), htonl(match->wc.masks.regs[i]));
731         }
732     } else {
733         for (i = 0; i < FLOW_N_XREGS; i++) {
734             nxm_put_64m(b, mf_oxm_header(MFF_XREG0 + i, oxm),
735                         htonll(flow_get_xreg(flow, i)),
736                         htonll(flow_get_xreg(&match->wc.masks, i)));
737         }
738     }
739
740     /* Mark. */
741     nxm_put_32m(b, mf_oxm_header(MFF_PKT_MARK, oxm), htonl(flow->pkt_mark),
742                 htonl(match->wc.masks.pkt_mark));
743
744     /* OpenFlow 1.1+ Metadata. */
745     nxm_put_64m(b, mf_oxm_header(MFF_METADATA, oxm),
746                 flow->metadata, match->wc.masks.metadata);
747
748     /* Cookie. */
749     nxm_put_64m(b, NXM_NX_COOKIE, cookie, cookie_mask);
750
751     match_len = ofpbuf_size(b) - start_len;
752     return match_len;
753 }
754
755 /* Appends to 'b' the nx_match format that expresses 'match', plus enough zero
756  * bytes to pad the nx_match out to a multiple of 8.  For Flow Mod and Flow
757  * Stats Requests messages, a 'cookie' and 'cookie_mask' may be supplied.
758  * Otherwise, 'cookie_mask' should be zero.
759  *
760  * This function can cause 'b''s data to be reallocated.
761  *
762  * Returns the number of bytes appended to 'b', excluding padding.  The return
763  * value can be zero if it appended nothing at all to 'b' (which happens if
764  * 'cr' is a catch-all rule that matches every packet). */
765 int
766 nx_put_match(struct ofpbuf *b, const struct match *match,
767              ovs_be64 cookie, ovs_be64 cookie_mask)
768 {
769     int match_len = nx_put_raw(b, 0, match, cookie, cookie_mask);
770
771     ofpbuf_put_zeros(b, PAD_SIZE(match_len, 8));
772     return match_len;
773 }
774
775 /* Appends to 'b' an struct ofp11_match_header followed by the OXM format that
776  * expresses 'cr', plus enough zero bytes to pad the data appended out to a
777  * multiple of 8.
778  *
779  * OXM differs slightly among versions of OpenFlow.  Specify the OpenFlow
780  * version in use as 'version'.
781  *
782  * This function can cause 'b''s data to be reallocated.
783  *
784  * Returns the number of bytes appended to 'b', excluding the padding.  Never
785  * returns zero. */
786 int
787 oxm_put_match(struct ofpbuf *b, const struct match *match,
788               enum ofp_version version)
789 {
790     int match_len;
791     struct ofp11_match_header *omh;
792     size_t start_len = ofpbuf_size(b);
793     ovs_be64 cookie = htonll(0), cookie_mask = htonll(0);
794
795     ofpbuf_put_uninit(b, sizeof *omh);
796     match_len = (nx_put_raw(b, version, match, cookie, cookie_mask)
797                  + sizeof *omh);
798     ofpbuf_put_zeros(b, PAD_SIZE(match_len, 8));
799
800     omh = ofpbuf_at(b, start_len, sizeof *omh);
801     omh->type = htons(OFPMT_OXM);
802     omh->length = htons(match_len);
803
804     return match_len;
805 }
806 \f
807 /* nx_match_to_string() and helpers. */
808
809 static void format_nxm_field_name(struct ds *, uint32_t header);
810
811 char *
812 nx_match_to_string(const uint8_t *p, unsigned int match_len)
813 {
814     uint32_t header;
815     struct ds s;
816
817     if (!match_len) {
818         return xstrdup("<any>");
819     }
820
821     ds_init(&s);
822     while ((header = nx_entry_ok(p, match_len)) != 0) {
823         unsigned int length = NXM_LENGTH(header);
824         unsigned int value_len = nxm_field_bytes(header);
825         const uint8_t *value = p + 4;
826         const uint8_t *mask = value + value_len;
827         unsigned int i;
828
829         if (s.length) {
830             ds_put_cstr(&s, ", ");
831         }
832
833         format_nxm_field_name(&s, header);
834         ds_put_char(&s, '(');
835
836         for (i = 0; i < value_len; i++) {
837             ds_put_format(&s, "%02x", value[i]);
838         }
839         if (NXM_HASMASK(header)) {
840             ds_put_char(&s, '/');
841             for (i = 0; i < value_len; i++) {
842                 ds_put_format(&s, "%02x", mask[i]);
843             }
844         }
845         ds_put_char(&s, ')');
846
847         p += 4 + length;
848         match_len -= 4 + length;
849     }
850
851     if (match_len) {
852         if (s.length) {
853             ds_put_cstr(&s, ", ");
854         }
855
856         ds_put_format(&s, "<%u invalid bytes>", match_len);
857     }
858
859     return ds_steal_cstr(&s);
860 }
861
862 char *
863 oxm_match_to_string(const struct ofpbuf *p, unsigned int match_len)
864 {
865     const struct ofp11_match_header *omh = ofpbuf_data(p);
866     uint16_t match_len_;
867     struct ds s;
868
869     ds_init(&s);
870
871     if (match_len < sizeof *omh) {
872         ds_put_format(&s, "<match too short: %u>", match_len);
873         goto err;
874     }
875
876     if (omh->type != htons(OFPMT_OXM)) {
877         ds_put_format(&s, "<bad match type field: %u>", ntohs(omh->type));
878         goto err;
879     }
880
881     match_len_ = ntohs(omh->length);
882     if (match_len_ < sizeof *omh) {
883         ds_put_format(&s, "<match length field too short: %u>", match_len_);
884         goto err;
885     }
886
887     if (match_len_ != match_len) {
888         ds_put_format(&s, "<match length field incorrect: %u != %u>",
889                       match_len_, match_len);
890         goto err;
891     }
892
893     return nx_match_to_string(ofpbuf_at(p, sizeof *omh, 0),
894                               match_len - sizeof *omh);
895
896 err:
897     return ds_steal_cstr(&s);
898 }
899
900 static void
901 format_nxm_field_name(struct ds *s, uint32_t header)
902 {
903     const struct mf_field *mf = mf_from_nxm_header(header);
904     if (mf) {
905         ds_put_cstr(s, IS_OXM_HEADER(header) ? mf->oxm_name : mf->nxm_name);
906         if (NXM_HASMASK(header)) {
907             ds_put_cstr(s, "_W");
908         }
909     } else if (header == NXM_NX_COOKIE) {
910         ds_put_cstr(s, "NXM_NX_COOKIE");
911     } else if (header == NXM_NX_COOKIE_W) {
912         ds_put_cstr(s, "NXM_NX_COOKIE_W");
913     } else {
914         ds_put_format(s, "%d:%d", NXM_VENDOR(header), NXM_FIELD(header));
915     }
916 }
917
918 static uint32_t
919 parse_nxm_field_name(const char *name, int name_len)
920 {
921     bool wild;
922     int i;
923
924     /* Check whether it's a field name. */
925     wild = name_len > 2 && !memcmp(&name[name_len - 2], "_W", 2);
926     if (wild) {
927         name_len -= 2;
928     }
929
930     for (i = 0; i < MFF_N_IDS; i++) {
931         const struct mf_field *mf = mf_from_id(i);
932         uint32_t header;
933
934         if (mf->nxm_name &&
935             !strncmp(mf->nxm_name, name, name_len) &&
936             mf->nxm_name[name_len] == '\0') {
937             header = mf->nxm_header;
938         } else if (mf->oxm_name &&
939                    !strncmp(mf->oxm_name, name, name_len) &&
940                    mf->oxm_name[name_len] == '\0') {
941             header = mf->oxm_header;
942         } else {
943             continue;
944         }
945
946         if (!wild) {
947             return header;
948         } else if (mf->maskable != MFM_NONE) {
949             return NXM_MAKE_WILD_HEADER(header);
950         }
951     }
952
953     if (!strncmp("NXM_NX_COOKIE", name, name_len) &&
954         (name_len == strlen("NXM_NX_COOKIE"))) {
955         if (!wild) {
956             return NXM_NX_COOKIE;
957         } else {
958             return NXM_NX_COOKIE_W;
959         }
960     }
961
962     /* Check whether it's a 32-bit field header value as hex.
963      * (This isn't ordinarily useful except for testing error behavior.) */
964     if (name_len == 8) {
965         uint32_t header = hexits_value(name, name_len, NULL);
966         if (header != UINT_MAX) {
967             return header;
968         }
969     }
970
971     return 0;
972 }
973 \f
974 /* nx_match_from_string(). */
975
976 static int
977 nx_match_from_string_raw(const char *s, struct ofpbuf *b)
978 {
979     const char *full_s = s;
980     const size_t start_len = ofpbuf_size(b);
981
982     if (!strcmp(s, "<any>")) {
983         /* Ensure that 'ofpbuf_data(b)' isn't actually null. */
984         ofpbuf_prealloc_tailroom(b, 1);
985         return 0;
986     }
987
988     for (s += strspn(s, ", "); *s; s += strspn(s, ", ")) {
989         const char *name;
990         uint32_t header;
991         int name_len;
992         size_t n;
993
994         name = s;
995         name_len = strcspn(s, "(");
996         if (s[name_len] != '(') {
997             ovs_fatal(0, "%s: missing ( at end of nx_match", full_s);
998         }
999
1000         header = parse_nxm_field_name(name, name_len);
1001         if (!header) {
1002             ovs_fatal(0, "%s: unknown field `%.*s'", full_s, name_len, s);
1003         }
1004
1005         s += name_len + 1;
1006
1007         nxm_put_header(b, header);
1008         s = ofpbuf_put_hex(b, s, &n);
1009         if (n != nxm_field_bytes(header)) {
1010             ovs_fatal(0, "%.2s: hex digits expected", s);
1011         }
1012         if (NXM_HASMASK(header)) {
1013             s += strspn(s, " ");
1014             if (*s != '/') {
1015                 ovs_fatal(0, "%s: missing / in masked field %.*s",
1016                           full_s, name_len, name);
1017             }
1018             s = ofpbuf_put_hex(b, s + 1, &n);
1019             if (n != nxm_field_bytes(header)) {
1020                 ovs_fatal(0, "%.2s: hex digits expected", s);
1021             }
1022         }
1023
1024         s += strspn(s, " ");
1025         if (*s != ')') {
1026             ovs_fatal(0, "%s: missing ) following field %.*s",
1027                       full_s, name_len, name);
1028         }
1029         s++;
1030     }
1031
1032     return ofpbuf_size(b) - start_len;
1033 }
1034
1035 int
1036 nx_match_from_string(const char *s, struct ofpbuf *b)
1037 {
1038     int match_len = nx_match_from_string_raw(s, b);
1039     ofpbuf_put_zeros(b, PAD_SIZE(match_len, 8));
1040     return match_len;
1041 }
1042
1043 int
1044 oxm_match_from_string(const char *s, struct ofpbuf *b)
1045 {
1046     int match_len;
1047     struct ofp11_match_header *omh;
1048     size_t start_len = ofpbuf_size(b);
1049
1050     ofpbuf_put_uninit(b, sizeof *omh);
1051     match_len = nx_match_from_string_raw(s, b) + sizeof *omh;
1052     ofpbuf_put_zeros(b, PAD_SIZE(match_len, 8));
1053
1054     omh = ofpbuf_at(b, start_len, sizeof *omh);
1055     omh->type = htons(OFPMT_OXM);
1056     omh->length = htons(match_len);
1057
1058     return match_len;
1059 }
1060 \f
1061 /* Parses 's' as a "move" action, in the form described in ovs-ofctl(8), into
1062  * '*move'.
1063  *
1064  * Returns NULL if successful, otherwise a malloc()'d string describing the
1065  * error.  The caller is responsible for freeing the returned string. */
1066 char * WARN_UNUSED_RESULT
1067 nxm_parse_reg_move(struct ofpact_reg_move *move, const char *s)
1068 {
1069     const char *full_s = s;
1070     char *error;
1071
1072     error = mf_parse_subfield__(&move->src, &s);
1073     if (error) {
1074         return error;
1075     }
1076     if (strncmp(s, "->", 2)) {
1077         return xasprintf("%s: missing `->' following source", full_s);
1078     }
1079     s += 2;
1080     error = mf_parse_subfield(&move->dst, s);
1081     if (error) {
1082         return error;
1083     }
1084
1085     if (move->src.n_bits != move->dst.n_bits) {
1086         return xasprintf("%s: source field is %d bits wide but destination is "
1087                          "%d bits wide", full_s,
1088                          move->src.n_bits, move->dst.n_bits);
1089     }
1090     return NULL;
1091 }
1092
1093 /* Parses 's' as a "load" action, in the form described in ovs-ofctl(8), into
1094  * '*load'.
1095  *
1096  * Returns NULL if successful, otherwise a malloc()'d string describing the
1097  * error.  The caller is responsible for freeing the returned string. */
1098 char * WARN_UNUSED_RESULT
1099 nxm_parse_reg_load(struct ofpact_reg_load *load, const char *s)
1100 {
1101     const char *full_s = s;
1102     uint64_t value = strtoull(s, (char **) &s, 0);
1103     char *error;
1104
1105     if (strncmp(s, "->", 2)) {
1106         return xasprintf("%s: missing `->' following value", full_s);
1107     }
1108     s += 2;
1109     error = mf_parse_subfield(&load->dst, s);
1110     if (error) {
1111         return error;
1112     }
1113
1114     if (load->dst.n_bits < 64 && (value >> load->dst.n_bits) != 0) {
1115         return xasprintf("%s: value %"PRIu64" does not fit into %d bits",
1116                          full_s, value, load->dst.n_bits);
1117     }
1118
1119     load->subvalue.be64[0] = htonll(0);
1120     load->subvalue.be64[1] = htonll(value);
1121     return NULL;
1122 }
1123 \f
1124 /* nxm_format_reg_move(), nxm_format_reg_load(). */
1125
1126 void
1127 nxm_format_reg_move(const struct ofpact_reg_move *move, struct ds *s)
1128 {
1129     ds_put_format(s, "move:");
1130     mf_format_subfield(&move->src, s);
1131     ds_put_cstr(s, "->");
1132     mf_format_subfield(&move->dst, s);
1133 }
1134
1135 void
1136 nxm_format_reg_load(const struct ofpact_reg_load *load, struct ds *s)
1137 {
1138     ds_put_cstr(s, "load:");
1139     mf_format_subvalue(&load->subvalue, s);
1140     ds_put_cstr(s, "->");
1141     mf_format_subfield(&load->dst, s);
1142 }
1143 \f
1144 enum ofperr
1145 nxm_reg_move_check(const struct ofpact_reg_move *move, const struct flow *flow)
1146 {
1147     enum ofperr error;
1148
1149     error = mf_check_src(&move->src, flow);
1150     if (error) {
1151         return error;
1152     }
1153
1154     return mf_check_dst(&move->dst, NULL);
1155 }
1156
1157 enum ofperr
1158 nxm_reg_load_check(const struct ofpact_reg_load *load, const struct flow *flow)
1159 {
1160     return mf_check_dst(&load->dst, flow);
1161 }
1162 \f
1163 \f
1164 /* nxm_execute_reg_move(), nxm_execute_reg_load(). */
1165
1166 void
1167 nxm_execute_reg_move(const struct ofpact_reg_move *move,
1168                      struct flow *flow, struct flow_wildcards *wc)
1169 {
1170     union mf_value src_value;
1171     union mf_value dst_value;
1172
1173     mf_mask_field_and_prereqs(move->dst.field, &wc->masks);
1174     mf_mask_field_and_prereqs(move->src.field, &wc->masks);
1175
1176     mf_get_value(move->dst.field, flow, &dst_value);
1177     mf_get_value(move->src.field, flow, &src_value);
1178     bitwise_copy(&src_value, move->src.field->n_bytes, move->src.ofs,
1179                  &dst_value, move->dst.field->n_bytes, move->dst.ofs,
1180                  move->src.n_bits);
1181     mf_set_flow_value(move->dst.field, &dst_value, flow);
1182 }
1183
1184 void
1185 nxm_execute_reg_load(const struct ofpact_reg_load *load, struct flow *flow,
1186                      struct flow_wildcards *wc)
1187 {
1188     /* Since at the datapath interface we do not have set actions for
1189      * individual fields, but larger sets of fields for a given protocol
1190      * layer, the set action will in practice only ever apply to exactly
1191      * matched flows for the given protocol layer.  For example, if the
1192      * reg_load changes the IP TTL, the corresponding datapath action will
1193      * rewrite also the IP addresses and TOS byte.  Since these other field
1194      * values may not be explicitly set, they depend on the incoming flow field
1195      * values, and are hence all of them are set in the wildcards masks, when
1196      * the action is committed to the datapath.  For the rare case, where the
1197      * reg_load action does not actually change the value, and no other flow
1198      * field values are set (or loaded), the datapath action is skipped, and
1199      * no mask bits are set.  Such a datapath flow should, however, be
1200      * dependent on the specific field value, so the corresponding wildcard
1201      * mask bits must be set, lest the datapath flow be applied to packets
1202      * containing some other value in the field and the field value remain
1203      * unchanged regardless of the incoming value.
1204      *
1205      * We set the masks here for the whole fields, and their prerequisities.
1206      * Even if only the lower byte of a TCP destination port is set,
1207      * we set the mask for the whole field, and also the ip_proto in the IP
1208      * header, so that the kernel flow would not be applied on, e.g., a UDP
1209      * packet, or any other IP protocol in addition to TCP packets.
1210      */
1211     mf_mask_field_and_prereqs(load->dst.field, &wc->masks);
1212     mf_write_subfield_flow(&load->dst, &load->subvalue, flow);
1213 }
1214
1215 void
1216 nxm_reg_load(const struct mf_subfield *dst, uint64_t src_data,
1217              struct flow *flow, struct flow_wildcards *wc)
1218 {
1219     union mf_subvalue src_subvalue;
1220     union mf_subvalue mask_value;
1221     ovs_be64 src_data_be = htonll(src_data);
1222
1223     memset(&mask_value, 0xff, sizeof mask_value);
1224     mf_write_subfield_flow(dst, &mask_value, &wc->masks);
1225
1226     bitwise_copy(&src_data_be, sizeof src_data_be, 0,
1227                  &src_subvalue, sizeof src_subvalue, 0,
1228                  sizeof src_data_be * 8);
1229     mf_write_subfield_flow(dst, &src_subvalue, flow);
1230 }
1231 \f
1232 /* nxm_parse_stack_action, works for both push() and pop(). */
1233
1234 /* Parses 's' as a "push" or "pop" action, in the form described in
1235  * ovs-ofctl(8), into '*stack_action'.
1236  *
1237  * Returns NULL if successful, otherwise a malloc()'d string describing the
1238  * error.  The caller is responsible for freeing the returned string. */
1239 char * WARN_UNUSED_RESULT
1240 nxm_parse_stack_action(struct ofpact_stack *stack_action, const char *s)
1241 {
1242     char *error;
1243
1244     error = mf_parse_subfield__(&stack_action->subfield, &s);
1245     if (error) {
1246         return error;
1247     }
1248
1249     if (*s != '\0') {
1250         return xasprintf("%s: trailing garbage following push or pop", s);
1251     }
1252
1253     return NULL;
1254 }
1255
1256 void
1257 nxm_format_stack_push(const struct ofpact_stack *push, struct ds *s)
1258 {
1259     ds_put_cstr(s, "push:");
1260     mf_format_subfield(&push->subfield, s);
1261 }
1262
1263 void
1264 nxm_format_stack_pop(const struct ofpact_stack *pop, struct ds *s)
1265 {
1266     ds_put_cstr(s, "pop:");
1267     mf_format_subfield(&pop->subfield, s);
1268 }
1269
1270 enum ofperr
1271 nxm_stack_push_check(const struct ofpact_stack *push,
1272                      const struct flow *flow)
1273 {
1274     return mf_check_src(&push->subfield, flow);
1275 }
1276
1277 enum ofperr
1278 nxm_stack_pop_check(const struct ofpact_stack *pop,
1279                     const struct flow *flow)
1280 {
1281     return mf_check_dst(&pop->subfield, flow);
1282 }
1283
1284 /* nxm_execute_stack_push(), nxm_execute_stack_pop(). */
1285 static void
1286 nx_stack_push(struct ofpbuf *stack, union mf_subvalue *v)
1287 {
1288     ofpbuf_put(stack, v, sizeof *v);
1289 }
1290
1291 static union mf_subvalue *
1292 nx_stack_pop(struct ofpbuf *stack)
1293 {
1294     union mf_subvalue *v = NULL;
1295
1296     if (ofpbuf_size(stack)) {
1297
1298         ofpbuf_set_size(stack, ofpbuf_size(stack) - sizeof *v);
1299         v = (union mf_subvalue *) ofpbuf_tail(stack);
1300     }
1301
1302     return v;
1303 }
1304
1305 void
1306 nxm_execute_stack_push(const struct ofpact_stack *push,
1307                        const struct flow *flow, struct flow_wildcards *wc,
1308                        struct ofpbuf *stack)
1309 {
1310     union mf_subvalue mask_value;
1311     union mf_subvalue dst_value;
1312
1313     memset(&mask_value, 0xff, sizeof mask_value);
1314     mf_write_subfield_flow(&push->subfield, &mask_value, &wc->masks);
1315
1316     mf_read_subfield(&push->subfield, flow, &dst_value);
1317     nx_stack_push(stack, &dst_value);
1318 }
1319
1320 void
1321 nxm_execute_stack_pop(const struct ofpact_stack *pop,
1322                       struct flow *flow, struct flow_wildcards *wc,
1323                       struct ofpbuf *stack)
1324 {
1325     union mf_subvalue *src_value;
1326
1327     src_value = nx_stack_pop(stack);
1328
1329     /* Only pop if stack is not empty. Otherwise, give warning. */
1330     if (src_value) {
1331         union mf_subvalue mask_value;
1332
1333         memset(&mask_value, 0xff, sizeof mask_value);
1334         mf_write_subfield_flow(&pop->subfield, &mask_value, &wc->masks);
1335         mf_write_subfield_flow(&pop->subfield, src_value, flow);
1336     } else {
1337         if (!VLOG_DROP_WARN(&rl)) {
1338             char *flow_str = flow_to_string(flow);
1339             VLOG_WARN_RL(&rl, "Failed to pop from an empty stack. On flow \n"
1340                            " %s", flow_str);
1341             free(flow_str);
1342         }
1343     }
1344 }