xlate: Always recirculate after an MPLS POP to a non-MPLS ethertype.
[cascardo/ovs.git] / ofproto / ofproto-dpif-xlate.c
1 /* Copyright (c) 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 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 <errno.h>
20 #include <arpa/inet.h>
21 #include <net/if.h>
22 #include <sys/socket.h>
23 #include <netinet/in.h>
24
25 #include "tnl-neigh-cache.h"
26 #include "bfd.h"
27 #include "bitmap.h"
28 #include "bond.h"
29 #include "bundle.h"
30 #include "byte-order.h"
31 #include "cfm.h"
32 #include "connmgr.h"
33 #include "coverage.h"
34 #include "dp-packet.h"
35 #include "dpif.h"
36 #include "dynamic-string.h"
37 #include "in-band.h"
38 #include "lacp.h"
39 #include "learn.h"
40 #include "list.h"
41 #include "ovs-lldp.h"
42 #include "mac-learning.h"
43 #include "mcast-snooping.h"
44 #include "meta-flow.h"
45 #include "multipath.h"
46 #include "netdev-vport.h"
47 #include "netlink.h"
48 #include "nx-match.h"
49 #include "odp-execute.h"
50 #include "ofp-actions.h"
51 #include "ofproto/ofproto-dpif-ipfix.h"
52 #include "ofproto/ofproto-dpif-mirror.h"
53 #include "ofproto/ofproto-dpif-monitor.h"
54 #include "ofproto/ofproto-dpif-sflow.h"
55 #include "ofproto/ofproto-dpif.h"
56 #include "ofproto/ofproto-provider.h"
57 #include "packets.h"
58 #include "ovs-router.h"
59 #include "tnl-ports.h"
60 #include "tunnel.h"
61 #include "openvswitch/vlog.h"
62
63 COVERAGE_DEFINE(xlate_actions);
64 COVERAGE_DEFINE(xlate_actions_oversize);
65 COVERAGE_DEFINE(xlate_actions_too_many_output);
66
67 VLOG_DEFINE_THIS_MODULE(ofproto_dpif_xlate);
68
69 /* Maximum depth of flow table recursion (due to resubmit actions) in a
70  * flow translation. */
71 #define MAX_RESUBMIT_RECURSION 64
72 #define MAX_INTERNAL_RESUBMITS 1   /* Max resbmits allowed using rules in
73                                       internal table. */
74
75 /* Maximum number of resubmit actions in a flow translation, whether they are
76  * recursive or not. */
77 #define MAX_RESUBMITS (MAX_RESUBMIT_RECURSION * MAX_RESUBMIT_RECURSION)
78
79 struct xbridge {
80     struct hmap_node hmap_node;   /* Node in global 'xbridges' map. */
81     struct ofproto_dpif *ofproto; /* Key in global 'xbridges' map. */
82
83     struct ovs_list xbundles;     /* Owned xbundles. */
84     struct hmap xports;           /* Indexed by ofp_port. */
85
86     char *name;                   /* Name used in log messages. */
87     struct dpif *dpif;            /* Datapath interface. */
88     struct mac_learning *ml;      /* Mac learning handle. */
89     struct mcast_snooping *ms;    /* Multicast Snooping handle. */
90     struct mbridge *mbridge;      /* Mirroring. */
91     struct dpif_sflow *sflow;     /* SFlow handle, or null. */
92     struct dpif_ipfix *ipfix;     /* Ipfix handle, or null. */
93     struct netflow *netflow;      /* Netflow handle, or null. */
94     struct stp *stp;              /* STP or null if disabled. */
95     struct rstp *rstp;            /* RSTP or null if disabled. */
96
97     bool has_in_band;             /* Bridge has in band control? */
98     bool forward_bpdu;            /* Bridge forwards STP BPDUs? */
99
100     /* Datapath feature support. */
101     struct dpif_backer_support support;
102 };
103
104 struct xbundle {
105     struct hmap_node hmap_node;    /* In global 'xbundles' map. */
106     struct ofbundle *ofbundle;     /* Key in global 'xbundles' map. */
107
108     struct ovs_list list_node;     /* In parent 'xbridges' list. */
109     struct xbridge *xbridge;       /* Parent xbridge. */
110
111     struct ovs_list xports;        /* Contains "struct xport"s. */
112
113     char *name;                    /* Name used in log messages. */
114     struct bond *bond;             /* Nonnull iff more than one port. */
115     struct lacp *lacp;             /* LACP handle or null. */
116
117     enum port_vlan_mode vlan_mode; /* VLAN mode. */
118     int vlan;                      /* -1=trunk port, else a 12-bit VLAN ID. */
119     unsigned long *trunks;         /* Bitmap of trunked VLANs, if 'vlan' == -1.
120                                     * NULL if all VLANs are trunked. */
121     bool use_priority_tags;        /* Use 802.1p tag for frames in VLAN 0? */
122     bool floodable;                /* No port has OFPUTIL_PC_NO_FLOOD set? */
123 };
124
125 struct xport {
126     struct hmap_node hmap_node;      /* Node in global 'xports' map. */
127     struct ofport_dpif *ofport;      /* Key in global 'xports map. */
128
129     struct hmap_node ofp_node;       /* Node in parent xbridge 'xports' map. */
130     ofp_port_t ofp_port;             /* Key in parent xbridge 'xports' map. */
131
132     odp_port_t odp_port;             /* Datapath port number or ODPP_NONE. */
133
134     struct ovs_list bundle_node;     /* In parent xbundle (if it exists). */
135     struct xbundle *xbundle;         /* Parent xbundle or null. */
136
137     struct netdev *netdev;           /* 'ofport''s netdev. */
138
139     struct xbridge *xbridge;         /* Parent bridge. */
140     struct xport *peer;              /* Patch port peer or null. */
141
142     enum ofputil_port_config config; /* OpenFlow port configuration. */
143     enum ofputil_port_state state;   /* OpenFlow port state. */
144     int stp_port_no;                 /* STP port number or -1 if not in use. */
145     struct rstp_port *rstp_port;     /* RSTP port or null. */
146
147     struct hmap skb_priorities;      /* Map of 'skb_priority_to_dscp's. */
148
149     bool may_enable;                 /* May be enabled in bonds. */
150     bool is_tunnel;                  /* Is a tunnel port. */
151
152     struct cfm *cfm;                 /* CFM handle or null. */
153     struct bfd *bfd;                 /* BFD handle or null. */
154     struct lldp *lldp;               /* LLDP handle or null. */
155 };
156
157 struct xlate_ctx {
158     struct xlate_in *xin;
159     struct xlate_out *xout;
160
161     const struct xbridge *xbridge;
162
163     /* Flow tables version at the beginning of the translation. */
164     cls_version_t tables_version;
165
166     /* Flow at the last commit. */
167     struct flow base_flow;
168
169     /* Tunnel IP destination address as received.  This is stored separately
170      * as the base_flow.tunnel is cleared on init to reflect the datapath
171      * behavior.  Used to make sure not to send tunneled output to ourselves,
172      * which might lead to an infinite loop.  This could happen easily
173      * if a tunnel is marked as 'ip_remote=flow', and the flow does not
174      * actually set the tun_dst field. */
175     struct in6_addr orig_tunnel_ipv6_dst;
176
177     /* Stack for the push and pop actions.  Each stack element is of type
178      * "union mf_subvalue". */
179     struct ofpbuf stack;
180
181     /* The rule that we are currently translating, or NULL. */
182     struct rule_dpif *rule;
183
184     /* Flow translation populates this with wildcards relevant in translation.
185      * When 'xin->wc' is nonnull, this is the same pointer.  When 'xin->wc' is
186      * null, this is a pointer to uninitialized scratch memory.  This allows
187      * code to blindly write to 'ctx->wc' without worrying about whether the
188      * caller really wants wildcards. */
189     struct flow_wildcards *wc;
190
191     /* Output buffer for datapath actions.  When 'xin->odp_actions' is nonnull,
192      * this is the same pointer.  When 'xin->odp_actions' is null, this points
193      * to a scratch ofpbuf.  This allows code to add actions to
194      * 'ctx->odp_actions' without worrying about whether the caller really
195      * wants actions. */
196     struct ofpbuf *odp_actions;
197
198     /* Resubmit statistics, via xlate_table_action(). */
199     int recurse;                /* Current resubmit nesting depth. */
200     int resubmits;              /* Total number of resubmits. */
201     bool in_group;              /* Currently translating ofgroup, if true. */
202     bool in_action_set;         /* Currently translating action_set, if true. */
203
204     uint8_t table_id;           /* OpenFlow table ID where flow was found. */
205     ovs_be64 rule_cookie;       /* Cookie of the rule being translated. */
206     uint32_t orig_skb_priority; /* Priority when packet arrived. */
207     uint32_t sflow_n_outputs;   /* Number of output ports. */
208     odp_port_t sflow_odp_port;  /* Output port for composing sFlow action. */
209     ofp_port_t nf_output_iface; /* Output interface index for NetFlow. */
210     bool exit;                  /* No further actions should be processed. */
211     mirror_mask_t mirrors;      /* Bitmap of associated mirrors. */
212
213    /* Freezing Translation
214     * ====================
215     *
216     * At some point during translation, the code may recognize the need to halt
217     * and checkpoint the translation in a way that it can be restarted again
218     * later.  We call the checkpointing process "freezing" and the restarting
219     * process "thawing".
220     *
221     * The use cases for freezing are:
222     *
223     *     - "Recirculation", where the translation process discovers that it
224     *       doesn't have enough information to complete translation without
225     *       actually executing the actions that have already been translated,
226     *       which provides the additionally needed information.  In these
227     *       situations, translation freezes translation and assigns the frozen
228     *       data a unique "recirculation ID", which it associates with the data
229     *       in a table in userspace (see ofproto-dpif-rid.h).  It also adds a
230     *       OVS_ACTION_ATTR_RECIRC action specifying that ID to the datapath
231     *       actions.  When a packet hits that action, the datapath looks its
232     *       flow up again using the ID.  If there's a miss, it comes back to
233     *       userspace, which find the recirculation table entry for the ID,
234     *       thaws the associated frozen data, and continues translation from
235     *       that point given the additional information that is now known.
236     *
237     *       The archetypal example is MPLS.  As MPLS is implemented in
238     *       OpenFlow, the protocol that follows the last MPLS label becomes
239     *       known only when that label is popped by an OpenFlow action.  That
240     *       means that Open vSwitch can't extract the headers beyond the MPLS
241     *       labels until the pop action is executed.  Thus, at that point
242     *       translation uses the recirculation process to extract the headers
243     *       beyond the MPLS labels.
244     *
245     *       (OVS also uses OVS_ACTION_ATTR_RECIRC to implement hashing for
246     *       output to bonds.  OVS pre-populates all the datapath flows for bond
247     *       output in the datapath, though, which means that the elaborate
248     *       process of coming back to userspace for a second round of
249     *       translation isn't needed, and so bonds don't follow the above
250     *       process.)
251     *
252     *     - "Continuation".  A continuation is a way for an OpenFlow controller
253     *       to interpose on a packet's traversal of the OpenFlow tables.  When
254     *       the translation process encounters a "controller" action with the
255     *       "pause" flag, it freezes translation, serializes the frozen data,
256     *       and sends it to an OpenFlow controller.  The controller then
257     *       examines and possibly modifies the frozen data and eventually sends
258     *       it back to the switch, which thaws it and continues translation.
259     *
260     * The main problem of freezing translation is preserving state, so that
261     * when the translation is thawed later it resumes from where it left off,
262     * without disruption.  In particular, actions must be preserved as follows:
263     *
264     *     - If we're freezing because an action needed more information, the
265     *       action that prompted it.
266     *
267     *     - Any actions remaining to be translated within the current flow.
268     *
269     *     - If translation was frozen within a NXAST_RESUBMIT, then any actions
270     *       following the resubmit action.  Resubmit actions can be nested, so
271     *       this has to go all the way up the control stack.
272     *
273     *     - The OpenFlow 1.1+ action set.
274     *
275     * State that actions and flow table lookups can depend on, such as the
276     * following, must also be preserved:
277     *
278     *     - Metadata fields (input port, registers, OF1.1+ metadata, ...).
279     *
280     *     - The stack used by NXAST_STACK_PUSH and NXAST_STACK_POP actions.
281     *
282     *     - The table ID and cookie of the flow being translated at each level
283     *       of the control stack, because these can become visible through
284     *       OFPAT_CONTROLLER actions (and other ways).
285     *
286     * Translation allows for the control of this state preservation via these
287     * members.  When a need to freeze translation is identified, the
288     * translation process:
289     *
290     * 1. Sets 'freezing' to true.
291     *
292     * 2. Sets 'exit' to true to tell later steps that we're exiting from the
293     *    translation process.
294     *
295     * 3. Adds an OFPACT_UNROLL_XLATE action to 'frozen_actions', and points
296     *    frozen_actions.header to the action to make it easy to find it later.
297     *    This action holds the current table ID and cookie so that they can be
298     *    restored during a post-recirculation upcall translation.
299     *
300     * 4. Adds the action that prompted recirculation and any actions following
301     *    it within the same flow to 'frozen_actions', so that they can be
302     *    executed during a post-recirculation upcall translation.
303     *
304     * 5. Returns.
305     *
306     * 6. The action that prompted recirculation might be nested in a stack of
307     *    nested "resubmit"s that have actions remaining.  Each of these notices
308     *    that we're exiting and freezing and responds by adding more
309     *    OFPACT_UNROLL_XLATE actions to 'frozen_actions', as necessary,
310     *    followed by any actions that were yet unprocessed.
311     *
312     * If we're freezing because of recirculation, the caller generates a
313     * recirculation ID and associates all the state produced by this process
314     * with it.  For post-recirculation upcall translation, the caller passes it
315     * back in for the new translation to execute.  The process yielded a set of
316     * ofpacts that can be translated directly, so it is not much of a special
317     * case at that point.
318     */
319     bool freezing;
320     struct ofpbuf frozen_actions;
321     const struct ofpact_controller *pause;
322
323     /* True if conntrack has been performed on this packet during processing
324      * on the current bridge. This is used to determine whether conntrack
325      * state from the datapath should be honored after thawing. */
326     bool conntracked;
327
328     /* Pointer to an embedded NAT action in a conntrack action, or NULL. */
329     struct ofpact_nat *ct_nat_action;
330
331     /* OpenFlow 1.1+ action set.
332      *
333      * 'action_set' accumulates "struct ofpact"s added by OFPACT_WRITE_ACTIONS.
334      * When translation is otherwise complete, ofpacts_execute_action_set()
335      * converts it to a set of "struct ofpact"s that can be translated into
336      * datapath actions. */
337     bool action_set_has_group;  /* Action set contains OFPACT_GROUP? */
338     struct ofpbuf action_set;   /* Action set. */
339
340     enum xlate_error error;     /* Translation failed. */
341 };
342
343 const char *xlate_strerror(enum xlate_error error)
344 {
345     switch (error) {
346     case XLATE_OK:
347         return "OK";
348     case XLATE_BRIDGE_NOT_FOUND:
349         return "Bridge not found";
350     case XLATE_RECURSION_TOO_DEEP:
351         return "Recursion too deep";
352     case XLATE_TOO_MANY_RESUBMITS:
353         return "Too many resubmits";
354     case XLATE_STACK_TOO_DEEP:
355         return "Stack too deep";
356     case XLATE_NO_RECIRCULATION_CONTEXT:
357         return "No recirculation context";
358     case XLATE_RECIRCULATION_CONFLICT:
359         return "Recirculation conflict";
360     case XLATE_TOO_MANY_MPLS_LABELS:
361         return "Too many MPLS labels";
362     }
363     return "Unknown error";
364 }
365
366 static void xlate_action_set(struct xlate_ctx *ctx);
367 static void xlate_commit_actions(struct xlate_ctx *ctx);
368
369 static void
370 ctx_trigger_freeze(struct xlate_ctx *ctx)
371 {
372     ctx->exit = true;
373     ctx->freezing = true;
374 }
375
376 static bool
377 ctx_first_frozen_action(const struct xlate_ctx *ctx)
378 {
379     return !ctx->frozen_actions.size;
380 }
381
382 static void
383 ctx_cancel_freeze(struct xlate_ctx *ctx)
384 {
385     if (ctx->freezing) {
386         ctx->freezing = false;
387         ofpbuf_clear(&ctx->frozen_actions);
388         ctx->frozen_actions.header = NULL;
389     }
390 }
391
392 static void finish_freezing(struct xlate_ctx *ctx);
393
394 /* A controller may use OFPP_NONE as the ingress port to indicate that
395  * it did not arrive on a "real" port.  'ofpp_none_bundle' exists for
396  * when an input bundle is needed for validation (e.g., mirroring or
397  * OFPP_NORMAL processing).  It is not connected to an 'ofproto' or have
398  * any 'port' structs, so care must be taken when dealing with it. */
399 static struct xbundle ofpp_none_bundle = {
400     .name      = "OFPP_NONE",
401     .vlan_mode = PORT_VLAN_TRUNK
402 };
403
404 /* Node in 'xport''s 'skb_priorities' map.  Used to maintain a map from
405  * 'priority' (the datapath's term for QoS queue) to the dscp bits which all
406  * traffic egressing the 'ofport' with that priority should be marked with. */
407 struct skb_priority_to_dscp {
408     struct hmap_node hmap_node; /* Node in 'ofport_dpif''s 'skb_priorities'. */
409     uint32_t skb_priority;      /* Priority of this queue (see struct flow). */
410
411     uint8_t dscp;               /* DSCP bits to mark outgoing traffic with. */
412 };
413
414 enum xc_type {
415     XC_RULE,
416     XC_BOND,
417     XC_NETDEV,
418     XC_NETFLOW,
419     XC_MIRROR,
420     XC_LEARN,
421     XC_NORMAL,
422     XC_FIN_TIMEOUT,
423     XC_GROUP,
424     XC_TNL_NEIGH,
425 };
426
427 /* xlate_cache entries hold enough information to perform the side effects of
428  * xlate_actions() for a rule, without needing to perform rule translation
429  * from scratch. The primary usage of these is to submit statistics to objects
430  * that a flow relates to, although they may be used for other effects as well
431  * (for instance, refreshing hard timeouts for learned flows). */
432 struct xc_entry {
433     enum xc_type type;
434     union {
435         struct rule_dpif *rule;
436         struct {
437             struct netdev *tx;
438             struct netdev *rx;
439             struct bfd *bfd;
440         } dev;
441         struct {
442             struct netflow *netflow;
443             struct flow *flow;
444             ofp_port_t iface;
445         } nf;
446         struct {
447             struct mbridge *mbridge;
448             mirror_mask_t mirrors;
449         } mirror;
450         struct {
451             struct bond *bond;
452             struct flow *flow;
453             uint16_t vid;
454         } bond;
455         struct {
456             struct ofproto_dpif *ofproto;
457             struct ofputil_flow_mod *fm;
458             struct ofpbuf *ofpacts;
459         } learn;
460         struct {
461             struct ofproto_dpif *ofproto;
462             struct flow *flow;
463             int vlan;
464         } normal;
465         struct {
466             struct rule_dpif *rule;
467             uint16_t idle;
468             uint16_t hard;
469         } fin;
470         struct {
471             struct group_dpif *group;
472             struct ofputil_bucket *bucket;
473         } group;
474         struct {
475             char br_name[IFNAMSIZ];
476             struct in6_addr d_ipv6;
477         } tnl_neigh_cache;
478     } u;
479 };
480
481 #define XC_ENTRY_FOR_EACH(ENTRY, ENTRIES, XCACHE)               \
482     ENTRIES = XCACHE->entries;                                  \
483     for (ENTRY = ofpbuf_try_pull(&ENTRIES, sizeof *ENTRY);      \
484          ENTRY;                                                 \
485          ENTRY = ofpbuf_try_pull(&ENTRIES, sizeof *ENTRY))
486
487 struct xlate_cache {
488     struct ofpbuf entries;
489 };
490
491 /* Xlate config contains hash maps of all bridges, bundles and ports.
492  * Xcfgp contains the pointer to the current xlate configuration.
493  * When the main thread needs to change the configuration, it copies xcfgp to
494  * new_xcfg and edits new_xcfg. This enables the use of RCU locking which
495  * does not block handler and revalidator threads. */
496 struct xlate_cfg {
497     struct hmap xbridges;
498     struct hmap xbundles;
499     struct hmap xports;
500 };
501 static OVSRCU_TYPE(struct xlate_cfg *) xcfgp = OVSRCU_INITIALIZER(NULL);
502 static struct xlate_cfg *new_xcfg = NULL;
503
504 static bool may_receive(const struct xport *, struct xlate_ctx *);
505 static void do_xlate_actions(const struct ofpact *, size_t ofpacts_len,
506                              struct xlate_ctx *);
507 static void xlate_normal(struct xlate_ctx *);
508 static inline void xlate_report(struct xlate_ctx *, const char *, ...)
509     OVS_PRINTF_FORMAT(2, 3);
510 static void xlate_table_action(struct xlate_ctx *, ofp_port_t in_port,
511                                uint8_t table_id, bool may_packet_in,
512                                bool honor_table_miss);
513 static bool input_vid_is_valid(uint16_t vid, struct xbundle *, bool warn);
514 static uint16_t input_vid_to_vlan(const struct xbundle *, uint16_t vid);
515 static void output_normal(struct xlate_ctx *, const struct xbundle *,
516                           uint16_t vlan);
517
518 /* Optional bond recirculation parameter to compose_output_action(). */
519 struct xlate_bond_recirc {
520     uint32_t recirc_id;  /* !0 Use recirculation instead of output. */
521     uint8_t  hash_alg;   /* !0 Compute hash for recirc before. */
522     uint32_t hash_basis;  /* Compute hash for recirc before. */
523 };
524
525 static void compose_output_action(struct xlate_ctx *, ofp_port_t ofp_port,
526                                   const struct xlate_bond_recirc *xr);
527
528 static struct xbridge *xbridge_lookup(struct xlate_cfg *,
529                                       const struct ofproto_dpif *);
530 static struct xbridge *xbridge_lookup_by_uuid(struct xlate_cfg *,
531                                               const struct uuid *);
532 static struct xbundle *xbundle_lookup(struct xlate_cfg *,
533                                       const struct ofbundle *);
534 static struct xport *xport_lookup(struct xlate_cfg *,
535                                   const struct ofport_dpif *);
536 static struct xport *get_ofp_port(const struct xbridge *, ofp_port_t ofp_port);
537 static struct skb_priority_to_dscp *get_skb_priority(const struct xport *,
538                                                      uint32_t skb_priority);
539 static void clear_skb_priorities(struct xport *);
540 static size_t count_skb_priorities(const struct xport *);
541 static bool dscp_from_skb_priority(const struct xport *, uint32_t skb_priority,
542                                    uint8_t *dscp);
543
544 static struct xc_entry *xlate_cache_add_entry(struct xlate_cache *xc,
545                                               enum xc_type type);
546 static void xlate_xbridge_init(struct xlate_cfg *, struct xbridge *);
547 static void xlate_xbundle_init(struct xlate_cfg *, struct xbundle *);
548 static void xlate_xport_init(struct xlate_cfg *, struct xport *);
549 static void xlate_xbridge_set(struct xbridge *, struct dpif *,
550                               const struct mac_learning *, struct stp *,
551                               struct rstp *, const struct mcast_snooping *,
552                               const struct mbridge *,
553                               const struct dpif_sflow *,
554                               const struct dpif_ipfix *,
555                               const struct netflow *,
556                               bool forward_bpdu, bool has_in_band,
557                               const struct dpif_backer_support *);
558 static void xlate_xbundle_set(struct xbundle *xbundle,
559                               enum port_vlan_mode vlan_mode, int vlan,
560                               unsigned long *trunks, bool use_priority_tags,
561                               const struct bond *bond, const struct lacp *lacp,
562                               bool floodable);
563 static void xlate_xport_set(struct xport *xport, odp_port_t odp_port,
564                             const struct netdev *netdev, const struct cfm *cfm,
565                             const struct bfd *bfd, const struct lldp *lldp,
566                             int stp_port_no, const struct rstp_port *rstp_port,
567                             enum ofputil_port_config config,
568                             enum ofputil_port_state state, bool is_tunnel,
569                             bool may_enable);
570 static void xlate_xbridge_remove(struct xlate_cfg *, struct xbridge *);
571 static void xlate_xbundle_remove(struct xlate_cfg *, struct xbundle *);
572 static void xlate_xport_remove(struct xlate_cfg *, struct xport *);
573 static void xlate_xbridge_copy(struct xbridge *);
574 static void xlate_xbundle_copy(struct xbridge *, struct xbundle *);
575 static void xlate_xport_copy(struct xbridge *, struct xbundle *,
576                              struct xport *);
577 static void xlate_xcfg_free(struct xlate_cfg *);
578
579 static inline void
580 xlate_report(struct xlate_ctx *ctx, const char *format, ...)
581 {
582     if (OVS_UNLIKELY(ctx->xin->report_hook)) {
583         va_list args;
584
585         va_start(args, format);
586         ctx->xin->report_hook(ctx->xin, ctx->recurse, format, args);
587         va_end(args);
588     }
589 }
590
591 static struct vlog_rate_limit error_report_rl = VLOG_RATE_LIMIT_INIT(1, 5);
592
593 #define XLATE_REPORT_ERROR(CTX, ...)                    \
594     do {                                                \
595         if (OVS_UNLIKELY((CTX)->xin->report_hook)) {    \
596             xlate_report(CTX, __VA_ARGS__);             \
597         } else {                                        \
598             VLOG_ERR_RL(&error_report_rl, __VA_ARGS__); \
599         }                                               \
600     } while (0)
601
602 static inline void
603 xlate_report_actions(struct xlate_ctx *ctx, const char *title,
604                      const struct ofpact *ofpacts, size_t ofpacts_len)
605 {
606     if (OVS_UNLIKELY(ctx->xin->report_hook)) {
607         struct ds s = DS_EMPTY_INITIALIZER;
608         ofpacts_format(ofpacts, ofpacts_len, &s);
609         xlate_report(ctx, "%s: %s", title, ds_cstr(&s));
610         ds_destroy(&s);
611     }
612 }
613
614 static void
615 xlate_xbridge_init(struct xlate_cfg *xcfg, struct xbridge *xbridge)
616 {
617     list_init(&xbridge->xbundles);
618     hmap_init(&xbridge->xports);
619     hmap_insert(&xcfg->xbridges, &xbridge->hmap_node,
620                 hash_pointer(xbridge->ofproto, 0));
621 }
622
623 static void
624 xlate_xbundle_init(struct xlate_cfg *xcfg, struct xbundle *xbundle)
625 {
626     list_init(&xbundle->xports);
627     list_insert(&xbundle->xbridge->xbundles, &xbundle->list_node);
628     hmap_insert(&xcfg->xbundles, &xbundle->hmap_node,
629                 hash_pointer(xbundle->ofbundle, 0));
630 }
631
632 static void
633 xlate_xport_init(struct xlate_cfg *xcfg, struct xport *xport)
634 {
635     hmap_init(&xport->skb_priorities);
636     hmap_insert(&xcfg->xports, &xport->hmap_node,
637                 hash_pointer(xport->ofport, 0));
638     hmap_insert(&xport->xbridge->xports, &xport->ofp_node,
639                 hash_ofp_port(xport->ofp_port));
640 }
641
642 static void
643 xlate_xbridge_set(struct xbridge *xbridge,
644                   struct dpif *dpif,
645                   const struct mac_learning *ml, struct stp *stp,
646                   struct rstp *rstp, const struct mcast_snooping *ms,
647                   const struct mbridge *mbridge,
648                   const struct dpif_sflow *sflow,
649                   const struct dpif_ipfix *ipfix,
650                   const struct netflow *netflow,
651                   bool forward_bpdu, bool has_in_band,
652                   const struct dpif_backer_support *support)
653 {
654     if (xbridge->ml != ml) {
655         mac_learning_unref(xbridge->ml);
656         xbridge->ml = mac_learning_ref(ml);
657     }
658
659     if (xbridge->ms != ms) {
660         mcast_snooping_unref(xbridge->ms);
661         xbridge->ms = mcast_snooping_ref(ms);
662     }
663
664     if (xbridge->mbridge != mbridge) {
665         mbridge_unref(xbridge->mbridge);
666         xbridge->mbridge = mbridge_ref(mbridge);
667     }
668
669     if (xbridge->sflow != sflow) {
670         dpif_sflow_unref(xbridge->sflow);
671         xbridge->sflow = dpif_sflow_ref(sflow);
672     }
673
674     if (xbridge->ipfix != ipfix) {
675         dpif_ipfix_unref(xbridge->ipfix);
676         xbridge->ipfix = dpif_ipfix_ref(ipfix);
677     }
678
679     if (xbridge->stp != stp) {
680         stp_unref(xbridge->stp);
681         xbridge->stp = stp_ref(stp);
682     }
683
684     if (xbridge->rstp != rstp) {
685         rstp_unref(xbridge->rstp);
686         xbridge->rstp = rstp_ref(rstp);
687     }
688
689     if (xbridge->netflow != netflow) {
690         netflow_unref(xbridge->netflow);
691         xbridge->netflow = netflow_ref(netflow);
692     }
693
694     xbridge->dpif = dpif;
695     xbridge->forward_bpdu = forward_bpdu;
696     xbridge->has_in_band = has_in_band;
697     xbridge->support = *support;
698 }
699
700 static void
701 xlate_xbundle_set(struct xbundle *xbundle,
702                   enum port_vlan_mode vlan_mode, int vlan,
703                   unsigned long *trunks, bool use_priority_tags,
704                   const struct bond *bond, const struct lacp *lacp,
705                   bool floodable)
706 {
707     ovs_assert(xbundle->xbridge);
708
709     xbundle->vlan_mode = vlan_mode;
710     xbundle->vlan = vlan;
711     xbundle->trunks = trunks;
712     xbundle->use_priority_tags = use_priority_tags;
713     xbundle->floodable = floodable;
714
715     if (xbundle->bond != bond) {
716         bond_unref(xbundle->bond);
717         xbundle->bond = bond_ref(bond);
718     }
719
720     if (xbundle->lacp != lacp) {
721         lacp_unref(xbundle->lacp);
722         xbundle->lacp = lacp_ref(lacp);
723     }
724 }
725
726 static void
727 xlate_xport_set(struct xport *xport, odp_port_t odp_port,
728                 const struct netdev *netdev, const struct cfm *cfm,
729                 const struct bfd *bfd, const struct lldp *lldp, int stp_port_no,
730                 const struct rstp_port* rstp_port,
731                 enum ofputil_port_config config, enum ofputil_port_state state,
732                 bool is_tunnel, bool may_enable)
733 {
734     xport->config = config;
735     xport->state = state;
736     xport->stp_port_no = stp_port_no;
737     xport->is_tunnel = is_tunnel;
738     xport->may_enable = may_enable;
739     xport->odp_port = odp_port;
740
741     if (xport->rstp_port != rstp_port) {
742         rstp_port_unref(xport->rstp_port);
743         xport->rstp_port = rstp_port_ref(rstp_port);
744     }
745
746     if (xport->cfm != cfm) {
747         cfm_unref(xport->cfm);
748         xport->cfm = cfm_ref(cfm);
749     }
750
751     if (xport->bfd != bfd) {
752         bfd_unref(xport->bfd);
753         xport->bfd = bfd_ref(bfd);
754     }
755
756     if (xport->lldp != lldp) {
757         lldp_unref(xport->lldp);
758         xport->lldp = lldp_ref(lldp);
759     }
760
761     if (xport->netdev != netdev) {
762         netdev_close(xport->netdev);
763         xport->netdev = netdev_ref(netdev);
764     }
765 }
766
767 static void
768 xlate_xbridge_copy(struct xbridge *xbridge)
769 {
770     struct xbundle *xbundle;
771     struct xport *xport;
772     struct xbridge *new_xbridge = xzalloc(sizeof *xbridge);
773     new_xbridge->ofproto = xbridge->ofproto;
774     new_xbridge->name = xstrdup(xbridge->name);
775     xlate_xbridge_init(new_xcfg, new_xbridge);
776
777     xlate_xbridge_set(new_xbridge,
778                       xbridge->dpif, xbridge->ml, xbridge->stp,
779                       xbridge->rstp, xbridge->ms, xbridge->mbridge,
780                       xbridge->sflow, xbridge->ipfix, xbridge->netflow,
781                       xbridge->forward_bpdu, xbridge->has_in_band,
782                       &xbridge->support);
783     LIST_FOR_EACH (xbundle, list_node, &xbridge->xbundles) {
784         xlate_xbundle_copy(new_xbridge, xbundle);
785     }
786
787     /* Copy xports which are not part of a xbundle */
788     HMAP_FOR_EACH (xport, ofp_node, &xbridge->xports) {
789         if (!xport->xbundle) {
790             xlate_xport_copy(new_xbridge, NULL, xport);
791         }
792     }
793 }
794
795 static void
796 xlate_xbundle_copy(struct xbridge *xbridge, struct xbundle *xbundle)
797 {
798     struct xport *xport;
799     struct xbundle *new_xbundle = xzalloc(sizeof *xbundle);
800     new_xbundle->ofbundle = xbundle->ofbundle;
801     new_xbundle->xbridge = xbridge;
802     new_xbundle->name = xstrdup(xbundle->name);
803     xlate_xbundle_init(new_xcfg, new_xbundle);
804
805     xlate_xbundle_set(new_xbundle, xbundle->vlan_mode,
806                       xbundle->vlan, xbundle->trunks,
807                       xbundle->use_priority_tags, xbundle->bond, xbundle->lacp,
808                       xbundle->floodable);
809     LIST_FOR_EACH (xport, bundle_node, &xbundle->xports) {
810         xlate_xport_copy(xbridge, new_xbundle, xport);
811     }
812 }
813
814 static void
815 xlate_xport_copy(struct xbridge *xbridge, struct xbundle *xbundle,
816                  struct xport *xport)
817 {
818     struct skb_priority_to_dscp *pdscp, *new_pdscp;
819     struct xport *new_xport = xzalloc(sizeof *xport);
820     new_xport->ofport = xport->ofport;
821     new_xport->ofp_port = xport->ofp_port;
822     new_xport->xbridge = xbridge;
823     xlate_xport_init(new_xcfg, new_xport);
824
825     xlate_xport_set(new_xport, xport->odp_port, xport->netdev, xport->cfm,
826                     xport->bfd, xport->lldp, xport->stp_port_no,
827                     xport->rstp_port, xport->config, xport->state,
828                     xport->is_tunnel, xport->may_enable);
829
830     if (xport->peer) {
831         struct xport *peer = xport_lookup(new_xcfg, xport->peer->ofport);
832         if (peer) {
833             new_xport->peer = peer;
834             new_xport->peer->peer = new_xport;
835         }
836     }
837
838     if (xbundle) {
839         new_xport->xbundle = xbundle;
840         list_insert(&new_xport->xbundle->xports, &new_xport->bundle_node);
841     }
842
843     HMAP_FOR_EACH (pdscp, hmap_node, &xport->skb_priorities) {
844         new_pdscp = xmalloc(sizeof *pdscp);
845         new_pdscp->skb_priority = pdscp->skb_priority;
846         new_pdscp->dscp = pdscp->dscp;
847         hmap_insert(&new_xport->skb_priorities, &new_pdscp->hmap_node,
848                     hash_int(new_pdscp->skb_priority, 0));
849     }
850 }
851
852 /* Sets the current xlate configuration to new_xcfg and frees the old xlate
853  * configuration in xcfgp.
854  *
855  * This needs to be called after editing the xlate configuration.
856  *
857  * Functions that edit the new xlate configuration are
858  * xlate_<ofport/bundle/ofport>_set and xlate_<ofport/bundle/ofport>_remove.
859  *
860  * A sample workflow:
861  *
862  * xlate_txn_start();
863  * ...
864  * edit_xlate_configuration();
865  * ...
866  * xlate_txn_commit(); */
867 void
868 xlate_txn_commit(void)
869 {
870     struct xlate_cfg *xcfg = ovsrcu_get(struct xlate_cfg *, &xcfgp);
871
872     ovsrcu_set(&xcfgp, new_xcfg);
873     ovsrcu_synchronize();
874     xlate_xcfg_free(xcfg);
875     new_xcfg = NULL;
876 }
877
878 /* Copies the current xlate configuration in xcfgp to new_xcfg.
879  *
880  * This needs to be called prior to editing the xlate configuration. */
881 void
882 xlate_txn_start(void)
883 {
884     struct xbridge *xbridge;
885     struct xlate_cfg *xcfg;
886
887     ovs_assert(!new_xcfg);
888
889     new_xcfg = xmalloc(sizeof *new_xcfg);
890     hmap_init(&new_xcfg->xbridges);
891     hmap_init(&new_xcfg->xbundles);
892     hmap_init(&new_xcfg->xports);
893
894     xcfg = ovsrcu_get(struct xlate_cfg *, &xcfgp);
895     if (!xcfg) {
896         return;
897     }
898
899     HMAP_FOR_EACH (xbridge, hmap_node, &xcfg->xbridges) {
900         xlate_xbridge_copy(xbridge);
901     }
902 }
903
904
905 static void
906 xlate_xcfg_free(struct xlate_cfg *xcfg)
907 {
908     struct xbridge *xbridge, *next_xbridge;
909
910     if (!xcfg) {
911         return;
912     }
913
914     HMAP_FOR_EACH_SAFE (xbridge, next_xbridge, hmap_node, &xcfg->xbridges) {
915         xlate_xbridge_remove(xcfg, xbridge);
916     }
917
918     hmap_destroy(&xcfg->xbridges);
919     hmap_destroy(&xcfg->xbundles);
920     hmap_destroy(&xcfg->xports);
921     free(xcfg);
922 }
923
924 void
925 xlate_ofproto_set(struct ofproto_dpif *ofproto, const char *name,
926                   struct dpif *dpif,
927                   const struct mac_learning *ml, struct stp *stp,
928                   struct rstp *rstp, const struct mcast_snooping *ms,
929                   const struct mbridge *mbridge,
930                   const struct dpif_sflow *sflow,
931                   const struct dpif_ipfix *ipfix,
932                   const struct netflow *netflow,
933                   bool forward_bpdu, bool has_in_band,
934                   const struct dpif_backer_support *support)
935 {
936     struct xbridge *xbridge;
937
938     ovs_assert(new_xcfg);
939
940     xbridge = xbridge_lookup(new_xcfg, ofproto);
941     if (!xbridge) {
942         xbridge = xzalloc(sizeof *xbridge);
943         xbridge->ofproto = ofproto;
944
945         xlate_xbridge_init(new_xcfg, xbridge);
946     }
947
948     free(xbridge->name);
949     xbridge->name = xstrdup(name);
950
951     xlate_xbridge_set(xbridge, dpif, ml, stp, rstp, ms, mbridge, sflow, ipfix,
952                       netflow, forward_bpdu, has_in_band, support);
953 }
954
955 static void
956 xlate_xbridge_remove(struct xlate_cfg *xcfg, struct xbridge *xbridge)
957 {
958     struct xbundle *xbundle, *next_xbundle;
959     struct xport *xport, *next_xport;
960
961     if (!xbridge) {
962         return;
963     }
964
965     HMAP_FOR_EACH_SAFE (xport, next_xport, ofp_node, &xbridge->xports) {
966         xlate_xport_remove(xcfg, xport);
967     }
968
969     LIST_FOR_EACH_SAFE (xbundle, next_xbundle, list_node, &xbridge->xbundles) {
970         xlate_xbundle_remove(xcfg, xbundle);
971     }
972
973     hmap_remove(&xcfg->xbridges, &xbridge->hmap_node);
974     mac_learning_unref(xbridge->ml);
975     mcast_snooping_unref(xbridge->ms);
976     mbridge_unref(xbridge->mbridge);
977     dpif_sflow_unref(xbridge->sflow);
978     dpif_ipfix_unref(xbridge->ipfix);
979     stp_unref(xbridge->stp);
980     rstp_unref(xbridge->rstp);
981     hmap_destroy(&xbridge->xports);
982     free(xbridge->name);
983     free(xbridge);
984 }
985
986 void
987 xlate_remove_ofproto(struct ofproto_dpif *ofproto)
988 {
989     struct xbridge *xbridge;
990
991     ovs_assert(new_xcfg);
992
993     xbridge = xbridge_lookup(new_xcfg, ofproto);
994     xlate_xbridge_remove(new_xcfg, xbridge);
995 }
996
997 void
998 xlate_bundle_set(struct ofproto_dpif *ofproto, struct ofbundle *ofbundle,
999                  const char *name, enum port_vlan_mode vlan_mode, int vlan,
1000                  unsigned long *trunks, bool use_priority_tags,
1001                  const struct bond *bond, const struct lacp *lacp,
1002                  bool floodable)
1003 {
1004     struct xbundle *xbundle;
1005
1006     ovs_assert(new_xcfg);
1007
1008     xbundle = xbundle_lookup(new_xcfg, ofbundle);
1009     if (!xbundle) {
1010         xbundle = xzalloc(sizeof *xbundle);
1011         xbundle->ofbundle = ofbundle;
1012         xbundle->xbridge = xbridge_lookup(new_xcfg, ofproto);
1013
1014         xlate_xbundle_init(new_xcfg, xbundle);
1015     }
1016
1017     free(xbundle->name);
1018     xbundle->name = xstrdup(name);
1019
1020     xlate_xbundle_set(xbundle, vlan_mode, vlan, trunks,
1021                       use_priority_tags, bond, lacp, floodable);
1022 }
1023
1024 static void
1025 xlate_xbundle_remove(struct xlate_cfg *xcfg, struct xbundle *xbundle)
1026 {
1027     struct xport *xport;
1028
1029     if (!xbundle) {
1030         return;
1031     }
1032
1033     LIST_FOR_EACH_POP (xport, bundle_node, &xbundle->xports) {
1034         xport->xbundle = NULL;
1035     }
1036
1037     hmap_remove(&xcfg->xbundles, &xbundle->hmap_node);
1038     list_remove(&xbundle->list_node);
1039     bond_unref(xbundle->bond);
1040     lacp_unref(xbundle->lacp);
1041     free(xbundle->name);
1042     free(xbundle);
1043 }
1044
1045 void
1046 xlate_bundle_remove(struct ofbundle *ofbundle)
1047 {
1048     struct xbundle *xbundle;
1049
1050     ovs_assert(new_xcfg);
1051
1052     xbundle = xbundle_lookup(new_xcfg, ofbundle);
1053     xlate_xbundle_remove(new_xcfg, xbundle);
1054 }
1055
1056 void
1057 xlate_ofport_set(struct ofproto_dpif *ofproto, struct ofbundle *ofbundle,
1058                  struct ofport_dpif *ofport, ofp_port_t ofp_port,
1059                  odp_port_t odp_port, const struct netdev *netdev,
1060                  const struct cfm *cfm, const struct bfd *bfd,
1061                  const struct lldp *lldp, struct ofport_dpif *peer,
1062                  int stp_port_no, const struct rstp_port *rstp_port,
1063                  const struct ofproto_port_queue *qdscp_list, size_t n_qdscp,
1064                  enum ofputil_port_config config,
1065                  enum ofputil_port_state state, bool is_tunnel,
1066                  bool may_enable)
1067 {
1068     size_t i;
1069     struct xport *xport;
1070
1071     ovs_assert(new_xcfg);
1072
1073     xport = xport_lookup(new_xcfg, ofport);
1074     if (!xport) {
1075         xport = xzalloc(sizeof *xport);
1076         xport->ofport = ofport;
1077         xport->xbridge = xbridge_lookup(new_xcfg, ofproto);
1078         xport->ofp_port = ofp_port;
1079
1080         xlate_xport_init(new_xcfg, xport);
1081     }
1082
1083     ovs_assert(xport->ofp_port == ofp_port);
1084
1085     xlate_xport_set(xport, odp_port, netdev, cfm, bfd, lldp,
1086                     stp_port_no, rstp_port, config, state, is_tunnel,
1087                     may_enable);
1088
1089     if (xport->peer) {
1090         xport->peer->peer = NULL;
1091     }
1092     xport->peer = xport_lookup(new_xcfg, peer);
1093     if (xport->peer) {
1094         xport->peer->peer = xport;
1095     }
1096
1097     if (xport->xbundle) {
1098         list_remove(&xport->bundle_node);
1099     }
1100     xport->xbundle = xbundle_lookup(new_xcfg, ofbundle);
1101     if (xport->xbundle) {
1102         list_insert(&xport->xbundle->xports, &xport->bundle_node);
1103     }
1104
1105     clear_skb_priorities(xport);
1106     for (i = 0; i < n_qdscp; i++) {
1107         struct skb_priority_to_dscp *pdscp;
1108         uint32_t skb_priority;
1109
1110         if (dpif_queue_to_priority(xport->xbridge->dpif, qdscp_list[i].queue,
1111                                    &skb_priority)) {
1112             continue;
1113         }
1114
1115         pdscp = xmalloc(sizeof *pdscp);
1116         pdscp->skb_priority = skb_priority;
1117         pdscp->dscp = (qdscp_list[i].dscp << 2) & IP_DSCP_MASK;
1118         hmap_insert(&xport->skb_priorities, &pdscp->hmap_node,
1119                     hash_int(pdscp->skb_priority, 0));
1120     }
1121 }
1122
1123 static void
1124 xlate_xport_remove(struct xlate_cfg *xcfg, struct xport *xport)
1125 {
1126     if (!xport) {
1127         return;
1128     }
1129
1130     if (xport->peer) {
1131         xport->peer->peer = NULL;
1132         xport->peer = NULL;
1133     }
1134
1135     if (xport->xbundle) {
1136         list_remove(&xport->bundle_node);
1137     }
1138
1139     clear_skb_priorities(xport);
1140     hmap_destroy(&xport->skb_priorities);
1141
1142     hmap_remove(&xcfg->xports, &xport->hmap_node);
1143     hmap_remove(&xport->xbridge->xports, &xport->ofp_node);
1144
1145     netdev_close(xport->netdev);
1146     rstp_port_unref(xport->rstp_port);
1147     cfm_unref(xport->cfm);
1148     bfd_unref(xport->bfd);
1149     lldp_unref(xport->lldp);
1150     free(xport);
1151 }
1152
1153 void
1154 xlate_ofport_remove(struct ofport_dpif *ofport)
1155 {
1156     struct xport *xport;
1157
1158     ovs_assert(new_xcfg);
1159
1160     xport = xport_lookup(new_xcfg, ofport);
1161     xlate_xport_remove(new_xcfg, xport);
1162 }
1163
1164 static struct ofproto_dpif *
1165 xlate_lookup_ofproto_(const struct dpif_backer *backer, const struct flow *flow,
1166                       ofp_port_t *ofp_in_port, const struct xport **xportp)
1167 {
1168     struct xlate_cfg *xcfg = ovsrcu_get(struct xlate_cfg *, &xcfgp);
1169     const struct xport *xport;
1170
1171     xport = xport_lookup(xcfg, tnl_port_should_receive(flow)
1172                          ? tnl_port_receive(flow)
1173                          : odp_port_to_ofport(backer, flow->in_port.odp_port));
1174     if (OVS_UNLIKELY(!xport)) {
1175         return NULL;
1176     }
1177     *xportp = xport;
1178     if (ofp_in_port) {
1179         *ofp_in_port = xport->ofp_port;
1180     }
1181     return xport->xbridge->ofproto;
1182 }
1183
1184 /* Given a datapath and flow metadata ('backer', and 'flow' respectively)
1185  * returns the corresponding struct ofproto_dpif and OpenFlow port number. */
1186 struct ofproto_dpif *
1187 xlate_lookup_ofproto(const struct dpif_backer *backer, const struct flow *flow,
1188                      ofp_port_t *ofp_in_port)
1189 {
1190     const struct xport *xport;
1191
1192     return xlate_lookup_ofproto_(backer, flow, ofp_in_port, &xport);
1193 }
1194
1195 /* Given a datapath and flow metadata ('backer', and 'flow' respectively),
1196  * optionally populates 'ofproto' with the ofproto_dpif, 'ofp_in_port' with the
1197  * openflow in_port, and 'ipfix', 'sflow', and 'netflow' with the appropriate
1198  * handles for those protocols if they're enabled.  Caller may use the returned
1199  * pointers until quiescing, for longer term use additional references must
1200  * be taken.
1201  *
1202  * Returns 0 if successful, ENODEV if the parsed flow has no associated ofproto.
1203  */
1204 int
1205 xlate_lookup(const struct dpif_backer *backer, const struct flow *flow,
1206              struct ofproto_dpif **ofprotop, struct dpif_ipfix **ipfix,
1207              struct dpif_sflow **sflow, struct netflow **netflow,
1208              ofp_port_t *ofp_in_port)
1209 {
1210     struct ofproto_dpif *ofproto;
1211     const struct xport *xport;
1212
1213     ofproto = xlate_lookup_ofproto_(backer, flow, ofp_in_port, &xport);
1214
1215     if (!ofproto) {
1216         return ENODEV;
1217     }
1218
1219     if (ofprotop) {
1220         *ofprotop = ofproto;
1221     }
1222
1223     if (ipfix) {
1224         *ipfix = xport ? xport->xbridge->ipfix : NULL;
1225     }
1226
1227     if (sflow) {
1228         *sflow = xport ? xport->xbridge->sflow : NULL;
1229     }
1230
1231     if (netflow) {
1232         *netflow = xport ? xport->xbridge->netflow : NULL;
1233     }
1234
1235     return 0;
1236 }
1237
1238 static struct xbridge *
1239 xbridge_lookup(struct xlate_cfg *xcfg, const struct ofproto_dpif *ofproto)
1240 {
1241     struct hmap *xbridges;
1242     struct xbridge *xbridge;
1243
1244     if (!ofproto || !xcfg) {
1245         return NULL;
1246     }
1247
1248     xbridges = &xcfg->xbridges;
1249
1250     HMAP_FOR_EACH_IN_BUCKET (xbridge, hmap_node, hash_pointer(ofproto, 0),
1251                              xbridges) {
1252         if (xbridge->ofproto == ofproto) {
1253             return xbridge;
1254         }
1255     }
1256     return NULL;
1257 }
1258
1259 static struct xbridge *
1260 xbridge_lookup_by_uuid(struct xlate_cfg *xcfg, const struct uuid *uuid)
1261 {
1262     struct xbridge *xbridge;
1263
1264     HMAP_FOR_EACH (xbridge, hmap_node, &xcfg->xbridges) {
1265         if (uuid_equals(ofproto_dpif_get_uuid(xbridge->ofproto), uuid)) {
1266             return xbridge;
1267         }
1268     }
1269     return NULL;
1270 }
1271
1272 static struct xbundle *
1273 xbundle_lookup(struct xlate_cfg *xcfg, const struct ofbundle *ofbundle)
1274 {
1275     struct hmap *xbundles;
1276     struct xbundle *xbundle;
1277
1278     if (!ofbundle || !xcfg) {
1279         return NULL;
1280     }
1281
1282     xbundles = &xcfg->xbundles;
1283
1284     HMAP_FOR_EACH_IN_BUCKET (xbundle, hmap_node, hash_pointer(ofbundle, 0),
1285                              xbundles) {
1286         if (xbundle->ofbundle == ofbundle) {
1287             return xbundle;
1288         }
1289     }
1290     return NULL;
1291 }
1292
1293 static struct xport *
1294 xport_lookup(struct xlate_cfg *xcfg, const struct ofport_dpif *ofport)
1295 {
1296     struct hmap *xports;
1297     struct xport *xport;
1298
1299     if (!ofport || !xcfg) {
1300         return NULL;
1301     }
1302
1303     xports = &xcfg->xports;
1304
1305     HMAP_FOR_EACH_IN_BUCKET (xport, hmap_node, hash_pointer(ofport, 0),
1306                              xports) {
1307         if (xport->ofport == ofport) {
1308             return xport;
1309         }
1310     }
1311     return NULL;
1312 }
1313
1314 static struct stp_port *
1315 xport_get_stp_port(const struct xport *xport)
1316 {
1317     return xport->xbridge->stp && xport->stp_port_no != -1
1318         ? stp_get_port(xport->xbridge->stp, xport->stp_port_no)
1319         : NULL;
1320 }
1321
1322 static bool
1323 xport_stp_learn_state(const struct xport *xport)
1324 {
1325     struct stp_port *sp = xport_get_stp_port(xport);
1326     return sp
1327         ? stp_learn_in_state(stp_port_get_state(sp))
1328         : true;
1329 }
1330
1331 static bool
1332 xport_stp_forward_state(const struct xport *xport)
1333 {
1334     struct stp_port *sp = xport_get_stp_port(xport);
1335     return sp
1336         ? stp_forward_in_state(stp_port_get_state(sp))
1337         : true;
1338 }
1339
1340 static bool
1341 xport_stp_should_forward_bpdu(const struct xport *xport)
1342 {
1343     struct stp_port *sp = xport_get_stp_port(xport);
1344     return stp_should_forward_bpdu(sp ? stp_port_get_state(sp) : STP_DISABLED);
1345 }
1346
1347 /* Returns true if STP should process 'flow'.  Sets fields in 'wc' that
1348  * were used to make the determination.*/
1349 static bool
1350 stp_should_process_flow(const struct flow *flow, struct flow_wildcards *wc)
1351 {
1352     /* is_stp() also checks dl_type, but dl_type is always set in 'wc'. */
1353     memset(&wc->masks.dl_dst, 0xff, sizeof wc->masks.dl_dst);
1354     return is_stp(flow);
1355 }
1356
1357 static void
1358 stp_process_packet(const struct xport *xport, const struct dp_packet *packet)
1359 {
1360     struct stp_port *sp = xport_get_stp_port(xport);
1361     struct dp_packet payload = *packet;
1362     struct eth_header *eth = dp_packet_data(&payload);
1363
1364     /* Sink packets on ports that have STP disabled when the bridge has
1365      * STP enabled. */
1366     if (!sp || stp_port_get_state(sp) == STP_DISABLED) {
1367         return;
1368     }
1369
1370     /* Trim off padding on payload. */
1371     if (dp_packet_size(&payload) > ntohs(eth->eth_type) + ETH_HEADER_LEN) {
1372         dp_packet_set_size(&payload, ntohs(eth->eth_type) + ETH_HEADER_LEN);
1373     }
1374
1375     if (dp_packet_try_pull(&payload, ETH_HEADER_LEN + LLC_HEADER_LEN)) {
1376         stp_received_bpdu(sp, dp_packet_data(&payload), dp_packet_size(&payload));
1377     }
1378 }
1379
1380 static enum rstp_state
1381 xport_get_rstp_port_state(const struct xport *xport)
1382 {
1383     return xport->rstp_port
1384         ? rstp_port_get_state(xport->rstp_port)
1385         : RSTP_DISABLED;
1386 }
1387
1388 static bool
1389 xport_rstp_learn_state(const struct xport *xport)
1390 {
1391     return xport->xbridge->rstp && xport->rstp_port
1392         ? rstp_learn_in_state(xport_get_rstp_port_state(xport))
1393         : true;
1394 }
1395
1396 static bool
1397 xport_rstp_forward_state(const struct xport *xport)
1398 {
1399     return xport->xbridge->rstp && xport->rstp_port
1400         ? rstp_forward_in_state(xport_get_rstp_port_state(xport))
1401         : true;
1402 }
1403
1404 static bool
1405 xport_rstp_should_manage_bpdu(const struct xport *xport)
1406 {
1407     return rstp_should_manage_bpdu(xport_get_rstp_port_state(xport));
1408 }
1409
1410 static void
1411 rstp_process_packet(const struct xport *xport, const struct dp_packet *packet)
1412 {
1413     struct dp_packet payload = *packet;
1414     struct eth_header *eth = dp_packet_data(&payload);
1415
1416     /* Sink packets on ports that have no RSTP. */
1417     if (!xport->rstp_port) {
1418         return;
1419     }
1420
1421     /* Trim off padding on payload. */
1422     if (dp_packet_size(&payload) > ntohs(eth->eth_type) + ETH_HEADER_LEN) {
1423         dp_packet_set_size(&payload, ntohs(eth->eth_type) + ETH_HEADER_LEN);
1424     }
1425
1426     if (dp_packet_try_pull(&payload, ETH_HEADER_LEN + LLC_HEADER_LEN)) {
1427         rstp_port_received_bpdu(xport->rstp_port, dp_packet_data(&payload),
1428                                 dp_packet_size(&payload));
1429     }
1430 }
1431
1432 static struct xport *
1433 get_ofp_port(const struct xbridge *xbridge, ofp_port_t ofp_port)
1434 {
1435     struct xport *xport;
1436
1437     HMAP_FOR_EACH_IN_BUCKET (xport, ofp_node, hash_ofp_port(ofp_port),
1438                              &xbridge->xports) {
1439         if (xport->ofp_port == ofp_port) {
1440             return xport;
1441         }
1442     }
1443     return NULL;
1444 }
1445
1446 static odp_port_t
1447 ofp_port_to_odp_port(const struct xbridge *xbridge, ofp_port_t ofp_port)
1448 {
1449     const struct xport *xport = get_ofp_port(xbridge, ofp_port);
1450     return xport ? xport->odp_port : ODPP_NONE;
1451 }
1452
1453 static bool
1454 odp_port_is_alive(const struct xlate_ctx *ctx, ofp_port_t ofp_port)
1455 {
1456     struct xport *xport = get_ofp_port(ctx->xbridge, ofp_port);
1457     return xport && xport->may_enable;
1458 }
1459
1460 static struct ofputil_bucket *
1461 group_first_live_bucket(const struct xlate_ctx *, const struct group_dpif *,
1462                         int depth);
1463
1464 static bool
1465 group_is_alive(const struct xlate_ctx *ctx, uint32_t group_id, int depth)
1466 {
1467     struct group_dpif *group;
1468
1469     if (group_dpif_lookup(ctx->xbridge->ofproto, group_id, &group)) {
1470         struct ofputil_bucket *bucket;
1471
1472         bucket = group_first_live_bucket(ctx, group, depth);
1473         group_dpif_unref(group);
1474         return bucket == NULL;
1475     }
1476
1477     return false;
1478 }
1479
1480 #define MAX_LIVENESS_RECURSION 128 /* Arbitrary limit */
1481
1482 static bool
1483 bucket_is_alive(const struct xlate_ctx *ctx,
1484                 struct ofputil_bucket *bucket, int depth)
1485 {
1486     if (depth >= MAX_LIVENESS_RECURSION) {
1487         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
1488
1489         VLOG_WARN_RL(&rl, "bucket chaining exceeded %d links",
1490                      MAX_LIVENESS_RECURSION);
1491         return false;
1492     }
1493
1494     return (!ofputil_bucket_has_liveness(bucket)
1495             || (bucket->watch_port != OFPP_ANY
1496                && odp_port_is_alive(ctx, bucket->watch_port))
1497             || (bucket->watch_group != OFPG_ANY
1498                && group_is_alive(ctx, bucket->watch_group, depth + 1)));
1499 }
1500
1501 static struct ofputil_bucket *
1502 group_first_live_bucket(const struct xlate_ctx *ctx,
1503                         const struct group_dpif *group, int depth)
1504 {
1505     struct ofputil_bucket *bucket;
1506     const struct ovs_list *buckets;
1507
1508     group_dpif_get_buckets(group, &buckets);
1509     LIST_FOR_EACH (bucket, list_node, buckets) {
1510         if (bucket_is_alive(ctx, bucket, depth)) {
1511             return bucket;
1512         }
1513     }
1514
1515     return NULL;
1516 }
1517
1518 static struct ofputil_bucket *
1519 group_best_live_bucket(const struct xlate_ctx *ctx,
1520                        const struct group_dpif *group,
1521                        uint32_t basis)
1522 {
1523     struct ofputil_bucket *best_bucket = NULL;
1524     uint32_t best_score = 0;
1525     int i = 0;
1526
1527     struct ofputil_bucket *bucket;
1528     const struct ovs_list *buckets;
1529
1530     group_dpif_get_buckets(group, &buckets);
1531     LIST_FOR_EACH (bucket, list_node, buckets) {
1532         if (bucket_is_alive(ctx, bucket, 0)) {
1533             uint32_t score = (hash_int(i, basis) & 0xffff) * bucket->weight;
1534             if (score >= best_score) {
1535                 best_bucket = bucket;
1536                 best_score = score;
1537             }
1538         }
1539         i++;
1540     }
1541
1542     return best_bucket;
1543 }
1544
1545 static bool
1546 xbundle_trunks_vlan(const struct xbundle *bundle, uint16_t vlan)
1547 {
1548     return (bundle->vlan_mode != PORT_VLAN_ACCESS
1549             && (!bundle->trunks || bitmap_is_set(bundle->trunks, vlan)));
1550 }
1551
1552 static bool
1553 xbundle_includes_vlan(const struct xbundle *xbundle, uint16_t vlan)
1554 {
1555     return vlan == xbundle->vlan || xbundle_trunks_vlan(xbundle, vlan);
1556 }
1557
1558 static mirror_mask_t
1559 xbundle_mirror_out(const struct xbridge *xbridge, struct xbundle *xbundle)
1560 {
1561     return xbundle != &ofpp_none_bundle
1562         ? mirror_bundle_out(xbridge->mbridge, xbundle->ofbundle)
1563         : 0;
1564 }
1565
1566 static mirror_mask_t
1567 xbundle_mirror_src(const struct xbridge *xbridge, struct xbundle *xbundle)
1568 {
1569     return xbundle != &ofpp_none_bundle
1570         ? mirror_bundle_src(xbridge->mbridge, xbundle->ofbundle)
1571         : 0;
1572 }
1573
1574 static mirror_mask_t
1575 xbundle_mirror_dst(const struct xbridge *xbridge, struct xbundle *xbundle)
1576 {
1577     return xbundle != &ofpp_none_bundle
1578         ? mirror_bundle_dst(xbridge->mbridge, xbundle->ofbundle)
1579         : 0;
1580 }
1581
1582 static struct xbundle *
1583 lookup_input_bundle(const struct xbridge *xbridge, ofp_port_t in_port,
1584                     bool warn, struct xport **in_xportp)
1585 {
1586     struct xport *xport;
1587
1588     /* Find the port and bundle for the received packet. */
1589     xport = get_ofp_port(xbridge, in_port);
1590     if (in_xportp) {
1591         *in_xportp = xport;
1592     }
1593     if (xport && xport->xbundle) {
1594         return xport->xbundle;
1595     }
1596
1597     /* Special-case OFPP_NONE (OF1.0) and OFPP_CONTROLLER (OF1.1+),
1598      * which a controller may use as the ingress port for traffic that
1599      * it is sourcing. */
1600     if (in_port == OFPP_CONTROLLER || in_port == OFPP_NONE) {
1601         return &ofpp_none_bundle;
1602     }
1603
1604     /* Odd.  A few possible reasons here:
1605      *
1606      * - We deleted a port but there are still a few packets queued up
1607      *   from it.
1608      *
1609      * - Someone externally added a port (e.g. "ovs-dpctl add-if") that
1610      *   we don't know about.
1611      *
1612      * - The ofproto client didn't configure the port as part of a bundle.
1613      *   This is particularly likely to happen if a packet was received on the
1614      *   port after it was created, but before the client had a chance to
1615      *   configure its bundle.
1616      */
1617     if (warn) {
1618         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1619
1620         VLOG_WARN_RL(&rl, "bridge %s: received packet on unknown "
1621                      "port %"PRIu16, xbridge->name, in_port);
1622     }
1623     return NULL;
1624 }
1625
1626 /* Mirrors the packet represented by 'ctx' to appropriate mirror destinations,
1627  * given the packet is ingressing or egressing on 'xbundle', which has ingress
1628  * or egress (as appropriate) mirrors 'mirrors'. */
1629 static void
1630 mirror_packet(struct xlate_ctx *ctx, struct xbundle *xbundle,
1631               mirror_mask_t mirrors)
1632 {
1633     /* Figure out what VLAN the packet is in (because mirrors can select
1634      * packets on basis of VLAN). */
1635     bool warn = ctx->xin->packet != NULL;
1636     uint16_t vid = vlan_tci_to_vid(ctx->xin->flow.vlan_tci);
1637     if (!input_vid_is_valid(vid, xbundle, warn)) {
1638         return;
1639     }
1640     uint16_t vlan = input_vid_to_vlan(xbundle, vid);
1641
1642     const struct xbridge *xbridge = ctx->xbridge;
1643
1644     /* Don't mirror to destinations that we've already mirrored to. */
1645     mirrors &= ~ctx->mirrors;
1646     if (!mirrors) {
1647         return;
1648     }
1649
1650     if (ctx->xin->resubmit_stats) {
1651         mirror_update_stats(xbridge->mbridge, mirrors,
1652                             ctx->xin->resubmit_stats->n_packets,
1653                             ctx->xin->resubmit_stats->n_bytes);
1654     }
1655     if (ctx->xin->xcache) {
1656         struct xc_entry *entry;
1657
1658         entry = xlate_cache_add_entry(ctx->xin->xcache, XC_MIRROR);
1659         entry->u.mirror.mbridge = mbridge_ref(xbridge->mbridge);
1660         entry->u.mirror.mirrors = mirrors;
1661     }
1662
1663     /* 'mirrors' is a bit-mask of candidates for mirroring.  Iterate as long as
1664      * some candidates remain.  */
1665     while (mirrors) {
1666         const unsigned long *vlans;
1667         mirror_mask_t dup_mirrors;
1668         struct ofbundle *out;
1669         int out_vlan;
1670
1671         /* Get the details of the mirror represented by the rightmost 1-bit. */
1672         bool has_mirror = mirror_get(xbridge->mbridge, raw_ctz(mirrors),
1673                                      &vlans, &dup_mirrors, &out, &out_vlan);
1674         ovs_assert(has_mirror);
1675
1676         /* If this mirror selects on the basis of VLAN, and it does not select
1677          * 'vlan', then discard this mirror and go on to the next one. */
1678         if (vlans) {
1679             ctx->wc->masks.vlan_tci |= htons(VLAN_CFI | VLAN_VID_MASK);
1680         }
1681         if (vlans && !bitmap_is_set(vlans, vlan)) {
1682             mirrors = zero_rightmost_1bit(mirrors);
1683             continue;
1684         }
1685
1686         /* Record the mirror, and the mirrors that output to the same
1687          * destination, so that we don't mirror to them again.  This must be
1688          * done now to ensure that output_normal(), below, doesn't recursively
1689          * output to the same mirrors. */
1690         ctx->mirrors |= dup_mirrors;
1691
1692         /* Send the packet to the mirror. */
1693         if (out) {
1694             struct xlate_cfg *xcfg = ovsrcu_get(struct xlate_cfg *, &xcfgp);
1695             struct xbundle *out_xbundle = xbundle_lookup(xcfg, out);
1696             if (out_xbundle) {
1697                 output_normal(ctx, out_xbundle, vlan);
1698             }
1699         } else if (vlan != out_vlan
1700                    && !eth_addr_is_reserved(ctx->xin->flow.dl_dst)) {
1701             struct xbundle *xbundle;
1702
1703             LIST_FOR_EACH (xbundle, list_node, &xbridge->xbundles) {
1704                 if (xbundle_includes_vlan(xbundle, out_vlan)
1705                     && !xbundle_mirror_out(xbridge, xbundle)) {
1706                     output_normal(ctx, xbundle, out_vlan);
1707                 }
1708             }
1709         }
1710
1711         /* output_normal() could have recursively output (to different
1712          * mirrors), so make sure that we don't send duplicates. */
1713         mirrors &= ~ctx->mirrors;
1714     }
1715 }
1716
1717 static void
1718 mirror_ingress_packet(struct xlate_ctx *ctx)
1719 {
1720     if (mbridge_has_mirrors(ctx->xbridge->mbridge)) {
1721         bool warn = ctx->xin->packet != NULL;
1722         struct xbundle *xbundle = lookup_input_bundle(
1723             ctx->xbridge, ctx->xin->flow.in_port.ofp_port, warn, NULL);
1724         if (xbundle) {
1725             mirror_packet(ctx, xbundle,
1726                           xbundle_mirror_src(ctx->xbridge, xbundle));
1727         }
1728     }
1729 }
1730
1731 /* Given 'vid', the VID obtained from the 802.1Q header that was received as
1732  * part of a packet (specify 0 if there was no 802.1Q header), and 'in_xbundle',
1733  * the bundle on which the packet was received, returns the VLAN to which the
1734  * packet belongs.
1735  *
1736  * Both 'vid' and the return value are in the range 0...4095. */
1737 static uint16_t
1738 input_vid_to_vlan(const struct xbundle *in_xbundle, uint16_t vid)
1739 {
1740     switch (in_xbundle->vlan_mode) {
1741     case PORT_VLAN_ACCESS:
1742         return in_xbundle->vlan;
1743         break;
1744
1745     case PORT_VLAN_TRUNK:
1746         return vid;
1747
1748     case PORT_VLAN_NATIVE_UNTAGGED:
1749     case PORT_VLAN_NATIVE_TAGGED:
1750         return vid ? vid : in_xbundle->vlan;
1751
1752     default:
1753         OVS_NOT_REACHED();
1754     }
1755 }
1756
1757 /* Checks whether a packet with the given 'vid' may ingress on 'in_xbundle'.
1758  * If so, returns true.  Otherwise, returns false and, if 'warn' is true, logs
1759  * a warning.
1760  *
1761  * 'vid' should be the VID obtained from the 802.1Q header that was received as
1762  * part of a packet (specify 0 if there was no 802.1Q header), in the range
1763  * 0...4095. */
1764 static bool
1765 input_vid_is_valid(uint16_t vid, struct xbundle *in_xbundle, bool warn)
1766 {
1767     /* Allow any VID on the OFPP_NONE port. */
1768     if (in_xbundle == &ofpp_none_bundle) {
1769         return true;
1770     }
1771
1772     switch (in_xbundle->vlan_mode) {
1773     case PORT_VLAN_ACCESS:
1774         if (vid) {
1775             if (warn) {
1776                 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1777                 VLOG_WARN_RL(&rl, "dropping VLAN %"PRIu16" tagged "
1778                              "packet received on port %s configured as VLAN "
1779                              "%"PRIu16" access port", vid, in_xbundle->name,
1780                              in_xbundle->vlan);
1781             }
1782             return false;
1783         }
1784         return true;
1785
1786     case PORT_VLAN_NATIVE_UNTAGGED:
1787     case PORT_VLAN_NATIVE_TAGGED:
1788         if (!vid) {
1789             /* Port must always carry its native VLAN. */
1790             return true;
1791         }
1792         /* Fall through. */
1793     case PORT_VLAN_TRUNK:
1794         if (!xbundle_includes_vlan(in_xbundle, vid)) {
1795             if (warn) {
1796                 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1797                 VLOG_WARN_RL(&rl, "dropping VLAN %"PRIu16" packet "
1798                              "received on port %s not configured for trunking "
1799                              "VLAN %"PRIu16, vid, in_xbundle->name, vid);
1800             }
1801             return false;
1802         }
1803         return true;
1804
1805     default:
1806         OVS_NOT_REACHED();
1807     }
1808
1809 }
1810
1811 /* Given 'vlan', the VLAN that a packet belongs to, and
1812  * 'out_xbundle', a bundle on which the packet is to be output, returns the VID
1813  * that should be included in the 802.1Q header.  (If the return value is 0,
1814  * then the 802.1Q header should only be included in the packet if there is a
1815  * nonzero PCP.)
1816  *
1817  * Both 'vlan' and the return value are in the range 0...4095. */
1818 static uint16_t
1819 output_vlan_to_vid(const struct xbundle *out_xbundle, uint16_t vlan)
1820 {
1821     switch (out_xbundle->vlan_mode) {
1822     case PORT_VLAN_ACCESS:
1823         return 0;
1824
1825     case PORT_VLAN_TRUNK:
1826     case PORT_VLAN_NATIVE_TAGGED:
1827         return vlan;
1828
1829     case PORT_VLAN_NATIVE_UNTAGGED:
1830         return vlan == out_xbundle->vlan ? 0 : vlan;
1831
1832     default:
1833         OVS_NOT_REACHED();
1834     }
1835 }
1836
1837 static void
1838 output_normal(struct xlate_ctx *ctx, const struct xbundle *out_xbundle,
1839               uint16_t vlan)
1840 {
1841     ovs_be16 *flow_tci = &ctx->xin->flow.vlan_tci;
1842     uint16_t vid;
1843     ovs_be16 tci, old_tci;
1844     struct xport *xport;
1845     struct xlate_bond_recirc xr;
1846     bool use_recirc = false;
1847
1848     vid = output_vlan_to_vid(out_xbundle, vlan);
1849     if (list_is_empty(&out_xbundle->xports)) {
1850         /* Partially configured bundle with no slaves.  Drop the packet. */
1851         return;
1852     } else if (!out_xbundle->bond) {
1853         xport = CONTAINER_OF(list_front(&out_xbundle->xports), struct xport,
1854                              bundle_node);
1855     } else {
1856         struct xlate_cfg *xcfg = ovsrcu_get(struct xlate_cfg *, &xcfgp);
1857         struct flow_wildcards *wc = ctx->wc;
1858         struct ofport_dpif *ofport;
1859
1860         if (ctx->xbridge->support.odp.recirc) {
1861             use_recirc = bond_may_recirc(
1862                 out_xbundle->bond, &xr.recirc_id, &xr.hash_basis);
1863
1864             if (use_recirc) {
1865                 /* Only TCP mode uses recirculation. */
1866                 xr.hash_alg = OVS_HASH_ALG_L4;
1867                 bond_update_post_recirc_rules(out_xbundle->bond, false);
1868
1869                 /* Recirculation does not require unmasking hash fields. */
1870                 wc = NULL;
1871             }
1872         }
1873
1874         ofport = bond_choose_output_slave(out_xbundle->bond,
1875                                           &ctx->xin->flow, wc, vid);
1876         xport = xport_lookup(xcfg, ofport);
1877
1878         if (!xport) {
1879             /* No slaves enabled, so drop packet. */
1880             return;
1881         }
1882
1883         /* If use_recirc is set, the main thread will handle stats
1884          * accounting for this bond. */
1885         if (!use_recirc) {
1886             if (ctx->xin->resubmit_stats) {
1887                 bond_account(out_xbundle->bond, &ctx->xin->flow, vid,
1888                              ctx->xin->resubmit_stats->n_bytes);
1889             }
1890             if (ctx->xin->xcache) {
1891                 struct xc_entry *entry;
1892                 struct flow *flow;
1893
1894                 flow = &ctx->xin->flow;
1895                 entry = xlate_cache_add_entry(ctx->xin->xcache, XC_BOND);
1896                 entry->u.bond.bond = bond_ref(out_xbundle->bond);
1897                 entry->u.bond.flow = xmemdup(flow, sizeof *flow);
1898                 entry->u.bond.vid = vid;
1899             }
1900         }
1901     }
1902
1903     old_tci = *flow_tci;
1904     tci = htons(vid);
1905     if (tci || out_xbundle->use_priority_tags) {
1906         tci |= *flow_tci & htons(VLAN_PCP_MASK);
1907         if (tci) {
1908             tci |= htons(VLAN_CFI);
1909         }
1910     }
1911     *flow_tci = tci;
1912
1913     compose_output_action(ctx, xport->ofp_port, use_recirc ? &xr : NULL);
1914     *flow_tci = old_tci;
1915 }
1916
1917 /* A VM broadcasts a gratuitous ARP to indicate that it has resumed after
1918  * migration.  Older Citrix-patched Linux DomU used gratuitous ARP replies to
1919  * indicate this; newer upstream kernels use gratuitous ARP requests. */
1920 static bool
1921 is_gratuitous_arp(const struct flow *flow, struct flow_wildcards *wc)
1922 {
1923     if (flow->dl_type != htons(ETH_TYPE_ARP)) {
1924         return false;
1925     }
1926
1927     memset(&wc->masks.dl_dst, 0xff, sizeof wc->masks.dl_dst);
1928     if (!eth_addr_is_broadcast(flow->dl_dst)) {
1929         return false;
1930     }
1931
1932     memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
1933     if (flow->nw_proto == ARP_OP_REPLY) {
1934         return true;
1935     } else if (flow->nw_proto == ARP_OP_REQUEST) {
1936         memset(&wc->masks.nw_src, 0xff, sizeof wc->masks.nw_src);
1937         memset(&wc->masks.nw_dst, 0xff, sizeof wc->masks.nw_dst);
1938
1939         return flow->nw_src == flow->nw_dst;
1940     } else {
1941         return false;
1942     }
1943 }
1944
1945 /* Determines whether packets in 'flow' within 'xbridge' should be forwarded or
1946  * dropped.  Returns true if they may be forwarded, false if they should be
1947  * dropped.
1948  *
1949  * 'in_port' must be the xport that corresponds to flow->in_port.
1950  * 'in_port' must be part of a bundle (e.g. in_port->bundle must be nonnull).
1951  *
1952  * 'vlan' must be the VLAN that corresponds to flow->vlan_tci on 'in_port', as
1953  * returned by input_vid_to_vlan().  It must be a valid VLAN for 'in_port', as
1954  * checked by input_vid_is_valid().
1955  *
1956  * May also add tags to '*tags', although the current implementation only does
1957  * so in one special case.
1958  */
1959 static bool
1960 is_admissible(struct xlate_ctx *ctx, struct xport *in_port,
1961               uint16_t vlan)
1962 {
1963     struct xbundle *in_xbundle = in_port->xbundle;
1964     const struct xbridge *xbridge = ctx->xbridge;
1965     struct flow *flow = &ctx->xin->flow;
1966
1967     /* Drop frames for reserved multicast addresses
1968      * only if forward_bpdu option is absent. */
1969     if (!xbridge->forward_bpdu && eth_addr_is_reserved(flow->dl_dst)) {
1970         xlate_report(ctx, "packet has reserved destination MAC, dropping");
1971         return false;
1972     }
1973
1974     if (in_xbundle->bond) {
1975         struct mac_entry *mac;
1976
1977         switch (bond_check_admissibility(in_xbundle->bond, in_port->ofport,
1978                                          flow->dl_dst)) {
1979         case BV_ACCEPT:
1980             break;
1981
1982         case BV_DROP:
1983             xlate_report(ctx, "bonding refused admissibility, dropping");
1984             return false;
1985
1986         case BV_DROP_IF_MOVED:
1987             ovs_rwlock_rdlock(&xbridge->ml->rwlock);
1988             mac = mac_learning_lookup(xbridge->ml, flow->dl_src, vlan);
1989             if (mac
1990                 && mac_entry_get_port(xbridge->ml, mac) != in_xbundle->ofbundle
1991                 && (!is_gratuitous_arp(flow, ctx->wc)
1992                     || mac_entry_is_grat_arp_locked(mac))) {
1993                 ovs_rwlock_unlock(&xbridge->ml->rwlock);
1994                 xlate_report(ctx, "SLB bond thinks this packet looped back, "
1995                              "dropping");
1996                 return false;
1997             }
1998             ovs_rwlock_unlock(&xbridge->ml->rwlock);
1999             break;
2000         }
2001     }
2002
2003     return true;
2004 }
2005
2006 /* Checks whether a MAC learning update is necessary for MAC learning table
2007  * 'ml' given that a packet matching 'flow' was received  on 'in_xbundle' in
2008  * 'vlan'.
2009  *
2010  * Most packets processed through the MAC learning table do not actually
2011  * change it in any way.  This function requires only a read lock on the MAC
2012  * learning table, so it is much cheaper in this common case.
2013  *
2014  * Keep the code here synchronized with that in update_learning_table__()
2015  * below. */
2016 static bool
2017 is_mac_learning_update_needed(const struct mac_learning *ml,
2018                               const struct flow *flow,
2019                               struct flow_wildcards *wc,
2020                               int vlan, struct xbundle *in_xbundle)
2021 OVS_REQ_RDLOCK(ml->rwlock)
2022 {
2023     struct mac_entry *mac;
2024
2025     if (!mac_learning_may_learn(ml, flow->dl_src, vlan)) {
2026         return false;
2027     }
2028
2029     mac = mac_learning_lookup(ml, flow->dl_src, vlan);
2030     if (!mac || mac_entry_age(ml, mac)) {
2031         return true;
2032     }
2033
2034     if (is_gratuitous_arp(flow, wc)) {
2035         /* We don't want to learn from gratuitous ARP packets that are
2036          * reflected back over bond slaves so we lock the learning table. */
2037         if (!in_xbundle->bond) {
2038             return true;
2039         } else if (mac_entry_is_grat_arp_locked(mac)) {
2040             return false;
2041         }
2042     }
2043
2044     return mac_entry_get_port(ml, mac) != in_xbundle->ofbundle;
2045 }
2046
2047
2048 /* Updates MAC learning table 'ml' given that a packet matching 'flow' was
2049  * received on 'in_xbundle' in 'vlan'.
2050  *
2051  * This code repeats all the checks in is_mac_learning_update_needed() because
2052  * the lock was released between there and here and thus the MAC learning state
2053  * could have changed.
2054  *
2055  * Keep the code here synchronized with that in is_mac_learning_update_needed()
2056  * above. */
2057 static void
2058 update_learning_table__(const struct xbridge *xbridge,
2059                         const struct flow *flow, struct flow_wildcards *wc,
2060                         int vlan, struct xbundle *in_xbundle)
2061 OVS_REQ_WRLOCK(xbridge->ml->rwlock)
2062 {
2063     struct mac_entry *mac;
2064
2065     if (!mac_learning_may_learn(xbridge->ml, flow->dl_src, vlan)) {
2066         return;
2067     }
2068
2069     mac = mac_learning_insert(xbridge->ml, flow->dl_src, vlan);
2070     if (is_gratuitous_arp(flow, wc)) {
2071         /* We don't want to learn from gratuitous ARP packets that are
2072          * reflected back over bond slaves so we lock the learning table. */
2073         if (!in_xbundle->bond) {
2074             mac_entry_set_grat_arp_lock(mac);
2075         } else if (mac_entry_is_grat_arp_locked(mac)) {
2076             return;
2077         }
2078     }
2079
2080     if (mac_entry_get_port(xbridge->ml, mac) != in_xbundle->ofbundle) {
2081         /* The log messages here could actually be useful in debugging,
2082          * so keep the rate limit relatively high. */
2083         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(30, 300);
2084
2085         VLOG_DBG_RL(&rl, "bridge %s: learned that "ETH_ADDR_FMT" is "
2086                     "on port %s in VLAN %d",
2087                     xbridge->name, ETH_ADDR_ARGS(flow->dl_src),
2088                     in_xbundle->name, vlan);
2089
2090         mac_entry_set_port(xbridge->ml, mac, in_xbundle->ofbundle);
2091     }
2092 }
2093
2094 static void
2095 update_learning_table(const struct xbridge *xbridge,
2096                       const struct flow *flow, struct flow_wildcards *wc,
2097                       int vlan, struct xbundle *in_xbundle)
2098 {
2099     bool need_update;
2100
2101     /* Don't learn the OFPP_NONE port. */
2102     if (in_xbundle == &ofpp_none_bundle) {
2103         return;
2104     }
2105
2106     /* First try the common case: no change to MAC learning table. */
2107     ovs_rwlock_rdlock(&xbridge->ml->rwlock);
2108     need_update = is_mac_learning_update_needed(xbridge->ml, flow, wc, vlan,
2109                                                 in_xbundle);
2110     ovs_rwlock_unlock(&xbridge->ml->rwlock);
2111
2112     if (need_update) {
2113         /* Slow path: MAC learning table might need an update. */
2114         ovs_rwlock_wrlock(&xbridge->ml->rwlock);
2115         update_learning_table__(xbridge, flow, wc, vlan, in_xbundle);
2116         ovs_rwlock_unlock(&xbridge->ml->rwlock);
2117     }
2118 }
2119
2120 /* Updates multicast snooping table 'ms' given that a packet matching 'flow'
2121  * was received on 'in_xbundle' in 'vlan' and is either Report or Query. */
2122 static void
2123 update_mcast_snooping_table4__(const struct xbridge *xbridge,
2124                                const struct flow *flow,
2125                                struct mcast_snooping *ms, int vlan,
2126                                struct xbundle *in_xbundle,
2127                                const struct dp_packet *packet)
2128     OVS_REQ_WRLOCK(ms->rwlock)
2129 {
2130     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(60, 30);
2131     int count;
2132     ovs_be32 ip4 = flow->igmp_group_ip4;
2133
2134     switch (ntohs(flow->tp_src)) {
2135     case IGMP_HOST_MEMBERSHIP_REPORT:
2136     case IGMPV2_HOST_MEMBERSHIP_REPORT:
2137         if (mcast_snooping_add_group4(ms, ip4, vlan, in_xbundle->ofbundle)) {
2138             VLOG_DBG_RL(&rl, "bridge %s: multicast snooping learned that "
2139                         IP_FMT" is on port %s in VLAN %d",
2140                         xbridge->name, IP_ARGS(ip4), in_xbundle->name, vlan);
2141         }
2142         break;
2143     case IGMP_HOST_LEAVE_MESSAGE:
2144         if (mcast_snooping_leave_group4(ms, ip4, vlan, in_xbundle->ofbundle)) {
2145             VLOG_DBG_RL(&rl, "bridge %s: multicast snooping leaving "
2146                         IP_FMT" is on port %s in VLAN %d",
2147                         xbridge->name, IP_ARGS(ip4), in_xbundle->name, vlan);
2148         }
2149         break;
2150     case IGMP_HOST_MEMBERSHIP_QUERY:
2151         if (flow->nw_src && mcast_snooping_add_mrouter(ms, vlan,
2152             in_xbundle->ofbundle)) {
2153             VLOG_DBG_RL(&rl, "bridge %s: multicast snooping query from "
2154                         IP_FMT" is on port %s in VLAN %d",
2155                         xbridge->name, IP_ARGS(flow->nw_src),
2156                         in_xbundle->name, vlan);
2157         }
2158         break;
2159     case IGMPV3_HOST_MEMBERSHIP_REPORT:
2160         if ((count = mcast_snooping_add_report(ms, packet, vlan,
2161                                                in_xbundle->ofbundle))) {
2162             VLOG_DBG_RL(&rl, "bridge %s: multicast snooping processed %d "
2163                         "addresses on port %s in VLAN %d",
2164                         xbridge->name, count, in_xbundle->name, vlan);
2165         }
2166         break;
2167     }
2168 }
2169
2170 static void
2171 update_mcast_snooping_table6__(const struct xbridge *xbridge,
2172                                const struct flow *flow,
2173                                struct mcast_snooping *ms, int vlan,
2174                                struct xbundle *in_xbundle,
2175                                const struct dp_packet *packet)
2176     OVS_REQ_WRLOCK(ms->rwlock)
2177 {
2178     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(60, 30);
2179     int count;
2180
2181     switch (ntohs(flow->tp_src)) {
2182     case MLD_QUERY:
2183         if (!ipv6_addr_equals(&flow->ipv6_src, &in6addr_any)
2184             && mcast_snooping_add_mrouter(ms, vlan, in_xbundle->ofbundle)) {
2185             VLOG_DBG_RL(&rl, "bridge %s: multicast snooping query on port %s"
2186                         "in VLAN %d",
2187                         xbridge->name, in_xbundle->name, vlan);
2188         }
2189         break;
2190     case MLD_REPORT:
2191     case MLD_DONE:
2192     case MLD2_REPORT:
2193         count = mcast_snooping_add_mld(ms, packet, vlan, in_xbundle->ofbundle);
2194         if (count) {
2195             VLOG_DBG_RL(&rl, "bridge %s: multicast snooping processed %d "
2196                         "addresses on port %s in VLAN %d",
2197                         xbridge->name, count, in_xbundle->name, vlan);
2198         }
2199         break;
2200     }
2201 }
2202
2203 /* Updates multicast snooping table 'ms' given that a packet matching 'flow'
2204  * was received on 'in_xbundle' in 'vlan'. */
2205 static void
2206 update_mcast_snooping_table(const struct xbridge *xbridge,
2207                             const struct flow *flow, int vlan,
2208                             struct xbundle *in_xbundle,
2209                             const struct dp_packet *packet)
2210 {
2211     struct mcast_snooping *ms = xbridge->ms;
2212     struct xlate_cfg *xcfg;
2213     struct xbundle *mcast_xbundle;
2214     struct mcast_port_bundle *fport;
2215
2216     /* Don't learn the OFPP_NONE port. */
2217     if (in_xbundle == &ofpp_none_bundle) {
2218         return;
2219     }
2220
2221     /* Don't learn from flood ports */
2222     mcast_xbundle = NULL;
2223     ovs_rwlock_wrlock(&ms->rwlock);
2224     xcfg = ovsrcu_get(struct xlate_cfg *, &xcfgp);
2225     LIST_FOR_EACH(fport, node, &ms->fport_list) {
2226         mcast_xbundle = xbundle_lookup(xcfg, fport->port);
2227         if (mcast_xbundle == in_xbundle) {
2228             break;
2229         }
2230     }
2231
2232     if (!mcast_xbundle || mcast_xbundle != in_xbundle) {
2233         if (flow->dl_type == htons(ETH_TYPE_IP)) {
2234             update_mcast_snooping_table4__(xbridge, flow, ms, vlan,
2235                                            in_xbundle, packet);
2236         } else {
2237             update_mcast_snooping_table6__(xbridge, flow, ms, vlan,
2238                                            in_xbundle, packet);
2239         }
2240     }
2241     ovs_rwlock_unlock(&ms->rwlock);
2242 }
2243
2244 /* send the packet to ports having the multicast group learned */
2245 static void
2246 xlate_normal_mcast_send_group(struct xlate_ctx *ctx,
2247                               struct mcast_snooping *ms OVS_UNUSED,
2248                               struct mcast_group *grp,
2249                               struct xbundle *in_xbundle, uint16_t vlan)
2250     OVS_REQ_RDLOCK(ms->rwlock)
2251 {
2252     struct xlate_cfg *xcfg;
2253     struct mcast_group_bundle *b;
2254     struct xbundle *mcast_xbundle;
2255
2256     xcfg = ovsrcu_get(struct xlate_cfg *, &xcfgp);
2257     LIST_FOR_EACH(b, bundle_node, &grp->bundle_lru) {
2258         mcast_xbundle = xbundle_lookup(xcfg, b->port);
2259         if (mcast_xbundle && mcast_xbundle != in_xbundle) {
2260             xlate_report(ctx, "forwarding to mcast group port");
2261             output_normal(ctx, mcast_xbundle, vlan);
2262         } else if (!mcast_xbundle) {
2263             xlate_report(ctx, "mcast group port is unknown, dropping");
2264         } else {
2265             xlate_report(ctx, "mcast group port is input port, dropping");
2266         }
2267     }
2268 }
2269
2270 /* send the packet to ports connected to multicast routers */
2271 static void
2272 xlate_normal_mcast_send_mrouters(struct xlate_ctx *ctx,
2273                                  struct mcast_snooping *ms,
2274                                  struct xbundle *in_xbundle, uint16_t vlan)
2275     OVS_REQ_RDLOCK(ms->rwlock)
2276 {
2277     struct xlate_cfg *xcfg;
2278     struct mcast_mrouter_bundle *mrouter;
2279     struct xbundle *mcast_xbundle;
2280
2281     xcfg = ovsrcu_get(struct xlate_cfg *, &xcfgp);
2282     LIST_FOR_EACH(mrouter, mrouter_node, &ms->mrouter_lru) {
2283         mcast_xbundle = xbundle_lookup(xcfg, mrouter->port);
2284         if (mcast_xbundle && mcast_xbundle != in_xbundle) {
2285             xlate_report(ctx, "forwarding to mcast router port");
2286             output_normal(ctx, mcast_xbundle, vlan);
2287         } else if (!mcast_xbundle) {
2288             xlate_report(ctx, "mcast router port is unknown, dropping");
2289         } else {
2290             xlate_report(ctx, "mcast router port is input port, dropping");
2291         }
2292     }
2293 }
2294
2295 /* send the packet to ports flagged to be flooded */
2296 static void
2297 xlate_normal_mcast_send_fports(struct xlate_ctx *ctx,
2298                                struct mcast_snooping *ms,
2299                                struct xbundle *in_xbundle, uint16_t vlan)
2300     OVS_REQ_RDLOCK(ms->rwlock)
2301 {
2302     struct xlate_cfg *xcfg;
2303     struct mcast_port_bundle *fport;
2304     struct xbundle *mcast_xbundle;
2305
2306     xcfg = ovsrcu_get(struct xlate_cfg *, &xcfgp);
2307     LIST_FOR_EACH(fport, node, &ms->fport_list) {
2308         mcast_xbundle = xbundle_lookup(xcfg, fport->port);
2309         if (mcast_xbundle && mcast_xbundle != in_xbundle) {
2310             xlate_report(ctx, "forwarding to mcast flood port");
2311             output_normal(ctx, mcast_xbundle, vlan);
2312         } else if (!mcast_xbundle) {
2313             xlate_report(ctx, "mcast flood port is unknown, dropping");
2314         } else {
2315             xlate_report(ctx, "mcast flood port is input port, dropping");
2316         }
2317     }
2318 }
2319
2320 /* forward the Reports to configured ports */
2321 static void
2322 xlate_normal_mcast_send_rports(struct xlate_ctx *ctx,
2323                                struct mcast_snooping *ms,
2324                                struct xbundle *in_xbundle, uint16_t vlan)
2325     OVS_REQ_RDLOCK(ms->rwlock)
2326 {
2327     struct xlate_cfg *xcfg;
2328     struct mcast_port_bundle *rport;
2329     struct xbundle *mcast_xbundle;
2330
2331     xcfg = ovsrcu_get(struct xlate_cfg *, &xcfgp);
2332     LIST_FOR_EACH(rport, node, &ms->rport_list) {
2333         mcast_xbundle = xbundle_lookup(xcfg, rport->port);
2334         if (mcast_xbundle && mcast_xbundle != in_xbundle) {
2335             xlate_report(ctx, "forwarding Report to mcast flagged port");
2336             output_normal(ctx, mcast_xbundle, vlan);
2337         } else if (!mcast_xbundle) {
2338             xlate_report(ctx, "mcast port is unknown, dropping the Report");
2339         } else {
2340             xlate_report(ctx, "mcast port is input port, dropping the Report");
2341         }
2342     }
2343 }
2344
2345 static void
2346 xlate_normal_flood(struct xlate_ctx *ctx, struct xbundle *in_xbundle,
2347                    uint16_t vlan)
2348 {
2349     struct xbundle *xbundle;
2350
2351     LIST_FOR_EACH (xbundle, list_node, &ctx->xbridge->xbundles) {
2352         if (xbundle != in_xbundle
2353             && xbundle_includes_vlan(xbundle, vlan)
2354             && xbundle->floodable
2355             && !xbundle_mirror_out(ctx->xbridge, xbundle)) {
2356             output_normal(ctx, xbundle, vlan);
2357         }
2358     }
2359     ctx->nf_output_iface = NF_OUT_FLOOD;
2360 }
2361
2362 static void
2363 xlate_normal(struct xlate_ctx *ctx)
2364 {
2365     struct flow_wildcards *wc = ctx->wc;
2366     struct flow *flow = &ctx->xin->flow;
2367     struct xbundle *in_xbundle;
2368     struct xport *in_port;
2369     struct mac_entry *mac;
2370     void *mac_port;
2371     uint16_t vlan;
2372     uint16_t vid;
2373
2374     memset(&wc->masks.dl_src, 0xff, sizeof wc->masks.dl_src);
2375     memset(&wc->masks.dl_dst, 0xff, sizeof wc->masks.dl_dst);
2376     wc->masks.vlan_tci |= htons(VLAN_VID_MASK | VLAN_CFI);
2377
2378     in_xbundle = lookup_input_bundle(ctx->xbridge, flow->in_port.ofp_port,
2379                                      ctx->xin->packet != NULL, &in_port);
2380     if (!in_xbundle) {
2381         xlate_report(ctx, "no input bundle, dropping");
2382         return;
2383     }
2384
2385     /* Drop malformed frames. */
2386     if (flow->dl_type == htons(ETH_TYPE_VLAN) &&
2387         !(flow->vlan_tci & htons(VLAN_CFI))) {
2388         if (ctx->xin->packet != NULL) {
2389             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2390             VLOG_WARN_RL(&rl, "bridge %s: dropping packet with partial "
2391                          "VLAN tag received on port %s",
2392                          ctx->xbridge->name, in_xbundle->name);
2393         }
2394         xlate_report(ctx, "partial VLAN tag, dropping");
2395         return;
2396     }
2397
2398     /* Drop frames on bundles reserved for mirroring. */
2399     if (xbundle_mirror_out(ctx->xbridge, in_xbundle)) {
2400         if (ctx->xin->packet != NULL) {
2401             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2402             VLOG_WARN_RL(&rl, "bridge %s: dropping packet received on port "
2403                          "%s, which is reserved exclusively for mirroring",
2404                          ctx->xbridge->name, in_xbundle->name);
2405         }
2406         xlate_report(ctx, "input port is mirror output port, dropping");
2407         return;
2408     }
2409
2410     /* Check VLAN. */
2411     vid = vlan_tci_to_vid(flow->vlan_tci);
2412     if (!input_vid_is_valid(vid, in_xbundle, ctx->xin->packet != NULL)) {
2413         xlate_report(ctx, "disallowed VLAN VID for this input port, dropping");
2414         return;
2415     }
2416     vlan = input_vid_to_vlan(in_xbundle, vid);
2417
2418     /* Check other admissibility requirements. */
2419     if (in_port && !is_admissible(ctx, in_port, vlan)) {
2420         return;
2421     }
2422
2423     /* Learn source MAC. */
2424     if (ctx->xin->may_learn) {
2425         update_learning_table(ctx->xbridge, flow, wc, vlan, in_xbundle);
2426     }
2427     if (ctx->xin->xcache) {
2428         struct xc_entry *entry;
2429
2430         /* Save enough info to update mac learning table later. */
2431         entry = xlate_cache_add_entry(ctx->xin->xcache, XC_NORMAL);
2432         entry->u.normal.ofproto = ctx->xbridge->ofproto;
2433         entry->u.normal.flow = xmemdup(flow, sizeof *flow);
2434         entry->u.normal.vlan = vlan;
2435     }
2436
2437     /* Determine output bundle. */
2438     if (mcast_snooping_enabled(ctx->xbridge->ms)
2439         && !eth_addr_is_broadcast(flow->dl_dst)
2440         && eth_addr_is_multicast(flow->dl_dst)
2441         && is_ip_any(flow)) {
2442         struct mcast_snooping *ms = ctx->xbridge->ms;
2443         struct mcast_group *grp = NULL;
2444
2445         if (is_igmp(flow)) {
2446             if (mcast_snooping_is_membership(flow->tp_src) ||
2447                 mcast_snooping_is_query(flow->tp_src)) {
2448                 if (ctx->xin->may_learn && ctx->xin->packet) {
2449                     update_mcast_snooping_table(ctx->xbridge, flow, vlan,
2450                                                 in_xbundle, ctx->xin->packet);
2451                 }
2452                 /*
2453                  * IGMP packets need to take the slow path, in order to be
2454                  * processed for mdb updates. That will prevent expires
2455                  * firing off even after hosts have sent reports.
2456                  */
2457                 ctx->xout->slow |= SLOW_ACTION;
2458             }
2459
2460             if (mcast_snooping_is_membership(flow->tp_src)) {
2461                 ovs_rwlock_rdlock(&ms->rwlock);
2462                 xlate_normal_mcast_send_mrouters(ctx, ms, in_xbundle, vlan);
2463                 /* RFC4541: section 2.1.1, item 1: A snooping switch should
2464                  * forward IGMP Membership Reports only to those ports where
2465                  * multicast routers are attached.  Alternatively stated: a
2466                  * snooping switch should not forward IGMP Membership Reports
2467                  * to ports on which only hosts are attached.
2468                  * An administrative control may be provided to override this
2469                  * restriction, allowing the report messages to be flooded to
2470                  * other ports. */
2471                 xlate_normal_mcast_send_rports(ctx, ms, in_xbundle, vlan);
2472                 ovs_rwlock_unlock(&ms->rwlock);
2473             } else {
2474                 xlate_report(ctx, "multicast traffic, flooding");
2475                 xlate_normal_flood(ctx, in_xbundle, vlan);
2476             }
2477             return;
2478         } else if (is_mld(flow)) {
2479             ctx->xout->slow |= SLOW_ACTION;
2480             if (ctx->xin->may_learn && ctx->xin->packet) {
2481                 update_mcast_snooping_table(ctx->xbridge, flow, vlan,
2482                                             in_xbundle, ctx->xin->packet);
2483             }
2484             if (is_mld_report(flow)) {
2485                 ovs_rwlock_rdlock(&ms->rwlock);
2486                 xlate_normal_mcast_send_mrouters(ctx, ms, in_xbundle, vlan);
2487                 xlate_normal_mcast_send_rports(ctx, ms, in_xbundle, vlan);
2488                 ovs_rwlock_unlock(&ms->rwlock);
2489             } else {
2490                 xlate_report(ctx, "MLD query, flooding");
2491                 xlate_normal_flood(ctx, in_xbundle, vlan);
2492             }
2493         } else {
2494             if ((flow->dl_type == htons(ETH_TYPE_IP)
2495                  && ip_is_local_multicast(flow->nw_dst))
2496                 || (flow->dl_type == htons(ETH_TYPE_IPV6)
2497                     && ipv6_is_all_hosts(&flow->ipv6_dst))) {
2498                 /* RFC4541: section 2.1.2, item 2: Packets with a dst IP
2499                  * address in the 224.0.0.x range which are not IGMP must
2500                  * be forwarded on all ports */
2501                 xlate_report(ctx, "RFC4541: section 2.1.2, item 2, flooding");
2502                 xlate_normal_flood(ctx, in_xbundle, vlan);
2503                 return;
2504             }
2505         }
2506
2507         /* forwarding to group base ports */
2508         ovs_rwlock_rdlock(&ms->rwlock);
2509         if (flow->dl_type == htons(ETH_TYPE_IP)) {
2510             grp = mcast_snooping_lookup4(ms, flow->nw_dst, vlan);
2511         } else if (flow->dl_type == htons(ETH_TYPE_IPV6)) {
2512             grp = mcast_snooping_lookup(ms, &flow->ipv6_dst, vlan);
2513         }
2514         if (grp) {
2515             xlate_normal_mcast_send_group(ctx, ms, grp, in_xbundle, vlan);
2516             xlate_normal_mcast_send_fports(ctx, ms, in_xbundle, vlan);
2517             xlate_normal_mcast_send_mrouters(ctx, ms, in_xbundle, vlan);
2518         } else {
2519             if (mcast_snooping_flood_unreg(ms)) {
2520                 xlate_report(ctx, "unregistered multicast, flooding");
2521                 xlate_normal_flood(ctx, in_xbundle, vlan);
2522             } else {
2523                 xlate_normal_mcast_send_mrouters(ctx, ms, in_xbundle, vlan);
2524                 xlate_normal_mcast_send_fports(ctx, ms, in_xbundle, vlan);
2525             }
2526         }
2527         ovs_rwlock_unlock(&ms->rwlock);
2528     } else {
2529         ovs_rwlock_rdlock(&ctx->xbridge->ml->rwlock);
2530         mac = mac_learning_lookup(ctx->xbridge->ml, flow->dl_dst, vlan);
2531         mac_port = mac ? mac_entry_get_port(ctx->xbridge->ml, mac) : NULL;
2532         ovs_rwlock_unlock(&ctx->xbridge->ml->rwlock);
2533
2534         if (mac_port) {
2535             struct xlate_cfg *xcfg = ovsrcu_get(struct xlate_cfg *, &xcfgp);
2536             struct xbundle *mac_xbundle = xbundle_lookup(xcfg, mac_port);
2537             if (mac_xbundle && mac_xbundle != in_xbundle) {
2538                 xlate_report(ctx, "forwarding to learned port");
2539                 output_normal(ctx, mac_xbundle, vlan);
2540             } else if (!mac_xbundle) {
2541                 xlate_report(ctx, "learned port is unknown, dropping");
2542             } else {
2543                 xlate_report(ctx, "learned port is input port, dropping");
2544             }
2545         } else {
2546             xlate_report(ctx, "no learned MAC for destination, flooding");
2547             xlate_normal_flood(ctx, in_xbundle, vlan);
2548         }
2549     }
2550 }
2551
2552 /* Appends a "sample" action for sFlow or IPFIX to 'ctx->odp_actions'.  The
2553  * 'probability' is the number of packets out of UINT32_MAX to sample.  The
2554  * 'cookie' (of length 'cookie_size' bytes) is passed back in the callback for
2555  * each sampled packet.  'tunnel_out_port', if not ODPP_NONE, is added as the
2556  * OVS_USERSPACE_ATTR_EGRESS_TUN_PORT attribute.  If 'include_actions', an
2557  * OVS_USERSPACE_ATTR_ACTIONS attribute is added.
2558  */
2559 static size_t
2560 compose_sample_action(struct xlate_ctx *ctx,
2561                       const uint32_t probability,
2562                       const union user_action_cookie *cookie,
2563                       const size_t cookie_size,
2564                       const odp_port_t tunnel_out_port,
2565                       bool include_actions)
2566 {
2567     size_t sample_offset = nl_msg_start_nested(ctx->odp_actions,
2568                                                OVS_ACTION_ATTR_SAMPLE);
2569
2570     nl_msg_put_u32(ctx->odp_actions, OVS_SAMPLE_ATTR_PROBABILITY, probability);
2571
2572     size_t actions_offset = nl_msg_start_nested(ctx->odp_actions,
2573                                                 OVS_SAMPLE_ATTR_ACTIONS);
2574
2575     odp_port_t odp_port = ofp_port_to_odp_port(
2576         ctx->xbridge, ctx->xin->flow.in_port.ofp_port);
2577     uint32_t pid = dpif_port_get_pid(ctx->xbridge->dpif, odp_port,
2578                                      flow_hash_5tuple(&ctx->xin->flow, 0));
2579     int cookie_offset = odp_put_userspace_action(pid, cookie, cookie_size,
2580                                                  tunnel_out_port,
2581                                                  include_actions,
2582                                                  ctx->odp_actions);
2583
2584     nl_msg_end_nested(ctx->odp_actions, actions_offset);
2585     nl_msg_end_nested(ctx->odp_actions, sample_offset);
2586
2587     return cookie_offset;
2588 }
2589
2590 /* If sFLow is not enabled, returns 0 without doing anything.
2591  *
2592  * If sFlow is enabled, appends a template "sample" action to the ODP actions
2593  * in 'ctx'.  This action is a template because some of the information needed
2594  * to fill it out is not available until flow translation is complete.  In this
2595  * case, this functions returns an offset, which is always nonzero, to pass
2596  * later to fix_sflow_action() to fill in the rest of the template. */
2597 static size_t
2598 compose_sflow_action(struct xlate_ctx *ctx)
2599 {
2600     struct dpif_sflow *sflow = ctx->xbridge->sflow;
2601     if (!sflow || ctx->xin->flow.in_port.ofp_port == OFPP_NONE) {
2602         return 0;
2603     }
2604
2605     union user_action_cookie cookie = { .type = USER_ACTION_COOKIE_SFLOW };
2606     return compose_sample_action(ctx, dpif_sflow_get_probability(sflow),
2607                                  &cookie, sizeof cookie.sflow, ODPP_NONE,
2608                                  true);
2609 }
2610
2611 /* If IPFIX is enabled, this appends a "sample" action to implement IPFIX to
2612  * 'ctx->odp_actions'. */
2613 static void
2614 compose_ipfix_action(struct xlate_ctx *ctx, odp_port_t output_odp_port)
2615 {
2616     struct dpif_ipfix *ipfix = ctx->xbridge->ipfix;
2617     odp_port_t tunnel_out_port = ODPP_NONE;
2618
2619     if (!ipfix || ctx->xin->flow.in_port.ofp_port == OFPP_NONE) {
2620         return;
2621     }
2622
2623     /* For input case, output_odp_port is ODPP_NONE, which is an invalid port
2624      * number. */
2625     if (output_odp_port == ODPP_NONE &&
2626         !dpif_ipfix_get_bridge_exporter_input_sampling(ipfix)) {
2627         return;
2628     }
2629
2630     /* For output case, output_odp_port is valid*/
2631     if (output_odp_port != ODPP_NONE) {
2632         if (!dpif_ipfix_get_bridge_exporter_output_sampling(ipfix)) {
2633             return;
2634         }
2635         /* If tunnel sampling is enabled, put an additional option attribute:
2636          * OVS_USERSPACE_ATTR_TUNNEL_OUT_PORT
2637          */
2638         if (dpif_ipfix_get_bridge_exporter_tunnel_sampling(ipfix) &&
2639             dpif_ipfix_get_tunnel_port(ipfix, output_odp_port) ) {
2640            tunnel_out_port = output_odp_port;
2641         }
2642     }
2643
2644     union user_action_cookie cookie = {
2645         .ipfix = {
2646             .type = USER_ACTION_COOKIE_IPFIX,
2647             .output_odp_port = output_odp_port,
2648         }
2649     };
2650     compose_sample_action(ctx,
2651                           dpif_ipfix_get_bridge_exporter_probability(ipfix),
2652                           &cookie, sizeof cookie.ipfix, tunnel_out_port,
2653                           false);
2654 }
2655
2656 /* Fix "sample" action according to data collected while composing ODP actions,
2657  * as described in compose_sflow_action().
2658  *
2659  * 'user_cookie_offset' must be the offset returned by add_sflow_action(). */
2660 static void
2661 fix_sflow_action(struct xlate_ctx *ctx, unsigned int user_cookie_offset)
2662 {
2663     const struct flow *base = &ctx->base_flow;
2664     union user_action_cookie *cookie;
2665
2666     cookie = ofpbuf_at(ctx->odp_actions, user_cookie_offset,
2667                        sizeof cookie->sflow);
2668     ovs_assert(cookie->type == USER_ACTION_COOKIE_SFLOW);
2669
2670     cookie->type = USER_ACTION_COOKIE_SFLOW;
2671     cookie->sflow.vlan_tci = base->vlan_tci;
2672
2673     /* See http://www.sflow.org/sflow_version_5.txt (search for "Input/output
2674      * port information") for the interpretation of cookie->output. */
2675     switch (ctx->sflow_n_outputs) {
2676     case 0:
2677         /* 0x40000000 | 256 means "packet dropped for unknown reason". */
2678         cookie->sflow.output = 0x40000000 | 256;
2679         break;
2680
2681     case 1:
2682         cookie->sflow.output = dpif_sflow_odp_port_to_ifindex(
2683             ctx->xbridge->sflow, ctx->sflow_odp_port);
2684         if (cookie->sflow.output) {
2685             break;
2686         }
2687         /* Fall through. */
2688     default:
2689         /* 0x80000000 means "multiple output ports. */
2690         cookie->sflow.output = 0x80000000 | ctx->sflow_n_outputs;
2691         break;
2692     }
2693 }
2694
2695 static bool
2696 process_special(struct xlate_ctx *ctx, const struct xport *xport)
2697 {
2698     const struct flow *flow = &ctx->xin->flow;
2699     struct flow_wildcards *wc = ctx->wc;
2700     const struct xbridge *xbridge = ctx->xbridge;
2701     const struct dp_packet *packet = ctx->xin->packet;
2702     enum slow_path_reason slow;
2703
2704     if (!xport) {
2705         slow = 0;
2706     } else if (xport->cfm && cfm_should_process_flow(xport->cfm, flow, wc)) {
2707         if (packet) {
2708             cfm_process_heartbeat(xport->cfm, packet);
2709         }
2710         slow = SLOW_CFM;
2711     } else if (xport->bfd && bfd_should_process_flow(xport->bfd, flow, wc)) {
2712         if (packet) {
2713             bfd_process_packet(xport->bfd, flow, packet);
2714             /* If POLL received, immediately sends FINAL back. */
2715             if (bfd_should_send_packet(xport->bfd)) {
2716                 ofproto_dpif_monitor_port_send_soon(xport->ofport);
2717             }
2718         }
2719         slow = SLOW_BFD;
2720     } else if (xport->xbundle && xport->xbundle->lacp
2721                && flow->dl_type == htons(ETH_TYPE_LACP)) {
2722         if (packet) {
2723             lacp_process_packet(xport->xbundle->lacp, xport->ofport, packet);
2724         }
2725         slow = SLOW_LACP;
2726     } else if ((xbridge->stp || xbridge->rstp) &&
2727                stp_should_process_flow(flow, wc)) {
2728         if (packet) {
2729             xbridge->stp
2730                 ? stp_process_packet(xport, packet)
2731                 : rstp_process_packet(xport, packet);
2732         }
2733         slow = SLOW_STP;
2734     } else if (xport->lldp && lldp_should_process_flow(xport->lldp, flow)) {
2735         if (packet) {
2736             lldp_process_packet(xport->lldp, packet);
2737         }
2738         slow = SLOW_LLDP;
2739     } else {
2740         slow = 0;
2741     }
2742
2743     if (slow) {
2744         ctx->xout->slow |= slow;
2745         return true;
2746     } else {
2747         return false;
2748     }
2749 }
2750
2751 static int
2752 tnl_route_lookup_flow(const struct flow *oflow,
2753                       struct in6_addr *ip, struct xport **out_port)
2754 {
2755     char out_dev[IFNAMSIZ];
2756     struct xbridge *xbridge;
2757     struct xlate_cfg *xcfg;
2758     struct in6_addr gw;
2759     struct in6_addr dst;
2760
2761     dst = flow_tnl_dst(&oflow->tunnel);
2762     if (!ovs_router_lookup(&dst, out_dev, &gw)) {
2763         return -ENOENT;
2764     }
2765
2766     if (ipv6_addr_is_set(&gw) &&
2767         (!IN6_IS_ADDR_V4MAPPED(&gw) || in6_addr_get_mapped_ipv4(&gw))) {
2768         *ip = gw;
2769     } else {
2770         *ip = dst;
2771     }
2772
2773     xcfg = ovsrcu_get(struct xlate_cfg *, &xcfgp);
2774     ovs_assert(xcfg);
2775
2776     HMAP_FOR_EACH (xbridge, hmap_node, &xcfg->xbridges) {
2777         if (!strncmp(xbridge->name, out_dev, IFNAMSIZ)) {
2778             struct xport *port;
2779
2780             HMAP_FOR_EACH (port, ofp_node, &xbridge->xports) {
2781                 if (!strncmp(netdev_get_name(port->netdev), out_dev, IFNAMSIZ)) {
2782                     *out_port = port;
2783                     return 0;
2784                 }
2785             }
2786         }
2787     }
2788     return -ENOENT;
2789 }
2790
2791 static int
2792 compose_table_xlate(struct xlate_ctx *ctx, const struct xport *out_dev,
2793                     struct dp_packet *packet)
2794 {
2795     struct xbridge *xbridge = out_dev->xbridge;
2796     struct ofpact_output output;
2797     struct flow flow;
2798
2799     ofpact_init(&output.ofpact, OFPACT_OUTPUT, sizeof output);
2800     flow_extract(packet, &flow);
2801     flow.in_port.ofp_port = out_dev->ofp_port;
2802     output.port = OFPP_TABLE;
2803     output.max_len = 0;
2804
2805     return ofproto_dpif_execute_actions__(xbridge->ofproto, &flow, NULL,
2806                                           &output.ofpact, sizeof output,
2807                                           ctx->recurse, ctx->resubmits, packet);
2808 }
2809
2810 static void
2811 tnl_send_nd_request(struct xlate_ctx *ctx, const struct xport *out_dev,
2812                      const struct eth_addr eth_src,
2813                      struct in6_addr * ipv6_src, struct in6_addr * ipv6_dst)
2814 {
2815     struct dp_packet packet;
2816
2817     dp_packet_init(&packet, 0);
2818     compose_nd(&packet, eth_src, ipv6_src, ipv6_dst);
2819     compose_table_xlate(ctx, out_dev, &packet);
2820     dp_packet_uninit(&packet);
2821 }
2822
2823 static void
2824 tnl_send_arp_request(struct xlate_ctx *ctx, const struct xport *out_dev,
2825                      const struct eth_addr eth_src,
2826                      ovs_be32 ip_src, ovs_be32 ip_dst)
2827 {
2828     struct dp_packet packet;
2829
2830     dp_packet_init(&packet, 0);
2831     compose_arp(&packet, ARP_OP_REQUEST,
2832                 eth_src, eth_addr_zero, true, ip_src, ip_dst);
2833
2834     compose_table_xlate(ctx, out_dev, &packet);
2835     dp_packet_uninit(&packet);
2836 }
2837
2838 static int
2839 build_tunnel_send(struct xlate_ctx *ctx, const struct xport *xport,
2840                   const struct flow *flow, odp_port_t tunnel_odp_port)
2841 {
2842     struct ovs_action_push_tnl tnl_push_data;
2843     struct xport *out_dev = NULL;
2844     ovs_be32 s_ip = 0, d_ip = 0;
2845     struct in6_addr s_ip6 = in6addr_any;
2846     struct in6_addr d_ip6 = in6addr_any;
2847     struct eth_addr smac;
2848     struct eth_addr dmac;
2849     int err;
2850     char buf_sip6[INET6_ADDRSTRLEN];
2851     char buf_dip6[INET6_ADDRSTRLEN];
2852
2853     err = tnl_route_lookup_flow(flow, &d_ip6, &out_dev);
2854     if (err) {
2855         xlate_report(ctx, "native tunnel routing failed");
2856         return err;
2857     }
2858
2859     xlate_report(ctx, "tunneling to %s via %s",
2860                  ipv6_string_mapped(buf_dip6, &d_ip6),
2861                  netdev_get_name(out_dev->netdev));
2862
2863     /* Use mac addr of bridge port of the peer. */
2864     err = netdev_get_etheraddr(out_dev->netdev, &smac);
2865     if (err) {
2866         xlate_report(ctx, "tunnel output device lacks Ethernet address");
2867         return err;
2868     }
2869
2870     d_ip = in6_addr_get_mapped_ipv4(&d_ip6);
2871     if (d_ip) {
2872         err = netdev_get_in4(out_dev->netdev, (struct in_addr *) &s_ip, NULL);
2873         if (err) {
2874             xlate_report(ctx, "tunnel output device lacks IPv4 address");
2875             return err;
2876         }
2877         in6_addr_set_mapped_ipv4(&s_ip6, s_ip);
2878     } else {
2879         err = netdev_get_in6(out_dev->netdev, &s_ip6);
2880         if (err) {
2881             xlate_report(ctx, "tunnel output device lacks IPv6 address");
2882             return err;
2883         }
2884     }
2885
2886     err = tnl_neigh_lookup(out_dev->xbridge->name, &d_ip6, &dmac);
2887     if (err) {
2888         xlate_report(ctx, "neighbor cache miss for %s on bridge %s, "
2889                      "sending %s request",
2890                      buf_dip6, out_dev->xbridge->name, d_ip ? "ARP" : "ND");
2891         if (d_ip) {
2892             tnl_send_arp_request(ctx, out_dev, smac, s_ip, d_ip);
2893         } else {
2894             tnl_send_nd_request(ctx, out_dev, smac, &s_ip6, &d_ip6);
2895         }
2896         return err;
2897     }
2898
2899     if (ctx->xin->xcache) {
2900         struct xc_entry *entry;
2901
2902         entry = xlate_cache_add_entry(ctx->xin->xcache, XC_TNL_NEIGH);
2903         ovs_strlcpy(entry->u.tnl_neigh_cache.br_name, out_dev->xbridge->name,
2904                     sizeof entry->u.tnl_neigh_cache.br_name);
2905         entry->u.tnl_neigh_cache.d_ipv6 = d_ip6;
2906     }
2907
2908     xlate_report(ctx, "tunneling from "ETH_ADDR_FMT" %s"
2909                  " to "ETH_ADDR_FMT" %s",
2910                  ETH_ADDR_ARGS(smac), ipv6_string_mapped(buf_sip6, &s_ip6),
2911                  ETH_ADDR_ARGS(dmac), buf_dip6);
2912
2913     err = tnl_port_build_header(xport->ofport, flow,
2914                                 dmac, smac, &s_ip6, &tnl_push_data);
2915     if (err) {
2916         return err;
2917     }
2918     tnl_push_data.tnl_port = odp_to_u32(tunnel_odp_port);
2919     tnl_push_data.out_port = odp_to_u32(out_dev->odp_port);
2920     odp_put_tnl_push_action(ctx->odp_actions, &tnl_push_data);
2921     return 0;
2922 }
2923
2924 static void
2925 xlate_commit_actions(struct xlate_ctx *ctx)
2926 {
2927     bool use_masked = ctx->xbridge->support.masked_set_action;
2928
2929     ctx->xout->slow |= commit_odp_actions(&ctx->xin->flow, &ctx->base_flow,
2930                                           ctx->odp_actions, ctx->wc,
2931                                           use_masked);
2932 }
2933
2934 static void
2935 clear_conntrack(struct flow *flow)
2936 {
2937     flow->ct_state = 0;
2938     flow->ct_zone = 0;
2939     flow->ct_mark = 0;
2940     memset(&flow->ct_label, 0, sizeof flow->ct_label);
2941 }
2942
2943 static void
2944 compose_output_action__(struct xlate_ctx *ctx, ofp_port_t ofp_port,
2945                         const struct xlate_bond_recirc *xr, bool check_stp)
2946 {
2947     const struct xport *xport = get_ofp_port(ctx->xbridge, ofp_port);
2948     struct flow_wildcards *wc = ctx->wc;
2949     struct flow *flow = &ctx->xin->flow;
2950     struct flow_tnl flow_tnl;
2951     ovs_be16 flow_vlan_tci;
2952     uint32_t flow_pkt_mark;
2953     uint8_t flow_nw_tos;
2954     odp_port_t out_port, odp_port;
2955     bool tnl_push_pop_send = false;
2956     uint8_t dscp;
2957
2958     /* If 'struct flow' gets additional metadata, we'll need to zero it out
2959      * before traversing a patch port. */
2960     BUILD_ASSERT_DECL(FLOW_WC_SEQ == 35);
2961     memset(&flow_tnl, 0, sizeof flow_tnl);
2962
2963     if (!xport) {
2964         xlate_report(ctx, "Nonexistent output port");
2965         return;
2966     } else if (xport->config & OFPUTIL_PC_NO_FWD) {
2967         xlate_report(ctx, "OFPPC_NO_FWD set, skipping output");
2968         return;
2969     } else if (check_stp) {
2970         if (is_stp(&ctx->base_flow)) {
2971             if (!xport_stp_should_forward_bpdu(xport) &&
2972                 !xport_rstp_should_manage_bpdu(xport)) {
2973                 if (ctx->xbridge->stp != NULL) {
2974                     xlate_report(ctx, "STP not in listening state, "
2975                             "skipping bpdu output");
2976                 } else if (ctx->xbridge->rstp != NULL) {
2977                     xlate_report(ctx, "RSTP not managing BPDU in this state, "
2978                             "skipping bpdu output");
2979                 }
2980                 return;
2981             }
2982         } else if (!xport_stp_forward_state(xport) ||
2983                    !xport_rstp_forward_state(xport)) {
2984             if (ctx->xbridge->stp != NULL) {
2985                 xlate_report(ctx, "STP not in forwarding state, "
2986                         "skipping output");
2987             } else if (ctx->xbridge->rstp != NULL) {
2988                 xlate_report(ctx, "RSTP not in forwarding state, "
2989                         "skipping output");
2990             }
2991             return;
2992         }
2993     }
2994
2995     if (xport->peer) {
2996         const struct xport *peer = xport->peer;
2997         struct flow old_flow = ctx->xin->flow;
2998         bool old_conntrack = ctx->conntracked;
2999         cls_version_t old_version = ctx->tables_version;
3000         struct ofpbuf old_stack = ctx->stack;
3001         union mf_subvalue new_stack[1024 / sizeof(union mf_subvalue)];
3002         struct ofpbuf old_action_set = ctx->action_set;
3003         uint64_t actset_stub[1024 / 8];
3004
3005         ofpbuf_use_stub(&ctx->stack, new_stack, sizeof new_stack);
3006         ofpbuf_use_stub(&ctx->action_set, actset_stub, sizeof actset_stub);
3007         ctx->xbridge = peer->xbridge;
3008         flow->in_port.ofp_port = peer->ofp_port;
3009         flow->metadata = htonll(0);
3010         memset(&flow->tunnel, 0, sizeof flow->tunnel);
3011         memset(flow->regs, 0, sizeof flow->regs);
3012         flow->actset_output = OFPP_UNSET;
3013         ctx->conntracked = false;
3014         clear_conntrack(flow);
3015
3016         /* The bridge is now known so obtain its table version. */
3017         ctx->tables_version
3018             = ofproto_dpif_get_tables_version(ctx->xbridge->ofproto);
3019
3020         if (!process_special(ctx, peer) && may_receive(peer, ctx)) {
3021             if (xport_stp_forward_state(peer) && xport_rstp_forward_state(peer)) {
3022                 xlate_table_action(ctx, flow->in_port.ofp_port, 0, true, true);
3023                 if (!ctx->freezing) {
3024                     xlate_action_set(ctx);
3025                 }
3026                 if (ctx->freezing) {
3027                     finish_freezing(ctx);
3028                 }
3029             } else {
3030                 /* Forwarding is disabled by STP and RSTP.  Let OFPP_NORMAL and
3031                  * the learning action look at the packet, then drop it. */
3032                 struct flow old_base_flow = ctx->base_flow;
3033                 size_t old_size = ctx->odp_actions->size;
3034                 mirror_mask_t old_mirrors = ctx->mirrors;
3035
3036                 xlate_table_action(ctx, flow->in_port.ofp_port, 0, true, true);
3037                 ctx->mirrors = old_mirrors;
3038                 ctx->base_flow = old_base_flow;
3039                 ctx->odp_actions->size = old_size;
3040
3041                 /* Undo changes that may have been done for freezing. */
3042                 ctx_cancel_freeze(ctx);
3043             }
3044         }
3045
3046         ctx->xin->flow = old_flow;
3047         ctx->xbridge = xport->xbridge;
3048         ofpbuf_uninit(&ctx->action_set);
3049         ctx->action_set = old_action_set;
3050         ofpbuf_uninit(&ctx->stack);
3051         ctx->stack = old_stack;
3052
3053         /* Restore calling bridge's lookup version. */
3054         ctx->tables_version = old_version;
3055
3056         /* The peer bridge's conntrack execution should have no effect on the
3057          * original bridge. */
3058         ctx->conntracked = old_conntrack;
3059
3060         /* The fact that the peer bridge exits (for any reason) does not mean
3061          * that the original bridge should exit.  Specifically, if the peer
3062          * bridge freezes translation, the original bridge must continue
3063          * processing with the original, not the frozen packet! */
3064         ctx->exit = false;
3065
3066         /* Peer bridge errors do not propagate back. */
3067         ctx->error = XLATE_OK;
3068
3069         if (ctx->xin->resubmit_stats) {
3070             netdev_vport_inc_tx(xport->netdev, ctx->xin->resubmit_stats);
3071             netdev_vport_inc_rx(peer->netdev, ctx->xin->resubmit_stats);
3072             if (peer->bfd) {
3073                 bfd_account_rx(peer->bfd, ctx->xin->resubmit_stats);
3074             }
3075         }
3076         if (ctx->xin->xcache) {
3077             struct xc_entry *entry;
3078
3079             entry = xlate_cache_add_entry(ctx->xin->xcache, XC_NETDEV);
3080             entry->u.dev.tx = netdev_ref(xport->netdev);
3081             entry->u.dev.rx = netdev_ref(peer->netdev);
3082             entry->u.dev.bfd = bfd_ref(peer->bfd);
3083         }
3084         return;
3085     }
3086
3087     flow_vlan_tci = flow->vlan_tci;
3088     flow_pkt_mark = flow->pkt_mark;
3089     flow_nw_tos = flow->nw_tos;
3090
3091     if (count_skb_priorities(xport)) {
3092         memset(&wc->masks.skb_priority, 0xff, sizeof wc->masks.skb_priority);
3093         if (dscp_from_skb_priority(xport, flow->skb_priority, &dscp)) {
3094             wc->masks.nw_tos |= IP_DSCP_MASK;
3095             flow->nw_tos &= ~IP_DSCP_MASK;
3096             flow->nw_tos |= dscp;
3097         }
3098     }
3099
3100     if (xport->is_tunnel) {
3101         struct in6_addr dst;
3102          /* Save tunnel metadata so that changes made due to
3103           * the Logical (tunnel) Port are not visible for any further
3104           * matches, while explicit set actions on tunnel metadata are.
3105           */
3106         flow_tnl = flow->tunnel;
3107         odp_port = tnl_port_send(xport->ofport, flow, ctx->wc);
3108         if (odp_port == ODPP_NONE) {
3109             xlate_report(ctx, "Tunneling decided against output");
3110             goto out; /* restore flow_nw_tos */
3111         }
3112         dst = flow_tnl_dst(&flow->tunnel);
3113         if (ipv6_addr_equals(&dst, &ctx->orig_tunnel_ipv6_dst)) {
3114             xlate_report(ctx, "Not tunneling to our own address");
3115             goto out; /* restore flow_nw_tos */
3116         }
3117         if (ctx->xin->resubmit_stats) {
3118             netdev_vport_inc_tx(xport->netdev, ctx->xin->resubmit_stats);
3119         }
3120         if (ctx->xin->xcache) {
3121             struct xc_entry *entry;
3122
3123             entry = xlate_cache_add_entry(ctx->xin->xcache, XC_NETDEV);
3124             entry->u.dev.tx = netdev_ref(xport->netdev);
3125         }
3126         out_port = odp_port;
3127         if (ovs_native_tunneling_is_on(ctx->xbridge->ofproto)) {
3128             xlate_report(ctx, "output to native tunnel");
3129             tnl_push_pop_send = true;
3130         } else {
3131             xlate_report(ctx, "output to kernel tunnel");
3132             commit_odp_tunnel_action(flow, &ctx->base_flow, ctx->odp_actions);
3133             flow->tunnel = flow_tnl; /* Restore tunnel metadata */
3134         }
3135     } else {
3136         odp_port = xport->odp_port;
3137         out_port = odp_port;
3138         if (ofproto_has_vlan_splinters(ctx->xbridge->ofproto)) {
3139             ofp_port_t vlandev_port;
3140
3141             wc->masks.vlan_tci |= htons(VLAN_VID_MASK | VLAN_CFI);
3142             vlandev_port = vsp_realdev_to_vlandev(ctx->xbridge->ofproto,
3143                                                   ofp_port, flow->vlan_tci);
3144             if (vlandev_port != ofp_port) {
3145                 out_port = ofp_port_to_odp_port(ctx->xbridge, vlandev_port);
3146                 flow->vlan_tci = htons(0);
3147             }
3148         }
3149     }
3150
3151     if (out_port != ODPP_NONE) {
3152         xlate_commit_actions(ctx);
3153
3154         if (xr) {
3155             struct ovs_action_hash *act_hash;
3156
3157             /* Hash action. */
3158             act_hash = nl_msg_put_unspec_uninit(ctx->odp_actions,
3159                                                 OVS_ACTION_ATTR_HASH,
3160                                                 sizeof *act_hash);
3161             act_hash->hash_alg = xr->hash_alg;
3162             act_hash->hash_basis = xr->hash_basis;
3163
3164             /* Recirc action. */
3165             nl_msg_put_u32(ctx->odp_actions, OVS_ACTION_ATTR_RECIRC,
3166                            xr->recirc_id);
3167         } else {
3168
3169             if (tnl_push_pop_send) {
3170                 build_tunnel_send(ctx, xport, flow, odp_port);
3171                 flow->tunnel = flow_tnl; /* Restore tunnel metadata */
3172             } else {
3173                 odp_port_t odp_tnl_port = ODPP_NONE;
3174
3175                 /* XXX: Write better Filter for tunnel port. We can use inport
3176                 * int tunnel-port flow to avoid these checks completely. */
3177                 if (ofp_port == OFPP_LOCAL &&
3178                     ovs_native_tunneling_is_on(ctx->xbridge->ofproto)) {
3179
3180                     odp_tnl_port = tnl_port_map_lookup(flow, wc);
3181                 }
3182
3183                 if (odp_tnl_port != ODPP_NONE) {
3184                     nl_msg_put_odp_port(ctx->odp_actions,
3185                                         OVS_ACTION_ATTR_TUNNEL_POP,
3186                                         odp_tnl_port);
3187                 } else {
3188                     /* Tunnel push-pop action is not compatible with
3189                      * IPFIX action. */
3190                     compose_ipfix_action(ctx, out_port);
3191                     nl_msg_put_odp_port(ctx->odp_actions,
3192                                         OVS_ACTION_ATTR_OUTPUT,
3193                                         out_port);
3194                }
3195            }
3196         }
3197
3198         ctx->sflow_odp_port = odp_port;
3199         ctx->sflow_n_outputs++;
3200         ctx->nf_output_iface = ofp_port;
3201     }
3202
3203     if (mbridge_has_mirrors(ctx->xbridge->mbridge) && xport->xbundle) {
3204         mirror_packet(ctx, xport->xbundle,
3205                       xbundle_mirror_dst(xport->xbundle->xbridge,
3206                                          xport->xbundle));
3207     }
3208
3209  out:
3210     /* Restore flow */
3211     flow->vlan_tci = flow_vlan_tci;
3212     flow->pkt_mark = flow_pkt_mark;
3213     flow->nw_tos = flow_nw_tos;
3214 }
3215
3216 static void
3217 compose_output_action(struct xlate_ctx *ctx, ofp_port_t ofp_port,
3218                       const struct xlate_bond_recirc *xr)
3219 {
3220     compose_output_action__(ctx, ofp_port, xr, true);
3221 }
3222
3223 static void
3224 xlate_recursively(struct xlate_ctx *ctx, struct rule_dpif *rule)
3225 {
3226     struct rule_dpif *old_rule = ctx->rule;
3227     ovs_be64 old_cookie = ctx->rule_cookie;
3228     const struct rule_actions *actions;
3229
3230     if (ctx->xin->resubmit_stats) {
3231         rule_dpif_credit_stats(rule, ctx->xin->resubmit_stats);
3232     }
3233
3234     ctx->resubmits++;
3235     ctx->recurse++;
3236     ctx->rule = rule;
3237     ctx->rule_cookie = rule_dpif_get_flow_cookie(rule);
3238     actions = rule_dpif_get_actions(rule);
3239     do_xlate_actions(actions->ofpacts, actions->ofpacts_len, ctx);
3240     ctx->rule_cookie = old_cookie;
3241     ctx->rule = old_rule;
3242     ctx->recurse--;
3243 }
3244
3245 static bool
3246 xlate_resubmit_resource_check(struct xlate_ctx *ctx)
3247 {
3248     if (ctx->recurse >= MAX_RESUBMIT_RECURSION + MAX_INTERNAL_RESUBMITS) {
3249         XLATE_REPORT_ERROR(ctx, "resubmit actions recursed over %d times",
3250                            MAX_RESUBMIT_RECURSION);
3251         ctx->error = XLATE_RECURSION_TOO_DEEP;
3252     } else if (ctx->resubmits >= MAX_RESUBMITS + MAX_INTERNAL_RESUBMITS) {
3253         XLATE_REPORT_ERROR(ctx, "over %d resubmit actions", MAX_RESUBMITS);
3254         ctx->error = XLATE_TOO_MANY_RESUBMITS;
3255     } else if (ctx->odp_actions->size > UINT16_MAX) {
3256         XLATE_REPORT_ERROR(ctx, "resubmits yielded over 64 kB of actions");
3257         /* NOT an error, as we'll be slow-pathing the flow in this case? */
3258         ctx->exit = true; /* XXX: translation still terminated! */
3259     } else if (ctx->stack.size >= 65536) {
3260         XLATE_REPORT_ERROR(ctx, "resubmits yielded over 64 kB of stack");
3261         ctx->error = XLATE_STACK_TOO_DEEP;
3262     } else {
3263         return true;
3264     }
3265
3266     return false;
3267 }
3268
3269 static void
3270 xlate_table_action(struct xlate_ctx *ctx, ofp_port_t in_port, uint8_t table_id,
3271                    bool may_packet_in, bool honor_table_miss)
3272 {
3273     if (xlate_resubmit_resource_check(ctx)) {
3274         uint8_t old_table_id = ctx->table_id;
3275         struct rule_dpif *rule;
3276
3277         ctx->table_id = table_id;
3278
3279         rule = rule_dpif_lookup_from_table(ctx->xbridge->ofproto,
3280                                            ctx->tables_version,
3281                                            &ctx->xin->flow, ctx->xin->wc,
3282                                            ctx->xin->resubmit_stats,
3283                                            &ctx->table_id, in_port,
3284                                            may_packet_in, honor_table_miss);
3285
3286         if (OVS_UNLIKELY(ctx->xin->resubmit_hook)) {
3287             ctx->xin->resubmit_hook(ctx->xin, rule, ctx->recurse + 1);
3288         }
3289
3290         if (rule) {
3291             /* Fill in the cache entry here instead of xlate_recursively
3292              * to make the reference counting more explicit.  We take a
3293              * reference in the lookups above if we are going to cache the
3294              * rule. */
3295             if (ctx->xin->xcache) {
3296                 struct xc_entry *entry;
3297
3298                 entry = xlate_cache_add_entry(ctx->xin->xcache, XC_RULE);
3299                 entry->u.rule = rule;
3300                 rule_dpif_ref(rule);
3301             }
3302             xlate_recursively(ctx, rule);
3303         }
3304
3305         ctx->table_id = old_table_id;
3306         return;
3307     }
3308 }
3309
3310 static void
3311 xlate_group_stats(struct xlate_ctx *ctx, struct group_dpif *group,
3312                   struct ofputil_bucket *bucket)
3313 {
3314     if (ctx->xin->resubmit_stats) {
3315         group_dpif_credit_stats(group, bucket, ctx->xin->resubmit_stats);
3316     }
3317     if (ctx->xin->xcache) {
3318         struct xc_entry *entry;
3319
3320         entry = xlate_cache_add_entry(ctx->xin->xcache, XC_GROUP);
3321         entry->u.group.group = group_dpif_ref(group);
3322         entry->u.group.bucket = bucket;
3323     }
3324 }
3325
3326 static void
3327 xlate_group_bucket(struct xlate_ctx *ctx, struct ofputil_bucket *bucket)
3328 {
3329     uint64_t action_list_stub[1024 / 8];
3330     struct ofpbuf action_list = OFPBUF_STUB_INITIALIZER(action_list_stub);
3331     struct ofpbuf action_set = ofpbuf_const_initializer(bucket->ofpacts,
3332                                                         bucket->ofpacts_len);
3333     struct flow old_flow = ctx->xin->flow;
3334
3335     ofpacts_execute_action_set(&action_list, &action_set);
3336     ctx->recurse++;
3337     do_xlate_actions(action_list.data, action_list.size, ctx);
3338     ctx->recurse--;
3339
3340     ofpbuf_uninit(&action_list);
3341
3342     /* Check if need to freeze. */
3343     if (ctx->freezing) {
3344         finish_freezing(ctx);
3345     }
3346
3347     /* Roll back flow to previous state.
3348      * This is equivalent to cloning the packet for each bucket.
3349      *
3350      * As a side effect any subsequently applied actions will
3351      * also effectively be applied to a clone of the packet taken
3352      * just before applying the all or indirect group.
3353      *
3354      * Note that group buckets are action sets, hence they cannot modify the
3355      * main action set.  Also any stack actions are ignored when executing an
3356      * action set, so group buckets cannot change the stack either.
3357      * However, we do allow resubmit actions in group buckets, which could
3358      * break the above assumptions.  It is up to the controller to not mess up
3359      * with the action_set and stack in the tables resubmitted to from
3360      * group buckets. */
3361     ctx->xin->flow = old_flow;
3362
3363     /* The fact that the group bucket exits (for any reason) does not mean that
3364      * the translation after the group action should exit.  Specifically, if
3365      * the group bucket freezes translation, the actions after the group action
3366      * must continue processing with the original, not the frozen packet! */
3367     ctx->exit = false;
3368 }
3369
3370 static void
3371 xlate_all_group(struct xlate_ctx *ctx, struct group_dpif *group)
3372 {
3373     struct ofputil_bucket *bucket;
3374     const struct ovs_list *buckets;
3375
3376     group_dpif_get_buckets(group, &buckets);
3377
3378     LIST_FOR_EACH (bucket, list_node, buckets) {
3379         xlate_group_bucket(ctx, bucket);
3380     }
3381     xlate_group_stats(ctx, group, NULL);
3382 }
3383
3384 static void
3385 xlate_ff_group(struct xlate_ctx *ctx, struct group_dpif *group)
3386 {
3387     struct ofputil_bucket *bucket;
3388
3389     bucket = group_first_live_bucket(ctx, group, 0);
3390     if (bucket) {
3391         xlate_group_bucket(ctx, bucket);
3392         xlate_group_stats(ctx, group, bucket);
3393     }
3394 }
3395
3396 static void
3397 xlate_default_select_group(struct xlate_ctx *ctx, struct group_dpif *group)
3398 {
3399     struct flow_wildcards *wc = ctx->wc;
3400     struct ofputil_bucket *bucket;
3401     uint32_t basis;
3402
3403     basis = flow_hash_symmetric_l4(&ctx->xin->flow, 0);
3404     flow_mask_hash_fields(&ctx->xin->flow, wc, NX_HASH_FIELDS_SYMMETRIC_L4);
3405     bucket = group_best_live_bucket(ctx, group, basis);
3406     if (bucket) {
3407         xlate_group_bucket(ctx, bucket);
3408         xlate_group_stats(ctx, group, bucket);
3409     }
3410 }
3411
3412 static void
3413 xlate_hash_fields_select_group(struct xlate_ctx *ctx, struct group_dpif *group)
3414 {
3415     struct mf_bitmap hash_fields = MF_BITMAP_INITIALIZER;
3416     const struct field_array *fields;
3417     struct ofputil_bucket *bucket;
3418     uint32_t basis;
3419     int i;
3420
3421     fields = group_dpif_get_fields(group);
3422     basis = hash_uint64(group_dpif_get_selection_method_param(group));
3423
3424     /* Determine which fields to hash */
3425     for (i = 0; i < MFF_N_IDS; i++) {
3426         if (bitmap_is_set(fields->used.bm, i)) {
3427             const struct mf_field *mf;
3428
3429             /* If the field is already present in 'hash_fields' then
3430              * this loop has already checked that it and its pre-requisites
3431              * are present in the flow and its pre-requisites have
3432              * already been added to 'hash_fields'. There is nothing more
3433              * to do here and as an optimisation the loop can continue. */
3434             if (bitmap_is_set(hash_fields.bm, i)) {
3435                 continue;
3436             }
3437
3438             mf = mf_from_id(i);
3439
3440             /* Only hash a field if it and its pre-requisites are present
3441              * in the flow. */
3442             if (!mf_are_prereqs_ok(mf, &ctx->xin->flow)) {
3443                 continue;
3444             }
3445
3446             /* Hash both the field and its pre-requisites */
3447             mf_bitmap_set_field_and_prereqs(mf, &hash_fields);
3448         }
3449     }
3450
3451     /* Hash the fields */
3452     for (i = 0; i < MFF_N_IDS; i++) {
3453         if (bitmap_is_set(hash_fields.bm, i)) {
3454             const struct mf_field *mf = mf_from_id(i);
3455             union mf_value value;
3456             int j;
3457
3458             mf_get_value(mf, &ctx->xin->flow, &value);
3459             /* This seems inefficient but so does apply_mask() */
3460             for (j = 0; j < mf->n_bytes; j++) {
3461                 ((uint8_t *) &value)[j] &= ((uint8_t *) &fields->value[i])[j];
3462             }
3463             basis = hash_bytes(&value, mf->n_bytes, basis);
3464
3465             /* For tunnels, hash in whether the field is present. */
3466             if (mf_is_tun_metadata(mf)) {
3467                 basis = hash_boolean(mf_is_set(mf, &ctx->xin->flow), basis);
3468             }
3469
3470             mf_mask_field(mf, &ctx->wc->masks);
3471         }
3472     }
3473
3474     bucket = group_best_live_bucket(ctx, group, basis);
3475     if (bucket) {
3476         xlate_group_bucket(ctx, bucket);
3477         xlate_group_stats(ctx, group, bucket);
3478     }
3479 }
3480
3481 static void
3482 xlate_select_group(struct xlate_ctx *ctx, struct group_dpif *group)
3483 {
3484     const char *selection_method = group_dpif_get_selection_method(group);
3485
3486     if (selection_method[0] == '\0') {
3487         xlate_default_select_group(ctx, group);
3488     } else if (!strcasecmp("hash", selection_method)) {
3489         xlate_hash_fields_select_group(ctx, group);
3490     } else {
3491         /* Parsing of groups should ensure this never happens */
3492         OVS_NOT_REACHED();
3493     }
3494 }
3495
3496 static void
3497 xlate_group_action__(struct xlate_ctx *ctx, struct group_dpif *group)
3498 {
3499     bool was_in_group = ctx->in_group;
3500     ctx->in_group = true;
3501
3502     switch (group_dpif_get_type(group)) {
3503     case OFPGT11_ALL:
3504     case OFPGT11_INDIRECT:
3505         xlate_all_group(ctx, group);
3506         break;
3507     case OFPGT11_SELECT:
3508         xlate_select_group(ctx, group);
3509         break;
3510     case OFPGT11_FF:
3511         xlate_ff_group(ctx, group);
3512         break;
3513     default:
3514         OVS_NOT_REACHED();
3515     }
3516     group_dpif_unref(group);
3517
3518     ctx->in_group = was_in_group;
3519 }
3520
3521 static bool
3522 xlate_group_action(struct xlate_ctx *ctx, uint32_t group_id)
3523 {
3524     if (xlate_resubmit_resource_check(ctx)) {
3525         struct group_dpif *group;
3526         bool got_group;
3527
3528         got_group = group_dpif_lookup(ctx->xbridge->ofproto, group_id, &group);
3529         if (got_group) {
3530             xlate_group_action__(ctx, group);
3531         } else {
3532             return true;
3533         }
3534     }
3535
3536     return false;
3537 }
3538
3539 static void
3540 xlate_ofpact_resubmit(struct xlate_ctx *ctx,
3541                       const struct ofpact_resubmit *resubmit)
3542 {
3543     ofp_port_t in_port;
3544     uint8_t table_id;
3545     bool may_packet_in = false;
3546     bool honor_table_miss = false;
3547
3548     if (ctx->rule && rule_dpif_is_internal(ctx->rule)) {
3549         /* Still allow missed packets to be sent to the controller
3550          * if resubmitting from an internal table. */
3551         may_packet_in = true;
3552         honor_table_miss = true;
3553     }
3554
3555     in_port = resubmit->in_port;
3556     if (in_port == OFPP_IN_PORT) {
3557         in_port = ctx->xin->flow.in_port.ofp_port;
3558     }
3559
3560     table_id = resubmit->table_id;
3561     if (table_id == 255) {
3562         table_id = ctx->table_id;
3563     }
3564
3565     xlate_table_action(ctx, in_port, table_id, may_packet_in,
3566                        honor_table_miss);
3567 }
3568
3569 static void
3570 flood_packets(struct xlate_ctx *ctx, bool all)
3571 {
3572     const struct xport *xport;
3573
3574     HMAP_FOR_EACH (xport, ofp_node, &ctx->xbridge->xports) {
3575         if (xport->ofp_port == ctx->xin->flow.in_port.ofp_port) {
3576             continue;
3577         }
3578
3579         if (all) {
3580             compose_output_action__(ctx, xport->ofp_port, NULL, false);
3581         } else if (!(xport->config & OFPUTIL_PC_NO_FLOOD)) {
3582             compose_output_action(ctx, xport->ofp_port, NULL);
3583         }
3584     }
3585
3586     ctx->nf_output_iface = NF_OUT_FLOOD;
3587 }
3588
3589 static void
3590 execute_controller_action(struct xlate_ctx *ctx, int len,
3591                           enum ofp_packet_in_reason reason,
3592                           uint16_t controller_id,
3593                           const uint8_t *userdata, size_t userdata_len)
3594 {
3595     struct dp_packet *packet;
3596
3597     ctx->xout->slow |= SLOW_CONTROLLER;
3598     xlate_commit_actions(ctx);
3599     if (!ctx->xin->packet) {
3600         return;
3601     }
3602
3603     packet = dp_packet_clone(ctx->xin->packet);
3604
3605     odp_execute_actions(NULL, &packet, 1, false,
3606                         ctx->odp_actions->data, ctx->odp_actions->size, NULL);
3607
3608     /* A packet sent by an action in a table-miss rule is considered an
3609      * explicit table miss.  OpenFlow before 1.3 doesn't have that concept so
3610      * it will get translated back to OFPR_ACTION for those versions. */
3611     if (reason == OFPR_ACTION
3612         && ctx->rule && rule_dpif_is_table_miss(ctx->rule)) {
3613         reason = OFPR_EXPLICIT_MISS;
3614     }
3615
3616     size_t packet_len = dp_packet_size(packet);
3617
3618     struct ofproto_async_msg *am = xmalloc(sizeof *am);
3619     *am = (struct ofproto_async_msg) {
3620         .controller_id = controller_id,
3621         .oam = OAM_PACKET_IN,
3622         .pin = {
3623             .up = {
3624                 .public = {
3625                     .packet = dp_packet_steal_data(packet),
3626                     .packet_len = packet_len,
3627                     .reason = reason,
3628                     .table_id = ctx->table_id,
3629                     .cookie = ctx->rule_cookie,
3630                     .userdata = (userdata_len
3631                                  ? xmemdup(userdata, userdata_len)
3632                                  : NULL),
3633                     .userdata_len = userdata_len,
3634                 }
3635             },
3636             .max_len = len,
3637         },
3638     };
3639     flow_get_metadata(&ctx->xin->flow, &am->pin.up.public.flow_metadata);
3640
3641     ofproto_dpif_send_async_msg(ctx->xbridge->ofproto, am);
3642     dp_packet_delete(packet);
3643 }
3644
3645 static void
3646 emit_continuation(struct xlate_ctx *ctx, const struct frozen_state *state)
3647 {
3648     struct ofproto_async_msg *am = xmalloc(sizeof *am);
3649     *am = (struct ofproto_async_msg) {
3650         .controller_id = ctx->pause->controller_id,
3651         .oam = OAM_PACKET_IN,
3652         .pin = {
3653             .up = {
3654                 .public = {
3655                     .userdata = xmemdup(ctx->pause->userdata,
3656                                         ctx->pause->userdata_len),
3657                     .userdata_len = ctx->pause->userdata_len,
3658                     .packet = xmemdup(dp_packet_data(ctx->xin->packet),
3659                                       dp_packet_size(ctx->xin->packet)),
3660                     .packet_len = dp_packet_size(ctx->xin->packet),
3661                 },
3662                 .bridge = *ofproto_dpif_get_uuid(ctx->xbridge->ofproto),
3663                 .stack = xmemdup(state->stack,
3664                                  state->n_stack * sizeof *state->stack),
3665                 .n_stack = state->n_stack,
3666                 .mirrors = state->mirrors,
3667                 .conntracked = state->conntracked,
3668                 .actions = xmemdup(state->ofpacts, state->ofpacts_len),
3669                 .actions_len = state->ofpacts_len,
3670                 .action_set = xmemdup(state->action_set,
3671                                       state->action_set_len),
3672                 .action_set_len = state->action_set_len,
3673             },
3674             .max_len = UINT16_MAX,
3675         },
3676     };
3677     flow_get_metadata(&ctx->xin->flow, &am->pin.up.public.flow_metadata);
3678     ofproto_dpif_send_async_msg(ctx->xbridge->ofproto, am);
3679 }
3680
3681 static void
3682 finish_freezing__(struct xlate_ctx *ctx, uint8_t table)
3683 {
3684     ovs_assert(ctx->freezing);
3685
3686     struct frozen_state state = {
3687         .table_id = table,
3688         .ofproto_uuid = *ofproto_dpif_get_uuid(ctx->xbridge->ofproto),
3689         .stack = ctx->stack.data,
3690         .n_stack = ctx->stack.size / sizeof(union mf_subvalue),
3691         .mirrors = ctx->mirrors,
3692         .conntracked = ctx->conntracked,
3693         .ofpacts = ctx->frozen_actions.data,
3694         .ofpacts_len = ctx->frozen_actions.size,
3695         .action_set = ctx->action_set.data,
3696         .action_set_len = ctx->action_set.size,
3697     };
3698     frozen_metadata_from_flow(&state.metadata, &ctx->xin->flow);
3699
3700     if (ctx->pause) {
3701         if (ctx->xin->packet) {
3702             emit_continuation(ctx, &state);
3703         }
3704     } else {
3705         /* Allocate a unique recirc id for the given metadata state in the
3706          * flow.  An existing id, with a new reference to the corresponding
3707          * recirculation context, will be returned if possible.
3708          * The life-cycle of this recirc id is managed by associating it
3709          * with the udpif key ('ukey') created for each new datapath flow. */
3710         uint32_t id = recirc_alloc_id_ctx(&state);
3711         if (!id) {
3712             XLATE_REPORT_ERROR(ctx, "Failed to allocate recirculation id");
3713             ctx->error = XLATE_NO_RECIRCULATION_CONTEXT;
3714             return;
3715         }
3716         recirc_refs_add(&ctx->xout->recircs, id);
3717
3718         nl_msg_put_u32(ctx->odp_actions, OVS_ACTION_ATTR_RECIRC, id);
3719     }
3720
3721     /* Undo changes done by freezing. */
3722     ctx_cancel_freeze(ctx);
3723 }
3724
3725 /* Called only when we're freezing. */
3726 static void
3727 finish_freezing(struct xlate_ctx *ctx)
3728 {
3729     xlate_commit_actions(ctx);
3730     finish_freezing__(ctx, 0);
3731 }
3732
3733 /* Fork the pipeline here. The current packet will continue processing the
3734  * current action list. A clone of the current packet will recirculate, skip
3735  * the remainder of the current action list and asynchronously resume pipeline
3736  * processing in 'table' with the current metadata and action set. */
3737 static void
3738 compose_recirculate_and_fork(struct xlate_ctx *ctx, uint8_t table)
3739 {
3740     ctx->freezing = true;
3741     finish_freezing__(ctx, table);
3742 }
3743
3744 static void
3745 compose_mpls_push_action(struct xlate_ctx *ctx, struct ofpact_push_mpls *mpls)
3746 {
3747     struct flow *flow = &ctx->xin->flow;
3748     int n;
3749
3750     ovs_assert(eth_type_mpls(mpls->ethertype));
3751
3752     n = flow_count_mpls_labels(flow, ctx->wc);
3753     if (!n) {
3754         xlate_commit_actions(ctx);
3755     } else if (n >= FLOW_MAX_MPLS_LABELS) {
3756         if (ctx->xin->packet != NULL) {
3757             XLATE_REPORT_ERROR(ctx, "bridge %s: dropping packet on which an "
3758                          "MPLS push action can't be performed as it would "
3759                          "have more MPLS LSEs than the %d supported.",
3760                          ctx->xbridge->name, FLOW_MAX_MPLS_LABELS);
3761         }
3762         ctx->error = XLATE_TOO_MANY_MPLS_LABELS;
3763         return;
3764     }
3765
3766     flow_push_mpls(flow, n, mpls->ethertype, ctx->wc);
3767 }
3768
3769 static void
3770 compose_mpls_pop_action(struct xlate_ctx *ctx, ovs_be16 eth_type)
3771 {
3772     struct flow *flow = &ctx->xin->flow;
3773     int n = flow_count_mpls_labels(flow, ctx->wc);
3774
3775     if (flow_pop_mpls(flow, n, eth_type, ctx->wc)) {
3776         if (!eth_type_mpls(eth_type) && ctx->xbridge->support.odp.recirc) {
3777             ctx_trigger_freeze(ctx);
3778         }
3779     } else if (n >= FLOW_MAX_MPLS_LABELS) {
3780         if (ctx->xin->packet != NULL) {
3781             XLATE_REPORT_ERROR(ctx, "bridge %s: dropping packet on which an "
3782                          "MPLS pop action can't be performed as it has "
3783                          "more MPLS LSEs than the %d supported.",
3784                          ctx->xbridge->name, FLOW_MAX_MPLS_LABELS);
3785         }
3786         ctx->error = XLATE_TOO_MANY_MPLS_LABELS;
3787         ofpbuf_clear(ctx->odp_actions);
3788     }
3789 }
3790
3791 static bool
3792 compose_dec_ttl(struct xlate_ctx *ctx, struct ofpact_cnt_ids *ids)
3793 {
3794     struct flow *flow = &ctx->xin->flow;
3795
3796     if (!is_ip_any(flow)) {
3797         return false;
3798     }
3799
3800     ctx->wc->masks.nw_ttl = 0xff;
3801     if (flow->nw_ttl > 1) {
3802         flow->nw_ttl--;
3803         return false;
3804     } else {
3805         size_t i;
3806
3807         for (i = 0; i < ids->n_controllers; i++) {
3808             execute_controller_action(ctx, UINT16_MAX, OFPR_INVALID_TTL,
3809                                       ids->cnt_ids[i], NULL, 0);
3810         }
3811
3812         /* Stop processing for current table. */
3813         return true;
3814     }
3815 }
3816
3817 static void
3818 compose_set_mpls_label_action(struct xlate_ctx *ctx, ovs_be32 label)
3819 {
3820     if (eth_type_mpls(ctx->xin->flow.dl_type)) {
3821         ctx->wc->masks.mpls_lse[0] |= htonl(MPLS_LABEL_MASK);
3822         set_mpls_lse_label(&ctx->xin->flow.mpls_lse[0], label);
3823     }
3824 }
3825
3826 static void
3827 compose_set_mpls_tc_action(struct xlate_ctx *ctx, uint8_t tc)
3828 {
3829     if (eth_type_mpls(ctx->xin->flow.dl_type)) {
3830         ctx->wc->masks.mpls_lse[0] |= htonl(MPLS_TC_MASK);
3831         set_mpls_lse_tc(&ctx->xin->flow.mpls_lse[0], tc);
3832     }
3833 }
3834
3835 static void
3836 compose_set_mpls_ttl_action(struct xlate_ctx *ctx, uint8_t ttl)
3837 {
3838     if (eth_type_mpls(ctx->xin->flow.dl_type)) {
3839         ctx->wc->masks.mpls_lse[0] |= htonl(MPLS_TTL_MASK);
3840         set_mpls_lse_ttl(&ctx->xin->flow.mpls_lse[0], ttl);
3841     }
3842 }
3843
3844 static bool
3845 compose_dec_mpls_ttl_action(struct xlate_ctx *ctx)
3846 {
3847     struct flow *flow = &ctx->xin->flow;
3848
3849     if (eth_type_mpls(flow->dl_type)) {
3850         uint8_t ttl = mpls_lse_to_ttl(flow->mpls_lse[0]);
3851
3852         ctx->wc->masks.mpls_lse[0] |= htonl(MPLS_TTL_MASK);
3853         if (ttl > 1) {
3854             ttl--;
3855             set_mpls_lse_ttl(&flow->mpls_lse[0], ttl);
3856             return false;
3857         } else {
3858             execute_controller_action(ctx, UINT16_MAX, OFPR_INVALID_TTL, 0,
3859                                       NULL, 0);
3860         }
3861     }
3862
3863     /* Stop processing for current table. */
3864     return true;
3865 }
3866
3867 static void
3868 xlate_output_action(struct xlate_ctx *ctx,
3869                     ofp_port_t port, uint16_t max_len, bool may_packet_in)
3870 {
3871     ofp_port_t prev_nf_output_iface = ctx->nf_output_iface;
3872
3873     ctx->nf_output_iface = NF_OUT_DROP;
3874
3875     switch (port) {
3876     case OFPP_IN_PORT:
3877         compose_output_action(ctx, ctx->xin->flow.in_port.ofp_port, NULL);
3878         break;
3879     case OFPP_TABLE:
3880         xlate_table_action(ctx, ctx->xin->flow.in_port.ofp_port,
3881                            0, may_packet_in, true);
3882         break;
3883     case OFPP_NORMAL:
3884         xlate_normal(ctx);
3885         break;
3886     case OFPP_FLOOD:
3887         flood_packets(ctx,  false);
3888         break;
3889     case OFPP_ALL:
3890         flood_packets(ctx, true);
3891         break;
3892     case OFPP_CONTROLLER:
3893         execute_controller_action(ctx, max_len,
3894                                   (ctx->in_group ? OFPR_GROUP
3895                                    : ctx->in_action_set ? OFPR_ACTION_SET
3896                                    : OFPR_ACTION),
3897                                   0, NULL, 0);
3898         break;
3899     case OFPP_NONE:
3900         break;
3901     case OFPP_LOCAL:
3902     default:
3903         if (port != ctx->xin->flow.in_port.ofp_port) {
3904             compose_output_action(ctx, port, NULL);
3905         } else {
3906             xlate_report(ctx, "skipping output to input port");
3907         }
3908         break;
3909     }
3910
3911     if (prev_nf_output_iface == NF_OUT_FLOOD) {
3912         ctx->nf_output_iface = NF_OUT_FLOOD;
3913     } else if (ctx->nf_output_iface == NF_OUT_DROP) {
3914         ctx->nf_output_iface = prev_nf_output_iface;
3915     } else if (prev_nf_output_iface != NF_OUT_DROP &&
3916                ctx->nf_output_iface != NF_OUT_FLOOD) {
3917         ctx->nf_output_iface = NF_OUT_MULTI;
3918     }
3919 }
3920
3921 static void
3922 xlate_output_reg_action(struct xlate_ctx *ctx,
3923                         const struct ofpact_output_reg *or)
3924 {
3925     uint64_t port = mf_get_subfield(&or->src, &ctx->xin->flow);
3926     if (port <= UINT16_MAX) {
3927         union mf_subvalue value;
3928
3929         memset(&value, 0xff, sizeof value);
3930         mf_write_subfield_flow(&or->src, &value, &ctx->wc->masks);
3931         xlate_output_action(ctx, u16_to_ofp(port),
3932                             or->max_len, false);
3933     }
3934 }
3935
3936 static void
3937 xlate_enqueue_action(struct xlate_ctx *ctx,
3938                      const struct ofpact_enqueue *enqueue)
3939 {
3940     ofp_port_t ofp_port = enqueue->port;
3941     uint32_t queue_id = enqueue->queue;
3942     uint32_t flow_priority, priority;
3943     int error;
3944
3945     /* Translate queue to priority. */
3946     error = dpif_queue_to_priority(ctx->xbridge->dpif, queue_id, &priority);
3947     if (error) {
3948         /* Fall back to ordinary output action. */
3949         xlate_output_action(ctx, enqueue->port, 0, false);
3950         return;
3951     }
3952
3953     /* Check output port. */
3954     if (ofp_port == OFPP_IN_PORT) {
3955         ofp_port = ctx->xin->flow.in_port.ofp_port;
3956     } else if (ofp_port == ctx->xin->flow.in_port.ofp_port) {
3957         return;
3958     }
3959
3960     /* Add datapath actions. */
3961     flow_priority = ctx->xin->flow.skb_priority;
3962     ctx->xin->flow.skb_priority = priority;
3963     compose_output_action(ctx, ofp_port, NULL);
3964     ctx->xin->flow.skb_priority = flow_priority;
3965
3966     /* Update NetFlow output port. */
3967     if (ctx->nf_output_iface == NF_OUT_DROP) {
3968         ctx->nf_output_iface = ofp_port;
3969     } else if (ctx->nf_output_iface != NF_OUT_FLOOD) {
3970         ctx->nf_output_iface = NF_OUT_MULTI;
3971     }
3972 }
3973
3974 static void
3975 xlate_set_queue_action(struct xlate_ctx *ctx, uint32_t queue_id)
3976 {
3977     uint32_t skb_priority;
3978
3979     if (!dpif_queue_to_priority(ctx->xbridge->dpif, queue_id, &skb_priority)) {
3980         ctx->xin->flow.skb_priority = skb_priority;
3981     } else {
3982         /* Couldn't translate queue to a priority.  Nothing to do.  A warning
3983          * has already been logged. */
3984     }
3985 }
3986
3987 static bool
3988 slave_enabled_cb(ofp_port_t ofp_port, void *xbridge_)
3989 {
3990     const struct xbridge *xbridge = xbridge_;
3991     struct xport *port;
3992
3993     switch (ofp_port) {
3994     case OFPP_IN_PORT:
3995     case OFPP_TABLE:
3996     case OFPP_NORMAL:
3997     case OFPP_FLOOD:
3998     case OFPP_ALL:
3999     case OFPP_NONE:
4000         return true;
4001     case OFPP_CONTROLLER: /* Not supported by the bundle action. */
4002         return false;
4003     default:
4004         port = get_ofp_port(xbridge, ofp_port);
4005         return port ? port->may_enable : false;
4006     }
4007 }
4008
4009 static void
4010 xlate_bundle_action(struct xlate_ctx *ctx,
4011                     const struct ofpact_bundle *bundle)
4012 {
4013     ofp_port_t port;
4014
4015     port = bundle_execute(bundle, &ctx->xin->flow, ctx->wc, slave_enabled_cb,
4016                           CONST_CAST(struct xbridge *, ctx->xbridge));
4017     if (bundle->dst.field) {
4018         nxm_reg_load(&bundle->dst, ofp_to_u16(port), &ctx->xin->flow, ctx->wc);
4019     } else {
4020         xlate_output_action(ctx, port, 0, false);
4021     }
4022 }
4023
4024 static void
4025 xlate_learn_action__(struct xlate_ctx *ctx, const struct ofpact_learn *learn,
4026                      struct ofputil_flow_mod *fm, struct ofpbuf *ofpacts)
4027 {
4028     learn_execute(learn, &ctx->xin->flow, fm, ofpacts);
4029     if (ctx->xin->may_learn) {
4030         ofproto_dpif_flow_mod(ctx->xbridge->ofproto, fm);
4031     }
4032 }
4033
4034 static void
4035 xlate_learn_action(struct xlate_ctx *ctx, const struct ofpact_learn *learn)
4036 {
4037     learn_mask(learn, ctx->wc);
4038
4039     if (ctx->xin->xcache) {
4040         struct xc_entry *entry;
4041
4042         entry = xlate_cache_add_entry(ctx->xin->xcache, XC_LEARN);
4043         entry->u.learn.ofproto = ctx->xbridge->ofproto;
4044         entry->u.learn.fm = xmalloc(sizeof *entry->u.learn.fm);
4045         entry->u.learn.ofpacts = ofpbuf_new(64);
4046         xlate_learn_action__(ctx, learn, entry->u.learn.fm,
4047                              entry->u.learn.ofpacts);
4048     } else if (ctx->xin->may_learn) {
4049         uint64_t ofpacts_stub[1024 / 8];
4050         struct ofputil_flow_mod fm;
4051         struct ofpbuf ofpacts;
4052
4053         ofpbuf_use_stub(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
4054         xlate_learn_action__(ctx, learn, &fm, &ofpacts);
4055         ofpbuf_uninit(&ofpacts);
4056     }
4057 }
4058
4059 static void
4060 xlate_fin_timeout__(struct rule_dpif *rule, uint16_t tcp_flags,
4061                     uint16_t idle_timeout, uint16_t hard_timeout)
4062 {
4063     if (tcp_flags & (TCP_FIN | TCP_RST)) {
4064         rule_dpif_reduce_timeouts(rule, idle_timeout, hard_timeout);
4065     }
4066 }
4067
4068 static void
4069 xlate_fin_timeout(struct xlate_ctx *ctx,
4070                   const struct ofpact_fin_timeout *oft)
4071 {
4072     if (ctx->rule) {
4073         xlate_fin_timeout__(ctx->rule, ctx->xin->tcp_flags,
4074                             oft->fin_idle_timeout, oft->fin_hard_timeout);
4075         if (ctx->xin->xcache) {
4076             struct xc_entry *entry;
4077
4078             entry = xlate_cache_add_entry(ctx->xin->xcache, XC_FIN_TIMEOUT);
4079             /* XC_RULE already holds a reference on the rule, none is taken
4080              * here. */
4081             entry->u.fin.rule = ctx->rule;
4082             entry->u.fin.idle = oft->fin_idle_timeout;
4083             entry->u.fin.hard = oft->fin_hard_timeout;
4084         }
4085     }
4086 }
4087
4088 static void
4089 xlate_sample_action(struct xlate_ctx *ctx,
4090                     const struct ofpact_sample *os)
4091 {
4092     /* Scale the probability from 16-bit to 32-bit while representing
4093      * the same percentage. */
4094     uint32_t probability = (os->probability << 16) | os->probability;
4095
4096     if (!ctx->xbridge->support.variable_length_userdata) {
4097         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
4098
4099         VLOG_ERR_RL(&rl, "ignoring NXAST_SAMPLE action because datapath "
4100                     "lacks support (needs Linux 3.10+ or kernel module from "
4101                     "OVS 1.11+)");
4102         return;
4103     }
4104
4105     xlate_commit_actions(ctx);
4106
4107     union user_action_cookie cookie = {
4108         .flow_sample = {
4109             .type = USER_ACTION_COOKIE_FLOW_SAMPLE,
4110             .probability = os->probability,
4111             .collector_set_id = os->collector_set_id,
4112             .obs_domain_id = os->obs_domain_id,
4113             .obs_point_id = os->obs_point_id,
4114         }
4115     };
4116     compose_sample_action(ctx, probability, &cookie, sizeof cookie.flow_sample,
4117                           ODPP_NONE, false);
4118 }
4119
4120 static bool
4121 may_receive(const struct xport *xport, struct xlate_ctx *ctx)
4122 {
4123     if (xport->config & (is_stp(&ctx->xin->flow)
4124                          ? OFPUTIL_PC_NO_RECV_STP
4125                          : OFPUTIL_PC_NO_RECV)) {
4126         return false;
4127     }
4128
4129     /* Only drop packets here if both forwarding and learning are
4130      * disabled.  If just learning is enabled, we need to have
4131      * OFPP_NORMAL and the learning action have a look at the packet
4132      * before we can drop it. */
4133     if ((!xport_stp_forward_state(xport) && !xport_stp_learn_state(xport)) ||
4134         (!xport_rstp_forward_state(xport) && !xport_rstp_learn_state(xport))) {
4135         return false;
4136     }
4137
4138     return true;
4139 }
4140
4141 static void
4142 xlate_write_actions__(struct xlate_ctx *ctx,
4143                       const struct ofpact *ofpacts, size_t ofpacts_len)
4144 {
4145     /* Maintain actset_output depending on the contents of the action set:
4146      *
4147      *   - OFPP_UNSET, if there is no "output" action.
4148      *
4149      *   - The output port, if there is an "output" action and no "group"
4150      *     action.
4151      *
4152      *   - OFPP_UNSET, if there is a "group" action.
4153      */
4154     if (!ctx->action_set_has_group) {
4155         const struct ofpact *a;
4156         OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
4157             if (a->type == OFPACT_OUTPUT) {
4158                 ctx->xin->flow.actset_output = ofpact_get_OUTPUT(a)->port;
4159             } else if (a->type == OFPACT_GROUP) {
4160                 ctx->xin->flow.actset_output = OFPP_UNSET;
4161                 ctx->action_set_has_group = true;
4162                 break;
4163             }
4164         }
4165     }
4166
4167     ofpbuf_put(&ctx->action_set, ofpacts, ofpacts_len);
4168 }
4169
4170 static void
4171 xlate_write_actions(struct xlate_ctx *ctx, const struct ofpact_nest *a)
4172 {
4173     xlate_write_actions__(ctx, a->actions, ofpact_nest_get_action_len(a));
4174 }
4175
4176 static void
4177 xlate_action_set(struct xlate_ctx *ctx)
4178 {
4179     uint64_t action_list_stub[1024 / 64];
4180     struct ofpbuf action_list;
4181
4182     ctx->in_action_set = true;
4183     ofpbuf_use_stub(&action_list, action_list_stub, sizeof action_list_stub);
4184     ofpacts_execute_action_set(&action_list, &ctx->action_set);
4185     /* Clear the action set, as it is not needed any more. */
4186     ofpbuf_clear(&ctx->action_set);
4187     do_xlate_actions(action_list.data, action_list.size, ctx);
4188     ctx->in_action_set = false;
4189     ofpbuf_uninit(&action_list);
4190 }
4191
4192 static void
4193 freeze_put_unroll_xlate(struct xlate_ctx *ctx)
4194 {
4195     struct ofpact_unroll_xlate *unroll = ctx->frozen_actions.header;
4196
4197     /* Restore the table_id and rule cookie for a potential PACKET
4198      * IN if needed. */
4199     if (!unroll ||
4200         (ctx->table_id != unroll->rule_table_id
4201          || ctx->rule_cookie != unroll->rule_cookie)) {
4202         unroll = ofpact_put_UNROLL_XLATE(&ctx->frozen_actions);
4203         unroll->rule_table_id = ctx->table_id;
4204         unroll->rule_cookie = ctx->rule_cookie;
4205         ctx->frozen_actions.header = unroll;
4206     }
4207 }
4208
4209
4210 /* Copy actions 'a' through 'end' to ctx->frozen_actions, which will be
4211  * executed after thawing.  Inserts an UNROLL_XLATE action, if none is already
4212  * present, before any action that may depend on the current table ID or flow
4213  * cookie. */
4214 static void
4215 freeze_unroll_actions(const struct ofpact *a, const struct ofpact *end,
4216                       struct xlate_ctx *ctx)
4217 {
4218     for (; a < end; a = ofpact_next(a)) {
4219         switch (a->type) {
4220         case OFPACT_OUTPUT_REG:
4221         case OFPACT_GROUP:
4222         case OFPACT_OUTPUT:
4223         case OFPACT_CONTROLLER:
4224         case OFPACT_DEC_MPLS_TTL:
4225         case OFPACT_DEC_TTL:
4226             /* These actions may generate asynchronous messages, which include
4227              * table ID and flow cookie information. */
4228             freeze_put_unroll_xlate(ctx);
4229             break;
4230
4231         case OFPACT_RESUBMIT:
4232             if (ofpact_get_RESUBMIT(a)->table_id == 0xff) {
4233                 /* This resubmit action is relative to the current table, so we
4234                  * need to track what table that is.*/
4235                 freeze_put_unroll_xlate(ctx);
4236             }
4237             break;
4238
4239         case OFPACT_SET_TUNNEL:
4240         case OFPACT_REG_MOVE:
4241         case OFPACT_SET_FIELD:
4242         case OFPACT_STACK_PUSH:
4243         case OFPACT_STACK_POP:
4244         case OFPACT_LEARN:
4245         case OFPACT_WRITE_METADATA:
4246         case OFPACT_GOTO_TABLE:
4247         case OFPACT_ENQUEUE:
4248         case OFPACT_SET_VLAN_VID:
4249         case OFPACT_SET_VLAN_PCP:
4250         case OFPACT_STRIP_VLAN:
4251         case OFPACT_PUSH_VLAN:
4252         case OFPACT_SET_ETH_SRC:
4253         case OFPACT_SET_ETH_DST:
4254         case OFPACT_SET_IPV4_SRC:
4255         case OFPACT_SET_IPV4_DST:
4256         case OFPACT_SET_IP_DSCP:
4257         case OFPACT_SET_IP_ECN:
4258         case OFPACT_SET_IP_TTL:
4259         case OFPACT_SET_L4_SRC_PORT:
4260         case OFPACT_SET_L4_DST_PORT:
4261         case OFPACT_SET_QUEUE:
4262         case OFPACT_POP_QUEUE:
4263         case OFPACT_PUSH_MPLS:
4264         case OFPACT_POP_MPLS:
4265         case OFPACT_SET_MPLS_LABEL:
4266         case OFPACT_SET_MPLS_TC:
4267         case OFPACT_SET_MPLS_TTL:
4268         case OFPACT_MULTIPATH:
4269         case OFPACT_BUNDLE:
4270         case OFPACT_EXIT:
4271         case OFPACT_UNROLL_XLATE:
4272         case OFPACT_FIN_TIMEOUT:
4273         case OFPACT_CLEAR_ACTIONS:
4274         case OFPACT_WRITE_ACTIONS:
4275         case OFPACT_METER:
4276         case OFPACT_SAMPLE:
4277         case OFPACT_DEBUG_RECIRC:
4278         case OFPACT_CT:
4279         case OFPACT_NAT:
4280             /* These may not generate PACKET INs. */
4281             break;
4282
4283         case OFPACT_NOTE:
4284         case OFPACT_CONJUNCTION:
4285             /* These need not be copied for restoration. */
4286             continue;
4287         }
4288         /* Copy the action over. */
4289         ofpbuf_put(&ctx->frozen_actions, a, OFPACT_ALIGN(a->len));
4290     }
4291 }
4292
4293 static void
4294 put_ct_mark(const struct flow *flow, struct flow *base_flow,
4295             struct ofpbuf *odp_actions, struct flow_wildcards *wc)
4296 {
4297     struct {
4298         uint32_t key;
4299         uint32_t mask;
4300     } odp_attr;
4301
4302     odp_attr.key = flow->ct_mark;
4303     odp_attr.mask = wc->masks.ct_mark;
4304
4305     if (odp_attr.mask && odp_attr.key != base_flow->ct_mark) {
4306         nl_msg_put_unspec(odp_actions, OVS_CT_ATTR_MARK, &odp_attr,
4307                           sizeof(odp_attr));
4308     }
4309 }
4310
4311 static void
4312 put_ct_label(const struct flow *flow, struct flow *base_flow,
4313              struct ofpbuf *odp_actions, struct flow_wildcards *wc)
4314 {
4315     if (!ovs_u128_is_zero(&wc->masks.ct_label)
4316         && !ovs_u128_equals(&flow->ct_label, &base_flow->ct_label)) {
4317         struct {
4318             ovs_u128 key;
4319             ovs_u128 mask;
4320         } *odp_ct_label;
4321
4322         odp_ct_label = nl_msg_put_unspec_uninit(odp_actions,
4323                                                 OVS_CT_ATTR_LABELS,
4324                                                 sizeof(*odp_ct_label));
4325         odp_ct_label->key = flow->ct_label;
4326         odp_ct_label->mask = wc->masks.ct_label;
4327     }
4328 }
4329
4330 static void
4331 put_ct_helper(struct ofpbuf *odp_actions, struct ofpact_conntrack *ofc)
4332 {
4333     if (ofc->alg) {
4334         if (ofc->alg == IPPORT_FTP) {
4335             nl_msg_put_string(odp_actions, OVS_CT_ATTR_HELPER, "ftp");
4336         } else {
4337             VLOG_WARN("Cannot serialize ct_helper %d\n", ofc->alg);
4338         }
4339     }
4340 }
4341
4342 static void
4343 put_ct_nat(struct xlate_ctx *ctx)
4344 {
4345     struct ofpact_nat *ofn = ctx->ct_nat_action;
4346     size_t nat_offset;
4347
4348     if (!ofn) {
4349         return;
4350     }
4351
4352     nat_offset = nl_msg_start_nested(ctx->odp_actions, OVS_CT_ATTR_NAT);
4353     if (ofn->flags & NX_NAT_F_SRC || ofn->flags & NX_NAT_F_DST) {
4354         nl_msg_put_flag(ctx->odp_actions, ofn->flags & NX_NAT_F_SRC
4355                         ? OVS_NAT_ATTR_SRC : OVS_NAT_ATTR_DST);
4356         if (ofn->flags & NX_NAT_F_PERSISTENT) {
4357             nl_msg_put_flag(ctx->odp_actions, OVS_NAT_ATTR_PERSISTENT);
4358         }
4359         if (ofn->flags & NX_NAT_F_PROTO_HASH) {
4360             nl_msg_put_flag(ctx->odp_actions, OVS_NAT_ATTR_PROTO_HASH);
4361         } else if (ofn->flags & NX_NAT_F_PROTO_RANDOM) {
4362             nl_msg_put_flag(ctx->odp_actions, OVS_NAT_ATTR_PROTO_RANDOM);
4363         }
4364         if (ofn->range_af == AF_INET) {
4365             nl_msg_put_be32(ctx->odp_actions, OVS_NAT_ATTR_IP_MIN,
4366                            ofn->range.addr.ipv4.min);
4367             if (ofn->range.addr.ipv4.max &&
4368                 (ntohl(ofn->range.addr.ipv4.max)
4369                  > ntohl(ofn->range.addr.ipv4.min))) {
4370                 nl_msg_put_be32(ctx->odp_actions, OVS_NAT_ATTR_IP_MAX,
4371                                 ofn->range.addr.ipv4.max);
4372             }
4373         } else if (ofn->range_af == AF_INET6) {
4374             nl_msg_put_unspec(ctx->odp_actions, OVS_NAT_ATTR_IP_MIN,
4375                               &ofn->range.addr.ipv6.min,
4376                               sizeof ofn->range.addr.ipv6.min);
4377             if (!ipv6_mask_is_any(&ofn->range.addr.ipv6.max) &&
4378                 memcmp(&ofn->range.addr.ipv6.max, &ofn->range.addr.ipv6.min,
4379                        sizeof ofn->range.addr.ipv6.max) > 0) {
4380                 nl_msg_put_unspec(ctx->odp_actions, OVS_NAT_ATTR_IP_MAX,
4381                                   &ofn->range.addr.ipv6.max,
4382                                   sizeof ofn->range.addr.ipv6.max);
4383             }
4384         }
4385         if (ofn->range_af != AF_UNSPEC && ofn->range.proto.min) {
4386             nl_msg_put_u16(ctx->odp_actions, OVS_NAT_ATTR_PROTO_MIN,
4387                            ofn->range.proto.min);
4388             if (ofn->range.proto.max &&
4389                 ofn->range.proto.max > ofn->range.proto.min) {
4390                 nl_msg_put_u16(ctx->odp_actions, OVS_NAT_ATTR_PROTO_MAX,
4391                                ofn->range.proto.max);
4392             }
4393         }
4394     }
4395     nl_msg_end_nested(ctx->odp_actions, nat_offset);
4396 }
4397
4398 static void
4399 compose_conntrack_action(struct xlate_ctx *ctx, struct ofpact_conntrack *ofc)
4400 {
4401     ovs_u128 old_ct_label = ctx->base_flow.ct_label;
4402     uint32_t old_ct_mark = ctx->base_flow.ct_mark;
4403     size_t ct_offset;
4404     uint16_t zone;
4405
4406     /* Ensure that any prior actions are applied before composing the new
4407      * conntrack action. */
4408     xlate_commit_actions(ctx);
4409
4410     /* Process nested actions first, to populate the key. */
4411     ctx->ct_nat_action = NULL;
4412     do_xlate_actions(ofc->actions, ofpact_ct_get_action_len(ofc), ctx);
4413
4414     if (ofc->zone_src.field) {
4415         zone = mf_get_subfield(&ofc->zone_src, &ctx->xin->flow);
4416     } else {
4417         zone = ofc->zone_imm;
4418     }
4419
4420     ct_offset = nl_msg_start_nested(ctx->odp_actions, OVS_ACTION_ATTR_CT);
4421     if (ofc->flags & NX_CT_F_COMMIT) {
4422         nl_msg_put_flag(ctx->odp_actions, OVS_CT_ATTR_COMMIT);
4423     }
4424     nl_msg_put_u16(ctx->odp_actions, OVS_CT_ATTR_ZONE, zone);
4425     put_ct_mark(&ctx->xin->flow, &ctx->base_flow, ctx->odp_actions, ctx->wc);
4426     put_ct_label(&ctx->xin->flow, &ctx->base_flow, ctx->odp_actions, ctx->wc);
4427     put_ct_helper(ctx->odp_actions, ofc);
4428     put_ct_nat(ctx);
4429     ctx->ct_nat_action = NULL;
4430     nl_msg_end_nested(ctx->odp_actions, ct_offset);
4431
4432     /* Restore the original ct fields in the key. These should only be exposed
4433      * after recirculation to another table. */
4434     ctx->base_flow.ct_mark = old_ct_mark;
4435     ctx->base_flow.ct_label = old_ct_label;
4436
4437     if (ofc->recirc_table == NX_CT_RECIRC_NONE) {
4438         /* If we do not recirculate as part of this action, hide the results of
4439          * connection tracking from subsequent recirculations. */
4440         ctx->conntracked = false;
4441     } else {
4442         /* Use ct_* fields from datapath during recirculation upcall. */
4443         ctx->conntracked = true;
4444         compose_recirculate_and_fork(ctx, ofc->recirc_table);
4445     }
4446 }
4447
4448 static void
4449 do_xlate_actions(const struct ofpact *ofpacts, size_t ofpacts_len,
4450                  struct xlate_ctx *ctx)
4451 {
4452     struct flow_wildcards *wc = ctx->wc;
4453     struct flow *flow = &ctx->xin->flow;
4454     const struct ofpact *a;
4455
4456     if (ovs_native_tunneling_is_on(ctx->xbridge->ofproto)) {
4457         tnl_neigh_snoop(flow, wc, ctx->xbridge->name);
4458     }
4459     /* dl_type already in the mask, not set below. */
4460
4461     OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
4462         struct ofpact_controller *controller;
4463         const struct ofpact_metadata *metadata;
4464         const struct ofpact_set_field *set_field;
4465         const struct mf_field *mf;
4466
4467         if (ctx->error) {
4468             break;
4469         }
4470
4471         if (ctx->exit) {
4472             /* Check if need to store the remaining actions for later
4473              * execution. */
4474             if (ctx->freezing) {
4475                 freeze_unroll_actions(a, ofpact_end(ofpacts, ofpacts_len),
4476                                       ctx);
4477             }
4478             break;
4479         }
4480
4481         switch (a->type) {
4482         case OFPACT_OUTPUT:
4483             xlate_output_action(ctx, ofpact_get_OUTPUT(a)->port,
4484                                 ofpact_get_OUTPUT(a)->max_len, true);
4485             break;
4486
4487         case OFPACT_GROUP:
4488             if (xlate_group_action(ctx, ofpact_get_GROUP(a)->group_id)) {
4489                 /* Group could not be found. */
4490                 return;
4491             }
4492             break;
4493
4494         case OFPACT_CONTROLLER:
4495             controller = ofpact_get_CONTROLLER(a);
4496             if (controller->pause) {
4497                 ctx->pause = controller;
4498                 ctx->xout->slow |= SLOW_CONTROLLER;
4499                 ctx_trigger_freeze(ctx);
4500                 a = ofpact_next(a);
4501             } else {
4502                 execute_controller_action(ctx, controller->max_len,
4503                                           controller->reason,
4504                                           controller->controller_id,
4505                                           controller->userdata,
4506                                           controller->userdata_len);
4507             }
4508             break;
4509
4510         case OFPACT_ENQUEUE:
4511             memset(&wc->masks.skb_priority, 0xff,
4512                    sizeof wc->masks.skb_priority);
4513             xlate_enqueue_action(ctx, ofpact_get_ENQUEUE(a));
4514             break;
4515
4516         case OFPACT_SET_VLAN_VID:
4517             wc->masks.vlan_tci |= htons(VLAN_VID_MASK | VLAN_CFI);
4518             if (flow->vlan_tci & htons(VLAN_CFI) ||
4519                 ofpact_get_SET_VLAN_VID(a)->push_vlan_if_needed) {
4520                 flow->vlan_tci &= ~htons(VLAN_VID_MASK);
4521                 flow->vlan_tci |= (htons(ofpact_get_SET_VLAN_VID(a)->vlan_vid)
4522                                    | htons(VLAN_CFI));
4523             }
4524             break;
4525
4526         case OFPACT_SET_VLAN_PCP:
4527             wc->masks.vlan_tci |= htons(VLAN_PCP_MASK | VLAN_CFI);
4528             if (flow->vlan_tci & htons(VLAN_CFI) ||
4529                 ofpact_get_SET_VLAN_PCP(a)->push_vlan_if_needed) {
4530                 flow->vlan_tci &= ~htons(VLAN_PCP_MASK);
4531                 flow->vlan_tci |= htons((ofpact_get_SET_VLAN_PCP(a)->vlan_pcp
4532                                          << VLAN_PCP_SHIFT) | VLAN_CFI);
4533             }
4534             break;
4535
4536         case OFPACT_STRIP_VLAN:
4537             memset(&wc->masks.vlan_tci, 0xff, sizeof wc->masks.vlan_tci);
4538             flow->vlan_tci = htons(0);
4539             break;
4540
4541         case OFPACT_PUSH_VLAN:
4542             /* XXX 802.1AD(QinQ) */
4543             memset(&wc->masks.vlan_tci, 0xff, sizeof wc->masks.vlan_tci);
4544             flow->vlan_tci = htons(VLAN_CFI);
4545             break;
4546
4547         case OFPACT_SET_ETH_SRC:
4548             WC_MASK_FIELD(wc, dl_src);
4549             flow->dl_src = ofpact_get_SET_ETH_SRC(a)->mac;
4550             break;
4551
4552         case OFPACT_SET_ETH_DST:
4553             WC_MASK_FIELD(wc, dl_dst);
4554             flow->dl_dst = ofpact_get_SET_ETH_DST(a)->mac;
4555             break;
4556
4557         case OFPACT_SET_IPV4_SRC:
4558             if (flow->dl_type == htons(ETH_TYPE_IP)) {
4559                 memset(&wc->masks.nw_src, 0xff, sizeof wc->masks.nw_src);
4560                 flow->nw_src = ofpact_get_SET_IPV4_SRC(a)->ipv4;
4561             }
4562             break;
4563
4564         case OFPACT_SET_IPV4_DST:
4565             if (flow->dl_type == htons(ETH_TYPE_IP)) {
4566                 memset(&wc->masks.nw_dst, 0xff, sizeof wc->masks.nw_dst);
4567                 flow->nw_dst = ofpact_get_SET_IPV4_DST(a)->ipv4;
4568             }
4569             break;
4570
4571         case OFPACT_SET_IP_DSCP:
4572             if (is_ip_any(flow)) {
4573                 wc->masks.nw_tos |= IP_DSCP_MASK;
4574                 flow->nw_tos &= ~IP_DSCP_MASK;
4575                 flow->nw_tos |= ofpact_get_SET_IP_DSCP(a)->dscp;
4576             }
4577             break;
4578
4579         case OFPACT_SET_IP_ECN:
4580             if (is_ip_any(flow)) {
4581                 wc->masks.nw_tos |= IP_ECN_MASK;
4582                 flow->nw_tos &= ~IP_ECN_MASK;
4583                 flow->nw_tos |= ofpact_get_SET_IP_ECN(a)->ecn;
4584             }
4585             break;
4586
4587         case OFPACT_SET_IP_TTL:
4588             if (is_ip_any(flow)) {
4589                 wc->masks.nw_ttl = 0xff;
4590                 flow->nw_ttl = ofpact_get_SET_IP_TTL(a)->ttl;
4591             }
4592             break;
4593
4594         case OFPACT_SET_L4_SRC_PORT:
4595             if (is_ip_any(flow) && !(flow->nw_frag & FLOW_NW_FRAG_LATER)) {
4596                 memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
4597                 memset(&wc->masks.tp_src, 0xff, sizeof wc->masks.tp_src);
4598                 flow->tp_src = htons(ofpact_get_SET_L4_SRC_PORT(a)->port);
4599             }
4600             break;
4601
4602         case OFPACT_SET_L4_DST_PORT:
4603             if (is_ip_any(flow) && !(flow->nw_frag & FLOW_NW_FRAG_LATER)) {
4604                 memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
4605                 memset(&wc->masks.tp_dst, 0xff, sizeof wc->masks.tp_dst);
4606                 flow->tp_dst = htons(ofpact_get_SET_L4_DST_PORT(a)->port);
4607             }
4608             break;
4609
4610         case OFPACT_RESUBMIT:
4611             /* Freezing complicates resubmit.  Some action in the flow
4612              * entry found by resubmit might trigger freezing.  If that
4613              * happens, then we do not want to execute the resubmit again after
4614              * during thawing, so we want to skip back to the head of the loop
4615              * to avoid that, only adding any actions that follow the resubmit
4616              * to the frozen actions.
4617              */
4618             xlate_ofpact_resubmit(ctx, ofpact_get_RESUBMIT(a));
4619             continue;
4620
4621         case OFPACT_SET_TUNNEL:
4622             flow->tunnel.tun_id = htonll(ofpact_get_SET_TUNNEL(a)->tun_id);
4623             break;
4624
4625         case OFPACT_SET_QUEUE:
4626             memset(&wc->masks.skb_priority, 0xff,
4627                    sizeof wc->masks.skb_priority);
4628             xlate_set_queue_action(ctx, ofpact_get_SET_QUEUE(a)->queue_id);
4629             break;
4630
4631         case OFPACT_POP_QUEUE:
4632             memset(&wc->masks.skb_priority, 0xff,
4633                    sizeof wc->masks.skb_priority);
4634             flow->skb_priority = ctx->orig_skb_priority;
4635             break;
4636
4637         case OFPACT_REG_MOVE:
4638             nxm_execute_reg_move(ofpact_get_REG_MOVE(a), flow, wc);
4639             break;
4640
4641         case OFPACT_SET_FIELD:
4642             set_field = ofpact_get_SET_FIELD(a);
4643             mf = set_field->field;
4644
4645             /* Set field action only ever overwrites packet's outermost
4646              * applicable header fields.  Do nothing if no header exists. */
4647             if (mf->id == MFF_VLAN_VID) {
4648                 wc->masks.vlan_tci |= htons(VLAN_CFI);
4649                 if (!(flow->vlan_tci & htons(VLAN_CFI))) {
4650                     break;
4651                 }
4652             } else if ((mf->id == MFF_MPLS_LABEL || mf->id == MFF_MPLS_TC)
4653                        /* 'dl_type' is already unwildcarded. */
4654                        && !eth_type_mpls(flow->dl_type)) {
4655                 break;
4656             }
4657             /* A flow may wildcard nw_frag.  Do nothing if setting a transport
4658              * header field on a packet that does not have them. */
4659             mf_mask_field_and_prereqs(mf, wc);
4660             if (mf_are_prereqs_ok(mf, flow)) {
4661                 mf_set_flow_value_masked(mf, &set_field->value,
4662                                          &set_field->mask, flow);
4663             }
4664             break;
4665
4666         case OFPACT_STACK_PUSH:
4667             nxm_execute_stack_push(ofpact_get_STACK_PUSH(a), flow, wc,
4668                                    &ctx->stack);
4669             break;
4670
4671         case OFPACT_STACK_POP:
4672             nxm_execute_stack_pop(ofpact_get_STACK_POP(a), flow, wc,
4673                                   &ctx->stack);
4674             break;
4675
4676         case OFPACT_PUSH_MPLS:
4677             compose_mpls_push_action(ctx, ofpact_get_PUSH_MPLS(a));
4678             break;
4679
4680         case OFPACT_POP_MPLS:
4681             compose_mpls_pop_action(ctx, ofpact_get_POP_MPLS(a)->ethertype);
4682             break;
4683
4684         case OFPACT_SET_MPLS_LABEL:
4685             compose_set_mpls_label_action(
4686                 ctx, ofpact_get_SET_MPLS_LABEL(a)->label);
4687             break;
4688
4689         case OFPACT_SET_MPLS_TC:
4690             compose_set_mpls_tc_action(ctx, ofpact_get_SET_MPLS_TC(a)->tc);
4691             break;
4692
4693         case OFPACT_SET_MPLS_TTL:
4694             compose_set_mpls_ttl_action(ctx, ofpact_get_SET_MPLS_TTL(a)->ttl);
4695             break;
4696
4697         case OFPACT_DEC_MPLS_TTL:
4698             if (compose_dec_mpls_ttl_action(ctx)) {
4699                 return;
4700             }
4701             break;
4702
4703         case OFPACT_DEC_TTL:
4704             wc->masks.nw_ttl = 0xff;
4705             if (compose_dec_ttl(ctx, ofpact_get_DEC_TTL(a))) {
4706                 return;
4707             }
4708             break;
4709
4710         case OFPACT_NOTE:
4711             /* Nothing to do. */
4712             break;
4713
4714         case OFPACT_MULTIPATH:
4715             multipath_execute(ofpact_get_MULTIPATH(a), flow, wc);
4716             break;
4717
4718         case OFPACT_BUNDLE:
4719             xlate_bundle_action(ctx, ofpact_get_BUNDLE(a));
4720             break;
4721
4722         case OFPACT_OUTPUT_REG:
4723             xlate_output_reg_action(ctx, ofpact_get_OUTPUT_REG(a));
4724             break;
4725
4726         case OFPACT_LEARN:
4727             xlate_learn_action(ctx, ofpact_get_LEARN(a));
4728             break;
4729
4730         case OFPACT_CONJUNCTION: {
4731             /* A flow with a "conjunction" action represents part of a special
4732              * kind of "set membership match".  Such a flow should not actually
4733              * get executed, but it could via, say, a "packet-out", even though
4734              * that wouldn't be useful.  Log it to help debugging. */
4735             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
4736             VLOG_INFO_RL(&rl, "executing no-op conjunction action");
4737             break;
4738         }
4739
4740         case OFPACT_EXIT:
4741             ctx->exit = true;
4742             break;
4743
4744         case OFPACT_UNROLL_XLATE: {
4745             struct ofpact_unroll_xlate *unroll = ofpact_get_UNROLL_XLATE(a);
4746
4747             /* Restore translation context data that was stored earlier. */
4748             ctx->table_id = unroll->rule_table_id;
4749             ctx->rule_cookie = unroll->rule_cookie;
4750             break;
4751         }
4752         case OFPACT_FIN_TIMEOUT:
4753             memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
4754             xlate_fin_timeout(ctx, ofpact_get_FIN_TIMEOUT(a));
4755             break;
4756
4757         case OFPACT_CLEAR_ACTIONS:
4758             ofpbuf_clear(&ctx->action_set);
4759             ctx->xin->flow.actset_output = OFPP_UNSET;
4760             ctx->action_set_has_group = false;
4761             break;
4762
4763         case OFPACT_WRITE_ACTIONS:
4764             xlate_write_actions(ctx, ofpact_get_WRITE_ACTIONS(a));
4765             break;
4766
4767         case OFPACT_WRITE_METADATA:
4768             metadata = ofpact_get_WRITE_METADATA(a);
4769             flow->metadata &= ~metadata->mask;
4770             flow->metadata |= metadata->metadata & metadata->mask;
4771             break;
4772
4773         case OFPACT_METER:
4774             /* Not implemented yet. */
4775             break;
4776
4777         case OFPACT_GOTO_TABLE: {
4778             struct ofpact_goto_table *ogt = ofpact_get_GOTO_TABLE(a);
4779
4780             ovs_assert(ctx->table_id < ogt->table_id);
4781
4782             xlate_table_action(ctx, ctx->xin->flow.in_port.ofp_port,
4783                                ogt->table_id, true, true);
4784             break;
4785         }
4786
4787         case OFPACT_SAMPLE:
4788             xlate_sample_action(ctx, ofpact_get_SAMPLE(a));
4789             break;
4790
4791         case OFPACT_CT:
4792             compose_conntrack_action(ctx, ofpact_get_CT(a));
4793             break;
4794
4795         case OFPACT_NAT:
4796             /* This will be processed by compose_conntrack_action(). */
4797             ctx->ct_nat_action = ofpact_get_NAT(a);
4798             break;
4799
4800         case OFPACT_DEBUG_RECIRC:
4801             ctx_trigger_freeze(ctx);
4802             a = ofpact_next(a);
4803             break;
4804         }
4805
4806         /* Check if need to store this and the remaining actions for later
4807          * execution. */
4808         if (!ctx->error && ctx->exit && ctx_first_frozen_action(ctx)) {
4809             freeze_unroll_actions(a, ofpact_end(ofpacts, ofpacts_len), ctx);
4810             break;
4811         }
4812     }
4813 }
4814
4815 void
4816 xlate_in_init(struct xlate_in *xin, struct ofproto_dpif *ofproto,
4817               const struct flow *flow, ofp_port_t in_port,
4818               struct rule_dpif *rule, uint16_t tcp_flags,
4819               const struct dp_packet *packet, struct flow_wildcards *wc,
4820               struct ofpbuf *odp_actions)
4821 {
4822     xin->ofproto = ofproto;
4823     xin->flow = *flow;
4824     xin->flow.in_port.ofp_port = in_port;
4825     xin->flow.actset_output = OFPP_UNSET;
4826     xin->packet = packet;
4827     xin->may_learn = packet != NULL;
4828     xin->rule = rule;
4829     xin->xcache = NULL;
4830     xin->ofpacts = NULL;
4831     xin->ofpacts_len = 0;
4832     xin->tcp_flags = tcp_flags;
4833     xin->resubmit_hook = NULL;
4834     xin->report_hook = NULL;
4835     xin->resubmit_stats = NULL;
4836     xin->recurse = 0;
4837     xin->resubmits = 0;
4838     xin->wc = wc;
4839     xin->odp_actions = odp_actions;
4840
4841     /* Do recirc lookup. */
4842     xin->frozen_state = NULL;
4843     if (flow->recirc_id) {
4844         const struct recirc_id_node *node
4845             = recirc_id_node_find(flow->recirc_id);
4846         if (node) {
4847             xin->frozen_state = &node->state;
4848         }
4849     }
4850 }
4851
4852 void
4853 xlate_out_uninit(struct xlate_out *xout)
4854 {
4855     if (xout) {
4856         recirc_refs_unref(&xout->recircs);
4857     }
4858 }
4859
4860 /* Translates the 'ofpacts_len' bytes of "struct ofpact"s starting at 'ofpacts'
4861  * into datapath actions, using 'ctx', and discards the datapath actions. */
4862 void
4863 xlate_actions_for_side_effects(struct xlate_in *xin)
4864 {
4865     struct xlate_out xout;
4866     enum xlate_error error;
4867
4868     error = xlate_actions(xin, &xout);
4869     if (error) {
4870         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
4871
4872         VLOG_WARN_RL(&rl, "xlate_actions failed (%s)!", xlate_strerror(error));
4873     }
4874
4875     xlate_out_uninit(&xout);
4876 }
4877 \f
4878 static struct skb_priority_to_dscp *
4879 get_skb_priority(const struct xport *xport, uint32_t skb_priority)
4880 {
4881     struct skb_priority_to_dscp *pdscp;
4882     uint32_t hash;
4883
4884     hash = hash_int(skb_priority, 0);
4885     HMAP_FOR_EACH_IN_BUCKET (pdscp, hmap_node, hash, &xport->skb_priorities) {
4886         if (pdscp->skb_priority == skb_priority) {
4887             return pdscp;
4888         }
4889     }
4890     return NULL;
4891 }
4892
4893 static bool
4894 dscp_from_skb_priority(const struct xport *xport, uint32_t skb_priority,
4895                        uint8_t *dscp)
4896 {
4897     struct skb_priority_to_dscp *pdscp = get_skb_priority(xport, skb_priority);
4898     *dscp = pdscp ? pdscp->dscp : 0;
4899     return pdscp != NULL;
4900 }
4901
4902 static size_t
4903 count_skb_priorities(const struct xport *xport)
4904 {
4905     return hmap_count(&xport->skb_priorities);
4906 }
4907
4908 static void
4909 clear_skb_priorities(struct xport *xport)
4910 {
4911     struct skb_priority_to_dscp *pdscp, *next;
4912
4913     HMAP_FOR_EACH_SAFE (pdscp, next, hmap_node, &xport->skb_priorities) {
4914         hmap_remove(&xport->skb_priorities, &pdscp->hmap_node);
4915         free(pdscp);
4916     }
4917 }
4918
4919 static bool
4920 actions_output_to_local_port(const struct xlate_ctx *ctx)
4921 {
4922     odp_port_t local_odp_port = ofp_port_to_odp_port(ctx->xbridge, OFPP_LOCAL);
4923     const struct nlattr *a;
4924     unsigned int left;
4925
4926     NL_ATTR_FOR_EACH_UNSAFE (a, left, ctx->odp_actions->data,
4927                              ctx->odp_actions->size) {
4928         if (nl_attr_type(a) == OVS_ACTION_ATTR_OUTPUT
4929             && nl_attr_get_odp_port(a) == local_odp_port) {
4930             return true;
4931         }
4932     }
4933     return false;
4934 }
4935
4936 #if defined(__linux__)
4937 /* Returns the maximum number of packets that the Linux kernel is willing to
4938  * queue up internally to certain kinds of software-implemented ports, or the
4939  * default (and rarely modified) value if it cannot be determined. */
4940 static int
4941 netdev_max_backlog(void)
4942 {
4943     static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
4944     static int max_backlog = 1000; /* The normal default value. */
4945
4946     if (ovsthread_once_start(&once)) {
4947         static const char filename[] = "/proc/sys/net/core/netdev_max_backlog";
4948         FILE *stream;
4949         int n;
4950
4951         stream = fopen(filename, "r");
4952         if (!stream) {
4953             VLOG_INFO("%s: open failed (%s)", filename, ovs_strerror(errno));
4954         } else {
4955             if (fscanf(stream, "%d", &n) != 1) {
4956                 VLOG_WARN("%s: read error", filename);
4957             } else if (n <= 100) {
4958                 VLOG_WARN("%s: unexpectedly small value %d", filename, n);
4959             } else {
4960                 max_backlog = n;
4961             }
4962             fclose(stream);
4963         }
4964         ovsthread_once_done(&once);
4965
4966         VLOG_DBG("%s: using %d max_backlog", filename, max_backlog);
4967     }
4968
4969     return max_backlog;
4970 }
4971
4972 /* Counts and returns the number of OVS_ACTION_ATTR_OUTPUT actions in
4973  * 'odp_actions'. */
4974 static int
4975 count_output_actions(const struct ofpbuf *odp_actions)
4976 {
4977     const struct nlattr *a;
4978     size_t left;
4979     int n = 0;
4980
4981     NL_ATTR_FOR_EACH_UNSAFE (a, left, odp_actions->data, odp_actions->size) {
4982         if (a->nla_type == OVS_ACTION_ATTR_OUTPUT) {
4983             n++;
4984         }
4985     }
4986     return n;
4987 }
4988 #endif /* defined(__linux__) */
4989
4990 /* Returns true if 'odp_actions' contains more output actions than the datapath
4991  * can reliably handle in one go.  On Linux, this is the value of the
4992  * net.core.netdev_max_backlog sysctl, which limits the maximum number of
4993  * packets that the kernel is willing to queue up for processing while the
4994  * datapath is processing a set of actions. */
4995 static bool
4996 too_many_output_actions(const struct ofpbuf *odp_actions OVS_UNUSED)
4997 {
4998 #ifdef __linux__
4999     return (odp_actions->size / NL_A_U32_SIZE > netdev_max_backlog()
5000             && count_output_actions(odp_actions) > netdev_max_backlog());
5001 #else
5002     /* OSes other than Linux might have similar limits, but we don't know how
5003      * to determine them.*/
5004     return false;
5005 #endif
5006 }
5007
5008 static void
5009 xlate_wc_init(struct xlate_ctx *ctx)
5010 {
5011     flow_wildcards_init_catchall(ctx->wc);
5012
5013     /* Some fields we consider to always be examined. */
5014     WC_MASK_FIELD(ctx->wc, in_port);
5015     WC_MASK_FIELD(ctx->wc, dl_type);
5016     if (is_ip_any(&ctx->xin->flow)) {
5017         WC_MASK_FIELD_MASK(ctx->wc, nw_frag, FLOW_NW_FRAG_MASK);
5018     }
5019
5020     if (ctx->xbridge->support.odp.recirc) {
5021         /* Always exactly match recirc_id when datapath supports
5022          * recirculation.  */
5023         WC_MASK_FIELD(ctx->wc, recirc_id);
5024     }
5025
5026     if (ctx->xbridge->netflow) {
5027         netflow_mask_wc(&ctx->xin->flow, ctx->wc);
5028     }
5029
5030     tnl_wc_init(&ctx->xin->flow, ctx->wc);
5031 }
5032
5033 static void
5034 xlate_wc_finish(struct xlate_ctx *ctx)
5035 {
5036     /* Clear the metadata and register wildcard masks, because we won't
5037      * use non-header fields as part of the cache. */
5038     flow_wildcards_clear_non_packet_fields(ctx->wc);
5039
5040     /* ICMPv4 and ICMPv6 have 8-bit "type" and "code" fields.  struct flow
5041      * uses the low 8 bits of the 16-bit tp_src and tp_dst members to
5042      * represent these fields.  The datapath interface, on the other hand,
5043      * represents them with just 8 bits each.  This means that if the high
5044      * 8 bits of the masks for these fields somehow become set, then they
5045      * will get chopped off by a round trip through the datapath, and
5046      * revalidation will spot that as an inconsistency and delete the flow.
5047      * Avoid the problem here by making sure that only the low 8 bits of
5048      * either field can be unwildcarded for ICMP.
5049      */
5050     if (is_icmpv4(&ctx->xin->flow) || is_icmpv6(&ctx->xin->flow)) {
5051         ctx->wc->masks.tp_src &= htons(UINT8_MAX);
5052         ctx->wc->masks.tp_dst &= htons(UINT8_MAX);
5053     }
5054     /* VLAN_TCI CFI bit must be matched if any of the TCI is matched. */
5055     if (ctx->wc->masks.vlan_tci) {
5056         ctx->wc->masks.vlan_tci |= htons(VLAN_CFI);
5057     }
5058 }
5059
5060 /* Translates the flow, actions, or rule in 'xin' into datapath actions in
5061  * 'xout'.
5062  * The caller must take responsibility for eventually freeing 'xout', with
5063  * xlate_out_uninit().
5064  * Returns 'XLATE_OK' if translation was successful.  In case of an error an
5065  * empty set of actions will be returned in 'xin->odp_actions' (if non-NULL),
5066  * so that most callers may ignore the return value and transparently install a
5067  * drop flow when the translation fails. */
5068 enum xlate_error
5069 xlate_actions(struct xlate_in *xin, struct xlate_out *xout)
5070 {
5071     *xout = (struct xlate_out) {
5072         .slow = 0,
5073         .recircs = RECIRC_REFS_EMPTY_INITIALIZER,
5074     };
5075
5076     struct xlate_cfg *xcfg = ovsrcu_get(struct xlate_cfg *, &xcfgp);
5077     struct xbridge *xbridge = xbridge_lookup(xcfg, xin->ofproto);
5078     if (!xbridge) {
5079         return XLATE_BRIDGE_NOT_FOUND;
5080     }
5081
5082     struct flow *flow = &xin->flow;
5083
5084     union mf_subvalue stack_stub[1024 / sizeof(union mf_subvalue)];
5085     uint64_t action_set_stub[1024 / 8];
5086     uint64_t frozen_actions_stub[1024 / 8];
5087     struct flow_wildcards scratch_wc;
5088     uint64_t actions_stub[256 / 8];
5089     struct ofpbuf scratch_actions = OFPBUF_STUB_INITIALIZER(actions_stub);
5090     struct xlate_ctx ctx = {
5091         .xin = xin,
5092         .xout = xout,
5093         .base_flow = *flow,
5094         .orig_tunnel_ipv6_dst = flow_tnl_dst(&flow->tunnel),
5095         .xbridge = xbridge,
5096         .stack = OFPBUF_STUB_INITIALIZER(stack_stub),
5097         .rule = xin->rule,
5098         .wc = xin->wc ? xin->wc : &scratch_wc,
5099         .odp_actions = xin->odp_actions ? xin->odp_actions : &scratch_actions,
5100
5101         .recurse = xin->recurse,
5102         .resubmits = xin->resubmits,
5103         .in_group = false,
5104         .in_action_set = false,
5105
5106         .table_id = 0,
5107         .rule_cookie = OVS_BE64_MAX,
5108         .orig_skb_priority = flow->skb_priority,
5109         .sflow_n_outputs = 0,
5110         .sflow_odp_port = 0,
5111         .nf_output_iface = NF_OUT_DROP,
5112         .exit = false,
5113         .error = XLATE_OK,
5114         .mirrors = 0,
5115
5116         .freezing = false,
5117         .frozen_actions = OFPBUF_STUB_INITIALIZER(frozen_actions_stub),
5118         .pause = NULL,
5119
5120         .conntracked = false,
5121
5122         .ct_nat_action = NULL,
5123
5124         .action_set_has_group = false,
5125         .action_set = OFPBUF_STUB_INITIALIZER(action_set_stub),
5126     };
5127
5128     /* 'base_flow' reflects the packet as it came in, but we need it to reflect
5129      * the packet as the datapath will treat it for output actions:
5130      *
5131      *     - Our datapath doesn't retain tunneling information without us
5132      *       re-setting it, so clear the tunnel data.
5133      *
5134      *     - For VLAN splinters, a higher layer may pretend that the packet
5135      *       came in on 'flow->in_port.ofp_port' with 'flow->vlan_tci'
5136      *       attached, because that's how we want to treat it from an OpenFlow
5137      *       perspective.  But from the datapath's perspective it actually came
5138      *       in on a VLAN device without any VLAN attached.  So here we put the
5139      *       datapath's view of the VLAN information in 'base_flow' to ensure
5140      *       correct treatment.
5141      */
5142     memset(&ctx.base_flow.tunnel, 0, sizeof ctx.base_flow.tunnel);
5143     if (flow->in_port.ofp_port
5144         != vsp_realdev_to_vlandev(xbridge->ofproto,
5145                                   flow->in_port.ofp_port,
5146                                   flow->vlan_tci)) {
5147         ctx.base_flow.vlan_tci = 0;
5148     }
5149
5150     ofpbuf_reserve(ctx.odp_actions, NL_A_U32_SIZE);
5151     if (xin->wc) {
5152         xlate_wc_init(&ctx);
5153     }
5154
5155     COVERAGE_INC(xlate_actions);
5156
5157     if (xin->frozen_state) {
5158         const struct frozen_state *state = xin->frozen_state;
5159
5160         xlate_report(&ctx, "Thawing frozen state:");
5161
5162         if (xin->ofpacts_len > 0 || ctx.rule) {
5163             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
5164             const char *conflict = xin->ofpacts_len ? "actions" : "rule";
5165
5166             VLOG_WARN_RL(&rl, "Recirculation conflict (%s)!", conflict);
5167             xlate_report(&ctx, "- Recirculation conflict (%s)!", conflict);
5168             ctx.error = XLATE_RECIRCULATION_CONFLICT;
5169             goto exit;
5170         }
5171
5172         /* Set the bridge for post-recirculation processing if needed. */
5173         if (!uuid_equals(ofproto_dpif_get_uuid(ctx.xbridge->ofproto),
5174                          &state->ofproto_uuid)) {
5175             struct xlate_cfg *xcfg = ovsrcu_get(struct xlate_cfg *, &xcfgp);
5176             const struct xbridge *new_bridge
5177                 = xbridge_lookup_by_uuid(xcfg, &state->ofproto_uuid);
5178
5179             if (OVS_UNLIKELY(!new_bridge)) {
5180                 /* Drop the packet if the bridge cannot be found. */
5181                 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
5182                 VLOG_WARN_RL(&rl, "Frozen bridge no longer exists.");
5183                 xlate_report(&ctx, "- Frozen bridge no longer exists.");
5184                 ctx.error = XLATE_BRIDGE_NOT_FOUND;
5185                 goto exit;
5186             }
5187             ctx.xbridge = new_bridge;
5188         }
5189
5190         /* Set the thawed table id.  Note: A table lookup is done only if there
5191          * are no frozen actions. */
5192         ctx.table_id = state->table_id;
5193         xlate_report(&ctx, "- Resuming from table %"PRIu8, ctx.table_id);
5194
5195         if (!state->conntracked) {
5196             clear_conntrack(flow);
5197         }
5198
5199         /* Restore pipeline metadata. May change flow's in_port and other
5200          * metadata to the values that existed when freezing was triggered. */
5201         frozen_metadata_to_flow(&state->metadata, flow);
5202
5203         /* Restore stack, if any. */
5204         if (state->stack) {
5205             ofpbuf_put(&ctx.stack, state->stack,
5206                        state->n_stack * sizeof *state->stack);
5207         }
5208
5209         /* Restore mirror state. */
5210         ctx.mirrors = state->mirrors;
5211
5212         /* Restore action set, if any. */
5213         if (state->action_set_len) {
5214             xlate_report_actions(&ctx, "- Restoring action set",
5215                                  state->action_set, state->action_set_len);
5216
5217             flow->actset_output = OFPP_UNSET;
5218             xlate_write_actions__(&ctx, state->action_set,
5219                                   state->action_set_len);
5220         }
5221
5222         /* Restore frozen actions.  If there are no actions, processing will
5223          * start with a lookup in the table set above. */
5224         xin->ofpacts = state->ofpacts;
5225         xin->ofpacts_len = state->ofpacts_len;
5226         if (state->ofpacts_len) {
5227             xlate_report_actions(&ctx, "- Restoring actions",
5228                                  xin->ofpacts, xin->ofpacts_len);
5229         }
5230     } else if (OVS_UNLIKELY(flow->recirc_id)) {
5231         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
5232
5233         VLOG_WARN_RL(&rl, "Recirculation context not found for ID %"PRIx32,
5234                      flow->recirc_id);
5235         ctx.error = XLATE_NO_RECIRCULATION_CONTEXT;
5236         goto exit;
5237     }
5238     /* The bridge is now known so obtain its table version. */
5239     ctx.tables_version = ofproto_dpif_get_tables_version(ctx.xbridge->ofproto);
5240
5241     if (!xin->ofpacts && !ctx.rule) {
5242         ctx.rule = rule_dpif_lookup_from_table(
5243             ctx.xbridge->ofproto, ctx.tables_version, flow, xin->wc,
5244             ctx.xin->resubmit_stats, &ctx.table_id,
5245             flow->in_port.ofp_port, true, true);
5246         if (ctx.xin->resubmit_stats) {
5247             rule_dpif_credit_stats(ctx.rule, ctx.xin->resubmit_stats);
5248         }
5249         if (ctx.xin->xcache) {
5250             struct xc_entry *entry;
5251
5252             entry = xlate_cache_add_entry(ctx.xin->xcache, XC_RULE);
5253             entry->u.rule = ctx.rule;
5254             rule_dpif_ref(ctx.rule);
5255         }
5256
5257         if (OVS_UNLIKELY(ctx.xin->resubmit_hook)) {
5258             ctx.xin->resubmit_hook(ctx.xin, ctx.rule, 0);
5259         }
5260     }
5261
5262     /* Get the proximate input port of the packet.  (If xin->frozen_state,
5263      * flow->in_port is the ultimate input port of the packet.) */
5264     struct xport *in_port = get_ofp_port(xbridge,
5265                                          ctx.base_flow.in_port.ofp_port);
5266
5267     /* Tunnel stats only for not-thawed packets. */
5268     if (!xin->frozen_state && in_port && in_port->is_tunnel) {
5269         if (ctx.xin->resubmit_stats) {
5270             netdev_vport_inc_rx(in_port->netdev, ctx.xin->resubmit_stats);
5271             if (in_port->bfd) {
5272                 bfd_account_rx(in_port->bfd, ctx.xin->resubmit_stats);
5273             }
5274         }
5275         if (ctx.xin->xcache) {
5276             struct xc_entry *entry;
5277
5278             entry = xlate_cache_add_entry(ctx.xin->xcache, XC_NETDEV);
5279             entry->u.dev.rx = netdev_ref(in_port->netdev);
5280             entry->u.dev.bfd = bfd_ref(in_port->bfd);
5281         }
5282     }
5283
5284     if (!xin->frozen_state && process_special(&ctx, in_port)) {
5285         /* process_special() did all the processing for this packet.
5286          *
5287          * We do not perform special processing on thawed packets, since that
5288          * was done before they were frozen and should not be redone. */
5289     } else if (in_port && in_port->xbundle
5290                && xbundle_mirror_out(xbridge, in_port->xbundle)) {
5291         if (ctx.xin->packet != NULL) {
5292             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
5293             VLOG_WARN_RL(&rl, "bridge %s: dropping packet received on port "
5294                          "%s, which is reserved exclusively for mirroring",
5295                          ctx.xbridge->name, in_port->xbundle->name);
5296         }
5297     } else {
5298         /* Sampling is done on initial reception; don't redo after thawing. */
5299         unsigned int user_cookie_offset = 0;
5300         if (!xin->frozen_state) {
5301             user_cookie_offset = compose_sflow_action(&ctx);
5302             compose_ipfix_action(&ctx, ODPP_NONE);
5303         }
5304         size_t sample_actions_len = ctx.odp_actions->size;
5305
5306         if (tnl_process_ecn(flow)
5307             && (!in_port || may_receive(in_port, &ctx))) {
5308             const struct ofpact *ofpacts;
5309             size_t ofpacts_len;
5310
5311             if (xin->ofpacts) {
5312                 ofpacts = xin->ofpacts;
5313                 ofpacts_len = xin->ofpacts_len;
5314             } else if (ctx.rule) {
5315                 const struct rule_actions *actions
5316                     = rule_dpif_get_actions(ctx.rule);
5317                 ofpacts = actions->ofpacts;
5318                 ofpacts_len = actions->ofpacts_len;
5319                 ctx.rule_cookie = rule_dpif_get_flow_cookie(ctx.rule);
5320             } else {
5321                 OVS_NOT_REACHED();
5322             }
5323
5324             mirror_ingress_packet(&ctx);
5325             do_xlate_actions(ofpacts, ofpacts_len, &ctx);
5326             if (ctx.error) {
5327                 goto exit;
5328             }
5329
5330             /* We've let OFPP_NORMAL and the learning action look at the
5331              * packet, so cancel all actions and freezing if forwarding is
5332              * disabled. */
5333             if (in_port && (!xport_stp_forward_state(in_port) ||
5334                             !xport_rstp_forward_state(in_port))) {
5335                 ctx.odp_actions->size = sample_actions_len;
5336                 ctx_cancel_freeze(&ctx);
5337                 ofpbuf_clear(&ctx.action_set);
5338             }
5339
5340             if (!ctx.freezing) {
5341                 xlate_action_set(&ctx);
5342             }
5343             if (ctx.freezing) {
5344                 finish_freezing(&ctx);
5345             }
5346         }
5347
5348         /* Output only fully processed packets. */
5349         if (!ctx.freezing
5350             && xbridge->has_in_band
5351             && in_band_must_output_to_local_port(flow)
5352             && !actions_output_to_local_port(&ctx)) {
5353             compose_output_action(&ctx, OFPP_LOCAL, NULL);
5354         }
5355
5356         if (user_cookie_offset) {
5357             fix_sflow_action(&ctx, user_cookie_offset);
5358         }
5359     }
5360
5361     if (nl_attr_oversized(ctx.odp_actions->size)) {
5362         /* These datapath actions are too big for a Netlink attribute, so we
5363          * can't hand them to the kernel directly.  dpif_execute() can execute
5364          * them one by one with help, so just mark the result as SLOW_ACTION to
5365          * prevent the flow from being installed. */
5366         COVERAGE_INC(xlate_actions_oversize);
5367         ctx.xout->slow |= SLOW_ACTION;
5368     } else if (too_many_output_actions(ctx.odp_actions)) {
5369         COVERAGE_INC(xlate_actions_too_many_output);
5370         ctx.xout->slow |= SLOW_ACTION;
5371     }
5372
5373     /* Do netflow only for packets on initial reception, that are not sent to
5374      * the controller.  We consider packets sent to the controller to be part
5375      * of the control plane rather than the data plane. */
5376     if (!xin->frozen_state
5377         && xbridge->netflow
5378         && !(xout->slow & SLOW_CONTROLLER)) {
5379         if (ctx.xin->resubmit_stats) {
5380             netflow_flow_update(xbridge->netflow, flow,
5381                                 ctx.nf_output_iface,
5382                                 ctx.xin->resubmit_stats);
5383         }
5384         if (ctx.xin->xcache) {
5385             struct xc_entry *entry;
5386
5387             entry = xlate_cache_add_entry(ctx.xin->xcache, XC_NETFLOW);
5388             entry->u.nf.netflow = netflow_ref(xbridge->netflow);
5389             entry->u.nf.flow = xmemdup(flow, sizeof *flow);
5390             entry->u.nf.iface = ctx.nf_output_iface;
5391         }
5392     }
5393
5394     if (xin->wc) {
5395         xlate_wc_finish(&ctx);
5396     }
5397
5398 exit:
5399     ofpbuf_uninit(&ctx.stack);
5400     ofpbuf_uninit(&ctx.action_set);
5401     ofpbuf_uninit(&ctx.frozen_actions);
5402     ofpbuf_uninit(&scratch_actions);
5403
5404     /* Make sure we return a "drop flow" in case of an error. */
5405     if (ctx.error) {
5406         xout->slow = 0;
5407         if (xin->odp_actions) {
5408             ofpbuf_clear(xin->odp_actions);
5409         }
5410     }
5411     return ctx.error;
5412 }
5413
5414 enum ofperr
5415 xlate_resume(struct ofproto_dpif *ofproto,
5416              const struct ofputil_packet_in_private *pin,
5417              struct ofpbuf *odp_actions,
5418              enum slow_path_reason *slow)
5419 {
5420     struct dp_packet packet;
5421     dp_packet_use_const(&packet, pin->public.packet,
5422                         pin->public.packet_len);
5423
5424     struct flow flow;
5425     flow_extract(&packet, &flow);
5426
5427     struct xlate_in xin;
5428     xlate_in_init(&xin, ofproto, &flow, 0, NULL, ntohs(flow.tcp_flags),
5429                   &packet, NULL, odp_actions);
5430
5431     struct ofpact_note noop;
5432     ofpact_init_NOTE(&noop);
5433     noop.length = 0;
5434
5435     bool any_actions = pin->actions_len > 0;
5436     struct frozen_state state = {
5437         .table_id = 0,     /* Not the table where NXAST_PAUSE was executed. */
5438         .ofproto_uuid = pin->bridge,
5439         .stack = pin->stack,
5440         .n_stack = pin->n_stack,
5441         .mirrors = pin->mirrors,
5442         .conntracked = pin->conntracked,
5443
5444         /* When there are no actions, xlate_actions() will search the flow
5445          * table.  We don't want it to do that (we want it to resume), so
5446          * supply a no-op action if there aren't any.
5447          *
5448          * (We can't necessarily avoid translating actions entirely if there
5449          * aren't any actions, because there might be some finishing-up to do
5450          * at the end of the pipeline, and we don't check for those
5451          * conditions.) */
5452         .ofpacts = any_actions ? pin->actions : &noop.ofpact,
5453         .ofpacts_len = any_actions ? pin->actions_len : sizeof noop,
5454
5455         .action_set = pin->action_set,
5456         .action_set_len = pin->action_set_len,
5457     };
5458     frozen_metadata_from_flow(&state.metadata,
5459                               &pin->public.flow_metadata.flow);
5460     xin.frozen_state = &state;
5461
5462     struct xlate_out xout;
5463     enum xlate_error error = xlate_actions(&xin, &xout);
5464     *slow = xout.slow;
5465     xlate_out_uninit(&xout);
5466
5467     /* xlate_actions() can generate a number of errors, but only
5468      * XLATE_BRIDGE_NOT_FOUND really stands out to me as one that we should be
5469      * sure to report over OpenFlow.  The others could come up in packet-outs
5470      * or regular flow translation and I don't think that it's going to be too
5471      * useful to report them to the controller. */
5472     return error == XLATE_BRIDGE_NOT_FOUND ? OFPERR_NXR_STALE : 0;
5473 }
5474
5475 /* Sends 'packet' out 'ofport'.
5476  * May modify 'packet'.
5477  * Returns 0 if successful, otherwise a positive errno value. */
5478 int
5479 xlate_send_packet(const struct ofport_dpif *ofport, struct dp_packet *packet)
5480 {
5481     struct xlate_cfg *xcfg = ovsrcu_get(struct xlate_cfg *, &xcfgp);
5482     struct xport *xport;
5483     struct ofpact_output output;
5484     struct flow flow;
5485
5486     ofpact_init(&output.ofpact, OFPACT_OUTPUT, sizeof output);
5487     /* Use OFPP_NONE as the in_port to avoid special packet processing. */
5488     flow_extract(packet, &flow);
5489     flow.in_port.ofp_port = OFPP_NONE;
5490
5491     xport = xport_lookup(xcfg, ofport);
5492     if (!xport) {
5493         return EINVAL;
5494     }
5495     output.port = xport->ofp_port;
5496     output.max_len = 0;
5497
5498     return ofproto_dpif_execute_actions(xport->xbridge->ofproto, &flow, NULL,
5499                                         &output.ofpact, sizeof output,
5500                                         packet);
5501 }
5502
5503 struct xlate_cache *
5504 xlate_cache_new(void)
5505 {
5506     struct xlate_cache *xcache = xmalloc(sizeof *xcache);
5507
5508     ofpbuf_init(&xcache->entries, 512);
5509     return xcache;
5510 }
5511
5512 static struct xc_entry *
5513 xlate_cache_add_entry(struct xlate_cache *xcache, enum xc_type type)
5514 {
5515     struct xc_entry *entry;
5516
5517     entry = ofpbuf_put_zeros(&xcache->entries, sizeof *entry);
5518     entry->type = type;
5519
5520     return entry;
5521 }
5522
5523 static void
5524 xlate_cache_netdev(struct xc_entry *entry, const struct dpif_flow_stats *stats)
5525 {
5526     if (entry->u.dev.tx) {
5527         netdev_vport_inc_tx(entry->u.dev.tx, stats);
5528     }
5529     if (entry->u.dev.rx) {
5530         netdev_vport_inc_rx(entry->u.dev.rx, stats);
5531     }
5532     if (entry->u.dev.bfd) {
5533         bfd_account_rx(entry->u.dev.bfd, stats);
5534     }
5535 }
5536
5537 static void
5538 xlate_cache_normal(struct ofproto_dpif *ofproto, struct flow *flow, int vlan)
5539 {
5540     struct xlate_cfg *xcfg = ovsrcu_get(struct xlate_cfg *, &xcfgp);
5541     struct xbridge *xbridge;
5542     struct xbundle *xbundle;
5543     struct flow_wildcards wc;
5544
5545     xbridge = xbridge_lookup(xcfg, ofproto);
5546     if (!xbridge) {
5547         return;
5548     }
5549
5550     xbundle = lookup_input_bundle(xbridge, flow->in_port.ofp_port, false,
5551                                   NULL);
5552     if (!xbundle) {
5553         return;
5554     }
5555
5556     update_learning_table(xbridge, flow, &wc, vlan, xbundle);
5557 }
5558
5559 /* Push stats and perform side effects of flow translation. */
5560 void
5561 xlate_push_stats(struct xlate_cache *xcache,
5562                  const struct dpif_flow_stats *stats)
5563 {
5564     struct xc_entry *entry;
5565     struct ofpbuf entries = xcache->entries;
5566     struct eth_addr dmac;
5567
5568     if (!stats->n_packets) {
5569         return;
5570     }
5571
5572     XC_ENTRY_FOR_EACH (entry, entries, xcache) {
5573         switch (entry->type) {
5574         case XC_RULE:
5575             rule_dpif_credit_stats(entry->u.rule, stats);
5576             break;
5577         case XC_BOND:
5578             bond_account(entry->u.bond.bond, entry->u.bond.flow,
5579                          entry->u.bond.vid, stats->n_bytes);
5580             break;
5581         case XC_NETDEV:
5582             xlate_cache_netdev(entry, stats);
5583             break;
5584         case XC_NETFLOW:
5585             netflow_flow_update(entry->u.nf.netflow, entry->u.nf.flow,
5586                                 entry->u.nf.iface, stats);
5587             break;
5588         case XC_MIRROR:
5589             mirror_update_stats(entry->u.mirror.mbridge,
5590                                 entry->u.mirror.mirrors,
5591                                 stats->n_packets, stats->n_bytes);
5592             break;
5593         case XC_LEARN:
5594             ofproto_dpif_flow_mod(entry->u.learn.ofproto, entry->u.learn.fm);
5595             break;
5596         case XC_NORMAL:
5597             xlate_cache_normal(entry->u.normal.ofproto, entry->u.normal.flow,
5598                                entry->u.normal.vlan);
5599             break;
5600         case XC_FIN_TIMEOUT:
5601             xlate_fin_timeout__(entry->u.fin.rule, stats->tcp_flags,
5602                                 entry->u.fin.idle, entry->u.fin.hard);
5603             break;
5604         case XC_GROUP:
5605             group_dpif_credit_stats(entry->u.group.group, entry->u.group.bucket,
5606                                     stats);
5607             break;
5608         case XC_TNL_NEIGH:
5609             /* Lookup neighbor to avoid timeout. */
5610             tnl_neigh_lookup(entry->u.tnl_neigh_cache.br_name,
5611                              &entry->u.tnl_neigh_cache.d_ipv6, &dmac);
5612             break;
5613         default:
5614             OVS_NOT_REACHED();
5615         }
5616     }
5617 }
5618
5619 static void
5620 xlate_dev_unref(struct xc_entry *entry)
5621 {
5622     if (entry->u.dev.tx) {
5623         netdev_close(entry->u.dev.tx);
5624     }
5625     if (entry->u.dev.rx) {
5626         netdev_close(entry->u.dev.rx);
5627     }
5628     if (entry->u.dev.bfd) {
5629         bfd_unref(entry->u.dev.bfd);
5630     }
5631 }
5632
5633 static void
5634 xlate_cache_clear_netflow(struct netflow *netflow, struct flow *flow)
5635 {
5636     netflow_flow_clear(netflow, flow);
5637     netflow_unref(netflow);
5638     free(flow);
5639 }
5640
5641 void
5642 xlate_cache_clear(struct xlate_cache *xcache)
5643 {
5644     struct xc_entry *entry;
5645     struct ofpbuf entries;
5646
5647     if (!xcache) {
5648         return;
5649     }
5650
5651     XC_ENTRY_FOR_EACH (entry, entries, xcache) {
5652         switch (entry->type) {
5653         case XC_RULE:
5654             rule_dpif_unref(entry->u.rule);
5655             break;
5656         case XC_BOND:
5657             free(entry->u.bond.flow);
5658             bond_unref(entry->u.bond.bond);
5659             break;
5660         case XC_NETDEV:
5661             xlate_dev_unref(entry);
5662             break;
5663         case XC_NETFLOW:
5664             xlate_cache_clear_netflow(entry->u.nf.netflow, entry->u.nf.flow);
5665             break;
5666         case XC_MIRROR:
5667             mbridge_unref(entry->u.mirror.mbridge);
5668             break;
5669         case XC_LEARN:
5670             free(entry->u.learn.fm);
5671             ofpbuf_delete(entry->u.learn.ofpacts);
5672             break;
5673         case XC_NORMAL:
5674             free(entry->u.normal.flow);
5675             break;
5676         case XC_FIN_TIMEOUT:
5677             /* 'u.fin.rule' is always already held as a XC_RULE, which
5678              * has already released it's reference above. */
5679             break;
5680         case XC_GROUP:
5681             group_dpif_unref(entry->u.group.group);
5682             break;
5683         case XC_TNL_NEIGH:
5684             break;
5685         default:
5686             OVS_NOT_REACHED();
5687         }
5688     }
5689
5690     ofpbuf_clear(&xcache->entries);
5691 }
5692
5693 void
5694 xlate_cache_delete(struct xlate_cache *xcache)
5695 {
5696     xlate_cache_clear(xcache);
5697     ofpbuf_uninit(&xcache->entries);
5698     free(xcache);
5699 }