ofproto-dpif: Hide struct dpif_backer.
[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     struct priority_to_dscp *pdscp;
799     uint32_t out_port, odp_port;
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     pdscp = get_priority(ofport, flow->skb_priority);
868     if (pdscp) {
869         flow->nw_tos &= ~IP_DSCP_MASK;
870         flow->nw_tos |= pdscp->dscp;
871     }
872
873     if (ofport->tnl_port) {
874          /* Save tunnel metadata so that changes made due to
875           * the Logical (tunnel) Port are not visible for any further
876           * matches, while explicit set actions on tunnel metadata are.
877           */
878         struct flow_tnl flow_tnl = flow->tunnel;
879         odp_port = tnl_port_send(ofport->tnl_port, flow);
880         if (odp_port == OVSP_NONE) {
881             xlate_report(ctx, "Tunneling decided against output");
882             goto out; /* restore flow_nw_tos */
883         }
884         if (flow->tunnel.ip_dst == ctx->orig_tunnel_ip_dst) {
885             xlate_report(ctx, "Not tunneling to our own address");
886             goto out; /* restore flow_nw_tos */
887         }
888         if (ctx->xin->resubmit_stats) {
889             netdev_vport_inc_tx(ofport->up.netdev, ctx->xin->resubmit_stats);
890         }
891         out_port = odp_port;
892         commit_odp_tunnel_action(flow, &ctx->base_flow,
893                                  &ctx->xout->odp_actions);
894         flow->tunnel = flow_tnl; /* Restore tunnel metadata */
895     } else {
896         uint16_t vlandev_port;
897         odp_port = ofport->odp_port;
898         vlandev_port = vsp_realdev_to_vlandev(ctx->ofproto, ofp_port,
899                                               flow->vlan_tci);
900         if (vlandev_port == ofp_port) {
901             out_port = odp_port;
902         } else {
903             out_port = ofp_port_to_odp_port(ctx->ofproto, vlandev_port);
904             flow->vlan_tci = htons(0);
905         }
906         flow->skb_mark &= ~IPSEC_MARK;
907     }
908     commit_odp_actions(flow, &ctx->base_flow, &ctx->xout->odp_actions);
909     nl_msg_put_u32(&ctx->xout->odp_actions, OVS_ACTION_ATTR_OUTPUT, out_port);
910
911     ctx->sflow_odp_port = odp_port;
912     ctx->sflow_n_outputs++;
913     ctx->xout->nf_output_iface = ofp_port;
914
915     /* Restore flow */
916     flow->vlan_tci = flow_vlan_tci;
917     flow->skb_mark = flow_skb_mark;
918  out:
919     flow->nw_tos = flow_nw_tos;
920 }
921
922 static void
923 compose_output_action(struct xlate_ctx *ctx, uint16_t ofp_port)
924 {
925     compose_output_action__(ctx, ofp_port, true);
926 }
927
928 static void
929 tag_the_flow(struct xlate_ctx *ctx, struct rule_dpif *rule)
930 {
931     struct ofproto_dpif *ofproto = ctx->ofproto;
932     uint8_t table_id = ctx->table_id;
933
934     if (table_id > 0 && table_id < N_TABLES) {
935         struct table_dpif *table = &ofproto->tables[table_id];
936         if (table->other_table) {
937             ctx->xout->tags |= (rule && rule->tag
938                                 ? rule->tag
939                                 : rule_calculate_tag(&ctx->xin->flow,
940                                                      &table->other_table->mask,
941                                                      table->basis));
942         }
943     }
944 }
945
946 /* Common rule processing in one place to avoid duplicating code. */
947 static struct rule_dpif *
948 ctx_rule_hooks(struct xlate_ctx *ctx, struct rule_dpif *rule,
949                bool may_packet_in)
950 {
951     if (ctx->xin->resubmit_hook) {
952         ctx->xin->resubmit_hook(ctx->xin, rule, ctx->recurse);
953     }
954     if (rule == NULL && may_packet_in) {
955         /* XXX
956          * check if table configuration flags
957          * OFPTC_TABLE_MISS_CONTROLLER, default.
958          * OFPTC_TABLE_MISS_CONTINUE,
959          * OFPTC_TABLE_MISS_DROP
960          * When OF1.0, OFPTC_TABLE_MISS_CONTINUE is used. What to do?
961          */
962         rule = rule_dpif_miss_rule(ctx->ofproto, &ctx->xin->flow);
963     }
964     if (rule && ctx->xin->resubmit_stats) {
965         rule_credit_stats(rule, ctx->xin->resubmit_stats);
966     }
967     return rule;
968 }
969
970 static void
971 xlate_table_action(struct xlate_ctx *ctx,
972                    uint16_t in_port, uint8_t table_id, bool may_packet_in)
973 {
974     if (ctx->recurse < MAX_RESUBMIT_RECURSION) {
975         struct rule_dpif *rule;
976         uint16_t old_in_port = ctx->xin->flow.in_port;
977         uint8_t old_table_id = ctx->table_id;
978
979         ctx->table_id = table_id;
980
981         /* Look up a flow with 'in_port' as the input port. */
982         ctx->xin->flow.in_port = in_port;
983         rule = rule_dpif_lookup_in_table(ctx->ofproto, &ctx->xin->flow,
984                                          &ctx->xout->wc, table_id);
985
986         tag_the_flow(ctx, rule);
987
988         /* Restore the original input port.  Otherwise OFPP_NORMAL and
989          * OFPP_IN_PORT will have surprising behavior. */
990         ctx->xin->flow.in_port = old_in_port;
991
992         rule = ctx_rule_hooks(ctx, rule, may_packet_in);
993
994         if (rule) {
995             struct rule_dpif *old_rule = ctx->rule;
996
997             ctx->recurse++;
998             ctx->rule = rule;
999             do_xlate_actions(rule->up.ofpacts, rule->up.ofpacts_len, ctx);
1000             ctx->rule = old_rule;
1001             ctx->recurse--;
1002         }
1003
1004         ctx->table_id = old_table_id;
1005     } else {
1006         static struct vlog_rate_limit recurse_rl = VLOG_RATE_LIMIT_INIT(1, 1);
1007
1008         VLOG_ERR_RL(&recurse_rl, "resubmit actions recursed over %d times",
1009                     MAX_RESUBMIT_RECURSION);
1010         ctx->max_resubmit_trigger = true;
1011     }
1012 }
1013
1014 static void
1015 xlate_ofpact_resubmit(struct xlate_ctx *ctx,
1016                       const struct ofpact_resubmit *resubmit)
1017 {
1018     uint16_t in_port;
1019     uint8_t table_id;
1020
1021     in_port = resubmit->in_port;
1022     if (in_port == OFPP_IN_PORT) {
1023         in_port = ctx->xin->flow.in_port;
1024     }
1025
1026     table_id = resubmit->table_id;
1027     if (table_id == 255) {
1028         table_id = ctx->table_id;
1029     }
1030
1031     xlate_table_action(ctx, in_port, table_id, false);
1032 }
1033
1034 static void
1035 flood_packets(struct xlate_ctx *ctx, bool all)
1036 {
1037     struct ofport_dpif *ofport;
1038
1039     HMAP_FOR_EACH (ofport, up.hmap_node, &ctx->ofproto->up.ports) {
1040         uint16_t ofp_port = ofport->up.ofp_port;
1041
1042         if (ofp_port == ctx->xin->flow.in_port) {
1043             continue;
1044         }
1045
1046         if (all) {
1047             compose_output_action__(ctx, ofp_port, false);
1048         } else if (!(ofport->up.pp.config & OFPUTIL_PC_NO_FLOOD)) {
1049             compose_output_action(ctx, ofp_port);
1050         }
1051     }
1052
1053     ctx->xout->nf_output_iface = NF_OUT_FLOOD;
1054 }
1055
1056 static void
1057 execute_controller_action(struct xlate_ctx *ctx, int len,
1058                           enum ofp_packet_in_reason reason,
1059                           uint16_t controller_id)
1060 {
1061     struct ofputil_packet_in pin;
1062     struct ofpbuf *packet;
1063     struct flow key;
1064
1065     ovs_assert(!ctx->xout->slow || ctx->xout->slow == SLOW_CONTROLLER);
1066     ctx->xout->slow = SLOW_CONTROLLER;
1067     if (!ctx->xin->packet) {
1068         return;
1069     }
1070
1071     packet = ofpbuf_clone(ctx->xin->packet);
1072
1073     key.skb_priority = 0;
1074     key.skb_mark = 0;
1075     memset(&key.tunnel, 0, sizeof key.tunnel);
1076
1077     commit_odp_actions(&ctx->xin->flow, &ctx->base_flow,
1078                        &ctx->xout->odp_actions);
1079
1080     odp_execute_actions(NULL, packet, &key, ctx->xout->odp_actions.data,
1081                         ctx->xout->odp_actions.size, NULL, NULL);
1082
1083     pin.packet = packet->data;
1084     pin.packet_len = packet->size;
1085     pin.reason = reason;
1086     pin.controller_id = controller_id;
1087     pin.table_id = ctx->table_id;
1088     pin.cookie = ctx->rule ? ctx->rule->up.flow_cookie : 0;
1089
1090     pin.send_len = len;
1091     flow_get_metadata(&ctx->xin->flow, &pin.fmd);
1092
1093     connmgr_send_packet_in(ctx->ofproto->up.connmgr, &pin);
1094     ofpbuf_delete(packet);
1095 }
1096
1097 static void
1098 compose_mpls_push_action(struct xlate_ctx *ctx, ovs_be16 eth_type)
1099 {
1100     struct flow_wildcards *wc = &ctx->xout->wc;
1101     struct flow *flow = &ctx->xin->flow;
1102
1103     ovs_assert(eth_type_mpls(eth_type));
1104
1105     memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
1106     memset(&wc->masks.mpls_lse, 0xff, sizeof wc->masks.mpls_lse);
1107     memset(&wc->masks.mpls_depth, 0xff, sizeof wc->masks.mpls_depth);
1108
1109     if (flow->mpls_depth) {
1110         flow->mpls_lse &= ~htonl(MPLS_BOS_MASK);
1111         flow->mpls_depth++;
1112     } else {
1113         ovs_be32 label;
1114         uint8_t tc, ttl;
1115
1116         if (flow->dl_type == htons(ETH_TYPE_IPV6)) {
1117             label = htonl(0x2); /* IPV6 Explicit Null. */
1118         } else {
1119             label = htonl(0x0); /* IPV4 Explicit Null. */
1120         }
1121         tc = (flow->nw_tos & IP_DSCP_MASK) >> 2;
1122         ttl = flow->nw_ttl ? flow->nw_ttl : 0x40;
1123         flow->mpls_lse = set_mpls_lse_values(ttl, tc, 1, label);
1124         flow->mpls_depth = 1;
1125     }
1126     flow->dl_type = eth_type;
1127 }
1128
1129 static void
1130 compose_mpls_pop_action(struct xlate_ctx *ctx, ovs_be16 eth_type)
1131 {
1132     struct flow_wildcards *wc = &ctx->xout->wc;
1133     struct flow *flow = &ctx->xin->flow;
1134
1135     ovs_assert(eth_type_mpls(ctx->xin->flow.dl_type));
1136     ovs_assert(!eth_type_mpls(eth_type));
1137
1138     memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
1139     memset(&wc->masks.mpls_lse, 0xff, sizeof wc->masks.mpls_lse);
1140     memset(&wc->masks.mpls_depth, 0xff, sizeof wc->masks.mpls_depth);
1141
1142     if (flow->mpls_depth) {
1143         flow->mpls_depth--;
1144         flow->mpls_lse = htonl(0);
1145         if (!flow->mpls_depth) {
1146             flow->dl_type = eth_type;
1147         }
1148     }
1149 }
1150
1151 static bool
1152 compose_dec_ttl(struct xlate_ctx *ctx, struct ofpact_cnt_ids *ids)
1153 {
1154     struct flow *flow = &ctx->xin->flow;
1155
1156     if (!is_ip_any(flow)) {
1157         return false;
1158     }
1159
1160     if (flow->nw_ttl > 1) {
1161         flow->nw_ttl--;
1162         return false;
1163     } else {
1164         size_t i;
1165
1166         for (i = 0; i < ids->n_controllers; i++) {
1167             execute_controller_action(ctx, UINT16_MAX, OFPR_INVALID_TTL,
1168                                       ids->cnt_ids[i]);
1169         }
1170
1171         /* Stop processing for current table. */
1172         return true;
1173     }
1174 }
1175
1176 static bool
1177 compose_set_mpls_ttl_action(struct xlate_ctx *ctx, uint8_t ttl)
1178 {
1179     if (!eth_type_mpls(ctx->xin->flow.dl_type)) {
1180         return true;
1181     }
1182
1183     set_mpls_lse_ttl(&ctx->xin->flow.mpls_lse, ttl);
1184     return false;
1185 }
1186
1187 static bool
1188 compose_dec_mpls_ttl_action(struct xlate_ctx *ctx)
1189 {
1190     struct flow *flow = &ctx->xin->flow;
1191     uint8_t ttl = mpls_lse_to_ttl(flow->mpls_lse);
1192
1193     if (!eth_type_mpls(flow->dl_type)) {
1194         return false;
1195     }
1196
1197     if (ttl > 1) {
1198         ttl--;
1199         set_mpls_lse_ttl(&flow->mpls_lse, ttl);
1200         return false;
1201     } else {
1202         execute_controller_action(ctx, UINT16_MAX, OFPR_INVALID_TTL, 0);
1203
1204         /* Stop processing for current table. */
1205         return true;
1206     }
1207 }
1208
1209 static void
1210 xlate_output_action(struct xlate_ctx *ctx,
1211                     uint16_t port, uint16_t max_len, bool may_packet_in)
1212 {
1213     uint16_t prev_nf_output_iface = ctx->xout->nf_output_iface;
1214
1215     ctx->xout->nf_output_iface = NF_OUT_DROP;
1216
1217     switch (port) {
1218     case OFPP_IN_PORT:
1219         compose_output_action(ctx, ctx->xin->flow.in_port);
1220         break;
1221     case OFPP_TABLE:
1222         xlate_table_action(ctx, ctx->xin->flow.in_port, 0, may_packet_in);
1223         break;
1224     case OFPP_NORMAL:
1225         xlate_normal(ctx);
1226         break;
1227     case OFPP_FLOOD:
1228         flood_packets(ctx,  false);
1229         break;
1230     case OFPP_ALL:
1231         flood_packets(ctx, true);
1232         break;
1233     case OFPP_CONTROLLER:
1234         execute_controller_action(ctx, max_len, OFPR_ACTION, 0);
1235         break;
1236     case OFPP_NONE:
1237         break;
1238     case OFPP_LOCAL:
1239     default:
1240         if (port != ctx->xin->flow.in_port) {
1241             compose_output_action(ctx, port);
1242         } else {
1243             xlate_report(ctx, "skipping output to input port");
1244         }
1245         break;
1246     }
1247
1248     if (prev_nf_output_iface == NF_OUT_FLOOD) {
1249         ctx->xout->nf_output_iface = NF_OUT_FLOOD;
1250     } else if (ctx->xout->nf_output_iface == NF_OUT_DROP) {
1251         ctx->xout->nf_output_iface = prev_nf_output_iface;
1252     } else if (prev_nf_output_iface != NF_OUT_DROP &&
1253                ctx->xout->nf_output_iface != NF_OUT_FLOOD) {
1254         ctx->xout->nf_output_iface = NF_OUT_MULTI;
1255     }
1256 }
1257
1258 static void
1259 xlate_output_reg_action(struct xlate_ctx *ctx,
1260                         const struct ofpact_output_reg *or)
1261 {
1262     uint64_t port = mf_get_subfield(&or->src, &ctx->xin->flow);
1263     if (port <= UINT16_MAX) {
1264         union mf_subvalue value;
1265
1266         memset(&value, 0xff, sizeof value);
1267         mf_write_subfield_flow(&or->src, &value, &ctx->xout->wc.masks);
1268         xlate_output_action(ctx, port, or->max_len, false);
1269     }
1270 }
1271
1272 static void
1273 xlate_enqueue_action(struct xlate_ctx *ctx,
1274                      const struct ofpact_enqueue *enqueue)
1275 {
1276     uint16_t ofp_port = enqueue->port;
1277     uint32_t queue_id = enqueue->queue;
1278     uint32_t flow_priority, priority;
1279     int error;
1280
1281     /* Translate queue to priority. */
1282     error = ofproto_dpif_queue_to_priority(ctx->ofproto, queue_id, &priority);
1283     if (error) {
1284         /* Fall back to ordinary output action. */
1285         xlate_output_action(ctx, enqueue->port, 0, false);
1286         return;
1287     }
1288
1289     /* Check output port. */
1290     if (ofp_port == OFPP_IN_PORT) {
1291         ofp_port = ctx->xin->flow.in_port;
1292     } else if (ofp_port == ctx->xin->flow.in_port) {
1293         return;
1294     }
1295
1296     /* Add datapath actions. */
1297     flow_priority = ctx->xin->flow.skb_priority;
1298     ctx->xin->flow.skb_priority = priority;
1299     compose_output_action(ctx, ofp_port);
1300     ctx->xin->flow.skb_priority = flow_priority;
1301
1302     /* Update NetFlow output port. */
1303     if (ctx->xout->nf_output_iface == NF_OUT_DROP) {
1304         ctx->xout->nf_output_iface = ofp_port;
1305     } else if (ctx->xout->nf_output_iface != NF_OUT_FLOOD) {
1306         ctx->xout->nf_output_iface = NF_OUT_MULTI;
1307     }
1308 }
1309
1310 static void
1311 xlate_set_queue_action(struct xlate_ctx *ctx, uint32_t queue_id)
1312 {
1313     uint32_t skb_priority;
1314
1315     if (!ofproto_dpif_queue_to_priority(ctx->ofproto, queue_id,
1316                                         &skb_priority)) {
1317         ctx->xin->flow.skb_priority = skb_priority;
1318     } else {
1319         /* Couldn't translate queue to a priority.  Nothing to do.  A warning
1320          * has already been logged. */
1321     }
1322 }
1323
1324 static bool
1325 slave_enabled_cb(uint16_t ofp_port, void *ofproto_)
1326 {
1327     struct ofproto_dpif *ofproto = ofproto_;
1328     struct ofport_dpif *port;
1329
1330     switch (ofp_port) {
1331     case OFPP_IN_PORT:
1332     case OFPP_TABLE:
1333     case OFPP_NORMAL:
1334     case OFPP_FLOOD:
1335     case OFPP_ALL:
1336     case OFPP_NONE:
1337         return true;
1338     case OFPP_CONTROLLER: /* Not supported by the bundle action. */
1339         return false;
1340     default:
1341         port = get_ofp_port(ofproto, ofp_port);
1342         return port ? port->may_enable : false;
1343     }
1344 }
1345
1346 static void
1347 xlate_bundle_action(struct xlate_ctx *ctx,
1348                     const struct ofpact_bundle *bundle)
1349 {
1350     uint16_t port;
1351
1352     port = bundle_execute(bundle, &ctx->xin->flow, &ctx->xout->wc,
1353                           slave_enabled_cb, ctx->ofproto);
1354     if (bundle->dst.field) {
1355         nxm_reg_load(&bundle->dst, port, &ctx->xin->flow);
1356     } else {
1357         xlate_output_action(ctx, port, 0, false);
1358     }
1359 }
1360
1361 static void
1362 xlate_learn_action(struct xlate_ctx *ctx,
1363                    const struct ofpact_learn *learn)
1364 {
1365     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 1);
1366     struct ofputil_flow_mod fm;
1367     uint64_t ofpacts_stub[1024 / 8];
1368     struct ofpbuf ofpacts;
1369     int error;
1370
1371     ctx->xout->has_learn = true;
1372
1373     learn_mask(learn, &ctx->xout->wc);
1374
1375     if (!ctx->xin->may_learn) {
1376         return;
1377     }
1378
1379     ofpbuf_use_stack(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
1380     learn_execute(learn, &ctx->xin->flow, &fm, &ofpacts);
1381
1382     error = ofproto_flow_mod(&ctx->ofproto->up, &fm);
1383     if (error && !VLOG_DROP_WARN(&rl)) {
1384         VLOG_WARN("learning action failed to modify flow table (%s)",
1385                   ofperr_get_name(error));
1386     }
1387
1388     ofpbuf_uninit(&ofpacts);
1389 }
1390
1391 /* Reduces '*timeout' to no more than 'max'.  A value of zero in either case
1392  * means "infinite". */
1393 static void
1394 reduce_timeout(uint16_t max, uint16_t *timeout)
1395 {
1396     if (max && (!*timeout || *timeout > max)) {
1397         *timeout = max;
1398     }
1399 }
1400
1401 static void
1402 xlate_fin_timeout(struct xlate_ctx *ctx,
1403                   const struct ofpact_fin_timeout *oft)
1404 {
1405     if (ctx->xin->tcp_flags & (TCP_FIN | TCP_RST) && ctx->rule) {
1406         struct rule_dpif *rule = ctx->rule;
1407
1408         reduce_timeout(oft->fin_idle_timeout, &rule->up.idle_timeout);
1409         reduce_timeout(oft->fin_hard_timeout, &rule->up.hard_timeout);
1410     }
1411 }
1412
1413 static void
1414 xlate_sample_action(struct xlate_ctx *ctx,
1415                     const struct ofpact_sample *os)
1416 {
1417   union user_action_cookie cookie;
1418   /* Scale the probability from 16-bit to 32-bit while representing
1419    * the same percentage. */
1420   uint32_t probability = (os->probability << 16) | os->probability;
1421
1422   commit_odp_actions(&ctx->xin->flow, &ctx->base_flow,
1423                      &ctx->xout->odp_actions);
1424
1425   compose_flow_sample_cookie(os->probability, os->collector_set_id,
1426                              os->obs_domain_id, os->obs_point_id, &cookie);
1427   compose_sample_action(ctx->ofproto, &ctx->xout->odp_actions, &ctx->xin->flow,
1428                         probability, &cookie, sizeof cookie.flow_sample);
1429 }
1430
1431 static bool
1432 may_receive(const struct ofport_dpif *port, struct xlate_ctx *ctx)
1433 {
1434     if (port->up.pp.config & (eth_addr_equals(ctx->xin->flow.dl_dst,
1435                                               eth_addr_stp)
1436                               ? OFPUTIL_PC_NO_RECV_STP
1437                               : OFPUTIL_PC_NO_RECV)) {
1438         return false;
1439     }
1440
1441     /* Only drop packets here if both forwarding and learning are
1442      * disabled.  If just learning is enabled, we need to have
1443      * OFPP_NORMAL and the learning action have a look at the packet
1444      * before we can drop it. */
1445     if (!stp_forward_in_state(port->stp_state)
1446             && !stp_learn_in_state(port->stp_state)) {
1447         return false;
1448     }
1449
1450     return true;
1451 }
1452
1453 static bool
1454 tunnel_ecn_ok(struct xlate_ctx *ctx)
1455 {
1456     if (is_ip_any(&ctx->base_flow)
1457         && (ctx->xin->flow.tunnel.ip_tos & IP_ECN_MASK) == IP_ECN_CE) {
1458         if ((ctx->base_flow.nw_tos & IP_ECN_MASK) == IP_ECN_NOT_ECT) {
1459             VLOG_WARN_RL(&rl, "dropping tunnel packet marked ECN CE"
1460                          " but is not ECN capable");
1461             return false;
1462         } else {
1463             /* Set the ECN CE value in the tunneled packet. */
1464             ctx->xin->flow.nw_tos |= IP_ECN_CE;
1465         }
1466     }
1467
1468     return true;
1469 }
1470
1471 static void
1472 do_xlate_actions(const struct ofpact *ofpacts, size_t ofpacts_len,
1473                  struct xlate_ctx *ctx)
1474 {
1475     struct flow_wildcards *wc = &ctx->xout->wc;
1476     struct flow *flow = &ctx->xin->flow;
1477     bool was_evictable = true;
1478     const struct ofpact *a;
1479
1480     if (ctx->rule) {
1481         /* Don't let the rule we're working on get evicted underneath us. */
1482         was_evictable = ctx->rule->up.evictable;
1483         ctx->rule->up.evictable = false;
1484     }
1485
1486  do_xlate_actions_again:
1487     OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
1488         struct ofpact_controller *controller;
1489         const struct ofpact_metadata *metadata;
1490
1491         if (ctx->exit) {
1492             break;
1493         }
1494
1495         switch (a->type) {
1496         case OFPACT_OUTPUT:
1497             xlate_output_action(ctx, ofpact_get_OUTPUT(a)->port,
1498                                 ofpact_get_OUTPUT(a)->max_len, true);
1499             break;
1500
1501         case OFPACT_CONTROLLER:
1502             controller = ofpact_get_CONTROLLER(a);
1503             execute_controller_action(ctx, controller->max_len,
1504                                       controller->reason,
1505                                       controller->controller_id);
1506             break;
1507
1508         case OFPACT_ENQUEUE:
1509             xlate_enqueue_action(ctx, ofpact_get_ENQUEUE(a));
1510             break;
1511
1512         case OFPACT_SET_VLAN_VID:
1513             flow->vlan_tci &= ~htons(VLAN_VID_MASK);
1514             flow->vlan_tci |= (htons(ofpact_get_SET_VLAN_VID(a)->vlan_vid)
1515                                | htons(VLAN_CFI));
1516             break;
1517
1518         case OFPACT_SET_VLAN_PCP:
1519             flow->vlan_tci &= ~htons(VLAN_PCP_MASK);
1520             flow->vlan_tci |=
1521                 htons((ofpact_get_SET_VLAN_PCP(a)->vlan_pcp << VLAN_PCP_SHIFT)
1522                       | VLAN_CFI);
1523             break;
1524
1525         case OFPACT_STRIP_VLAN:
1526             flow->vlan_tci = htons(0);
1527             break;
1528
1529         case OFPACT_PUSH_VLAN:
1530             /* XXX 802.1AD(QinQ) */
1531             flow->vlan_tci = htons(VLAN_CFI);
1532             break;
1533
1534         case OFPACT_SET_ETH_SRC:
1535             memcpy(flow->dl_src, ofpact_get_SET_ETH_SRC(a)->mac, ETH_ADDR_LEN);
1536             break;
1537
1538         case OFPACT_SET_ETH_DST:
1539             memcpy(flow->dl_dst, ofpact_get_SET_ETH_DST(a)->mac, ETH_ADDR_LEN);
1540             break;
1541
1542         case OFPACT_SET_IPV4_SRC:
1543             memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
1544             if (flow->dl_type == htons(ETH_TYPE_IP)) {
1545                 flow->nw_src = ofpact_get_SET_IPV4_SRC(a)->ipv4;
1546             }
1547             break;
1548
1549         case OFPACT_SET_IPV4_DST:
1550             memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
1551             if (flow->dl_type == htons(ETH_TYPE_IP)) {
1552                 flow->nw_dst = ofpact_get_SET_IPV4_DST(a)->ipv4;
1553             }
1554             break;
1555
1556         case OFPACT_SET_IPV4_DSCP:
1557             /* OpenFlow 1.0 only supports IPv4. */
1558             memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
1559             if (flow->dl_type == htons(ETH_TYPE_IP)) {
1560                 flow->nw_tos &= ~IP_DSCP_MASK;
1561                 flow->nw_tos |= ofpact_get_SET_IPV4_DSCP(a)->dscp;
1562             }
1563             break;
1564
1565         case OFPACT_SET_L4_SRC_PORT:
1566             memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
1567             memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
1568             if (is_ip_any(flow)) {
1569                 flow->tp_src = htons(ofpact_get_SET_L4_SRC_PORT(a)->port);
1570             }
1571             break;
1572
1573         case OFPACT_SET_L4_DST_PORT:
1574             memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
1575             memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
1576             if (is_ip_any(flow)) {
1577                 flow->tp_dst = htons(ofpact_get_SET_L4_DST_PORT(a)->port);
1578             }
1579             break;
1580
1581         case OFPACT_RESUBMIT:
1582             xlate_ofpact_resubmit(ctx, ofpact_get_RESUBMIT(a));
1583             break;
1584
1585         case OFPACT_SET_TUNNEL:
1586             flow->tunnel.tun_id = htonll(ofpact_get_SET_TUNNEL(a)->tun_id);
1587             break;
1588
1589         case OFPACT_SET_QUEUE:
1590             xlate_set_queue_action(ctx, ofpact_get_SET_QUEUE(a)->queue_id);
1591             break;
1592
1593         case OFPACT_POP_QUEUE:
1594             memset(&wc->masks.skb_priority, 0xff,
1595                    sizeof wc->masks.skb_priority);
1596
1597             flow->skb_priority = ctx->orig_skb_priority;
1598             break;
1599
1600         case OFPACT_REG_MOVE:
1601             nxm_execute_reg_move(ofpact_get_REG_MOVE(a), flow, wc);
1602             break;
1603
1604         case OFPACT_REG_LOAD:
1605             nxm_execute_reg_load(ofpact_get_REG_LOAD(a), flow);
1606             break;
1607
1608         case OFPACT_STACK_PUSH:
1609             nxm_execute_stack_push(ofpact_get_STACK_PUSH(a), flow, wc,
1610                                    &ctx->stack);
1611             break;
1612
1613         case OFPACT_STACK_POP:
1614             nxm_execute_stack_pop(ofpact_get_STACK_POP(a), flow, &ctx->stack);
1615             break;
1616
1617         case OFPACT_PUSH_MPLS:
1618             compose_mpls_push_action(ctx, ofpact_get_PUSH_MPLS(a)->ethertype);
1619             break;
1620
1621         case OFPACT_POP_MPLS:
1622             compose_mpls_pop_action(ctx, ofpact_get_POP_MPLS(a)->ethertype);
1623             break;
1624
1625         case OFPACT_SET_MPLS_TTL:
1626             if (compose_set_mpls_ttl_action(ctx,
1627                                             ofpact_get_SET_MPLS_TTL(a)->ttl)) {
1628                 goto out;
1629             }
1630             break;
1631
1632         case OFPACT_DEC_MPLS_TTL:
1633             if (compose_dec_mpls_ttl_action(ctx)) {
1634                 goto out;
1635             }
1636             break;
1637
1638         case OFPACT_DEC_TTL:
1639             memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
1640             if (compose_dec_ttl(ctx, ofpact_get_DEC_TTL(a))) {
1641                 goto out;
1642             }
1643             break;
1644
1645         case OFPACT_NOTE:
1646             /* Nothing to do. */
1647             break;
1648
1649         case OFPACT_MULTIPATH:
1650             multipath_execute(ofpact_get_MULTIPATH(a), flow, wc);
1651             break;
1652
1653         case OFPACT_BUNDLE:
1654             ctx->ofproto->has_bundle_action = true;
1655             xlate_bundle_action(ctx, ofpact_get_BUNDLE(a));
1656             break;
1657
1658         case OFPACT_OUTPUT_REG:
1659             xlate_output_reg_action(ctx, ofpact_get_OUTPUT_REG(a));
1660             break;
1661
1662         case OFPACT_LEARN:
1663             xlate_learn_action(ctx, ofpact_get_LEARN(a));
1664             break;
1665
1666         case OFPACT_EXIT:
1667             ctx->exit = true;
1668             break;
1669
1670         case OFPACT_FIN_TIMEOUT:
1671             memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
1672             memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
1673             ctx->xout->has_fin_timeout = true;
1674             xlate_fin_timeout(ctx, ofpact_get_FIN_TIMEOUT(a));
1675             break;
1676
1677         case OFPACT_CLEAR_ACTIONS:
1678             /* XXX
1679              * Nothing to do because writa-actions is not supported for now.
1680              * When writa-actions is supported, clear-actions also must
1681              * be supported at the same time.
1682              */
1683             break;
1684
1685         case OFPACT_WRITE_METADATA:
1686             metadata = ofpact_get_WRITE_METADATA(a);
1687             flow->metadata &= ~metadata->mask;
1688             flow->metadata |= metadata->metadata & metadata->mask;
1689             break;
1690
1691         case OFPACT_GOTO_TABLE: {
1692             /* It is assumed that goto-table is the last action. */
1693             struct ofpact_goto_table *ogt = ofpact_get_GOTO_TABLE(a);
1694             struct rule_dpif *rule;
1695
1696             ovs_assert(ctx->table_id < ogt->table_id);
1697
1698             ctx->table_id = ogt->table_id;
1699
1700             /* Look up a flow from the new table. */
1701             rule = rule_dpif_lookup_in_table(ctx->ofproto, flow, wc,
1702                                              ctx->table_id);
1703
1704             tag_the_flow(ctx, rule);
1705
1706             rule = ctx_rule_hooks(ctx, rule, true);
1707
1708             if (rule) {
1709                 if (ctx->rule) {
1710                     ctx->rule->up.evictable = was_evictable;
1711                 }
1712                 ctx->rule = rule;
1713                 was_evictable = rule->up.evictable;
1714                 rule->up.evictable = false;
1715
1716                 /* Tail recursion removal. */
1717                 ofpacts = rule->up.ofpacts;
1718                 ofpacts_len = rule->up.ofpacts_len;
1719                 goto do_xlate_actions_again;
1720             }
1721             break;
1722         }
1723
1724         case OFPACT_SAMPLE:
1725             xlate_sample_action(ctx, ofpact_get_SAMPLE(a));
1726             break;
1727         }
1728     }
1729
1730 out:
1731     if (ctx->rule) {
1732         ctx->rule->up.evictable = was_evictable;
1733     }
1734 }
1735
1736 void
1737 xlate_in_init(struct xlate_in *xin, struct ofproto_dpif *ofproto,
1738               const struct flow *flow, struct rule_dpif *rule,
1739               uint8_t tcp_flags, const struct ofpbuf *packet)
1740 {
1741     xin->ofproto = ofproto;
1742     xin->flow = *flow;
1743     xin->packet = packet;
1744     xin->may_learn = packet != NULL;
1745     xin->rule = rule;
1746     xin->ofpacts = NULL;
1747     xin->ofpacts_len = 0;
1748     xin->tcp_flags = tcp_flags;
1749     xin->resubmit_hook = NULL;
1750     xin->report_hook = NULL;
1751     xin->resubmit_stats = NULL;
1752 }
1753
1754 void
1755 xlate_out_uninit(struct xlate_out *xout)
1756 {
1757     if (xout) {
1758         ofpbuf_uninit(&xout->odp_actions);
1759     }
1760 }
1761
1762 /* Translates the 'ofpacts_len' bytes of "struct ofpact"s starting at 'ofpacts'
1763  * into datapath actions, using 'ctx', and discards the datapath actions. */
1764 void
1765 xlate_actions_for_side_effects(struct xlate_in *xin)
1766 {
1767     struct xlate_out xout;
1768
1769     xlate_actions(xin, &xout);
1770     xlate_out_uninit(&xout);
1771 }
1772
1773 static void
1774 xlate_report(struct xlate_ctx *ctx, const char *s)
1775 {
1776     if (ctx->xin->report_hook) {
1777         ctx->xin->report_hook(ctx->xin, s, ctx->recurse);
1778     }
1779 }
1780
1781 void
1782 xlate_out_copy(struct xlate_out *dst, const struct xlate_out *src)
1783 {
1784     dst->wc = src->wc;
1785     dst->tags = src->tags;
1786     dst->slow = src->slow;
1787     dst->has_learn = src->has_learn;
1788     dst->has_normal = src->has_normal;
1789     dst->has_fin_timeout = src->has_fin_timeout;
1790     dst->nf_output_iface = src->nf_output_iface;
1791     dst->mirrors = src->mirrors;
1792
1793     ofpbuf_use_stub(&dst->odp_actions, dst->odp_actions_stub,
1794                     sizeof dst->odp_actions_stub);
1795     ofpbuf_put(&dst->odp_actions, src->odp_actions.data,
1796                src->odp_actions.size);
1797 }
1798 \f
1799
1800 /* Translates the 'ofpacts_len' bytes of "struct ofpacts" starting at 'ofpacts'
1801  * into datapath actions in 'odp_actions', using 'ctx'. */
1802 void
1803 xlate_actions(struct xlate_in *xin, struct xlate_out *xout)
1804 {
1805     /* Normally false.  Set to true if we ever hit MAX_RESUBMIT_RECURSION, so
1806      * that in the future we always keep a copy of the original flow for
1807      * tracing purposes. */
1808     static bool hit_resubmit_limit;
1809
1810     struct flow_wildcards *wc = &xout->wc;
1811     struct flow *flow = &xin->flow;
1812
1813     enum slow_path_reason special;
1814     const struct ofpact *ofpacts;
1815     struct ofport_dpif *in_port;
1816     struct flow orig_flow;
1817     struct xlate_ctx ctx;
1818     size_t ofpacts_len;
1819
1820     COVERAGE_INC(ofproto_dpif_xlate);
1821
1822     /* Flow initialization rules:
1823      * - 'base_flow' must match the kernel's view of the packet at the
1824      *   time that action processing starts.  'flow' represents any
1825      *   transformations we wish to make through actions.
1826      * - By default 'base_flow' and 'flow' are the same since the input
1827      *   packet matches the output before any actions are applied.
1828      * - When using VLAN splinters, 'base_flow''s VLAN is set to the value
1829      *   of the received packet as seen by the kernel.  If we later output
1830      *   to another device without any modifications this will cause us to
1831      *   insert a new tag since the original one was stripped off by the
1832      *   VLAN device.
1833      * - Tunnel metadata as received is retained in 'flow'. This allows
1834      *   tunnel metadata matching also in later tables.
1835      *   Since a kernel action for setting the tunnel metadata will only be
1836      *   generated with actual tunnel output, changing the tunnel metadata
1837      *   values in 'flow' (such as tun_id) will only have effect with a later
1838      *   tunnel output action.
1839      * - Tunnel 'base_flow' is completely cleared since that is what the
1840      *   kernel does.  If we wish to maintain the original values an action
1841      *   needs to be generated. */
1842
1843     ctx.xin = xin;
1844     ctx.xout = xout;
1845
1846     ctx.ofproto = xin->ofproto;
1847     ctx.rule = xin->rule;
1848
1849     ctx.base_flow = *flow;
1850     memset(&ctx.base_flow.tunnel, 0, sizeof ctx.base_flow.tunnel);
1851     ctx.orig_tunnel_ip_dst = flow->tunnel.ip_dst;
1852
1853     flow_wildcards_init_catchall(wc);
1854     memset(&wc->masks.in_port, 0xff, sizeof wc->masks.in_port);
1855
1856     if (tnl_port_should_receive(&ctx.xin->flow)) {
1857         memset(&wc->masks.tunnel, 0xff, sizeof wc->masks.tunnel);
1858     }
1859
1860     /* Disable most wildcarding for NetFlow. */
1861     if (xin->ofproto->netflow) {
1862         memset(&wc->masks.dl_src, 0xff, sizeof wc->masks.dl_src);
1863         memset(&wc->masks.dl_dst, 0xff, sizeof wc->masks.dl_dst);
1864         memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
1865         memset(&wc->masks.vlan_tci, 0xff, sizeof wc->masks.vlan_tci);
1866         memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
1867         memset(&wc->masks.nw_src, 0xff, sizeof wc->masks.nw_src);
1868         memset(&wc->masks.nw_dst, 0xff, sizeof wc->masks.nw_dst);
1869         memset(&wc->masks.tp_src, 0xff, sizeof wc->masks.tp_src);
1870         memset(&wc->masks.tp_dst, 0xff, sizeof wc->masks.tp_dst);
1871     }
1872
1873     ctx.xout->tags = 0;
1874     ctx.xout->slow = 0;
1875     ctx.xout->has_learn = false;
1876     ctx.xout->has_normal = false;
1877     ctx.xout->has_fin_timeout = false;
1878     ctx.xout->nf_output_iface = NF_OUT_DROP;
1879     ctx.xout->mirrors = 0;
1880
1881     ofpbuf_use_stub(&ctx.xout->odp_actions, ctx.xout->odp_actions_stub,
1882                     sizeof ctx.xout->odp_actions_stub);
1883     ofpbuf_reserve(&ctx.xout->odp_actions, NL_A_U32_SIZE);
1884
1885     ctx.recurse = 0;
1886     ctx.max_resubmit_trigger = false;
1887     ctx.orig_skb_priority = flow->skb_priority;
1888     ctx.table_id = 0;
1889     ctx.exit = false;
1890
1891     if (xin->ofpacts) {
1892         ofpacts = xin->ofpacts;
1893         ofpacts_len = xin->ofpacts_len;
1894     } else if (xin->rule) {
1895         ofpacts = xin->rule->up.ofpacts;
1896         ofpacts_len = xin->rule->up.ofpacts_len;
1897     } else {
1898         NOT_REACHED();
1899     }
1900
1901     ofpbuf_use_stub(&ctx.stack, ctx.init_stack, sizeof ctx.init_stack);
1902
1903     if (ctx.ofproto->has_mirrors || hit_resubmit_limit) {
1904         /* Do this conditionally because the copy is expensive enough that it
1905          * shows up in profiles. */
1906         orig_flow = *flow;
1907     }
1908
1909     if (flow->nw_frag & FLOW_NW_FRAG_ANY) {
1910         switch (ctx.ofproto->up.frag_handling) {
1911         case OFPC_FRAG_NORMAL:
1912             /* We must pretend that transport ports are unavailable. */
1913             flow->tp_src = ctx.base_flow.tp_src = htons(0);
1914             flow->tp_dst = ctx.base_flow.tp_dst = htons(0);
1915             break;
1916
1917         case OFPC_FRAG_DROP:
1918             return;
1919
1920         case OFPC_FRAG_REASM:
1921             NOT_REACHED();
1922
1923         case OFPC_FRAG_NX_MATCH:
1924             /* Nothing to do. */
1925             break;
1926
1927         case OFPC_INVALID_TTL_TO_CONTROLLER:
1928             NOT_REACHED();
1929         }
1930     }
1931
1932     in_port = get_ofp_port(ctx.ofproto, flow->in_port);
1933     special = process_special(ctx.ofproto, flow, in_port, ctx.xin->packet);
1934     if (special) {
1935         ctx.xout->slow = special;
1936     } else {
1937         static struct vlog_rate_limit trace_rl = VLOG_RATE_LIMIT_INIT(1, 1);
1938         size_t sample_actions_len;
1939         uint32_t local_odp_port;
1940
1941         if (flow->in_port
1942             != vsp_realdev_to_vlandev(ctx.ofproto, flow->in_port,
1943                                       flow->vlan_tci)) {
1944             ctx.base_flow.vlan_tci = 0;
1945         }
1946
1947         add_sflow_action(&ctx);
1948         add_ipfix_action(&ctx);
1949         sample_actions_len = ctx.xout->odp_actions.size;
1950
1951         if (tunnel_ecn_ok(&ctx) && (!in_port || may_receive(in_port, &ctx))) {
1952             do_xlate_actions(ofpacts, ofpacts_len, &ctx);
1953
1954             /* We've let OFPP_NORMAL and the learning action look at the
1955              * packet, so drop it now if forwarding is disabled. */
1956             if (in_port && !stp_forward_in_state(in_port->stp_state)) {
1957                 ctx.xout->odp_actions.size = sample_actions_len;
1958             }
1959         }
1960
1961         if (ctx.max_resubmit_trigger && !ctx.xin->resubmit_hook) {
1962             if (!hit_resubmit_limit) {
1963                 /* We didn't record the original flow.  Make sure we do from
1964                  * now on. */
1965                 hit_resubmit_limit = true;
1966             } else if (!VLOG_DROP_ERR(&trace_rl)) {
1967                 struct ds ds = DS_EMPTY_INITIALIZER;
1968
1969                 ofproto_trace(ctx.ofproto, &orig_flow, ctx.xin->packet, &ds);
1970                 VLOG_ERR("Trace triggered by excessive resubmit "
1971                          "recursion:\n%s", ds_cstr(&ds));
1972                 ds_destroy(&ds);
1973             }
1974         }
1975
1976         local_odp_port = ofp_port_to_odp_port(ctx.ofproto, OFPP_LOCAL);
1977         if (!connmgr_must_output_local(ctx.ofproto->up.connmgr, flow,
1978                                        local_odp_port,
1979                                        ctx.xout->odp_actions.data,
1980                                        ctx.xout->odp_actions.size)) {
1981             compose_output_action(&ctx, OFPP_LOCAL);
1982         }
1983         if (ctx.ofproto->has_mirrors) {
1984             add_mirror_actions(&ctx, &orig_flow);
1985         }
1986         fix_sflow_action(&ctx);
1987     }
1988
1989     ofpbuf_uninit(&ctx.stack);
1990
1991     /* Clear the metadata and register wildcard masks, because we won't
1992      * use non-header fields as part of the cache. */
1993     memset(&wc->masks.metadata, 0, sizeof wc->masks.metadata);
1994     memset(&wc->masks.regs, 0, sizeof wc->masks.regs);
1995 }