ofproto-dpif: Don't hold mac rwlock while calling send_packet().
[sliver-openvswitch.git] / ofproto / ofproto-dpif.c
1 /*
2  * Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18
19 #include "ofproto/ofproto-dpif.h"
20 #include "ofproto/ofproto-provider.h"
21
22 #include <errno.h>
23
24 #include "bfd.h"
25 #include "bond.h"
26 #include "bundle.h"
27 #include "byte-order.h"
28 #include "connmgr.h"
29 #include "coverage.h"
30 #include "cfm.h"
31 #include "dpif.h"
32 #include "dynamic-string.h"
33 #include "fail-open.h"
34 #include "hmapx.h"
35 #include "lacp.h"
36 #include "learn.h"
37 #include "mac-learning.h"
38 #include "meta-flow.h"
39 #include "multipath.h"
40 #include "netdev-vport.h"
41 #include "netdev.h"
42 #include "netlink.h"
43 #include "nx-match.h"
44 #include "odp-util.h"
45 #include "odp-execute.h"
46 #include "ofp-util.h"
47 #include "ofpbuf.h"
48 #include "ofp-actions.h"
49 #include "ofp-parse.h"
50 #include "ofp-print.h"
51 #include "ofproto-dpif-governor.h"
52 #include "ofproto-dpif-ipfix.h"
53 #include "ofproto-dpif-mirror.h"
54 #include "ofproto-dpif-sflow.h"
55 #include "ofproto-dpif-upcall.h"
56 #include "ofproto-dpif-xlate.h"
57 #include "poll-loop.h"
58 #include "simap.h"
59 #include "smap.h"
60 #include "timer.h"
61 #include "tunnel.h"
62 #include "unaligned.h"
63 #include "unixctl.h"
64 #include "vlan-bitmap.h"
65 #include "vlog.h"
66
67 VLOG_DEFINE_THIS_MODULE(ofproto_dpif);
68
69 COVERAGE_DEFINE(ofproto_dpif_expired);
70 COVERAGE_DEFINE(facet_changed_rule);
71 COVERAGE_DEFINE(facet_revalidate);
72 COVERAGE_DEFINE(facet_unexpected);
73 COVERAGE_DEFINE(facet_suppress);
74 COVERAGE_DEFINE(subfacet_install_fail);
75 COVERAGE_DEFINE(packet_in_overflow);
76 COVERAGE_DEFINE(flow_mod_overflow);
77
78 /* Number of implemented OpenFlow tables. */
79 enum { N_TABLES = 255 };
80 enum { TBL_INTERNAL = N_TABLES - 1 };    /* Used for internal hidden rules. */
81 BUILD_ASSERT_DECL(N_TABLES >= 2 && N_TABLES <= 255);
82
83 struct flow_miss;
84 struct facet;
85
86 struct rule_dpif {
87     struct rule up;
88
89     /* These statistics:
90      *
91      *   - Do include packets and bytes from facets that have been deleted or
92      *     whose own statistics have been folded into the rule.
93      *
94      *   - Do include packets and bytes sent "by hand" that were accounted to
95      *     the rule without any facet being involved (this is a rare corner
96      *     case in rule_execute()).
97      *
98      *   - Do not include packet or bytes that can be obtained from any facet's
99      *     packet_count or byte_count member or that can be obtained from the
100      *     datapath by, e.g., dpif_flow_get() for any subfacet.
101      */
102     struct ovs_mutex stats_mutex;
103     uint64_t packet_count OVS_GUARDED;  /* Number of packets received. */
104     uint64_t byte_count OVS_GUARDED;    /* Number of bytes received. */
105 };
106
107 static void rule_get_stats(struct rule *, uint64_t *packets, uint64_t *bytes);
108 static struct rule_dpif *rule_dpif_cast(const struct rule *);
109
110 struct ofbundle {
111     struct hmap_node hmap_node; /* In struct ofproto's "bundles" hmap. */
112     struct ofproto_dpif *ofproto; /* Owning ofproto. */
113     void *aux;                  /* Key supplied by ofproto's client. */
114     char *name;                 /* Identifier for log messages. */
115
116     /* Configuration. */
117     struct list ports;          /* Contains "struct ofport"s. */
118     enum port_vlan_mode vlan_mode; /* VLAN mode */
119     int vlan;                   /* -1=trunk port, else a 12-bit VLAN ID. */
120     unsigned long *trunks;      /* Bitmap of trunked VLANs, if 'vlan' == -1.
121                                  * NULL if all VLANs are trunked. */
122     struct lacp *lacp;          /* LACP if LACP is enabled, otherwise NULL. */
123     struct bond *bond;          /* Nonnull iff more than one port. */
124     bool use_priority_tags;     /* Use 802.1p tag for frames in VLAN 0? */
125
126     /* Status. */
127     bool floodable;          /* True if no port has OFPUTIL_PC_NO_FLOOD set. */
128 };
129
130 static void bundle_remove(struct ofport *);
131 static void bundle_update(struct ofbundle *);
132 static void bundle_destroy(struct ofbundle *);
133 static void bundle_del_port(struct ofport_dpif *);
134 static void bundle_run(struct ofbundle *);
135 static void bundle_wait(struct ofbundle *);
136
137 static void stp_run(struct ofproto_dpif *ofproto);
138 static void stp_wait(struct ofproto_dpif *ofproto);
139 static int set_stp_port(struct ofport *,
140                         const struct ofproto_port_stp_settings *);
141
142 static void compose_slow_path(const struct ofproto_dpif *, const struct flow *,
143                               enum slow_path_reason,
144                               uint64_t *stub, size_t stub_size,
145                               const struct nlattr **actionsp,
146                               size_t *actions_lenp);
147
148 /* A subfacet (see "struct subfacet" below) has three possible installation
149  * states:
150  *
151  *   - SF_NOT_INSTALLED: Not installed in the datapath.  This will only be the
152  *     case just after the subfacet is created, just before the subfacet is
153  *     destroyed, or if the datapath returns an error when we try to install a
154  *     subfacet.
155  *
156  *   - SF_FAST_PATH: The subfacet's actions are installed in the datapath.
157  *
158  *   - SF_SLOW_PATH: An action that sends every packet for the subfacet through
159  *     ofproto_dpif is installed in the datapath.
160  */
161 enum subfacet_path {
162     SF_NOT_INSTALLED,           /* No datapath flow for this subfacet. */
163     SF_FAST_PATH,               /* Full actions are installed. */
164     SF_SLOW_PATH,               /* Send-to-userspace action is installed. */
165 };
166
167 /* A dpif flow and actions associated with a facet.
168  *
169  * See also the large comment on struct facet. */
170 struct subfacet {
171     /* Owners. */
172     struct hmap_node hmap_node; /* In struct ofproto_dpif 'subfacets' list. */
173     struct list list_node;      /* In struct facet's 'facets' list. */
174     struct facet *facet;        /* Owning facet. */
175     struct dpif_backer *backer; /* Owning backer. */
176
177     enum odp_key_fitness key_fitness;
178     struct nlattr *key;
179     int key_len;
180
181     long long int used;         /* Time last used; time created if not used. */
182     long long int created;      /* Time created. */
183
184     uint64_t dp_packet_count;   /* Last known packet count in the datapath. */
185     uint64_t dp_byte_count;     /* Last known byte count in the datapath. */
186
187     enum subfacet_path path;    /* Installed in datapath? */
188 };
189
190 #define SUBFACET_DESTROY_MAX_BATCH 50
191
192 static struct subfacet *subfacet_create(struct facet *, struct flow_miss *);
193 static struct subfacet *subfacet_find(struct dpif_backer *,
194                                       const struct nlattr *key, size_t key_len,
195                                       uint32_t key_hash);
196 static void subfacet_destroy(struct subfacet *);
197 static void subfacet_destroy__(struct subfacet *);
198 static void subfacet_destroy_batch(struct dpif_backer *,
199                                    struct subfacet **, int n);
200 static void subfacet_reset_dp_stats(struct subfacet *,
201                                     struct dpif_flow_stats *);
202 static void subfacet_update_stats(struct subfacet *,
203                                   const struct dpif_flow_stats *);
204 static int subfacet_install(struct subfacet *,
205                             const struct ofpbuf *odp_actions,
206                             struct dpif_flow_stats *);
207 static void subfacet_uninstall(struct subfacet *);
208
209 /* A unique, non-overlapping instantiation of an OpenFlow flow.
210  *
211  * A facet associates a "struct flow", which represents the Open vSwitch
212  * userspace idea of an exact-match flow, with one or more subfacets.
213  * While the facet is created based on an exact-match flow, it is stored
214  * within the ofproto based on the wildcards that could be expressed
215  * based on the flow table and other configuration.  (See the 'wc'
216  * description in "struct xlate_out" for more details.)
217  *
218  * Each subfacet tracks the datapath's idea of the flow equivalent to
219  * the facet.  When the kernel module (or other dpif implementation) and
220  * Open vSwitch userspace agree on the definition of a flow key, there
221  * is exactly one subfacet per facet.  If the dpif implementation
222  * supports more-specific flow matching than userspace, however, a facet
223  * can have more than one subfacet.  Examples include the dpif
224  * implementation not supporting the same wildcards as userspace or some
225  * distinction in flow that userspace simply doesn't understand.
226  *
227  * Flow expiration works in terms of subfacets, so a facet must have at
228  * least one subfacet or it will never expire, leaking memory. */
229 struct facet {
230     /* Owner. */
231     struct ofproto_dpif *ofproto;
232
233     /* Owned data. */
234     struct list subfacets;
235     long long int used;         /* Time last used; time created if not used. */
236
237     /* Key. */
238     struct flow flow;           /* Flow of the creating subfacet. */
239     struct cls_rule cr;         /* In 'ofproto_dpif's facets classifier. */
240
241     /* These statistics:
242      *
243      *   - Do include packets and bytes sent "by hand", e.g. with
244      *     dpif_execute().
245      *
246      *   - Do include packets and bytes that were obtained from the datapath
247      *     when a subfacet's statistics were reset (e.g. dpif_flow_put() with
248      *     DPIF_FP_ZERO_STATS).
249      *
250      *   - Do not include packets or bytes that can be obtained from the
251      *     datapath for any existing subfacet.
252      */
253     uint64_t packet_count;       /* Number of packets received. */
254     uint64_t byte_count;         /* Number of bytes received. */
255
256     /* Resubmit statistics. */
257     uint64_t prev_packet_count;  /* Number of packets from last stats push. */
258     uint64_t prev_byte_count;    /* Number of bytes from last stats push. */
259     long long int prev_used;     /* Used time from last stats push. */
260
261     /* Accounting. */
262     uint64_t accounted_bytes;    /* Bytes processed by facet_account(). */
263     struct netflow_flow nf_flow; /* Per-flow NetFlow tracking data. */
264     uint8_t tcp_flags;           /* TCP flags seen for this 'rule'. */
265
266     struct xlate_out xout;
267
268     /* Storage for a single subfacet, to reduce malloc() time and space
269      * overhead.  (A facet always has at least one subfacet and in the common
270      * case has exactly one subfacet.  However, 'one_subfacet' may not
271      * always be valid, since it could have been removed after newer
272      * subfacets were pushed onto the 'subfacets' list.) */
273     struct subfacet one_subfacet;
274
275     long long int learn_rl;      /* Rate limiter for facet_learn(). */
276 };
277
278 static struct facet *facet_create(const struct flow_miss *);
279 static void facet_remove(struct facet *);
280 static void facet_free(struct facet *);
281
282 static struct facet *facet_find(struct ofproto_dpif *, const struct flow *);
283 static struct facet *facet_lookup_valid(struct ofproto_dpif *,
284                                         const struct flow *);
285 static bool facet_revalidate(struct facet *);
286 static bool facet_check_consistency(struct facet *);
287
288 static void facet_flush_stats(struct facet *);
289
290 static void facet_reset_counters(struct facet *);
291 static void flow_push_stats(struct ofproto_dpif *, struct flow *,
292                             struct dpif_flow_stats *, bool may_learn);
293 static void facet_push_stats(struct facet *, bool may_learn);
294 static void facet_learn(struct facet *);
295 static void facet_account(struct facet *);
296 static void push_all_stats(void);
297
298 static bool facet_is_controller_flow(struct facet *);
299
300 struct ofport_dpif {
301     struct hmap_node odp_port_node; /* In dpif_backer's "odp_to_ofport_map". */
302     struct ofport up;
303
304     odp_port_t odp_port;
305     struct ofbundle *bundle;    /* Bundle that contains this port, if any. */
306     struct list bundle_node;    /* In struct ofbundle's "ports" list. */
307     struct cfm *cfm;            /* Connectivity Fault Management, if any. */
308     struct bfd *bfd;            /* BFD, if any. */
309     bool may_enable;            /* May be enabled in bonds. */
310     bool is_tunnel;             /* This port is a tunnel. */
311     long long int carrier_seq;  /* Carrier status changes. */
312     struct ofport_dpif *peer;   /* Peer if patch port. */
313
314     /* Spanning tree. */
315     struct stp_port *stp_port;  /* Spanning Tree Protocol, if any. */
316     enum stp_state stp_state;   /* Always STP_DISABLED if STP not in use. */
317     long long int stp_state_entered;
318
319     /* Queue to DSCP mapping. */
320     struct ofproto_port_queue *qdscp;
321     size_t n_qdscp;
322
323     /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
324      *
325      * This is deprecated.  It is only for compatibility with broken device
326      * drivers in old versions of Linux that do not properly support VLANs when
327      * VLAN devices are not used.  When broken device drivers are no longer in
328      * widespread use, we will delete these interfaces. */
329     ofp_port_t realdev_ofp_port;
330     int vlandev_vid;
331 };
332
333 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
334  *
335  * This is deprecated.  It is only for compatibility with broken device drivers
336  * in old versions of Linux that do not properly support VLANs when VLAN
337  * devices are not used.  When broken device drivers are no longer in
338  * widespread use, we will delete these interfaces. */
339 struct vlan_splinter {
340     struct hmap_node realdev_vid_node;
341     struct hmap_node vlandev_node;
342     ofp_port_t realdev_ofp_port;
343     ofp_port_t vlandev_ofp_port;
344     int vid;
345 };
346
347 static void vsp_remove(struct ofport_dpif *);
348 static void vsp_add(struct ofport_dpif *, ofp_port_t realdev_ofp_port, int vid);
349
350 static odp_port_t ofp_port_to_odp_port(const struct ofproto_dpif *,
351                                        ofp_port_t);
352
353 static ofp_port_t odp_port_to_ofp_port(const struct ofproto_dpif *,
354                                        odp_port_t);
355
356 static struct ofport_dpif *
357 ofport_dpif_cast(const struct ofport *ofport)
358 {
359     return ofport ? CONTAINER_OF(ofport, struct ofport_dpif, up) : NULL;
360 }
361
362 static void port_run(struct ofport_dpif *);
363 static void port_run_fast(struct ofport_dpif *);
364 static void port_wait(struct ofport_dpif *);
365 static int set_bfd(struct ofport *, const struct smap *);
366 static int set_cfm(struct ofport *, const struct cfm_settings *);
367 static void ofport_update_peer(struct ofport_dpif *);
368 static void run_fast_rl(void);
369 static int run_fast(struct ofproto *);
370
371 struct dpif_completion {
372     struct list list_node;
373     struct ofoperation *op;
374 };
375
376 /* Reasons that we might need to revalidate every facet, and corresponding
377  * coverage counters.
378  *
379  * A value of 0 means that there is no need to revalidate.
380  *
381  * It would be nice to have some cleaner way to integrate with coverage
382  * counters, but with only a few reasons I guess this is good enough for
383  * now. */
384 enum revalidate_reason {
385     REV_RECONFIGURE = 1,       /* Switch configuration changed. */
386     REV_STP,                   /* Spanning tree protocol port status change. */
387     REV_BOND,                  /* Bonding changed. */
388     REV_PORT_TOGGLED,          /* Port enabled or disabled by CFM, LACP, ...*/
389     REV_FLOW_TABLE,            /* Flow table changed. */
390     REV_MAC_LEARNING,          /* Mac learning changed. */
391     REV_INCONSISTENCY          /* Facet self-check failed. */
392 };
393 COVERAGE_DEFINE(rev_reconfigure);
394 COVERAGE_DEFINE(rev_stp);
395 COVERAGE_DEFINE(rev_bond);
396 COVERAGE_DEFINE(rev_port_toggled);
397 COVERAGE_DEFINE(rev_flow_table);
398 COVERAGE_DEFINE(rev_mac_learning);
399 COVERAGE_DEFINE(rev_inconsistency);
400
401 struct avg_subfacet_rates {
402     double add_rate;   /* Moving average of new flows created per minute. */
403     double del_rate;   /* Moving average of flows deleted per minute. */
404 };
405
406 /* All datapaths of a given type share a single dpif backer instance. */
407 struct dpif_backer {
408     char *type;
409     int refcount;
410     struct dpif *dpif;
411     struct udpif *udpif;
412     struct timer next_expiration;
413
414     struct ovs_rwlock odp_to_ofport_lock;
415     struct hmap odp_to_ofport_map OVS_GUARDED; /* ODP port to ofport map. */
416
417     struct simap tnl_backers;      /* Set of dpif ports backing tunnels. */
418
419     /* Facet revalidation flags applying to facets which use this backer. */
420     enum revalidate_reason need_revalidate; /* Revalidate every facet. */
421
422     struct hmap drop_keys; /* Set of dropped odp keys. */
423     bool recv_set_enable; /* Enables or disables receiving packets. */
424
425     struct hmap subfacets;
426     struct governor *governor;
427
428     /* Subfacet statistics.
429      *
430      * These keep track of the total number of subfacets added and deleted and
431      * flow life span.  They are useful for computing the flow rates stats
432      * exposed via "ovs-appctl dpif/show".  The goal is to learn about
433      * traffic patterns in ways that we can use later to improve Open vSwitch
434      * performance in new situations.  */
435     long long int created;           /* Time when it is created. */
436     unsigned max_n_subfacet;         /* Maximum number of flows */
437     unsigned avg_n_subfacet;         /* Average number of flows. */
438     long long int avg_subfacet_life; /* Average life span of subfacets. */
439
440     /* The average number of subfacets... */
441     struct avg_subfacet_rates hourly;   /* ...over the last hour. */
442     struct avg_subfacet_rates daily;    /* ...over the last day. */
443     struct avg_subfacet_rates lifetime; /* ...over the switch lifetime. */
444     long long int last_minute;          /* Last time 'hourly' was updated. */
445
446     /* Number of subfacets added or deleted since 'last_minute'. */
447     unsigned subfacet_add_count;
448     unsigned subfacet_del_count;
449
450     /* Number of subfacets added or deleted from 'created' to 'last_minute.' */
451     unsigned long long int total_subfacet_add_count;
452     unsigned long long int total_subfacet_del_count;
453
454     /* Number of upcall handling threads. */
455     unsigned int n_handler_threads;
456 };
457
458 /* All existing ofproto_backer instances, indexed by ofproto->up.type. */
459 static struct shash all_dpif_backers = SHASH_INITIALIZER(&all_dpif_backers);
460
461 static void drop_key_clear(struct dpif_backer *);
462 static void update_moving_averages(struct dpif_backer *backer);
463
464 struct ofproto_dpif {
465     struct hmap_node all_ofproto_dpifs_node; /* In 'all_ofproto_dpifs'. */
466     struct ofproto up;
467     struct dpif_backer *backer;
468
469     /* Special OpenFlow rules. */
470     struct rule_dpif *miss_rule; /* Sends flow table misses to controller. */
471     struct rule_dpif *no_packet_in_rule; /* Drops flow table misses. */
472     struct rule_dpif *drop_frags_rule; /* Used in OFPC_FRAG_DROP mode. */
473
474     /* Bridging. */
475     struct netflow *netflow;
476     struct dpif_sflow *sflow;
477     struct dpif_ipfix *ipfix;
478     struct hmap bundles;        /* Contains "struct ofbundle"s. */
479     struct mac_learning *ml;
480     bool has_bonded_bundles;
481     struct mbridge *mbridge;
482
483     /* Facets. */
484     struct classifier facets;     /* Contains 'struct facet's. */
485     long long int consistency_rl;
486
487     /* Support for debugging async flow mods. */
488     struct list completions;
489
490     struct netdev_stats stats; /* To account packets generated and consumed in
491                                 * userspace. */
492
493     /* Spanning tree. */
494     struct stp *stp;
495     long long int stp_last_tick;
496
497     /* VLAN splinters. */
498     struct ovs_mutex vsp_mutex;
499     struct hmap realdev_vid_map OVS_GUARDED; /* (realdev,vid) -> vlandev. */
500     struct hmap vlandev_map OVS_GUARDED;     /* vlandev -> (realdev,vid). */
501
502     /* Ports. */
503     struct sset ports;             /* Set of standard port names. */
504     struct sset ghost_ports;       /* Ports with no datapath port. */
505     struct sset port_poll_set;     /* Queued names for port_poll() reply. */
506     int port_poll_errno;           /* Last errno for port_poll() reply. */
507
508     /* Per ofproto's dpif stats. */
509     uint64_t n_hit;
510     uint64_t n_missed;
511
512     /* Work queues. */
513     struct ovs_mutex flow_mod_mutex;
514     struct list flow_mods OVS_GUARDED;
515     size_t n_flow_mods OVS_GUARDED;
516
517     struct ovs_mutex pin_mutex;
518     struct list pins OVS_GUARDED;
519     size_t n_pins OVS_GUARDED;
520 };
521
522 /* Defer flow mod completion until "ovs-appctl ofproto/unclog"?  (Useful only
523  * for debugging the asynchronous flow_mod implementation.) */
524 static bool clogged;
525
526 /* By default, flows in the datapath are wildcarded (megaflows).  They
527  * may be disabled with the "ovs-appctl dpif/disable-megaflows" command. */
528 static bool enable_megaflows = true;
529
530 /* All existing ofproto_dpif instances, indexed by ->up.name. */
531 static struct hmap all_ofproto_dpifs = HMAP_INITIALIZER(&all_ofproto_dpifs);
532
533 static void ofproto_dpif_unixctl_init(void);
534
535 static inline struct ofproto_dpif *
536 ofproto_dpif_cast(const struct ofproto *ofproto)
537 {
538     ovs_assert(ofproto->ofproto_class == &ofproto_dpif_class);
539     return CONTAINER_OF(ofproto, struct ofproto_dpif, up);
540 }
541
542 static struct ofport_dpif *get_ofp_port(const struct ofproto_dpif *ofproto,
543                                         ofp_port_t ofp_port);
544 static void ofproto_trace(struct ofproto_dpif *, const struct flow *,
545                           const struct ofpbuf *packet, struct ds *);
546
547 /* Upcalls. */
548 static void handle_upcalls(struct dpif_backer *);
549
550 /* Flow expiration. */
551 static int expire(struct dpif_backer *);
552
553 /* NetFlow. */
554 static void send_netflow_active_timeouts(struct ofproto_dpif *);
555
556 /* Utilities. */
557 static int send_packet(const struct ofport_dpif *, struct ofpbuf *packet);
558
559 /* Global variables. */
560 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
561
562 /* Initial mappings of port to bridge mappings. */
563 static struct shash init_ofp_ports = SHASH_INITIALIZER(&init_ofp_ports);
564
565 /* Executes and takes ownership of 'fm'. */
566 void
567 ofproto_dpif_flow_mod(struct ofproto_dpif *ofproto,
568                       struct ofputil_flow_mod *fm)
569 {
570     ovs_mutex_lock(&ofproto->flow_mod_mutex);
571     if (ofproto->n_flow_mods > 1024) {
572         ovs_mutex_unlock(&ofproto->flow_mod_mutex);
573         COVERAGE_INC(flow_mod_overflow);
574         free(fm->ofpacts);
575         free(fm);
576         return;
577     }
578
579     list_push_back(&ofproto->flow_mods, &fm->list_node);
580     ofproto->n_flow_mods++;
581     ovs_mutex_unlock(&ofproto->flow_mod_mutex);
582 }
583
584 /* Appends 'pin' to the queue of "packet ins" to be sent to the controller.
585  * Takes ownership of 'pin' and pin->packet. */
586 void
587 ofproto_dpif_send_packet_in(struct ofproto_dpif *ofproto,
588                             struct ofputil_packet_in *pin)
589 {
590     ovs_mutex_lock(&ofproto->pin_mutex);
591     if (ofproto->n_pins > 1024) {
592         ovs_mutex_unlock(&ofproto->pin_mutex);
593         COVERAGE_INC(packet_in_overflow);
594         free(CONST_CAST(void *, pin->packet));
595         free(pin);
596         return;
597     }
598
599     list_push_back(&ofproto->pins, &pin->list_node);
600     ofproto->n_pins++;
601     ovs_mutex_unlock(&ofproto->pin_mutex);
602 }
603 \f
604 /* Factory functions. */
605
606 static void
607 init(const struct shash *iface_hints)
608 {
609     struct shash_node *node;
610
611     /* Make a local copy, since we don't own 'iface_hints' elements. */
612     SHASH_FOR_EACH(node, iface_hints) {
613         const struct iface_hint *orig_hint = node->data;
614         struct iface_hint *new_hint = xmalloc(sizeof *new_hint);
615
616         new_hint->br_name = xstrdup(orig_hint->br_name);
617         new_hint->br_type = xstrdup(orig_hint->br_type);
618         new_hint->ofp_port = orig_hint->ofp_port;
619
620         shash_add(&init_ofp_ports, node->name, new_hint);
621     }
622 }
623
624 static void
625 enumerate_types(struct sset *types)
626 {
627     dp_enumerate_types(types);
628 }
629
630 static int
631 enumerate_names(const char *type, struct sset *names)
632 {
633     struct ofproto_dpif *ofproto;
634
635     sset_clear(names);
636     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
637         if (strcmp(type, ofproto->up.type)) {
638             continue;
639         }
640         sset_add(names, ofproto->up.name);
641     }
642
643     return 0;
644 }
645
646 static int
647 del(const char *type, const char *name)
648 {
649     struct dpif *dpif;
650     int error;
651
652     error = dpif_open(name, type, &dpif);
653     if (!error) {
654         error = dpif_delete(dpif);
655         dpif_close(dpif);
656     }
657     return error;
658 }
659 \f
660 static const char *
661 port_open_type(const char *datapath_type, const char *port_type)
662 {
663     return dpif_port_open_type(datapath_type, port_type);
664 }
665
666 /* Type functions. */
667
668 static void process_dpif_port_changes(struct dpif_backer *);
669 static void process_dpif_all_ports_changed(struct dpif_backer *);
670 static void process_dpif_port_change(struct dpif_backer *,
671                                      const char *devname);
672 static void process_dpif_port_error(struct dpif_backer *, int error);
673
674 static struct ofproto_dpif *
675 lookup_ofproto_dpif_by_port_name(const char *name)
676 {
677     struct ofproto_dpif *ofproto;
678
679     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
680         if (sset_contains(&ofproto->ports, name)) {
681             return ofproto;
682         }
683     }
684
685     return NULL;
686 }
687
688 static int
689 type_run(const char *type)
690 {
691     static long long int push_timer = LLONG_MIN;
692     struct dpif_backer *backer;
693
694     backer = shash_find_data(&all_dpif_backers, type);
695     if (!backer) {
696         /* This is not necessarily a problem, since backers are only
697          * created on demand. */
698         return 0;
699     }
700
701     dpif_run(backer->dpif);
702
703     /* The most natural place to push facet statistics is when they're pulled
704      * from the datapath.  However, when there are many flows in the datapath,
705      * this expensive operation can occur so frequently, that it reduces our
706      * ability to quickly set up flows.  To reduce the cost, we push statistics
707      * here instead. */
708     if (time_msec() > push_timer) {
709         push_timer = time_msec() + 2000;
710         push_all_stats();
711     }
712
713     /* If vswitchd started with other_config:flow_restore_wait set as "true",
714      * and the configuration has now changed to "false", enable receiving
715      * packets from the datapath. */
716     if (!backer->recv_set_enable && !ofproto_get_flow_restore_wait()) {
717         int error;
718
719         backer->recv_set_enable = true;
720
721         error = dpif_recv_set(backer->dpif, backer->recv_set_enable);
722         if (error) {
723             udpif_recv_set(backer->udpif, 0, false);
724             VLOG_ERR("Failed to enable receiving packets in dpif.");
725             return error;
726         }
727         udpif_recv_set(backer->udpif, n_handler_threads,
728                        backer->recv_set_enable);
729         dpif_flow_flush(backer->dpif);
730         backer->need_revalidate = REV_RECONFIGURE;
731     }
732
733     /* If the n_handler_threads is reconfigured, call udpif_recv_set()
734      * to reset the handler threads. */
735     if (backer->n_handler_threads != n_handler_threads) {
736         udpif_recv_set(backer->udpif, n_handler_threads,
737                        backer->recv_set_enable);
738         backer->n_handler_threads = n_handler_threads;
739     }
740
741     if (backer->need_revalidate) {
742         struct ofproto_dpif *ofproto;
743         struct simap_node *node;
744         struct simap tmp_backers;
745
746         /* Handle tunnel garbage collection. */
747         simap_init(&tmp_backers);
748         simap_swap(&backer->tnl_backers, &tmp_backers);
749
750         HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
751             struct ofport_dpif *iter;
752
753             if (backer != ofproto->backer) {
754                 continue;
755             }
756
757             HMAP_FOR_EACH (iter, up.hmap_node, &ofproto->up.ports) {
758                 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
759                 const char *dp_port;
760
761                 if (!iter->is_tunnel) {
762                     continue;
763                 }
764
765                 dp_port = netdev_vport_get_dpif_port(iter->up.netdev,
766                                                      namebuf, sizeof namebuf);
767                 node = simap_find(&tmp_backers, dp_port);
768                 if (node) {
769                     simap_put(&backer->tnl_backers, dp_port, node->data);
770                     simap_delete(&tmp_backers, node);
771                     node = simap_find(&backer->tnl_backers, dp_port);
772                 } else {
773                     node = simap_find(&backer->tnl_backers, dp_port);
774                     if (!node) {
775                         odp_port_t odp_port = ODPP_NONE;
776
777                         if (!dpif_port_add(backer->dpif, iter->up.netdev,
778                                            &odp_port)) {
779                             simap_put(&backer->tnl_backers, dp_port,
780                                       odp_to_u32(odp_port));
781                             node = simap_find(&backer->tnl_backers, dp_port);
782                         }
783                     }
784                 }
785
786                 iter->odp_port = node ? u32_to_odp(node->data) : ODPP_NONE;
787                 if (tnl_port_reconfigure(iter, iter->up.netdev,
788                                          iter->odp_port)) {
789                     backer->need_revalidate = REV_RECONFIGURE;
790                 }
791             }
792         }
793
794         SIMAP_FOR_EACH (node, &tmp_backers) {
795             dpif_port_del(backer->dpif, u32_to_odp(node->data));
796         }
797         simap_destroy(&tmp_backers);
798
799         switch (backer->need_revalidate) {
800         case REV_RECONFIGURE:   COVERAGE_INC(rev_reconfigure);   break;
801         case REV_STP:           COVERAGE_INC(rev_stp);           break;
802         case REV_BOND:          COVERAGE_INC(rev_bond);          break;
803         case REV_PORT_TOGGLED:  COVERAGE_INC(rev_port_toggled);  break;
804         case REV_FLOW_TABLE:    COVERAGE_INC(rev_flow_table);    break;
805         case REV_MAC_LEARNING:  COVERAGE_INC(rev_mac_learning);  break;
806         case REV_INCONSISTENCY: COVERAGE_INC(rev_inconsistency); break;
807         }
808         backer->need_revalidate = 0;
809
810         /* Clear the drop_keys in case we should now be accepting some
811          * formerly dropped flows. */
812         drop_key_clear(backer);
813
814         HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
815             struct facet *facet, *next;
816             struct ofport_dpif *ofport;
817             struct cls_cursor cursor;
818             struct ofbundle *bundle;
819
820             if (ofproto->backer != backer) {
821                 continue;
822             }
823
824             ovs_rwlock_wrlock(&xlate_rwlock);
825             xlate_ofproto_set(ofproto, ofproto->up.name,
826                               ofproto->backer->dpif, ofproto->miss_rule,
827                               ofproto->no_packet_in_rule, ofproto->ml,
828                               ofproto->stp, ofproto->mbridge,
829                               ofproto->sflow, ofproto->ipfix,
830                               ofproto->up.frag_handling,
831                               ofproto->up.forward_bpdu,
832                               connmgr_has_in_band(ofproto->up.connmgr),
833                               ofproto->netflow != NULL);
834
835             HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
836                 xlate_bundle_set(ofproto, bundle, bundle->name,
837                                  bundle->vlan_mode, bundle->vlan,
838                                  bundle->trunks, bundle->use_priority_tags,
839                                  bundle->bond, bundle->lacp,
840                                  bundle->floodable);
841             }
842
843             HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
844                 int stp_port = ofport->stp_port
845                     ? stp_port_no(ofport->stp_port)
846                     : -1;
847                 xlate_ofport_set(ofproto, ofport->bundle, ofport,
848                                  ofport->up.ofp_port, ofport->odp_port,
849                                  ofport->up.netdev, ofport->cfm,
850                                  ofport->bfd, ofport->peer, stp_port,
851                                  ofport->qdscp, ofport->n_qdscp,
852                                  ofport->up.pp.config, ofport->is_tunnel,
853                                  ofport->may_enable);
854             }
855             ovs_rwlock_unlock(&xlate_rwlock);
856
857             /* Only ofproto-dpif cares about the facet classifier so we just
858              * lock cls_cursor_init() to appease the thread safety analysis. */
859             ovs_rwlock_rdlock(&ofproto->facets.rwlock);
860             cls_cursor_init(&cursor, &ofproto->facets, NULL);
861             ovs_rwlock_unlock(&ofproto->facets.rwlock);
862             CLS_CURSOR_FOR_EACH_SAFE (facet, next, cr, &cursor) {
863                 facet_revalidate(facet);
864                 run_fast_rl();
865             }
866         }
867
868         udpif_revalidate(backer->udpif);
869     }
870
871     if (!backer->recv_set_enable) {
872         /* Wake up before a max of 1000ms. */
873         timer_set_duration(&backer->next_expiration, 1000);
874     } else if (timer_expired(&backer->next_expiration)) {
875         int delay = expire(backer);
876         timer_set_duration(&backer->next_expiration, delay);
877     }
878
879     process_dpif_port_changes(backer);
880
881     if (backer->governor) {
882         size_t n_subfacets;
883
884         governor_run(backer->governor);
885
886         /* If the governor has shrunk to its minimum size and the number of
887          * subfacets has dwindled, then drop the governor entirely.
888          *
889          * For hysteresis, the number of subfacets to drop the governor is
890          * smaller than the number needed to trigger its creation. */
891         n_subfacets = hmap_count(&backer->subfacets);
892         if (n_subfacets * 4 < flow_eviction_threshold
893             && governor_is_idle(backer->governor)) {
894             governor_destroy(backer->governor);
895             backer->governor = NULL;
896         }
897     }
898
899     return 0;
900 }
901
902 /* Check for and handle port changes in 'backer''s dpif. */
903 static void
904 process_dpif_port_changes(struct dpif_backer *backer)
905 {
906     for (;;) {
907         char *devname;
908         int error;
909
910         error = dpif_port_poll(backer->dpif, &devname);
911         switch (error) {
912         case EAGAIN:
913             return;
914
915         case ENOBUFS:
916             process_dpif_all_ports_changed(backer);
917             break;
918
919         case 0:
920             process_dpif_port_change(backer, devname);
921             free(devname);
922             break;
923
924         default:
925             process_dpif_port_error(backer, error);
926             break;
927         }
928     }
929 }
930
931 static void
932 process_dpif_all_ports_changed(struct dpif_backer *backer)
933 {
934     struct ofproto_dpif *ofproto;
935     struct dpif_port dpif_port;
936     struct dpif_port_dump dump;
937     struct sset devnames;
938     const char *devname;
939
940     sset_init(&devnames);
941     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
942         if (ofproto->backer == backer) {
943             struct ofport *ofport;
944
945             HMAP_FOR_EACH (ofport, hmap_node, &ofproto->up.ports) {
946                 sset_add(&devnames, netdev_get_name(ofport->netdev));
947             }
948         }
949     }
950     DPIF_PORT_FOR_EACH (&dpif_port, &dump, backer->dpif) {
951         sset_add(&devnames, dpif_port.name);
952     }
953
954     SSET_FOR_EACH (devname, &devnames) {
955         process_dpif_port_change(backer, devname);
956     }
957     sset_destroy(&devnames);
958 }
959
960 static void
961 process_dpif_port_change(struct dpif_backer *backer, const char *devname)
962 {
963     struct ofproto_dpif *ofproto;
964     struct dpif_port port;
965
966     /* Don't report on the datapath's device. */
967     if (!strcmp(devname, dpif_base_name(backer->dpif))) {
968         return;
969     }
970
971     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node,
972                    &all_ofproto_dpifs) {
973         if (simap_contains(&ofproto->backer->tnl_backers, devname)) {
974             return;
975         }
976     }
977
978     ofproto = lookup_ofproto_dpif_by_port_name(devname);
979     if (dpif_port_query_by_name(backer->dpif, devname, &port)) {
980         /* The port was removed.  If we know the datapath,
981          * report it through poll_set().  If we don't, it may be
982          * notifying us of a removal we initiated, so ignore it.
983          * If there's a pending ENOBUFS, let it stand, since
984          * everything will be reevaluated. */
985         if (ofproto && ofproto->port_poll_errno != ENOBUFS) {
986             sset_add(&ofproto->port_poll_set, devname);
987             ofproto->port_poll_errno = 0;
988         }
989     } else if (!ofproto) {
990         /* The port was added, but we don't know with which
991          * ofproto we should associate it.  Delete it. */
992         dpif_port_del(backer->dpif, port.port_no);
993     } else {
994         struct ofport_dpif *ofport;
995
996         ofport = ofport_dpif_cast(shash_find_data(
997                                       &ofproto->up.port_by_name, devname));
998         if (ofport
999             && ofport->odp_port != port.port_no
1000             && !odp_port_to_ofport(backer, port.port_no))
1001         {
1002             /* 'ofport''s datapath port number has changed from
1003              * 'ofport->odp_port' to 'port.port_no'.  Update our internal data
1004              * structures to match. */
1005             ovs_rwlock_wrlock(&backer->odp_to_ofport_lock);
1006             hmap_remove(&backer->odp_to_ofport_map, &ofport->odp_port_node);
1007             ofport->odp_port = port.port_no;
1008             hmap_insert(&backer->odp_to_ofport_map, &ofport->odp_port_node,
1009                         hash_odp_port(port.port_no));
1010             ovs_rwlock_unlock(&backer->odp_to_ofport_lock);
1011             backer->need_revalidate = REV_RECONFIGURE;
1012         }
1013     }
1014     dpif_port_destroy(&port);
1015 }
1016
1017 /* Propagate 'error' to all ofprotos based on 'backer'. */
1018 static void
1019 process_dpif_port_error(struct dpif_backer *backer, int error)
1020 {
1021     struct ofproto_dpif *ofproto;
1022
1023     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
1024         if (ofproto->backer == backer) {
1025             sset_clear(&ofproto->port_poll_set);
1026             ofproto->port_poll_errno = error;
1027         }
1028     }
1029 }
1030
1031 static int
1032 dpif_backer_run_fast(struct dpif_backer *backer)
1033 {
1034     udpif_run(backer->udpif);
1035     handle_upcalls(backer);
1036
1037     return 0;
1038 }
1039
1040 static int
1041 type_run_fast(const char *type)
1042 {
1043     struct dpif_backer *backer;
1044
1045     backer = shash_find_data(&all_dpif_backers, type);
1046     if (!backer) {
1047         /* This is not necessarily a problem, since backers are only
1048          * created on demand. */
1049         return 0;
1050     }
1051
1052     return dpif_backer_run_fast(backer);
1053 }
1054
1055 static void
1056 run_fast_rl(void)
1057 {
1058     static long long int port_rl = LLONG_MIN;
1059
1060     if (time_msec() >= port_rl) {
1061         struct ofproto_dpif *ofproto;
1062
1063         HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
1064             run_fast(&ofproto->up);
1065         }
1066         port_rl = time_msec() + 200;
1067     }
1068 }
1069
1070 static void
1071 type_wait(const char *type)
1072 {
1073     struct dpif_backer *backer;
1074
1075     backer = shash_find_data(&all_dpif_backers, type);
1076     if (!backer) {
1077         /* This is not necessarily a problem, since backers are only
1078          * created on demand. */
1079         return;
1080     }
1081
1082     if (backer->governor) {
1083         governor_wait(backer->governor);
1084     }
1085
1086     timer_wait(&backer->next_expiration);
1087     dpif_wait(backer->dpif);
1088     udpif_wait(backer->udpif);
1089 }
1090 \f
1091 /* Basic life-cycle. */
1092
1093 static int add_internal_flows(struct ofproto_dpif *);
1094
1095 static struct ofproto *
1096 alloc(void)
1097 {
1098     struct ofproto_dpif *ofproto = xmalloc(sizeof *ofproto);
1099     return &ofproto->up;
1100 }
1101
1102 static void
1103 dealloc(struct ofproto *ofproto_)
1104 {
1105     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1106     free(ofproto);
1107 }
1108
1109 static void
1110 close_dpif_backer(struct dpif_backer *backer)
1111 {
1112     struct shash_node *node;
1113
1114     ovs_assert(backer->refcount > 0);
1115
1116     if (--backer->refcount) {
1117         return;
1118     }
1119
1120     drop_key_clear(backer);
1121     hmap_destroy(&backer->drop_keys);
1122
1123     simap_destroy(&backer->tnl_backers);
1124     ovs_rwlock_destroy(&backer->odp_to_ofport_lock);
1125     hmap_destroy(&backer->odp_to_ofport_map);
1126     node = shash_find(&all_dpif_backers, backer->type);
1127     free(backer->type);
1128     shash_delete(&all_dpif_backers, node);
1129     udpif_destroy(backer->udpif);
1130     dpif_close(backer->dpif);
1131
1132     ovs_assert(hmap_is_empty(&backer->subfacets));
1133     hmap_destroy(&backer->subfacets);
1134     governor_destroy(backer->governor);
1135
1136     free(backer);
1137 }
1138
1139 /* Datapath port slated for removal from datapath. */
1140 struct odp_garbage {
1141     struct list list_node;
1142     odp_port_t odp_port;
1143 };
1144
1145 static int
1146 open_dpif_backer(const char *type, struct dpif_backer **backerp)
1147 {
1148     struct dpif_backer *backer;
1149     struct dpif_port_dump port_dump;
1150     struct dpif_port port;
1151     struct shash_node *node;
1152     struct list garbage_list;
1153     struct odp_garbage *garbage, *next;
1154     struct sset names;
1155     char *backer_name;
1156     const char *name;
1157     int error;
1158
1159     backer = shash_find_data(&all_dpif_backers, type);
1160     if (backer) {
1161         backer->refcount++;
1162         *backerp = backer;
1163         return 0;
1164     }
1165
1166     backer_name = xasprintf("ovs-%s", type);
1167
1168     /* Remove any existing datapaths, since we assume we're the only
1169      * userspace controlling the datapath. */
1170     sset_init(&names);
1171     dp_enumerate_names(type, &names);
1172     SSET_FOR_EACH(name, &names) {
1173         struct dpif *old_dpif;
1174
1175         /* Don't remove our backer if it exists. */
1176         if (!strcmp(name, backer_name)) {
1177             continue;
1178         }
1179
1180         if (dpif_open(name, type, &old_dpif)) {
1181             VLOG_WARN("couldn't open old datapath %s to remove it", name);
1182         } else {
1183             dpif_delete(old_dpif);
1184             dpif_close(old_dpif);
1185         }
1186     }
1187     sset_destroy(&names);
1188
1189     backer = xmalloc(sizeof *backer);
1190
1191     error = dpif_create_and_open(backer_name, type, &backer->dpif);
1192     free(backer_name);
1193     if (error) {
1194         VLOG_ERR("failed to open datapath of type %s: %s", type,
1195                  ovs_strerror(error));
1196         free(backer);
1197         return error;
1198     }
1199     backer->udpif = udpif_create(backer, backer->dpif);
1200
1201     backer->type = xstrdup(type);
1202     backer->governor = NULL;
1203     backer->refcount = 1;
1204     hmap_init(&backer->odp_to_ofport_map);
1205     ovs_rwlock_init(&backer->odp_to_ofport_lock);
1206     hmap_init(&backer->drop_keys);
1207     hmap_init(&backer->subfacets);
1208     timer_set_duration(&backer->next_expiration, 1000);
1209     backer->need_revalidate = 0;
1210     simap_init(&backer->tnl_backers);
1211     backer->recv_set_enable = !ofproto_get_flow_restore_wait();
1212     *backerp = backer;
1213
1214     if (backer->recv_set_enable) {
1215         dpif_flow_flush(backer->dpif);
1216     }
1217
1218     /* Loop through the ports already on the datapath and remove any
1219      * that we don't need anymore. */
1220     list_init(&garbage_list);
1221     dpif_port_dump_start(&port_dump, backer->dpif);
1222     while (dpif_port_dump_next(&port_dump, &port)) {
1223         node = shash_find(&init_ofp_ports, port.name);
1224         if (!node && strcmp(port.name, dpif_base_name(backer->dpif))) {
1225             garbage = xmalloc(sizeof *garbage);
1226             garbage->odp_port = port.port_no;
1227             list_push_front(&garbage_list, &garbage->list_node);
1228         }
1229     }
1230     dpif_port_dump_done(&port_dump);
1231
1232     LIST_FOR_EACH_SAFE (garbage, next, list_node, &garbage_list) {
1233         dpif_port_del(backer->dpif, garbage->odp_port);
1234         list_remove(&garbage->list_node);
1235         free(garbage);
1236     }
1237
1238     shash_add(&all_dpif_backers, type, backer);
1239
1240     error = dpif_recv_set(backer->dpif, backer->recv_set_enable);
1241     if (error) {
1242         VLOG_ERR("failed to listen on datapath of type %s: %s",
1243                  type, ovs_strerror(error));
1244         close_dpif_backer(backer);
1245         return error;
1246     }
1247     udpif_recv_set(backer->udpif, n_handler_threads,
1248                    backer->recv_set_enable);
1249     backer->n_handler_threads = n_handler_threads;
1250
1251     backer->max_n_subfacet = 0;
1252     backer->created = time_msec();
1253     backer->last_minute = backer->created;
1254     memset(&backer->hourly, 0, sizeof backer->hourly);
1255     memset(&backer->daily, 0, sizeof backer->daily);
1256     memset(&backer->lifetime, 0, sizeof backer->lifetime);
1257     backer->subfacet_add_count = 0;
1258     backer->subfacet_del_count = 0;
1259     backer->total_subfacet_add_count = 0;
1260     backer->total_subfacet_del_count = 0;
1261     backer->avg_n_subfacet = 0;
1262     backer->avg_subfacet_life = 0;
1263
1264     return error;
1265 }
1266
1267 static int
1268 construct(struct ofproto *ofproto_)
1269 {
1270     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1271     struct shash_node *node, *next;
1272     uint32_t max_ports;
1273     int error;
1274
1275     error = open_dpif_backer(ofproto->up.type, &ofproto->backer);
1276     if (error) {
1277         return error;
1278     }
1279
1280     max_ports = dpif_get_max_ports(ofproto->backer->dpif);
1281     ofproto_init_max_ports(ofproto_, MIN(max_ports, ofp_to_u16(OFPP_MAX)));
1282
1283     ofproto->netflow = NULL;
1284     ofproto->sflow = NULL;
1285     ofproto->ipfix = NULL;
1286     ofproto->stp = NULL;
1287     hmap_init(&ofproto->bundles);
1288     ofproto->ml = mac_learning_create(MAC_ENTRY_DEFAULT_IDLE_TIME);
1289     ofproto->mbridge = mbridge_create();
1290     ofproto->has_bonded_bundles = false;
1291     ovs_mutex_init(&ofproto->vsp_mutex);
1292
1293     classifier_init(&ofproto->facets);
1294     ofproto->consistency_rl = LLONG_MIN;
1295
1296     list_init(&ofproto->completions);
1297
1298     ovs_mutex_init(&ofproto->flow_mod_mutex);
1299     ovs_mutex_lock(&ofproto->flow_mod_mutex);
1300     list_init(&ofproto->flow_mods);
1301     ofproto->n_flow_mods = 0;
1302     ovs_mutex_unlock(&ofproto->flow_mod_mutex);
1303
1304     ovs_mutex_init(&ofproto->pin_mutex);
1305     ovs_mutex_lock(&ofproto->pin_mutex);
1306     list_init(&ofproto->pins);
1307     ofproto->n_pins = 0;
1308     ovs_mutex_unlock(&ofproto->pin_mutex);
1309
1310     ofproto_dpif_unixctl_init();
1311
1312     hmap_init(&ofproto->vlandev_map);
1313     hmap_init(&ofproto->realdev_vid_map);
1314
1315     sset_init(&ofproto->ports);
1316     sset_init(&ofproto->ghost_ports);
1317     sset_init(&ofproto->port_poll_set);
1318     ofproto->port_poll_errno = 0;
1319
1320     SHASH_FOR_EACH_SAFE (node, next, &init_ofp_ports) {
1321         struct iface_hint *iface_hint = node->data;
1322
1323         if (!strcmp(iface_hint->br_name, ofproto->up.name)) {
1324             /* Check if the datapath already has this port. */
1325             if (dpif_port_exists(ofproto->backer->dpif, node->name)) {
1326                 sset_add(&ofproto->ports, node->name);
1327             }
1328
1329             free(iface_hint->br_name);
1330             free(iface_hint->br_type);
1331             free(iface_hint);
1332             shash_delete(&init_ofp_ports, node);
1333         }
1334     }
1335
1336     hmap_insert(&all_ofproto_dpifs, &ofproto->all_ofproto_dpifs_node,
1337                 hash_string(ofproto->up.name, 0));
1338     memset(&ofproto->stats, 0, sizeof ofproto->stats);
1339
1340     ofproto_init_tables(ofproto_, N_TABLES);
1341     error = add_internal_flows(ofproto);
1342     ofproto->up.tables[TBL_INTERNAL].flags = OFTABLE_HIDDEN | OFTABLE_READONLY;
1343
1344     ofproto->n_hit = 0;
1345     ofproto->n_missed = 0;
1346
1347     return error;
1348 }
1349
1350 static int
1351 add_internal_flow(struct ofproto_dpif *ofproto, int id,
1352                   const struct ofpbuf *ofpacts, struct rule_dpif **rulep)
1353 {
1354     struct ofputil_flow_mod fm;
1355     int error;
1356
1357     match_init_catchall(&fm.match);
1358     fm.priority = 0;
1359     match_set_reg(&fm.match, 0, id);
1360     fm.new_cookie = htonll(0);
1361     fm.cookie = htonll(0);
1362     fm.cookie_mask = htonll(0);
1363     fm.modify_cookie = false;
1364     fm.table_id = TBL_INTERNAL;
1365     fm.command = OFPFC_ADD;
1366     fm.idle_timeout = 0;
1367     fm.hard_timeout = 0;
1368     fm.buffer_id = 0;
1369     fm.out_port = 0;
1370     fm.flags = 0;
1371     fm.ofpacts = ofpacts->data;
1372     fm.ofpacts_len = ofpacts->size;
1373
1374     error = ofproto_flow_mod(&ofproto->up, &fm);
1375     if (error) {
1376         VLOG_ERR_RL(&rl, "failed to add internal flow %d (%s)",
1377                     id, ofperr_to_string(error));
1378         return error;
1379     }
1380
1381     if (rule_dpif_lookup_in_table(ofproto, &fm.match.flow, NULL, TBL_INTERNAL,
1382                                   rulep)) {
1383         rule_dpif_release(*rulep);
1384     } else {
1385         NOT_REACHED();
1386     }
1387
1388     return 0;
1389 }
1390
1391 static int
1392 add_internal_flows(struct ofproto_dpif *ofproto)
1393 {
1394     struct ofpact_controller *controller;
1395     uint64_t ofpacts_stub[128 / 8];
1396     struct ofpbuf ofpacts;
1397     int error;
1398     int id;
1399
1400     ofpbuf_use_stack(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
1401     id = 1;
1402
1403     controller = ofpact_put_CONTROLLER(&ofpacts);
1404     controller->max_len = UINT16_MAX;
1405     controller->controller_id = 0;
1406     controller->reason = OFPR_NO_MATCH;
1407     ofpact_pad(&ofpacts);
1408
1409     error = add_internal_flow(ofproto, id++, &ofpacts, &ofproto->miss_rule);
1410     if (error) {
1411         return error;
1412     }
1413
1414     ofpbuf_clear(&ofpacts);
1415     error = add_internal_flow(ofproto, id++, &ofpacts,
1416                               &ofproto->no_packet_in_rule);
1417     if (error) {
1418         return error;
1419     }
1420
1421     error = add_internal_flow(ofproto, id++, &ofpacts,
1422                               &ofproto->drop_frags_rule);
1423     return error;
1424 }
1425
1426 static void
1427 complete_operations(struct ofproto_dpif *ofproto)
1428 {
1429     struct dpif_completion *c, *next;
1430
1431     LIST_FOR_EACH_SAFE (c, next, list_node, &ofproto->completions) {
1432         ofoperation_complete(c->op, 0);
1433         list_remove(&c->list_node);
1434         free(c);
1435     }
1436 }
1437
1438 static void
1439 destruct(struct ofproto *ofproto_)
1440 {
1441     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1442     struct rule_dpif *rule, *next_rule;
1443     struct ofputil_packet_in *pin, *next_pin;
1444     struct ofputil_flow_mod *fm, *next_fm;
1445     struct facet *facet, *next_facet;
1446     struct cls_cursor cursor;
1447     struct oftable *table;
1448
1449     ovs_rwlock_rdlock(&ofproto->facets.rwlock);
1450     cls_cursor_init(&cursor, &ofproto->facets, NULL);
1451     ovs_rwlock_unlock(&ofproto->facets.rwlock);
1452     CLS_CURSOR_FOR_EACH_SAFE (facet, next_facet, cr, &cursor) {
1453         facet_remove(facet);
1454     }
1455
1456     ofproto->backer->need_revalidate = REV_RECONFIGURE;
1457     ovs_rwlock_wrlock(&xlate_rwlock);
1458     xlate_remove_ofproto(ofproto);
1459     ovs_rwlock_unlock(&xlate_rwlock);
1460
1461     flow_miss_batch_ofproto_destroyed(ofproto->backer->udpif, ofproto);
1462
1463     hmap_remove(&all_ofproto_dpifs, &ofproto->all_ofproto_dpifs_node);
1464     complete_operations(ofproto);
1465
1466     OFPROTO_FOR_EACH_TABLE (table, &ofproto->up) {
1467         struct cls_cursor cursor;
1468
1469         ovs_rwlock_wrlock(&table->cls.rwlock);
1470         cls_cursor_init(&cursor, &table->cls, NULL);
1471         CLS_CURSOR_FOR_EACH_SAFE (rule, next_rule, up.cr, &cursor) {
1472             ofproto_rule_delete(&ofproto->up, &table->cls, &rule->up);
1473         }
1474         ovs_rwlock_unlock(&table->cls.rwlock);
1475     }
1476     complete_operations(ofproto);
1477
1478     ovs_mutex_lock(&ofproto->flow_mod_mutex);
1479     LIST_FOR_EACH_SAFE (fm, next_fm, list_node, &ofproto->flow_mods) {
1480         list_remove(&fm->list_node);
1481         ofproto->n_flow_mods--;
1482         free(fm->ofpacts);
1483         free(fm);
1484     }
1485     ovs_mutex_unlock(&ofproto->flow_mod_mutex);
1486     ovs_mutex_destroy(&ofproto->flow_mod_mutex);
1487
1488     ovs_mutex_lock(&ofproto->pin_mutex);
1489     LIST_FOR_EACH_SAFE (pin, next_pin, list_node, &ofproto->pins) {
1490         list_remove(&pin->list_node);
1491         ofproto->n_pins--;
1492         free(CONST_CAST(void *, pin->packet));
1493         free(pin);
1494     }
1495     ovs_mutex_unlock(&ofproto->pin_mutex);
1496     ovs_mutex_destroy(&ofproto->pin_mutex);
1497
1498     mbridge_unref(ofproto->mbridge);
1499
1500     netflow_destroy(ofproto->netflow);
1501     dpif_sflow_unref(ofproto->sflow);
1502     hmap_destroy(&ofproto->bundles);
1503     mac_learning_unref(ofproto->ml);
1504
1505     classifier_destroy(&ofproto->facets);
1506
1507     hmap_destroy(&ofproto->vlandev_map);
1508     hmap_destroy(&ofproto->realdev_vid_map);
1509
1510     sset_destroy(&ofproto->ports);
1511     sset_destroy(&ofproto->ghost_ports);
1512     sset_destroy(&ofproto->port_poll_set);
1513
1514     ovs_mutex_destroy(&ofproto->vsp_mutex);
1515
1516     close_dpif_backer(ofproto->backer);
1517 }
1518
1519 static int
1520 run_fast(struct ofproto *ofproto_)
1521 {
1522     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1523     struct ofputil_packet_in *pin, *next_pin;
1524     struct ofputil_flow_mod *fm, *next_fm;
1525     struct list flow_mods, pins;
1526     struct ofport_dpif *ofport;
1527
1528     /* Do not perform any periodic activity required by 'ofproto' while
1529      * waiting for flow restore to complete. */
1530     if (ofproto_get_flow_restore_wait()) {
1531         return 0;
1532     }
1533
1534     ovs_mutex_lock(&ofproto->flow_mod_mutex);
1535     list_move(&flow_mods, &ofproto->flow_mods);
1536     list_init(&ofproto->flow_mods);
1537     ofproto->n_flow_mods = 0;
1538     ovs_mutex_unlock(&ofproto->flow_mod_mutex);
1539
1540     LIST_FOR_EACH_SAFE (fm, next_fm, list_node, &flow_mods) {
1541         int error = ofproto_flow_mod(&ofproto->up, fm);
1542         if (error && !VLOG_DROP_WARN(&rl)) {
1543             VLOG_WARN("learning action failed to modify flow table (%s)",
1544                       ofperr_get_name(error));
1545         }
1546
1547         list_remove(&fm->list_node);
1548         free(fm->ofpacts);
1549         free(fm);
1550     }
1551
1552     ovs_mutex_lock(&ofproto->pin_mutex);
1553     list_move(&pins, &ofproto->pins);
1554     list_init(&ofproto->pins);
1555     ofproto->n_pins = 0;
1556     ovs_mutex_unlock(&ofproto->pin_mutex);
1557
1558     LIST_FOR_EACH_SAFE (pin, next_pin, list_node, &pins) {
1559         connmgr_send_packet_in(ofproto->up.connmgr, pin);
1560         list_remove(&pin->list_node);
1561         free(CONST_CAST(void *, pin->packet));
1562         free(pin);
1563     }
1564
1565     HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1566         port_run_fast(ofport);
1567     }
1568
1569     return 0;
1570 }
1571
1572 static int
1573 run(struct ofproto *ofproto_)
1574 {
1575     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1576     struct ofport_dpif *ofport;
1577     struct ofbundle *bundle;
1578     int error;
1579
1580     if (!clogged) {
1581         complete_operations(ofproto);
1582     }
1583
1584     if (mbridge_need_revalidate(ofproto->mbridge)) {
1585         ofproto->backer->need_revalidate = REV_RECONFIGURE;
1586         ovs_rwlock_wrlock(&ofproto->ml->rwlock);
1587         mac_learning_flush(ofproto->ml);
1588         ovs_rwlock_unlock(&ofproto->ml->rwlock);
1589     }
1590
1591     /* Do not perform any periodic activity below required by 'ofproto' while
1592      * waiting for flow restore to complete. */
1593     if (ofproto_get_flow_restore_wait()) {
1594         return 0;
1595     }
1596
1597     error = run_fast(ofproto_);
1598     if (error) {
1599         return error;
1600     }
1601
1602     if (ofproto->netflow) {
1603         if (netflow_run(ofproto->netflow)) {
1604             send_netflow_active_timeouts(ofproto);
1605         }
1606     }
1607     if (ofproto->sflow) {
1608         dpif_sflow_run(ofproto->sflow);
1609     }
1610     if (ofproto->ipfix) {
1611         dpif_ipfix_run(ofproto->ipfix);
1612     }
1613
1614     HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1615         port_run(ofport);
1616     }
1617     HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
1618         bundle_run(bundle);
1619     }
1620
1621     stp_run(ofproto);
1622     ovs_rwlock_wrlock(&ofproto->ml->rwlock);
1623     if (mac_learning_run(ofproto->ml)) {
1624         ofproto->backer->need_revalidate = REV_MAC_LEARNING;
1625     }
1626     ovs_rwlock_unlock(&ofproto->ml->rwlock);
1627
1628     /* Check the consistency of a random facet, to aid debugging. */
1629     ovs_rwlock_rdlock(&ofproto->facets.rwlock);
1630     if (time_msec() >= ofproto->consistency_rl
1631         && !classifier_is_empty(&ofproto->facets)
1632         && !ofproto->backer->need_revalidate) {
1633         struct cls_table *table;
1634         struct cls_rule *cr;
1635         struct facet *facet;
1636
1637         ofproto->consistency_rl = time_msec() + 250;
1638
1639         table = CONTAINER_OF(hmap_random_node(&ofproto->facets.tables),
1640                              struct cls_table, hmap_node);
1641         cr = CONTAINER_OF(hmap_random_node(&table->rules), struct cls_rule,
1642                           hmap_node);
1643         facet = CONTAINER_OF(cr, struct facet, cr);
1644
1645         if (!facet_check_consistency(facet)) {
1646             ofproto->backer->need_revalidate = REV_INCONSISTENCY;
1647         }
1648     }
1649     ovs_rwlock_unlock(&ofproto->facets.rwlock);
1650
1651     return 0;
1652 }
1653
1654 static void
1655 wait(struct ofproto *ofproto_)
1656 {
1657     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1658     struct ofport_dpif *ofport;
1659     struct ofbundle *bundle;
1660
1661     if (!clogged && !list_is_empty(&ofproto->completions)) {
1662         poll_immediate_wake();
1663     }
1664
1665     if (ofproto_get_flow_restore_wait()) {
1666         return;
1667     }
1668
1669     if (ofproto->sflow) {
1670         dpif_sflow_wait(ofproto->sflow);
1671     }
1672     if (ofproto->ipfix) {
1673         dpif_ipfix_wait(ofproto->ipfix);
1674     }
1675     HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1676         port_wait(ofport);
1677     }
1678     HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
1679         bundle_wait(bundle);
1680     }
1681     if (ofproto->netflow) {
1682         netflow_wait(ofproto->netflow);
1683     }
1684     ovs_rwlock_rdlock(&ofproto->ml->rwlock);
1685     mac_learning_wait(ofproto->ml);
1686     ovs_rwlock_unlock(&ofproto->ml->rwlock);
1687     stp_wait(ofproto);
1688     if (ofproto->backer->need_revalidate) {
1689         /* Shouldn't happen, but if it does just go around again. */
1690         VLOG_DBG_RL(&rl, "need revalidate in ofproto_wait_cb()");
1691         poll_immediate_wake();
1692     }
1693 }
1694
1695 static void
1696 get_memory_usage(const struct ofproto *ofproto_, struct simap *usage)
1697 {
1698     const struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1699     struct cls_cursor cursor;
1700     size_t n_subfacets = 0;
1701     struct facet *facet;
1702
1703     ovs_rwlock_rdlock(&ofproto->facets.rwlock);
1704     simap_increase(usage, "facets", classifier_count(&ofproto->facets));
1705     ovs_rwlock_unlock(&ofproto->facets.rwlock);
1706
1707     ovs_rwlock_rdlock(&ofproto->facets.rwlock);
1708     cls_cursor_init(&cursor, &ofproto->facets, NULL);
1709     CLS_CURSOR_FOR_EACH (facet, cr, &cursor) {
1710         n_subfacets += list_size(&facet->subfacets);
1711     }
1712     ovs_rwlock_unlock(&ofproto->facets.rwlock);
1713     simap_increase(usage, "subfacets", n_subfacets);
1714 }
1715
1716 static void
1717 flush(struct ofproto *ofproto_)
1718 {
1719     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1720     struct subfacet *subfacet, *next_subfacet;
1721     struct subfacet *batch[SUBFACET_DESTROY_MAX_BATCH];
1722     int n_batch;
1723
1724     n_batch = 0;
1725     HMAP_FOR_EACH_SAFE (subfacet, next_subfacet, hmap_node,
1726                         &ofproto->backer->subfacets) {
1727         if (subfacet->facet->ofproto != ofproto) {
1728             continue;
1729         }
1730
1731         if (subfacet->path != SF_NOT_INSTALLED) {
1732             batch[n_batch++] = subfacet;
1733             if (n_batch >= SUBFACET_DESTROY_MAX_BATCH) {
1734                 subfacet_destroy_batch(ofproto->backer, batch, n_batch);
1735                 n_batch = 0;
1736             }
1737         } else {
1738             subfacet_destroy(subfacet);
1739         }
1740     }
1741
1742     if (n_batch > 0) {
1743         subfacet_destroy_batch(ofproto->backer, batch, n_batch);
1744     }
1745 }
1746
1747 static void
1748 get_features(struct ofproto *ofproto_ OVS_UNUSED,
1749              bool *arp_match_ip, enum ofputil_action_bitmap *actions)
1750 {
1751     *arp_match_ip = true;
1752     *actions = (OFPUTIL_A_OUTPUT |
1753                 OFPUTIL_A_SET_VLAN_VID |
1754                 OFPUTIL_A_SET_VLAN_PCP |
1755                 OFPUTIL_A_STRIP_VLAN |
1756                 OFPUTIL_A_SET_DL_SRC |
1757                 OFPUTIL_A_SET_DL_DST |
1758                 OFPUTIL_A_SET_NW_SRC |
1759                 OFPUTIL_A_SET_NW_DST |
1760                 OFPUTIL_A_SET_NW_TOS |
1761                 OFPUTIL_A_SET_TP_SRC |
1762                 OFPUTIL_A_SET_TP_DST |
1763                 OFPUTIL_A_ENQUEUE);
1764 }
1765
1766 static void
1767 get_tables(struct ofproto *ofproto_, struct ofp12_table_stats *ots)
1768 {
1769     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1770     struct dpif_dp_stats s;
1771     uint64_t n_miss, n_no_pkt_in, n_bytes, n_dropped_frags;
1772     uint64_t n_lookup;
1773
1774     strcpy(ots->name, "classifier");
1775
1776     dpif_get_dp_stats(ofproto->backer->dpif, &s);
1777     rule_get_stats(&ofproto->miss_rule->up, &n_miss, &n_bytes);
1778     rule_get_stats(&ofproto->no_packet_in_rule->up, &n_no_pkt_in, &n_bytes);
1779     rule_get_stats(&ofproto->drop_frags_rule->up, &n_dropped_frags, &n_bytes);
1780
1781     n_lookup = s.n_hit + s.n_missed - n_dropped_frags;
1782     ots->lookup_count = htonll(n_lookup);
1783     ots->matched_count = htonll(n_lookup - n_miss - n_no_pkt_in);
1784 }
1785
1786 static struct ofport *
1787 port_alloc(void)
1788 {
1789     struct ofport_dpif *port = xmalloc(sizeof *port);
1790     return &port->up;
1791 }
1792
1793 static void
1794 port_dealloc(struct ofport *port_)
1795 {
1796     struct ofport_dpif *port = ofport_dpif_cast(port_);
1797     free(port);
1798 }
1799
1800 static int
1801 port_construct(struct ofport *port_)
1802 {
1803     struct ofport_dpif *port = ofport_dpif_cast(port_);
1804     struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
1805     const struct netdev *netdev = port->up.netdev;
1806     char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
1807     struct dpif_port dpif_port;
1808     int error;
1809
1810     ofproto->backer->need_revalidate = REV_RECONFIGURE;
1811     port->bundle = NULL;
1812     port->cfm = NULL;
1813     port->bfd = NULL;
1814     port->may_enable = true;
1815     port->stp_port = NULL;
1816     port->stp_state = STP_DISABLED;
1817     port->is_tunnel = false;
1818     port->peer = NULL;
1819     port->qdscp = NULL;
1820     port->n_qdscp = 0;
1821     port->realdev_ofp_port = 0;
1822     port->vlandev_vid = 0;
1823     port->carrier_seq = netdev_get_carrier_resets(netdev);
1824
1825     if (netdev_vport_is_patch(netdev)) {
1826         /* By bailing out here, we don't submit the port to the sFlow module
1827          * to be considered for counter polling export.  This is correct
1828          * because the patch port represents an interface that sFlow considers
1829          * to be "internal" to the switch as a whole, and therefore not an
1830          * candidate for counter polling. */
1831         port->odp_port = ODPP_NONE;
1832         ofport_update_peer(port);
1833         return 0;
1834     }
1835
1836     error = dpif_port_query_by_name(ofproto->backer->dpif,
1837                                     netdev_vport_get_dpif_port(netdev, namebuf,
1838                                                                sizeof namebuf),
1839                                     &dpif_port);
1840     if (error) {
1841         return error;
1842     }
1843
1844     port->odp_port = dpif_port.port_no;
1845
1846     if (netdev_get_tunnel_config(netdev)) {
1847         tnl_port_add(port, port->up.netdev, port->odp_port);
1848         port->is_tunnel = true;
1849     } else {
1850         /* Sanity-check that a mapping doesn't already exist.  This
1851          * shouldn't happen for non-tunnel ports. */
1852         if (odp_port_to_ofp_port(ofproto, port->odp_port) != OFPP_NONE) {
1853             VLOG_ERR("port %s already has an OpenFlow port number",
1854                      dpif_port.name);
1855             dpif_port_destroy(&dpif_port);
1856             return EBUSY;
1857         }
1858
1859         ovs_rwlock_wrlock(&ofproto->backer->odp_to_ofport_lock);
1860         hmap_insert(&ofproto->backer->odp_to_ofport_map, &port->odp_port_node,
1861                     hash_odp_port(port->odp_port));
1862         ovs_rwlock_unlock(&ofproto->backer->odp_to_ofport_lock);
1863     }
1864     dpif_port_destroy(&dpif_port);
1865
1866     if (ofproto->sflow) {
1867         dpif_sflow_add_port(ofproto->sflow, port_, port->odp_port);
1868     }
1869
1870     return 0;
1871 }
1872
1873 static void
1874 port_destruct(struct ofport *port_)
1875 {
1876     struct ofport_dpif *port = ofport_dpif_cast(port_);
1877     struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
1878     const char *devname = netdev_get_name(port->up.netdev);
1879     char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
1880     const char *dp_port_name;
1881
1882     ofproto->backer->need_revalidate = REV_RECONFIGURE;
1883     ovs_rwlock_wrlock(&xlate_rwlock);
1884     xlate_ofport_remove(port);
1885     ovs_rwlock_unlock(&xlate_rwlock);
1886
1887     dp_port_name = netdev_vport_get_dpif_port(port->up.netdev, namebuf,
1888                                               sizeof namebuf);
1889     if (dpif_port_exists(ofproto->backer->dpif, dp_port_name)) {
1890         /* The underlying device is still there, so delete it.  This
1891          * happens when the ofproto is being destroyed, since the caller
1892          * assumes that removal of attached ports will happen as part of
1893          * destruction. */
1894         if (!port->is_tunnel) {
1895             dpif_port_del(ofproto->backer->dpif, port->odp_port);
1896         }
1897     }
1898
1899     if (port->peer) {
1900         port->peer->peer = NULL;
1901         port->peer = NULL;
1902     }
1903
1904     if (port->odp_port != ODPP_NONE && !port->is_tunnel) {
1905         ovs_rwlock_wrlock(&ofproto->backer->odp_to_ofport_lock);
1906         hmap_remove(&ofproto->backer->odp_to_ofport_map, &port->odp_port_node);
1907         ovs_rwlock_unlock(&ofproto->backer->odp_to_ofport_lock);
1908     }
1909
1910     tnl_port_del(port);
1911     sset_find_and_delete(&ofproto->ports, devname);
1912     sset_find_and_delete(&ofproto->ghost_ports, devname);
1913     bundle_remove(port_);
1914     set_cfm(port_, NULL);
1915     set_bfd(port_, NULL);
1916     if (ofproto->sflow) {
1917         dpif_sflow_del_port(ofproto->sflow, port->odp_port);
1918     }
1919
1920     free(port->qdscp);
1921 }
1922
1923 static void
1924 port_modified(struct ofport *port_)
1925 {
1926     struct ofport_dpif *port = ofport_dpif_cast(port_);
1927
1928     if (port->bundle && port->bundle->bond) {
1929         bond_slave_set_netdev(port->bundle->bond, port, port->up.netdev);
1930     }
1931
1932     if (port->cfm) {
1933         cfm_set_netdev(port->cfm, port->up.netdev);
1934     }
1935
1936     if (port->bfd) {
1937         bfd_set_netdev(port->bfd, port->up.netdev);
1938     }
1939
1940     if (port->is_tunnel && tnl_port_reconfigure(port, port->up.netdev,
1941                                                 port->odp_port)) {
1942         ofproto_dpif_cast(port->up.ofproto)->backer->need_revalidate =
1943             REV_RECONFIGURE;
1944     }
1945
1946     ofport_update_peer(port);
1947 }
1948
1949 static void
1950 port_reconfigured(struct ofport *port_, enum ofputil_port_config old_config)
1951 {
1952     struct ofport_dpif *port = ofport_dpif_cast(port_);
1953     struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
1954     enum ofputil_port_config changed = old_config ^ port->up.pp.config;
1955
1956     if (changed & (OFPUTIL_PC_NO_RECV | OFPUTIL_PC_NO_RECV_STP |
1957                    OFPUTIL_PC_NO_FWD | OFPUTIL_PC_NO_FLOOD |
1958                    OFPUTIL_PC_NO_PACKET_IN)) {
1959         ofproto->backer->need_revalidate = REV_RECONFIGURE;
1960
1961         if (changed & OFPUTIL_PC_NO_FLOOD && port->bundle) {
1962             bundle_update(port->bundle);
1963         }
1964     }
1965 }
1966
1967 static int
1968 set_sflow(struct ofproto *ofproto_,
1969           const struct ofproto_sflow_options *sflow_options)
1970 {
1971     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1972     struct dpif_sflow *ds = ofproto->sflow;
1973
1974     if (sflow_options) {
1975         if (!ds) {
1976             struct ofport_dpif *ofport;
1977
1978             ds = ofproto->sflow = dpif_sflow_create();
1979             HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1980                 dpif_sflow_add_port(ds, &ofport->up, ofport->odp_port);
1981             }
1982             ofproto->backer->need_revalidate = REV_RECONFIGURE;
1983         }
1984         dpif_sflow_set_options(ds, sflow_options);
1985     } else {
1986         if (ds) {
1987             dpif_sflow_unref(ds);
1988             ofproto->backer->need_revalidate = REV_RECONFIGURE;
1989             ofproto->sflow = NULL;
1990         }
1991     }
1992     return 0;
1993 }
1994
1995 static int
1996 set_ipfix(
1997     struct ofproto *ofproto_,
1998     const struct ofproto_ipfix_bridge_exporter_options *bridge_exporter_options,
1999     const struct ofproto_ipfix_flow_exporter_options *flow_exporters_options,
2000     size_t n_flow_exporters_options)
2001 {
2002     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2003     struct dpif_ipfix *di = ofproto->ipfix;
2004     bool has_options = bridge_exporter_options || flow_exporters_options;
2005
2006     if (has_options && !di) {
2007         di = ofproto->ipfix = dpif_ipfix_create();
2008     }
2009
2010     if (di) {
2011         /* Call set_options in any case to cleanly flush the flow
2012          * caches in the last exporters that are to be destroyed. */
2013         dpif_ipfix_set_options(
2014             di, bridge_exporter_options, flow_exporters_options,
2015             n_flow_exporters_options);
2016
2017         if (!has_options) {
2018             dpif_ipfix_unref(di);
2019             ofproto->ipfix = NULL;
2020         }
2021     }
2022
2023     return 0;
2024 }
2025
2026 static int
2027 set_cfm(struct ofport *ofport_, const struct cfm_settings *s)
2028 {
2029     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2030     int error;
2031
2032     if (!s) {
2033         error = 0;
2034     } else {
2035         if (!ofport->cfm) {
2036             struct ofproto_dpif *ofproto;
2037
2038             ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2039             ofproto->backer->need_revalidate = REV_RECONFIGURE;
2040             ofport->cfm = cfm_create(ofport->up.netdev);
2041         }
2042
2043         if (cfm_configure(ofport->cfm, s)) {
2044             return 0;
2045         }
2046
2047         error = EINVAL;
2048     }
2049     cfm_unref(ofport->cfm);
2050     ofport->cfm = NULL;
2051     return error;
2052 }
2053
2054 static bool
2055 get_cfm_status(const struct ofport *ofport_,
2056                struct ofproto_cfm_status *status)
2057 {
2058     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2059
2060     if (ofport->cfm) {
2061         status->faults = cfm_get_fault(ofport->cfm);
2062         status->remote_opstate = cfm_get_opup(ofport->cfm);
2063         status->health = cfm_get_health(ofport->cfm);
2064         cfm_get_remote_mpids(ofport->cfm, &status->rmps, &status->n_rmps);
2065         return true;
2066     } else {
2067         return false;
2068     }
2069 }
2070
2071 static int
2072 set_bfd(struct ofport *ofport_, const struct smap *cfg)
2073 {
2074     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport_->ofproto);
2075     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2076     struct bfd *old;
2077
2078     old = ofport->bfd;
2079     ofport->bfd = bfd_configure(old, netdev_get_name(ofport->up.netdev),
2080                                 cfg, ofport->up.netdev);
2081     if (ofport->bfd != old) {
2082         ofproto->backer->need_revalidate = REV_RECONFIGURE;
2083     }
2084
2085     return 0;
2086 }
2087
2088 static int
2089 get_bfd_status(struct ofport *ofport_, struct smap *smap)
2090 {
2091     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2092
2093     if (ofport->bfd) {
2094         bfd_get_status(ofport->bfd, smap);
2095         return 0;
2096     } else {
2097         return ENOENT;
2098     }
2099 }
2100 \f
2101 /* Spanning Tree. */
2102
2103 static void
2104 send_bpdu_cb(struct ofpbuf *pkt, int port_num, void *ofproto_)
2105 {
2106     struct ofproto_dpif *ofproto = ofproto_;
2107     struct stp_port *sp = stp_get_port(ofproto->stp, port_num);
2108     struct ofport_dpif *ofport;
2109
2110     ofport = stp_port_get_aux(sp);
2111     if (!ofport) {
2112         VLOG_WARN_RL(&rl, "%s: cannot send BPDU on unknown port %d",
2113                      ofproto->up.name, port_num);
2114     } else {
2115         struct eth_header *eth = pkt->l2;
2116
2117         netdev_get_etheraddr(ofport->up.netdev, eth->eth_src);
2118         if (eth_addr_is_zero(eth->eth_src)) {
2119             VLOG_WARN_RL(&rl, "%s: cannot send BPDU on port %d "
2120                          "with unknown MAC", ofproto->up.name, port_num);
2121         } else {
2122             send_packet(ofport, pkt);
2123         }
2124     }
2125     ofpbuf_delete(pkt);
2126 }
2127
2128 /* Configures STP on 'ofproto_' using the settings defined in 's'. */
2129 static int
2130 set_stp(struct ofproto *ofproto_, const struct ofproto_stp_settings *s)
2131 {
2132     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2133
2134     /* Only revalidate flows if the configuration changed. */
2135     if (!s != !ofproto->stp) {
2136         ofproto->backer->need_revalidate = REV_RECONFIGURE;
2137     }
2138
2139     if (s) {
2140         if (!ofproto->stp) {
2141             ofproto->stp = stp_create(ofproto_->name, s->system_id,
2142                                       send_bpdu_cb, ofproto);
2143             ofproto->stp_last_tick = time_msec();
2144         }
2145
2146         stp_set_bridge_id(ofproto->stp, s->system_id);
2147         stp_set_bridge_priority(ofproto->stp, s->priority);
2148         stp_set_hello_time(ofproto->stp, s->hello_time);
2149         stp_set_max_age(ofproto->stp, s->max_age);
2150         stp_set_forward_delay(ofproto->stp, s->fwd_delay);
2151     }  else {
2152         struct ofport *ofport;
2153
2154         HMAP_FOR_EACH (ofport, hmap_node, &ofproto->up.ports) {
2155             set_stp_port(ofport, NULL);
2156         }
2157
2158         stp_unref(ofproto->stp);
2159         ofproto->stp = NULL;
2160     }
2161
2162     return 0;
2163 }
2164
2165 static int
2166 get_stp_status(struct ofproto *ofproto_, struct ofproto_stp_status *s)
2167 {
2168     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2169
2170     if (ofproto->stp) {
2171         s->enabled = true;
2172         s->bridge_id = stp_get_bridge_id(ofproto->stp);
2173         s->designated_root = stp_get_designated_root(ofproto->stp);
2174         s->root_path_cost = stp_get_root_path_cost(ofproto->stp);
2175     } else {
2176         s->enabled = false;
2177     }
2178
2179     return 0;
2180 }
2181
2182 static void
2183 update_stp_port_state(struct ofport_dpif *ofport)
2184 {
2185     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2186     enum stp_state state;
2187
2188     /* Figure out new state. */
2189     state = ofport->stp_port ? stp_port_get_state(ofport->stp_port)
2190                              : STP_DISABLED;
2191
2192     /* Update state. */
2193     if (ofport->stp_state != state) {
2194         enum ofputil_port_state of_state;
2195         bool fwd_change;
2196
2197         VLOG_DBG_RL(&rl, "port %s: STP state changed from %s to %s",
2198                     netdev_get_name(ofport->up.netdev),
2199                     stp_state_name(ofport->stp_state),
2200                     stp_state_name(state));
2201         if (stp_learn_in_state(ofport->stp_state)
2202                 != stp_learn_in_state(state)) {
2203             /* xxx Learning action flows should also be flushed. */
2204             ovs_rwlock_wrlock(&ofproto->ml->rwlock);
2205             mac_learning_flush(ofproto->ml);
2206             ovs_rwlock_unlock(&ofproto->ml->rwlock);
2207         }
2208         fwd_change = stp_forward_in_state(ofport->stp_state)
2209                         != stp_forward_in_state(state);
2210
2211         ofproto->backer->need_revalidate = REV_STP;
2212         ofport->stp_state = state;
2213         ofport->stp_state_entered = time_msec();
2214
2215         if (fwd_change && ofport->bundle) {
2216             bundle_update(ofport->bundle);
2217         }
2218
2219         /* Update the STP state bits in the OpenFlow port description. */
2220         of_state = ofport->up.pp.state & ~OFPUTIL_PS_STP_MASK;
2221         of_state |= (state == STP_LISTENING ? OFPUTIL_PS_STP_LISTEN
2222                      : state == STP_LEARNING ? OFPUTIL_PS_STP_LEARN
2223                      : state == STP_FORWARDING ? OFPUTIL_PS_STP_FORWARD
2224                      : state == STP_BLOCKING ?  OFPUTIL_PS_STP_BLOCK
2225                      : 0);
2226         ofproto_port_set_state(&ofport->up, of_state);
2227     }
2228 }
2229
2230 /* Configures STP on 'ofport_' using the settings defined in 's'.  The
2231  * caller is responsible for assigning STP port numbers and ensuring
2232  * there are no duplicates. */
2233 static int
2234 set_stp_port(struct ofport *ofport_,
2235              const struct ofproto_port_stp_settings *s)
2236 {
2237     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2238     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2239     struct stp_port *sp = ofport->stp_port;
2240
2241     if (!s || !s->enable) {
2242         if (sp) {
2243             ofport->stp_port = NULL;
2244             stp_port_disable(sp);
2245             update_stp_port_state(ofport);
2246         }
2247         return 0;
2248     } else if (sp && stp_port_no(sp) != s->port_num
2249             && ofport == stp_port_get_aux(sp)) {
2250         /* The port-id changed, so disable the old one if it's not
2251          * already in use by another port. */
2252         stp_port_disable(sp);
2253     }
2254
2255     sp = ofport->stp_port = stp_get_port(ofproto->stp, s->port_num);
2256     stp_port_enable(sp);
2257
2258     stp_port_set_aux(sp, ofport);
2259     stp_port_set_priority(sp, s->priority);
2260     stp_port_set_path_cost(sp, s->path_cost);
2261
2262     update_stp_port_state(ofport);
2263
2264     return 0;
2265 }
2266
2267 static int
2268 get_stp_port_status(struct ofport *ofport_,
2269                     struct ofproto_port_stp_status *s)
2270 {
2271     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2272     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2273     struct stp_port *sp = ofport->stp_port;
2274
2275     if (!ofproto->stp || !sp) {
2276         s->enabled = false;
2277         return 0;
2278     }
2279
2280     s->enabled = true;
2281     s->port_id = stp_port_get_id(sp);
2282     s->state = stp_port_get_state(sp);
2283     s->sec_in_state = (time_msec() - ofport->stp_state_entered) / 1000;
2284     s->role = stp_port_get_role(sp);
2285     stp_port_get_counts(sp, &s->tx_count, &s->rx_count, &s->error_count);
2286
2287     return 0;
2288 }
2289
2290 static void
2291 stp_run(struct ofproto_dpif *ofproto)
2292 {
2293     if (ofproto->stp) {
2294         long long int now = time_msec();
2295         long long int elapsed = now - ofproto->stp_last_tick;
2296         struct stp_port *sp;
2297
2298         if (elapsed > 0) {
2299             stp_tick(ofproto->stp, MIN(INT_MAX, elapsed));
2300             ofproto->stp_last_tick = now;
2301         }
2302         while (stp_get_changed_port(ofproto->stp, &sp)) {
2303             struct ofport_dpif *ofport = stp_port_get_aux(sp);
2304
2305             if (ofport) {
2306                 update_stp_port_state(ofport);
2307             }
2308         }
2309
2310         if (stp_check_and_reset_fdb_flush(ofproto->stp)) {
2311             ovs_rwlock_wrlock(&ofproto->ml->rwlock);
2312             mac_learning_flush(ofproto->ml);
2313             ovs_rwlock_unlock(&ofproto->ml->rwlock);
2314         }
2315     }
2316 }
2317
2318 static void
2319 stp_wait(struct ofproto_dpif *ofproto)
2320 {
2321     if (ofproto->stp) {
2322         poll_timer_wait(1000);
2323     }
2324 }
2325 \f
2326 static int
2327 set_queues(struct ofport *ofport_, const struct ofproto_port_queue *qdscp,
2328            size_t n_qdscp)
2329 {
2330     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2331     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2332
2333     if (ofport->n_qdscp != n_qdscp
2334         || (n_qdscp && memcmp(ofport->qdscp, qdscp,
2335                               n_qdscp * sizeof *qdscp))) {
2336         ofproto->backer->need_revalidate = REV_RECONFIGURE;
2337         free(ofport->qdscp);
2338         ofport->qdscp = n_qdscp
2339             ? xmemdup(qdscp, n_qdscp * sizeof *qdscp)
2340             : NULL;
2341         ofport->n_qdscp = n_qdscp;
2342     }
2343
2344     return 0;
2345 }
2346 \f
2347 /* Bundles. */
2348
2349 /* Expires all MAC learning entries associated with 'bundle' and forces its
2350  * ofproto to revalidate every flow.
2351  *
2352  * Normally MAC learning entries are removed only from the ofproto associated
2353  * with 'bundle', but if 'all_ofprotos' is true, then the MAC learning entries
2354  * are removed from every ofproto.  When patch ports and SLB bonds are in use
2355  * and a VM migration happens and the gratuitous ARPs are somehow lost, this
2356  * avoids a MAC_ENTRY_IDLE_TIME delay before the migrated VM can communicate
2357  * with the host from which it migrated. */
2358 static void
2359 bundle_flush_macs(struct ofbundle *bundle, bool all_ofprotos)
2360 {
2361     struct ofproto_dpif *ofproto = bundle->ofproto;
2362     struct mac_learning *ml = ofproto->ml;
2363     struct mac_entry *mac, *next_mac;
2364
2365     ofproto->backer->need_revalidate = REV_RECONFIGURE;
2366     ovs_rwlock_wrlock(&ml->rwlock);
2367     LIST_FOR_EACH_SAFE (mac, next_mac, lru_node, &ml->lrus) {
2368         if (mac->port.p == bundle) {
2369             if (all_ofprotos) {
2370                 struct ofproto_dpif *o;
2371
2372                 HMAP_FOR_EACH (o, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
2373                     if (o != ofproto) {
2374                         struct mac_entry *e;
2375
2376                         ovs_rwlock_wrlock(&o->ml->rwlock);
2377                         e = mac_learning_lookup(o->ml, mac->mac, mac->vlan);
2378                         if (e) {
2379                             mac_learning_expire(o->ml, e);
2380                         }
2381                         ovs_rwlock_unlock(&o->ml->rwlock);
2382                     }
2383                 }
2384             }
2385
2386             mac_learning_expire(ml, mac);
2387         }
2388     }
2389     ovs_rwlock_unlock(&ml->rwlock);
2390 }
2391
2392 static struct ofbundle *
2393 bundle_lookup(const struct ofproto_dpif *ofproto, void *aux)
2394 {
2395     struct ofbundle *bundle;
2396
2397     HMAP_FOR_EACH_IN_BUCKET (bundle, hmap_node, hash_pointer(aux, 0),
2398                              &ofproto->bundles) {
2399         if (bundle->aux == aux) {
2400             return bundle;
2401         }
2402     }
2403     return NULL;
2404 }
2405
2406 static void
2407 bundle_update(struct ofbundle *bundle)
2408 {
2409     struct ofport_dpif *port;
2410
2411     bundle->floodable = true;
2412     LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
2413         if (port->up.pp.config & OFPUTIL_PC_NO_FLOOD
2414             || !stp_forward_in_state(port->stp_state)) {
2415             bundle->floodable = false;
2416             break;
2417         }
2418     }
2419 }
2420
2421 static void
2422 bundle_del_port(struct ofport_dpif *port)
2423 {
2424     struct ofbundle *bundle = port->bundle;
2425
2426     bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
2427
2428     list_remove(&port->bundle_node);
2429     port->bundle = NULL;
2430
2431     if (bundle->lacp) {
2432         lacp_slave_unregister(bundle->lacp, port);
2433     }
2434     if (bundle->bond) {
2435         bond_slave_unregister(bundle->bond, port);
2436     }
2437
2438     bundle_update(bundle);
2439 }
2440
2441 static bool
2442 bundle_add_port(struct ofbundle *bundle, ofp_port_t ofp_port,
2443                 struct lacp_slave_settings *lacp)
2444 {
2445     struct ofport_dpif *port;
2446
2447     port = get_ofp_port(bundle->ofproto, ofp_port);
2448     if (!port) {
2449         return false;
2450     }
2451
2452     if (port->bundle != bundle) {
2453         bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
2454         if (port->bundle) {
2455             bundle_remove(&port->up);
2456         }
2457
2458         port->bundle = bundle;
2459         list_push_back(&bundle->ports, &port->bundle_node);
2460         if (port->up.pp.config & OFPUTIL_PC_NO_FLOOD
2461             || !stp_forward_in_state(port->stp_state)) {
2462             bundle->floodable = false;
2463         }
2464     }
2465     if (lacp) {
2466         bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
2467         lacp_slave_register(bundle->lacp, port, lacp);
2468     }
2469
2470     return true;
2471 }
2472
2473 static void
2474 bundle_destroy(struct ofbundle *bundle)
2475 {
2476     struct ofproto_dpif *ofproto;
2477     struct ofport_dpif *port, *next_port;
2478
2479     if (!bundle) {
2480         return;
2481     }
2482
2483     ofproto = bundle->ofproto;
2484     mbridge_unregister_bundle(ofproto->mbridge, bundle->aux);
2485
2486     ovs_rwlock_wrlock(&xlate_rwlock);
2487     xlate_bundle_remove(bundle);
2488     ovs_rwlock_unlock(&xlate_rwlock);
2489
2490     LIST_FOR_EACH_SAFE (port, next_port, bundle_node, &bundle->ports) {
2491         bundle_del_port(port);
2492     }
2493
2494     bundle_flush_macs(bundle, true);
2495     hmap_remove(&ofproto->bundles, &bundle->hmap_node);
2496     free(bundle->name);
2497     free(bundle->trunks);
2498     lacp_unref(bundle->lacp);
2499     bond_unref(bundle->bond);
2500     free(bundle);
2501 }
2502
2503 static int
2504 bundle_set(struct ofproto *ofproto_, void *aux,
2505            const struct ofproto_bundle_settings *s)
2506 {
2507     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2508     bool need_flush = false;
2509     struct ofport_dpif *port;
2510     struct ofbundle *bundle;
2511     unsigned long *trunks;
2512     int vlan;
2513     size_t i;
2514     bool ok;
2515
2516     if (!s) {
2517         bundle_destroy(bundle_lookup(ofproto, aux));
2518         return 0;
2519     }
2520
2521     ovs_assert(s->n_slaves == 1 || s->bond != NULL);
2522     ovs_assert((s->lacp != NULL) == (s->lacp_slaves != NULL));
2523
2524     bundle = bundle_lookup(ofproto, aux);
2525     if (!bundle) {
2526         bundle = xmalloc(sizeof *bundle);
2527
2528         bundle->ofproto = ofproto;
2529         hmap_insert(&ofproto->bundles, &bundle->hmap_node,
2530                     hash_pointer(aux, 0));
2531         bundle->aux = aux;
2532         bundle->name = NULL;
2533
2534         list_init(&bundle->ports);
2535         bundle->vlan_mode = PORT_VLAN_TRUNK;
2536         bundle->vlan = -1;
2537         bundle->trunks = NULL;
2538         bundle->use_priority_tags = s->use_priority_tags;
2539         bundle->lacp = NULL;
2540         bundle->bond = NULL;
2541
2542         bundle->floodable = true;
2543         mbridge_register_bundle(ofproto->mbridge, bundle);
2544     }
2545
2546     if (!bundle->name || strcmp(s->name, bundle->name)) {
2547         free(bundle->name);
2548         bundle->name = xstrdup(s->name);
2549     }
2550
2551     /* LACP. */
2552     if (s->lacp) {
2553         if (!bundle->lacp) {
2554             ofproto->backer->need_revalidate = REV_RECONFIGURE;
2555             bundle->lacp = lacp_create();
2556         }
2557         lacp_configure(bundle->lacp, s->lacp);
2558     } else {
2559         lacp_unref(bundle->lacp);
2560         bundle->lacp = NULL;
2561     }
2562
2563     /* Update set of ports. */
2564     ok = true;
2565     for (i = 0; i < s->n_slaves; i++) {
2566         if (!bundle_add_port(bundle, s->slaves[i],
2567                              s->lacp ? &s->lacp_slaves[i] : NULL)) {
2568             ok = false;
2569         }
2570     }
2571     if (!ok || list_size(&bundle->ports) != s->n_slaves) {
2572         struct ofport_dpif *next_port;
2573
2574         LIST_FOR_EACH_SAFE (port, next_port, bundle_node, &bundle->ports) {
2575             for (i = 0; i < s->n_slaves; i++) {
2576                 if (s->slaves[i] == port->up.ofp_port) {
2577                     goto found;
2578                 }
2579             }
2580
2581             bundle_del_port(port);
2582         found: ;
2583         }
2584     }
2585     ovs_assert(list_size(&bundle->ports) <= s->n_slaves);
2586
2587     if (list_is_empty(&bundle->ports)) {
2588         bundle_destroy(bundle);
2589         return EINVAL;
2590     }
2591
2592     /* Set VLAN tagging mode */
2593     if (s->vlan_mode != bundle->vlan_mode
2594         || s->use_priority_tags != bundle->use_priority_tags) {
2595         bundle->vlan_mode = s->vlan_mode;
2596         bundle->use_priority_tags = s->use_priority_tags;
2597         need_flush = true;
2598     }
2599
2600     /* Set VLAN tag. */
2601     vlan = (s->vlan_mode == PORT_VLAN_TRUNK ? -1
2602             : s->vlan >= 0 && s->vlan <= 4095 ? s->vlan
2603             : 0);
2604     if (vlan != bundle->vlan) {
2605         bundle->vlan = vlan;
2606         need_flush = true;
2607     }
2608
2609     /* Get trunked VLANs. */
2610     switch (s->vlan_mode) {
2611     case PORT_VLAN_ACCESS:
2612         trunks = NULL;
2613         break;
2614
2615     case PORT_VLAN_TRUNK:
2616         trunks = CONST_CAST(unsigned long *, s->trunks);
2617         break;
2618
2619     case PORT_VLAN_NATIVE_UNTAGGED:
2620     case PORT_VLAN_NATIVE_TAGGED:
2621         if (vlan != 0 && (!s->trunks
2622                           || !bitmap_is_set(s->trunks, vlan)
2623                           || bitmap_is_set(s->trunks, 0))) {
2624             /* Force trunking the native VLAN and prohibit trunking VLAN 0. */
2625             if (s->trunks) {
2626                 trunks = bitmap_clone(s->trunks, 4096);
2627             } else {
2628                 trunks = bitmap_allocate1(4096);
2629             }
2630             bitmap_set1(trunks, vlan);
2631             bitmap_set0(trunks, 0);
2632         } else {
2633             trunks = CONST_CAST(unsigned long *, s->trunks);
2634         }
2635         break;
2636
2637     default:
2638         NOT_REACHED();
2639     }
2640     if (!vlan_bitmap_equal(trunks, bundle->trunks)) {
2641         free(bundle->trunks);
2642         if (trunks == s->trunks) {
2643             bundle->trunks = vlan_bitmap_clone(trunks);
2644         } else {
2645             bundle->trunks = trunks;
2646             trunks = NULL;
2647         }
2648         need_flush = true;
2649     }
2650     if (trunks != s->trunks) {
2651         free(trunks);
2652     }
2653
2654     /* Bonding. */
2655     if (!list_is_short(&bundle->ports)) {
2656         bundle->ofproto->has_bonded_bundles = true;
2657         if (bundle->bond) {
2658             if (bond_reconfigure(bundle->bond, s->bond)) {
2659                 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2660             }
2661         } else {
2662             bundle->bond = bond_create(s->bond);
2663             ofproto->backer->need_revalidate = REV_RECONFIGURE;
2664         }
2665
2666         LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
2667             bond_slave_register(bundle->bond, port, port->up.netdev);
2668         }
2669     } else {
2670         bond_unref(bundle->bond);
2671         bundle->bond = NULL;
2672     }
2673
2674     /* If we changed something that would affect MAC learning, un-learn
2675      * everything on this port and force flow revalidation. */
2676     if (need_flush) {
2677         bundle_flush_macs(bundle, false);
2678     }
2679
2680     return 0;
2681 }
2682
2683 static void
2684 bundle_remove(struct ofport *port_)
2685 {
2686     struct ofport_dpif *port = ofport_dpif_cast(port_);
2687     struct ofbundle *bundle = port->bundle;
2688
2689     if (bundle) {
2690         bundle_del_port(port);
2691         if (list_is_empty(&bundle->ports)) {
2692             bundle_destroy(bundle);
2693         } else if (list_is_short(&bundle->ports)) {
2694             bond_unref(bundle->bond);
2695             bundle->bond = NULL;
2696         }
2697     }
2698 }
2699
2700 static void
2701 send_pdu_cb(void *port_, const void *pdu, size_t pdu_size)
2702 {
2703     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 10);
2704     struct ofport_dpif *port = port_;
2705     uint8_t ea[ETH_ADDR_LEN];
2706     int error;
2707
2708     error = netdev_get_etheraddr(port->up.netdev, ea);
2709     if (!error) {
2710         struct ofpbuf packet;
2711         void *packet_pdu;
2712
2713         ofpbuf_init(&packet, 0);
2714         packet_pdu = eth_compose(&packet, eth_addr_lacp, ea, ETH_TYPE_LACP,
2715                                  pdu_size);
2716         memcpy(packet_pdu, pdu, pdu_size);
2717
2718         send_packet(port, &packet);
2719         ofpbuf_uninit(&packet);
2720     } else {
2721         VLOG_ERR_RL(&rl, "port %s: cannot obtain Ethernet address of iface "
2722                     "%s (%s)", port->bundle->name,
2723                     netdev_get_name(port->up.netdev), ovs_strerror(error));
2724     }
2725 }
2726
2727 static void
2728 bundle_send_learning_packets(struct ofbundle *bundle)
2729 {
2730     struct ofproto_dpif *ofproto = bundle->ofproto;
2731     struct ofpbuf *learning_packet;
2732     int error, n_packets, n_errors;
2733     struct mac_entry *e;
2734     struct list packets;
2735
2736     list_init(&packets);
2737     ovs_rwlock_rdlock(&ofproto->ml->rwlock);
2738     LIST_FOR_EACH (e, lru_node, &ofproto->ml->lrus) {
2739         if (e->port.p != bundle) {
2740             void *port_void;
2741
2742             learning_packet = bond_compose_learning_packet(bundle->bond,
2743                                                            e->mac, e->vlan,
2744                                                            &port_void);
2745             learning_packet->private_p = port_void;
2746             list_push_back(&packets, &learning_packet->list_node);
2747         }
2748     }
2749     ovs_rwlock_unlock(&ofproto->ml->rwlock);
2750
2751     error = n_packets = n_errors = 0;
2752     LIST_FOR_EACH (learning_packet, list_node, &packets) {
2753         int ret;
2754
2755         ret = send_packet(learning_packet->private_p, learning_packet);
2756         if (ret) {
2757             error = ret;
2758             n_errors++;
2759         }
2760         n_packets++;
2761     }
2762     ofpbuf_list_delete(&packets);
2763
2764     if (n_errors) {
2765         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2766         VLOG_WARN_RL(&rl, "bond %s: %d errors sending %d gratuitous learning "
2767                      "packets, last error was: %s",
2768                      bundle->name, n_errors, n_packets, ovs_strerror(error));
2769     } else {
2770         VLOG_DBG("bond %s: sent %d gratuitous learning packets",
2771                  bundle->name, n_packets);
2772     }
2773 }
2774
2775 static void
2776 bundle_run(struct ofbundle *bundle)
2777 {
2778     if (bundle->lacp) {
2779         lacp_run(bundle->lacp, send_pdu_cb);
2780     }
2781     if (bundle->bond) {
2782         struct ofport_dpif *port;
2783
2784         LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
2785             bond_slave_set_may_enable(bundle->bond, port, port->may_enable);
2786         }
2787
2788         if (bond_run(bundle->bond, lacp_status(bundle->lacp))) {
2789             bundle->ofproto->backer->need_revalidate = REV_BOND;
2790         }
2791
2792         if (bond_should_send_learning_packets(bundle->bond)) {
2793             bundle_send_learning_packets(bundle);
2794         }
2795     }
2796 }
2797
2798 static void
2799 bundle_wait(struct ofbundle *bundle)
2800 {
2801     if (bundle->lacp) {
2802         lacp_wait(bundle->lacp);
2803     }
2804     if (bundle->bond) {
2805         bond_wait(bundle->bond);
2806     }
2807 }
2808 \f
2809 /* Mirrors. */
2810
2811 static int
2812 mirror_set__(struct ofproto *ofproto_, void *aux,
2813              const struct ofproto_mirror_settings *s)
2814 {
2815     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2816     struct ofbundle **srcs, **dsts;
2817     int error;
2818     size_t i;
2819
2820     if (!s) {
2821         mirror_destroy(ofproto->mbridge, aux);
2822         return 0;
2823     }
2824
2825     srcs = xmalloc(s->n_srcs * sizeof *srcs);
2826     dsts = xmalloc(s->n_dsts * sizeof *dsts);
2827
2828     for (i = 0; i < s->n_srcs; i++) {
2829         srcs[i] = bundle_lookup(ofproto, s->srcs[i]);
2830     }
2831
2832     for (i = 0; i < s->n_dsts; i++) {
2833         dsts[i] = bundle_lookup(ofproto, s->dsts[i]);
2834     }
2835
2836     error = mirror_set(ofproto->mbridge, aux, s->name, srcs, s->n_srcs, dsts,
2837                        s->n_dsts, s->src_vlans,
2838                        bundle_lookup(ofproto, s->out_bundle), s->out_vlan);
2839     free(srcs);
2840     free(dsts);
2841     return error;
2842 }
2843
2844 static int
2845 mirror_get_stats__(struct ofproto *ofproto, void *aux,
2846                    uint64_t *packets, uint64_t *bytes)
2847 {
2848     push_all_stats();
2849     return mirror_get_stats(ofproto_dpif_cast(ofproto)->mbridge, aux, packets,
2850                             bytes);
2851 }
2852
2853 static int
2854 set_flood_vlans(struct ofproto *ofproto_, unsigned long *flood_vlans)
2855 {
2856     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2857     ovs_rwlock_wrlock(&ofproto->ml->rwlock);
2858     if (mac_learning_set_flood_vlans(ofproto->ml, flood_vlans)) {
2859         mac_learning_flush(ofproto->ml);
2860     }
2861     ovs_rwlock_unlock(&ofproto->ml->rwlock);
2862     return 0;
2863 }
2864
2865 static bool
2866 is_mirror_output_bundle(const struct ofproto *ofproto_, void *aux)
2867 {
2868     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2869     struct ofbundle *bundle = bundle_lookup(ofproto, aux);
2870     return bundle && mirror_bundle_out(ofproto->mbridge, bundle) != 0;
2871 }
2872
2873 static void
2874 forward_bpdu_changed(struct ofproto *ofproto_)
2875 {
2876     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2877     ofproto->backer->need_revalidate = REV_RECONFIGURE;
2878 }
2879
2880 static void
2881 set_mac_table_config(struct ofproto *ofproto_, unsigned int idle_time,
2882                      size_t max_entries)
2883 {
2884     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2885     ovs_rwlock_wrlock(&ofproto->ml->rwlock);
2886     mac_learning_set_idle_time(ofproto->ml, idle_time);
2887     mac_learning_set_max_entries(ofproto->ml, max_entries);
2888     ovs_rwlock_unlock(&ofproto->ml->rwlock);
2889 }
2890 \f
2891 /* Ports. */
2892
2893 static struct ofport_dpif *
2894 get_ofp_port(const struct ofproto_dpif *ofproto, ofp_port_t ofp_port)
2895 {
2896     struct ofport *ofport = ofproto_get_port(&ofproto->up, ofp_port);
2897     return ofport ? ofport_dpif_cast(ofport) : NULL;
2898 }
2899
2900 static struct ofport_dpif *
2901 get_odp_port(const struct ofproto_dpif *ofproto, odp_port_t odp_port)
2902 {
2903     struct ofport_dpif *port = odp_port_to_ofport(ofproto->backer, odp_port);
2904     return port && &ofproto->up == port->up.ofproto ? port : NULL;
2905 }
2906
2907 static void
2908 ofproto_port_from_dpif_port(struct ofproto_dpif *ofproto,
2909                             struct ofproto_port *ofproto_port,
2910                             struct dpif_port *dpif_port)
2911 {
2912     ofproto_port->name = dpif_port->name;
2913     ofproto_port->type = dpif_port->type;
2914     ofproto_port->ofp_port = odp_port_to_ofp_port(ofproto, dpif_port->port_no);
2915 }
2916
2917 static void
2918 ofport_update_peer(struct ofport_dpif *ofport)
2919 {
2920     const struct ofproto_dpif *ofproto;
2921     struct dpif_backer *backer;
2922     char *peer_name;
2923
2924     if (!netdev_vport_is_patch(ofport->up.netdev)) {
2925         return;
2926     }
2927
2928     backer = ofproto_dpif_cast(ofport->up.ofproto)->backer;
2929     backer->need_revalidate = REV_RECONFIGURE;
2930
2931     if (ofport->peer) {
2932         ofport->peer->peer = NULL;
2933         ofport->peer = NULL;
2934     }
2935
2936     peer_name = netdev_vport_patch_peer(ofport->up.netdev);
2937     if (!peer_name) {
2938         return;
2939     }
2940
2941     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
2942         struct ofport *peer_ofport;
2943         struct ofport_dpif *peer;
2944         char *peer_peer;
2945
2946         if (ofproto->backer != backer) {
2947             continue;
2948         }
2949
2950         peer_ofport = shash_find_data(&ofproto->up.port_by_name, peer_name);
2951         if (!peer_ofport) {
2952             continue;
2953         }
2954
2955         peer = ofport_dpif_cast(peer_ofport);
2956         peer_peer = netdev_vport_patch_peer(peer->up.netdev);
2957         if (peer_peer && !strcmp(netdev_get_name(ofport->up.netdev),
2958                                  peer_peer)) {
2959             ofport->peer = peer;
2960             ofport->peer->peer = ofport;
2961         }
2962         free(peer_peer);
2963
2964         break;
2965     }
2966     free(peer_name);
2967 }
2968
2969 static void
2970 port_run_fast(struct ofport_dpif *ofport)
2971 {
2972     if (ofport->cfm && cfm_should_send_ccm(ofport->cfm)) {
2973         struct ofpbuf packet;
2974
2975         ofpbuf_init(&packet, 0);
2976         cfm_compose_ccm(ofport->cfm, &packet, ofport->up.pp.hw_addr);
2977         send_packet(ofport, &packet);
2978         ofpbuf_uninit(&packet);
2979     }
2980
2981     if (ofport->bfd && bfd_should_send_packet(ofport->bfd)) {
2982         struct ofpbuf packet;
2983
2984         ofpbuf_init(&packet, 0);
2985         bfd_put_packet(ofport->bfd, &packet, ofport->up.pp.hw_addr);
2986         send_packet(ofport, &packet);
2987         ofpbuf_uninit(&packet);
2988     }
2989 }
2990
2991 static void
2992 port_run(struct ofport_dpif *ofport)
2993 {
2994     long long int carrier_seq = netdev_get_carrier_resets(ofport->up.netdev);
2995     bool carrier_changed = carrier_seq != ofport->carrier_seq;
2996     bool enable = netdev_get_carrier(ofport->up.netdev);
2997     bool cfm_enable = false;
2998     bool bfd_enable = false;
2999
3000     ofport->carrier_seq = carrier_seq;
3001
3002     port_run_fast(ofport);
3003
3004     if (ofport->cfm) {
3005         int cfm_opup = cfm_get_opup(ofport->cfm);
3006
3007         cfm_run(ofport->cfm);
3008         cfm_enable = !cfm_get_fault(ofport->cfm);
3009
3010         if (cfm_opup >= 0) {
3011             cfm_enable = cfm_enable && cfm_opup;
3012         }
3013     }
3014
3015     if (ofport->bfd) {
3016         bfd_run(ofport->bfd);
3017         bfd_enable = bfd_forwarding(ofport->bfd);
3018     }
3019
3020     if (ofport->bfd || ofport->cfm) {
3021         enable = enable && (cfm_enable || bfd_enable);
3022     }
3023
3024     if (ofport->bundle) {
3025         enable = enable && lacp_slave_may_enable(ofport->bundle->lacp, ofport);
3026         if (carrier_changed) {
3027             lacp_slave_carrier_changed(ofport->bundle->lacp, ofport);
3028         }
3029     }
3030
3031     if (ofport->may_enable != enable) {
3032         struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
3033         ofproto->backer->need_revalidate = REV_PORT_TOGGLED;
3034     }
3035
3036     ofport->may_enable = enable;
3037 }
3038
3039 static void
3040 port_wait(struct ofport_dpif *ofport)
3041 {
3042     if (ofport->cfm) {
3043         cfm_wait(ofport->cfm);
3044     }
3045
3046     if (ofport->bfd) {
3047         bfd_wait(ofport->bfd);
3048     }
3049 }
3050
3051 static int
3052 port_query_by_name(const struct ofproto *ofproto_, const char *devname,
3053                    struct ofproto_port *ofproto_port)
3054 {
3055     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3056     struct dpif_port dpif_port;
3057     int error;
3058
3059     if (sset_contains(&ofproto->ghost_ports, devname)) {
3060         const char *type = netdev_get_type_from_name(devname);
3061
3062         /* We may be called before ofproto->up.port_by_name is populated with
3063          * the appropriate ofport.  For this reason, we must get the name and
3064          * type from the netdev layer directly. */
3065         if (type) {
3066             const struct ofport *ofport;
3067
3068             ofport = shash_find_data(&ofproto->up.port_by_name, devname);
3069             ofproto_port->ofp_port = ofport ? ofport->ofp_port : OFPP_NONE;
3070             ofproto_port->name = xstrdup(devname);
3071             ofproto_port->type = xstrdup(type);
3072             return 0;
3073         }
3074         return ENODEV;
3075     }
3076
3077     if (!sset_contains(&ofproto->ports, devname)) {
3078         return ENODEV;
3079     }
3080     error = dpif_port_query_by_name(ofproto->backer->dpif,
3081                                     devname, &dpif_port);
3082     if (!error) {
3083         ofproto_port_from_dpif_port(ofproto, ofproto_port, &dpif_port);
3084     }
3085     return error;
3086 }
3087
3088 static int
3089 port_add(struct ofproto *ofproto_, struct netdev *netdev)
3090 {
3091     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3092     const char *devname = netdev_get_name(netdev);
3093     char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
3094     const char *dp_port_name;
3095
3096     if (netdev_vport_is_patch(netdev)) {
3097         sset_add(&ofproto->ghost_ports, netdev_get_name(netdev));
3098         return 0;
3099     }
3100
3101     dp_port_name = netdev_vport_get_dpif_port(netdev, namebuf, sizeof namebuf);
3102     if (!dpif_port_exists(ofproto->backer->dpif, dp_port_name)) {
3103         odp_port_t port_no = ODPP_NONE;
3104         int error;
3105
3106         error = dpif_port_add(ofproto->backer->dpif, netdev, &port_no);
3107         if (error) {
3108             return error;
3109         }
3110         if (netdev_get_tunnel_config(netdev)) {
3111             simap_put(&ofproto->backer->tnl_backers,
3112                       dp_port_name, odp_to_u32(port_no));
3113         }
3114     }
3115
3116     if (netdev_get_tunnel_config(netdev)) {
3117         sset_add(&ofproto->ghost_ports, devname);
3118     } else {
3119         sset_add(&ofproto->ports, devname);
3120     }
3121     return 0;
3122 }
3123
3124 static int
3125 port_del(struct ofproto *ofproto_, ofp_port_t ofp_port)
3126 {
3127     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3128     struct ofport_dpif *ofport = get_ofp_port(ofproto, ofp_port);
3129     int error = 0;
3130
3131     if (!ofport) {
3132         return 0;
3133     }
3134
3135     sset_find_and_delete(&ofproto->ghost_ports,
3136                          netdev_get_name(ofport->up.netdev));
3137     ofproto->backer->need_revalidate = REV_RECONFIGURE;
3138     if (!ofport->is_tunnel && !netdev_vport_is_patch(ofport->up.netdev)) {
3139         error = dpif_port_del(ofproto->backer->dpif, ofport->odp_port);
3140         if (!error) {
3141             /* The caller is going to close ofport->up.netdev.  If this is a
3142              * bonded port, then the bond is using that netdev, so remove it
3143              * from the bond.  The client will need to reconfigure everything
3144              * after deleting ports, so then the slave will get re-added. */
3145             bundle_remove(&ofport->up);
3146         }
3147     }
3148     return error;
3149 }
3150
3151 static int
3152 port_get_stats(const struct ofport *ofport_, struct netdev_stats *stats)
3153 {
3154     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
3155     int error;
3156
3157     push_all_stats();
3158
3159     error = netdev_get_stats(ofport->up.netdev, stats);
3160
3161     if (!error && ofport_->ofp_port == OFPP_LOCAL) {
3162         struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
3163
3164         /* ofproto->stats.tx_packets represents packets that we created
3165          * internally and sent to some port (e.g. packets sent with
3166          * send_packet()).  Account for them as if they had come from
3167          * OFPP_LOCAL and got forwarded. */
3168
3169         if (stats->rx_packets != UINT64_MAX) {
3170             stats->rx_packets += ofproto->stats.tx_packets;
3171         }
3172
3173         if (stats->rx_bytes != UINT64_MAX) {
3174             stats->rx_bytes += ofproto->stats.tx_bytes;
3175         }
3176
3177         /* ofproto->stats.rx_packets represents packets that were received on
3178          * some port and we processed internally and dropped (e.g. STP).
3179          * Account for them as if they had been forwarded to OFPP_LOCAL. */
3180
3181         if (stats->tx_packets != UINT64_MAX) {
3182             stats->tx_packets += ofproto->stats.rx_packets;
3183         }
3184
3185         if (stats->tx_bytes != UINT64_MAX) {
3186             stats->tx_bytes += ofproto->stats.rx_bytes;
3187         }
3188     }
3189
3190     return error;
3191 }
3192
3193 struct port_dump_state {
3194     uint32_t bucket;
3195     uint32_t offset;
3196     bool ghost;
3197
3198     struct ofproto_port port;
3199     bool has_port;
3200 };
3201
3202 static int
3203 port_dump_start(const struct ofproto *ofproto_ OVS_UNUSED, void **statep)
3204 {
3205     *statep = xzalloc(sizeof(struct port_dump_state));
3206     return 0;
3207 }
3208
3209 static int
3210 port_dump_next(const struct ofproto *ofproto_, void *state_,
3211                struct ofproto_port *port)
3212 {
3213     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3214     struct port_dump_state *state = state_;
3215     const struct sset *sset;
3216     struct sset_node *node;
3217
3218     if (state->has_port) {
3219         ofproto_port_destroy(&state->port);
3220         state->has_port = false;
3221     }
3222     sset = state->ghost ? &ofproto->ghost_ports : &ofproto->ports;
3223     while ((node = sset_at_position(sset, &state->bucket, &state->offset))) {
3224         int error;
3225
3226         error = port_query_by_name(ofproto_, node->name, &state->port);
3227         if (!error) {
3228             *port = state->port;
3229             state->has_port = true;
3230             return 0;
3231         } else if (error != ENODEV) {
3232             return error;
3233         }
3234     }
3235
3236     if (!state->ghost) {
3237         state->ghost = true;
3238         state->bucket = 0;
3239         state->offset = 0;
3240         return port_dump_next(ofproto_, state_, port);
3241     }
3242
3243     return EOF;
3244 }
3245
3246 static int
3247 port_dump_done(const struct ofproto *ofproto_ OVS_UNUSED, void *state_)
3248 {
3249     struct port_dump_state *state = state_;
3250
3251     if (state->has_port) {
3252         ofproto_port_destroy(&state->port);
3253     }
3254     free(state);
3255     return 0;
3256 }
3257
3258 static int
3259 port_poll(const struct ofproto *ofproto_, char **devnamep)
3260 {
3261     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3262
3263     if (ofproto->port_poll_errno) {
3264         int error = ofproto->port_poll_errno;
3265         ofproto->port_poll_errno = 0;
3266         return error;
3267     }
3268
3269     if (sset_is_empty(&ofproto->port_poll_set)) {
3270         return EAGAIN;
3271     }
3272
3273     *devnamep = sset_pop(&ofproto->port_poll_set);
3274     return 0;
3275 }
3276
3277 static void
3278 port_poll_wait(const struct ofproto *ofproto_)
3279 {
3280     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3281     dpif_port_poll_wait(ofproto->backer->dpif);
3282 }
3283
3284 static int
3285 port_is_lacp_current(const struct ofport *ofport_)
3286 {
3287     const struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
3288     return (ofport->bundle && ofport->bundle->lacp
3289             ? lacp_slave_is_current(ofport->bundle->lacp, ofport)
3290             : -1);
3291 }
3292 \f
3293 /* Upcall handling. */
3294
3295 struct flow_miss_op {
3296     struct dpif_op dpif_op;
3297
3298     uint64_t slow_stub[128 / 8]; /* Buffer for compose_slow_path() */
3299     struct xlate_out xout;
3300     bool xout_garbage;           /* 'xout' needs to be uninitialized? */
3301
3302     struct ofpbuf mask;          /* Flow mask for "put" ops. */
3303     struct odputil_keybuf maskbuf;
3304
3305     /* If this is a "put" op, then a pointer to the subfacet that should
3306      * be marked as uninstalled if the operation fails. */
3307     struct subfacet *subfacet;
3308 };
3309
3310 /* Figures out whether a flow that missed in 'ofproto', whose details are in
3311  * 'miss' masked by 'wc', is likely to be worth tracking in detail in userspace
3312  * and (usually) installing a datapath flow.  The answer is usually "yes" (a
3313  * return value of true).  However, for short flows the cost of bookkeeping is
3314  * much higher than the benefits, so when the datapath holds a large number of
3315  * flows we impose some heuristics to decide which flows are likely to be worth
3316  * tracking. */
3317 static bool
3318 flow_miss_should_make_facet(struct flow_miss *miss)
3319 {
3320     struct dpif_backer *backer = miss->ofproto->backer;
3321     uint32_t hash;
3322
3323     switch (flow_miss_model) {
3324     case OFPROTO_HANDLE_MISS_AUTO:
3325         break;
3326     case OFPROTO_HANDLE_MISS_WITH_FACETS:
3327         return true;
3328     case OFPROTO_HANDLE_MISS_WITHOUT_FACETS:
3329         return false;
3330     }
3331
3332     if (!backer->governor) {
3333         size_t n_subfacets;
3334
3335         n_subfacets = hmap_count(&backer->subfacets);
3336         if (n_subfacets * 2 <= flow_eviction_threshold) {
3337             return true;
3338         }
3339
3340         backer->governor = governor_create();
3341     }
3342
3343     hash = flow_hash_in_wildcards(&miss->flow, &miss->xout.wc, 0);
3344     return governor_should_install_flow(backer->governor, hash,
3345                                         list_size(&miss->packets));
3346 }
3347
3348 /* Handles 'miss', which matches 'facet'.  May add any required datapath
3349  * operations to 'ops', incrementing '*n_ops' for each new op.
3350  *
3351  * All of the packets in 'miss' are considered to have arrived at time
3352  * 'miss->stats.used'.  This is really important only for new facets: if we
3353  * just called time_msec() here, then the new subfacet or its packets could
3354  * look (occasionally) as though it was used some time after the facet was
3355  * used.  That can make a one-packet flow look like it has a nonzero duration,
3356  * which looks odd in e.g. NetFlow statistics. */
3357 static void
3358 handle_flow_miss_with_facet(struct flow_miss *miss, struct facet *facet,
3359                             struct flow_miss_op *ops, size_t *n_ops)
3360 {
3361     enum subfacet_path want_path;
3362     struct subfacet *subfacet;
3363
3364     facet->packet_count += miss->stats.n_packets;
3365     facet->prev_packet_count += miss->stats.n_packets;
3366     facet->byte_count += miss->stats.n_bytes;
3367     facet->prev_byte_count += miss->stats.n_bytes;
3368
3369     want_path = facet->xout.slow ? SF_SLOW_PATH : SF_FAST_PATH;
3370
3371     /* Don't install the flow if it's the result of the "userspace"
3372      * action for an already installed facet.  This can occur when a
3373      * datapath flow with wildcards has a "userspace" action and flows
3374      * sent to userspace result in a different subfacet, which will then
3375      * be rejected as overlapping by the datapath. */
3376     if (miss->upcall_type == DPIF_UC_ACTION
3377         && !list_is_empty(&facet->subfacets)) {
3378         return;
3379     }
3380
3381     subfacet = subfacet_create(facet, miss);
3382     if (subfacet->path != want_path) {
3383         struct flow_miss_op *op = &ops[(*n_ops)++];
3384         struct dpif_flow_put *put = &op->dpif_op.u.flow_put;
3385
3386         subfacet->path = want_path;
3387
3388         ofpbuf_use_stack(&op->mask, &op->maskbuf, sizeof op->maskbuf);
3389         if (enable_megaflows) {
3390             odp_flow_key_from_mask(&op->mask, &facet->xout.wc.masks,
3391                                    &miss->flow, UINT32_MAX);
3392         }
3393
3394         op->xout_garbage = false;
3395         op->dpif_op.type = DPIF_OP_FLOW_PUT;
3396         op->subfacet = subfacet;
3397         put->flags = DPIF_FP_CREATE;
3398         put->key = miss->key;
3399         put->key_len = miss->key_len;
3400         put->mask = op->mask.data;
3401         put->mask_len = op->mask.size;
3402
3403         if (want_path == SF_FAST_PATH) {
3404             put->actions = facet->xout.odp_actions.data;
3405             put->actions_len = facet->xout.odp_actions.size;
3406         } else {
3407             compose_slow_path(facet->ofproto, &miss->flow, facet->xout.slow,
3408                               op->slow_stub, sizeof op->slow_stub,
3409                               &put->actions, &put->actions_len);
3410         }
3411         put->stats = NULL;
3412     }
3413 }
3414
3415 /* Handles flow miss 'miss'.  May add any required datapath operations
3416  * to 'ops', incrementing '*n_ops' for each new op. */
3417 static void
3418 handle_flow_miss(struct flow_miss *miss, struct flow_miss_op *ops,
3419                  size_t *n_ops)
3420 {
3421     struct facet *facet;
3422
3423     miss->ofproto->n_missed += list_size(&miss->packets);
3424
3425     facet = facet_lookup_valid(miss->ofproto, &miss->flow);
3426     if (!facet) {
3427         /* There does not exist a bijection between 'struct flow' and datapath
3428          * flow keys with fitness ODP_FIT_TO_LITTLE.  This breaks a fundamental
3429          * assumption used throughout the facet and subfacet handling code.
3430          * Since we have to handle these misses in userspace anyway, we simply
3431          * skip facet creation, avoiding the problem altogether. */
3432         if (miss->key_fitness == ODP_FIT_TOO_LITTLE
3433             || !flow_miss_should_make_facet(miss)) {
3434             return;
3435         }
3436
3437         facet = facet_create(miss);
3438     }
3439     handle_flow_miss_with_facet(miss, facet, ops, n_ops);
3440 }
3441
3442 static struct drop_key *
3443 drop_key_lookup(const struct dpif_backer *backer, const struct nlattr *key,
3444                 size_t key_len)
3445 {
3446     struct drop_key *drop_key;
3447
3448     HMAP_FOR_EACH_WITH_HASH (drop_key, hmap_node, hash_bytes(key, key_len, 0),
3449                              &backer->drop_keys) {
3450         if (drop_key->key_len == key_len
3451             && !memcmp(drop_key->key, key, key_len)) {
3452             return drop_key;
3453         }
3454     }
3455     return NULL;
3456 }
3457
3458 static void
3459 drop_key_clear(struct dpif_backer *backer)
3460 {
3461     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 15);
3462     struct drop_key *drop_key, *next;
3463
3464     HMAP_FOR_EACH_SAFE (drop_key, next, hmap_node, &backer->drop_keys) {
3465         int error;
3466
3467         error = dpif_flow_del(backer->dpif, drop_key->key, drop_key->key_len,
3468                               NULL);
3469         if (error && !VLOG_DROP_WARN(&rl)) {
3470             struct ds ds = DS_EMPTY_INITIALIZER;
3471             odp_flow_key_format(drop_key->key, drop_key->key_len, &ds);
3472             VLOG_WARN("Failed to delete drop key (%s) (%s)",
3473                       ovs_strerror(error), ds_cstr(&ds));
3474             ds_destroy(&ds);
3475         }
3476
3477         hmap_remove(&backer->drop_keys, &drop_key->hmap_node);
3478         drop_key_destroy(drop_key);
3479     }
3480
3481     udpif_drop_key_clear(backer->udpif);
3482 }
3483
3484 static void
3485 handle_flow_misses(struct dpif_backer *backer, struct flow_miss_batch *fmb)
3486 {
3487     struct flow_miss_op flow_miss_ops[FLOW_MISS_MAX_BATCH];
3488     struct dpif_op *dpif_ops[FLOW_MISS_MAX_BATCH];
3489     struct flow_miss *miss;
3490     size_t n_ops, i;
3491
3492     /* Process each element in the to-do list, constructing the set of
3493      * operations to batch. */
3494     n_ops = 0;
3495     HMAP_FOR_EACH (miss, hmap_node, &fmb->misses) {
3496         handle_flow_miss(miss, flow_miss_ops, &n_ops);
3497     }
3498     ovs_assert(n_ops <= ARRAY_SIZE(flow_miss_ops));
3499
3500     /* Execute batch. */
3501     for (i = 0; i < n_ops; i++) {
3502         dpif_ops[i] = &flow_miss_ops[i].dpif_op;
3503     }
3504     dpif_operate(backer->dpif, dpif_ops, n_ops);
3505
3506     for (i = 0; i < n_ops; i++) {
3507         if (dpif_ops[i]->error != 0
3508             && flow_miss_ops[i].dpif_op.type == DPIF_OP_FLOW_PUT
3509             && flow_miss_ops[i].subfacet) {
3510             struct subfacet *subfacet = flow_miss_ops[i].subfacet;
3511
3512             COVERAGE_INC(subfacet_install_fail);
3513
3514             /* Zero-out subfacet counters when installation failed, but
3515              * datapath reported hits.  This should not happen and
3516              * indicates a bug, since if the datapath flow exists, we
3517              * should not be attempting to create a new subfacet.  A
3518              * buggy datapath could trigger this, so just zero out the
3519              * counters and log an error. */
3520             if (subfacet->dp_packet_count || subfacet->dp_byte_count) {
3521                 VLOG_ERR_RL(&rl, "failed to install subfacet for which "
3522                             "datapath reported hits");
3523                 subfacet->dp_packet_count = subfacet->dp_byte_count = 0;
3524             }
3525
3526             subfacet->path = SF_NOT_INSTALLED;
3527         }
3528     }
3529 }
3530
3531 static void
3532 handle_sflow_upcall(struct dpif_backer *backer,
3533                     const struct dpif_upcall *upcall)
3534 {
3535     struct ofproto_dpif *ofproto;
3536     union user_action_cookie cookie;
3537     struct flow flow;
3538     odp_port_t odp_in_port;
3539
3540     if (xlate_receive(backer, upcall->packet, upcall->key, upcall->key_len,
3541                       &flow, NULL, &ofproto, &odp_in_port)
3542         || !ofproto->sflow) {
3543         return;
3544     }
3545
3546     memset(&cookie, 0, sizeof cookie);
3547     memcpy(&cookie, nl_attr_get(upcall->userdata), sizeof cookie.sflow);
3548     dpif_sflow_received(ofproto->sflow, upcall->packet, &flow,
3549                         odp_in_port, &cookie);
3550 }
3551
3552 static void
3553 handle_flow_sample_upcall(struct dpif_backer *backer,
3554                           const struct dpif_upcall *upcall)
3555 {
3556     struct ofproto_dpif *ofproto;
3557     union user_action_cookie cookie;
3558     struct flow flow;
3559
3560     if (xlate_receive(backer, upcall->packet, upcall->key, upcall->key_len,
3561                       &flow, NULL, &ofproto, NULL)
3562         || !ofproto->ipfix) {
3563         return;
3564     }
3565
3566     memset(&cookie, 0, sizeof cookie);
3567     memcpy(&cookie, nl_attr_get(upcall->userdata), sizeof cookie.flow_sample);
3568
3569     /* The flow reflects exactly the contents of the packet.  Sample
3570      * the packet using it. */
3571     dpif_ipfix_flow_sample(ofproto->ipfix, upcall->packet, &flow,
3572                            cookie.flow_sample.collector_set_id,
3573                            cookie.flow_sample.probability,
3574                            cookie.flow_sample.obs_domain_id,
3575                            cookie.flow_sample.obs_point_id);
3576 }
3577
3578 static void
3579 handle_ipfix_upcall(struct dpif_backer *backer,
3580                     const struct dpif_upcall *upcall)
3581 {
3582     struct ofproto_dpif *ofproto;
3583     struct flow flow;
3584
3585     if (xlate_receive(backer, upcall->packet, upcall->key, upcall->key_len,
3586                       &flow, NULL, &ofproto, NULL)
3587         || !ofproto->ipfix) {
3588         return;
3589     }
3590
3591     /* The flow reflects exactly the contents of the packet.  Sample
3592      * the packet using it. */
3593     dpif_ipfix_bridge_sample(ofproto->ipfix, upcall->packet, &flow);
3594 }
3595
3596 static void
3597 handle_upcalls(struct dpif_backer *backer)
3598 {
3599     struct flow_miss_batch *fmb;
3600     int n_processed;
3601
3602     for (n_processed = 0; n_processed < FLOW_MISS_MAX_BATCH; n_processed++) {
3603         struct upcall *upcall = upcall_next(backer->udpif);
3604
3605         if (!upcall) {
3606             break;
3607         }
3608
3609         switch (upcall->type) {
3610         case SFLOW_UPCALL:
3611             handle_sflow_upcall(backer, &upcall->dpif_upcall);
3612             break;
3613
3614         case FLOW_SAMPLE_UPCALL:
3615             handle_flow_sample_upcall(backer, &upcall->dpif_upcall);
3616             break;
3617
3618         case IPFIX_UPCALL:
3619             handle_ipfix_upcall(backer, &upcall->dpif_upcall);
3620             break;
3621
3622         case BAD_UPCALL:
3623             break;
3624
3625         case MISS_UPCALL:
3626             NOT_REACHED();
3627         }
3628
3629         upcall_destroy(upcall);
3630     }
3631
3632     for (n_processed = 0; n_processed < FLOW_MISS_MAX_BATCH; n_processed++) {
3633         struct drop_key *drop_key = drop_key_next(backer->udpif);
3634         if (!drop_key) {
3635             break;
3636         }
3637
3638         if (!drop_key_lookup(backer, drop_key->key, drop_key->key_len)) {
3639             hmap_insert(&backer->drop_keys, &drop_key->hmap_node,
3640                         hash_bytes(drop_key->key, drop_key->key_len, 0));
3641             dpif_flow_put(backer->dpif, DPIF_FP_CREATE | DPIF_FP_MODIFY,
3642                           drop_key->key, drop_key->key_len,
3643                           NULL, 0, NULL, 0, NULL);
3644         } else {
3645             drop_key_destroy(drop_key);
3646         }
3647     }
3648
3649     fmb = flow_miss_batch_next(backer->udpif);
3650     if (fmb) {
3651         handle_flow_misses(backer, fmb);
3652         flow_miss_batch_destroy(fmb);
3653     }
3654 }
3655 \f
3656 /* Flow expiration. */
3657
3658 static int subfacet_max_idle(const struct dpif_backer *);
3659 static void update_stats(struct dpif_backer *);
3660 static void rule_expire(struct rule_dpif *);
3661 static void expire_subfacets(struct dpif_backer *, int dp_max_idle);
3662
3663 /* This function is called periodically by run().  Its job is to collect
3664  * updates for the flows that have been installed into the datapath, most
3665  * importantly when they last were used, and then use that information to
3666  * expire flows that have not been used recently.
3667  *
3668  * Returns the number of milliseconds after which it should be called again. */
3669 static int
3670 expire(struct dpif_backer *backer)
3671 {
3672     struct ofproto_dpif *ofproto;
3673     size_t n_subfacets;
3674     int max_idle;
3675
3676     /* Periodically clear out the drop keys in an effort to keep them
3677      * relatively few. */
3678     drop_key_clear(backer);
3679
3680     /* Update stats for each flow in the backer. */
3681     update_stats(backer);
3682
3683     n_subfacets = hmap_count(&backer->subfacets);
3684     if (n_subfacets) {
3685         struct subfacet *subfacet;
3686         long long int total, now;
3687
3688         total = 0;
3689         now = time_msec();
3690         HMAP_FOR_EACH (subfacet, hmap_node, &backer->subfacets) {
3691             total += now - subfacet->created;
3692         }
3693         backer->avg_subfacet_life += total / n_subfacets;
3694     }
3695     backer->avg_subfacet_life /= 2;
3696
3697     backer->avg_n_subfacet += n_subfacets;
3698     backer->avg_n_subfacet /= 2;
3699
3700     backer->max_n_subfacet = MAX(backer->max_n_subfacet, n_subfacets);
3701
3702     max_idle = subfacet_max_idle(backer);
3703     expire_subfacets(backer, max_idle);
3704
3705     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
3706         struct rule *rule, *next_rule;
3707
3708         if (ofproto->backer != backer) {
3709             continue;
3710         }
3711
3712         /* Expire OpenFlow flows whose idle_timeout or hard_timeout
3713          * has passed. */
3714         ovs_mutex_lock(&ofproto->up.expirable_mutex);
3715         LIST_FOR_EACH_SAFE (rule, next_rule, expirable,
3716                             &ofproto->up.expirable) {
3717             rule_expire(rule_dpif_cast(rule));
3718         }
3719         ovs_mutex_unlock(&ofproto->up.expirable_mutex);
3720
3721         /* All outstanding data in existing flows has been accounted, so it's a
3722          * good time to do bond rebalancing. */
3723         if (ofproto->has_bonded_bundles) {
3724             struct ofbundle *bundle;
3725
3726             HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
3727                 if (bundle->bond) {
3728                     bond_rebalance(bundle->bond);
3729                 }
3730             }
3731         }
3732     }
3733
3734     return MIN(max_idle, 1000);
3735 }
3736
3737 /* Updates flow table statistics given that the datapath just reported 'stats'
3738  * as 'subfacet''s statistics. */
3739 static void
3740 update_subfacet_stats(struct subfacet *subfacet,
3741                       const struct dpif_flow_stats *stats)
3742 {
3743     struct facet *facet = subfacet->facet;
3744     struct dpif_flow_stats diff;
3745
3746     diff.tcp_flags = stats->tcp_flags;
3747     diff.used = stats->used;
3748
3749     if (stats->n_packets >= subfacet->dp_packet_count) {
3750         diff.n_packets = stats->n_packets - subfacet->dp_packet_count;
3751     } else {
3752         VLOG_WARN_RL(&rl, "unexpected packet count from the datapath");
3753         diff.n_packets = 0;
3754     }
3755
3756     if (stats->n_bytes >= subfacet->dp_byte_count) {
3757         diff.n_bytes = stats->n_bytes - subfacet->dp_byte_count;
3758     } else {
3759         VLOG_WARN_RL(&rl, "unexpected byte count from datapath");
3760         diff.n_bytes = 0;
3761     }
3762
3763     facet->ofproto->n_hit += diff.n_packets;
3764     subfacet->dp_packet_count = stats->n_packets;
3765     subfacet->dp_byte_count = stats->n_bytes;
3766     subfacet_update_stats(subfacet, &diff);
3767
3768     if (facet->accounted_bytes < facet->byte_count) {
3769         facet_learn(facet);
3770         facet_account(facet);
3771         facet->accounted_bytes = facet->byte_count;
3772     }
3773 }
3774
3775 /* 'key' with length 'key_len' bytes is a flow in 'dpif' that we know nothing
3776  * about, or a flow that shouldn't be installed but was anyway.  Delete it. */
3777 static void
3778 delete_unexpected_flow(struct dpif_backer *backer,
3779                        const struct nlattr *key, size_t key_len)
3780 {
3781     if (!VLOG_DROP_WARN(&rl)) {
3782         struct ds s;
3783
3784         ds_init(&s);
3785         odp_flow_key_format(key, key_len, &s);
3786         VLOG_WARN("unexpected flow: %s", ds_cstr(&s));
3787         ds_destroy(&s);
3788     }
3789
3790     COVERAGE_INC(facet_unexpected);
3791     dpif_flow_del(backer->dpif, key, key_len, NULL);
3792 }
3793
3794 /* Update 'packet_count', 'byte_count', and 'used' members of installed facets.
3795  *
3796  * This function also pushes statistics updates to rules which each facet
3797  * resubmits into.  Generally these statistics will be accurate.  However, if a
3798  * facet changes the rule it resubmits into at some time in between
3799  * update_stats() runs, it is possible that statistics accrued to the
3800  * old rule will be incorrectly attributed to the new rule.  This could be
3801  * avoided by calling update_stats() whenever rules are created or
3802  * deleted.  However, the performance impact of making so many calls to the
3803  * datapath do not justify the benefit of having perfectly accurate statistics.
3804  *
3805  * In addition, this function maintains per ofproto flow hit counts. The patch
3806  * port is not treated specially. e.g. A packet ingress from br0 patched into
3807  * br1 will increase the hit count of br0 by 1, however, does not affect
3808  * the hit or miss counts of br1.
3809  */
3810 static void
3811 update_stats(struct dpif_backer *backer)
3812 {
3813     const struct dpif_flow_stats *stats;
3814     struct dpif_flow_dump dump;
3815     const struct nlattr *key, *mask;
3816     size_t key_len, mask_len;
3817
3818     dpif_flow_dump_start(&dump, backer->dpif);
3819     while (dpif_flow_dump_next(&dump, &key, &key_len,
3820                                &mask, &mask_len, NULL, NULL, &stats)) {
3821         struct subfacet *subfacet;
3822         uint32_t key_hash;
3823
3824         key_hash = odp_flow_key_hash(key, key_len);
3825         subfacet = subfacet_find(backer, key, key_len, key_hash);
3826         switch (subfacet ? subfacet->path : SF_NOT_INSTALLED) {
3827         case SF_FAST_PATH:
3828             update_subfacet_stats(subfacet, stats);
3829             break;
3830
3831         case SF_SLOW_PATH:
3832             /* Stats are updated per-packet. */
3833             break;
3834
3835         case SF_NOT_INSTALLED:
3836         default:
3837             delete_unexpected_flow(backer, key, key_len);
3838             break;
3839         }
3840         run_fast_rl();
3841     }
3842     dpif_flow_dump_done(&dump);
3843
3844     update_moving_averages(backer);
3845 }
3846
3847 /* Calculates and returns the number of milliseconds of idle time after which
3848  * subfacets should expire from the datapath.  When a subfacet expires, we fold
3849  * its statistics into its facet, and when a facet's last subfacet expires, we
3850  * fold its statistic into its rule. */
3851 static int
3852 subfacet_max_idle(const struct dpif_backer *backer)
3853 {
3854     /*
3855      * Idle time histogram.
3856      *
3857      * Most of the time a switch has a relatively small number of subfacets.
3858      * When this is the case we might as well keep statistics for all of them
3859      * in userspace and to cache them in the kernel datapath for performance as
3860      * well.
3861      *
3862      * As the number of subfacets increases, the memory required to maintain
3863      * statistics about them in userspace and in the kernel becomes
3864      * significant.  However, with a large number of subfacets it is likely
3865      * that only a few of them are "heavy hitters" that consume a large amount
3866      * of bandwidth.  At this point, only heavy hitters are worth caching in
3867      * the kernel and maintaining in userspaces; other subfacets we can
3868      * discard.
3869      *
3870      * The technique used to compute the idle time is to build a histogram with
3871      * N_BUCKETS buckets whose width is BUCKET_WIDTH msecs each.  Each subfacet
3872      * that is installed in the kernel gets dropped in the appropriate bucket.
3873      * After the histogram has been built, we compute the cutoff so that only
3874      * the most-recently-used 1% of subfacets (but at least
3875      * flow_eviction_threshold flows) are kept cached.  At least
3876      * the most-recently-used bucket of subfacets is kept, so actually an
3877      * arbitrary number of subfacets can be kept in any given expiration run
3878      * (though the next run will delete most of those unless they receive
3879      * additional data).
3880      *
3881      * This requires a second pass through the subfacets, in addition to the
3882      * pass made by update_stats(), because the former function never looks at
3883      * uninstallable subfacets.
3884      */
3885     enum { BUCKET_WIDTH = 100 };
3886     enum { N_BUCKETS = 5000 / BUCKET_WIDTH };
3887     int buckets[N_BUCKETS] = { 0 };
3888     int total, subtotal, bucket;
3889     struct subfacet *subfacet;
3890     long long int now;
3891     int i;
3892
3893     total = hmap_count(&backer->subfacets);
3894     if (total <= flow_eviction_threshold) {
3895         return N_BUCKETS * BUCKET_WIDTH;
3896     }
3897
3898     /* Build histogram. */
3899     now = time_msec();
3900     HMAP_FOR_EACH (subfacet, hmap_node, &backer->subfacets) {
3901         long long int idle = now - subfacet->used;
3902         int bucket = (idle <= 0 ? 0
3903                       : idle >= BUCKET_WIDTH * N_BUCKETS ? N_BUCKETS - 1
3904                       : (unsigned int) idle / BUCKET_WIDTH);
3905         buckets[bucket]++;
3906     }
3907
3908     /* Find the first bucket whose flows should be expired. */
3909     subtotal = bucket = 0;
3910     do {
3911         subtotal += buckets[bucket++];
3912     } while (bucket < N_BUCKETS &&
3913              subtotal < MAX(flow_eviction_threshold, total / 100));
3914
3915     if (VLOG_IS_DBG_ENABLED()) {
3916         struct ds s;
3917
3918         ds_init(&s);
3919         ds_put_cstr(&s, "keep");
3920         for (i = 0; i < N_BUCKETS; i++) {
3921             if (i == bucket) {
3922                 ds_put_cstr(&s, ", drop");
3923             }
3924             if (buckets[i]) {
3925                 ds_put_format(&s, " %d:%d", i * BUCKET_WIDTH, buckets[i]);
3926             }
3927         }
3928         VLOG_INFO("%s (msec:count)", ds_cstr(&s));
3929         ds_destroy(&s);
3930     }
3931
3932     return bucket * BUCKET_WIDTH;
3933 }
3934
3935 static void
3936 expire_subfacets(struct dpif_backer *backer, int dp_max_idle)
3937 {
3938     /* Cutoff time for most flows. */
3939     long long int normal_cutoff = time_msec() - dp_max_idle;
3940
3941     /* We really want to keep flows for special protocols around, so use a more
3942      * conservative cutoff. */
3943     long long int special_cutoff = time_msec() - 10000;
3944
3945     struct subfacet *subfacet, *next_subfacet;
3946     struct subfacet *batch[SUBFACET_DESTROY_MAX_BATCH];
3947     int n_batch;
3948
3949     n_batch = 0;
3950     HMAP_FOR_EACH_SAFE (subfacet, next_subfacet, hmap_node,
3951                         &backer->subfacets) {
3952         long long int cutoff;
3953
3954         cutoff = (subfacet->facet->xout.slow & (SLOW_CFM | SLOW_BFD | SLOW_LACP
3955                                                 | SLOW_STP)
3956                   ? special_cutoff
3957                   : normal_cutoff);
3958         if (subfacet->used < cutoff) {
3959             if (subfacet->path != SF_NOT_INSTALLED) {
3960                 batch[n_batch++] = subfacet;
3961                 if (n_batch >= SUBFACET_DESTROY_MAX_BATCH) {
3962                     subfacet_destroy_batch(backer, batch, n_batch);
3963                     n_batch = 0;
3964                 }
3965             } else {
3966                 subfacet_destroy(subfacet);
3967             }
3968         }
3969     }
3970
3971     if (n_batch > 0) {
3972         subfacet_destroy_batch(backer, batch, n_batch);
3973     }
3974 }
3975
3976 /* If 'rule' is an OpenFlow rule, that has expired according to OpenFlow rules,
3977  * then delete it entirely. */
3978 static void
3979 rule_expire(struct rule_dpif *rule)
3980 {
3981     uint16_t idle_timeout, hard_timeout;
3982     long long int now;
3983     uint8_t reason;
3984
3985     if (rule->up.pending) {
3986         /* We'll have to expire it later. */
3987         return;
3988     }
3989
3990     ovs_mutex_lock(&rule->up.timeout_mutex);
3991     hard_timeout = rule->up.hard_timeout;
3992     idle_timeout = rule->up.idle_timeout;
3993     ovs_mutex_unlock(&rule->up.timeout_mutex);
3994
3995     /* Has 'rule' expired? */
3996     now = time_msec();
3997     if (hard_timeout && now > rule->up.modified + hard_timeout * 1000) {
3998         reason = OFPRR_HARD_TIMEOUT;
3999     } else if (idle_timeout && now > rule->up.used + idle_timeout * 1000) {
4000         reason = OFPRR_IDLE_TIMEOUT;
4001     } else {
4002         return;
4003     }
4004
4005     COVERAGE_INC(ofproto_dpif_expired);
4006     ofproto_rule_expire(&rule->up, reason);
4007 }
4008 \f
4009 /* Facets. */
4010
4011 /* Creates and returns a new facet based on 'miss'.
4012  *
4013  * The caller must already have determined that no facet with an identical
4014  * 'miss->flow' exists in 'miss->ofproto'.
4015  *
4016  * 'rule' and 'xout' must have been created based on 'miss'.
4017  *
4018  * 'facet'' statistics are initialized based on 'stats'.
4019  *
4020  * The facet will initially have no subfacets.  The caller should create (at
4021  * least) one subfacet with subfacet_create(). */
4022 static struct facet *
4023 facet_create(const struct flow_miss *miss)
4024 {
4025     struct ofproto_dpif *ofproto = miss->ofproto;
4026     struct facet *facet;
4027     struct match match;
4028
4029     facet = xzalloc(sizeof *facet);
4030     facet->ofproto = miss->ofproto;
4031     facet->used = miss->stats.used;
4032     facet->flow = miss->flow;
4033     facet->learn_rl = time_msec() + 500;
4034
4035     list_init(&facet->subfacets);
4036     netflow_flow_init(&facet->nf_flow);
4037     netflow_flow_update_time(ofproto->netflow, &facet->nf_flow, facet->used);
4038
4039     xlate_out_copy(&facet->xout, &miss->xout);
4040
4041     match_init(&match, &facet->flow, &facet->xout.wc);
4042     cls_rule_init(&facet->cr, &match, OFP_DEFAULT_PRIORITY);
4043     ovs_rwlock_wrlock(&ofproto->facets.rwlock);
4044     classifier_insert(&ofproto->facets, &facet->cr);
4045     ovs_rwlock_unlock(&ofproto->facets.rwlock);
4046
4047     facet->nf_flow.output_iface = facet->xout.nf_output_iface;
4048     return facet;
4049 }
4050
4051 static void
4052 facet_free(struct facet *facet)
4053 {
4054     if (facet) {
4055         xlate_out_uninit(&facet->xout);
4056         free(facet);
4057     }
4058 }
4059
4060 /* Executes, within 'ofproto', the 'n_actions' actions in 'actions' on
4061  * 'packet', which arrived on 'in_port'. */
4062 static bool
4063 execute_odp_actions(struct ofproto_dpif *ofproto, const struct flow *flow,
4064                     const struct nlattr *odp_actions, size_t actions_len,
4065                     struct ofpbuf *packet)
4066 {
4067     struct odputil_keybuf keybuf;
4068     struct ofpbuf key;
4069     int error;
4070
4071     ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
4072     odp_flow_key_from_flow(&key, flow,
4073                            ofp_port_to_odp_port(ofproto, flow->in_port.ofp_port));
4074
4075     error = dpif_execute(ofproto->backer->dpif, key.data, key.size,
4076                          odp_actions, actions_len, packet);
4077     return !error;
4078 }
4079
4080 /* Remove 'facet' from its ofproto and free up the associated memory:
4081  *
4082  *   - If 'facet' was installed in the datapath, uninstalls it and updates its
4083  *     rule's statistics, via subfacet_uninstall().
4084  *
4085  *   - Removes 'facet' from its rule and from ofproto->facets.
4086  */
4087 static void
4088 facet_remove(struct facet *facet)
4089 {
4090     struct subfacet *subfacet, *next_subfacet;
4091
4092     ovs_assert(!list_is_empty(&facet->subfacets));
4093
4094     /* First uninstall all of the subfacets to get final statistics. */
4095     LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
4096         subfacet_uninstall(subfacet);
4097     }
4098
4099     /* Flush the final stats to the rule.
4100      *
4101      * This might require us to have at least one subfacet around so that we
4102      * can use its actions for accounting in facet_account(), which is why we
4103      * have uninstalled but not yet destroyed the subfacets. */
4104     facet_flush_stats(facet);
4105
4106     /* Now we're really all done so destroy everything. */
4107     LIST_FOR_EACH_SAFE (subfacet, next_subfacet, list_node,
4108                         &facet->subfacets) {
4109         subfacet_destroy__(subfacet);
4110     }
4111     ovs_rwlock_wrlock(&facet->ofproto->facets.rwlock);
4112     classifier_remove(&facet->ofproto->facets, &facet->cr);
4113     ovs_rwlock_unlock(&facet->ofproto->facets.rwlock);
4114     cls_rule_destroy(&facet->cr);
4115     facet_free(facet);
4116 }
4117
4118 /* Feed information from 'facet' back into the learning table to keep it in
4119  * sync with what is actually flowing through the datapath. */
4120 static void
4121 facet_learn(struct facet *facet)
4122 {
4123     long long int now = time_msec();
4124
4125     if (!facet->xout.has_fin_timeout && now < facet->learn_rl) {
4126         return;
4127     }
4128
4129     facet->learn_rl = now + 500;
4130
4131     if (!facet->xout.has_learn
4132         && !facet->xout.has_normal
4133         && (!facet->xout.has_fin_timeout
4134             || !(facet->tcp_flags & (TCP_FIN | TCP_RST)))) {
4135         return;
4136     }
4137
4138     facet_push_stats(facet, true);
4139 }
4140
4141 static void
4142 facet_account(struct facet *facet)
4143 {
4144     const struct nlattr *a;
4145     unsigned int left;
4146     ovs_be16 vlan_tci;
4147     uint64_t n_bytes;
4148
4149     if (!facet->xout.has_normal || !facet->ofproto->has_bonded_bundles) {
4150         return;
4151     }
4152     n_bytes = facet->byte_count - facet->accounted_bytes;
4153
4154     /* This loop feeds byte counters to bond_account() for rebalancing to use
4155      * as a basis.  We also need to track the actual VLAN on which the packet
4156      * is going to be sent to ensure that it matches the one passed to
4157      * bond_choose_output_slave().  (Otherwise, we will account to the wrong
4158      * hash bucket.)
4159      *
4160      * We use the actions from an arbitrary subfacet because they should all
4161      * be equally valid for our purpose. */
4162     vlan_tci = facet->flow.vlan_tci;
4163     NL_ATTR_FOR_EACH_UNSAFE (a, left, facet->xout.odp_actions.data,
4164                              facet->xout.odp_actions.size) {
4165         const struct ovs_action_push_vlan *vlan;
4166         struct ofport_dpif *port;
4167
4168         switch (nl_attr_type(a)) {
4169         case OVS_ACTION_ATTR_OUTPUT:
4170             port = get_odp_port(facet->ofproto, nl_attr_get_odp_port(a));
4171             if (port && port->bundle && port->bundle->bond) {
4172                 bond_account(port->bundle->bond, &facet->flow,
4173                              vlan_tci_to_vid(vlan_tci), n_bytes);
4174             }
4175             break;
4176
4177         case OVS_ACTION_ATTR_POP_VLAN:
4178             vlan_tci = htons(0);
4179             break;
4180
4181         case OVS_ACTION_ATTR_PUSH_VLAN:
4182             vlan = nl_attr_get(a);
4183             vlan_tci = vlan->vlan_tci;
4184             break;
4185         }
4186     }
4187 }
4188
4189 /* Returns true if the only action for 'facet' is to send to the controller.
4190  * (We don't report NetFlow expiration messages for such facets because they
4191  * are just part of the control logic for the network, not real traffic). */
4192 static bool
4193 facet_is_controller_flow(struct facet *facet)
4194 {
4195     if (facet) {
4196         struct ofproto_dpif *ofproto = facet->ofproto;
4197         const struct ofpact *ofpacts;
4198         struct rule_dpif *rule;
4199         size_t ofpacts_len;
4200         bool is_controller;
4201
4202         rule_dpif_lookup(ofproto, &facet->flow, NULL, &rule);
4203         ofpacts_len = rule->up.ofpacts_len;
4204         ofpacts = rule->up.ofpacts;
4205         is_controller = ofpacts_len > 0
4206             && ofpacts->type == OFPACT_CONTROLLER
4207             && ofpact_next(ofpacts) >= ofpact_end(ofpacts, ofpacts_len);
4208         rule_dpif_release(rule);
4209         return is_controller;
4210     }
4211     return false;
4212 }
4213
4214 /* Folds all of 'facet''s statistics into its rule.  Also updates the
4215  * accounting ofhook and emits a NetFlow expiration if appropriate.  All of
4216  * 'facet''s statistics in the datapath should have been zeroed and folded into
4217  * its packet and byte counts before this function is called. */
4218 static void
4219 facet_flush_stats(struct facet *facet)
4220 {
4221     struct ofproto_dpif *ofproto = facet->ofproto;
4222     struct subfacet *subfacet;
4223
4224     LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
4225         ovs_assert(!subfacet->dp_byte_count);
4226         ovs_assert(!subfacet->dp_packet_count);
4227     }
4228
4229     facet_push_stats(facet, false);
4230     if (facet->accounted_bytes < facet->byte_count) {
4231         facet_account(facet);
4232         facet->accounted_bytes = facet->byte_count;
4233     }
4234
4235     if (ofproto->netflow && !facet_is_controller_flow(facet)) {
4236         struct ofexpired expired;
4237         expired.flow = facet->flow;
4238         expired.packet_count = facet->packet_count;
4239         expired.byte_count = facet->byte_count;
4240         expired.used = facet->used;
4241         netflow_expire(ofproto->netflow, &facet->nf_flow, &expired);
4242     }
4243
4244     /* Reset counters to prevent double counting if 'facet' ever gets
4245      * reinstalled. */
4246     facet_reset_counters(facet);
4247
4248     netflow_flow_clear(&facet->nf_flow);
4249     facet->tcp_flags = 0;
4250 }
4251
4252 /* Searches 'ofproto''s table of facets for one which would be responsible for
4253  * 'flow'.  Returns it if found, otherwise a null pointer.
4254  *
4255  * The returned facet might need revalidation; use facet_lookup_valid()
4256  * instead if that is important. */
4257 static struct facet *
4258 facet_find(struct ofproto_dpif *ofproto, const struct flow *flow)
4259 {
4260     struct cls_rule *cr;
4261
4262     ovs_rwlock_rdlock(&ofproto->facets.rwlock);
4263     cr = classifier_lookup(&ofproto->facets, flow, NULL);
4264     ovs_rwlock_unlock(&ofproto->facets.rwlock);
4265     return cr ? CONTAINER_OF(cr, struct facet, cr) : NULL;
4266 }
4267
4268 /* Searches 'ofproto''s table of facets for one capable that covers
4269  * 'flow'.  Returns it if found, otherwise a null pointer.
4270  *
4271  * The returned facet is guaranteed to be valid. */
4272 static struct facet *
4273 facet_lookup_valid(struct ofproto_dpif *ofproto, const struct flow *flow)
4274 {
4275     struct facet *facet;
4276
4277     facet = facet_find(ofproto, flow);
4278     if (facet
4279         && ofproto->backer->need_revalidate
4280         && !facet_revalidate(facet)) {
4281         return NULL;
4282     }
4283
4284     return facet;
4285 }
4286
4287 static bool
4288 facet_check_consistency(struct facet *facet)
4289 {
4290     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 15);
4291
4292     struct xlate_out xout;
4293     struct xlate_in xin;
4294
4295     struct rule_dpif *rule;
4296     bool ok;
4297
4298     /* Check the datapath actions for consistency. */
4299     rule_dpif_lookup(facet->ofproto, &facet->flow, NULL, &rule);
4300     xlate_in_init(&xin, facet->ofproto, &facet->flow, rule, 0, NULL);
4301     xlate_actions(&xin, &xout);
4302     rule_dpif_release(rule);
4303
4304     ok = ofpbuf_equal(&facet->xout.odp_actions, &xout.odp_actions)
4305         && facet->xout.slow == xout.slow;
4306     if (!ok && !VLOG_DROP_WARN(&rl)) {
4307         struct ds s = DS_EMPTY_INITIALIZER;
4308
4309         flow_format(&s, &facet->flow);
4310         ds_put_cstr(&s, ": inconsistency in facet");
4311
4312         if (!ofpbuf_equal(&facet->xout.odp_actions, &xout.odp_actions)) {
4313             ds_put_cstr(&s, " (actions were: ");
4314             format_odp_actions(&s, facet->xout.odp_actions.data,
4315                                facet->xout.odp_actions.size);
4316             ds_put_cstr(&s, ") (correct actions: ");
4317             format_odp_actions(&s, xout.odp_actions.data,
4318                                xout.odp_actions.size);
4319             ds_put_char(&s, ')');
4320         }
4321
4322         if (facet->xout.slow != xout.slow) {
4323             ds_put_format(&s, " slow path incorrect. should be %d", xout.slow);
4324         }
4325
4326         ds_destroy(&s);
4327     }
4328     xlate_out_uninit(&xout);
4329
4330     return ok;
4331 }
4332
4333 /* Re-searches the classifier for 'facet':
4334  *
4335  *   - If the rule found is different from 'facet''s current rule, moves
4336  *     'facet' to the new rule and recompiles its actions.
4337  *
4338  *   - If the rule found is the same as 'facet''s current rule, leaves 'facet'
4339  *     where it is and recompiles its actions anyway.
4340  *
4341  *   - If any of 'facet''s subfacets correspond to a new flow according to
4342  *     xlate_receive(), 'facet' is removed.
4343  *
4344  *   Returns true if 'facet' is still valid.  False if 'facet' was removed. */
4345 static bool
4346 facet_revalidate(struct facet *facet)
4347 {
4348     struct ofproto_dpif *ofproto = facet->ofproto;
4349     struct rule_dpif *new_rule;
4350     struct subfacet *subfacet;
4351     struct flow_wildcards wc;
4352     struct xlate_out xout;
4353     struct xlate_in xin;
4354
4355     COVERAGE_INC(facet_revalidate);
4356
4357     /* Check that child subfacets still correspond to this facet.  Tunnel
4358      * configuration changes could cause a subfacet's OpenFlow in_port to
4359      * change. */
4360     LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
4361         struct ofproto_dpif *recv_ofproto;
4362         struct flow recv_flow;
4363         int error;
4364
4365         error = xlate_receive(ofproto->backer, NULL, subfacet->key,
4366                               subfacet->key_len, &recv_flow, NULL,
4367                               &recv_ofproto, NULL);
4368         if (error
4369             || recv_ofproto != ofproto
4370             || facet != facet_find(ofproto, &recv_flow)) {
4371             facet_remove(facet);
4372             return false;
4373         }
4374     }
4375
4376     flow_wildcards_init_catchall(&wc);
4377     rule_dpif_lookup(ofproto, &facet->flow, &wc, &new_rule);
4378
4379     /* Calculate new datapath actions.
4380      *
4381      * We do not modify any 'facet' state yet, because we might need to, e.g.,
4382      * emit a NetFlow expiration and, if so, we need to have the old state
4383      * around to properly compose it. */
4384     xlate_in_init(&xin, ofproto, &facet->flow, new_rule, 0, NULL);
4385     xlate_actions(&xin, &xout);
4386     flow_wildcards_or(&xout.wc, &xout.wc, &wc);
4387
4388     /* A facet's slow path reason should only change under dramatic
4389      * circumstances.  Rather than try to update everything, it's simpler to
4390      * remove the facet and start over.
4391      *
4392      * More importantly, if a facet's wildcards change, it will be relatively
4393      * difficult to figure out if its subfacets still belong to it, and if not
4394      * which facet they may belong to.  Again, to avoid the complexity, we
4395      * simply give up instead. */
4396     if (facet->xout.slow != xout.slow
4397         || memcmp(&facet->xout.wc, &xout.wc, sizeof xout.wc)) {
4398         facet_remove(facet);
4399         xlate_out_uninit(&xout);
4400         rule_dpif_release(new_rule);
4401         return false;
4402     }
4403
4404     if (!ofpbuf_equal(&facet->xout.odp_actions, &xout.odp_actions)) {
4405         LIST_FOR_EACH(subfacet, list_node, &facet->subfacets) {
4406             if (subfacet->path == SF_FAST_PATH) {
4407                 struct dpif_flow_stats stats;
4408
4409                 subfacet_install(subfacet, &xout.odp_actions, &stats);
4410                 subfacet_update_stats(subfacet, &stats);
4411             }
4412         }
4413
4414         facet_flush_stats(facet);
4415
4416         ofpbuf_clear(&facet->xout.odp_actions);
4417         ofpbuf_put(&facet->xout.odp_actions, xout.odp_actions.data,
4418                    xout.odp_actions.size);
4419     }
4420
4421     /* Update 'facet' now that we've taken care of all the old state. */
4422     facet->xout.slow = xout.slow;
4423     facet->xout.has_learn = xout.has_learn;
4424     facet->xout.has_normal = xout.has_normal;
4425     facet->xout.has_fin_timeout = xout.has_fin_timeout;
4426     facet->xout.nf_output_iface = xout.nf_output_iface;
4427     facet->xout.mirrors = xout.mirrors;
4428     facet->nf_flow.output_iface = facet->xout.nf_output_iface;
4429     facet->used = MAX(facet->used, new_rule->up.created);
4430
4431     xlate_out_uninit(&xout);
4432     rule_dpif_release(new_rule);
4433     return true;
4434 }
4435
4436 static void
4437 facet_reset_counters(struct facet *facet)
4438 {
4439     facet->packet_count = 0;
4440     facet->byte_count = 0;
4441     facet->prev_packet_count = 0;
4442     facet->prev_byte_count = 0;
4443     facet->accounted_bytes = 0;
4444 }
4445
4446 static void
4447 flow_push_stats(struct ofproto_dpif *ofproto, struct flow *flow,
4448                 struct dpif_flow_stats *stats, bool may_learn)
4449 {
4450     struct ofport_dpif *in_port;
4451     struct rule_dpif *rule;
4452     struct xlate_in xin;
4453
4454     in_port = get_ofp_port(ofproto, flow->in_port.ofp_port);
4455     if (in_port && in_port->is_tunnel) {
4456         netdev_vport_inc_rx(in_port->up.netdev, stats);
4457     }
4458
4459     rule_dpif_lookup(ofproto, flow, NULL, &rule);
4460     rule_dpif_credit_stats(rule, stats);
4461     xlate_in_init(&xin, ofproto, flow, rule, stats->tcp_flags, NULL);
4462     xin.resubmit_stats = stats;
4463     xin.may_learn = may_learn;
4464     xlate_actions_for_side_effects(&xin);
4465     rule_dpif_release(rule);
4466 }
4467
4468 static void
4469 facet_push_stats(struct facet *facet, bool may_learn)
4470 {
4471     struct dpif_flow_stats stats;
4472
4473     ovs_assert(facet->packet_count >= facet->prev_packet_count);
4474     ovs_assert(facet->byte_count >= facet->prev_byte_count);
4475     ovs_assert(facet->used >= facet->prev_used);
4476
4477     stats.n_packets = facet->packet_count - facet->prev_packet_count;
4478     stats.n_bytes = facet->byte_count - facet->prev_byte_count;
4479     stats.used = facet->used;
4480     stats.tcp_flags = facet->tcp_flags;
4481
4482     if (may_learn || stats.n_packets || facet->used > facet->prev_used) {
4483         facet->prev_packet_count = facet->packet_count;
4484         facet->prev_byte_count = facet->byte_count;
4485         facet->prev_used = facet->used;
4486
4487         netflow_flow_update_time(facet->ofproto->netflow, &facet->nf_flow,
4488                                  facet->used);
4489         netflow_flow_update_flags(&facet->nf_flow, facet->tcp_flags);
4490         mirror_update_stats(facet->ofproto->mbridge, facet->xout.mirrors,
4491                             stats.n_packets, stats.n_bytes);
4492         flow_push_stats(facet->ofproto, &facet->flow, &stats, may_learn);
4493     }
4494 }
4495
4496 static void
4497 push_all_stats__(bool run_fast)
4498 {
4499     static long long int rl = LLONG_MIN;
4500     struct ofproto_dpif *ofproto;
4501
4502     if (time_msec() < rl) {
4503         return;
4504     }
4505
4506     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
4507         struct cls_cursor cursor;
4508         struct facet *facet;
4509
4510         ovs_rwlock_rdlock(&ofproto->facets.rwlock);
4511         cls_cursor_init(&cursor, &ofproto->facets, NULL);
4512         CLS_CURSOR_FOR_EACH (facet, cr, &cursor) {
4513             facet_push_stats(facet, false);
4514             if (run_fast) {
4515                 run_fast_rl();
4516             }
4517         }
4518         ovs_rwlock_unlock(&ofproto->facets.rwlock);
4519     }
4520
4521     rl = time_msec() + 100;
4522 }
4523
4524 static void
4525 push_all_stats(void)
4526 {
4527     push_all_stats__(true);
4528 }
4529
4530 void
4531 rule_dpif_credit_stats(struct rule_dpif *rule,
4532                        const struct dpif_flow_stats *stats)
4533 {
4534     ovs_mutex_lock(&rule->stats_mutex);
4535     rule->packet_count += stats->n_packets;
4536     rule->byte_count += stats->n_bytes;
4537     rule->up.used = MAX(rule->up.used, stats->used);
4538     ovs_mutex_unlock(&rule->stats_mutex);
4539 }
4540
4541 bool
4542 rule_dpif_fail_open(const struct rule_dpif *rule)
4543 {
4544     return rule->up.cr.priority == FAIL_OPEN_PRIORITY;
4545 }
4546
4547 ovs_be64
4548 rule_dpif_get_flow_cookie(const struct rule_dpif *rule)
4549 {
4550     return rule->up.flow_cookie;
4551 }
4552
4553 void
4554 rule_dpif_reduce_timeouts(struct rule_dpif *rule, uint16_t idle_timeout,
4555                      uint16_t hard_timeout)
4556 {
4557     ofproto_rule_reduce_timeouts(&rule->up, idle_timeout, hard_timeout);
4558 }
4559
4560 void
4561 rule_dpif_get_actions(const struct rule_dpif *rule,
4562                       const struct ofpact **ofpacts, size_t *ofpacts_len)
4563 {
4564     *ofpacts = rule->up.ofpacts;
4565     *ofpacts_len = rule->up.ofpacts_len;
4566 }
4567 \f
4568 /* Subfacets. */
4569
4570 static struct subfacet *
4571 subfacet_find(struct dpif_backer *backer, const struct nlattr *key,
4572               size_t key_len, uint32_t key_hash)
4573 {
4574     struct subfacet *subfacet;
4575
4576     HMAP_FOR_EACH_WITH_HASH (subfacet, hmap_node, key_hash,
4577                              &backer->subfacets) {
4578         if (subfacet->key_len == key_len
4579             && !memcmp(key, subfacet->key, key_len)) {
4580             return subfacet;
4581         }
4582     }
4583
4584     return NULL;
4585 }
4586
4587 /* Searches 'facet' (within 'ofproto') for a subfacet with the specified
4588  * 'key_fitness', 'key', and 'key_len' members in 'miss'.  Returns the
4589  * existing subfacet if there is one, otherwise creates and returns a
4590  * new subfacet. */
4591 static struct subfacet *
4592 subfacet_create(struct facet *facet, struct flow_miss *miss)
4593 {
4594     struct dpif_backer *backer = miss->ofproto->backer;
4595     enum odp_key_fitness key_fitness = miss->key_fitness;
4596     const struct nlattr *key = miss->key;
4597     size_t key_len = miss->key_len;
4598     uint32_t key_hash;
4599     struct subfacet *subfacet;
4600
4601     key_hash = odp_flow_key_hash(key, key_len);
4602
4603     if (list_is_empty(&facet->subfacets)) {
4604         subfacet = &facet->one_subfacet;
4605     } else {
4606         subfacet = subfacet_find(backer, key, key_len, key_hash);
4607         if (subfacet) {
4608             if (subfacet->facet == facet) {
4609                 return subfacet;
4610             }
4611
4612             /* This shouldn't happen. */
4613             VLOG_ERR_RL(&rl, "subfacet with wrong facet");
4614             subfacet_destroy(subfacet);
4615         }
4616
4617         subfacet = xmalloc(sizeof *subfacet);
4618     }
4619
4620     hmap_insert(&backer->subfacets, &subfacet->hmap_node, key_hash);
4621     list_push_back(&facet->subfacets, &subfacet->list_node);
4622     subfacet->facet = facet;
4623     subfacet->key_fitness = key_fitness;
4624     subfacet->key = xmemdup(key, key_len);
4625     subfacet->key_len = key_len;
4626     subfacet->used = miss->stats.used;
4627     subfacet->created = subfacet->used;
4628     subfacet->dp_packet_count = 0;
4629     subfacet->dp_byte_count = 0;
4630     subfacet->path = SF_NOT_INSTALLED;
4631     subfacet->backer = backer;
4632
4633     backer->subfacet_add_count++;
4634     return subfacet;
4635 }
4636
4637 /* Uninstalls 'subfacet' from the datapath, if it is installed, removes it from
4638  * its facet within 'ofproto', and frees it. */
4639 static void
4640 subfacet_destroy__(struct subfacet *subfacet)
4641 {
4642     struct facet *facet = subfacet->facet;
4643     struct ofproto_dpif *ofproto = facet->ofproto;
4644
4645     /* Update ofproto stats before uninstall the subfacet. */
4646     ofproto->backer->subfacet_del_count++;
4647
4648     subfacet_uninstall(subfacet);
4649     hmap_remove(&subfacet->backer->subfacets, &subfacet->hmap_node);
4650     list_remove(&subfacet->list_node);
4651     free(subfacet->key);
4652     if (subfacet != &facet->one_subfacet) {
4653         free(subfacet);
4654     }
4655 }
4656
4657 /* Destroys 'subfacet', as with subfacet_destroy__(), and then if this was the
4658  * last remaining subfacet in its facet destroys the facet too. */
4659 static void
4660 subfacet_destroy(struct subfacet *subfacet)
4661 {
4662     struct facet *facet = subfacet->facet;
4663
4664     if (list_is_singleton(&facet->subfacets)) {
4665         /* facet_remove() needs at least one subfacet (it will remove it). */
4666         facet_remove(facet);
4667     } else {
4668         subfacet_destroy__(subfacet);
4669     }
4670 }
4671
4672 static void
4673 subfacet_destroy_batch(struct dpif_backer *backer,
4674                        struct subfacet **subfacets, int n)
4675 {
4676     struct dpif_op ops[SUBFACET_DESTROY_MAX_BATCH];
4677     struct dpif_op *opsp[SUBFACET_DESTROY_MAX_BATCH];
4678     struct dpif_flow_stats stats[SUBFACET_DESTROY_MAX_BATCH];
4679     int i;
4680
4681     for (i = 0; i < n; i++) {
4682         ops[i].type = DPIF_OP_FLOW_DEL;
4683         ops[i].u.flow_del.key = subfacets[i]->key;
4684         ops[i].u.flow_del.key_len = subfacets[i]->key_len;
4685         ops[i].u.flow_del.stats = &stats[i];
4686         opsp[i] = &ops[i];
4687     }
4688
4689     dpif_operate(backer->dpif, opsp, n);
4690     for (i = 0; i < n; i++) {
4691         subfacet_reset_dp_stats(subfacets[i], &stats[i]);
4692         subfacets[i]->path = SF_NOT_INSTALLED;
4693         subfacet_destroy(subfacets[i]);
4694         run_fast_rl();
4695     }
4696 }
4697
4698 /* Updates 'subfacet''s datapath flow, setting its actions to 'actions_len'
4699  * bytes of actions in 'actions'.  If 'stats' is non-null, statistics counters
4700  * in the datapath will be zeroed and 'stats' will be updated with traffic new
4701  * since 'subfacet' was last updated.
4702  *
4703  * Returns 0 if successful, otherwise a positive errno value. */
4704 static int
4705 subfacet_install(struct subfacet *subfacet, const struct ofpbuf *odp_actions,
4706                  struct dpif_flow_stats *stats)
4707 {
4708     struct facet *facet = subfacet->facet;
4709     enum subfacet_path path = facet->xout.slow ? SF_SLOW_PATH : SF_FAST_PATH;
4710     const struct nlattr *actions = odp_actions->data;
4711     size_t actions_len = odp_actions->size;
4712     struct odputil_keybuf maskbuf;
4713     struct ofpbuf mask;
4714
4715     uint64_t slow_path_stub[128 / 8];
4716     enum dpif_flow_put_flags flags;
4717     int ret;
4718
4719     flags = subfacet->path == SF_NOT_INSTALLED ? DPIF_FP_CREATE
4720                                                : DPIF_FP_MODIFY;
4721     if (stats) {
4722         flags |= DPIF_FP_ZERO_STATS;
4723     }
4724
4725     if (path == SF_SLOW_PATH) {
4726         compose_slow_path(facet->ofproto, &facet->flow, facet->xout.slow,
4727                           slow_path_stub, sizeof slow_path_stub,
4728                           &actions, &actions_len);
4729     }
4730
4731     ofpbuf_use_stack(&mask, &maskbuf, sizeof maskbuf);
4732     if (enable_megaflows) {
4733         odp_flow_key_from_mask(&mask, &facet->xout.wc.masks,
4734                                &facet->flow, UINT32_MAX);
4735     }
4736
4737     ret = dpif_flow_put(subfacet->backer->dpif, flags, subfacet->key,
4738                         subfacet->key_len,  mask.data, mask.size,
4739                         actions, actions_len, stats);
4740
4741     if (stats) {
4742         subfacet_reset_dp_stats(subfacet, stats);
4743     }
4744
4745     if (ret) {
4746         COVERAGE_INC(subfacet_install_fail);
4747     } else {
4748         subfacet->path = path;
4749     }
4750     return ret;
4751 }
4752
4753 /* If 'subfacet' is installed in the datapath, uninstalls it. */
4754 static void
4755 subfacet_uninstall(struct subfacet *subfacet)
4756 {
4757     if (subfacet->path != SF_NOT_INSTALLED) {
4758         struct ofproto_dpif *ofproto = subfacet->facet->ofproto;
4759         struct dpif_flow_stats stats;
4760         int error;
4761
4762         error = dpif_flow_del(ofproto->backer->dpif, subfacet->key,
4763                               subfacet->key_len, &stats);
4764         subfacet_reset_dp_stats(subfacet, &stats);
4765         if (!error) {
4766             subfacet_update_stats(subfacet, &stats);
4767         }
4768         subfacet->path = SF_NOT_INSTALLED;
4769     } else {
4770         ovs_assert(subfacet->dp_packet_count == 0);
4771         ovs_assert(subfacet->dp_byte_count == 0);
4772     }
4773 }
4774
4775 /* Resets 'subfacet''s datapath statistics counters.  This should be called
4776  * when 'subfacet''s statistics are cleared in the datapath.  If 'stats' is
4777  * non-null, it should contain the statistics returned by dpif when 'subfacet'
4778  * was reset in the datapath.  'stats' will be modified to include only
4779  * statistics new since 'subfacet' was last updated. */
4780 static void
4781 subfacet_reset_dp_stats(struct subfacet *subfacet,
4782                         struct dpif_flow_stats *stats)
4783 {
4784     if (stats
4785         && subfacet->dp_packet_count <= stats->n_packets
4786         && subfacet->dp_byte_count <= stats->n_bytes) {
4787         stats->n_packets -= subfacet->dp_packet_count;
4788         stats->n_bytes -= subfacet->dp_byte_count;
4789     }
4790
4791     subfacet->dp_packet_count = 0;
4792     subfacet->dp_byte_count = 0;
4793 }
4794
4795 /* Folds the statistics from 'stats' into the counters in 'subfacet'.
4796  *
4797  * Because of the meaning of a subfacet's counters, it only makes sense to do
4798  * this if 'stats' are not tracked in the datapath, that is, if 'stats'
4799  * represents a packet that was sent by hand or if it represents statistics
4800  * that have been cleared out of the datapath. */
4801 static void
4802 subfacet_update_stats(struct subfacet *subfacet,
4803                       const struct dpif_flow_stats *stats)
4804 {
4805     if (stats->n_packets || stats->used > subfacet->used) {
4806         struct facet *facet = subfacet->facet;
4807
4808         subfacet->used = MAX(subfacet->used, stats->used);
4809         facet->used = MAX(facet->used, stats->used);
4810         facet->packet_count += stats->n_packets;
4811         facet->byte_count += stats->n_bytes;
4812         facet->tcp_flags |= stats->tcp_flags;
4813     }
4814 }
4815 \f
4816 /* Rules. */
4817
4818 /* Lookup 'flow' in 'ofproto''s classifier.  If 'wc' is non-null, sets
4819  * the fields that were relevant as part of the lookup. */
4820 void
4821 rule_dpif_lookup(struct ofproto_dpif *ofproto, const struct flow *flow,
4822                  struct flow_wildcards *wc, struct rule_dpif **rule)
4823 {
4824     struct ofport_dpif *port;
4825
4826     if (rule_dpif_lookup_in_table(ofproto, flow, wc, 0, rule)) {
4827         return;
4828     }
4829     port = get_ofp_port(ofproto, flow->in_port.ofp_port);
4830     if (!port) {
4831         VLOG_WARN_RL(&rl, "packet-in on unknown OpenFlow port %"PRIu16,
4832                      flow->in_port.ofp_port);
4833     }
4834
4835     choose_miss_rule(port ? port->up.pp.config : 0, ofproto->miss_rule,
4836                      ofproto->no_packet_in_rule, rule);
4837 }
4838
4839 bool
4840 rule_dpif_lookup_in_table(struct ofproto_dpif *ofproto,
4841                           const struct flow *flow, struct flow_wildcards *wc,
4842                           uint8_t table_id, struct rule_dpif **rule)
4843     OVS_TRY_RDLOCK(true, (*rule)->up.rwlock)
4844 {
4845     struct cls_rule *cls_rule;
4846     struct classifier *cls;
4847     bool frag;
4848
4849     *rule = NULL;
4850     if (table_id >= N_TABLES) {
4851         return false;
4852     }
4853
4854     if (wc) {
4855         memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
4856         wc->masks.nw_frag |= FLOW_NW_FRAG_MASK;
4857     }
4858
4859     cls = &ofproto->up.tables[table_id].cls;
4860     ovs_rwlock_rdlock(&cls->rwlock);
4861     frag = (flow->nw_frag & FLOW_NW_FRAG_ANY) != 0;
4862     if (frag && ofproto->up.frag_handling == OFPC_FRAG_NORMAL) {
4863         /* We must pretend that transport ports are unavailable. */
4864         struct flow ofpc_normal_flow = *flow;
4865         ofpc_normal_flow.tp_src = htons(0);
4866         ofpc_normal_flow.tp_dst = htons(0);
4867         cls_rule = classifier_lookup(cls, &ofpc_normal_flow, wc);
4868     } else if (frag && ofproto->up.frag_handling == OFPC_FRAG_DROP) {
4869         cls_rule = &ofproto->drop_frags_rule->up.cr;
4870         if (wc) {
4871             flow_wildcards_init_exact(wc);
4872         }
4873     } else {
4874         cls_rule = classifier_lookup(cls, flow, wc);
4875     }
4876
4877     *rule = rule_dpif_cast(rule_from_cls_rule(cls_rule));
4878     if (*rule && ovs_rwlock_tryrdlock(&(*rule)->up.rwlock)) {
4879         /* The rule is in the process of being removed.  Best we can do is
4880          * pretend it isn't there. */
4881         *rule = NULL;
4882     }
4883     ovs_rwlock_unlock(&cls->rwlock);
4884
4885     return *rule != NULL;
4886 }
4887
4888 /* Given a port configuration (specified as zero if there's no port), chooses
4889  * which of 'miss_rule' and 'no_packet_in_rule' should be used in case of a
4890  * flow table miss. */
4891 void
4892 choose_miss_rule(enum ofputil_port_config config, struct rule_dpif *miss_rule,
4893                  struct rule_dpif *no_packet_in_rule, struct rule_dpif **rule)
4894     OVS_NO_THREAD_SAFETY_ANALYSIS
4895 {
4896     *rule = config & OFPUTIL_PC_NO_PACKET_IN ? no_packet_in_rule : miss_rule;
4897     ovs_rwlock_rdlock(&(*rule)->up.rwlock);
4898 }
4899
4900 void
4901 rule_dpif_release(struct rule_dpif *rule)
4902     OVS_NO_THREAD_SAFETY_ANALYSIS
4903 {
4904     if (rule) {
4905         ovs_rwlock_unlock(&rule->up.rwlock);
4906     }
4907 }
4908
4909 static void
4910 complete_operation(struct rule_dpif *rule)
4911 {
4912     struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
4913
4914     ofproto->backer->need_revalidate = REV_FLOW_TABLE;
4915     if (clogged) {
4916         struct dpif_completion *c = xmalloc(sizeof *c);
4917         c->op = rule->up.pending;
4918         list_push_back(&ofproto->completions, &c->list_node);
4919     } else {
4920         ofoperation_complete(rule->up.pending, 0);
4921     }
4922 }
4923
4924 static struct rule_dpif *rule_dpif_cast(const struct rule *rule)
4925 {
4926     return rule ? CONTAINER_OF(rule, struct rule_dpif, up) : NULL;
4927 }
4928
4929 static struct rule *
4930 rule_alloc(void)
4931 {
4932     struct rule_dpif *rule = xmalloc(sizeof *rule);
4933     return &rule->up;
4934 }
4935
4936 static void
4937 rule_dealloc(struct rule *rule_)
4938 {
4939     struct rule_dpif *rule = rule_dpif_cast(rule_);
4940     free(rule);
4941 }
4942
4943 static enum ofperr
4944 rule_construct(struct rule *rule_)
4945 {
4946     struct rule_dpif *rule = rule_dpif_cast(rule_);
4947     ovs_mutex_init(&rule->stats_mutex);
4948     ovs_mutex_lock(&rule->stats_mutex);
4949     rule->packet_count = 0;
4950     rule->byte_count = 0;
4951     ovs_mutex_unlock(&rule->stats_mutex);
4952     return 0;
4953 }
4954
4955 static void
4956 rule_insert(struct rule *rule_)
4957 {
4958     struct rule_dpif *rule = rule_dpif_cast(rule_);
4959     complete_operation(rule);
4960 }
4961
4962 static void
4963 rule_delete(struct rule *rule_)
4964 {
4965     struct rule_dpif *rule = rule_dpif_cast(rule_);
4966     complete_operation(rule);
4967 }
4968
4969 static void
4970 rule_destruct(struct rule *rule_)
4971 {
4972     struct rule_dpif *rule = rule_dpif_cast(rule_);
4973     ovs_mutex_destroy(&rule->stats_mutex);
4974 }
4975
4976 static void
4977 rule_get_stats(struct rule *rule_, uint64_t *packets, uint64_t *bytes)
4978 {
4979     struct rule_dpif *rule = rule_dpif_cast(rule_);
4980
4981     /* push_all_stats() can handle flow misses which, when using the learn
4982      * action, can cause rules to be added and deleted.  This can corrupt our
4983      * caller's datastructures which assume that rule_get_stats() doesn't have
4984      * an impact on the flow table. To be safe, we disable miss handling. */
4985     push_all_stats__(false);
4986
4987     /* Start from historical data for 'rule' itself that are no longer tracked
4988      * in facets.  This counts, for example, facets that have expired. */
4989     ovs_mutex_lock(&rule->stats_mutex);
4990     *packets = rule->packet_count;
4991     *bytes = rule->byte_count;
4992     ovs_mutex_unlock(&rule->stats_mutex);
4993 }
4994
4995 static void
4996 rule_dpif_execute(struct rule_dpif *rule, const struct flow *flow,
4997                   struct ofpbuf *packet)
4998 {
4999     struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
5000     struct dpif_flow_stats stats;
5001     struct xlate_out xout;
5002     struct xlate_in xin;
5003
5004     dpif_flow_stats_extract(flow, packet, time_msec(), &stats);
5005     rule_dpif_credit_stats(rule, &stats);
5006
5007     xlate_in_init(&xin, ofproto, flow, rule, stats.tcp_flags, packet);
5008     xin.resubmit_stats = &stats;
5009     xlate_actions(&xin, &xout);
5010
5011     execute_odp_actions(ofproto, flow, xout.odp_actions.data,
5012                         xout.odp_actions.size, packet);
5013
5014     xlate_out_uninit(&xout);
5015 }
5016
5017 static enum ofperr
5018 rule_execute(struct rule *rule, const struct flow *flow,
5019              struct ofpbuf *packet)
5020 {
5021     rule_dpif_execute(rule_dpif_cast(rule), flow, packet);
5022     ofpbuf_delete(packet);
5023     return 0;
5024 }
5025
5026 static void
5027 rule_modify_actions(struct rule *rule_, bool reset_counters)
5028 {
5029     struct rule_dpif *rule = rule_dpif_cast(rule_);
5030
5031     if (reset_counters) {
5032         ovs_mutex_lock(&rule->stats_mutex);
5033         rule->packet_count = 0;
5034         rule->byte_count = 0;
5035         ovs_mutex_unlock(&rule->stats_mutex);
5036     }
5037
5038     complete_operation(rule);
5039 }
5040 \f
5041 /* Sends 'packet' out 'ofport'.
5042  * May modify 'packet'.
5043  * Returns 0 if successful, otherwise a positive errno value. */
5044 static int
5045 send_packet(const struct ofport_dpif *ofport, struct ofpbuf *packet)
5046 {
5047     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
5048     uint64_t odp_actions_stub[1024 / 8];
5049     struct ofpbuf key, odp_actions;
5050     struct dpif_flow_stats stats;
5051     struct odputil_keybuf keybuf;
5052     struct ofpact_output output;
5053     struct xlate_out xout;
5054     struct xlate_in xin;
5055     struct flow flow;
5056     union flow_in_port in_port_;
5057     int error;
5058
5059     ofpbuf_use_stub(&odp_actions, odp_actions_stub, sizeof odp_actions_stub);
5060     ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
5061
5062     /* Use OFPP_NONE as the in_port to avoid special packet processing. */
5063     in_port_.ofp_port = OFPP_NONE;
5064     flow_extract(packet, 0, 0, NULL, &in_port_, &flow);
5065     odp_flow_key_from_flow(&key, &flow, ofp_port_to_odp_port(ofproto,
5066                                                              OFPP_LOCAL));
5067     dpif_flow_stats_extract(&flow, packet, time_msec(), &stats);
5068
5069     ofpact_init(&output.ofpact, OFPACT_OUTPUT, sizeof output);
5070     output.port = ofport->up.ofp_port;
5071     output.max_len = 0;
5072
5073     xlate_in_init(&xin, ofproto, &flow, NULL, 0, packet);
5074     xin.ofpacts_len = sizeof output;
5075     xin.ofpacts = &output.ofpact;
5076     xin.resubmit_stats = &stats;
5077     xlate_actions(&xin, &xout);
5078
5079     error = dpif_execute(ofproto->backer->dpif,
5080                          key.data, key.size,
5081                          xout.odp_actions.data, xout.odp_actions.size,
5082                          packet);
5083     xlate_out_uninit(&xout);
5084
5085     if (error) {
5086         VLOG_WARN_RL(&rl, "%s: failed to send packet on port %s (%s)",
5087                      ofproto->up.name, netdev_get_name(ofport->up.netdev),
5088                      ovs_strerror(error));
5089     }
5090
5091     ofproto->stats.tx_packets++;
5092     ofproto->stats.tx_bytes += packet->size;
5093     return error;
5094 }
5095
5096 /* Composes an ODP action for a "slow path" action for 'flow' within 'ofproto'.
5097  * The action will state 'slow' as the reason that the action is in the slow
5098  * path.  (This is purely informational: it allows a human viewing "ovs-dpctl
5099  * dump-flows" output to see why a flow is in the slow path.)
5100  *
5101  * The 'stub_size' bytes in 'stub' will be used to store the action.
5102  * 'stub_size' must be large enough for the action.
5103  *
5104  * The action and its size will be stored in '*actionsp' and '*actions_lenp',
5105  * respectively. */
5106 static void
5107 compose_slow_path(const struct ofproto_dpif *ofproto, const struct flow *flow,
5108                   enum slow_path_reason slow,
5109                   uint64_t *stub, size_t stub_size,
5110                   const struct nlattr **actionsp, size_t *actions_lenp)
5111 {
5112     union user_action_cookie cookie;
5113     struct ofpbuf buf;
5114
5115     cookie.type = USER_ACTION_COOKIE_SLOW_PATH;
5116     cookie.slow_path.unused = 0;
5117     cookie.slow_path.reason = slow;
5118
5119     ofpbuf_use_stack(&buf, stub, stub_size);
5120     if (slow & (SLOW_CFM | SLOW_BFD | SLOW_LACP | SLOW_STP)) {
5121         uint32_t pid = dpif_port_get_pid(ofproto->backer->dpif,
5122                                          ODPP_NONE);
5123         odp_put_userspace_action(pid, &cookie, sizeof cookie.slow_path, &buf);
5124     } else {
5125         odp_port_t odp_port;
5126         uint32_t pid;
5127
5128         odp_port = ofp_port_to_odp_port(ofproto, flow->in_port.ofp_port);
5129         pid = dpif_port_get_pid(ofproto->backer->dpif, odp_port);
5130         odp_put_userspace_action(pid, &cookie, sizeof cookie.slow_path, &buf);
5131     }
5132     *actionsp = buf.data;
5133     *actions_lenp = buf.size;
5134 }
5135 \f
5136 static bool
5137 set_frag_handling(struct ofproto *ofproto_,
5138                   enum ofp_config_flags frag_handling)
5139 {
5140     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
5141     if (frag_handling != OFPC_FRAG_REASM) {
5142         ofproto->backer->need_revalidate = REV_RECONFIGURE;
5143         return true;
5144     } else {
5145         return false;
5146     }
5147 }
5148
5149 static enum ofperr
5150 packet_out(struct ofproto *ofproto_, struct ofpbuf *packet,
5151            const struct flow *flow,
5152            const struct ofpact *ofpacts, size_t ofpacts_len)
5153 {
5154     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
5155     struct odputil_keybuf keybuf;
5156     struct dpif_flow_stats stats;
5157     struct xlate_out xout;
5158     struct xlate_in xin;
5159     struct ofpbuf key;
5160
5161
5162     ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
5163     odp_flow_key_from_flow(&key, flow,
5164                            ofp_port_to_odp_port(ofproto,
5165                                       flow->in_port.ofp_port));
5166
5167     dpif_flow_stats_extract(flow, packet, time_msec(), &stats);
5168
5169     xlate_in_init(&xin, ofproto, flow, NULL, stats.tcp_flags, packet);
5170     xin.resubmit_stats = &stats;
5171     xin.ofpacts_len = ofpacts_len;
5172     xin.ofpacts = ofpacts;
5173
5174     xlate_actions(&xin, &xout);
5175     dpif_execute(ofproto->backer->dpif, key.data, key.size,
5176                  xout.odp_actions.data, xout.odp_actions.size, packet);
5177     xlate_out_uninit(&xout);
5178
5179     return 0;
5180 }
5181 \f
5182 /* NetFlow. */
5183
5184 static int
5185 set_netflow(struct ofproto *ofproto_,
5186             const struct netflow_options *netflow_options)
5187 {
5188     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
5189
5190     if (netflow_options) {
5191         if (!ofproto->netflow) {
5192             ofproto->netflow = netflow_create();
5193             ofproto->backer->need_revalidate = REV_RECONFIGURE;
5194         }
5195         return netflow_set_options(ofproto->netflow, netflow_options);
5196     } else if (ofproto->netflow) {
5197         ofproto->backer->need_revalidate = REV_RECONFIGURE;
5198         netflow_destroy(ofproto->netflow);
5199         ofproto->netflow = NULL;
5200     }
5201
5202     return 0;
5203 }
5204
5205 static void
5206 get_netflow_ids(const struct ofproto *ofproto_,
5207                 uint8_t *engine_type, uint8_t *engine_id)
5208 {
5209     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
5210
5211     dpif_get_netflow_ids(ofproto->backer->dpif, engine_type, engine_id);
5212 }
5213
5214 static void
5215 send_active_timeout(struct ofproto_dpif *ofproto, struct facet *facet)
5216 {
5217     if (!facet_is_controller_flow(facet) &&
5218         netflow_active_timeout_expired(ofproto->netflow, &facet->nf_flow)) {
5219         struct subfacet *subfacet;
5220         struct ofexpired expired;
5221
5222         LIST_FOR_EACH (subfacet, list_node, &facet->subfacets) {
5223             if (subfacet->path == SF_FAST_PATH) {
5224                 struct dpif_flow_stats stats;
5225
5226                 subfacet_install(subfacet, &facet->xout.odp_actions,
5227                                  &stats);
5228                 subfacet_update_stats(subfacet, &stats);
5229             }
5230         }
5231
5232         expired.flow = facet->flow;
5233         expired.packet_count = facet->packet_count;
5234         expired.byte_count = facet->byte_count;
5235         expired.used = facet->used;
5236         netflow_expire(ofproto->netflow, &facet->nf_flow, &expired);
5237     }
5238 }
5239
5240 static void
5241 send_netflow_active_timeouts(struct ofproto_dpif *ofproto)
5242 {
5243     struct cls_cursor cursor;
5244     struct facet *facet;
5245
5246     ovs_rwlock_rdlock(&ofproto->facets.rwlock);
5247     cls_cursor_init(&cursor, &ofproto->facets, NULL);
5248     CLS_CURSOR_FOR_EACH (facet, cr, &cursor) {
5249         send_active_timeout(ofproto, facet);
5250     }
5251     ovs_rwlock_unlock(&ofproto->facets.rwlock);
5252 }
5253 \f
5254 static struct ofproto_dpif *
5255 ofproto_dpif_lookup(const char *name)
5256 {
5257     struct ofproto_dpif *ofproto;
5258
5259     HMAP_FOR_EACH_WITH_HASH (ofproto, all_ofproto_dpifs_node,
5260                              hash_string(name, 0), &all_ofproto_dpifs) {
5261         if (!strcmp(ofproto->up.name, name)) {
5262             return ofproto;
5263         }
5264     }
5265     return NULL;
5266 }
5267
5268 static void
5269 ofproto_unixctl_fdb_flush(struct unixctl_conn *conn, int argc,
5270                           const char *argv[], void *aux OVS_UNUSED)
5271 {
5272     struct ofproto_dpif *ofproto;
5273
5274     if (argc > 1) {
5275         ofproto = ofproto_dpif_lookup(argv[1]);
5276         if (!ofproto) {
5277             unixctl_command_reply_error(conn, "no such bridge");
5278             return;
5279         }
5280         ovs_rwlock_wrlock(&ofproto->ml->rwlock);
5281         mac_learning_flush(ofproto->ml);
5282         ovs_rwlock_unlock(&ofproto->ml->rwlock);
5283     } else {
5284         HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
5285             ovs_rwlock_wrlock(&ofproto->ml->rwlock);
5286             mac_learning_flush(ofproto->ml);
5287             ovs_rwlock_unlock(&ofproto->ml->rwlock);
5288         }
5289     }
5290
5291     unixctl_command_reply(conn, "table successfully flushed");
5292 }
5293
5294 static struct ofport_dpif *
5295 ofbundle_get_a_port(const struct ofbundle *bundle)
5296 {
5297     return CONTAINER_OF(list_front(&bundle->ports), struct ofport_dpif,
5298                         bundle_node);
5299 }
5300
5301 static void
5302 ofproto_unixctl_fdb_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
5303                          const char *argv[], void *aux OVS_UNUSED)
5304 {
5305     struct ds ds = DS_EMPTY_INITIALIZER;
5306     const struct ofproto_dpif *ofproto;
5307     const struct mac_entry *e;
5308
5309     ofproto = ofproto_dpif_lookup(argv[1]);
5310     if (!ofproto) {
5311         unixctl_command_reply_error(conn, "no such bridge");
5312         return;
5313     }
5314
5315     ds_put_cstr(&ds, " port  VLAN  MAC                Age\n");
5316     ovs_rwlock_rdlock(&ofproto->ml->rwlock);
5317     LIST_FOR_EACH (e, lru_node, &ofproto->ml->lrus) {
5318         struct ofbundle *bundle = e->port.p;
5319         char name[OFP_MAX_PORT_NAME_LEN];
5320
5321         ofputil_port_to_string(ofbundle_get_a_port(bundle)->up.ofp_port,
5322                                name, sizeof name);
5323         ds_put_format(&ds, "%5s  %4d  "ETH_ADDR_FMT"  %3d\n",
5324                       name, e->vlan, ETH_ADDR_ARGS(e->mac),
5325                       mac_entry_age(ofproto->ml, e));
5326     }
5327     ovs_rwlock_unlock(&ofproto->ml->rwlock);
5328     unixctl_command_reply(conn, ds_cstr(&ds));
5329     ds_destroy(&ds);
5330 }
5331
5332 struct trace_ctx {
5333     struct xlate_out xout;
5334     struct xlate_in xin;
5335     struct flow flow;
5336     struct ds *result;
5337 };
5338
5339 static void
5340 trace_format_rule(struct ds *result, int level, const struct rule_dpif *rule)
5341 {
5342     ds_put_char_multiple(result, '\t', level);
5343     if (!rule) {
5344         ds_put_cstr(result, "No match\n");
5345         return;
5346     }
5347
5348     ds_put_format(result, "Rule: table=%"PRIu8" cookie=%#"PRIx64" ",
5349                   rule ? rule->up.table_id : 0, ntohll(rule->up.flow_cookie));
5350     cls_rule_format(&rule->up.cr, result);
5351     ds_put_char(result, '\n');
5352
5353     ds_put_char_multiple(result, '\t', level);
5354     ds_put_cstr(result, "OpenFlow ");
5355     ofpacts_format(rule->up.ofpacts, rule->up.ofpacts_len, result);
5356     ds_put_char(result, '\n');
5357 }
5358
5359 static void
5360 trace_format_flow(struct ds *result, int level, const char *title,
5361                   struct trace_ctx *trace)
5362 {
5363     ds_put_char_multiple(result, '\t', level);
5364     ds_put_format(result, "%s: ", title);
5365     if (flow_equal(&trace->xin.flow, &trace->flow)) {
5366         ds_put_cstr(result, "unchanged");
5367     } else {
5368         flow_format(result, &trace->xin.flow);
5369         trace->flow = trace->xin.flow;
5370     }
5371     ds_put_char(result, '\n');
5372 }
5373
5374 static void
5375 trace_format_regs(struct ds *result, int level, const char *title,
5376                   struct trace_ctx *trace)
5377 {
5378     size_t i;
5379
5380     ds_put_char_multiple(result, '\t', level);
5381     ds_put_format(result, "%s:", title);
5382     for (i = 0; i < FLOW_N_REGS; i++) {
5383         ds_put_format(result, " reg%zu=0x%"PRIx32, i, trace->flow.regs[i]);
5384     }
5385     ds_put_char(result, '\n');
5386 }
5387
5388 static void
5389 trace_format_odp(struct ds *result, int level, const char *title,
5390                  struct trace_ctx *trace)
5391 {
5392     struct ofpbuf *odp_actions = &trace->xout.odp_actions;
5393
5394     ds_put_char_multiple(result, '\t', level);
5395     ds_put_format(result, "%s: ", title);
5396     format_odp_actions(result, odp_actions->data, odp_actions->size);
5397     ds_put_char(result, '\n');
5398 }
5399
5400 static void
5401 trace_resubmit(struct xlate_in *xin, struct rule_dpif *rule, int recurse)
5402 {
5403     struct trace_ctx *trace = CONTAINER_OF(xin, struct trace_ctx, xin);
5404     struct ds *result = trace->result;
5405
5406     ds_put_char(result, '\n');
5407     trace_format_flow(result, recurse + 1, "Resubmitted flow", trace);
5408     trace_format_regs(result, recurse + 1, "Resubmitted regs", trace);
5409     trace_format_odp(result,  recurse + 1, "Resubmitted  odp", trace);
5410     trace_format_rule(result, recurse + 1, rule);
5411 }
5412
5413 static void
5414 trace_report(struct xlate_in *xin, const char *s, int recurse)
5415 {
5416     struct trace_ctx *trace = CONTAINER_OF(xin, struct trace_ctx, xin);
5417     struct ds *result = trace->result;
5418
5419     ds_put_char_multiple(result, '\t', recurse);
5420     ds_put_cstr(result, s);
5421     ds_put_char(result, '\n');
5422 }
5423
5424 static void
5425 ofproto_unixctl_trace(struct unixctl_conn *conn, int argc, const char *argv[],
5426                       void *aux OVS_UNUSED)
5427 {
5428     const struct dpif_backer *backer;
5429     struct ofproto_dpif *ofproto;
5430     struct ofpbuf odp_key, odp_mask;
5431     struct ofpbuf *packet;
5432     struct ds result;
5433     struct flow flow;
5434     char *s;
5435
5436     packet = NULL;
5437     backer = NULL;
5438     ds_init(&result);
5439     ofpbuf_init(&odp_key, 0);
5440     ofpbuf_init(&odp_mask, 0);
5441
5442     /* Handle "-generate" or a hex string as the last argument. */
5443     if (!strcmp(argv[argc - 1], "-generate")) {
5444         packet = ofpbuf_new(0);
5445         argc--;
5446     } else {
5447         const char *error = eth_from_hex(argv[argc - 1], &packet);
5448         if (!error) {
5449             argc--;
5450         } else if (argc == 4) {
5451             /* The 3-argument form must end in "-generate' or a hex string. */
5452             unixctl_command_reply_error(conn, error);
5453             goto exit;
5454         }
5455     }
5456
5457     /* Parse the flow and determine whether a datapath or
5458      * bridge is specified. If function odp_flow_key_from_string()
5459      * returns 0, the flow is a odp_flow. If function
5460      * parse_ofp_exact_flow() returns 0, the flow is a br_flow. */
5461     if (!odp_flow_from_string(argv[argc - 1], NULL, &odp_key, &odp_mask)) {
5462         /* If the odp_flow is the second argument,
5463          * the datapath name is the first argument. */
5464         if (argc == 3) {
5465             const char *dp_type;
5466             if (!strncmp(argv[1], "ovs-", 4)) {
5467                 dp_type = argv[1] + 4;
5468             } else {
5469                 dp_type = argv[1];
5470             }
5471             backer = shash_find_data(&all_dpif_backers, dp_type);
5472             if (!backer) {
5473                 unixctl_command_reply_error(conn, "Cannot find datapath "
5474                                "of this name");
5475                 goto exit;
5476             }
5477         } else {
5478             /* No datapath name specified, so there should be only one
5479              * datapath. */
5480             struct shash_node *node;
5481             if (shash_count(&all_dpif_backers) != 1) {
5482                 unixctl_command_reply_error(conn, "Must specify datapath "
5483                          "name, there is more than one type of datapath");
5484                 goto exit;
5485             }
5486             node = shash_first(&all_dpif_backers);
5487             backer = node->data;
5488         }
5489
5490         if (xlate_receive(backer, NULL, odp_key.data, odp_key.size, &flow,
5491                           NULL, &ofproto, NULL)) {
5492             unixctl_command_reply_error(conn, "Invalid datapath flow");
5493             goto exit;
5494         }
5495         ds_put_format(&result, "Bridge: %s\n", ofproto->up.name);
5496     } else if (!parse_ofp_exact_flow(&flow, argv[argc - 1])) {
5497         if (argc != 3) {
5498             unixctl_command_reply_error(conn, "Must specify bridge name");
5499             goto exit;
5500         }
5501
5502         ofproto = ofproto_dpif_lookup(argv[1]);
5503         if (!ofproto) {
5504             unixctl_command_reply_error(conn, "Unknown bridge name");
5505             goto exit;
5506         }
5507     } else {
5508         unixctl_command_reply_error(conn, "Bad flow syntax");
5509         goto exit;
5510     }
5511
5512     /* Generate a packet, if requested. */
5513     if (packet) {
5514         if (!packet->size) {
5515             flow_compose(packet, &flow);
5516         } else {
5517             union flow_in_port in_port_;
5518
5519             in_port_ = flow.in_port;
5520             ds_put_cstr(&result, "Packet: ");
5521             s = ofp_packet_to_string(packet->data, packet->size);
5522             ds_put_cstr(&result, s);
5523             free(s);
5524
5525             /* Use the metadata from the flow and the packet argument
5526              * to reconstruct the flow. */
5527             flow_extract(packet, flow.skb_priority, flow.pkt_mark, NULL,
5528                          &in_port_, &flow);
5529         }
5530     }
5531
5532     ofproto_trace(ofproto, &flow, packet, &result);
5533     unixctl_command_reply(conn, ds_cstr(&result));
5534
5535 exit:
5536     ds_destroy(&result);
5537     ofpbuf_delete(packet);
5538     ofpbuf_uninit(&odp_key);
5539     ofpbuf_uninit(&odp_mask);
5540 }
5541
5542 static void
5543 ofproto_trace(struct ofproto_dpif *ofproto, const struct flow *flow,
5544               const struct ofpbuf *packet, struct ds *ds)
5545 {
5546     struct rule_dpif *rule;
5547     struct flow_wildcards wc;
5548
5549     ds_put_cstr(ds, "Flow: ");
5550     flow_format(ds, flow);
5551     ds_put_char(ds, '\n');
5552
5553     flow_wildcards_init_catchall(&wc);
5554     rule_dpif_lookup(ofproto, flow, &wc, &rule);
5555
5556     trace_format_rule(ds, 0, rule);
5557     if (rule == ofproto->miss_rule) {
5558         ds_put_cstr(ds, "\nNo match, flow generates \"packet in\"s.\n");
5559     } else if (rule == ofproto->no_packet_in_rule) {
5560         ds_put_cstr(ds, "\nNo match, packets dropped because "
5561                     "OFPPC_NO_PACKET_IN is set on in_port.\n");
5562     } else if (rule == ofproto->drop_frags_rule) {
5563         ds_put_cstr(ds, "\nPackets dropped because they are IP fragments "
5564                     "and the fragment handling mode is \"drop\".\n");
5565     }
5566
5567     if (rule) {
5568         uint64_t odp_actions_stub[1024 / 8];
5569         struct ofpbuf odp_actions;
5570         struct trace_ctx trace;
5571         struct match match;
5572         uint8_t tcp_flags;
5573
5574         tcp_flags = packet ? packet_get_tcp_flags(packet, flow) : 0;
5575         trace.result = ds;
5576         trace.flow = *flow;
5577         ofpbuf_use_stub(&odp_actions,
5578                         odp_actions_stub, sizeof odp_actions_stub);
5579         xlate_in_init(&trace.xin, ofproto, flow, rule, tcp_flags, packet);
5580         trace.xin.resubmit_hook = trace_resubmit;
5581         trace.xin.report_hook = trace_report;
5582
5583         xlate_actions(&trace.xin, &trace.xout);
5584         flow_wildcards_or(&trace.xout.wc, &trace.xout.wc, &wc);
5585
5586         ds_put_char(ds, '\n');
5587         trace_format_flow(ds, 0, "Final flow", &trace);
5588
5589         match_init(&match, flow, &trace.xout.wc);
5590         ds_put_cstr(ds, "Relevant fields: ");
5591         match_format(&match, ds, OFP_DEFAULT_PRIORITY);
5592         ds_put_char(ds, '\n');
5593
5594         ds_put_cstr(ds, "Datapath actions: ");
5595         format_odp_actions(ds, trace.xout.odp_actions.data,
5596                            trace.xout.odp_actions.size);
5597
5598         if (trace.xout.slow) {
5599             ds_put_cstr(ds, "\nThis flow is handled by the userspace "
5600                         "slow path because it:");
5601             switch (trace.xout.slow) {
5602             case SLOW_CFM:
5603                 ds_put_cstr(ds, "\n\t- Consists of CFM packets.");
5604                 break;
5605             case SLOW_LACP:
5606                 ds_put_cstr(ds, "\n\t- Consists of LACP packets.");
5607                 break;
5608             case SLOW_STP:
5609                 ds_put_cstr(ds, "\n\t- Consists of STP packets.");
5610                 break;
5611             case SLOW_BFD:
5612                 ds_put_cstr(ds, "\n\t- Consists of BFD packets.");
5613                 break;
5614             case SLOW_CONTROLLER:
5615                 ds_put_cstr(ds, "\n\t- Sends \"packet-in\" messages "
5616                             "to the OpenFlow controller.");
5617                 break;
5618             case __SLOW_MAX:
5619                 NOT_REACHED();
5620             }
5621         }
5622
5623         xlate_out_uninit(&trace.xout);
5624     }
5625
5626     rule_dpif_release(rule);
5627 }
5628
5629 static void
5630 ofproto_dpif_clog(struct unixctl_conn *conn OVS_UNUSED, int argc OVS_UNUSED,
5631                   const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
5632 {
5633     clogged = true;
5634     unixctl_command_reply(conn, NULL);
5635 }
5636
5637 static void
5638 ofproto_dpif_unclog(struct unixctl_conn *conn OVS_UNUSED, int argc OVS_UNUSED,
5639                     const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
5640 {
5641     clogged = false;
5642     unixctl_command_reply(conn, NULL);
5643 }
5644
5645 /* Runs a self-check of flow translations in 'ofproto'.  Appends a message to
5646  * 'reply' describing the results. */
5647 static void
5648 ofproto_dpif_self_check__(struct ofproto_dpif *ofproto, struct ds *reply)
5649 {
5650     struct cls_cursor cursor;
5651     struct facet *facet;
5652     int errors;
5653
5654     errors = 0;
5655     ovs_rwlock_rdlock(&ofproto->facets.rwlock);
5656     cls_cursor_init(&cursor, &ofproto->facets, NULL);
5657     CLS_CURSOR_FOR_EACH (facet, cr, &cursor) {
5658         if (!facet_check_consistency(facet)) {
5659             errors++;
5660         }
5661     }
5662     ovs_rwlock_unlock(&ofproto->facets.rwlock);
5663     if (errors) {
5664         ofproto->backer->need_revalidate = REV_INCONSISTENCY;
5665     }
5666
5667     if (errors) {
5668         ds_put_format(reply, "%s: self-check failed (%d errors)\n",
5669                       ofproto->up.name, errors);
5670     } else {
5671         ds_put_format(reply, "%s: self-check passed\n", ofproto->up.name);
5672     }
5673 }
5674
5675 static void
5676 ofproto_dpif_self_check(struct unixctl_conn *conn,
5677                         int argc, const char *argv[], void *aux OVS_UNUSED)
5678 {
5679     struct ds reply = DS_EMPTY_INITIALIZER;
5680     struct ofproto_dpif *ofproto;
5681
5682     if (argc > 1) {
5683         ofproto = ofproto_dpif_lookup(argv[1]);
5684         if (!ofproto) {
5685             unixctl_command_reply_error(conn, "Unknown ofproto (use "
5686                                         "ofproto/list for help)");
5687             return;
5688         }
5689         ofproto_dpif_self_check__(ofproto, &reply);
5690     } else {
5691         HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
5692             ofproto_dpif_self_check__(ofproto, &reply);
5693         }
5694     }
5695
5696     unixctl_command_reply(conn, ds_cstr(&reply));
5697     ds_destroy(&reply);
5698 }
5699
5700 /* Store the current ofprotos in 'ofproto_shash'.  Returns a sorted list
5701  * of the 'ofproto_shash' nodes.  It is the responsibility of the caller
5702  * to destroy 'ofproto_shash' and free the returned value. */
5703 static const struct shash_node **
5704 get_ofprotos(struct shash *ofproto_shash)
5705 {
5706     const struct ofproto_dpif *ofproto;
5707
5708     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
5709         char *name = xasprintf("%s@%s", ofproto->up.type, ofproto->up.name);
5710         shash_add_nocopy(ofproto_shash, name, ofproto);
5711     }
5712
5713     return shash_sort(ofproto_shash);
5714 }
5715
5716 static void
5717 ofproto_unixctl_dpif_dump_dps(struct unixctl_conn *conn, int argc OVS_UNUSED,
5718                               const char *argv[] OVS_UNUSED,
5719                               void *aux OVS_UNUSED)
5720 {
5721     struct ds ds = DS_EMPTY_INITIALIZER;
5722     struct shash ofproto_shash;
5723     const struct shash_node **sorted_ofprotos;
5724     int i;
5725
5726     shash_init(&ofproto_shash);
5727     sorted_ofprotos = get_ofprotos(&ofproto_shash);
5728     for (i = 0; i < shash_count(&ofproto_shash); i++) {
5729         const struct shash_node *node = sorted_ofprotos[i];
5730         ds_put_format(&ds, "%s\n", node->name);
5731     }
5732
5733     shash_destroy(&ofproto_shash);
5734     free(sorted_ofprotos);
5735
5736     unixctl_command_reply(conn, ds_cstr(&ds));
5737     ds_destroy(&ds);
5738 }
5739
5740 static void
5741 show_dp_rates(struct ds *ds, const char *heading,
5742               const struct avg_subfacet_rates *rates)
5743 {
5744     ds_put_format(ds, "%s add rate: %5.3f/min, del rate: %5.3f/min\n",
5745                   heading, rates->add_rate, rates->del_rate);
5746 }
5747
5748 static void
5749 dpif_show_backer(const struct dpif_backer *backer, struct ds *ds)
5750 {
5751     const struct shash_node **ofprotos;
5752     struct ofproto_dpif *ofproto;
5753     struct shash ofproto_shash;
5754     uint64_t n_hit, n_missed;
5755     long long int minutes;
5756     size_t i;
5757
5758     n_hit = n_missed = 0;
5759     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
5760         if (ofproto->backer == backer) {
5761             n_missed += ofproto->n_missed;
5762             n_hit += ofproto->n_hit;
5763         }
5764     }
5765
5766     ds_put_format(ds, "%s: hit:%"PRIu64" missed:%"PRIu64"\n",
5767                   dpif_name(backer->dpif), n_hit, n_missed);
5768     ds_put_format(ds, "\tflows: cur: %zu, avg: %u, max: %u,"
5769                   " life span: %lldms\n", hmap_count(&backer->subfacets),
5770                   backer->avg_n_subfacet, backer->max_n_subfacet,
5771                   backer->avg_subfacet_life);
5772
5773     minutes = (time_msec() - backer->created) / (1000 * 60);
5774     if (minutes >= 60) {
5775         show_dp_rates(ds, "\thourly avg:", &backer->hourly);
5776     }
5777     if (minutes >= 60 * 24) {
5778         show_dp_rates(ds, "\tdaily avg:",  &backer->daily);
5779     }
5780     show_dp_rates(ds, "\toverall avg:",  &backer->lifetime);
5781
5782     shash_init(&ofproto_shash);
5783     ofprotos = get_ofprotos(&ofproto_shash);
5784     for (i = 0; i < shash_count(&ofproto_shash); i++) {
5785         struct ofproto_dpif *ofproto = ofprotos[i]->data;
5786         const struct shash_node **ports;
5787         size_t j;
5788
5789         if (ofproto->backer != backer) {
5790             continue;
5791         }
5792
5793         ds_put_format(ds, "\t%s: hit:%"PRIu64" missed:%"PRIu64"\n",
5794                       ofproto->up.name, ofproto->n_hit, ofproto->n_missed);
5795
5796         ports = shash_sort(&ofproto->up.port_by_name);
5797         for (j = 0; j < shash_count(&ofproto->up.port_by_name); j++) {
5798             const struct shash_node *node = ports[j];
5799             struct ofport *ofport = node->data;
5800             struct smap config;
5801             odp_port_t odp_port;
5802
5803             ds_put_format(ds, "\t\t%s %u/", netdev_get_name(ofport->netdev),
5804                           ofport->ofp_port);
5805
5806             odp_port = ofp_port_to_odp_port(ofproto, ofport->ofp_port);
5807             if (odp_port != ODPP_NONE) {
5808                 ds_put_format(ds, "%"PRIu32":", odp_port);
5809             } else {
5810                 ds_put_cstr(ds, "none:");
5811             }
5812
5813             ds_put_format(ds, " (%s", netdev_get_type(ofport->netdev));
5814
5815             smap_init(&config);
5816             if (!netdev_get_config(ofport->netdev, &config)) {
5817                 const struct smap_node **nodes;
5818                 size_t i;
5819
5820                 nodes = smap_sort(&config);
5821                 for (i = 0; i < smap_count(&config); i++) {
5822                     const struct smap_node *node = nodes[i];
5823                     ds_put_format(ds, "%c %s=%s", i ? ',' : ':',
5824                                   node->key, node->value);
5825                 }
5826                 free(nodes);
5827             }
5828             smap_destroy(&config);
5829
5830             ds_put_char(ds, ')');
5831             ds_put_char(ds, '\n');
5832         }
5833         free(ports);
5834     }
5835     shash_destroy(&ofproto_shash);
5836     free(ofprotos);
5837 }
5838
5839 static void
5840 ofproto_unixctl_dpif_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
5841                           const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
5842 {
5843     struct ds ds = DS_EMPTY_INITIALIZER;
5844     const struct shash_node **backers;
5845     int i;
5846
5847     backers = shash_sort(&all_dpif_backers);
5848     for (i = 0; i < shash_count(&all_dpif_backers); i++) {
5849         dpif_show_backer(backers[i]->data, &ds);
5850     }
5851     free(backers);
5852
5853     unixctl_command_reply(conn, ds_cstr(&ds));
5854     ds_destroy(&ds);
5855 }
5856
5857 /* Dump the megaflow (facet) cache.  This is useful to check the
5858  * correctness of flow wildcarding, since the same mechanism is used for
5859  * both xlate caching and kernel wildcarding.
5860  *
5861  * It's important to note that in the output the flow description uses
5862  * OpenFlow (OFP) ports, but the actions use datapath (ODP) ports.
5863  *
5864  * This command is only needed for advanced debugging, so it's not
5865  * documented in the man page. */
5866 static void
5867 ofproto_unixctl_dpif_dump_megaflows(struct unixctl_conn *conn,
5868                                     int argc OVS_UNUSED, const char *argv[],
5869                                     void *aux OVS_UNUSED)
5870 {
5871     struct ds ds = DS_EMPTY_INITIALIZER;
5872     const struct ofproto_dpif *ofproto;
5873     long long int now = time_msec();
5874     struct cls_cursor cursor;
5875     struct facet *facet;
5876
5877     ofproto = ofproto_dpif_lookup(argv[1]);
5878     if (!ofproto) {
5879         unixctl_command_reply_error(conn, "no such bridge");
5880         return;
5881     }
5882
5883     ovs_rwlock_rdlock(&ofproto->facets.rwlock);
5884     cls_cursor_init(&cursor, &ofproto->facets, NULL);
5885     CLS_CURSOR_FOR_EACH (facet, cr, &cursor) {
5886         cls_rule_format(&facet->cr, &ds);
5887         ds_put_cstr(&ds, ", ");
5888         ds_put_format(&ds, "n_subfacets:%zu, ", list_size(&facet->subfacets));
5889         ds_put_format(&ds, "used:%.3fs, ", (now - facet->used) / 1000.0);
5890         ds_put_cstr(&ds, "Datapath actions: ");
5891         if (facet->xout.slow) {
5892             uint64_t slow_path_stub[128 / 8];
5893             const struct nlattr *actions;
5894             size_t actions_len;
5895
5896             compose_slow_path(ofproto, &facet->flow, facet->xout.slow,
5897                               slow_path_stub, sizeof slow_path_stub,
5898                               &actions, &actions_len);
5899             format_odp_actions(&ds, actions, actions_len);
5900         } else {
5901             format_odp_actions(&ds, facet->xout.odp_actions.data,
5902                                facet->xout.odp_actions.size);
5903         }
5904         ds_put_cstr(&ds, "\n");
5905     }
5906     ovs_rwlock_unlock(&ofproto->facets.rwlock);
5907
5908     ds_chomp(&ds, '\n');
5909     unixctl_command_reply(conn, ds_cstr(&ds));
5910     ds_destroy(&ds);
5911 }
5912
5913 /* Disable using the megaflows.
5914  *
5915  * This command is only needed for advanced debugging, so it's not
5916  * documented in the man page. */
5917 static void
5918 ofproto_unixctl_dpif_disable_megaflows(struct unixctl_conn *conn,
5919                                        int argc OVS_UNUSED,
5920                                        const char *argv[] OVS_UNUSED,
5921                                        void *aux OVS_UNUSED)
5922 {
5923     struct ofproto_dpif *ofproto;
5924
5925     enable_megaflows = false;
5926
5927     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
5928         flush(&ofproto->up);
5929     }
5930
5931     unixctl_command_reply(conn, "megaflows disabled");
5932 }
5933
5934 /* Re-enable using megaflows.
5935  *
5936  * This command is only needed for advanced debugging, so it's not
5937  * documented in the man page. */
5938 static void
5939 ofproto_unixctl_dpif_enable_megaflows(struct unixctl_conn *conn,
5940                                       int argc OVS_UNUSED,
5941                                       const char *argv[] OVS_UNUSED,
5942                                       void *aux OVS_UNUSED)
5943 {
5944     struct ofproto_dpif *ofproto;
5945
5946     enable_megaflows = true;
5947
5948     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
5949         flush(&ofproto->up);
5950     }
5951
5952     unixctl_command_reply(conn, "megaflows enabled");
5953 }
5954
5955 static void
5956 ofproto_unixctl_dpif_dump_flows(struct unixctl_conn *conn,
5957                                 int argc OVS_UNUSED, const char *argv[],
5958                                 void *aux OVS_UNUSED)
5959 {
5960     struct ds ds = DS_EMPTY_INITIALIZER;
5961     const struct ofproto_dpif *ofproto;
5962     struct subfacet *subfacet;
5963
5964     ofproto = ofproto_dpif_lookup(argv[1]);
5965     if (!ofproto) {
5966         unixctl_command_reply_error(conn, "no such bridge");
5967         return;
5968     }
5969
5970     update_stats(ofproto->backer);
5971
5972     HMAP_FOR_EACH (subfacet, hmap_node, &ofproto->backer->subfacets) {
5973         struct facet *facet = subfacet->facet;
5974         struct odputil_keybuf maskbuf;
5975         struct ofpbuf mask;
5976
5977         if (facet->ofproto != ofproto) {
5978             continue;
5979         }
5980
5981         ofpbuf_use_stack(&mask, &maskbuf, sizeof maskbuf);
5982         if (enable_megaflows) {
5983             odp_flow_key_from_mask(&mask, &facet->xout.wc.masks,
5984                                    &facet->flow, UINT32_MAX);
5985         }
5986
5987         odp_flow_format(subfacet->key, subfacet->key_len,
5988                         mask.data, mask.size, &ds, false);
5989
5990         ds_put_format(&ds, ", packets:%"PRIu64", bytes:%"PRIu64", used:",
5991                       subfacet->dp_packet_count, subfacet->dp_byte_count);
5992         if (subfacet->used) {
5993             ds_put_format(&ds, "%.3fs",
5994                           (time_msec() - subfacet->used) / 1000.0);
5995         } else {
5996             ds_put_format(&ds, "never");
5997         }
5998         if (subfacet->facet->tcp_flags) {
5999             ds_put_cstr(&ds, ", flags:");
6000             packet_format_tcp_flags(&ds, subfacet->facet->tcp_flags);
6001         }
6002
6003         ds_put_cstr(&ds, ", actions:");
6004         if (facet->xout.slow) {
6005             uint64_t slow_path_stub[128 / 8];
6006             const struct nlattr *actions;
6007             size_t actions_len;
6008
6009             compose_slow_path(ofproto, &facet->flow, facet->xout.slow,
6010                               slow_path_stub, sizeof slow_path_stub,
6011                               &actions, &actions_len);
6012             format_odp_actions(&ds, actions, actions_len);
6013         } else {
6014             format_odp_actions(&ds, facet->xout.odp_actions.data,
6015                                facet->xout.odp_actions.size);
6016         }
6017         ds_put_char(&ds, '\n');
6018     }
6019
6020     unixctl_command_reply(conn, ds_cstr(&ds));
6021     ds_destroy(&ds);
6022 }
6023
6024 static void
6025 ofproto_unixctl_dpif_del_flows(struct unixctl_conn *conn,
6026                                int argc OVS_UNUSED, const char *argv[],
6027                                void *aux OVS_UNUSED)
6028 {
6029     struct ds ds = DS_EMPTY_INITIALIZER;
6030     struct ofproto_dpif *ofproto;
6031
6032     ofproto = ofproto_dpif_lookup(argv[1]);
6033     if (!ofproto) {
6034         unixctl_command_reply_error(conn, "no such bridge");
6035         return;
6036     }
6037
6038     flush(&ofproto->up);
6039
6040     unixctl_command_reply(conn, ds_cstr(&ds));
6041     ds_destroy(&ds);
6042 }
6043
6044 static void
6045 ofproto_dpif_unixctl_init(void)
6046 {
6047     static bool registered;
6048     if (registered) {
6049         return;
6050     }
6051     registered = true;
6052
6053     unixctl_command_register(
6054         "ofproto/trace",
6055         "[dp_name]|bridge odp_flow|br_flow [-generate|packet]",
6056         1, 3, ofproto_unixctl_trace, NULL);
6057     unixctl_command_register("fdb/flush", "[bridge]", 0, 1,
6058                              ofproto_unixctl_fdb_flush, NULL);
6059     unixctl_command_register("fdb/show", "bridge", 1, 1,
6060                              ofproto_unixctl_fdb_show, NULL);
6061     unixctl_command_register("ofproto/clog", "", 0, 0,
6062                              ofproto_dpif_clog, NULL);
6063     unixctl_command_register("ofproto/unclog", "", 0, 0,
6064                              ofproto_dpif_unclog, NULL);
6065     unixctl_command_register("ofproto/self-check", "[bridge]", 0, 1,
6066                              ofproto_dpif_self_check, NULL);
6067     unixctl_command_register("dpif/dump-dps", "", 0, 0,
6068                              ofproto_unixctl_dpif_dump_dps, NULL);
6069     unixctl_command_register("dpif/show", "", 0, 0, ofproto_unixctl_dpif_show,
6070                              NULL);
6071     unixctl_command_register("dpif/dump-flows", "bridge", 1, 1,
6072                              ofproto_unixctl_dpif_dump_flows, NULL);
6073     unixctl_command_register("dpif/del-flows", "bridge", 1, 1,
6074                              ofproto_unixctl_dpif_del_flows, NULL);
6075     unixctl_command_register("dpif/dump-megaflows", "bridge", 1, 1,
6076                              ofproto_unixctl_dpif_dump_megaflows, NULL);
6077     unixctl_command_register("dpif/disable-megaflows", "", 0, 0,
6078                              ofproto_unixctl_dpif_disable_megaflows, NULL);
6079     unixctl_command_register("dpif/enable-megaflows", "", 0, 0,
6080                              ofproto_unixctl_dpif_enable_megaflows, NULL);
6081 }
6082 \f
6083 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
6084  *
6085  * This is deprecated.  It is only for compatibility with broken device drivers
6086  * in old versions of Linux that do not properly support VLANs when VLAN
6087  * devices are not used.  When broken device drivers are no longer in
6088  * widespread use, we will delete these interfaces. */
6089
6090 static int
6091 set_realdev(struct ofport *ofport_, ofp_port_t realdev_ofp_port, int vid)
6092 {
6093     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport_->ofproto);
6094     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
6095
6096     if (realdev_ofp_port == ofport->realdev_ofp_port
6097         && vid == ofport->vlandev_vid) {
6098         return 0;
6099     }
6100
6101     ofproto->backer->need_revalidate = REV_RECONFIGURE;
6102
6103     if (ofport->realdev_ofp_port) {
6104         vsp_remove(ofport);
6105     }
6106     if (realdev_ofp_port && ofport->bundle) {
6107         /* vlandevs are enslaved to their realdevs, so they are not allowed to
6108          * themselves be part of a bundle. */
6109         bundle_set(ofport->up.ofproto, ofport->bundle, NULL);
6110     }
6111
6112     ofport->realdev_ofp_port = realdev_ofp_port;
6113     ofport->vlandev_vid = vid;
6114
6115     if (realdev_ofp_port) {
6116         vsp_add(ofport, realdev_ofp_port, vid);
6117     }
6118
6119     return 0;
6120 }
6121
6122 static uint32_t
6123 hash_realdev_vid(ofp_port_t realdev_ofp_port, int vid)
6124 {
6125     return hash_2words(ofp_to_u16(realdev_ofp_port), vid);
6126 }
6127
6128 bool
6129 ofproto_has_vlan_splinters(const struct ofproto_dpif *ofproto)
6130     OVS_EXCLUDED(ofproto->vsp_mutex)
6131 {
6132     bool ret;
6133
6134     ovs_mutex_lock(&ofproto->vsp_mutex);
6135     ret = !hmap_is_empty(&ofproto->realdev_vid_map);
6136     ovs_mutex_unlock(&ofproto->vsp_mutex);
6137     return ret;
6138 }
6139
6140 static ofp_port_t
6141 vsp_realdev_to_vlandev__(const struct ofproto_dpif *ofproto,
6142                          ofp_port_t realdev_ofp_port, ovs_be16 vlan_tci)
6143     OVS_REQUIRES(ofproto->vsp_mutex)
6144 {
6145     if (!hmap_is_empty(&ofproto->realdev_vid_map)) {
6146         int vid = vlan_tci_to_vid(vlan_tci);
6147         const struct vlan_splinter *vsp;
6148
6149         HMAP_FOR_EACH_WITH_HASH (vsp, realdev_vid_node,
6150                                  hash_realdev_vid(realdev_ofp_port, vid),
6151                                  &ofproto->realdev_vid_map) {
6152             if (vsp->realdev_ofp_port == realdev_ofp_port
6153                 && vsp->vid == vid) {
6154                 return vsp->vlandev_ofp_port;
6155             }
6156         }
6157     }
6158     return realdev_ofp_port;
6159 }
6160
6161 /* Returns the OFP port number of the Linux VLAN device that corresponds to
6162  * 'vlan_tci' on the network device with port number 'realdev_ofp_port' in
6163  * 'struct ofport_dpif'.  For example, given 'realdev_ofp_port' of eth0 and
6164  * 'vlan_tci' 9, it would return the port number of eth0.9.
6165  *
6166  * Unless VLAN splinters are enabled for port 'realdev_ofp_port', this
6167  * function just returns its 'realdev_ofp_port' argument. */
6168 ofp_port_t
6169 vsp_realdev_to_vlandev(const struct ofproto_dpif *ofproto,
6170                        ofp_port_t realdev_ofp_port, ovs_be16 vlan_tci)
6171     OVS_EXCLUDED(ofproto->vsp_mutex)
6172 {
6173     ofp_port_t ret;
6174
6175     ovs_mutex_lock(&ofproto->vsp_mutex);
6176     ret = vsp_realdev_to_vlandev__(ofproto, realdev_ofp_port, vlan_tci);
6177     ovs_mutex_unlock(&ofproto->vsp_mutex);
6178     return ret;
6179 }
6180
6181 static struct vlan_splinter *
6182 vlandev_find(const struct ofproto_dpif *ofproto, ofp_port_t vlandev_ofp_port)
6183 {
6184     struct vlan_splinter *vsp;
6185
6186     HMAP_FOR_EACH_WITH_HASH (vsp, vlandev_node,
6187                              hash_ofp_port(vlandev_ofp_port),
6188                              &ofproto->vlandev_map) {
6189         if (vsp->vlandev_ofp_port == vlandev_ofp_port) {
6190             return vsp;
6191         }
6192     }
6193
6194     return NULL;
6195 }
6196
6197 /* Returns the OpenFlow port number of the "real" device underlying the Linux
6198  * VLAN device with OpenFlow port number 'vlandev_ofp_port' and stores the
6199  * VLAN VID of the Linux VLAN device in '*vid'.  For example, given
6200  * 'vlandev_ofp_port' of eth0.9, it would return the OpenFlow port number of
6201  * eth0 and store 9 in '*vid'.
6202  *
6203  * Returns 0 and does not modify '*vid' if 'vlandev_ofp_port' is not a Linux
6204  * VLAN device.  Unless VLAN splinters are enabled, this is what this function
6205  * always does.*/
6206 static ofp_port_t
6207 vsp_vlandev_to_realdev(const struct ofproto_dpif *ofproto,
6208                        ofp_port_t vlandev_ofp_port, int *vid)
6209     OVS_REQUIRES(ofproto->vsp_mutex)
6210 {
6211     if (!hmap_is_empty(&ofproto->vlandev_map)) {
6212         const struct vlan_splinter *vsp;
6213
6214         vsp = vlandev_find(ofproto, vlandev_ofp_port);
6215         if (vsp) {
6216             if (vid) {
6217                 *vid = vsp->vid;
6218             }
6219             return vsp->realdev_ofp_port;
6220         }
6221     }
6222     return 0;
6223 }
6224
6225 /* Given 'flow', a flow representing a packet received on 'ofproto', checks
6226  * whether 'flow->in_port' represents a Linux VLAN device.  If so, changes
6227  * 'flow->in_port' to the "real" device backing the VLAN device, sets
6228  * 'flow->vlan_tci' to the VLAN VID, and returns true.  Otherwise (which is
6229  * always the case unless VLAN splinters are enabled), returns false without
6230  * making any changes. */
6231 bool
6232 vsp_adjust_flow(const struct ofproto_dpif *ofproto, struct flow *flow)
6233     OVS_EXCLUDED(ofproto->vsp_mutex)
6234 {
6235     ofp_port_t realdev;
6236     int vid;
6237
6238     ovs_mutex_lock(&ofproto->vsp_mutex);
6239     realdev = vsp_vlandev_to_realdev(ofproto, flow->in_port.ofp_port, &vid);
6240     ovs_mutex_unlock(&ofproto->vsp_mutex);
6241     if (!realdev) {
6242         return false;
6243     }
6244
6245     /* Cause the flow to be processed as if it came in on the real device with
6246      * the VLAN device's VLAN ID. */
6247     flow->in_port.ofp_port = realdev;
6248     flow->vlan_tci = htons((vid & VLAN_VID_MASK) | VLAN_CFI);
6249     return true;
6250 }
6251
6252 static void
6253 vsp_remove(struct ofport_dpif *port)
6254 {
6255     struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
6256     struct vlan_splinter *vsp;
6257
6258     ovs_mutex_lock(&ofproto->vsp_mutex);
6259     vsp = vlandev_find(ofproto, port->up.ofp_port);
6260     if (vsp) {
6261         hmap_remove(&ofproto->vlandev_map, &vsp->vlandev_node);
6262         hmap_remove(&ofproto->realdev_vid_map, &vsp->realdev_vid_node);
6263         free(vsp);
6264
6265         port->realdev_ofp_port = 0;
6266     } else {
6267         VLOG_ERR("missing vlan device record");
6268     }
6269     ovs_mutex_unlock(&ofproto->vsp_mutex);
6270 }
6271
6272 static void
6273 vsp_add(struct ofport_dpif *port, ofp_port_t realdev_ofp_port, int vid)
6274 {
6275     struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
6276
6277     ovs_mutex_lock(&ofproto->vsp_mutex);
6278     if (!vsp_vlandev_to_realdev(ofproto, port->up.ofp_port, NULL)
6279         && (vsp_realdev_to_vlandev__(ofproto, realdev_ofp_port, htons(vid))
6280             == realdev_ofp_port)) {
6281         struct vlan_splinter *vsp;
6282
6283         vsp = xmalloc(sizeof *vsp);
6284         vsp->realdev_ofp_port = realdev_ofp_port;
6285         vsp->vlandev_ofp_port = port->up.ofp_port;
6286         vsp->vid = vid;
6287
6288         port->realdev_ofp_port = realdev_ofp_port;
6289
6290         hmap_insert(&ofproto->vlandev_map, &vsp->vlandev_node,
6291                     hash_ofp_port(port->up.ofp_port));
6292         hmap_insert(&ofproto->realdev_vid_map, &vsp->realdev_vid_node,
6293                     hash_realdev_vid(realdev_ofp_port, vid));
6294     } else {
6295         VLOG_ERR("duplicate vlan device record");
6296     }
6297     ovs_mutex_unlock(&ofproto->vsp_mutex);
6298 }
6299
6300 static odp_port_t
6301 ofp_port_to_odp_port(const struct ofproto_dpif *ofproto, ofp_port_t ofp_port)
6302 {
6303     const struct ofport_dpif *ofport = get_ofp_port(ofproto, ofp_port);
6304     return ofport ? ofport->odp_port : ODPP_NONE;
6305 }
6306
6307 struct ofport_dpif *
6308 odp_port_to_ofport(const struct dpif_backer *backer, odp_port_t odp_port)
6309 {
6310     struct ofport_dpif *port;
6311
6312     ovs_rwlock_rdlock(&backer->odp_to_ofport_lock);
6313     HMAP_FOR_EACH_IN_BUCKET (port, odp_port_node, hash_odp_port(odp_port),
6314                              &backer->odp_to_ofport_map) {
6315         if (port->odp_port == odp_port) {
6316             ovs_rwlock_unlock(&backer->odp_to_ofport_lock);
6317             return port;
6318         }
6319     }
6320
6321     ovs_rwlock_unlock(&backer->odp_to_ofport_lock);
6322     return NULL;
6323 }
6324
6325 static ofp_port_t
6326 odp_port_to_ofp_port(const struct ofproto_dpif *ofproto, odp_port_t odp_port)
6327 {
6328     struct ofport_dpif *port;
6329
6330     port = odp_port_to_ofport(ofproto->backer, odp_port);
6331     if (port && &ofproto->up == port->up.ofproto) {
6332         return port->up.ofp_port;
6333     } else {
6334         return OFPP_NONE;
6335     }
6336 }
6337
6338 /* Compute exponentially weighted moving average, adding 'new' as the newest,
6339  * most heavily weighted element.  'base' designates the rate of decay: after
6340  * 'base' further updates, 'new''s weight in the EWMA decays to about 1/e
6341  * (about .37). */
6342 static void
6343 exp_mavg(double *avg, int base, double new)
6344 {
6345     *avg = (*avg * (base - 1) + new) / base;
6346 }
6347
6348 static void
6349 update_moving_averages(struct dpif_backer *backer)
6350 {
6351     const int min_ms = 60 * 1000; /* milliseconds in one minute. */
6352     long long int minutes = (time_msec() - backer->created) / min_ms;
6353
6354     if (minutes > 0) {
6355         backer->lifetime.add_rate = (double) backer->total_subfacet_add_count
6356             / minutes;
6357         backer->lifetime.del_rate = (double) backer->total_subfacet_del_count
6358             / minutes;
6359     } else {
6360         backer->lifetime.add_rate = 0.0;
6361         backer->lifetime.del_rate = 0.0;
6362     }
6363
6364     /* Update hourly averages on the minute boundaries. */
6365     if (time_msec() - backer->last_minute >= min_ms) {
6366         exp_mavg(&backer->hourly.add_rate, 60, backer->subfacet_add_count);
6367         exp_mavg(&backer->hourly.del_rate, 60, backer->subfacet_del_count);
6368
6369         /* Update daily averages on the hour boundaries. */
6370         if ((backer->last_minute - backer->created) / min_ms % 60 == 59) {
6371             exp_mavg(&backer->daily.add_rate, 24, backer->hourly.add_rate);
6372             exp_mavg(&backer->daily.del_rate, 24, backer->hourly.del_rate);
6373         }
6374
6375         backer->total_subfacet_add_count += backer->subfacet_add_count;
6376         backer->total_subfacet_del_count += backer->subfacet_del_count;
6377         backer->subfacet_add_count = 0;
6378         backer->subfacet_del_count = 0;
6379         backer->last_minute += min_ms;
6380     }
6381 }
6382
6383 const struct ofproto_class ofproto_dpif_class = {
6384     init,
6385     enumerate_types,
6386     enumerate_names,
6387     del,
6388     port_open_type,
6389     type_run,
6390     type_run_fast,
6391     type_wait,
6392     alloc,
6393     construct,
6394     destruct,
6395     dealloc,
6396     run,
6397     run_fast,
6398     wait,
6399     get_memory_usage,
6400     flush,
6401     get_features,
6402     get_tables,
6403     port_alloc,
6404     port_construct,
6405     port_destruct,
6406     port_dealloc,
6407     port_modified,
6408     port_reconfigured,
6409     port_query_by_name,
6410     port_add,
6411     port_del,
6412     port_get_stats,
6413     port_dump_start,
6414     port_dump_next,
6415     port_dump_done,
6416     port_poll,
6417     port_poll_wait,
6418     port_is_lacp_current,
6419     NULL,                       /* rule_choose_table */
6420     rule_alloc,
6421     rule_construct,
6422     rule_insert,
6423     rule_delete,
6424     rule_destruct,
6425     rule_dealloc,
6426     rule_get_stats,
6427     rule_execute,
6428     rule_modify_actions,
6429     set_frag_handling,
6430     packet_out,
6431     set_netflow,
6432     get_netflow_ids,
6433     set_sflow,
6434     set_ipfix,
6435     set_cfm,
6436     get_cfm_status,
6437     set_bfd,
6438     get_bfd_status,
6439     set_stp,
6440     get_stp_status,
6441     set_stp_port,
6442     get_stp_port_status,
6443     set_queues,
6444     bundle_set,
6445     bundle_remove,
6446     mirror_set__,
6447     mirror_get_stats__,
6448     set_flood_vlans,
6449     is_mirror_output_bundle,
6450     forward_bpdu_changed,
6451     set_mac_table_config,
6452     set_realdev,
6453     NULL,                       /* meter_get_features */
6454     NULL,                       /* meter_set */
6455     NULL,                       /* meter_get */
6456     NULL,                       /* meter_del */
6457     NULL,                       /* group_alloc */
6458     NULL,                       /* group_construct */
6459     NULL,                       /* group_destruct */
6460     NULL,                       /* group_dealloc */
6461     NULL,                       /* group_modify */
6462     NULL,                       /* group_get_stats */
6463 };