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