ofproto-dpif: Hide struct priority_to_dscp.
[sliver-openvswitch.git] / ofproto / ofproto-dpif-xlate.c
1 /* Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License. */
14
15 #include <config.h>
16
17 #include "ofproto/ofproto-dpif-xlate.h"
18
19 #include "bitmap.h"
20 #include "bond.h"
21 #include "bundle.h"
22 #include "byte-order.h"
23 #include "connmgr.h"
24 #include "coverage.h"
25 #include "dpif.h"
26 #include "dynamic-string.h"
27 #include "learn.h"
28 #include "mac-learning.h"
29 #include "meta-flow.h"
30 #include "multipath.h"
31 #include "netdev-vport.h"
32 #include "netlink.h"
33 #include "nx-match.h"
34 #include "odp-execute.h"
35 #include "ofp-actions.h"
36 #include "ofproto/ofproto-dpif-ipfix.h"
37 #include "ofproto/ofproto-dpif-sflow.h"
38 #include "ofproto/ofproto-dpif.h"
39 #include "tunnel.h"
40 #include "vlog.h"
41
42 COVERAGE_DEFINE(ofproto_dpif_xlate);
43
44 VLOG_DEFINE_THIS_MODULE(ofproto_dpif_xlate);
45
46 struct xlate_ctx {
47     struct xlate_in *xin;
48     struct xlate_out *xout;
49
50     struct ofproto_dpif *ofproto;
51
52     /* Flow at the last commit. */
53     struct flow base_flow;
54
55     /* Tunnel IP destination address as received.  This is stored separately
56      * as the base_flow.tunnel is cleared on init to reflect the datapath
57      * behavior.  Used to make sure not to send tunneled output to ourselves,
58      * which might lead to an infinite loop.  This could happen easily
59      * if a tunnel is marked as 'ip_remote=flow', and the flow does not
60      * actually set the tun_dst field. */
61     ovs_be32 orig_tunnel_ip_dst;
62
63     /* Stack for the push and pop actions.  Each stack element is of type
64      * "union mf_subvalue". */
65     union mf_subvalue init_stack[1024 / sizeof(union mf_subvalue)];
66     struct ofpbuf stack;
67
68     /* The rule that we are currently translating, or NULL. */
69     struct rule_dpif *rule;
70
71     int recurse;                /* Recursion level, via xlate_table_action. */
72     bool max_resubmit_trigger;  /* Recursed too deeply during translation. */
73     uint32_t orig_skb_priority; /* Priority when packet arrived. */
74     uint8_t table_id;           /* OpenFlow table ID where flow was found. */
75     uint32_t sflow_n_outputs;   /* Number of output ports. */
76     uint32_t sflow_odp_port;    /* Output port for composing sFlow action. */
77     uint16_t user_cookie_offset;/* Used for user_action_cookie fixup. */
78     bool exit;                  /* No further actions should be processed. */
79 };
80
81 /* A controller may use OFPP_NONE as the ingress port to indicate that
82  * it did not arrive on a "real" port.  'ofpp_none_bundle' exists for
83  * when an input bundle is needed for validation (e.g., mirroring or
84  * OFPP_NORMAL processing).  It is not connected to an 'ofproto' or have
85  * any 'port' structs, so care must be taken when dealing with it. */
86 static struct ofbundle ofpp_none_bundle = {
87     .name      = "OFPP_NONE",
88     .vlan_mode = PORT_VLAN_TRUNK
89 };
90
91 static bool may_receive(const struct ofport_dpif *, struct xlate_ctx *);
92 static void do_xlate_actions(const struct ofpact *, size_t ofpacts_len,
93                              struct xlate_ctx *);
94 static void xlate_normal(struct xlate_ctx *);
95 static void xlate_report(struct xlate_ctx *, const char *);
96 static void xlate_table_action(struct xlate_ctx *, uint16_t in_port,
97                                uint8_t table_id, bool may_packet_in);
98 static bool input_vid_is_valid(uint16_t vid, struct ofbundle *, bool warn);
99 static uint16_t input_vid_to_vlan(const struct ofbundle *, uint16_t vid);
100 static void output_normal(struct xlate_ctx *, const struct ofbundle *,
101                           uint16_t vlan);
102 static void compose_output_action(struct xlate_ctx *, uint16_t ofp_port);
103
104 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
105
106 static bool
107 ofbundle_trunks_vlan(const struct ofbundle *bundle, uint16_t vlan)
108 {
109     return (bundle->vlan_mode != PORT_VLAN_ACCESS
110             && (!bundle->trunks || bitmap_is_set(bundle->trunks, vlan)));
111 }
112
113 static bool
114 ofbundle_includes_vlan(const struct ofbundle *bundle, uint16_t vlan)
115 {
116     return vlan == bundle->vlan || ofbundle_trunks_vlan(bundle, vlan);
117 }
118
119 static bool
120 vlan_is_mirrored(const struct ofmirror *m, int vlan)
121 {
122     return !m->vlans || bitmap_is_set(m->vlans, vlan);
123 }
124
125 static struct ofbundle *
126 lookup_input_bundle(const struct ofproto_dpif *ofproto, uint16_t in_port,
127                     bool warn, struct ofport_dpif **in_ofportp)
128 {
129     struct ofport_dpif *ofport;
130
131     /* Find the port and bundle for the received packet. */
132     ofport = get_ofp_port(ofproto, in_port);
133     if (in_ofportp) {
134         *in_ofportp = ofport;
135     }
136     if (ofport && ofport->bundle) {
137         return ofport->bundle;
138     }
139
140     /* Special-case OFPP_NONE, which a controller may use as the ingress
141      * port for traffic that it is sourcing. */
142     if (in_port == OFPP_NONE) {
143         return &ofpp_none_bundle;
144     }
145
146     /* Odd.  A few possible reasons here:
147      *
148      * - We deleted a port but there are still a few packets queued up
149      *   from it.
150      *
151      * - Someone externally added a port (e.g. "ovs-dpctl add-if") that
152      *   we don't know about.
153      *
154      * - The ofproto client didn't configure the port as part of a bundle.
155      *   This is particularly likely to happen if a packet was received on the
156      *   port after it was created, but before the client had a chance to
157      *   configure its bundle.
158      */
159     if (warn) {
160         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
161
162         VLOG_WARN_RL(&rl, "bridge %s: received packet on unknown "
163                      "port %"PRIu16, ofproto->up.name, in_port);
164     }
165     return NULL;
166 }
167
168 static void
169 add_mirror_actions(struct xlate_ctx *ctx, const struct flow *orig_flow)
170 {
171     struct ofproto_dpif *ofproto = ctx->ofproto;
172     mirror_mask_t mirrors;
173     struct ofbundle *in_bundle;
174     uint16_t vlan;
175     uint16_t vid;
176     const struct nlattr *a;
177     size_t left;
178
179     in_bundle = lookup_input_bundle(ctx->ofproto, orig_flow->in_port,
180                                     ctx->xin->packet != NULL, NULL);
181     if (!in_bundle) {
182         return;
183     }
184     mirrors = in_bundle->src_mirrors;
185
186     /* Drop frames on bundles reserved for mirroring. */
187     if (in_bundle->mirror_out) {
188         if (ctx->xin->packet != NULL) {
189             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
190             VLOG_WARN_RL(&rl, "bridge %s: dropping packet received on port "
191                          "%s, which is reserved exclusively for mirroring",
192                          ctx->ofproto->up.name, in_bundle->name);
193         }
194         return;
195     }
196
197     /* Check VLAN. */
198     vid = vlan_tci_to_vid(orig_flow->vlan_tci);
199     if (!input_vid_is_valid(vid, in_bundle, ctx->xin->packet != NULL)) {
200         return;
201     }
202     vlan = input_vid_to_vlan(in_bundle, vid);
203
204     /* Look at the output ports to check for destination selections. */
205
206     NL_ATTR_FOR_EACH (a, left, ctx->xout->odp_actions.data,
207                       ctx->xout->odp_actions.size) {
208         enum ovs_action_attr type = nl_attr_type(a);
209         struct ofport_dpif *ofport;
210
211         if (type != OVS_ACTION_ATTR_OUTPUT) {
212             continue;
213         }
214
215         ofport = get_odp_port(ofproto, nl_attr_get_u32(a));
216         if (ofport && ofport->bundle) {
217             mirrors |= ofport->bundle->dst_mirrors;
218         }
219     }
220
221     if (!mirrors) {
222         return;
223     }
224
225     /* Restore the original packet before adding the mirror actions. */
226     ctx->xin->flow = *orig_flow;
227
228     while (mirrors) {
229         struct ofmirror *m;
230
231         m = ofproto->mirrors[mirror_mask_ffs(mirrors) - 1];
232
233         if (m->vlans) {
234             ctx->xout->wc.masks.vlan_tci |= htons(VLAN_CFI | VLAN_VID_MASK);
235         }
236
237         if (!vlan_is_mirrored(m, vlan)) {
238             mirrors = zero_rightmost_1bit(mirrors);
239             continue;
240         }
241
242         mirrors &= ~m->dup_mirrors;
243         ctx->xout->mirrors |= m->dup_mirrors;
244         if (m->out) {
245             output_normal(ctx, m->out, vlan);
246         } else if (vlan != m->out_vlan
247                    && !eth_addr_is_reserved(orig_flow->dl_dst)) {
248             struct ofbundle *bundle;
249
250             HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
251                 if (ofbundle_includes_vlan(bundle, m->out_vlan)
252                     && !bundle->mirror_out) {
253                     output_normal(ctx, bundle, m->out_vlan);
254                 }
255             }
256         }
257     }
258 }
259
260 /* Given 'vid', the VID obtained from the 802.1Q header that was received as
261  * part of a packet (specify 0 if there was no 802.1Q header), and 'in_bundle',
262  * the bundle on which the packet was received, returns the VLAN to which the
263  * packet belongs.
264  *
265  * Both 'vid' and the return value are in the range 0...4095. */
266 static uint16_t
267 input_vid_to_vlan(const struct ofbundle *in_bundle, uint16_t vid)
268 {
269     switch (in_bundle->vlan_mode) {
270     case PORT_VLAN_ACCESS:
271         return in_bundle->vlan;
272         break;
273
274     case PORT_VLAN_TRUNK:
275         return vid;
276
277     case PORT_VLAN_NATIVE_UNTAGGED:
278     case PORT_VLAN_NATIVE_TAGGED:
279         return vid ? vid : in_bundle->vlan;
280
281     default:
282         NOT_REACHED();
283     }
284 }
285
286 /* Checks whether a packet with the given 'vid' may ingress on 'in_bundle'.
287  * If so, returns true.  Otherwise, returns false and, if 'warn' is true, logs
288  * a warning.
289  *
290  * 'vid' should be the VID obtained from the 802.1Q header that was received as
291  * part of a packet (specify 0 if there was no 802.1Q header), in the range
292  * 0...4095. */
293 static bool
294 input_vid_is_valid(uint16_t vid, struct ofbundle *in_bundle, bool warn)
295 {
296     /* Allow any VID on the OFPP_NONE port. */
297     if (in_bundle == &ofpp_none_bundle) {
298         return true;
299     }
300
301     switch (in_bundle->vlan_mode) {
302     case PORT_VLAN_ACCESS:
303         if (vid) {
304             if (warn) {
305                 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
306                 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %"PRIu16" tagged "
307                              "packet received on port %s configured as VLAN "
308                              "%"PRIu16" access port",
309                              in_bundle->ofproto->up.name, vid,
310                              in_bundle->name, in_bundle->vlan);
311             }
312             return false;
313         }
314         return true;
315
316     case PORT_VLAN_NATIVE_UNTAGGED:
317     case PORT_VLAN_NATIVE_TAGGED:
318         if (!vid) {
319             /* Port must always carry its native VLAN. */
320             return true;
321         }
322         /* Fall through. */
323     case PORT_VLAN_TRUNK:
324         if (!ofbundle_includes_vlan(in_bundle, vid)) {
325             if (warn) {
326                 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
327                 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %"PRIu16" packet "
328                              "received on port %s not configured for trunking "
329                              "VLAN %"PRIu16,
330                              in_bundle->ofproto->up.name, vid,
331                              in_bundle->name, vid);
332             }
333             return false;
334         }
335         return true;
336
337     default:
338         NOT_REACHED();
339     }
340
341 }
342
343 /* Given 'vlan', the VLAN that a packet belongs to, and
344  * 'out_bundle', a bundle on which the packet is to be output, returns the VID
345  * that should be included in the 802.1Q header.  (If the return value is 0,
346  * then the 802.1Q header should only be included in the packet if there is a
347  * nonzero PCP.)
348  *
349  * Both 'vlan' and the return value are in the range 0...4095. */
350 static uint16_t
351 output_vlan_to_vid(const struct ofbundle *out_bundle, uint16_t vlan)
352 {
353     switch (out_bundle->vlan_mode) {
354     case PORT_VLAN_ACCESS:
355         return 0;
356
357     case PORT_VLAN_TRUNK:
358     case PORT_VLAN_NATIVE_TAGGED:
359         return vlan;
360
361     case PORT_VLAN_NATIVE_UNTAGGED:
362         return vlan == out_bundle->vlan ? 0 : vlan;
363
364     default:
365         NOT_REACHED();
366     }
367 }
368
369 static void
370 output_normal(struct xlate_ctx *ctx, const struct ofbundle *out_bundle,
371               uint16_t vlan)
372 {
373     ovs_be16 *flow_tci = &ctx->xin->flow.vlan_tci;
374     struct ofport_dpif *port;
375     uint16_t vid;
376     ovs_be16 tci, old_tci;
377
378     vid = output_vlan_to_vid(out_bundle, vlan);
379     if (!out_bundle->bond) {
380         port = ofbundle_get_a_port(out_bundle);
381     } else {
382         port = bond_choose_output_slave(out_bundle->bond, &ctx->xin->flow,
383                                         &ctx->xout->wc, vid, &ctx->xout->tags);
384         if (!port) {
385             /* No slaves enabled, so drop packet. */
386             return;
387         }
388     }
389
390     old_tci = *flow_tci;
391     tci = htons(vid);
392     if (tci || out_bundle->use_priority_tags) {
393         tci |= *flow_tci & htons(VLAN_PCP_MASK);
394         if (tci) {
395             tci |= htons(VLAN_CFI);
396         }
397     }
398     *flow_tci = tci;
399
400     compose_output_action(ctx, port->up.ofp_port);
401     *flow_tci = old_tci;
402 }
403
404 /* A VM broadcasts a gratuitous ARP to indicate that it has resumed after
405  * migration.  Older Citrix-patched Linux DomU used gratuitous ARP replies to
406  * indicate this; newer upstream kernels use gratuitous ARP requests. */
407 static bool
408 is_gratuitous_arp(const struct flow *flow, struct flow_wildcards *wc)
409 {
410     if (flow->dl_type != htons(ETH_TYPE_ARP)) {
411         return false;
412     }
413
414     memset(&wc->masks.dl_dst, 0xff, sizeof wc->masks.dl_dst);
415     if (!eth_addr_is_broadcast(flow->dl_dst)) {
416         return false;
417     }
418
419     memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
420     if (flow->nw_proto == ARP_OP_REPLY) {
421         return true;
422     } else if (flow->nw_proto == ARP_OP_REQUEST) {
423         memset(&wc->masks.nw_src, 0xff, sizeof wc->masks.nw_src);
424         memset(&wc->masks.nw_dst, 0xff, sizeof wc->masks.nw_dst);
425
426         return flow->nw_src == flow->nw_dst;
427     } else {
428         return false;
429     }
430 }
431
432 static void
433 update_learning_table(struct ofproto_dpif *ofproto,
434                       const struct flow *flow, struct flow_wildcards *wc,
435                       int vlan, struct ofbundle *in_bundle)
436 {
437     struct mac_entry *mac;
438
439     /* Don't learn the OFPP_NONE port. */
440     if (in_bundle == &ofpp_none_bundle) {
441         return;
442     }
443
444     if (!mac_learning_may_learn(ofproto->ml, flow->dl_src, vlan)) {
445         return;
446     }
447
448     mac = mac_learning_insert(ofproto->ml, flow->dl_src, vlan);
449     if (is_gratuitous_arp(flow, wc)) {
450         /* We don't want to learn from gratuitous ARP packets that are
451          * reflected back over bond slaves so we lock the learning table. */
452         if (!in_bundle->bond) {
453             mac_entry_set_grat_arp_lock(mac);
454         } else if (mac_entry_is_grat_arp_locked(mac)) {
455             return;
456         }
457     }
458
459     if (mac_entry_is_new(mac) || mac->port.p != in_bundle) {
460         /* The log messages here could actually be useful in debugging,
461          * so keep the rate limit relatively high. */
462         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(30, 300);
463         VLOG_DBG_RL(&rl, "bridge %s: learned that "ETH_ADDR_FMT" is "
464                     "on port %s in VLAN %d",
465                     ofproto->up.name, ETH_ADDR_ARGS(flow->dl_src),
466                     in_bundle->name, vlan);
467
468         mac->port.p = in_bundle;
469         mac_learning_changed(ofproto->ml, mac);
470     }
471 }
472
473 /* Determines whether packets in 'flow' within 'ofproto' should be forwarded or
474  * dropped.  Returns true if they may be forwarded, false if they should be
475  * dropped.
476  *
477  * 'in_port' must be the ofport_dpif that corresponds to flow->in_port.
478  * 'in_port' must be part of a bundle (e.g. in_port->bundle must be nonnull).
479  *
480  * 'vlan' must be the VLAN that corresponds to flow->vlan_tci on 'in_port', as
481  * returned by input_vid_to_vlan().  It must be a valid VLAN for 'in_port', as
482  * checked by input_vid_is_valid().
483  *
484  * May also add tags to '*tags', although the current implementation only does
485  * so in one special case.
486  */
487 static bool
488 is_admissible(struct xlate_ctx *ctx, struct ofport_dpif *in_port,
489               uint16_t vlan)
490 {
491     struct ofproto_dpif *ofproto = ctx->ofproto;
492     struct flow *flow = &ctx->xin->flow;
493     struct ofbundle *in_bundle = in_port->bundle;
494
495     /* Drop frames for reserved multicast addresses
496      * only if forward_bpdu option is absent. */
497     if (!ofproto->up.forward_bpdu && eth_addr_is_reserved(flow->dl_dst)) {
498         xlate_report(ctx, "packet has reserved destination MAC, dropping");
499         return false;
500     }
501
502     if (in_bundle->bond) {
503         struct mac_entry *mac;
504
505         switch (bond_check_admissibility(in_bundle->bond, in_port,
506                                          flow->dl_dst, &ctx->xout->tags)) {
507         case BV_ACCEPT:
508             break;
509
510         case BV_DROP:
511             xlate_report(ctx, "bonding refused admissibility, dropping");
512             return false;
513
514         case BV_DROP_IF_MOVED:
515             mac = mac_learning_lookup(ofproto->ml, flow->dl_src, vlan, NULL);
516             if (mac && mac->port.p != in_bundle &&
517                 (!is_gratuitous_arp(flow, &ctx->xout->wc)
518                  || mac_entry_is_grat_arp_locked(mac))) {
519                 xlate_report(ctx, "SLB bond thinks this packet looped back, "
520                             "dropping");
521                 return false;
522             }
523             break;
524         }
525     }
526
527     return true;
528 }
529
530 static void
531 xlate_normal(struct xlate_ctx *ctx)
532 {
533     struct flow_wildcards *wc = &ctx->xout->wc;
534     struct flow *flow = &ctx->xin->flow;
535     struct ofport_dpif *in_port;
536     struct ofbundle *in_bundle;
537     struct mac_entry *mac;
538     uint16_t vlan;
539     uint16_t vid;
540
541     ctx->xout->has_normal = true;
542
543     /* Check the dl_type, since we may check for gratuituous ARP. */
544     memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
545
546     memset(&wc->masks.dl_src, 0xff, sizeof wc->masks.dl_src);
547     memset(&wc->masks.dl_dst, 0xff, sizeof wc->masks.dl_dst);
548     memset(&wc->masks.vlan_tci, 0xff, sizeof wc->masks.vlan_tci);
549
550     in_bundle = lookup_input_bundle(ctx->ofproto, flow->in_port,
551                                     ctx->xin->packet != NULL, &in_port);
552     if (!in_bundle) {
553         xlate_report(ctx, "no input bundle, dropping");
554         return;
555     }
556
557     /* Drop malformed frames. */
558     if (flow->dl_type == htons(ETH_TYPE_VLAN) &&
559         !(flow->vlan_tci & htons(VLAN_CFI))) {
560         if (ctx->xin->packet != NULL) {
561             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
562             VLOG_WARN_RL(&rl, "bridge %s: dropping packet with partial "
563                          "VLAN tag received on port %s",
564                          ctx->ofproto->up.name, in_bundle->name);
565         }
566         xlate_report(ctx, "partial VLAN tag, dropping");
567         return;
568     }
569
570     /* Drop frames on bundles reserved for mirroring. */
571     if (in_bundle->mirror_out) {
572         if (ctx->xin->packet != NULL) {
573             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
574             VLOG_WARN_RL(&rl, "bridge %s: dropping packet received on port "
575                          "%s, which is reserved exclusively for mirroring",
576                          ctx->ofproto->up.name, in_bundle->name);
577         }
578         xlate_report(ctx, "input port is mirror output port, dropping");
579         return;
580     }
581
582     /* Check VLAN. */
583     vid = vlan_tci_to_vid(flow->vlan_tci);
584     if (!input_vid_is_valid(vid, in_bundle, ctx->xin->packet != NULL)) {
585         xlate_report(ctx, "disallowed VLAN VID for this input port, dropping");
586         return;
587     }
588     vlan = input_vid_to_vlan(in_bundle, vid);
589
590     /* Check other admissibility requirements. */
591     if (in_port && !is_admissible(ctx, in_port, vlan)) {
592         return;
593     }
594
595     /* Learn source MAC. */
596     if (ctx->xin->may_learn) {
597         update_learning_table(ctx->ofproto, flow, wc, vlan, in_bundle);
598     }
599
600     /* Determine output bundle. */
601     mac = mac_learning_lookup(ctx->ofproto->ml, flow->dl_dst, vlan,
602                               &ctx->xout->tags);
603     if (mac) {
604         if (mac->port.p != in_bundle) {
605             xlate_report(ctx, "forwarding to learned port");
606             output_normal(ctx, mac->port.p, vlan);
607         } else {
608             xlate_report(ctx, "learned port is input port, dropping");
609         }
610     } else {
611         struct ofbundle *bundle;
612
613         xlate_report(ctx, "no learned MAC for destination, flooding");
614         HMAP_FOR_EACH (bundle, hmap_node, &ctx->ofproto->bundles) {
615             if (bundle != in_bundle
616                 && ofbundle_includes_vlan(bundle, vlan)
617                 && bundle->floodable
618                 && !bundle->mirror_out) {
619                 output_normal(ctx, bundle, vlan);
620             }
621         }
622         ctx->xout->nf_output_iface = NF_OUT_FLOOD;
623     }
624 }
625
626 /* Compose SAMPLE action for sFlow or IPFIX.  The given probability is
627  * the number of packets out of UINT32_MAX to sample.  The given
628  * cookie is passed back in the callback for each sampled packet.
629  */
630 static size_t
631 compose_sample_action(const struct ofproto_dpif *ofproto,
632                       struct ofpbuf *odp_actions,
633                       const struct flow *flow,
634                       const uint32_t probability,
635                       const union user_action_cookie *cookie,
636                       const size_t cookie_size)
637 {
638     size_t sample_offset, actions_offset;
639     int cookie_offset;
640
641     sample_offset = nl_msg_start_nested(odp_actions, OVS_ACTION_ATTR_SAMPLE);
642
643     nl_msg_put_u32(odp_actions, OVS_SAMPLE_ATTR_PROBABILITY, probability);
644
645     actions_offset = nl_msg_start_nested(odp_actions, OVS_SAMPLE_ATTR_ACTIONS);
646     cookie_offset = put_userspace_action(ofproto, odp_actions, flow, cookie,
647                                          cookie_size);
648
649     nl_msg_end_nested(odp_actions, actions_offset);
650     nl_msg_end_nested(odp_actions, sample_offset);
651     return cookie_offset;
652 }
653
654 static void
655 compose_sflow_cookie(const struct ofproto_dpif *ofproto,
656                      ovs_be16 vlan_tci, uint32_t odp_port,
657                      unsigned int n_outputs, union user_action_cookie *cookie)
658 {
659     int ifindex;
660
661     cookie->type = USER_ACTION_COOKIE_SFLOW;
662     cookie->sflow.vlan_tci = vlan_tci;
663
664     /* See http://www.sflow.org/sflow_version_5.txt (search for "Input/output
665      * port information") for the interpretation of cookie->output. */
666     switch (n_outputs) {
667     case 0:
668         /* 0x40000000 | 256 means "packet dropped for unknown reason". */
669         cookie->sflow.output = 0x40000000 | 256;
670         break;
671
672     case 1:
673         ifindex = dpif_sflow_odp_port_to_ifindex(ofproto->sflow, odp_port);
674         if (ifindex) {
675             cookie->sflow.output = ifindex;
676             break;
677         }
678         /* Fall through. */
679     default:
680         /* 0x80000000 means "multiple output ports. */
681         cookie->sflow.output = 0x80000000 | n_outputs;
682         break;
683     }
684 }
685
686 /* Compose SAMPLE action for sFlow bridge sampling. */
687 static size_t
688 compose_sflow_action(const struct ofproto_dpif *ofproto,
689                      struct ofpbuf *odp_actions,
690                      const struct flow *flow,
691                      uint32_t odp_port)
692 {
693     uint32_t probability;
694     union user_action_cookie cookie;
695
696     if (!ofproto->sflow || flow->in_port == OFPP_NONE) {
697         return 0;
698     }
699
700     probability = dpif_sflow_get_probability(ofproto->sflow);
701     compose_sflow_cookie(ofproto, htons(0), odp_port,
702                          odp_port == OVSP_NONE ? 0 : 1, &cookie);
703
704     return compose_sample_action(ofproto, odp_actions, flow,  probability,
705                                  &cookie, sizeof cookie.sflow);
706 }
707
708 static void
709 compose_flow_sample_cookie(uint16_t probability, uint32_t collector_set_id,
710                            uint32_t obs_domain_id, uint32_t obs_point_id,
711                            union user_action_cookie *cookie)
712 {
713     cookie->type = USER_ACTION_COOKIE_FLOW_SAMPLE;
714     cookie->flow_sample.probability = probability;
715     cookie->flow_sample.collector_set_id = collector_set_id;
716     cookie->flow_sample.obs_domain_id = obs_domain_id;
717     cookie->flow_sample.obs_point_id = obs_point_id;
718 }
719
720 static void
721 compose_ipfix_cookie(union user_action_cookie *cookie)
722 {
723     cookie->type = USER_ACTION_COOKIE_IPFIX;
724 }
725
726 /* Compose SAMPLE action for IPFIX bridge sampling. */
727 static void
728 compose_ipfix_action(const struct ofproto_dpif *ofproto,
729                      struct ofpbuf *odp_actions,
730                      const struct flow *flow)
731 {
732     uint32_t probability;
733     union user_action_cookie cookie;
734
735     if (!ofproto->ipfix || flow->in_port == OFPP_NONE) {
736         return;
737     }
738
739     probability = dpif_ipfix_get_bridge_exporter_probability(ofproto->ipfix);
740     compose_ipfix_cookie(&cookie);
741
742     compose_sample_action(ofproto, odp_actions, flow,  probability,
743                           &cookie, sizeof cookie.ipfix);
744 }
745
746 /* SAMPLE action for sFlow must be first action in any given list of
747  * actions.  At this point we do not have all information required to
748  * build it. So try to build sample action as complete as possible. */
749 static void
750 add_sflow_action(struct xlate_ctx *ctx)
751 {
752     ctx->user_cookie_offset = compose_sflow_action(ctx->ofproto,
753                                                    &ctx->xout->odp_actions,
754                                                    &ctx->xin->flow, OVSP_NONE);
755     ctx->sflow_odp_port = 0;
756     ctx->sflow_n_outputs = 0;
757 }
758
759 /* SAMPLE action for IPFIX must be 1st or 2nd action in any given list
760  * of actions, eventually after the SAMPLE action for sFlow. */
761 static void
762 add_ipfix_action(struct xlate_ctx *ctx)
763 {
764     compose_ipfix_action(ctx->ofproto, &ctx->xout->odp_actions,
765                          &ctx->xin->flow);
766 }
767
768 /* Fix SAMPLE action according to data collected while composing ODP actions.
769  * We need to fix SAMPLE actions OVS_SAMPLE_ATTR_ACTIONS attribute, i.e. nested
770  * USERSPACE action's user-cookie which is required for sflow. */
771 static void
772 fix_sflow_action(struct xlate_ctx *ctx)
773 {
774     const struct flow *base = &ctx->base_flow;
775     union user_action_cookie *cookie;
776
777     if (!ctx->user_cookie_offset) {
778         return;
779     }
780
781     cookie = ofpbuf_at(&ctx->xout->odp_actions, ctx->user_cookie_offset,
782                        sizeof cookie->sflow);
783     ovs_assert(cookie->type == USER_ACTION_COOKIE_SFLOW);
784
785     compose_sflow_cookie(ctx->ofproto, base->vlan_tci,
786                          ctx->sflow_odp_port, ctx->sflow_n_outputs, cookie);
787 }
788
789 static void
790 compose_output_action__(struct xlate_ctx *ctx, uint16_t ofp_port,
791                         bool check_stp)
792 {
793     const struct ofport_dpif *ofport = get_ofp_port(ctx->ofproto, ofp_port);
794     struct flow *flow = &ctx->xin->flow;
795     ovs_be16 flow_vlan_tci;
796     uint32_t flow_skb_mark;
797     uint8_t flow_nw_tos;
798     uint32_t out_port, odp_port;
799     uint8_t dscp;
800
801     /* If 'struct flow' gets additional metadata, we'll need to zero it out
802      * before traversing a patch port. */
803     BUILD_ASSERT_DECL(FLOW_WC_SEQ == 20);
804
805     if (!ofport) {
806         xlate_report(ctx, "Nonexistent output port");
807         return;
808     } else if (ofport->up.pp.config & OFPUTIL_PC_NO_FWD) {
809         xlate_report(ctx, "OFPPC_NO_FWD set, skipping output");
810         return;
811     } else if (check_stp && !stp_forward_in_state(ofport->stp_state)) {
812         xlate_report(ctx, "STP not in forwarding state, skipping output");
813         return;
814     }
815
816     if (netdev_vport_is_patch(ofport->up.netdev)) {
817         struct ofport_dpif *peer = ofport_get_peer(ofport);
818         struct flow old_flow = ctx->xin->flow;
819         enum slow_path_reason special;
820         struct ofport_dpif *in_port;
821
822         if (!peer) {
823             xlate_report(ctx, "Nonexistent patch port peer");
824             return;
825         }
826
827         ctx->ofproto = ofproto_dpif_cast(peer->up.ofproto);
828         flow->in_port = peer->up.ofp_port;
829         flow->metadata = htonll(0);
830         memset(&flow->tunnel, 0, sizeof flow->tunnel);
831         memset(flow->regs, 0, sizeof flow->regs);
832
833         in_port = get_ofp_port(ctx->ofproto, flow->in_port);
834         special = process_special(ctx->ofproto, &ctx->xin->flow, in_port,
835                                   ctx->xin->packet);
836         if (special) {
837             ctx->xout->slow = special;
838         } else if (!in_port || may_receive(in_port, ctx)) {
839             if (!in_port || stp_forward_in_state(in_port->stp_state)) {
840                 xlate_table_action(ctx, flow->in_port, 0, true);
841             } else {
842                 /* Forwarding is disabled by STP.  Let OFPP_NORMAL and the
843                  * learning action look at the packet, then drop it. */
844                 struct flow old_base_flow = ctx->base_flow;
845                 size_t old_size = ctx->xout->odp_actions.size;
846                 xlate_table_action(ctx, flow->in_port, 0, true);
847                 ctx->base_flow = old_base_flow;
848                 ctx->xout->odp_actions.size = old_size;
849             }
850         }
851
852         ctx->xin->flow = old_flow;
853         ctx->ofproto = ofproto_dpif_cast(ofport->up.ofproto);
854
855         if (ctx->xin->resubmit_stats) {
856             netdev_vport_inc_tx(ofport->up.netdev, ctx->xin->resubmit_stats);
857             netdev_vport_inc_rx(peer->up.netdev, ctx->xin->resubmit_stats);
858         }
859
860         return;
861     }
862
863     flow_vlan_tci = flow->vlan_tci;
864     flow_skb_mark = flow->skb_mark;
865     flow_nw_tos = flow->nw_tos;
866
867     if (ofproto_dpif_dscp_from_priority(ofport, flow->skb_priority, &dscp)) {
868         flow->nw_tos &= ~IP_DSCP_MASK;
869         flow->nw_tos |= dscp;
870     }
871
872     if (ofport->tnl_port) {
873          /* Save tunnel metadata so that changes made due to
874           * the Logical (tunnel) Port are not visible for any further
875           * matches, while explicit set actions on tunnel metadata are.
876           */
877         struct flow_tnl flow_tnl = flow->tunnel;
878         odp_port = tnl_port_send(ofport->tnl_port, flow);
879         if (odp_port == OVSP_NONE) {
880             xlate_report(ctx, "Tunneling decided against output");
881             goto out; /* restore flow_nw_tos */
882         }
883         if (flow->tunnel.ip_dst == ctx->orig_tunnel_ip_dst) {
884             xlate_report(ctx, "Not tunneling to our own address");
885             goto out; /* restore flow_nw_tos */
886         }
887         if (ctx->xin->resubmit_stats) {
888             netdev_vport_inc_tx(ofport->up.netdev, ctx->xin->resubmit_stats);
889         }
890         out_port = odp_port;
891         commit_odp_tunnel_action(flow, &ctx->base_flow,
892                                  &ctx->xout->odp_actions);
893         flow->tunnel = flow_tnl; /* Restore tunnel metadata */
894     } else {
895         uint16_t vlandev_port;
896         odp_port = ofport->odp_port;
897         vlandev_port = vsp_realdev_to_vlandev(ctx->ofproto, ofp_port,
898                                               flow->vlan_tci);
899         if (vlandev_port == ofp_port) {
900             out_port = odp_port;
901         } else {
902             out_port = ofp_port_to_odp_port(ctx->ofproto, vlandev_port);
903             flow->vlan_tci = htons(0);
904         }
905         flow->skb_mark &= ~IPSEC_MARK;
906     }
907     commit_odp_actions(flow, &ctx->base_flow, &ctx->xout->odp_actions);
908     nl_msg_put_u32(&ctx->xout->odp_actions, OVS_ACTION_ATTR_OUTPUT, out_port);
909
910     ctx->sflow_odp_port = odp_port;
911     ctx->sflow_n_outputs++;
912     ctx->xout->nf_output_iface = ofp_port;
913
914     /* Restore flow */
915     flow->vlan_tci = flow_vlan_tci;
916     flow->skb_mark = flow_skb_mark;
917  out:
918     flow->nw_tos = flow_nw_tos;
919 }
920
921 static void
922 compose_output_action(struct xlate_ctx *ctx, uint16_t ofp_port)
923 {
924     compose_output_action__(ctx, ofp_port, true);
925 }
926
927 static void
928 tag_the_flow(struct xlate_ctx *ctx, struct rule_dpif *rule)
929 {
930     struct ofproto_dpif *ofproto = ctx->ofproto;
931     uint8_t table_id = ctx->table_id;
932
933     if (table_id > 0 && table_id < N_TABLES) {
934         struct table_dpif *table = &ofproto->tables[table_id];
935         if (table->other_table) {
936             ctx->xout->tags |= (rule && rule->tag
937                                 ? rule->tag
938                                 : rule_calculate_tag(&ctx->xin->flow,
939                                                      &table->other_table->mask,
940                                                      table->basis));
941         }
942     }
943 }
944
945 /* Common rule processing in one place to avoid duplicating code. */
946 static struct rule_dpif *
947 ctx_rule_hooks(struct xlate_ctx *ctx, struct rule_dpif *rule,
948                bool may_packet_in)
949 {
950     if (ctx->xin->resubmit_hook) {
951         ctx->xin->resubmit_hook(ctx->xin, rule, ctx->recurse);
952     }
953     if (rule == NULL && may_packet_in) {
954         /* XXX
955          * check if table configuration flags
956          * OFPTC_TABLE_MISS_CONTROLLER, default.
957          * OFPTC_TABLE_MISS_CONTINUE,
958          * OFPTC_TABLE_MISS_DROP
959          * When OF1.0, OFPTC_TABLE_MISS_CONTINUE is used. What to do?
960          */
961         rule = rule_dpif_miss_rule(ctx->ofproto, &ctx->xin->flow);
962     }
963     if (rule && ctx->xin->resubmit_stats) {
964         rule_credit_stats(rule, ctx->xin->resubmit_stats);
965     }
966     return rule;
967 }
968
969 static void
970 xlate_table_action(struct xlate_ctx *ctx,
971                    uint16_t in_port, uint8_t table_id, bool may_packet_in)
972 {
973     if (ctx->recurse < MAX_RESUBMIT_RECURSION) {
974         struct rule_dpif *rule;
975         uint16_t old_in_port = ctx->xin->flow.in_port;
976         uint8_t old_table_id = ctx->table_id;
977
978         ctx->table_id = table_id;
979
980         /* Look up a flow with 'in_port' as the input port. */
981         ctx->xin->flow.in_port = in_port;
982         rule = rule_dpif_lookup_in_table(ctx->ofproto, &ctx->xin->flow,
983                                          &ctx->xout->wc, table_id);
984
985         tag_the_flow(ctx, rule);
986
987         /* Restore the original input port.  Otherwise OFPP_NORMAL and
988          * OFPP_IN_PORT will have surprising behavior. */
989         ctx->xin->flow.in_port = old_in_port;
990
991         rule = ctx_rule_hooks(ctx, rule, may_packet_in);
992
993         if (rule) {
994             struct rule_dpif *old_rule = ctx->rule;
995
996             ctx->recurse++;
997             ctx->rule = rule;
998             do_xlate_actions(rule->up.ofpacts, rule->up.ofpacts_len, ctx);
999             ctx->rule = old_rule;
1000             ctx->recurse--;
1001         }
1002
1003         ctx->table_id = old_table_id;
1004     } else {
1005         static struct vlog_rate_limit recurse_rl = VLOG_RATE_LIMIT_INIT(1, 1);
1006
1007         VLOG_ERR_RL(&recurse_rl, "resubmit actions recursed over %d times",
1008                     MAX_RESUBMIT_RECURSION);
1009         ctx->max_resubmit_trigger = true;
1010     }
1011 }
1012
1013 static void
1014 xlate_ofpact_resubmit(struct xlate_ctx *ctx,
1015                       const struct ofpact_resubmit *resubmit)
1016 {
1017     uint16_t in_port;
1018     uint8_t table_id;
1019
1020     in_port = resubmit->in_port;
1021     if (in_port == OFPP_IN_PORT) {
1022         in_port = ctx->xin->flow.in_port;
1023     }
1024
1025     table_id = resubmit->table_id;
1026     if (table_id == 255) {
1027         table_id = ctx->table_id;
1028     }
1029
1030     xlate_table_action(ctx, in_port, table_id, false);
1031 }
1032
1033 static void
1034 flood_packets(struct xlate_ctx *ctx, bool all)
1035 {
1036     struct ofport_dpif *ofport;
1037
1038     HMAP_FOR_EACH (ofport, up.hmap_node, &ctx->ofproto->up.ports) {
1039         uint16_t ofp_port = ofport->up.ofp_port;
1040
1041         if (ofp_port == ctx->xin->flow.in_port) {
1042             continue;
1043         }
1044
1045         if (all) {
1046             compose_output_action__(ctx, ofp_port, false);
1047         } else if (!(ofport->up.pp.config & OFPUTIL_PC_NO_FLOOD)) {
1048             compose_output_action(ctx, ofp_port);
1049         }
1050     }
1051
1052     ctx->xout->nf_output_iface = NF_OUT_FLOOD;
1053 }
1054
1055 static void
1056 execute_controller_action(struct xlate_ctx *ctx, int len,
1057                           enum ofp_packet_in_reason reason,
1058                           uint16_t controller_id)
1059 {
1060     struct ofputil_packet_in pin;
1061     struct ofpbuf *packet;
1062     struct flow key;
1063
1064     ovs_assert(!ctx->xout->slow || ctx->xout->slow == SLOW_CONTROLLER);
1065     ctx->xout->slow = SLOW_CONTROLLER;
1066     if (!ctx->xin->packet) {
1067         return;
1068     }
1069
1070     packet = ofpbuf_clone(ctx->xin->packet);
1071
1072     key.skb_priority = 0;
1073     key.skb_mark = 0;
1074     memset(&key.tunnel, 0, sizeof key.tunnel);
1075
1076     commit_odp_actions(&ctx->xin->flow, &ctx->base_flow,
1077                        &ctx->xout->odp_actions);
1078
1079     odp_execute_actions(NULL, packet, &key, ctx->xout->odp_actions.data,
1080                         ctx->xout->odp_actions.size, NULL, NULL);
1081
1082     pin.packet = packet->data;
1083     pin.packet_len = packet->size;
1084     pin.reason = reason;
1085     pin.controller_id = controller_id;
1086     pin.table_id = ctx->table_id;
1087     pin.cookie = ctx->rule ? ctx->rule->up.flow_cookie : 0;
1088
1089     pin.send_len = len;
1090     flow_get_metadata(&ctx->xin->flow, &pin.fmd);
1091
1092     connmgr_send_packet_in(ctx->ofproto->up.connmgr, &pin);
1093     ofpbuf_delete(packet);
1094 }
1095
1096 static void
1097 compose_mpls_push_action(struct xlate_ctx *ctx, ovs_be16 eth_type)
1098 {
1099     struct flow_wildcards *wc = &ctx->xout->wc;
1100     struct flow *flow = &ctx->xin->flow;
1101
1102     ovs_assert(eth_type_mpls(eth_type));
1103
1104     memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
1105     memset(&wc->masks.mpls_lse, 0xff, sizeof wc->masks.mpls_lse);
1106     memset(&wc->masks.mpls_depth, 0xff, sizeof wc->masks.mpls_depth);
1107
1108     if (flow->mpls_depth) {
1109         flow->mpls_lse &= ~htonl(MPLS_BOS_MASK);
1110         flow->mpls_depth++;
1111     } else {
1112         ovs_be32 label;
1113         uint8_t tc, ttl;
1114
1115         if (flow->dl_type == htons(ETH_TYPE_IPV6)) {
1116             label = htonl(0x2); /* IPV6 Explicit Null. */
1117         } else {
1118             label = htonl(0x0); /* IPV4 Explicit Null. */
1119         }
1120         tc = (flow->nw_tos & IP_DSCP_MASK) >> 2;
1121         ttl = flow->nw_ttl ? flow->nw_ttl : 0x40;
1122         flow->mpls_lse = set_mpls_lse_values(ttl, tc, 1, label);
1123         flow->mpls_depth = 1;
1124     }
1125     flow->dl_type = eth_type;
1126 }
1127
1128 static void
1129 compose_mpls_pop_action(struct xlate_ctx *ctx, ovs_be16 eth_type)
1130 {
1131     struct flow_wildcards *wc = &ctx->xout->wc;
1132     struct flow *flow = &ctx->xin->flow;
1133
1134     ovs_assert(eth_type_mpls(ctx->xin->flow.dl_type));
1135     ovs_assert(!eth_type_mpls(eth_type));
1136
1137     memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
1138     memset(&wc->masks.mpls_lse, 0xff, sizeof wc->masks.mpls_lse);
1139     memset(&wc->masks.mpls_depth, 0xff, sizeof wc->masks.mpls_depth);
1140
1141     if (flow->mpls_depth) {
1142         flow->mpls_depth--;
1143         flow->mpls_lse = htonl(0);
1144         if (!flow->mpls_depth) {
1145             flow->dl_type = eth_type;
1146         }
1147     }
1148 }
1149
1150 static bool
1151 compose_dec_ttl(struct xlate_ctx *ctx, struct ofpact_cnt_ids *ids)
1152 {
1153     struct flow *flow = &ctx->xin->flow;
1154
1155     if (!is_ip_any(flow)) {
1156         return false;
1157     }
1158
1159     if (flow->nw_ttl > 1) {
1160         flow->nw_ttl--;
1161         return false;
1162     } else {
1163         size_t i;
1164
1165         for (i = 0; i < ids->n_controllers; i++) {
1166             execute_controller_action(ctx, UINT16_MAX, OFPR_INVALID_TTL,
1167                                       ids->cnt_ids[i]);
1168         }
1169
1170         /* Stop processing for current table. */
1171         return true;
1172     }
1173 }
1174
1175 static bool
1176 compose_set_mpls_ttl_action(struct xlate_ctx *ctx, uint8_t ttl)
1177 {
1178     if (!eth_type_mpls(ctx->xin->flow.dl_type)) {
1179         return true;
1180     }
1181
1182     set_mpls_lse_ttl(&ctx->xin->flow.mpls_lse, ttl);
1183     return false;
1184 }
1185
1186 static bool
1187 compose_dec_mpls_ttl_action(struct xlate_ctx *ctx)
1188 {
1189     struct flow *flow = &ctx->xin->flow;
1190     uint8_t ttl = mpls_lse_to_ttl(flow->mpls_lse);
1191
1192     if (!eth_type_mpls(flow->dl_type)) {
1193         return false;
1194     }
1195
1196     if (ttl > 1) {
1197         ttl--;
1198         set_mpls_lse_ttl(&flow->mpls_lse, ttl);
1199         return false;
1200     } else {
1201         execute_controller_action(ctx, UINT16_MAX, OFPR_INVALID_TTL, 0);
1202
1203         /* Stop processing for current table. */
1204         return true;
1205     }
1206 }
1207
1208 static void
1209 xlate_output_action(struct xlate_ctx *ctx,
1210                     uint16_t port, uint16_t max_len, bool may_packet_in)
1211 {
1212     uint16_t prev_nf_output_iface = ctx->xout->nf_output_iface;
1213
1214     ctx->xout->nf_output_iface = NF_OUT_DROP;
1215
1216     switch (port) {
1217     case OFPP_IN_PORT:
1218         compose_output_action(ctx, ctx->xin->flow.in_port);
1219         break;
1220     case OFPP_TABLE:
1221         xlate_table_action(ctx, ctx->xin->flow.in_port, 0, may_packet_in);
1222         break;
1223     case OFPP_NORMAL:
1224         xlate_normal(ctx);
1225         break;
1226     case OFPP_FLOOD:
1227         flood_packets(ctx,  false);
1228         break;
1229     case OFPP_ALL:
1230         flood_packets(ctx, true);
1231         break;
1232     case OFPP_CONTROLLER:
1233         execute_controller_action(ctx, max_len, OFPR_ACTION, 0);
1234         break;
1235     case OFPP_NONE:
1236         break;
1237     case OFPP_LOCAL:
1238     default:
1239         if (port != ctx->xin->flow.in_port) {
1240             compose_output_action(ctx, port);
1241         } else {
1242             xlate_report(ctx, "skipping output to input port");
1243         }
1244         break;
1245     }
1246
1247     if (prev_nf_output_iface == NF_OUT_FLOOD) {
1248         ctx->xout->nf_output_iface = NF_OUT_FLOOD;
1249     } else if (ctx->xout->nf_output_iface == NF_OUT_DROP) {
1250         ctx->xout->nf_output_iface = prev_nf_output_iface;
1251     } else if (prev_nf_output_iface != NF_OUT_DROP &&
1252                ctx->xout->nf_output_iface != NF_OUT_FLOOD) {
1253         ctx->xout->nf_output_iface = NF_OUT_MULTI;
1254     }
1255 }
1256
1257 static void
1258 xlate_output_reg_action(struct xlate_ctx *ctx,
1259                         const struct ofpact_output_reg *or)
1260 {
1261     uint64_t port = mf_get_subfield(&or->src, &ctx->xin->flow);
1262     if (port <= UINT16_MAX) {
1263         union mf_subvalue value;
1264
1265         memset(&value, 0xff, sizeof value);
1266         mf_write_subfield_flow(&or->src, &value, &ctx->xout->wc.masks);
1267         xlate_output_action(ctx, port, or->max_len, false);
1268     }
1269 }
1270
1271 static void
1272 xlate_enqueue_action(struct xlate_ctx *ctx,
1273                      const struct ofpact_enqueue *enqueue)
1274 {
1275     uint16_t ofp_port = enqueue->port;
1276     uint32_t queue_id = enqueue->queue;
1277     uint32_t flow_priority, priority;
1278     int error;
1279
1280     /* Translate queue to priority. */
1281     error = ofproto_dpif_queue_to_priority(ctx->ofproto, queue_id, &priority);
1282     if (error) {
1283         /* Fall back to ordinary output action. */
1284         xlate_output_action(ctx, enqueue->port, 0, false);
1285         return;
1286     }
1287
1288     /* Check output port. */
1289     if (ofp_port == OFPP_IN_PORT) {
1290         ofp_port = ctx->xin->flow.in_port;
1291     } else if (ofp_port == ctx->xin->flow.in_port) {
1292         return;
1293     }
1294
1295     /* Add datapath actions. */
1296     flow_priority = ctx->xin->flow.skb_priority;
1297     ctx->xin->flow.skb_priority = priority;
1298     compose_output_action(ctx, ofp_port);
1299     ctx->xin->flow.skb_priority = flow_priority;
1300
1301     /* Update NetFlow output port. */
1302     if (ctx->xout->nf_output_iface == NF_OUT_DROP) {
1303         ctx->xout->nf_output_iface = ofp_port;
1304     } else if (ctx->xout->nf_output_iface != NF_OUT_FLOOD) {
1305         ctx->xout->nf_output_iface = NF_OUT_MULTI;
1306     }
1307 }
1308
1309 static void
1310 xlate_set_queue_action(struct xlate_ctx *ctx, uint32_t queue_id)
1311 {
1312     uint32_t skb_priority;
1313
1314     if (!ofproto_dpif_queue_to_priority(ctx->ofproto, queue_id,
1315                                         &skb_priority)) {
1316         ctx->xin->flow.skb_priority = skb_priority;
1317     } else {
1318         /* Couldn't translate queue to a priority.  Nothing to do.  A warning
1319          * has already been logged. */
1320     }
1321 }
1322
1323 static bool
1324 slave_enabled_cb(uint16_t ofp_port, void *ofproto_)
1325 {
1326     struct ofproto_dpif *ofproto = ofproto_;
1327     struct ofport_dpif *port;
1328
1329     switch (ofp_port) {
1330     case OFPP_IN_PORT:
1331     case OFPP_TABLE:
1332     case OFPP_NORMAL:
1333     case OFPP_FLOOD:
1334     case OFPP_ALL:
1335     case OFPP_NONE:
1336         return true;
1337     case OFPP_CONTROLLER: /* Not supported by the bundle action. */
1338         return false;
1339     default:
1340         port = get_ofp_port(ofproto, ofp_port);
1341         return port ? port->may_enable : false;
1342     }
1343 }
1344
1345 static void
1346 xlate_bundle_action(struct xlate_ctx *ctx,
1347                     const struct ofpact_bundle *bundle)
1348 {
1349     uint16_t port;
1350
1351     port = bundle_execute(bundle, &ctx->xin->flow, &ctx->xout->wc,
1352                           slave_enabled_cb, ctx->ofproto);
1353     if (bundle->dst.field) {
1354         nxm_reg_load(&bundle->dst, port, &ctx->xin->flow);
1355     } else {
1356         xlate_output_action(ctx, port, 0, false);
1357     }
1358 }
1359
1360 static void
1361 xlate_learn_action(struct xlate_ctx *ctx,
1362                    const struct ofpact_learn *learn)
1363 {
1364     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 1);
1365     struct ofputil_flow_mod fm;
1366     uint64_t ofpacts_stub[1024 / 8];
1367     struct ofpbuf ofpacts;
1368     int error;
1369
1370     ctx->xout->has_learn = true;
1371
1372     learn_mask(learn, &ctx->xout->wc);
1373
1374     if (!ctx->xin->may_learn) {
1375         return;
1376     }
1377
1378     ofpbuf_use_stack(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
1379     learn_execute(learn, &ctx->xin->flow, &fm, &ofpacts);
1380
1381     error = ofproto_flow_mod(&ctx->ofproto->up, &fm);
1382     if (error && !VLOG_DROP_WARN(&rl)) {
1383         VLOG_WARN("learning action failed to modify flow table (%s)",
1384                   ofperr_get_name(error));
1385     }
1386
1387     ofpbuf_uninit(&ofpacts);
1388 }
1389
1390 /* Reduces '*timeout' to no more than 'max'.  A value of zero in either case
1391  * means "infinite". */
1392 static void
1393 reduce_timeout(uint16_t max, uint16_t *timeout)
1394 {
1395     if (max && (!*timeout || *timeout > max)) {
1396         *timeout = max;
1397     }
1398 }
1399
1400 static void
1401 xlate_fin_timeout(struct xlate_ctx *ctx,
1402                   const struct ofpact_fin_timeout *oft)
1403 {
1404     if (ctx->xin->tcp_flags & (TCP_FIN | TCP_RST) && ctx->rule) {
1405         struct rule_dpif *rule = ctx->rule;
1406
1407         reduce_timeout(oft->fin_idle_timeout, &rule->up.idle_timeout);
1408         reduce_timeout(oft->fin_hard_timeout, &rule->up.hard_timeout);
1409     }
1410 }
1411
1412 static void
1413 xlate_sample_action(struct xlate_ctx *ctx,
1414                     const struct ofpact_sample *os)
1415 {
1416   union user_action_cookie cookie;
1417   /* Scale the probability from 16-bit to 32-bit while representing
1418    * the same percentage. */
1419   uint32_t probability = (os->probability << 16) | os->probability;
1420
1421   commit_odp_actions(&ctx->xin->flow, &ctx->base_flow,
1422                      &ctx->xout->odp_actions);
1423
1424   compose_flow_sample_cookie(os->probability, os->collector_set_id,
1425                              os->obs_domain_id, os->obs_point_id, &cookie);
1426   compose_sample_action(ctx->ofproto, &ctx->xout->odp_actions, &ctx->xin->flow,
1427                         probability, &cookie, sizeof cookie.flow_sample);
1428 }
1429
1430 static bool
1431 may_receive(const struct ofport_dpif *port, struct xlate_ctx *ctx)
1432 {
1433     if (port->up.pp.config & (eth_addr_equals(ctx->xin->flow.dl_dst,
1434                                               eth_addr_stp)
1435                               ? OFPUTIL_PC_NO_RECV_STP
1436                               : OFPUTIL_PC_NO_RECV)) {
1437         return false;
1438     }
1439
1440     /* Only drop packets here if both forwarding and learning are
1441      * disabled.  If just learning is enabled, we need to have
1442      * OFPP_NORMAL and the learning action have a look at the packet
1443      * before we can drop it. */
1444     if (!stp_forward_in_state(port->stp_state)
1445             && !stp_learn_in_state(port->stp_state)) {
1446         return false;
1447     }
1448
1449     return true;
1450 }
1451
1452 static bool
1453 tunnel_ecn_ok(struct xlate_ctx *ctx)
1454 {
1455     if (is_ip_any(&ctx->base_flow)
1456         && (ctx->xin->flow.tunnel.ip_tos & IP_ECN_MASK) == IP_ECN_CE) {
1457         if ((ctx->base_flow.nw_tos & IP_ECN_MASK) == IP_ECN_NOT_ECT) {
1458             VLOG_WARN_RL(&rl, "dropping tunnel packet marked ECN CE"
1459                          " but is not ECN capable");
1460             return false;
1461         } else {
1462             /* Set the ECN CE value in the tunneled packet. */
1463             ctx->xin->flow.nw_tos |= IP_ECN_CE;
1464         }
1465     }
1466
1467     return true;
1468 }
1469
1470 static void
1471 do_xlate_actions(const struct ofpact *ofpacts, size_t ofpacts_len,
1472                  struct xlate_ctx *ctx)
1473 {
1474     struct flow_wildcards *wc = &ctx->xout->wc;
1475     struct flow *flow = &ctx->xin->flow;
1476     bool was_evictable = true;
1477     const struct ofpact *a;
1478
1479     if (ctx->rule) {
1480         /* Don't let the rule we're working on get evicted underneath us. */
1481         was_evictable = ctx->rule->up.evictable;
1482         ctx->rule->up.evictable = false;
1483     }
1484
1485  do_xlate_actions_again:
1486     OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
1487         struct ofpact_controller *controller;
1488         const struct ofpact_metadata *metadata;
1489
1490         if (ctx->exit) {
1491             break;
1492         }
1493
1494         switch (a->type) {
1495         case OFPACT_OUTPUT:
1496             xlate_output_action(ctx, ofpact_get_OUTPUT(a)->port,
1497                                 ofpact_get_OUTPUT(a)->max_len, true);
1498             break;
1499
1500         case OFPACT_CONTROLLER:
1501             controller = ofpact_get_CONTROLLER(a);
1502             execute_controller_action(ctx, controller->max_len,
1503                                       controller->reason,
1504                                       controller->controller_id);
1505             break;
1506
1507         case OFPACT_ENQUEUE:
1508             xlate_enqueue_action(ctx, ofpact_get_ENQUEUE(a));
1509             break;
1510
1511         case OFPACT_SET_VLAN_VID:
1512             flow->vlan_tci &= ~htons(VLAN_VID_MASK);
1513             flow->vlan_tci |= (htons(ofpact_get_SET_VLAN_VID(a)->vlan_vid)
1514                                | htons(VLAN_CFI));
1515             break;
1516
1517         case OFPACT_SET_VLAN_PCP:
1518             flow->vlan_tci &= ~htons(VLAN_PCP_MASK);
1519             flow->vlan_tci |=
1520                 htons((ofpact_get_SET_VLAN_PCP(a)->vlan_pcp << VLAN_PCP_SHIFT)
1521                       | VLAN_CFI);
1522             break;
1523
1524         case OFPACT_STRIP_VLAN:
1525             flow->vlan_tci = htons(0);
1526             break;
1527
1528         case OFPACT_PUSH_VLAN:
1529             /* XXX 802.1AD(QinQ) */
1530             flow->vlan_tci = htons(VLAN_CFI);
1531             break;
1532
1533         case OFPACT_SET_ETH_SRC:
1534             memcpy(flow->dl_src, ofpact_get_SET_ETH_SRC(a)->mac, ETH_ADDR_LEN);
1535             break;
1536
1537         case OFPACT_SET_ETH_DST:
1538             memcpy(flow->dl_dst, ofpact_get_SET_ETH_DST(a)->mac, ETH_ADDR_LEN);
1539             break;
1540
1541         case OFPACT_SET_IPV4_SRC:
1542             memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
1543             if (flow->dl_type == htons(ETH_TYPE_IP)) {
1544                 flow->nw_src = ofpact_get_SET_IPV4_SRC(a)->ipv4;
1545             }
1546             break;
1547
1548         case OFPACT_SET_IPV4_DST:
1549             memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
1550             if (flow->dl_type == htons(ETH_TYPE_IP)) {
1551                 flow->nw_dst = ofpact_get_SET_IPV4_DST(a)->ipv4;
1552             }
1553             break;
1554
1555         case OFPACT_SET_IPV4_DSCP:
1556             /* OpenFlow 1.0 only supports IPv4. */
1557             memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
1558             if (flow->dl_type == htons(ETH_TYPE_IP)) {
1559                 flow->nw_tos &= ~IP_DSCP_MASK;
1560                 flow->nw_tos |= ofpact_get_SET_IPV4_DSCP(a)->dscp;
1561             }
1562             break;
1563
1564         case OFPACT_SET_L4_SRC_PORT:
1565             memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
1566             memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
1567             if (is_ip_any(flow)) {
1568                 flow->tp_src = htons(ofpact_get_SET_L4_SRC_PORT(a)->port);
1569             }
1570             break;
1571
1572         case OFPACT_SET_L4_DST_PORT:
1573             memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
1574             memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
1575             if (is_ip_any(flow)) {
1576                 flow->tp_dst = htons(ofpact_get_SET_L4_DST_PORT(a)->port);
1577             }
1578             break;
1579
1580         case OFPACT_RESUBMIT:
1581             xlate_ofpact_resubmit(ctx, ofpact_get_RESUBMIT(a));
1582             break;
1583
1584         case OFPACT_SET_TUNNEL:
1585             flow->tunnel.tun_id = htonll(ofpact_get_SET_TUNNEL(a)->tun_id);
1586             break;
1587
1588         case OFPACT_SET_QUEUE:
1589             xlate_set_queue_action(ctx, ofpact_get_SET_QUEUE(a)->queue_id);
1590             break;
1591
1592         case OFPACT_POP_QUEUE:
1593             memset(&wc->masks.skb_priority, 0xff,
1594                    sizeof wc->masks.skb_priority);
1595
1596             flow->skb_priority = ctx->orig_skb_priority;
1597             break;
1598
1599         case OFPACT_REG_MOVE:
1600             nxm_execute_reg_move(ofpact_get_REG_MOVE(a), flow, wc);
1601             break;
1602
1603         case OFPACT_REG_LOAD:
1604             nxm_execute_reg_load(ofpact_get_REG_LOAD(a), flow);
1605             break;
1606
1607         case OFPACT_STACK_PUSH:
1608             nxm_execute_stack_push(ofpact_get_STACK_PUSH(a), flow, wc,
1609                                    &ctx->stack);
1610             break;
1611
1612         case OFPACT_STACK_POP:
1613             nxm_execute_stack_pop(ofpact_get_STACK_POP(a), flow, &ctx->stack);
1614             break;
1615
1616         case OFPACT_PUSH_MPLS:
1617             compose_mpls_push_action(ctx, ofpact_get_PUSH_MPLS(a)->ethertype);
1618             break;
1619
1620         case OFPACT_POP_MPLS:
1621             compose_mpls_pop_action(ctx, ofpact_get_POP_MPLS(a)->ethertype);
1622             break;
1623
1624         case OFPACT_SET_MPLS_TTL:
1625             if (compose_set_mpls_ttl_action(ctx,
1626                                             ofpact_get_SET_MPLS_TTL(a)->ttl)) {
1627                 goto out;
1628             }
1629             break;
1630
1631         case OFPACT_DEC_MPLS_TTL:
1632             if (compose_dec_mpls_ttl_action(ctx)) {
1633                 goto out;
1634             }
1635             break;
1636
1637         case OFPACT_DEC_TTL:
1638             memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
1639             if (compose_dec_ttl(ctx, ofpact_get_DEC_TTL(a))) {
1640                 goto out;
1641             }
1642             break;
1643
1644         case OFPACT_NOTE:
1645             /* Nothing to do. */
1646             break;
1647
1648         case OFPACT_MULTIPATH:
1649             multipath_execute(ofpact_get_MULTIPATH(a), flow, wc);
1650             break;
1651
1652         case OFPACT_BUNDLE:
1653             ctx->ofproto->has_bundle_action = true;
1654             xlate_bundle_action(ctx, ofpact_get_BUNDLE(a));
1655             break;
1656
1657         case OFPACT_OUTPUT_REG:
1658             xlate_output_reg_action(ctx, ofpact_get_OUTPUT_REG(a));
1659             break;
1660
1661         case OFPACT_LEARN:
1662             xlate_learn_action(ctx, ofpact_get_LEARN(a));
1663             break;
1664
1665         case OFPACT_EXIT:
1666             ctx->exit = true;
1667             break;
1668
1669         case OFPACT_FIN_TIMEOUT:
1670             memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
1671             memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
1672             ctx->xout->has_fin_timeout = true;
1673             xlate_fin_timeout(ctx, ofpact_get_FIN_TIMEOUT(a));
1674             break;
1675
1676         case OFPACT_CLEAR_ACTIONS:
1677             /* XXX
1678              * Nothing to do because writa-actions is not supported for now.
1679              * When writa-actions is supported, clear-actions also must
1680              * be supported at the same time.
1681              */
1682             break;
1683
1684         case OFPACT_WRITE_METADATA:
1685             metadata = ofpact_get_WRITE_METADATA(a);
1686             flow->metadata &= ~metadata->mask;
1687             flow->metadata |= metadata->metadata & metadata->mask;
1688             break;
1689
1690         case OFPACT_GOTO_TABLE: {
1691             /* It is assumed that goto-table is the last action. */
1692             struct ofpact_goto_table *ogt = ofpact_get_GOTO_TABLE(a);
1693             struct rule_dpif *rule;
1694
1695             ovs_assert(ctx->table_id < ogt->table_id);
1696
1697             ctx->table_id = ogt->table_id;
1698
1699             /* Look up a flow from the new table. */
1700             rule = rule_dpif_lookup_in_table(ctx->ofproto, flow, wc,
1701                                              ctx->table_id);
1702
1703             tag_the_flow(ctx, rule);
1704
1705             rule = ctx_rule_hooks(ctx, rule, true);
1706
1707             if (rule) {
1708                 if (ctx->rule) {
1709                     ctx->rule->up.evictable = was_evictable;
1710                 }
1711                 ctx->rule = rule;
1712                 was_evictable = rule->up.evictable;
1713                 rule->up.evictable = false;
1714
1715                 /* Tail recursion removal. */
1716                 ofpacts = rule->up.ofpacts;
1717                 ofpacts_len = rule->up.ofpacts_len;
1718                 goto do_xlate_actions_again;
1719             }
1720             break;
1721         }
1722
1723         case OFPACT_SAMPLE:
1724             xlate_sample_action(ctx, ofpact_get_SAMPLE(a));
1725             break;
1726         }
1727     }
1728
1729 out:
1730     if (ctx->rule) {
1731         ctx->rule->up.evictable = was_evictable;
1732     }
1733 }
1734
1735 void
1736 xlate_in_init(struct xlate_in *xin, struct ofproto_dpif *ofproto,
1737               const struct flow *flow, struct rule_dpif *rule,
1738               uint8_t tcp_flags, const struct ofpbuf *packet)
1739 {
1740     xin->ofproto = ofproto;
1741     xin->flow = *flow;
1742     xin->packet = packet;
1743     xin->may_learn = packet != NULL;
1744     xin->rule = rule;
1745     xin->ofpacts = NULL;
1746     xin->ofpacts_len = 0;
1747     xin->tcp_flags = tcp_flags;
1748     xin->resubmit_hook = NULL;
1749     xin->report_hook = NULL;
1750     xin->resubmit_stats = NULL;
1751 }
1752
1753 void
1754 xlate_out_uninit(struct xlate_out *xout)
1755 {
1756     if (xout) {
1757         ofpbuf_uninit(&xout->odp_actions);
1758     }
1759 }
1760
1761 /* Translates the 'ofpacts_len' bytes of "struct ofpact"s starting at 'ofpacts'
1762  * into datapath actions, using 'ctx', and discards the datapath actions. */
1763 void
1764 xlate_actions_for_side_effects(struct xlate_in *xin)
1765 {
1766     struct xlate_out xout;
1767
1768     xlate_actions(xin, &xout);
1769     xlate_out_uninit(&xout);
1770 }
1771
1772 static void
1773 xlate_report(struct xlate_ctx *ctx, const char *s)
1774 {
1775     if (ctx->xin->report_hook) {
1776         ctx->xin->report_hook(ctx->xin, s, ctx->recurse);
1777     }
1778 }
1779
1780 void
1781 xlate_out_copy(struct xlate_out *dst, const struct xlate_out *src)
1782 {
1783     dst->wc = src->wc;
1784     dst->tags = src->tags;
1785     dst->slow = src->slow;
1786     dst->has_learn = src->has_learn;
1787     dst->has_normal = src->has_normal;
1788     dst->has_fin_timeout = src->has_fin_timeout;
1789     dst->nf_output_iface = src->nf_output_iface;
1790     dst->mirrors = src->mirrors;
1791
1792     ofpbuf_use_stub(&dst->odp_actions, dst->odp_actions_stub,
1793                     sizeof dst->odp_actions_stub);
1794     ofpbuf_put(&dst->odp_actions, src->odp_actions.data,
1795                src->odp_actions.size);
1796 }
1797 \f
1798
1799 /* Translates the 'ofpacts_len' bytes of "struct ofpacts" starting at 'ofpacts'
1800  * into datapath actions in 'odp_actions', using 'ctx'. */
1801 void
1802 xlate_actions(struct xlate_in *xin, struct xlate_out *xout)
1803 {
1804     /* Normally false.  Set to true if we ever hit MAX_RESUBMIT_RECURSION, so
1805      * that in the future we always keep a copy of the original flow for
1806      * tracing purposes. */
1807     static bool hit_resubmit_limit;
1808
1809     struct flow_wildcards *wc = &xout->wc;
1810     struct flow *flow = &xin->flow;
1811
1812     enum slow_path_reason special;
1813     const struct ofpact *ofpacts;
1814     struct ofport_dpif *in_port;
1815     struct flow orig_flow;
1816     struct xlate_ctx ctx;
1817     size_t ofpacts_len;
1818
1819     COVERAGE_INC(ofproto_dpif_xlate);
1820
1821     /* Flow initialization rules:
1822      * - 'base_flow' must match the kernel's view of the packet at the
1823      *   time that action processing starts.  'flow' represents any
1824      *   transformations we wish to make through actions.
1825      * - By default 'base_flow' and 'flow' are the same since the input
1826      *   packet matches the output before any actions are applied.
1827      * - When using VLAN splinters, 'base_flow''s VLAN is set to the value
1828      *   of the received packet as seen by the kernel.  If we later output
1829      *   to another device without any modifications this will cause us to
1830      *   insert a new tag since the original one was stripped off by the
1831      *   VLAN device.
1832      * - Tunnel metadata as received is retained in 'flow'. This allows
1833      *   tunnel metadata matching also in later tables.
1834      *   Since a kernel action for setting the tunnel metadata will only be
1835      *   generated with actual tunnel output, changing the tunnel metadata
1836      *   values in 'flow' (such as tun_id) will only have effect with a later
1837      *   tunnel output action.
1838      * - Tunnel 'base_flow' is completely cleared since that is what the
1839      *   kernel does.  If we wish to maintain the original values an action
1840      *   needs to be generated. */
1841
1842     ctx.xin = xin;
1843     ctx.xout = xout;
1844
1845     ctx.ofproto = xin->ofproto;
1846     ctx.rule = xin->rule;
1847
1848     ctx.base_flow = *flow;
1849     memset(&ctx.base_flow.tunnel, 0, sizeof ctx.base_flow.tunnel);
1850     ctx.orig_tunnel_ip_dst = flow->tunnel.ip_dst;
1851
1852     flow_wildcards_init_catchall(wc);
1853     memset(&wc->masks.in_port, 0xff, sizeof wc->masks.in_port);
1854
1855     if (tnl_port_should_receive(&ctx.xin->flow)) {
1856         memset(&wc->masks.tunnel, 0xff, sizeof wc->masks.tunnel);
1857     }
1858
1859     /* Disable most wildcarding for NetFlow. */
1860     if (xin->ofproto->netflow) {
1861         memset(&wc->masks.dl_src, 0xff, sizeof wc->masks.dl_src);
1862         memset(&wc->masks.dl_dst, 0xff, sizeof wc->masks.dl_dst);
1863         memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
1864         memset(&wc->masks.vlan_tci, 0xff, sizeof wc->masks.vlan_tci);
1865         memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
1866         memset(&wc->masks.nw_src, 0xff, sizeof wc->masks.nw_src);
1867         memset(&wc->masks.nw_dst, 0xff, sizeof wc->masks.nw_dst);
1868         memset(&wc->masks.tp_src, 0xff, sizeof wc->masks.tp_src);
1869         memset(&wc->masks.tp_dst, 0xff, sizeof wc->masks.tp_dst);
1870     }
1871
1872     ctx.xout->tags = 0;
1873     ctx.xout->slow = 0;
1874     ctx.xout->has_learn = false;
1875     ctx.xout->has_normal = false;
1876     ctx.xout->has_fin_timeout = false;
1877     ctx.xout->nf_output_iface = NF_OUT_DROP;
1878     ctx.xout->mirrors = 0;
1879
1880     ofpbuf_use_stub(&ctx.xout->odp_actions, ctx.xout->odp_actions_stub,
1881                     sizeof ctx.xout->odp_actions_stub);
1882     ofpbuf_reserve(&ctx.xout->odp_actions, NL_A_U32_SIZE);
1883
1884     ctx.recurse = 0;
1885     ctx.max_resubmit_trigger = false;
1886     ctx.orig_skb_priority = flow->skb_priority;
1887     ctx.table_id = 0;
1888     ctx.exit = false;
1889
1890     if (xin->ofpacts) {
1891         ofpacts = xin->ofpacts;
1892         ofpacts_len = xin->ofpacts_len;
1893     } else if (xin->rule) {
1894         ofpacts = xin->rule->up.ofpacts;
1895         ofpacts_len = xin->rule->up.ofpacts_len;
1896     } else {
1897         NOT_REACHED();
1898     }
1899
1900     ofpbuf_use_stub(&ctx.stack, ctx.init_stack, sizeof ctx.init_stack);
1901
1902     if (ctx.ofproto->has_mirrors || hit_resubmit_limit) {
1903         /* Do this conditionally because the copy is expensive enough that it
1904          * shows up in profiles. */
1905         orig_flow = *flow;
1906     }
1907
1908     if (flow->nw_frag & FLOW_NW_FRAG_ANY) {
1909         switch (ctx.ofproto->up.frag_handling) {
1910         case OFPC_FRAG_NORMAL:
1911             /* We must pretend that transport ports are unavailable. */
1912             flow->tp_src = ctx.base_flow.tp_src = htons(0);
1913             flow->tp_dst = ctx.base_flow.tp_dst = htons(0);
1914             break;
1915
1916         case OFPC_FRAG_DROP:
1917             return;
1918
1919         case OFPC_FRAG_REASM:
1920             NOT_REACHED();
1921
1922         case OFPC_FRAG_NX_MATCH:
1923             /* Nothing to do. */
1924             break;
1925
1926         case OFPC_INVALID_TTL_TO_CONTROLLER:
1927             NOT_REACHED();
1928         }
1929     }
1930
1931     in_port = get_ofp_port(ctx.ofproto, flow->in_port);
1932     special = process_special(ctx.ofproto, flow, in_port, ctx.xin->packet);
1933     if (special) {
1934         ctx.xout->slow = special;
1935     } else {
1936         static struct vlog_rate_limit trace_rl = VLOG_RATE_LIMIT_INIT(1, 1);
1937         size_t sample_actions_len;
1938         uint32_t local_odp_port;
1939
1940         if (flow->in_port
1941             != vsp_realdev_to_vlandev(ctx.ofproto, flow->in_port,
1942                                       flow->vlan_tci)) {
1943             ctx.base_flow.vlan_tci = 0;
1944         }
1945
1946         add_sflow_action(&ctx);
1947         add_ipfix_action(&ctx);
1948         sample_actions_len = ctx.xout->odp_actions.size;
1949
1950         if (tunnel_ecn_ok(&ctx) && (!in_port || may_receive(in_port, &ctx))) {
1951             do_xlate_actions(ofpacts, ofpacts_len, &ctx);
1952
1953             /* We've let OFPP_NORMAL and the learning action look at the
1954              * packet, so drop it now if forwarding is disabled. */
1955             if (in_port && !stp_forward_in_state(in_port->stp_state)) {
1956                 ctx.xout->odp_actions.size = sample_actions_len;
1957             }
1958         }
1959
1960         if (ctx.max_resubmit_trigger && !ctx.xin->resubmit_hook) {
1961             if (!hit_resubmit_limit) {
1962                 /* We didn't record the original flow.  Make sure we do from
1963                  * now on. */
1964                 hit_resubmit_limit = true;
1965             } else if (!VLOG_DROP_ERR(&trace_rl)) {
1966                 struct ds ds = DS_EMPTY_INITIALIZER;
1967
1968                 ofproto_trace(ctx.ofproto, &orig_flow, ctx.xin->packet, &ds);
1969                 VLOG_ERR("Trace triggered by excessive resubmit "
1970                          "recursion:\n%s", ds_cstr(&ds));
1971                 ds_destroy(&ds);
1972             }
1973         }
1974
1975         local_odp_port = ofp_port_to_odp_port(ctx.ofproto, OFPP_LOCAL);
1976         if (!connmgr_must_output_local(ctx.ofproto->up.connmgr, flow,
1977                                        local_odp_port,
1978                                        ctx.xout->odp_actions.data,
1979                                        ctx.xout->odp_actions.size)) {
1980             compose_output_action(&ctx, OFPP_LOCAL);
1981         }
1982         if (ctx.ofproto->has_mirrors) {
1983             add_mirror_actions(&ctx, &orig_flow);
1984         }
1985         fix_sflow_action(&ctx);
1986     }
1987
1988     ofpbuf_uninit(&ctx.stack);
1989
1990     /* Clear the metadata and register wildcard masks, because we won't
1991      * use non-header fields as part of the cache. */
1992     memset(&wc->masks.metadata, 0, sizeof wc->masks.metadata);
1993     memset(&wc->masks.regs, 0, sizeof wc->masks.regs);
1994 }