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