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