e694fd94d03f5c980c84274050ea374506c5a7f0
[cascardo/ovs.git] / lib / ofp-actions.c
1 /*
2  * Copyright (c) 2008, 2009, 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 #include "ofp-actions.h"
19 #include "bundle.h"
20 #include "byte-order.h"
21 #include "compiler.h"
22 #include "dynamic-string.h"
23 #include "hmap.h"
24 #include "learn.h"
25 #include "meta-flow.h"
26 #include "multipath.h"
27 #include "nx-match.h"
28 #include "ofp-parse.h"
29 #include "ofp-util.h"
30 #include "ofpbuf.h"
31 #include "unaligned.h"
32 #include "util.h"
33 #include "openvswitch/vlog.h"
34
35 VLOG_DEFINE_THIS_MODULE(ofp_actions);
36
37 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
38
39 struct ofp_action_header;
40
41 /* Raw identifiers for OpenFlow actions.
42  *
43  * Decoding and encoding OpenFlow actions across multiple versions is difficult
44  * to do in a clean, consistent way.  This enumeration lays out all of the
45  * forms of actions that Open vSwitch supports.
46  *
47  * The comments here must follow a stylized form because the
48  * "extract-ofp-actions" program parses them at build time to generate data
49  * tables.
50  *
51  *   - The first part of each comment specifies the vendor, OpenFlow versions,
52  *     and type for each protocol that supports the action:
53  *
54  *         # The vendor is OF for standard OpenFlow actions, NX for Nicira
55  *           extension actions.  (Support for other vendors can be added, but
56  *           it can't be done just based on a vendor ID definition alone
57  *           because OpenFlow doesn't define a standard way to specify a
58  *           subtype for vendor actions, so other vendors might do it different
59  *           from Nicira.)
60  *
61  *         # The version can specify a specific OpenFlow version, a version
62  *           range delimited by "-", or an open-ended range with "+".
63  *
64  *         # The type, in parentheses, is the action type number (for standard
65  *           OpenFlow actions) or subtype (for vendor extension actions).
66  *
67  *         # Optionally one may add "is deprecated" followed by a
68  *           human-readable reason in parentheses (which will be used in log
69  *           messages), if a particular action should no longer be used.
70  *
71  *     Multiple such specifications may be separated by commas.
72  *
73  *   - The second part describes the action's wire format.  It may be:
74  *
75  *         # "struct <name>": The struct fully specifies the wire format.  The
76  *           action is exactly the size of the struct.  (Thus, the struct must
77  *           be an exact multiple of 8 bytes in size.)
78  *
79  *         # "struct <name>, ...": The struct specifies the beginning of the
80  *           wire format.  An instance of the action is either the struct's
81  *           exact size, or a multiple of 8 bytes longer.
82  *
83  *         # "uint<N>_t" or "ovs_be<N>": The action consists of a (standard or
84  *           vendor extension) header, followed by 0 or more pad bytes to align
85  *           to a multiple of <N> bits, followed by an argument of the given
86  *           type, followed by 0 or more pad bytes to bring the total action up
87  *           to a multiple of 8 bytes.
88  *
89  *         # "void": The action is just a (standard or vendor extension)
90  *           header.
91  *
92  *   - Optional additional text enclosed in square brackets is commentary for
93  *     the human reader.
94  */
95 enum ofp_raw_action_type {
96 /* ## ----------------- ## */
97 /* ## Standard actions. ## */
98 /* ## ----------------- ## */
99
100     /* OF1.0(0): struct ofp10_action_output. */
101     OFPAT_RAW10_OUTPUT,
102     /* OF1.1+(0): struct ofp11_action_output. */
103     OFPAT_RAW11_OUTPUT,
104
105     /* OF1.0(1): uint16_t. */
106     OFPAT_RAW10_SET_VLAN_VID,
107     /* OF1.0(2): uint8_t. */
108     OFPAT_RAW10_SET_VLAN_PCP,
109
110     /* OF1.1(1), OF1.2+(1) is deprecated (use Set-Field): uint16_t.
111      *
112      * [Semantics differ slightly between the 1.0 and 1.1 versions of the VLAN
113      * modification actions: the 1.0 versions push a VLAN header if none is
114      * present, but the 1.1 versions do not.  That is the only reason that we
115      * distinguish their raw action types.] */
116     OFPAT_RAW11_SET_VLAN_VID,
117     /* OF1.1(2), OF1.2+(2) is deprecated (use Set-Field): uint8_t. */
118     OFPAT_RAW11_SET_VLAN_PCP,
119
120     /* OF1.1+(17): ovs_be16.
121      *
122      * [The argument is the Ethertype, e.g. ETH_TYPE_VLAN_8021Q, not the VID or
123      * TCI.] */
124     OFPAT_RAW11_PUSH_VLAN,
125
126     /* OF1.0(3): void. */
127     OFPAT_RAW10_STRIP_VLAN,
128     /* OF1.1+(18): void. */
129     OFPAT_RAW11_POP_VLAN,
130
131     /* OF1.0(4), OF1.1(3), OF1.2+(3) is deprecated (use Set-Field): struct
132      * ofp_action_dl_addr. */
133     OFPAT_RAW_SET_DL_SRC,
134
135     /* OF1.0(5), OF1.1(4), OF1.2+(4) is deprecated (use Set-Field): struct
136      * ofp_action_dl_addr. */
137     OFPAT_RAW_SET_DL_DST,
138
139     /* OF1.0(6), OF1.1(5), OF1.2+(5) is deprecated (use Set-Field):
140      * ovs_be32. */
141     OFPAT_RAW_SET_NW_SRC,
142
143     /* OF1.0(7), OF1.1(6), OF1.2+(6) is deprecated (use Set-Field):
144      * ovs_be32. */
145     OFPAT_RAW_SET_NW_DST,
146
147     /* OF1.0(8), OF1.1(7), OF1.2+(7) is deprecated (use Set-Field): uint8_t. */
148     OFPAT_RAW_SET_NW_TOS,
149
150     /* OF1.1(8), OF1.2+(8) is deprecated (use Set-Field): uint8_t. */
151     OFPAT_RAW11_SET_NW_ECN,
152
153     /* OF1.0(9), OF1.1(9), OF1.2+(9) is deprecated (use Set-Field):
154      * ovs_be16. */
155     OFPAT_RAW_SET_TP_SRC,
156
157     /* OF1.0(10), OF1.1(10), OF1.2+(10) is deprecated (use Set-Field):
158      * ovs_be16. */
159     OFPAT_RAW_SET_TP_DST,
160
161     /* OF1.0(11): struct ofp10_action_enqueue. */
162     OFPAT_RAW10_ENQUEUE,
163
164     /* NX1.0(30), OF1.1(13), OF1.2+(13) is deprecated (use Set-Field):
165      * ovs_be32. */
166     OFPAT_RAW_SET_MPLS_LABEL,
167
168     /* NX1.0(31), OF1.1(14), OF1.2+(14) is deprecated (use Set-Field):
169      * uint8_t. */
170     OFPAT_RAW_SET_MPLS_TC,
171
172     /* NX1.0(25), OF1.1(15), OF1.2+(15) is deprecated (use Set-Field):
173      * uint8_t. */
174     OFPAT_RAW_SET_MPLS_TTL,
175
176     /* NX1.0(26), OF1.1+(16): void. */
177     OFPAT_RAW_DEC_MPLS_TTL,
178
179     /* NX1.0(23), OF1.1+(19): ovs_be16.
180      *
181      * [The argument is the Ethertype, e.g. ETH_TYPE_MPLS, not the label.] */
182     OFPAT_RAW_PUSH_MPLS,
183
184     /* NX1.0(24), OF1.1+(20): ovs_be16.
185      *
186      * [The argument is the Ethertype, e.g. ETH_TYPE_IPV4 if at BoS or
187      * ETH_TYPE_MPLS otherwise, not the label.] */
188     OFPAT_RAW_POP_MPLS,
189
190     /* NX1.0(4), OF1.1+(21): uint32_t. */
191     OFPAT_RAW_SET_QUEUE,
192
193     /* OF1.1+(22): uint32_t. */
194     OFPAT_RAW11_GROUP,
195
196     /* OF1.1+(23): uint8_t. */
197     OFPAT_RAW11_SET_NW_TTL,
198
199     /* NX1.0(18), OF1.1+(24): void. */
200     OFPAT_RAW_DEC_NW_TTL,
201     /* NX1.0+(21): struct nx_action_cnt_ids, ... */
202     NXAST_RAW_DEC_TTL_CNT_IDS,
203
204     /* OF1.2-1.4(25): struct ofp12_action_set_field, ... */
205     OFPAT_RAW12_SET_FIELD,
206     /* OF1.5+(25): struct ofp12_action_set_field, ... */
207     OFPAT_RAW15_SET_FIELD,
208     /* NX1.0-1.4(7): struct nx_action_reg_load.
209      *
210      * [In OpenFlow 1.5, set_field is a superset of reg_load functionality, so
211      * we drop reg_load.] */
212     NXAST_RAW_REG_LOAD,
213     /* NX1.0-1.4(33): struct nx_action_reg_load2, ...
214      *
215      * [In OpenFlow 1.5, set_field is a superset of reg_load2 functionality, so
216      * we drop reg_load2.] */
217     NXAST_RAW_REG_LOAD2,
218
219     /* OF1.5+(28): struct ofp15_action_copy_field, ... */
220     OFPAT_RAW15_COPY_FIELD,
221     /* ONF1.3-1.4(3200): struct onf_action_copy_field, ... */
222     ONFACT_RAW13_COPY_FIELD,
223     /* NX1.0-1.4(6): struct nx_action_reg_move, ... */
224     NXAST_RAW_REG_MOVE,
225
226 /* ## ------------------------- ## */
227 /* ## Nicira extension actions. ## */
228 /* ## ------------------------- ## */
229
230 /* Actions similar to standard actions are listed with the standard actions. */
231
232     /* NX1.0+(1): uint16_t. */
233     NXAST_RAW_RESUBMIT,
234     /* NX1.0+(14): struct nx_action_resubmit. */
235     NXAST_RAW_RESUBMIT_TABLE,
236
237     /* NX1.0+(2): uint32_t. */
238     NXAST_RAW_SET_TUNNEL,
239     /* NX1.0+(9): uint64_t. */
240     NXAST_RAW_SET_TUNNEL64,
241
242     /* NX1.0+(5): void. */
243     NXAST_RAW_POP_QUEUE,
244
245     /* NX1.0+(8): struct nx_action_note, ... */
246     NXAST_RAW_NOTE,
247
248     /* NX1.0+(10): struct nx_action_multipath. */
249     NXAST_RAW_MULTIPATH,
250
251     /* NX1.0+(12): struct nx_action_bundle, ... */
252     NXAST_RAW_BUNDLE,
253     /* NX1.0+(13): struct nx_action_bundle, ... */
254     NXAST_RAW_BUNDLE_LOAD,
255
256     /* NX1.0+(15): struct nx_action_output_reg. */
257     NXAST_RAW_OUTPUT_REG,
258     /* NX1.0+(32): struct nx_action_output_reg2. */
259     NXAST_RAW_OUTPUT_REG2,
260
261     /* NX1.0+(16): struct nx_action_learn, ... */
262     NXAST_RAW_LEARN,
263
264     /* NX1.0+(17): void. */
265     NXAST_RAW_EXIT,
266
267     /* NX1.0+(19): struct nx_action_fin_timeout. */
268     NXAST_RAW_FIN_TIMEOUT,
269
270     /* NX1.0+(20): struct nx_action_controller. */
271     NXAST_RAW_CONTROLLER,
272
273     /* NX1.0+(22): struct nx_action_write_metadata. */
274     NXAST_RAW_WRITE_METADATA,
275
276     /* NX1.0+(27): struct nx_action_stack. */
277     NXAST_RAW_STACK_PUSH,
278
279     /* NX1.0+(28): struct nx_action_stack. */
280     NXAST_RAW_STACK_POP,
281
282     /* NX1.0+(29): struct nx_action_sample. */
283     NXAST_RAW_SAMPLE,
284
285     /* NX1.0+(34): struct nx_action_conjunction. */
286     NXAST_RAW_CONJUNCTION,
287 };
288
289 /* OpenFlow actions are always a multiple of 8 bytes in length. */
290 #define OFP_ACTION_ALIGN 8
291
292 /* Define a few functions for working with instructions. */
293 #define DEFINE_INST(ENUM, STRUCT, EXTENSIBLE, NAME)             \
294     static inline const struct STRUCT * OVS_UNUSED              \
295     instruction_get_##ENUM(const struct ofp11_instruction *inst)\
296     {                                                           \
297         ovs_assert(inst->type == htons(ENUM));                  \
298         return ALIGNED_CAST(struct STRUCT *, inst);             \
299     }                                                           \
300                                                                 \
301     static inline void OVS_UNUSED                               \
302     instruction_init_##ENUM(struct STRUCT *s)                   \
303     {                                                           \
304         memset(s, 0, sizeof *s);                                \
305         s->type = htons(ENUM);                                  \
306         s->len = htons(sizeof *s);                              \
307     }                                                           \
308                                                                 \
309     static inline struct STRUCT * OVS_UNUSED                    \
310     instruction_put_##ENUM(struct ofpbuf *buf)                  \
311     {                                                           \
312         struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
313         instruction_init_##ENUM(s);                             \
314         return s;                                               \
315     }
316 OVS_INSTRUCTIONS
317 #undef DEFINE_INST
318
319 static void ofpacts_update_instruction_actions(struct ofpbuf *openflow,
320                                                size_t ofs);
321 static void pad_ofpat(struct ofpbuf *openflow, size_t start_ofs);
322
323 static enum ofperr ofpacts_verify(const struct ofpact[], size_t ofpacts_len,
324                                   uint32_t allowed_ovsinsts);
325
326 static void ofpact_put_set_field(struct ofpbuf *openflow, enum ofp_version,
327                                  enum mf_field_id, uint64_t value);
328
329 static enum ofperr ofpact_pull_raw(struct ofpbuf *, enum ofp_version,
330                                    enum ofp_raw_action_type *, uint64_t *arg);
331 static void *ofpact_put_raw(struct ofpbuf *, enum ofp_version,
332                             enum ofp_raw_action_type, uint64_t arg);
333
334 static char *OVS_WARN_UNUSED_RESULT ofpacts_parse(
335     char *str, struct ofpbuf *ofpacts, enum ofputil_protocol *usable_protocols,
336     bool allow_instructions);
337
338 #include "ofp-actions.inc1"
339 \f
340 /* Output actions. */
341
342 /* Action structure for OFPAT10_OUTPUT, which sends packets out 'port'.
343  * When the 'port' is the OFPP_CONTROLLER, 'max_len' indicates the max
344  * number of bytes to send.  A 'max_len' of zero means no bytes of the
345  * packet should be sent. */
346 struct ofp10_action_output {
347     ovs_be16 type;                  /* OFPAT10_OUTPUT. */
348     ovs_be16 len;                   /* Length is 8. */
349     ovs_be16 port;                  /* Output port. */
350     ovs_be16 max_len;               /* Max length to send to controller. */
351 };
352 OFP_ASSERT(sizeof(struct ofp10_action_output) == 8);
353
354 /* Action structure for OFPAT_OUTPUT, which sends packets out 'port'.
355    * When the 'port' is the OFPP_CONTROLLER, 'max_len' indicates the max
356    * number of bytes to send. A 'max_len' of zero means no bytes of the
357    * packet should be sent.*/
358 struct ofp11_action_output {
359     ovs_be16 type;                    /* OFPAT11_OUTPUT. */
360     ovs_be16 len;                     /* Length is 16. */
361     ovs_be32 port;                    /* Output port. */
362     ovs_be16 max_len;                 /* Max length to send to controller. */
363     uint8_t pad[6];                   /* Pad to 64 bits. */
364 };
365 OFP_ASSERT(sizeof(struct ofp11_action_output) == 16);
366
367 static enum ofperr
368 decode_OFPAT_RAW10_OUTPUT(const struct ofp10_action_output *oao,
369                           struct ofpbuf *out)
370 {
371     struct ofpact_output *output;
372
373     output = ofpact_put_OUTPUT(out);
374     output->port = u16_to_ofp(ntohs(oao->port));
375     output->max_len = ntohs(oao->max_len);
376
377     return ofpact_check_output_port(output->port, OFPP_MAX);
378 }
379
380 static enum ofperr
381 decode_OFPAT_RAW11_OUTPUT(const struct ofp11_action_output *oao,
382                        struct ofpbuf *out)
383 {
384     struct ofpact_output *output;
385     enum ofperr error;
386
387     output = ofpact_put_OUTPUT(out);
388     output->max_len = ntohs(oao->max_len);
389
390     error = ofputil_port_from_ofp11(oao->port, &output->port);
391     if (error) {
392         return error;
393     }
394
395     return ofpact_check_output_port(output->port, OFPP_MAX);
396 }
397
398 static void
399 encode_OUTPUT(const struct ofpact_output *output,
400               enum ofp_version ofp_version, struct ofpbuf *out)
401 {
402     if (ofp_version == OFP10_VERSION) {
403         struct ofp10_action_output *oao;
404
405         oao = put_OFPAT10_OUTPUT(out);
406         oao->port = htons(ofp_to_u16(output->port));
407         oao->max_len = htons(output->max_len);
408     } else {
409         struct ofp11_action_output *oao;
410
411         oao = put_OFPAT11_OUTPUT(out);
412         oao->port = ofputil_port_to_ofp11(output->port);
413         oao->max_len = htons(output->max_len);
414     }
415 }
416
417 static char * OVS_WARN_UNUSED_RESULT
418 parse_OUTPUT(const char *arg, struct ofpbuf *ofpacts,
419              enum ofputil_protocol *usable_protocols OVS_UNUSED)
420 {
421     if (strchr(arg, '[')) {
422         struct ofpact_output_reg *output_reg;
423
424         output_reg = ofpact_put_OUTPUT_REG(ofpacts);
425         output_reg->max_len = UINT16_MAX;
426         return mf_parse_subfield(&output_reg->src, arg);
427     } else {
428         struct ofpact_output *output;
429
430         output = ofpact_put_OUTPUT(ofpacts);
431         if (!ofputil_port_from_string(arg, &output->port)) {
432             return xasprintf("%s: output to unknown port", arg);
433         }
434         output->max_len = output->port == OFPP_CONTROLLER ? UINT16_MAX : 0;
435         return NULL;
436     }
437 }
438
439 static void
440 format_OUTPUT(const struct ofpact_output *a, struct ds *s)
441 {
442     if (ofp_to_u16(a->port) < ofp_to_u16(OFPP_MAX)) {
443         ds_put_format(s, "output:%"PRIu16, a->port);
444     } else {
445         ofputil_format_port(a->port, s);
446         if (a->port == OFPP_CONTROLLER) {
447             ds_put_format(s, ":%"PRIu16, a->max_len);
448         }
449     }
450 }
451 \f
452 /* Group actions. */
453
454 static enum ofperr
455 decode_OFPAT_RAW11_GROUP(uint32_t group_id, struct ofpbuf *out)
456 {
457     ofpact_put_GROUP(out)->group_id = group_id;
458     return 0;
459 }
460
461 static void
462 encode_GROUP(const struct ofpact_group *group,
463              enum ofp_version ofp_version, struct ofpbuf *out)
464 {
465     if (ofp_version == OFP10_VERSION) {
466         /* XXX */
467     } else {
468         put_OFPAT11_GROUP(out, group->group_id);
469     }
470 }
471
472 static char * OVS_WARN_UNUSED_RESULT
473 parse_GROUP(char *arg, struct ofpbuf *ofpacts,
474                     enum ofputil_protocol *usable_protocols OVS_UNUSED)
475 {
476     return str_to_u32(arg, &ofpact_put_GROUP(ofpacts)->group_id);
477 }
478
479 static void
480 format_GROUP(const struct ofpact_group *a, struct ds *s)
481 {
482     ds_put_format(s, "group:%"PRIu32, a->group_id);
483 }
484 \f
485 /* Action structure for NXAST_CONTROLLER.
486  *
487  * This generalizes using OFPAT_OUTPUT to send a packet to OFPP_CONTROLLER.  In
488  * addition to the 'max_len' that OFPAT_OUTPUT supports, it also allows
489  * specifying:
490  *
491  *    - 'reason': The reason code to use in the ofp_packet_in or nx_packet_in.
492  *
493  *    - 'controller_id': The ID of the controller connection to which the
494  *      ofp_packet_in should be sent.  The ofp_packet_in or nx_packet_in is
495  *      sent only to controllers that have the specified controller connection
496  *      ID.  See "struct nx_controller_id" for more information. */
497 struct nx_action_controller {
498     ovs_be16 type;                  /* OFPAT_VENDOR. */
499     ovs_be16 len;                   /* Length is 16. */
500     ovs_be32 vendor;                /* NX_VENDOR_ID. */
501     ovs_be16 subtype;               /* NXAST_CONTROLLER. */
502     ovs_be16 max_len;               /* Maximum length to send to controller. */
503     ovs_be16 controller_id;         /* Controller ID to send packet-in. */
504     uint8_t reason;                 /* enum ofp_packet_in_reason (OFPR_*). */
505     uint8_t zero;                   /* Must be zero. */
506 };
507 OFP_ASSERT(sizeof(struct nx_action_controller) == 16);
508
509 static enum ofperr
510 decode_NXAST_RAW_CONTROLLER(const struct nx_action_controller *nac,
511                             struct ofpbuf *out)
512 {
513     struct ofpact_controller *oc;
514
515     oc = ofpact_put_CONTROLLER(out);
516     oc->max_len = ntohs(nac->max_len);
517     oc->controller_id = ntohs(nac->controller_id);
518     oc->reason = nac->reason;
519     return 0;
520 }
521
522 static void
523 encode_CONTROLLER(const struct ofpact_controller *controller,
524                   enum ofp_version ofp_version OVS_UNUSED,
525                   struct ofpbuf *out)
526 {
527     struct nx_action_controller *nac;
528
529     nac = put_NXAST_CONTROLLER(out);
530     nac->max_len = htons(controller->max_len);
531     nac->controller_id = htons(controller->controller_id);
532     nac->reason = controller->reason;
533 }
534
535 static char * OVS_WARN_UNUSED_RESULT
536 parse_CONTROLLER(char *arg, struct ofpbuf *ofpacts,
537                   enum ofputil_protocol *usable_protocols OVS_UNUSED)
538 {
539     enum ofp_packet_in_reason reason = OFPR_ACTION;
540     uint16_t controller_id = 0;
541     uint16_t max_len = UINT16_MAX;
542
543     if (!arg[0]) {
544         /* Use defaults. */
545     } else if (strspn(arg, "0123456789") == strlen(arg)) {
546         char *error = str_to_u16(arg, "max_len", &max_len);
547         if (error) {
548             return error;
549         }
550     } else {
551         char *name, *value;
552
553         while (ofputil_parse_key_value(&arg, &name, &value)) {
554             if (!strcmp(name, "reason")) {
555                 if (!ofputil_packet_in_reason_from_string(value, &reason)) {
556                     return xasprintf("unknown reason \"%s\"", value);
557                 }
558             } else if (!strcmp(name, "max_len")) {
559                 char *error = str_to_u16(value, "max_len", &max_len);
560                 if (error) {
561                     return error;
562                 }
563             } else if (!strcmp(name, "id")) {
564                 char *error = str_to_u16(value, "id", &controller_id);
565                 if (error) {
566                     return error;
567                 }
568             } else {
569                 return xasprintf("unknown key \"%s\" parsing controller "
570                                  "action", name);
571             }
572         }
573     }
574
575     if (reason == OFPR_ACTION && controller_id == 0) {
576         struct ofpact_output *output;
577
578         output = ofpact_put_OUTPUT(ofpacts);
579         output->port = OFPP_CONTROLLER;
580         output->max_len = max_len;
581     } else {
582         struct ofpact_controller *controller;
583
584         controller = ofpact_put_CONTROLLER(ofpacts);
585         controller->max_len = max_len;
586         controller->reason = reason;
587         controller->controller_id = controller_id;
588     }
589
590     return NULL;
591 }
592
593 static void
594 format_CONTROLLER(const struct ofpact_controller *a, struct ds *s)
595 {
596     if (a->reason == OFPR_ACTION && a->controller_id == 0) {
597         ds_put_format(s, "CONTROLLER:%"PRIu16, a->max_len);
598     } else {
599         enum ofp_packet_in_reason reason = a->reason;
600
601         ds_put_cstr(s, "controller(");
602         if (reason != OFPR_ACTION) {
603             char reasonbuf[OFPUTIL_PACKET_IN_REASON_BUFSIZE];
604
605             ds_put_format(s, "reason=%s,",
606                           ofputil_packet_in_reason_to_string(
607                               reason, reasonbuf, sizeof reasonbuf));
608         }
609         if (a->max_len != UINT16_MAX) {
610             ds_put_format(s, "max_len=%"PRIu16",", a->max_len);
611         }
612         if (a->controller_id != 0) {
613             ds_put_format(s, "id=%"PRIu16",", a->controller_id);
614         }
615         ds_chomp(s, ',');
616         ds_put_char(s, ')');
617     }
618 }
619 \f
620 /* Enqueue action. */
621 struct ofp10_action_enqueue {
622     ovs_be16 type;            /* OFPAT10_ENQUEUE. */
623     ovs_be16 len;             /* Len is 16. */
624     ovs_be16 port;            /* Port that queue belongs. Should
625                                  refer to a valid physical port
626                                  (i.e. < OFPP_MAX) or OFPP_IN_PORT. */
627     uint8_t pad[6];           /* Pad for 64-bit alignment. */
628     ovs_be32 queue_id;        /* Where to enqueue the packets. */
629 };
630 OFP_ASSERT(sizeof(struct ofp10_action_enqueue) == 16);
631
632 static enum ofperr
633 decode_OFPAT_RAW10_ENQUEUE(const struct ofp10_action_enqueue *oae,
634                            struct ofpbuf *out)
635 {
636     struct ofpact_enqueue *enqueue;
637
638     enqueue = ofpact_put_ENQUEUE(out);
639     enqueue->port = u16_to_ofp(ntohs(oae->port));
640     enqueue->queue = ntohl(oae->queue_id);
641     if (ofp_to_u16(enqueue->port) >= ofp_to_u16(OFPP_MAX)
642         && enqueue->port != OFPP_IN_PORT
643         && enqueue->port != OFPP_LOCAL) {
644         return OFPERR_OFPBAC_BAD_OUT_PORT;
645     }
646     return 0;
647 }
648
649 static void
650 encode_ENQUEUE(const struct ofpact_enqueue *enqueue,
651                enum ofp_version ofp_version, struct ofpbuf *out)
652 {
653     if (ofp_version == OFP10_VERSION) {
654         struct ofp10_action_enqueue *oae;
655
656         oae = put_OFPAT10_ENQUEUE(out);
657         oae->port = htons(ofp_to_u16(enqueue->port));
658         oae->queue_id = htonl(enqueue->queue);
659     } else {
660         /* XXX */
661     }
662 }
663
664 static char * OVS_WARN_UNUSED_RESULT
665 parse_ENQUEUE(char *arg, struct ofpbuf *ofpacts,
666               enum ofputil_protocol *usable_protocols OVS_UNUSED)
667 {
668     char *sp = NULL;
669     char *port = strtok_r(arg, ":q,", &sp);
670     char *queue = strtok_r(NULL, "", &sp);
671     struct ofpact_enqueue *enqueue;
672
673     if (port == NULL || queue == NULL) {
674         return xstrdup("\"enqueue\" syntax is \"enqueue:PORT:QUEUE\" or "
675                        "\"enqueue(PORT,QUEUE)\"");
676     }
677
678     enqueue = ofpact_put_ENQUEUE(ofpacts);
679     if (!ofputil_port_from_string(port, &enqueue->port)) {
680         return xasprintf("%s: enqueue to unknown port", port);
681     }
682     return str_to_u32(queue, &enqueue->queue);
683 }
684
685 static void
686 format_ENQUEUE(const struct ofpact_enqueue *a, struct ds *s)
687 {
688     ds_put_format(s, "enqueue:");
689     ofputil_format_port(a->port, s);
690     ds_put_format(s, ":%"PRIu32, a->queue);
691 }
692 \f
693 /* Action structure for NXAST_OUTPUT_REG.
694  *
695  * Outputs to the OpenFlow port number written to src[ofs:ofs+nbits].
696  *
697  * The format and semantics of 'src' and 'ofs_nbits' are similar to those for
698  * the NXAST_REG_LOAD action.
699  *
700  * The acceptable nxm_header values for 'src' are the same as the acceptable
701  * nxm_header values for the 'src' field of NXAST_REG_MOVE.
702  *
703  * The 'max_len' field indicates the number of bytes to send when the chosen
704  * port is OFPP_CONTROLLER.  Its semantics are equivalent to the 'max_len'
705  * field of OFPAT_OUTPUT.
706  *
707  * The 'zero' field is required to be zeroed for forward compatibility. */
708 struct nx_action_output_reg {
709     ovs_be16 type;              /* OFPAT_VENDOR. */
710     ovs_be16 len;               /* 24. */
711     ovs_be32 vendor;            /* NX_VENDOR_ID. */
712     ovs_be16 subtype;           /* NXAST_OUTPUT_REG. */
713
714     ovs_be16 ofs_nbits;         /* (ofs << 6) | (n_bits - 1). */
715     ovs_be32 src;               /* Source. */
716
717     ovs_be16 max_len;           /* Max length to send to controller. */
718
719     uint8_t zero[6];            /* Reserved, must be zero. */
720 };
721 OFP_ASSERT(sizeof(struct nx_action_output_reg) == 24);
722
723 /* Action structure for NXAST_OUTPUT_REG2.
724  *
725  * Like the NXAST_OUTPUT_REG but organized so that there is room for a 64-bit
726  * experimenter OXM as 'src'.
727  */
728 struct nx_action_output_reg2 {
729     ovs_be16 type;              /* OFPAT_VENDOR. */
730     ovs_be16 len;               /* 24. */
731     ovs_be32 vendor;            /* NX_VENDOR_ID. */
732     ovs_be16 subtype;           /* NXAST_OUTPUT_REG2. */
733
734     ovs_be16 ofs_nbits;         /* (ofs << 6) | (n_bits - 1). */
735     ovs_be16 max_len;           /* Max length to send to controller. */
736
737     /* Followed by:
738      * - 'src', as an OXM/NXM header (either 4 or 8 bytes).
739      * - Enough 0-bytes to pad the action out to 24 bytes. */
740     uint8_t pad[10];
741 };
742 OFP_ASSERT(sizeof(struct nx_action_output_reg2) == 24);
743
744 static enum ofperr
745 decode_NXAST_RAW_OUTPUT_REG(const struct nx_action_output_reg *naor,
746                             struct ofpbuf *out)
747 {
748     struct ofpact_output_reg *output_reg;
749
750     if (!is_all_zeros(naor->zero, sizeof naor->zero)) {
751         return OFPERR_OFPBAC_BAD_ARGUMENT;
752     }
753
754     output_reg = ofpact_put_OUTPUT_REG(out);
755     output_reg->ofpact.raw = NXAST_RAW_OUTPUT_REG;
756     output_reg->src.field = mf_from_nxm_header(ntohl(naor->src));
757     output_reg->src.ofs = nxm_decode_ofs(naor->ofs_nbits);
758     output_reg->src.n_bits = nxm_decode_n_bits(naor->ofs_nbits);
759     output_reg->max_len = ntohs(naor->max_len);
760
761     return mf_check_src(&output_reg->src, NULL);
762 }
763
764 static enum ofperr
765 decode_NXAST_RAW_OUTPUT_REG2(const struct nx_action_output_reg2 *naor,
766                             struct ofpbuf *out)
767 {
768     struct ofpact_output_reg *output_reg;
769     enum ofperr error;
770     struct ofpbuf b;
771
772     output_reg = ofpact_put_OUTPUT_REG(out);
773     output_reg->ofpact.raw = NXAST_RAW_OUTPUT_REG2;
774     output_reg->src.ofs = nxm_decode_ofs(naor->ofs_nbits);
775     output_reg->src.n_bits = nxm_decode_n_bits(naor->ofs_nbits);
776     output_reg->max_len = ntohs(naor->max_len);
777
778     ofpbuf_use_const(&b, naor, ntohs(naor->len));
779     ofpbuf_pull(&b, OBJECT_OFFSETOF(naor, pad));
780     error = nx_pull_header(&b, &output_reg->src.field, NULL);
781     if (error) {
782         return error;
783     }
784     if (!is_all_zeros(ofpbuf_data(&b), ofpbuf_size(&b))) {
785         return OFPERR_NXBRC_MUST_BE_ZERO;
786     }
787
788     return mf_check_src(&output_reg->src, NULL);
789 }
790
791 static void
792 encode_OUTPUT_REG(const struct ofpact_output_reg *output_reg,
793                   enum ofp_version ofp_version OVS_UNUSED,
794                   struct ofpbuf *out)
795 {
796     /* If 'output_reg' came in as an NXAST_RAW_OUTPUT_REG2 action, or if it
797      * cannot be encoded in the older form, encode it as
798      * NXAST_RAW_OUTPUT_REG2. */
799     if (output_reg->ofpact.raw == NXAST_RAW_OUTPUT_REG2
800         || !mf_nxm_header(output_reg->src.field->id)) {
801         struct nx_action_output_reg2 *naor = put_NXAST_OUTPUT_REG2(out);
802         size_t size = ofpbuf_size(out);
803
804         naor->ofs_nbits = nxm_encode_ofs_nbits(output_reg->src.ofs,
805                                                output_reg->src.n_bits);
806         naor->max_len = htons(output_reg->max_len);
807
808         ofpbuf_set_size(out, size - sizeof naor->pad);
809         nx_put_header(out, output_reg->src.field->id, 0, false);
810         ofpbuf_set_size(out, size);
811     } else {
812         struct nx_action_output_reg *naor = put_NXAST_OUTPUT_REG(out);
813
814         naor->ofs_nbits = nxm_encode_ofs_nbits(output_reg->src.ofs,
815                                                output_reg->src.n_bits);
816         naor->src = htonl(mf_nxm_header(output_reg->src.field->id));
817         naor->max_len = htons(output_reg->max_len);
818     }
819 }
820
821 static char * OVS_WARN_UNUSED_RESULT
822 parse_OUTPUT_REG(const char *arg, struct ofpbuf *ofpacts,
823                  enum ofputil_protocol *usable_protocols OVS_UNUSED)
824 {
825     return parse_OUTPUT(arg, ofpacts, usable_protocols);
826 }
827
828 static void
829 format_OUTPUT_REG(const struct ofpact_output_reg *a, struct ds *s)
830 {
831     ds_put_cstr(s, "output:");
832     mf_format_subfield(&a->src, s);
833 }
834 \f
835 /* Action structure for NXAST_BUNDLE and NXAST_BUNDLE_LOAD.
836  *
837  * The bundle actions choose a slave from a supplied list of options.
838  * NXAST_BUNDLE outputs to its selection.  NXAST_BUNDLE_LOAD writes its
839  * selection to a register.
840  *
841  * The list of possible slaves follows the nx_action_bundle structure. The size
842  * of each slave is governed by its type as indicated by the 'slave_type'
843  * parameter. The list of slaves should be padded at its end with zeros to make
844  * the total length of the action a multiple of 8.
845  *
846  * Switches infer from the 'slave_type' parameter the size of each slave.  All
847  * implementations must support the NXM_OF_IN_PORT 'slave_type' which indicates
848  * that the slaves are OpenFlow port numbers with NXM_LENGTH(NXM_OF_IN_PORT) ==
849  * 2 byte width.  Switches should reject actions which indicate unknown or
850  * unsupported slave types.
851  *
852  * Switches use a strategy dictated by the 'algorithm' parameter to choose a
853  * slave.  If the switch does not support the specified 'algorithm' parameter,
854  * it should reject the action.
855  *
856  * Several algorithms take into account liveness when selecting slaves.  The
857  * liveness of a slave is implementation defined (with one exception), but will
858  * generally take into account things like its carrier status and the results
859  * of any link monitoring protocols which happen to be running on it.  In order
860  * to give controllers a place-holder value, the OFPP_NONE port is always
861  * considered live.
862  *
863  * Some slave selection strategies require the use of a hash function, in which
864  * case the 'fields' and 'basis' parameters should be populated.  The 'fields'
865  * parameter (one of NX_HASH_FIELDS_*) designates which parts of the flow to
866  * hash.  Refer to the definition of "enum nx_hash_fields" for details.  The
867  * 'basis' parameter is used as a universal hash parameter.  Different values
868  * of 'basis' yield different hash results.
869  *
870  * The 'zero' parameter at the end of the action structure is reserved for
871  * future use.  Switches are required to reject actions which have nonzero
872  * bytes in the 'zero' field.
873  *
874  * NXAST_BUNDLE actions should have 'ofs_nbits' and 'dst' zeroed.  Switches
875  * should reject actions which have nonzero bytes in either of these fields.
876  *
877  * NXAST_BUNDLE_LOAD stores the OpenFlow port number of the selected slave in
878  * dst[ofs:ofs+n_bits].  The format and semantics of 'dst' and 'ofs_nbits' are
879  * similar to those for the NXAST_REG_LOAD action. */
880 struct nx_action_bundle {
881     ovs_be16 type;              /* OFPAT_VENDOR. */
882     ovs_be16 len;               /* Length including slaves. */
883     ovs_be32 vendor;            /* NX_VENDOR_ID. */
884     ovs_be16 subtype;           /* NXAST_BUNDLE or NXAST_BUNDLE_LOAD. */
885
886     /* Slave choice algorithm to apply to hash value. */
887     ovs_be16 algorithm;         /* One of NX_BD_ALG_*. */
888
889     /* What fields to hash and how. */
890     ovs_be16 fields;            /* One of NX_HASH_FIELDS_*. */
891     ovs_be16 basis;             /* Universal hash parameter. */
892
893     ovs_be32 slave_type;        /* NXM_OF_IN_PORT. */
894     ovs_be16 n_slaves;          /* Number of slaves. */
895
896     ovs_be16 ofs_nbits;         /* (ofs << 6) | (n_bits - 1). */
897     ovs_be32 dst;               /* Destination. */
898
899     uint8_t zero[4];            /* Reserved. Must be zero. */
900 };
901 OFP_ASSERT(sizeof(struct nx_action_bundle) == 32);
902
903 static enum ofperr
904 decode_bundle(bool load, const struct nx_action_bundle *nab,
905               struct ofpbuf *ofpacts)
906 {
907     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
908     struct ofpact_bundle *bundle;
909     uint32_t slave_type;
910     size_t slaves_size, i;
911     enum ofperr error;
912
913     bundle = ofpact_put_BUNDLE(ofpacts);
914
915     bundle->n_slaves = ntohs(nab->n_slaves);
916     bundle->basis = ntohs(nab->basis);
917     bundle->fields = ntohs(nab->fields);
918     bundle->algorithm = ntohs(nab->algorithm);
919     slave_type = ntohl(nab->slave_type);
920     slaves_size = ntohs(nab->len) - sizeof *nab;
921
922     error = OFPERR_OFPBAC_BAD_ARGUMENT;
923     if (!flow_hash_fields_valid(bundle->fields)) {
924         VLOG_WARN_RL(&rl, "unsupported fields %d", (int) bundle->fields);
925     } else if (bundle->n_slaves > BUNDLE_MAX_SLAVES) {
926         VLOG_WARN_RL(&rl, "too many slaves");
927     } else if (bundle->algorithm != NX_BD_ALG_HRW
928                && bundle->algorithm != NX_BD_ALG_ACTIVE_BACKUP) {
929         VLOG_WARN_RL(&rl, "unsupported algorithm %d", (int) bundle->algorithm);
930     } else if (slave_type != mf_nxm_header(MFF_IN_PORT)) {
931         VLOG_WARN_RL(&rl, "unsupported slave type %"PRIu16, slave_type);
932     } else {
933         error = 0;
934     }
935
936     if (!is_all_zeros(nab->zero, sizeof nab->zero)) {
937         VLOG_WARN_RL(&rl, "reserved field is nonzero");
938         error = OFPERR_OFPBAC_BAD_ARGUMENT;
939     }
940
941     if (load) {
942         bundle->dst.field = mf_from_nxm_header(ntohl(nab->dst));
943         bundle->dst.ofs = nxm_decode_ofs(nab->ofs_nbits);
944         bundle->dst.n_bits = nxm_decode_n_bits(nab->ofs_nbits);
945
946         if (bundle->dst.n_bits < 16) {
947             VLOG_WARN_RL(&rl, "bundle_load action requires at least 16 bit "
948                          "destination.");
949             error = OFPERR_OFPBAC_BAD_ARGUMENT;
950         }
951     } else {
952         if (nab->ofs_nbits || nab->dst) {
953             VLOG_WARN_RL(&rl, "bundle action has nonzero reserved fields");
954             error = OFPERR_OFPBAC_BAD_ARGUMENT;
955         }
956     }
957
958     if (slaves_size < bundle->n_slaves * sizeof(ovs_be16)) {
959         VLOG_WARN_RL(&rl, "Nicira action %s only has %"PRIuSIZE" bytes "
960                      "allocated for slaves.  %"PRIuSIZE" bytes are required "
961                      "for %"PRIu16" slaves.",
962                      load ? "bundle_load" : "bundle", slaves_size,
963                      bundle->n_slaves * sizeof(ovs_be16), bundle->n_slaves);
964         error = OFPERR_OFPBAC_BAD_LEN;
965     }
966
967     for (i = 0; i < bundle->n_slaves; i++) {
968         uint16_t ofp_port = ntohs(((ovs_be16 *)(nab + 1))[i]);
969         ofpbuf_put(ofpacts, &ofp_port, sizeof ofp_port);
970     }
971
972     bundle = ofpacts->frame;
973     ofpact_update_len(ofpacts, &bundle->ofpact);
974
975     if (!error) {
976         error = bundle_check(bundle, OFPP_MAX, NULL);
977     }
978     return error;
979 }
980
981 static enum ofperr
982 decode_NXAST_RAW_BUNDLE(const struct nx_action_bundle *nab, struct ofpbuf *out)
983 {
984     return decode_bundle(false, nab, out);
985 }
986
987 static enum ofperr
988 decode_NXAST_RAW_BUNDLE_LOAD(const struct nx_action_bundle *nab,
989                              struct ofpbuf *out)
990 {
991     return decode_bundle(true, nab, out);
992 }
993
994 static void
995 encode_BUNDLE(const struct ofpact_bundle *bundle,
996               enum ofp_version ofp_version OVS_UNUSED,
997               struct ofpbuf *out)
998 {
999     int slaves_len = ROUND_UP(2 * bundle->n_slaves, OFP_ACTION_ALIGN);
1000     struct nx_action_bundle *nab;
1001     ovs_be16 *slaves;
1002     size_t i;
1003
1004     nab = (bundle->dst.field
1005            ? put_NXAST_BUNDLE_LOAD(out)
1006            : put_NXAST_BUNDLE(out));
1007     nab->len = htons(ntohs(nab->len) + slaves_len);
1008     nab->algorithm = htons(bundle->algorithm);
1009     nab->fields = htons(bundle->fields);
1010     nab->basis = htons(bundle->basis);
1011     nab->slave_type = htonl(mf_nxm_header(MFF_IN_PORT));
1012     nab->n_slaves = htons(bundle->n_slaves);
1013     if (bundle->dst.field) {
1014         nab->ofs_nbits = nxm_encode_ofs_nbits(bundle->dst.ofs,
1015                                               bundle->dst.n_bits);
1016         nab->dst = htonl(mf_nxm_header(bundle->dst.field->id));
1017     }
1018
1019     slaves = ofpbuf_put_zeros(out, slaves_len);
1020     for (i = 0; i < bundle->n_slaves; i++) {
1021         slaves[i] = htons(ofp_to_u16(bundle->slaves[i]));
1022     }
1023 }
1024
1025 static char * OVS_WARN_UNUSED_RESULT
1026 parse_BUNDLE(const char *arg, struct ofpbuf *ofpacts,
1027              enum ofputil_protocol *usable_protocols OVS_UNUSED)
1028 {
1029     return bundle_parse(arg, ofpacts);
1030 }
1031
1032 static char * OVS_WARN_UNUSED_RESULT
1033 parse_bundle_load(const char *arg, struct ofpbuf *ofpacts)
1034 {
1035     return bundle_parse_load(arg, ofpacts);
1036 }
1037
1038 static void
1039 format_BUNDLE(const struct ofpact_bundle *a, struct ds *s)
1040 {
1041     bundle_format(a, s);
1042 }
1043 \f
1044 /* Set VLAN actions. */
1045
1046 static enum ofperr
1047 decode_set_vlan_vid(uint16_t vid, bool push_vlan_if_needed, struct ofpbuf *out)
1048 {
1049     if (vid & ~0xfff) {
1050         return OFPERR_OFPBAC_BAD_ARGUMENT;
1051     } else {
1052         struct ofpact_vlan_vid *vlan_vid = ofpact_put_SET_VLAN_VID(out);
1053         vlan_vid->vlan_vid = vid;
1054         vlan_vid->push_vlan_if_needed = push_vlan_if_needed;
1055         return 0;
1056     }
1057 }
1058
1059 static enum ofperr
1060 decode_OFPAT_RAW10_SET_VLAN_VID(uint16_t vid, struct ofpbuf *out)
1061 {
1062     return decode_set_vlan_vid(vid, true, out);
1063 }
1064
1065 static enum ofperr
1066 decode_OFPAT_RAW11_SET_VLAN_VID(uint16_t vid, struct ofpbuf *out)
1067 {
1068     return decode_set_vlan_vid(vid, false, out);
1069 }
1070
1071 static void
1072 encode_SET_VLAN_VID(const struct ofpact_vlan_vid *vlan_vid,
1073                     enum ofp_version ofp_version, struct ofpbuf *out)
1074 {
1075     uint16_t vid = vlan_vid->vlan_vid;
1076
1077     /* Push a VLAN tag, if none is present and this form of the action calls
1078      * for such a feature. */
1079     if (ofp_version > OFP10_VERSION
1080         && vlan_vid->push_vlan_if_needed
1081         && !vlan_vid->flow_has_vlan) {
1082         put_OFPAT11_PUSH_VLAN(out, htons(ETH_TYPE_VLAN_8021Q));
1083     }
1084
1085     if (ofp_version == OFP10_VERSION) {
1086         put_OFPAT10_SET_VLAN_VID(out, vid);
1087     } else if (ofp_version == OFP11_VERSION) {
1088         put_OFPAT11_SET_VLAN_VID(out, vid);
1089     } else {
1090         ofpact_put_set_field(out, ofp_version,
1091                              MFF_VLAN_VID, vid | OFPVID12_PRESENT);
1092     }
1093 }
1094
1095 static char * OVS_WARN_UNUSED_RESULT
1096 parse_set_vlan_vid(char *arg, struct ofpbuf *ofpacts, bool push_vlan_if_needed)
1097 {
1098     struct ofpact_vlan_vid *vlan_vid;
1099     uint16_t vid;
1100     char *error;
1101
1102     error = str_to_u16(arg, "VLAN VID", &vid);
1103     if (error) {
1104         return error;
1105     }
1106
1107     if (vid & ~VLAN_VID_MASK) {
1108         return xasprintf("%s: not a valid VLAN VID", arg);
1109     }
1110     vlan_vid = ofpact_put_SET_VLAN_VID(ofpacts);
1111     vlan_vid->vlan_vid = vid;
1112     vlan_vid->push_vlan_if_needed = push_vlan_if_needed;
1113     return NULL;
1114 }
1115
1116 static char * OVS_WARN_UNUSED_RESULT
1117 parse_SET_VLAN_VID(char *arg, struct ofpbuf *ofpacts,
1118                    enum ofputil_protocol *usable_protocols OVS_UNUSED)
1119 {
1120     return parse_set_vlan_vid(arg, ofpacts, false);
1121 }
1122
1123 static void
1124 format_SET_VLAN_VID(const struct ofpact_vlan_vid *a, struct ds *s)
1125 {
1126     ds_put_format(s, "%s:%"PRIu16,
1127                   a->push_vlan_if_needed ? "mod_vlan_vid" : "set_vlan_vid",
1128                   a->vlan_vid);
1129 }
1130 \f
1131 /* Set PCP actions. */
1132
1133 static enum ofperr
1134 decode_set_vlan_pcp(uint8_t pcp, bool push_vlan_if_needed, struct ofpbuf *out)
1135 {
1136     if (pcp & ~7) {
1137         return OFPERR_OFPBAC_BAD_ARGUMENT;
1138     } else {
1139         struct ofpact_vlan_pcp *vlan_pcp = ofpact_put_SET_VLAN_PCP(out);
1140         vlan_pcp->vlan_pcp = pcp;
1141         vlan_pcp->push_vlan_if_needed = push_vlan_if_needed;
1142         return 0;
1143     }
1144 }
1145
1146 static enum ofperr
1147 decode_OFPAT_RAW10_SET_VLAN_PCP(uint8_t pcp, struct ofpbuf *out)
1148 {
1149     return decode_set_vlan_pcp(pcp, true, out);
1150 }
1151
1152 static enum ofperr
1153 decode_OFPAT_RAW11_SET_VLAN_PCP(uint8_t pcp, struct ofpbuf *out)
1154 {
1155     return decode_set_vlan_pcp(pcp, false, out);
1156 }
1157
1158 static void
1159 encode_SET_VLAN_PCP(const struct ofpact_vlan_pcp *vlan_pcp,
1160                     enum ofp_version ofp_version, struct ofpbuf *out)
1161 {
1162     uint8_t pcp = vlan_pcp->vlan_pcp;
1163
1164     /* Push a VLAN tag, if none is present and this form of the action calls
1165      * for such a feature. */
1166     if (ofp_version > OFP10_VERSION
1167         && vlan_pcp->push_vlan_if_needed
1168         && !vlan_pcp->flow_has_vlan) {
1169         put_OFPAT11_PUSH_VLAN(out, htons(ETH_TYPE_VLAN_8021Q));
1170     }
1171
1172     if (ofp_version == OFP10_VERSION) {
1173         put_OFPAT10_SET_VLAN_PCP(out, pcp);
1174     } else if (ofp_version == OFP11_VERSION) {
1175         put_OFPAT11_SET_VLAN_PCP(out, pcp);
1176     } else {
1177         ofpact_put_set_field(out, ofp_version, MFF_VLAN_PCP, pcp);
1178     }
1179 }
1180
1181 static char * OVS_WARN_UNUSED_RESULT
1182 parse_set_vlan_pcp(char *arg, struct ofpbuf *ofpacts, bool push_vlan_if_needed)
1183 {
1184     struct ofpact_vlan_pcp *vlan_pcp;
1185     uint8_t pcp;
1186     char *error;
1187
1188     error = str_to_u8(arg, "VLAN PCP", &pcp);
1189     if (error) {
1190         return error;
1191     }
1192
1193     if (pcp & ~7) {
1194         return xasprintf("%s: not a valid VLAN PCP", arg);
1195     }
1196     vlan_pcp = ofpact_put_SET_VLAN_PCP(ofpacts);
1197     vlan_pcp->vlan_pcp = pcp;
1198     vlan_pcp->push_vlan_if_needed = push_vlan_if_needed;
1199     return NULL;
1200 }
1201
1202 static char * OVS_WARN_UNUSED_RESULT
1203 parse_SET_VLAN_PCP(char *arg, struct ofpbuf *ofpacts,
1204                    enum ofputil_protocol *usable_protocols OVS_UNUSED)
1205 {
1206     return parse_set_vlan_pcp(arg, ofpacts, false);
1207 }
1208
1209 static void
1210 format_SET_VLAN_PCP(const struct ofpact_vlan_pcp *a, struct ds *s)
1211 {
1212     ds_put_format(s, "%s:%"PRIu8,
1213                   a->push_vlan_if_needed ? "mod_vlan_pcp" : "set_vlan_pcp",
1214                   a->vlan_pcp);
1215 }
1216 \f
1217 /* Strip VLAN actions. */
1218
1219 static enum ofperr
1220 decode_OFPAT_RAW10_STRIP_VLAN(struct ofpbuf *out)
1221 {
1222     ofpact_put_STRIP_VLAN(out)->ofpact.raw = OFPAT_RAW10_STRIP_VLAN;
1223     return 0;
1224 }
1225
1226 static enum ofperr
1227 decode_OFPAT_RAW11_POP_VLAN(struct ofpbuf *out)
1228 {
1229     ofpact_put_STRIP_VLAN(out)->ofpact.raw = OFPAT_RAW11_POP_VLAN;
1230     return 0;
1231 }
1232
1233 static void
1234 encode_STRIP_VLAN(const struct ofpact_null *null OVS_UNUSED,
1235                   enum ofp_version ofp_version, struct ofpbuf *out)
1236 {
1237     if (ofp_version == OFP10_VERSION) {
1238         put_OFPAT10_STRIP_VLAN(out);
1239     } else {
1240         put_OFPAT11_POP_VLAN(out);
1241     }
1242 }
1243
1244 static char * OVS_WARN_UNUSED_RESULT
1245 parse_STRIP_VLAN(char *arg OVS_UNUSED, struct ofpbuf *ofpacts,
1246                  enum ofputil_protocol *usable_protocols OVS_UNUSED)
1247 {
1248     ofpact_put_STRIP_VLAN(ofpacts)->ofpact.raw = OFPAT_RAW10_STRIP_VLAN;
1249     return NULL;
1250 }
1251
1252 static char * OVS_WARN_UNUSED_RESULT
1253 parse_pop_vlan(struct ofpbuf *ofpacts)
1254 {
1255     ofpact_put_STRIP_VLAN(ofpacts)->ofpact.raw = OFPAT_RAW11_POP_VLAN;
1256     return NULL;
1257 }
1258
1259 static void
1260 format_STRIP_VLAN(const struct ofpact_null *a, struct ds *s)
1261 {
1262     ds_put_cstr(s, (a->ofpact.raw == OFPAT_RAW11_POP_VLAN
1263                     ? "pop_vlan"
1264                     : "strip_vlan"));
1265 }
1266 \f
1267 /* Push VLAN action. */
1268
1269 static enum ofperr
1270 decode_OFPAT_RAW11_PUSH_VLAN(ovs_be16 eth_type, struct ofpbuf *out)
1271 {
1272     if (eth_type != htons(ETH_TYPE_VLAN_8021Q)) {
1273         /* XXX 802.1AD(QinQ) isn't supported at the moment */
1274         return OFPERR_OFPBAC_BAD_ARGUMENT;
1275     }
1276     ofpact_put_PUSH_VLAN(out);
1277     return 0;
1278 }
1279
1280 static void
1281 encode_PUSH_VLAN(const struct ofpact_null *null OVS_UNUSED,
1282                  enum ofp_version ofp_version, struct ofpbuf *out)
1283 {
1284     if (ofp_version == OFP10_VERSION) {
1285         /* PUSH is a side effect of a SET_VLAN_VID/PCP, which should
1286          * follow this action. */
1287     } else {
1288         /* XXX ETH_TYPE_VLAN_8021AD case */
1289         put_OFPAT11_PUSH_VLAN(out, htons(ETH_TYPE_VLAN_8021Q));
1290     }
1291 }
1292
1293 static char * OVS_WARN_UNUSED_RESULT
1294 parse_PUSH_VLAN(char *arg, struct ofpbuf *ofpacts,
1295                 enum ofputil_protocol *usable_protocols OVS_UNUSED)
1296 {
1297     uint16_t ethertype;
1298     char *error;
1299
1300     *usable_protocols &= OFPUTIL_P_OF11_UP;
1301     error = str_to_u16(arg, "ethertype", &ethertype);
1302     if (error) {
1303         return error;
1304     }
1305
1306     if (ethertype != ETH_TYPE_VLAN_8021Q) {
1307         /* XXX ETH_TYPE_VLAN_8021AD case isn't supported */
1308         return xasprintf("%s: not a valid VLAN ethertype", arg);
1309     }
1310
1311     ofpact_put_PUSH_VLAN(ofpacts);
1312     return NULL;
1313 }
1314
1315 static void
1316 format_PUSH_VLAN(const struct ofpact_null *a OVS_UNUSED, struct ds *s)
1317 {
1318     /* XXX 802.1AD case*/
1319     ds_put_format(s, "push_vlan:%#"PRIx16, ETH_TYPE_VLAN_8021Q);
1320 }
1321 \f
1322 /* Action structure for OFPAT10_SET_DL_SRC/DST and OFPAT11_SET_DL_SRC/DST. */
1323 struct ofp_action_dl_addr {
1324     ovs_be16 type;                  /* Type. */
1325     ovs_be16 len;                   /* Length is 16. */
1326     uint8_t dl_addr[OFP_ETH_ALEN];  /* Ethernet address. */
1327     uint8_t pad[6];
1328 };
1329 OFP_ASSERT(sizeof(struct ofp_action_dl_addr) == 16);
1330
1331 static enum ofperr
1332 decode_OFPAT_RAW_SET_DL_SRC(const struct ofp_action_dl_addr *a,
1333                             struct ofpbuf *out)
1334 {
1335     memcpy(ofpact_put_SET_ETH_SRC(out)->mac, a->dl_addr, ETH_ADDR_LEN);
1336     return 0;
1337 }
1338
1339 static enum ofperr
1340 decode_OFPAT_RAW_SET_DL_DST(const struct ofp_action_dl_addr *a,
1341                             struct ofpbuf *out)
1342 {
1343     memcpy(ofpact_put_SET_ETH_DST(out)->mac, a->dl_addr, ETH_ADDR_LEN);
1344     return 0;
1345 }
1346
1347 static void
1348 encode_SET_ETH_addr(const struct ofpact_mac *mac, enum ofp_version ofp_version,
1349                     enum ofp_raw_action_type raw, enum mf_field_id field,
1350                     struct ofpbuf *out)
1351 {
1352     const uint8_t *addr = mac->mac;
1353
1354     if (ofp_version < OFP12_VERSION) {
1355         struct ofp_action_dl_addr *oada;
1356
1357         oada = ofpact_put_raw(out, ofp_version, raw, 0);
1358         memcpy(oada->dl_addr, addr, ETH_ADDR_LEN);
1359     } else {
1360         ofpact_put_set_field(out, ofp_version, field,
1361                              eth_addr_to_uint64(addr));
1362     }
1363 }
1364
1365 static void
1366 encode_SET_ETH_SRC(const struct ofpact_mac *mac, enum ofp_version ofp_version,
1367                    struct ofpbuf *out)
1368 {
1369     encode_SET_ETH_addr(mac, ofp_version, OFPAT_RAW_SET_DL_SRC, MFF_ETH_SRC,
1370                         out);
1371
1372 }
1373
1374 static void
1375 encode_SET_ETH_DST(const struct ofpact_mac *mac,
1376                                enum ofp_version ofp_version,
1377                                struct ofpbuf *out)
1378 {
1379     encode_SET_ETH_addr(mac, ofp_version, OFPAT_RAW_SET_DL_DST, MFF_ETH_DST,
1380                         out);
1381
1382 }
1383
1384 static char * OVS_WARN_UNUSED_RESULT
1385 parse_SET_ETH_SRC(char *arg, struct ofpbuf *ofpacts,
1386                  enum ofputil_protocol *usable_protocols OVS_UNUSED)
1387 {
1388     return str_to_mac(arg, ofpact_put_SET_ETH_SRC(ofpacts)->mac);
1389 }
1390
1391 static char * OVS_WARN_UNUSED_RESULT
1392 parse_SET_ETH_DST(char *arg, struct ofpbuf *ofpacts,
1393                  enum ofputil_protocol *usable_protocols OVS_UNUSED)
1394 {
1395     return str_to_mac(arg, ofpact_put_SET_ETH_DST(ofpacts)->mac);
1396 }
1397
1398 static void
1399 format_SET_ETH_SRC(const struct ofpact_mac *a, struct ds *s)
1400 {
1401     ds_put_format(s, "mod_dl_src:"ETH_ADDR_FMT, ETH_ADDR_ARGS(a->mac));
1402 }
1403
1404 static void
1405 format_SET_ETH_DST(const struct ofpact_mac *a, struct ds *s)
1406 {
1407     ds_put_format(s, "mod_dl_dst:"ETH_ADDR_FMT, ETH_ADDR_ARGS(a->mac));
1408 }
1409 \f
1410 /* Set IPv4 address actions. */
1411
1412 static enum ofperr
1413 decode_OFPAT_RAW_SET_NW_SRC(ovs_be32 ipv4, struct ofpbuf *out)
1414 {
1415     ofpact_put_SET_IPV4_SRC(out)->ipv4 = ipv4;
1416     return 0;
1417 }
1418
1419 static enum ofperr
1420 decode_OFPAT_RAW_SET_NW_DST(ovs_be32 ipv4, struct ofpbuf *out)
1421 {
1422     ofpact_put_SET_IPV4_DST(out)->ipv4 = ipv4;
1423     return 0;
1424 }
1425
1426 static void
1427 encode_SET_IPV4_addr(const struct ofpact_ipv4 *ipv4,
1428                      enum ofp_version ofp_version,
1429                      enum ofp_raw_action_type raw, enum mf_field_id field,
1430                      struct ofpbuf *out)
1431 {
1432     ovs_be32 addr = ipv4->ipv4;
1433     if (ofp_version < OFP12_VERSION) {
1434         ofpact_put_raw(out, ofp_version, raw, ntohl(addr));
1435     } else {
1436         ofpact_put_set_field(out, ofp_version, field, ntohl(addr));
1437     }
1438 }
1439
1440 static void
1441 encode_SET_IPV4_SRC(const struct ofpact_ipv4 *ipv4,
1442                     enum ofp_version ofp_version, struct ofpbuf *out)
1443 {
1444     encode_SET_IPV4_addr(ipv4, ofp_version, OFPAT_RAW_SET_NW_SRC, MFF_IPV4_SRC,
1445                          out);
1446 }
1447
1448 static void
1449 encode_SET_IPV4_DST(const struct ofpact_ipv4 *ipv4,
1450                     enum ofp_version ofp_version, struct ofpbuf *out)
1451 {
1452     encode_SET_IPV4_addr(ipv4, ofp_version, OFPAT_RAW_SET_NW_DST, MFF_IPV4_DST,
1453                          out);
1454 }
1455
1456 static char * OVS_WARN_UNUSED_RESULT
1457 parse_SET_IPV4_SRC(char *arg, struct ofpbuf *ofpacts,
1458                    enum ofputil_protocol *usable_protocols OVS_UNUSED)
1459 {
1460     return str_to_ip(arg, &ofpact_put_SET_IPV4_SRC(ofpacts)->ipv4);
1461 }
1462
1463 static char * OVS_WARN_UNUSED_RESULT
1464 parse_SET_IPV4_DST(char *arg, struct ofpbuf *ofpacts,
1465                    enum ofputil_protocol *usable_protocols OVS_UNUSED)
1466 {
1467     return str_to_ip(arg, &ofpact_put_SET_IPV4_DST(ofpacts)->ipv4);
1468 }
1469
1470 static void
1471 format_SET_IPV4_SRC(const struct ofpact_ipv4 *a, struct ds *s)
1472 {
1473     ds_put_format(s, "mod_nw_src:"IP_FMT, IP_ARGS(a->ipv4));
1474 }
1475
1476 static void
1477 format_SET_IPV4_DST(const struct ofpact_ipv4 *a, struct ds *s)
1478 {
1479     ds_put_format(s, "mod_nw_dst:"IP_FMT, IP_ARGS(a->ipv4));
1480 }
1481 \f
1482 /* Set IPv4/v6 TOS actions. */
1483
1484 static enum ofperr
1485 decode_OFPAT_RAW_SET_NW_TOS(uint8_t dscp, struct ofpbuf *out)
1486 {
1487     if (dscp & ~IP_DSCP_MASK) {
1488         return OFPERR_OFPBAC_BAD_ARGUMENT;
1489     } else {
1490         ofpact_put_SET_IP_DSCP(out)->dscp = dscp;
1491         return 0;
1492     }
1493 }
1494
1495 static void
1496 encode_SET_IP_DSCP(const struct ofpact_dscp *dscp,
1497                    enum ofp_version ofp_version, struct ofpbuf *out)
1498 {
1499     if (ofp_version < OFP12_VERSION) {
1500         put_OFPAT_SET_NW_TOS(out, ofp_version, dscp->dscp);
1501     } else {
1502         ofpact_put_set_field(out, ofp_version,
1503                              MFF_IP_DSCP_SHIFTED, dscp->dscp >> 2);
1504     }
1505 }
1506
1507 static char * OVS_WARN_UNUSED_RESULT
1508 parse_SET_IP_DSCP(char *arg, struct ofpbuf *ofpacts,
1509                  enum ofputil_protocol *usable_protocols OVS_UNUSED)
1510 {
1511     uint8_t tos;
1512     char *error;
1513
1514     error = str_to_u8(arg, "TOS", &tos);
1515     if (error) {
1516         return error;
1517     }
1518
1519     if (tos & ~IP_DSCP_MASK) {
1520         return xasprintf("%s: not a valid TOS", arg);
1521     }
1522     ofpact_put_SET_IP_DSCP(ofpacts)->dscp = tos;
1523     return NULL;
1524 }
1525
1526 static void
1527 format_SET_IP_DSCP(const struct ofpact_dscp *a, struct ds *s)
1528 {
1529     ds_put_format(s, "mod_nw_tos:%d", a->dscp);
1530 }
1531 \f
1532 /* Set IPv4/v6 ECN actions. */
1533
1534 static enum ofperr
1535 decode_OFPAT_RAW11_SET_NW_ECN(uint8_t ecn, struct ofpbuf *out)
1536 {
1537     if (ecn & ~IP_ECN_MASK) {
1538         return OFPERR_OFPBAC_BAD_ARGUMENT;
1539     } else {
1540         ofpact_put_SET_IP_ECN(out)->ecn = ecn;
1541         return 0;
1542     }
1543 }
1544
1545 static void
1546 encode_SET_IP_ECN(const struct ofpact_ecn *ip_ecn,
1547                   enum ofp_version ofp_version, struct ofpbuf *out)
1548 {
1549     uint8_t ecn = ip_ecn->ecn;
1550     if (ofp_version == OFP10_VERSION) {
1551         /* XXX */
1552     } else if (ofp_version == OFP11_VERSION) {
1553         put_OFPAT11_SET_NW_ECN(out, ecn);
1554     } else {
1555         ofpact_put_set_field(out, ofp_version, MFF_IP_ECN, ecn);
1556     }
1557 }
1558
1559 static char * OVS_WARN_UNUSED_RESULT
1560 parse_SET_IP_ECN(char *arg, struct ofpbuf *ofpacts,
1561                  enum ofputil_protocol *usable_protocols OVS_UNUSED)
1562 {
1563     uint8_t ecn;
1564     char *error;
1565
1566     error = str_to_u8(arg, "ECN", &ecn);
1567     if (error) {
1568         return error;
1569     }
1570
1571     if (ecn & ~IP_ECN_MASK) {
1572         return xasprintf("%s: not a valid ECN", arg);
1573     }
1574     ofpact_put_SET_IP_ECN(ofpacts)->ecn = ecn;
1575     return NULL;
1576 }
1577
1578 static void
1579 format_SET_IP_ECN(const struct ofpact_ecn *a, struct ds *s)
1580 {
1581     ds_put_format(s, "mod_nw_ecn:%d", a->ecn);
1582 }
1583 \f
1584 /* Set IPv4/v6 TTL actions. */
1585
1586 static enum ofperr
1587 decode_OFPAT_RAW11_SET_NW_TTL(uint8_t ttl, struct ofpbuf *out)
1588 {
1589     ofpact_put_SET_IP_TTL(out)->ttl = ttl;
1590     return 0;
1591 }
1592
1593 static void
1594 encode_SET_IP_TTL(const struct ofpact_ip_ttl *ttl,
1595                   enum ofp_version ofp_version, struct ofpbuf *out)
1596 {
1597     if (ofp_version >= OFP11_VERSION) {
1598         put_OFPAT11_SET_NW_TTL(out, ttl->ttl);
1599     } else {
1600         /* XXX */
1601     }
1602 }
1603
1604 static char * OVS_WARN_UNUSED_RESULT
1605 parse_SET_IP_TTL(char *arg, struct ofpbuf *ofpacts,
1606                   enum ofputil_protocol *usable_protocols OVS_UNUSED)
1607 {
1608     uint8_t ttl;
1609     char *error;
1610
1611     error = str_to_u8(arg, "TTL", &ttl);
1612     if (error) {
1613         return error;
1614     }
1615
1616     ofpact_put_SET_IP_TTL(ofpacts)->ttl = ttl;
1617     return NULL;
1618 }
1619
1620 static void
1621 format_SET_IP_TTL(const struct ofpact_ip_ttl *a, struct ds *s)
1622 {
1623     ds_put_format(s, "mod_nw_ttl:%d", a->ttl);
1624 }
1625 \f
1626 /* Set TCP/UDP/SCTP port actions. */
1627
1628 static enum ofperr
1629 decode_OFPAT_RAW_SET_TP_SRC(ovs_be16 port, struct ofpbuf *out)
1630 {
1631     ofpact_put_SET_L4_SRC_PORT(out)->port = ntohs(port);
1632     return 0;
1633 }
1634
1635 static enum ofperr
1636 decode_OFPAT_RAW_SET_TP_DST(ovs_be16 port, struct ofpbuf *out)
1637 {
1638     ofpact_put_SET_L4_DST_PORT(out)->port = ntohs(port);
1639     return 0;
1640 }
1641
1642 static void
1643 encode_SET_L4_port(const struct ofpact_l4_port *l4_port,
1644                    enum ofp_version ofp_version, enum ofp_raw_action_type raw,
1645                    enum mf_field_id field, struct ofpbuf *out)
1646 {
1647     uint16_t port = l4_port->port;
1648
1649     if (ofp_version >= OFP12_VERSION && field != MFF_N_IDS) {
1650         ofpact_put_set_field(out, ofp_version, field, port);
1651     } else {
1652         ofpact_put_raw(out, ofp_version, raw, port);
1653     }
1654 }
1655
1656 static void
1657 encode_SET_L4_SRC_PORT(const struct ofpact_l4_port *l4_port,
1658                        enum ofp_version ofp_version, struct ofpbuf *out)
1659 {
1660     uint8_t proto = l4_port->flow_ip_proto;
1661     enum mf_field_id field = (proto == IPPROTO_TCP ? MFF_TCP_SRC
1662                               : proto == IPPROTO_UDP ? MFF_UDP_SRC
1663                               : proto == IPPROTO_SCTP ? MFF_SCTP_SRC
1664                               : MFF_N_IDS);
1665
1666     encode_SET_L4_port(l4_port, ofp_version, OFPAT_RAW_SET_TP_SRC, field, out);
1667 }
1668
1669 static void
1670 encode_SET_L4_DST_PORT(const struct ofpact_l4_port *l4_port,
1671                        enum ofp_version ofp_version,
1672                        struct ofpbuf *out)
1673 {
1674     uint8_t proto = l4_port->flow_ip_proto;
1675     enum mf_field_id field = (proto == IPPROTO_TCP ? MFF_TCP_DST
1676                               : proto == IPPROTO_UDP ? MFF_UDP_DST
1677                               : proto == IPPROTO_SCTP ? MFF_SCTP_DST
1678                               : MFF_N_IDS);
1679
1680     encode_SET_L4_port(l4_port, ofp_version, OFPAT_RAW_SET_TP_DST, field, out);
1681 }
1682
1683 static char * OVS_WARN_UNUSED_RESULT
1684 parse_SET_L4_SRC_PORT(char *arg, struct ofpbuf *ofpacts,
1685                       enum ofputil_protocol *usable_protocols OVS_UNUSED)
1686 {
1687     return str_to_u16(arg, "source port",
1688                       &ofpact_put_SET_L4_SRC_PORT(ofpacts)->port);
1689 }
1690
1691 static char * OVS_WARN_UNUSED_RESULT
1692 parse_SET_L4_DST_PORT(char *arg, struct ofpbuf *ofpacts,
1693                       enum ofputil_protocol *usable_protocols OVS_UNUSED)
1694 {
1695     return str_to_u16(arg, "destination port",
1696                       &ofpact_put_SET_L4_DST_PORT(ofpacts)->port);
1697 }
1698
1699 static void
1700 format_SET_L4_SRC_PORT(const struct ofpact_l4_port *a, struct ds *s)
1701 {
1702     ds_put_format(s, "mod_tp_src:%d", a->port);
1703 }
1704
1705 static void
1706 format_SET_L4_DST_PORT(const struct ofpact_l4_port *a, struct ds *s)
1707 {
1708     ds_put_format(s, "mod_tp_dst:%d", a->port);
1709 }
1710 \f
1711 /* Action structure for OFPAT_COPY_FIELD. */
1712 struct ofp15_action_copy_field {
1713     ovs_be16 type;              /* OFPAT_COPY_FIELD. */
1714     ovs_be16 len;               /* Length is padded to 64 bits. */
1715     ovs_be16 n_bits;            /* Number of bits to copy. */
1716     ovs_be16 src_offset;        /* Starting bit offset in source. */
1717     ovs_be16 dst_offset;        /* Starting bit offset in destination. */
1718     uint8_t pad[2];
1719     /* Followed by:
1720      * - OXM header for source field.
1721      * - OXM header for destination field.
1722      * - Padding with 0-bytes to a multiple of 8 bytes.
1723      * The "pad2" member is the beginning of the above. */
1724     uint8_t pad2[4];
1725 };
1726 OFP_ASSERT(sizeof(struct ofp15_action_copy_field) == 16);
1727
1728 /* Action structure for OpenFlow 1.3 extension copy-field action.. */
1729 struct onf_action_copy_field {
1730     ovs_be16 type;              /* OFPAT_EXPERIMENTER. */
1731     ovs_be16 len;               /* Length is padded to 64 bits. */
1732     ovs_be32 experimenter;      /* ONF_VENDOR_ID. */
1733     ovs_be16 exp_type;          /* 3200. */
1734     uint8_t pad[2];             /* Not used. */
1735     ovs_be16 n_bits;            /* Number of bits to copy. */
1736     ovs_be16 src_offset;        /* Starting bit offset in source. */
1737     ovs_be16 dst_offset;        /* Starting bit offset in destination. */
1738     uint8_t pad2[2];            /* Not used. */
1739     /* Followed by:
1740      * - OXM header for source field.
1741      * - OXM header for destination field.
1742      * - Padding with 0-bytes (either 0 or 4 of them) to a multiple of 8 bytes.
1743      * The "pad3" member is the beginning of the above. */
1744     uint8_t pad3[4];            /* Not used. */
1745 };
1746 OFP_ASSERT(sizeof(struct onf_action_copy_field) == 24);
1747
1748 /* Action structure for NXAST_REG_MOVE.
1749  *
1750  * Copies src[src_ofs:src_ofs+n_bits] to dst[dst_ofs:dst_ofs+n_bits], where
1751  * a[b:c] denotes the bits within 'a' numbered 'b' through 'c' (not including
1752  * bit 'c').  Bit numbering starts at 0 for the least-significant bit, 1 for
1753  * the next most significant bit, and so on.
1754  *
1755  * 'src' and 'dst' are nxm_header values with nxm_hasmask=0.  (It doesn't make
1756  * sense to use nxm_hasmask=1 because the action does not do any kind of
1757  * matching; it uses the actual value of a field.)
1758  *
1759  * The following nxm_header values are potentially acceptable as 'src':
1760  *
1761  *   - NXM_OF_IN_PORT
1762  *   - NXM_OF_ETH_DST
1763  *   - NXM_OF_ETH_SRC
1764  *   - NXM_OF_ETH_TYPE
1765  *   - NXM_OF_VLAN_TCI
1766  *   - NXM_OF_IP_TOS
1767  *   - NXM_OF_IP_PROTO
1768  *   - NXM_OF_IP_SRC
1769  *   - NXM_OF_IP_DST
1770  *   - NXM_OF_TCP_SRC
1771  *   - NXM_OF_TCP_DST
1772  *   - NXM_OF_UDP_SRC
1773  *   - NXM_OF_UDP_DST
1774  *   - NXM_OF_ICMP_TYPE
1775  *   - NXM_OF_ICMP_CODE
1776  *   - NXM_OF_ARP_OP
1777  *   - NXM_OF_ARP_SPA
1778  *   - NXM_OF_ARP_TPA
1779  *   - NXM_NX_TUN_ID
1780  *   - NXM_NX_ARP_SHA
1781  *   - NXM_NX_ARP_THA
1782  *   - NXM_NX_ICMPV6_TYPE
1783  *   - NXM_NX_ICMPV6_CODE
1784  *   - NXM_NX_ND_SLL
1785  *   - NXM_NX_ND_TLL
1786  *   - NXM_NX_REG(idx) for idx in the switch's accepted range.
1787  *   - NXM_NX_PKT_MARK
1788  *   - NXM_NX_TUN_IPV4_SRC
1789  *   - NXM_NX_TUN_IPV4_DST
1790  *
1791  * The following nxm_header values are potentially acceptable as 'dst':
1792  *
1793  *   - NXM_OF_ETH_DST
1794  *   - NXM_OF_ETH_SRC
1795  *   - NXM_OF_IP_TOS
1796  *   - NXM_OF_IP_SRC
1797  *   - NXM_OF_IP_DST
1798  *   - NXM_OF_TCP_SRC
1799  *   - NXM_OF_TCP_DST
1800  *   - NXM_OF_UDP_SRC
1801  *   - NXM_OF_UDP_DST
1802  *   - NXM_NX_ARP_SHA
1803  *   - NXM_NX_ARP_THA
1804  *   - NXM_OF_ARP_OP
1805  *   - NXM_OF_ARP_SPA
1806  *   - NXM_OF_ARP_TPA
1807  *     Modifying any of the above fields changes the corresponding packet
1808  *     header.
1809  *
1810  *   - NXM_OF_IN_PORT
1811  *
1812  *   - NXM_NX_REG(idx) for idx in the switch's accepted range.
1813  *
1814  *   - NXM_NX_PKT_MARK
1815  *
1816  *   - NXM_OF_VLAN_TCI.  Modifying this field's value has side effects on the
1817  *     packet's 802.1Q header.  Setting a value with CFI=0 removes the 802.1Q
1818  *     header (if any), ignoring the other bits.  Setting a value with CFI=1
1819  *     adds or modifies the 802.1Q header appropriately, setting the TCI field
1820  *     to the field's new value (with the CFI bit masked out).
1821  *
1822  *   - NXM_NX_TUN_ID, NXM_NX_TUN_IPV4_SRC, NXM_NX_TUN_IPV4_DST.  Modifying
1823  *     any of these values modifies the corresponding tunnel header field used
1824  *     for the packet's next tunnel encapsulation, if allowed by the
1825  *     configuration of the output tunnel port.
1826  *
1827  * A given nxm_header value may be used as 'src' or 'dst' only on a flow whose
1828  * nx_match satisfies its prerequisites.  For example, NXM_OF_IP_TOS may be
1829  * used only if the flow's nx_match includes an nxm_entry that specifies
1830  * nxm_type=NXM_OF_ETH_TYPE, nxm_hasmask=0, and nxm_value=0x0800.
1831  *
1832  * The switch will reject actions for which src_ofs+n_bits is greater than the
1833  * width of 'src' or dst_ofs+n_bits is greater than the width of 'dst' with
1834  * error type OFPET_BAD_ACTION, code OFPBAC_BAD_ARGUMENT.
1835  *
1836  * This action behaves properly when 'src' overlaps with 'dst', that is, it
1837  * behaves as if 'src' were copied out to a temporary buffer, then the
1838  * temporary buffer copied to 'dst'.
1839  */
1840 struct nx_action_reg_move {
1841     ovs_be16 type;                  /* OFPAT_VENDOR. */
1842     ovs_be16 len;                   /* Length is 24. */
1843     ovs_be32 vendor;                /* NX_VENDOR_ID. */
1844     ovs_be16 subtype;               /* NXAST_REG_MOVE. */
1845     ovs_be16 n_bits;                /* Number of bits. */
1846     ovs_be16 src_ofs;               /* Starting bit offset in source. */
1847     ovs_be16 dst_ofs;               /* Starting bit offset in destination. */
1848     /* Followed by:
1849      * - OXM/NXM header for source field (4 or 8 bytes).
1850      * - OXM/NXM header for destination field (4 or 8 bytes).
1851      * - Padding with 0-bytes to a multiple of 8 bytes, if necessary. */
1852 };
1853 OFP_ASSERT(sizeof(struct nx_action_reg_move) == 16);
1854
1855 static enum ofperr
1856 decode_copy_field__(ovs_be16 src_offset, ovs_be16 dst_offset, ovs_be16 n_bits,
1857                     const void *action, ovs_be16 action_len, size_t oxm_offset,
1858                     struct ofpbuf *ofpacts)
1859 {
1860     struct ofpact_reg_move *move;
1861     enum ofperr error;
1862     struct ofpbuf b;
1863
1864     move = ofpact_put_REG_MOVE(ofpacts);
1865     move->ofpact.raw = ONFACT_RAW13_COPY_FIELD;
1866     move->src.ofs = ntohs(src_offset);
1867     move->src.n_bits = ntohs(n_bits);
1868     move->dst.ofs = ntohs(dst_offset);
1869     move->dst.n_bits = ntohs(n_bits);
1870
1871     ofpbuf_use_const(&b, action, ntohs(action_len));
1872     ofpbuf_pull(&b, oxm_offset);
1873     error = nx_pull_header(&b, &move->src.field, NULL);
1874     if (error) {
1875         return error;
1876     }
1877     error = nx_pull_header(&b, &move->dst.field, NULL);
1878     if (error) {
1879         return error;
1880     }
1881
1882     if (!is_all_zeros(ofpbuf_data(&b), ofpbuf_size(&b))) {
1883         return OFPERR_NXBRC_MUST_BE_ZERO;
1884     }
1885
1886     return nxm_reg_move_check(move, NULL);
1887 }
1888
1889 static enum ofperr
1890 decode_OFPAT_RAW15_COPY_FIELD(const struct ofp15_action_copy_field *oacf,
1891                               struct ofpbuf *ofpacts)
1892 {
1893     return decode_copy_field__(oacf->src_offset, oacf->dst_offset,
1894                                oacf->n_bits, oacf, oacf->len,
1895                                OBJECT_OFFSETOF(oacf, pad2), ofpacts);
1896 }
1897
1898 static enum ofperr
1899 decode_ONFACT_RAW13_COPY_FIELD(const struct onf_action_copy_field *oacf,
1900                                struct ofpbuf *ofpacts)
1901 {
1902     return decode_copy_field__(oacf->src_offset, oacf->dst_offset,
1903                                oacf->n_bits, oacf, oacf->len,
1904                                OBJECT_OFFSETOF(oacf, pad3), ofpacts);
1905 }
1906
1907 static enum ofperr
1908 decode_NXAST_RAW_REG_MOVE(const struct nx_action_reg_move *narm,
1909                           struct ofpbuf *ofpacts)
1910 {
1911     struct ofpact_reg_move *move;
1912     enum ofperr error;
1913     struct ofpbuf b;
1914
1915     move = ofpact_put_REG_MOVE(ofpacts);
1916     move->ofpact.raw = NXAST_RAW_REG_MOVE;
1917     move->src.ofs = ntohs(narm->src_ofs);
1918     move->src.n_bits = ntohs(narm->n_bits);
1919     move->dst.ofs = ntohs(narm->dst_ofs);
1920     move->dst.n_bits = ntohs(narm->n_bits);
1921
1922     ofpbuf_use_const(&b, narm, ntohs(narm->len));
1923     ofpbuf_pull(&b, sizeof *narm);
1924     error = nx_pull_header(&b, &move->src.field, NULL);
1925     if (error) {
1926         return error;
1927     }
1928     error = nx_pull_header(&b, &move->dst.field, NULL);
1929     if (error) {
1930         return error;
1931     }
1932     if (!is_all_zeros(ofpbuf_data(&b), ofpbuf_size(&b))) {
1933         return OFPERR_NXBRC_MUST_BE_ZERO;
1934     }
1935
1936     return nxm_reg_move_check(move, NULL);
1937 }
1938
1939 static void
1940 encode_REG_MOVE(const struct ofpact_reg_move *move,
1941                 enum ofp_version ofp_version, struct ofpbuf *out)
1942 {
1943     /* For OpenFlow 1.3, the choice of ONFACT_RAW13_COPY_FIELD versus
1944      * NXAST_RAW_REG_MOVE is somewhat difficult.  Neither one is guaranteed to
1945      * be supported by every OpenFlow 1.3 implementation.  It would be ideal to
1946      * probe for support.  Until we have that ability, we currently prefer
1947      * NXAST_RAW_REG_MOVE for backward compatibility with older Open vSwitch
1948      * versions.  */
1949     size_t start_ofs = ofpbuf_size(out);
1950     if (ofp_version >= OFP15_VERSION) {
1951         struct ofp15_action_copy_field *copy = put_OFPAT15_COPY_FIELD(out);
1952         copy->n_bits = htons(move->dst.n_bits);
1953         copy->src_offset = htons(move->src.ofs);
1954         copy->dst_offset = htons(move->dst.ofs);
1955         ofpbuf_set_size(out, ofpbuf_size(out) - sizeof copy->pad2);
1956         nx_put_header(out, move->src.field->id, ofp_version, false);
1957         nx_put_header(out, move->dst.field->id, ofp_version, false);
1958     } else if (ofp_version == OFP13_VERSION
1959                && move->ofpact.raw == ONFACT_RAW13_COPY_FIELD) {
1960         struct onf_action_copy_field *copy = put_ONFACT13_COPY_FIELD(out);
1961         copy->n_bits = htons(move->dst.n_bits);
1962         copy->src_offset = htons(move->src.ofs);
1963         copy->dst_offset = htons(move->dst.ofs);
1964         ofpbuf_set_size(out, ofpbuf_size(out) - sizeof copy->pad3);
1965         nx_put_header(out, move->src.field->id, ofp_version, false);
1966         nx_put_header(out, move->dst.field->id, ofp_version, false);
1967     } else {
1968         struct nx_action_reg_move *narm = put_NXAST_REG_MOVE(out);
1969         narm->n_bits = htons(move->dst.n_bits);
1970         narm->src_ofs = htons(move->src.ofs);
1971         narm->dst_ofs = htons(move->dst.ofs);
1972         nx_put_header(out, move->src.field->id, 0, false);
1973         nx_put_header(out, move->dst.field->id, 0, false);
1974     }
1975     pad_ofpat(out, start_ofs);
1976 }
1977
1978 static char * OVS_WARN_UNUSED_RESULT
1979 parse_REG_MOVE(const char *arg, struct ofpbuf *ofpacts,
1980                enum ofputil_protocol *usable_protocols OVS_UNUSED)
1981 {
1982     struct ofpact_reg_move *move = ofpact_put_REG_MOVE(ofpacts);
1983     const char *full_arg = arg;
1984     char *error;
1985
1986     error = mf_parse_subfield__(&move->src, &arg);
1987     if (error) {
1988         return error;
1989     }
1990     if (strncmp(arg, "->", 2)) {
1991         return xasprintf("%s: missing `->' following source", full_arg);
1992     }
1993     arg += 2;
1994     error = mf_parse_subfield(&move->dst, arg);
1995     if (error) {
1996         return error;
1997     }
1998
1999     if (move->src.n_bits != move->dst.n_bits) {
2000         return xasprintf("%s: source field is %d bits wide but destination is "
2001                          "%d bits wide", full_arg,
2002                          move->src.n_bits, move->dst.n_bits);
2003     }
2004     return NULL;
2005 }
2006
2007 static void
2008 format_REG_MOVE(const struct ofpact_reg_move *a, struct ds *s)
2009 {
2010     nxm_format_reg_move(a, s);
2011 }
2012 \f
2013 /* Action structure for OFPAT12_SET_FIELD. */
2014 struct ofp12_action_set_field {
2015     ovs_be16 type;                  /* OFPAT12_SET_FIELD. */
2016     ovs_be16 len;                   /* Length is padded to 64 bits. */
2017
2018     /* Followed by:
2019      * - An OXM header, value, and (in OpenFlow 1.5+) optionally a mask.
2020      * - Enough 0-bytes to pad out to a multiple of 64 bits.
2021      *
2022      * The "pad" member is the beginning of the above. */
2023     uint8_t pad[4];
2024 };
2025 OFP_ASSERT(sizeof(struct ofp12_action_set_field) == 8);
2026
2027 /* Action structure for NXAST_REG_LOAD.
2028  *
2029  * Copies value[0:n_bits] to dst[ofs:ofs+n_bits], where a[b:c] denotes the bits
2030  * within 'a' numbered 'b' through 'c' (not including bit 'c').  Bit numbering
2031  * starts at 0 for the least-significant bit, 1 for the next most significant
2032  * bit, and so on.
2033  *
2034  * 'dst' is an nxm_header with nxm_hasmask=0.  See the documentation for
2035  * NXAST_REG_MOVE, above, for the permitted fields and for the side effects of
2036  * loading them.
2037  *
2038  * The 'ofs' and 'n_bits' fields are combined into a single 'ofs_nbits' field
2039  * to avoid enlarging the structure by another 8 bytes.  To allow 'n_bits' to
2040  * take a value between 1 and 64 (inclusive) while taking up only 6 bits, it is
2041  * also stored as one less than its true value:
2042  *
2043  *  15                           6 5                0
2044  * +------------------------------+------------------+
2045  * |              ofs             |    n_bits - 1    |
2046  * +------------------------------+------------------+
2047  *
2048  * The switch will reject actions for which ofs+n_bits is greater than the
2049  * width of 'dst', or in which any bits in 'value' with value 2**n_bits or
2050  * greater are set to 1, with error type OFPET_BAD_ACTION, code
2051  * OFPBAC_BAD_ARGUMENT.
2052  */
2053 struct nx_action_reg_load {
2054     ovs_be16 type;                  /* OFPAT_VENDOR. */
2055     ovs_be16 len;                   /* Length is 24. */
2056     ovs_be32 vendor;                /* NX_VENDOR_ID. */
2057     ovs_be16 subtype;               /* NXAST_REG_LOAD. */
2058     ovs_be16 ofs_nbits;             /* (ofs << 6) | (n_bits - 1). */
2059     ovs_be32 dst;                   /* Destination register. */
2060     ovs_be64 value;                 /* Immediate value. */
2061 };
2062 OFP_ASSERT(sizeof(struct nx_action_reg_load) == 24);
2063
2064 /* Action structure for NXAST_REG_LOAD2.
2065  *
2066  * Compared to OFPAT_SET_FIELD, we can use this to set whole or partial fields
2067  * in any OpenFlow version.  Compared to NXAST_REG_LOAD, we can use this to set
2068  * OXM experimenter fields. */
2069 struct nx_action_reg_load2 {
2070     ovs_be16 type;                  /* OFPAT_VENDOR. */
2071     ovs_be16 len;                   /* At least 16. */
2072     ovs_be32 vendor;                /* NX_VENDOR_ID. */
2073     ovs_be16 subtype;               /* NXAST_SET_FIELD. */
2074
2075     /* Followed by:
2076      * - An NXM/OXM header, value, and optionally a mask.
2077      * - Enough 0-bytes to pad out to a multiple of 64 bits.
2078      *
2079      * The "pad" member is the beginning of the above. */
2080     uint8_t pad[6];
2081 };
2082 OFP_ASSERT(sizeof(struct nx_action_reg_load2) == 16);
2083
2084 static enum ofperr
2085 decode_ofpat_set_field(const struct ofp12_action_set_field *oasf,
2086                        bool may_mask, struct ofpbuf *ofpacts)
2087 {
2088     struct ofpact_set_field *sf;
2089     enum ofperr error;
2090     struct ofpbuf b;
2091
2092     sf = ofpact_put_SET_FIELD(ofpacts);
2093
2094     ofpbuf_use_const(&b, oasf, ntohs(oasf->len));
2095     ofpbuf_pull(&b, OBJECT_OFFSETOF(oasf, pad));
2096     error = nx_pull_entry(&b, &sf->field, &sf->value,
2097                           may_mask ? &sf->mask : NULL);
2098     if (error) {
2099         return (error == OFPERR_OFPBMC_BAD_MASK
2100                 ? OFPERR_OFPBAC_BAD_SET_MASK
2101                 : error);
2102     }
2103     if (!may_mask) {
2104         memset(&sf->mask, 0xff, sf->field->n_bytes);
2105     }
2106
2107     if (!is_all_zeros(ofpbuf_data(&b), ofpbuf_size(&b))) {
2108         return OFPERR_OFPBAC_BAD_SET_ARGUMENT;
2109     }
2110
2111     /* OpenFlow says specifically that one may not set OXM_OF_IN_PORT via
2112      * Set-Field. */
2113     if (sf->field->id == MFF_IN_PORT_OXM) {
2114         return OFPERR_OFPBAC_BAD_SET_ARGUMENT;
2115     }
2116
2117     /* oxm_length is now validated to be compatible with mf_value. */
2118     if (!sf->field->writable) {
2119         VLOG_WARN_RL(&rl, "destination field %s is not writable",
2120                      sf->field->name);
2121         return OFPERR_OFPBAC_BAD_SET_ARGUMENT;
2122     }
2123
2124     /* The value must be valid for match.  The OpenFlow 1.5 draft also says,
2125      * "In an OXM_OF_VLAN_VID set-field action, the OFPVID_PRESENT bit must be
2126      * a 1-bit in oxm_value and in oxm_mask." */
2127     if (!mf_is_value_valid(sf->field, &sf->value)
2128         || (sf->field->id == MFF_VLAN_VID
2129             && (!(sf->mask.be16 & htons(OFPVID12_PRESENT))
2130                 || !(sf->value.be16 & htons(OFPVID12_PRESENT))))) {
2131         struct ds ds = DS_EMPTY_INITIALIZER;
2132         mf_format(sf->field, &sf->value, NULL, &ds);
2133         VLOG_WARN_RL(&rl, "Invalid value for set field %s: %s",
2134                      sf->field->name, ds_cstr(&ds));
2135         ds_destroy(&ds);
2136
2137         return OFPERR_OFPBAC_BAD_SET_ARGUMENT;
2138     }
2139     return 0;
2140 }
2141
2142 static enum ofperr
2143 decode_OFPAT_RAW12_SET_FIELD(const struct ofp12_action_set_field *oasf,
2144                              struct ofpbuf *ofpacts)
2145 {
2146     return decode_ofpat_set_field(oasf, false, ofpacts);
2147 }
2148
2149 static enum ofperr
2150 decode_OFPAT_RAW15_SET_FIELD(const struct ofp12_action_set_field *oasf,
2151                              struct ofpbuf *ofpacts)
2152 {
2153     return decode_ofpat_set_field(oasf, true, ofpacts);
2154 }
2155
2156 static enum ofperr
2157 decode_NXAST_RAW_REG_LOAD(const struct nx_action_reg_load *narl,
2158                           struct ofpbuf *out)
2159 {
2160     struct ofpact_set_field *sf = ofpact_put_reg_load(out);
2161     struct mf_subfield dst;
2162     enum ofperr error;
2163
2164     sf->ofpact.raw = NXAST_RAW_REG_LOAD;
2165
2166     dst.field = mf_from_nxm_header(ntohl(narl->dst));
2167     dst.ofs = nxm_decode_ofs(narl->ofs_nbits);
2168     dst.n_bits = nxm_decode_n_bits(narl->ofs_nbits);
2169     error = mf_check_dst(&dst, NULL);
2170     if (error) {
2171         return error;
2172     }
2173
2174     /* Reject 'narl' if a bit numbered 'n_bits' or higher is set to 1 in
2175      * narl->value. */
2176     if (dst.n_bits < 64 && ntohll(narl->value) >> dst.n_bits) {
2177         return OFPERR_OFPBAC_BAD_ARGUMENT;
2178     }
2179
2180     sf->field = dst.field;
2181     bitwise_put(ntohll(narl->value),
2182                 &sf->value, dst.field->n_bytes, dst.ofs,
2183                 dst.n_bits);
2184     bitwise_put(UINT64_MAX,
2185                 &sf->mask, dst.field->n_bytes, dst.ofs,
2186                 dst.n_bits);
2187
2188     return 0;
2189 }
2190
2191 static enum ofperr
2192 decode_NXAST_RAW_REG_LOAD2(const struct nx_action_reg_load2 *narl,
2193                            struct ofpbuf *out)
2194 {
2195     struct ofpact_set_field *sf;
2196     enum ofperr error;
2197     struct ofpbuf b;
2198
2199     sf = ofpact_put_SET_FIELD(out);
2200     sf->ofpact.raw = NXAST_RAW_REG_LOAD2;
2201
2202     ofpbuf_use_const(&b, narl, ntohs(narl->len));
2203     ofpbuf_pull(&b, OBJECT_OFFSETOF(narl, pad));
2204     error = nx_pull_entry(&b, &sf->field, &sf->value, &sf->mask);
2205     if (error) {
2206         return error;
2207     }
2208     if (!is_all_zeros(ofpbuf_data(&b), ofpbuf_size(&b))) {
2209         return OFPERR_OFPBAC_BAD_SET_ARGUMENT;
2210     }
2211
2212     if (!sf->field->writable) {
2213         VLOG_WARN_RL(&rl, "destination field %s is not writable",
2214                      sf->field->name);
2215         return OFPERR_OFPBAC_BAD_SET_ARGUMENT;
2216     }
2217     return 0;
2218 }
2219
2220 static void
2221 ofpact_put_set_field(struct ofpbuf *openflow, enum ofp_version ofp_version,
2222                      enum mf_field_id field, uint64_t value_)
2223 {
2224     struct ofp12_action_set_field *oasf OVS_UNUSED;
2225     int n_bytes = mf_from_id(field)->n_bytes;
2226     size_t start_ofs = ofpbuf_size(openflow);
2227     union mf_value value;
2228
2229     value.be64 = htonll(value_ << (8 * (8 - n_bytes)));
2230
2231     oasf = put_OFPAT12_SET_FIELD(openflow);
2232     ofpbuf_set_size(openflow, ofpbuf_size(openflow) - sizeof oasf->pad);
2233     nx_put_entry(openflow, field, ofp_version, &value, NULL);
2234     pad_ofpat(openflow, start_ofs);
2235 }
2236
2237 static bool
2238 next_load_segment(const struct ofpact_set_field *sf,
2239                   struct mf_subfield *dst, uint64_t *value)
2240 {
2241     int n_bits = sf->field->n_bits;
2242     int n_bytes = sf->field->n_bytes;
2243     int start = dst->ofs + dst->n_bits;
2244
2245     if (start < n_bits) {
2246         dst->field = sf->field;
2247         dst->ofs = bitwise_scan(&sf->mask, n_bytes, 1, start, n_bits);
2248         if (dst->ofs < n_bits) {
2249             dst->n_bits = bitwise_scan(&sf->mask, n_bytes, 0, dst->ofs + 1,
2250                                        MIN(dst->ofs + 64, n_bits)) - dst->ofs;
2251             *value = bitwise_get(&sf->value, n_bytes, dst->ofs, dst->n_bits);
2252             return true;
2253         }
2254     }
2255     return false;
2256 }
2257
2258 /* Convert 'sf' to a series of REG_LOADs. */
2259 static void
2260 set_field_to_nxast(const struct ofpact_set_field *sf, struct ofpbuf *openflow)
2261 {
2262     /* If 'sf' cannot be encoded as NXAST_REG_LOAD because it requires an
2263      * experimenter OXM (or if it came in as NXAST_REG_LOAD2), encode as
2264      * NXAST_REG_LOAD2.  Otherwise use NXAST_REG_LOAD, which is backward
2265      * compatible. */
2266     if (sf->ofpact.raw == NXAST_RAW_REG_LOAD2
2267         || !mf_nxm_header(sf->field->id)) {
2268         struct nx_action_reg_load2 *narl OVS_UNUSED;
2269         size_t start_ofs = ofpbuf_size(openflow);
2270
2271         narl = put_NXAST_REG_LOAD2(openflow);
2272         ofpbuf_set_size(openflow, ofpbuf_size(openflow) - sizeof narl->pad);
2273         nx_put_entry(openflow, sf->field->id, 0, &sf->value, &sf->mask);
2274         pad_ofpat(openflow, start_ofs);
2275     } else {
2276         struct mf_subfield dst;
2277         uint64_t value;
2278
2279         dst.ofs = dst.n_bits = 0;
2280         while (next_load_segment(sf, &dst, &value)) {
2281             struct nx_action_reg_load *narl = put_NXAST_REG_LOAD(openflow);
2282             narl->ofs_nbits = nxm_encode_ofs_nbits(dst.ofs, dst.n_bits);
2283             narl->dst = htonl(mf_nxm_header(dst.field->id));
2284             narl->value = htonll(value);
2285         }
2286     }
2287 }
2288
2289 /* Convert 'sf', which must set an entire field, to standard OpenFlow 1.0/1.1
2290  * actions, if we can, falling back to Nicira extensions if we must.
2291  *
2292  * We check only meta-flow types that can appear within set field actions and
2293  * that have a mapping to compatible action types.  These struct mf_field
2294  * definitions have a defined OXM or NXM header value and specify the field as
2295  * writable. */
2296 static void
2297 set_field_to_legacy_openflow(const struct ofpact_set_field *sf,
2298                              enum ofp_version ofp_version,
2299                              struct ofpbuf *out)
2300 {
2301     switch ((int) sf->field->id) {
2302     case MFF_VLAN_TCI: {
2303         ovs_be16 tci = sf->value.be16;
2304         bool cfi = (tci & htons(VLAN_CFI)) != 0;
2305         uint16_t vid = vlan_tci_to_vid(tci);
2306         uint8_t pcp = vlan_tci_to_pcp(tci);
2307
2308         if (ofp_version < OFP11_VERSION) {
2309             /* NXM_OF_VLAN_TCI to OpenFlow 1.0 mapping:
2310              *
2311              * If CFI=1, Add or modify VLAN VID & PCP.
2312              * If CFI=0, strip VLAN header, if any.
2313              */
2314             if (cfi) {
2315                 put_OFPAT10_SET_VLAN_VID(out, vid);
2316                 put_OFPAT10_SET_VLAN_PCP(out, pcp);
2317             } else {
2318                 put_OFPAT10_STRIP_VLAN(out);
2319             }
2320         } else {
2321             /* NXM_OF_VLAN_TCI to OpenFlow 1.1 mapping:
2322              *
2323              * If CFI=1, Add or modify VLAN VID & PCP.
2324              *    OpenFlow 1.1 set actions only apply if the packet
2325              *    already has VLAN tags.  To be sure that is the case
2326              *    we have to push a VLAN header.  As we do not support
2327              *    multiple layers of VLANs, this is a no-op, if a VLAN
2328              *    header already exists.  This may backfire, however,
2329              *    when we start supporting multiple layers of VLANs.
2330              * If CFI=0, strip VLAN header, if any.
2331              */
2332             if (cfi) {
2333                 /* Push a VLAN tag, if one was not seen at action validation
2334                  * time. */
2335                 if (!sf->flow_has_vlan) {
2336                     put_OFPAT11_PUSH_VLAN(out, htons(ETH_TYPE_VLAN_8021Q));
2337                 }
2338                 put_OFPAT11_SET_VLAN_VID(out, vid);
2339                 put_OFPAT11_SET_VLAN_PCP(out, pcp);
2340             } else {
2341                 /* If the flow did not match on vlan, we have no way of
2342                  * knowing if the vlan tag exists, so we must POP just to be
2343                  * sure. */
2344                 put_OFPAT11_POP_VLAN(out);
2345             }
2346         }
2347         break;
2348     }
2349
2350     case MFF_VLAN_VID: {
2351         uint16_t vid = ntohs(sf->value.be16) & VLAN_VID_MASK;
2352         if (ofp_version == OFP10_VERSION) {
2353             put_OFPAT10_SET_VLAN_VID(out, vid);
2354         } else {
2355             put_OFPAT11_SET_VLAN_VID(out, vid);
2356         }
2357         break;
2358     }
2359
2360     case MFF_VLAN_PCP:
2361         if (ofp_version == OFP10_VERSION) {
2362             put_OFPAT10_SET_VLAN_PCP(out, sf->value.u8);
2363         } else {
2364             put_OFPAT11_SET_VLAN_PCP(out, sf->value.u8);
2365         }
2366         break;
2367
2368     case MFF_ETH_SRC:
2369         memcpy(put_OFPAT_SET_DL_SRC(out, ofp_version)->dl_addr,
2370                sf->value.mac, ETH_ADDR_LEN);
2371         break;
2372
2373     case MFF_ETH_DST:
2374         memcpy(put_OFPAT_SET_DL_DST(out, ofp_version)->dl_addr,
2375                sf->value.mac, ETH_ADDR_LEN);
2376         break;
2377
2378     case MFF_IPV4_SRC:
2379         put_OFPAT_SET_NW_SRC(out, ofp_version, sf->value.be32);
2380         break;
2381
2382     case MFF_IPV4_DST:
2383         put_OFPAT_SET_NW_DST(out, ofp_version, sf->value.be32);
2384         break;
2385
2386     case MFF_IP_DSCP:
2387         put_OFPAT_SET_NW_TOS(out, ofp_version, sf->value.u8);
2388         break;
2389
2390     case MFF_IP_DSCP_SHIFTED:
2391         put_OFPAT_SET_NW_TOS(out, ofp_version, sf->value.u8 << 2);
2392         break;
2393
2394     case MFF_TCP_SRC:
2395     case MFF_UDP_SRC:
2396         put_OFPAT_SET_TP_SRC(out, sf->value.be16);
2397         break;
2398
2399     case MFF_TCP_DST:
2400     case MFF_UDP_DST:
2401         put_OFPAT_SET_TP_DST(out, sf->value.be16);
2402         break;
2403
2404     default:
2405         set_field_to_nxast(sf, out);
2406         break;
2407     }
2408 }
2409
2410 static void
2411 set_field_to_set_field(const struct ofpact_set_field *sf,
2412                        enum ofp_version ofp_version, struct ofpbuf *out)
2413 {
2414     struct ofp12_action_set_field *oasf OVS_UNUSED;
2415     size_t start_ofs = ofpbuf_size(out);
2416
2417     oasf = put_OFPAT12_SET_FIELD(out);
2418     ofpbuf_set_size(out, ofpbuf_size(out) - sizeof oasf->pad);
2419     nx_put_entry(out, sf->field->id, ofp_version, &sf->value, &sf->mask);
2420     pad_ofpat(out, start_ofs);
2421 }
2422
2423 static void
2424 encode_SET_FIELD(const struct ofpact_set_field *sf,
2425                  enum ofp_version ofp_version, struct ofpbuf *out)
2426 {
2427     if (ofp_version >= OFP15_VERSION) {
2428         /* OF1.5+ only has Set-Field (reg_load is redundant so we drop it
2429          * entirely). */
2430         set_field_to_set_field(sf, ofp_version, out);
2431     } else if (sf->ofpact.raw == NXAST_RAW_REG_LOAD ||
2432                sf->ofpact.raw == NXAST_RAW_REG_LOAD2) {
2433         /* It came in as reg_load, send it out the same way. */
2434         set_field_to_nxast(sf, out);
2435     } else if (ofp_version < OFP12_VERSION) {
2436         /* OpenFlow 1.0 and 1.1 don't have Set-Field. */
2437         set_field_to_legacy_openflow(sf, ofp_version, out);
2438     } else if (is_all_ones((const uint8_t *) &sf->mask, sf->field->n_bytes)) {
2439         /* We're encoding to OpenFlow 1.2, 1.3, or 1.4.  The action sets an
2440          * entire field, so encode it as OFPAT_SET_FIELD. */
2441         set_field_to_set_field(sf, ofp_version, out);
2442     } else {
2443         /* We're encoding to OpenFlow 1.2, 1.3, or 1.4.  The action cannot be
2444          * encoded as OFPAT_SET_FIELD because it does not set an entire field,
2445          * so encode it as reg_load. */
2446         set_field_to_nxast(sf, out);
2447     }
2448 }
2449
2450 /* Parses a "set_field" action with argument 'arg', appending the parsed
2451  * action to 'ofpacts'.
2452  *
2453  * Returns NULL if successful, otherwise a malloc()'d string describing the
2454  * error.  The caller is responsible for freeing the returned string. */
2455 static char * OVS_WARN_UNUSED_RESULT
2456 set_field_parse__(char *arg, struct ofpbuf *ofpacts,
2457                   enum ofputil_protocol *usable_protocols)
2458 {
2459     struct ofpact_set_field *sf = ofpact_put_SET_FIELD(ofpacts);
2460     char *value;
2461     char *delim;
2462     char *key;
2463     const struct mf_field *mf;
2464     char *error;
2465
2466     value = arg;
2467     delim = strstr(arg, "->");
2468     if (!delim) {
2469         return xasprintf("%s: missing `->'", arg);
2470     }
2471     if (strlen(delim) <= strlen("->")) {
2472         return xasprintf("%s: missing field name following `->'", arg);
2473     }
2474
2475     key = delim + strlen("->");
2476     mf = mf_from_name(key);
2477     if (!mf) {
2478         return xasprintf("%s is not a valid OXM field name", key);
2479     }
2480     if (!mf->writable) {
2481         return xasprintf("%s is read-only", key);
2482     }
2483     sf->field = mf;
2484     delim[0] = '\0';
2485     error = mf_parse(mf, value, &sf->value, &sf->mask);
2486     if (error) {
2487         return error;
2488     }
2489
2490     if (!mf_is_value_valid(mf, &sf->value)) {
2491         return xasprintf("%s is not a valid value for field %s", value, key);
2492     }
2493
2494     *usable_protocols &= mf->usable_protocols_exact;
2495     return NULL;
2496 }
2497
2498 /* Parses 'arg' as the argument to a "set_field" action, and appends such an
2499  * action to 'ofpacts'.
2500  *
2501  * Returns NULL if successful, otherwise a malloc()'d string describing the
2502  * error.  The caller is responsible for freeing the returned string. */
2503 static char * OVS_WARN_UNUSED_RESULT
2504 parse_SET_FIELD(const char *arg, struct ofpbuf *ofpacts,
2505                 enum ofputil_protocol *usable_protocols)
2506 {
2507     char *copy = xstrdup(arg);
2508     char *error = set_field_parse__(copy, ofpacts, usable_protocols);
2509     free(copy);
2510     return error;
2511 }
2512
2513 static char * OVS_WARN_UNUSED_RESULT
2514 parse_reg_load(char *arg, struct ofpbuf *ofpacts)
2515 {
2516     struct ofpact_set_field *sf = ofpact_put_reg_load(ofpacts);
2517     const char *full_arg = arg;
2518     uint64_t value = strtoull(arg, (char **) &arg, 0);
2519     struct mf_subfield dst;
2520     char *error;
2521
2522     if (strncmp(arg, "->", 2)) {
2523         return xasprintf("%s: missing `->' following value", full_arg);
2524     }
2525     arg += 2;
2526     error = mf_parse_subfield(&dst, arg);
2527     if (error) {
2528         return error;
2529     }
2530
2531     if (dst.n_bits < 64 && (value >> dst.n_bits) != 0) {
2532         return xasprintf("%s: value %"PRIu64" does not fit into %d bits",
2533                          full_arg, value, dst.n_bits);
2534     }
2535
2536     sf->field = dst.field;
2537     memset(&sf->value, 0, sizeof sf->value);
2538     bitwise_put(value, &sf->value, dst.field->n_bytes, dst.ofs, dst.n_bits);
2539     bitwise_put(UINT64_MAX, &sf->mask,
2540                 dst.field->n_bytes, dst.ofs, dst.n_bits);
2541     return NULL;
2542 }
2543
2544 static void
2545 format_SET_FIELD(const struct ofpact_set_field *a, struct ds *s)
2546 {
2547     if (a->ofpact.raw == NXAST_RAW_REG_LOAD) {
2548         struct mf_subfield dst;
2549         uint64_t value;
2550
2551         dst.ofs = dst.n_bits = 0;
2552         while (next_load_segment(a, &dst, &value)) {
2553             ds_put_format(s, "load:%#"PRIx64"->", value);
2554             mf_format_subfield(&dst, s);
2555             ds_put_char(s, ',');
2556         }
2557         ds_chomp(s, ',');
2558     } else {
2559         ds_put_cstr(s, "set_field:");
2560         mf_format(a->field, &a->value, &a->mask, s);
2561         ds_put_format(s, "->%s", a->field->name);
2562     }
2563 }
2564
2565 /* Appends an OFPACT_SET_FIELD ofpact to 'ofpacts' and returns it.  The ofpact
2566  * is marked such that, if possible, it will be translated to OpenFlow as
2567  * NXAST_REG_LOAD extension actions rather than OFPAT_SET_FIELD, either because
2568  * that was the way that the action was expressed when it came into OVS or for
2569  * backward compatibility. */
2570 struct ofpact_set_field *
2571 ofpact_put_reg_load(struct ofpbuf *ofpacts)
2572 {
2573     struct ofpact_set_field *sf = ofpact_put_SET_FIELD(ofpacts);
2574     sf->ofpact.raw = NXAST_RAW_REG_LOAD;
2575     return sf;
2576 }
2577 \f
2578 /* Action structure for NXAST_STACK_PUSH and NXAST_STACK_POP.
2579  *
2580  * Pushes (or pops) field[offset: offset + n_bits] to (or from)
2581  * top of the stack.
2582  */
2583 struct nx_action_stack {
2584     ovs_be16 type;                  /* OFPAT_VENDOR. */
2585     ovs_be16 len;                   /* Length is 16. */
2586     ovs_be32 vendor;                /* NX_VENDOR_ID. */
2587     ovs_be16 subtype;               /* NXAST_STACK_PUSH or NXAST_STACK_POP. */
2588     ovs_be16 offset;                /* Bit offset into the field. */
2589     /* Followed by:
2590      * - OXM/NXM header for field to push or pop (4 or 8 bytes).
2591      * - ovs_be16 'n_bits', the number of bits to extract from the field.
2592      * - Enough 0-bytes to pad out the action to 24 bytes. */
2593     uint8_t pad[12];                /* See above. */
2594 };
2595 OFP_ASSERT(sizeof(struct nx_action_stack) == 24);
2596
2597 static enum ofperr
2598 decode_stack_action(const struct nx_action_stack *nasp,
2599                     struct ofpact_stack *stack_action)
2600 {
2601     enum ofperr error;
2602     struct ofpbuf b;
2603
2604     stack_action->subfield.ofs = ntohs(nasp->offset);
2605
2606     ofpbuf_use_const(&b, nasp, sizeof *nasp);
2607     ofpbuf_pull(&b, OBJECT_OFFSETOF(nasp, pad));
2608     error = nx_pull_header(&b, &stack_action->subfield.field, NULL);
2609     if (error) {
2610         return error;
2611     }
2612     stack_action->subfield.n_bits = ntohs(*(const ovs_be16 *) ofpbuf_data(&b));
2613     ofpbuf_pull(&b, 2);
2614     if (!is_all_zeros(ofpbuf_data(&b), ofpbuf_size(&b))) {
2615         return OFPERR_NXBRC_MUST_BE_ZERO;
2616     }
2617
2618     return 0;
2619 }
2620
2621 static enum ofperr
2622 decode_NXAST_RAW_STACK_PUSH(const struct nx_action_stack *nasp,
2623                              struct ofpbuf *ofpacts)
2624 {
2625     struct ofpact_stack *push = ofpact_put_STACK_PUSH(ofpacts);
2626     enum ofperr error = decode_stack_action(nasp, push);
2627     return error ? error : nxm_stack_push_check(push, NULL);
2628 }
2629
2630 static enum ofperr
2631 decode_NXAST_RAW_STACK_POP(const struct nx_action_stack *nasp,
2632                            struct ofpbuf *ofpacts)
2633 {
2634     struct ofpact_stack *pop = ofpact_put_STACK_POP(ofpacts);
2635     enum ofperr error = decode_stack_action(nasp, pop);
2636     return error ? error : nxm_stack_pop_check(pop, NULL);
2637 }
2638
2639 static void
2640 encode_STACK_op(const struct ofpact_stack *stack_action,
2641                 struct nx_action_stack *nasp)
2642 {
2643     struct ofpbuf b;
2644     ovs_be16 n_bits;
2645
2646     nasp->offset = htons(stack_action->subfield.ofs);
2647
2648     ofpbuf_use_stack(&b, nasp, ntohs(nasp->len));
2649     ofpbuf_put_uninit(&b, OBJECT_OFFSETOF(nasp, pad));
2650     nx_put_header(&b, stack_action->subfield.field->id, 0, false);
2651     n_bits = htons(stack_action->subfield.n_bits);
2652     ofpbuf_put(&b, &n_bits, sizeof n_bits);
2653 }
2654
2655 static void
2656 encode_STACK_PUSH(const struct ofpact_stack *stack,
2657                   enum ofp_version ofp_version OVS_UNUSED, struct ofpbuf *out)
2658 {
2659     encode_STACK_op(stack, put_NXAST_STACK_PUSH(out));
2660 }
2661
2662 static void
2663 encode_STACK_POP(const struct ofpact_stack *stack,
2664                  enum ofp_version ofp_version OVS_UNUSED, struct ofpbuf *out)
2665 {
2666     encode_STACK_op(stack, put_NXAST_STACK_POP(out));
2667 }
2668
2669 static char * OVS_WARN_UNUSED_RESULT
2670 parse_STACK_PUSH(char *arg, struct ofpbuf *ofpacts,
2671                  enum ofputil_protocol *usable_protocols OVS_UNUSED)
2672 {
2673     return nxm_parse_stack_action(ofpact_put_STACK_PUSH(ofpacts), arg);
2674 }
2675
2676 static char * OVS_WARN_UNUSED_RESULT
2677 parse_STACK_POP(char *arg, struct ofpbuf *ofpacts,
2678                 enum ofputil_protocol *usable_protocols OVS_UNUSED)
2679 {
2680     return nxm_parse_stack_action(ofpact_put_STACK_POP(ofpacts), arg);
2681 }
2682
2683 static void
2684 format_STACK_PUSH(const struct ofpact_stack *a, struct ds *s)
2685 {
2686     nxm_format_stack_push(a, s);
2687 }
2688
2689 static void
2690 format_STACK_POP(const struct ofpact_stack *a, struct ds *s)
2691 {
2692     nxm_format_stack_pop(a, s);
2693 }
2694 \f
2695 /* Action structure for NXAST_DEC_TTL_CNT_IDS.
2696  *
2697  * If the packet is not IPv4 or IPv6, does nothing.  For IPv4 or IPv6, if the
2698  * TTL or hop limit is at least 2, decrements it by 1.  Otherwise, if TTL or
2699  * hop limit is 0 or 1, sends a packet-in to the controllers with each of the
2700  * 'n_controllers' controller IDs specified in 'cnt_ids'.
2701  *
2702  * (This differs from NXAST_DEC_TTL in that for NXAST_DEC_TTL the packet-in is
2703  * sent only to controllers with id 0.)
2704  */
2705 struct nx_action_cnt_ids {
2706     ovs_be16 type;              /* OFPAT_VENDOR. */
2707     ovs_be16 len;               /* Length including slaves. */
2708     ovs_be32 vendor;            /* NX_VENDOR_ID. */
2709     ovs_be16 subtype;           /* NXAST_DEC_TTL_CNT_IDS. */
2710
2711     ovs_be16 n_controllers;     /* Number of controllers. */
2712     uint8_t zeros[4];           /* Must be zero. */
2713
2714     /* Followed by 1 or more controller ids.
2715      *
2716      * uint16_t cnt_ids[];        // Controller ids.
2717      * uint8_t pad[];           // Must be 0 to 8-byte align cnt_ids[].
2718      */
2719 };
2720 OFP_ASSERT(sizeof(struct nx_action_cnt_ids) == 16);
2721
2722 static enum ofperr
2723 decode_OFPAT_RAW_DEC_NW_TTL(struct ofpbuf *out)
2724 {
2725     uint16_t id = 0;
2726     struct ofpact_cnt_ids *ids;
2727     enum ofperr error = 0;
2728
2729     ids = ofpact_put_DEC_TTL(out);
2730     ids->n_controllers = 1;
2731     ofpbuf_put(out, &id, sizeof id);
2732     ids = out->frame;
2733     ofpact_update_len(out, &ids->ofpact);
2734     return error;
2735 }
2736
2737 static enum ofperr
2738 decode_NXAST_RAW_DEC_TTL_CNT_IDS(const struct nx_action_cnt_ids *nac_ids,
2739                                  struct ofpbuf *out)
2740 {
2741     struct ofpact_cnt_ids *ids;
2742     size_t ids_size;
2743     int i;
2744
2745     ids = ofpact_put_DEC_TTL(out);
2746     ids->ofpact.raw = NXAST_RAW_DEC_TTL_CNT_IDS;
2747     ids->n_controllers = ntohs(nac_ids->n_controllers);
2748     ids_size = ntohs(nac_ids->len) - sizeof *nac_ids;
2749
2750     if (!is_all_zeros(nac_ids->zeros, sizeof nac_ids->zeros)) {
2751         return OFPERR_NXBRC_MUST_BE_ZERO;
2752     }
2753
2754     if (ids_size < ids->n_controllers * sizeof(ovs_be16)) {
2755         VLOG_WARN_RL(&rl, "Nicira action dec_ttl_cnt_ids only has %"PRIuSIZE" "
2756                      "bytes allocated for controller ids.  %"PRIuSIZE" bytes "
2757                      "are required for %"PRIu16" controllers.",
2758                      ids_size, ids->n_controllers * sizeof(ovs_be16),
2759                      ids->n_controllers);
2760         return OFPERR_OFPBAC_BAD_LEN;
2761     }
2762
2763     for (i = 0; i < ids->n_controllers; i++) {
2764         uint16_t id = ntohs(((ovs_be16 *)(nac_ids + 1))[i]);
2765         ofpbuf_put(out, &id, sizeof id);
2766         ids = out->frame;
2767     }
2768
2769     ofpact_update_len(out, &ids->ofpact);
2770
2771     return 0;
2772 }
2773
2774 static void
2775 encode_DEC_TTL(const struct ofpact_cnt_ids *dec_ttl,
2776                enum ofp_version ofp_version, struct ofpbuf *out)
2777 {
2778     if (dec_ttl->ofpact.raw == NXAST_RAW_DEC_TTL_CNT_IDS
2779         || dec_ttl->n_controllers != 1
2780         || dec_ttl->cnt_ids[0] != 0) {
2781         struct nx_action_cnt_ids *nac_ids = put_NXAST_DEC_TTL_CNT_IDS(out);
2782         int ids_len = ROUND_UP(2 * dec_ttl->n_controllers, OFP_ACTION_ALIGN);
2783         ovs_be16 *ids;
2784         size_t i;
2785
2786         nac_ids->len = htons(ntohs(nac_ids->len) + ids_len);
2787         nac_ids->n_controllers = htons(dec_ttl->n_controllers);
2788
2789         ids = ofpbuf_put_zeros(out, ids_len);
2790         for (i = 0; i < dec_ttl->n_controllers; i++) {
2791             ids[i] = htons(dec_ttl->cnt_ids[i]);
2792         }
2793     } else {
2794         put_OFPAT_DEC_NW_TTL(out, ofp_version);
2795     }
2796 }
2797
2798 static void
2799 parse_noargs_dec_ttl(struct ofpbuf *ofpacts)
2800 {
2801     struct ofpact_cnt_ids *ids;
2802     uint16_t id = 0;
2803
2804     ofpact_put_DEC_TTL(ofpacts);
2805     ofpbuf_put(ofpacts, &id, sizeof id);
2806     ids = ofpacts->frame;
2807     ids->n_controllers++;
2808     ofpact_update_len(ofpacts, &ids->ofpact);
2809 }
2810
2811 static char * OVS_WARN_UNUSED_RESULT
2812 parse_DEC_TTL(char *arg, struct ofpbuf *ofpacts,
2813               enum ofputil_protocol *usable_protocols OVS_UNUSED)
2814 {
2815     if (*arg == '\0') {
2816         parse_noargs_dec_ttl(ofpacts);
2817     } else {
2818         struct ofpact_cnt_ids *ids;
2819         char *cntr;
2820
2821         ids = ofpact_put_DEC_TTL(ofpacts);
2822         ids->ofpact.raw = NXAST_RAW_DEC_TTL_CNT_IDS;
2823         for (cntr = strtok_r(arg, ", ", &arg); cntr != NULL;
2824              cntr = strtok_r(NULL, ", ", &arg)) {
2825             uint16_t id = atoi(cntr);
2826
2827             ofpbuf_put(ofpacts, &id, sizeof id);
2828             ids = ofpacts->frame;
2829             ids->n_controllers++;
2830         }
2831         if (!ids->n_controllers) {
2832             return xstrdup("dec_ttl_cnt_ids: expected at least one controller "
2833                            "id.");
2834         }
2835         ofpact_update_len(ofpacts, &ids->ofpact);
2836     }
2837     return NULL;
2838 }
2839
2840 static void
2841 format_DEC_TTL(const struct ofpact_cnt_ids *a, struct ds *s)
2842 {
2843     size_t i;
2844
2845     ds_put_cstr(s, "dec_ttl");
2846     if (a->ofpact.raw == NXAST_RAW_DEC_TTL_CNT_IDS) {
2847         ds_put_cstr(s, "(");
2848         for (i = 0; i < a->n_controllers; i++) {
2849             if (i) {
2850                 ds_put_cstr(s, ",");
2851             }
2852             ds_put_format(s, "%"PRIu16, a->cnt_ids[i]);
2853         }
2854         ds_put_cstr(s, ")");
2855     }
2856 }
2857 \f
2858 /* Set MPLS label actions. */
2859
2860 static enum ofperr
2861 decode_OFPAT_RAW_SET_MPLS_LABEL(ovs_be32 label, struct ofpbuf *out)
2862 {
2863     ofpact_put_SET_MPLS_LABEL(out)->label = label;
2864     return 0;
2865 }
2866
2867 static void
2868 encode_SET_MPLS_LABEL(const struct ofpact_mpls_label *label,
2869                       enum ofp_version ofp_version,
2870                                   struct ofpbuf *out)
2871 {
2872     if (ofp_version < OFP12_VERSION) {
2873         put_OFPAT_SET_MPLS_LABEL(out, ofp_version, label->label);
2874     } else {
2875         ofpact_put_set_field(out, ofp_version, MFF_MPLS_LABEL,
2876                              ntohl(label->label));
2877     }
2878 }
2879
2880 static char * OVS_WARN_UNUSED_RESULT
2881 parse_SET_MPLS_LABEL(char *arg, struct ofpbuf *ofpacts,
2882                      enum ofputil_protocol *usable_protocols OVS_UNUSED)
2883 {
2884     struct ofpact_mpls_label *mpls_label = ofpact_put_SET_MPLS_LABEL(ofpacts);
2885     if (*arg == '\0') {
2886         return xstrdup("set_mpls_label: expected label.");
2887     }
2888
2889     mpls_label->label = htonl(atoi(arg));
2890     return NULL;
2891 }
2892
2893 static void
2894 format_SET_MPLS_LABEL(const struct ofpact_mpls_label *a, struct ds *s)
2895 {
2896     ds_put_format(s, "set_mpls_label(%"PRIu32")", ntohl(a->label));
2897 }
2898 \f
2899 /* Set MPLS TC actions. */
2900
2901 static enum ofperr
2902 decode_OFPAT_RAW_SET_MPLS_TC(uint8_t tc, struct ofpbuf *out)
2903 {
2904     ofpact_put_SET_MPLS_TC(out)->tc = tc;
2905     return 0;
2906 }
2907
2908 static void
2909 encode_SET_MPLS_TC(const struct ofpact_mpls_tc *tc,
2910                    enum ofp_version ofp_version, struct ofpbuf *out)
2911 {
2912     if (ofp_version < OFP12_VERSION) {
2913         put_OFPAT_SET_MPLS_TC(out, ofp_version, tc->tc);
2914     } else {
2915         ofpact_put_set_field(out, ofp_version, MFF_MPLS_TC, tc->tc);
2916     }
2917 }
2918
2919 static char * OVS_WARN_UNUSED_RESULT
2920 parse_SET_MPLS_TC(char *arg, struct ofpbuf *ofpacts,
2921                   enum ofputil_protocol *usable_protocols OVS_UNUSED)
2922 {
2923     struct ofpact_mpls_tc *mpls_tc = ofpact_put_SET_MPLS_TC(ofpacts);
2924
2925     if (*arg == '\0') {
2926         return xstrdup("set_mpls_tc: expected tc.");
2927     }
2928
2929     mpls_tc->tc = atoi(arg);
2930     return NULL;
2931 }
2932
2933 static void
2934 format_SET_MPLS_TC(const struct ofpact_mpls_tc *a, struct ds *s)
2935 {
2936     ds_put_format(s, "set_mpls_ttl(%"PRIu8")", a->tc);
2937 }
2938 \f
2939 /* Set MPLS TTL actions. */
2940
2941 static enum ofperr
2942 decode_OFPAT_RAW_SET_MPLS_TTL(uint8_t ttl, struct ofpbuf *out)
2943 {
2944     ofpact_put_SET_MPLS_TTL(out)->ttl = ttl;
2945     return 0;
2946 }
2947
2948 static void
2949 encode_SET_MPLS_TTL(const struct ofpact_mpls_ttl *ttl,
2950                     enum ofp_version ofp_version, struct ofpbuf *out)
2951 {
2952     put_OFPAT_SET_MPLS_TTL(out, ofp_version, ttl->ttl);
2953 }
2954
2955 /* Parses 'arg' as the argument to a "set_mpls_ttl" action, and appends such an
2956  * action to 'ofpacts'.
2957  *
2958  * Returns NULL if successful, otherwise a malloc()'d string describing the
2959  * error.  The caller is responsible for freeing the returned string. */
2960 static char * OVS_WARN_UNUSED_RESULT
2961 parse_SET_MPLS_TTL(char *arg, struct ofpbuf *ofpacts,
2962                    enum ofputil_protocol *usable_protocols OVS_UNUSED)
2963 {
2964     struct ofpact_mpls_ttl *mpls_ttl = ofpact_put_SET_MPLS_TTL(ofpacts);
2965
2966     if (*arg == '\0') {
2967         return xstrdup("set_mpls_ttl: expected ttl.");
2968     }
2969
2970     mpls_ttl->ttl = atoi(arg);
2971     return NULL;
2972 }
2973
2974 static void
2975 format_SET_MPLS_TTL(const struct ofpact_mpls_ttl *a, struct ds *s)
2976 {
2977     ds_put_format(s, "set_mpls_ttl(%"PRIu8")", a->ttl);
2978 }
2979 \f
2980 /* Decrement MPLS TTL actions. */
2981
2982 static enum ofperr
2983 decode_OFPAT_RAW_DEC_MPLS_TTL(struct ofpbuf *out)
2984 {
2985     ofpact_put_DEC_MPLS_TTL(out);
2986     return 0;
2987 }
2988
2989 static void
2990 encode_DEC_MPLS_TTL(const struct ofpact_null *null OVS_UNUSED,
2991                     enum ofp_version ofp_version, struct ofpbuf *out)
2992 {
2993     put_OFPAT_DEC_MPLS_TTL(out, ofp_version);
2994 }
2995
2996 static char * OVS_WARN_UNUSED_RESULT
2997 parse_DEC_MPLS_TTL(char *arg OVS_UNUSED, struct ofpbuf *ofpacts,
2998                    enum ofputil_protocol *usable_protocols OVS_UNUSED)
2999 {
3000     ofpact_put_DEC_MPLS_TTL(ofpacts);
3001     return NULL;
3002 }
3003
3004 static void
3005 format_DEC_MPLS_TTL(const struct ofpact_null *a OVS_UNUSED, struct ds *s)
3006 {
3007     ds_put_cstr(s, "dec_mpls_ttl");
3008 }
3009 \f
3010 /* Push MPLS label action. */
3011
3012 static enum ofperr
3013 decode_OFPAT_RAW_PUSH_MPLS(ovs_be16 ethertype, struct ofpbuf *out)
3014 {
3015     struct ofpact_push_mpls *oam;
3016
3017     if (!eth_type_mpls(ethertype)) {
3018         return OFPERR_OFPBAC_BAD_ARGUMENT;
3019     }
3020     oam = ofpact_put_PUSH_MPLS(out);
3021     oam->ethertype = ethertype;
3022
3023     return 0;
3024 }
3025
3026 static void
3027 encode_PUSH_MPLS(const struct ofpact_push_mpls *push_mpls,
3028                  enum ofp_version ofp_version, struct ofpbuf *out)
3029 {
3030     put_OFPAT_PUSH_MPLS(out, ofp_version, push_mpls->ethertype);
3031 }
3032
3033 static char * OVS_WARN_UNUSED_RESULT
3034 parse_PUSH_MPLS(char *arg, struct ofpbuf *ofpacts,
3035                 enum ofputil_protocol *usable_protocols OVS_UNUSED)
3036 {
3037     uint16_t ethertype;
3038     char *error;
3039
3040     error = str_to_u16(arg, "push_mpls", &ethertype);
3041     if (!error) {
3042         ofpact_put_PUSH_MPLS(ofpacts)->ethertype = htons(ethertype);
3043     }
3044     return error;
3045 }
3046
3047 static void
3048 format_PUSH_MPLS(const struct ofpact_push_mpls *a, struct ds *s)
3049 {
3050     ds_put_format(s, "push_mpls:0x%04"PRIx16, ntohs(a->ethertype));
3051 }
3052 \f
3053 /* Pop MPLS label action. */
3054
3055 static enum ofperr
3056 decode_OFPAT_RAW_POP_MPLS(ovs_be16 ethertype, struct ofpbuf *out)
3057 {
3058     ofpact_put_POP_MPLS(out)->ethertype = ethertype;
3059     return 0;
3060 }
3061
3062 static void
3063 encode_POP_MPLS(const struct ofpact_pop_mpls *pop_mpls,
3064                 enum ofp_version ofp_version, struct ofpbuf *out)
3065 {
3066     put_OFPAT_POP_MPLS(out, ofp_version, pop_mpls->ethertype);
3067 }
3068
3069 static char * OVS_WARN_UNUSED_RESULT
3070 parse_POP_MPLS(char *arg, struct ofpbuf *ofpacts,
3071                     enum ofputil_protocol *usable_protocols OVS_UNUSED)
3072 {
3073     uint16_t ethertype;
3074     char *error;
3075
3076     error = str_to_u16(arg, "pop_mpls", &ethertype);
3077     if (!error) {
3078         ofpact_put_POP_MPLS(ofpacts)->ethertype = htons(ethertype);
3079     }
3080     return error;
3081 }
3082
3083 static void
3084 format_POP_MPLS(const struct ofpact_pop_mpls *a, struct ds *s)
3085 {
3086     ds_put_format(s, "pop_mpls:0x%04"PRIx16, ntohs(a->ethertype));
3087 }
3088 \f
3089 /* Set tunnel ID actions. */
3090
3091 static enum ofperr
3092 decode_NXAST_RAW_SET_TUNNEL(uint32_t tun_id, struct ofpbuf *out)
3093 {
3094     struct ofpact_tunnel *tunnel = ofpact_put_SET_TUNNEL(out);
3095     tunnel->ofpact.raw = NXAST_RAW_SET_TUNNEL;
3096     tunnel->tun_id = tun_id;
3097     return 0;
3098 }
3099
3100 static enum ofperr
3101 decode_NXAST_RAW_SET_TUNNEL64(uint64_t tun_id, struct ofpbuf *out)
3102 {
3103     struct ofpact_tunnel *tunnel = ofpact_put_SET_TUNNEL(out);
3104     tunnel->ofpact.raw = NXAST_RAW_SET_TUNNEL64;
3105     tunnel->tun_id = tun_id;
3106     return 0;
3107 }
3108
3109 static void
3110 encode_SET_TUNNEL(const struct ofpact_tunnel *tunnel,
3111                   enum ofp_version ofp_version, struct ofpbuf *out)
3112 {
3113     uint64_t tun_id = tunnel->tun_id;
3114
3115     if (ofp_version < OFP12_VERSION) {
3116         if (tun_id <= UINT32_MAX
3117             && tunnel->ofpact.raw != NXAST_RAW_SET_TUNNEL64) {
3118             put_NXAST_SET_TUNNEL(out, tun_id);
3119         } else {
3120             put_NXAST_SET_TUNNEL64(out, tun_id);
3121         }
3122     } else {
3123         ofpact_put_set_field(out, ofp_version, MFF_TUN_ID, tun_id);
3124     }
3125 }
3126
3127 static char * OVS_WARN_UNUSED_RESULT
3128 parse_set_tunnel(char *arg, struct ofpbuf *ofpacts,
3129                  enum ofp_raw_action_type raw)
3130 {
3131     struct ofpact_tunnel *tunnel;
3132
3133     tunnel = ofpact_put_SET_TUNNEL(ofpacts);
3134     tunnel->ofpact.raw = raw;
3135     return str_to_u64(arg, &tunnel->tun_id);
3136 }
3137
3138 static char * OVS_WARN_UNUSED_RESULT
3139 parse_SET_TUNNEL(char *arg, struct ofpbuf *ofpacts,
3140                  enum ofputil_protocol *usable_protocols OVS_UNUSED)
3141 {
3142     return parse_set_tunnel(arg, ofpacts, NXAST_RAW_SET_TUNNEL);
3143 }
3144
3145 static void
3146 format_SET_TUNNEL(const struct ofpact_tunnel *a, struct ds *s)
3147 {
3148     ds_put_format(s, "set_tunnel%s:%#"PRIx64,
3149                   (a->tun_id > UINT32_MAX
3150                    || a->ofpact.raw == NXAST_RAW_SET_TUNNEL64 ? "64" : ""),
3151                   a->tun_id);
3152 }
3153 \f
3154 /* Set queue action. */
3155
3156 static enum ofperr
3157 decode_OFPAT_RAW_SET_QUEUE(uint32_t queue_id, struct ofpbuf *out)
3158 {
3159     ofpact_put_SET_QUEUE(out)->queue_id = queue_id;
3160     return 0;
3161 }
3162
3163 static void
3164 encode_SET_QUEUE(const struct ofpact_queue *queue,
3165                  enum ofp_version ofp_version, struct ofpbuf *out)
3166 {
3167     put_OFPAT_SET_QUEUE(out, ofp_version, queue->queue_id);
3168 }
3169
3170 static char * OVS_WARN_UNUSED_RESULT
3171 parse_SET_QUEUE(char *arg, struct ofpbuf *ofpacts,
3172                 enum ofputil_protocol *usable_protocols OVS_UNUSED)
3173 {
3174     return str_to_u32(arg, &ofpact_put_SET_QUEUE(ofpacts)->queue_id);
3175 }
3176
3177 static void
3178 format_SET_QUEUE(const struct ofpact_queue *a, struct ds *s)
3179 {
3180     ds_put_format(s, "set_queue:%"PRIu32, a->queue_id);
3181 }
3182 \f
3183 /* Pop queue action. */
3184
3185 static enum ofperr
3186 decode_NXAST_RAW_POP_QUEUE(struct ofpbuf *out)
3187 {
3188     ofpact_put_POP_QUEUE(out);
3189     return 0;
3190 }
3191
3192 static void
3193 encode_POP_QUEUE(const struct ofpact_null *null OVS_UNUSED,
3194                  enum ofp_version ofp_version OVS_UNUSED, struct ofpbuf *out)
3195 {
3196     put_NXAST_POP_QUEUE(out);
3197 }
3198
3199 static char * OVS_WARN_UNUSED_RESULT
3200 parse_POP_QUEUE(const char *arg OVS_UNUSED, struct ofpbuf *ofpacts,
3201                 enum ofputil_protocol *usable_protocols OVS_UNUSED)
3202 {
3203     ofpact_put_POP_QUEUE(ofpacts);
3204     return NULL;
3205 }
3206
3207 static void
3208 format_POP_QUEUE(const struct ofpact_null *a OVS_UNUSED, struct ds *s)
3209 {
3210     ds_put_cstr(s, "pop_queue");
3211 }
3212 \f
3213 /* Action structure for NXAST_FIN_TIMEOUT.
3214  *
3215  * This action changes the idle timeout or hard timeout, or both, of this
3216  * OpenFlow rule when the rule matches a TCP packet with the FIN or RST flag.
3217  * When such a packet is observed, the action reduces the rule's idle timeout
3218  * to 'fin_idle_timeout' and its hard timeout to 'fin_hard_timeout'.  This
3219  * action has no effect on an existing timeout that is already shorter than the
3220  * one that the action specifies.  A 'fin_idle_timeout' or 'fin_hard_timeout'
3221  * of zero has no effect on the respective timeout.
3222  *
3223  * 'fin_idle_timeout' and 'fin_hard_timeout' are measured in seconds.
3224  * 'fin_hard_timeout' specifies time since the flow's creation, not since the
3225  * receipt of the FIN or RST.
3226  *
3227  * This is useful for quickly discarding learned TCP flows that otherwise will
3228  * take a long time to expire.
3229  *
3230  * This action is intended for use with an OpenFlow rule that matches only a
3231  * single TCP flow.  If the rule matches multiple TCP flows (e.g. it wildcards
3232  * all TCP traffic, or all TCP traffic to a particular port), then any FIN or
3233  * RST in any of those flows will cause the entire OpenFlow rule to expire
3234  * early, which is not normally desirable.
3235  */
3236 struct nx_action_fin_timeout {
3237     ovs_be16 type;              /* OFPAT_VENDOR. */
3238     ovs_be16 len;               /* 16. */
3239     ovs_be32 vendor;            /* NX_VENDOR_ID. */
3240     ovs_be16 subtype;           /* NXAST_FIN_TIMEOUT. */
3241     ovs_be16 fin_idle_timeout;  /* New idle timeout, if nonzero. */
3242     ovs_be16 fin_hard_timeout;  /* New hard timeout, if nonzero. */
3243     ovs_be16 pad;               /* Must be zero. */
3244 };
3245 OFP_ASSERT(sizeof(struct nx_action_fin_timeout) == 16);
3246
3247 static enum ofperr
3248 decode_NXAST_RAW_FIN_TIMEOUT(const struct nx_action_fin_timeout *naft,
3249                              struct ofpbuf *out)
3250 {
3251     struct ofpact_fin_timeout *oft;
3252
3253     oft = ofpact_put_FIN_TIMEOUT(out);
3254     oft->fin_idle_timeout = ntohs(naft->fin_idle_timeout);
3255     oft->fin_hard_timeout = ntohs(naft->fin_hard_timeout);
3256     return 0;
3257 }
3258
3259 static void
3260 encode_FIN_TIMEOUT(const struct ofpact_fin_timeout *fin_timeout,
3261                    enum ofp_version ofp_version OVS_UNUSED,
3262                    struct ofpbuf *out)
3263 {
3264     struct nx_action_fin_timeout *naft = put_NXAST_FIN_TIMEOUT(out);
3265     naft->fin_idle_timeout = htons(fin_timeout->fin_idle_timeout);
3266     naft->fin_hard_timeout = htons(fin_timeout->fin_hard_timeout);
3267 }
3268
3269 static char * OVS_WARN_UNUSED_RESULT
3270 parse_FIN_TIMEOUT(char *arg, struct ofpbuf *ofpacts,
3271                   enum ofputil_protocol *usable_protocols OVS_UNUSED)
3272 {
3273     struct ofpact_fin_timeout *oft = ofpact_put_FIN_TIMEOUT(ofpacts);
3274     char *key, *value;
3275
3276     while (ofputil_parse_key_value(&arg, &key, &value)) {
3277         char *error;
3278
3279         if (!strcmp(key, "idle_timeout")) {
3280             error =  str_to_u16(value, key, &oft->fin_idle_timeout);
3281         } else if (!strcmp(key, "hard_timeout")) {
3282             error = str_to_u16(value, key, &oft->fin_hard_timeout);
3283         } else {
3284             error = xasprintf("invalid key '%s' in 'fin_timeout' argument",
3285                               key);
3286         }
3287
3288         if (error) {
3289             return error;
3290         }
3291     }
3292     return NULL;
3293 }
3294
3295 static void
3296 format_FIN_TIMEOUT(const struct ofpact_fin_timeout *a, struct ds *s)
3297 {
3298     ds_put_cstr(s, "fin_timeout(");
3299     if (a->fin_idle_timeout) {
3300         ds_put_format(s, "idle_timeout=%"PRIu16",", a->fin_idle_timeout);
3301     }
3302     if (a->fin_hard_timeout) {
3303         ds_put_format(s, "hard_timeout=%"PRIu16",", a->fin_hard_timeout);
3304     }
3305     ds_chomp(s, ',');
3306     ds_put_char(s, ')');
3307 }
3308 \f
3309 /* Action structures for NXAST_RESUBMIT and NXAST_RESUBMIT_TABLE.
3310  *
3311  * These actions search one of the switch's flow tables:
3312  *
3313  *    - For NXAST_RESUBMIT_TABLE only, if the 'table' member is not 255, then
3314  *      it specifies the table to search.
3315  *
3316  *    - Otherwise (for NXAST_RESUBMIT_TABLE with a 'table' of 255, or for
3317  *      NXAST_RESUBMIT regardless of 'table'), it searches the current flow
3318  *      table, that is, the OpenFlow flow table that contains the flow from
3319  *      which this action was obtained.  If this action did not come from a
3320  *      flow table (e.g. it came from an OFPT_PACKET_OUT message), then table 0
3321  *      is the current table.
3322  *
3323  * The flow table lookup uses a flow that may be slightly modified from the
3324  * original lookup:
3325  *
3326  *    - For NXAST_RESUBMIT, the 'in_port' member of struct nx_action_resubmit
3327  *      is used as the flow's in_port.
3328  *
3329  *    - For NXAST_RESUBMIT_TABLE, if the 'in_port' member is not OFPP_IN_PORT,
3330  *      then its value is used as the flow's in_port.  Otherwise, the original
3331  *      in_port is used.
3332  *
3333  *    - If actions that modify the flow (e.g. OFPAT_SET_VLAN_VID) precede the
3334  *      resubmit action, then the flow is updated with the new values.
3335  *
3336  * Following the lookup, the original in_port is restored.
3337  *
3338  * If the modified flow matched in the flow table, then the corresponding
3339  * actions are executed.  Afterward, actions following the resubmit in the
3340  * original set of actions, if any, are executed; any changes made to the
3341  * packet (e.g. changes to VLAN) by secondary actions persist when those
3342  * actions are executed, although the original in_port is restored.
3343  *
3344  * Resubmit actions may be used any number of times within a set of actions.
3345  *
3346  * Resubmit actions may nest to an implementation-defined depth.  Beyond this
3347  * implementation-defined depth, further resubmit actions are simply ignored.
3348  *
3349  * NXAST_RESUBMIT ignores 'table' and 'pad'.  NXAST_RESUBMIT_TABLE requires
3350  * 'pad' to be all-bits-zero.
3351  *
3352  * Open vSwitch 1.0.1 and earlier did not support recursion.  Open vSwitch
3353  * before 1.2.90 did not support NXAST_RESUBMIT_TABLE.
3354  */
3355 struct nx_action_resubmit {
3356     ovs_be16 type;                  /* OFPAT_VENDOR. */
3357     ovs_be16 len;                   /* Length is 16. */
3358     ovs_be32 vendor;                /* NX_VENDOR_ID. */
3359     ovs_be16 subtype;               /* NXAST_RESUBMIT. */
3360     ovs_be16 in_port;               /* New in_port for checking flow table. */
3361     uint8_t table;                  /* NXAST_RESUBMIT_TABLE: table to use. */
3362     uint8_t pad[3];
3363 };
3364 OFP_ASSERT(sizeof(struct nx_action_resubmit) == 16);
3365
3366 static enum ofperr
3367 decode_NXAST_RAW_RESUBMIT(uint16_t port, struct ofpbuf *out)
3368 {
3369     struct ofpact_resubmit *resubmit;
3370
3371     resubmit = ofpact_put_RESUBMIT(out);
3372     resubmit->ofpact.raw = NXAST_RAW_RESUBMIT;
3373     resubmit->in_port = u16_to_ofp(port);
3374     resubmit->table_id = 0xff;
3375     return 0;
3376 }
3377
3378 static enum ofperr
3379 decode_NXAST_RAW_RESUBMIT_TABLE(const struct nx_action_resubmit *nar,
3380                                 struct ofpbuf *out)
3381 {
3382     struct ofpact_resubmit *resubmit;
3383
3384     if (nar->pad[0] || nar->pad[1] || nar->pad[2]) {
3385         return OFPERR_OFPBAC_BAD_ARGUMENT;
3386     }
3387
3388     resubmit = ofpact_put_RESUBMIT(out);
3389     resubmit->ofpact.raw = NXAST_RAW_RESUBMIT_TABLE;
3390     resubmit->in_port = u16_to_ofp(ntohs(nar->in_port));
3391     resubmit->table_id = nar->table;
3392     return 0;
3393 }
3394
3395 static void
3396 encode_RESUBMIT(const struct ofpact_resubmit *resubmit,
3397                 enum ofp_version ofp_version OVS_UNUSED, struct ofpbuf *out)
3398 {
3399     uint16_t in_port = ofp_to_u16(resubmit->in_port);
3400
3401     if (resubmit->table_id == 0xff
3402         && resubmit->ofpact.raw != NXAST_RAW_RESUBMIT_TABLE) {
3403         put_NXAST_RESUBMIT(out, in_port);
3404     } else {
3405         struct nx_action_resubmit *nar = put_NXAST_RESUBMIT_TABLE(out);
3406         nar->table = resubmit->table_id;
3407         nar->in_port = htons(in_port);
3408     }
3409 }
3410
3411 static char * OVS_WARN_UNUSED_RESULT
3412 parse_RESUBMIT(char *arg, struct ofpbuf *ofpacts,
3413                enum ofputil_protocol *usable_protocols OVS_UNUSED)
3414 {
3415     struct ofpact_resubmit *resubmit;
3416     char *in_port_s, *table_s;
3417
3418     resubmit = ofpact_put_RESUBMIT(ofpacts);
3419
3420     in_port_s = strsep(&arg, ",");
3421     if (in_port_s && in_port_s[0]) {
3422         if (!ofputil_port_from_string(in_port_s, &resubmit->in_port)) {
3423             return xasprintf("%s: resubmit to unknown port", in_port_s);
3424         }
3425     } else {
3426         resubmit->in_port = OFPP_IN_PORT;
3427     }
3428
3429     table_s = strsep(&arg, ",");
3430     if (table_s && table_s[0]) {
3431         uint32_t table_id = 0;
3432         char *error;
3433
3434         error = str_to_u32(table_s, &table_id);
3435         if (error) {
3436             return error;
3437         }
3438         resubmit->table_id = table_id;
3439     } else {
3440         resubmit->table_id = 255;
3441     }
3442
3443     if (resubmit->in_port == OFPP_IN_PORT && resubmit->table_id == 255) {
3444         return xstrdup("at least one \"in_port\" or \"table\" must be "
3445                        "specified  on resubmit");
3446     }
3447     return NULL;
3448 }
3449
3450 static void
3451 format_RESUBMIT(const struct ofpact_resubmit *a, struct ds *s)
3452 {
3453     if (a->in_port != OFPP_IN_PORT && a->table_id == 255) {
3454         ds_put_cstr(s, "resubmit:");
3455         ofputil_format_port(a->in_port, s);
3456     } else {
3457         ds_put_format(s, "resubmit(");
3458         if (a->in_port != OFPP_IN_PORT) {
3459             ofputil_format_port(a->in_port, s);
3460         }
3461         ds_put_char(s, ',');
3462         if (a->table_id != 255) {
3463             ds_put_format(s, "%"PRIu8, a->table_id);
3464         }
3465         ds_put_char(s, ')');
3466     }
3467 }
3468 \f
3469 /* Action structure for NXAST_LEARN.
3470  *
3471  * This action adds or modifies a flow in an OpenFlow table, similar to
3472  * OFPT_FLOW_MOD with OFPFC_MODIFY_STRICT as 'command'.  The new flow has the
3473  * specified idle timeout, hard timeout, priority, cookie, and flags.  The new
3474  * flow's match criteria and actions are built by applying each of the series
3475  * of flow_mod_spec elements included as part of the action.
3476  *
3477  * A flow_mod_spec starts with a 16-bit header.  A header that is all-bits-0 is
3478  * a no-op used for padding the action as a whole to a multiple of 8 bytes in
3479  * length.  Otherwise, the flow_mod_spec can be thought of as copying 'n_bits'
3480  * bits from a source to a destination.  In this case, the header contains
3481  * multiple fields:
3482  *
3483  *  15  14  13 12  11 10                              0
3484  * +------+---+------+---------------------------------+
3485  * |   0  |src|  dst |             n_bits              |
3486  * +------+---+------+---------------------------------+
3487  *
3488  * The meaning and format of a flow_mod_spec depends on 'src' and 'dst'.  The
3489  * following table summarizes the meaning of each possible combination.
3490  * Details follow the table:
3491  *
3492  *   src dst  meaning
3493  *   --- ---  ----------------------------------------------------------
3494  *    0   0   Add match criteria based on value in a field.
3495  *    1   0   Add match criteria based on an immediate value.
3496  *    0   1   Add NXAST_REG_LOAD action to copy field into a different field.
3497  *    1   1   Add NXAST_REG_LOAD action to load immediate value into a field.
3498  *    0   2   Add OFPAT_OUTPUT action to output to port from specified field.
3499  *   All other combinations are undefined and not allowed.
3500  *
3501  * The flow_mod_spec header is followed by a source specification and a
3502  * destination specification.  The format and meaning of the source
3503  * specification depends on 'src':
3504  *
3505  *   - If 'src' is 0, the source bits are taken from a field in the flow to
3506  *     which this action is attached.  (This should be a wildcarded field.  If
3507  *     its value is fully specified then the source bits being copied have
3508  *     constant values.)
3509  *
3510  *     The source specification is an ovs_be32 'field' and an ovs_be16 'ofs'.
3511  *     'field' is an nxm_header with nxm_hasmask=0, and 'ofs' the starting bit
3512  *     offset within that field.  The source bits are field[ofs:ofs+n_bits-1].
3513  *     'field' and 'ofs' are subject to the same restrictions as the source
3514  *     field in NXAST_REG_MOVE.
3515  *
3516  *   - If 'src' is 1, the source bits are a constant value.  The source
3517  *     specification is (n_bits+15)/16*2 bytes long.  Taking those bytes as a
3518  *     number in network order, the source bits are the 'n_bits'
3519  *     least-significant bits.  The switch will report an error if other bits
3520  *     in the constant are nonzero.
3521  *
3522  * The flow_mod_spec destination specification, for 'dst' of 0 or 1, is an
3523  * ovs_be32 'field' and an ovs_be16 'ofs'.  'field' is an nxm_header with
3524  * nxm_hasmask=0 and 'ofs' is a starting bit offset within that field.  The
3525  * meaning of the flow_mod_spec depends on 'dst':
3526  *
3527  *   - If 'dst' is 0, the flow_mod_spec specifies match criteria for the new
3528  *     flow.  The new flow matches only if bits field[ofs:ofs+n_bits-1] in a
3529  *     packet equal the source bits.  'field' may be any nxm_header with
3530  *     nxm_hasmask=0 that is allowed in NXT_FLOW_MOD.
3531  *
3532  *     Order is significant.  Earlier flow_mod_specs must satisfy any
3533  *     prerequisites for matching fields specified later, by copying constant
3534  *     values into prerequisite fields.
3535  *
3536  *     The switch will reject flow_mod_specs that do not satisfy NXM masking
3537  *     restrictions.
3538  *
3539  *   - If 'dst' is 1, the flow_mod_spec specifies an NXAST_REG_LOAD action for
3540  *     the new flow.  The new flow copies the source bits into
3541  *     field[ofs:ofs+n_bits-1].  Actions are executed in the same order as the
3542  *     flow_mod_specs.
3543  *
3544  *     A single NXAST_REG_LOAD action writes no more than 64 bits, so n_bits
3545  *     greater than 64 yields multiple NXAST_REG_LOAD actions.
3546  *
3547  * The flow_mod_spec destination spec for 'dst' of 2 (when 'src' is 0) is
3548  * empty.  It has the following meaning:
3549  *
3550  *   - The flow_mod_spec specifies an OFPAT_OUTPUT action for the new flow.
3551  *     The new flow outputs to the OpenFlow port specified by the source field.
3552  *     Of the special output ports with value OFPP_MAX or larger, OFPP_IN_PORT,
3553  *     OFPP_FLOOD, OFPP_LOCAL, and OFPP_ALL are supported.  Other special ports
3554  *     may not be used.
3555  *
3556  * Resource Management
3557  * -------------------
3558  *
3559  * A switch has a finite amount of flow table space available for learning.
3560  * When this space is exhausted, no new learning table entries will be learned
3561  * until some existing flow table entries expire.  The controller should be
3562  * prepared to handle this by flooding (which can be implemented as a
3563  * low-priority flow).
3564  *
3565  * If a learned flow matches a single TCP stream with a relatively long
3566  * timeout, one may make the best of resource constraints by setting
3567  * 'fin_idle_timeout' or 'fin_hard_timeout' (both measured in seconds), or
3568  * both, to shorter timeouts.  When either of these is specified as a nonzero
3569  * value, OVS adds a NXAST_FIN_TIMEOUT action, with the specified timeouts, to
3570  * the learned flow.
3571  *
3572  * Examples
3573  * --------
3574  *
3575  * The following examples give a prose description of the flow_mod_specs along
3576  * with informal notation for how those would be represented and a hex dump of
3577  * the bytes that would be required.
3578  *
3579  * These examples could work with various nx_action_learn parameters.  Typical
3580  * values would be idle_timeout=OFP_FLOW_PERMANENT, hard_timeout=60,
3581  * priority=OFP_DEFAULT_PRIORITY, flags=0, table_id=10.
3582  *
3583  * 1. Learn input port based on the source MAC, with lookup into
3584  *    NXM_NX_REG1[16:31] by resubmit to in_port=99:
3585  *
3586  *    Match on in_port=99:
3587  *       ovs_be16(src=1, dst=0, n_bits=16),               20 10
3588  *       ovs_be16(99),                                    00 63
3589  *       ovs_be32(NXM_OF_IN_PORT), ovs_be16(0)            00 00 00 02 00 00
3590  *
3591  *    Match Ethernet destination on Ethernet source from packet:
3592  *       ovs_be16(src=0, dst=0, n_bits=48),               00 30
3593  *       ovs_be32(NXM_OF_ETH_SRC), ovs_be16(0)            00 00 04 06 00 00
3594  *       ovs_be32(NXM_OF_ETH_DST), ovs_be16(0)            00 00 02 06 00 00
3595  *
3596  *    Set NXM_NX_REG1[16:31] to the packet's input port:
3597  *       ovs_be16(src=0, dst=1, n_bits=16),               08 10
3598  *       ovs_be32(NXM_OF_IN_PORT), ovs_be16(0)            00 00 00 02 00 00
3599  *       ovs_be32(NXM_NX_REG1), ovs_be16(16)              00 01 02 04 00 10
3600  *
3601  *    Given a packet that arrived on port A with Ethernet source address B,
3602  *    this would set up the flow "in_port=99, dl_dst=B,
3603  *    actions=load:A->NXM_NX_REG1[16..31]".
3604  *
3605  *    In syntax accepted by ovs-ofctl, this action is: learn(in_port=99,
3606  *    NXM_OF_ETH_DST[]=NXM_OF_ETH_SRC[],
3607  *    load:NXM_OF_IN_PORT[]->NXM_NX_REG1[16..31])
3608  *
3609  * 2. Output to input port based on the source MAC and VLAN VID, with lookup
3610  *    into NXM_NX_REG1[16:31]:
3611  *
3612  *    Match on same VLAN ID as packet:
3613  *       ovs_be16(src=0, dst=0, n_bits=12),               00 0c
3614  *       ovs_be32(NXM_OF_VLAN_TCI), ovs_be16(0)           00 00 08 02 00 00
3615  *       ovs_be32(NXM_OF_VLAN_TCI), ovs_be16(0)           00 00 08 02 00 00
3616  *
3617  *    Match Ethernet destination on Ethernet source from packet:
3618  *       ovs_be16(src=0, dst=0, n_bits=48),               00 30
3619  *       ovs_be32(NXM_OF_ETH_SRC), ovs_be16(0)            00 00 04 06 00 00
3620  *       ovs_be32(NXM_OF_ETH_DST), ovs_be16(0)            00 00 02 06 00 00
3621  *
3622  *    Output to the packet's input port:
3623  *       ovs_be16(src=0, dst=2, n_bits=16),               10 10
3624  *       ovs_be32(NXM_OF_IN_PORT), ovs_be16(0)            00 00 00 02 00 00
3625  *
3626  *    Given a packet that arrived on port A with Ethernet source address B in
3627  *    VLAN C, this would set up the flow "dl_dst=B, vlan_vid=C,
3628  *    actions=output:A".
3629  *
3630  *    In syntax accepted by ovs-ofctl, this action is:
3631  *    learn(NXM_OF_VLAN_TCI[0..11], NXM_OF_ETH_DST[]=NXM_OF_ETH_SRC[],
3632  *    output:NXM_OF_IN_PORT[])
3633  *
3634  * 3. Here's a recipe for a very simple-minded MAC learning switch.  It uses a
3635  *    10-second MAC expiration time to make it easier to see what's going on
3636  *
3637  *      ovs-vsctl del-controller br0
3638  *      ovs-ofctl del-flows br0
3639  *      ovs-ofctl add-flow br0 "table=0 actions=learn(table=1, \
3640           hard_timeout=10, NXM_OF_VLAN_TCI[0..11],             \
3641           NXM_OF_ETH_DST[]=NXM_OF_ETH_SRC[],                   \
3642           output:NXM_OF_IN_PORT[]), resubmit(,1)"
3643  *      ovs-ofctl add-flow br0 "table=1 priority=0 actions=flood"
3644  *
3645  *    You can then dump the MAC learning table with:
3646  *
3647  *      ovs-ofctl dump-flows br0 table=1
3648  *
3649  * Usage Advice
3650  * ------------
3651  *
3652  * For best performance, segregate learned flows into a table that is not used
3653  * for any other flows except possibly for a lowest-priority "catch-all" flow
3654  * (a flow with no match criteria).  If different learning actions specify
3655  * different match criteria, use different tables for the learned flows.
3656  *
3657  * The meaning of 'hard_timeout' and 'idle_timeout' can be counterintuitive.
3658  * These timeouts apply to the flow that is added, which means that a flow with
3659  * an idle timeout will expire when no traffic has been sent *to* the learned
3660  * address.  This is not usually the intent in MAC learning; instead, we want
3661  * the MAC learn entry to expire when no traffic has been sent *from* the
3662  * learned address.  Use a hard timeout for that.
3663  */
3664 struct nx_action_learn {
3665     ovs_be16 type;              /* OFPAT_VENDOR. */
3666     ovs_be16 len;               /* At least 24. */
3667     ovs_be32 vendor;            /* NX_VENDOR_ID. */
3668     ovs_be16 subtype;           /* NXAST_LEARN. */
3669     ovs_be16 idle_timeout;      /* Idle time before discarding (seconds). */
3670     ovs_be16 hard_timeout;      /* Max time before discarding (seconds). */
3671     ovs_be16 priority;          /* Priority level of flow entry. */
3672     ovs_be64 cookie;            /* Cookie for new flow. */
3673     ovs_be16 flags;             /* NX_LEARN_F_*. */
3674     uint8_t table_id;           /* Table to insert flow entry. */
3675     uint8_t pad;                /* Must be zero. */
3676     ovs_be16 fin_idle_timeout;  /* Idle timeout after FIN, if nonzero. */
3677     ovs_be16 fin_hard_timeout;  /* Hard timeout after FIN, if nonzero. */
3678     /* Followed by a sequence of flow_mod_spec elements, as described above,
3679      * until the end of the action is reached. */
3680 };
3681 OFP_ASSERT(sizeof(struct nx_action_learn) == 32);
3682
3683 static ovs_be16
3684 get_be16(const void **pp)
3685 {
3686     const ovs_be16 *p = *pp;
3687     ovs_be16 value = *p;
3688     *pp = p + 1;
3689     return value;
3690 }
3691
3692 static ovs_be32
3693 get_be32(const void **pp)
3694 {
3695     const ovs_be32 *p = *pp;
3696     ovs_be32 value = get_unaligned_be32(p);
3697     *pp = p + 1;
3698     return value;
3699 }
3700
3701 static void
3702 get_subfield(int n_bits, const void **p, struct mf_subfield *sf)
3703 {
3704     sf->field = mf_from_nxm_header(ntohl(get_be32(p)));
3705     sf->ofs = ntohs(get_be16(p));
3706     sf->n_bits = n_bits;
3707 }
3708
3709 static unsigned int
3710 learn_min_len(uint16_t header)
3711 {
3712     int n_bits = header & NX_LEARN_N_BITS_MASK;
3713     int src_type = header & NX_LEARN_SRC_MASK;
3714     int dst_type = header & NX_LEARN_DST_MASK;
3715     unsigned int min_len;
3716
3717     min_len = 0;
3718     if (src_type == NX_LEARN_SRC_FIELD) {
3719         min_len += sizeof(ovs_be32); /* src_field */
3720         min_len += sizeof(ovs_be16); /* src_ofs */
3721     } else {
3722         min_len += DIV_ROUND_UP(n_bits, 16);
3723     }
3724     if (dst_type == NX_LEARN_DST_MATCH ||
3725         dst_type == NX_LEARN_DST_LOAD) {
3726         min_len += sizeof(ovs_be32); /* dst_field */
3727         min_len += sizeof(ovs_be16); /* dst_ofs */
3728     }
3729     return min_len;
3730 }
3731
3732 /* Converts 'nal' into a "struct ofpact_learn" and appends that struct to
3733  * 'ofpacts'.  Returns 0 if successful, otherwise an OFPERR_*. */
3734 static enum ofperr
3735 decode_NXAST_RAW_LEARN(const struct nx_action_learn *nal,
3736                        struct ofpbuf *ofpacts)
3737 {
3738     struct ofpact_learn *learn;
3739     const void *p, *end;
3740
3741     if (nal->pad) {
3742         return OFPERR_OFPBAC_BAD_ARGUMENT;
3743     }
3744
3745     learn = ofpact_put_LEARN(ofpacts);
3746
3747     learn->idle_timeout = ntohs(nal->idle_timeout);
3748     learn->hard_timeout = ntohs(nal->hard_timeout);
3749     learn->priority = ntohs(nal->priority);
3750     learn->cookie = nal->cookie;
3751     learn->table_id = nal->table_id;
3752     learn->fin_idle_timeout = ntohs(nal->fin_idle_timeout);
3753     learn->fin_hard_timeout = ntohs(nal->fin_hard_timeout);
3754
3755     learn->flags = ntohs(nal->flags);
3756     if (learn->flags & ~(NX_LEARN_F_SEND_FLOW_REM |
3757                          NX_LEARN_F_DELETE_LEARNED)) {
3758         return OFPERR_OFPBAC_BAD_ARGUMENT;
3759     }
3760
3761     if (learn->table_id == 0xff) {
3762         return OFPERR_OFPBAC_BAD_ARGUMENT;
3763     }
3764
3765     end = (char *) nal + ntohs(nal->len);
3766     for (p = nal + 1; p != end; ) {
3767         struct ofpact_learn_spec *spec;
3768         uint16_t header = ntohs(get_be16(&p));
3769
3770         if (!header) {
3771             break;
3772         }
3773
3774         spec = ofpbuf_put_zeros(ofpacts, sizeof *spec);
3775         learn = ofpacts->frame;
3776         learn->n_specs++;
3777
3778         spec->src_type = header & NX_LEARN_SRC_MASK;
3779         spec->dst_type = header & NX_LEARN_DST_MASK;
3780         spec->n_bits = header & NX_LEARN_N_BITS_MASK;
3781
3782         /* Check for valid src and dst type combination. */
3783         if (spec->dst_type == NX_LEARN_DST_MATCH ||
3784             spec->dst_type == NX_LEARN_DST_LOAD ||
3785             (spec->dst_type == NX_LEARN_DST_OUTPUT &&
3786              spec->src_type == NX_LEARN_SRC_FIELD)) {
3787             /* OK. */
3788         } else {
3789             return OFPERR_OFPBAC_BAD_ARGUMENT;
3790         }
3791
3792         /* Check that the arguments don't overrun the end of the action. */
3793         if ((char *) end - (char *) p < learn_min_len(header)) {
3794             return OFPERR_OFPBAC_BAD_LEN;
3795         }
3796
3797         /* Get the source. */
3798         if (spec->src_type == NX_LEARN_SRC_FIELD) {
3799             get_subfield(spec->n_bits, &p, &spec->src);
3800         } else {
3801             int p_bytes = 2 * DIV_ROUND_UP(spec->n_bits, 16);
3802
3803             bitwise_copy(p, p_bytes, 0,
3804                          &spec->src_imm, sizeof spec->src_imm, 0,
3805                          spec->n_bits);
3806             p = (const uint8_t *) p + p_bytes;
3807         }
3808
3809         /* Get the destination. */
3810         if (spec->dst_type == NX_LEARN_DST_MATCH ||
3811             spec->dst_type == NX_LEARN_DST_LOAD) {
3812             get_subfield(spec->n_bits, &p, &spec->dst);
3813         }
3814     }
3815     ofpact_update_len(ofpacts, &learn->ofpact);
3816
3817     if (!is_all_zeros(p, (char *) end - (char *) p)) {
3818         return OFPERR_OFPBAC_BAD_ARGUMENT;
3819     }
3820
3821     return 0;
3822 }
3823
3824 static void
3825 put_be16(struct ofpbuf *b, ovs_be16 x)
3826 {
3827     ofpbuf_put(b, &x, sizeof x);
3828 }
3829
3830 static void
3831 put_be32(struct ofpbuf *b, ovs_be32 x)
3832 {
3833     ofpbuf_put(b, &x, sizeof x);
3834 }
3835
3836 static void
3837 put_u16(struct ofpbuf *b, uint16_t x)
3838 {
3839     put_be16(b, htons(x));
3840 }
3841
3842 static void
3843 put_u32(struct ofpbuf *b, uint32_t x)
3844 {
3845     put_be32(b, htonl(x));
3846 }
3847
3848 static void
3849 encode_LEARN(const struct ofpact_learn *learn,
3850              enum ofp_version ofp_version OVS_UNUSED, struct ofpbuf *out)
3851 {
3852     const struct ofpact_learn_spec *spec;
3853     struct nx_action_learn *nal;
3854     size_t start_ofs;
3855
3856     start_ofs = ofpbuf_size(out);
3857     nal = put_NXAST_LEARN(out);
3858     nal->idle_timeout = htons(learn->idle_timeout);
3859     nal->hard_timeout = htons(learn->hard_timeout);
3860     nal->fin_idle_timeout = htons(learn->fin_idle_timeout);
3861     nal->fin_hard_timeout = htons(learn->fin_hard_timeout);
3862     nal->priority = htons(learn->priority);
3863     nal->cookie = learn->cookie;
3864     nal->flags = htons(learn->flags);
3865     nal->table_id = learn->table_id;
3866
3867     for (spec = learn->specs; spec < &learn->specs[learn->n_specs]; spec++) {
3868         put_u16(out, spec->n_bits | spec->dst_type | spec->src_type);
3869
3870         if (spec->src_type == NX_LEARN_SRC_FIELD) {
3871             put_u32(out, mf_nxm_header(spec->src.field->id));
3872             put_u16(out, spec->src.ofs);
3873         } else {
3874             size_t n_dst_bytes = 2 * DIV_ROUND_UP(spec->n_bits, 16);
3875             uint8_t *bits = ofpbuf_put_zeros(out, n_dst_bytes);
3876             bitwise_copy(&spec->src_imm, sizeof spec->src_imm, 0,
3877                          bits, n_dst_bytes, 0,
3878                          spec->n_bits);
3879         }
3880
3881         if (spec->dst_type == NX_LEARN_DST_MATCH ||
3882             spec->dst_type == NX_LEARN_DST_LOAD) {
3883             put_u32(out, mf_nxm_header(spec->dst.field->id));
3884             put_u16(out, spec->dst.ofs);
3885         }
3886     }
3887
3888     pad_ofpat(out, start_ofs);
3889 }
3890
3891 static char * OVS_WARN_UNUSED_RESULT
3892 parse_LEARN(char *arg, struct ofpbuf *ofpacts,
3893             enum ofputil_protocol *usable_protocols OVS_UNUSED)
3894 {
3895     return learn_parse(arg, ofpacts);
3896 }
3897
3898 static void
3899 format_LEARN(const struct ofpact_learn *a, struct ds *s)
3900 {
3901     learn_format(a, s);
3902 }
3903 \f
3904 /* Action structure for NXAST_CONJUNCTION. */
3905 struct nx_action_conjunction {
3906     ovs_be16 type;                  /* OFPAT_VENDOR. */
3907     ovs_be16 len;                   /* At least 16. */
3908     ovs_be32 vendor;                /* NX_VENDOR_ID. */
3909     ovs_be16 subtype;               /* See enum ofp_raw_action_type. */
3910     uint8_t clause;
3911     uint8_t n_clauses;
3912     ovs_be32 id;
3913 };
3914 OFP_ASSERT(sizeof(struct nx_action_conjunction) == 16);
3915
3916 static void
3917 add_conjunction(struct ofpbuf *out,
3918                 uint32_t id, uint8_t clause, uint8_t n_clauses)
3919 {
3920     struct ofpact_conjunction *oc;
3921
3922     oc = ofpact_put_CONJUNCTION(out);
3923     oc->id = id;
3924     oc->clause = clause;
3925     oc->n_clauses = n_clauses;
3926 }
3927
3928 static enum ofperr
3929 decode_NXAST_RAW_CONJUNCTION(const struct nx_action_conjunction *nac,
3930                              struct ofpbuf *out)
3931 {
3932     if (nac->n_clauses < 2 || nac->n_clauses > 64
3933         || nac->clause >= nac->n_clauses) {
3934         return OFPERR_NXBAC_BAD_CONJUNCTION;
3935     } else {
3936         add_conjunction(out, ntohl(nac->id), nac->clause, nac->n_clauses);
3937         return 0;
3938     }
3939 }
3940
3941 static void
3942 encode_CONJUNCTION(const struct ofpact_conjunction *oc,
3943                    enum ofp_version ofp_version OVS_UNUSED, struct ofpbuf *out)
3944 {
3945     struct nx_action_conjunction *nac = put_NXAST_CONJUNCTION(out);
3946     nac->clause = oc->clause;
3947     nac->n_clauses = oc->n_clauses;
3948     nac->id = htonl(oc->id);
3949 }
3950
3951 static void
3952 format_CONJUNCTION(const struct ofpact_conjunction *oc, struct ds *s)
3953 {
3954     ds_put_format(s, "conjunction(%"PRIu32",%"PRIu8"/%"PRIu8")",
3955                   oc->id, oc->clause + 1, oc->n_clauses);
3956 }
3957
3958 static char * OVS_WARN_UNUSED_RESULT
3959 parse_CONJUNCTION(const char *arg, struct ofpbuf *ofpacts,
3960                   enum ofputil_protocol *usable_protocols OVS_UNUSED)
3961 {
3962     uint8_t n_clauses;
3963     uint8_t clause;
3964     uint32_t id;
3965     int n;
3966
3967     if (!ovs_scan(arg, "%"SCNi32" , %"SCNu8" / %"SCNu8" %n",
3968                   &id, &clause, &n_clauses, &n) || n != strlen(arg)) {
3969         return xstrdup("\"conjunction\" syntax is \"conjunction(id,i/n)\"");
3970     }
3971
3972     if (n_clauses < 2) {
3973         return xstrdup("conjunction must have at least 2 clauses");
3974     } else if (n_clauses > 64) {
3975         return xstrdup("conjunction must have at most 64 clauses");
3976     } else if (clause < 1) {
3977         return xstrdup("clause index must be positive");
3978     } else if (clause > n_clauses) {
3979         return xstrdup("clause index must be less than or equal to "
3980                        "number of clauses");
3981     }
3982
3983     add_conjunction(ofpacts, id, clause - 1, n_clauses);
3984     return NULL;
3985 }
3986 \f
3987 /* Action structure for NXAST_MULTIPATH.
3988  *
3989  * This action performs the following steps in sequence:
3990  *
3991  *    1. Hashes the fields designated by 'fields', one of NX_HASH_FIELDS_*.
3992  *       Refer to the definition of "enum nx_mp_fields" for details.
3993  *
3994  *       The 'basis' value is used as a universal hash parameter, that is,
3995  *       different values of 'basis' yield different hash functions.  The
3996  *       particular universal hash function used is implementation-defined.
3997  *
3998  *       The hashed fields' values are drawn from the current state of the
3999  *       flow, including all modifications that have been made by actions up to
4000  *       this point.
4001  *
4002  *    2. Applies the multipath link choice algorithm specified by 'algorithm',
4003  *       one of NX_MP_ALG_*.  Refer to the definition of "enum nx_mp_algorithm"
4004  *       for details.
4005  *
4006  *       The output of the algorithm is 'link', an unsigned integer less than
4007  *       or equal to 'max_link'.
4008  *
4009  *       Some algorithms use 'arg' as an additional argument.
4010  *
4011  *    3. Stores 'link' in dst[ofs:ofs+n_bits].  The format and semantics of
4012  *       'dst' and 'ofs_nbits' are similar to those for the NXAST_REG_LOAD
4013  *       action.
4014  *
4015  * The switch will reject actions that have an unknown 'fields', or an unknown
4016  * 'algorithm', or in which ofs+n_bits is greater than the width of 'dst', or
4017  * in which 'max_link' is greater than or equal to 2**n_bits, with error type
4018  * OFPET_BAD_ACTION, code OFPBAC_BAD_ARGUMENT.
4019  */
4020 struct nx_action_multipath {
4021     ovs_be16 type;              /* OFPAT_VENDOR. */
4022     ovs_be16 len;               /* Length is 32. */
4023     ovs_be32 vendor;            /* NX_VENDOR_ID. */
4024     ovs_be16 subtype;           /* NXAST_MULTIPATH. */
4025
4026     /* What fields to hash and how. */
4027     ovs_be16 fields;            /* One of NX_HASH_FIELDS_*. */
4028     ovs_be16 basis;             /* Universal hash parameter. */
4029     ovs_be16 pad0;
4030
4031     /* Multipath link choice algorithm to apply to hash value. */
4032     ovs_be16 algorithm;         /* One of NX_MP_ALG_*. */
4033     ovs_be16 max_link;          /* Number of output links, minus 1. */
4034     ovs_be32 arg;               /* Algorithm-specific argument. */
4035     ovs_be16 pad1;
4036
4037     /* Where to store the result. */
4038     ovs_be16 ofs_nbits;         /* (ofs << 6) | (n_bits - 1). */
4039     ovs_be32 dst;               /* Destination. */
4040 };
4041 OFP_ASSERT(sizeof(struct nx_action_multipath) == 32);
4042
4043 static enum ofperr
4044 decode_NXAST_RAW_MULTIPATH(const struct nx_action_multipath *nam,
4045                            struct ofpbuf *out)
4046 {
4047     uint32_t n_links = ntohs(nam->max_link) + 1;
4048     size_t min_n_bits = log_2_ceil(n_links);
4049     struct ofpact_multipath *mp;
4050
4051     mp = ofpact_put_MULTIPATH(out);
4052     mp->fields = ntohs(nam->fields);
4053     mp->basis = ntohs(nam->basis);
4054     mp->algorithm = ntohs(nam->algorithm);
4055     mp->max_link = ntohs(nam->max_link);
4056     mp->arg = ntohl(nam->arg);
4057     mp->dst.field = mf_from_nxm_header(ntohl(nam->dst));
4058     mp->dst.ofs = nxm_decode_ofs(nam->ofs_nbits);
4059     mp->dst.n_bits = nxm_decode_n_bits(nam->ofs_nbits);
4060
4061     if (!flow_hash_fields_valid(mp->fields)) {
4062         VLOG_WARN_RL(&rl, "unsupported fields %d", (int) mp->fields);
4063         return OFPERR_OFPBAC_BAD_ARGUMENT;
4064     } else if (mp->algorithm != NX_MP_ALG_MODULO_N
4065                && mp->algorithm != NX_MP_ALG_HASH_THRESHOLD
4066                && mp->algorithm != NX_MP_ALG_HRW
4067                && mp->algorithm != NX_MP_ALG_ITER_HASH) {
4068         VLOG_WARN_RL(&rl, "unsupported algorithm %d", (int) mp->algorithm);
4069         return OFPERR_OFPBAC_BAD_ARGUMENT;
4070     } else if (mp->dst.n_bits < min_n_bits) {
4071         VLOG_WARN_RL(&rl, "multipath action requires at least %"PRIuSIZE" bits for "
4072                      "%"PRIu32" links", min_n_bits, n_links);
4073         return OFPERR_OFPBAC_BAD_ARGUMENT;
4074     }
4075
4076     return multipath_check(mp, NULL);
4077 }
4078
4079 static void
4080 encode_MULTIPATH(const struct ofpact_multipath *mp,
4081                  enum ofp_version ofp_version OVS_UNUSED, struct ofpbuf *out)
4082 {
4083     struct nx_action_multipath *nam = put_NXAST_MULTIPATH(out);
4084
4085     nam->fields = htons(mp->fields);
4086     nam->basis = htons(mp->basis);
4087     nam->algorithm = htons(mp->algorithm);
4088     nam->max_link = htons(mp->max_link);
4089     nam->arg = htonl(mp->arg);
4090     nam->ofs_nbits = nxm_encode_ofs_nbits(mp->dst.ofs, mp->dst.n_bits);
4091     nam->dst = htonl(mf_nxm_header(mp->dst.field->id));
4092 }
4093
4094 static char * OVS_WARN_UNUSED_RESULT
4095 parse_MULTIPATH(const char *arg, struct ofpbuf *ofpacts,
4096                 enum ofputil_protocol *usable_protocols OVS_UNUSED)
4097 {
4098     return multipath_parse(ofpact_put_MULTIPATH(ofpacts), arg);
4099 }
4100
4101 static void
4102 format_MULTIPATH(const struct ofpact_multipath *a, struct ds *s)
4103 {
4104     multipath_format(a, s);
4105 }
4106 \f
4107 /* Action structure for NXAST_NOTE.
4108  *
4109  * This action has no effect.  It is variable length.  The switch does not
4110  * attempt to interpret the user-defined 'note' data in any way.  A controller
4111  * can use this action to attach arbitrary metadata to a flow.
4112  *
4113  * This action might go away in the future.
4114  */
4115 struct nx_action_note {
4116     ovs_be16 type;                  /* OFPAT_VENDOR. */
4117     ovs_be16 len;                   /* A multiple of 8, but at least 16. */
4118     ovs_be32 vendor;                /* NX_VENDOR_ID. */
4119     ovs_be16 subtype;               /* NXAST_NOTE. */
4120     uint8_t note[6];                /* Start of user-defined data. */
4121     /* Possibly followed by additional user-defined data. */
4122 };
4123 OFP_ASSERT(sizeof(struct nx_action_note) == 16);
4124
4125 static enum ofperr
4126 decode_NXAST_RAW_NOTE(const struct nx_action_note *nan, struct ofpbuf *out)
4127 {
4128     struct ofpact_note *note;
4129     unsigned int length;
4130
4131     length = ntohs(nan->len) - offsetof(struct nx_action_note, note);
4132     note = ofpact_put(out, OFPACT_NOTE,
4133                       offsetof(struct ofpact_note, data) + length);
4134     note->length = length;
4135     memcpy(note->data, nan->note, length);
4136
4137     return 0;
4138 }
4139
4140 static void
4141 encode_NOTE(const struct ofpact_note *note,
4142             enum ofp_version ofp_version OVS_UNUSED, struct ofpbuf *out)
4143 {
4144     size_t start_ofs = ofpbuf_size(out);
4145     struct nx_action_note *nan;
4146     unsigned int remainder;
4147     unsigned int len;
4148
4149     put_NXAST_NOTE(out);
4150     ofpbuf_set_size(out, ofpbuf_size(out) - sizeof nan->note);
4151
4152     ofpbuf_put(out, note->data, note->length);
4153
4154     len = ofpbuf_size(out) - start_ofs;
4155     remainder = len % OFP_ACTION_ALIGN;
4156     if (remainder) {
4157         ofpbuf_put_zeros(out, OFP_ACTION_ALIGN - remainder);
4158     }
4159     nan = ofpbuf_at(out, start_ofs, sizeof *nan);
4160     nan->len = htons(ofpbuf_size(out) - start_ofs);
4161 }
4162
4163 static char * OVS_WARN_UNUSED_RESULT
4164 parse_NOTE(const char *arg, struct ofpbuf *ofpacts,
4165            enum ofputil_protocol *usable_protocols OVS_UNUSED)
4166 {
4167     struct ofpact_note *note;
4168
4169     note = ofpact_put_NOTE(ofpacts);
4170     while (*arg != '\0') {
4171         uint8_t byte;
4172         bool ok;
4173
4174         if (*arg == '.') {
4175             arg++;
4176         }
4177         if (*arg == '\0') {
4178             break;
4179         }
4180
4181         byte = hexits_value(arg, 2, &ok);
4182         if (!ok) {
4183             return xstrdup("bad hex digit in `note' argument");
4184         }
4185         ofpbuf_put(ofpacts, &byte, 1);
4186
4187         note = ofpacts->frame;
4188         note->length++;
4189
4190         arg += 2;
4191     }
4192     ofpact_update_len(ofpacts, &note->ofpact);
4193     return NULL;
4194 }
4195
4196 static void
4197 format_NOTE(const struct ofpact_note *a, struct ds *s)
4198 {
4199     size_t i;
4200
4201     ds_put_cstr(s, "note:");
4202     for (i = 0; i < a->length; i++) {
4203         if (i) {
4204             ds_put_char(s, '.');
4205         }
4206         ds_put_format(s, "%02"PRIx8, a->data[i]);
4207     }
4208 }
4209 \f
4210 /* Exit action. */
4211
4212 static enum ofperr
4213 decode_NXAST_RAW_EXIT(struct ofpbuf *out)
4214 {
4215     ofpact_put_EXIT(out);
4216     return 0;
4217 }
4218
4219 static void
4220 encode_EXIT(const struct ofpact_null *null OVS_UNUSED,
4221             enum ofp_version ofp_version OVS_UNUSED, struct ofpbuf *out)
4222 {
4223     put_NXAST_EXIT(out);
4224 }
4225
4226 static char * OVS_WARN_UNUSED_RESULT
4227 parse_EXIT(char *arg OVS_UNUSED, struct ofpbuf *ofpacts,
4228            enum ofputil_protocol *usable_protocols OVS_UNUSED)
4229 {
4230     ofpact_put_EXIT(ofpacts);
4231     return NULL;
4232 }
4233
4234 static void
4235 format_EXIT(const struct ofpact_null *a OVS_UNUSED, struct ds *s)
4236 {
4237     ds_put_cstr(s, "exit");
4238 }
4239 \f
4240 /* Action structure for NXAST_SAMPLE.
4241  *
4242  * Samples matching packets with the given probability and sends them
4243  * each to the set of collectors identified with the given ID.  The
4244  * probability is expressed as a number of packets to be sampled out
4245  * of USHRT_MAX packets, and must be >0.
4246  *
4247  * When sending packet samples to IPFIX collectors, the IPFIX flow
4248  * record sent for each sampled packet is associated with the given
4249  * observation domain ID and observation point ID.  Each IPFIX flow
4250  * record contain the sampled packet's headers when executing this
4251  * rule.  If a sampled packet's headers are modified by previous
4252  * actions in the flow, those modified headers are sent. */
4253 struct nx_action_sample {
4254     ovs_be16 type;                  /* OFPAT_VENDOR. */
4255     ovs_be16 len;                   /* Length is 24. */
4256     ovs_be32 vendor;                /* NX_VENDOR_ID. */
4257     ovs_be16 subtype;               /* NXAST_SAMPLE. */
4258     ovs_be16 probability;           /* Fraction of packets to sample. */
4259     ovs_be32 collector_set_id;      /* ID of collector set in OVSDB. */
4260     ovs_be32 obs_domain_id;         /* ID of sampling observation domain. */
4261     ovs_be32 obs_point_id;          /* ID of sampling observation point. */
4262 };
4263 OFP_ASSERT(sizeof(struct nx_action_sample) == 24);
4264
4265 static enum ofperr
4266 decode_NXAST_RAW_SAMPLE(const struct nx_action_sample *nas, struct ofpbuf *out)
4267 {
4268     struct ofpact_sample *sample;
4269
4270     sample = ofpact_put_SAMPLE(out);
4271     sample->probability = ntohs(nas->probability);
4272     sample->collector_set_id = ntohl(nas->collector_set_id);
4273     sample->obs_domain_id = ntohl(nas->obs_domain_id);
4274     sample->obs_point_id = ntohl(nas->obs_point_id);
4275
4276     if (sample->probability == 0) {
4277         return OFPERR_OFPBAC_BAD_ARGUMENT;
4278     }
4279
4280     return 0;
4281 }
4282
4283 static void
4284 encode_SAMPLE(const struct ofpact_sample *sample,
4285               enum ofp_version ofp_version OVS_UNUSED, struct ofpbuf *out)
4286 {
4287     struct nx_action_sample *nas;
4288
4289     nas = put_NXAST_SAMPLE(out);
4290     nas->probability = htons(sample->probability);
4291     nas->collector_set_id = htonl(sample->collector_set_id);
4292     nas->obs_domain_id = htonl(sample->obs_domain_id);
4293     nas->obs_point_id = htonl(sample->obs_point_id);
4294 }
4295
4296 /* Parses 'arg' as the argument to a "sample" action, and appends such an
4297  * action to 'ofpacts'.
4298  *
4299  * Returns NULL if successful, otherwise a malloc()'d string describing the
4300  * error.  The caller is responsible for freeing the returned string. */
4301 static char * OVS_WARN_UNUSED_RESULT
4302 parse_SAMPLE(char *arg, struct ofpbuf *ofpacts,
4303              enum ofputil_protocol *usable_protocols OVS_UNUSED)
4304 {
4305     struct ofpact_sample *os = ofpact_put_SAMPLE(ofpacts);
4306     char *key, *value;
4307
4308     while (ofputil_parse_key_value(&arg, &key, &value)) {
4309         char *error = NULL;
4310
4311         if (!strcmp(key, "probability")) {
4312             error = str_to_u16(value, "probability", &os->probability);
4313             if (!error && os->probability == 0) {
4314                 error = xasprintf("invalid probability value \"%s\"", value);
4315             }
4316         } else if (!strcmp(key, "collector_set_id")) {
4317             error = str_to_u32(value, &os->collector_set_id);
4318         } else if (!strcmp(key, "obs_domain_id")) {
4319             error = str_to_u32(value, &os->obs_domain_id);
4320         } else if (!strcmp(key, "obs_point_id")) {
4321             error = str_to_u32(value, &os->obs_point_id);
4322         } else {
4323             error = xasprintf("invalid key \"%s\" in \"sample\" argument",
4324                               key);
4325         }
4326         if (error) {
4327             return error;
4328         }
4329     }
4330     if (os->probability == 0) {
4331         return xstrdup("non-zero \"probability\" must be specified on sample");
4332     }
4333     return NULL;
4334 }
4335
4336 static void
4337 format_SAMPLE(const struct ofpact_sample *a, struct ds *s)
4338 {
4339     ds_put_format(s, "sample(probability=%"PRIu16",collector_set_id=%"PRIu32
4340                   ",obs_domain_id=%"PRIu32",obs_point_id=%"PRIu32")",
4341                   a->probability, a->collector_set_id,
4342                   a->obs_domain_id, a->obs_point_id);
4343 }
4344 \f
4345 /* Meter instruction. */
4346
4347 static void
4348 encode_METER(const struct ofpact_meter *meter,
4349              enum ofp_version ofp_version, struct ofpbuf *out)
4350 {
4351     if (ofp_version >= OFP13_VERSION) {
4352         instruction_put_OFPIT13_METER(out)->meter_id = htonl(meter->meter_id);
4353     }
4354 }
4355
4356 static char * OVS_WARN_UNUSED_RESULT
4357 parse_METER(char *arg, struct ofpbuf *ofpacts,
4358             enum ofputil_protocol *usable_protocols)
4359 {
4360     *usable_protocols &= OFPUTIL_P_OF13_UP;
4361     return str_to_u32(arg, &ofpact_put_METER(ofpacts)->meter_id);
4362 }
4363
4364 static void
4365 format_METER(const struct ofpact_meter *a, struct ds *s)
4366 {
4367     ds_put_format(s, "meter:%"PRIu32, a->meter_id);
4368 }
4369 \f
4370 /* Clear-Actions instruction. */
4371
4372 static void
4373 encode_CLEAR_ACTIONS(const struct ofpact_null *null OVS_UNUSED,
4374                      enum ofp_version ofp_version OVS_UNUSED,
4375                      struct ofpbuf *out OVS_UNUSED)
4376 {
4377     if (ofp_version > OFP10_VERSION) {
4378         instruction_put_OFPIT11_CLEAR_ACTIONS(out);
4379     }
4380 }
4381
4382 static char * OVS_WARN_UNUSED_RESULT
4383 parse_CLEAR_ACTIONS(char *arg OVS_UNUSED, struct ofpbuf *ofpacts,
4384                     enum ofputil_protocol *usable_protocols OVS_UNUSED)
4385 {
4386     ofpact_put_CLEAR_ACTIONS(ofpacts);
4387     return NULL;
4388 }
4389
4390 static void
4391 format_CLEAR_ACTIONS(const struct ofpact_null *a OVS_UNUSED, struct ds *s)
4392 {
4393     ds_put_cstr(s, "clear_actions");
4394 }
4395 \f
4396 /* Write-Actions instruction. */
4397
4398 static void
4399 encode_WRITE_ACTIONS(const struct ofpact_nest *actions,
4400                      enum ofp_version ofp_version, struct ofpbuf *out)
4401 {
4402     if (ofp_version > OFP10_VERSION) {
4403         const size_t ofs = ofpbuf_size(out);
4404
4405         instruction_put_OFPIT11_WRITE_ACTIONS(out);
4406         ofpacts_put_openflow_actions(actions->actions,
4407                                      ofpact_nest_get_action_len(actions),
4408                                      out, ofp_version);
4409         ofpacts_update_instruction_actions(out, ofs);
4410     }
4411 }
4412
4413 static char * OVS_WARN_UNUSED_RESULT
4414 parse_WRITE_ACTIONS(char *arg, struct ofpbuf *ofpacts,
4415                     enum ofputil_protocol *usable_protocols)
4416 {
4417     struct ofpact_nest *on;
4418     char *error;
4419     size_t ofs;
4420
4421     /* Pull off existing actions or instructions. */
4422     ofpact_pad(ofpacts);
4423     ofs = ofpbuf_size(ofpacts);
4424     ofpbuf_pull(ofpacts, ofs);
4425
4426     /* Add a Write-Actions instruction and then pull it off. */
4427     ofpact_put(ofpacts, OFPACT_WRITE_ACTIONS, sizeof *on);
4428     ofpbuf_pull(ofpacts, sizeof *on);
4429
4430     /* Parse nested actions.
4431      *
4432      * We pulled off "write-actions" and the previous actions because the
4433      * OFPACT_WRITE_ACTIONS is only partially constructed: its length is such
4434      * that it doesn't actually include the nested actions.  That means that
4435      * ofpacts_parse() would reject them as being part of an Apply-Actions that
4436      * follows a Write-Actions, which is an invalid order.  */
4437     error = ofpacts_parse(arg, ofpacts, usable_protocols, false);
4438
4439     /* Put the Write-Actions back on and update its length. */
4440     on = ofpbuf_push_uninit(ofpacts, sizeof *on);
4441     on->ofpact.len = ofpbuf_size(ofpacts);
4442
4443     /* Put any previous actions or instructions back on. */
4444     ofpbuf_push_uninit(ofpacts, ofs);
4445
4446     return error;
4447 }
4448
4449 static void
4450 format_WRITE_ACTIONS(const struct ofpact_nest *a, struct ds *s)
4451 {
4452     ds_put_cstr(s, "write_actions(");
4453     ofpacts_format(a->actions, ofpact_nest_get_action_len(a), s);
4454     ds_put_char(s, ')');
4455 }
4456 \f
4457 /* Action structure for NXAST_WRITE_METADATA.
4458  *
4459  * Modifies the 'mask' bits of the metadata value. */
4460 struct nx_action_write_metadata {
4461     ovs_be16 type;                  /* OFPAT_VENDOR. */
4462     ovs_be16 len;                   /* Length is 32. */
4463     ovs_be32 vendor;                /* NX_VENDOR_ID. */
4464     ovs_be16 subtype;               /* NXAST_WRITE_METADATA. */
4465     uint8_t zeros[6];               /* Must be zero. */
4466     ovs_be64 metadata;              /* Metadata register. */
4467     ovs_be64 mask;                  /* Metadata mask. */
4468 };
4469 OFP_ASSERT(sizeof(struct nx_action_write_metadata) == 32);
4470
4471 static enum ofperr
4472 decode_NXAST_RAW_WRITE_METADATA(const struct nx_action_write_metadata *nawm,
4473                                 struct ofpbuf *out)
4474 {
4475     struct ofpact_metadata *om;
4476
4477     if (!is_all_zeros(nawm->zeros, sizeof nawm->zeros)) {
4478         return OFPERR_NXBRC_MUST_BE_ZERO;
4479     }
4480
4481     om = ofpact_put_WRITE_METADATA(out);
4482     om->metadata = nawm->metadata;
4483     om->mask = nawm->mask;
4484
4485     return 0;
4486 }
4487
4488 static void
4489 encode_WRITE_METADATA(const struct ofpact_metadata *metadata,
4490                       enum ofp_version ofp_version, struct ofpbuf *out)
4491 {
4492     if (ofp_version == OFP10_VERSION) {
4493         struct nx_action_write_metadata *nawm;
4494
4495         nawm = put_NXAST_WRITE_METADATA(out);
4496         nawm->metadata = metadata->metadata;
4497         nawm->mask = metadata->mask;
4498     } else {
4499         struct ofp11_instruction_write_metadata *oiwm;
4500
4501         oiwm = instruction_put_OFPIT11_WRITE_METADATA(out);
4502         oiwm->metadata = metadata->metadata;
4503         oiwm->metadata_mask = metadata->mask;
4504     }
4505 }
4506
4507 static char * OVS_WARN_UNUSED_RESULT
4508 parse_WRITE_METADATA(char *arg, struct ofpbuf *ofpacts,
4509                      enum ofputil_protocol *usable_protocols)
4510 {
4511     struct ofpact_metadata *om;
4512     char *mask = strchr(arg, '/');
4513
4514     *usable_protocols &= OFPUTIL_P_NXM_OF11_UP;
4515
4516     om = ofpact_put_WRITE_METADATA(ofpacts);
4517     if (mask) {
4518         char *error;
4519
4520         *mask = '\0';
4521         error = str_to_be64(mask + 1, &om->mask);
4522         if (error) {
4523             return error;
4524         }
4525     } else {
4526         om->mask = OVS_BE64_MAX;
4527     }
4528
4529     return str_to_be64(arg, &om->metadata);
4530 }
4531
4532 static void
4533 format_WRITE_METADATA(const struct ofpact_metadata *a, struct ds *s)
4534 {
4535     ds_put_format(s, "write_metadata:%#"PRIx64, ntohll(a->metadata));
4536     if (a->mask != OVS_BE64_MAX) {
4537         ds_put_format(s, "/%#"PRIx64, ntohll(a->mask));
4538     }
4539 }
4540 \f
4541 /* Goto-Table instruction. */
4542
4543 static void
4544 encode_GOTO_TABLE(const struct ofpact_goto_table *goto_table,
4545                   enum ofp_version ofp_version, struct ofpbuf *out)
4546 {
4547     if (ofp_version == OFP10_VERSION) {
4548         struct nx_action_resubmit *nar;
4549
4550         nar = put_NXAST_RESUBMIT_TABLE(out);
4551         nar->table = goto_table->table_id;
4552         nar->in_port = htons(ofp_to_u16(OFPP_IN_PORT));
4553     } else {
4554         struct ofp11_instruction_goto_table *oigt;
4555
4556         oigt = instruction_put_OFPIT11_GOTO_TABLE(out);
4557         oigt->table_id = goto_table->table_id;
4558         memset(oigt->pad, 0, sizeof oigt->pad);
4559     }
4560 }
4561
4562 static char * OVS_WARN_UNUSED_RESULT
4563 parse_GOTO_TABLE(char *arg, struct ofpbuf *ofpacts,
4564                  enum ofputil_protocol *usable_protocols OVS_UNUSED)
4565 {
4566     struct ofpact_goto_table *ogt = ofpact_put_GOTO_TABLE(ofpacts);
4567     char *table_s = strsep(&arg, ",");
4568     if (!table_s || !table_s[0]) {
4569         return xstrdup("instruction goto-table needs table id");
4570     }
4571     return str_to_u8(table_s, "table", &ogt->table_id);
4572 }
4573
4574 static void
4575 format_GOTO_TABLE(const struct ofpact_goto_table *a, struct ds *s)
4576 {
4577     ds_put_format(s, "goto_table:%"PRIu8, a->table_id);
4578 }
4579 \f
4580 static void
4581 log_bad_action(const struct ofp_action_header *actions, size_t actions_len,
4582                const struct ofp_action_header *bad_action, enum ofperr error)
4583 {
4584     if (!VLOG_DROP_WARN(&rl)) {
4585         struct ds s;
4586
4587         ds_init(&s);
4588         ds_put_hex_dump(&s, actions, actions_len, 0, false);
4589         VLOG_WARN("bad action at offset %#"PRIxPTR" (%s):\n%s",
4590                   (char *)bad_action - (char *)actions,
4591                   ofperr_get_name(error), ds_cstr(&s));
4592         ds_destroy(&s);
4593     }
4594 }
4595
4596 static enum ofperr
4597 ofpacts_decode(const void *actions, size_t actions_len,
4598                enum ofp_version ofp_version, struct ofpbuf *ofpacts)
4599 {
4600     struct ofpbuf openflow;
4601
4602     ofpbuf_use_const(&openflow, actions, actions_len);
4603     while (ofpbuf_size(&openflow)) {
4604         const struct ofp_action_header *action = ofpbuf_data(&openflow);
4605         enum ofp_raw_action_type raw;
4606         enum ofperr error;
4607         uint64_t arg;
4608
4609         error = ofpact_pull_raw(&openflow, ofp_version, &raw, &arg);
4610         if (!error) {
4611             error = ofpact_decode(action, raw, arg, ofpacts);
4612         }
4613
4614         if (error) {
4615             log_bad_action(actions, actions_len, action, error);
4616             return error;
4617         }
4618     }
4619
4620     ofpact_pad(ofpacts);
4621     return 0;
4622 }
4623
4624 static enum ofperr
4625 ofpacts_pull_openflow_actions__(struct ofpbuf *openflow,
4626                                 unsigned int actions_len,
4627                                 enum ofp_version version,
4628                                 uint32_t allowed_ovsinsts,
4629                                 struct ofpbuf *ofpacts)
4630 {
4631     const struct ofp_action_header *actions;
4632     enum ofperr error;
4633
4634     ofpbuf_clear(ofpacts);
4635
4636     if (actions_len % OFP_ACTION_ALIGN != 0) {
4637         VLOG_WARN_RL(&rl, "OpenFlow message actions length %u is not a "
4638                      "multiple of %d", actions_len, OFP_ACTION_ALIGN);
4639         return OFPERR_OFPBRC_BAD_LEN;
4640     }
4641
4642     actions = ofpbuf_try_pull(openflow, actions_len);
4643     if (actions == NULL) {
4644         VLOG_WARN_RL(&rl, "OpenFlow message actions length %u exceeds "
4645                      "remaining message length (%"PRIu32")",
4646                      actions_len, ofpbuf_size(openflow));
4647         return OFPERR_OFPBRC_BAD_LEN;
4648     }
4649
4650     error = ofpacts_decode(actions, actions_len, version, ofpacts);
4651     if (error) {
4652         ofpbuf_clear(ofpacts);
4653         return error;
4654     }
4655
4656     error = ofpacts_verify(ofpbuf_data(ofpacts), ofpbuf_size(ofpacts),
4657                            allowed_ovsinsts);
4658     if (error) {
4659         ofpbuf_clear(ofpacts);
4660     }
4661     return error;
4662 }
4663
4664 /* Attempts to convert 'actions_len' bytes of OpenFlow actions from the
4665  * front of 'openflow' into ofpacts.  On success, replaces any existing content
4666  * in 'ofpacts' by the converted ofpacts; on failure, clears 'ofpacts'.
4667  * Returns 0 if successful, otherwise an OpenFlow error.
4668  *
4669  * Actions are processed according to their OpenFlow version which
4670  * is provided in the 'version' parameter.
4671  *
4672  * In most places in OpenFlow, actions appear encapsulated in instructions, so
4673  * you should call ofpacts_pull_openflow_instructions() instead of this
4674  * function.
4675  *
4676  * The parsed actions are valid generically, but they may not be valid in a
4677  * specific context.  For example, port numbers up to OFPP_MAX are valid
4678  * generically, but specific datapaths may only support port numbers in a
4679  * smaller range.  Use ofpacts_check() to additional check whether actions are
4680  * valid in a specific context. */
4681 enum ofperr
4682 ofpacts_pull_openflow_actions(struct ofpbuf *openflow,
4683                               unsigned int actions_len,
4684                               enum ofp_version version,
4685                               struct ofpbuf *ofpacts)
4686 {
4687     return ofpacts_pull_openflow_actions__(openflow, actions_len, version,
4688                                            1u << OVSINST_OFPIT11_APPLY_ACTIONS,
4689                                            ofpacts);
4690 }
4691 \f
4692 /* OpenFlow 1.1 actions. */
4693
4694
4695 /* True if an action sets the value of a field
4696  * in a way that is compatibile with the action set.
4697  * The field can be set via either a set or a move action.
4698  * False otherwise. */
4699 static bool
4700 ofpact_is_set_or_move_action(const struct ofpact *a)
4701 {
4702     switch (a->type) {
4703     case OFPACT_SET_FIELD:
4704     case OFPACT_REG_MOVE:
4705     case OFPACT_SET_ETH_DST:
4706     case OFPACT_SET_ETH_SRC:
4707     case OFPACT_SET_IP_DSCP:
4708     case OFPACT_SET_IP_ECN:
4709     case OFPACT_SET_IP_TTL:
4710     case OFPACT_SET_IPV4_DST:
4711     case OFPACT_SET_IPV4_SRC:
4712     case OFPACT_SET_L4_DST_PORT:
4713     case OFPACT_SET_L4_SRC_PORT:
4714     case OFPACT_SET_MPLS_LABEL:
4715     case OFPACT_SET_MPLS_TC:
4716     case OFPACT_SET_MPLS_TTL:
4717     case OFPACT_SET_QUEUE:
4718     case OFPACT_SET_TUNNEL:
4719     case OFPACT_SET_VLAN_PCP:
4720     case OFPACT_SET_VLAN_VID:
4721         return true;
4722     case OFPACT_BUNDLE:
4723     case OFPACT_CLEAR_ACTIONS:
4724     case OFPACT_CONTROLLER:
4725     case OFPACT_DEC_MPLS_TTL:
4726     case OFPACT_DEC_TTL:
4727     case OFPACT_ENQUEUE:
4728     case OFPACT_EXIT:
4729     case OFPACT_FIN_TIMEOUT:
4730     case OFPACT_GOTO_TABLE:
4731     case OFPACT_GROUP:
4732     case OFPACT_LEARN:
4733     case OFPACT_CONJUNCTION:
4734     case OFPACT_METER:
4735     case OFPACT_MULTIPATH:
4736     case OFPACT_NOTE:
4737     case OFPACT_OUTPUT:
4738     case OFPACT_OUTPUT_REG:
4739     case OFPACT_POP_MPLS:
4740     case OFPACT_POP_QUEUE:
4741     case OFPACT_PUSH_MPLS:
4742     case OFPACT_PUSH_VLAN:
4743     case OFPACT_RESUBMIT:
4744     case OFPACT_SAMPLE:
4745     case OFPACT_STACK_POP:
4746     case OFPACT_STACK_PUSH:
4747     case OFPACT_STRIP_VLAN:
4748     case OFPACT_WRITE_ACTIONS:
4749     case OFPACT_WRITE_METADATA:
4750         return false;
4751     default:
4752         OVS_NOT_REACHED();
4753     }
4754 }
4755
4756 /* True if an action is allowed in the action set.
4757  * False otherwise. */
4758 static bool
4759 ofpact_is_allowed_in_actions_set(const struct ofpact *a)
4760 {
4761     switch (a->type) {
4762     case OFPACT_DEC_MPLS_TTL:
4763     case OFPACT_DEC_TTL:
4764     case OFPACT_GROUP:
4765     case OFPACT_OUTPUT:
4766     case OFPACT_POP_MPLS:
4767     case OFPACT_PUSH_MPLS:
4768     case OFPACT_PUSH_VLAN:
4769     case OFPACT_REG_MOVE:
4770     case OFPACT_SET_FIELD:
4771     case OFPACT_SET_ETH_DST:
4772     case OFPACT_SET_ETH_SRC:
4773     case OFPACT_SET_IP_DSCP:
4774     case OFPACT_SET_IP_ECN:
4775     case OFPACT_SET_IP_TTL:
4776     case OFPACT_SET_IPV4_DST:
4777     case OFPACT_SET_IPV4_SRC:
4778     case OFPACT_SET_L4_DST_PORT:
4779     case OFPACT_SET_L4_SRC_PORT:
4780     case OFPACT_SET_MPLS_LABEL:
4781     case OFPACT_SET_MPLS_TC:
4782     case OFPACT_SET_MPLS_TTL:
4783     case OFPACT_SET_QUEUE:
4784     case OFPACT_SET_TUNNEL:
4785     case OFPACT_SET_VLAN_PCP:
4786     case OFPACT_SET_VLAN_VID:
4787     case OFPACT_STRIP_VLAN:
4788         return true;
4789
4790     /* In general these actions are excluded because they are not part of
4791      * the OpenFlow specification nor map to actions that are defined in
4792      * the specification.  Thus the order in which they should be applied
4793      * in the action set is undefined. */
4794     case OFPACT_BUNDLE:
4795     case OFPACT_CONTROLLER:
4796     case OFPACT_ENQUEUE:
4797     case OFPACT_EXIT:
4798     case OFPACT_FIN_TIMEOUT:
4799     case OFPACT_LEARN:
4800     case OFPACT_CONJUNCTION:
4801     case OFPACT_MULTIPATH:
4802     case OFPACT_NOTE:
4803     case OFPACT_OUTPUT_REG:
4804     case OFPACT_POP_QUEUE:
4805     case OFPACT_RESUBMIT:
4806     case OFPACT_SAMPLE:
4807     case OFPACT_STACK_POP:
4808     case OFPACT_STACK_PUSH:
4809
4810     /* The action set may only include actions and thus
4811      * may not include any instructions */
4812     case OFPACT_CLEAR_ACTIONS:
4813     case OFPACT_GOTO_TABLE:
4814     case OFPACT_METER:
4815     case OFPACT_WRITE_ACTIONS:
4816     case OFPACT_WRITE_METADATA:
4817         return false;
4818     default:
4819         OVS_NOT_REACHED();
4820     }
4821 }
4822
4823 /* Append ofpact 'a' onto the tail of 'out' */
4824 static void
4825 ofpact_copy(struct ofpbuf *out, const struct ofpact *a)
4826 {
4827     ofpbuf_put(out, a, OFPACT_ALIGN(a->len));
4828 }
4829
4830 /* Copies the last ofpact whose type is 'filter' from 'in' to 'out'. */
4831 static bool
4832 ofpacts_copy_last(struct ofpbuf *out, const struct ofpbuf *in,
4833                   enum ofpact_type filter)
4834 {
4835     const struct ofpact *target;
4836     const struct ofpact *a;
4837
4838     target = NULL;
4839     OFPACT_FOR_EACH (a, ofpbuf_data(in), ofpbuf_size(in)) {
4840         if (a->type == filter) {
4841             target = a;
4842         }
4843     }
4844     if (target) {
4845         ofpact_copy(out, target);
4846     }
4847     return target != NULL;
4848 }
4849
4850 /* Append all ofpacts, for which 'filter' returns true, from 'in' to 'out'.
4851  * The order of appended ofpacts is preserved between 'in' and 'out' */
4852 static void
4853 ofpacts_copy_all(struct ofpbuf *out, const struct ofpbuf *in,
4854                  bool (*filter)(const struct ofpact *))
4855 {
4856     const struct ofpact *a;
4857
4858     OFPACT_FOR_EACH (a, ofpbuf_data(in), ofpbuf_size(in)) {
4859         if (filter(a)) {
4860             ofpact_copy(out, a);
4861         }
4862     }
4863 }
4864
4865 /* Reads 'action_set', which contains ofpacts accumulated by
4866  * OFPACT_WRITE_ACTIONS instructions, and writes equivalent actions to be
4867  * executed directly into 'action_list'.  (These names correspond to the
4868  * "Action Set" and "Action List" terms used in OpenFlow 1.1+.)
4869  *
4870  * In general this involves appending the last instance of each action that is
4871  * adimissible in the action set in the order described in the OpenFlow
4872  * specification.
4873  *
4874  * Exceptions:
4875  * + output action is only appended if no group action was present in 'in'.
4876  * + As a simplification all set actions are copied in the order the are
4877  *   provided in 'in' as many set actions applied to a field has the same
4878  *   affect as only applying the last action that sets a field and
4879  *   duplicates are removed by do_xlate_actions().
4880  *   This has an unwanted side-effect of compsoting multiple
4881  *   LOAD_REG actions that touch different regions of the same field. */
4882 void
4883 ofpacts_execute_action_set(struct ofpbuf *action_list,
4884                            const struct ofpbuf *action_set)
4885 {
4886     /* The OpenFlow spec "Action Set" section specifies this order. */
4887     ofpacts_copy_last(action_list, action_set, OFPACT_STRIP_VLAN);
4888     ofpacts_copy_last(action_list, action_set, OFPACT_POP_MPLS);
4889     ofpacts_copy_last(action_list, action_set, OFPACT_PUSH_MPLS);
4890     ofpacts_copy_last(action_list, action_set, OFPACT_PUSH_VLAN);
4891     ofpacts_copy_last(action_list, action_set, OFPACT_DEC_TTL);
4892     ofpacts_copy_last(action_list, action_set, OFPACT_DEC_MPLS_TTL);
4893     ofpacts_copy_all(action_list, action_set, ofpact_is_set_or_move_action);
4894     ofpacts_copy_last(action_list, action_set, OFPACT_SET_QUEUE);
4895
4896     /* If both OFPACT_GROUP and OFPACT_OUTPUT are present, OpenFlow says that
4897      * we should execute only OFPACT_GROUP.
4898      *
4899      * If neither OFPACT_GROUP nor OFPACT_OUTPUT is present, then we can drop
4900      * all the actions because there's no point in modifying a packet that will
4901      * not be sent anywhere. */
4902     if (!ofpacts_copy_last(action_list, action_set, OFPACT_GROUP) &&
4903         !ofpacts_copy_last(action_list, action_set, OFPACT_OUTPUT) &&
4904         !ofpacts_copy_last(action_list, action_set, OFPACT_RESUBMIT)) {
4905         ofpbuf_clear(action_list);
4906     }
4907 }
4908
4909
4910 static enum ofperr
4911 ofpacts_decode_for_action_set(const struct ofp_action_header *in,
4912                               size_t n_in, enum ofp_version version,
4913                               struct ofpbuf *out)
4914 {
4915     enum ofperr error;
4916     struct ofpact *a;
4917     size_t start = ofpbuf_size(out);
4918
4919     error = ofpacts_decode(in, n_in, version, out);
4920
4921     if (error) {
4922         return error;
4923     }
4924
4925     OFPACT_FOR_EACH (a, ofpact_end(ofpbuf_data(out), start), ofpbuf_size(out) - start) {
4926         if (!ofpact_is_allowed_in_actions_set(a)) {
4927             VLOG_WARN_RL(&rl, "disallowed action in action set");
4928             return OFPERR_OFPBAC_BAD_TYPE;
4929         }
4930     }
4931
4932     return 0;
4933 }
4934 \f
4935 /* OpenFlow 1.1 instructions. */
4936
4937 struct instruction_type_info {
4938     enum ovs_instruction_type type;
4939     const char *name;
4940 };
4941
4942 static const struct instruction_type_info inst_info[] = {
4943 #define DEFINE_INST(ENUM, STRUCT, EXTENSIBLE, NAME)    {OVSINST_##ENUM, NAME},
4944 OVS_INSTRUCTIONS
4945 #undef DEFINE_INST
4946 };
4947
4948 const char *
4949 ovs_instruction_name_from_type(enum ovs_instruction_type type)
4950 {
4951     return inst_info[type].name;
4952 }
4953
4954 int
4955 ovs_instruction_type_from_name(const char *name)
4956 {
4957     const struct instruction_type_info *p;
4958     for (p = inst_info; p < &inst_info[ARRAY_SIZE(inst_info)]; p++) {
4959         if (!strcasecmp(name, p->name)) {
4960             return p->type;
4961         }
4962     }
4963     return -1;
4964 }
4965
4966 enum ovs_instruction_type
4967 ovs_instruction_type_from_ofpact_type(enum ofpact_type type)
4968 {
4969     switch (type) {
4970     case OFPACT_METER:
4971         return OVSINST_OFPIT13_METER;
4972     case OFPACT_CLEAR_ACTIONS:
4973         return OVSINST_OFPIT11_CLEAR_ACTIONS;
4974     case OFPACT_WRITE_ACTIONS:
4975         return OVSINST_OFPIT11_WRITE_ACTIONS;
4976     case OFPACT_WRITE_METADATA:
4977         return OVSINST_OFPIT11_WRITE_METADATA;
4978     case OFPACT_GOTO_TABLE:
4979         return OVSINST_OFPIT11_GOTO_TABLE;
4980     case OFPACT_OUTPUT:
4981     case OFPACT_GROUP:
4982     case OFPACT_CONTROLLER:
4983     case OFPACT_ENQUEUE:
4984     case OFPACT_OUTPUT_REG:
4985     case OFPACT_BUNDLE:
4986     case OFPACT_SET_VLAN_VID:
4987     case OFPACT_SET_VLAN_PCP:
4988     case OFPACT_STRIP_VLAN:
4989     case OFPACT_PUSH_VLAN:
4990     case OFPACT_SET_ETH_SRC:
4991     case OFPACT_SET_ETH_DST:
4992     case OFPACT_SET_IPV4_SRC:
4993     case OFPACT_SET_IPV4_DST:
4994     case OFPACT_SET_IP_DSCP:
4995     case OFPACT_SET_IP_ECN:
4996     case OFPACT_SET_IP_TTL:
4997     case OFPACT_SET_L4_SRC_PORT:
4998     case OFPACT_SET_L4_DST_PORT:
4999     case OFPACT_REG_MOVE:
5000     case OFPACT_SET_FIELD:
5001     case OFPACT_STACK_PUSH:
5002     case OFPACT_STACK_POP:
5003     case OFPACT_DEC_TTL:
5004     case OFPACT_SET_MPLS_LABEL:
5005     case OFPACT_SET_MPLS_TC:
5006     case OFPACT_SET_MPLS_TTL:
5007     case OFPACT_DEC_MPLS_TTL:
5008     case OFPACT_PUSH_MPLS:
5009     case OFPACT_POP_MPLS:
5010     case OFPACT_SET_TUNNEL:
5011     case OFPACT_SET_QUEUE:
5012     case OFPACT_POP_QUEUE:
5013     case OFPACT_FIN_TIMEOUT:
5014     case OFPACT_RESUBMIT:
5015     case OFPACT_LEARN:
5016     case OFPACT_CONJUNCTION:
5017     case OFPACT_MULTIPATH:
5018     case OFPACT_NOTE:
5019     case OFPACT_EXIT:
5020     case OFPACT_SAMPLE:
5021     default:
5022         return OVSINST_OFPIT11_APPLY_ACTIONS;
5023     }
5024 }
5025
5026 enum ofperr
5027 ovs_instruction_type_from_inst_type(enum ovs_instruction_type *instruction_type,
5028                                     const uint16_t inst_type)
5029 {
5030     switch (inst_type) {
5031
5032 #define DEFINE_INST(ENUM, STRUCT, EXTENSIBLE, NAME) \
5033     case ENUM:                                      \
5034         *instruction_type = OVSINST_##ENUM;         \
5035         return 0;
5036 OVS_INSTRUCTIONS
5037 #undef DEFINE_INST
5038
5039     default:
5040         return OFPERR_OFPBIC_UNKNOWN_INST;
5041     }
5042 }
5043
5044 /* Two-way translation between OVS's internal "OVSINST_*" representation of
5045  * instructions and the "OFPIT_*" representation used in OpenFlow. */
5046 struct ovsinst_map {
5047     enum ovs_instruction_type ovsinst; /* Internal name for instruction. */
5048     int ofpit;                         /* OFPIT_* number from OpenFlow spec. */
5049 };
5050
5051 static const struct ovsinst_map *
5052 get_ovsinst_map(enum ofp_version version)
5053 {
5054     /* OpenFlow 1.1 and 1.2 instructions. */
5055     static const struct ovsinst_map of11[] = {
5056         { OVSINST_OFPIT11_GOTO_TABLE, 1 },
5057         { OVSINST_OFPIT11_WRITE_METADATA, 2 },
5058         { OVSINST_OFPIT11_WRITE_ACTIONS, 3 },
5059         { OVSINST_OFPIT11_APPLY_ACTIONS, 4 },
5060         { OVSINST_OFPIT11_CLEAR_ACTIONS, 5 },
5061         { 0, -1 },
5062     };
5063
5064     /* OpenFlow 1.3+ instructions. */
5065     static const struct ovsinst_map of13[] = {
5066         { OVSINST_OFPIT11_GOTO_TABLE, 1 },
5067         { OVSINST_OFPIT11_WRITE_METADATA, 2 },
5068         { OVSINST_OFPIT11_WRITE_ACTIONS, 3 },
5069         { OVSINST_OFPIT11_APPLY_ACTIONS, 4 },
5070         { OVSINST_OFPIT11_CLEAR_ACTIONS, 5 },
5071         { OVSINST_OFPIT13_METER, 6 },
5072         { 0, -1 },
5073     };
5074
5075     return version < OFP13_VERSION ? of11 : of13;
5076 }
5077
5078 /* Converts 'ovsinst_bitmap', a bitmap whose bits correspond to OVSINST_*
5079  * values, into a bitmap of instructions suitable for OpenFlow 'version'
5080  * (OFP11_VERSION or later), and returns the result. */
5081 ovs_be32
5082 ovsinst_bitmap_to_openflow(uint32_t ovsinst_bitmap, enum ofp_version version)
5083 {
5084     uint32_t ofpit_bitmap = 0;
5085     const struct ovsinst_map *x;
5086
5087     for (x = get_ovsinst_map(version); x->ofpit >= 0; x++) {
5088         if (ovsinst_bitmap & (1u << x->ovsinst)) {
5089             ofpit_bitmap |= 1u << x->ofpit;
5090         }
5091     }
5092     return htonl(ofpit_bitmap);
5093 }
5094
5095 /* Converts 'ofpit_bitmap', a bitmap of instructions from an OpenFlow message
5096  * with the given 'version' (OFP11_VERSION or later) into a bitmap whose bits
5097  * correspond to OVSINST_* values, and returns the result. */
5098 uint32_t
5099 ovsinst_bitmap_from_openflow(ovs_be32 ofpit_bitmap, enum ofp_version version)
5100 {
5101     uint32_t ovsinst_bitmap = 0;
5102     const struct ovsinst_map *x;
5103
5104     for (x = get_ovsinst_map(version); x->ofpit >= 0; x++) {
5105         if (ofpit_bitmap & htonl(1u << x->ofpit)) {
5106             ovsinst_bitmap |= 1u << x->ovsinst;
5107         }
5108     }
5109     return ovsinst_bitmap;
5110 }
5111
5112 static inline struct ofp11_instruction *
5113 instruction_next(const struct ofp11_instruction *inst)
5114 {
5115     return ((struct ofp11_instruction *) (void *)
5116             ((uint8_t *) inst + ntohs(inst->len)));
5117 }
5118
5119 static inline bool
5120 instruction_is_valid(const struct ofp11_instruction *inst,
5121                      size_t n_instructions)
5122 {
5123     uint16_t len = ntohs(inst->len);
5124     return (!(len % OFP11_INSTRUCTION_ALIGN)
5125             && len >= sizeof *inst
5126             && len / sizeof *inst <= n_instructions);
5127 }
5128
5129 /* This macro is careful to check for instructions with bad lengths. */
5130 #define INSTRUCTION_FOR_EACH(ITER, LEFT, INSTRUCTIONS, N_INSTRUCTIONS)  \
5131     for ((ITER) = (INSTRUCTIONS), (LEFT) = (N_INSTRUCTIONS);            \
5132          (LEFT) > 0 && instruction_is_valid(ITER, LEFT);                \
5133          ((LEFT) -= (ntohs((ITER)->len)                                 \
5134                      / sizeof(struct ofp11_instruction)),               \
5135           (ITER) = instruction_next(ITER)))
5136
5137 static enum ofperr
5138 decode_openflow11_instruction(const struct ofp11_instruction *inst,
5139                               enum ovs_instruction_type *type)
5140 {
5141     uint16_t len = ntohs(inst->len);
5142
5143     switch (inst->type) {
5144     case CONSTANT_HTONS(OFPIT11_EXPERIMENTER):
5145         return OFPERR_OFPBIC_BAD_EXPERIMENTER;
5146
5147 #define DEFINE_INST(ENUM, STRUCT, EXTENSIBLE, NAME)     \
5148         case CONSTANT_HTONS(ENUM):                      \
5149             if (EXTENSIBLE                              \
5150                 ? len >= sizeof(struct STRUCT)          \
5151                 : len == sizeof(struct STRUCT)) {       \
5152                 *type = OVSINST_##ENUM;                 \
5153                 return 0;                               \
5154             } else {                                    \
5155                 return OFPERR_OFPBIC_BAD_LEN;           \
5156             }
5157 OVS_INSTRUCTIONS
5158 #undef DEFINE_INST
5159
5160     default:
5161         return OFPERR_OFPBIC_UNKNOWN_INST;
5162     }
5163 }
5164
5165 static enum ofperr
5166 decode_openflow11_instructions(const struct ofp11_instruction insts[],
5167                                size_t n_insts,
5168                                const struct ofp11_instruction *out[])
5169 {
5170     const struct ofp11_instruction *inst;
5171     size_t left;
5172
5173     memset(out, 0, N_OVS_INSTRUCTIONS * sizeof *out);
5174     INSTRUCTION_FOR_EACH (inst, left, insts, n_insts) {
5175         enum ovs_instruction_type type;
5176         enum ofperr error;
5177
5178         error = decode_openflow11_instruction(inst, &type);
5179         if (error) {
5180             return error;
5181         }
5182
5183         if (out[type]) {
5184             return OFPERR_OFPBIC_DUP_INST;
5185         }
5186         out[type] = inst;
5187     }
5188
5189     if (left) {
5190         VLOG_WARN_RL(&rl, "bad instruction format at offset %"PRIuSIZE,
5191                      (n_insts - left) * sizeof *inst);
5192         return OFPERR_OFPBIC_BAD_LEN;
5193     }
5194     return 0;
5195 }
5196
5197 static void
5198 get_actions_from_instruction(const struct ofp11_instruction *inst,
5199                              const struct ofp_action_header **actions,
5200                              size_t *actions_len)
5201 {
5202     *actions = ALIGNED_CAST(const struct ofp_action_header *, inst + 1);
5203     *actions_len = ntohs(inst->len) - sizeof *inst;
5204 }
5205
5206 enum ofperr
5207 ofpacts_pull_openflow_instructions(struct ofpbuf *openflow,
5208                                    unsigned int instructions_len,
5209                                    enum ofp_version version,
5210                                    struct ofpbuf *ofpacts)
5211 {
5212     const struct ofp11_instruction *instructions;
5213     const struct ofp11_instruction *insts[N_OVS_INSTRUCTIONS];
5214     enum ofperr error;
5215
5216     if (version == OFP10_VERSION) {
5217         return ofpacts_pull_openflow_actions__(openflow, instructions_len,
5218                                                version,
5219                                                (1u << N_OVS_INSTRUCTIONS) - 1,
5220                                                ofpacts);
5221     }
5222
5223     ofpbuf_clear(ofpacts);
5224
5225     if (instructions_len % OFP11_INSTRUCTION_ALIGN != 0) {
5226         VLOG_WARN_RL(&rl, "OpenFlow message instructions length %u is not a "
5227                      "multiple of %d",
5228                      instructions_len, OFP11_INSTRUCTION_ALIGN);
5229         error = OFPERR_OFPBIC_BAD_LEN;
5230         goto exit;
5231     }
5232
5233     instructions = ofpbuf_try_pull(openflow, instructions_len);
5234     if (instructions == NULL) {
5235         VLOG_WARN_RL(&rl, "OpenFlow message instructions length %u exceeds "
5236                      "remaining message length (%"PRIu32")",
5237                      instructions_len, ofpbuf_size(openflow));
5238         error = OFPERR_OFPBIC_BAD_LEN;
5239         goto exit;
5240     }
5241
5242     error = decode_openflow11_instructions(
5243         instructions, instructions_len / OFP11_INSTRUCTION_ALIGN,
5244         insts);
5245     if (error) {
5246         goto exit;
5247     }
5248
5249     if (insts[OVSINST_OFPIT13_METER]) {
5250         const struct ofp13_instruction_meter *oim;
5251         struct ofpact_meter *om;
5252
5253         oim = ALIGNED_CAST(const struct ofp13_instruction_meter *,
5254                            insts[OVSINST_OFPIT13_METER]);
5255
5256         om = ofpact_put_METER(ofpacts);
5257         om->meter_id = ntohl(oim->meter_id);
5258     }
5259     if (insts[OVSINST_OFPIT11_APPLY_ACTIONS]) {
5260         const struct ofp_action_header *actions;
5261         size_t actions_len;
5262
5263         get_actions_from_instruction(insts[OVSINST_OFPIT11_APPLY_ACTIONS],
5264                                      &actions, &actions_len);
5265         error = ofpacts_decode(actions, actions_len, version, ofpacts);
5266         if (error) {
5267             goto exit;
5268         }
5269     }
5270     if (insts[OVSINST_OFPIT11_CLEAR_ACTIONS]) {
5271         instruction_get_OFPIT11_CLEAR_ACTIONS(
5272             insts[OVSINST_OFPIT11_CLEAR_ACTIONS]);
5273         ofpact_put_CLEAR_ACTIONS(ofpacts);
5274     }
5275     if (insts[OVSINST_OFPIT11_WRITE_ACTIONS]) {
5276         struct ofpact_nest *on;
5277         const struct ofp_action_header *actions;
5278         size_t actions_len;
5279         size_t start;
5280
5281         ofpact_pad(ofpacts);
5282         start = ofpbuf_size(ofpacts);
5283         on = ofpact_put(ofpacts, OFPACT_WRITE_ACTIONS,
5284                         offsetof(struct ofpact_nest, actions));
5285         get_actions_from_instruction(insts[OVSINST_OFPIT11_WRITE_ACTIONS],
5286                                      &actions, &actions_len);
5287         error = ofpacts_decode_for_action_set(actions, actions_len,
5288                                               version, ofpacts);
5289         if (error) {
5290             goto exit;
5291         }
5292         on = ofpbuf_at_assert(ofpacts, start, sizeof *on);
5293         on->ofpact.len = ofpbuf_size(ofpacts) - start;
5294     }
5295     if (insts[OVSINST_OFPIT11_WRITE_METADATA]) {
5296         const struct ofp11_instruction_write_metadata *oiwm;
5297         struct ofpact_metadata *om;
5298
5299         oiwm = ALIGNED_CAST(const struct ofp11_instruction_write_metadata *,
5300                             insts[OVSINST_OFPIT11_WRITE_METADATA]);
5301
5302         om = ofpact_put_WRITE_METADATA(ofpacts);
5303         om->metadata = oiwm->metadata;
5304         om->mask = oiwm->metadata_mask;
5305     }
5306     if (insts[OVSINST_OFPIT11_GOTO_TABLE]) {
5307         const struct ofp11_instruction_goto_table *oigt;
5308         struct ofpact_goto_table *ogt;
5309
5310         oigt = instruction_get_OFPIT11_GOTO_TABLE(
5311             insts[OVSINST_OFPIT11_GOTO_TABLE]);
5312         ogt = ofpact_put_GOTO_TABLE(ofpacts);
5313         ogt->table_id = oigt->table_id;
5314     }
5315
5316     error = ofpacts_verify(ofpbuf_data(ofpacts), ofpbuf_size(ofpacts),
5317                            (1u << N_OVS_INSTRUCTIONS) - 1);
5318 exit:
5319     if (error) {
5320         ofpbuf_clear(ofpacts);
5321     }
5322     return error;
5323 }
5324
5325 /* Update the length of the instruction that begins at offset 'ofs' within
5326  * 'openflow' and contains nested actions that extend to the end of 'openflow'.
5327  * If the instruction contains no nested actions, deletes it entirely. */
5328 static void
5329 ofpacts_update_instruction_actions(struct ofpbuf *openflow, size_t ofs)
5330 {
5331     struct ofp11_instruction_actions *oia;
5332
5333     oia = ofpbuf_at_assert(openflow, ofs, sizeof *oia);
5334     if (ofpbuf_size(openflow) > ofs + sizeof *oia) {
5335         oia->len = htons(ofpbuf_size(openflow) - ofs);
5336     } else {
5337         ofpbuf_set_size(openflow, ofs);
5338     }
5339 }
5340 \f
5341 /* Checks that 'port' is a valid output port for OFPACT_OUTPUT, given that the
5342  * switch will never have more than 'max_ports' ports.  Returns 0 if 'port' is
5343  * valid, otherwise an OpenFlow error code. */
5344 enum ofperr
5345 ofpact_check_output_port(ofp_port_t port, ofp_port_t max_ports)
5346 {
5347     switch (port) {
5348     case OFPP_IN_PORT:
5349     case OFPP_TABLE:
5350     case OFPP_NORMAL:
5351     case OFPP_FLOOD:
5352     case OFPP_ALL:
5353     case OFPP_CONTROLLER:
5354     case OFPP_NONE:
5355     case OFPP_LOCAL:
5356         return 0;
5357
5358     default:
5359         if (ofp_to_u16(port) < ofp_to_u16(max_ports)) {
5360             return 0;
5361         }
5362         return OFPERR_OFPBAC_BAD_OUT_PORT;
5363     }
5364 }
5365
5366 /* Removes the protocols that require consistency between match and actions
5367  * (that's everything but OpenFlow 1.0) from '*usable_protocols'.
5368  *
5369  * (An example of an inconsistency between match and actions is a flow that
5370  * does not match on an MPLS Ethertype but has an action that pops an MPLS
5371  * label.) */
5372 static void
5373 inconsistent_match(enum ofputil_protocol *usable_protocols)
5374 {
5375     *usable_protocols &= OFPUTIL_P_OF10_ANY;
5376 }
5377
5378 /* May modify flow->dl_type, flow->nw_proto and flow->vlan_tci,
5379  * caller must restore them.
5380  *
5381  * Modifies some actions, filling in fields that could not be properly set
5382  * without context. */
5383 static enum ofperr
5384 ofpact_check__(enum ofputil_protocol *usable_protocols, struct ofpact *a,
5385                struct flow *flow, ofp_port_t max_ports,
5386                uint8_t table_id, uint8_t n_tables)
5387 {
5388     const struct ofpact_enqueue *enqueue;
5389     const struct mf_field *mf;
5390
5391     switch (a->type) {
5392     case OFPACT_OUTPUT:
5393         return ofpact_check_output_port(ofpact_get_OUTPUT(a)->port,
5394                                         max_ports);
5395
5396     case OFPACT_CONTROLLER:
5397         return 0;
5398
5399     case OFPACT_ENQUEUE:
5400         enqueue = ofpact_get_ENQUEUE(a);
5401         if (ofp_to_u16(enqueue->port) >= ofp_to_u16(max_ports)
5402             && enqueue->port != OFPP_IN_PORT
5403             && enqueue->port != OFPP_LOCAL) {
5404             return OFPERR_OFPBAC_BAD_OUT_PORT;
5405         }
5406         return 0;
5407
5408     case OFPACT_OUTPUT_REG:
5409         return mf_check_src(&ofpact_get_OUTPUT_REG(a)->src, flow);
5410
5411     case OFPACT_BUNDLE:
5412         return bundle_check(ofpact_get_BUNDLE(a), max_ports, flow);
5413
5414     case OFPACT_SET_VLAN_VID:
5415         /* Remember if we saw a vlan tag in the flow to aid translating to
5416          * OpenFlow 1.1+ if need be. */
5417         ofpact_get_SET_VLAN_VID(a)->flow_has_vlan =
5418             (flow->vlan_tci & htons(VLAN_CFI)) == htons(VLAN_CFI);
5419         if (!(flow->vlan_tci & htons(VLAN_CFI)) &&
5420             !ofpact_get_SET_VLAN_VID(a)->push_vlan_if_needed) {
5421             inconsistent_match(usable_protocols);
5422         }
5423         /* Temporary mark that we have a vlan tag. */
5424         flow->vlan_tci |= htons(VLAN_CFI);
5425         return 0;
5426
5427     case OFPACT_SET_VLAN_PCP:
5428         /* Remember if we saw a vlan tag in the flow to aid translating to
5429          * OpenFlow 1.1+ if need be. */
5430         ofpact_get_SET_VLAN_PCP(a)->flow_has_vlan =
5431             (flow->vlan_tci & htons(VLAN_CFI)) == htons(VLAN_CFI);
5432         if (!(flow->vlan_tci & htons(VLAN_CFI)) &&
5433             !ofpact_get_SET_VLAN_PCP(a)->push_vlan_if_needed) {
5434             inconsistent_match(usable_protocols);
5435         }
5436         /* Temporary mark that we have a vlan tag. */
5437         flow->vlan_tci |= htons(VLAN_CFI);
5438         return 0;
5439
5440     case OFPACT_STRIP_VLAN:
5441         if (!(flow->vlan_tci & htons(VLAN_CFI))) {
5442             inconsistent_match(usable_protocols);
5443         }
5444         /* Temporary mark that we have no vlan tag. */
5445         flow->vlan_tci = htons(0);
5446         return 0;
5447
5448     case OFPACT_PUSH_VLAN:
5449         if (flow->vlan_tci & htons(VLAN_CFI)) {
5450             /* Multiple VLAN headers not supported. */
5451             return OFPERR_OFPBAC_BAD_TAG;
5452         }
5453         /* Temporary mark that we have a vlan tag. */
5454         flow->vlan_tci |= htons(VLAN_CFI);
5455         return 0;
5456
5457     case OFPACT_SET_ETH_SRC:
5458     case OFPACT_SET_ETH_DST:
5459         return 0;
5460
5461     case OFPACT_SET_IPV4_SRC:
5462     case OFPACT_SET_IPV4_DST:
5463         if (flow->dl_type != htons(ETH_TYPE_IP)) {
5464             inconsistent_match(usable_protocols);
5465         }
5466         return 0;
5467
5468     case OFPACT_SET_IP_DSCP:
5469     case OFPACT_SET_IP_ECN:
5470     case OFPACT_SET_IP_TTL:
5471     case OFPACT_DEC_TTL:
5472         if (!is_ip_any(flow)) {
5473             inconsistent_match(usable_protocols);
5474         }
5475         return 0;
5476
5477     case OFPACT_SET_L4_SRC_PORT:
5478     case OFPACT_SET_L4_DST_PORT:
5479         if (!is_ip_any(flow) || (flow->nw_frag & FLOW_NW_FRAG_LATER) ||
5480             (flow->nw_proto != IPPROTO_TCP && flow->nw_proto != IPPROTO_UDP
5481              && flow->nw_proto != IPPROTO_SCTP)) {
5482             inconsistent_match(usable_protocols);
5483         }
5484         /* Note on which transport protocol the port numbers are set.
5485          * This allows this set action to be converted to an OF1.2 set field
5486          * action. */
5487         if (a->type == OFPACT_SET_L4_SRC_PORT) {
5488             ofpact_get_SET_L4_SRC_PORT(a)->flow_ip_proto = flow->nw_proto;
5489         } else {
5490             ofpact_get_SET_L4_DST_PORT(a)->flow_ip_proto = flow->nw_proto;
5491         }
5492         return 0;
5493
5494     case OFPACT_REG_MOVE:
5495         return nxm_reg_move_check(ofpact_get_REG_MOVE(a), flow);
5496
5497     case OFPACT_SET_FIELD:
5498         mf = ofpact_get_SET_FIELD(a)->field;
5499         /* Require OXM_OF_VLAN_VID to have an existing VLAN header. */
5500         if (!mf_are_prereqs_ok(mf, flow) ||
5501             (mf->id == MFF_VLAN_VID && !(flow->vlan_tci & htons(VLAN_CFI)))) {
5502             VLOG_WARN_RL(&rl, "set_field %s lacks correct prerequisities",
5503                          mf->name);
5504             return OFPERR_OFPBAC_MATCH_INCONSISTENT;
5505         }
5506         /* Remember if we saw a vlan tag in the flow to aid translating to
5507          * OpenFlow 1.1 if need be. */
5508         ofpact_get_SET_FIELD(a)->flow_has_vlan =
5509             (flow->vlan_tci & htons(VLAN_CFI)) == htons(VLAN_CFI);
5510         if (mf->id == MFF_VLAN_TCI) {
5511             /* The set field may add or remove the vlan tag,
5512              * Mark the status temporarily. */
5513             flow->vlan_tci = ofpact_get_SET_FIELD(a)->value.be16;
5514         }
5515         return 0;
5516
5517     case OFPACT_STACK_PUSH:
5518         return nxm_stack_push_check(ofpact_get_STACK_PUSH(a), flow);
5519
5520     case OFPACT_STACK_POP:
5521         return nxm_stack_pop_check(ofpact_get_STACK_POP(a), flow);
5522
5523     case OFPACT_SET_MPLS_LABEL:
5524     case OFPACT_SET_MPLS_TC:
5525     case OFPACT_SET_MPLS_TTL:
5526     case OFPACT_DEC_MPLS_TTL:
5527         if (!eth_type_mpls(flow->dl_type)) {
5528             inconsistent_match(usable_protocols);
5529         }
5530         return 0;
5531
5532     case OFPACT_SET_TUNNEL:
5533     case OFPACT_SET_QUEUE:
5534     case OFPACT_POP_QUEUE:
5535     case OFPACT_RESUBMIT:
5536         return 0;
5537
5538     case OFPACT_FIN_TIMEOUT:
5539         if (flow->nw_proto != IPPROTO_TCP) {
5540             inconsistent_match(usable_protocols);
5541         }
5542         return 0;
5543
5544     case OFPACT_LEARN:
5545         return learn_check(ofpact_get_LEARN(a), flow);
5546
5547     case OFPACT_CONJUNCTION:
5548         return 0;
5549
5550     case OFPACT_MULTIPATH:
5551         return multipath_check(ofpact_get_MULTIPATH(a), flow);
5552
5553     case OFPACT_NOTE:
5554     case OFPACT_EXIT:
5555         return 0;
5556
5557     case OFPACT_PUSH_MPLS:
5558         flow->dl_type = ofpact_get_PUSH_MPLS(a)->ethertype;
5559         /* The packet is now MPLS and the MPLS payload is opaque.
5560          * Thus nothing can be assumed about the network protocol.
5561          * Temporarily mark that we have no nw_proto. */
5562         flow->nw_proto = 0;
5563         return 0;
5564
5565     case OFPACT_POP_MPLS:
5566         if (!eth_type_mpls(flow->dl_type)) {
5567             inconsistent_match(usable_protocols);
5568         }
5569         flow->dl_type = ofpact_get_POP_MPLS(a)->ethertype;
5570         return 0;
5571
5572     case OFPACT_SAMPLE:
5573         return 0;
5574
5575     case OFPACT_CLEAR_ACTIONS:
5576         return 0;
5577
5578     case OFPACT_WRITE_ACTIONS: {
5579         /* Use a temporary copy of 'usable_protocols' because we can't check
5580          * consistency of an action set. */
5581         struct ofpact_nest *on = ofpact_get_WRITE_ACTIONS(a);
5582         enum ofputil_protocol p = *usable_protocols;
5583         return ofpacts_check(on->actions, ofpact_nest_get_action_len(on),
5584                              flow, max_ports, table_id, n_tables, &p);
5585     }
5586
5587     case OFPACT_WRITE_METADATA:
5588         return 0;
5589
5590     case OFPACT_METER: {
5591         uint32_t mid = ofpact_get_METER(a)->meter_id;
5592         if (mid == 0 || mid > OFPM13_MAX) {
5593             return OFPERR_OFPMMFC_INVALID_METER;
5594         }
5595         return 0;
5596     }
5597
5598     case OFPACT_GOTO_TABLE: {
5599         uint8_t goto_table = ofpact_get_GOTO_TABLE(a)->table_id;
5600         if ((table_id != 255 && goto_table <= table_id)
5601             || (n_tables != 255 && goto_table >= n_tables)) {
5602             return OFPERR_OFPBIC_BAD_TABLE_ID;
5603         }
5604         return 0;
5605     }
5606
5607     case OFPACT_GROUP:
5608         return 0;
5609
5610     default:
5611         OVS_NOT_REACHED();
5612     }
5613 }
5614
5615 /* Checks that the 'ofpacts_len' bytes of actions in 'ofpacts' are
5616  * appropriate for a packet with the prerequisites satisfied by 'flow' in a
5617  * switch with no more than 'max_ports' ports.
5618  *
5619  * If 'ofpacts' and 'flow' are inconsistent with one another, un-sets in
5620  * '*usable_protocols' the protocols that forbid the inconsistency.  (An
5621  * example of an inconsistency between match and actions is a flow that does
5622  * not match on an MPLS Ethertype but has an action that pops an MPLS label.)
5623  *
5624  * May annotate ofpacts with information gathered from the 'flow'.
5625  *
5626  * May temporarily modify 'flow', but restores the changes before returning. */
5627 enum ofperr
5628 ofpacts_check(struct ofpact ofpacts[], size_t ofpacts_len,
5629               struct flow *flow, ofp_port_t max_ports,
5630               uint8_t table_id, uint8_t n_tables,
5631               enum ofputil_protocol *usable_protocols)
5632 {
5633     struct ofpact *a;
5634     ovs_be16 dl_type = flow->dl_type;
5635     ovs_be16 vlan_tci = flow->vlan_tci;
5636     uint8_t nw_proto = flow->nw_proto;
5637     enum ofperr error = 0;
5638
5639     OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
5640         error = ofpact_check__(usable_protocols, a, flow,
5641                                max_ports, table_id, n_tables);
5642         if (error) {
5643             break;
5644         }
5645     }
5646     /* Restore fields that may have been modified. */
5647     flow->dl_type = dl_type;
5648     flow->vlan_tci = vlan_tci;
5649     flow->nw_proto = nw_proto;
5650     return error;
5651 }
5652
5653 /* Like ofpacts_check(), but reports inconsistencies as
5654  * OFPERR_OFPBAC_MATCH_INCONSISTENT rather than clearing bits. */
5655 enum ofperr
5656 ofpacts_check_consistency(struct ofpact ofpacts[], size_t ofpacts_len,
5657                           struct flow *flow, ofp_port_t max_ports,
5658                           uint8_t table_id, uint8_t n_tables,
5659                           enum ofputil_protocol usable_protocols)
5660 {
5661     enum ofputil_protocol p = usable_protocols;
5662     enum ofperr error;
5663
5664     error = ofpacts_check(ofpacts, ofpacts_len, flow, max_ports,
5665                           table_id, n_tables, &p);
5666     return (error ? error
5667             : p != usable_protocols ? OFPERR_OFPBAC_MATCH_INCONSISTENT
5668             : 0);
5669 }
5670
5671 /* Verifies that the 'ofpacts_len' bytes of actions in 'ofpacts' are in the
5672  * appropriate order as defined by the OpenFlow spec and as required by Open
5673  * vSwitch.
5674  *
5675  * 'allowed_ovsinsts' is a bitmap of OVSINST_* values, in which 1-bits indicate
5676  * instructions that are allowed within 'ofpacts[]'. */
5677 static enum ofperr
5678 ofpacts_verify(const struct ofpact ofpacts[], size_t ofpacts_len,
5679                uint32_t allowed_ovsinsts)
5680 {
5681     const struct ofpact *a;
5682     enum ovs_instruction_type inst;
5683
5684     inst = OVSINST_OFPIT13_METER;
5685     OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
5686         enum ovs_instruction_type next;
5687
5688         if (a->type == OFPACT_CONJUNCTION) {
5689             OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
5690                 if (a->type != OFPACT_CONJUNCTION) {
5691                     VLOG_WARN("when %s action is present, it must be the only "
5692                               "kind of action used", ofpact_name(a->type));
5693                     return OFPERR_NXBAC_BAD_CONJUNCTION;
5694                 }
5695             }
5696             return 0;
5697         }
5698
5699         next = ovs_instruction_type_from_ofpact_type(a->type);
5700         if (a > ofpacts
5701             && (inst == OVSINST_OFPIT11_APPLY_ACTIONS
5702                 ? next < inst
5703                 : next <= inst)) {
5704             const char *name = ovs_instruction_name_from_type(inst);
5705             const char *next_name = ovs_instruction_name_from_type(next);
5706
5707             if (next == inst) {
5708                 VLOG_WARN("duplicate %s instruction not allowed, for OpenFlow "
5709                           "1.1+ compatibility", name);
5710             } else {
5711                 VLOG_WARN("invalid instruction ordering: %s must appear "
5712                           "before %s, for OpenFlow 1.1+ compatibility",
5713                           next_name, name);
5714             }
5715             return OFPERR_OFPBAC_UNSUPPORTED_ORDER;
5716         }
5717         if (!((1u << next) & allowed_ovsinsts)) {
5718             const char *name = ovs_instruction_name_from_type(next);
5719
5720             VLOG_WARN("%s instruction not allowed here", name);
5721             return OFPERR_OFPBIC_UNSUP_INST;
5722         }
5723
5724         inst = next;
5725     }
5726
5727     return 0;
5728 }
5729 \f
5730 /* Converting ofpacts to OpenFlow. */
5731
5732 static void
5733 encode_ofpact(const struct ofpact *a, enum ofp_version ofp_version,
5734               struct ofpbuf *out)
5735 {
5736     switch (a->type) {
5737 #define OFPACT(ENUM, STRUCT, MEMBER, NAME)                              \
5738         case OFPACT_##ENUM:                                             \
5739             encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
5740             return;
5741         OFPACTS
5742 #undef OFPACT
5743     default:
5744         OVS_NOT_REACHED();
5745     }
5746 }
5747
5748 /* Converts the 'ofpacts_len' bytes of ofpacts in 'ofpacts' into OpenFlow
5749  * actions in 'openflow', appending the actions to any existing data in
5750  * 'openflow'. */
5751 size_t
5752 ofpacts_put_openflow_actions(const struct ofpact ofpacts[], size_t ofpacts_len,
5753                              struct ofpbuf *openflow,
5754                              enum ofp_version ofp_version)
5755 {
5756     const struct ofpact *a;
5757     size_t start_size = ofpbuf_size(openflow);
5758
5759     OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
5760         encode_ofpact(a, ofp_version, openflow);
5761     }
5762     return ofpbuf_size(openflow) - start_size;
5763 }
5764
5765 static enum ovs_instruction_type
5766 ofpact_is_apply_actions(const struct ofpact *a)
5767 {
5768     return (ovs_instruction_type_from_ofpact_type(a->type)
5769             == OVSINST_OFPIT11_APPLY_ACTIONS);
5770 }
5771
5772 void
5773 ofpacts_put_openflow_instructions(const struct ofpact ofpacts[],
5774                                   size_t ofpacts_len,
5775                                   struct ofpbuf *openflow,
5776                                   enum ofp_version ofp_version)
5777 {
5778     const struct ofpact *end = ofpact_end(ofpacts, ofpacts_len);
5779     const struct ofpact *a;
5780
5781     if (ofp_version == OFP10_VERSION) {
5782         ofpacts_put_openflow_actions(ofpacts, ofpacts_len, openflow,
5783                                      ofp_version);
5784         return;
5785     }
5786
5787     a = ofpacts;
5788     while (a < end) {
5789         if (ofpact_is_apply_actions(a)) {
5790             size_t ofs = ofpbuf_size(openflow);
5791
5792             instruction_put_OFPIT11_APPLY_ACTIONS(openflow);
5793             do {
5794                 encode_ofpact(a, ofp_version, openflow);
5795                 a = ofpact_next(a);
5796             } while (a < end && ofpact_is_apply_actions(a));
5797             ofpacts_update_instruction_actions(openflow, ofs);
5798         } else {
5799             encode_ofpact(a, ofp_version, openflow);
5800             a = ofpact_next(a);
5801         }
5802     }
5803 }
5804 \f
5805 /* Sets of supported actions. */
5806
5807 /* Two-way translation between OVS's internal "OFPACT_*" representation of
5808  * actions and the "OFPAT_*" representation used in some OpenFlow version.
5809  * (OFPAT_* numbering varies from one OpenFlow version to another, so a given
5810  * instance is specific to one OpenFlow version.) */
5811 struct ofpact_map {
5812     enum ofpact_type ofpact;    /* Internal name for action type. */
5813     int ofpat;                  /* OFPAT_* number from OpenFlow spec. */
5814 };
5815
5816 static const struct ofpact_map *
5817 get_ofpact_map(enum ofp_version version)
5818 {
5819     /* OpenFlow 1.0 actions. */
5820     static const struct ofpact_map of10[] = {
5821         { OFPACT_OUTPUT, 0 },
5822         { OFPACT_SET_VLAN_VID, 1 },
5823         { OFPACT_SET_VLAN_PCP, 2 },
5824         { OFPACT_STRIP_VLAN, 3 },
5825         { OFPACT_SET_ETH_SRC, 4 },
5826         { OFPACT_SET_ETH_DST, 5 },
5827         { OFPACT_SET_IPV4_SRC, 6 },
5828         { OFPACT_SET_IPV4_DST, 7 },
5829         { OFPACT_SET_IP_DSCP, 8 },
5830         { OFPACT_SET_L4_SRC_PORT, 9 },
5831         { OFPACT_SET_L4_DST_PORT, 10 },
5832         { OFPACT_ENQUEUE, 11 },
5833         { 0, -1 },
5834     };
5835
5836     /* OpenFlow 1.1 actions. */
5837     static const struct ofpact_map of11[] = {
5838         { OFPACT_OUTPUT, 0 },
5839         { OFPACT_SET_VLAN_VID, 1 },
5840         { OFPACT_SET_VLAN_PCP, 2 },
5841         { OFPACT_SET_ETH_SRC, 3 },
5842         { OFPACT_SET_ETH_DST, 4 },
5843         { OFPACT_SET_IPV4_SRC, 5 },
5844         { OFPACT_SET_IPV4_DST, 6 },
5845         { OFPACT_SET_IP_DSCP, 7 },
5846         { OFPACT_SET_IP_ECN, 8 },
5847         { OFPACT_SET_L4_SRC_PORT, 9 },
5848         { OFPACT_SET_L4_DST_PORT, 10 },
5849         /* OFPAT_COPY_TTL_OUT (11) not supported. */
5850         /* OFPAT_COPY_TTL_IN (12) not supported. */
5851         { OFPACT_SET_MPLS_LABEL, 13 },
5852         { OFPACT_SET_MPLS_TC, 14 },
5853         { OFPACT_SET_MPLS_TTL, 15 },
5854         { OFPACT_DEC_MPLS_TTL, 16 },
5855         { OFPACT_PUSH_VLAN, 17 },
5856         { OFPACT_STRIP_VLAN, 18 },
5857         { OFPACT_PUSH_MPLS, 19 },
5858         { OFPACT_POP_MPLS, 20 },
5859         { OFPACT_SET_QUEUE, 21 },
5860         { OFPACT_GROUP, 22 },
5861         { OFPACT_SET_IP_TTL, 23 },
5862         { OFPACT_DEC_TTL, 24 },
5863         { 0, -1 },
5864     };
5865
5866     /* OpenFlow 1.2, 1.3, and 1.4 actions. */
5867     static const struct ofpact_map of12[] = {
5868         { OFPACT_OUTPUT, 0 },
5869         /* OFPAT_COPY_TTL_OUT (11) not supported. */
5870         /* OFPAT_COPY_TTL_IN (12) not supported. */
5871         { OFPACT_SET_MPLS_TTL, 15 },
5872         { OFPACT_DEC_MPLS_TTL, 16 },
5873         { OFPACT_PUSH_VLAN, 17 },
5874         { OFPACT_STRIP_VLAN, 18 },
5875         { OFPACT_PUSH_MPLS, 19 },
5876         { OFPACT_POP_MPLS, 20 },
5877         { OFPACT_SET_QUEUE, 21 },
5878         { OFPACT_GROUP, 22 },
5879         { OFPACT_SET_IP_TTL, 23 },
5880         { OFPACT_DEC_TTL, 24 },
5881         { OFPACT_SET_FIELD, 25 },
5882         /* OF1.3+ OFPAT_PUSH_PBB (26) not supported. */
5883         /* OF1.3+ OFPAT_POP_PBB (27) not supported. */
5884         { 0, -1 },
5885     };
5886
5887     switch (version) {
5888     case OFP10_VERSION:
5889         return of10;
5890
5891     case OFP11_VERSION:
5892         return of11;
5893
5894     case OFP12_VERSION:
5895     case OFP13_VERSION:
5896     case OFP14_VERSION:
5897     case OFP15_VERSION:
5898     default:
5899         return of12;
5900     }
5901 }
5902
5903 /* Converts 'ofpacts_bitmap', a bitmap whose bits correspond to OFPACT_*
5904  * values, into a bitmap of actions suitable for OpenFlow 'version', and
5905  * returns the result. */
5906 ovs_be32
5907 ofpact_bitmap_to_openflow(uint64_t ofpacts_bitmap, enum ofp_version version)
5908 {
5909     uint32_t openflow_bitmap = 0;
5910     const struct ofpact_map *x;
5911
5912     for (x = get_ofpact_map(version); x->ofpat >= 0; x++) {
5913         if (ofpacts_bitmap & (UINT64_C(1) << x->ofpact)) {
5914             openflow_bitmap |= 1u << x->ofpat;
5915         }
5916     }
5917     return htonl(openflow_bitmap);
5918 }
5919
5920 /* Converts 'ofpat_bitmap', a bitmap of actions from an OpenFlow message with
5921  * the given 'version' into a bitmap whose bits correspond to OFPACT_* values,
5922  * and returns the result. */
5923 uint64_t
5924 ofpact_bitmap_from_openflow(ovs_be32 ofpat_bitmap, enum ofp_version version)
5925 {
5926     uint64_t ofpact_bitmap = 0;
5927     const struct ofpact_map *x;
5928
5929     for (x = get_ofpact_map(version); x->ofpat >= 0; x++) {
5930         if (ofpat_bitmap & htonl(1u << x->ofpat)) {
5931             ofpact_bitmap |= UINT64_C(1) << x->ofpact;
5932         }
5933     }
5934     return ofpact_bitmap;
5935 }
5936
5937 /* Appends to 's' a string representation of the set of OFPACT_* represented
5938  * by 'ofpacts_bitmap'. */
5939 void
5940 ofpact_bitmap_format(uint64_t ofpacts_bitmap, struct ds *s)
5941 {
5942     if (!ofpacts_bitmap) {
5943         ds_put_cstr(s, "<none>");
5944     } else {
5945         while (ofpacts_bitmap) {
5946             ds_put_format(s, "%s ",
5947                           ofpact_name(rightmost_1bit_idx(ofpacts_bitmap)));
5948             ofpacts_bitmap = zero_rightmost_1bit(ofpacts_bitmap);
5949         }
5950         ds_chomp(s, ' ');
5951     }
5952 }
5953 \f
5954 /* Returns true if 'action' outputs to 'port', false otherwise. */
5955 static bool
5956 ofpact_outputs_to_port(const struct ofpact *ofpact, ofp_port_t port)
5957 {
5958     switch (ofpact->type) {
5959     case OFPACT_OUTPUT:
5960         return ofpact_get_OUTPUT(ofpact)->port == port;
5961     case OFPACT_ENQUEUE:
5962         return ofpact_get_ENQUEUE(ofpact)->port == port;
5963     case OFPACT_CONTROLLER:
5964         return port == OFPP_CONTROLLER;
5965
5966     case OFPACT_OUTPUT_REG:
5967     case OFPACT_BUNDLE:
5968     case OFPACT_SET_VLAN_VID:
5969     case OFPACT_SET_VLAN_PCP:
5970     case OFPACT_STRIP_VLAN:
5971     case OFPACT_PUSH_VLAN:
5972     case OFPACT_SET_ETH_SRC:
5973     case OFPACT_SET_ETH_DST:
5974     case OFPACT_SET_IPV4_SRC:
5975     case OFPACT_SET_IPV4_DST:
5976     case OFPACT_SET_IP_DSCP:
5977     case OFPACT_SET_IP_ECN:
5978     case OFPACT_SET_IP_TTL:
5979     case OFPACT_SET_L4_SRC_PORT:
5980     case OFPACT_SET_L4_DST_PORT:
5981     case OFPACT_REG_MOVE:
5982     case OFPACT_SET_FIELD:
5983     case OFPACT_STACK_PUSH:
5984     case OFPACT_STACK_POP:
5985     case OFPACT_DEC_TTL:
5986     case OFPACT_SET_MPLS_LABEL:
5987     case OFPACT_SET_MPLS_TC:
5988     case OFPACT_SET_MPLS_TTL:
5989     case OFPACT_DEC_MPLS_TTL:
5990     case OFPACT_SET_TUNNEL:
5991     case OFPACT_WRITE_METADATA:
5992     case OFPACT_SET_QUEUE:
5993     case OFPACT_POP_QUEUE:
5994     case OFPACT_FIN_TIMEOUT:
5995     case OFPACT_RESUBMIT:
5996     case OFPACT_LEARN:
5997     case OFPACT_CONJUNCTION:
5998     case OFPACT_MULTIPATH:
5999     case OFPACT_NOTE:
6000     case OFPACT_EXIT:
6001     case OFPACT_PUSH_MPLS:
6002     case OFPACT_POP_MPLS:
6003     case OFPACT_SAMPLE:
6004     case OFPACT_CLEAR_ACTIONS:
6005     case OFPACT_WRITE_ACTIONS:
6006     case OFPACT_GOTO_TABLE:
6007     case OFPACT_METER:
6008     case OFPACT_GROUP:
6009     default:
6010         return false;
6011     }
6012 }
6013
6014 /* Returns true if any action in the 'ofpacts_len' bytes of 'ofpacts' outputs
6015  * to 'port', false otherwise. */
6016 bool
6017 ofpacts_output_to_port(const struct ofpact *ofpacts, size_t ofpacts_len,
6018                        ofp_port_t port)
6019 {
6020     const struct ofpact *a;
6021
6022     OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
6023         if (ofpact_outputs_to_port(a, port)) {
6024             return true;
6025         }
6026     }
6027
6028     return false;
6029 }
6030
6031 /* Returns true if any action in the 'ofpacts_len' bytes of 'ofpacts' outputs
6032  * to 'group', false otherwise. */
6033 bool
6034 ofpacts_output_to_group(const struct ofpact *ofpacts, size_t ofpacts_len,
6035                         uint32_t group_id)
6036 {
6037     const struct ofpact *a;
6038
6039     OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
6040         if (a->type == OFPACT_GROUP
6041             && ofpact_get_GROUP(a)->group_id == group_id) {
6042             return true;
6043         }
6044     }
6045
6046     return false;
6047 }
6048
6049 bool
6050 ofpacts_equal(const struct ofpact *a, size_t a_len,
6051               const struct ofpact *b, size_t b_len)
6052 {
6053     return a_len == b_len && !memcmp(a, b, a_len);
6054 }
6055
6056 /* Finds the OFPACT_METER action, if any, in the 'ofpacts_len' bytes of
6057  * 'ofpacts'.  If found, returns its meter ID; if not, returns 0.
6058  *
6059  * This function relies on the order of 'ofpacts' being correct (as checked by
6060  * ofpacts_verify()). */
6061 uint32_t
6062 ofpacts_get_meter(const struct ofpact ofpacts[], size_t ofpacts_len)
6063 {
6064     const struct ofpact *a;
6065
6066     OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
6067         enum ovs_instruction_type inst;
6068
6069         inst = ovs_instruction_type_from_ofpact_type(a->type);
6070         if (a->type == OFPACT_METER) {
6071             return ofpact_get_METER(a)->meter_id;
6072         } else if (inst > OVSINST_OFPIT13_METER) {
6073             break;
6074         }
6075     }
6076
6077     return 0;
6078 }
6079 \f
6080 /* Formatting ofpacts. */
6081
6082 static void
6083 ofpact_format(const struct ofpact *a, struct ds *s)
6084 {
6085     switch (a->type) {
6086 #define OFPACT(ENUM, STRUCT, MEMBER, NAME)                              \
6087         case OFPACT_##ENUM:                                             \
6088             format_##ENUM(ALIGNED_CAST(const struct STRUCT *, a), s);   \
6089             break;
6090         OFPACTS
6091 #undef OFPACT
6092     default:
6093         OVS_NOT_REACHED();
6094     }
6095 }
6096
6097 /* Appends a string representing the 'ofpacts_len' bytes of ofpacts in
6098  * 'ofpacts' to 'string'. */
6099 void
6100 ofpacts_format(const struct ofpact *ofpacts, size_t ofpacts_len,
6101                struct ds *string)
6102 {
6103     if (!ofpacts_len) {
6104         ds_put_cstr(string, "drop");
6105     } else {
6106         const struct ofpact *a;
6107
6108         OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
6109             if (a != ofpacts) {
6110                 ds_put_cstr(string, ",");
6111             }
6112
6113             /* XXX write-actions */
6114             ofpact_format(a, string);
6115         }
6116     }
6117 }
6118 \f
6119 /* Internal use by helpers. */
6120
6121 void *
6122 ofpact_put(struct ofpbuf *ofpacts, enum ofpact_type type, size_t len)
6123 {
6124     struct ofpact *ofpact;
6125
6126     ofpact_pad(ofpacts);
6127     ofpact = ofpacts->frame = ofpbuf_put_uninit(ofpacts, len);
6128     ofpact_init(ofpact, type, len);
6129     return ofpact;
6130 }
6131
6132 void
6133 ofpact_init(struct ofpact *ofpact, enum ofpact_type type, size_t len)
6134 {
6135     memset(ofpact, 0, len);
6136     ofpact->type = type;
6137     ofpact->raw = -1;
6138     ofpact->len = len;
6139 }
6140 \f
6141 /* Updates 'ofpact->len' to the number of bytes in the tail of 'ofpacts'
6142  * starting at 'ofpact'.
6143  *
6144  * This is the correct way to update a variable-length ofpact's length after
6145  * adding the variable-length part of the payload.  (See the large comment
6146  * near the end of ofp-actions.h for more information.) */
6147 void
6148 ofpact_update_len(struct ofpbuf *ofpacts, struct ofpact *ofpact)
6149 {
6150     ovs_assert(ofpact == ofpacts->frame);
6151     ofpact->len = (char *) ofpbuf_tail(ofpacts) - (char *) ofpact;
6152 }
6153
6154 /* Pads out 'ofpacts' to a multiple of OFPACT_ALIGNTO bytes in length.  Each
6155  * ofpact_put_<ENUM>() calls this function automatically beforehand, but the
6156  * client must call this itself after adding the final ofpact to an array of
6157  * them.
6158  *
6159  * (The consequences of failing to call this function are probably not dire.
6160  * OFPACT_FOR_EACH will calculate a pointer beyond the end of the ofpacts, but
6161  * not dereference it.  That's undefined behavior, technically, but it will not
6162  * cause a real problem on common systems.  Still, it seems better to call
6163  * it.) */
6164 void
6165 ofpact_pad(struct ofpbuf *ofpacts)
6166 {
6167     unsigned int pad = PAD_SIZE(ofpbuf_size(ofpacts), OFPACT_ALIGNTO);
6168     if (pad) {
6169         ofpbuf_put_zeros(ofpacts, pad);
6170     }
6171 }
6172 \f
6173
6174
6175
6176 static char * OVS_WARN_UNUSED_RESULT
6177 ofpact_parse(enum ofpact_type type, char *value, struct ofpbuf *ofpacts,
6178              enum ofputil_protocol *usable_protocols)
6179 {
6180     switch (type) {
6181 #define OFPACT(ENUM, STRUCT, MEMBER, NAME)                            \
6182         case OFPACT_##ENUM:                                             \
6183             return parse_##ENUM(value, ofpacts, usable_protocols);
6184         OFPACTS
6185 #undef OFPACT
6186     default:
6187         OVS_NOT_REACHED();
6188     }
6189 }
6190
6191 static bool
6192 ofpact_type_from_name(const char *name, enum ofpact_type *type)
6193 {
6194 #define OFPACT(ENUM, STRUCT, MEMBER, NAME)                            \
6195     if (!strcasecmp(name, NAME)) {                                    \
6196         *type = OFPACT_##ENUM;                                          \
6197         return true;                                                    \
6198     }
6199     OFPACTS
6200 #undef OFPACT
6201
6202     return false;
6203 }
6204
6205 /* Parses 'str' as a series of instructions, and appends them to 'ofpacts'.
6206  *
6207  * Returns NULL if successful, otherwise a malloc()'d string describing the
6208  * error.  The caller is responsible for freeing the returned string. */
6209 static char * OVS_WARN_UNUSED_RESULT
6210 ofpacts_parse__(char *str, struct ofpbuf *ofpacts,
6211                 enum ofputil_protocol *usable_protocols,
6212                 bool allow_instructions)
6213 {
6214     int prev_inst = -1;
6215     enum ofperr retval;
6216     char *key, *value;
6217     bool drop = false;
6218     char *pos;
6219
6220     pos = str;
6221     while (ofputil_parse_key_value(&pos, &key, &value)) {
6222         enum ovs_instruction_type inst = OVSINST_OFPIT11_APPLY_ACTIONS;
6223         enum ofpact_type type;
6224         char *error = NULL;
6225         ofp_port_t port;
6226
6227         if (ofpact_type_from_name(key, &type)) {
6228             error = ofpact_parse(type, value, ofpacts, usable_protocols);
6229             inst = ovs_instruction_type_from_ofpact_type(type);
6230         } else if (!strcasecmp(key, "mod_vlan_vid")) {
6231             error = parse_set_vlan_vid(value, ofpacts, true);
6232         } else if (!strcasecmp(key, "mod_vlan_pcp")) {
6233             error = parse_set_vlan_pcp(value, ofpacts, true);
6234         } else if (!strcasecmp(key, "set_nw_ttl")) {
6235             error = parse_SET_IP_TTL(value, ofpacts, usable_protocols);
6236         } else if (!strcasecmp(key, "pop_vlan")) {
6237             error = parse_pop_vlan(ofpacts);
6238         } else if (!strcasecmp(key, "set_tunnel64")) {
6239             error = parse_set_tunnel(value, ofpacts,
6240                                      NXAST_RAW_SET_TUNNEL64);
6241         } else if (!strcasecmp(key, "load")) {
6242             error = parse_reg_load(value, ofpacts);
6243         } else if (!strcasecmp(key, "bundle_load")) {
6244             error = parse_bundle_load(value, ofpacts);
6245         } else if (!strcasecmp(key, "drop")) {
6246             drop = true;
6247         } else if (!strcasecmp(key, "apply_actions")) {
6248             return xstrdup("apply_actions is the default instruction");
6249         } else if (ofputil_port_from_string(key, &port)) {
6250             ofpact_put_OUTPUT(ofpacts)->port = port;
6251         } else {
6252             return xasprintf("unknown action %s", key);
6253         }
6254         if (error) {
6255             return error;
6256         }
6257
6258         if (inst != OVSINST_OFPIT11_APPLY_ACTIONS) {
6259             if (!allow_instructions) {
6260                 return xasprintf("only actions are allowed here (not "
6261                                  "instruction %s)",
6262                                  ovs_instruction_name_from_type(inst));
6263             }
6264             if (inst == prev_inst) {
6265                 return xasprintf("instruction %s may be specified only once",
6266                                  ovs_instruction_name_from_type(inst));
6267             }
6268         }
6269         if (prev_inst != -1 && inst < prev_inst) {
6270             return xasprintf("instruction %s must be specified before %s",
6271                              ovs_instruction_name_from_type(inst),
6272                              ovs_instruction_name_from_type(prev_inst));
6273         }
6274         prev_inst = inst;
6275     }
6276     ofpact_pad(ofpacts);
6277
6278     if (drop && ofpbuf_size(ofpacts)) {
6279         return xstrdup("\"drop\" must not be accompanied by any other action "
6280                        "or instruction");
6281     }
6282
6283     retval = ofpacts_verify(ofpbuf_data(ofpacts), ofpbuf_size(ofpacts),
6284                             (allow_instructions
6285                              ? (1u << N_OVS_INSTRUCTIONS) - 1
6286                              : 1u << OVSINST_OFPIT11_APPLY_ACTIONS));
6287     if (retval) {
6288         return xstrdup("Incorrect instruction ordering");
6289     }
6290
6291     return NULL;
6292 }
6293
6294 static char * OVS_WARN_UNUSED_RESULT
6295 ofpacts_parse(char *str, struct ofpbuf *ofpacts,
6296               enum ofputil_protocol *usable_protocols, bool allow_instructions)
6297 {
6298     uint32_t orig_size = ofpbuf_size(ofpacts);
6299     char *error = ofpacts_parse__(str, ofpacts, usable_protocols,
6300                                   allow_instructions);
6301     if (error) {
6302         ofpbuf_set_size(ofpacts, orig_size);
6303     }
6304     return error;
6305 }
6306
6307 static char * OVS_WARN_UNUSED_RESULT
6308 ofpacts_parse_copy(const char *s_, struct ofpbuf *ofpacts,
6309                    enum ofputil_protocol *usable_protocols,
6310                    bool allow_instructions)
6311 {
6312     char *error, *s;
6313
6314     *usable_protocols = OFPUTIL_P_ANY;
6315
6316     s = xstrdup(s_);
6317     error = ofpacts_parse(s, ofpacts, usable_protocols, allow_instructions);
6318     free(s);
6319
6320     return error;
6321 }
6322
6323 /* Parses 's' as a set of OpenFlow actions and appends the actions to
6324  * 'ofpacts'.
6325  *
6326  * Returns NULL if successful, otherwise a malloc()'d string describing the
6327  * error.  The caller is responsible for freeing the returned string. */
6328 char * OVS_WARN_UNUSED_RESULT
6329 ofpacts_parse_actions(const char *s, struct ofpbuf *ofpacts,
6330                       enum ofputil_protocol *usable_protocols)
6331 {
6332     return ofpacts_parse_copy(s, ofpacts, usable_protocols, false);
6333 }
6334
6335 /* Parses 's' as a set of OpenFlow instructions and appends the instructions to
6336  * 'ofpacts'.
6337  *
6338  * Returns NULL if successful, otherwise a malloc()'d string describing the
6339  * error.  The caller is responsible for freeing the returned string. */
6340 char * OVS_WARN_UNUSED_RESULT
6341 ofpacts_parse_instructions(const char *s, struct ofpbuf *ofpacts,
6342                            enum ofputil_protocol *usable_protocols)
6343 {
6344     return ofpacts_parse_copy(s, ofpacts, usable_protocols, true);
6345 }
6346
6347 const char *
6348 ofpact_name(enum ofpact_type type)
6349 {
6350     switch (type) {
6351 #define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
6352         OFPACTS
6353 #undef OFPACT
6354     }
6355     return "<unknown>";
6356 }
6357 \f
6358 /* Low-level action decoding and encoding functions. */
6359
6360 /* Everything needed to identify a particular OpenFlow action. */
6361 struct ofpact_hdrs {
6362     uint32_t vendor;              /* 0 if standard, otherwise a vendor code. */
6363     uint16_t type;                /* Type if standard, otherwise subtype. */
6364     uint8_t ofp_version;          /* From ofp_header. */
6365 };
6366
6367 /* Information about a particular OpenFlow action. */
6368 struct ofpact_raw_instance {
6369     /* The action's identity. */
6370     struct ofpact_hdrs hdrs;
6371     enum ofp_raw_action_type raw;
6372
6373     /* Looking up the action. */
6374     struct hmap_node decode_node; /* Based on 'hdrs'. */
6375     struct hmap_node encode_node; /* Based on 'raw' + 'hdrs.ofp_version'. */
6376
6377     /* The action's encoded size.
6378      *
6379      * If this action is fixed-length, 'min_length' == 'max_length'.
6380      * If it is variable length, then 'max_length' is ROUND_DOWN(UINT16_MAX,
6381      * OFP_ACTION_ALIGN) == 65528. */
6382     unsigned short int min_length;
6383     unsigned short int max_length;
6384
6385     /* For actions with a simple integer numeric argument, 'arg_ofs' is the
6386      * offset of that argument from the beginning of the action and 'arg_len'
6387      * its length, both in bytes.
6388      *
6389      * For actions that take other forms, these are both zero. */
6390     unsigned short int arg_ofs;
6391     unsigned short int arg_len;
6392
6393     /* The name of the action, e.g. "OFPAT_OUTPUT" or "NXAST_RESUBMIT". */
6394     const char *name;
6395
6396     /* If this action is deprecated, a human-readable string with a brief
6397      * explanation. */
6398     const char *deprecation;
6399 };
6400
6401 /* Action header. */
6402 struct ofp_action_header {
6403     /* The meaning of other values of 'type' generally depends on the OpenFlow
6404      * version (see enum ofp_raw_action_type).
6405      *
6406      * Across all OpenFlow versions, OFPAT_VENDOR indicates that 'vendor'
6407      * designates an OpenFlow vendor ID and that the remainder of the action
6408      * structure has a vendor-defined meaning.
6409      */
6410 #define OFPAT_VENDOR 0xffff
6411     ovs_be16 type;
6412
6413     /* Always a multiple of 8. */
6414     ovs_be16 len;
6415
6416     /* For type == OFPAT_VENDOR only, this is a vendor ID, e.g. NX_VENDOR_ID or
6417      * ONF_VENDOR_ID.  Other 'type's use this space for some other purpose. */
6418     ovs_be32 vendor;
6419 };
6420 OFP_ASSERT(sizeof(struct ofp_action_header) == 8);
6421
6422 /* Header for Nicira-defined actions and for ONF vendor extensions.
6423  *
6424  * This cannot be used as an entirely generic vendor extension action header,
6425  * because OpenFlow does not specify the location or size of the action
6426  * subtype; it just happens that ONF extensions and Nicira extensions share
6427  * this format. */
6428 struct ext_action_header {
6429     ovs_be16 type;                  /* OFPAT_VENDOR. */
6430     ovs_be16 len;                   /* At least 16. */
6431     ovs_be32 vendor;                /* NX_VENDOR_ID or ONF_VENDOR_ID. */
6432     ovs_be16 subtype;               /* See enum ofp_raw_action_type. */
6433     uint8_t pad[6];
6434 };
6435 OFP_ASSERT(sizeof(struct ext_action_header) == 16);
6436
6437 static bool
6438 ofpact_hdrs_equal(const struct ofpact_hdrs *a,
6439                   const struct ofpact_hdrs *b)
6440 {
6441     return (a->vendor == b->vendor
6442             && a->type == b->type
6443             && a->ofp_version == b->ofp_version);
6444 }
6445
6446 static uint32_t
6447 ofpact_hdrs_hash(const struct ofpact_hdrs *hdrs)
6448 {
6449     return hash_2words(hdrs->vendor, (hdrs->type << 16) | hdrs->ofp_version);
6450 }
6451
6452 #include "ofp-actions.inc2"
6453
6454 static struct hmap *
6455 ofpact_decode_hmap(void)
6456 {
6457     static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
6458     static struct hmap hmap;
6459
6460     if (ovsthread_once_start(&once)) {
6461         struct ofpact_raw_instance *inst;
6462
6463         hmap_init(&hmap);
6464         for (inst = all_raw_instances;
6465              inst < &all_raw_instances[ARRAY_SIZE(all_raw_instances)];
6466              inst++) {
6467             hmap_insert(&hmap, &inst->decode_node,
6468                         ofpact_hdrs_hash(&inst->hdrs));
6469         }
6470         ovsthread_once_done(&once);
6471     }
6472     return &hmap;
6473 }
6474
6475 static struct hmap *
6476 ofpact_encode_hmap(void)
6477 {
6478     static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
6479     static struct hmap hmap;
6480
6481     if (ovsthread_once_start(&once)) {
6482         struct ofpact_raw_instance *inst;
6483
6484         hmap_init(&hmap);
6485         for (inst = all_raw_instances;
6486              inst < &all_raw_instances[ARRAY_SIZE(all_raw_instances)];
6487              inst++) {
6488             hmap_insert(&hmap, &inst->encode_node,
6489                         hash_2words(inst->raw, inst->hdrs.ofp_version));
6490         }
6491         ovsthread_once_done(&once);
6492     }
6493     return &hmap;
6494 }
6495
6496 static enum ofperr
6497 ofpact_decode_raw(enum ofp_version ofp_version,
6498                   const struct ofp_action_header *oah, size_t length,
6499                   const struct ofpact_raw_instance **instp)
6500 {
6501     const struct ofpact_raw_instance *inst;
6502     struct ofpact_hdrs hdrs;
6503
6504     *instp = NULL;
6505     if (length < sizeof *oah) {
6506         return OFPERR_OFPBAC_BAD_LEN;
6507     }
6508
6509     /* Get base action type. */
6510     if (oah->type == htons(OFPAT_VENDOR)) {
6511         /* Get vendor. */
6512         hdrs.vendor = ntohl(oah->vendor);
6513         if (hdrs.vendor == NX_VENDOR_ID || hdrs.vendor == ONF_VENDOR_ID) {
6514             /* Get extension subtype. */
6515             const struct ext_action_header *nah;
6516
6517             nah = ALIGNED_CAST(const struct ext_action_header *, oah);
6518             if (length < sizeof *nah) {
6519                 return OFPERR_OFPBAC_BAD_LEN;
6520             }
6521             hdrs.type = ntohs(nah->subtype);
6522         } else {
6523             VLOG_WARN_RL(&rl, "OpenFlow action has unknown vendor %#"PRIx32,
6524                          hdrs.vendor);
6525             return OFPERR_OFPBAC_BAD_VENDOR;
6526         }
6527     } else {
6528         hdrs.vendor = 0;
6529         hdrs.type = ntohs(oah->type);
6530     }
6531
6532     hdrs.ofp_version = ofp_version;
6533     HMAP_FOR_EACH_WITH_HASH (inst, decode_node, ofpact_hdrs_hash(&hdrs),
6534                              ofpact_decode_hmap()) {
6535         if (ofpact_hdrs_equal(&hdrs, &inst->hdrs)) {
6536             *instp = inst;
6537             return 0;
6538         }
6539     }
6540
6541     return (hdrs.vendor
6542             ? OFPERR_OFPBAC_BAD_VENDOR_TYPE
6543             : OFPERR_OFPBAC_BAD_TYPE);
6544 }
6545
6546 static enum ofperr
6547 ofpact_pull_raw(struct ofpbuf *buf, enum ofp_version ofp_version,
6548                 enum ofp_raw_action_type *raw, uint64_t *arg)
6549 {
6550     const struct ofp_action_header *oah = ofpbuf_data(buf);
6551     const struct ofpact_raw_instance *action;
6552     unsigned int length;
6553     enum ofperr error;
6554
6555     *raw = *arg = 0;
6556     error = ofpact_decode_raw(ofp_version, oah, ofpbuf_size(buf), &action);
6557     if (error) {
6558         return error;
6559     }
6560
6561     if (action->deprecation) {
6562         VLOG_INFO_RL(&rl, "%s is deprecated in %s (%s)",
6563                      action->name, ofputil_version_to_string(ofp_version),
6564                      action->deprecation);
6565     }
6566
6567     length = ntohs(oah->len);
6568     if (length > ofpbuf_size(buf)) {
6569         VLOG_WARN_RL(&rl, "OpenFlow action %s length %u exceeds action buffer "
6570                      "length %"PRIu32, action->name, length, ofpbuf_size(buf));
6571         return OFPERR_OFPBAC_BAD_LEN;
6572     }
6573     if (length < action->min_length || length > action->max_length) {
6574         VLOG_WARN_RL(&rl, "OpenFlow action %s length %u not in valid range "
6575                      "[%hu,%hu]", action->name, length,
6576                      action->min_length, action->max_length);
6577         return OFPERR_OFPBAC_BAD_LEN;
6578     }
6579     if (length % 8) {
6580         VLOG_WARN_RL(&rl, "OpenFlow action %s length %u is not a multiple "
6581                      "of 8", action->name, length);
6582         return OFPERR_OFPBAC_BAD_LEN;
6583     }
6584
6585     *raw = action->raw;
6586     *arg = 0;
6587     if (action->arg_len) {
6588         const uint8_t *p;
6589         int i;
6590
6591         p = ofpbuf_at_assert(buf, action->arg_ofs, action->arg_len);
6592         for (i = 0; i < action->arg_len; i++) {
6593             *arg = (*arg << 8) | p[i];
6594         }
6595     }
6596
6597     ofpbuf_pull(buf, length);
6598
6599     return 0;
6600 }
6601
6602 static const struct ofpact_raw_instance *
6603 ofpact_raw_lookup(enum ofp_version ofp_version, enum ofp_raw_action_type raw)
6604 {
6605     const struct ofpact_raw_instance *inst;
6606
6607     HMAP_FOR_EACH_WITH_HASH (inst, encode_node, hash_2words(raw, ofp_version),
6608                              ofpact_encode_hmap()) {
6609         if (inst->raw == raw && inst->hdrs.ofp_version == ofp_version) {
6610             return inst;
6611         }
6612     }
6613     OVS_NOT_REACHED();
6614 }
6615
6616 static void *
6617 ofpact_put_raw(struct ofpbuf *buf, enum ofp_version ofp_version,
6618                enum ofp_raw_action_type raw, uint64_t arg)
6619 {
6620     const struct ofpact_raw_instance *inst;
6621     struct ofp_action_header *oah;
6622     const struct ofpact_hdrs *hdrs;
6623
6624     inst = ofpact_raw_lookup(ofp_version, raw);
6625     hdrs = &inst->hdrs;
6626
6627     oah = ofpbuf_put_zeros(buf, inst->min_length);
6628     oah->type = htons(hdrs->vendor ? OFPAT_VENDOR : hdrs->type);
6629     oah->len = htons(inst->min_length);
6630     oah->vendor = htonl(hdrs->vendor);
6631
6632     switch (hdrs->vendor) {
6633     case 0:
6634         break;
6635
6636     case NX_VENDOR_ID:
6637     case ONF_VENDOR_ID: {
6638         struct ext_action_header *nah = (struct ext_action_header *) oah;
6639         nah->subtype = htons(hdrs->type);
6640         break;
6641     }
6642
6643     default:
6644         OVS_NOT_REACHED();
6645     }
6646
6647     if (inst->arg_len) {
6648         uint8_t *p = (uint8_t *) oah + inst->arg_ofs + inst->arg_len;
6649         int i;
6650
6651         for (i = 0; i < inst->arg_len; i++) {
6652             *--p = arg;
6653             arg >>= 8;
6654         }
6655     } else {
6656         ovs_assert(!arg);
6657     }
6658
6659     return oah;
6660 }
6661
6662 static void
6663 pad_ofpat(struct ofpbuf *openflow, size_t start_ofs)
6664 {
6665     struct ofp_action_header *oah;
6666
6667     ofpbuf_put_zeros(openflow, PAD_SIZE(ofpbuf_size(openflow) - start_ofs, 8));
6668
6669     oah = ofpbuf_at_assert(openflow, start_ofs, sizeof *oah);
6670     oah->len = htons(ofpbuf_size(openflow) - start_ofs);
6671 }
6672