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