ofp-actions: Remove unused variable.
[sliver-openvswitch.git] / lib / ofp-actions.c
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011, 2012 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 "autopath.h"
20 #include "bundle.h"
21 #include "byte-order.h"
22 #include "compiler.h"
23 #include "dynamic-string.h"
24 #include "learn.h"
25 #include "meta-flow.h"
26 #include "multipath.h"
27 #include "nx-match.h"
28 #include "ofp-util.h"
29 #include "ofpbuf.h"
30 #include "vlog.h"
31
32 VLOG_DEFINE_THIS_MODULE(ofp_actions);
33
34 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
35 \f
36 /* Converting OpenFlow 1.0 to ofpacts. */
37
38 static enum ofperr
39 output_from_openflow10(const struct ofp10_action_output *oao,
40                        struct ofpbuf *out)
41 {
42     struct ofpact_output *output;
43
44     output = ofpact_put_OUTPUT(out);
45     output->port = ntohs(oao->port);
46     output->max_len = ntohs(oao->max_len);
47
48     return ofputil_check_output_port(output->port, OFPP_MAX);
49 }
50
51 static enum ofperr
52 enqueue_from_openflow10(const struct ofp_action_enqueue *oae,
53                         struct ofpbuf *out)
54 {
55     struct ofpact_enqueue *enqueue;
56
57     enqueue = ofpact_put_ENQUEUE(out);
58     enqueue->port = ntohs(oae->port);
59     enqueue->queue = ntohl(oae->queue_id);
60     if (enqueue->port >= OFPP_MAX && enqueue->port != OFPP_IN_PORT
61         && enqueue->port != OFPP_LOCAL) {
62         return OFPERR_OFPBAC_BAD_OUT_PORT;
63     }
64     return 0;
65 }
66
67 static void
68 resubmit_from_openflow(const struct nx_action_resubmit *nar,
69                        struct ofpbuf *out)
70 {
71     struct ofpact_resubmit *resubmit;
72
73     resubmit = ofpact_put_RESUBMIT(out);
74     resubmit->ofpact.compat = OFPUTIL_NXAST_RESUBMIT;
75     resubmit->in_port = ntohs(nar->in_port);
76     resubmit->table_id = 0xff;
77 }
78
79 static enum ofperr
80 resubmit_table_from_openflow(const struct nx_action_resubmit *nar,
81                              struct ofpbuf *out)
82 {
83     struct ofpact_resubmit *resubmit;
84
85     if (nar->pad[0] || nar->pad[1] || nar->pad[2]) {
86         return OFPERR_OFPBAC_BAD_ARGUMENT;
87     }
88
89     resubmit = ofpact_put_RESUBMIT(out);
90     resubmit->ofpact.compat = OFPUTIL_NXAST_RESUBMIT_TABLE;
91     resubmit->in_port = ntohs(nar->in_port);
92     resubmit->table_id = nar->table;
93     return 0;
94 }
95
96 static enum ofperr
97 output_reg_from_openflow(const struct nx_action_output_reg *naor,
98                          struct ofpbuf *out)
99 {
100     struct ofpact_output_reg *output_reg;
101
102     if (!is_all_zeros(naor->zero, sizeof naor->zero)) {
103         return OFPERR_OFPBAC_BAD_ARGUMENT;
104     }
105
106     output_reg = ofpact_put_OUTPUT_REG(out);
107     output_reg->src.field = mf_from_nxm_header(ntohl(naor->src));
108     output_reg->src.ofs = nxm_decode_ofs(naor->ofs_nbits);
109     output_reg->src.n_bits = nxm_decode_n_bits(naor->ofs_nbits);
110     output_reg->max_len = ntohs(naor->max_len);
111
112     return mf_check_src(&output_reg->src, NULL);
113 }
114
115 static void
116 fin_timeout_from_openflow(const struct nx_action_fin_timeout *naft,
117                           struct ofpbuf *out)
118 {
119     struct ofpact_fin_timeout *oft;
120
121     oft = ofpact_put_FIN_TIMEOUT(out);
122     oft->fin_idle_timeout = ntohs(naft->fin_idle_timeout);
123     oft->fin_hard_timeout = ntohs(naft->fin_hard_timeout);
124 }
125
126 static void
127 controller_from_openflow(const struct nx_action_controller *nac,
128                          struct ofpbuf *out)
129 {
130     struct ofpact_controller *oc;
131
132     oc = ofpact_put_CONTROLLER(out);
133     oc->max_len = ntohs(nac->max_len);
134     oc->controller_id = ntohs(nac->controller_id);
135     oc->reason = nac->reason;
136 }
137
138 static void
139 note_from_openflow(const struct nx_action_note *nan, struct ofpbuf *out)
140 {
141     struct ofpact_note *note;
142     unsigned int length;
143
144     length = ntohs(nan->len) - offsetof(struct nx_action_note, note);
145     note = ofpact_put(out, OFPACT_NOTE,
146                       offsetof(struct ofpact_note, data) + length);
147     note->length = length;
148     memcpy(note->data, nan->note, length);
149 }
150
151 static enum ofperr
152 dec_ttl_from_openflow(struct ofpbuf *out)
153 {
154     uint16_t id = 0;
155     struct ofpact_cnt_ids *ids;
156     enum ofperr error = 0;
157
158     ids = ofpact_put_DEC_TTL(out);
159     ids->ofpact.compat = OFPUTIL_NXAST_DEC_TTL;
160     ids->n_controllers = 1;
161     ofpbuf_put(out, &id, sizeof id);
162     ids = out->l2;
163     ofpact_update_len(out, &ids->ofpact);
164     return error;
165 }
166
167 static enum ofperr
168 dec_ttl_cnt_ids_from_openflow(const struct nx_action_cnt_ids *nac_ids,
169                       struct ofpbuf *out)
170 {
171     struct ofpact_cnt_ids *ids;
172     size_t ids_size;
173     int i;
174
175     ids = ofpact_put_DEC_TTL(out);
176     ids->ofpact.compat = OFPUTIL_NXAST_DEC_TTL_CNT_IDS;
177     ids->n_controllers = ntohs(nac_ids->n_controllers);
178     ids_size = ntohs(nac_ids->len) - sizeof *nac_ids;
179
180     if (!is_all_zeros(nac_ids->zeros, sizeof nac_ids->zeros)) {
181         return OFPERR_NXBRC_MUST_BE_ZERO;
182     }
183
184     if (ids_size < ids->n_controllers * sizeof(ovs_be16)) {
185         VLOG_WARN_RL(&rl, "Nicira action dec_ttl_cnt_ids only has %zu bytes "
186                      "allocated for controller ids.  %zu bytes are required for "
187                      "%"PRIu16" controllers.", ids_size,
188                      ids->n_controllers * sizeof(ovs_be16), ids->n_controllers);
189         return OFPERR_OFPBAC_BAD_LEN;
190     }
191
192     for (i = 0; i < ids->n_controllers; i++) {
193         uint16_t id = ntohs(((ovs_be16 *)(nac_ids + 1))[i]);
194         ofpbuf_put(out, &id, sizeof id);
195     }
196
197     ids = out->l2;
198     ofpact_update_len(out, &ids->ofpact);
199
200     return 0;
201 }
202
203 static enum ofperr
204 decode_nxast_action(const union ofp_action *a, enum ofputil_action_code *code)
205 {
206     const struct nx_action_header *nah = (const struct nx_action_header *) a;
207     uint16_t len = ntohs(a->header.len);
208
209     if (len < sizeof(struct nx_action_header)) {
210         return OFPERR_OFPBAC_BAD_LEN;
211     } else if (a->vendor.vendor != CONSTANT_HTONL(NX_VENDOR_ID)) {
212         return OFPERR_OFPBAC_BAD_VENDOR;
213     }
214
215     switch (nah->subtype) {
216 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)    \
217         case CONSTANT_HTONS(ENUM):                      \
218             if (EXTENSIBLE                              \
219                 ? len >= sizeof(struct STRUCT)          \
220                 : len == sizeof(struct STRUCT)) {       \
221                 *code = OFPUTIL_##ENUM;                 \
222                 return 0;                               \
223             } else {                                    \
224                 return OFPERR_OFPBAC_BAD_LEN;           \
225             }                                           \
226             NOT_REACHED();
227 #include "ofp-util.def"
228
229     case CONSTANT_HTONS(NXAST_SNAT__OBSOLETE):
230     case CONSTANT_HTONS(NXAST_DROP_SPOOFED_ARP__OBSOLETE):
231     default:
232         return OFPERR_OFPBAC_BAD_TYPE;
233     }
234 }
235
236 /* Parses 'a' to determine its type.  On success stores the correct type into
237  * '*code' and returns 0.  On failure returns an OFPERR_* error code and
238  * '*code' is indeterminate.
239  *
240  * The caller must have already verified that 'a''s length is potentially
241  * correct (that is, a->header.len is nonzero and a multiple of sizeof(union
242  * ofp_action) and no longer than the amount of space allocated to 'a').
243  *
244  * This function verifies that 'a''s length is correct for the type of action
245  * that it represents. */
246 static enum ofperr
247 decode_openflow10_action(const union ofp_action *a,
248                          enum ofputil_action_code *code)
249 {
250     switch (a->type) {
251     case CONSTANT_HTONS(OFPAT10_VENDOR):
252         return decode_nxast_action(a, code);
253
254 #define OFPAT10_ACTION(ENUM, STRUCT, NAME)                          \
255         case CONSTANT_HTONS(ENUM):                                  \
256             if (a->header.len == htons(sizeof(struct STRUCT))) {    \
257                 *code = OFPUTIL_##ENUM;                             \
258                 return 0;                                           \
259             } else {                                                \
260                 return OFPERR_OFPBAC_BAD_LEN;                       \
261             }                                                       \
262             break;
263 #include "ofp-util.def"
264
265     default:
266         return OFPERR_OFPBAC_BAD_TYPE;
267     }
268 }
269
270 static enum ofperr
271 ofpact_from_nxast(const union ofp_action *a, enum ofputil_action_code code,
272                   struct ofpbuf *out)
273 {
274     const struct nx_action_resubmit *nar;
275     const struct nx_action_set_tunnel *nast;
276     const struct nx_action_set_queue *nasq;
277     const struct nx_action_note *nan;
278     const struct nx_action_set_tunnel64 *nast64;
279     struct ofpact_tunnel *tunnel;
280     enum ofperr error = 0;
281
282     switch (code) {
283     case OFPUTIL_ACTION_INVALID:
284 #define OFPAT10_ACTION(ENUM, STRUCT, NAME) case OFPUTIL_##ENUM:
285 #define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) case OFPUTIL_##ENUM:
286 #include "ofp-util.def"
287         NOT_REACHED();
288
289     case OFPUTIL_NXAST_RESUBMIT:
290         resubmit_from_openflow((const struct nx_action_resubmit *) a, out);
291         break;
292
293     case OFPUTIL_NXAST_SET_TUNNEL:
294         nast = (const struct nx_action_set_tunnel *) a;
295         tunnel = ofpact_put_SET_TUNNEL(out);
296         tunnel->ofpact.compat = code;
297         tunnel->tun_id = ntohl(nast->tun_id);
298         break;
299
300     case OFPUTIL_NXAST_SET_QUEUE:
301         nasq = (const struct nx_action_set_queue *) a;
302         ofpact_put_SET_QUEUE(out)->queue_id = ntohl(nasq->queue_id);
303         break;
304
305     case OFPUTIL_NXAST_POP_QUEUE:
306         ofpact_put_POP_QUEUE(out);
307         break;
308
309     case OFPUTIL_NXAST_REG_MOVE:
310         error = nxm_reg_move_from_openflow(
311             (const struct nx_action_reg_move *) a, out);
312         break;
313
314     case OFPUTIL_NXAST_REG_LOAD:
315         error = nxm_reg_load_from_openflow(
316             (const struct nx_action_reg_load *) a, out);
317         break;
318
319     case OFPUTIL_NXAST_NOTE:
320         nan = (const struct nx_action_note *) a;
321         note_from_openflow(nan, out);
322         break;
323
324     case OFPUTIL_NXAST_SET_TUNNEL64:
325         nast64 = (const struct nx_action_set_tunnel64 *) a;
326         tunnel = ofpact_put_SET_TUNNEL(out);
327         tunnel->ofpact.compat = code;
328         tunnel->tun_id = ntohll(nast64->tun_id);
329         break;
330
331     case OFPUTIL_NXAST_MULTIPATH:
332         error = multipath_from_openflow((const struct nx_action_multipath *) a,
333                                         ofpact_put_MULTIPATH(out));
334         break;
335
336     case OFPUTIL_NXAST_AUTOPATH__DEPRECATED:
337         error = autopath_from_openflow((const struct nx_action_autopath *) a,
338                                        ofpact_put_AUTOPATH(out));
339         break;
340
341     case OFPUTIL_NXAST_BUNDLE:
342     case OFPUTIL_NXAST_BUNDLE_LOAD:
343         error = bundle_from_openflow((const struct nx_action_bundle *) a, out);
344         break;
345
346     case OFPUTIL_NXAST_OUTPUT_REG:
347         error = output_reg_from_openflow(
348             (const struct nx_action_output_reg *) a, out);
349         break;
350
351     case OFPUTIL_NXAST_RESUBMIT_TABLE:
352         nar = (const struct nx_action_resubmit *) a;
353         error = resubmit_table_from_openflow(nar, out);
354         break;
355
356     case OFPUTIL_NXAST_LEARN:
357         error = learn_from_openflow((const struct nx_action_learn *) a, out);
358         break;
359
360     case OFPUTIL_NXAST_EXIT:
361         ofpact_put_EXIT(out);
362         break;
363
364     case OFPUTIL_NXAST_DEC_TTL:
365         error = dec_ttl_from_openflow(out);
366         break;
367
368     case OFPUTIL_NXAST_DEC_TTL_CNT_IDS:
369         error = dec_ttl_cnt_ids_from_openflow(
370                     (const struct nx_action_cnt_ids *) a, out);
371         break;
372
373     case OFPUTIL_NXAST_FIN_TIMEOUT:
374         fin_timeout_from_openflow(
375             (const struct nx_action_fin_timeout *) a, out);
376         break;
377
378     case OFPUTIL_NXAST_CONTROLLER:
379         controller_from_openflow((const struct nx_action_controller *) a, out);
380         break;
381     }
382
383     return error;
384 }
385
386 static enum ofperr
387 ofpact_from_openflow10(const union ofp_action *a, struct ofpbuf *out)
388 {
389     enum ofputil_action_code code;
390     enum ofperr error;
391
392     error = decode_openflow10_action(a, &code);
393     if (error) {
394         return error;
395     }
396
397     switch (code) {
398     case OFPUTIL_ACTION_INVALID:
399 #define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) case OFPUTIL_##ENUM:
400 #include "ofp-util.def"
401         NOT_REACHED();
402
403     case OFPUTIL_OFPAT10_OUTPUT:
404         return output_from_openflow10(&a->output10, out);
405
406     case OFPUTIL_OFPAT10_SET_VLAN_VID:
407         if (a->vlan_vid.vlan_vid & ~htons(0xfff)) {
408             return OFPERR_OFPBAC_BAD_ARGUMENT;
409         }
410         ofpact_put_SET_VLAN_VID(out)->vlan_vid = ntohs(a->vlan_vid.vlan_vid);
411         break;
412
413     case OFPUTIL_OFPAT10_SET_VLAN_PCP:
414         if (a->vlan_pcp.vlan_pcp & ~7) {
415             return OFPERR_OFPBAC_BAD_ARGUMENT;
416         }
417         ofpact_put_SET_VLAN_PCP(out)->vlan_pcp = a->vlan_pcp.vlan_pcp;
418         break;
419
420     case OFPUTIL_OFPAT10_STRIP_VLAN:
421         ofpact_put_STRIP_VLAN(out);
422         break;
423
424     case OFPUTIL_OFPAT10_SET_DL_SRC:
425         memcpy(ofpact_put_SET_ETH_SRC(out)->mac,
426                ((const struct ofp_action_dl_addr *) a)->dl_addr, ETH_ADDR_LEN);
427         break;
428
429     case OFPUTIL_OFPAT10_SET_DL_DST:
430         memcpy(ofpact_put_SET_ETH_DST(out)->mac,
431                ((const struct ofp_action_dl_addr *) a)->dl_addr, ETH_ADDR_LEN);
432         break;
433
434     case OFPUTIL_OFPAT10_SET_NW_SRC:
435         ofpact_put_SET_IPV4_SRC(out)->ipv4 = a->nw_addr.nw_addr;
436         break;
437
438     case OFPUTIL_OFPAT10_SET_NW_DST:
439         ofpact_put_SET_IPV4_DST(out)->ipv4 = a->nw_addr.nw_addr;
440         break;
441
442     case OFPUTIL_OFPAT10_SET_NW_TOS:
443         if (a->nw_tos.nw_tos & ~IP_DSCP_MASK) {
444             return OFPERR_OFPBAC_BAD_ARGUMENT;
445         }
446         ofpact_put_SET_IPV4_DSCP(out)->dscp = a->nw_tos.nw_tos;
447         break;
448
449     case OFPUTIL_OFPAT10_SET_TP_SRC:
450         ofpact_put_SET_L4_SRC_PORT(out)->port = ntohs(a->tp_port.tp_port);
451         break;
452
453     case OFPUTIL_OFPAT10_SET_TP_DST:
454         ofpact_put_SET_L4_DST_PORT(out)->port = ntohs(a->tp_port.tp_port);
455
456         break;
457
458     case OFPUTIL_OFPAT10_ENQUEUE:
459         error = enqueue_from_openflow10((const struct ofp_action_enqueue *) a,
460                                         out);
461         break;
462
463 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) case OFPUTIL_##ENUM:
464 #include "ofp-util.def"
465         return ofpact_from_nxast(a, code, out);
466     }
467
468     return error;
469 }
470
471 static inline union ofp_action *
472 action_next(const union ofp_action *a)
473 {
474     return ((union ofp_action *) (void *)
475             ((uint8_t *) a + ntohs(a->header.len)));
476 }
477
478 static inline bool
479 action_is_valid(const union ofp_action *a, size_t n_actions)
480 {
481     uint16_t len = ntohs(a->header.len);
482     return (!(len % OFP_ACTION_ALIGN)
483             && len >= sizeof *a
484             && len / sizeof *a <= n_actions);
485 }
486
487 /* This macro is careful to check for actions with bad lengths. */
488 #define ACTION_FOR_EACH(ITER, LEFT, ACTIONS, N_ACTIONS)                 \
489     for ((ITER) = (ACTIONS), (LEFT) = (N_ACTIONS);                      \
490          (LEFT) > 0 && action_is_valid(ITER, LEFT);                     \
491          ((LEFT) -= ntohs((ITER)->header.len) / sizeof(union ofp_action), \
492           (ITER) = action_next(ITER)))
493
494 static void
495 log_bad_action(const union ofp_action *actions, size_t n_actions, size_t ofs,
496                enum ofperr error)
497 {
498     if (!VLOG_DROP_WARN(&rl)) {
499         struct ds s;
500
501         ds_init(&s);
502         ds_put_hex_dump(&s, actions, n_actions * sizeof *actions, 0, false);
503         VLOG_WARN("bad action at offset %#zx (%s):\n%s",
504                   ofs * sizeof *actions, ofperr_get_name(error), ds_cstr(&s));
505         ds_destroy(&s);
506     }
507 }
508
509 static enum ofperr
510 ofpacts_from_openflow(const union ofp_action *in, size_t n_in,
511                       struct ofpbuf *out,
512                       enum ofperr (*ofpact_from_openflow)(
513                           const union ofp_action *a, struct ofpbuf *out))
514 {
515     const union ofp_action *a;
516     size_t left;
517
518     ACTION_FOR_EACH (a, left, in, n_in) {
519         enum ofperr error = ofpact_from_openflow(a, out);
520         if (error) {
521             log_bad_action(in, n_in, a - in, error);
522             return error;
523         }
524     }
525     if (left) {
526         enum ofperr error = OFPERR_OFPBAC_BAD_LEN;
527         log_bad_action(in, n_in, n_in - left, error);
528         return error;
529     }
530
531     ofpact_pad(out);
532     return 0;
533 }
534
535 static enum ofperr
536 ofpacts_from_openflow10(const union ofp_action *in, size_t n_in,
537                         struct ofpbuf *out)
538 {
539     return ofpacts_from_openflow(in, n_in, out, ofpact_from_openflow10);
540 }
541
542 static enum ofperr
543 ofpacts_pull_actions(struct ofpbuf *openflow, unsigned int actions_len,
544                      struct ofpbuf *ofpacts,
545                      enum ofperr (*translate)(const union ofp_action *actions,
546                                               size_t n_actions,
547                                               struct ofpbuf *ofpacts))
548 {
549     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
550     const union ofp_action *actions;
551     enum ofperr error;
552
553     ofpbuf_clear(ofpacts);
554
555     if (actions_len % OFP_ACTION_ALIGN != 0) {
556         VLOG_WARN_RL(&rl, "OpenFlow message actions length %u is not a "
557                      "multiple of %d", actions_len, OFP_ACTION_ALIGN);
558         return OFPERR_OFPBRC_BAD_LEN;
559     }
560
561     actions = ofpbuf_try_pull(openflow, actions_len);
562     if (actions == NULL) {
563         VLOG_WARN_RL(&rl, "OpenFlow message actions length %u exceeds "
564                      "remaining message length (%zu)",
565                      actions_len, openflow->size);
566         return OFPERR_OFPBRC_BAD_LEN;
567     }
568
569     error = translate(actions, actions_len / OFP_ACTION_ALIGN, ofpacts);
570     if (error) {
571         ofpbuf_clear(ofpacts);
572     }
573     return error;
574 }
575
576 /* Attempts to convert 'actions_len' bytes of OpenFlow 1.0 actions from the
577  * front of 'openflow' into ofpacts.  On success, replaces any existing content
578  * in 'ofpacts' by the converted ofpacts; on failure, clears 'ofpacts'.
579  * Returns 0 if successful, otherwise an OpenFlow error.
580  *
581  * The parsed actions are valid generically, but they may not be valid in a
582  * specific context.  For example, port numbers up to OFPP_MAX are valid
583  * generically, but specific datapaths may only support port numbers in a
584  * smaller range.  Use ofpacts_check() to additional check whether actions are
585  * valid in a specific context. */
586 enum ofperr
587 ofpacts_pull_openflow10(struct ofpbuf *openflow, unsigned int actions_len,
588                         struct ofpbuf *ofpacts)
589 {
590     return ofpacts_pull_actions(openflow, actions_len, ofpacts,
591                                 ofpacts_from_openflow10);
592 }
593 \f
594 /* OpenFlow 1.1 actions. */
595
596 /* Parses 'a' to determine its type.  On success stores the correct type into
597  * '*code' and returns 0.  On failure returns an OFPERR_* error code and
598  * '*code' is indeterminate.
599  *
600  * The caller must have already verified that 'a''s length is potentially
601  * correct (that is, a->header.len is nonzero and a multiple of sizeof(union
602  * ofp_action) and no longer than the amount of space allocated to 'a').
603  *
604  * This function verifies that 'a''s length is correct for the type of action
605  * that it represents. */
606 static enum ofperr
607 decode_openflow11_action(const union ofp_action *a,
608                          enum ofputil_action_code *code)
609 {
610     uint16_t len;
611
612     switch (a->type) {
613     case CONSTANT_HTONS(OFPAT11_EXPERIMENTER):
614         return decode_nxast_action(a, code);
615
616 #define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)  \
617         case CONSTANT_HTONS(ENUM):                      \
618             len = ntohs(a->header.len);                 \
619             if (EXTENSIBLE                              \
620                 ? len >= sizeof(struct STRUCT)          \
621                 : len == sizeof(struct STRUCT)) {       \
622                 *code = OFPUTIL_##ENUM;                 \
623                 return 0;                               \
624             } else {                                    \
625                 return OFPERR_OFPBAC_BAD_LEN;           \
626             }                                           \
627             NOT_REACHED();
628 #include "ofp-util.def"
629
630     default:
631         return OFPERR_OFPBAC_BAD_TYPE;
632     }
633 }
634
635 static enum ofperr
636 output_from_openflow11(const struct ofp11_action_output *oao,
637                        struct ofpbuf *out)
638 {
639     struct ofpact_output *output;
640     enum ofperr error;
641
642     output = ofpact_put_OUTPUT(out);
643     output->max_len = ntohs(oao->max_len);
644
645     error = ofputil_port_from_ofp11(oao->port, &output->port);
646     if (error) {
647         return error;
648     }
649
650     return ofputil_check_output_port(output->port, OFPP_MAX);
651 }
652
653 static enum ofperr
654 ofpact_from_openflow11(const union ofp_action *a, struct ofpbuf *out)
655 {
656     enum ofputil_action_code code;
657     enum ofperr error;
658
659     error = decode_openflow11_action(a, &code);
660     if (error) {
661         return error;
662     }
663
664     switch (code) {
665     case OFPUTIL_ACTION_INVALID:
666 #define OFPAT10_ACTION(ENUM, STRUCT, NAME) case OFPUTIL_##ENUM:
667 #include "ofp-util.def"
668         NOT_REACHED();
669
670     case OFPUTIL_OFPAT11_OUTPUT:
671         return output_from_openflow11((const struct ofp11_action_output *) a,
672                                       out);
673
674     case OFPUTIL_OFPAT11_SET_VLAN_VID:
675         if (a->vlan_vid.vlan_vid & ~htons(0xfff)) {
676             return OFPERR_OFPBAC_BAD_ARGUMENT;
677         }
678         ofpact_put_SET_VLAN_VID(out)->vlan_vid = ntohs(a->vlan_vid.vlan_vid);
679         break;
680
681     case OFPUTIL_OFPAT11_SET_VLAN_PCP:
682         if (a->vlan_pcp.vlan_pcp & ~7) {
683             return OFPERR_OFPBAC_BAD_ARGUMENT;
684         }
685         ofpact_put_SET_VLAN_PCP(out)->vlan_pcp = a->vlan_pcp.vlan_pcp;
686         break;
687
688     case OFPUTIL_OFPAT11_SET_DL_SRC:
689         memcpy(ofpact_put_SET_ETH_SRC(out)->mac,
690                ((const struct ofp_action_dl_addr *) a)->dl_addr, ETH_ADDR_LEN);
691         break;
692
693     case OFPUTIL_OFPAT11_SET_DL_DST:
694         memcpy(ofpact_put_SET_ETH_DST(out)->mac,
695                ((const struct ofp_action_dl_addr *) a)->dl_addr, ETH_ADDR_LEN);
696         break;
697
698     case OFPUTIL_OFPAT11_SET_NW_SRC:
699         ofpact_put_SET_IPV4_SRC(out)->ipv4 = a->nw_addr.nw_addr;
700         break;
701
702     case OFPUTIL_OFPAT11_SET_NW_DST:
703         ofpact_put_SET_IPV4_DST(out)->ipv4 = a->nw_addr.nw_addr;
704         break;
705
706     case OFPUTIL_OFPAT11_SET_NW_TOS:
707         if (a->nw_tos.nw_tos & ~IP_DSCP_MASK) {
708             return OFPERR_OFPBAC_BAD_ARGUMENT;
709         }
710         ofpact_put_SET_IPV4_DSCP(out)->dscp = a->nw_tos.nw_tos;
711         break;
712
713     case OFPUTIL_OFPAT11_SET_TP_SRC:
714         ofpact_put_SET_L4_SRC_PORT(out)->port = ntohs(a->tp_port.tp_port);
715         break;
716
717     case OFPUTIL_OFPAT11_SET_TP_DST:
718         ofpact_put_SET_L4_DST_PORT(out)->port = ntohs(a->tp_port.tp_port);
719         break;
720
721     case OFPUTIL_OFPAT12_SET_FIELD:
722         return nxm_reg_load_from_openflow12_set_field(
723             (const struct ofp12_action_set_field *)a, out);
724
725 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) case OFPUTIL_##ENUM:
726 #include "ofp-util.def"
727         return ofpact_from_nxast(a, code, out);
728     }
729
730     return error;
731 }
732
733 static enum ofperr
734 ofpacts_from_openflow11(const union ofp_action *in, size_t n_in,
735                         struct ofpbuf *out)
736 {
737     return ofpacts_from_openflow(in, n_in, out, ofpact_from_openflow11);
738 }
739 \f
740 /* OpenFlow 1.1 instructions. */
741
742 #define DEFINE_INST(ENUM, STRUCT, EXTENSIBLE, NAME)             \
743     static inline const struct STRUCT *                         \
744     instruction_get_##ENUM(const struct ofp11_instruction *inst)\
745     {                                                           \
746         assert(inst->type == htons(ENUM));                      \
747         return (struct STRUCT *)inst;                           \
748     }                                                           \
749                                                                 \
750     static inline void                                          \
751     instruction_init_##ENUM(struct STRUCT *s)                   \
752     {                                                           \
753         memset(s, 0, sizeof *s);                                \
754         s->type = htons(ENUM);                                  \
755         s->len = htons(sizeof *s);                              \
756     }                                                           \
757                                                                 \
758     static inline struct STRUCT *                               \
759     instruction_put_##ENUM(struct ofpbuf *buf)                  \
760     {                                                           \
761         struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
762         instruction_init_##ENUM(s);                             \
763         return s;                                               \
764     }
765 OVS_INSTRUCTIONS
766 #undef DEFINE_INST
767
768 struct instruction_type_info {
769     enum ovs_instruction_type type;
770     const char *name;
771 };
772
773 static const struct instruction_type_info inst_info[] = {
774 #define DEFINE_INST(ENUM, STRUCT, EXTENSIBLE, NAME)    {OVSINST_##ENUM, NAME},
775 OVS_INSTRUCTIONS
776 #undef DEFINE_INST
777 };
778
779 const char *
780 ofpact_instruction_name_from_type(enum ovs_instruction_type type)
781 {
782     return inst_info[type].name;
783 }
784
785 int
786 ofpact_instruction_type_from_name(const char *name)
787 {
788     const struct instruction_type_info *p;
789     for (p = inst_info; p < &inst_info[ARRAY_SIZE(inst_info)]; p++) {
790         if (!strcasecmp(name, p->name)) {
791             return p->type;
792         }
793     }
794     return -1;
795 }
796
797 static inline struct ofp11_instruction *
798 instruction_next(const struct ofp11_instruction *inst)
799 {
800     return ((struct ofp11_instruction *) (void *)
801             ((uint8_t *) inst + ntohs(inst->len)));
802 }
803
804 static inline bool
805 instruction_is_valid(const struct ofp11_instruction *inst,
806                      size_t n_instructions)
807 {
808     uint16_t len = ntohs(inst->len);
809     return (!(len % OFP11_INSTRUCTION_ALIGN)
810             && len >= sizeof *inst
811             && len / sizeof *inst <= n_instructions);
812 }
813
814 /* This macro is careful to check for instructions with bad lengths. */
815 #define INSTRUCTION_FOR_EACH(ITER, LEFT, INSTRUCTIONS, N_INSTRUCTIONS)  \
816     for ((ITER) = (INSTRUCTIONS), (LEFT) = (N_INSTRUCTIONS);            \
817          (LEFT) > 0 && instruction_is_valid(ITER, LEFT);                \
818          ((LEFT) -= (ntohs((ITER)->len)                                 \
819                      / sizeof(struct ofp11_instruction)),               \
820           (ITER) = instruction_next(ITER)))
821
822 static enum ofperr
823 decode_openflow11_instruction(const struct ofp11_instruction *inst,
824                               enum ovs_instruction_type *type)
825 {
826     uint16_t len = ntohs(inst->len);
827
828     switch (inst->type) {
829     case CONSTANT_HTONS(OFPIT11_EXPERIMENTER):
830         return OFPERR_OFPBIC_BAD_EXPERIMENTER;
831
832 #define DEFINE_INST(ENUM, STRUCT, EXTENSIBLE, NAME)     \
833         case CONSTANT_HTONS(ENUM):                      \
834             if (EXTENSIBLE                              \
835                 ? len >= sizeof(struct STRUCT)          \
836                 : len == sizeof(struct STRUCT)) {       \
837                 *type = OVSINST_##ENUM;                 \
838                 return 0;                               \
839             } else {                                    \
840                 return OFPERR_OFPBIC_BAD_LEN;           \
841             }
842 OVS_INSTRUCTIONS
843 #undef DEFINE_INST
844
845     default:
846         return OFPERR_OFPBIC_UNKNOWN_INST;
847     }
848 }
849
850 static enum ofperr
851 decode_openflow11_instructions(const struct ofp11_instruction insts[],
852                                size_t n_insts,
853                                const struct ofp11_instruction *out[])
854 {
855     const struct ofp11_instruction *inst;
856     size_t left;
857
858     memset(out, 0, N_OVS_INSTRUCTIONS * sizeof *out);
859     INSTRUCTION_FOR_EACH (inst, left, insts, n_insts) {
860         enum ovs_instruction_type type;
861         enum ofperr error;
862
863         error = decode_openflow11_instruction(inst, &type);
864         if (error) {
865             return error;
866         }
867
868         if (out[type]) {
869             return OFPERR_OFPIT_BAD_INSTRUCTION;
870         }
871         out[type] = inst;
872     }
873
874     if (left) {
875         VLOG_WARN_RL(&rl, "bad instruction format at offset %zu",
876                      (n_insts - left) * sizeof *inst);
877         return OFPERR_OFPBIC_BAD_LEN;
878     }
879     return 0;
880 }
881
882 static void
883 get_actions_from_instruction(const struct ofp11_instruction *inst,
884                          const union ofp_action **actions,
885                          size_t *n_actions)
886 {
887     *actions = (const union ofp_action *) (inst + 1);
888     *n_actions = (ntohs(inst->len) - sizeof *inst) / OFP11_INSTRUCTION_ALIGN;
889 }
890
891 /* Attempts to convert 'actions_len' bytes of OpenFlow 1.1 actions from the
892  * front of 'openflow' into ofpacts.  On success, replaces any existing content
893  * in 'ofpacts' by the converted ofpacts; on failure, clears 'ofpacts'.
894  * Returns 0 if successful, otherwise an OpenFlow error.
895  *
896  * In most places in OpenFlow 1.1 and 1.2, actions appear encapsulated in
897  * instructions, so you should call ofpacts_pull_openflow11_instructions()
898  * instead of this function.
899  *
900  * The parsed actions are valid generically, but they may not be valid in a
901  * specific context.  For example, port numbers up to OFPP_MAX are valid
902  * generically, but specific datapaths may only support port numbers in a
903  * smaller range.  Use ofpacts_check() to additional check whether actions are
904  * valid in a specific context. */
905 enum ofperr
906 ofpacts_pull_openflow11_actions(struct ofpbuf *openflow,
907                                 unsigned int actions_len,
908                                 struct ofpbuf *ofpacts)
909 {
910     return ofpacts_pull_actions(openflow, actions_len, ofpacts,
911                                 ofpacts_from_openflow11);
912 }
913
914 enum ofperr
915 ofpacts_pull_openflow11_instructions(struct ofpbuf *openflow,
916                                      unsigned int instructions_len,
917                                      struct ofpbuf *ofpacts)
918 {
919     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
920     const struct ofp11_instruction *instructions;
921     const struct ofp11_instruction *insts[N_OVS_INSTRUCTIONS];
922     enum ofperr error;
923
924     ofpbuf_clear(ofpacts);
925
926     if (instructions_len % OFP11_INSTRUCTION_ALIGN != 0) {
927         VLOG_WARN_RL(&rl, "OpenFlow message instructions length %u is not a "
928                      "multiple of %d",
929                      instructions_len, OFP11_INSTRUCTION_ALIGN);
930         error = OFPERR_OFPBIC_BAD_LEN;
931         goto exit;
932     }
933
934     instructions = ofpbuf_try_pull(openflow, instructions_len);
935     if (instructions == NULL) {
936         VLOG_WARN_RL(&rl, "OpenFlow message instructions length %u exceeds "
937                      "remaining message length (%zu)",
938                      instructions_len, openflow->size);
939         error = OFPERR_OFPBIC_BAD_LEN;
940         goto exit;
941     }
942
943     error = decode_openflow11_instructions(
944         instructions, instructions_len / OFP11_INSTRUCTION_ALIGN,
945         insts);
946     if (error) {
947         goto exit;
948     }
949
950     if (insts[OVSINST_OFPIT11_APPLY_ACTIONS]) {
951         const union ofp_action *actions;
952         size_t n_actions;
953
954         get_actions_from_instruction(insts[OVSINST_OFPIT11_APPLY_ACTIONS],
955                                      &actions, &n_actions);
956         error = ofpacts_from_openflow11(actions, n_actions, ofpacts);
957         if (error) {
958             goto exit;
959         }
960     }
961     if (insts[OVSINST_OFPIT11_CLEAR_ACTIONS]) {
962         instruction_get_OFPIT11_CLEAR_ACTIONS(
963             insts[OVSINST_OFPIT11_CLEAR_ACTIONS]);
964         ofpact_put_CLEAR_ACTIONS(ofpacts);
965     }
966     /* TODO:XXX Write-Actions */
967     /* TODO:XXX Write-Metadata */
968     if (insts[OVSINST_OFPIT11_GOTO_TABLE]) {
969         const struct ofp11_instruction_goto_table *oigt;
970         struct ofpact_goto_table *ogt;
971
972         oigt = instruction_get_OFPIT11_GOTO_TABLE(
973             insts[OVSINST_OFPIT11_GOTO_TABLE]);
974         ogt = ofpact_put_GOTO_TABLE(ofpacts);
975         ogt->table_id = oigt->table_id;
976     }
977
978     if (insts[OVSINST_OFPIT11_WRITE_METADATA] ||
979         insts[OVSINST_OFPIT11_WRITE_ACTIONS]) {
980         error = OFPERR_OFPBIC_UNSUP_INST;
981         goto exit;
982     }
983
984 exit:
985     if (error) {
986         ofpbuf_clear(ofpacts);
987     }
988     return error;
989 }
990 \f
991 static enum ofperr
992 ofpact_check__(const struct ofpact *a, const struct flow *flow, int max_ports)
993 {
994     const struct ofpact_enqueue *enqueue;
995
996     switch (a->type) {
997     case OFPACT_OUTPUT:
998         return ofputil_check_output_port(ofpact_get_OUTPUT(a)->port,
999                                          max_ports);
1000
1001     case OFPACT_CONTROLLER:
1002         return 0;
1003
1004     case OFPACT_ENQUEUE:
1005         enqueue = ofpact_get_ENQUEUE(a);
1006         if (enqueue->port >= max_ports && enqueue->port != OFPP_IN_PORT
1007             && enqueue->port != OFPP_LOCAL) {
1008             return OFPERR_OFPBAC_BAD_OUT_PORT;
1009         }
1010         return 0;
1011
1012     case OFPACT_OUTPUT_REG:
1013         return mf_check_src(&ofpact_get_OUTPUT_REG(a)->src, flow);
1014
1015     case OFPACT_BUNDLE:
1016         return bundle_check(ofpact_get_BUNDLE(a), max_ports, flow);
1017
1018     case OFPACT_SET_VLAN_VID:
1019     case OFPACT_SET_VLAN_PCP:
1020     case OFPACT_STRIP_VLAN:
1021     case OFPACT_SET_ETH_SRC:
1022     case OFPACT_SET_ETH_DST:
1023     case OFPACT_SET_IPV4_SRC:
1024     case OFPACT_SET_IPV4_DST:
1025     case OFPACT_SET_IPV4_DSCP:
1026     case OFPACT_SET_L4_SRC_PORT:
1027     case OFPACT_SET_L4_DST_PORT:
1028         return 0;
1029
1030     case OFPACT_REG_MOVE:
1031         return nxm_reg_move_check(ofpact_get_REG_MOVE(a), flow);
1032
1033     case OFPACT_REG_LOAD:
1034         return nxm_reg_load_check(ofpact_get_REG_LOAD(a), flow);
1035
1036     case OFPACT_DEC_TTL:
1037     case OFPACT_SET_TUNNEL:
1038     case OFPACT_SET_QUEUE:
1039     case OFPACT_POP_QUEUE:
1040     case OFPACT_FIN_TIMEOUT:
1041     case OFPACT_RESUBMIT:
1042         return 0;
1043
1044     case OFPACT_LEARN:
1045         return learn_check(ofpact_get_LEARN(a), flow);
1046
1047     case OFPACT_MULTIPATH:
1048         return multipath_check(ofpact_get_MULTIPATH(a), flow);
1049
1050     case OFPACT_AUTOPATH:
1051         return autopath_check(ofpact_get_AUTOPATH(a), flow);
1052
1053     case OFPACT_NOTE:
1054     case OFPACT_EXIT:
1055         return 0;
1056
1057     case OFPACT_CLEAR_ACTIONS:
1058     case OFPACT_GOTO_TABLE:
1059         return 0;
1060
1061     default:
1062         NOT_REACHED();
1063     }
1064 }
1065
1066 /* Checks that the 'ofpacts_len' bytes of actions in 'ofpacts' are
1067  * appropriate for a packet with the prerequisites satisfied by 'flow' in a
1068  * switch with no more than 'max_ports' ports. */
1069 enum ofperr
1070 ofpacts_check(const struct ofpact ofpacts[], size_t ofpacts_len,
1071               const struct flow *flow, int max_ports)
1072 {
1073     const struct ofpact *a;
1074
1075     OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
1076         enum ofperr error = ofpact_check__(a, flow, max_ports);
1077         if (error) {
1078             return error;
1079         }
1080     }
1081
1082     return 0;
1083 }
1084 \f
1085 /* Converting ofpacts to Nicira OpenFlow extensions. */
1086
1087 static void
1088 ofpact_output_reg_to_nxast(const struct ofpact_output_reg *output_reg,
1089                                 struct ofpbuf *out)
1090 {
1091     struct nx_action_output_reg *naor = ofputil_put_NXAST_OUTPUT_REG(out);
1092
1093     naor->ofs_nbits = nxm_encode_ofs_nbits(output_reg->src.ofs,
1094                                            output_reg->src.n_bits);
1095     naor->src = htonl(output_reg->src.field->nxm_header);
1096     naor->max_len = htons(output_reg->max_len);
1097 }
1098
1099 static void
1100 ofpact_resubmit_to_nxast(const struct ofpact_resubmit *resubmit,
1101                          struct ofpbuf *out)
1102 {
1103     struct nx_action_resubmit *nar;
1104
1105     if (resubmit->table_id == 0xff
1106         && resubmit->ofpact.compat != OFPUTIL_NXAST_RESUBMIT_TABLE) {
1107         nar = ofputil_put_NXAST_RESUBMIT(out);
1108     } else {
1109         nar = ofputil_put_NXAST_RESUBMIT_TABLE(out);
1110         nar->table = resubmit->table_id;
1111     }
1112     nar->in_port = htons(resubmit->in_port);
1113 }
1114
1115 static void
1116 ofpact_set_tunnel_to_nxast(const struct ofpact_tunnel *tunnel,
1117                            struct ofpbuf *out)
1118 {
1119     uint64_t tun_id = tunnel->tun_id;
1120
1121     if (tun_id <= UINT32_MAX
1122         && tunnel->ofpact.compat != OFPUTIL_NXAST_SET_TUNNEL64) {
1123         ofputil_put_NXAST_SET_TUNNEL(out)->tun_id = htonl(tun_id);
1124     } else {
1125         ofputil_put_NXAST_SET_TUNNEL64(out)->tun_id = htonll(tun_id);
1126     }
1127 }
1128
1129 static void
1130 ofpact_note_to_nxast(const struct ofpact_note *note, struct ofpbuf *out)
1131 {
1132     size_t start_ofs = out->size;
1133     struct nx_action_note *nan;
1134     unsigned int remainder;
1135     unsigned int len;
1136
1137     nan = ofputil_put_NXAST_NOTE(out);
1138     out->size -= sizeof nan->note;
1139
1140     ofpbuf_put(out, note->data, note->length);
1141
1142     len = out->size - start_ofs;
1143     remainder = len % OFP_ACTION_ALIGN;
1144     if (remainder) {
1145         ofpbuf_put_zeros(out, OFP_ACTION_ALIGN - remainder);
1146     }
1147     nan = (struct nx_action_note *)((char *)out->data + start_ofs);
1148     nan->len = htons(out->size - start_ofs);
1149 }
1150
1151 static void
1152 ofpact_controller_to_nxast(const struct ofpact_controller *oc,
1153                            struct ofpbuf *out)
1154 {
1155     struct nx_action_controller *nac;
1156
1157     nac = ofputil_put_NXAST_CONTROLLER(out);
1158     nac->max_len = htons(oc->max_len);
1159     nac->controller_id = htons(oc->controller_id);
1160     nac->reason = oc->reason;
1161 }
1162
1163 static void
1164 ofpact_dec_ttl_to_nxast(const struct ofpact_cnt_ids *oc_ids,
1165                         struct ofpbuf *out)
1166 {
1167     if (oc_ids->ofpact.compat == OFPUTIL_NXAST_DEC_TTL) {
1168         ofputil_put_NXAST_DEC_TTL(out);
1169     } else {
1170         struct nx_action_cnt_ids *nac_ids =
1171             ofputil_put_NXAST_DEC_TTL_CNT_IDS(out);
1172         int ids_len = ROUND_UP(2 * oc_ids->n_controllers, OFP_ACTION_ALIGN);
1173         ovs_be16 *ids;
1174         size_t i;
1175
1176         nac_ids->len = htons(ntohs(nac_ids->len) + ids_len);
1177         nac_ids->n_controllers = htons(oc_ids->n_controllers);
1178
1179         ids = ofpbuf_put_zeros(out, ids_len);
1180         for (i = 0; i < oc_ids->n_controllers; i++) {
1181             ids[i] = htons(oc_ids->cnt_ids[i]);
1182         }
1183     }
1184 }
1185
1186 static void
1187 ofpact_fin_timeout_to_nxast(const struct ofpact_fin_timeout *fin_timeout,
1188                             struct ofpbuf *out)
1189 {
1190     struct nx_action_fin_timeout *naft = ofputil_put_NXAST_FIN_TIMEOUT(out);
1191     naft->fin_idle_timeout = htons(fin_timeout->fin_idle_timeout);
1192     naft->fin_hard_timeout = htons(fin_timeout->fin_hard_timeout);
1193 }
1194
1195 static void
1196 ofpact_to_nxast(const struct ofpact *a, struct ofpbuf *out)
1197 {
1198     switch (a->type) {
1199     case OFPACT_CONTROLLER:
1200         ofpact_controller_to_nxast(ofpact_get_CONTROLLER(a), out);
1201         break;
1202
1203     case OFPACT_OUTPUT_REG:
1204         ofpact_output_reg_to_nxast(ofpact_get_OUTPUT_REG(a), out);
1205         break;
1206
1207     case OFPACT_BUNDLE:
1208         bundle_to_nxast(ofpact_get_BUNDLE(a), out);
1209         break;
1210
1211     case OFPACT_REG_MOVE:
1212         nxm_reg_move_to_nxast(ofpact_get_REG_MOVE(a), out);
1213         break;
1214
1215     case OFPACT_REG_LOAD:
1216         nxm_reg_load_to_nxast(ofpact_get_REG_LOAD(a), out);
1217         break;
1218
1219     case OFPACT_DEC_TTL:
1220         ofpact_dec_ttl_to_nxast(ofpact_get_DEC_TTL(a), out);
1221         break;
1222
1223     case OFPACT_SET_TUNNEL:
1224         ofpact_set_tunnel_to_nxast(ofpact_get_SET_TUNNEL(a), out);
1225         break;
1226
1227     case OFPACT_SET_QUEUE:
1228         ofputil_put_NXAST_SET_QUEUE(out)->queue_id
1229             = htonl(ofpact_get_SET_QUEUE(a)->queue_id);
1230         break;
1231
1232     case OFPACT_POP_QUEUE:
1233         ofputil_put_NXAST_POP_QUEUE(out);
1234         break;
1235
1236     case OFPACT_FIN_TIMEOUT:
1237         ofpact_fin_timeout_to_nxast(ofpact_get_FIN_TIMEOUT(a), out);
1238         break;
1239
1240     case OFPACT_RESUBMIT:
1241         ofpact_resubmit_to_nxast(ofpact_get_RESUBMIT(a), out);
1242         break;
1243
1244     case OFPACT_LEARN:
1245         learn_to_nxast(ofpact_get_LEARN(a), out);
1246         break;
1247
1248     case OFPACT_MULTIPATH:
1249         multipath_to_nxast(ofpact_get_MULTIPATH(a), out);
1250         break;
1251
1252     case OFPACT_AUTOPATH:
1253         autopath_to_nxast(ofpact_get_AUTOPATH(a), out);
1254         break;
1255
1256     case OFPACT_NOTE:
1257         ofpact_note_to_nxast(ofpact_get_NOTE(a), out);
1258         break;
1259
1260     case OFPACT_EXIT:
1261         ofputil_put_NXAST_EXIT(out);
1262         break;
1263
1264     case OFPACT_OUTPUT:
1265     case OFPACT_ENQUEUE:
1266     case OFPACT_SET_VLAN_VID:
1267     case OFPACT_SET_VLAN_PCP:
1268     case OFPACT_STRIP_VLAN:
1269     case OFPACT_SET_ETH_SRC:
1270     case OFPACT_SET_ETH_DST:
1271     case OFPACT_SET_IPV4_SRC:
1272     case OFPACT_SET_IPV4_DST:
1273     case OFPACT_SET_IPV4_DSCP:
1274     case OFPACT_SET_L4_SRC_PORT:
1275     case OFPACT_SET_L4_DST_PORT:
1276     case OFPACT_CLEAR_ACTIONS:
1277     case OFPACT_GOTO_TABLE:
1278         NOT_REACHED();
1279     }
1280 }
1281 \f
1282 /* Converting ofpacts to OpenFlow 1.0. */
1283
1284 static void
1285 ofpact_output_to_openflow10(const struct ofpact_output *output,
1286                             struct ofpbuf *out)
1287 {
1288     struct ofp10_action_output *oao;
1289
1290     oao = ofputil_put_OFPAT10_OUTPUT(out);
1291     oao->port = htons(output->port);
1292     oao->max_len = htons(output->max_len);
1293 }
1294
1295 static void
1296 ofpact_enqueue_to_openflow10(const struct ofpact_enqueue *enqueue,
1297                              struct ofpbuf *out)
1298 {
1299     struct ofp_action_enqueue *oae;
1300
1301     oae = ofputil_put_OFPAT10_ENQUEUE(out);
1302     oae->port = htons(enqueue->port);
1303     oae->queue_id = htonl(enqueue->queue);
1304 }
1305
1306 static void
1307 ofpact_to_openflow10(const struct ofpact *a, struct ofpbuf *out)
1308 {
1309     switch (a->type) {
1310     case OFPACT_OUTPUT:
1311         ofpact_output_to_openflow10(ofpact_get_OUTPUT(a), out);
1312         break;
1313
1314     case OFPACT_ENQUEUE:
1315         ofpact_enqueue_to_openflow10(ofpact_get_ENQUEUE(a), out);
1316         break;
1317
1318     case OFPACT_SET_VLAN_VID:
1319         ofputil_put_OFPAT10_SET_VLAN_VID(out)->vlan_vid
1320             = htons(ofpact_get_SET_VLAN_VID(a)->vlan_vid);
1321         break;
1322
1323     case OFPACT_SET_VLAN_PCP:
1324         ofputil_put_OFPAT10_SET_VLAN_PCP(out)->vlan_pcp
1325             = ofpact_get_SET_VLAN_PCP(a)->vlan_pcp;
1326         break;
1327
1328     case OFPACT_STRIP_VLAN:
1329         ofputil_put_OFPAT10_STRIP_VLAN(out);
1330         break;
1331
1332     case OFPACT_SET_ETH_SRC:
1333         memcpy(ofputil_put_OFPAT10_SET_DL_SRC(out)->dl_addr,
1334                ofpact_get_SET_ETH_SRC(a)->mac, ETH_ADDR_LEN);
1335         break;
1336
1337     case OFPACT_SET_ETH_DST:
1338         memcpy(ofputil_put_OFPAT10_SET_DL_DST(out)->dl_addr,
1339                ofpact_get_SET_ETH_DST(a)->mac, ETH_ADDR_LEN);
1340         break;
1341
1342     case OFPACT_SET_IPV4_SRC:
1343         ofputil_put_OFPAT10_SET_NW_SRC(out)->nw_addr
1344             = ofpact_get_SET_IPV4_SRC(a)->ipv4;
1345         break;
1346
1347     case OFPACT_SET_IPV4_DST:
1348         ofputil_put_OFPAT10_SET_NW_DST(out)->nw_addr
1349             = ofpact_get_SET_IPV4_DST(a)->ipv4;
1350         break;
1351
1352     case OFPACT_SET_IPV4_DSCP:
1353         ofputil_put_OFPAT10_SET_NW_TOS(out)->nw_tos
1354             = ofpact_get_SET_IPV4_DSCP(a)->dscp;
1355         break;
1356
1357     case OFPACT_SET_L4_SRC_PORT:
1358         ofputil_put_OFPAT10_SET_TP_SRC(out)->tp_port
1359             = htons(ofpact_get_SET_L4_SRC_PORT(a)->port);
1360         break;
1361
1362     case OFPACT_SET_L4_DST_PORT:
1363         ofputil_put_OFPAT10_SET_TP_DST(out)->tp_port
1364             = htons(ofpact_get_SET_L4_DST_PORT(a)->port);
1365         break;
1366
1367     case OFPACT_CLEAR_ACTIONS:
1368     case OFPACT_GOTO_TABLE:
1369         /* TODO:XXX */
1370         break;
1371
1372     case OFPACT_CONTROLLER:
1373     case OFPACT_OUTPUT_REG:
1374     case OFPACT_BUNDLE:
1375     case OFPACT_REG_MOVE:
1376     case OFPACT_REG_LOAD:
1377     case OFPACT_DEC_TTL:
1378     case OFPACT_SET_TUNNEL:
1379     case OFPACT_SET_QUEUE:
1380     case OFPACT_POP_QUEUE:
1381     case OFPACT_FIN_TIMEOUT:
1382     case OFPACT_RESUBMIT:
1383     case OFPACT_LEARN:
1384     case OFPACT_MULTIPATH:
1385     case OFPACT_AUTOPATH:
1386     case OFPACT_NOTE:
1387     case OFPACT_EXIT:
1388         ofpact_to_nxast(a, out);
1389         break;
1390     }
1391 }
1392
1393 /* Converts the 'ofpacts_len' bytes of ofpacts in 'ofpacts' into OpenFlow 1.0
1394  * actions in 'openflow', appending the actions to any existing data in
1395  * 'openflow'. */
1396 void
1397 ofpacts_put_openflow10(const struct ofpact ofpacts[], size_t ofpacts_len,
1398                        struct ofpbuf *openflow)
1399 {
1400     const struct ofpact *a;
1401
1402     OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
1403         ofpact_to_openflow10(a, openflow);
1404     }
1405 }
1406 \f
1407 /* Converting ofpacts to OpenFlow 1.1. */
1408
1409 static void
1410 ofpact_output_to_openflow11(const struct ofpact_output *output,
1411                             struct ofpbuf *out)
1412 {
1413     struct ofp11_action_output *oao;
1414
1415     oao = ofputil_put_OFPAT11_OUTPUT(out);
1416     oao->port = ofputil_port_to_ofp11(output->port);
1417     oao->max_len = htons(output->max_len);
1418 }
1419
1420 static void
1421 ofpact_to_openflow11(const struct ofpact *a, struct ofpbuf *out)
1422 {
1423     switch (a->type) {
1424     case OFPACT_OUTPUT:
1425         return ofpact_output_to_openflow11(ofpact_get_OUTPUT(a), out);
1426
1427     case OFPACT_ENQUEUE:
1428         /* XXX */
1429         break;
1430
1431     case OFPACT_SET_VLAN_VID:
1432         ofputil_put_OFPAT11_SET_VLAN_VID(out)->vlan_vid
1433             = htons(ofpact_get_SET_VLAN_VID(a)->vlan_vid);
1434         break;
1435
1436     case OFPACT_SET_VLAN_PCP:
1437         ofputil_put_OFPAT11_SET_VLAN_PCP(out)->vlan_pcp
1438             = ofpact_get_SET_VLAN_PCP(a)->vlan_pcp;
1439         break;
1440
1441     case OFPACT_STRIP_VLAN:
1442         /* XXX */
1443         break;
1444
1445     case OFPACT_SET_ETH_SRC:
1446         memcpy(ofputil_put_OFPAT11_SET_DL_SRC(out)->dl_addr,
1447                ofpact_get_SET_ETH_SRC(a)->mac, ETH_ADDR_LEN);
1448         break;
1449
1450     case OFPACT_SET_ETH_DST:
1451         memcpy(ofputil_put_OFPAT11_SET_DL_DST(out)->dl_addr,
1452                ofpact_get_SET_ETH_DST(a)->mac, ETH_ADDR_LEN);
1453         break;
1454
1455     case OFPACT_SET_IPV4_SRC:
1456         ofputil_put_OFPAT11_SET_NW_SRC(out)->nw_addr
1457             = ofpact_get_SET_IPV4_SRC(a)->ipv4;
1458         break;
1459
1460     case OFPACT_SET_IPV4_DST:
1461         ofputil_put_OFPAT11_SET_NW_DST(out)->nw_addr
1462             = ofpact_get_SET_IPV4_DST(a)->ipv4;
1463         break;
1464
1465     case OFPACT_SET_IPV4_DSCP:
1466         ofputil_put_OFPAT11_SET_NW_TOS(out)->nw_tos
1467             = ofpact_get_SET_IPV4_DSCP(a)->dscp;
1468         break;
1469
1470     case OFPACT_SET_L4_SRC_PORT:
1471         ofputil_put_OFPAT11_SET_TP_SRC(out)->tp_port
1472             = htons(ofpact_get_SET_L4_SRC_PORT(a)->port);
1473         break;
1474
1475     case OFPACT_SET_L4_DST_PORT:
1476         ofputil_put_OFPAT11_SET_TP_DST(out)->tp_port
1477             = htons(ofpact_get_SET_L4_DST_PORT(a)->port);
1478         break;
1479
1480     case OFPACT_CLEAR_ACTIONS:
1481     case OFPACT_GOTO_TABLE:
1482         NOT_REACHED();
1483
1484     case OFPACT_CONTROLLER:
1485     case OFPACT_OUTPUT_REG:
1486     case OFPACT_BUNDLE:
1487     case OFPACT_REG_MOVE:
1488     case OFPACT_REG_LOAD:
1489     case OFPACT_DEC_TTL:
1490     case OFPACT_SET_TUNNEL:
1491     case OFPACT_SET_QUEUE:
1492     case OFPACT_POP_QUEUE:
1493     case OFPACT_FIN_TIMEOUT:
1494     case OFPACT_RESUBMIT:
1495     case OFPACT_LEARN:
1496     case OFPACT_MULTIPATH:
1497     case OFPACT_AUTOPATH:
1498     case OFPACT_NOTE:
1499     case OFPACT_EXIT:
1500         ofpact_to_nxast(a, out);
1501         break;
1502     }
1503 }
1504
1505 /* Converts the ofpacts in 'ofpacts' (terminated by OFPACT_END) into OpenFlow
1506  * 1.1 actions in 'openflow', appending the actions to any existing data in
1507  * 'openflow'. */
1508 size_t
1509 ofpacts_put_openflow11_actions(const struct ofpact ofpacts[],
1510                                size_t ofpacts_len, struct ofpbuf *openflow)
1511 {
1512     const struct ofpact *a;
1513     size_t start_size = openflow->size;
1514
1515     OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
1516         ofpact_to_openflow11(a, openflow);
1517     }
1518
1519     return openflow->size - start_size;
1520 }
1521
1522 static void
1523 ofpacts_update_instruction_actions(struct ofpbuf *openflow, size_t ofs)
1524 {
1525     struct ofp11_instruction_actions *oia;
1526
1527     /* Update the instruction's length (or, if it's empty, delete it). */
1528     oia = ofpbuf_at_assert(openflow, ofs, sizeof *oia);
1529     if (openflow->size > ofs + sizeof *oia) {
1530         oia->len = htons(openflow->size - ofs);
1531     } else {
1532         openflow->size = ofs;
1533     }
1534 }
1535
1536 void
1537 ofpacts_put_openflow11_instructions(const struct ofpact ofpacts[],
1538                                     size_t ofpacts_len,
1539                                     struct ofpbuf *openflow)
1540 {
1541     const struct ofpact *a;
1542
1543     OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
1544         /* TODO:XXX Write-Actions */
1545         /* TODO:XXX Write-Metadata */
1546         if (a->type == OFPACT_CLEAR_ACTIONS) {
1547             instruction_put_OFPIT11_CLEAR_ACTIONS(openflow);
1548         } else if (a->type == OFPACT_GOTO_TABLE) {
1549             struct ofp11_instruction_goto_table *oigt;
1550
1551             oigt = instruction_put_OFPIT11_GOTO_TABLE(openflow);
1552             oigt->table_id = ofpact_get_GOTO_TABLE(a)->table_id;
1553             memset(oigt->pad, 0, sizeof oigt->pad);
1554         } else if (!ofpact_is_instruction(a)) {
1555             /* Apply-actions */
1556             const size_t ofs = openflow->size;
1557             const size_t ofpacts_len_left =
1558                 (uint8_t*)ofpact_end(ofpacts, ofpacts_len) - (uint8_t*)a;
1559             const struct ofpact *action;
1560             const struct ofpact *processed = a;
1561
1562             instruction_put_OFPIT11_APPLY_ACTIONS(openflow);
1563             OFPACT_FOR_EACH(action, a, ofpacts_len_left) {
1564                 if (ofpact_is_instruction(action)) {
1565                     break;
1566                 }
1567                 ofpact_to_openflow11(action, openflow);
1568                 processed = action;
1569             }
1570             ofpacts_update_instruction_actions(openflow, ofs);
1571             a = processed;
1572         }
1573     }
1574 }
1575 \f
1576 /* Returns true if 'action' outputs to 'port', false otherwise. */
1577 static bool
1578 ofpact_outputs_to_port(const struct ofpact *ofpact, uint16_t port)
1579 {
1580     switch (ofpact->type) {
1581     case OFPACT_OUTPUT:
1582         return ofpact_get_OUTPUT(ofpact)->port == port;
1583     case OFPACT_ENQUEUE:
1584         return ofpact_get_ENQUEUE(ofpact)->port == port;
1585     case OFPACT_CONTROLLER:
1586         return port == OFPP_CONTROLLER;
1587
1588     case OFPACT_OUTPUT_REG:
1589     case OFPACT_BUNDLE:
1590     case OFPACT_SET_VLAN_VID:
1591     case OFPACT_SET_VLAN_PCP:
1592     case OFPACT_STRIP_VLAN:
1593     case OFPACT_SET_ETH_SRC:
1594     case OFPACT_SET_ETH_DST:
1595     case OFPACT_SET_IPV4_SRC:
1596     case OFPACT_SET_IPV4_DST:
1597     case OFPACT_SET_IPV4_DSCP:
1598     case OFPACT_SET_L4_SRC_PORT:
1599     case OFPACT_SET_L4_DST_PORT:
1600     case OFPACT_REG_MOVE:
1601     case OFPACT_REG_LOAD:
1602     case OFPACT_DEC_TTL:
1603     case OFPACT_SET_TUNNEL:
1604     case OFPACT_SET_QUEUE:
1605     case OFPACT_POP_QUEUE:
1606     case OFPACT_FIN_TIMEOUT:
1607     case OFPACT_RESUBMIT:
1608     case OFPACT_LEARN:
1609     case OFPACT_MULTIPATH:
1610     case OFPACT_AUTOPATH:
1611     case OFPACT_NOTE:
1612     case OFPACT_EXIT:
1613     case OFPACT_CLEAR_ACTIONS:
1614     case OFPACT_GOTO_TABLE:
1615     default:
1616         return false;
1617     }
1618 }
1619
1620 /* Returns true if any action in the 'ofpacts_len' bytes of 'ofpacts' outputs
1621  * to 'port', false otherwise. */
1622 bool
1623 ofpacts_output_to_port(const struct ofpact *ofpacts, size_t ofpacts_len,
1624                        uint16_t port)
1625 {
1626     const struct ofpact *a;
1627
1628     OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
1629         if (ofpact_outputs_to_port(a, port)) {
1630             return true;
1631         }
1632     }
1633
1634     return false;
1635 }
1636
1637 bool
1638 ofpacts_equal(const struct ofpact *a, size_t a_len,
1639               const struct ofpact *b, size_t b_len)
1640 {
1641     return a_len == b_len && !memcmp(a, b, a_len);
1642 }
1643 \f
1644 /* Formatting ofpacts. */
1645
1646 static void
1647 print_note(const struct ofpact_note *note, struct ds *string)
1648 {
1649     size_t i;
1650
1651     ds_put_cstr(string, "note:");
1652     for (i = 0; i < note->length; i++) {
1653         if (i) {
1654             ds_put_char(string, '.');
1655         }
1656         ds_put_format(string, "%02"PRIx8, note->data[i]);
1657     }
1658 }
1659
1660 static void
1661 print_dec_ttl(const struct ofpact_cnt_ids *ids,
1662               struct ds *s)
1663 {
1664     size_t i;
1665
1666     ds_put_cstr(s, "dec_ttl");
1667     if (ids->ofpact.compat == OFPUTIL_NXAST_DEC_TTL_CNT_IDS) {
1668         ds_put_cstr(s, "(");
1669         for (i = 0; i < ids->n_controllers; i++) {
1670             if (i) {
1671                 ds_put_cstr(s, ",");
1672             }
1673             ds_put_format(s, "%"PRIu16, ids->cnt_ids[i]);
1674         }
1675         ds_put_cstr(s, ")");
1676     }
1677 }
1678
1679 static void
1680 print_fin_timeout(const struct ofpact_fin_timeout *fin_timeout,
1681                   struct ds *s)
1682 {
1683     ds_put_cstr(s, "fin_timeout(");
1684     if (fin_timeout->fin_idle_timeout) {
1685         ds_put_format(s, "idle_timeout=%"PRIu16",",
1686                       fin_timeout->fin_idle_timeout);
1687     }
1688     if (fin_timeout->fin_hard_timeout) {
1689         ds_put_format(s, "hard_timeout=%"PRIu16",",
1690                       fin_timeout->fin_hard_timeout);
1691     }
1692     ds_chomp(s, ',');
1693     ds_put_char(s, ')');
1694 }
1695
1696 static void
1697 ofpact_format(const struct ofpact *a, struct ds *s)
1698 {
1699     const struct ofpact_enqueue *enqueue;
1700     const struct ofpact_resubmit *resubmit;
1701     const struct ofpact_autopath *autopath;
1702     const struct ofpact_controller *controller;
1703     const struct ofpact_tunnel *tunnel;
1704     uint16_t port;
1705
1706     switch (a->type) {
1707     case OFPACT_OUTPUT:
1708         port = ofpact_get_OUTPUT(a)->port;
1709         if (port < OFPP_MAX) {
1710             ds_put_format(s, "output:%"PRIu16, port);
1711         } else {
1712             ofputil_format_port(port, s);
1713             if (port == OFPP_CONTROLLER) {
1714                 ds_put_format(s, ":%"PRIu16, ofpact_get_OUTPUT(a)->max_len);
1715             }
1716         }
1717         break;
1718
1719     case OFPACT_CONTROLLER:
1720         controller = ofpact_get_CONTROLLER(a);
1721         if (controller->reason == OFPR_ACTION &&
1722             controller->controller_id == 0) {
1723             ds_put_format(s, "CONTROLLER:%"PRIu16,
1724                           ofpact_get_CONTROLLER(a)->max_len);
1725         } else {
1726             enum ofp_packet_in_reason reason = controller->reason;
1727
1728             ds_put_cstr(s, "controller(");
1729             if (reason != OFPR_ACTION) {
1730                 ds_put_format(s, "reason=%s,",
1731                               ofputil_packet_in_reason_to_string(reason));
1732             }
1733             if (controller->max_len != UINT16_MAX) {
1734                 ds_put_format(s, "max_len=%"PRIu16",", controller->max_len);
1735             }
1736             if (controller->controller_id != 0) {
1737                 ds_put_format(s, "id=%"PRIu16",", controller->controller_id);
1738             }
1739             ds_chomp(s, ',');
1740             ds_put_char(s, ')');
1741         }
1742         break;
1743
1744     case OFPACT_ENQUEUE:
1745         enqueue = ofpact_get_ENQUEUE(a);
1746         ds_put_format(s, "enqueue:");
1747         ofputil_format_port(enqueue->port, s);
1748         ds_put_format(s, "q%"PRIu32, enqueue->queue);
1749         break;
1750
1751     case OFPACT_OUTPUT_REG:
1752         ds_put_cstr(s, "output:");
1753         mf_format_subfield(&ofpact_get_OUTPUT_REG(a)->src, s);
1754         break;
1755
1756     case OFPACT_BUNDLE:
1757         bundle_format(ofpact_get_BUNDLE(a), s);
1758         break;
1759
1760     case OFPACT_SET_VLAN_VID:
1761         ds_put_format(s, "mod_vlan_vid:%"PRIu16,
1762                       ofpact_get_SET_VLAN_VID(a)->vlan_vid);
1763         break;
1764
1765     case OFPACT_SET_VLAN_PCP:
1766         ds_put_format(s, "mod_vlan_pcp:%"PRIu8,
1767                       ofpact_get_SET_VLAN_PCP(a)->vlan_pcp);
1768         break;
1769
1770     case OFPACT_STRIP_VLAN:
1771         ds_put_cstr(s, "strip_vlan");
1772         break;
1773
1774     case OFPACT_SET_ETH_SRC:
1775         ds_put_format(s, "mod_dl_src:"ETH_ADDR_FMT,
1776                       ETH_ADDR_ARGS(ofpact_get_SET_ETH_SRC(a)->mac));
1777         break;
1778
1779     case OFPACT_SET_ETH_DST:
1780         ds_put_format(s, "mod_dl_dst:"ETH_ADDR_FMT,
1781                       ETH_ADDR_ARGS(ofpact_get_SET_ETH_DST(a)->mac));
1782         break;
1783
1784     case OFPACT_SET_IPV4_SRC:
1785         ds_put_format(s, "mod_nw_src:"IP_FMT,
1786                       IP_ARGS(&ofpact_get_SET_IPV4_SRC(a)->ipv4));
1787         break;
1788
1789     case OFPACT_SET_IPV4_DST:
1790         ds_put_format(s, "mod_nw_dst:"IP_FMT,
1791                       IP_ARGS(&ofpact_get_SET_IPV4_DST(a)->ipv4));
1792         break;
1793
1794     case OFPACT_SET_IPV4_DSCP:
1795         ds_put_format(s, "mod_nw_tos:%d", ofpact_get_SET_IPV4_DSCP(a)->dscp);
1796         break;
1797
1798     case OFPACT_SET_L4_SRC_PORT:
1799         ds_put_format(s, "mod_tp_src:%d", ofpact_get_SET_L4_SRC_PORT(a)->port);
1800         break;
1801
1802     case OFPACT_SET_L4_DST_PORT:
1803         ds_put_format(s, "mod_tp_dst:%d", ofpact_get_SET_L4_DST_PORT(a)->port);
1804         break;
1805
1806     case OFPACT_REG_MOVE:
1807         nxm_format_reg_move(ofpact_get_REG_MOVE(a), s);
1808         break;
1809
1810     case OFPACT_REG_LOAD:
1811         nxm_format_reg_load(ofpact_get_REG_LOAD(a), s);
1812         break;
1813
1814     case OFPACT_DEC_TTL:
1815         print_dec_ttl(ofpact_get_DEC_TTL(a), s);
1816         break;
1817
1818     case OFPACT_SET_TUNNEL:
1819         tunnel = ofpact_get_SET_TUNNEL(a);
1820         ds_put_format(s, "set_tunnel%s:%#"PRIx64,
1821                       (tunnel->tun_id > UINT32_MAX
1822                        || a->compat == OFPUTIL_NXAST_SET_TUNNEL64 ? "64" : ""),
1823                       tunnel->tun_id);
1824         break;
1825
1826     case OFPACT_SET_QUEUE:
1827         ds_put_format(s, "set_queue:%"PRIu32,
1828                       ofpact_get_SET_QUEUE(a)->queue_id);
1829         break;
1830
1831     case OFPACT_POP_QUEUE:
1832         ds_put_cstr(s, "pop_queue");
1833         break;
1834
1835     case OFPACT_FIN_TIMEOUT:
1836         print_fin_timeout(ofpact_get_FIN_TIMEOUT(a), s);
1837         break;
1838
1839     case OFPACT_RESUBMIT:
1840         resubmit = ofpact_get_RESUBMIT(a);
1841         if (resubmit->in_port != OFPP_IN_PORT && resubmit->table_id == 255) {
1842             ds_put_cstr(s, "resubmit:");
1843             ofputil_format_port(resubmit->in_port, s);
1844         } else {
1845             ds_put_format(s, "resubmit(");
1846             if (resubmit->in_port != OFPP_IN_PORT) {
1847                 ofputil_format_port(resubmit->in_port, s);
1848             }
1849             ds_put_char(s, ',');
1850             if (resubmit->table_id != 255) {
1851                 ds_put_format(s, "%"PRIu8, resubmit->table_id);
1852             }
1853             ds_put_char(s, ')');
1854         }
1855         break;
1856
1857     case OFPACT_LEARN:
1858         learn_format(ofpact_get_LEARN(a), s);
1859         break;
1860
1861     case OFPACT_MULTIPATH:
1862         multipath_format(ofpact_get_MULTIPATH(a), s);
1863         break;
1864
1865     case OFPACT_AUTOPATH:
1866         autopath = ofpact_get_AUTOPATH(a);
1867         ds_put_cstr(s, "autopath(");
1868         ofputil_format_port(autopath->port, s);
1869         ds_put_char(s, ',');
1870         mf_format_subfield(&autopath->dst, s);
1871         ds_put_char(s, ')');
1872         break;
1873
1874     case OFPACT_NOTE:
1875         print_note(ofpact_get_NOTE(a), s);
1876         break;
1877
1878     case OFPACT_EXIT:
1879         ds_put_cstr(s, "exit");
1880         break;
1881
1882     case OFPACT_CLEAR_ACTIONS:
1883         ds_put_format(s, "%s",
1884                       ofpact_instruction_name_from_type(
1885                           OVSINST_OFPIT11_CLEAR_ACTIONS));
1886         break;
1887
1888     case OFPACT_GOTO_TABLE:
1889         ds_put_format(s, "%s:%"PRIu8,
1890                       ofpact_instruction_name_from_type(
1891                           OVSINST_OFPIT11_GOTO_TABLE),
1892                       ofpact_get_GOTO_TABLE(a)->table_id);
1893         break;
1894     }
1895 }
1896
1897 /* Appends a string representing the 'ofpacts_len' bytes of ofpacts in
1898  * 'ofpacts' to 'string'. */
1899 void
1900 ofpacts_format(const struct ofpact *ofpacts, size_t ofpacts_len,
1901                struct ds *string)
1902 {
1903     ds_put_cstr(string, "actions=");
1904     if (!ofpacts_len) {
1905         ds_put_cstr(string, "drop");
1906     } else {
1907         const struct ofpact *a;
1908
1909         OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
1910             if (a != ofpacts) {
1911                 ds_put_cstr(string, ",");
1912             }
1913
1914             /* TODO:XXX write-actions */
1915             /* TODO:XXX write-metadata */
1916             ofpact_format(a, string);
1917         }
1918     }
1919 }
1920 \f
1921 /* Internal use by helpers. */
1922
1923 void *
1924 ofpact_put(struct ofpbuf *ofpacts, enum ofpact_type type, size_t len)
1925 {
1926     struct ofpact *ofpact;
1927
1928     ofpact_pad(ofpacts);
1929     ofpact = ofpacts->l2 = ofpbuf_put_uninit(ofpacts, len);
1930     ofpact_init(ofpact, type, len);
1931     return ofpact;
1932 }
1933
1934 void
1935 ofpact_init(struct ofpact *ofpact, enum ofpact_type type, size_t len)
1936 {
1937     memset(ofpact, 0, len);
1938     ofpact->type = type;
1939     ofpact->compat = OFPUTIL_ACTION_INVALID;
1940     ofpact->len = len;
1941 }
1942 \f
1943 /* Updates 'ofpact->len' to the number of bytes in the tail of 'ofpacts'
1944  * starting at 'ofpact'.
1945  *
1946  * This is the correct way to update a variable-length ofpact's length after
1947  * adding the variable-length part of the payload.  (See the large comment
1948  * near the end of ofp-actions.h for more information.) */
1949 void
1950 ofpact_update_len(struct ofpbuf *ofpacts, struct ofpact *ofpact)
1951 {
1952     assert(ofpact == ofpacts->l2);
1953     ofpact->len = (char *) ofpbuf_tail(ofpacts) - (char *) ofpact;
1954 }
1955
1956 /* Pads out 'ofpacts' to a multiple of OFPACT_ALIGNTO bytes in length.  Each
1957  * ofpact_put_<ENUM>() calls this function automatically beforehand, but the
1958  * client must call this itself after adding the final ofpact to an array of
1959  * them.
1960  *
1961  * (The consequences of failing to call this function are probably not dire.
1962  * OFPACT_FOR_EACH will calculate a pointer beyond the end of the ofpacts, but
1963  * not dereference it.  That's undefined behavior, technically, but it will not
1964  * cause a real problem on common systems.  Still, it seems better to call
1965  * it.) */
1966 void
1967 ofpact_pad(struct ofpbuf *ofpacts)
1968 {
1969     unsigned int rem = ofpacts->size % OFPACT_ALIGNTO;
1970     if (rem) {
1971         ofpbuf_put_zeros(ofpacts, OFPACT_ALIGNTO - rem);
1972     }
1973 }
1974
1975 void
1976 ofpact_set_field_init(struct ofpact_reg_load *load, const struct mf_field *mf,
1977                       const void *src)
1978 {
1979     load->ofpact.compat = OFPUTIL_OFPAT12_SET_FIELD;
1980     load->dst.field = mf;
1981     load->dst.ofs = 0;
1982     load->dst.n_bits = mf->n_bits;
1983     bitwise_copy(src, mf->n_bytes, load->dst.ofs,
1984                  &load->subvalue, sizeof load->subvalue, 0, mf->n_bits);
1985 }