ofproto-dpif: Avoid redundant facet_find() in facet_lookup_valid().
[sliver-openvswitch.git] / ofproto / ofproto-dpif.c
1 /*
2  * Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18
19 #include "ofproto/ofproto-provider.h"
20
21 #include <errno.h>
22
23 #include "bfd.h"
24 #include "bond.h"
25 #include "bundle.h"
26 #include "byte-order.h"
27 #include "connmgr.h"
28 #include "coverage.h"
29 #include "cfm.h"
30 #include "dpif.h"
31 #include "dynamic-string.h"
32 #include "fail-open.h"
33 #include "hmapx.h"
34 #include "lacp.h"
35 #include "learn.h"
36 #include "mac-learning.h"
37 #include "meta-flow.h"
38 #include "multipath.h"
39 #include "netdev-vport.h"
40 #include "netdev.h"
41 #include "netlink.h"
42 #include "nx-match.h"
43 #include "odp-util.h"
44 #include "ofp-util.h"
45 #include "ofpbuf.h"
46 #include "ofp-actions.h"
47 #include "ofp-parse.h"
48 #include "ofp-print.h"
49 #include "ofproto-dpif-governor.h"
50 #include "ofproto-dpif-ipfix.h"
51 #include "ofproto-dpif-sflow.h"
52 #include "poll-loop.h"
53 #include "simap.h"
54 #include "smap.h"
55 #include "timer.h"
56 #include "tunnel.h"
57 #include "unaligned.h"
58 #include "unixctl.h"
59 #include "vlan-bitmap.h"
60 #include "vlog.h"
61
62 VLOG_DEFINE_THIS_MODULE(ofproto_dpif);
63
64 COVERAGE_DEFINE(ofproto_dpif_expired);
65 COVERAGE_DEFINE(ofproto_dpif_xlate);
66 COVERAGE_DEFINE(facet_changed_rule);
67 COVERAGE_DEFINE(facet_revalidate);
68 COVERAGE_DEFINE(facet_unexpected);
69 COVERAGE_DEFINE(facet_suppress);
70
71 /* Maximum depth of flow table recursion (due to resubmit actions) in a
72  * flow translation. */
73 #define MAX_RESUBMIT_RECURSION 64
74
75 /* Number of implemented OpenFlow tables. */
76 enum { N_TABLES = 255 };
77 enum { TBL_INTERNAL = N_TABLES - 1 };    /* Used for internal hidden rules. */
78 BUILD_ASSERT_DECL(N_TABLES >= 2 && N_TABLES <= 255);
79
80 struct ofport_dpif;
81 struct ofproto_dpif;
82 struct flow_miss;
83 struct facet;
84
85 struct rule_dpif {
86     struct rule up;
87
88     /* These statistics:
89      *
90      *   - Do include packets and bytes from facets that have been deleted or
91      *     whose own statistics have been folded into the rule.
92      *
93      *   - Do include packets and bytes sent "by hand" that were accounted to
94      *     the rule without any facet being involved (this is a rare corner
95      *     case in rule_execute()).
96      *
97      *   - Do not include packet or bytes that can be obtained from any facet's
98      *     packet_count or byte_count member or that can be obtained from the
99      *     datapath by, e.g., dpif_flow_get() for any subfacet.
100      */
101     uint64_t packet_count;       /* Number of packets received. */
102     uint64_t byte_count;         /* Number of bytes received. */
103
104     tag_type tag;                /* Caches rule_calculate_tag() result. */
105
106     struct list facets;          /* List of "struct facet"s. */
107 };
108
109 static struct rule_dpif *rule_dpif_cast(const struct rule *rule)
110 {
111     return rule ? CONTAINER_OF(rule, struct rule_dpif, up) : NULL;
112 }
113
114 static struct rule_dpif *rule_dpif_lookup(struct ofproto_dpif *,
115                                           const struct flow *);
116 static struct rule_dpif *rule_dpif_lookup__(struct ofproto_dpif *,
117                                             const struct flow *,
118                                             uint8_t table);
119 static struct rule_dpif *rule_dpif_miss_rule(struct ofproto_dpif *ofproto,
120                                              const struct flow *flow);
121
122 static void rule_credit_stats(struct rule_dpif *,
123                               const struct dpif_flow_stats *);
124 static void flow_push_stats(struct facet *, const struct dpif_flow_stats *);
125 static tag_type rule_calculate_tag(const struct flow *,
126                                    const struct minimask *, uint32_t basis);
127 static void rule_invalidate(const struct rule_dpif *);
128
129 #define MAX_MIRRORS 32
130 typedef uint32_t mirror_mask_t;
131 #define MIRROR_MASK_C(X) UINT32_C(X)
132 BUILD_ASSERT_DECL(sizeof(mirror_mask_t) * CHAR_BIT >= MAX_MIRRORS);
133 struct ofmirror {
134     struct ofproto_dpif *ofproto; /* Owning ofproto. */
135     size_t idx;                 /* In ofproto's "mirrors" array. */
136     void *aux;                  /* Key supplied by ofproto's client. */
137     char *name;                 /* Identifier for log messages. */
138
139     /* Selection criteria. */
140     struct hmapx srcs;          /* Contains "struct ofbundle *"s. */
141     struct hmapx dsts;          /* Contains "struct ofbundle *"s. */
142     unsigned long *vlans;       /* Bitmap of chosen VLANs, NULL selects all. */
143
144     /* Output (exactly one of out == NULL and out_vlan == -1 is true). */
145     struct ofbundle *out;       /* Output port or NULL. */
146     int out_vlan;               /* Output VLAN or -1. */
147     mirror_mask_t dup_mirrors;  /* Bitmap of mirrors with the same output. */
148
149     /* Counters. */
150     int64_t packet_count;       /* Number of packets sent. */
151     int64_t byte_count;         /* Number of bytes sent. */
152 };
153
154 static void mirror_destroy(struct ofmirror *);
155 static void update_mirror_stats(struct ofproto_dpif *ofproto,
156                                 mirror_mask_t mirrors,
157                                 uint64_t packets, uint64_t bytes);
158
159 struct ofbundle {
160     struct hmap_node hmap_node; /* In struct ofproto's "bundles" hmap. */
161     struct ofproto_dpif *ofproto; /* Owning ofproto. */
162     void *aux;                  /* Key supplied by ofproto's client. */
163     char *name;                 /* Identifier for log messages. */
164
165     /* Configuration. */
166     struct list ports;          /* Contains "struct ofport"s. */
167     enum port_vlan_mode vlan_mode; /* VLAN mode */
168     int vlan;                   /* -1=trunk port, else a 12-bit VLAN ID. */
169     unsigned long *trunks;      /* Bitmap of trunked VLANs, if 'vlan' == -1.
170                                  * NULL if all VLANs are trunked. */
171     struct lacp *lacp;          /* LACP if LACP is enabled, otherwise NULL. */
172     struct bond *bond;          /* Nonnull iff more than one port. */
173     bool use_priority_tags;     /* Use 802.1p tag for frames in VLAN 0? */
174
175     /* Status. */
176     bool floodable;          /* True if no port has OFPUTIL_PC_NO_FLOOD set. */
177
178     /* Port mirroring info. */
179     mirror_mask_t src_mirrors;  /* Mirrors triggered when packet received. */
180     mirror_mask_t dst_mirrors;  /* Mirrors triggered when packet sent. */
181     mirror_mask_t mirror_out;   /* Mirrors that output to this bundle. */
182 };
183
184 static void bundle_remove(struct ofport *);
185 static void bundle_update(struct ofbundle *);
186 static void bundle_destroy(struct ofbundle *);
187 static void bundle_del_port(struct ofport_dpif *);
188 static void bundle_run(struct ofbundle *);
189 static void bundle_wait(struct ofbundle *);
190 static struct ofbundle *lookup_input_bundle(const struct ofproto_dpif *,
191                                             uint16_t in_port, bool warn,
192                                             struct ofport_dpif **in_ofportp);
193
194 /* A controller may use OFPP_NONE as the ingress port to indicate that
195  * it did not arrive on a "real" port.  'ofpp_none_bundle' exists for
196  * when an input bundle is needed for validation (e.g., mirroring or
197  * OFPP_NORMAL processing).  It is not connected to an 'ofproto' or have
198  * any 'port' structs, so care must be taken when dealing with it. */
199 static struct ofbundle ofpp_none_bundle = {
200     .name      = "OFPP_NONE",
201     .vlan_mode = PORT_VLAN_TRUNK
202 };
203
204 static void stp_run(struct ofproto_dpif *ofproto);
205 static void stp_wait(struct ofproto_dpif *ofproto);
206 static int set_stp_port(struct ofport *,
207                         const struct ofproto_port_stp_settings *);
208
209 static bool ofbundle_includes_vlan(const struct ofbundle *, uint16_t vlan);
210
211 struct action_xlate_ctx {
212 /* action_xlate_ctx_init() initializes these members. */
213
214     /* The ofproto. */
215     struct ofproto_dpif *ofproto;
216
217     /* Flow to which the OpenFlow actions apply.  xlate_actions() will modify
218      * this flow when actions change header fields. */
219     struct flow flow;
220
221     /* Flow at the last commit. */
222     struct flow base_flow;
223
224     /* Tunnel IP destination address as received.  This is stored separately
225      * as the base_flow.tunnel is cleared on init to reflect the datapath
226      * behavior.  Used to make sure not to send tunneled output to ourselves,
227      * which might lead to an infinite loop.  This could happen easily
228      * if a tunnel is marked as 'ip_remote=flow', and the flow does not
229      * actually set the tun_dst field. */
230     ovs_be32 orig_tunnel_ip_dst;
231
232     /* stack for the push and pop actions.
233      * Each stack element is of the type "union mf_subvalue". */
234     struct ofpbuf stack;
235     union mf_subvalue init_stack[1024 / sizeof(union mf_subvalue)];
236
237     /* The packet corresponding to 'flow', or a null pointer if we are
238      * revalidating without a packet to refer to. */
239     const struct ofpbuf *packet;
240
241     /* Should OFPP_NORMAL update the MAC learning table?  Should "learn"
242      * actions update the flow table?
243      *
244      * We want to update these tables if we are actually processing a packet,
245      * or if we are accounting for packets that the datapath has processed, but
246      * not if we are just revalidating. */
247     bool may_learn;
248
249     /* The rule that we are currently translating, or NULL. */
250     struct rule_dpif *rule;
251
252     /* Union of the set of TCP flags seen so far in this flow.  (Used only by
253      * NXAST_FIN_TIMEOUT.  Set to zero to avoid updating updating rules'
254      * timeouts.) */
255     uint8_t tcp_flags;
256
257     /* If nonnull, flow translation calls this function just before executing a
258      * resubmit or OFPP_TABLE action.  In addition, disables logging of traces
259      * when the recursion depth is exceeded.
260      *
261      * 'rule' is the rule being submitted into.  It will be null if the
262      * resubmit or OFPP_TABLE action didn't find a matching rule.
263      *
264      * This is normally null so the client has to set it manually after
265      * calling action_xlate_ctx_init(). */
266     void (*resubmit_hook)(struct action_xlate_ctx *, struct rule_dpif *rule);
267
268     /* If nonnull, flow translation calls this function to report some
269      * significant decision, e.g. to explain why OFPP_NORMAL translation
270      * dropped a packet. */
271     void (*report_hook)(struct action_xlate_ctx *, const char *s);
272
273     /* If nonnull, flow translation credits the specified statistics to each
274      * rule reached through a resubmit or OFPP_TABLE action.
275      *
276      * This is normally null so the client has to set it manually after
277      * calling action_xlate_ctx_init(). */
278     const struct dpif_flow_stats *resubmit_stats;
279
280 /* xlate_actions() initializes and uses these members.  The client might want
281  * to look at them after it returns. */
282
283     struct ofpbuf *odp_actions; /* Datapath actions. */
284     tag_type tags;              /* Tags associated with actions. */
285     enum slow_path_reason slow; /* 0 if fast path may be used. */
286     bool has_learn;             /* Actions include NXAST_LEARN? */
287     bool has_normal;            /* Actions output to OFPP_NORMAL? */
288     bool has_fin_timeout;       /* Actions include NXAST_FIN_TIMEOUT? */
289     uint16_t nf_output_iface;   /* Output interface index for NetFlow. */
290     mirror_mask_t mirrors;      /* Bitmap of associated mirrors. */
291
292 /* xlate_actions() initializes and uses these members, but the client has no
293  * reason to look at them. */
294
295     int recurse;                /* Recursion level, via xlate_table_action. */
296     bool max_resubmit_trigger;  /* Recursed too deeply during translation. */
297     uint32_t orig_skb_priority; /* Priority when packet arrived. */
298     uint8_t table_id;           /* OpenFlow table ID where flow was found. */
299     uint32_t sflow_n_outputs;   /* Number of output ports. */
300     uint32_t sflow_odp_port;    /* Output port for composing sFlow action. */
301     uint16_t user_cookie_offset;/* Used for user_action_cookie fixup. */
302     bool exit;                  /* No further actions should be processed. */
303 };
304
305 /* Initial values of fields of the packet that may be changed during
306  * flow processing and needed later. */
307 struct initial_vals {
308    /* This is the value of vlan_tci in the packet as actually received from
309     * dpif.  This is the same as the facet's flow.vlan_tci unless the packet
310     * was received via a VLAN splinter.  In that case, this value is 0
311     * (because the packet as actually received from the dpif had no 802.1Q
312     * tag) but the facet's flow.vlan_tci is set to the VLAN that the splinter
313     * represents.
314     *
315     * This member should be removed when the VLAN splinters feature is no
316     * longer needed. */
317     ovs_be16 vlan_tci;
318 };
319
320 static void action_xlate_ctx_init(struct action_xlate_ctx *,
321                                   struct ofproto_dpif *, const struct flow *,
322                                   const struct initial_vals *initial_vals,
323                                   struct rule_dpif *,
324                                   uint8_t tcp_flags, const struct ofpbuf *);
325 static void xlate_actions(struct action_xlate_ctx *,
326                           const struct ofpact *ofpacts, size_t ofpacts_len,
327                           struct ofpbuf *odp_actions);
328 static void xlate_actions_for_side_effects(struct action_xlate_ctx *,
329                                            const struct ofpact *ofpacts,
330                                            size_t ofpacts_len);
331 static void xlate_table_action(struct action_xlate_ctx *, uint16_t in_port,
332                                uint8_t table_id, bool may_packet_in);
333
334 static size_t put_userspace_action(const struct ofproto_dpif *,
335                                    struct ofpbuf *odp_actions,
336                                    const struct flow *,
337                                    const union user_action_cookie *,
338                                    const size_t);
339
340 static void compose_slow_path(const struct ofproto_dpif *, const struct flow *,
341                               enum slow_path_reason,
342                               uint64_t *stub, size_t stub_size,
343                               const struct nlattr **actionsp,
344                               size_t *actions_lenp);
345
346 static void xlate_report(struct action_xlate_ctx *ctx, const char *s);
347
348 /* A subfacet (see "struct subfacet" below) has three possible installation
349  * states:
350  *
351  *   - SF_NOT_INSTALLED: Not installed in the datapath.  This will only be the
352  *     case just after the subfacet is created, just before the subfacet is
353  *     destroyed, or if the datapath returns an error when we try to install a
354  *     subfacet.
355  *
356  *   - SF_FAST_PATH: The subfacet's actions are installed in the datapath.
357  *
358  *   - SF_SLOW_PATH: An action that sends every packet for the subfacet through
359  *     ofproto_dpif is installed in the datapath.
360  */
361 enum subfacet_path {
362     SF_NOT_INSTALLED,           /* No datapath flow for this subfacet. */
363     SF_FAST_PATH,               /* Full actions are installed. */
364     SF_SLOW_PATH,               /* Send-to-userspace action is installed. */
365 };
366
367 static const char *subfacet_path_to_string(enum subfacet_path);
368
369 /* A dpif flow and actions associated with a facet.
370  *
371  * See also the large comment on struct facet. */
372 struct subfacet {
373     /* Owners. */
374     struct hmap_node hmap_node; /* In struct ofproto_dpif 'subfacets' list. */
375     struct list list_node;      /* In struct facet's 'facets' list. */
376     struct facet *facet;        /* Owning facet. */
377
378     enum odp_key_fitness key_fitness;
379     struct nlattr *key;
380     int key_len;
381
382     long long int used;         /* Time last used; time created if not used. */
383     long long int created;      /* Time created. */
384
385     uint64_t dp_packet_count;   /* Last known packet count in the datapath. */
386     uint64_t dp_byte_count;     /* Last known byte count in the datapath. */
387
388     /* Datapath actions.
389      *
390      * These should be essentially identical for every subfacet in a facet, but
391      * may differ in trivial ways due to VLAN splinters. */
392     size_t actions_len;         /* Number of bytes in actions[]. */
393     struct nlattr *actions;     /* Datapath actions. */
394
395     enum slow_path_reason slow; /* 0 if fast path may be used. */
396     enum subfacet_path path;    /* Installed in datapath? */
397
398     /* Initial values of the packet that may be needed later. */
399     struct initial_vals initial_vals;
400
401     /* Datapath port the packet arrived on.  This is needed to remove
402      * flows for ports that are no longer part of the bridge.  Since the
403      * flow definition only has the OpenFlow port number and the port is
404      * no longer part of the bridge, we can't determine the datapath port
405      * number needed to delete the flow from the datapath. */
406     uint32_t odp_in_port;
407 };
408
409 #define SUBFACET_DESTROY_MAX_BATCH 50
410
411 static struct subfacet *subfacet_create(struct facet *, struct flow_miss *miss,
412                                         long long int now);
413 static struct subfacet *subfacet_find(struct ofproto_dpif *,
414                                       const struct nlattr *key, size_t key_len,
415                                       uint32_t key_hash);
416 static void subfacet_destroy(struct subfacet *);
417 static void subfacet_destroy__(struct subfacet *);
418 static void subfacet_destroy_batch(struct ofproto_dpif *,
419                                    struct subfacet **, int n);
420 static void subfacet_reset_dp_stats(struct subfacet *,
421                                     struct dpif_flow_stats *);
422 static void subfacet_update_time(struct subfacet *, long long int used);
423 static void subfacet_update_stats(struct subfacet *,
424                                   const struct dpif_flow_stats *);
425 static void subfacet_make_actions(struct subfacet *,
426                                   const struct ofpbuf *packet,
427                                   struct ofpbuf *odp_actions);
428 static int subfacet_install(struct subfacet *,
429                             const struct nlattr *actions, size_t actions_len,
430                             struct dpif_flow_stats *, enum slow_path_reason);
431 static void subfacet_uninstall(struct subfacet *);
432
433 static enum subfacet_path subfacet_want_path(enum slow_path_reason);
434
435 /* An exact-match instantiation of an OpenFlow flow.
436  *
437  * A facet associates a "struct flow", which represents the Open vSwitch
438  * userspace idea of an exact-match flow, with one or more subfacets.  Each
439  * subfacet tracks the datapath's idea of the exact-match flow equivalent to
440  * the facet.  When the kernel module (or other dpif implementation) and Open
441  * vSwitch userspace agree on the definition of a flow key, there is exactly
442  * one subfacet per facet.  If the dpif implementation supports more-specific
443  * flow matching than userspace, however, a facet can have more than one
444  * subfacet, each of which corresponds to some distinction in flow that
445  * userspace simply doesn't understand.
446  *
447  * Flow expiration works in terms of subfacets, so a facet must have at least
448  * one subfacet or it will never expire, leaking memory. */
449 struct facet {
450     /* Owners. */
451     struct hmap_node hmap_node;  /* In owning ofproto's 'facets' hmap. */
452     struct list list_node;       /* In owning rule's 'facets' list. */
453     struct rule_dpif *rule;      /* Owning rule. */
454
455     /* Owned data. */
456     struct list subfacets;
457     long long int used;         /* Time last used; time created if not used. */
458
459     /* Key. */
460     struct flow flow;
461
462     /* These statistics:
463      *
464      *   - Do include packets and bytes sent "by hand", e.g. with
465      *     dpif_execute().
466      *
467      *   - Do include packets and bytes that were obtained from the datapath
468      *     when a subfacet's statistics were reset (e.g. dpif_flow_put() with
469      *     DPIF_FP_ZERO_STATS).
470      *
471      *   - Do not include packets or bytes that can be obtained from the
472      *     datapath for any existing subfacet.
473      */
474     uint64_t packet_count;       /* Number of packets received. */
475     uint64_t byte_count;         /* Number of bytes received. */
476
477     /* Resubmit statistics. */
478     uint64_t prev_packet_count;  /* Number of packets from last stats push. */
479     uint64_t prev_byte_count;    /* Number of bytes from last stats push. */
480     long long int prev_used;     /* Used time from last stats push. */
481
482     /* Accounting. */
483     uint64_t accounted_bytes;    /* Bytes processed by facet_account(). */
484     struct netflow_flow nf_flow; /* Per-flow NetFlow tracking data. */
485     uint8_t tcp_flags;           /* TCP flags seen for this 'rule'. */
486
487     /* Properties of datapath actions.
488      *
489      * Every subfacet has its own actions because actions can differ slightly
490      * between splintered and non-splintered subfacets due to the VLAN tag
491      * being initially different (present vs. absent).  All of them have these
492      * properties in common so we just store one copy of them here. */
493     bool has_learn;              /* Actions include NXAST_LEARN? */
494     bool has_normal;             /* Actions output to OFPP_NORMAL? */
495     bool has_fin_timeout;        /* Actions include NXAST_FIN_TIMEOUT? */
496     tag_type tags;               /* Tags that would require revalidation. */
497     mirror_mask_t mirrors;       /* Bitmap of dependent mirrors. */
498
499     /* Storage for a single subfacet, to reduce malloc() time and space
500      * overhead.  (A facet always has at least one subfacet and in the common
501      * case has exactly one subfacet.  However, 'one_subfacet' may not
502      * always be valid, since it could have been removed after newer
503      * subfacets were pushed onto the 'subfacets' list.) */
504     struct subfacet one_subfacet;
505
506     long long int learn_rl;      /* Rate limiter for facet_learn(). */
507 };
508
509 static struct facet *facet_create(struct rule_dpif *,
510                                   const struct flow *, uint32_t hash);
511 static void facet_remove(struct facet *);
512 static void facet_free(struct facet *);
513
514 static struct facet *facet_find(struct ofproto_dpif *,
515                                 const struct flow *, uint32_t hash);
516 static struct facet *facet_lookup_valid(struct ofproto_dpif *,
517                                         const struct flow *, uint32_t hash);
518 static bool facet_revalidate(struct facet *);
519 static bool facet_check_consistency(struct facet *);
520
521 static void facet_flush_stats(struct facet *);
522
523 static void facet_update_time(struct facet *, long long int used);
524 static void facet_reset_counters(struct facet *);
525 static void facet_push_stats(struct facet *);
526 static void facet_learn(struct facet *);
527 static void facet_account(struct facet *);
528 static void push_all_stats(void);
529
530 static struct subfacet *facet_get_subfacet(struct facet *);
531
532 static bool facet_is_controller_flow(struct facet *);
533
534 struct ofport_dpif {
535     struct hmap_node odp_port_node; /* In dpif_backer's "odp_to_ofport_map". */
536     struct ofport up;
537
538     uint32_t odp_port;
539     struct ofbundle *bundle;    /* Bundle that contains this port, if any. */
540     struct list bundle_node;    /* In struct ofbundle's "ports" list. */
541     struct cfm *cfm;            /* Connectivity Fault Management, if any. */
542     struct bfd *bfd;            /* BFD, if any. */
543     tag_type tag;               /* Tag associated with this port. */
544     bool may_enable;            /* May be enabled in bonds. */
545     long long int carrier_seq;  /* Carrier status changes. */
546     struct tnl_port *tnl_port;  /* Tunnel handle, or null. */
547
548     /* Spanning tree. */
549     struct stp_port *stp_port;  /* Spanning Tree Protocol, if any. */
550     enum stp_state stp_state;   /* Always STP_DISABLED if STP not in use. */
551     long long int stp_state_entered;
552
553     struct hmap priorities;     /* Map of attached 'priority_to_dscp's. */
554
555     /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
556      *
557      * This is deprecated.  It is only for compatibility with broken device
558      * drivers in old versions of Linux that do not properly support VLANs when
559      * VLAN devices are not used.  When broken device drivers are no longer in
560      * widespread use, we will delete these interfaces. */
561     uint16_t realdev_ofp_port;
562     int vlandev_vid;
563 };
564
565 /* Node in 'ofport_dpif''s 'priorities' map.  Used to maintain a map from
566  * 'priority' (the datapath's term for QoS queue) to the dscp bits which all
567  * traffic egressing the 'ofport' with that priority should be marked with. */
568 struct priority_to_dscp {
569     struct hmap_node hmap_node; /* Node in 'ofport_dpif''s 'priorities' map. */
570     uint32_t priority;          /* Priority of this queue (see struct flow). */
571
572     uint8_t dscp;               /* DSCP bits to mark outgoing traffic with. */
573 };
574
575 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
576  *
577  * This is deprecated.  It is only for compatibility with broken device drivers
578  * in old versions of Linux that do not properly support VLANs when VLAN
579  * devices are not used.  When broken device drivers are no longer in
580  * widespread use, we will delete these interfaces. */
581 struct vlan_splinter {
582     struct hmap_node realdev_vid_node;
583     struct hmap_node vlandev_node;
584     uint16_t realdev_ofp_port;
585     uint16_t vlandev_ofp_port;
586     int vid;
587 };
588
589 static uint32_t vsp_realdev_to_vlandev(const struct ofproto_dpif *,
590                                        uint32_t realdev, ovs_be16 vlan_tci);
591 static bool vsp_adjust_flow(const struct ofproto_dpif *, struct flow *);
592 static void vsp_remove(struct ofport_dpif *);
593 static void vsp_add(struct ofport_dpif *, uint16_t realdev_ofp_port, int vid);
594
595 static uint32_t ofp_port_to_odp_port(const struct ofproto_dpif *,
596                                      uint16_t ofp_port);
597 static uint16_t odp_port_to_ofp_port(const struct ofproto_dpif *,
598                                      uint32_t odp_port);
599
600 static struct ofport_dpif *
601 ofport_dpif_cast(const struct ofport *ofport)
602 {
603     return ofport ? CONTAINER_OF(ofport, struct ofport_dpif, up) : NULL;
604 }
605
606 static void port_run(struct ofport_dpif *);
607 static void port_run_fast(struct ofport_dpif *);
608 static void port_wait(struct ofport_dpif *);
609 static int set_bfd(struct ofport *, const struct smap *);
610 static int set_cfm(struct ofport *, const struct cfm_settings *);
611 static void ofport_clear_priorities(struct ofport_dpif *);
612 static void run_fast_rl(void);
613
614 struct dpif_completion {
615     struct list list_node;
616     struct ofoperation *op;
617 };
618
619 /* Extra information about a classifier table.
620  * Currently used just for optimized flow revalidation. */
621 struct table_dpif {
622     /* If either of these is nonnull, then this table has a form that allows
623      * flows to be tagged to avoid revalidating most flows for the most common
624      * kinds of flow table changes. */
625     struct cls_table *catchall_table; /* Table that wildcards all fields. */
626     struct cls_table *other_table;    /* Table with any other wildcard set. */
627     uint32_t basis;                   /* Keeps each table's tags separate. */
628 };
629
630 /* Reasons that we might need to revalidate every facet, and corresponding
631  * coverage counters.
632  *
633  * A value of 0 means that there is no need to revalidate.
634  *
635  * It would be nice to have some cleaner way to integrate with coverage
636  * counters, but with only a few reasons I guess this is good enough for
637  * now. */
638 enum revalidate_reason {
639     REV_RECONFIGURE = 1,       /* Switch configuration changed. */
640     REV_STP,                   /* Spanning tree protocol port status change. */
641     REV_PORT_TOGGLED,          /* Port enabled or disabled by CFM, LACP, ...*/
642     REV_FLOW_TABLE,            /* Flow table changed. */
643     REV_INCONSISTENCY          /* Facet self-check failed. */
644 };
645 COVERAGE_DEFINE(rev_reconfigure);
646 COVERAGE_DEFINE(rev_stp);
647 COVERAGE_DEFINE(rev_port_toggled);
648 COVERAGE_DEFINE(rev_flow_table);
649 COVERAGE_DEFINE(rev_inconsistency);
650
651 /* Drop keys are odp flow keys which have drop flows installed in the kernel.
652  * These are datapath flows which have no associated ofproto, if they did we
653  * would use facets. */
654 struct drop_key {
655     struct hmap_node hmap_node;
656     struct nlattr *key;
657     size_t key_len;
658 };
659
660 /* All datapaths of a given type share a single dpif backer instance. */
661 struct dpif_backer {
662     char *type;
663     int refcount;
664     struct dpif *dpif;
665     struct timer next_expiration;
666     struct hmap odp_to_ofport_map; /* ODP port to ofport mapping. */
667
668     struct simap tnl_backers;      /* Set of dpif ports backing tunnels. */
669
670     /* Facet revalidation flags applying to facets which use this backer. */
671     enum revalidate_reason need_revalidate; /* Revalidate every facet. */
672     struct tag_set revalidate_set; /* Revalidate only matching facets. */
673
674     struct hmap drop_keys; /* Set of dropped odp keys. */
675 };
676
677 /* All existing ofproto_backer instances, indexed by ofproto->up.type. */
678 static struct shash all_dpif_backers = SHASH_INITIALIZER(&all_dpif_backers);
679
680 static void drop_key_clear(struct dpif_backer *);
681 static struct ofport_dpif *
682 odp_port_to_ofport(const struct dpif_backer *, uint32_t odp_port);
683
684 static void dpif_stats_update_hit_count(struct ofproto_dpif *ofproto,
685                                         uint64_t delta);
686 struct avg_subfacet_rates {
687     double add_rate;     /* Moving average of new flows created per minute. */
688     double del_rate;     /* Moving average of flows deleted per minute. */
689 };
690 static void show_dp_rates(struct ds *ds, const char *heading,
691                           const struct avg_subfacet_rates *rates);
692 static void exp_mavg(double *avg, int base, double new);
693
694 struct ofproto_dpif {
695     struct hmap_node all_ofproto_dpifs_node; /* In 'all_ofproto_dpifs'. */
696     struct ofproto up;
697     struct dpif_backer *backer;
698
699     /* Special OpenFlow rules. */
700     struct rule_dpif *miss_rule; /* Sends flow table misses to controller. */
701     struct rule_dpif *no_packet_in_rule; /* Drops flow table misses. */
702
703     /* Statistics. */
704     uint64_t n_matches;
705
706     /* Bridging. */
707     struct netflow *netflow;
708     struct dpif_sflow *sflow;
709     struct dpif_ipfix *ipfix;
710     struct hmap bundles;        /* Contains "struct ofbundle"s. */
711     struct mac_learning *ml;
712     struct ofmirror *mirrors[MAX_MIRRORS];
713     bool has_mirrors;
714     bool has_bonded_bundles;
715
716     /* Facets. */
717     struct hmap facets;
718     struct hmap subfacets;
719     struct governor *governor;
720     long long int consistency_rl;
721
722     /* Revalidation. */
723     struct table_dpif tables[N_TABLES];
724
725     /* Support for debugging async flow mods. */
726     struct list completions;
727
728     bool has_bundle_action; /* True when the first bundle action appears. */
729     struct netdev_stats stats; /* To account packets generated and consumed in
730                                 * userspace. */
731
732     /* Spanning tree. */
733     struct stp *stp;
734     long long int stp_last_tick;
735
736     /* VLAN splinters. */
737     struct hmap realdev_vid_map; /* (realdev,vid) -> vlandev. */
738     struct hmap vlandev_map;     /* vlandev -> (realdev,vid). */
739
740     /* Ports. */
741     struct sset ports;             /* Set of standard port names. */
742     struct sset ghost_ports;       /* Ports with no datapath port. */
743     struct sset port_poll_set;     /* Queued names for port_poll() reply. */
744     int port_poll_errno;           /* Last errno for port_poll() reply. */
745
746     /* Per ofproto's dpif stats. */
747     uint64_t n_hit;
748     uint64_t n_missed;
749
750     /* Subfacet statistics.
751      *
752      * These keep track of the total number of subfacets added and deleted and
753      * flow life span.  They are useful for computing the flow rates stats
754      * exposed via "ovs-appctl dpif/show".  The goal is to learn about
755      * traffic patterns in ways that we can use later to improve Open vSwitch
756      * performance in new situations.  */
757     long long int created;         /* Time when it is created. */
758     unsigned int max_n_subfacet;   /* Maximum number of flows */
759
760     /* The average number of subfacets... */
761     struct avg_subfacet_rates hourly; /* ...over the last hour. */
762     struct avg_subfacet_rates daily;  /* ...over the last day. */
763     long long int last_minute;        /* Last time 'hourly' was updated. */
764
765     /* Number of subfacets added or deleted since 'last_minute'. */
766     unsigned int subfacet_add_count;
767     unsigned int subfacet_del_count;
768
769     /* Number of subfacets added or deleted from 'created' to 'last_minute.' */
770     unsigned long long int total_subfacet_add_count;
771     unsigned long long int total_subfacet_del_count;
772
773     /* Sum of the number of milliseconds that each subfacet existed,
774      * over the subfacets that have been added and then later deleted. */
775     unsigned long long int total_subfacet_life_span;
776
777     /* Incremented by the number of currently existing subfacets, each
778      * time we pull statistics from the kernel. */
779     unsigned long long int total_subfacet_count;
780
781     /* Number of times we pull statistics from the kernel. */
782     unsigned long long int n_update_stats;
783 };
784 static unsigned long long int avg_subfacet_life_span(
785                                         const struct ofproto_dpif *);
786 static double avg_subfacet_count(const struct ofproto_dpif *ofproto);
787 static void update_moving_averages(struct ofproto_dpif *ofproto);
788 static void dpif_stats_update_hit_count(struct ofproto_dpif *ofproto,
789                                         uint64_t delta);
790 static void update_max_subfacet_count(struct ofproto_dpif *ofproto);
791
792 /* Defer flow mod completion until "ovs-appctl ofproto/unclog"?  (Useful only
793  * for debugging the asynchronous flow_mod implementation.) */
794 static bool clogged;
795
796 /* All existing ofproto_dpif instances, indexed by ->up.name. */
797 static struct hmap all_ofproto_dpifs = HMAP_INITIALIZER(&all_ofproto_dpifs);
798
799 static void ofproto_dpif_unixctl_init(void);
800
801 static struct ofproto_dpif *
802 ofproto_dpif_cast(const struct ofproto *ofproto)
803 {
804     ovs_assert(ofproto->ofproto_class == &ofproto_dpif_class);
805     return CONTAINER_OF(ofproto, struct ofproto_dpif, up);
806 }
807
808 static struct ofport_dpif *get_ofp_port(const struct ofproto_dpif *,
809                                         uint16_t ofp_port);
810 static struct ofport_dpif *get_odp_port(const struct ofproto_dpif *,
811                                         uint32_t odp_port);
812 static void ofproto_trace(struct ofproto_dpif *, const struct flow *,
813                           const struct ofpbuf *,
814                           const struct initial_vals *, struct ds *);
815
816 /* Packet processing. */
817 static void update_learning_table(struct ofproto_dpif *,
818                                   const struct flow *, int vlan,
819                                   struct ofbundle *);
820 /* Upcalls. */
821 #define FLOW_MISS_MAX_BATCH 50
822 static int handle_upcalls(struct dpif_backer *, unsigned int max_batch);
823
824 /* Flow expiration. */
825 static int expire(struct dpif_backer *);
826
827 /* NetFlow. */
828 static void send_netflow_active_timeouts(struct ofproto_dpif *);
829
830 /* Utilities. */
831 static int send_packet(const struct ofport_dpif *, struct ofpbuf *packet);
832 static size_t compose_sflow_action(const struct ofproto_dpif *,
833                                    struct ofpbuf *odp_actions,
834                                    const struct flow *, uint32_t odp_port);
835 static void compose_ipfix_action(const struct ofproto_dpif *,
836                                  struct ofpbuf *odp_actions,
837                                  const struct flow *);
838 static void add_mirror_actions(struct action_xlate_ctx *ctx,
839                                const struct flow *flow);
840 /* Global variables. */
841 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
842
843 /* Initial mappings of port to bridge mappings. */
844 static struct shash init_ofp_ports = SHASH_INITIALIZER(&init_ofp_ports);
845 \f
846 /* Factory functions. */
847
848 static void
849 init(const struct shash *iface_hints)
850 {
851     struct shash_node *node;
852
853     /* Make a local copy, since we don't own 'iface_hints' elements. */
854     SHASH_FOR_EACH(node, iface_hints) {
855         const struct iface_hint *orig_hint = node->data;
856         struct iface_hint *new_hint = xmalloc(sizeof *new_hint);
857
858         new_hint->br_name = xstrdup(orig_hint->br_name);
859         new_hint->br_type = xstrdup(orig_hint->br_type);
860         new_hint->ofp_port = orig_hint->ofp_port;
861
862         shash_add(&init_ofp_ports, node->name, new_hint);
863     }
864 }
865
866 static void
867 enumerate_types(struct sset *types)
868 {
869     dp_enumerate_types(types);
870 }
871
872 static int
873 enumerate_names(const char *type, struct sset *names)
874 {
875     struct ofproto_dpif *ofproto;
876
877     sset_clear(names);
878     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
879         if (strcmp(type, ofproto->up.type)) {
880             continue;
881         }
882         sset_add(names, ofproto->up.name);
883     }
884
885     return 0;
886 }
887
888 static int
889 del(const char *type, const char *name)
890 {
891     struct dpif *dpif;
892     int error;
893
894     error = dpif_open(name, type, &dpif);
895     if (!error) {
896         error = dpif_delete(dpif);
897         dpif_close(dpif);
898     }
899     return error;
900 }
901 \f
902 static const char *
903 port_open_type(const char *datapath_type, const char *port_type)
904 {
905     return dpif_port_open_type(datapath_type, port_type);
906 }
907
908 /* Type functions. */
909
910 static struct ofproto_dpif *
911 lookup_ofproto_dpif_by_port_name(const char *name)
912 {
913     struct ofproto_dpif *ofproto;
914
915     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
916         if (sset_contains(&ofproto->ports, name)) {
917             return ofproto;
918         }
919     }
920
921     return NULL;
922 }
923
924 static int
925 type_run(const char *type)
926 {
927     static long long int push_timer = LLONG_MIN;
928     struct dpif_backer *backer;
929     char *devname;
930     int error;
931
932     backer = shash_find_data(&all_dpif_backers, type);
933     if (!backer) {
934         /* This is not necessarily a problem, since backers are only
935          * created on demand. */
936         return 0;
937     }
938
939     dpif_run(backer->dpif);
940
941     /* The most natural place to push facet statistics is when they're pulled
942      * from the datapath.  However, when there are many flows in the datapath,
943      * this expensive operation can occur so frequently, that it reduces our
944      * ability to quickly set up flows.  To reduce the cost, we push statistics
945      * here instead. */
946     if (time_msec() > push_timer) {
947         push_timer = time_msec() + 2000;
948         push_all_stats();
949     }
950
951     if (backer->need_revalidate
952         || !tag_set_is_empty(&backer->revalidate_set)) {
953         struct tag_set revalidate_set = backer->revalidate_set;
954         bool need_revalidate = backer->need_revalidate;
955         struct ofproto_dpif *ofproto;
956         struct simap_node *node;
957         struct simap tmp_backers;
958
959         /* Handle tunnel garbage collection. */
960         simap_init(&tmp_backers);
961         simap_swap(&backer->tnl_backers, &tmp_backers);
962
963         HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
964             struct ofport_dpif *iter;
965
966             if (backer != ofproto->backer) {
967                 continue;
968             }
969
970             HMAP_FOR_EACH (iter, up.hmap_node, &ofproto->up.ports) {
971                 const char *dp_port;
972
973                 if (!iter->tnl_port) {
974                     continue;
975                 }
976
977                 dp_port = netdev_vport_get_dpif_port(iter->up.netdev);
978                 node = simap_find(&tmp_backers, dp_port);
979                 if (node) {
980                     simap_put(&backer->tnl_backers, dp_port, node->data);
981                     simap_delete(&tmp_backers, node);
982                     node = simap_find(&backer->tnl_backers, dp_port);
983                 } else {
984                     node = simap_find(&backer->tnl_backers, dp_port);
985                     if (!node) {
986                         uint32_t odp_port = UINT32_MAX;
987
988                         if (!dpif_port_add(backer->dpif, iter->up.netdev,
989                                            &odp_port)) {
990                             simap_put(&backer->tnl_backers, dp_port, odp_port);
991                             node = simap_find(&backer->tnl_backers, dp_port);
992                         }
993                     }
994                 }
995
996                 iter->odp_port = node ? node->data : OVSP_NONE;
997                 if (tnl_port_reconfigure(&iter->up, iter->odp_port,
998                                          &iter->tnl_port)) {
999                     backer->need_revalidate = REV_RECONFIGURE;
1000                 }
1001             }
1002         }
1003
1004         SIMAP_FOR_EACH (node, &tmp_backers) {
1005             dpif_port_del(backer->dpif, node->data);
1006         }
1007         simap_destroy(&tmp_backers);
1008
1009         switch (backer->need_revalidate) {
1010         case REV_RECONFIGURE:   COVERAGE_INC(rev_reconfigure);   break;
1011         case REV_STP:           COVERAGE_INC(rev_stp);           break;
1012         case REV_PORT_TOGGLED:  COVERAGE_INC(rev_port_toggled);  break;
1013         case REV_FLOW_TABLE:    COVERAGE_INC(rev_flow_table);    break;
1014         case REV_INCONSISTENCY: COVERAGE_INC(rev_inconsistency); break;
1015         }
1016
1017         if (backer->need_revalidate) {
1018             /* Clear the drop_keys in case we should now be accepting some
1019              * formerly dropped flows. */
1020             drop_key_clear(backer);
1021         }
1022
1023         /* Clear the revalidation flags. */
1024         tag_set_init(&backer->revalidate_set);
1025         backer->need_revalidate = 0;
1026
1027         HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
1028             struct facet *facet, *next;
1029
1030             if (ofproto->backer != backer) {
1031                 continue;
1032             }
1033
1034             HMAP_FOR_EACH_SAFE (facet, next, hmap_node, &ofproto->facets) {
1035                 if (need_revalidate
1036                     || tag_set_intersects(&revalidate_set, facet->tags)) {
1037                     facet_revalidate(facet);
1038                     run_fast_rl();
1039                 }
1040             }
1041         }
1042     }
1043
1044     if (timer_expired(&backer->next_expiration)) {
1045         int delay = expire(backer);
1046         timer_set_duration(&backer->next_expiration, delay);
1047     }
1048
1049     /* Check for port changes in the dpif. */
1050     while ((error = dpif_port_poll(backer->dpif, &devname)) == 0) {
1051         struct ofproto_dpif *ofproto;
1052         struct dpif_port port;
1053
1054         /* Don't report on the datapath's device. */
1055         if (!strcmp(devname, dpif_base_name(backer->dpif))) {
1056             goto next;
1057         }
1058
1059         HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node,
1060                        &all_ofproto_dpifs) {
1061             if (simap_contains(&ofproto->backer->tnl_backers, devname)) {
1062                 goto next;
1063             }
1064         }
1065
1066         ofproto = lookup_ofproto_dpif_by_port_name(devname);
1067         if (dpif_port_query_by_name(backer->dpif, devname, &port)) {
1068             /* The port was removed.  If we know the datapath,
1069              * report it through poll_set().  If we don't, it may be
1070              * notifying us of a removal we initiated, so ignore it.
1071              * If there's a pending ENOBUFS, let it stand, since
1072              * everything will be reevaluated. */
1073             if (ofproto && ofproto->port_poll_errno != ENOBUFS) {
1074                 sset_add(&ofproto->port_poll_set, devname);
1075                 ofproto->port_poll_errno = 0;
1076             }
1077         } else if (!ofproto) {
1078             /* The port was added, but we don't know with which
1079              * ofproto we should associate it.  Delete it. */
1080             dpif_port_del(backer->dpif, port.port_no);
1081         }
1082         dpif_port_destroy(&port);
1083
1084     next:
1085         free(devname);
1086     }
1087
1088     if (error != EAGAIN) {
1089         struct ofproto_dpif *ofproto;
1090
1091         /* There was some sort of error, so propagate it to all
1092          * ofprotos that use this backer. */
1093         HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node,
1094                        &all_ofproto_dpifs) {
1095             if (ofproto->backer == backer) {
1096                 sset_clear(&ofproto->port_poll_set);
1097                 ofproto->port_poll_errno = error;
1098             }
1099         }
1100     }
1101
1102     return 0;
1103 }
1104
1105 static int
1106 dpif_backer_run_fast(struct dpif_backer *backer, int max_batch)
1107 {
1108     unsigned int work;
1109
1110     /* Handle one or more batches of upcalls, until there's nothing left to do
1111      * or until we do a fixed total amount of work.
1112      *
1113      * We do work in batches because it can be much cheaper to set up a number
1114      * of flows and fire off their patches all at once.  We do multiple batches
1115      * because in some cases handling a packet can cause another packet to be
1116      * queued almost immediately as part of the return flow.  Both
1117      * optimizations can make major improvements on some benchmarks and
1118      * presumably for real traffic as well. */
1119     work = 0;
1120     while (work < max_batch) {
1121         int retval = handle_upcalls(backer, max_batch - work);
1122         if (retval <= 0) {
1123             return -retval;
1124         }
1125         work += retval;
1126     }
1127
1128     return 0;
1129 }
1130
1131 static int
1132 type_run_fast(const char *type)
1133 {
1134     struct dpif_backer *backer;
1135
1136     backer = shash_find_data(&all_dpif_backers, type);
1137     if (!backer) {
1138         /* This is not necessarily a problem, since backers are only
1139          * created on demand. */
1140         return 0;
1141     }
1142
1143     return dpif_backer_run_fast(backer, FLOW_MISS_MAX_BATCH);
1144 }
1145
1146 static void
1147 run_fast_rl(void)
1148 {
1149     static long long int port_rl = LLONG_MIN;
1150     static unsigned int backer_rl = 0;
1151
1152     if (time_msec() >= port_rl) {
1153         struct ofproto_dpif *ofproto;
1154         struct ofport_dpif *ofport;
1155
1156         HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
1157
1158             HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1159                 port_run_fast(ofport);
1160             }
1161         }
1162         port_rl = time_msec() + 200;
1163     }
1164
1165     /* XXX: We have to be careful not to do too much work in this function.  If
1166      * we call dpif_backer_run_fast() too often, or with too large a batch,
1167      * performance improves signifcantly, but at a cost.  It's possible for the
1168      * number of flows in the datapath to increase without bound, and for poll
1169      * loops to take 10s of seconds.   The correct solution to this problem,
1170      * long term, is to separate flow miss handling into it's own thread so it
1171      * isn't affected by revalidations, and expirations.  Until then, this is
1172      * the best we can do. */
1173     if (++backer_rl >= 10) {
1174         struct shash_node *node;
1175
1176         backer_rl = 0;
1177         SHASH_FOR_EACH (node, &all_dpif_backers) {
1178             dpif_backer_run_fast(node->data, 1);
1179         }
1180     }
1181 }
1182
1183 static void
1184 type_wait(const char *type)
1185 {
1186     struct dpif_backer *backer;
1187
1188     backer = shash_find_data(&all_dpif_backers, type);
1189     if (!backer) {
1190         /* This is not necessarily a problem, since backers are only
1191          * created on demand. */
1192         return;
1193     }
1194
1195     timer_wait(&backer->next_expiration);
1196 }
1197 \f
1198 /* Basic life-cycle. */
1199
1200 static int add_internal_flows(struct ofproto_dpif *);
1201
1202 static struct ofproto *
1203 alloc(void)
1204 {
1205     struct ofproto_dpif *ofproto = xmalloc(sizeof *ofproto);
1206     return &ofproto->up;
1207 }
1208
1209 static void
1210 dealloc(struct ofproto *ofproto_)
1211 {
1212     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1213     free(ofproto);
1214 }
1215
1216 static void
1217 close_dpif_backer(struct dpif_backer *backer)
1218 {
1219     struct shash_node *node;
1220
1221     ovs_assert(backer->refcount > 0);
1222
1223     if (--backer->refcount) {
1224         return;
1225     }
1226
1227     drop_key_clear(backer);
1228     hmap_destroy(&backer->drop_keys);
1229
1230     simap_destroy(&backer->tnl_backers);
1231     hmap_destroy(&backer->odp_to_ofport_map);
1232     node = shash_find(&all_dpif_backers, backer->type);
1233     free(backer->type);
1234     shash_delete(&all_dpif_backers, node);
1235     dpif_close(backer->dpif);
1236
1237     free(backer);
1238 }
1239
1240 /* Datapath port slated for removal from datapath. */
1241 struct odp_garbage {
1242     struct list list_node;
1243     uint32_t odp_port;
1244 };
1245
1246 static int
1247 open_dpif_backer(const char *type, struct dpif_backer **backerp)
1248 {
1249     struct dpif_backer *backer;
1250     struct dpif_port_dump port_dump;
1251     struct dpif_port port;
1252     struct shash_node *node;
1253     struct list garbage_list;
1254     struct odp_garbage *garbage, *next;
1255     struct sset names;
1256     char *backer_name;
1257     const char *name;
1258     int error;
1259
1260     backer = shash_find_data(&all_dpif_backers, type);
1261     if (backer) {
1262         backer->refcount++;
1263         *backerp = backer;
1264         return 0;
1265     }
1266
1267     backer_name = xasprintf("ovs-%s", type);
1268
1269     /* Remove any existing datapaths, since we assume we're the only
1270      * userspace controlling the datapath. */
1271     sset_init(&names);
1272     dp_enumerate_names(type, &names);
1273     SSET_FOR_EACH(name, &names) {
1274         struct dpif *old_dpif;
1275
1276         /* Don't remove our backer if it exists. */
1277         if (!strcmp(name, backer_name)) {
1278             continue;
1279         }
1280
1281         if (dpif_open(name, type, &old_dpif)) {
1282             VLOG_WARN("couldn't open old datapath %s to remove it", name);
1283         } else {
1284             dpif_delete(old_dpif);
1285             dpif_close(old_dpif);
1286         }
1287     }
1288     sset_destroy(&names);
1289
1290     backer = xmalloc(sizeof *backer);
1291
1292     error = dpif_create_and_open(backer_name, type, &backer->dpif);
1293     free(backer_name);
1294     if (error) {
1295         VLOG_ERR("failed to open datapath of type %s: %s", type,
1296                  strerror(error));
1297         free(backer);
1298         return error;
1299     }
1300
1301     backer->type = xstrdup(type);
1302     backer->refcount = 1;
1303     hmap_init(&backer->odp_to_ofport_map);
1304     hmap_init(&backer->drop_keys);
1305     timer_set_duration(&backer->next_expiration, 1000);
1306     backer->need_revalidate = 0;
1307     simap_init(&backer->tnl_backers);
1308     tag_set_init(&backer->revalidate_set);
1309     *backerp = backer;
1310
1311     dpif_flow_flush(backer->dpif);
1312
1313     /* Loop through the ports already on the datapath and remove any
1314      * that we don't need anymore. */
1315     list_init(&garbage_list);
1316     dpif_port_dump_start(&port_dump, backer->dpif);
1317     while (dpif_port_dump_next(&port_dump, &port)) {
1318         node = shash_find(&init_ofp_ports, port.name);
1319         if (!node && strcmp(port.name, dpif_base_name(backer->dpif))) {
1320             garbage = xmalloc(sizeof *garbage);
1321             garbage->odp_port = port.port_no;
1322             list_push_front(&garbage_list, &garbage->list_node);
1323         }
1324     }
1325     dpif_port_dump_done(&port_dump);
1326
1327     LIST_FOR_EACH_SAFE (garbage, next, list_node, &garbage_list) {
1328         dpif_port_del(backer->dpif, garbage->odp_port);
1329         list_remove(&garbage->list_node);
1330         free(garbage);
1331     }
1332
1333     shash_add(&all_dpif_backers, type, backer);
1334
1335     error = dpif_recv_set(backer->dpif, true);
1336     if (error) {
1337         VLOG_ERR("failed to listen on datapath of type %s: %s",
1338                  type, strerror(error));
1339         close_dpif_backer(backer);
1340         return error;
1341     }
1342
1343     return error;
1344 }
1345
1346 static int
1347 construct(struct ofproto *ofproto_)
1348 {
1349     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1350     struct shash_node *node, *next;
1351     int max_ports;
1352     int error;
1353     int i;
1354
1355     error = open_dpif_backer(ofproto->up.type, &ofproto->backer);
1356     if (error) {
1357         return error;
1358     }
1359
1360     max_ports = dpif_get_max_ports(ofproto->backer->dpif);
1361     ofproto_init_max_ports(ofproto_, MIN(max_ports, OFPP_MAX));
1362
1363     ofproto->n_matches = 0;
1364
1365     ofproto->netflow = NULL;
1366     ofproto->sflow = NULL;
1367     ofproto->ipfix = NULL;
1368     ofproto->stp = NULL;
1369     hmap_init(&ofproto->bundles);
1370     ofproto->ml = mac_learning_create(MAC_ENTRY_DEFAULT_IDLE_TIME);
1371     for (i = 0; i < MAX_MIRRORS; i++) {
1372         ofproto->mirrors[i] = NULL;
1373     }
1374     ofproto->has_bonded_bundles = false;
1375
1376     hmap_init(&ofproto->facets);
1377     hmap_init(&ofproto->subfacets);
1378     ofproto->governor = NULL;
1379     ofproto->consistency_rl = LLONG_MIN;
1380
1381     for (i = 0; i < N_TABLES; i++) {
1382         struct table_dpif *table = &ofproto->tables[i];
1383
1384         table->catchall_table = NULL;
1385         table->other_table = NULL;
1386         table->basis = random_uint32();
1387     }
1388
1389     list_init(&ofproto->completions);
1390
1391     ofproto_dpif_unixctl_init();
1392
1393     ofproto->has_mirrors = false;
1394     ofproto->has_bundle_action = false;
1395
1396     hmap_init(&ofproto->vlandev_map);
1397     hmap_init(&ofproto->realdev_vid_map);
1398
1399     sset_init(&ofproto->ports);
1400     sset_init(&ofproto->ghost_ports);
1401     sset_init(&ofproto->port_poll_set);
1402     ofproto->port_poll_errno = 0;
1403
1404     SHASH_FOR_EACH_SAFE (node, next, &init_ofp_ports) {
1405         struct iface_hint *iface_hint = node->data;
1406
1407         if (!strcmp(iface_hint->br_name, ofproto->up.name)) {
1408             /* Check if the datapath already has this port. */
1409             if (dpif_port_exists(ofproto->backer->dpif, node->name)) {
1410                 sset_add(&ofproto->ports, node->name);
1411             }
1412
1413             free(iface_hint->br_name);
1414             free(iface_hint->br_type);
1415             free(iface_hint);
1416             shash_delete(&init_ofp_ports, node);
1417         }
1418     }
1419
1420     hmap_insert(&all_ofproto_dpifs, &ofproto->all_ofproto_dpifs_node,
1421                 hash_string(ofproto->up.name, 0));
1422     memset(&ofproto->stats, 0, sizeof ofproto->stats);
1423
1424     ofproto_init_tables(ofproto_, N_TABLES);
1425     error = add_internal_flows(ofproto);
1426     ofproto->up.tables[TBL_INTERNAL].flags = OFTABLE_HIDDEN | OFTABLE_READONLY;
1427
1428     ofproto->n_hit = 0;
1429     ofproto->n_missed = 0;
1430
1431     ofproto->max_n_subfacet = 0;
1432     ofproto->created = time_msec();
1433     ofproto->last_minute = ofproto->created;
1434     memset(&ofproto->hourly, 0, sizeof ofproto->hourly);
1435     memset(&ofproto->daily, 0, sizeof ofproto->daily);
1436     ofproto->subfacet_add_count = 0;
1437     ofproto->subfacet_del_count = 0;
1438     ofproto->total_subfacet_add_count = 0;
1439     ofproto->total_subfacet_del_count = 0;
1440     ofproto->total_subfacet_life_span = 0;
1441     ofproto->total_subfacet_count = 0;
1442     ofproto->n_update_stats = 0;
1443
1444     return error;
1445 }
1446
1447 static int
1448 add_internal_flow(struct ofproto_dpif *ofproto, int id,
1449                   const struct ofpbuf *ofpacts, struct rule_dpif **rulep)
1450 {
1451     struct ofputil_flow_mod fm;
1452     int error;
1453
1454     match_init_catchall(&fm.match);
1455     fm.priority = 0;
1456     match_set_reg(&fm.match, 0, id);
1457     fm.new_cookie = htonll(0);
1458     fm.cookie = htonll(0);
1459     fm.cookie_mask = htonll(0);
1460     fm.table_id = TBL_INTERNAL;
1461     fm.command = OFPFC_ADD;
1462     fm.idle_timeout = 0;
1463     fm.hard_timeout = 0;
1464     fm.buffer_id = 0;
1465     fm.out_port = 0;
1466     fm.flags = 0;
1467     fm.ofpacts = ofpacts->data;
1468     fm.ofpacts_len = ofpacts->size;
1469
1470     error = ofproto_flow_mod(&ofproto->up, &fm);
1471     if (error) {
1472         VLOG_ERR_RL(&rl, "failed to add internal flow %d (%s)",
1473                     id, ofperr_to_string(error));
1474         return error;
1475     }
1476
1477     *rulep = rule_dpif_lookup__(ofproto, &fm.match.flow, TBL_INTERNAL);
1478     ovs_assert(*rulep != NULL);
1479
1480     return 0;
1481 }
1482
1483 static int
1484 add_internal_flows(struct ofproto_dpif *ofproto)
1485 {
1486     struct ofpact_controller *controller;
1487     uint64_t ofpacts_stub[128 / 8];
1488     struct ofpbuf ofpacts;
1489     int error;
1490     int id;
1491
1492     ofpbuf_use_stack(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
1493     id = 1;
1494
1495     controller = ofpact_put_CONTROLLER(&ofpacts);
1496     controller->max_len = UINT16_MAX;
1497     controller->controller_id = 0;
1498     controller->reason = OFPR_NO_MATCH;
1499     ofpact_pad(&ofpacts);
1500
1501     error = add_internal_flow(ofproto, id++, &ofpacts, &ofproto->miss_rule);
1502     if (error) {
1503         return error;
1504     }
1505
1506     ofpbuf_clear(&ofpacts);
1507     error = add_internal_flow(ofproto, id++, &ofpacts,
1508                               &ofproto->no_packet_in_rule);
1509     return error;
1510 }
1511
1512 static void
1513 complete_operations(struct ofproto_dpif *ofproto)
1514 {
1515     struct dpif_completion *c, *next;
1516
1517     LIST_FOR_EACH_SAFE (c, next, list_node, &ofproto->completions) {
1518         ofoperation_complete(c->op, 0);
1519         list_remove(&c->list_node);
1520         free(c);
1521     }
1522 }
1523
1524 static void
1525 destruct(struct ofproto *ofproto_)
1526 {
1527     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1528     struct rule_dpif *rule, *next_rule;
1529     struct oftable *table;
1530     int i;
1531
1532     hmap_remove(&all_ofproto_dpifs, &ofproto->all_ofproto_dpifs_node);
1533     complete_operations(ofproto);
1534
1535     OFPROTO_FOR_EACH_TABLE (table, &ofproto->up) {
1536         struct cls_cursor cursor;
1537
1538         cls_cursor_init(&cursor, &table->cls, NULL);
1539         CLS_CURSOR_FOR_EACH_SAFE (rule, next_rule, up.cr, &cursor) {
1540             ofproto_rule_destroy(&rule->up);
1541         }
1542     }
1543
1544     for (i = 0; i < MAX_MIRRORS; i++) {
1545         mirror_destroy(ofproto->mirrors[i]);
1546     }
1547
1548     netflow_destroy(ofproto->netflow);
1549     dpif_sflow_destroy(ofproto->sflow);
1550     hmap_destroy(&ofproto->bundles);
1551     mac_learning_destroy(ofproto->ml);
1552
1553     hmap_destroy(&ofproto->facets);
1554     hmap_destroy(&ofproto->subfacets);
1555     governor_destroy(ofproto->governor);
1556
1557     hmap_destroy(&ofproto->vlandev_map);
1558     hmap_destroy(&ofproto->realdev_vid_map);
1559
1560     sset_destroy(&ofproto->ports);
1561     sset_destroy(&ofproto->ghost_ports);
1562     sset_destroy(&ofproto->port_poll_set);
1563
1564     close_dpif_backer(ofproto->backer);
1565 }
1566
1567 static int
1568 run_fast(struct ofproto *ofproto_)
1569 {
1570     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1571     struct ofport_dpif *ofport;
1572
1573     HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1574         port_run_fast(ofport);
1575     }
1576
1577     return 0;
1578 }
1579
1580 static int
1581 run(struct ofproto *ofproto_)
1582 {
1583     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1584     struct ofport_dpif *ofport;
1585     struct ofbundle *bundle;
1586     int error;
1587
1588     if (!clogged) {
1589         complete_operations(ofproto);
1590     }
1591
1592     error = run_fast(ofproto_);
1593     if (error) {
1594         return error;
1595     }
1596
1597     if (ofproto->netflow) {
1598         if (netflow_run(ofproto->netflow)) {
1599             send_netflow_active_timeouts(ofproto);
1600         }
1601     }
1602     if (ofproto->sflow) {
1603         dpif_sflow_run(ofproto->sflow);
1604     }
1605
1606     HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1607         port_run(ofport);
1608     }
1609     HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
1610         bundle_run(bundle);
1611     }
1612
1613     stp_run(ofproto);
1614     mac_learning_run(ofproto->ml, &ofproto->backer->revalidate_set);
1615
1616     /* Check the consistency of a random facet, to aid debugging. */
1617     if (time_msec() >= ofproto->consistency_rl
1618         && !hmap_is_empty(&ofproto->facets)
1619         && !ofproto->backer->need_revalidate) {
1620         struct facet *facet;
1621
1622         ofproto->consistency_rl = time_msec() + 250;
1623
1624         facet = CONTAINER_OF(hmap_random_node(&ofproto->facets),
1625                              struct facet, hmap_node);
1626         if (!tag_set_intersects(&ofproto->backer->revalidate_set,
1627                                 facet->tags)) {
1628             if (!facet_check_consistency(facet)) {
1629                 ofproto->backer->need_revalidate = REV_INCONSISTENCY;
1630             }
1631         }
1632     }
1633
1634     if (ofproto->governor) {
1635         size_t n_subfacets;
1636
1637         governor_run(ofproto->governor);
1638
1639         /* If the governor has shrunk to its minimum size and the number of
1640          * subfacets has dwindled, then drop the governor entirely.
1641          *
1642          * For hysteresis, the number of subfacets to drop the governor is
1643          * smaller than the number needed to trigger its creation. */
1644         n_subfacets = hmap_count(&ofproto->subfacets);
1645         if (n_subfacets * 4 < ofproto->up.flow_eviction_threshold
1646             && governor_is_idle(ofproto->governor)) {
1647             governor_destroy(ofproto->governor);
1648             ofproto->governor = NULL;
1649         }
1650     }
1651
1652     return 0;
1653 }
1654
1655 static void
1656 wait(struct ofproto *ofproto_)
1657 {
1658     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1659     struct ofport_dpif *ofport;
1660     struct ofbundle *bundle;
1661
1662     if (!clogged && !list_is_empty(&ofproto->completions)) {
1663         poll_immediate_wake();
1664     }
1665
1666     dpif_wait(ofproto->backer->dpif);
1667     dpif_recv_wait(ofproto->backer->dpif);
1668     if (ofproto->sflow) {
1669         dpif_sflow_wait(ofproto->sflow);
1670     }
1671     if (!tag_set_is_empty(&ofproto->backer->revalidate_set)) {
1672         poll_immediate_wake();
1673     }
1674     HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1675         port_wait(ofport);
1676     }
1677     HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
1678         bundle_wait(bundle);
1679     }
1680     if (ofproto->netflow) {
1681         netflow_wait(ofproto->netflow);
1682     }
1683     mac_learning_wait(ofproto->ml);
1684     stp_wait(ofproto);
1685     if (ofproto->backer->need_revalidate) {
1686         /* Shouldn't happen, but if it does just go around again. */
1687         VLOG_DBG_RL(&rl, "need revalidate in ofproto_wait_cb()");
1688         poll_immediate_wake();
1689     }
1690     if (ofproto->governor) {
1691         governor_wait(ofproto->governor);
1692     }
1693 }
1694
1695 static void
1696 get_memory_usage(const struct ofproto *ofproto_, struct simap *usage)
1697 {
1698     const struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1699
1700     simap_increase(usage, "facets", hmap_count(&ofproto->facets));
1701     simap_increase(usage, "subfacets", hmap_count(&ofproto->subfacets));
1702 }
1703
1704 static void
1705 flush(struct ofproto *ofproto_)
1706 {
1707     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1708     struct subfacet *subfacet, *next_subfacet;
1709     struct subfacet *batch[SUBFACET_DESTROY_MAX_BATCH];
1710     int n_batch;
1711
1712     n_batch = 0;
1713     HMAP_FOR_EACH_SAFE (subfacet, next_subfacet, hmap_node,
1714                         &ofproto->subfacets) {
1715         if (subfacet->path != SF_NOT_INSTALLED) {
1716             batch[n_batch++] = subfacet;
1717             if (n_batch >= SUBFACET_DESTROY_MAX_BATCH) {
1718                 subfacet_destroy_batch(ofproto, batch, n_batch);
1719                 n_batch = 0;
1720             }
1721         } else {
1722             subfacet_destroy(subfacet);
1723         }
1724     }
1725
1726     if (n_batch > 0) {
1727         subfacet_destroy_batch(ofproto, batch, n_batch);
1728     }
1729 }
1730
1731 static void
1732 get_features(struct ofproto *ofproto_ OVS_UNUSED,
1733              bool *arp_match_ip, enum ofputil_action_bitmap *actions)
1734 {
1735     *arp_match_ip = true;
1736     *actions = (OFPUTIL_A_OUTPUT |
1737                 OFPUTIL_A_SET_VLAN_VID |
1738                 OFPUTIL_A_SET_VLAN_PCP |
1739                 OFPUTIL_A_STRIP_VLAN |
1740                 OFPUTIL_A_SET_DL_SRC |
1741                 OFPUTIL_A_SET_DL_DST |
1742                 OFPUTIL_A_SET_NW_SRC |
1743                 OFPUTIL_A_SET_NW_DST |
1744                 OFPUTIL_A_SET_NW_TOS |
1745                 OFPUTIL_A_SET_TP_SRC |
1746                 OFPUTIL_A_SET_TP_DST |
1747                 OFPUTIL_A_ENQUEUE);
1748 }
1749
1750 static void
1751 get_tables(struct ofproto *ofproto_, struct ofp12_table_stats *ots)
1752 {
1753     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1754     struct dpif_dp_stats s;
1755
1756     strcpy(ots->name, "classifier");
1757
1758     dpif_get_dp_stats(ofproto->backer->dpif, &s);
1759
1760     ots->lookup_count = htonll(s.n_hit + s.n_missed);
1761     ots->matched_count = htonll(s.n_hit + ofproto->n_matches);
1762 }
1763
1764 static struct ofport *
1765 port_alloc(void)
1766 {
1767     struct ofport_dpif *port = xmalloc(sizeof *port);
1768     return &port->up;
1769 }
1770
1771 static void
1772 port_dealloc(struct ofport *port_)
1773 {
1774     struct ofport_dpif *port = ofport_dpif_cast(port_);
1775     free(port);
1776 }
1777
1778 static int
1779 port_construct(struct ofport *port_)
1780 {
1781     struct ofport_dpif *port = ofport_dpif_cast(port_);
1782     struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
1783     const struct netdev *netdev = port->up.netdev;
1784     struct dpif_port dpif_port;
1785     int error;
1786
1787     ofproto->backer->need_revalidate = REV_RECONFIGURE;
1788     port->bundle = NULL;
1789     port->cfm = NULL;
1790     port->bfd = NULL;
1791     port->tag = tag_create_random();
1792     port->may_enable = true;
1793     port->stp_port = NULL;
1794     port->stp_state = STP_DISABLED;
1795     port->tnl_port = NULL;
1796     hmap_init(&port->priorities);
1797     port->realdev_ofp_port = 0;
1798     port->vlandev_vid = 0;
1799     port->carrier_seq = netdev_get_carrier_resets(netdev);
1800
1801     if (netdev_vport_is_patch(netdev)) {
1802         /* By bailing out here, we don't submit the port to the sFlow module
1803          * to be considered for counter polling export.  This is correct
1804          * because the patch port represents an interface that sFlow considers
1805          * to be "internal" to the switch as a whole, and therefore not an
1806          * candidate for counter polling. */
1807         port->odp_port = OVSP_NONE;
1808         return 0;
1809     }
1810
1811     error = dpif_port_query_by_name(ofproto->backer->dpif,
1812                                     netdev_vport_get_dpif_port(netdev),
1813                                     &dpif_port);
1814     if (error) {
1815         return error;
1816     }
1817
1818     port->odp_port = dpif_port.port_no;
1819
1820     if (netdev_get_tunnel_config(netdev)) {
1821         port->tnl_port = tnl_port_add(&port->up, port->odp_port);
1822     } else {
1823         /* Sanity-check that a mapping doesn't already exist.  This
1824          * shouldn't happen for non-tunnel ports. */
1825         if (odp_port_to_ofp_port(ofproto, port->odp_port) != OFPP_NONE) {
1826             VLOG_ERR("port %s already has an OpenFlow port number",
1827                      dpif_port.name);
1828             dpif_port_destroy(&dpif_port);
1829             return EBUSY;
1830         }
1831
1832         hmap_insert(&ofproto->backer->odp_to_ofport_map, &port->odp_port_node,
1833                     hash_int(port->odp_port, 0));
1834     }
1835     dpif_port_destroy(&dpif_port);
1836
1837     if (ofproto->sflow) {
1838         dpif_sflow_add_port(ofproto->sflow, port_, port->odp_port);
1839     }
1840
1841     return 0;
1842 }
1843
1844 static void
1845 port_destruct(struct ofport *port_)
1846 {
1847     struct ofport_dpif *port = ofport_dpif_cast(port_);
1848     struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
1849     const char *dp_port_name = netdev_vport_get_dpif_port(port->up.netdev);
1850     const char *devname = netdev_get_name(port->up.netdev);
1851
1852     if (dpif_port_exists(ofproto->backer->dpif, dp_port_name)) {
1853         /* The underlying device is still there, so delete it.  This
1854          * happens when the ofproto is being destroyed, since the caller
1855          * assumes that removal of attached ports will happen as part of
1856          * destruction. */
1857         if (!port->tnl_port) {
1858             dpif_port_del(ofproto->backer->dpif, port->odp_port);
1859         }
1860         ofproto->backer->need_revalidate = REV_RECONFIGURE;
1861     }
1862
1863     if (port->odp_port != OVSP_NONE && !port->tnl_port) {
1864         hmap_remove(&ofproto->backer->odp_to_ofport_map, &port->odp_port_node);
1865     }
1866
1867     tnl_port_del(port->tnl_port);
1868     sset_find_and_delete(&ofproto->ports, devname);
1869     sset_find_and_delete(&ofproto->ghost_ports, devname);
1870     ofproto->backer->need_revalidate = REV_RECONFIGURE;
1871     bundle_remove(port_);
1872     set_cfm(port_, NULL);
1873     set_bfd(port_, NULL);
1874     if (ofproto->sflow) {
1875         dpif_sflow_del_port(ofproto->sflow, port->odp_port);
1876     }
1877
1878     ofport_clear_priorities(port);
1879     hmap_destroy(&port->priorities);
1880 }
1881
1882 static void
1883 port_modified(struct ofport *port_)
1884 {
1885     struct ofport_dpif *port = ofport_dpif_cast(port_);
1886
1887     if (port->bundle && port->bundle->bond) {
1888         bond_slave_set_netdev(port->bundle->bond, port, port->up.netdev);
1889     }
1890 }
1891
1892 static void
1893 port_reconfigured(struct ofport *port_, enum ofputil_port_config old_config)
1894 {
1895     struct ofport_dpif *port = ofport_dpif_cast(port_);
1896     struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
1897     enum ofputil_port_config changed = old_config ^ port->up.pp.config;
1898
1899     if (changed & (OFPUTIL_PC_NO_RECV | OFPUTIL_PC_NO_RECV_STP |
1900                    OFPUTIL_PC_NO_FWD | OFPUTIL_PC_NO_FLOOD |
1901                    OFPUTIL_PC_NO_PACKET_IN)) {
1902         ofproto->backer->need_revalidate = REV_RECONFIGURE;
1903
1904         if (changed & OFPUTIL_PC_NO_FLOOD && port->bundle) {
1905             bundle_update(port->bundle);
1906         }
1907     }
1908 }
1909
1910 static int
1911 set_sflow(struct ofproto *ofproto_,
1912           const struct ofproto_sflow_options *sflow_options)
1913 {
1914     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1915     struct dpif_sflow *ds = ofproto->sflow;
1916
1917     if (sflow_options) {
1918         if (!ds) {
1919             struct ofport_dpif *ofport;
1920
1921             ds = ofproto->sflow = dpif_sflow_create();
1922             HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1923                 dpif_sflow_add_port(ds, &ofport->up, ofport->odp_port);
1924             }
1925             ofproto->backer->need_revalidate = REV_RECONFIGURE;
1926         }
1927         dpif_sflow_set_options(ds, sflow_options);
1928     } else {
1929         if (ds) {
1930             dpif_sflow_destroy(ds);
1931             ofproto->backer->need_revalidate = REV_RECONFIGURE;
1932             ofproto->sflow = NULL;
1933         }
1934     }
1935     return 0;
1936 }
1937
1938 static int
1939 set_ipfix(
1940     struct ofproto *ofproto_,
1941     const struct ofproto_ipfix_bridge_exporter_options *bridge_exporter_options,
1942     const struct ofproto_ipfix_flow_exporter_options *flow_exporters_options,
1943     size_t n_flow_exporters_options)
1944 {
1945     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1946     struct dpif_ipfix *di = ofproto->ipfix;
1947
1948     if (bridge_exporter_options || flow_exporters_options) {
1949         if (!di) {
1950             di = ofproto->ipfix = dpif_ipfix_create();
1951         }
1952         dpif_ipfix_set_options(
1953             di, bridge_exporter_options, flow_exporters_options,
1954             n_flow_exporters_options);
1955     } else {
1956         if (di) {
1957             dpif_ipfix_destroy(di);
1958             ofproto->ipfix = NULL;
1959         }
1960     }
1961     return 0;
1962 }
1963
1964 static int
1965 set_cfm(struct ofport *ofport_, const struct cfm_settings *s)
1966 {
1967     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
1968     int error;
1969
1970     if (!s) {
1971         error = 0;
1972     } else {
1973         if (!ofport->cfm) {
1974             struct ofproto_dpif *ofproto;
1975
1976             ofproto = ofproto_dpif_cast(ofport->up.ofproto);
1977             ofproto->backer->need_revalidate = REV_RECONFIGURE;
1978             ofport->cfm = cfm_create(ofport->up.netdev);
1979         }
1980
1981         if (cfm_configure(ofport->cfm, s)) {
1982             return 0;
1983         }
1984
1985         error = EINVAL;
1986     }
1987     cfm_destroy(ofport->cfm);
1988     ofport->cfm = NULL;
1989     return error;
1990 }
1991
1992 static bool
1993 get_cfm_status(const struct ofport *ofport_,
1994                struct ofproto_cfm_status *status)
1995 {
1996     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
1997
1998     if (ofport->cfm) {
1999         status->faults = cfm_get_fault(ofport->cfm);
2000         status->remote_opstate = cfm_get_opup(ofport->cfm);
2001         status->health = cfm_get_health(ofport->cfm);
2002         cfm_get_remote_mpids(ofport->cfm, &status->rmps, &status->n_rmps);
2003         return true;
2004     } else {
2005         return false;
2006     }
2007 }
2008
2009 static int
2010 set_bfd(struct ofport *ofport_, const struct smap *cfg)
2011 {
2012     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport_->ofproto);
2013     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2014     struct bfd *old;
2015
2016     old = ofport->bfd;
2017     ofport->bfd = bfd_configure(old, netdev_get_name(ofport->up.netdev), cfg);
2018     if (ofport->bfd != old) {
2019         ofproto->backer->need_revalidate = REV_RECONFIGURE;
2020     }
2021
2022     return 0;
2023 }
2024
2025 static int
2026 get_bfd_status(struct ofport *ofport_, struct smap *smap)
2027 {
2028     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2029
2030     if (ofport->bfd) {
2031         bfd_get_status(ofport->bfd, smap);
2032         return 0;
2033     } else {
2034         return ENOENT;
2035     }
2036 }
2037 \f
2038 /* Spanning Tree. */
2039
2040 static void
2041 send_bpdu_cb(struct ofpbuf *pkt, int port_num, void *ofproto_)
2042 {
2043     struct ofproto_dpif *ofproto = ofproto_;
2044     struct stp_port *sp = stp_get_port(ofproto->stp, port_num);
2045     struct ofport_dpif *ofport;
2046
2047     ofport = stp_port_get_aux(sp);
2048     if (!ofport) {
2049         VLOG_WARN_RL(&rl, "%s: cannot send BPDU on unknown port %d",
2050                      ofproto->up.name, port_num);
2051     } else {
2052         struct eth_header *eth = pkt->l2;
2053
2054         netdev_get_etheraddr(ofport->up.netdev, eth->eth_src);
2055         if (eth_addr_is_zero(eth->eth_src)) {
2056             VLOG_WARN_RL(&rl, "%s: cannot send BPDU on port %d "
2057                          "with unknown MAC", ofproto->up.name, port_num);
2058         } else {
2059             send_packet(ofport, pkt);
2060         }
2061     }
2062     ofpbuf_delete(pkt);
2063 }
2064
2065 /* Configures STP on 'ofproto_' using the settings defined in 's'. */
2066 static int
2067 set_stp(struct ofproto *ofproto_, const struct ofproto_stp_settings *s)
2068 {
2069     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2070
2071     /* Only revalidate flows if the configuration changed. */
2072     if (!s != !ofproto->stp) {
2073         ofproto->backer->need_revalidate = REV_RECONFIGURE;
2074     }
2075
2076     if (s) {
2077         if (!ofproto->stp) {
2078             ofproto->stp = stp_create(ofproto_->name, s->system_id,
2079                                       send_bpdu_cb, ofproto);
2080             ofproto->stp_last_tick = time_msec();
2081         }
2082
2083         stp_set_bridge_id(ofproto->stp, s->system_id);
2084         stp_set_bridge_priority(ofproto->stp, s->priority);
2085         stp_set_hello_time(ofproto->stp, s->hello_time);
2086         stp_set_max_age(ofproto->stp, s->max_age);
2087         stp_set_forward_delay(ofproto->stp, s->fwd_delay);
2088     }  else {
2089         struct ofport *ofport;
2090
2091         HMAP_FOR_EACH (ofport, hmap_node, &ofproto->up.ports) {
2092             set_stp_port(ofport, NULL);
2093         }
2094
2095         stp_destroy(ofproto->stp);
2096         ofproto->stp = NULL;
2097     }
2098
2099     return 0;
2100 }
2101
2102 static int
2103 get_stp_status(struct ofproto *ofproto_, struct ofproto_stp_status *s)
2104 {
2105     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2106
2107     if (ofproto->stp) {
2108         s->enabled = true;
2109         s->bridge_id = stp_get_bridge_id(ofproto->stp);
2110         s->designated_root = stp_get_designated_root(ofproto->stp);
2111         s->root_path_cost = stp_get_root_path_cost(ofproto->stp);
2112     } else {
2113         s->enabled = false;
2114     }
2115
2116     return 0;
2117 }
2118
2119 static void
2120 update_stp_port_state(struct ofport_dpif *ofport)
2121 {
2122     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2123     enum stp_state state;
2124
2125     /* Figure out new state. */
2126     state = ofport->stp_port ? stp_port_get_state(ofport->stp_port)
2127                              : STP_DISABLED;
2128
2129     /* Update state. */
2130     if (ofport->stp_state != state) {
2131         enum ofputil_port_state of_state;
2132         bool fwd_change;
2133
2134         VLOG_DBG_RL(&rl, "port %s: STP state changed from %s to %s",
2135                     netdev_get_name(ofport->up.netdev),
2136                     stp_state_name(ofport->stp_state),
2137                     stp_state_name(state));
2138         if (stp_learn_in_state(ofport->stp_state)
2139                 != stp_learn_in_state(state)) {
2140             /* xxx Learning action flows should also be flushed. */
2141             mac_learning_flush(ofproto->ml,
2142                                &ofproto->backer->revalidate_set);
2143         }
2144         fwd_change = stp_forward_in_state(ofport->stp_state)
2145                         != stp_forward_in_state(state);
2146
2147         ofproto->backer->need_revalidate = REV_STP;
2148         ofport->stp_state = state;
2149         ofport->stp_state_entered = time_msec();
2150
2151         if (fwd_change && ofport->bundle) {
2152             bundle_update(ofport->bundle);
2153         }
2154
2155         /* Update the STP state bits in the OpenFlow port description. */
2156         of_state = ofport->up.pp.state & ~OFPUTIL_PS_STP_MASK;
2157         of_state |= (state == STP_LISTENING ? OFPUTIL_PS_STP_LISTEN
2158                      : state == STP_LEARNING ? OFPUTIL_PS_STP_LEARN
2159                      : state == STP_FORWARDING ? OFPUTIL_PS_STP_FORWARD
2160                      : state == STP_BLOCKING ?  OFPUTIL_PS_STP_BLOCK
2161                      : 0);
2162         ofproto_port_set_state(&ofport->up, of_state);
2163     }
2164 }
2165
2166 /* Configures STP on 'ofport_' using the settings defined in 's'.  The
2167  * caller is responsible for assigning STP port numbers and ensuring
2168  * there are no duplicates. */
2169 static int
2170 set_stp_port(struct ofport *ofport_,
2171              const struct ofproto_port_stp_settings *s)
2172 {
2173     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2174     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2175     struct stp_port *sp = ofport->stp_port;
2176
2177     if (!s || !s->enable) {
2178         if (sp) {
2179             ofport->stp_port = NULL;
2180             stp_port_disable(sp);
2181             update_stp_port_state(ofport);
2182         }
2183         return 0;
2184     } else if (sp && stp_port_no(sp) != s->port_num
2185             && ofport == stp_port_get_aux(sp)) {
2186         /* The port-id changed, so disable the old one if it's not
2187          * already in use by another port. */
2188         stp_port_disable(sp);
2189     }
2190
2191     sp = ofport->stp_port = stp_get_port(ofproto->stp, s->port_num);
2192     stp_port_enable(sp);
2193
2194     stp_port_set_aux(sp, ofport);
2195     stp_port_set_priority(sp, s->priority);
2196     stp_port_set_path_cost(sp, s->path_cost);
2197
2198     update_stp_port_state(ofport);
2199
2200     return 0;
2201 }
2202
2203 static int
2204 get_stp_port_status(struct ofport *ofport_,
2205                     struct ofproto_port_stp_status *s)
2206 {
2207     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2208     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2209     struct stp_port *sp = ofport->stp_port;
2210
2211     if (!ofproto->stp || !sp) {
2212         s->enabled = false;
2213         return 0;
2214     }
2215
2216     s->enabled = true;
2217     s->port_id = stp_port_get_id(sp);
2218     s->state = stp_port_get_state(sp);
2219     s->sec_in_state = (time_msec() - ofport->stp_state_entered) / 1000;
2220     s->role = stp_port_get_role(sp);
2221     stp_port_get_counts(sp, &s->tx_count, &s->rx_count, &s->error_count);
2222
2223     return 0;
2224 }
2225
2226 static void
2227 stp_run(struct ofproto_dpif *ofproto)
2228 {
2229     if (ofproto->stp) {
2230         long long int now = time_msec();
2231         long long int elapsed = now - ofproto->stp_last_tick;
2232         struct stp_port *sp;
2233
2234         if (elapsed > 0) {
2235             stp_tick(ofproto->stp, MIN(INT_MAX, elapsed));
2236             ofproto->stp_last_tick = now;
2237         }
2238         while (stp_get_changed_port(ofproto->stp, &sp)) {
2239             struct ofport_dpif *ofport = stp_port_get_aux(sp);
2240
2241             if (ofport) {
2242                 update_stp_port_state(ofport);
2243             }
2244         }
2245
2246         if (stp_check_and_reset_fdb_flush(ofproto->stp)) {
2247             mac_learning_flush(ofproto->ml, &ofproto->backer->revalidate_set);
2248         }
2249     }
2250 }
2251
2252 static void
2253 stp_wait(struct ofproto_dpif *ofproto)
2254 {
2255     if (ofproto->stp) {
2256         poll_timer_wait(1000);
2257     }
2258 }
2259
2260 /* Returns true if STP should process 'flow'. */
2261 static bool
2262 stp_should_process_flow(const struct flow *flow)
2263 {
2264     return eth_addr_equals(flow->dl_dst, eth_addr_stp);
2265 }
2266
2267 static void
2268 stp_process_packet(const struct ofport_dpif *ofport,
2269                    const struct ofpbuf *packet)
2270 {
2271     struct ofpbuf payload = *packet;
2272     struct eth_header *eth = payload.data;
2273     struct stp_port *sp = ofport->stp_port;
2274
2275     /* Sink packets on ports that have STP disabled when the bridge has
2276      * STP enabled. */
2277     if (!sp || stp_port_get_state(sp) == STP_DISABLED) {
2278         return;
2279     }
2280
2281     /* Trim off padding on payload. */
2282     if (payload.size > ntohs(eth->eth_type) + ETH_HEADER_LEN) {
2283         payload.size = ntohs(eth->eth_type) + ETH_HEADER_LEN;
2284     }
2285
2286     if (ofpbuf_try_pull(&payload, ETH_HEADER_LEN + LLC_HEADER_LEN)) {
2287         stp_received_bpdu(sp, payload.data, payload.size);
2288     }
2289 }
2290 \f
2291 static struct priority_to_dscp *
2292 get_priority(const struct ofport_dpif *ofport, uint32_t priority)
2293 {
2294     struct priority_to_dscp *pdscp;
2295     uint32_t hash;
2296
2297     hash = hash_int(priority, 0);
2298     HMAP_FOR_EACH_IN_BUCKET (pdscp, hmap_node, hash, &ofport->priorities) {
2299         if (pdscp->priority == priority) {
2300             return pdscp;
2301         }
2302     }
2303     return NULL;
2304 }
2305
2306 static void
2307 ofport_clear_priorities(struct ofport_dpif *ofport)
2308 {
2309     struct priority_to_dscp *pdscp, *next;
2310
2311     HMAP_FOR_EACH_SAFE (pdscp, next, hmap_node, &ofport->priorities) {
2312         hmap_remove(&ofport->priorities, &pdscp->hmap_node);
2313         free(pdscp);
2314     }
2315 }
2316
2317 static int
2318 set_queues(struct ofport *ofport_,
2319            const struct ofproto_port_queue *qdscp_list,
2320            size_t n_qdscp)
2321 {
2322     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2323     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2324     struct hmap new = HMAP_INITIALIZER(&new);
2325     size_t i;
2326
2327     for (i = 0; i < n_qdscp; i++) {
2328         struct priority_to_dscp *pdscp;
2329         uint32_t priority;
2330         uint8_t dscp;
2331
2332         dscp = (qdscp_list[i].dscp << 2) & IP_DSCP_MASK;
2333         if (dpif_queue_to_priority(ofproto->backer->dpif, qdscp_list[i].queue,
2334                                    &priority)) {
2335             continue;
2336         }
2337
2338         pdscp = get_priority(ofport, priority);
2339         if (pdscp) {
2340             hmap_remove(&ofport->priorities, &pdscp->hmap_node);
2341         } else {
2342             pdscp = xmalloc(sizeof *pdscp);
2343             pdscp->priority = priority;
2344             pdscp->dscp = dscp;
2345             ofproto->backer->need_revalidate = REV_RECONFIGURE;
2346         }
2347
2348         if (pdscp->dscp != dscp) {
2349             pdscp->dscp = dscp;
2350             ofproto->backer->need_revalidate = REV_RECONFIGURE;
2351         }
2352
2353         hmap_insert(&new, &pdscp->hmap_node, hash_int(pdscp->priority, 0));
2354     }
2355
2356     if (!hmap_is_empty(&ofport->priorities)) {
2357         ofport_clear_priorities(ofport);
2358         ofproto->backer->need_revalidate = REV_RECONFIGURE;
2359     }
2360
2361     hmap_swap(&new, &ofport->priorities);
2362     hmap_destroy(&new);
2363
2364     return 0;
2365 }
2366 \f
2367 /* Bundles. */
2368
2369 /* Expires all MAC learning entries associated with 'bundle' and forces its
2370  * ofproto to revalidate every flow.
2371  *
2372  * Normally MAC learning entries are removed only from the ofproto associated
2373  * with 'bundle', but if 'all_ofprotos' is true, then the MAC learning entries
2374  * are removed from every ofproto.  When patch ports and SLB bonds are in use
2375  * and a VM migration happens and the gratuitous ARPs are somehow lost, this
2376  * avoids a MAC_ENTRY_IDLE_TIME delay before the migrated VM can communicate
2377  * with the host from which it migrated. */
2378 static void
2379 bundle_flush_macs(struct ofbundle *bundle, bool all_ofprotos)
2380 {
2381     struct ofproto_dpif *ofproto = bundle->ofproto;
2382     struct mac_learning *ml = ofproto->ml;
2383     struct mac_entry *mac, *next_mac;
2384
2385     ofproto->backer->need_revalidate = REV_RECONFIGURE;
2386     LIST_FOR_EACH_SAFE (mac, next_mac, lru_node, &ml->lrus) {
2387         if (mac->port.p == bundle) {
2388             if (all_ofprotos) {
2389                 struct ofproto_dpif *o;
2390
2391                 HMAP_FOR_EACH (o, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
2392                     if (o != ofproto) {
2393                         struct mac_entry *e;
2394
2395                         e = mac_learning_lookup(o->ml, mac->mac, mac->vlan,
2396                                                 NULL);
2397                         if (e) {
2398                             mac_learning_expire(o->ml, e);
2399                         }
2400                     }
2401                 }
2402             }
2403
2404             mac_learning_expire(ml, mac);
2405         }
2406     }
2407 }
2408
2409 static struct ofbundle *
2410 bundle_lookup(const struct ofproto_dpif *ofproto, void *aux)
2411 {
2412     struct ofbundle *bundle;
2413
2414     HMAP_FOR_EACH_IN_BUCKET (bundle, hmap_node, hash_pointer(aux, 0),
2415                              &ofproto->bundles) {
2416         if (bundle->aux == aux) {
2417             return bundle;
2418         }
2419     }
2420     return NULL;
2421 }
2422
2423 /* Looks up each of the 'n_auxes' pointers in 'auxes' as bundles and adds the
2424  * ones that are found to 'bundles'. */
2425 static void
2426 bundle_lookup_multiple(struct ofproto_dpif *ofproto,
2427                        void **auxes, size_t n_auxes,
2428                        struct hmapx *bundles)
2429 {
2430     size_t i;
2431
2432     hmapx_init(bundles);
2433     for (i = 0; i < n_auxes; i++) {
2434         struct ofbundle *bundle = bundle_lookup(ofproto, auxes[i]);
2435         if (bundle) {
2436             hmapx_add(bundles, bundle);
2437         }
2438     }
2439 }
2440
2441 static void
2442 bundle_update(struct ofbundle *bundle)
2443 {
2444     struct ofport_dpif *port;
2445
2446     bundle->floodable = true;
2447     LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
2448         if (port->up.pp.config & OFPUTIL_PC_NO_FLOOD
2449             || !stp_forward_in_state(port->stp_state)) {
2450             bundle->floodable = false;
2451             break;
2452         }
2453     }
2454 }
2455
2456 static void
2457 bundle_del_port(struct ofport_dpif *port)
2458 {
2459     struct ofbundle *bundle = port->bundle;
2460
2461     bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
2462
2463     list_remove(&port->bundle_node);
2464     port->bundle = NULL;
2465
2466     if (bundle->lacp) {
2467         lacp_slave_unregister(bundle->lacp, port);
2468     }
2469     if (bundle->bond) {
2470         bond_slave_unregister(bundle->bond, port);
2471     }
2472
2473     bundle_update(bundle);
2474 }
2475
2476 static bool
2477 bundle_add_port(struct ofbundle *bundle, uint16_t ofp_port,
2478                 struct lacp_slave_settings *lacp)
2479 {
2480     struct ofport_dpif *port;
2481
2482     port = get_ofp_port(bundle->ofproto, ofp_port);
2483     if (!port) {
2484         return false;
2485     }
2486
2487     if (port->bundle != bundle) {
2488         bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
2489         if (port->bundle) {
2490             bundle_del_port(port);
2491         }
2492
2493         port->bundle = bundle;
2494         list_push_back(&bundle->ports, &port->bundle_node);
2495         if (port->up.pp.config & OFPUTIL_PC_NO_FLOOD
2496             || !stp_forward_in_state(port->stp_state)) {
2497             bundle->floodable = false;
2498         }
2499     }
2500     if (lacp) {
2501         bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
2502         lacp_slave_register(bundle->lacp, port, lacp);
2503     }
2504
2505     return true;
2506 }
2507
2508 static void
2509 bundle_destroy(struct ofbundle *bundle)
2510 {
2511     struct ofproto_dpif *ofproto;
2512     struct ofport_dpif *port, *next_port;
2513     int i;
2514
2515     if (!bundle) {
2516         return;
2517     }
2518
2519     ofproto = bundle->ofproto;
2520     for (i = 0; i < MAX_MIRRORS; i++) {
2521         struct ofmirror *m = ofproto->mirrors[i];
2522         if (m) {
2523             if (m->out == bundle) {
2524                 mirror_destroy(m);
2525             } else if (hmapx_find_and_delete(&m->srcs, bundle)
2526                        || hmapx_find_and_delete(&m->dsts, bundle)) {
2527                 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2528             }
2529         }
2530     }
2531
2532     LIST_FOR_EACH_SAFE (port, next_port, bundle_node, &bundle->ports) {
2533         bundle_del_port(port);
2534     }
2535
2536     bundle_flush_macs(bundle, true);
2537     hmap_remove(&ofproto->bundles, &bundle->hmap_node);
2538     free(bundle->name);
2539     free(bundle->trunks);
2540     lacp_destroy(bundle->lacp);
2541     bond_destroy(bundle->bond);
2542     free(bundle);
2543 }
2544
2545 static int
2546 bundle_set(struct ofproto *ofproto_, void *aux,
2547            const struct ofproto_bundle_settings *s)
2548 {
2549     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2550     bool need_flush = false;
2551     struct ofport_dpif *port;
2552     struct ofbundle *bundle;
2553     unsigned long *trunks;
2554     int vlan;
2555     size_t i;
2556     bool ok;
2557
2558     if (!s) {
2559         bundle_destroy(bundle_lookup(ofproto, aux));
2560         return 0;
2561     }
2562
2563     ovs_assert(s->n_slaves == 1 || s->bond != NULL);
2564     ovs_assert((s->lacp != NULL) == (s->lacp_slaves != NULL));
2565
2566     bundle = bundle_lookup(ofproto, aux);
2567     if (!bundle) {
2568         bundle = xmalloc(sizeof *bundle);
2569
2570         bundle->ofproto = ofproto;
2571         hmap_insert(&ofproto->bundles, &bundle->hmap_node,
2572                     hash_pointer(aux, 0));
2573         bundle->aux = aux;
2574         bundle->name = NULL;
2575
2576         list_init(&bundle->ports);
2577         bundle->vlan_mode = PORT_VLAN_TRUNK;
2578         bundle->vlan = -1;
2579         bundle->trunks = NULL;
2580         bundle->use_priority_tags = s->use_priority_tags;
2581         bundle->lacp = NULL;
2582         bundle->bond = NULL;
2583
2584         bundle->floodable = true;
2585
2586         bundle->src_mirrors = 0;
2587         bundle->dst_mirrors = 0;
2588         bundle->mirror_out = 0;
2589     }
2590
2591     if (!bundle->name || strcmp(s->name, bundle->name)) {
2592         free(bundle->name);
2593         bundle->name = xstrdup(s->name);
2594     }
2595
2596     /* LACP. */
2597     if (s->lacp) {
2598         if (!bundle->lacp) {
2599             ofproto->backer->need_revalidate = REV_RECONFIGURE;
2600             bundle->lacp = lacp_create();
2601         }
2602         lacp_configure(bundle->lacp, s->lacp);
2603     } else {
2604         lacp_destroy(bundle->lacp);
2605         bundle->lacp = NULL;
2606     }
2607
2608     /* Update set of ports. */
2609     ok = true;
2610     for (i = 0; i < s->n_slaves; i++) {
2611         if (!bundle_add_port(bundle, s->slaves[i],
2612                              s->lacp ? &s->lacp_slaves[i] : NULL)) {
2613             ok = false;
2614         }
2615     }
2616     if (!ok || list_size(&bundle->ports) != s->n_slaves) {
2617         struct ofport_dpif *next_port;
2618
2619         LIST_FOR_EACH_SAFE (port, next_port, bundle_node, &bundle->ports) {
2620             for (i = 0; i < s->n_slaves; i++) {
2621                 if (s->slaves[i] == port->up.ofp_port) {
2622                     goto found;
2623                 }
2624             }
2625
2626             bundle_del_port(port);
2627         found: ;
2628         }
2629     }
2630     ovs_assert(list_size(&bundle->ports) <= s->n_slaves);
2631
2632     if (list_is_empty(&bundle->ports)) {
2633         bundle_destroy(bundle);
2634         return EINVAL;
2635     }
2636
2637     /* Set VLAN tagging mode */
2638     if (s->vlan_mode != bundle->vlan_mode
2639         || s->use_priority_tags != bundle->use_priority_tags) {
2640         bundle->vlan_mode = s->vlan_mode;
2641         bundle->use_priority_tags = s->use_priority_tags;
2642         need_flush = true;
2643     }
2644
2645     /* Set VLAN tag. */
2646     vlan = (s->vlan_mode == PORT_VLAN_TRUNK ? -1
2647             : s->vlan >= 0 && s->vlan <= 4095 ? s->vlan
2648             : 0);
2649     if (vlan != bundle->vlan) {
2650         bundle->vlan = vlan;
2651         need_flush = true;
2652     }
2653
2654     /* Get trunked VLANs. */
2655     switch (s->vlan_mode) {
2656     case PORT_VLAN_ACCESS:
2657         trunks = NULL;
2658         break;
2659
2660     case PORT_VLAN_TRUNK:
2661         trunks = CONST_CAST(unsigned long *, s->trunks);
2662         break;
2663
2664     case PORT_VLAN_NATIVE_UNTAGGED:
2665     case PORT_VLAN_NATIVE_TAGGED:
2666         if (vlan != 0 && (!s->trunks
2667                           || !bitmap_is_set(s->trunks, vlan)
2668                           || bitmap_is_set(s->trunks, 0))) {
2669             /* Force trunking the native VLAN and prohibit trunking VLAN 0. */
2670             if (s->trunks) {
2671                 trunks = bitmap_clone(s->trunks, 4096);
2672             } else {
2673                 trunks = bitmap_allocate1(4096);
2674             }
2675             bitmap_set1(trunks, vlan);
2676             bitmap_set0(trunks, 0);
2677         } else {
2678             trunks = CONST_CAST(unsigned long *, s->trunks);
2679         }
2680         break;
2681
2682     default:
2683         NOT_REACHED();
2684     }
2685     if (!vlan_bitmap_equal(trunks, bundle->trunks)) {
2686         free(bundle->trunks);
2687         if (trunks == s->trunks) {
2688             bundle->trunks = vlan_bitmap_clone(trunks);
2689         } else {
2690             bundle->trunks = trunks;
2691             trunks = NULL;
2692         }
2693         need_flush = true;
2694     }
2695     if (trunks != s->trunks) {
2696         free(trunks);
2697     }
2698
2699     /* Bonding. */
2700     if (!list_is_short(&bundle->ports)) {
2701         bundle->ofproto->has_bonded_bundles = true;
2702         if (bundle->bond) {
2703             if (bond_reconfigure(bundle->bond, s->bond)) {
2704                 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2705             }
2706         } else {
2707             bundle->bond = bond_create(s->bond);
2708             ofproto->backer->need_revalidate = REV_RECONFIGURE;
2709         }
2710
2711         LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
2712             bond_slave_register(bundle->bond, port, port->up.netdev);
2713         }
2714     } else {
2715         bond_destroy(bundle->bond);
2716         bundle->bond = NULL;
2717     }
2718
2719     /* If we changed something that would affect MAC learning, un-learn
2720      * everything on this port and force flow revalidation. */
2721     if (need_flush) {
2722         bundle_flush_macs(bundle, false);
2723     }
2724
2725     return 0;
2726 }
2727
2728 static void
2729 bundle_remove(struct ofport *port_)
2730 {
2731     struct ofport_dpif *port = ofport_dpif_cast(port_);
2732     struct ofbundle *bundle = port->bundle;
2733
2734     if (bundle) {
2735         bundle_del_port(port);
2736         if (list_is_empty(&bundle->ports)) {
2737             bundle_destroy(bundle);
2738         } else if (list_is_short(&bundle->ports)) {
2739             bond_destroy(bundle->bond);
2740             bundle->bond = NULL;
2741         }
2742     }
2743 }
2744
2745 static void
2746 send_pdu_cb(void *port_, const void *pdu, size_t pdu_size)
2747 {
2748     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 10);
2749     struct ofport_dpif *port = port_;
2750     uint8_t ea[ETH_ADDR_LEN];
2751     int error;
2752
2753     error = netdev_get_etheraddr(port->up.netdev, ea);
2754     if (!error) {
2755         struct ofpbuf packet;
2756         void *packet_pdu;
2757
2758         ofpbuf_init(&packet, 0);
2759         packet_pdu = eth_compose(&packet, eth_addr_lacp, ea, ETH_TYPE_LACP,
2760                                  pdu_size);
2761         memcpy(packet_pdu, pdu, pdu_size);
2762
2763         send_packet(port, &packet);
2764         ofpbuf_uninit(&packet);
2765     } else {
2766         VLOG_ERR_RL(&rl, "port %s: cannot obtain Ethernet address of iface "
2767                     "%s (%s)", port->bundle->name,
2768                     netdev_get_name(port->up.netdev), strerror(error));
2769     }
2770 }
2771
2772 static void
2773 bundle_send_learning_packets(struct ofbundle *bundle)
2774 {
2775     struct ofproto_dpif *ofproto = bundle->ofproto;
2776     int error, n_packets, n_errors;
2777     struct mac_entry *e;
2778
2779     error = n_packets = n_errors = 0;
2780     LIST_FOR_EACH (e, lru_node, &ofproto->ml->lrus) {
2781         if (e->port.p != bundle) {
2782             struct ofpbuf *learning_packet;
2783             struct ofport_dpif *port;
2784             void *port_void;
2785             int ret;
2786
2787             /* The assignment to "port" is unnecessary but makes "grep"ing for
2788              * struct ofport_dpif more effective. */
2789             learning_packet = bond_compose_learning_packet(bundle->bond,
2790                                                            e->mac, e->vlan,
2791                                                            &port_void);
2792             port = port_void;
2793             ret = send_packet(port, learning_packet);
2794             ofpbuf_delete(learning_packet);
2795             if (ret) {
2796                 error = ret;
2797                 n_errors++;
2798             }
2799             n_packets++;
2800         }
2801     }
2802
2803     if (n_errors) {
2804         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2805         VLOG_WARN_RL(&rl, "bond %s: %d errors sending %d gratuitous learning "
2806                      "packets, last error was: %s",
2807                      bundle->name, n_errors, n_packets, strerror(error));
2808     } else {
2809         VLOG_DBG("bond %s: sent %d gratuitous learning packets",
2810                  bundle->name, n_packets);
2811     }
2812 }
2813
2814 static void
2815 bundle_run(struct ofbundle *bundle)
2816 {
2817     if (bundle->lacp) {
2818         lacp_run(bundle->lacp, send_pdu_cb);
2819     }
2820     if (bundle->bond) {
2821         struct ofport_dpif *port;
2822
2823         LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
2824             bond_slave_set_may_enable(bundle->bond, port, port->may_enable);
2825         }
2826
2827         bond_run(bundle->bond, &bundle->ofproto->backer->revalidate_set,
2828                  lacp_status(bundle->lacp));
2829         if (bond_should_send_learning_packets(bundle->bond)) {
2830             bundle_send_learning_packets(bundle);
2831         }
2832     }
2833 }
2834
2835 static void
2836 bundle_wait(struct ofbundle *bundle)
2837 {
2838     if (bundle->lacp) {
2839         lacp_wait(bundle->lacp);
2840     }
2841     if (bundle->bond) {
2842         bond_wait(bundle->bond);
2843     }
2844 }
2845 \f
2846 /* Mirrors. */
2847
2848 static int
2849 mirror_scan(struct ofproto_dpif *ofproto)
2850 {
2851     int idx;
2852
2853     for (idx = 0; idx < MAX_MIRRORS; idx++) {
2854         if (!ofproto->mirrors[idx]) {
2855             return idx;
2856         }
2857     }
2858     return -1;
2859 }
2860
2861 static struct ofmirror *
2862 mirror_lookup(struct ofproto_dpif *ofproto, void *aux)
2863 {
2864     int i;
2865
2866     for (i = 0; i < MAX_MIRRORS; i++) {
2867         struct ofmirror *mirror = ofproto->mirrors[i];
2868         if (mirror && mirror->aux == aux) {
2869             return mirror;
2870         }
2871     }
2872
2873     return NULL;
2874 }
2875
2876 /* Update the 'dup_mirrors' member of each of the ofmirrors in 'ofproto'. */
2877 static void
2878 mirror_update_dups(struct ofproto_dpif *ofproto)
2879 {
2880     int i;
2881
2882     for (i = 0; i < MAX_MIRRORS; i++) {
2883         struct ofmirror *m = ofproto->mirrors[i];
2884
2885         if (m) {
2886             m->dup_mirrors = MIRROR_MASK_C(1) << i;
2887         }
2888     }
2889
2890     for (i = 0; i < MAX_MIRRORS; i++) {
2891         struct ofmirror *m1 = ofproto->mirrors[i];
2892         int j;
2893
2894         if (!m1) {
2895             continue;
2896         }
2897
2898         for (j = i + 1; j < MAX_MIRRORS; j++) {
2899             struct ofmirror *m2 = ofproto->mirrors[j];
2900
2901             if (m2 && m1->out == m2->out && m1->out_vlan == m2->out_vlan) {
2902                 m1->dup_mirrors |= MIRROR_MASK_C(1) << j;
2903                 m2->dup_mirrors |= m1->dup_mirrors;
2904             }
2905         }
2906     }
2907 }
2908
2909 static int
2910 mirror_set(struct ofproto *ofproto_, void *aux,
2911            const struct ofproto_mirror_settings *s)
2912 {
2913     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2914     mirror_mask_t mirror_bit;
2915     struct ofbundle *bundle;
2916     struct ofmirror *mirror;
2917     struct ofbundle *out;
2918     struct hmapx srcs;          /* Contains "struct ofbundle *"s. */
2919     struct hmapx dsts;          /* Contains "struct ofbundle *"s. */
2920     int out_vlan;
2921
2922     mirror = mirror_lookup(ofproto, aux);
2923     if (!s) {
2924         mirror_destroy(mirror);
2925         return 0;
2926     }
2927     if (!mirror) {
2928         int idx;
2929
2930         idx = mirror_scan(ofproto);
2931         if (idx < 0) {
2932             VLOG_WARN("bridge %s: maximum of %d port mirrors reached, "
2933                       "cannot create %s",
2934                       ofproto->up.name, MAX_MIRRORS, s->name);
2935             return EFBIG;
2936         }
2937
2938         mirror = ofproto->mirrors[idx] = xzalloc(sizeof *mirror);
2939         mirror->ofproto = ofproto;
2940         mirror->idx = idx;
2941         mirror->aux = aux;
2942         mirror->out_vlan = -1;
2943         mirror->name = NULL;
2944     }
2945
2946     if (!mirror->name || strcmp(s->name, mirror->name)) {
2947         free(mirror->name);
2948         mirror->name = xstrdup(s->name);
2949     }
2950
2951     /* Get the new configuration. */
2952     if (s->out_bundle) {
2953         out = bundle_lookup(ofproto, s->out_bundle);
2954         if (!out) {
2955             mirror_destroy(mirror);
2956             return EINVAL;
2957         }
2958         out_vlan = -1;
2959     } else {
2960         out = NULL;
2961         out_vlan = s->out_vlan;
2962     }
2963     bundle_lookup_multiple(ofproto, s->srcs, s->n_srcs, &srcs);
2964     bundle_lookup_multiple(ofproto, s->dsts, s->n_dsts, &dsts);
2965
2966     /* If the configuration has not changed, do nothing. */
2967     if (hmapx_equals(&srcs, &mirror->srcs)
2968         && hmapx_equals(&dsts, &mirror->dsts)
2969         && vlan_bitmap_equal(mirror->vlans, s->src_vlans)
2970         && mirror->out == out
2971         && mirror->out_vlan == out_vlan)
2972     {
2973         hmapx_destroy(&srcs);
2974         hmapx_destroy(&dsts);
2975         return 0;
2976     }
2977
2978     hmapx_swap(&srcs, &mirror->srcs);
2979     hmapx_destroy(&srcs);
2980
2981     hmapx_swap(&dsts, &mirror->dsts);
2982     hmapx_destroy(&dsts);
2983
2984     free(mirror->vlans);
2985     mirror->vlans = vlan_bitmap_clone(s->src_vlans);
2986
2987     mirror->out = out;
2988     mirror->out_vlan = out_vlan;
2989
2990     /* Update bundles. */
2991     mirror_bit = MIRROR_MASK_C(1) << mirror->idx;
2992     HMAP_FOR_EACH (bundle, hmap_node, &mirror->ofproto->bundles) {
2993         if (hmapx_contains(&mirror->srcs, bundle)) {
2994             bundle->src_mirrors |= mirror_bit;
2995         } else {
2996             bundle->src_mirrors &= ~mirror_bit;
2997         }
2998
2999         if (hmapx_contains(&mirror->dsts, bundle)) {
3000             bundle->dst_mirrors |= mirror_bit;
3001         } else {
3002             bundle->dst_mirrors &= ~mirror_bit;
3003         }
3004
3005         if (mirror->out == bundle) {
3006             bundle->mirror_out |= mirror_bit;
3007         } else {
3008             bundle->mirror_out &= ~mirror_bit;
3009         }
3010     }
3011
3012     ofproto->backer->need_revalidate = REV_RECONFIGURE;
3013     ofproto->has_mirrors = true;
3014     mac_learning_flush(ofproto->ml,
3015                        &ofproto->backer->revalidate_set);
3016     mirror_update_dups(ofproto);
3017
3018     return 0;
3019 }
3020
3021 static void
3022 mirror_destroy(struct ofmirror *mirror)
3023 {
3024     struct ofproto_dpif *ofproto;
3025     mirror_mask_t mirror_bit;
3026     struct ofbundle *bundle;
3027     int i;
3028
3029     if (!mirror) {
3030         return;
3031     }
3032
3033     ofproto = mirror->ofproto;
3034     ofproto->backer->need_revalidate = REV_RECONFIGURE;
3035     mac_learning_flush(ofproto->ml, &ofproto->backer->revalidate_set);
3036
3037     mirror_bit = MIRROR_MASK_C(1) << mirror->idx;
3038     HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
3039         bundle->src_mirrors &= ~mirror_bit;
3040         bundle->dst_mirrors &= ~mirror_bit;
3041         bundle->mirror_out &= ~mirror_bit;
3042     }
3043
3044     hmapx_destroy(&mirror->srcs);
3045     hmapx_destroy(&mirror->dsts);
3046     free(mirror->vlans);
3047
3048     ofproto->mirrors[mirror->idx] = NULL;
3049     free(mirror->name);
3050     free(mirror);
3051
3052     mirror_update_dups(ofproto);
3053
3054     ofproto->has_mirrors = false;
3055     for (i = 0; i < MAX_MIRRORS; i++) {
3056         if (ofproto->mirrors[i]) {
3057             ofproto->has_mirrors = true;
3058             break;
3059         }
3060     }
3061 }
3062
3063 static int
3064 mirror_get_stats(struct ofproto *ofproto_, void *aux,
3065                  uint64_t *packets, uint64_t *bytes)
3066 {
3067     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3068     struct ofmirror *mirror = mirror_lookup(ofproto, aux);
3069
3070     if (!mirror) {
3071         *packets = *bytes = UINT64_MAX;
3072         return 0;
3073     }
3074
3075     push_all_stats();
3076
3077     *packets = mirror->packet_count;
3078     *bytes = mirror->byte_count;
3079
3080     return 0;
3081 }
3082
3083 static int
3084 set_flood_vlans(struct ofproto *ofproto_, unsigned long *flood_vlans)
3085 {
3086     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3087     if (mac_learning_set_flood_vlans(ofproto->ml, flood_vlans)) {
3088         mac_learning_flush(ofproto->ml, &ofproto->backer->revalidate_set);
3089     }
3090     return 0;
3091 }
3092
3093 static bool
3094 is_mirror_output_bundle(const struct ofproto *ofproto_, void *aux)
3095 {
3096     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3097     struct ofbundle *bundle = bundle_lookup(ofproto, aux);
3098     return bundle && bundle->mirror_out != 0;
3099 }
3100
3101 static void
3102 forward_bpdu_changed(struct ofproto *ofproto_)
3103 {
3104     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3105     ofproto->backer->need_revalidate = REV_RECONFIGURE;
3106 }
3107
3108 static void
3109 set_mac_table_config(struct ofproto *ofproto_, unsigned int idle_time,
3110                      size_t max_entries)
3111 {
3112     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3113     mac_learning_set_idle_time(ofproto->ml, idle_time);
3114     mac_learning_set_max_entries(ofproto->ml, max_entries);
3115 }
3116 \f
3117 /* Ports. */
3118
3119 static struct ofport_dpif *
3120 get_ofp_port(const struct ofproto_dpif *ofproto, uint16_t ofp_port)
3121 {
3122     struct ofport *ofport = ofproto_get_port(&ofproto->up, ofp_port);
3123     return ofport ? ofport_dpif_cast(ofport) : NULL;
3124 }
3125
3126 static struct ofport_dpif *
3127 get_odp_port(const struct ofproto_dpif *ofproto, uint32_t odp_port)
3128 {
3129     struct ofport_dpif *port = odp_port_to_ofport(ofproto->backer, odp_port);
3130     return port && &ofproto->up == port->up.ofproto ? port : NULL;
3131 }
3132
3133 static void
3134 ofproto_port_from_dpif_port(struct ofproto_dpif *ofproto,
3135                             struct ofproto_port *ofproto_port,
3136                             struct dpif_port *dpif_port)
3137 {
3138     ofproto_port->name = dpif_port->name;
3139     ofproto_port->type = dpif_port->type;
3140     ofproto_port->ofp_port = odp_port_to_ofp_port(ofproto, dpif_port->port_no);
3141 }
3142
3143 static struct ofport_dpif *
3144 ofport_get_peer(const struct ofport_dpif *ofport_dpif)
3145 {
3146     const struct ofproto_dpif *ofproto;
3147     const char *peer;
3148
3149     peer = netdev_vport_patch_peer(ofport_dpif->up.netdev);
3150     if (!peer) {
3151         return NULL;
3152     }
3153
3154     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
3155         struct ofport *ofport;
3156
3157         ofport = shash_find_data(&ofproto->up.port_by_name, peer);
3158         if (ofport && ofport->ofproto->ofproto_class == &ofproto_dpif_class) {
3159             return ofport_dpif_cast(ofport);
3160         }
3161     }
3162     return NULL;
3163 }
3164
3165 static void
3166 port_run_fast(struct ofport_dpif *ofport)
3167 {
3168     if (ofport->cfm && cfm_should_send_ccm(ofport->cfm)) {
3169         struct ofpbuf packet;
3170
3171         ofpbuf_init(&packet, 0);
3172         cfm_compose_ccm(ofport->cfm, &packet, ofport->up.pp.hw_addr);
3173         send_packet(ofport, &packet);
3174         ofpbuf_uninit(&packet);
3175     }
3176
3177     if (ofport->bfd && bfd_should_send_packet(ofport->bfd)) {
3178         struct ofpbuf packet;
3179
3180         ofpbuf_init(&packet, 0);
3181         bfd_put_packet(ofport->bfd, &packet, ofport->up.pp.hw_addr);
3182         send_packet(ofport, &packet);
3183         ofpbuf_uninit(&packet);
3184     }
3185 }
3186
3187 static void
3188 port_run(struct ofport_dpif *ofport)
3189 {
3190     long long int carrier_seq = netdev_get_carrier_resets(ofport->up.netdev);
3191     bool carrier_changed = carrier_seq != ofport->carrier_seq;
3192     bool enable = netdev_get_carrier(ofport->up.netdev);
3193
3194     ofport->carrier_seq = carrier_seq;
3195
3196     port_run_fast(ofport);
3197
3198     if (ofport->tnl_port
3199         && tnl_port_reconfigure(&ofport->up, ofport->odp_port,
3200                                 &ofport->tnl_port)) {
3201         ofproto_dpif_cast(ofport->up.ofproto)->backer->need_revalidate = true;
3202     }
3203
3204     if (ofport->cfm) {
3205         int cfm_opup = cfm_get_opup(ofport->cfm);
3206
3207         cfm_run(ofport->cfm);
3208         enable = enable && !cfm_get_fault(ofport->cfm);
3209
3210         if (cfm_opup >= 0) {
3211             enable = enable && cfm_opup;
3212         }
3213     }
3214
3215     if (ofport->bfd) {
3216         bfd_run(ofport->bfd);
3217         enable = enable && bfd_forwarding(ofport->bfd);
3218     }
3219
3220     if (ofport->bundle) {
3221         enable = enable && lacp_slave_may_enable(ofport->bundle->lacp, ofport);
3222         if (carrier_changed) {
3223             lacp_slave_carrier_changed(ofport->bundle->lacp, ofport);
3224         }
3225     }
3226
3227     if (ofport->may_enable != enable) {
3228         struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
3229
3230         if (ofproto->has_bundle_action) {
3231             ofproto->backer->need_revalidate = REV_PORT_TOGGLED;
3232         }
3233     }
3234
3235     ofport->may_enable = enable;
3236 }
3237
3238 static void
3239 port_wait(struct ofport_dpif *ofport)
3240 {
3241     if (ofport->cfm) {
3242         cfm_wait(ofport->cfm);
3243     }
3244
3245     if (ofport->bfd) {
3246         bfd_wait(ofport->bfd);
3247     }
3248 }
3249
3250 static int
3251 port_query_by_name(const struct ofproto *ofproto_, const char *devname,
3252                    struct ofproto_port *ofproto_port)
3253 {
3254     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3255     struct dpif_port dpif_port;
3256     int error;
3257
3258     if (sset_contains(&ofproto->ghost_ports, devname)) {
3259         const char *type = netdev_get_type_from_name(devname);
3260
3261         /* We may be called before ofproto->up.port_by_name is populated with
3262          * the appropriate ofport.  For this reason, we must get the name and
3263          * type from the netdev layer directly. */
3264         if (type) {
3265             const struct ofport *ofport;
3266
3267             ofport = shash_find_data(&ofproto->up.port_by_name, devname);
3268             ofproto_port->ofp_port = ofport ? ofport->ofp_port : OFPP_NONE;
3269             ofproto_port->name = xstrdup(devname);
3270             ofproto_port->type = xstrdup(type);
3271             return 0;
3272         }
3273         return ENODEV;
3274     }
3275
3276     if (!sset_contains(&ofproto->ports, devname)) {
3277         return ENODEV;
3278     }
3279     error = dpif_port_query_by_name(ofproto->backer->dpif,
3280                                     devname, &dpif_port);
3281     if (!error) {
3282         ofproto_port_from_dpif_port(ofproto, ofproto_port, &dpif_port);
3283     }
3284     return error;
3285 }
3286
3287 static int
3288 port_add(struct ofproto *ofproto_, struct netdev *netdev)
3289 {
3290     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3291     const char *dp_port_name = netdev_vport_get_dpif_port(netdev);
3292     const char *devname = netdev_get_name(netdev);
3293
3294     if (netdev_vport_is_patch(netdev)) {
3295         sset_add(&ofproto->ghost_ports, netdev_get_name(netdev));
3296         return 0;
3297     }
3298
3299     if (!dpif_port_exists(ofproto->backer->dpif, dp_port_name)) {
3300         uint32_t port_no = UINT32_MAX;
3301         int error;
3302
3303         error = dpif_port_add(ofproto->backer->dpif, netdev, &port_no);
3304         if (error) {
3305             return error;
3306         }
3307         if (netdev_get_tunnel_config(netdev)) {
3308             simap_put(&ofproto->backer->tnl_backers, dp_port_name, port_no);
3309         }
3310     }
3311
3312     if (netdev_get_tunnel_config(netdev)) {
3313         sset_add(&ofproto->ghost_ports, devname);
3314     } else {
3315         sset_add(&ofproto->ports, devname);
3316     }
3317     return 0;
3318 }
3319
3320 static int
3321 port_del(struct ofproto *ofproto_, uint16_t ofp_port)
3322 {
3323     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3324     struct ofport_dpif *ofport = get_ofp_port(ofproto, ofp_port);
3325     int error = 0;
3326
3327     if (!ofport) {
3328         return 0;
3329     }
3330
3331     sset_find_and_delete(&ofproto->ghost_ports,
3332                          netdev_get_name(ofport->up.netdev));
3333     ofproto->backer->need_revalidate = REV_RECONFIGURE;
3334     if (!ofport->tnl_port) {
3335         error = dpif_port_del(ofproto->backer->dpif, ofport->odp_port);
3336         if (!error) {
3337             /* The caller is going to close ofport->up.netdev.  If this is a
3338              * bonded port, then the bond is using that netdev, so remove it
3339              * from the bond.  The client will need to reconfigure everything
3340              * after deleting ports, so then the slave will get re-added. */
3341             bundle_remove(&ofport->up);
3342         }
3343     }
3344     return error;
3345 }
3346
3347 static int
3348 port_get_stats(const struct ofport *ofport_, struct netdev_stats *stats)
3349 {
3350     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
3351     int error;
3352
3353     push_all_stats();
3354
3355     error = netdev_get_stats(ofport->up.netdev, stats);
3356
3357     if (!error && ofport_->ofp_port == OFPP_LOCAL) {
3358         struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
3359
3360         /* ofproto->stats.tx_packets represents packets that we created
3361          * internally and sent to some port (e.g. packets sent with
3362          * send_packet()).  Account for them as if they had come from
3363          * OFPP_LOCAL and got forwarded. */
3364
3365         if (stats->rx_packets != UINT64_MAX) {
3366             stats->rx_packets += ofproto->stats.tx_packets;
3367         }
3368
3369         if (stats->rx_bytes != UINT64_MAX) {
3370             stats->rx_bytes += ofproto->stats.tx_bytes;
3371         }
3372
3373         /* ofproto->stats.rx_packets represents packets that were received on
3374          * some port and we processed internally and dropped (e.g. STP).
3375          * Account for them as if they had been forwarded to OFPP_LOCAL. */
3376
3377         if (stats->tx_packets != UINT64_MAX) {
3378             stats->tx_packets += ofproto->stats.rx_packets;
3379         }
3380
3381         if (stats->tx_bytes != UINT64_MAX) {
3382             stats->tx_bytes += ofproto->stats.rx_bytes;
3383         }
3384     }
3385
3386     return error;
3387 }
3388
3389 struct port_dump_state {
3390     uint32_t bucket;
3391     uint32_t offset;
3392     bool ghost;
3393
3394     struct ofproto_port port;
3395     bool has_port;
3396 };
3397
3398 static int
3399 port_dump_start(const struct ofproto *ofproto_ OVS_UNUSED, void **statep)
3400 {
3401     *statep = xzalloc(sizeof(struct port_dump_state));
3402     return 0;
3403 }
3404
3405 static int
3406 port_dump_next(const struct ofproto *ofproto_, void *state_,
3407                struct ofproto_port *port)
3408 {
3409     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3410     struct port_dump_state *state = state_;
3411     const struct sset *sset;
3412     struct sset_node *node;
3413
3414     if (state->has_port) {
3415         ofproto_port_destroy(&state->port);
3416         state->has_port = false;
3417     }
3418     sset = state->ghost ? &ofproto->ghost_ports : &ofproto->ports;
3419     while ((node = sset_at_position(sset, &state->bucket, &state->offset))) {
3420         int error;
3421
3422         error = port_query_by_name(ofproto_, node->name, &state->port);
3423         if (!error) {
3424             *port = state->port;
3425             state->has_port = true;
3426             return 0;
3427         } else if (error != ENODEV) {
3428             return error;
3429         }
3430     }
3431
3432     if (!state->ghost) {
3433         state->ghost = true;
3434         state->bucket = 0;
3435         state->offset = 0;
3436         return port_dump_next(ofproto_, state_, port);
3437     }
3438
3439     return EOF;
3440 }
3441
3442 static int
3443 port_dump_done(const struct ofproto *ofproto_ OVS_UNUSED, void *state_)
3444 {
3445     struct port_dump_state *state = state_;
3446
3447     if (state->has_port) {
3448         ofproto_port_destroy(&state->port);
3449     }
3450     free(state);
3451     return 0;
3452 }
3453
3454 static int
3455 port_poll(const struct ofproto *ofproto_, char **devnamep)
3456 {
3457     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3458
3459     if (ofproto->port_poll_errno) {
3460         int error = ofproto->port_poll_errno;
3461         ofproto->port_poll_errno = 0;
3462         return error;
3463     }
3464
3465     if (sset_is_empty(&ofproto->port_poll_set)) {
3466         return EAGAIN;
3467     }
3468
3469     *devnamep = sset_pop(&ofproto->port_poll_set);
3470     return 0;
3471 }
3472
3473 static void
3474 port_poll_wait(const struct ofproto *ofproto_)
3475 {
3476     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3477     dpif_port_poll_wait(ofproto->backer->dpif);
3478 }
3479
3480 static int
3481 port_is_lacp_current(const struct ofport *ofport_)
3482 {
3483     const struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
3484     return (ofport->bundle && ofport->bundle->lacp
3485             ? lacp_slave_is_current(ofport->bundle->lacp, ofport)
3486             : -1);
3487 }
3488 \f
3489 /* Upcall handling. */
3490
3491 /* Flow miss batching.
3492  *
3493  * Some dpifs implement operations faster when you hand them off in a batch.
3494  * To allow batching, "struct flow_miss" queues the dpif-related work needed
3495  * for a given flow.  Each "struct flow_miss" corresponds to sending one or
3496  * more packets, plus possibly installing the flow in the dpif.
3497  *
3498  * So far we only batch the operations that affect flow setup time the most.
3499  * It's possible to batch more than that, but the benefit might be minimal. */
3500 struct flow_miss {
3501     struct hmap_node hmap_node;
3502     struct ofproto_dpif *ofproto;
3503     struct flow flow;
3504     enum odp_key_fitness key_fitness;
3505     const struct nlattr *key;
3506     size_t key_len;
3507     struct initial_vals initial_vals;
3508     struct list packets;
3509     enum dpif_upcall_type upcall_type;
3510     uint32_t odp_in_port;
3511 };
3512
3513 struct flow_miss_op {
3514     struct dpif_op dpif_op;
3515     void *garbage;              /* Pointer to pass to free(), NULL if none. */
3516     uint64_t stub[1024 / 8];    /* Temporary buffer. */
3517 };
3518
3519 /* Sends an OFPT_PACKET_IN message for 'packet' of type OFPR_NO_MATCH to each
3520  * OpenFlow controller as necessary according to their individual
3521  * configurations. */
3522 static void
3523 send_packet_in_miss(struct ofproto_dpif *ofproto, const struct ofpbuf *packet,
3524                     const struct flow *flow)
3525 {
3526     struct ofputil_packet_in pin;
3527
3528     pin.packet = packet->data;
3529     pin.packet_len = packet->size;
3530     pin.reason = OFPR_NO_MATCH;
3531     pin.controller_id = 0;
3532
3533     pin.table_id = 0;
3534     pin.cookie = 0;
3535
3536     pin.send_len = 0;           /* not used for flow table misses */
3537
3538     flow_get_metadata(flow, &pin.fmd);
3539
3540     connmgr_send_packet_in(ofproto->up.connmgr, &pin);
3541 }
3542
3543 static enum slow_path_reason
3544 process_special(struct ofproto_dpif *ofproto, const struct flow *flow,
3545                 const struct ofport_dpif *ofport, const struct ofpbuf *packet)
3546 {
3547     if (!ofport) {
3548         return 0;
3549     } else if (ofport->cfm && cfm_should_process_flow(ofport->cfm, flow)) {
3550         if (packet) {
3551             cfm_process_heartbeat(ofport->cfm, packet);
3552         }
3553         return SLOW_CFM;
3554     } else if (ofport->bfd && bfd_should_process_flow(flow)) {
3555         if (packet) {
3556             bfd_process_packet(ofport->bfd, flow, packet);
3557         }
3558         return SLOW_BFD;
3559     } else if (ofport->bundle && ofport->bundle->lacp
3560                && flow->dl_type == htons(ETH_TYPE_LACP)) {
3561         if (packet) {
3562             lacp_process_packet(ofport->bundle->lacp, ofport, packet);
3563         }
3564         return SLOW_LACP;
3565     } else if (ofproto->stp && stp_should_process_flow(flow)) {
3566         if (packet) {
3567             stp_process_packet(ofport, packet);
3568         }
3569         return SLOW_STP;
3570     } else {
3571         return 0;
3572     }
3573 }
3574
3575 static struct flow_miss *
3576 flow_miss_find(struct hmap *todo, const struct ofproto_dpif *ofproto,
3577                const struct flow *flow, uint32_t hash)
3578 {
3579     struct flow_miss *miss;
3580
3581     HMAP_FOR_EACH_WITH_HASH (miss, hmap_node, hash, todo) {
3582         if (miss->ofproto == ofproto && flow_equal(&miss->flow, flow)) {
3583             return miss;
3584         }
3585     }
3586
3587     return NULL;
3588 }
3589
3590 /* Partially Initializes 'op' as an "execute" operation for 'miss' and
3591  * 'packet'.  The caller must initialize op->actions and op->actions_len.  If
3592  * 'miss' is associated with a subfacet the caller must also initialize the
3593  * returned op->subfacet, and if anything needs to be freed after processing
3594  * the op, the caller must initialize op->garbage also. */
3595 static void
3596 init_flow_miss_execute_op(struct flow_miss *miss, struct ofpbuf *packet,
3597                           struct flow_miss_op *op)
3598 {
3599     if (miss->flow.vlan_tci != miss->initial_vals.vlan_tci) {
3600         /* This packet was received on a VLAN splinter port.  We
3601          * added a VLAN to the packet to make the packet resemble
3602          * the flow, but the actions were composed assuming that
3603          * the packet contained no VLAN.  So, we must remove the
3604          * VLAN header from the packet before trying to execute the
3605          * actions. */
3606         eth_pop_vlan(packet);
3607     }
3608
3609     op->garbage = NULL;
3610     op->dpif_op.type = DPIF_OP_EXECUTE;
3611     op->dpif_op.u.execute.key = miss->key;
3612     op->dpif_op.u.execute.key_len = miss->key_len;
3613     op->dpif_op.u.execute.packet = packet;
3614 }
3615
3616 /* Helper for handle_flow_miss_without_facet() and
3617  * handle_flow_miss_with_facet(). */
3618 static void
3619 handle_flow_miss_common(struct rule_dpif *rule,
3620                         struct ofpbuf *packet, const struct flow *flow)
3621 {
3622     struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
3623
3624     ofproto->n_matches++;
3625
3626     if (rule->up.cr.priority == FAIL_OPEN_PRIORITY) {
3627         /*
3628          * Extra-special case for fail-open mode.
3629          *
3630          * We are in fail-open mode and the packet matched the fail-open
3631          * rule, but we are connected to a controller too.  We should send
3632          * the packet up to the controller in the hope that it will try to
3633          * set up a flow and thereby allow us to exit fail-open.
3634          *
3635          * See the top-level comment in fail-open.c for more information.
3636          */
3637         send_packet_in_miss(ofproto, packet, flow);
3638     }
3639 }
3640
3641 /* Figures out whether a flow that missed in 'ofproto', whose details are in
3642  * 'miss', is likely to be worth tracking in detail in userspace and (usually)
3643  * installing a datapath flow.  The answer is usually "yes" (a return value of
3644  * true).  However, for short flows the cost of bookkeeping is much higher than
3645  * the benefits, so when the datapath holds a large number of flows we impose
3646  * some heuristics to decide which flows are likely to be worth tracking. */
3647 static bool
3648 flow_miss_should_make_facet(struct ofproto_dpif *ofproto,
3649                             struct flow_miss *miss, uint32_t hash)
3650 {
3651     if (!ofproto->governor) {
3652         size_t n_subfacets;
3653
3654         n_subfacets = hmap_count(&ofproto->subfacets);
3655         if (n_subfacets * 2 <= ofproto->up.flow_eviction_threshold) {
3656             return true;
3657         }
3658
3659         ofproto->governor = governor_create(ofproto->up.name);
3660     }
3661
3662     return governor_should_install_flow(ofproto->governor, hash,
3663                                         list_size(&miss->packets));
3664 }
3665
3666 /* Handles 'miss', which matches 'rule', without creating a facet or subfacet
3667  * or creating any datapath flow.  May add an "execute" operation to 'ops' and
3668  * increment '*n_ops'. */
3669 static void
3670 handle_flow_miss_without_facet(struct flow_miss *miss,
3671                                struct rule_dpif *rule,
3672                                struct flow_miss_op *ops, size_t *n_ops)
3673 {
3674     struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
3675     long long int now = time_msec();
3676     struct action_xlate_ctx ctx;
3677     struct ofpbuf *packet;
3678
3679     LIST_FOR_EACH (packet, list_node, &miss->packets) {
3680         struct flow_miss_op *op = &ops[*n_ops];
3681         struct dpif_flow_stats stats;
3682         struct ofpbuf odp_actions;
3683
3684         COVERAGE_INC(facet_suppress);
3685
3686         handle_flow_miss_common(rule, packet, &miss->flow);
3687
3688         ofpbuf_use_stub(&odp_actions, op->stub, sizeof op->stub);
3689
3690         dpif_flow_stats_extract(&miss->flow, packet, now, &stats);
3691         rule_credit_stats(rule, &stats);
3692
3693         action_xlate_ctx_init(&ctx, ofproto, &miss->flow, &miss->initial_vals,
3694                               rule, stats.tcp_flags, packet);
3695         ctx.resubmit_stats = &stats;
3696         xlate_actions(&ctx, rule->up.ofpacts, rule->up.ofpacts_len,
3697                       &odp_actions);
3698
3699         if (odp_actions.size) {
3700             struct dpif_execute *execute = &op->dpif_op.u.execute;
3701
3702             init_flow_miss_execute_op(miss, packet, op);
3703             execute->actions = odp_actions.data;
3704             execute->actions_len = odp_actions.size;
3705             op->garbage = ofpbuf_get_uninit_pointer(&odp_actions);
3706
3707             (*n_ops)++;
3708         } else {
3709             ofpbuf_uninit(&odp_actions);
3710         }
3711     }
3712 }
3713
3714 /* Handles 'miss', which matches 'facet'.  May add any required datapath
3715  * operations to 'ops', incrementing '*n_ops' for each new op.
3716  *
3717  * All of the packets in 'miss' are considered to have arrived at time 'now'.
3718  * This is really important only for new facets: if we just called time_msec()
3719  * here, then the new subfacet or its packets could look (occasionally) as
3720  * though it was used some time after the facet was used.  That can make a
3721  * one-packet flow look like it has a nonzero duration, which looks odd in
3722  * e.g. NetFlow statistics. */
3723 static void
3724 handle_flow_miss_with_facet(struct flow_miss *miss, struct facet *facet,
3725                             long long int now,
3726                             struct flow_miss_op *ops, size_t *n_ops)
3727 {
3728     struct ofproto_dpif *ofproto = ofproto_dpif_cast(facet->rule->up.ofproto);
3729     enum subfacet_path want_path;
3730     struct subfacet *subfacet;
3731     struct ofpbuf *packet;
3732
3733     subfacet = subfacet_create(facet, miss, now);
3734
3735     LIST_FOR_EACH (packet, list_node, &miss->packets) {
3736         struct flow_miss_op *op = &ops[*n_ops];
3737         struct dpif_flow_stats stats;
3738         struct ofpbuf odp_actions;
3739
3740         handle_flow_miss_common(facet->rule, packet, &miss->flow);
3741
3742         ofpbuf_use_stub(&odp_actions, op->stub, sizeof op->stub);
3743         if (!subfacet->actions || subfacet->slow) {
3744             subfacet_make_actions(subfacet, packet, &odp_actions);
3745         }
3746
3747         dpif_flow_stats_extract(&facet->flow, packet, now, &stats);
3748         subfacet_update_stats(subfacet, &stats);
3749
3750         if (subfacet->actions_len) {
3751             struct dpif_execute *execute = &op->dpif_op.u.execute;
3752
3753             init_flow_miss_execute_op(miss, packet, op);
3754             if (!subfacet->slow) {
3755                 execute->actions = subfacet->actions;
3756                 execute->actions_len = subfacet->actions_len;
3757                 ofpbuf_uninit(&odp_actions);
3758             } else {
3759                 execute->actions = odp_actions.data;
3760                 execute->actions_len = odp_actions.size;
3761                 op->garbage = ofpbuf_get_uninit_pointer(&odp_actions);
3762             }
3763
3764             (*n_ops)++;
3765         } else {
3766             ofpbuf_uninit(&odp_actions);
3767         }
3768     }
3769
3770     want_path = subfacet_want_path(subfacet->slow);
3771     if (miss->upcall_type == DPIF_UC_MISS || subfacet->path != want_path) {
3772         struct flow_miss_op *op = &ops[(*n_ops)++];
3773         struct dpif_flow_put *put = &op->dpif_op.u.flow_put;
3774
3775         subfacet->path = want_path;
3776
3777         op->garbage = NULL;
3778         op->dpif_op.type = DPIF_OP_FLOW_PUT;
3779         put->flags = DPIF_FP_CREATE | DPIF_FP_MODIFY;
3780         put->key = miss->key;
3781         put->key_len = miss->key_len;
3782         if (want_path == SF_FAST_PATH) {
3783             put->actions = subfacet->actions;
3784             put->actions_len = subfacet->actions_len;
3785         } else {
3786             compose_slow_path(ofproto, &facet->flow, subfacet->slow,
3787                               op->stub, sizeof op->stub,
3788                               &put->actions, &put->actions_len);
3789         }
3790         put->stats = NULL;
3791     }
3792 }
3793
3794 /* Handles flow miss 'miss'.  May add any required datapath operations
3795  * to 'ops', incrementing '*n_ops' for each new op. */
3796 static void
3797 handle_flow_miss(struct flow_miss *miss, struct flow_miss_op *ops,
3798                  size_t *n_ops)
3799 {
3800     struct ofproto_dpif *ofproto = miss->ofproto;
3801     struct facet *facet;
3802     long long int now;
3803     uint32_t hash;
3804
3805     /* The caller must ensure that miss->hmap_node.hash contains
3806      * flow_hash(miss->flow, 0). */
3807     hash = miss->hmap_node.hash;
3808
3809     facet = facet_lookup_valid(ofproto, &miss->flow, hash);
3810     if (!facet) {
3811         struct rule_dpif *rule = rule_dpif_lookup(ofproto, &miss->flow);
3812
3813         if (!flow_miss_should_make_facet(ofproto, miss, hash)) {
3814             handle_flow_miss_without_facet(miss, rule, ops, n_ops);
3815             return;
3816         }
3817
3818         facet = facet_create(rule, &miss->flow, hash);
3819         now = facet->used;
3820     } else {
3821         now = time_msec();
3822     }
3823     handle_flow_miss_with_facet(miss, facet, now, ops, n_ops);
3824 }
3825
3826 static struct drop_key *
3827 drop_key_lookup(const struct dpif_backer *backer, const struct nlattr *key,
3828                 size_t key_len)
3829 {
3830     struct drop_key *drop_key;
3831
3832     HMAP_FOR_EACH_WITH_HASH (drop_key, hmap_node, hash_bytes(key, key_len, 0),
3833                              &backer->drop_keys) {
3834         if (drop_key->key_len == key_len
3835             && !memcmp(drop_key->key, key, key_len)) {
3836             return drop_key;
3837         }
3838     }
3839     return NULL;
3840 }
3841
3842 static void
3843 drop_key_clear(struct dpif_backer *backer)
3844 {
3845     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 15);
3846     struct drop_key *drop_key, *next;
3847
3848     HMAP_FOR_EACH_SAFE (drop_key, next, hmap_node, &backer->drop_keys) {
3849         int error;
3850
3851         error = dpif_flow_del(backer->dpif, drop_key->key, drop_key->key_len,
3852                               NULL);
3853         if (error && !VLOG_DROP_WARN(&rl)) {
3854             struct ds ds = DS_EMPTY_INITIALIZER;
3855             odp_flow_key_format(drop_key->key, drop_key->key_len, &ds);
3856             VLOG_WARN("Failed to delete drop key (%s) (%s)", strerror(error),
3857                       ds_cstr(&ds));
3858             ds_destroy(&ds);
3859         }
3860
3861         hmap_remove(&backer->drop_keys, &drop_key->hmap_node);
3862         free(drop_key->key);
3863         free(drop_key);
3864     }
3865 }
3866
3867 /* Given a datpath, packet, and flow metadata ('backer', 'packet', and 'key'
3868  * respectively), populates 'flow' with the result of odp_flow_key_to_flow().
3869  * Optionally, if nonnull, populates 'fitnessp' with the fitness of 'flow' as
3870  * returned by odp_flow_key_to_flow().  Also, optionally populates 'ofproto'
3871  * with the ofproto_dpif, and 'odp_in_port' with the datapath in_port, that
3872  * 'packet' ingressed.
3873  *
3874  * If 'ofproto' is nonnull, requires 'flow''s in_port to exist.  Otherwise sets
3875  * 'flow''s in_port to OFPP_NONE.
3876  *
3877  * This function does post-processing on data returned from
3878  * odp_flow_key_to_flow() to help make VLAN splinters transparent to the rest
3879  * of the upcall processing logic.  In particular, if the extracted in_port is
3880  * a VLAN splinter port, it replaces flow->in_port by the "real" port, sets
3881  * flow->vlan_tci correctly for the VLAN of the VLAN splinter port, and pushes
3882  * a VLAN header onto 'packet' (if it is nonnull).
3883  *
3884  * Optionally, if 'initial_vals' is nonnull, sets 'initial_vals->vlan_tci'
3885  * to the VLAN TCI with which the packet was really received, that is, the
3886  * actual VLAN TCI extracted by odp_flow_key_to_flow().  (This differs from
3887  * the value returned in flow->vlan_tci only for packets received on
3888  * VLAN splinters.)
3889  *
3890  * Similarly, this function also includes some logic to help with tunnels.  It
3891  * may modify 'flow' as necessary to make the tunneling implementation
3892  * transparent to the upcall processing logic.
3893  *
3894  * Returns 0 if successful, ENODEV if the parsed flow has no associated ofport,
3895  * or some other positive errno if there are other problems. */
3896 static int
3897 ofproto_receive(const struct dpif_backer *backer, struct ofpbuf *packet,
3898                 const struct nlattr *key, size_t key_len,
3899                 struct flow *flow, enum odp_key_fitness *fitnessp,
3900                 struct ofproto_dpif **ofproto, uint32_t *odp_in_port,
3901                 struct initial_vals *initial_vals)
3902 {
3903     const struct ofport_dpif *port;
3904     enum odp_key_fitness fitness;
3905     int error = ENODEV;
3906
3907     fitness = odp_flow_key_to_flow(key, key_len, flow);
3908     if (fitness == ODP_FIT_ERROR) {
3909         error = EINVAL;
3910         goto exit;
3911     }
3912
3913     if (initial_vals) {
3914         initial_vals->vlan_tci = flow->vlan_tci;
3915     }
3916
3917     if (odp_in_port) {
3918         *odp_in_port = flow->in_port;
3919     }
3920
3921     port = (tnl_port_should_receive(flow)
3922             ? ofport_dpif_cast(tnl_port_receive(flow))
3923             : odp_port_to_ofport(backer, flow->in_port));
3924     flow->in_port = port ? port->up.ofp_port : OFPP_NONE;
3925     if (!port) {
3926         goto exit;
3927     }
3928
3929     /* XXX: Since the tunnel module is not scoped per backer, for a tunnel port
3930      * it's theoretically possible that we'll receive an ofport belonging to an
3931      * entirely different datapath.  In practice, this can't happen because no
3932      * platforms has two separate datapaths which each support tunneling. */
3933     ovs_assert(ofproto_dpif_cast(port->up.ofproto)->backer == backer);
3934
3935     if (vsp_adjust_flow(ofproto_dpif_cast(port->up.ofproto), flow)) {
3936         if (packet) {
3937             /* Make the packet resemble the flow, so that it gets sent to
3938              * an OpenFlow controller properly, so that it looks correct
3939              * for sFlow, and so that flow_extract() will get the correct
3940              * vlan_tci if it is called on 'packet'.
3941              *
3942              * The allocated space inside 'packet' probably also contains
3943              * 'key', that is, both 'packet' and 'key' are probably part of
3944              * a struct dpif_upcall (see the large comment on that
3945              * structure definition), so pushing data on 'packet' is in
3946              * general not a good idea since it could overwrite 'key' or
3947              * free it as a side effect.  However, it's OK in this special
3948              * case because we know that 'packet' is inside a Netlink
3949              * attribute: pushing 4 bytes will just overwrite the 4-byte
3950              * "struct nlattr", which is fine since we don't need that
3951              * header anymore. */
3952             eth_push_vlan(packet, flow->vlan_tci);
3953         }
3954         /* We can't reproduce 'key' from 'flow'. */
3955         fitness = fitness == ODP_FIT_PERFECT ? ODP_FIT_TOO_MUCH : fitness;
3956     }
3957     error = 0;
3958
3959     if (ofproto) {
3960         *ofproto = ofproto_dpif_cast(port->up.ofproto);
3961     }
3962
3963 exit:
3964     if (fitnessp) {
3965         *fitnessp = fitness;
3966     }
3967     return error;
3968 }
3969
3970 static void
3971 handle_miss_upcalls(struct dpif_backer *backer, struct dpif_upcall *upcalls,
3972                     size_t n_upcalls)
3973 {
3974     struct dpif_upcall *upcall;
3975     struct flow_miss *miss;
3976     struct flow_miss misses[FLOW_MISS_MAX_BATCH];
3977     struct flow_miss_op flow_miss_ops[FLOW_MISS_MAX_BATCH * 2];
3978     struct dpif_op *dpif_ops[FLOW_MISS_MAX_BATCH * 2];
3979     struct hmap todo;
3980     int n_misses;
3981     size_t n_ops;
3982     size_t i;
3983
3984     if (!n_upcalls) {
3985         return;
3986     }
3987
3988     /* Construct the to-do list.
3989      *
3990      * This just amounts to extracting the flow from each packet and sticking
3991      * the packets that have the same flow in the same "flow_miss" structure so
3992      * that we can process them together. */
3993     hmap_init(&todo);
3994     n_misses = 0;
3995     for (upcall = upcalls; upcall < &upcalls[n_upcalls]; upcall++) {
3996         struct flow_miss *miss = &misses[n_misses];
3997         struct flow_miss *existing_miss;
3998         struct ofproto_dpif *ofproto;
3999         uint32_t odp_in_port;
4000         struct flow flow;
4001         uint32_t hash;
4002         int error;
4003
4004         error = ofproto_receive(backer, upcall->packet, upcall->key,
4005                                 upcall->key_len, &flow, &miss->key_fitness,
4006                                 &ofproto, &odp_in_port, &miss->initial_vals);
4007         if (error == ENODEV) {
4008             struct drop_key *drop_key;
4009
4010             /* Received packet on port for which we couldn't associate
4011              * an ofproto.  This can happen if a port is removed while
4012              * traffic is being received.  Print a rate-limited message
4013              * in case it happens frequently.  Install a drop flow so
4014              * that future packets of the flow are inexpensively dropped
4015              * in the kernel. */
4016             VLOG_INFO_RL(&rl, "received packet on unassociated port %"PRIu32,
4017                          flow.in_port);
4018
4019             drop_key = drop_key_lookup(backer, upcall->key, upcall->key_len);
4020             if (!drop_key) {
4021                 drop_key = xmalloc(sizeof *drop_key);
4022                 drop_key->key = xmemdup(upcall->key, upcall->key_len);
4023                 drop_key->key_len = upcall->key_len;
4024
4025                 hmap_insert(&backer->drop_keys, &drop_key->hmap_node,
4026                             hash_bytes(drop_key->key, drop_key->key_len, 0));
4027                 dpif_flow_put(backer->dpif, DPIF_FP_CREATE | DPIF_FP_MODIFY,
4028                               drop_key->key, drop_key->key_len, NULL, 0, NULL);
4029             }
4030             continue;
4031         }
4032         if (error) {
4033             continue;
4034         }
4035
4036         ofproto->n_missed++;
4037         flow_extract(upcall->packet, flow.skb_priority, flow.skb_mark,
4038                      &flow.tunnel, flow.in_port, &miss->flow);
4039
4040         /* Add other packets to a to-do list. */
4041         hash = flow_hash(&miss->flow, 0);
4042         existing_miss = flow_miss_find(&todo, ofproto, &miss->flow, hash);
4043         if (!existing_miss) {
4044             hmap_insert(&todo, &miss->hmap_node, hash);
4045             miss->ofproto = ofproto;
4046             miss->key = upcall->key;
4047             miss->key_len = upcall->key_len;
4048             miss->upcall_type = upcall->type;
4049             miss->odp_in_port = odp_in_port;
4050             list_init(&miss->packets);
4051
4052             n_misses++;
4053         } else {
4054             miss = existing_miss;
4055         }
4056         list_push_back(&miss->packets, &upcall->packet->list_node);
4057     }
4058
4059     /* Process each element in the to-do list, constructing the set of
4060      * operations to batch. */
4061     n_ops = 0;
4062     HMAP_FOR_EACH (miss, hmap_node, &todo) {
4063         handle_flow_miss(miss, flow_miss_ops, &n_ops);
4064     }
4065     ovs_assert(n_ops <= ARRAY_SIZE(flow_miss_ops));
4066
4067     /* Execute batch. */
4068     for (i = 0; i < n_ops; i++) {
4069         dpif_ops[i] = &flow_miss_ops[i].dpif_op;
4070     }
4071     dpif_operate(backer->dpif, dpif_ops, n_ops);
4072
4073     /* Free memory. */
4074     for (i = 0; i < n_ops; i++) {
4075         free(flow_miss_ops[i].garbage);
4076     }
4077     hmap_destroy(&todo);
4078 }
4079
4080 static enum { SFLOW_UPCALL, MISS_UPCALL, BAD_UPCALL, FLOW_SAMPLE_UPCALL,
4081               IPFIX_UPCALL }
4082 classify_upcall(const struct dpif_upcall *upcall)
4083 {
4084     size_t userdata_len;
4085     union user_action_cookie cookie;
4086
4087     /* First look at the upcall type. */
4088     switch (upcall->type) {
4089     case DPIF_UC_ACTION:
4090         break;
4091
4092     case DPIF_UC_MISS:
4093         return MISS_UPCALL;
4094
4095     case DPIF_N_UC_TYPES:
4096     default:
4097         VLOG_WARN_RL(&rl, "upcall has unexpected type %"PRIu32, upcall->type);
4098         return BAD_UPCALL;
4099     }
4100
4101     /* "action" upcalls need a closer look. */
4102     if (!upcall->userdata) {
4103         VLOG_WARN_RL(&rl, "action upcall missing cookie");
4104         return BAD_UPCALL;
4105     }
4106     userdata_len = nl_attr_get_size(upcall->userdata);
4107     if (userdata_len < sizeof cookie.type
4108         || userdata_len > sizeof cookie) {
4109         VLOG_WARN_RL(&rl, "action upcall cookie has unexpected size %zu",
4110                      userdata_len);
4111         return BAD_UPCALL;
4112     }
4113     memset(&cookie, 0, sizeof cookie);
4114     memcpy(&cookie, nl_attr_get(upcall->userdata), userdata_len);
4115     if (userdata_len == sizeof cookie.sflow
4116         && cookie.type == USER_ACTION_COOKIE_SFLOW) {
4117         return SFLOW_UPCALL;
4118     } else if (userdata_len == sizeof cookie.slow_path
4119                && cookie.type == USER_ACTION_COOKIE_SLOW_PATH) {
4120         return MISS_UPCALL;
4121     } else if (userdata_len == sizeof cookie.flow_sample
4122                && cookie.type == USER_ACTION_COOKIE_FLOW_SAMPLE) {
4123         return FLOW_SAMPLE_UPCALL;
4124     } else if (userdata_len == sizeof cookie.ipfix
4125                && cookie.type == USER_ACTION_COOKIE_IPFIX) {
4126         return IPFIX_UPCALL;
4127     } else {
4128         VLOG_WARN_RL(&rl, "invalid user cookie of type %"PRIu16
4129                      " and size %zu", cookie.type, userdata_len);
4130         return BAD_UPCALL;
4131     }
4132 }
4133
4134 static void
4135 handle_sflow_upcall(struct dpif_backer *backer,
4136                     const struct dpif_upcall *upcall)
4137 {
4138     struct ofproto_dpif *ofproto;
4139     union user_action_cookie cookie;
4140     struct flow flow;
4141     uint32_t odp_in_port;
4142
4143     if (ofproto_receive(backer, upcall->packet, upcall->key, upcall->key_len,
4144                         &flow, NULL, &ofproto, &odp_in_port, NULL)
4145         || !ofproto->sflow) {
4146         return;
4147     }
4148
4149     memset(&cookie, 0, sizeof cookie);
4150     memcpy(&cookie, nl_attr_get(upcall->userdata), sizeof cookie.sflow);
4151     dpif_sflow_received(ofproto->sflow, upcall->packet, &flow,
4152                         odp_in_port, &cookie);
4153 }
4154
4155 static void
4156 handle_flow_sample_upcall(struct dpif_backer *backer,
4157                           const struct dpif_upcall *upcall)
4158 {
4159     struct ofproto_dpif *ofproto;
4160     union user_action_cookie cookie;
4161     struct flow flow;
4162
4163     if (ofproto_receive(backer, upcall->packet, upcall->key, upcall->key_len,
4164                         &flow, NULL, &ofproto, NULL, NULL)
4165         || !ofproto->ipfix) {
4166         return;
4167     }
4168
4169     memset(&cookie, 0, sizeof cookie);
4170     memcpy(&cookie, nl_attr_get(upcall->userdata), sizeof cookie.flow_sample);
4171
4172     /* The flow reflects exactly the contents of the packet.  Sample
4173      * the packet using it. */
4174     dpif_ipfix_flow_sample(ofproto->ipfix, upcall->packet, &flow,
4175                            cookie.flow_sample.collector_set_id,
4176                            cookie.flow_sample.probability,
4177                            cookie.flow_sample.obs_domain_id,
4178                            cookie.flow_sample.obs_point_id);
4179 }
4180
4181 static void
4182 handle_ipfix_upcall(struct dpif_backer *backer,
4183                     const struct dpif_upcall *upcall)
4184 {
4185     struct ofproto_dpif *ofproto;
4186     struct flow flow;
4187
4188     if (ofproto_receive(backer, upcall->packet, upcall->key, upcall->key_len,
4189                         &flow, NULL, &ofproto, NULL, NULL)
4190         || !ofproto->ipfix) {
4191         return;
4192     }
4193
4194     /* The flow reflects exactly the contents of the packet.  Sample
4195      * the packet using it. */
4196     dpif_ipfix_bridge_sample(ofproto->ipfix, upcall->packet, &flow);
4197 }
4198
4199 static int
4200 handle_upcalls(struct dpif_backer *backer, unsigned int max_batch)
4201 {
4202     struct dpif_upcall misses[FLOW_MISS_MAX_BATCH];
4203     struct ofpbuf miss_bufs[FLOW_MISS_MAX_BATCH];
4204     uint64_t miss_buf_stubs[FLOW_MISS_MAX_BATCH][4096 / 8];
4205     int n_processed;
4206     int n_misses;
4207     int i;
4208
4209     ovs_assert(max_batch <= FLOW_MISS_MAX_BATCH);
4210
4211     n_misses = 0;
4212     for (n_processed = 0; n_processed < max_batch; n_processed++) {
4213         struct dpif_upcall *upcall = &misses[n_misses];
4214         struct ofpbuf *buf = &miss_bufs[n_misses];
4215         int error;
4216
4217         ofpbuf_use_stub(buf, miss_buf_stubs[n_misses],
4218                         sizeof miss_buf_stubs[n_misses]);
4219         error = dpif_recv(backer->dpif, upcall, buf);
4220         if (error) {
4221             ofpbuf_uninit(buf);
4222             break;
4223         }
4224
4225         switch (classify_upcall(upcall)) {
4226         case MISS_UPCALL:
4227             /* Handle it later. */
4228             n_misses++;
4229             break;
4230
4231         case SFLOW_UPCALL:
4232             handle_sflow_upcall(backer, upcall);
4233             ofpbuf_uninit(buf);
4234             break;
4235
4236         case FLOW_SAMPLE_UPCALL:
4237             handle_flow_sample_upcall(backer, upcall);
4238             ofpbuf_uninit(buf);
4239             break;
4240
4241         case IPFIX_UPCALL:
4242             handle_ipfix_upcall(backer, upcall);
4243             ofpbuf_uninit(buf);
4244             break;
4245
4246         case BAD_UPCALL:
4247             ofpbuf_uninit(buf);
4248             break;
4249         }
4250     }
4251
4252     /* Handle deferred MISS_UPCALL processing. */
4253     handle_miss_upcalls(backer, misses, n_misses);
4254     for (i = 0; i < n_misses; i++) {
4255         ofpbuf_uninit(&miss_bufs[i]);
4256     }
4257
4258     return n_processed;
4259 }
4260 \f
4261 /* Flow expiration. */
4262
4263 static int subfacet_max_idle(const struct ofproto_dpif *);
4264 static void update_stats(struct dpif_backer *);
4265 static void rule_expire(struct rule_dpif *);
4266 static void expire_subfacets(struct ofproto_dpif *, int dp_max_idle);
4267
4268 /* This function is called periodically by run().  Its job is to collect
4269  * updates for the flows that have been installed into the datapath, most
4270  * importantly when they last were used, and then use that information to
4271  * expire flows that have not been used recently.
4272  *
4273  * Returns the number of milliseconds after which it should be called again. */
4274 static int
4275 expire(struct dpif_backer *backer)
4276 {
4277     struct ofproto_dpif *ofproto;
4278     int max_idle = INT32_MAX;
4279
4280     /* Periodically clear out the drop keys in an effort to keep them
4281      * relatively few. */
4282     drop_key_clear(backer);
4283
4284     /* Update stats for each flow in the backer. */
4285     update_stats(backer);
4286
4287     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
4288         struct rule *rule, *next_rule;
4289         int dp_max_idle;
4290
4291         if (ofproto->backer != backer) {
4292             continue;
4293         }
4294
4295         /* Keep track of the max number of flows per ofproto_dpif. */
4296         update_max_subfacet_count(ofproto);
4297
4298         /* Expire subfacets that have been idle too long. */
4299         dp_max_idle = subfacet_max_idle(ofproto);
4300         expire_subfacets(ofproto, dp_max_idle);
4301
4302         max_idle = MIN(max_idle, dp_max_idle);
4303
4304         /* Expire OpenFlow flows whose idle_timeout or hard_timeout
4305          * has passed. */
4306         LIST_FOR_EACH_SAFE (rule, next_rule, expirable,
4307                             &ofproto->up.expirable) {
4308             rule_expire(rule_dpif_cast(rule));
4309         }
4310
4311         /* All outstanding data in existing flows has been accounted, so it's a
4312          * good time to do bond rebalancing. */
4313         if (ofproto->has_bonded_bundles) {
4314             struct ofbundle *bundle;
4315
4316             HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
4317                 if (bundle->bond) {
4318                     bond_rebalance(bundle->bond, &backer->revalidate_set);
4319                 }
4320             }
4321         }
4322     }
4323
4324     return MIN(max_idle, 1000);
4325 }
4326
4327 /* Updates flow table statistics given that the datapath just reported 'stats'
4328  * as 'subfacet''s statistics. */
4329 static void
4330 update_subfacet_stats(struct subfacet *subfacet,
4331                       const struct dpif_flow_stats *stats)
4332 {
4333     struct facet *facet = subfacet->facet;
4334
4335     if (stats->n_packets >= subfacet->dp_packet_count) {
4336         uint64_t extra = stats->n_packets - subfacet->dp_packet_count;
4337         facet->packet_count += extra;
4338     } else {
4339         VLOG_WARN_RL(&rl, "unexpected packet count from the datapath");
4340     }
4341
4342     if (stats->n_bytes >= subfacet->dp_byte_count) {
4343         facet->byte_count += stats->n_bytes - subfacet->dp_byte_count;
4344     } else {
4345         VLOG_WARN_RL(&rl, "unexpected byte count from datapath");
4346     }
4347
4348     subfacet->dp_packet_count = stats->n_packets;
4349     subfacet->dp_byte_count = stats->n_bytes;
4350
4351     facet->tcp_flags |= stats->tcp_flags;
4352
4353     subfacet_update_time(subfacet, stats->used);
4354     if (facet->accounted_bytes < facet->byte_count) {
4355         facet_learn(facet);
4356         facet_account(facet);
4357         facet->accounted_bytes = facet->byte_count;
4358     }
4359 }
4360
4361 /* 'key' with length 'key_len' bytes is a flow in 'dpif' that we know nothing
4362  * about, or a flow that shouldn't be installed but was anyway.  Delete it. */
4363 static void
4364 delete_unexpected_flow(struct ofproto_dpif *ofproto,
4365                        const struct nlattr *key, size_t key_len)
4366 {
4367     if (!VLOG_DROP_WARN(&rl)) {
4368         struct ds s;
4369
4370         ds_init(&s);
4371         odp_flow_key_format(key, key_len, &s);
4372         VLOG_WARN("unexpected flow on %s: %s", ofproto->up.name, ds_cstr(&s));
4373         ds_destroy(&s);
4374     }
4375
4376     COVERAGE_INC(facet_unexpected);
4377     dpif_flow_del(ofproto->backer->dpif, key, key_len, NULL);
4378 }
4379
4380 /* Update 'packet_count', 'byte_count', and 'used' members of installed facets.
4381  *
4382  * This function also pushes statistics updates to rules which each facet
4383  * resubmits into.  Generally these statistics will be accurate.  However, if a
4384  * facet changes the rule it resubmits into at some time in between
4385  * update_stats() runs, it is possible that statistics accrued to the
4386  * old rule will be incorrectly attributed to the new rule.  This could be
4387  * avoided by calling update_stats() whenever rules are created or
4388  * deleted.  However, the performance impact of making so many calls to the
4389  * datapath do not justify the benefit of having perfectly accurate statistics.
4390  *
4391  * In addition, this function maintains per ofproto flow hit counts. The patch
4392  * port is not treated specially. e.g. A packet ingress from br0 patched into
4393  * br1 will increase the hit count of br0 by 1, however, does not affect
4394  * the hit or miss counts of br1.
4395  */
4396 static void
4397 update_stats(struct dpif_backer *backer)
4398 {
4399     const struct dpif_flow_stats *stats;
4400     struct dpif_flow_dump dump;
4401     const struct nlattr *key;
4402     struct ofproto_dpif *ofproto;
4403     size_t key_len;
4404
4405     dpif_flow_dump_start(&dump, backer->dpif);
4406     while (dpif_flow_dump_next(&dump, &key, &key_len, NULL, NULL, &stats)) {
4407         struct flow flow;
4408         struct subfacet *subfacet;
4409         struct ofport_dpif *ofport;
4410         uint32_t key_hash;
4411
4412         if (ofproto_receive(backer, NULL, key, key_len, &flow, NULL, &ofproto,
4413                             NULL, NULL)) {
4414             continue;
4415         }
4416
4417         ofproto->total_subfacet_count += hmap_count(&ofproto->subfacets);
4418         ofproto->n_update_stats++;
4419
4420         ofport = get_ofp_port(ofproto, flow.in_port);
4421         if (ofport && ofport->tnl_port) {
4422             netdev_vport_inc_rx(ofport->up.netdev, stats);
4423         }
4424
4425         key_hash = odp_flow_key_hash(key, key_len);
4426         subfacet = subfacet_find(ofproto, key, key_len, key_hash);
4427         switch (subfacet ? subfacet->path : SF_NOT_INSTALLED) {
4428         case SF_FAST_PATH:
4429             /* Update ofproto_dpif's hit count. */
4430             if (stats->n_packets > subfacet->dp_packet_count) {
4431                 uint64_t delta = stats->n_packets - subfacet->dp_packet_count;
4432                 dpif_stats_update_hit_count(ofproto, delta);
4433             }
4434
4435             update_subfacet_stats(subfacet, stats);
4436             break;
4437
4438         case SF_SLOW_PATH:
4439             /* Stats are updated per-packet. */
4440             break;
4441
4442         case SF_NOT_INSTALLED:
4443         default:
4444             delete_unexpected_flow(ofproto, key, key_len);
4445             break;
4446         }
4447         run_fast_rl();
4448     }
4449     dpif_flow_dump_done(&dump);
4450
4451     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
4452         update_moving_averages(ofproto);
4453     }
4454
4455 }
4456
4457 /* Calculates and returns the number of milliseconds of idle time after which
4458  * subfacets should expire from the datapath.  When a subfacet expires, we fold
4459  * its statistics into its facet, and when a facet's last subfacet expires, we
4460  * fold its statistic into its rule. */
4461 static int
4462 subfacet_max_idle(const struct ofproto_dpif *ofproto)
4463 {
4464     /*
4465      * Idle time histogram.
4466      *
4467      * Most of the time a switch has a relatively small number of subfacets.
4468      * When this is the case we might as well keep statistics for all of them
4469      * in userspace and to cache them in the kernel datapath for performance as
4470      * well.
4471      *
4472      * As the number of subfacets increases, the memory required to maintain
4473      * statistics about them in userspace and in the kernel becomes
4474      * significant.  However, with a large number of subfacets it is likely
4475      * that only a few of them are "heavy hitters" that consume a large amount
4476      * of bandwidth.  At this point, only heavy hitters are worth caching in
4477      * the kernel and maintaining in userspaces; other subfacets we can
4478      * discard.
4479      *
4480      * The technique used to compute the idle time is to build a histogram with
4481      * N_BUCKETS buckets whose width is BUCKET_WIDTH msecs each.  Each subfacet
4482      * that is installed in the kernel gets dropped in the appropriate bucket.
4483      * After the histogram has been built, we compute the cutoff so that only
4484      * the most-recently-used 1% of subfacets (but at least
4485      * ofproto->up.flow_eviction_threshold flows) are kept cached.  At least
4486      * the most-recently-used bucket of subfacets is kept, so actually an
4487      * arbitrary number of subfacets can be kept in any given expiration run
4488      * (though the next run will delete most of those unless they receive
4489      * additional data).
4490      *
4491      * This requires a second pass through the subfacets, in addition to the
4492      * pass made by update_stats(), because the former function never looks at
4493      * uninstallable subfacets.
4494      */
4495     enum { BUCKET_WIDTH = ROUND_UP(100, TIME_UPDATE_INTERVAL) };
4496     enum { N_BUCKETS = 5000 / BUCKET_WIDTH };
4497     int buckets[N_BUCKETS] = { 0 };
4498     int total, subtotal, bucket;
4499     struct subfacet *subfacet;
4500     long long int now;
4501     int i;
4502
4503     total = hmap_count(&ofproto->subfacets);
4504     if (total <= ofproto->up.flow_eviction_threshold) {
4505         return N_BUCKETS * BUCKET_WIDTH;
4506     }
4507
4508     /* Build histogram. */
4509     now = time_msec();
4510     HMAP_FOR_EACH (subfacet, hmap_node, &ofproto->subfacets) {
4511         long long int idle = now - subfacet->used;
4512         int bucket = (idle <= 0 ? 0
4513                       : idle >= BUCKET_WIDTH * N_BUCKETS ? N_BUCKETS - 1
4514                       : (unsigned int) idle / BUCKET_WIDTH);
4515         buckets[bucket]++;
4516     }
4517
4518     /* Find the first bucket whose flows should be expired. */
4519     subtotal = bucket = 0;
4520     do {
4521         subtotal += buckets[bucket++];
4522     } while (bucket < N_BUCKETS &&
4523              subtotal < MAX(ofproto->up.flow_eviction_threshold, total / 100));
4524
4525     if (VLOG_IS_DBG_ENABLED()) {
4526         struct ds s;
4527
4528         ds_init(&s);
4529         ds_put_cstr(&s, "keep");
4530         for (i = 0; i < N_BUCKETS; i++) {
4531             if (i == bucket) {
4532                 ds_put_cstr(&s, ", drop");
4533             }
4534             if (buckets[i]) {
4535                 ds_put_format(&s, " %d:%d", i * BUCKET_WIDTH, buckets[i]);
4536             }
4537         }
4538         VLOG_INFO("%s: %s (msec:count)", ofproto->up.name, ds_cstr(&s));
4539         ds_destroy(&s);
4540     }
4541
4542     return bucket * BUCKET_WIDTH;
4543 }
4544
4545 static void
4546 expire_subfacets(struct ofproto_dpif *ofproto, int dp_max_idle)
4547 {
4548     /* Cutoff time for most flows. */
4549     long long int normal_cutoff = time_msec() - dp_max_idle;
4550
4551     /* We really want to keep flows for special protocols around, so use a more
4552      * conservative cutoff. */
4553     long long int special_cutoff = time_msec() - 10000;
4554
4555     struct subfacet *subfacet, *next_subfacet;
4556     struct subfacet *batch[SUBFACET_DESTROY_MAX_BATCH];
4557     int n_batch;
4558
4559     n_batch = 0;
4560     HMAP_FOR_EACH_SAFE (subfacet, next_subfacet, hmap_node,
4561                         &ofproto->subfacets) {
4562         long long int cutoff;
4563
4564         cutoff = (subfacet->slow & (SLOW_CFM | SLOW_BFD | SLOW_LACP | SLOW_STP)
4565                   ? special_cutoff
4566                   : normal_cutoff);
4567         if (subfacet->used < cutoff) {
4568             if (subfacet->path != SF_NOT_INSTALLED) {
4569                 batch[n_batch++] = subfacet;
4570                 if (n_batch >= SUBFACET_DESTROY_MAX_BATCH) {
4571                     subfacet_destroy_batch(ofproto, batch, n_batch);
4572                     n_batch = 0;
4573                 }
4574             } else {
4575                 subfacet_destroy(subfacet);
4576             }
4577         }
4578     }
4579
4580     if (n_batch > 0) {
4581         subfacet_destroy_batch(ofproto, batch, n_batch);
4582     }
4583 }
4584
4585 /* If 'rule' is an OpenFlow rule, that has expired according to OpenFlow rules,
4586  * then delete it entirely. */
4587 static void
4588 rule_expire(struct rule_dpif *rule)
4589 {
4590     struct facet *facet, *next_facet;
4591     long long int now;
4592     uint8_t reason;
4593
4594     if (rule->up.pending) {
4595         /* We'll have to expire it later. */
4596         return;
4597     }
4598
4599     /* Has 'rule' expired? */
4600     now = time_msec();
4601     if (rule->up.hard_timeout
4602         && now > rule->up.modified + rule->up.hard_timeout * 1000) {
4603         reason = OFPRR_HARD_TIMEOUT;
4604     } else if (rule->up.idle_timeout
4605                && now > rule->up.used + rule->up.idle_timeout * 1000) {
4606         reason = OFPRR_IDLE_TIMEOUT;
4607     } else {
4608         return;
4609     }
4610
4611     COVERAGE_INC(ofproto_dpif_expired);
4612
4613     /* Update stats.  (This is a no-op if the rule expired due to an idle
4614      * timeout, because that only happens when the rule has no facets left.) */
4615     LIST_FOR_EACH_SAFE (facet, next_facet, list_node, &rule->facets) {
4616         facet_remove(facet);
4617     }
4618
4619     /* Get rid of the rule. */
4620     ofproto_rule_expire(&rule->up, reason);
4621 }
4622 \f
4623 /* Facets. */
4624
4625 /* Creates and returns a new facet owned by 'rule', given a 'flow'.
4626  *
4627  * The caller must already have determined that no facet with an identical
4628  * 'flow' exists in 'ofproto' and that 'flow' is the best match for 'rule' in
4629  * the ofproto's classifier table.
4630  *
4631  * 'hash' must be the return value of flow_hash(flow, 0).
4632  *
4633  * The facet will initially have no subfacets.  The caller should create (at
4634  * least) one subfacet with subfacet_create(). */
4635 static struct facet *
4636 facet_create(struct rule_dpif *rule, const struct flow *flow, uint32_t hash)
4637 {
4638     struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
4639     struct facet *facet;
4640
4641     facet = xzalloc(sizeof *facet);
4642     facet->used = time_msec();
4643     hmap_insert(&ofproto->facets, &facet->hmap_node, hash);
4644     list_push_back(&rule->facets, &facet->list_node);
4645     facet->rule = rule;
4646     facet->flow = *flow;
4647     list_init(&facet->subfacets);
4648     netflow_flow_init(&facet->nf_flow);
4649     netflow_flow_update_time(ofproto->netflow, &facet->nf_flow, facet->used);
4650
4651     facet->learn_rl = time_msec() + 500;
4652
4653     return facet;
4654 }
4655
4656 static void
4657 facet_free(struct facet *facet)
4658 {
4659     free(facet);
4660 }
4661
4662 /* Executes, within 'ofproto', the 'n_actions' actions in 'actions' on
4663  * 'packet', which arrived on 'in_port'. */
4664 static bool
4665 execute_odp_actions(struct ofproto_dpif *ofproto, const struct flow *flow,
4666                     const struct nlattr *odp_actions, size_t actions_len,
4667                     struct ofpbuf *packet)
4668 {
4669     struct odputil_keybuf keybuf;
4670     struct ofpbuf key;
4671     int error;
4672
4673     ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
4674     odp_flow_key_from_flow(&key, flow,
4675                            ofp_port_to_odp_port(ofproto, flow->in_port));
4676
4677     error = dpif_execute(ofproto->backer->dpif, key.data, key.size,
4678                          odp_actions, actions_len, packet);
4679     return !error;
4680 }
4681
4682 /* Remove 'facet' from 'ofproto' and free up the associated memory:
4683  *
4684  *   - If 'facet' was installed in the datapath, uninstalls it and updates its
4685  *     rule's statistics, via subfacet_uninstall().
4686  *
4687  *   - Removes 'facet' from its rule and from ofproto->facets.
4688  */
4689 static void
4690 facet_remove(struct facet *facet)
4691 {
4692     struct ofproto_dpif *ofproto = ofproto_dpif_cast(facet->rule->up.ofproto);
4693     struct subfacet *subfacet, *next_subfacet;
4694
4695     ovs_assert(!list_is_empty(&facet->subfacets));
4696
4697     /* First uninstall all of the subfacets to get final statistics. */
4698     LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
4699         subfacet_uninstall(subfacet);
4700     }
4701
4702     /* Flush the final stats to the rule.
4703      *
4704      * This might require us to have at least one subfacet around so that we
4705      * can use its actions for accounting in facet_account(), which is why we
4706      * have uninstalled but not yet destroyed the subfacets. */
4707     facet_flush_stats(facet);
4708
4709     /* Now we're really all done so destroy everything. */
4710     LIST_FOR_EACH_SAFE (subfacet, next_subfacet, list_node,
4711                         &facet->subfacets) {
4712         subfacet_destroy__(subfacet);
4713     }
4714     hmap_remove(&ofproto->facets, &facet->hmap_node);
4715     list_remove(&facet->list_node);
4716     facet_free(facet);
4717 }
4718
4719 /* Feed information from 'facet' back into the learning table to keep it in
4720  * sync with what is actually flowing through the datapath. */
4721 static void
4722 facet_learn(struct facet *facet)
4723 {
4724     struct ofproto_dpif *ofproto = ofproto_dpif_cast(facet->rule->up.ofproto);
4725     struct subfacet *subfacet= CONTAINER_OF(list_front(&facet->subfacets),
4726                                             struct subfacet, list_node);
4727     long long int now = time_msec();
4728     struct action_xlate_ctx ctx;
4729
4730     if (!facet->has_fin_timeout && now < facet->learn_rl) {
4731         return;
4732     }
4733
4734     facet->learn_rl = now + 500;
4735
4736     if (!facet->has_learn
4737         && !facet->has_normal
4738         && (!facet->has_fin_timeout
4739             || !(facet->tcp_flags & (TCP_FIN | TCP_RST)))) {
4740         return;
4741     }
4742
4743     action_xlate_ctx_init(&ctx, ofproto, &facet->flow,
4744                           &subfacet->initial_vals,
4745                           facet->rule, facet->tcp_flags, NULL);
4746     ctx.may_learn = true;
4747     xlate_actions_for_side_effects(&ctx, facet->rule->up.ofpacts,
4748                                    facet->rule->up.ofpacts_len);
4749 }
4750
4751 static void
4752 facet_account(struct facet *facet)
4753 {
4754     struct ofproto_dpif *ofproto = ofproto_dpif_cast(facet->rule->up.ofproto);
4755     struct subfacet *subfacet = facet_get_subfacet(facet);
4756     const struct nlattr *a;
4757     unsigned int left;
4758     ovs_be16 vlan_tci;
4759     uint64_t n_bytes;
4760
4761     if (!facet->has_normal || !ofproto->has_bonded_bundles) {
4762         return;
4763     }
4764     n_bytes = facet->byte_count - facet->accounted_bytes;
4765
4766     /* This loop feeds byte counters to bond_account() for rebalancing to use
4767      * as a basis.  We also need to track the actual VLAN on which the packet
4768      * is going to be sent to ensure that it matches the one passed to
4769      * bond_choose_output_slave().  (Otherwise, we will account to the wrong
4770      * hash bucket.)
4771      *
4772      * We use the actions from an arbitrary subfacet because they should all
4773      * be equally valid for our purpose. */
4774     vlan_tci = facet->flow.vlan_tci;
4775     NL_ATTR_FOR_EACH_UNSAFE (a, left,
4776                              subfacet->actions, subfacet->actions_len) {
4777         const struct ovs_action_push_vlan *vlan;
4778         struct ofport_dpif *port;
4779
4780         switch (nl_attr_type(a)) {
4781         case OVS_ACTION_ATTR_OUTPUT:
4782             port = get_odp_port(ofproto, nl_attr_get_u32(a));
4783             if (port && port->bundle && port->bundle->bond) {
4784                 bond_account(port->bundle->bond, &facet->flow,
4785                              vlan_tci_to_vid(vlan_tci), n_bytes);
4786             }
4787             break;
4788
4789         case OVS_ACTION_ATTR_POP_VLAN:
4790             vlan_tci = htons(0);
4791             break;
4792
4793         case OVS_ACTION_ATTR_PUSH_VLAN:
4794             vlan = nl_attr_get(a);
4795             vlan_tci = vlan->vlan_tci;
4796             break;
4797         }
4798     }
4799 }
4800
4801 /* Returns true if the only action for 'facet' is to send to the controller.
4802  * (We don't report NetFlow expiration messages for such facets because they
4803  * are just part of the control logic for the network, not real traffic). */
4804 static bool
4805 facet_is_controller_flow(struct facet *facet)
4806 {
4807     if (facet) {
4808         const struct rule *rule = &facet->rule->up;
4809         const struct ofpact *ofpacts = rule->ofpacts;
4810         size_t ofpacts_len = rule->ofpacts_len;
4811
4812         if (ofpacts_len > 0 &&
4813             ofpacts->type == OFPACT_CONTROLLER &&
4814             ofpact_next(ofpacts) >= ofpact_end(ofpacts, ofpacts_len)) {
4815             return true;
4816         }
4817     }
4818     return false;
4819 }
4820
4821 /* Folds all of 'facet''s statistics into its rule.  Also updates the
4822  * accounting ofhook and emits a NetFlow expiration if appropriate.  All of
4823  * 'facet''s statistics in the datapath should have been zeroed and folded into
4824  * its packet and byte counts before this function is called. */
4825 static void
4826 facet_flush_stats(struct facet *facet)
4827 {
4828     struct ofproto_dpif *ofproto = ofproto_dpif_cast(facet->rule->up.ofproto);
4829     struct subfacet *subfacet;
4830
4831     LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
4832         ovs_assert(!subfacet->dp_byte_count);
4833         ovs_assert(!subfacet->dp_packet_count);
4834     }
4835
4836     facet_push_stats(facet);
4837     if (facet->accounted_bytes < facet->byte_count) {
4838         facet_account(facet);
4839         facet->accounted_bytes = facet->byte_count;
4840     }
4841
4842     if (ofproto->netflow && !facet_is_controller_flow(facet)) {
4843         struct ofexpired expired;
4844         expired.flow = facet->flow;
4845         expired.packet_count = facet->packet_count;
4846         expired.byte_count = facet->byte_count;
4847         expired.used = facet->used;
4848         netflow_expire(ofproto->netflow, &facet->nf_flow, &expired);
4849     }
4850
4851     /* Reset counters to prevent double counting if 'facet' ever gets
4852      * reinstalled. */
4853     facet_reset_counters(facet);
4854
4855     netflow_flow_clear(&facet->nf_flow);
4856     facet->tcp_flags = 0;
4857 }
4858
4859 /* Searches 'ofproto''s table of facets for one exactly equal to 'flow'.
4860  * Returns it if found, otherwise a null pointer.
4861  *
4862  * 'hash' must be the return value of flow_hash(flow, 0).
4863  *
4864  * The returned facet might need revalidation; use facet_lookup_valid()
4865  * instead if that is important. */
4866 static struct facet *
4867 facet_find(struct ofproto_dpif *ofproto,
4868            const struct flow *flow, uint32_t hash)
4869 {
4870     struct facet *facet;
4871
4872     HMAP_FOR_EACH_WITH_HASH (facet, hmap_node, hash, &ofproto->facets) {
4873         if (flow_equal(flow, &facet->flow)) {
4874             return facet;
4875         }
4876     }
4877
4878     return NULL;
4879 }
4880
4881 /* Searches 'ofproto''s table of facets for one exactly equal to 'flow'.
4882  * Returns it if found, otherwise a null pointer.
4883  *
4884  * 'hash' must be the return value of flow_hash(flow, 0).
4885  *
4886  * The returned facet is guaranteed to be valid. */
4887 static struct facet *
4888 facet_lookup_valid(struct ofproto_dpif *ofproto, const struct flow *flow,
4889                    uint32_t hash)
4890 {
4891     struct facet *facet;
4892
4893     facet = facet_find(ofproto, flow, hash);
4894     if (facet
4895         && (ofproto->backer->need_revalidate
4896             || tag_set_intersects(&ofproto->backer->revalidate_set,
4897                                   facet->tags))
4898         && !facet_revalidate(facet)) {
4899         facet = facet_find(ofproto, flow, hash);
4900     }
4901
4902     return facet;
4903 }
4904
4905 /* Return a subfacet from 'facet'.  A facet consists of one or more
4906  * subfacets, and this function returns one of them. */
4907 static struct subfacet *facet_get_subfacet(struct facet *facet)
4908 {
4909     return CONTAINER_OF(list_front(&facet->subfacets), struct subfacet,
4910                         list_node);
4911 }
4912
4913 static const char *
4914 subfacet_path_to_string(enum subfacet_path path)
4915 {
4916     switch (path) {
4917     case SF_NOT_INSTALLED:
4918         return "not installed";
4919     case SF_FAST_PATH:
4920         return "in fast path";
4921     case SF_SLOW_PATH:
4922         return "in slow path";
4923     default:
4924         return "<error>";
4925     }
4926 }
4927
4928 /* Returns the path in which a subfacet should be installed if its 'slow'
4929  * member has the specified value. */
4930 static enum subfacet_path
4931 subfacet_want_path(enum slow_path_reason slow)
4932 {
4933     return slow ? SF_SLOW_PATH : SF_FAST_PATH;
4934 }
4935
4936 /* Returns true if 'subfacet' needs to have its datapath flow updated,
4937  * supposing that its actions have been recalculated as 'want_actions' and that
4938  * 'slow' is nonzero iff 'subfacet' should be in the slow path. */
4939 static bool
4940 subfacet_should_install(struct subfacet *subfacet, enum slow_path_reason slow,
4941                         const struct ofpbuf *want_actions)
4942 {
4943     enum subfacet_path want_path = subfacet_want_path(slow);
4944     return (want_path != subfacet->path
4945             || (want_path == SF_FAST_PATH
4946                 && (subfacet->actions_len != want_actions->size
4947                     || memcmp(subfacet->actions, want_actions->data,
4948                               subfacet->actions_len))));
4949 }
4950
4951 static bool
4952 facet_check_consistency(struct facet *facet)
4953 {
4954     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 15);
4955
4956     struct ofproto_dpif *ofproto = ofproto_dpif_cast(facet->rule->up.ofproto);
4957
4958     uint64_t odp_actions_stub[1024 / 8];
4959     struct ofpbuf odp_actions;
4960
4961     struct rule_dpif *rule;
4962     struct subfacet *subfacet;
4963     bool may_log = false;
4964     bool ok;
4965
4966     /* Check the rule for consistency. */
4967     rule = rule_dpif_lookup(ofproto, &facet->flow);
4968     ok = rule == facet->rule;
4969     if (!ok) {
4970         may_log = !VLOG_DROP_WARN(&rl);
4971         if (may_log) {
4972             struct ds s;
4973
4974             ds_init(&s);
4975             flow_format(&s, &facet->flow);
4976             ds_put_format(&s, ": facet associated with wrong rule (was "
4977                           "table=%"PRIu8",", facet->rule->up.table_id);
4978             cls_rule_format(&facet->rule->up.cr, &s);
4979             ds_put_format(&s, ") (should have been table=%"PRIu8",",
4980                           rule->up.table_id);
4981             cls_rule_format(&rule->up.cr, &s);
4982             ds_put_char(&s, ')');
4983
4984             VLOG_WARN("%s", ds_cstr(&s));
4985             ds_destroy(&s);
4986         }
4987     }
4988
4989     /* Check the datapath actions for consistency. */
4990     ofpbuf_use_stub(&odp_actions, odp_actions_stub, sizeof odp_actions_stub);
4991     LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
4992         enum subfacet_path want_path;
4993         struct action_xlate_ctx ctx;
4994         struct ds s;
4995
4996         action_xlate_ctx_init(&ctx, ofproto, &facet->flow,
4997                               &subfacet->initial_vals, rule, 0, NULL);
4998         xlate_actions(&ctx, rule->up.ofpacts, rule->up.ofpacts_len,
4999                       &odp_actions);
5000
5001         if (subfacet->path == SF_NOT_INSTALLED) {
5002             /* This only happens if the datapath reported an error when we
5003              * tried to install the flow.  Don't flag another error here. */
5004             continue;
5005         }
5006
5007         want_path = subfacet_want_path(subfacet->slow);
5008         if (want_path == SF_SLOW_PATH && subfacet->path == SF_SLOW_PATH) {
5009             /* The actions for slow-path flows may legitimately vary from one
5010              * packet to the next.  We're done. */
5011             continue;
5012         }
5013
5014         if (!subfacet_should_install(subfacet, subfacet->slow, &odp_actions)) {
5015             continue;
5016         }
5017
5018         /* Inconsistency! */
5019         if (ok) {
5020             may_log = !VLOG_DROP_WARN(&rl);
5021             ok = false;
5022         }
5023         if (!may_log) {
5024             /* Rate-limited, skip reporting. */
5025             continue;
5026         }
5027
5028         ds_init(&s);
5029         odp_flow_key_format(subfacet->key, subfacet->key_len, &s);
5030
5031         ds_put_cstr(&s, ": inconsistency in subfacet");
5032         if (want_path != subfacet->path) {
5033             enum odp_key_fitness fitness = subfacet->key_fitness;
5034
5035             ds_put_format(&s, " (%s, fitness=%s)",
5036                           subfacet_path_to_string(subfacet->path),
5037                           odp_key_fitness_to_string(fitness));
5038             ds_put_format(&s, " (should have been %s)",
5039                           subfacet_path_to_string(want_path));
5040         } else if (want_path == SF_FAST_PATH) {
5041             ds_put_cstr(&s, " (actions were: ");
5042             format_odp_actions(&s, subfacet->actions,
5043                                subfacet->actions_len);
5044             ds_put_cstr(&s, ") (correct actions: ");
5045             format_odp_actions(&s, odp_actions.data, odp_actions.size);
5046             ds_put_char(&s, ')');
5047         } else {
5048             ds_put_cstr(&s, " (actions: ");
5049             format_odp_actions(&s, subfacet->actions,
5050                                subfacet->actions_len);
5051             ds_put_char(&s, ')');
5052         }
5053         VLOG_WARN("%s", ds_cstr(&s));
5054         ds_destroy(&s);
5055     }
5056     ofpbuf_uninit(&odp_actions);
5057
5058     return ok;
5059 }
5060
5061 /* Re-searches the classifier for 'facet':
5062  *
5063  *   - If the rule found is different from 'facet''s current rule, moves
5064  *     'facet' to the new rule and recompiles its actions.
5065  *
5066  *   - If the rule found is the same as 'facet''s current rule, leaves 'facet'
5067  *     where it is and recompiles its actions anyway.
5068  *
5069  *   - If any of 'facet''s subfacets correspond to a new flow according to
5070  *     ofproto_receive(), 'facet' is removed.
5071  *
5072  *   Returns true if 'facet' is still valid.  False if 'facet' was removed. */
5073 static bool
5074 facet_revalidate(struct facet *facet)
5075 {
5076     struct ofproto_dpif *ofproto = ofproto_dpif_cast(facet->rule->up.ofproto);
5077     struct actions {
5078         struct nlattr *odp_actions;
5079         size_t actions_len;
5080     };
5081     struct actions *new_actions;
5082
5083     struct action_xlate_ctx ctx;
5084     uint64_t odp_actions_stub[1024 / 8];
5085     struct ofpbuf odp_actions;
5086
5087     struct rule_dpif *new_rule;
5088     struct subfacet *subfacet;
5089     int i;
5090
5091     COVERAGE_INC(facet_revalidate);
5092
5093     /* Check that child subfacets still correspond to this facet.  Tunnel
5094      * configuration changes could cause a subfacet's OpenFlow in_port to
5095      * change. */
5096     LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
5097         struct ofproto_dpif *recv_ofproto;
5098         struct flow recv_flow;
5099         int error;
5100
5101         error = ofproto_receive(ofproto->backer, NULL, subfacet->key,
5102                                 subfacet->key_len, &recv_flow, NULL,
5103                                 &recv_ofproto, NULL, NULL);
5104         if (error
5105             || recv_ofproto != ofproto
5106             || memcmp(&recv_flow, &facet->flow, sizeof recv_flow)) {
5107             facet_remove(facet);
5108             return false;
5109         }
5110     }
5111
5112     new_rule = rule_dpif_lookup(ofproto, &facet->flow);
5113
5114     /* Calculate new datapath actions.
5115      *
5116      * We do not modify any 'facet' state yet, because we might need to, e.g.,
5117      * emit a NetFlow expiration and, if so, we need to have the old state
5118      * around to properly compose it. */
5119
5120     /* If the datapath actions changed or the installability changed,
5121      * then we need to talk to the datapath. */
5122     i = 0;
5123     new_actions = NULL;
5124     memset(&ctx, 0, sizeof ctx);
5125     ofpbuf_use_stub(&odp_actions, odp_actions_stub, sizeof odp_actions_stub);
5126     LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
5127         enum slow_path_reason slow;
5128
5129         action_xlate_ctx_init(&ctx, ofproto, &facet->flow,
5130                               &subfacet->initial_vals, new_rule, 0, NULL);
5131         xlate_actions(&ctx, new_rule->up.ofpacts, new_rule->up.ofpacts_len,
5132                       &odp_actions);
5133
5134         slow = (subfacet->slow & SLOW_MATCH) | ctx.slow;
5135         if (subfacet_should_install(subfacet, slow, &odp_actions)) {
5136             struct dpif_flow_stats stats;
5137
5138             subfacet_install(subfacet,
5139                              odp_actions.data, odp_actions.size, &stats, slow);
5140             subfacet_update_stats(subfacet, &stats);
5141
5142             if (!new_actions) {
5143                 new_actions = xcalloc(list_size(&facet->subfacets),
5144                                       sizeof *new_actions);
5145             }
5146             new_actions[i].odp_actions = xmemdup(odp_actions.data,
5147                                                  odp_actions.size);
5148             new_actions[i].actions_len = odp_actions.size;
5149         }
5150
5151         i++;
5152     }
5153     ofpbuf_uninit(&odp_actions);
5154
5155     if (new_actions) {
5156         facet_flush_stats(facet);
5157     }
5158
5159     /* Update 'facet' now that we've taken care of all the old state. */
5160     facet->tags = ctx.tags;
5161     facet->nf_flow.output_iface = ctx.nf_output_iface;
5162     facet->has_learn = ctx.has_learn;
5163     facet->has_normal = ctx.has_normal;
5164     facet->has_fin_timeout = ctx.has_fin_timeout;
5165     facet->mirrors = ctx.mirrors;
5166
5167     i = 0;
5168     LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
5169         subfacet->slow = (subfacet->slow & SLOW_MATCH) | ctx.slow;
5170
5171         if (new_actions && new_actions[i].odp_actions) {
5172             free(subfacet->actions);
5173             subfacet->actions = new_actions[i].odp_actions;
5174             subfacet->actions_len = new_actions[i].actions_len;
5175         }
5176         i++;
5177     }
5178     free(new_actions);
5179
5180     if (facet->rule != new_rule) {
5181         COVERAGE_INC(facet_changed_rule);
5182         list_remove(&facet->list_node);
5183         list_push_back(&new_rule->facets, &facet->list_node);
5184         facet->rule = new_rule;
5185         facet->used = new_rule->up.created;
5186         facet->prev_used = facet->used;
5187     }
5188
5189     return true;
5190 }
5191
5192 /* Updates 'facet''s used time.  Caller is responsible for calling
5193  * facet_push_stats() to update the flows which 'facet' resubmits into. */
5194 static void
5195 facet_update_time(struct facet *facet, long long int used)
5196 {
5197     struct ofproto_dpif *ofproto = ofproto_dpif_cast(facet->rule->up.ofproto);
5198     if (used > facet->used) {
5199         facet->used = used;
5200         ofproto_rule_update_used(&facet->rule->up, used);
5201         netflow_flow_update_time(ofproto->netflow, &facet->nf_flow, used);
5202     }
5203 }
5204
5205 static void
5206 facet_reset_counters(struct facet *facet)
5207 {
5208     facet->packet_count = 0;
5209     facet->byte_count = 0;
5210     facet->prev_packet_count = 0;
5211     facet->prev_byte_count = 0;
5212     facet->accounted_bytes = 0;
5213 }
5214
5215 static void
5216 facet_push_stats(struct facet *facet)
5217 {
5218     struct dpif_flow_stats stats;
5219
5220     ovs_assert(facet->packet_count >= facet->prev_packet_count);
5221     ovs_assert(facet->byte_count >= facet->prev_byte_count);
5222     ovs_assert(facet->used >= facet->prev_used);
5223
5224     stats.n_packets = facet->packet_count - facet->prev_packet_count;
5225     stats.n_bytes = facet->byte_count - facet->prev_byte_count;
5226     stats.used = facet->used;
5227     stats.tcp_flags = 0;
5228
5229     if (stats.n_packets || stats.n_bytes || facet->used > facet->prev_used) {
5230         facet->prev_packet_count = facet->packet_count;
5231         facet->prev_byte_count = facet->byte_count;
5232         facet->prev_used = facet->used;
5233
5234         rule_credit_stats(facet->rule, &stats);
5235         flow_push_stats(facet, &stats);
5236
5237         update_mirror_stats(ofproto_dpif_cast(facet->rule->up.ofproto),
5238                             facet->mirrors, stats.n_packets, stats.n_bytes);
5239     }
5240 }
5241
5242 static void
5243 push_all_stats__(bool run_fast)
5244 {
5245     static long long int rl = LLONG_MIN;
5246     struct ofproto_dpif *ofproto;
5247
5248     if (time_msec() < rl) {
5249         return;
5250     }
5251
5252     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
5253         struct facet *facet;
5254
5255         HMAP_FOR_EACH (facet, hmap_node, &ofproto->facets) {
5256             facet_push_stats(facet);
5257             if (run_fast) {
5258                 run_fast_rl();
5259             }
5260         }
5261     }
5262
5263     rl = time_msec() + 100;
5264 }
5265
5266 static void
5267 push_all_stats(void)
5268 {
5269     push_all_stats__(true);
5270 }
5271
5272 static void
5273 rule_credit_stats(struct rule_dpif *rule, const struct dpif_flow_stats *stats)
5274 {
5275     rule->packet_count += stats->n_packets;
5276     rule->byte_count += stats->n_bytes;
5277     ofproto_rule_update_used(&rule->up, stats->used);
5278 }
5279
5280 /* Pushes flow statistics to the rules which 'facet->flow' resubmits
5281  * into given 'facet->rule''s actions and mirrors. */
5282 static void
5283 flow_push_stats(struct facet *facet, const struct dpif_flow_stats *stats)
5284 {
5285     struct rule_dpif *rule = facet->rule;
5286     struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
5287     struct subfacet *subfacet = facet_get_subfacet(facet);
5288     struct action_xlate_ctx ctx;
5289
5290     ofproto_rule_update_used(&rule->up, stats->used);
5291
5292     action_xlate_ctx_init(&ctx, ofproto, &facet->flow,
5293                           &subfacet->initial_vals, rule, 0, NULL);
5294     ctx.resubmit_stats = stats;
5295     xlate_actions_for_side_effects(&ctx, rule->up.ofpacts,
5296                                    rule->up.ofpacts_len);
5297 }
5298 \f
5299 /* Subfacets. */
5300
5301 static struct subfacet *
5302 subfacet_find(struct ofproto_dpif *ofproto,
5303               const struct nlattr *key, size_t key_len, uint32_t key_hash)
5304 {
5305     struct subfacet *subfacet;
5306
5307     HMAP_FOR_EACH_WITH_HASH (subfacet, hmap_node, key_hash,
5308                              &ofproto->subfacets) {
5309         if (subfacet->key_len == key_len
5310             && !memcmp(key, subfacet->key, key_len)) {
5311             return subfacet;
5312         }
5313     }
5314
5315     return NULL;
5316 }
5317
5318 /* Searches 'facet' (within 'ofproto') for a subfacet with the specified
5319  * 'key_fitness', 'key', and 'key_len' members in 'miss'.  Returns the
5320  * existing subfacet if there is one, otherwise creates and returns a
5321  * new subfacet.
5322  *
5323  * If the returned subfacet is new, then subfacet->actions will be NULL, in
5324  * which case the caller must populate the actions with
5325  * subfacet_make_actions(). */
5326 static struct subfacet *
5327 subfacet_create(struct facet *facet, struct flow_miss *miss,
5328                 long long int now)
5329 {
5330     struct ofproto_dpif *ofproto = ofproto_dpif_cast(facet->rule->up.ofproto);
5331     enum odp_key_fitness key_fitness = miss->key_fitness;
5332     const struct nlattr *key = miss->key;
5333     size_t key_len = miss->key_len;
5334     uint32_t key_hash;
5335     struct subfacet *subfacet;
5336
5337     key_hash = odp_flow_key_hash(key, key_len);
5338
5339     if (list_is_empty(&facet->subfacets)) {
5340         subfacet = &facet->one_subfacet;
5341     } else {
5342         subfacet = subfacet_find(ofproto, key, key_len, key_hash);
5343         if (subfacet) {
5344             if (subfacet->facet == facet) {
5345                 return subfacet;
5346             }
5347
5348             /* This shouldn't happen. */
5349             VLOG_ERR_RL(&rl, "subfacet with wrong facet");
5350             subfacet_destroy(subfacet);
5351         }
5352
5353         subfacet = xmalloc(sizeof *subfacet);
5354     }
5355
5356     hmap_insert(&ofproto->subfacets, &subfacet->hmap_node, key_hash);
5357     list_push_back(&facet->subfacets, &subfacet->list_node);
5358     subfacet->facet = facet;
5359     subfacet->key_fitness = key_fitness;
5360     subfacet->key = xmemdup(key, key_len);
5361     subfacet->key_len = key_len;
5362     subfacet->used = now;
5363     subfacet->created = now;
5364     subfacet->dp_packet_count = 0;
5365     subfacet->dp_byte_count = 0;
5366     subfacet->actions_len = 0;
5367     subfacet->actions = NULL;
5368     subfacet->slow = (subfacet->key_fitness == ODP_FIT_TOO_LITTLE
5369                       ? SLOW_MATCH
5370                       : 0);
5371     subfacet->path = SF_NOT_INSTALLED;
5372     subfacet->initial_vals = miss->initial_vals;
5373     subfacet->odp_in_port = miss->odp_in_port;
5374
5375     ofproto->subfacet_add_count++;
5376     return subfacet;
5377 }
5378
5379 /* Uninstalls 'subfacet' from the datapath, if it is installed, removes it from
5380  * its facet within 'ofproto', and frees it. */
5381 static void
5382 subfacet_destroy__(struct subfacet *subfacet)
5383 {
5384     struct facet *facet = subfacet->facet;
5385     struct ofproto_dpif *ofproto = ofproto_dpif_cast(facet->rule->up.ofproto);
5386
5387     /* Update ofproto stats before uninstall the subfacet. */
5388     ofproto->subfacet_del_count++;
5389     ofproto->total_subfacet_life_span += (time_msec() - subfacet->created);
5390
5391     subfacet_uninstall(subfacet);
5392     hmap_remove(&ofproto->subfacets, &subfacet->hmap_node);
5393     list_remove(&subfacet->list_node);
5394     free(subfacet->key);
5395     free(subfacet->actions);
5396     if (subfacet != &facet->one_subfacet) {
5397         free(subfacet);
5398     }
5399 }
5400
5401 /* Destroys 'subfacet', as with subfacet_destroy__(), and then if this was the
5402  * last remaining subfacet in its facet destroys the facet too. */
5403 static void
5404 subfacet_destroy(struct subfacet *subfacet)
5405 {
5406     struct facet *facet = subfacet->facet;
5407
5408     if (list_is_singleton(&facet->subfacets)) {
5409         /* facet_remove() needs at least one subfacet (it will remove it). */
5410         facet_remove(facet);
5411     } else {
5412         subfacet_destroy__(subfacet);
5413     }
5414 }
5415
5416 static void
5417 subfacet_destroy_batch(struct ofproto_dpif *ofproto,
5418                        struct subfacet **subfacets, int n)
5419 {
5420     struct dpif_op ops[SUBFACET_DESTROY_MAX_BATCH];
5421     struct dpif_op *opsp[SUBFACET_DESTROY_MAX_BATCH];
5422     struct dpif_flow_stats stats[SUBFACET_DESTROY_MAX_BATCH];
5423     int i;
5424
5425     for (i = 0; i < n; i++) {
5426         ops[i].type = DPIF_OP_FLOW_DEL;
5427         ops[i].u.flow_del.key = subfacets[i]->key;
5428         ops[i].u.flow_del.key_len = subfacets[i]->key_len;
5429         ops[i].u.flow_del.stats = &stats[i];
5430         opsp[i] = &ops[i];
5431     }
5432
5433     dpif_operate(ofproto->backer->dpif, opsp, n);
5434     for (i = 0; i < n; i++) {
5435         subfacet_reset_dp_stats(subfacets[i], &stats[i]);
5436         subfacets[i]->path = SF_NOT_INSTALLED;
5437         subfacet_destroy(subfacets[i]);
5438         run_fast_rl();
5439     }
5440 }
5441
5442 /* Composes the datapath actions for 'subfacet' based on its rule's actions.
5443  * Translates the actions into 'odp_actions', which the caller must have
5444  * initialized and is responsible for uninitializing. */
5445 static void
5446 subfacet_make_actions(struct subfacet *subfacet, const struct ofpbuf *packet,
5447                       struct ofpbuf *odp_actions)
5448 {
5449     struct facet *facet = subfacet->facet;
5450     struct rule_dpif *rule = facet->rule;
5451     struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
5452
5453     struct action_xlate_ctx ctx;
5454
5455     action_xlate_ctx_init(&ctx, ofproto, &facet->flow,
5456                           &subfacet->initial_vals, rule, 0, packet);
5457     xlate_actions(&ctx, rule->up.ofpacts, rule->up.ofpacts_len, odp_actions);
5458     facet->tags = ctx.tags;
5459     facet->has_learn = ctx.has_learn;
5460     facet->has_normal = ctx.has_normal;
5461     facet->has_fin_timeout = ctx.has_fin_timeout;
5462     facet->nf_flow.output_iface = ctx.nf_output_iface;
5463     facet->mirrors = ctx.mirrors;
5464
5465     subfacet->slow = (subfacet->slow & SLOW_MATCH) | ctx.slow;
5466     if (subfacet->actions_len != odp_actions->size
5467         || memcmp(subfacet->actions, odp_actions->data, odp_actions->size)) {
5468         free(subfacet->actions);
5469         subfacet->actions_len = odp_actions->size;
5470         subfacet->actions = xmemdup(odp_actions->data, odp_actions->size);
5471     }
5472 }
5473
5474 /* Updates 'subfacet''s datapath flow, setting its actions to 'actions_len'
5475  * bytes of actions in 'actions'.  If 'stats' is non-null, statistics counters
5476  * in the datapath will be zeroed and 'stats' will be updated with traffic new
5477  * since 'subfacet' was last updated.
5478  *
5479  * Returns 0 if successful, otherwise a positive errno value. */
5480 static int
5481 subfacet_install(struct subfacet *subfacet,
5482                  const struct nlattr *actions, size_t actions_len,
5483                  struct dpif_flow_stats *stats,
5484                  enum slow_path_reason slow)
5485 {
5486     struct facet *facet = subfacet->facet;
5487     struct ofproto_dpif *ofproto = ofproto_dpif_cast(facet->rule->up.ofproto);
5488     enum subfacet_path path = subfacet_want_path(slow);
5489     uint64_t slow_path_stub[128 / 8];
5490     enum dpif_flow_put_flags flags;
5491     int ret;
5492
5493     flags = DPIF_FP_CREATE | DPIF_FP_MODIFY;
5494     if (stats) {
5495         flags |= DPIF_FP_ZERO_STATS;
5496     }
5497
5498     if (path == SF_SLOW_PATH) {
5499         compose_slow_path(ofproto, &facet->flow, slow,
5500                           slow_path_stub, sizeof slow_path_stub,
5501                           &actions, &actions_len);
5502     }
5503
5504     ret = dpif_flow_put(ofproto->backer->dpif, flags, subfacet->key,
5505                         subfacet->key_len, actions, actions_len, stats);
5506
5507     if (stats) {
5508         subfacet_reset_dp_stats(subfacet, stats);
5509     }
5510
5511     if (!ret) {
5512         subfacet->path = path;
5513     }
5514     return ret;
5515 }
5516
5517 static int
5518 subfacet_reinstall(struct subfacet *subfacet, struct dpif_flow_stats *stats)
5519 {
5520     return subfacet_install(subfacet, subfacet->actions, subfacet->actions_len,
5521                             stats, subfacet->slow);
5522 }
5523
5524 /* If 'subfacet' is installed in the datapath, uninstalls it. */
5525 static void
5526 subfacet_uninstall(struct subfacet *subfacet)
5527 {
5528     if (subfacet->path != SF_NOT_INSTALLED) {
5529         struct rule_dpif *rule = subfacet->facet->rule;
5530         struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
5531         struct dpif_flow_stats stats;
5532         int error;
5533
5534         error = dpif_flow_del(ofproto->backer->dpif, subfacet->key,
5535                               subfacet->key_len, &stats);
5536         subfacet_reset_dp_stats(subfacet, &stats);
5537         if (!error) {
5538             subfacet_update_stats(subfacet, &stats);
5539         }
5540         subfacet->path = SF_NOT_INSTALLED;
5541     } else {
5542         ovs_assert(subfacet->dp_packet_count == 0);
5543         ovs_assert(subfacet->dp_byte_count == 0);
5544     }
5545 }
5546
5547 /* Resets 'subfacet''s datapath statistics counters.  This should be called
5548  * when 'subfacet''s statistics are cleared in the datapath.  If 'stats' is
5549  * non-null, it should contain the statistics returned by dpif when 'subfacet'
5550  * was reset in the datapath.  'stats' will be modified to include only
5551  * statistics new since 'subfacet' was last updated. */
5552 static void
5553 subfacet_reset_dp_stats(struct subfacet *subfacet,
5554                         struct dpif_flow_stats *stats)
5555 {
5556     if (stats
5557         && subfacet->dp_packet_count <= stats->n_packets
5558         && subfacet->dp_byte_count <= stats->n_bytes) {
5559         stats->n_packets -= subfacet->dp_packet_count;
5560         stats->n_bytes -= subfacet->dp_byte_count;
5561     }
5562
5563     subfacet->dp_packet_count = 0;
5564     subfacet->dp_byte_count = 0;
5565 }
5566
5567 /* Updates 'subfacet''s used time.  The caller is responsible for calling
5568  * facet_push_stats() to update the flows which 'subfacet' resubmits into. */
5569 static void
5570 subfacet_update_time(struct subfacet *subfacet, long long int used)
5571 {
5572     if (used > subfacet->used) {
5573         subfacet->used = used;
5574         facet_update_time(subfacet->facet, used);
5575     }
5576 }
5577
5578 /* Folds the statistics from 'stats' into the counters in 'subfacet'.
5579  *
5580  * Because of the meaning of a subfacet's counters, it only makes sense to do
5581  * this if 'stats' are not tracked in the datapath, that is, if 'stats'
5582  * represents a packet that was sent by hand or if it represents statistics
5583  * that have been cleared out of the datapath. */
5584 static void
5585 subfacet_update_stats(struct subfacet *subfacet,
5586                       const struct dpif_flow_stats *stats)
5587 {
5588     if (stats->n_packets || stats->used > subfacet->used) {
5589         struct facet *facet = subfacet->facet;
5590
5591         subfacet_update_time(subfacet, stats->used);
5592         facet->packet_count += stats->n_packets;
5593         facet->byte_count += stats->n_bytes;
5594         facet->tcp_flags |= stats->tcp_flags;
5595         netflow_flow_update_flags(&facet->nf_flow, stats->tcp_flags);
5596     }
5597 }
5598 \f
5599 /* Rules. */
5600
5601 static struct rule_dpif *
5602 rule_dpif_lookup(struct ofproto_dpif *ofproto, const struct flow *flow)
5603 {
5604     struct rule_dpif *rule;
5605
5606     rule = rule_dpif_lookup__(ofproto, flow, 0);
5607     if (rule) {
5608         return rule;
5609     }
5610
5611     return rule_dpif_miss_rule(ofproto, flow);
5612 }
5613
5614 static struct rule_dpif *
5615 rule_dpif_lookup__(struct ofproto_dpif *ofproto, const struct flow *flow,
5616                    uint8_t table_id)
5617 {
5618     struct cls_rule *cls_rule;
5619     struct classifier *cls;
5620
5621     if (table_id >= N_TABLES) {
5622         return NULL;
5623     }
5624
5625     cls = &ofproto->up.tables[table_id].cls;
5626     if (flow->nw_frag & FLOW_NW_FRAG_ANY
5627         && ofproto->up.frag_handling == OFPC_FRAG_NORMAL) {
5628         /* For OFPC_NORMAL frag_handling, we must pretend that transport ports
5629          * are unavailable. */
5630         struct flow ofpc_normal_flow = *flow;
5631         ofpc_normal_flow.tp_src = htons(0);
5632         ofpc_normal_flow.tp_dst = htons(0);
5633         cls_rule = classifier_lookup(cls, &ofpc_normal_flow);
5634     } else {
5635         cls_rule = classifier_lookup(cls, flow);
5636     }
5637     return rule_dpif_cast(rule_from_cls_rule(cls_rule));
5638 }
5639
5640 static struct rule_dpif *
5641 rule_dpif_miss_rule(struct ofproto_dpif *ofproto, const struct flow *flow)
5642 {
5643     struct ofport_dpif *port;
5644
5645     port = get_ofp_port(ofproto, flow->in_port);
5646     if (!port) {
5647         VLOG_WARN_RL(&rl, "packet-in on unknown port %"PRIu16, flow->in_port);
5648         return ofproto->miss_rule;
5649     }
5650
5651     if (port->up.pp.config & OFPUTIL_PC_NO_PACKET_IN) {
5652         return ofproto->no_packet_in_rule;
5653     }
5654     return ofproto->miss_rule;
5655 }
5656
5657 static void
5658 complete_operation(struct rule_dpif *rule)
5659 {
5660     struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
5661
5662     rule_invalidate(rule);
5663     if (clogged) {
5664         struct dpif_completion *c = xmalloc(sizeof *c);
5665         c->op = rule->up.pending;
5666         list_push_back(&ofproto->completions, &c->list_node);
5667     } else {
5668         ofoperation_complete(rule->up.pending, 0);
5669     }
5670 }
5671
5672 static struct rule *
5673 rule_alloc(void)
5674 {
5675     struct rule_dpif *rule = xmalloc(sizeof *rule);
5676     return &rule->up;
5677 }
5678
5679 static void
5680 rule_dealloc(struct rule *rule_)
5681 {
5682     struct rule_dpif *rule = rule_dpif_cast(rule_);
5683     free(rule);
5684 }
5685
5686 static enum ofperr
5687 rule_construct(struct rule *rule_)
5688 {
5689     struct rule_dpif *rule = rule_dpif_cast(rule_);
5690     struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
5691     struct rule_dpif *victim;
5692     uint8_t table_id;
5693
5694     rule->packet_count = 0;
5695     rule->byte_count = 0;
5696
5697     victim = rule_dpif_cast(ofoperation_get_victim(rule->up.pending));
5698     if (victim && !list_is_empty(&victim->facets)) {
5699         struct facet *facet;
5700
5701         rule->facets = victim->facets;
5702         list_moved(&rule->facets);
5703         LIST_FOR_EACH (facet, list_node, &rule->facets) {
5704             /* XXX: We're only clearing our local counters here.  It's possible
5705              * that quite a few packets are unaccounted for in the datapath
5706              * statistics.  These will be accounted to the new rule instead of
5707              * cleared as required.  This could be fixed by clearing out the
5708              * datapath statistics for this facet, but currently it doesn't
5709              * seem worth it. */
5710             facet_reset_counters(facet);
5711             facet->rule = rule;
5712         }
5713     } else {
5714         /* Must avoid list_moved() in this case. */
5715         list_init(&rule->facets);
5716     }
5717
5718     table_id = rule->up.table_id;
5719     if (victim) {
5720         rule->tag = victim->tag;
5721     } else if (table_id == 0) {
5722         rule->tag = 0;
5723     } else {
5724         struct flow flow;
5725
5726         miniflow_expand(&rule->up.cr.match.flow, &flow);
5727         rule->tag = rule_calculate_tag(&flow, &rule->up.cr.match.mask,
5728                                        ofproto->tables[table_id].basis);
5729     }
5730
5731     complete_operation(rule);
5732     return 0;
5733 }
5734
5735 static void
5736 rule_destruct(struct rule *rule_)
5737 {
5738     struct rule_dpif *rule = rule_dpif_cast(rule_);
5739     struct facet *facet, *next_facet;
5740
5741     LIST_FOR_EACH_SAFE (facet, next_facet, list_node, &rule->facets) {
5742         facet_revalidate(facet);
5743     }
5744
5745     complete_operation(rule);
5746 }
5747
5748 static void
5749 rule_get_stats(struct rule *rule_, uint64_t *packets, uint64_t *bytes)
5750 {
5751     struct rule_dpif *rule = rule_dpif_cast(rule_);
5752
5753     /* push_all_stats() can handle flow misses which, when using the learn
5754      * action, can cause rules to be added and deleted.  This can corrupt our
5755      * caller's datastructures which assume that rule_get_stats() doesn't have
5756      * an impact on the flow table. To be safe, we disable miss handling. */
5757     push_all_stats__(false);
5758
5759     /* Start from historical data for 'rule' itself that are no longer tracked
5760      * in facets.  This counts, for example, facets that have expired. */
5761     *packets = rule->packet_count;
5762     *bytes = rule->byte_count;
5763 }
5764
5765 static void
5766 rule_dpif_execute(struct rule_dpif *rule, const struct flow *flow,
5767                   struct ofpbuf *packet)
5768 {
5769     struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
5770     struct initial_vals initial_vals;
5771     struct dpif_flow_stats stats;
5772     struct action_xlate_ctx ctx;
5773     uint64_t odp_actions_stub[1024 / 8];
5774     struct ofpbuf odp_actions;
5775
5776     dpif_flow_stats_extract(flow, packet, time_msec(), &stats);
5777     rule_credit_stats(rule, &stats);
5778
5779     initial_vals.vlan_tci = flow->vlan_tci;
5780     ofpbuf_use_stub(&odp_actions, odp_actions_stub, sizeof odp_actions_stub);
5781     action_xlate_ctx_init(&ctx, ofproto, flow, &initial_vals,
5782                           rule, stats.tcp_flags, packet);
5783     ctx.resubmit_stats = &stats;
5784     xlate_actions(&ctx, rule->up.ofpacts, rule->up.ofpacts_len, &odp_actions);
5785
5786     execute_odp_actions(ofproto, flow, odp_actions.data,
5787                         odp_actions.size, packet);
5788
5789     ofpbuf_uninit(&odp_actions);
5790 }
5791
5792 static enum ofperr
5793 rule_execute(struct rule *rule, const struct flow *flow,
5794              struct ofpbuf *packet)
5795 {
5796     rule_dpif_execute(rule_dpif_cast(rule), flow, packet);
5797     ofpbuf_delete(packet);
5798     return 0;
5799 }
5800
5801 static void
5802 rule_modify_actions(struct rule *rule_)
5803 {
5804     struct rule_dpif *rule = rule_dpif_cast(rule_);
5805
5806     complete_operation(rule);
5807 }
5808 \f
5809 /* Sends 'packet' out 'ofport'.
5810  * May modify 'packet'.
5811  * Returns 0 if successful, otherwise a positive errno value. */
5812 static int
5813 send_packet(const struct ofport_dpif *ofport, struct ofpbuf *packet)
5814 {
5815     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
5816     uint64_t odp_actions_stub[1024 / 8];
5817     struct ofpbuf key, odp_actions;
5818     struct dpif_flow_stats stats;
5819     struct odputil_keybuf keybuf;
5820     struct ofpact_output output;
5821     struct action_xlate_ctx ctx;
5822     struct flow flow;
5823     int error;
5824
5825     ofpbuf_use_stub(&odp_actions, odp_actions_stub, sizeof odp_actions_stub);
5826     ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
5827
5828     /* Use OFPP_NONE as the in_port to avoid special packet processing. */
5829     flow_extract(packet, 0, 0, NULL, OFPP_NONE, &flow);
5830     odp_flow_key_from_flow(&key, &flow, ofp_port_to_odp_port(ofproto,
5831                                                              OFPP_LOCAL));
5832     dpif_flow_stats_extract(&flow, packet, time_msec(), &stats);
5833
5834     ofpact_init(&output.ofpact, OFPACT_OUTPUT, sizeof output);
5835     output.port = ofport->up.ofp_port;
5836     output.max_len = 0;
5837
5838     action_xlate_ctx_init(&ctx, ofproto, &flow, NULL, NULL, 0, packet);
5839     ctx.resubmit_stats = &stats;
5840     xlate_actions(&ctx, &output.ofpact, sizeof output, &odp_actions);
5841
5842     error = dpif_execute(ofproto->backer->dpif,
5843                          key.data, key.size,
5844                          odp_actions.data, odp_actions.size,
5845                          packet);
5846     ofpbuf_uninit(&odp_actions);
5847
5848     if (error) {
5849         VLOG_WARN_RL(&rl, "%s: failed to send packet on port %s (%s)",
5850                      ofproto->up.name, netdev_get_name(ofport->up.netdev),
5851                      strerror(error));
5852     }
5853
5854     ofproto->stats.tx_packets++;
5855     ofproto->stats.tx_bytes += packet->size;
5856     return error;
5857 }
5858 \f
5859 /* OpenFlow to datapath action translation. */
5860
5861 static bool may_receive(const struct ofport_dpif *, struct action_xlate_ctx *);
5862 static void do_xlate_actions(const struct ofpact *, size_t ofpacts_len,
5863                              struct action_xlate_ctx *);
5864 static void xlate_normal(struct action_xlate_ctx *);
5865
5866 /* Composes an ODP action for a "slow path" action for 'flow' within 'ofproto'.
5867  * The action will state 'slow' as the reason that the action is in the slow
5868  * path.  (This is purely informational: it allows a human viewing "ovs-dpctl
5869  * dump-flows" output to see why a flow is in the slow path.)
5870  *
5871  * The 'stub_size' bytes in 'stub' will be used to store the action.
5872  * 'stub_size' must be large enough for the action.
5873  *
5874  * The action and its size will be stored in '*actionsp' and '*actions_lenp',
5875  * respectively. */
5876 static void
5877 compose_slow_path(const struct ofproto_dpif *ofproto, const struct flow *flow,
5878                   enum slow_path_reason slow,
5879                   uint64_t *stub, size_t stub_size,
5880                   const struct nlattr **actionsp, size_t *actions_lenp)
5881 {
5882     union user_action_cookie cookie;
5883     struct ofpbuf buf;
5884
5885     cookie.type = USER_ACTION_COOKIE_SLOW_PATH;
5886     cookie.slow_path.unused = 0;
5887     cookie.slow_path.reason = slow;
5888
5889     ofpbuf_use_stack(&buf, stub, stub_size);
5890     if (slow & (SLOW_CFM | SLOW_BFD | SLOW_LACP | SLOW_STP)) {
5891         uint32_t pid = dpif_port_get_pid(ofproto->backer->dpif, UINT32_MAX);
5892         odp_put_userspace_action(pid, &cookie, sizeof cookie.slow_path, &buf);
5893     } else {
5894         put_userspace_action(ofproto, &buf, flow, &cookie,
5895                              sizeof cookie.slow_path);
5896     }
5897     *actionsp = buf.data;
5898     *actions_lenp = buf.size;
5899 }
5900
5901 static size_t
5902 put_userspace_action(const struct ofproto_dpif *ofproto,
5903                      struct ofpbuf *odp_actions,
5904                      const struct flow *flow,
5905                      const union user_action_cookie *cookie,
5906                      const size_t cookie_size)
5907 {
5908     uint32_t pid;
5909
5910     pid = dpif_port_get_pid(ofproto->backer->dpif,
5911                             ofp_port_to_odp_port(ofproto, flow->in_port));
5912
5913     return odp_put_userspace_action(pid, cookie, cookie_size, odp_actions);
5914 }
5915
5916 /* Compose SAMPLE action for sFlow or IPFIX.  The given probability is
5917  * the number of packets out of UINT32_MAX to sample.  The given
5918  * cookie is passed back in the callback for each sampled packet.
5919  */
5920 static size_t
5921 compose_sample_action(const struct ofproto_dpif *ofproto,
5922                       struct ofpbuf *odp_actions,
5923                       const struct flow *flow,
5924                       const uint32_t probability,
5925                       const union user_action_cookie *cookie,
5926                       const size_t cookie_size)
5927 {
5928     size_t sample_offset, actions_offset;
5929     int cookie_offset;
5930
5931     sample_offset = nl_msg_start_nested(odp_actions, OVS_ACTION_ATTR_SAMPLE);
5932
5933     nl_msg_put_u32(odp_actions, OVS_SAMPLE_ATTR_PROBABILITY, probability);
5934
5935     actions_offset = nl_msg_start_nested(odp_actions, OVS_SAMPLE_ATTR_ACTIONS);
5936     cookie_offset = put_userspace_action(ofproto, odp_actions, flow, cookie,
5937                                          cookie_size);
5938
5939     nl_msg_end_nested(odp_actions, actions_offset);
5940     nl_msg_end_nested(odp_actions, sample_offset);
5941     return cookie_offset;
5942 }
5943
5944 static void
5945 compose_sflow_cookie(const struct ofproto_dpif *ofproto,
5946                      ovs_be16 vlan_tci, uint32_t odp_port,
5947                      unsigned int n_outputs, union user_action_cookie *cookie)
5948 {
5949     int ifindex;
5950
5951     cookie->type = USER_ACTION_COOKIE_SFLOW;
5952     cookie->sflow.vlan_tci = vlan_tci;
5953
5954     /* See http://www.sflow.org/sflow_version_5.txt (search for "Input/output
5955      * port information") for the interpretation of cookie->output. */
5956     switch (n_outputs) {
5957     case 0:
5958         /* 0x40000000 | 256 means "packet dropped for unknown reason". */
5959         cookie->sflow.output = 0x40000000 | 256;
5960         break;
5961
5962     case 1:
5963         ifindex = dpif_sflow_odp_port_to_ifindex(ofproto->sflow, odp_port);
5964         if (ifindex) {
5965             cookie->sflow.output = ifindex;
5966             break;
5967         }
5968         /* Fall through. */
5969     default:
5970         /* 0x80000000 means "multiple output ports. */
5971         cookie->sflow.output = 0x80000000 | n_outputs;
5972         break;
5973     }
5974 }
5975
5976 /* Compose SAMPLE action for sFlow bridge sampling. */
5977 static size_t
5978 compose_sflow_action(const struct ofproto_dpif *ofproto,
5979                      struct ofpbuf *odp_actions,
5980                      const struct flow *flow,
5981                      uint32_t odp_port)
5982 {
5983     uint32_t probability;
5984     union user_action_cookie cookie;
5985
5986     if (!ofproto->sflow || flow->in_port == OFPP_NONE) {
5987         return 0;
5988     }
5989
5990     probability = dpif_sflow_get_probability(ofproto->sflow);
5991     compose_sflow_cookie(ofproto, htons(0), odp_port,
5992                          odp_port == OVSP_NONE ? 0 : 1, &cookie);
5993
5994     return compose_sample_action(ofproto, odp_actions, flow,  probability,
5995                                  &cookie, sizeof cookie.sflow);
5996 }
5997
5998 static void
5999 compose_flow_sample_cookie(uint16_t probability, uint32_t collector_set_id,
6000                            uint32_t obs_domain_id, uint32_t obs_point_id,
6001                            union user_action_cookie *cookie)
6002 {
6003     cookie->type = USER_ACTION_COOKIE_FLOW_SAMPLE;
6004     cookie->flow_sample.probability = probability;
6005     cookie->flow_sample.collector_set_id = collector_set_id;
6006     cookie->flow_sample.obs_domain_id = obs_domain_id;
6007     cookie->flow_sample.obs_point_id = obs_point_id;
6008 }
6009
6010 static void
6011 compose_ipfix_cookie(union user_action_cookie *cookie)
6012 {
6013     cookie->type = USER_ACTION_COOKIE_IPFIX;
6014 }
6015
6016 /* Compose SAMPLE action for IPFIX bridge sampling. */
6017 static void
6018 compose_ipfix_action(const struct ofproto_dpif *ofproto,
6019                      struct ofpbuf *odp_actions,
6020                      const struct flow *flow)
6021 {
6022     uint32_t probability;
6023     union user_action_cookie cookie;
6024
6025     if (!ofproto->ipfix || flow->in_port == OFPP_NONE) {
6026         return;
6027     }
6028
6029     probability = dpif_ipfix_get_bridge_exporter_probability(ofproto->ipfix);
6030     compose_ipfix_cookie(&cookie);
6031
6032     compose_sample_action(ofproto, odp_actions, flow,  probability,
6033                           &cookie, sizeof cookie.ipfix);
6034 }
6035
6036 /* SAMPLE action for sFlow must be first action in any given list of
6037  * actions.  At this point we do not have all information required to
6038  * build it. So try to build sample action as complete as possible. */
6039 static void
6040 add_sflow_action(struct action_xlate_ctx *ctx)
6041 {
6042     ctx->user_cookie_offset = compose_sflow_action(ctx->ofproto,
6043                                                    ctx->odp_actions,
6044                                                    &ctx->flow, OVSP_NONE);
6045     ctx->sflow_odp_port = 0;
6046     ctx->sflow_n_outputs = 0;
6047 }
6048
6049 /* SAMPLE action for IPFIX must be 1st or 2nd action in any given list
6050  * of actions, eventually after the SAMPLE action for sFlow. */
6051 static void
6052 add_ipfix_action(struct action_xlate_ctx *ctx)
6053 {
6054     compose_ipfix_action(ctx->ofproto, ctx->odp_actions, &ctx->flow);
6055 }
6056
6057 /* Fix SAMPLE action according to data collected while composing ODP actions.
6058  * We need to fix SAMPLE actions OVS_SAMPLE_ATTR_ACTIONS attribute, i.e. nested
6059  * USERSPACE action's user-cookie which is required for sflow. */
6060 static void
6061 fix_sflow_action(struct action_xlate_ctx *ctx)
6062 {
6063     const struct flow *base = &ctx->base_flow;
6064     union user_action_cookie *cookie;
6065
6066     if (!ctx->user_cookie_offset) {
6067         return;
6068     }
6069
6070     cookie = ofpbuf_at(ctx->odp_actions, ctx->user_cookie_offset,
6071                        sizeof cookie->sflow);
6072     ovs_assert(cookie->type == USER_ACTION_COOKIE_SFLOW);
6073
6074     compose_sflow_cookie(ctx->ofproto, base->vlan_tci,
6075                          ctx->sflow_odp_port, ctx->sflow_n_outputs, cookie);
6076 }
6077
6078 static void
6079 compose_output_action__(struct action_xlate_ctx *ctx, uint16_t ofp_port,
6080                         bool check_stp)
6081 {
6082     const struct ofport_dpif *ofport = get_ofp_port(ctx->ofproto, ofp_port);
6083     ovs_be16 flow_vlan_tci;
6084     uint32_t flow_skb_mark;
6085     uint8_t flow_nw_tos;
6086     struct priority_to_dscp *pdscp;
6087     uint32_t out_port, odp_port;
6088
6089     /* If 'struct flow' gets additional metadata, we'll need to zero it out
6090      * before traversing a patch port. */
6091     BUILD_ASSERT_DECL(FLOW_WC_SEQ == 20);
6092
6093     if (!ofport) {
6094         xlate_report(ctx, "Nonexistent output port");
6095         return;
6096     } else if (ofport->up.pp.config & OFPUTIL_PC_NO_FWD) {
6097         xlate_report(ctx, "OFPPC_NO_FWD set, skipping output");
6098         return;
6099     } else if (check_stp && !stp_forward_in_state(ofport->stp_state)) {
6100         xlate_report(ctx, "STP not in forwarding state, skipping output");
6101         return;
6102     }
6103
6104     if (netdev_vport_is_patch(ofport->up.netdev)) {
6105         struct ofport_dpif *peer = ofport_get_peer(ofport);
6106         struct flow old_flow = ctx->flow;
6107         const struct ofproto_dpif *peer_ofproto;
6108         enum slow_path_reason special;
6109         struct ofport_dpif *in_port;
6110
6111         if (!peer) {
6112             xlate_report(ctx, "Nonexistent patch port peer");
6113             return;
6114         }
6115
6116         peer_ofproto = ofproto_dpif_cast(peer->up.ofproto);
6117         if (peer_ofproto->backer != ctx->ofproto->backer) {
6118             xlate_report(ctx, "Patch port peer on a different datapath");
6119             return;
6120         }
6121
6122         ctx->ofproto = ofproto_dpif_cast(peer->up.ofproto);
6123         ctx->flow.in_port = peer->up.ofp_port;
6124         ctx->flow.metadata = htonll(0);
6125         memset(&ctx->flow.tunnel, 0, sizeof ctx->flow.tunnel);
6126         memset(ctx->flow.regs, 0, sizeof ctx->flow.regs);
6127
6128         in_port = get_ofp_port(ctx->ofproto, ctx->flow.in_port);
6129         special = process_special(ctx->ofproto, &ctx->flow, in_port,
6130                                   ctx->packet);
6131         if (special) {
6132             ctx->slow |= special;
6133         } else if (!in_port || may_receive(in_port, ctx)) {
6134             if (!in_port || stp_forward_in_state(in_port->stp_state)) {
6135                 xlate_table_action(ctx, ctx->flow.in_port, 0, true);
6136             } else {
6137                 /* Forwarding is disabled by STP.  Let OFPP_NORMAL and the
6138                  * learning action look at the packet, then drop it. */
6139                 struct flow old_base_flow = ctx->base_flow;
6140                 size_t old_size = ctx->odp_actions->size;
6141                 xlate_table_action(ctx, ctx->flow.in_port, 0, true);
6142                 ctx->base_flow = old_base_flow;
6143                 ctx->odp_actions->size = old_size;
6144             }
6145         }
6146
6147         ctx->flow = old_flow;
6148         ctx->ofproto = ofproto_dpif_cast(ofport->up.ofproto);
6149
6150         if (ctx->resubmit_stats) {
6151             netdev_vport_inc_tx(ofport->up.netdev, ctx->resubmit_stats);
6152             netdev_vport_inc_rx(peer->up.netdev, ctx->resubmit_stats);
6153         }
6154
6155         return;
6156     }
6157
6158     flow_vlan_tci = ctx->flow.vlan_tci;
6159     flow_skb_mark = ctx->flow.skb_mark;
6160     flow_nw_tos = ctx->flow.nw_tos;
6161
6162     pdscp = get_priority(ofport, ctx->flow.skb_priority);
6163     if (pdscp) {
6164         ctx->flow.nw_tos &= ~IP_DSCP_MASK;
6165         ctx->flow.nw_tos |= pdscp->dscp;
6166     }
6167
6168     if (ofport->tnl_port) {
6169          /* Save tunnel metadata so that changes made due to
6170           * the Logical (tunnel) Port are not visible for any further
6171           * matches, while explicit set actions on tunnel metadata are.
6172           */
6173         struct flow_tnl flow_tnl = ctx->flow.tunnel;
6174         odp_port = tnl_port_send(ofport->tnl_port, &ctx->flow);
6175         if (odp_port == OVSP_NONE) {
6176             xlate_report(ctx, "Tunneling decided against output");
6177             goto out; /* restore flow_nw_tos */
6178         }
6179         if (ctx->flow.tunnel.ip_dst == ctx->orig_tunnel_ip_dst) {
6180             xlate_report(ctx, "Not tunneling to our own address");
6181             goto out; /* restore flow_nw_tos */
6182         }
6183         if (ctx->resubmit_stats) {
6184             netdev_vport_inc_tx(ofport->up.netdev, ctx->resubmit_stats);
6185         }
6186         out_port = odp_port;
6187         commit_odp_tunnel_action(&ctx->flow, &ctx->base_flow,
6188                                  ctx->odp_actions);
6189         ctx->flow.tunnel = flow_tnl; /* Restore tunnel metadata */
6190     } else {
6191         odp_port = ofport->odp_port;
6192         out_port = vsp_realdev_to_vlandev(ctx->ofproto, odp_port,
6193                                           ctx->flow.vlan_tci);
6194         if (out_port != odp_port) {
6195             ctx->flow.vlan_tci = htons(0);
6196         }
6197         ctx->flow.skb_mark &= ~IPSEC_MARK;
6198     }
6199     commit_odp_actions(&ctx->flow, &ctx->base_flow, ctx->odp_actions);
6200     nl_msg_put_u32(ctx->odp_actions, OVS_ACTION_ATTR_OUTPUT, out_port);
6201
6202     ctx->sflow_odp_port = odp_port;
6203     ctx->sflow_n_outputs++;
6204     ctx->nf_output_iface = ofp_port;
6205
6206     /* Restore flow */
6207     ctx->flow.vlan_tci = flow_vlan_tci;
6208     ctx->flow.skb_mark = flow_skb_mark;
6209  out:
6210     ctx->flow.nw_tos = flow_nw_tos;
6211 }
6212
6213 static void
6214 compose_output_action(struct action_xlate_ctx *ctx, uint16_t ofp_port)
6215 {
6216     compose_output_action__(ctx, ofp_port, true);
6217 }
6218
6219 static void
6220 tag_the_flow(struct action_xlate_ctx *ctx, struct rule_dpif *rule)
6221 {
6222     struct ofproto_dpif *ofproto = ctx->ofproto;
6223     uint8_t table_id = ctx->table_id;
6224
6225     if (table_id > 0 && table_id < N_TABLES) {
6226         struct table_dpif *table = &ofproto->tables[table_id];
6227         if (table->other_table) {
6228             ctx->tags |= (rule && rule->tag
6229                           ? rule->tag
6230                           : rule_calculate_tag(&ctx->flow,
6231                                                &table->other_table->mask,
6232                                                table->basis));
6233         }
6234     }
6235 }
6236
6237 /* Common rule processing in one place to avoid duplicating code. */
6238 static struct rule_dpif *
6239 ctx_rule_hooks(struct action_xlate_ctx *ctx, struct rule_dpif *rule,
6240                bool may_packet_in)
6241 {
6242     if (ctx->resubmit_hook) {
6243         ctx->resubmit_hook(ctx, rule);
6244     }
6245     if (rule == NULL && may_packet_in) {
6246         /* XXX
6247          * check if table configuration flags
6248          * OFPTC_TABLE_MISS_CONTROLLER, default.
6249          * OFPTC_TABLE_MISS_CONTINUE,
6250          * OFPTC_TABLE_MISS_DROP
6251          * When OF1.0, OFPTC_TABLE_MISS_CONTINUE is used. What to do?
6252          */
6253         rule = rule_dpif_miss_rule(ctx->ofproto, &ctx->flow);
6254     }
6255     if (rule && ctx->resubmit_stats) {
6256         rule_credit_stats(rule, ctx->resubmit_stats);
6257     }
6258     return rule;
6259 }
6260
6261 static void
6262 xlate_table_action(struct action_xlate_ctx *ctx,
6263                    uint16_t in_port, uint8_t table_id, bool may_packet_in)
6264 {
6265     if (ctx->recurse < MAX_RESUBMIT_RECURSION) {
6266         struct rule_dpif *rule;
6267         uint16_t old_in_port = ctx->flow.in_port;
6268         uint8_t old_table_id = ctx->table_id;
6269
6270         ctx->table_id = table_id;
6271
6272         /* Look up a flow with 'in_port' as the input port. */
6273         ctx->flow.in_port = in_port;
6274         rule = rule_dpif_lookup__(ctx->ofproto, &ctx->flow, table_id);
6275
6276         tag_the_flow(ctx, rule);
6277
6278         /* Restore the original input port.  Otherwise OFPP_NORMAL and
6279          * OFPP_IN_PORT will have surprising behavior. */
6280         ctx->flow.in_port = old_in_port;
6281
6282         rule = ctx_rule_hooks(ctx, rule, may_packet_in);
6283
6284         if (rule) {
6285             struct rule_dpif *old_rule = ctx->rule;
6286
6287             ctx->recurse++;
6288             ctx->rule = rule;
6289             do_xlate_actions(rule->up.ofpacts, rule->up.ofpacts_len, ctx);
6290             ctx->rule = old_rule;
6291             ctx->recurse--;
6292         }
6293
6294         ctx->table_id = old_table_id;
6295     } else {
6296         static struct vlog_rate_limit recurse_rl = VLOG_RATE_LIMIT_INIT(1, 1);
6297
6298         VLOG_ERR_RL(&recurse_rl, "resubmit actions recursed over %d times",
6299                     MAX_RESUBMIT_RECURSION);
6300         ctx->max_resubmit_trigger = true;
6301     }
6302 }
6303
6304 static void
6305 xlate_ofpact_resubmit(struct action_xlate_ctx *ctx,
6306                       const struct ofpact_resubmit *resubmit)
6307 {
6308     uint16_t in_port;
6309     uint8_t table_id;
6310
6311     in_port = resubmit->in_port;
6312     if (in_port == OFPP_IN_PORT) {
6313         in_port = ctx->flow.in_port;
6314     }
6315
6316     table_id = resubmit->table_id;
6317     if (table_id == 255) {
6318         table_id = ctx->table_id;
6319     }
6320
6321     xlate_table_action(ctx, in_port, table_id, false);
6322 }
6323
6324 static void
6325 flood_packets(struct action_xlate_ctx *ctx, bool all)
6326 {
6327     struct ofport_dpif *ofport;
6328
6329     HMAP_FOR_EACH (ofport, up.hmap_node, &ctx->ofproto->up.ports) {
6330         uint16_t ofp_port = ofport->up.ofp_port;
6331
6332         if (ofp_port == ctx->flow.in_port) {
6333             continue;
6334         }
6335
6336         if (all) {
6337             compose_output_action__(ctx, ofp_port, false);
6338         } else if (!(ofport->up.pp.config & OFPUTIL_PC_NO_FLOOD)) {
6339             compose_output_action(ctx, ofp_port);
6340         }
6341     }
6342
6343     ctx->nf_output_iface = NF_OUT_FLOOD;
6344 }
6345
6346 static void
6347 execute_controller_action(struct action_xlate_ctx *ctx, int len,
6348                           enum ofp_packet_in_reason reason,
6349                           uint16_t controller_id)
6350 {
6351     struct ofputil_packet_in pin;
6352     struct ofpbuf *packet;
6353
6354     ctx->slow |= SLOW_CONTROLLER;
6355     if (!ctx->packet) {
6356         return;
6357     }
6358
6359     packet = ofpbuf_clone(ctx->packet);
6360
6361     if (packet->l2 && packet->l3) {
6362         struct eth_header *eh;
6363         uint16_t mpls_depth;
6364
6365         eth_pop_vlan(packet);
6366         eh = packet->l2;
6367
6368         memcpy(eh->eth_src, ctx->flow.dl_src, sizeof eh->eth_src);
6369         memcpy(eh->eth_dst, ctx->flow.dl_dst, sizeof eh->eth_dst);
6370
6371         if (ctx->flow.vlan_tci & htons(VLAN_CFI)) {
6372             eth_push_vlan(packet, ctx->flow.vlan_tci);
6373         }
6374
6375         mpls_depth = eth_mpls_depth(packet);
6376
6377         if (mpls_depth < ctx->flow.mpls_depth) {
6378             push_mpls(packet, ctx->flow.dl_type, ctx->flow.mpls_lse);
6379         } else if (mpls_depth > ctx->flow.mpls_depth) {
6380             pop_mpls(packet, ctx->flow.dl_type);
6381         } else if (mpls_depth) {
6382             set_mpls_lse(packet, ctx->flow.mpls_lse);
6383         }
6384
6385         if (packet->l4) {
6386             if (ctx->flow.dl_type == htons(ETH_TYPE_IP)) {
6387                 packet_set_ipv4(packet, ctx->flow.nw_src, ctx->flow.nw_dst,
6388                                 ctx->flow.nw_tos, ctx->flow.nw_ttl);
6389             }
6390
6391             if (packet->l7) {
6392                 if (ctx->flow.nw_proto == IPPROTO_TCP) {
6393                     packet_set_tcp_port(packet, ctx->flow.tp_src,
6394                                         ctx->flow.tp_dst);
6395                 } else if (ctx->flow.nw_proto == IPPROTO_UDP) {
6396                     packet_set_udp_port(packet, ctx->flow.tp_src,
6397                                         ctx->flow.tp_dst);
6398                 }
6399             }
6400         }
6401     }
6402
6403     pin.packet = packet->data;
6404     pin.packet_len = packet->size;
6405     pin.reason = reason;
6406     pin.controller_id = controller_id;
6407     pin.table_id = ctx->table_id;
6408     pin.cookie = ctx->rule ? ctx->rule->up.flow_cookie : 0;
6409
6410     pin.send_len = len;
6411     flow_get_metadata(&ctx->flow, &pin.fmd);
6412
6413     connmgr_send_packet_in(ctx->ofproto->up.connmgr, &pin);
6414     ofpbuf_delete(packet);
6415 }
6416
6417 static void
6418 execute_mpls_push_action(struct action_xlate_ctx *ctx, ovs_be16 eth_type)
6419 {
6420     ovs_assert(eth_type_mpls(eth_type));
6421
6422     if (ctx->base_flow.mpls_depth) {
6423         ctx->flow.mpls_lse &= ~htonl(MPLS_BOS_MASK);
6424         ctx->flow.mpls_depth++;
6425     } else {
6426         ovs_be32 label;
6427         uint8_t tc, ttl;
6428
6429         if (ctx->flow.dl_type == htons(ETH_TYPE_IPV6)) {
6430             label = htonl(0x2); /* IPV6 Explicit Null. */
6431         } else {
6432             label = htonl(0x0); /* IPV4 Explicit Null. */
6433         }
6434         tc = (ctx->flow.nw_tos & IP_DSCP_MASK) >> 2;
6435         ttl = ctx->flow.nw_ttl ? ctx->flow.nw_ttl : 0x40;
6436         ctx->flow.mpls_lse = set_mpls_lse_values(ttl, tc, 1, label);
6437         ctx->flow.mpls_depth = 1;
6438     }
6439     ctx->flow.dl_type = eth_type;
6440 }
6441
6442 static void
6443 execute_mpls_pop_action(struct action_xlate_ctx *ctx, ovs_be16 eth_type)
6444 {
6445     ovs_assert(eth_type_mpls(ctx->flow.dl_type));
6446     ovs_assert(!eth_type_mpls(eth_type));
6447
6448     if (ctx->flow.mpls_depth) {
6449         ctx->flow.mpls_depth--;
6450         ctx->flow.mpls_lse = htonl(0);
6451         if (!ctx->flow.mpls_depth) {
6452             ctx->flow.dl_type = eth_type;
6453         }
6454     }
6455 }
6456
6457 static bool
6458 compose_dec_ttl(struct action_xlate_ctx *ctx, struct ofpact_cnt_ids *ids)
6459 {
6460     if (ctx->flow.dl_type != htons(ETH_TYPE_IP) &&
6461         ctx->flow.dl_type != htons(ETH_TYPE_IPV6)) {
6462         return false;
6463     }
6464
6465     if (ctx->flow.nw_ttl > 1) {
6466         ctx->flow.nw_ttl--;
6467         return false;
6468     } else {
6469         size_t i;
6470
6471         for (i = 0; i < ids->n_controllers; i++) {
6472             execute_controller_action(ctx, UINT16_MAX, OFPR_INVALID_TTL,
6473                                       ids->cnt_ids[i]);
6474         }
6475
6476         /* Stop processing for current table. */
6477         return true;
6478     }
6479 }
6480
6481 static bool
6482 execute_set_mpls_ttl_action(struct action_xlate_ctx *ctx, uint8_t ttl)
6483 {
6484     if (!eth_type_mpls(ctx->flow.dl_type)) {
6485         return true;
6486     }
6487
6488     set_mpls_lse_ttl(&ctx->flow.mpls_lse, ttl);
6489     return false;
6490 }
6491
6492 static bool
6493 execute_dec_mpls_ttl_action(struct action_xlate_ctx *ctx)
6494 {
6495     uint8_t ttl = mpls_lse_to_ttl(ctx->flow.mpls_lse);
6496
6497     if (!eth_type_mpls(ctx->flow.dl_type)) {
6498         return false;
6499     }
6500
6501     if (ttl > 1) {
6502         ttl--;
6503         set_mpls_lse_ttl(&ctx->flow.mpls_lse, ttl);
6504         return false;
6505     } else {
6506         execute_controller_action(ctx, UINT16_MAX, OFPR_INVALID_TTL, 0);
6507
6508         /* Stop processing for current table. */
6509         return true;
6510     }
6511 }
6512
6513 static void
6514 xlate_output_action(struct action_xlate_ctx *ctx,
6515                     uint16_t port, uint16_t max_len, bool may_packet_in)
6516 {
6517     uint16_t prev_nf_output_iface = ctx->nf_output_iface;
6518
6519     ctx->nf_output_iface = NF_OUT_DROP;
6520
6521     switch (port) {
6522     case OFPP_IN_PORT:
6523         compose_output_action(ctx, ctx->flow.in_port);
6524         break;
6525     case OFPP_TABLE:
6526         xlate_table_action(ctx, ctx->flow.in_port, 0, may_packet_in);
6527         break;
6528     case OFPP_NORMAL:
6529         xlate_normal(ctx);
6530         break;
6531     case OFPP_FLOOD:
6532         flood_packets(ctx,  false);
6533         break;
6534     case OFPP_ALL:
6535         flood_packets(ctx, true);
6536         break;
6537     case OFPP_CONTROLLER:
6538         execute_controller_action(ctx, max_len, OFPR_ACTION, 0);
6539         break;
6540     case OFPP_NONE:
6541         break;
6542     case OFPP_LOCAL:
6543     default:
6544         if (port != ctx->flow.in_port) {
6545             compose_output_action(ctx, port);
6546         } else {
6547             xlate_report(ctx, "skipping output to input port");
6548         }
6549         break;
6550     }
6551
6552     if (prev_nf_output_iface == NF_OUT_FLOOD) {
6553         ctx->nf_output_iface = NF_OUT_FLOOD;
6554     } else if (ctx->nf_output_iface == NF_OUT_DROP) {
6555         ctx->nf_output_iface = prev_nf_output_iface;
6556     } else if (prev_nf_output_iface != NF_OUT_DROP &&
6557                ctx->nf_output_iface != NF_OUT_FLOOD) {
6558         ctx->nf_output_iface = NF_OUT_MULTI;
6559     }
6560 }
6561
6562 static void
6563 xlate_output_reg_action(struct action_xlate_ctx *ctx,
6564                         const struct ofpact_output_reg *or)
6565 {
6566     uint64_t port = mf_get_subfield(&or->src, &ctx->flow);
6567     if (port <= UINT16_MAX) {
6568         xlate_output_action(ctx, port, or->max_len, false);
6569     }
6570 }
6571
6572 static void
6573 xlate_enqueue_action(struct action_xlate_ctx *ctx,
6574                      const struct ofpact_enqueue *enqueue)
6575 {
6576     uint16_t ofp_port = enqueue->port;
6577     uint32_t queue_id = enqueue->queue;
6578     uint32_t flow_priority, priority;
6579     int error;
6580
6581     /* Translate queue to priority. */
6582     error = dpif_queue_to_priority(ctx->ofproto->backer->dpif,
6583                                    queue_id, &priority);
6584     if (error) {
6585         /* Fall back to ordinary output action. */
6586         xlate_output_action(ctx, enqueue->port, 0, false);
6587         return;
6588     }
6589
6590     /* Check output port. */
6591     if (ofp_port == OFPP_IN_PORT) {
6592         ofp_port = ctx->flow.in_port;
6593     } else if (ofp_port == ctx->flow.in_port) {
6594         return;
6595     }
6596
6597     /* Add datapath actions. */
6598     flow_priority = ctx->flow.skb_priority;
6599     ctx->flow.skb_priority = priority;
6600     compose_output_action(ctx, ofp_port);
6601     ctx->flow.skb_priority = flow_priority;
6602
6603     /* Update NetFlow output port. */
6604     if (ctx->nf_output_iface == NF_OUT_DROP) {
6605         ctx->nf_output_iface = ofp_port;
6606     } else if (ctx->nf_output_iface != NF_OUT_FLOOD) {
6607         ctx->nf_output_iface = NF_OUT_MULTI;
6608     }
6609 }
6610
6611 static void
6612 xlate_set_queue_action(struct action_xlate_ctx *ctx, uint32_t queue_id)
6613 {
6614     uint32_t skb_priority;
6615
6616     if (!dpif_queue_to_priority(ctx->ofproto->backer->dpif,
6617                                 queue_id, &skb_priority)) {
6618         ctx->flow.skb_priority = skb_priority;
6619     } else {
6620         /* Couldn't translate queue to a priority.  Nothing to do.  A warning
6621          * has already been logged. */
6622     }
6623 }
6624
6625 static bool
6626 slave_enabled_cb(uint16_t ofp_port, void *ofproto_)
6627 {
6628     struct ofproto_dpif *ofproto = ofproto_;
6629     struct ofport_dpif *port;
6630
6631     switch (ofp_port) {
6632     case OFPP_IN_PORT:
6633     case OFPP_TABLE:
6634     case OFPP_NORMAL:
6635     case OFPP_FLOOD:
6636     case OFPP_ALL:
6637     case OFPP_NONE:
6638         return true;
6639     case OFPP_CONTROLLER: /* Not supported by the bundle action. */
6640         return false;
6641     default:
6642         port = get_ofp_port(ofproto, ofp_port);
6643         return port ? port->may_enable : false;
6644     }
6645 }
6646
6647 static void
6648 xlate_bundle_action(struct action_xlate_ctx *ctx,
6649                     const struct ofpact_bundle *bundle)
6650 {
6651     uint16_t port;
6652
6653     port = bundle_execute(bundle, &ctx->flow, slave_enabled_cb, ctx->ofproto);
6654     if (bundle->dst.field) {
6655         nxm_reg_load(&bundle->dst, port, &ctx->flow);
6656     } else {
6657         xlate_output_action(ctx, port, 0, false);
6658     }
6659 }
6660
6661 static void
6662 xlate_learn_action(struct action_xlate_ctx *ctx,
6663                    const struct ofpact_learn *learn)
6664 {
6665     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 1);
6666     struct ofputil_flow_mod fm;
6667     uint64_t ofpacts_stub[1024 / 8];
6668     struct ofpbuf ofpacts;
6669     int error;
6670
6671     ofpbuf_use_stack(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
6672     learn_execute(learn, &ctx->flow, &fm, &ofpacts);
6673
6674     error = ofproto_flow_mod(&ctx->ofproto->up, &fm);
6675     if (error && !VLOG_DROP_WARN(&rl)) {
6676         VLOG_WARN("learning action failed to modify flow table (%s)",
6677                   ofperr_get_name(error));
6678     }
6679
6680     ofpbuf_uninit(&ofpacts);
6681 }
6682
6683 /* Reduces '*timeout' to no more than 'max'.  A value of zero in either case
6684  * means "infinite". */
6685 static void
6686 reduce_timeout(uint16_t max, uint16_t *timeout)
6687 {
6688     if (max && (!*timeout || *timeout > max)) {
6689         *timeout = max;
6690     }
6691 }
6692
6693 static void
6694 xlate_fin_timeout(struct action_xlate_ctx *ctx,
6695                   const struct ofpact_fin_timeout *oft)
6696 {
6697     if (ctx->tcp_flags & (TCP_FIN | TCP_RST) && ctx->rule) {
6698         struct rule_dpif *rule = ctx->rule;
6699
6700         reduce_timeout(oft->fin_idle_timeout, &rule->up.idle_timeout);
6701         reduce_timeout(oft->fin_hard_timeout, &rule->up.hard_timeout);
6702     }
6703 }
6704
6705 static void
6706 xlate_sample_action(struct action_xlate_ctx *ctx,
6707                     const struct ofpact_sample *os)
6708 {
6709   union user_action_cookie cookie;
6710   /* Scale the probability from 16-bit to 32-bit while representing
6711    * the same percentage. */
6712   uint32_t probability = (os->probability << 16) | os->probability;
6713
6714   commit_odp_actions(&ctx->flow, &ctx->base_flow, ctx->odp_actions);
6715
6716   compose_flow_sample_cookie(os->probability, os->collector_set_id,
6717                              os->obs_domain_id, os->obs_point_id, &cookie);
6718   compose_sample_action(ctx->ofproto, ctx->odp_actions, &ctx->flow,
6719                         probability, &cookie, sizeof cookie.flow_sample);
6720 }
6721
6722 static bool
6723 may_receive(const struct ofport_dpif *port, struct action_xlate_ctx *ctx)
6724 {
6725     if (port->up.pp.config & (eth_addr_equals(ctx->flow.dl_dst, eth_addr_stp)
6726                               ? OFPUTIL_PC_NO_RECV_STP
6727                               : OFPUTIL_PC_NO_RECV)) {
6728         return false;
6729     }
6730
6731     /* Only drop packets here if both forwarding and learning are
6732      * disabled.  If just learning is enabled, we need to have
6733      * OFPP_NORMAL and the learning action have a look at the packet
6734      * before we can drop it. */
6735     if (!stp_forward_in_state(port->stp_state)
6736             && !stp_learn_in_state(port->stp_state)) {
6737         return false;
6738     }
6739
6740     return true;
6741 }
6742
6743 static bool
6744 tunnel_ecn_ok(struct action_xlate_ctx *ctx)
6745 {
6746     if (is_ip_any(&ctx->base_flow)
6747         && (ctx->flow.tunnel.ip_tos & IP_ECN_MASK) == IP_ECN_CE) {
6748         if ((ctx->base_flow.nw_tos & IP_ECN_MASK) == IP_ECN_NOT_ECT) {
6749             VLOG_WARN_RL(&rl, "dropping tunnel packet marked ECN CE"
6750                          " but is not ECN capable");
6751             return false;
6752         } else {
6753             /* Set the ECN CE value in the tunneled packet. */
6754             ctx->flow.nw_tos |= IP_ECN_CE;
6755         }
6756     }
6757
6758     return true;
6759 }
6760
6761 static void
6762 do_xlate_actions(const struct ofpact *ofpacts, size_t ofpacts_len,
6763                  struct action_xlate_ctx *ctx)
6764 {
6765     bool was_evictable = true;
6766     const struct ofpact *a;
6767
6768     if (ctx->rule) {
6769         /* Don't let the rule we're working on get evicted underneath us. */
6770         was_evictable = ctx->rule->up.evictable;
6771         ctx->rule->up.evictable = false;
6772     }
6773
6774  do_xlate_actions_again:
6775     OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
6776         struct ofpact_controller *controller;
6777         const struct ofpact_metadata *metadata;
6778
6779         if (ctx->exit) {
6780             break;
6781         }
6782
6783         switch (a->type) {
6784         case OFPACT_OUTPUT:
6785             xlate_output_action(ctx, ofpact_get_OUTPUT(a)->port,
6786                                 ofpact_get_OUTPUT(a)->max_len, true);
6787             break;
6788
6789         case OFPACT_CONTROLLER:
6790             controller = ofpact_get_CONTROLLER(a);
6791             execute_controller_action(ctx, controller->max_len,
6792                                       controller->reason,
6793                                       controller->controller_id);
6794             break;
6795
6796         case OFPACT_ENQUEUE:
6797             xlate_enqueue_action(ctx, ofpact_get_ENQUEUE(a));
6798             break;
6799
6800         case OFPACT_SET_VLAN_VID:
6801             ctx->flow.vlan_tci &= ~htons(VLAN_VID_MASK);
6802             ctx->flow.vlan_tci |= (htons(ofpact_get_SET_VLAN_VID(a)->vlan_vid)
6803                                    | htons(VLAN_CFI));
6804             break;
6805
6806         case OFPACT_SET_VLAN_PCP:
6807             ctx->flow.vlan_tci &= ~htons(VLAN_PCP_MASK);
6808             ctx->flow.vlan_tci |= htons((ofpact_get_SET_VLAN_PCP(a)->vlan_pcp
6809                                          << VLAN_PCP_SHIFT)
6810                                         | VLAN_CFI);
6811             break;
6812
6813         case OFPACT_STRIP_VLAN:
6814             ctx->flow.vlan_tci = htons(0);
6815             break;
6816
6817         case OFPACT_PUSH_VLAN:
6818             /* XXX 802.1AD(QinQ) */
6819             ctx->flow.vlan_tci = htons(VLAN_CFI);
6820             break;
6821
6822         case OFPACT_SET_ETH_SRC:
6823             memcpy(ctx->flow.dl_src, ofpact_get_SET_ETH_SRC(a)->mac,
6824                    ETH_ADDR_LEN);
6825             break;
6826
6827         case OFPACT_SET_ETH_DST:
6828             memcpy(ctx->flow.dl_dst, ofpact_get_SET_ETH_DST(a)->mac,
6829                    ETH_ADDR_LEN);
6830             break;
6831
6832         case OFPACT_SET_IPV4_SRC:
6833             if (ctx->flow.dl_type == htons(ETH_TYPE_IP)) {
6834                 ctx->flow.nw_src = ofpact_get_SET_IPV4_SRC(a)->ipv4;
6835             }
6836             break;
6837
6838         case OFPACT_SET_IPV4_DST:
6839             if (ctx->flow.dl_type == htons(ETH_TYPE_IP)) {
6840                 ctx->flow.nw_dst = ofpact_get_SET_IPV4_DST(a)->ipv4;
6841             }
6842             break;
6843
6844         case OFPACT_SET_IPV4_DSCP:
6845             /* OpenFlow 1.0 only supports IPv4. */
6846             if (ctx->flow.dl_type == htons(ETH_TYPE_IP)) {
6847                 ctx->flow.nw_tos &= ~IP_DSCP_MASK;
6848                 ctx->flow.nw_tos |= ofpact_get_SET_IPV4_DSCP(a)->dscp;
6849             }
6850             break;
6851
6852         case OFPACT_SET_L4_SRC_PORT:
6853             if (is_ip_any(&ctx->flow)) {
6854                 ctx->flow.tp_src = htons(ofpact_get_SET_L4_SRC_PORT(a)->port);
6855             }
6856             break;
6857
6858         case OFPACT_SET_L4_DST_PORT:
6859             if (is_ip_any(&ctx->flow)) {
6860                 ctx->flow.tp_dst = htons(ofpact_get_SET_L4_DST_PORT(a)->port);
6861             }
6862             break;
6863
6864         case OFPACT_RESUBMIT:
6865             xlate_ofpact_resubmit(ctx, ofpact_get_RESUBMIT(a));
6866             break;
6867
6868         case OFPACT_SET_TUNNEL:
6869             ctx->flow.tunnel.tun_id = htonll(ofpact_get_SET_TUNNEL(a)->tun_id);
6870             break;
6871
6872         case OFPACT_SET_QUEUE:
6873             xlate_set_queue_action(ctx, ofpact_get_SET_QUEUE(a)->queue_id);
6874             break;
6875
6876         case OFPACT_POP_QUEUE:
6877             ctx->flow.skb_priority = ctx->orig_skb_priority;
6878             break;
6879
6880         case OFPACT_REG_MOVE:
6881             nxm_execute_reg_move(ofpact_get_REG_MOVE(a), &ctx->flow);
6882             break;
6883
6884         case OFPACT_REG_LOAD:
6885             nxm_execute_reg_load(ofpact_get_REG_LOAD(a), &ctx->flow);
6886             break;
6887
6888         case OFPACT_STACK_PUSH:
6889             nxm_execute_stack_push(ofpact_get_STACK_PUSH(a), &ctx->flow,
6890                                    &ctx->stack);
6891             break;
6892
6893         case OFPACT_STACK_POP:
6894             nxm_execute_stack_pop(ofpact_get_STACK_POP(a), &ctx->flow,
6895                                   &ctx->stack);
6896             break;
6897
6898         case OFPACT_PUSH_MPLS:
6899             execute_mpls_push_action(ctx, ofpact_get_PUSH_MPLS(a)->ethertype);
6900             break;
6901
6902         case OFPACT_POP_MPLS:
6903             execute_mpls_pop_action(ctx, ofpact_get_POP_MPLS(a)->ethertype);
6904             break;
6905
6906         case OFPACT_SET_MPLS_TTL:
6907             if (execute_set_mpls_ttl_action(ctx, ofpact_get_SET_MPLS_TTL(a)->ttl)) {
6908                 goto out;
6909             }
6910             break;
6911
6912         case OFPACT_DEC_MPLS_TTL:
6913             if (execute_dec_mpls_ttl_action(ctx)) {
6914                 goto out;
6915             }
6916             break;
6917
6918         case OFPACT_DEC_TTL:
6919             if (compose_dec_ttl(ctx, ofpact_get_DEC_TTL(a))) {
6920                 goto out;
6921             }
6922             break;
6923
6924         case OFPACT_NOTE:
6925             /* Nothing to do. */
6926             break;
6927
6928         case OFPACT_MULTIPATH:
6929             multipath_execute(ofpact_get_MULTIPATH(a), &ctx->flow);
6930             break;
6931
6932         case OFPACT_BUNDLE:
6933             ctx->ofproto->has_bundle_action = true;
6934             xlate_bundle_action(ctx, ofpact_get_BUNDLE(a));
6935             break;
6936
6937         case OFPACT_OUTPUT_REG:
6938             xlate_output_reg_action(ctx, ofpact_get_OUTPUT_REG(a));
6939             break;
6940
6941         case OFPACT_LEARN:
6942             ctx->has_learn = true;
6943             if (ctx->may_learn) {
6944                 xlate_learn_action(ctx, ofpact_get_LEARN(a));
6945             }
6946             break;
6947
6948         case OFPACT_EXIT:
6949             ctx->exit = true;
6950             break;
6951
6952         case OFPACT_FIN_TIMEOUT:
6953             ctx->has_fin_timeout = true;
6954             xlate_fin_timeout(ctx, ofpact_get_FIN_TIMEOUT(a));
6955             break;
6956
6957         case OFPACT_CLEAR_ACTIONS:
6958             /* XXX
6959              * Nothing to do because writa-actions is not supported for now.
6960              * When writa-actions is supported, clear-actions also must
6961              * be supported at the same time.
6962              */
6963             break;
6964
6965         case OFPACT_WRITE_METADATA:
6966             metadata = ofpact_get_WRITE_METADATA(a);
6967             ctx->flow.metadata &= ~metadata->mask;
6968             ctx->flow.metadata |= metadata->metadata & metadata->mask;
6969             break;
6970
6971         case OFPACT_GOTO_TABLE: {
6972             /* It is assumed that goto-table is the last action. */
6973             struct ofpact_goto_table *ogt = ofpact_get_GOTO_TABLE(a);
6974             struct rule_dpif *rule;
6975
6976             ovs_assert(ctx->table_id < ogt->table_id);
6977
6978             ctx->table_id = ogt->table_id;
6979
6980             /* Look up a flow from the new table. */
6981             rule = rule_dpif_lookup__(ctx->ofproto, &ctx->flow, ctx->table_id);
6982
6983             tag_the_flow(ctx, rule);
6984
6985             rule = ctx_rule_hooks(ctx, rule, true);
6986
6987             if (rule) {
6988                 if (ctx->rule) {
6989                     ctx->rule->up.evictable = was_evictable;
6990                 }
6991                 ctx->rule = rule;
6992                 was_evictable = rule->up.evictable;
6993                 rule->up.evictable = false;
6994
6995                 /* Tail recursion removal. */
6996                 ofpacts = rule->up.ofpacts;
6997                 ofpacts_len = rule->up.ofpacts_len;
6998                 goto do_xlate_actions_again;
6999             }
7000             break;
7001         }
7002
7003         case OFPACT_SAMPLE:
7004             xlate_sample_action(ctx, ofpact_get_SAMPLE(a));
7005             break;
7006         }
7007     }
7008
7009 out:
7010     if (ctx->rule) {
7011         ctx->rule->up.evictable = was_evictable;
7012     }
7013 }
7014
7015 static void
7016 action_xlate_ctx_init(struct action_xlate_ctx *ctx,
7017                       struct ofproto_dpif *ofproto, const struct flow *flow,
7018                       const struct initial_vals *initial_vals,
7019                       struct rule_dpif *rule,
7020                       uint8_t tcp_flags, const struct ofpbuf *packet)
7021 {
7022     /* Flow initialization rules:
7023      * - 'base_flow' must match the kernel's view of the packet at the
7024      *   time that action processing starts.  'flow' represents any
7025      *   transformations we wish to make through actions.
7026      * - By default 'base_flow' and 'flow' are the same since the input
7027      *   packet matches the output before any actions are applied.
7028      * - When using VLAN splinters, 'base_flow''s VLAN is set to the value
7029      *   of the received packet as seen by the kernel.  If we later output
7030      *   to another device without any modifications this will cause us to
7031      *   insert a new tag since the original one was stripped off by the
7032      *   VLAN device.
7033      * - Tunnel metadata as received is retained in 'flow'. This allows
7034      *   tunnel metadata matching also in later tables.
7035      *   Since a kernel action for setting the tunnel metadata will only be
7036      *   generated with actual tunnel output, changing the tunnel metadata
7037      *   values in 'flow' (such as tun_id) will only have effect with a later
7038      *   tunnel output action.
7039      * - Tunnel 'base_flow' is completely cleared since that is what the
7040      *   kernel does.  If we wish to maintain the original values an action
7041      *   needs to be generated. */
7042
7043     ctx->ofproto = ofproto;
7044     ctx->flow = *flow;
7045     ctx->base_flow = ctx->flow;
7046     memset(&ctx->base_flow.tunnel, 0, sizeof ctx->base_flow.tunnel);
7047     ctx->orig_tunnel_ip_dst = flow->tunnel.ip_dst;
7048     ctx->rule = rule;
7049     ctx->packet = packet;
7050     ctx->may_learn = packet != NULL;
7051     ctx->tcp_flags = tcp_flags;
7052     ctx->resubmit_hook = NULL;
7053     ctx->report_hook = NULL;
7054     ctx->resubmit_stats = NULL;
7055
7056     if (initial_vals) {
7057         ctx->base_flow.vlan_tci = initial_vals->vlan_tci;
7058     }
7059 }
7060
7061 /* Translates the 'ofpacts_len' bytes of "struct ofpacts" starting at 'ofpacts'
7062  * into datapath actions in 'odp_actions', using 'ctx'. */
7063 static void
7064 xlate_actions(struct action_xlate_ctx *ctx,
7065               const struct ofpact *ofpacts, size_t ofpacts_len,
7066               struct ofpbuf *odp_actions)
7067 {
7068     /* Normally false.  Set to true if we ever hit MAX_RESUBMIT_RECURSION, so
7069      * that in the future we always keep a copy of the original flow for
7070      * tracing purposes. */
7071     static bool hit_resubmit_limit;
7072
7073     enum slow_path_reason special;
7074     struct ofport_dpif *in_port;
7075     struct flow orig_flow;
7076
7077     COVERAGE_INC(ofproto_dpif_xlate);
7078
7079     ofpbuf_clear(odp_actions);
7080     ofpbuf_reserve(odp_actions, NL_A_U32_SIZE);
7081
7082     ctx->odp_actions = odp_actions;
7083     ctx->tags = 0;
7084     ctx->slow = 0;
7085     ctx->has_learn = false;
7086     ctx->has_normal = false;
7087     ctx->has_fin_timeout = false;
7088     ctx->nf_output_iface = NF_OUT_DROP;
7089     ctx->mirrors = 0;
7090     ctx->recurse = 0;
7091     ctx->max_resubmit_trigger = false;
7092     ctx->orig_skb_priority = ctx->flow.skb_priority;
7093     ctx->table_id = 0;
7094     ctx->exit = false;
7095
7096     ofpbuf_use_stub(&ctx->stack, ctx->init_stack, sizeof ctx->init_stack);
7097
7098     if (ctx->ofproto->has_mirrors || hit_resubmit_limit) {
7099         /* Do this conditionally because the copy is expensive enough that it
7100          * shows up in profiles. */
7101         orig_flow = ctx->flow;
7102     }
7103
7104     if (ctx->flow.nw_frag & FLOW_NW_FRAG_ANY) {
7105         switch (ctx->ofproto->up.frag_handling) {
7106         case OFPC_FRAG_NORMAL:
7107             /* We must pretend that transport ports are unavailable. */
7108             ctx->flow.tp_src = ctx->base_flow.tp_src = htons(0);
7109             ctx->flow.tp_dst = ctx->base_flow.tp_dst = htons(0);
7110             break;
7111
7112         case OFPC_FRAG_DROP:
7113             return;
7114
7115         case OFPC_FRAG_REASM:
7116             NOT_REACHED();
7117
7118         case OFPC_FRAG_NX_MATCH:
7119             /* Nothing to do. */
7120             break;
7121
7122         case OFPC_INVALID_TTL_TO_CONTROLLER:
7123             NOT_REACHED();
7124         }
7125     }
7126
7127     in_port = get_ofp_port(ctx->ofproto, ctx->flow.in_port);
7128     special = process_special(ctx->ofproto, &ctx->flow, in_port, ctx->packet);
7129     if (special) {
7130         ctx->slow |= special;
7131     } else {
7132         static struct vlog_rate_limit trace_rl = VLOG_RATE_LIMIT_INIT(1, 1);
7133         struct initial_vals initial_vals;
7134         size_t sample_actions_len;
7135         uint32_t local_odp_port;
7136
7137         initial_vals.vlan_tci = ctx->base_flow.vlan_tci;
7138
7139         add_sflow_action(ctx);
7140         add_ipfix_action(ctx);
7141         sample_actions_len = ctx->odp_actions->size;
7142
7143         if (tunnel_ecn_ok(ctx) && (!in_port || may_receive(in_port, ctx))) {
7144             do_xlate_actions(ofpacts, ofpacts_len, ctx);
7145
7146             /* We've let OFPP_NORMAL and the learning action look at the
7147              * packet, so drop it now if forwarding is disabled. */
7148             if (in_port && !stp_forward_in_state(in_port->stp_state)) {
7149                 ctx->odp_actions->size = sample_actions_len;
7150             }
7151         }
7152
7153         if (ctx->max_resubmit_trigger && !ctx->resubmit_hook) {
7154             if (!hit_resubmit_limit) {
7155                 /* We didn't record the original flow.  Make sure we do from
7156                  * now on. */
7157                 hit_resubmit_limit = true;
7158             } else if (!VLOG_DROP_ERR(&trace_rl)) {
7159                 struct ds ds = DS_EMPTY_INITIALIZER;
7160
7161                 ofproto_trace(ctx->ofproto, &orig_flow, ctx->packet,
7162                               &initial_vals, &ds);
7163                 VLOG_ERR("Trace triggered by excessive resubmit "
7164                          "recursion:\n%s", ds_cstr(&ds));
7165                 ds_destroy(&ds);
7166             }
7167         }
7168
7169         local_odp_port = ofp_port_to_odp_port(ctx->ofproto, OFPP_LOCAL);
7170         if (!connmgr_may_set_up_flow(ctx->ofproto->up.connmgr, &ctx->flow,
7171                                      local_odp_port,
7172                                      ctx->odp_actions->data,
7173                                      ctx->odp_actions->size)) {
7174             ctx->slow |= SLOW_IN_BAND;
7175             if (ctx->packet
7176                 && connmgr_msg_in_hook(ctx->ofproto->up.connmgr, &ctx->flow,
7177                                        ctx->packet)) {
7178                 compose_output_action(ctx, OFPP_LOCAL);
7179             }
7180         }
7181         if (ctx->ofproto->has_mirrors) {
7182             add_mirror_actions(ctx, &orig_flow);
7183         }
7184         fix_sflow_action(ctx);
7185     }
7186
7187     ofpbuf_uninit(&ctx->stack);
7188 }
7189
7190 /* Translates the 'ofpacts_len' bytes of "struct ofpact"s starting at 'ofpacts'
7191  * into datapath actions, using 'ctx', and discards the datapath actions. */
7192 static void
7193 xlate_actions_for_side_effects(struct action_xlate_ctx *ctx,
7194                                const struct ofpact *ofpacts,
7195                                size_t ofpacts_len)
7196 {
7197     uint64_t odp_actions_stub[1024 / 8];
7198     struct ofpbuf odp_actions;
7199
7200     ofpbuf_use_stub(&odp_actions, odp_actions_stub, sizeof odp_actions_stub);
7201     xlate_actions(ctx, ofpacts, ofpacts_len, &odp_actions);
7202     ofpbuf_uninit(&odp_actions);
7203 }
7204
7205 static void
7206 xlate_report(struct action_xlate_ctx *ctx, const char *s)
7207 {
7208     if (ctx->report_hook) {
7209         ctx->report_hook(ctx, s);
7210     }
7211 }
7212 \f
7213 /* OFPP_NORMAL implementation. */
7214
7215 static struct ofport_dpif *ofbundle_get_a_port(const struct ofbundle *);
7216
7217 /* Given 'vid', the VID obtained from the 802.1Q header that was received as
7218  * part of a packet (specify 0 if there was no 802.1Q header), and 'in_bundle',
7219  * the bundle on which the packet was received, returns the VLAN to which the
7220  * packet belongs.
7221  *
7222  * Both 'vid' and the return value are in the range 0...4095. */
7223 static uint16_t
7224 input_vid_to_vlan(const struct ofbundle *in_bundle, uint16_t vid)
7225 {
7226     switch (in_bundle->vlan_mode) {
7227     case PORT_VLAN_ACCESS:
7228         return in_bundle->vlan;
7229         break;
7230
7231     case PORT_VLAN_TRUNK:
7232         return vid;
7233
7234     case PORT_VLAN_NATIVE_UNTAGGED:
7235     case PORT_VLAN_NATIVE_TAGGED:
7236         return vid ? vid : in_bundle->vlan;
7237
7238     default:
7239         NOT_REACHED();
7240     }
7241 }
7242
7243 /* Checks whether a packet with the given 'vid' may ingress on 'in_bundle'.
7244  * If so, returns true.  Otherwise, returns false and, if 'warn' is true, logs
7245  * a warning.
7246  *
7247  * 'vid' should be the VID obtained from the 802.1Q header that was received as
7248  * part of a packet (specify 0 if there was no 802.1Q header), in the range
7249  * 0...4095. */
7250 static bool
7251 input_vid_is_valid(uint16_t vid, struct ofbundle *in_bundle, bool warn)
7252 {
7253     /* Allow any VID on the OFPP_NONE port. */
7254     if (in_bundle == &ofpp_none_bundle) {
7255         return true;
7256     }
7257
7258     switch (in_bundle->vlan_mode) {
7259     case PORT_VLAN_ACCESS:
7260         if (vid) {
7261             if (warn) {
7262                 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
7263                 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %"PRIu16" tagged "
7264                              "packet received on port %s configured as VLAN "
7265                              "%"PRIu16" access port",
7266                              in_bundle->ofproto->up.name, vid,
7267                              in_bundle->name, in_bundle->vlan);
7268             }
7269             return false;
7270         }
7271         return true;
7272
7273     case PORT_VLAN_NATIVE_UNTAGGED:
7274     case PORT_VLAN_NATIVE_TAGGED:
7275         if (!vid) {
7276             /* Port must always carry its native VLAN. */
7277             return true;
7278         }
7279         /* Fall through. */
7280     case PORT_VLAN_TRUNK:
7281         if (!ofbundle_includes_vlan(in_bundle, vid)) {
7282             if (warn) {
7283                 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
7284                 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %"PRIu16" packet "
7285                              "received on port %s not configured for trunking "
7286                              "VLAN %"PRIu16,
7287                              in_bundle->ofproto->up.name, vid,
7288                              in_bundle->name, vid);
7289             }
7290             return false;
7291         }
7292         return true;
7293
7294     default:
7295         NOT_REACHED();
7296     }
7297
7298 }
7299
7300 /* Given 'vlan', the VLAN that a packet belongs to, and
7301  * 'out_bundle', a bundle on which the packet is to be output, returns the VID
7302  * that should be included in the 802.1Q header.  (If the return value is 0,
7303  * then the 802.1Q header should only be included in the packet if there is a
7304  * nonzero PCP.)
7305  *
7306  * Both 'vlan' and the return value are in the range 0...4095. */
7307 static uint16_t
7308 output_vlan_to_vid(const struct ofbundle *out_bundle, uint16_t vlan)
7309 {
7310     switch (out_bundle->vlan_mode) {
7311     case PORT_VLAN_ACCESS:
7312         return 0;
7313
7314     case PORT_VLAN_TRUNK:
7315     case PORT_VLAN_NATIVE_TAGGED:
7316         return vlan;
7317
7318     case PORT_VLAN_NATIVE_UNTAGGED:
7319         return vlan == out_bundle->vlan ? 0 : vlan;
7320
7321     default:
7322         NOT_REACHED();
7323     }
7324 }
7325
7326 static void
7327 output_normal(struct action_xlate_ctx *ctx, const struct ofbundle *out_bundle,
7328               uint16_t vlan)
7329 {
7330     struct ofport_dpif *port;
7331     uint16_t vid;
7332     ovs_be16 tci, old_tci;
7333
7334     vid = output_vlan_to_vid(out_bundle, vlan);
7335     if (!out_bundle->bond) {
7336         port = ofbundle_get_a_port(out_bundle);
7337     } else {
7338         port = bond_choose_output_slave(out_bundle->bond, &ctx->flow,
7339                                         vid, &ctx->tags);
7340         if (!port) {
7341             /* No slaves enabled, so drop packet. */
7342             return;
7343         }
7344     }
7345
7346     old_tci = ctx->flow.vlan_tci;
7347     tci = htons(vid);
7348     if (tci || out_bundle->use_priority_tags) {
7349         tci |= ctx->flow.vlan_tci & htons(VLAN_PCP_MASK);
7350         if (tci) {
7351             tci |= htons(VLAN_CFI);
7352         }
7353     }
7354     ctx->flow.vlan_tci = tci;
7355
7356     compose_output_action(ctx, port->up.ofp_port);
7357     ctx->flow.vlan_tci = old_tci;
7358 }
7359
7360 static int
7361 mirror_mask_ffs(mirror_mask_t mask)
7362 {
7363     BUILD_ASSERT_DECL(sizeof(unsigned int) >= sizeof(mask));
7364     return ffs(mask);
7365 }
7366
7367 static bool
7368 ofbundle_trunks_vlan(const struct ofbundle *bundle, uint16_t vlan)
7369 {
7370     return (bundle->vlan_mode != PORT_VLAN_ACCESS
7371             && (!bundle->trunks || bitmap_is_set(bundle->trunks, vlan)));
7372 }
7373
7374 static bool
7375 ofbundle_includes_vlan(const struct ofbundle *bundle, uint16_t vlan)
7376 {
7377     return vlan == bundle->vlan || ofbundle_trunks_vlan(bundle, vlan);
7378 }
7379
7380 /* Returns an arbitrary interface within 'bundle'. */
7381 static struct ofport_dpif *
7382 ofbundle_get_a_port(const struct ofbundle *bundle)
7383 {
7384     return CONTAINER_OF(list_front(&bundle->ports),
7385                         struct ofport_dpif, bundle_node);
7386 }
7387
7388 static bool
7389 vlan_is_mirrored(const struct ofmirror *m, int vlan)
7390 {
7391     return !m->vlans || bitmap_is_set(m->vlans, vlan);
7392 }
7393
7394 static void
7395 add_mirror_actions(struct action_xlate_ctx *ctx, const struct flow *orig_flow)
7396 {
7397     struct ofproto_dpif *ofproto = ctx->ofproto;
7398     mirror_mask_t mirrors;
7399     struct ofbundle *in_bundle;
7400     uint16_t vlan;
7401     uint16_t vid;
7402     const struct nlattr *a;
7403     size_t left;
7404
7405     in_bundle = lookup_input_bundle(ctx->ofproto, orig_flow->in_port,
7406                                     ctx->packet != NULL, NULL);
7407     if (!in_bundle) {
7408         return;
7409     }
7410     mirrors = in_bundle->src_mirrors;
7411
7412     /* Drop frames on bundles reserved for mirroring. */
7413     if (in_bundle->mirror_out) {
7414         if (ctx->packet != NULL) {
7415             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
7416             VLOG_WARN_RL(&rl, "bridge %s: dropping packet received on port "
7417                          "%s, which is reserved exclusively for mirroring",
7418                          ctx->ofproto->up.name, in_bundle->name);
7419         }
7420         return;
7421     }
7422
7423     /* Check VLAN. */
7424     vid = vlan_tci_to_vid(orig_flow->vlan_tci);
7425     if (!input_vid_is_valid(vid, in_bundle, ctx->packet != NULL)) {
7426         return;
7427     }
7428     vlan = input_vid_to_vlan(in_bundle, vid);
7429
7430     /* Look at the output ports to check for destination selections. */
7431
7432     NL_ATTR_FOR_EACH (a, left, ctx->odp_actions->data,
7433                       ctx->odp_actions->size) {
7434         enum ovs_action_attr type = nl_attr_type(a);
7435         struct ofport_dpif *ofport;
7436
7437         if (type != OVS_ACTION_ATTR_OUTPUT) {
7438             continue;
7439         }
7440
7441         ofport = get_odp_port(ofproto, nl_attr_get_u32(a));
7442         if (ofport && ofport->bundle) {
7443             mirrors |= ofport->bundle->dst_mirrors;
7444         }
7445     }
7446
7447     if (!mirrors) {
7448         return;
7449     }
7450
7451     /* Restore the original packet before adding the mirror actions. */
7452     ctx->flow = *orig_flow;
7453
7454     while (mirrors) {
7455         struct ofmirror *m;
7456
7457         m = ofproto->mirrors[mirror_mask_ffs(mirrors) - 1];
7458
7459         if (!vlan_is_mirrored(m, vlan)) {
7460             mirrors = zero_rightmost_1bit(mirrors);
7461             continue;
7462         }
7463
7464         mirrors &= ~m->dup_mirrors;
7465         ctx->mirrors |= m->dup_mirrors;
7466         if (m->out) {
7467             output_normal(ctx, m->out, vlan);
7468         } else if (vlan != m->out_vlan
7469                    && !eth_addr_is_reserved(orig_flow->dl_dst)) {
7470             struct ofbundle *bundle;
7471
7472             HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
7473                 if (ofbundle_includes_vlan(bundle, m->out_vlan)
7474                     && !bundle->mirror_out) {
7475                     output_normal(ctx, bundle, m->out_vlan);
7476                 }
7477             }
7478         }
7479     }
7480 }
7481
7482 static void
7483 update_mirror_stats(struct ofproto_dpif *ofproto, mirror_mask_t mirrors,
7484                     uint64_t packets, uint64_t bytes)
7485 {
7486     if (!mirrors) {
7487         return;
7488     }
7489
7490     for (; mirrors; mirrors = zero_rightmost_1bit(mirrors)) {
7491         struct ofmirror *m;
7492
7493         m = ofproto->mirrors[mirror_mask_ffs(mirrors) - 1];
7494
7495         if (!m) {
7496             /* In normal circumstances 'm' will not be NULL.  However,
7497              * if mirrors are reconfigured, we can temporarily get out
7498              * of sync in facet_revalidate().  We could "correct" the
7499              * mirror list before reaching here, but doing that would
7500              * not properly account the traffic stats we've currently
7501              * accumulated for previous mirror configuration. */
7502             continue;
7503         }
7504
7505         m->packet_count += packets;
7506         m->byte_count += bytes;
7507     }
7508 }
7509
7510 /* A VM broadcasts a gratuitous ARP to indicate that it has resumed after
7511  * migration.  Older Citrix-patched Linux DomU used gratuitous ARP replies to
7512  * indicate this; newer upstream kernels use gratuitous ARP requests. */
7513 static bool
7514 is_gratuitous_arp(const struct flow *flow)
7515 {
7516     return (flow->dl_type == htons(ETH_TYPE_ARP)
7517             && eth_addr_is_broadcast(flow->dl_dst)
7518             && (flow->nw_proto == ARP_OP_REPLY
7519                 || (flow->nw_proto == ARP_OP_REQUEST
7520                     && flow->nw_src == flow->nw_dst)));
7521 }
7522
7523 static void
7524 update_learning_table(struct ofproto_dpif *ofproto,
7525                       const struct flow *flow, int vlan,
7526                       struct ofbundle *in_bundle)
7527 {
7528     struct mac_entry *mac;
7529
7530     /* Don't learn the OFPP_NONE port. */
7531     if (in_bundle == &ofpp_none_bundle) {
7532         return;
7533     }
7534
7535     if (!mac_learning_may_learn(ofproto->ml, flow->dl_src, vlan)) {
7536         return;
7537     }
7538
7539     mac = mac_learning_insert(ofproto->ml, flow->dl_src, vlan);
7540     if (is_gratuitous_arp(flow)) {
7541         /* We don't want to learn from gratuitous ARP packets that are
7542          * reflected back over bond slaves so we lock the learning table. */
7543         if (!in_bundle->bond) {
7544             mac_entry_set_grat_arp_lock(mac);
7545         } else if (mac_entry_is_grat_arp_locked(mac)) {
7546             return;
7547         }
7548     }
7549
7550     if (mac_entry_is_new(mac) || mac->port.p != in_bundle) {
7551         /* The log messages here could actually be useful in debugging,
7552          * so keep the rate limit relatively high. */
7553         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(30, 300);
7554         VLOG_DBG_RL(&rl, "bridge %s: learned that "ETH_ADDR_FMT" is "
7555                     "on port %s in VLAN %d",
7556                     ofproto->up.name, ETH_ADDR_ARGS(flow->dl_src),
7557                     in_bundle->name, vlan);
7558
7559         mac->port.p = in_bundle;
7560         tag_set_add(&ofproto->backer->revalidate_set,
7561                     mac_learning_changed(ofproto->ml, mac));
7562     }
7563 }
7564
7565 static struct ofbundle *
7566 lookup_input_bundle(const struct ofproto_dpif *ofproto, uint16_t in_port,
7567                     bool warn, struct ofport_dpif **in_ofportp)
7568 {
7569     struct ofport_dpif *ofport;
7570
7571     /* Find the port and bundle for the received packet. */
7572     ofport = get_ofp_port(ofproto, in_port);
7573     if (in_ofportp) {
7574         *in_ofportp = ofport;
7575     }
7576     if (ofport && ofport->bundle) {
7577         return ofport->bundle;
7578     }
7579
7580     /* Special-case OFPP_NONE, which a controller may use as the ingress
7581      * port for traffic that it is sourcing. */
7582     if (in_port == OFPP_NONE) {
7583         return &ofpp_none_bundle;
7584     }
7585
7586     /* Odd.  A few possible reasons here:
7587      *
7588      * - We deleted a port but there are still a few packets queued up
7589      *   from it.
7590      *
7591      * - Someone externally added a port (e.g. "ovs-dpctl add-if") that
7592      *   we don't know about.
7593      *
7594      * - The ofproto client didn't configure the port as part of a bundle.
7595      *   This is particularly likely to happen if a packet was received on the
7596      *   port after it was created, but before the client had a chance to
7597      *   configure its bundle.
7598      */
7599     if (warn) {
7600         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
7601
7602         VLOG_WARN_RL(&rl, "bridge %s: received packet on unknown "
7603                      "port %"PRIu16, ofproto->up.name, in_port);
7604     }
7605     return NULL;
7606 }
7607
7608 /* Determines whether packets in 'flow' within 'ofproto' should be forwarded or
7609  * dropped.  Returns true if they may be forwarded, false if they should be
7610  * dropped.
7611  *
7612  * 'in_port' must be the ofport_dpif that corresponds to flow->in_port.
7613  * 'in_port' must be part of a bundle (e.g. in_port->bundle must be nonnull).
7614  *
7615  * 'vlan' must be the VLAN that corresponds to flow->vlan_tci on 'in_port', as
7616  * returned by input_vid_to_vlan().  It must be a valid VLAN for 'in_port', as
7617  * checked by input_vid_is_valid().
7618  *
7619  * May also add tags to '*tags', although the current implementation only does
7620  * so in one special case.
7621  */
7622 static bool
7623 is_admissible(struct action_xlate_ctx *ctx, struct ofport_dpif *in_port,
7624               uint16_t vlan)
7625 {
7626     struct ofproto_dpif *ofproto = ctx->ofproto;
7627     struct flow *flow = &ctx->flow;
7628     struct ofbundle *in_bundle = in_port->bundle;
7629
7630     /* Drop frames for reserved multicast addresses
7631      * only if forward_bpdu option is absent. */
7632     if (!ofproto->up.forward_bpdu && eth_addr_is_reserved(flow->dl_dst)) {
7633         xlate_report(ctx, "packet has reserved destination MAC, dropping");
7634         return false;
7635     }
7636
7637     if (in_bundle->bond) {
7638         struct mac_entry *mac;
7639
7640         switch (bond_check_admissibility(in_bundle->bond, in_port,
7641                                          flow->dl_dst, &ctx->tags)) {
7642         case BV_ACCEPT:
7643             break;
7644
7645         case BV_DROP:
7646             xlate_report(ctx, "bonding refused admissibility, dropping");
7647             return false;
7648
7649         case BV_DROP_IF_MOVED:
7650             mac = mac_learning_lookup(ofproto->ml, flow->dl_src, vlan, NULL);
7651             if (mac && mac->port.p != in_bundle &&
7652                 (!is_gratuitous_arp(flow)
7653                  || mac_entry_is_grat_arp_locked(mac))) {
7654                 xlate_report(ctx, "SLB bond thinks this packet looped back, "
7655                             "dropping");
7656                 return false;
7657             }
7658             break;
7659         }
7660     }
7661
7662     return true;
7663 }
7664
7665 static void
7666 xlate_normal(struct action_xlate_ctx *ctx)
7667 {
7668     struct ofport_dpif *in_port;
7669     struct ofbundle *in_bundle;
7670     struct mac_entry *mac;
7671     uint16_t vlan;
7672     uint16_t vid;
7673
7674     ctx->has_normal = true;
7675
7676     in_bundle = lookup_input_bundle(ctx->ofproto, ctx->flow.in_port,
7677                                     ctx->packet != NULL, &in_port);
7678     if (!in_bundle) {
7679         xlate_report(ctx, "no input bundle, dropping");
7680         return;
7681     }
7682
7683     /* Drop malformed frames. */
7684     if (ctx->flow.dl_type == htons(ETH_TYPE_VLAN) &&
7685         !(ctx->flow.vlan_tci & htons(VLAN_CFI))) {
7686         if (ctx->packet != NULL) {
7687             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
7688             VLOG_WARN_RL(&rl, "bridge %s: dropping packet with partial "
7689                          "VLAN tag received on port %s",
7690                          ctx->ofproto->up.name, in_bundle->name);
7691         }
7692         xlate_report(ctx, "partial VLAN tag, dropping");
7693         return;
7694     }
7695
7696     /* Drop frames on bundles reserved for mirroring. */
7697     if (in_bundle->mirror_out) {
7698         if (ctx->packet != NULL) {
7699             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
7700             VLOG_WARN_RL(&rl, "bridge %s: dropping packet received on port "
7701                          "%s, which is reserved exclusively for mirroring",
7702                          ctx->ofproto->up.name, in_bundle->name);
7703         }
7704         xlate_report(ctx, "input port is mirror output port, dropping");
7705         return;
7706     }
7707
7708     /* Check VLAN. */
7709     vid = vlan_tci_to_vid(ctx->flow.vlan_tci);
7710     if (!input_vid_is_valid(vid, in_bundle, ctx->packet != NULL)) {
7711         xlate_report(ctx, "disallowed VLAN VID for this input port, dropping");
7712         return;
7713     }
7714     vlan = input_vid_to_vlan(in_bundle, vid);
7715
7716     /* Check other admissibility requirements. */
7717     if (in_port && !is_admissible(ctx, in_port, vlan)) {
7718         return;
7719     }
7720
7721     /* Learn source MAC. */
7722     if (ctx->may_learn) {
7723         update_learning_table(ctx->ofproto, &ctx->flow, vlan, in_bundle);
7724     }
7725
7726     /* Determine output bundle. */
7727     mac = mac_learning_lookup(ctx->ofproto->ml, ctx->flow.dl_dst, vlan,
7728                               &ctx->tags);
7729     if (mac) {
7730         if (mac->port.p != in_bundle) {
7731             xlate_report(ctx, "forwarding to learned port");
7732             output_normal(ctx, mac->port.p, vlan);
7733         } else {
7734             xlate_report(ctx, "learned port is input port, dropping");
7735         }
7736     } else {
7737         struct ofbundle *bundle;
7738
7739         xlate_report(ctx, "no learned MAC for destination, flooding");
7740         HMAP_FOR_EACH (bundle, hmap_node, &ctx->ofproto->bundles) {
7741             if (bundle != in_bundle
7742                 && ofbundle_includes_vlan(bundle, vlan)
7743                 && bundle->floodable
7744                 && !bundle->mirror_out) {
7745                 output_normal(ctx, bundle, vlan);
7746             }
7747         }
7748         ctx->nf_output_iface = NF_OUT_FLOOD;
7749     }
7750 }
7751 \f
7752 /* Optimized flow revalidation.
7753  *
7754  * It's a difficult problem, in general, to tell which facets need to have
7755  * their actions recalculated whenever the OpenFlow flow table changes.  We
7756  * don't try to solve that general problem: for most kinds of OpenFlow flow
7757  * table changes, we recalculate the actions for every facet.  This is
7758  * relatively expensive, but it's good enough if the OpenFlow flow table
7759  * doesn't change very often.
7760  *
7761  * However, we can expect one particular kind of OpenFlow flow table change to
7762  * happen frequently: changes caused by MAC learning.  To avoid wasting a lot
7763  * of CPU on revalidating every facet whenever MAC learning modifies the flow
7764  * table, we add a special case that applies to flow tables in which every rule
7765  * has the same form (that is, the same wildcards), except that the table is
7766  * also allowed to have a single "catch-all" flow that matches all packets.  We
7767  * optimize this case by tagging all of the facets that resubmit into the table
7768  * and invalidating the same tag whenever a flow changes in that table.  The
7769  * end result is that we revalidate just the facets that need it (and sometimes
7770  * a few more, but not all of the facets or even all of the facets that
7771  * resubmit to the table modified by MAC learning). */
7772
7773 /* Calculates the tag to use for 'flow' and mask 'mask' when it is inserted
7774  * into an OpenFlow table with the given 'basis'. */
7775 static tag_type
7776 rule_calculate_tag(const struct flow *flow, const struct minimask *mask,
7777                    uint32_t secret)
7778 {
7779     if (minimask_is_catchall(mask)) {
7780         return 0;
7781     } else {
7782         uint32_t hash = flow_hash_in_minimask(flow, mask, secret);
7783         return tag_create_deterministic(hash);
7784     }
7785 }
7786
7787 /* Following a change to OpenFlow table 'table_id' in 'ofproto', update the
7788  * taggability of that table.
7789  *
7790  * This function must be called after *each* change to a flow table.  If you
7791  * skip calling it on some changes then the pointer comparisons at the end can
7792  * be invalid if you get unlucky.  For example, if a flow removal causes a
7793  * cls_table to be destroyed and then a flow insertion causes a cls_table with
7794  * different wildcards to be created with the same address, then this function
7795  * will incorrectly skip revalidation. */
7796 static void
7797 table_update_taggable(struct ofproto_dpif *ofproto, uint8_t table_id)
7798 {
7799     struct table_dpif *table = &ofproto->tables[table_id];
7800     const struct oftable *oftable = &ofproto->up.tables[table_id];
7801     struct cls_table *catchall, *other;
7802     struct cls_table *t;
7803
7804     catchall = other = NULL;
7805
7806     switch (hmap_count(&oftable->cls.tables)) {
7807     case 0:
7808         /* We could tag this OpenFlow table but it would make the logic a
7809          * little harder and it's a corner case that doesn't seem worth it
7810          * yet. */
7811         break;
7812
7813     case 1:
7814     case 2:
7815         HMAP_FOR_EACH (t, hmap_node, &oftable->cls.tables) {
7816             if (cls_table_is_catchall(t)) {
7817                 catchall = t;
7818             } else if (!other) {
7819                 other = t;
7820             } else {
7821                 /* Indicate that we can't tag this by setting both tables to
7822                  * NULL.  (We know that 'catchall' is already NULL.) */
7823                 other = NULL;
7824             }
7825         }
7826         break;
7827
7828     default:
7829         /* Can't tag this table. */
7830         break;
7831     }
7832
7833     if (table->catchall_table != catchall || table->other_table != other) {
7834         table->catchall_table = catchall;
7835         table->other_table = other;
7836         ofproto->backer->need_revalidate = REV_FLOW_TABLE;
7837     }
7838 }
7839
7840 /* Given 'rule' that has changed in some way (either it is a rule being
7841  * inserted, a rule being deleted, or a rule whose actions are being
7842  * modified), marks facets for revalidation to ensure that packets will be
7843  * forwarded correctly according to the new state of the flow table.
7844  *
7845  * This function must be called after *each* change to a flow table.  See
7846  * the comment on table_update_taggable() for more information. */
7847 static void
7848 rule_invalidate(const struct rule_dpif *rule)
7849 {
7850     struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
7851
7852     table_update_taggable(ofproto, rule->up.table_id);
7853
7854     if (!ofproto->backer->need_revalidate) {
7855         struct table_dpif *table = &ofproto->tables[rule->up.table_id];
7856
7857         if (table->other_table && rule->tag) {
7858             tag_set_add(&ofproto->backer->revalidate_set, rule->tag);
7859         } else {
7860             ofproto->backer->need_revalidate = REV_FLOW_TABLE;
7861         }
7862     }
7863 }
7864 \f
7865 static bool
7866 set_frag_handling(struct ofproto *ofproto_,
7867                   enum ofp_config_flags frag_handling)
7868 {
7869     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
7870     if (frag_handling != OFPC_FRAG_REASM) {
7871         ofproto->backer->need_revalidate = REV_RECONFIGURE;
7872         return true;
7873     } else {
7874         return false;
7875     }
7876 }
7877
7878 static enum ofperr
7879 packet_out(struct ofproto *ofproto_, struct ofpbuf *packet,
7880            const struct flow *flow,
7881            const struct ofpact *ofpacts, size_t ofpacts_len)
7882 {
7883     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
7884     struct initial_vals initial_vals;
7885     struct odputil_keybuf keybuf;
7886     struct dpif_flow_stats stats;
7887
7888     struct ofpbuf key;
7889
7890     struct action_xlate_ctx ctx;
7891     uint64_t odp_actions_stub[1024 / 8];
7892     struct ofpbuf odp_actions;
7893
7894     ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
7895     odp_flow_key_from_flow(&key, flow,
7896                            ofp_port_to_odp_port(ofproto, flow->in_port));
7897
7898     dpif_flow_stats_extract(flow, packet, time_msec(), &stats);
7899
7900     initial_vals.vlan_tci = flow->vlan_tci;
7901     action_xlate_ctx_init(&ctx, ofproto, flow, &initial_vals, NULL,
7902                           packet_get_tcp_flags(packet, flow), packet);
7903     ctx.resubmit_stats = &stats;
7904
7905     ofpbuf_use_stub(&odp_actions,
7906                     odp_actions_stub, sizeof odp_actions_stub);
7907     xlate_actions(&ctx, ofpacts, ofpacts_len, &odp_actions);
7908     dpif_execute(ofproto->backer->dpif, key.data, key.size,
7909                  odp_actions.data, odp_actions.size, packet);
7910     ofpbuf_uninit(&odp_actions);
7911
7912     return 0;
7913 }
7914 \f
7915 /* NetFlow. */
7916
7917 static int
7918 set_netflow(struct ofproto *ofproto_,
7919             const struct netflow_options *netflow_options)
7920 {
7921     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
7922
7923     if (netflow_options) {
7924         if (!ofproto->netflow) {
7925             ofproto->netflow = netflow_create();
7926         }
7927         return netflow_set_options(ofproto->netflow, netflow_options);
7928     } else {
7929         netflow_destroy(ofproto->netflow);
7930         ofproto->netflow = NULL;
7931         return 0;
7932     }
7933 }
7934
7935 static void
7936 get_netflow_ids(const struct ofproto *ofproto_,
7937                 uint8_t *engine_type, uint8_t *engine_id)
7938 {
7939     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
7940
7941     dpif_get_netflow_ids(ofproto->backer->dpif, engine_type, engine_id);
7942 }
7943
7944 static void
7945 send_active_timeout(struct ofproto_dpif *ofproto, struct facet *facet)
7946 {
7947     if (!facet_is_controller_flow(facet) &&
7948         netflow_active_timeout_expired(ofproto->netflow, &facet->nf_flow)) {
7949         struct subfacet *subfacet;
7950         struct ofexpired expired;
7951
7952         LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
7953             if (subfacet->path == SF_FAST_PATH) {
7954                 struct dpif_flow_stats stats;
7955
7956                 subfacet_reinstall(subfacet, &stats);
7957                 subfacet_update_stats(subfacet, &stats);
7958             }
7959         }
7960
7961         expired.flow = facet->flow;
7962         expired.packet_count = facet->packet_count;
7963         expired.byte_count = facet->byte_count;
7964         expired.used = facet->used;
7965         netflow_expire(ofproto->netflow, &facet->nf_flow, &expired);
7966     }
7967 }
7968
7969 static void
7970 send_netflow_active_timeouts(struct ofproto_dpif *ofproto)
7971 {
7972     struct facet *facet;
7973
7974     HMAP_FOR_EACH (facet, hmap_node, &ofproto->facets) {
7975         send_active_timeout(ofproto, facet);
7976     }
7977 }
7978 \f
7979 static struct ofproto_dpif *
7980 ofproto_dpif_lookup(const char *name)
7981 {
7982     struct ofproto_dpif *ofproto;
7983
7984     HMAP_FOR_EACH_WITH_HASH (ofproto, all_ofproto_dpifs_node,
7985                              hash_string(name, 0), &all_ofproto_dpifs) {
7986         if (!strcmp(ofproto->up.name, name)) {
7987             return ofproto;
7988         }
7989     }
7990     return NULL;
7991 }
7992
7993 static void
7994 ofproto_unixctl_fdb_flush(struct unixctl_conn *conn, int argc,
7995                           const char *argv[], void *aux OVS_UNUSED)
7996 {
7997     struct ofproto_dpif *ofproto;
7998
7999     if (argc > 1) {
8000         ofproto = ofproto_dpif_lookup(argv[1]);
8001         if (!ofproto) {
8002             unixctl_command_reply_error(conn, "no such bridge");
8003             return;
8004         }
8005         mac_learning_flush(ofproto->ml, &ofproto->backer->revalidate_set);
8006     } else {
8007         HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
8008             mac_learning_flush(ofproto->ml, &ofproto->backer->revalidate_set);
8009         }
8010     }
8011
8012     unixctl_command_reply(conn, "table successfully flushed");
8013 }
8014
8015 static void
8016 ofproto_unixctl_fdb_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
8017                          const char *argv[], void *aux OVS_UNUSED)
8018 {
8019     struct ds ds = DS_EMPTY_INITIALIZER;
8020     const struct ofproto_dpif *ofproto;
8021     const struct mac_entry *e;
8022
8023     ofproto = ofproto_dpif_lookup(argv[1]);
8024     if (!ofproto) {
8025         unixctl_command_reply_error(conn, "no such bridge");
8026         return;
8027     }
8028
8029     ds_put_cstr(&ds, " port  VLAN  MAC                Age\n");
8030     LIST_FOR_EACH (e, lru_node, &ofproto->ml->lrus) {
8031         struct ofbundle *bundle = e->port.p;
8032         ds_put_format(&ds, "%5d  %4d  "ETH_ADDR_FMT"  %3d\n",
8033                       ofbundle_get_a_port(bundle)->odp_port,
8034                       e->vlan, ETH_ADDR_ARGS(e->mac),
8035                       mac_entry_age(ofproto->ml, e));
8036     }
8037     unixctl_command_reply(conn, ds_cstr(&ds));
8038     ds_destroy(&ds);
8039 }
8040
8041 struct trace_ctx {
8042     struct action_xlate_ctx ctx;
8043     struct flow flow;
8044     struct ds *result;
8045 };
8046
8047 static void
8048 trace_format_rule(struct ds *result, uint8_t table_id, int level,
8049                   const struct rule_dpif *rule)
8050 {
8051     ds_put_char_multiple(result, '\t', level);
8052     if (!rule) {
8053         ds_put_cstr(result, "No match\n");
8054         return;
8055     }
8056
8057     ds_put_format(result, "Rule: table=%"PRIu8" cookie=%#"PRIx64" ",
8058                   table_id, ntohll(rule->up.flow_cookie));
8059     cls_rule_format(&rule->up.cr, result);
8060     ds_put_char(result, '\n');
8061
8062     ds_put_char_multiple(result, '\t', level);
8063     ds_put_cstr(result, "OpenFlow ");
8064     ofpacts_format(rule->up.ofpacts, rule->up.ofpacts_len, result);
8065     ds_put_char(result, '\n');
8066 }
8067
8068 static void
8069 trace_format_flow(struct ds *result, int level, const char *title,
8070                  struct trace_ctx *trace)
8071 {
8072     ds_put_char_multiple(result, '\t', level);
8073     ds_put_format(result, "%s: ", title);
8074     if (flow_equal(&trace->ctx.flow, &trace->flow)) {
8075         ds_put_cstr(result, "unchanged");
8076     } else {
8077         flow_format(result, &trace->ctx.flow);
8078         trace->flow = trace->ctx.flow;
8079     }
8080     ds_put_char(result, '\n');
8081 }
8082
8083 static void
8084 trace_format_regs(struct ds *result, int level, const char *title,
8085                   struct trace_ctx *trace)
8086 {
8087     size_t i;
8088
8089     ds_put_char_multiple(result, '\t', level);
8090     ds_put_format(result, "%s:", title);
8091     for (i = 0; i < FLOW_N_REGS; i++) {
8092         ds_put_format(result, " reg%zu=0x%"PRIx32, i, trace->flow.regs[i]);
8093     }
8094     ds_put_char(result, '\n');
8095 }
8096
8097 static void
8098 trace_format_odp(struct ds *result, int level, const char *title,
8099                  struct trace_ctx *trace)
8100 {
8101     struct ofpbuf *odp_actions = trace->ctx.odp_actions;
8102
8103     ds_put_char_multiple(result, '\t', level);
8104     ds_put_format(result, "%s: ", title);
8105     format_odp_actions(result, odp_actions->data, odp_actions->size);
8106     ds_put_char(result, '\n');
8107 }
8108
8109 static void
8110 trace_resubmit(struct action_xlate_ctx *ctx, struct rule_dpif *rule)
8111 {
8112     struct trace_ctx *trace = CONTAINER_OF(ctx, struct trace_ctx, ctx);
8113     struct ds *result = trace->result;
8114
8115     ds_put_char(result, '\n');
8116     trace_format_flow(result, ctx->recurse + 1, "Resubmitted flow", trace);
8117     trace_format_regs(result, ctx->recurse + 1, "Resubmitted regs", trace);
8118     trace_format_odp(result,  ctx->recurse + 1, "Resubmitted  odp", trace);
8119     trace_format_rule(result, ctx->table_id, ctx->recurse + 1, rule);
8120 }
8121
8122 static void
8123 trace_report(struct action_xlate_ctx *ctx, const char *s)
8124 {
8125     struct trace_ctx *trace = CONTAINER_OF(ctx, struct trace_ctx, ctx);
8126     struct ds *result = trace->result;
8127
8128     ds_put_char_multiple(result, '\t', ctx->recurse);
8129     ds_put_cstr(result, s);
8130     ds_put_char(result, '\n');
8131 }
8132
8133 static void
8134 ofproto_unixctl_trace(struct unixctl_conn *conn, int argc, const char *argv[],
8135                       void *aux OVS_UNUSED)
8136 {
8137     const struct dpif_backer *backer;
8138     struct ofproto_dpif *ofproto;
8139     struct ofpbuf odp_key;
8140     struct ofpbuf *packet;
8141     struct initial_vals initial_vals;
8142     struct ds result;
8143     struct flow flow;
8144     char *s;
8145
8146     packet = NULL;
8147     backer = NULL;
8148     ds_init(&result);
8149     ofpbuf_init(&odp_key, 0);
8150
8151     /* Handle "-generate" or a hex string as the last argument. */
8152     if (!strcmp(argv[argc - 1], "-generate")) {
8153         packet = ofpbuf_new(0);
8154         argc--;
8155     } else {
8156         const char *error = eth_from_hex(argv[argc - 1], &packet);
8157         if (!error) {
8158             argc--;
8159         } else if (argc == 4) {
8160             /* The 3-argument form must end in "-generate' or a hex string. */
8161             unixctl_command_reply_error(conn, error);
8162             goto exit;
8163         }
8164     }
8165
8166     /* Parse the flow and determine whether a datapath or
8167      * bridge is specified. If function odp_flow_key_from_string()
8168      * returns 0, the flow is a odp_flow. If function
8169      * parse_ofp_exact_flow() returns 0, the flow is a br_flow. */
8170     if (!odp_flow_key_from_string(argv[argc - 1], NULL, &odp_key)) {
8171         /* If the odp_flow is the second argument,
8172          * the datapath name is the first argument. */
8173         if (argc == 3) {
8174             const char *dp_type;
8175             if (!strncmp(argv[1], "ovs-", 4)) {
8176                 dp_type = argv[1] + 4;
8177             } else {
8178                 dp_type = argv[1];
8179             }
8180             backer = shash_find_data(&all_dpif_backers, dp_type);
8181             if (!backer) {
8182                 unixctl_command_reply_error(conn, "Cannot find datapath "
8183                                "of this name");
8184                 goto exit;
8185             }
8186         } else {
8187             /* No datapath name specified, so there should be only one
8188              * datapath. */
8189             struct shash_node *node;
8190             if (shash_count(&all_dpif_backers) != 1) {
8191                 unixctl_command_reply_error(conn, "Must specify datapath "
8192                          "name, there is more than one type of datapath");
8193                 goto exit;
8194             }
8195             node = shash_first(&all_dpif_backers);
8196             backer = node->data;
8197         }
8198
8199         /* Extract the ofproto_dpif object from the ofproto_receive()
8200          * function. */
8201         if (ofproto_receive(backer, NULL, odp_key.data,
8202                             odp_key.size, &flow, NULL, &ofproto, NULL,
8203                             &initial_vals)) {
8204             unixctl_command_reply_error(conn, "Invalid datapath flow");
8205             goto exit;
8206         }
8207         ds_put_format(&result, "Bridge: %s\n", ofproto->up.name);
8208     } else if (!parse_ofp_exact_flow(&flow, argv[argc - 1])) {
8209         if (argc != 3) {
8210             unixctl_command_reply_error(conn, "Must specify bridge name");
8211             goto exit;
8212         }
8213
8214         ofproto = ofproto_dpif_lookup(argv[1]);
8215         if (!ofproto) {
8216             unixctl_command_reply_error(conn, "Unknown bridge name");
8217             goto exit;
8218         }
8219         initial_vals.vlan_tci = flow.vlan_tci;
8220     } else {
8221         unixctl_command_reply_error(conn, "Bad flow syntax");
8222         goto exit;
8223     }
8224
8225     /* Generate a packet, if requested. */
8226     if (packet) {
8227         if (!packet->size) {
8228             flow_compose(packet, &flow);
8229         } else {
8230             ds_put_cstr(&result, "Packet: ");
8231             s = ofp_packet_to_string(packet->data, packet->size);
8232             ds_put_cstr(&result, s);
8233             free(s);
8234
8235             /* Use the metadata from the flow and the packet argument
8236              * to reconstruct the flow. */
8237             flow_extract(packet, flow.skb_priority, flow.skb_mark, NULL,
8238                          flow.in_port, &flow);
8239             initial_vals.vlan_tci = flow.vlan_tci;
8240         }
8241     }
8242
8243     ofproto_trace(ofproto, &flow, packet, &initial_vals, &result);
8244     unixctl_command_reply(conn, ds_cstr(&result));
8245
8246 exit:
8247     ds_destroy(&result);
8248     ofpbuf_delete(packet);
8249     ofpbuf_uninit(&odp_key);
8250 }
8251
8252 static void
8253 ofproto_trace(struct ofproto_dpif *ofproto, const struct flow *flow,
8254               const struct ofpbuf *packet,
8255               const struct initial_vals *initial_vals, struct ds *ds)
8256 {
8257     struct rule_dpif *rule;
8258
8259     ds_put_cstr(ds, "Flow: ");
8260     flow_format(ds, flow);
8261     ds_put_char(ds, '\n');
8262
8263     rule = rule_dpif_lookup(ofproto, flow);
8264
8265     trace_format_rule(ds, 0, 0, rule);
8266     if (rule == ofproto->miss_rule) {
8267         ds_put_cstr(ds, "\nNo match, flow generates \"packet in\"s.\n");
8268     } else if (rule == ofproto->no_packet_in_rule) {
8269         ds_put_cstr(ds, "\nNo match, packets dropped because "
8270                     "OFPPC_NO_PACKET_IN is set on in_port.\n");
8271     }
8272
8273     if (rule) {
8274         uint64_t odp_actions_stub[1024 / 8];
8275         struct ofpbuf odp_actions;
8276
8277         struct trace_ctx trace;
8278         uint8_t tcp_flags;
8279
8280         tcp_flags = packet ? packet_get_tcp_flags(packet, flow) : 0;
8281         trace.result = ds;
8282         trace.flow = *flow;
8283         ofpbuf_use_stub(&odp_actions,
8284                         odp_actions_stub, sizeof odp_actions_stub);
8285         action_xlate_ctx_init(&trace.ctx, ofproto, flow, initial_vals,
8286                               rule, tcp_flags, packet);
8287         trace.ctx.resubmit_hook = trace_resubmit;
8288         trace.ctx.report_hook = trace_report;
8289         xlate_actions(&trace.ctx, rule->up.ofpacts, rule->up.ofpacts_len,
8290                       &odp_actions);
8291
8292         ds_put_char(ds, '\n');
8293         trace_format_flow(ds, 0, "Final flow", &trace);
8294         ds_put_cstr(ds, "Datapath actions: ");
8295         format_odp_actions(ds, odp_actions.data, odp_actions.size);
8296         ofpbuf_uninit(&odp_actions);
8297
8298         if (trace.ctx.slow) {
8299             enum slow_path_reason slow;
8300
8301             ds_put_cstr(ds, "\nThis flow is handled by the userspace "
8302                         "slow path because it:");
8303             for (slow = trace.ctx.slow; slow; ) {
8304                 enum slow_path_reason bit = rightmost_1bit(slow);
8305
8306                 switch (bit) {
8307                 case SLOW_CFM:
8308                     ds_put_cstr(ds, "\n\t- Consists of CFM packets.");
8309                     break;
8310                 case SLOW_LACP:
8311                     ds_put_cstr(ds, "\n\t- Consists of LACP packets.");
8312                     break;
8313                 case SLOW_STP:
8314                     ds_put_cstr(ds, "\n\t- Consists of STP packets.");
8315                     break;
8316                 case SLOW_BFD:
8317                     ds_put_cstr(ds, "\n\t- Consists of BFD packets.");
8318                     break;
8319                 case SLOW_IN_BAND:
8320                     ds_put_cstr(ds, "\n\t- Needs in-band special case "
8321                                 "processing.");
8322                     if (!packet) {
8323                         ds_put_cstr(ds, "\n\t  (The datapath actions are "
8324                                     "incomplete--for complete actions, "
8325                                     "please supply a packet.)");
8326                     }
8327                     break;
8328                 case SLOW_CONTROLLER:
8329                     ds_put_cstr(ds, "\n\t- Sends \"packet-in\" messages "
8330                                 "to the OpenFlow controller.");
8331                     break;
8332                 case SLOW_MATCH:
8333                     ds_put_cstr(ds, "\n\t- Needs more specific matching "
8334                                 "than the datapath supports.");
8335                     break;
8336                 }
8337
8338                 slow &= ~bit;
8339             }
8340
8341             if (slow & ~SLOW_MATCH) {
8342                 ds_put_cstr(ds, "\nThe datapath actions above do not reflect "
8343                             "the special slow-path processing.");
8344             }
8345         }
8346     }
8347 }
8348
8349 static void
8350 ofproto_dpif_clog(struct unixctl_conn *conn OVS_UNUSED, int argc OVS_UNUSED,
8351                   const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
8352 {
8353     clogged = true;
8354     unixctl_command_reply(conn, NULL);
8355 }
8356
8357 static void
8358 ofproto_dpif_unclog(struct unixctl_conn *conn OVS_UNUSED, int argc OVS_UNUSED,
8359                     const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
8360 {
8361     clogged = false;
8362     unixctl_command_reply(conn, NULL);
8363 }
8364
8365 /* Runs a self-check of flow translations in 'ofproto'.  Appends a message to
8366  * 'reply' describing the results. */
8367 static void
8368 ofproto_dpif_self_check__(struct ofproto_dpif *ofproto, struct ds *reply)
8369 {
8370     struct facet *facet;
8371     int errors;
8372
8373     errors = 0;
8374     HMAP_FOR_EACH (facet, hmap_node, &ofproto->facets) {
8375         if (!facet_check_consistency(facet)) {
8376             errors++;
8377         }
8378     }
8379     if (errors) {
8380         ofproto->backer->need_revalidate = REV_INCONSISTENCY;
8381     }
8382
8383     if (errors) {
8384         ds_put_format(reply, "%s: self-check failed (%d errors)\n",
8385                       ofproto->up.name, errors);
8386     } else {
8387         ds_put_format(reply, "%s: self-check passed\n", ofproto->up.name);
8388     }
8389 }
8390
8391 static void
8392 ofproto_dpif_self_check(struct unixctl_conn *conn,
8393                         int argc, const char *argv[], void *aux OVS_UNUSED)
8394 {
8395     struct ds reply = DS_EMPTY_INITIALIZER;
8396     struct ofproto_dpif *ofproto;
8397
8398     if (argc > 1) {
8399         ofproto = ofproto_dpif_lookup(argv[1]);
8400         if (!ofproto) {
8401             unixctl_command_reply_error(conn, "Unknown ofproto (use "
8402                                         "ofproto/list for help)");
8403             return;
8404         }
8405         ofproto_dpif_self_check__(ofproto, &reply);
8406     } else {
8407         HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
8408             ofproto_dpif_self_check__(ofproto, &reply);
8409         }
8410     }
8411
8412     unixctl_command_reply(conn, ds_cstr(&reply));
8413     ds_destroy(&reply);
8414 }
8415
8416 /* Store the current ofprotos in 'ofproto_shash'.  Returns a sorted list
8417  * of the 'ofproto_shash' nodes.  It is the responsibility of the caller
8418  * to destroy 'ofproto_shash' and free the returned value. */
8419 static const struct shash_node **
8420 get_ofprotos(struct shash *ofproto_shash)
8421 {
8422     const struct ofproto_dpif *ofproto;
8423
8424     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
8425         char *name = xasprintf("%s@%s", ofproto->up.type, ofproto->up.name);
8426         shash_add_nocopy(ofproto_shash, name, ofproto);
8427     }
8428
8429     return shash_sort(ofproto_shash);
8430 }
8431
8432 static void
8433 ofproto_unixctl_dpif_dump_dps(struct unixctl_conn *conn, int argc OVS_UNUSED,
8434                               const char *argv[] OVS_UNUSED,
8435                               void *aux OVS_UNUSED)
8436 {
8437     struct ds ds = DS_EMPTY_INITIALIZER;
8438     struct shash ofproto_shash;
8439     const struct shash_node **sorted_ofprotos;
8440     int i;
8441
8442     shash_init(&ofproto_shash);
8443     sorted_ofprotos = get_ofprotos(&ofproto_shash);
8444     for (i = 0; i < shash_count(&ofproto_shash); i++) {
8445         const struct shash_node *node = sorted_ofprotos[i];
8446         ds_put_format(&ds, "%s\n", node->name);
8447     }
8448
8449     shash_destroy(&ofproto_shash);
8450     free(sorted_ofprotos);
8451
8452     unixctl_command_reply(conn, ds_cstr(&ds));
8453     ds_destroy(&ds);
8454 }
8455
8456 static void
8457 show_dp_format(const struct ofproto_dpif *ofproto, struct ds *ds)
8458 {
8459     const struct shash_node **ports;
8460     int i;
8461     struct avg_subfacet_rates lifetime;
8462     unsigned long long int minutes;
8463     const int min_ms = 60 * 1000; /* milliseconds in one minute. */
8464
8465     minutes = (time_msec() - ofproto->created) / min_ms;
8466
8467     if (minutes > 0) {
8468         lifetime.add_rate = (double)ofproto->total_subfacet_add_count
8469                             / minutes;
8470         lifetime.del_rate = (double)ofproto->total_subfacet_del_count
8471                             / minutes;
8472     }else {
8473         lifetime.add_rate = 0.0;
8474         lifetime.del_rate = 0.0;
8475     }
8476
8477     ds_put_format(ds, "%s (%s):\n", ofproto->up.name,
8478                   dpif_name(ofproto->backer->dpif));
8479     ds_put_format(ds,
8480                   "\tlookups: hit:%"PRIu64" missed:%"PRIu64"\n",
8481                   ofproto->n_hit, ofproto->n_missed);
8482     ds_put_format(ds, "\tflows: cur: %zu, avg: %5.3f, max: %d,"
8483                   " life span: %llu(ms)\n",
8484                   hmap_count(&ofproto->subfacets),
8485                   avg_subfacet_count(ofproto),
8486                   ofproto->max_n_subfacet,
8487                   avg_subfacet_life_span(ofproto));
8488     if (minutes >= 60) {
8489         show_dp_rates(ds, "\t\thourly avg:", &ofproto->hourly);
8490     }
8491     if (minutes >= 60 * 24) {
8492         show_dp_rates(ds, "\t\tdaily avg:",  &ofproto->daily);
8493     }
8494     show_dp_rates(ds, "\t\toverall avg:",  &lifetime);
8495
8496     ports = shash_sort(&ofproto->up.port_by_name);
8497     for (i = 0; i < shash_count(&ofproto->up.port_by_name); i++) {
8498         const struct shash_node *node = ports[i];
8499         struct ofport *ofport = node->data;
8500         const char *name = netdev_get_name(ofport->netdev);
8501         const char *type = netdev_get_type(ofport->netdev);
8502         uint32_t odp_port;
8503
8504         ds_put_format(ds, "\t%s %u/", name, ofport->ofp_port);
8505
8506         odp_port = ofp_port_to_odp_port(ofproto, ofport->ofp_port);
8507         if (odp_port != OVSP_NONE) {
8508             ds_put_format(ds, "%"PRIu32":", odp_port);
8509         } else {
8510             ds_put_cstr(ds, "none:");
8511         }
8512
8513         if (strcmp(type, "system")) {
8514             struct netdev *netdev;
8515             int error;
8516
8517             ds_put_format(ds, " (%s", type);
8518
8519             error = netdev_open(name, type, &netdev);
8520             if (!error) {
8521                 struct smap config;
8522
8523                 smap_init(&config);
8524                 error = netdev_get_config(netdev, &config);
8525                 if (!error) {
8526                     const struct smap_node **nodes;
8527                     size_t i;
8528
8529                     nodes = smap_sort(&config);
8530                     for (i = 0; i < smap_count(&config); i++) {
8531                         const struct smap_node *node = nodes[i];
8532                         ds_put_format(ds, "%c %s=%s", i ? ',' : ':',
8533                                       node->key, node->value);
8534                     }
8535                     free(nodes);
8536                 }
8537                 smap_destroy(&config);
8538
8539                 netdev_close(netdev);
8540             }
8541             ds_put_char(ds, ')');
8542         }
8543         ds_put_char(ds, '\n');
8544     }
8545     free(ports);
8546 }
8547
8548 static void
8549 ofproto_unixctl_dpif_show(struct unixctl_conn *conn, int argc,
8550                           const char *argv[], void *aux OVS_UNUSED)
8551 {
8552     struct ds ds = DS_EMPTY_INITIALIZER;
8553     const struct ofproto_dpif *ofproto;
8554
8555     if (argc > 1) {
8556         int i;
8557         for (i = 1; i < argc; i++) {
8558             ofproto = ofproto_dpif_lookup(argv[i]);
8559             if (!ofproto) {
8560                 ds_put_format(&ds, "Unknown bridge %s (use dpif/dump-dps "
8561                                    "for help)", argv[i]);
8562                 unixctl_command_reply_error(conn, ds_cstr(&ds));
8563                 return;
8564             }
8565             show_dp_format(ofproto, &ds);
8566         }
8567     } else {
8568         struct shash ofproto_shash;
8569         const struct shash_node **sorted_ofprotos;
8570         int i;
8571
8572         shash_init(&ofproto_shash);
8573         sorted_ofprotos = get_ofprotos(&ofproto_shash);
8574         for (i = 0; i < shash_count(&ofproto_shash); i++) {
8575             const struct shash_node *node = sorted_ofprotos[i];
8576             show_dp_format(node->data, &ds);
8577         }
8578
8579         shash_destroy(&ofproto_shash);
8580         free(sorted_ofprotos);
8581     }
8582
8583     unixctl_command_reply(conn, ds_cstr(&ds));
8584     ds_destroy(&ds);
8585 }
8586
8587 static void
8588 ofproto_unixctl_dpif_dump_flows(struct unixctl_conn *conn,
8589                                 int argc OVS_UNUSED, const char *argv[],
8590                                 void *aux OVS_UNUSED)
8591 {
8592     struct ds ds = DS_EMPTY_INITIALIZER;
8593     const struct ofproto_dpif *ofproto;
8594     struct subfacet *subfacet;
8595
8596     ofproto = ofproto_dpif_lookup(argv[1]);
8597     if (!ofproto) {
8598         unixctl_command_reply_error(conn, "no such bridge");
8599         return;
8600     }
8601
8602     update_stats(ofproto->backer);
8603
8604     HMAP_FOR_EACH (subfacet, hmap_node, &ofproto->subfacets) {
8605         odp_flow_key_format(subfacet->key, subfacet->key_len, &ds);
8606
8607         ds_put_format(&ds, ", packets:%"PRIu64", bytes:%"PRIu64", used:",
8608                       subfacet->dp_packet_count, subfacet->dp_byte_count);
8609         if (subfacet->used) {
8610             ds_put_format(&ds, "%.3fs",
8611                           (time_msec() - subfacet->used) / 1000.0);
8612         } else {
8613             ds_put_format(&ds, "never");
8614         }
8615         if (subfacet->facet->tcp_flags) {
8616             ds_put_cstr(&ds, ", flags:");
8617             packet_format_tcp_flags(&ds, subfacet->facet->tcp_flags);
8618         }
8619
8620         ds_put_cstr(&ds, ", actions:");
8621         if (subfacet->slow) {
8622             uint64_t slow_path_stub[128 / 8];
8623             const struct nlattr *actions;
8624             size_t actions_len;
8625
8626             compose_slow_path(ofproto, &subfacet->facet->flow, subfacet->slow,
8627                               slow_path_stub, sizeof slow_path_stub,
8628                               &actions, &actions_len);
8629             format_odp_actions(&ds, actions, actions_len);
8630         } else {
8631             format_odp_actions(&ds, subfacet->actions, subfacet->actions_len);
8632         }
8633         ds_put_char(&ds, '\n');
8634     }
8635
8636     unixctl_command_reply(conn, ds_cstr(&ds));
8637     ds_destroy(&ds);
8638 }
8639
8640 static void
8641 ofproto_unixctl_dpif_del_flows(struct unixctl_conn *conn,
8642                                int argc OVS_UNUSED, const char *argv[],
8643                                void *aux OVS_UNUSED)
8644 {
8645     struct ds ds = DS_EMPTY_INITIALIZER;
8646     struct ofproto_dpif *ofproto;
8647
8648     ofproto = ofproto_dpif_lookup(argv[1]);
8649     if (!ofproto) {
8650         unixctl_command_reply_error(conn, "no such bridge");
8651         return;
8652     }
8653
8654     flush(&ofproto->up);
8655
8656     unixctl_command_reply(conn, ds_cstr(&ds));
8657     ds_destroy(&ds);
8658 }
8659
8660 static void
8661 ofproto_dpif_unixctl_init(void)
8662 {
8663     static bool registered;
8664     if (registered) {
8665         return;
8666     }
8667     registered = true;
8668
8669     unixctl_command_register(
8670         "ofproto/trace",
8671         "[dp_name]|bridge odp_flow|br_flow [-generate|packet]",
8672         1, 3, ofproto_unixctl_trace, NULL);
8673     unixctl_command_register("fdb/flush", "[bridge]", 0, 1,
8674                              ofproto_unixctl_fdb_flush, NULL);
8675     unixctl_command_register("fdb/show", "bridge", 1, 1,
8676                              ofproto_unixctl_fdb_show, NULL);
8677     unixctl_command_register("ofproto/clog", "", 0, 0,
8678                              ofproto_dpif_clog, NULL);
8679     unixctl_command_register("ofproto/unclog", "", 0, 0,
8680                              ofproto_dpif_unclog, NULL);
8681     unixctl_command_register("ofproto/self-check", "[bridge]", 0, 1,
8682                              ofproto_dpif_self_check, NULL);
8683     unixctl_command_register("dpif/dump-dps", "", 0, 0,
8684                              ofproto_unixctl_dpif_dump_dps, NULL);
8685     unixctl_command_register("dpif/show", "[bridge]", 0, INT_MAX,
8686                              ofproto_unixctl_dpif_show, NULL);
8687     unixctl_command_register("dpif/dump-flows", "bridge", 1, 1,
8688                              ofproto_unixctl_dpif_dump_flows, NULL);
8689     unixctl_command_register("dpif/del-flows", "bridge", 1, 1,
8690                              ofproto_unixctl_dpif_del_flows, NULL);
8691 }
8692 \f
8693 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
8694  *
8695  * This is deprecated.  It is only for compatibility with broken device drivers
8696  * in old versions of Linux that do not properly support VLANs when VLAN
8697  * devices are not used.  When broken device drivers are no longer in
8698  * widespread use, we will delete these interfaces. */
8699
8700 static int
8701 set_realdev(struct ofport *ofport_, uint16_t realdev_ofp_port, int vid)
8702 {
8703     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport_->ofproto);
8704     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
8705
8706     if (realdev_ofp_port == ofport->realdev_ofp_port
8707         && vid == ofport->vlandev_vid) {
8708         return 0;
8709     }
8710
8711     ofproto->backer->need_revalidate = REV_RECONFIGURE;
8712
8713     if (ofport->realdev_ofp_port) {
8714         vsp_remove(ofport);
8715     }
8716     if (realdev_ofp_port && ofport->bundle) {
8717         /* vlandevs are enslaved to their realdevs, so they are not allowed to
8718          * themselves be part of a bundle. */
8719         bundle_set(ofport->up.ofproto, ofport->bundle, NULL);
8720     }
8721
8722     ofport->realdev_ofp_port = realdev_ofp_port;
8723     ofport->vlandev_vid = vid;
8724
8725     if (realdev_ofp_port) {
8726         vsp_add(ofport, realdev_ofp_port, vid);
8727     }
8728
8729     return 0;
8730 }
8731
8732 static uint32_t
8733 hash_realdev_vid(uint16_t realdev_ofp_port, int vid)
8734 {
8735     return hash_2words(realdev_ofp_port, vid);
8736 }
8737
8738 /* Returns the ODP port number of the Linux VLAN device that corresponds to
8739  * 'vlan_tci' on the network device with port number 'realdev_odp_port' in
8740  * 'ofproto'.  For example, given 'realdev_odp_port' of eth0 and 'vlan_tci' 9,
8741  * it would return the port number of eth0.9.
8742  *
8743  * Unless VLAN splinters are enabled for port 'realdev_odp_port', this
8744  * function just returns its 'realdev_odp_port' argument. */
8745 static uint32_t
8746 vsp_realdev_to_vlandev(const struct ofproto_dpif *ofproto,
8747                        uint32_t realdev_odp_port, ovs_be16 vlan_tci)
8748 {
8749     if (!hmap_is_empty(&ofproto->realdev_vid_map)) {
8750         uint16_t realdev_ofp_port;
8751         int vid = vlan_tci_to_vid(vlan_tci);
8752         const struct vlan_splinter *vsp;
8753
8754         realdev_ofp_port = odp_port_to_ofp_port(ofproto, realdev_odp_port);
8755         HMAP_FOR_EACH_WITH_HASH (vsp, realdev_vid_node,
8756                                  hash_realdev_vid(realdev_ofp_port, vid),
8757                                  &ofproto->realdev_vid_map) {
8758             if (vsp->realdev_ofp_port == realdev_ofp_port
8759                 && vsp->vid == vid) {
8760                 return ofp_port_to_odp_port(ofproto, vsp->vlandev_ofp_port);
8761             }
8762         }
8763     }
8764     return realdev_odp_port;
8765 }
8766
8767 static struct vlan_splinter *
8768 vlandev_find(const struct ofproto_dpif *ofproto, uint16_t vlandev_ofp_port)
8769 {
8770     struct vlan_splinter *vsp;
8771
8772     HMAP_FOR_EACH_WITH_HASH (vsp, vlandev_node, hash_int(vlandev_ofp_port, 0),
8773                              &ofproto->vlandev_map) {
8774         if (vsp->vlandev_ofp_port == vlandev_ofp_port) {
8775             return vsp;
8776         }
8777     }
8778
8779     return NULL;
8780 }
8781
8782 /* Returns the OpenFlow port number of the "real" device underlying the Linux
8783  * VLAN device with OpenFlow port number 'vlandev_ofp_port' and stores the
8784  * VLAN VID of the Linux VLAN device in '*vid'.  For example, given
8785  * 'vlandev_ofp_port' of eth0.9, it would return the OpenFlow port number of
8786  * eth0 and store 9 in '*vid'.
8787  *
8788  * Returns 0 and does not modify '*vid' if 'vlandev_ofp_port' is not a Linux
8789  * VLAN device.  Unless VLAN splinters are enabled, this is what this function
8790  * always does.*/
8791 static uint16_t
8792 vsp_vlandev_to_realdev(const struct ofproto_dpif *ofproto,
8793                        uint16_t vlandev_ofp_port, int *vid)
8794 {
8795     if (!hmap_is_empty(&ofproto->vlandev_map)) {
8796         const struct vlan_splinter *vsp;
8797
8798         vsp = vlandev_find(ofproto, vlandev_ofp_port);
8799         if (vsp) {
8800             if (vid) {
8801                 *vid = vsp->vid;
8802             }
8803             return vsp->realdev_ofp_port;
8804         }
8805     }
8806     return 0;
8807 }
8808
8809 /* Given 'flow', a flow representing a packet received on 'ofproto', checks
8810  * whether 'flow->in_port' represents a Linux VLAN device.  If so, changes
8811  * 'flow->in_port' to the "real" device backing the VLAN device, sets
8812  * 'flow->vlan_tci' to the VLAN VID, and returns true.  Otherwise (which is
8813  * always the case unless VLAN splinters are enabled), returns false without
8814  * making any changes. */
8815 static bool
8816 vsp_adjust_flow(const struct ofproto_dpif *ofproto, struct flow *flow)
8817 {
8818     uint16_t realdev;
8819     int vid;
8820
8821     realdev = vsp_vlandev_to_realdev(ofproto, flow->in_port, &vid);
8822     if (!realdev) {
8823         return false;
8824     }
8825
8826     /* Cause the flow to be processed as if it came in on the real device with
8827      * the VLAN device's VLAN ID. */
8828     flow->in_port = realdev;
8829     flow->vlan_tci = htons((vid & VLAN_VID_MASK) | VLAN_CFI);
8830     return true;
8831 }
8832
8833 static void
8834 vsp_remove(struct ofport_dpif *port)
8835 {
8836     struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
8837     struct vlan_splinter *vsp;
8838
8839     vsp = vlandev_find(ofproto, port->up.ofp_port);
8840     if (vsp) {
8841         hmap_remove(&ofproto->vlandev_map, &vsp->vlandev_node);
8842         hmap_remove(&ofproto->realdev_vid_map, &vsp->realdev_vid_node);
8843         free(vsp);
8844
8845         port->realdev_ofp_port = 0;
8846     } else {
8847         VLOG_ERR("missing vlan device record");
8848     }
8849 }
8850
8851 static void
8852 vsp_add(struct ofport_dpif *port, uint16_t realdev_ofp_port, int vid)
8853 {
8854     struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
8855
8856     if (!vsp_vlandev_to_realdev(ofproto, port->up.ofp_port, NULL)
8857         && (vsp_realdev_to_vlandev(ofproto, realdev_ofp_port, htons(vid))
8858             == realdev_ofp_port)) {
8859         struct vlan_splinter *vsp;
8860
8861         vsp = xmalloc(sizeof *vsp);
8862         hmap_insert(&ofproto->vlandev_map, &vsp->vlandev_node,
8863                     hash_int(port->up.ofp_port, 0));
8864         hmap_insert(&ofproto->realdev_vid_map, &vsp->realdev_vid_node,
8865                     hash_realdev_vid(realdev_ofp_port, vid));
8866         vsp->realdev_ofp_port = realdev_ofp_port;
8867         vsp->vlandev_ofp_port = port->up.ofp_port;
8868         vsp->vid = vid;
8869
8870         port->realdev_ofp_port = realdev_ofp_port;
8871     } else {
8872         VLOG_ERR("duplicate vlan device record");
8873     }
8874 }
8875
8876 static uint32_t
8877 ofp_port_to_odp_port(const struct ofproto_dpif *ofproto, uint16_t ofp_port)
8878 {
8879     const struct ofport_dpif *ofport = get_ofp_port(ofproto, ofp_port);
8880     return ofport ? ofport->odp_port : OVSP_NONE;
8881 }
8882
8883 static struct ofport_dpif *
8884 odp_port_to_ofport(const struct dpif_backer *backer, uint32_t odp_port)
8885 {
8886     struct ofport_dpif *port;
8887
8888     HMAP_FOR_EACH_IN_BUCKET (port, odp_port_node,
8889                              hash_int(odp_port, 0),
8890                              &backer->odp_to_ofport_map) {
8891         if (port->odp_port == odp_port) {
8892             return port;
8893         }
8894     }
8895
8896     return NULL;
8897 }
8898
8899 static uint16_t
8900 odp_port_to_ofp_port(const struct ofproto_dpif *ofproto, uint32_t odp_port)
8901 {
8902     struct ofport_dpif *port;
8903
8904     port = odp_port_to_ofport(ofproto->backer, odp_port);
8905     if (port && &ofproto->up == port->up.ofproto) {
8906         return port->up.ofp_port;
8907     } else {
8908         return OFPP_NONE;
8909     }
8910 }
8911 static unsigned long long int
8912 avg_subfacet_life_span(const struct ofproto_dpif *ofproto)
8913 {
8914     unsigned long long int dc;
8915     unsigned long long int avg;
8916
8917     dc = ofproto->total_subfacet_del_count + ofproto->subfacet_del_count;
8918     avg = dc ? ofproto->total_subfacet_life_span / dc : 0;
8919
8920     return avg;
8921 }
8922
8923 static double
8924 avg_subfacet_count(const struct ofproto_dpif *ofproto)
8925 {
8926     double avg_c = 0.0;
8927
8928     if (ofproto->n_update_stats) {
8929         avg_c = (double)ofproto->total_subfacet_count
8930                 / ofproto->n_update_stats;
8931     }
8932
8933     return avg_c;
8934 }
8935
8936 static void
8937 show_dp_rates(struct ds *ds, const char *heading,
8938               const struct avg_subfacet_rates *rates)
8939 {
8940     ds_put_format(ds, "%s add rate: %5.3f/min, del rate: %5.3f/min\n",
8941                   heading, rates->add_rate, rates->del_rate);
8942 }
8943
8944 static void
8945 update_max_subfacet_count(struct ofproto_dpif *ofproto)
8946 {
8947     ofproto->max_n_subfacet = MAX(ofproto->max_n_subfacet,
8948                                   hmap_count(&ofproto->subfacets));
8949 }
8950
8951 /* Compute exponentially weighted moving average, adding 'new' as the newest,
8952  * most heavily weighted element.  'base' designates the rate of decay: after
8953  * 'base' further updates, 'new''s weight in the EWMA decays to about 1/e
8954  * (about .37). */
8955 static void
8956 exp_mavg(double *avg, int base, double new)
8957 {
8958     *avg = (*avg * (base - 1) + new) / base;
8959 }
8960
8961 static void
8962 update_moving_averages(struct ofproto_dpif *ofproto)
8963 {
8964     const int min_ms = 60 * 1000; /* milliseconds in one minute. */
8965
8966     /* Update hourly averages on the minute boundaries. */
8967     if (time_msec() - ofproto->last_minute >= min_ms) {
8968         exp_mavg(&ofproto->hourly.add_rate, 60, ofproto->subfacet_add_count);
8969         exp_mavg(&ofproto->hourly.del_rate, 60, ofproto->subfacet_del_count);
8970
8971         /* Update daily averages on the hour boundaries. */
8972         if ((ofproto->last_minute - ofproto->created) / min_ms % 60 == 59) {
8973             exp_mavg(&ofproto->daily.add_rate, 24, ofproto->hourly.add_rate);
8974             exp_mavg(&ofproto->daily.del_rate, 24, ofproto->hourly.del_rate);
8975         }
8976
8977         ofproto->total_subfacet_add_count += ofproto->subfacet_add_count;
8978         ofproto->total_subfacet_del_count += ofproto->subfacet_del_count;
8979         ofproto->subfacet_add_count = 0;
8980         ofproto->subfacet_del_count = 0;
8981         ofproto->last_minute += min_ms;
8982     }
8983 }
8984
8985 static void
8986 dpif_stats_update_hit_count(struct ofproto_dpif *ofproto, uint64_t delta)
8987 {
8988     ofproto->n_hit += delta;
8989 }
8990
8991 const struct ofproto_class ofproto_dpif_class = {
8992     init,
8993     enumerate_types,
8994     enumerate_names,
8995     del,
8996     port_open_type,
8997     type_run,
8998     type_run_fast,
8999     type_wait,
9000     alloc,
9001     construct,
9002     destruct,
9003     dealloc,
9004     run,
9005     run_fast,
9006     wait,
9007     get_memory_usage,
9008     flush,
9009     get_features,
9010     get_tables,
9011     port_alloc,
9012     port_construct,
9013     port_destruct,
9014     port_dealloc,
9015     port_modified,
9016     port_reconfigured,
9017     port_query_by_name,
9018     port_add,
9019     port_del,
9020     port_get_stats,
9021     port_dump_start,
9022     port_dump_next,
9023     port_dump_done,
9024     port_poll,
9025     port_poll_wait,
9026     port_is_lacp_current,
9027     NULL,                       /* rule_choose_table */
9028     rule_alloc,
9029     rule_construct,
9030     rule_destruct,
9031     rule_dealloc,
9032     rule_get_stats,
9033     rule_execute,
9034     rule_modify_actions,
9035     set_frag_handling,
9036     packet_out,
9037     set_netflow,
9038     get_netflow_ids,
9039     set_sflow,
9040     set_ipfix,
9041     set_cfm,
9042     get_cfm_status,
9043     set_bfd,
9044     get_bfd_status,
9045     set_stp,
9046     get_stp_status,
9047     set_stp_port,
9048     get_stp_port_status,
9049     set_queues,
9050     bundle_set,
9051     bundle_remove,
9052     mirror_set,
9053     mirror_get_stats,
9054     set_flood_vlans,
9055     is_mirror_output_bundle,
9056     forward_bpdu_changed,
9057     set_mac_table_config,
9058     set_realdev,
9059 };