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