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