ofproto: Do straightforward removal of asynchronous flow operations.
[cascardo/ovs.git] / ofproto / ofproto-dpif.c
1 /*
2  * Copyright (c) 2009, 2010, 2011, 2012, 2013, 2014 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 "connectivity.h"
29 #include "connmgr.h"
30 #include "coverage.h"
31 #include "cfm.h"
32 #include "dpif.h"
33 #include "dynamic-string.h"
34 #include "fail-open.h"
35 #include "guarded-list.h"
36 #include "hmapx.h"
37 #include "lacp.h"
38 #include "learn.h"
39 #include "mac-learning.h"
40 #include "meta-flow.h"
41 #include "multipath.h"
42 #include "netdev-vport.h"
43 #include "netdev.h"
44 #include "netlink.h"
45 #include "nx-match.h"
46 #include "odp-util.h"
47 #include "odp-execute.h"
48 #include "ofp-util.h"
49 #include "ofpbuf.h"
50 #include "ofp-actions.h"
51 #include "ofp-parse.h"
52 #include "ofp-print.h"
53 #include "ofproto-dpif-ipfix.h"
54 #include "ofproto-dpif-mirror.h"
55 #include "ofproto-dpif-monitor.h"
56 #include "ofproto-dpif-rid.h"
57 #include "ofproto-dpif-sflow.h"
58 #include "ofproto-dpif-upcall.h"
59 #include "ofproto-dpif-xlate.h"
60 #include "poll-loop.h"
61 #include "seq.h"
62 #include "simap.h"
63 #include "smap.h"
64 #include "timer.h"
65 #include "tunnel.h"
66 #include "unaligned.h"
67 #include "unixctl.h"
68 #include "vlan-bitmap.h"
69 #include "vlog.h"
70
71 VLOG_DEFINE_THIS_MODULE(ofproto_dpif);
72
73 COVERAGE_DEFINE(ofproto_dpif_expired);
74 COVERAGE_DEFINE(packet_in_overflow);
75
76 /* No bfd/cfm status change. */
77 #define NO_STATUS_CHANGE -1
78
79 struct flow_miss;
80
81 struct rule_dpif {
82     struct rule up;
83
84     /* These statistics:
85      *
86      *   - Do include packets and bytes from datapath flows which have not
87      *   recently been processed by a revalidator. */
88     struct ovs_mutex stats_mutex;
89     struct dpif_flow_stats stats OVS_GUARDED;
90
91     /* If non-zero then the recirculation id that has
92      * been allocated for use with this rule.
93      * The recirculation id and associated internal flow should
94      * be freed when the rule is freed */
95     uint32_t recirc_id;
96 };
97
98 /* RULE_CAST() depends on this. */
99 BUILD_ASSERT_DECL(offsetof(struct rule_dpif, up) == 0);
100
101 static void rule_get_stats(struct rule *, uint64_t *packets, uint64_t *bytes,
102                            long long int *used);
103 static struct rule_dpif *rule_dpif_cast(const struct rule *);
104 static void rule_expire(struct rule_dpif *);
105
106 struct group_dpif {
107     struct ofgroup up;
108
109     /* These statistics:
110      *
111      *   - Do include packets and bytes from datapath flows which have not
112      *   recently been processed by a revalidator. */
113     struct ovs_mutex stats_mutex;
114     uint64_t packet_count OVS_GUARDED;  /* Number of packets received. */
115     uint64_t byte_count OVS_GUARDED;    /* Number of bytes received. */
116 };
117
118 struct ofbundle {
119     struct hmap_node hmap_node; /* In struct ofproto's "bundles" hmap. */
120     struct ofproto_dpif *ofproto; /* Owning ofproto. */
121     void *aux;                  /* Key supplied by ofproto's client. */
122     char *name;                 /* Identifier for log messages. */
123
124     /* Configuration. */
125     struct list ports;          /* Contains "struct ofport"s. */
126     enum port_vlan_mode vlan_mode; /* VLAN mode */
127     int vlan;                   /* -1=trunk port, else a 12-bit VLAN ID. */
128     unsigned long *trunks;      /* Bitmap of trunked VLANs, if 'vlan' == -1.
129                                  * NULL if all VLANs are trunked. */
130     struct lacp *lacp;          /* LACP if LACP is enabled, otherwise NULL. */
131     struct bond *bond;          /* Nonnull iff more than one port. */
132     bool use_priority_tags;     /* Use 802.1p tag for frames in VLAN 0? */
133
134     /* Status. */
135     bool floodable;          /* True if no port has OFPUTIL_PC_NO_FLOOD set. */
136 };
137
138 static void bundle_remove(struct ofport *);
139 static void bundle_update(struct ofbundle *);
140 static void bundle_destroy(struct ofbundle *);
141 static void bundle_del_port(struct ofport_dpif *);
142 static void bundle_run(struct ofbundle *);
143 static void bundle_wait(struct ofbundle *);
144
145 static void stp_run(struct ofproto_dpif *ofproto);
146 static void stp_wait(struct ofproto_dpif *ofproto);
147 static int set_stp_port(struct ofport *,
148                         const struct ofproto_port_stp_settings *);
149
150 struct ofport_dpif {
151     struct hmap_node odp_port_node; /* In dpif_backer's "odp_to_ofport_map". */
152     struct ofport up;
153
154     odp_port_t odp_port;
155     struct ofbundle *bundle;    /* Bundle that contains this port, if any. */
156     struct list bundle_node;    /* In struct ofbundle's "ports" list. */
157     struct cfm *cfm;            /* Connectivity Fault Management, if any. */
158     struct bfd *bfd;            /* BFD, if any. */
159     bool may_enable;            /* May be enabled in bonds. */
160     bool is_tunnel;             /* This port is a tunnel. */
161     bool is_layer3;             /* This is a layer 3 port. */
162     long long int carrier_seq;  /* Carrier status changes. */
163     struct ofport_dpif *peer;   /* Peer if patch port. */
164
165     /* Spanning tree. */
166     struct stp_port *stp_port;  /* Spanning Tree Protocol, if any. */
167     enum stp_state stp_state;   /* Always STP_DISABLED if STP not in use. */
168     long long int stp_state_entered;
169
170     /* Queue to DSCP mapping. */
171     struct ofproto_port_queue *qdscp;
172     size_t n_qdscp;
173
174     /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
175      *
176      * This is deprecated.  It is only for compatibility with broken device
177      * drivers in old versions of Linux that do not properly support VLANs when
178      * VLAN devices are not used.  When broken device drivers are no longer in
179      * widespread use, we will delete these interfaces. */
180     ofp_port_t realdev_ofp_port;
181     int vlandev_vid;
182 };
183
184 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
185  *
186  * This is deprecated.  It is only for compatibility with broken device drivers
187  * in old versions of Linux that do not properly support VLANs when VLAN
188  * devices are not used.  When broken device drivers are no longer in
189  * widespread use, we will delete these interfaces. */
190 struct vlan_splinter {
191     struct hmap_node realdev_vid_node;
192     struct hmap_node vlandev_node;
193     ofp_port_t realdev_ofp_port;
194     ofp_port_t vlandev_ofp_port;
195     int vid;
196 };
197
198 static void vsp_remove(struct ofport_dpif *);
199 static void vsp_add(struct ofport_dpif *, ofp_port_t realdev_ofp_port, int vid);
200
201 static odp_port_t ofp_port_to_odp_port(const struct ofproto_dpif *,
202                                        ofp_port_t);
203
204 static ofp_port_t odp_port_to_ofp_port(const struct ofproto_dpif *,
205                                        odp_port_t);
206
207 static struct ofport_dpif *
208 ofport_dpif_cast(const struct ofport *ofport)
209 {
210     return ofport ? CONTAINER_OF(ofport, struct ofport_dpif, up) : NULL;
211 }
212
213 static void port_run(struct ofport_dpif *);
214 static int set_bfd(struct ofport *, const struct smap *);
215 static int set_cfm(struct ofport *, const struct cfm_settings *);
216 static void ofport_update_peer(struct ofport_dpif *);
217
218 /* Reasons that we might need to revalidate every datapath flow, and
219  * corresponding coverage counters.
220  *
221  * A value of 0 means that there is no need to revalidate.
222  *
223  * It would be nice to have some cleaner way to integrate with coverage
224  * counters, but with only a few reasons I guess this is good enough for
225  * now. */
226 enum revalidate_reason {
227     REV_RECONFIGURE = 1,       /* Switch configuration changed. */
228     REV_STP,                   /* Spanning tree protocol port status change. */
229     REV_BOND,                  /* Bonding changed. */
230     REV_PORT_TOGGLED,          /* Port enabled or disabled by CFM, LACP, ...*/
231     REV_FLOW_TABLE,            /* Flow table changed. */
232     REV_MAC_LEARNING,          /* Mac learning changed. */
233 };
234 COVERAGE_DEFINE(rev_reconfigure);
235 COVERAGE_DEFINE(rev_stp);
236 COVERAGE_DEFINE(rev_bond);
237 COVERAGE_DEFINE(rev_port_toggled);
238 COVERAGE_DEFINE(rev_flow_table);
239 COVERAGE_DEFINE(rev_mac_learning);
240
241 /* All datapaths of a given type share a single dpif backer instance. */
242 struct dpif_backer {
243     char *type;
244     int refcount;
245     struct dpif *dpif;
246     struct udpif *udpif;
247
248     struct ovs_rwlock odp_to_ofport_lock;
249     struct hmap odp_to_ofport_map OVS_GUARDED; /* Contains "struct ofport"s. */
250
251     struct simap tnl_backers;      /* Set of dpif ports backing tunnels. */
252
253     enum revalidate_reason need_revalidate; /* Revalidate all flows. */
254
255     bool recv_set_enable; /* Enables or disables receiving packets. */
256
257     /* Recirculation. */
258     struct recirc_id_pool *rid_pool;       /* Recirculation ID pool. */
259     bool enable_recirc;   /* True if the datapath supports recirculation */
260
261     /* True if the datapath supports variable-length
262      * OVS_USERSPACE_ATTR_USERDATA in OVS_ACTION_ATTR_USERSPACE actions.
263      * False if the datapath supports only 8-byte (or shorter) userdata. */
264     bool variable_length_userdata;
265
266     /* Maximum number of MPLS label stack entries that the datapath supports
267      * in a match */
268     size_t max_mpls_depth;
269 };
270
271 /* All existing ofproto_backer instances, indexed by ofproto->up.type. */
272 static struct shash all_dpif_backers = SHASH_INITIALIZER(&all_dpif_backers);
273
274 struct ofproto_dpif {
275     struct hmap_node all_ofproto_dpifs_node; /* In 'all_ofproto_dpifs'. */
276     struct ofproto up;
277     struct dpif_backer *backer;
278
279     uint64_t dump_seq; /* Last read of udpif_dump_seq(). */
280
281     /* Special OpenFlow rules. */
282     struct rule_dpif *miss_rule; /* Sends flow table misses to controller. */
283     struct rule_dpif *no_packet_in_rule; /* Drops flow table misses. */
284     struct rule_dpif *drop_frags_rule; /* Used in OFPC_FRAG_DROP mode. */
285
286     /* Bridging. */
287     struct netflow *netflow;
288     struct dpif_sflow *sflow;
289     struct dpif_ipfix *ipfix;
290     struct hmap bundles;        /* Contains "struct ofbundle"s. */
291     struct mac_learning *ml;
292     bool has_bonded_bundles;
293     bool lacp_enabled;
294     struct mbridge *mbridge;
295
296     struct ovs_mutex stats_mutex;
297     struct netdev_stats stats OVS_GUARDED; /* To account packets generated and
298                                             * consumed in userspace. */
299
300     /* Spanning tree. */
301     struct stp *stp;
302     long long int stp_last_tick;
303
304     /* VLAN splinters. */
305     struct ovs_mutex vsp_mutex;
306     struct hmap realdev_vid_map OVS_GUARDED; /* (realdev,vid) -> vlandev. */
307     struct hmap vlandev_map OVS_GUARDED;     /* vlandev -> (realdev,vid). */
308
309     /* Ports. */
310     struct sset ports;             /* Set of standard port names. */
311     struct sset ghost_ports;       /* Ports with no datapath port. */
312     struct sset port_poll_set;     /* Queued names for port_poll() reply. */
313     int port_poll_errno;           /* Last errno for port_poll() reply. */
314     uint64_t change_seq;           /* Connectivity status changes. */
315
316     /* Work queues. */
317     struct guarded_list pins;      /* Contains "struct ofputil_packet_in"s. */
318     struct seq *pins_seq;          /* For notifying 'pins' reception. */
319     uint64_t pins_seqno;
320 };
321
322 /* All existing ofproto_dpif instances, indexed by ->up.name. */
323 static struct hmap all_ofproto_dpifs = HMAP_INITIALIZER(&all_ofproto_dpifs);
324
325 static void ofproto_dpif_unixctl_init(void);
326
327 static inline struct ofproto_dpif *
328 ofproto_dpif_cast(const struct ofproto *ofproto)
329 {
330     ovs_assert(ofproto->ofproto_class == &ofproto_dpif_class);
331     return CONTAINER_OF(ofproto, struct ofproto_dpif, up);
332 }
333
334 size_t
335 ofproto_dpif_get_max_mpls_depth(const struct ofproto_dpif *ofproto)
336 {
337     return ofproto->backer->max_mpls_depth;
338 }
339
340 bool
341 ofproto_dpif_get_enable_recirc(const struct ofproto_dpif *ofproto)
342 {
343     return ofproto->backer->enable_recirc;
344 }
345
346 static struct ofport_dpif *get_ofp_port(const struct ofproto_dpif *ofproto,
347                                         ofp_port_t ofp_port);
348 static void ofproto_trace(struct ofproto_dpif *, struct flow *,
349                           const struct ofpbuf *packet,
350                           const struct ofpact[], size_t ofpacts_len,
351                           struct ds *);
352
353 /* Global variables. */
354 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
355
356 /* Initial mappings of port to bridge mappings. */
357 static struct shash init_ofp_ports = SHASH_INITIALIZER(&init_ofp_ports);
358
359 /* Executes 'fm'.  The caller retains ownership of 'fm' and everything in
360  * it. */
361 void
362 ofproto_dpif_flow_mod(struct ofproto_dpif *ofproto,
363                       struct ofputil_flow_mod *fm)
364 {
365     ofproto_flow_mod(&ofproto->up, fm);
366 }
367
368 /* Appends 'pin' to the queue of "packet ins" to be sent to the controller.
369  * Takes ownership of 'pin' and pin->packet. */
370 void
371 ofproto_dpif_send_packet_in(struct ofproto_dpif *ofproto,
372                             struct ofproto_packet_in *pin)
373 {
374     if (!guarded_list_push_back(&ofproto->pins, &pin->list_node, 1024)) {
375         COVERAGE_INC(packet_in_overflow);
376         free(CONST_CAST(void *, pin->up.packet));
377         free(pin);
378     }
379
380     /* Wakes up main thread for packet-in I/O. */
381     seq_change(ofproto->pins_seq);
382 }
383
384 /* The default "table-miss" behaviour for OpenFlow1.3+ is to drop the
385  * packet rather than to send the packet to the controller.
386  *
387  * This function returns false to indicate that a packet_in message
388  * for a "table-miss" should be sent to at least one controller.
389  * False otherwise. */
390 bool
391 ofproto_dpif_wants_packet_in_on_miss(struct ofproto_dpif *ofproto)
392 {
393     return connmgr_wants_packet_in_on_miss(ofproto->up.connmgr);
394 }
395 \f
396 /* Factory functions. */
397
398 static void
399 init(const struct shash *iface_hints)
400 {
401     struct shash_node *node;
402
403     /* Make a local copy, since we don't own 'iface_hints' elements. */
404     SHASH_FOR_EACH(node, iface_hints) {
405         const struct iface_hint *orig_hint = node->data;
406         struct iface_hint *new_hint = xmalloc(sizeof *new_hint);
407
408         new_hint->br_name = xstrdup(orig_hint->br_name);
409         new_hint->br_type = xstrdup(orig_hint->br_type);
410         new_hint->ofp_port = orig_hint->ofp_port;
411
412         shash_add(&init_ofp_ports, node->name, new_hint);
413     }
414 }
415
416 static void
417 enumerate_types(struct sset *types)
418 {
419     dp_enumerate_types(types);
420 }
421
422 static int
423 enumerate_names(const char *type, struct sset *names)
424 {
425     struct ofproto_dpif *ofproto;
426
427     sset_clear(names);
428     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
429         if (strcmp(type, ofproto->up.type)) {
430             continue;
431         }
432         sset_add(names, ofproto->up.name);
433     }
434
435     return 0;
436 }
437
438 static int
439 del(const char *type, const char *name)
440 {
441     struct dpif *dpif;
442     int error;
443
444     error = dpif_open(name, type, &dpif);
445     if (!error) {
446         error = dpif_delete(dpif);
447         dpif_close(dpif);
448     }
449     return error;
450 }
451 \f
452 static const char *
453 port_open_type(const char *datapath_type, const char *port_type)
454 {
455     return dpif_port_open_type(datapath_type, port_type);
456 }
457
458 /* Type functions. */
459
460 static void process_dpif_port_changes(struct dpif_backer *);
461 static void process_dpif_all_ports_changed(struct dpif_backer *);
462 static void process_dpif_port_change(struct dpif_backer *,
463                                      const char *devname);
464 static void process_dpif_port_error(struct dpif_backer *, int error);
465
466 static struct ofproto_dpif *
467 lookup_ofproto_dpif_by_port_name(const char *name)
468 {
469     struct ofproto_dpif *ofproto;
470
471     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
472         if (sset_contains(&ofproto->ports, name)) {
473             return ofproto;
474         }
475     }
476
477     return NULL;
478 }
479
480 static int
481 type_run(const char *type)
482 {
483     struct dpif_backer *backer;
484
485     backer = shash_find_data(&all_dpif_backers, type);
486     if (!backer) {
487         /* This is not necessarily a problem, since backers are only
488          * created on demand. */
489         return 0;
490     }
491
492     dpif_run(backer->dpif);
493
494     /* If vswitchd started with other_config:flow_restore_wait set as "true",
495      * and the configuration has now changed to "false", enable receiving
496      * packets from the datapath. */
497     if (!backer->recv_set_enable && !ofproto_get_flow_restore_wait()) {
498         int error;
499
500         backer->recv_set_enable = true;
501
502         error = dpif_recv_set(backer->dpif, backer->recv_set_enable);
503         if (error) {
504             VLOG_ERR("Failed to enable receiving packets in dpif.");
505             return error;
506         }
507         dpif_flow_flush(backer->dpif);
508         backer->need_revalidate = REV_RECONFIGURE;
509     }
510
511     if (backer->recv_set_enable) {
512         udpif_set_threads(backer->udpif, n_handlers, n_revalidators);
513     }
514
515     if (backer->need_revalidate) {
516         struct ofproto_dpif *ofproto;
517         struct simap_node *node;
518         struct simap tmp_backers;
519
520         /* Handle tunnel garbage collection. */
521         simap_init(&tmp_backers);
522         simap_swap(&backer->tnl_backers, &tmp_backers);
523
524         HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
525             struct ofport_dpif *iter;
526
527             if (backer != ofproto->backer) {
528                 continue;
529             }
530
531             HMAP_FOR_EACH (iter, up.hmap_node, &ofproto->up.ports) {
532                 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
533                 const char *dp_port;
534
535                 if (!iter->is_tunnel) {
536                     continue;
537                 }
538
539                 dp_port = netdev_vport_get_dpif_port(iter->up.netdev,
540                                                      namebuf, sizeof namebuf);
541                 node = simap_find(&tmp_backers, dp_port);
542                 if (node) {
543                     simap_put(&backer->tnl_backers, dp_port, node->data);
544                     simap_delete(&tmp_backers, node);
545                     node = simap_find(&backer->tnl_backers, dp_port);
546                 } else {
547                     node = simap_find(&backer->tnl_backers, dp_port);
548                     if (!node) {
549                         odp_port_t odp_port = ODPP_NONE;
550
551                         if (!dpif_port_add(backer->dpif, iter->up.netdev,
552                                            &odp_port)) {
553                             simap_put(&backer->tnl_backers, dp_port,
554                                       odp_to_u32(odp_port));
555                             node = simap_find(&backer->tnl_backers, dp_port);
556                         }
557                     }
558                 }
559
560                 iter->odp_port = node ? u32_to_odp(node->data) : ODPP_NONE;
561                 if (tnl_port_reconfigure(iter, iter->up.netdev,
562                                          iter->odp_port)) {
563                     backer->need_revalidate = REV_RECONFIGURE;
564                 }
565             }
566         }
567
568         SIMAP_FOR_EACH (node, &tmp_backers) {
569             dpif_port_del(backer->dpif, u32_to_odp(node->data));
570         }
571         simap_destroy(&tmp_backers);
572
573         switch (backer->need_revalidate) {
574         case REV_RECONFIGURE:    COVERAGE_INC(rev_reconfigure);    break;
575         case REV_STP:            COVERAGE_INC(rev_stp);            break;
576         case REV_BOND:           COVERAGE_INC(rev_bond);           break;
577         case REV_PORT_TOGGLED:   COVERAGE_INC(rev_port_toggled);   break;
578         case REV_FLOW_TABLE:     COVERAGE_INC(rev_flow_table);     break;
579         case REV_MAC_LEARNING:   COVERAGE_INC(rev_mac_learning);   break;
580         }
581         backer->need_revalidate = 0;
582
583         HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
584             struct ofport_dpif *ofport;
585             struct ofbundle *bundle;
586
587             if (ofproto->backer != backer) {
588                 continue;
589             }
590
591             xlate_txn_start();
592             xlate_ofproto_set(ofproto, ofproto->up.name,
593                               ofproto->backer->dpif, ofproto->miss_rule,
594                               ofproto->no_packet_in_rule, ofproto->ml,
595                               ofproto->stp, ofproto->mbridge,
596                               ofproto->sflow, ofproto->ipfix,
597                               ofproto->netflow, ofproto->up.frag_handling,
598                               ofproto->up.forward_bpdu,
599                               connmgr_has_in_band(ofproto->up.connmgr),
600                               ofproto->backer->enable_recirc,
601                               ofproto->backer->variable_length_userdata,
602                               ofproto->backer->max_mpls_depth);
603
604             HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
605                 xlate_bundle_set(ofproto, bundle, bundle->name,
606                                  bundle->vlan_mode, bundle->vlan,
607                                  bundle->trunks, bundle->use_priority_tags,
608                                  bundle->bond, bundle->lacp,
609                                  bundle->floodable);
610             }
611
612             HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
613                 int stp_port = ofport->stp_port
614                     ? stp_port_no(ofport->stp_port)
615                     : -1;
616                 xlate_ofport_set(ofproto, ofport->bundle, ofport,
617                                  ofport->up.ofp_port, ofport->odp_port,
618                                  ofport->up.netdev, ofport->cfm,
619                                  ofport->bfd, ofport->peer, stp_port,
620                                  ofport->qdscp, ofport->n_qdscp,
621                                  ofport->up.pp.config, ofport->up.pp.state,
622                                  ofport->is_tunnel, ofport->may_enable);
623             }
624             xlate_txn_commit();
625         }
626
627         udpif_revalidate(backer->udpif);
628     }
629
630     process_dpif_port_changes(backer);
631
632     return 0;
633 }
634
635 /* Check for and handle port changes in 'backer''s dpif. */
636 static void
637 process_dpif_port_changes(struct dpif_backer *backer)
638 {
639     for (;;) {
640         char *devname;
641         int error;
642
643         error = dpif_port_poll(backer->dpif, &devname);
644         switch (error) {
645         case EAGAIN:
646             return;
647
648         case ENOBUFS:
649             process_dpif_all_ports_changed(backer);
650             break;
651
652         case 0:
653             process_dpif_port_change(backer, devname);
654             free(devname);
655             break;
656
657         default:
658             process_dpif_port_error(backer, error);
659             break;
660         }
661     }
662 }
663
664 static void
665 process_dpif_all_ports_changed(struct dpif_backer *backer)
666 {
667     struct ofproto_dpif *ofproto;
668     struct dpif_port dpif_port;
669     struct dpif_port_dump dump;
670     struct sset devnames;
671     const char *devname;
672
673     sset_init(&devnames);
674     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
675         if (ofproto->backer == backer) {
676             struct ofport *ofport;
677
678             HMAP_FOR_EACH (ofport, hmap_node, &ofproto->up.ports) {
679                 sset_add(&devnames, netdev_get_name(ofport->netdev));
680             }
681         }
682     }
683     DPIF_PORT_FOR_EACH (&dpif_port, &dump, backer->dpif) {
684         sset_add(&devnames, dpif_port.name);
685     }
686
687     SSET_FOR_EACH (devname, &devnames) {
688         process_dpif_port_change(backer, devname);
689     }
690     sset_destroy(&devnames);
691 }
692
693 static void
694 process_dpif_port_change(struct dpif_backer *backer, const char *devname)
695 {
696     struct ofproto_dpif *ofproto;
697     struct dpif_port port;
698
699     /* Don't report on the datapath's device. */
700     if (!strcmp(devname, dpif_base_name(backer->dpif))) {
701         return;
702     }
703
704     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node,
705                    &all_ofproto_dpifs) {
706         if (simap_contains(&ofproto->backer->tnl_backers, devname)) {
707             return;
708         }
709     }
710
711     ofproto = lookup_ofproto_dpif_by_port_name(devname);
712     if (dpif_port_query_by_name(backer->dpif, devname, &port)) {
713         /* The port was removed.  If we know the datapath,
714          * report it through poll_set().  If we don't, it may be
715          * notifying us of a removal we initiated, so ignore it.
716          * If there's a pending ENOBUFS, let it stand, since
717          * everything will be reevaluated. */
718         if (ofproto && ofproto->port_poll_errno != ENOBUFS) {
719             sset_add(&ofproto->port_poll_set, devname);
720             ofproto->port_poll_errno = 0;
721         }
722     } else if (!ofproto) {
723         /* The port was added, but we don't know with which
724          * ofproto we should associate it.  Delete it. */
725         dpif_port_del(backer->dpif, port.port_no);
726     } else {
727         struct ofport_dpif *ofport;
728
729         ofport = ofport_dpif_cast(shash_find_data(
730                                       &ofproto->up.port_by_name, devname));
731         if (ofport
732             && ofport->odp_port != port.port_no
733             && !odp_port_to_ofport(backer, port.port_no))
734         {
735             /* 'ofport''s datapath port number has changed from
736              * 'ofport->odp_port' to 'port.port_no'.  Update our internal data
737              * structures to match. */
738             ovs_rwlock_wrlock(&backer->odp_to_ofport_lock);
739             hmap_remove(&backer->odp_to_ofport_map, &ofport->odp_port_node);
740             ofport->odp_port = port.port_no;
741             hmap_insert(&backer->odp_to_ofport_map, &ofport->odp_port_node,
742                         hash_odp_port(port.port_no));
743             ovs_rwlock_unlock(&backer->odp_to_ofport_lock);
744             backer->need_revalidate = REV_RECONFIGURE;
745         }
746     }
747     dpif_port_destroy(&port);
748 }
749
750 /* Propagate 'error' to all ofprotos based on 'backer'. */
751 static void
752 process_dpif_port_error(struct dpif_backer *backer, int error)
753 {
754     struct ofproto_dpif *ofproto;
755
756     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
757         if (ofproto->backer == backer) {
758             sset_clear(&ofproto->port_poll_set);
759             ofproto->port_poll_errno = error;
760         }
761     }
762 }
763
764 static void
765 type_wait(const char *type)
766 {
767     struct dpif_backer *backer;
768
769     backer = shash_find_data(&all_dpif_backers, type);
770     if (!backer) {
771         /* This is not necessarily a problem, since backers are only
772          * created on demand. */
773         return;
774     }
775
776     dpif_wait(backer->dpif);
777 }
778 \f
779 /* Basic life-cycle. */
780
781 static int add_internal_flows(struct ofproto_dpif *);
782
783 static struct ofproto *
784 alloc(void)
785 {
786     struct ofproto_dpif *ofproto = xmalloc(sizeof *ofproto);
787     return &ofproto->up;
788 }
789
790 static void
791 dealloc(struct ofproto *ofproto_)
792 {
793     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
794     free(ofproto);
795 }
796
797 static void
798 close_dpif_backer(struct dpif_backer *backer)
799 {
800     ovs_assert(backer->refcount > 0);
801
802     if (--backer->refcount) {
803         return;
804     }
805
806     udpif_destroy(backer->udpif);
807
808     simap_destroy(&backer->tnl_backers);
809     ovs_rwlock_destroy(&backer->odp_to_ofport_lock);
810     hmap_destroy(&backer->odp_to_ofport_map);
811     shash_find_and_delete(&all_dpif_backers, backer->type);
812     recirc_id_pool_destroy(backer->rid_pool);
813     free(backer->type);
814     dpif_close(backer->dpif);
815     free(backer);
816 }
817
818 /* Datapath port slated for removal from datapath. */
819 struct odp_garbage {
820     struct list list_node;
821     odp_port_t odp_port;
822 };
823
824 static bool check_variable_length_userdata(struct dpif_backer *backer);
825 static size_t check_max_mpls_depth(struct dpif_backer *backer);
826 static bool check_recirc(struct dpif_backer *backer);
827
828 static int
829 open_dpif_backer(const char *type, struct dpif_backer **backerp)
830 {
831     struct dpif_backer *backer;
832     struct dpif_port_dump port_dump;
833     struct dpif_port port;
834     struct shash_node *node;
835     struct list garbage_list;
836     struct odp_garbage *garbage, *next;
837
838     struct sset names;
839     char *backer_name;
840     const char *name;
841     int error;
842
843     backer = shash_find_data(&all_dpif_backers, type);
844     if (backer) {
845         backer->refcount++;
846         *backerp = backer;
847         return 0;
848     }
849
850     backer_name = xasprintf("ovs-%s", type);
851
852     /* Remove any existing datapaths, since we assume we're the only
853      * userspace controlling the datapath. */
854     sset_init(&names);
855     dp_enumerate_names(type, &names);
856     SSET_FOR_EACH(name, &names) {
857         struct dpif *old_dpif;
858
859         /* Don't remove our backer if it exists. */
860         if (!strcmp(name, backer_name)) {
861             continue;
862         }
863
864         if (dpif_open(name, type, &old_dpif)) {
865             VLOG_WARN("couldn't open old datapath %s to remove it", name);
866         } else {
867             dpif_delete(old_dpif);
868             dpif_close(old_dpif);
869         }
870     }
871     sset_destroy(&names);
872
873     backer = xmalloc(sizeof *backer);
874
875     error = dpif_create_and_open(backer_name, type, &backer->dpif);
876     free(backer_name);
877     if (error) {
878         VLOG_ERR("failed to open datapath of type %s: %s", type,
879                  ovs_strerror(error));
880         free(backer);
881         return error;
882     }
883     backer->udpif = udpif_create(backer, backer->dpif);
884
885     backer->type = xstrdup(type);
886     backer->refcount = 1;
887     hmap_init(&backer->odp_to_ofport_map);
888     ovs_rwlock_init(&backer->odp_to_ofport_lock);
889     backer->need_revalidate = 0;
890     simap_init(&backer->tnl_backers);
891     backer->recv_set_enable = !ofproto_get_flow_restore_wait();
892     *backerp = backer;
893
894     if (backer->recv_set_enable) {
895         dpif_flow_flush(backer->dpif);
896     }
897
898     /* Loop through the ports already on the datapath and remove any
899      * that we don't need anymore. */
900     list_init(&garbage_list);
901     dpif_port_dump_start(&port_dump, backer->dpif);
902     while (dpif_port_dump_next(&port_dump, &port)) {
903         node = shash_find(&init_ofp_ports, port.name);
904         if (!node && strcmp(port.name, dpif_base_name(backer->dpif))) {
905             garbage = xmalloc(sizeof *garbage);
906             garbage->odp_port = port.port_no;
907             list_push_front(&garbage_list, &garbage->list_node);
908         }
909     }
910     dpif_port_dump_done(&port_dump);
911
912     LIST_FOR_EACH_SAFE (garbage, next, list_node, &garbage_list) {
913         dpif_port_del(backer->dpif, garbage->odp_port);
914         list_remove(&garbage->list_node);
915         free(garbage);
916     }
917
918     shash_add(&all_dpif_backers, type, backer);
919
920     error = dpif_recv_set(backer->dpif, backer->recv_set_enable);
921     if (error) {
922         VLOG_ERR("failed to listen on datapath of type %s: %s",
923                  type, ovs_strerror(error));
924         close_dpif_backer(backer);
925         return error;
926     }
927     backer->enable_recirc = check_recirc(backer);
928     backer->variable_length_userdata = check_variable_length_userdata(backer);
929     backer->max_mpls_depth = check_max_mpls_depth(backer);
930     backer->rid_pool = recirc_id_pool_create();
931
932     if (backer->recv_set_enable) {
933         udpif_set_threads(backer->udpif, n_handlers, n_revalidators);
934     }
935
936     return error;
937 }
938
939 /* Tests whether 'backer''s datapath supports recirculation.  Only newer
940  * datapaths support OVS_KEY_ATTR_RECIRC_ID in keys.  We need to disable some
941  * features on older datapaths that don't support this feature.
942  *
943  * Returns false if 'backer' definitely does not support recirculation, true if
944  * it seems to support recirculation or if at least the error we get is
945  * ambiguous. */
946 static bool
947 check_recirc(struct dpif_backer *backer)
948 {
949     struct flow flow;
950     struct odputil_keybuf keybuf;
951     struct ofpbuf key;
952     int error;
953     bool enable_recirc = false;
954
955     memset(&flow, 0, sizeof flow);
956     flow.recirc_id = 1;
957     flow.dp_hash = 1;
958
959     ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
960     odp_flow_key_from_flow(&key, &flow, NULL, 0, true);
961
962     error = dpif_flow_put(backer->dpif, DPIF_FP_CREATE | DPIF_FP_MODIFY,
963                           ofpbuf_data(&key), ofpbuf_size(&key), NULL, 0, NULL,
964                           0, NULL);
965     if (error && error != EEXIST) {
966         if (error != EINVAL) {
967             VLOG_WARN("%s: Reciculation flow probe failed (%s)",
968                       dpif_name(backer->dpif), ovs_strerror(error));
969         }
970         goto done;
971     }
972
973     error = dpif_flow_del(backer->dpif, ofpbuf_data(&key), ofpbuf_size(&key),
974                           NULL);
975     if (error) {
976         VLOG_WARN("%s: failed to delete recirculation feature probe flow",
977                   dpif_name(backer->dpif));
978     }
979
980     enable_recirc = true;
981
982 done:
983     if (enable_recirc) {
984         VLOG_INFO("%s: Datapath supports recirculation",
985                   dpif_name(backer->dpif));
986     } else {
987         VLOG_INFO("%s: Datapath does not support recirculation",
988                   dpif_name(backer->dpif));
989     }
990
991     return enable_recirc;
992 }
993
994 /* Tests whether 'backer''s datapath supports variable-length
995  * OVS_USERSPACE_ATTR_USERDATA in OVS_ACTION_ATTR_USERSPACE actions.  We need
996  * to disable some features on older datapaths that don't support this
997  * feature.
998  *
999  * Returns false if 'backer' definitely does not support variable-length
1000  * userdata, true if it seems to support them or if at least the error we get
1001  * is ambiguous. */
1002 static bool
1003 check_variable_length_userdata(struct dpif_backer *backer)
1004 {
1005     struct eth_header *eth;
1006     struct ofpbuf actions;
1007     struct dpif_execute execute;
1008     struct ofpbuf packet;
1009     size_t start;
1010     int error;
1011
1012     /* Compose a userspace action that will cause an ERANGE error on older
1013      * datapaths that don't support variable-length userdata.
1014      *
1015      * We really test for using userdata longer than 8 bytes, but older
1016      * datapaths accepted these, silently truncating the userdata to 8 bytes.
1017      * The same older datapaths rejected userdata shorter than 8 bytes, so we
1018      * test for that instead as a proxy for longer userdata support. */
1019     ofpbuf_init(&actions, 64);
1020     start = nl_msg_start_nested(&actions, OVS_ACTION_ATTR_USERSPACE);
1021     nl_msg_put_u32(&actions, OVS_USERSPACE_ATTR_PID,
1022                    dpif_port_get_pid(backer->dpif, ODPP_NONE, 0));
1023     nl_msg_put_unspec_zero(&actions, OVS_USERSPACE_ATTR_USERDATA, 4);
1024     nl_msg_end_nested(&actions, start);
1025
1026     /* Compose a dummy ethernet packet. */
1027     ofpbuf_init(&packet, ETH_HEADER_LEN);
1028     eth = ofpbuf_put_zeros(&packet, ETH_HEADER_LEN);
1029     eth->eth_type = htons(0x1234);
1030
1031     /* Execute the actions.  On older datapaths this fails with ERANGE, on
1032      * newer datapaths it succeeds. */
1033     execute.actions = ofpbuf_data(&actions);
1034     execute.actions_len = ofpbuf_size(&actions);
1035     execute.packet = &packet;
1036     execute.md = PKT_METADATA_INITIALIZER(0);
1037     execute.needs_help = false;
1038
1039     error = dpif_execute(backer->dpif, &execute);
1040
1041     ofpbuf_uninit(&packet);
1042     ofpbuf_uninit(&actions);
1043
1044     switch (error) {
1045     case 0:
1046         /* Variable-length userdata is supported.
1047          *
1048          * Purge received packets to avoid processing the nonsense packet we
1049          * sent to userspace, then report success. */
1050         dpif_recv_purge(backer->dpif);
1051         return true;
1052
1053     case ERANGE:
1054         /* Variable-length userdata is not supported. */
1055         VLOG_WARN("%s: datapath does not support variable-length userdata "
1056                   "feature (needs Linux 3.10+ or kernel module from OVS "
1057                   "1..11+).  The NXAST_SAMPLE action will be ignored.",
1058                   dpif_name(backer->dpif));
1059         return false;
1060
1061     default:
1062         /* Something odd happened.  We're not sure whether variable-length
1063          * userdata is supported.  Default to "yes". */
1064         VLOG_WARN("%s: variable-length userdata feature probe failed (%s)",
1065                   dpif_name(backer->dpif), ovs_strerror(error));
1066         return true;
1067     }
1068 }
1069
1070 /* Tests the MPLS label stack depth supported by 'backer''s datapath.
1071  *
1072  * Returns the number of elements in a struct flow's mpls_lse field
1073  * if the datapath supports at least that many entries in an
1074  * MPLS label stack.
1075  * Otherwise returns the number of MPLS push actions supported by
1076  * the datapath. */
1077 static size_t
1078 check_max_mpls_depth(struct dpif_backer *backer)
1079 {
1080     struct flow flow;
1081     int n;
1082
1083     for (n = 0; n < FLOW_MAX_MPLS_LABELS; n++) {
1084         struct odputil_keybuf keybuf;
1085         struct ofpbuf key;
1086         int error;
1087
1088         memset(&flow, 0, sizeof flow);
1089         flow.dl_type = htons(ETH_TYPE_MPLS);
1090         flow_set_mpls_bos(&flow, n, 1);
1091
1092         ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
1093         odp_flow_key_from_flow(&key, &flow, NULL, 0, false);
1094
1095         error = dpif_flow_put(backer->dpif, DPIF_FP_CREATE | DPIF_FP_MODIFY,
1096                               ofpbuf_data(&key), ofpbuf_size(&key), NULL, 0, NULL, 0, NULL);
1097         if (error && error != EEXIST) {
1098             if (error != EINVAL) {
1099                 VLOG_WARN("%s: MPLS stack length feature probe failed (%s)",
1100                           dpif_name(backer->dpif), ovs_strerror(error));
1101             }
1102             break;
1103         }
1104
1105         error = dpif_flow_del(backer->dpif, ofpbuf_data(&key), ofpbuf_size(&key), NULL);
1106         if (error) {
1107             VLOG_WARN("%s: failed to delete MPLS feature probe flow",
1108                       dpif_name(backer->dpif));
1109         }
1110     }
1111
1112     VLOG_INFO("%s: MPLS label stack length probed as %d",
1113               dpif_name(backer->dpif), n);
1114     return n;
1115 }
1116
1117 static int
1118 construct(struct ofproto *ofproto_)
1119 {
1120     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1121     struct shash_node *node, *next;
1122     int error;
1123
1124     error = open_dpif_backer(ofproto->up.type, &ofproto->backer);
1125     if (error) {
1126         return error;
1127     }
1128
1129     ofproto->netflow = NULL;
1130     ofproto->sflow = NULL;
1131     ofproto->ipfix = NULL;
1132     ofproto->stp = NULL;
1133     ofproto->dump_seq = 0;
1134     hmap_init(&ofproto->bundles);
1135     ofproto->ml = mac_learning_create(MAC_ENTRY_DEFAULT_IDLE_TIME);
1136     ofproto->mbridge = mbridge_create();
1137     ofproto->has_bonded_bundles = false;
1138     ofproto->lacp_enabled = false;
1139     ovs_mutex_init_adaptive(&ofproto->stats_mutex);
1140     ovs_mutex_init(&ofproto->vsp_mutex);
1141
1142     guarded_list_init(&ofproto->pins);
1143
1144     ofproto_dpif_unixctl_init();
1145
1146     hmap_init(&ofproto->vlandev_map);
1147     hmap_init(&ofproto->realdev_vid_map);
1148
1149     sset_init(&ofproto->ports);
1150     sset_init(&ofproto->ghost_ports);
1151     sset_init(&ofproto->port_poll_set);
1152     ofproto->port_poll_errno = 0;
1153     ofproto->change_seq = 0;
1154     ofproto->pins_seq = seq_create();
1155     ofproto->pins_seqno = seq_read(ofproto->pins_seq);
1156
1157
1158     SHASH_FOR_EACH_SAFE (node, next, &init_ofp_ports) {
1159         struct iface_hint *iface_hint = node->data;
1160
1161         if (!strcmp(iface_hint->br_name, ofproto->up.name)) {
1162             /* Check if the datapath already has this port. */
1163             if (dpif_port_exists(ofproto->backer->dpif, node->name)) {
1164                 sset_add(&ofproto->ports, node->name);
1165             }
1166
1167             free(iface_hint->br_name);
1168             free(iface_hint->br_type);
1169             free(iface_hint);
1170             shash_delete(&init_ofp_ports, node);
1171         }
1172     }
1173
1174     hmap_insert(&all_ofproto_dpifs, &ofproto->all_ofproto_dpifs_node,
1175                 hash_string(ofproto->up.name, 0));
1176     memset(&ofproto->stats, 0, sizeof ofproto->stats);
1177
1178     ofproto_init_tables(ofproto_, N_TABLES);
1179     error = add_internal_flows(ofproto);
1180
1181     ofproto->up.tables[TBL_INTERNAL].flags = OFTABLE_HIDDEN | OFTABLE_READONLY;
1182
1183     return error;
1184 }
1185
1186 static int
1187 add_internal_miss_flow(struct ofproto_dpif *ofproto, int id,
1188                   const struct ofpbuf *ofpacts, struct rule_dpif **rulep)
1189 {
1190     struct match match;
1191     int error;
1192     struct rule *rule;
1193
1194     match_init_catchall(&match);
1195     match_set_reg(&match, 0, id);
1196
1197     error = ofproto_dpif_add_internal_flow(ofproto, &match, 0, 0, ofpacts,
1198                                            &rule);
1199     *rulep = error ? NULL : rule_dpif_cast(rule);
1200
1201     return error;
1202 }
1203
1204 static int
1205 add_internal_flows(struct ofproto_dpif *ofproto)
1206 {
1207     struct ofpact_controller *controller;
1208     uint64_t ofpacts_stub[128 / 8];
1209     struct ofpbuf ofpacts;
1210     struct rule *unused_rulep OVS_UNUSED;
1211     struct ofpact_resubmit *resubmit;
1212     struct match match;
1213     int error;
1214     int id;
1215
1216     ofpbuf_use_stack(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
1217     id = 1;
1218
1219     controller = ofpact_put_CONTROLLER(&ofpacts);
1220     controller->max_len = UINT16_MAX;
1221     controller->controller_id = 0;
1222     controller->reason = OFPR_NO_MATCH;
1223     ofpact_pad(&ofpacts);
1224
1225     error = add_internal_miss_flow(ofproto, id++, &ofpacts,
1226                                    &ofproto->miss_rule);
1227     if (error) {
1228         return error;
1229     }
1230
1231     ofpbuf_clear(&ofpacts);
1232     error = add_internal_miss_flow(ofproto, id++, &ofpacts,
1233                                    &ofproto->no_packet_in_rule);
1234     if (error) {
1235         return error;
1236     }
1237
1238     error = add_internal_miss_flow(ofproto, id++, &ofpacts,
1239                                    &ofproto->drop_frags_rule);
1240     if (error) {
1241         return error;
1242     }
1243
1244     /* Continue non-recirculation rule lookups from table 0.
1245      *
1246      * (priority=2), recirc=0, actions=resubmit(, 0)
1247      */
1248     resubmit = ofpact_put_RESUBMIT(&ofpacts);
1249     resubmit->ofpact.compat = 0;
1250     resubmit->in_port = OFPP_IN_PORT;
1251     resubmit->table_id = 0;
1252
1253     match_init_catchall(&match);
1254     match_set_recirc_id(&match, 0);
1255
1256     error = ofproto_dpif_add_internal_flow(ofproto, &match, 2, 0, &ofpacts,
1257                                            &unused_rulep);
1258     if (error) {
1259         return error;
1260     }
1261
1262     /* Drop any run away recirc rule lookups. Recirc_id has to be
1263      * non-zero when reaching this rule.
1264      *
1265      * (priority=1), *, actions=drop
1266      */
1267     ofpbuf_clear(&ofpacts);
1268     match_init_catchall(&match);
1269     error = ofproto_dpif_add_internal_flow(ofproto, &match, 1, 0, &ofpacts,
1270                                            &unused_rulep);
1271
1272     return error;
1273 }
1274
1275 static void
1276 destruct(struct ofproto *ofproto_)
1277 {
1278     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1279     struct rule_dpif *rule, *next_rule;
1280     struct ofproto_packet_in *pin, *next_pin;
1281     struct oftable *table;
1282     struct list pins;
1283
1284     ofproto->backer->need_revalidate = REV_RECONFIGURE;
1285     xlate_txn_start();
1286     xlate_remove_ofproto(ofproto);
1287     xlate_txn_commit();
1288
1289     /* Ensure that the upcall processing threads have no remaining references
1290      * to the ofproto or anything in it. */
1291     udpif_synchronize(ofproto->backer->udpif);
1292
1293     hmap_remove(&all_ofproto_dpifs, &ofproto->all_ofproto_dpifs_node);
1294
1295     OFPROTO_FOR_EACH_TABLE (table, &ofproto->up) {
1296         struct cls_cursor cursor;
1297
1298         fat_rwlock_rdlock(&table->cls.rwlock);
1299         cls_cursor_init(&cursor, &table->cls, NULL);
1300         fat_rwlock_unlock(&table->cls.rwlock);
1301         CLS_CURSOR_FOR_EACH_SAFE (rule, next_rule, up.cr, &cursor) {
1302             ofproto_rule_delete(&ofproto->up, &rule->up);
1303         }
1304     }
1305
1306     guarded_list_pop_all(&ofproto->pins, &pins);
1307     LIST_FOR_EACH_SAFE (pin, next_pin, list_node, &pins) {
1308         list_remove(&pin->list_node);
1309         free(CONST_CAST(void *, pin->up.packet));
1310         free(pin);
1311     }
1312     guarded_list_destroy(&ofproto->pins);
1313
1314     mbridge_unref(ofproto->mbridge);
1315
1316     netflow_unref(ofproto->netflow);
1317     dpif_sflow_unref(ofproto->sflow);
1318     hmap_destroy(&ofproto->bundles);
1319     mac_learning_unref(ofproto->ml);
1320
1321     hmap_destroy(&ofproto->vlandev_map);
1322     hmap_destroy(&ofproto->realdev_vid_map);
1323
1324     sset_destroy(&ofproto->ports);
1325     sset_destroy(&ofproto->ghost_ports);
1326     sset_destroy(&ofproto->port_poll_set);
1327
1328     ovs_mutex_destroy(&ofproto->stats_mutex);
1329     ovs_mutex_destroy(&ofproto->vsp_mutex);
1330
1331     seq_destroy(ofproto->pins_seq);
1332
1333     close_dpif_backer(ofproto->backer);
1334 }
1335
1336 static int
1337 run(struct ofproto *ofproto_)
1338 {
1339     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1340     uint64_t new_seq, new_dump_seq;
1341
1342     if (mbridge_need_revalidate(ofproto->mbridge)) {
1343         ofproto->backer->need_revalidate = REV_RECONFIGURE;
1344         ovs_rwlock_wrlock(&ofproto->ml->rwlock);
1345         mac_learning_flush(ofproto->ml);
1346         ovs_rwlock_unlock(&ofproto->ml->rwlock);
1347     }
1348
1349     /* Always updates the ofproto->pins_seqno to avoid frequent wakeup during
1350      * flow restore.  Even though nothing is processed during flow restore,
1351      * all queued 'pins' will be handled immediately when flow restore
1352      * completes. */
1353     ofproto->pins_seqno = seq_read(ofproto->pins_seq);
1354
1355     /* Do not perform any periodic activity required by 'ofproto' while
1356      * waiting for flow restore to complete. */
1357     if (!ofproto_get_flow_restore_wait()) {
1358         struct ofproto_packet_in *pin, *next_pin;
1359         struct list pins;
1360
1361         guarded_list_pop_all(&ofproto->pins, &pins);
1362         LIST_FOR_EACH_SAFE (pin, next_pin, list_node, &pins) {
1363             connmgr_send_packet_in(ofproto->up.connmgr, pin);
1364             list_remove(&pin->list_node);
1365             free(CONST_CAST(void *, pin->up.packet));
1366             free(pin);
1367         }
1368     }
1369
1370     if (ofproto->netflow) {
1371         netflow_run(ofproto->netflow);
1372     }
1373     if (ofproto->sflow) {
1374         dpif_sflow_run(ofproto->sflow);
1375     }
1376     if (ofproto->ipfix) {
1377         dpif_ipfix_run(ofproto->ipfix);
1378     }
1379
1380     new_seq = seq_read(connectivity_seq_get());
1381     if (ofproto->change_seq != new_seq) {
1382         struct ofport_dpif *ofport;
1383
1384         HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1385             port_run(ofport);
1386         }
1387
1388         ofproto->change_seq = new_seq;
1389     }
1390     if (ofproto->lacp_enabled || ofproto->has_bonded_bundles) {
1391         struct ofbundle *bundle;
1392
1393         HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
1394             bundle_run(bundle);
1395         }
1396     }
1397
1398     stp_run(ofproto);
1399     ovs_rwlock_wrlock(&ofproto->ml->rwlock);
1400     if (mac_learning_run(ofproto->ml)) {
1401         ofproto->backer->need_revalidate = REV_MAC_LEARNING;
1402     }
1403     ovs_rwlock_unlock(&ofproto->ml->rwlock);
1404
1405     new_dump_seq = seq_read(udpif_dump_seq(ofproto->backer->udpif));
1406     if (ofproto->dump_seq != new_dump_seq) {
1407         struct rule *rule, *next_rule;
1408
1409         /* We know stats are relatively fresh, so now is a good time to do some
1410          * periodic work. */
1411         ofproto->dump_seq = new_dump_seq;
1412
1413         /* Expire OpenFlow flows whose idle_timeout or hard_timeout
1414          * has passed. */
1415         ovs_mutex_lock(&ofproto_mutex);
1416         LIST_FOR_EACH_SAFE (rule, next_rule, expirable,
1417                             &ofproto->up.expirable) {
1418             rule_expire(rule_dpif_cast(rule));
1419         }
1420         ovs_mutex_unlock(&ofproto_mutex);
1421
1422         /* All outstanding data in existing flows has been accounted, so it's a
1423          * good time to do bond rebalancing. */
1424         if (ofproto->has_bonded_bundles) {
1425             struct ofbundle *bundle;
1426
1427             HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
1428                 if (bundle->bond) {
1429                     bond_rebalance(bundle->bond);
1430                 }
1431             }
1432         }
1433     }
1434
1435     return 0;
1436 }
1437
1438 static void
1439 wait(struct ofproto *ofproto_)
1440 {
1441     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1442
1443     if (ofproto_get_flow_restore_wait()) {
1444         return;
1445     }
1446
1447     if (ofproto->sflow) {
1448         dpif_sflow_wait(ofproto->sflow);
1449     }
1450     if (ofproto->ipfix) {
1451         dpif_ipfix_wait(ofproto->ipfix);
1452     }
1453     if (ofproto->lacp_enabled || ofproto->has_bonded_bundles) {
1454         struct ofbundle *bundle;
1455
1456         HMAP_FOR_EACH (bundle, hmap_node, &ofproto->bundles) {
1457             bundle_wait(bundle);
1458         }
1459     }
1460     if (ofproto->netflow) {
1461         netflow_wait(ofproto->netflow);
1462     }
1463     ovs_rwlock_rdlock(&ofproto->ml->rwlock);
1464     mac_learning_wait(ofproto->ml);
1465     ovs_rwlock_unlock(&ofproto->ml->rwlock);
1466     stp_wait(ofproto);
1467     if (ofproto->backer->need_revalidate) {
1468         /* Shouldn't happen, but if it does just go around again. */
1469         VLOG_DBG_RL(&rl, "need revalidate in ofproto_wait_cb()");
1470         poll_immediate_wake();
1471     }
1472
1473     seq_wait(udpif_dump_seq(ofproto->backer->udpif), ofproto->dump_seq);
1474     seq_wait(ofproto->pins_seq, ofproto->pins_seqno);
1475 }
1476
1477 static void
1478 type_get_memory_usage(const char *type, struct simap *usage)
1479 {
1480     struct dpif_backer *backer;
1481
1482     backer = shash_find_data(&all_dpif_backers, type);
1483     if (backer) {
1484         udpif_get_memory_usage(backer->udpif, usage);
1485     }
1486 }
1487
1488 static void
1489 flush(struct ofproto *ofproto_)
1490 {
1491     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1492     struct dpif_backer *backer = ofproto->backer;
1493
1494     if (backer) {
1495         udpif_flush(backer->udpif);
1496     }
1497 }
1498
1499 static void
1500 get_features(struct ofproto *ofproto_ OVS_UNUSED,
1501              bool *arp_match_ip, enum ofputil_action_bitmap *actions)
1502 {
1503     *arp_match_ip = true;
1504     *actions = (OFPUTIL_A_OUTPUT |
1505                 OFPUTIL_A_SET_VLAN_VID |
1506                 OFPUTIL_A_SET_VLAN_PCP |
1507                 OFPUTIL_A_STRIP_VLAN |
1508                 OFPUTIL_A_SET_DL_SRC |
1509                 OFPUTIL_A_SET_DL_DST |
1510                 OFPUTIL_A_SET_NW_SRC |
1511                 OFPUTIL_A_SET_NW_DST |
1512                 OFPUTIL_A_SET_NW_TOS |
1513                 OFPUTIL_A_SET_TP_SRC |
1514                 OFPUTIL_A_SET_TP_DST |
1515                 OFPUTIL_A_ENQUEUE);
1516 }
1517
1518 static void
1519 get_tables(struct ofproto *ofproto, struct ofp12_table_stats *ots)
1520 {
1521     int i;
1522
1523     strcpy(ots->name, "classifier");
1524
1525     for (i = 0; i < ofproto->n_tables; i++) {
1526         unsigned long missed, matched;
1527
1528         atomic_read(&ofproto->tables[i].n_matched, &matched);
1529         ots[i].matched_count = htonll(matched);
1530         atomic_read(&ofproto->tables[i].n_missed, &missed);
1531         ots[i].lookup_count = htonll(matched + missed);
1532     }
1533 }
1534
1535 static struct ofport *
1536 port_alloc(void)
1537 {
1538     struct ofport_dpif *port = xmalloc(sizeof *port);
1539     return &port->up;
1540 }
1541
1542 static void
1543 port_dealloc(struct ofport *port_)
1544 {
1545     struct ofport_dpif *port = ofport_dpif_cast(port_);
1546     free(port);
1547 }
1548
1549 static int
1550 port_construct(struct ofport *port_)
1551 {
1552     struct ofport_dpif *port = ofport_dpif_cast(port_);
1553     struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
1554     const struct netdev *netdev = port->up.netdev;
1555     char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
1556     struct dpif_port dpif_port;
1557     int error;
1558
1559     ofproto->backer->need_revalidate = REV_RECONFIGURE;
1560     port->bundle = NULL;
1561     port->cfm = NULL;
1562     port->bfd = NULL;
1563     port->may_enable = true;
1564     port->stp_port = NULL;
1565     port->stp_state = STP_DISABLED;
1566     port->is_tunnel = false;
1567     port->peer = NULL;
1568     port->qdscp = NULL;
1569     port->n_qdscp = 0;
1570     port->realdev_ofp_port = 0;
1571     port->vlandev_vid = 0;
1572     port->carrier_seq = netdev_get_carrier_resets(netdev);
1573     port->is_layer3 = netdev_vport_is_layer3(netdev);
1574
1575     if (netdev_vport_is_patch(netdev)) {
1576         /* By bailing out here, we don't submit the port to the sFlow module
1577          * to be considered for counter polling export.  This is correct
1578          * because the patch port represents an interface that sFlow considers
1579          * to be "internal" to the switch as a whole, and therefore not an
1580          * candidate for counter polling. */
1581         port->odp_port = ODPP_NONE;
1582         ofport_update_peer(port);
1583         return 0;
1584     }
1585
1586     error = dpif_port_query_by_name(ofproto->backer->dpif,
1587                                     netdev_vport_get_dpif_port(netdev, namebuf,
1588                                                                sizeof namebuf),
1589                                     &dpif_port);
1590     if (error) {
1591         return error;
1592     }
1593
1594     port->odp_port = dpif_port.port_no;
1595
1596     if (netdev_get_tunnel_config(netdev)) {
1597         tnl_port_add(port, port->up.netdev, port->odp_port);
1598         port->is_tunnel = true;
1599     } else {
1600         /* Sanity-check that a mapping doesn't already exist.  This
1601          * shouldn't happen for non-tunnel ports. */
1602         if (odp_port_to_ofp_port(ofproto, port->odp_port) != OFPP_NONE) {
1603             VLOG_ERR("port %s already has an OpenFlow port number",
1604                      dpif_port.name);
1605             dpif_port_destroy(&dpif_port);
1606             return EBUSY;
1607         }
1608
1609         ovs_rwlock_wrlock(&ofproto->backer->odp_to_ofport_lock);
1610         hmap_insert(&ofproto->backer->odp_to_ofport_map, &port->odp_port_node,
1611                     hash_odp_port(port->odp_port));
1612         ovs_rwlock_unlock(&ofproto->backer->odp_to_ofport_lock);
1613     }
1614     dpif_port_destroy(&dpif_port);
1615
1616     if (ofproto->sflow) {
1617         dpif_sflow_add_port(ofproto->sflow, port_, port->odp_port);
1618     }
1619
1620     return 0;
1621 }
1622
1623 static void
1624 port_destruct(struct ofport *port_)
1625 {
1626     struct ofport_dpif *port = ofport_dpif_cast(port_);
1627     struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
1628     const char *devname = netdev_get_name(port->up.netdev);
1629     char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
1630     const char *dp_port_name;
1631
1632     ofproto->backer->need_revalidate = REV_RECONFIGURE;
1633     xlate_txn_start();
1634     xlate_ofport_remove(port);
1635     xlate_txn_commit();
1636
1637     dp_port_name = netdev_vport_get_dpif_port(port->up.netdev, namebuf,
1638                                               sizeof namebuf);
1639     if (dpif_port_exists(ofproto->backer->dpif, dp_port_name)) {
1640         /* The underlying device is still there, so delete it.  This
1641          * happens when the ofproto is being destroyed, since the caller
1642          * assumes that removal of attached ports will happen as part of
1643          * destruction. */
1644         if (!port->is_tunnel) {
1645             dpif_port_del(ofproto->backer->dpif, port->odp_port);
1646         }
1647     }
1648
1649     if (port->peer) {
1650         port->peer->peer = NULL;
1651         port->peer = NULL;
1652     }
1653
1654     if (port->odp_port != ODPP_NONE && !port->is_tunnel) {
1655         ovs_rwlock_wrlock(&ofproto->backer->odp_to_ofport_lock);
1656         hmap_remove(&ofproto->backer->odp_to_ofport_map, &port->odp_port_node);
1657         ovs_rwlock_unlock(&ofproto->backer->odp_to_ofport_lock);
1658     }
1659
1660     tnl_port_del(port);
1661     sset_find_and_delete(&ofproto->ports, devname);
1662     sset_find_and_delete(&ofproto->ghost_ports, devname);
1663     bundle_remove(port_);
1664     set_cfm(port_, NULL);
1665     set_bfd(port_, NULL);
1666     if (port->stp_port) {
1667         stp_port_disable(port->stp_port);
1668     }
1669     if (ofproto->sflow) {
1670         dpif_sflow_del_port(ofproto->sflow, port->odp_port);
1671     }
1672
1673     free(port->qdscp);
1674 }
1675
1676 static void
1677 port_modified(struct ofport *port_)
1678 {
1679     struct ofport_dpif *port = ofport_dpif_cast(port_);
1680
1681     if (port->bundle && port->bundle->bond) {
1682         bond_slave_set_netdev(port->bundle->bond, port, port->up.netdev);
1683     }
1684
1685     if (port->cfm) {
1686         cfm_set_netdev(port->cfm, port->up.netdev);
1687     }
1688
1689     if (port->bfd) {
1690         bfd_set_netdev(port->bfd, port->up.netdev);
1691     }
1692
1693     ofproto_dpif_monitor_port_update(port, port->bfd, port->cfm,
1694                                      port->up.pp.hw_addr);
1695
1696     if (port->is_tunnel && tnl_port_reconfigure(port, port->up.netdev,
1697                                                 port->odp_port)) {
1698         ofproto_dpif_cast(port->up.ofproto)->backer->need_revalidate =
1699             REV_RECONFIGURE;
1700     }
1701
1702     ofport_update_peer(port);
1703 }
1704
1705 static void
1706 port_reconfigured(struct ofport *port_, enum ofputil_port_config old_config)
1707 {
1708     struct ofport_dpif *port = ofport_dpif_cast(port_);
1709     struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
1710     enum ofputil_port_config changed = old_config ^ port->up.pp.config;
1711
1712     if (changed & (OFPUTIL_PC_NO_RECV | OFPUTIL_PC_NO_RECV_STP |
1713                    OFPUTIL_PC_NO_FWD | OFPUTIL_PC_NO_FLOOD |
1714                    OFPUTIL_PC_NO_PACKET_IN)) {
1715         ofproto->backer->need_revalidate = REV_RECONFIGURE;
1716
1717         if (changed & OFPUTIL_PC_NO_FLOOD && port->bundle) {
1718             bundle_update(port->bundle);
1719         }
1720     }
1721 }
1722
1723 static int
1724 set_sflow(struct ofproto *ofproto_,
1725           const struct ofproto_sflow_options *sflow_options)
1726 {
1727     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1728     struct dpif_sflow *ds = ofproto->sflow;
1729
1730     if (sflow_options) {
1731         if (!ds) {
1732             struct ofport_dpif *ofport;
1733
1734             ds = ofproto->sflow = dpif_sflow_create();
1735             HMAP_FOR_EACH (ofport, up.hmap_node, &ofproto->up.ports) {
1736                 dpif_sflow_add_port(ds, &ofport->up, ofport->odp_port);
1737             }
1738             ofproto->backer->need_revalidate = REV_RECONFIGURE;
1739         }
1740         dpif_sflow_set_options(ds, sflow_options);
1741     } else {
1742         if (ds) {
1743             dpif_sflow_unref(ds);
1744             ofproto->backer->need_revalidate = REV_RECONFIGURE;
1745             ofproto->sflow = NULL;
1746         }
1747     }
1748     return 0;
1749 }
1750
1751 static int
1752 set_ipfix(
1753     struct ofproto *ofproto_,
1754     const struct ofproto_ipfix_bridge_exporter_options *bridge_exporter_options,
1755     const struct ofproto_ipfix_flow_exporter_options *flow_exporters_options,
1756     size_t n_flow_exporters_options)
1757 {
1758     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1759     struct dpif_ipfix *di = ofproto->ipfix;
1760     bool has_options = bridge_exporter_options || flow_exporters_options;
1761
1762     if (has_options && !di) {
1763         di = ofproto->ipfix = dpif_ipfix_create();
1764     }
1765
1766     if (di) {
1767         /* Call set_options in any case to cleanly flush the flow
1768          * caches in the last exporters that are to be destroyed. */
1769         dpif_ipfix_set_options(
1770             di, bridge_exporter_options, flow_exporters_options,
1771             n_flow_exporters_options);
1772
1773         if (!has_options) {
1774             dpif_ipfix_unref(di);
1775             ofproto->ipfix = NULL;
1776         }
1777     }
1778
1779     return 0;
1780 }
1781
1782 static int
1783 set_cfm(struct ofport *ofport_, const struct cfm_settings *s)
1784 {
1785     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
1786     int error = 0;
1787
1788     if (s) {
1789         if (!ofport->cfm) {
1790             struct ofproto_dpif *ofproto;
1791
1792             ofproto = ofproto_dpif_cast(ofport->up.ofproto);
1793             ofproto->backer->need_revalidate = REV_RECONFIGURE;
1794             ofport->cfm = cfm_create(ofport->up.netdev);
1795         }
1796
1797         if (cfm_configure(ofport->cfm, s)) {
1798             error = 0;
1799             goto out;
1800         }
1801
1802         error = EINVAL;
1803     }
1804     cfm_unref(ofport->cfm);
1805     ofport->cfm = NULL;
1806 out:
1807     ofproto_dpif_monitor_port_update(ofport, ofport->bfd, ofport->cfm,
1808                                      ofport->up.pp.hw_addr);
1809     return error;
1810 }
1811
1812 static int
1813 get_cfm_status(const struct ofport *ofport_,
1814                struct ofproto_cfm_status *status)
1815 {
1816     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
1817     int ret = 0;
1818
1819     if (ofport->cfm) {
1820         if (cfm_check_status_change(ofport->cfm)) {
1821             status->faults = cfm_get_fault(ofport->cfm);
1822             status->flap_count = cfm_get_flap_count(ofport->cfm);
1823             status->remote_opstate = cfm_get_opup(ofport->cfm);
1824             status->health = cfm_get_health(ofport->cfm);
1825             cfm_get_remote_mpids(ofport->cfm, &status->rmps, &status->n_rmps);
1826         } else {
1827             ret = NO_STATUS_CHANGE;
1828         }
1829     } else {
1830         ret = ENOENT;
1831     }
1832
1833     return ret;
1834 }
1835
1836 static int
1837 set_bfd(struct ofport *ofport_, const struct smap *cfg)
1838 {
1839     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport_->ofproto);
1840     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
1841     struct bfd *old;
1842
1843     old = ofport->bfd;
1844     ofport->bfd = bfd_configure(old, netdev_get_name(ofport->up.netdev),
1845                                 cfg, ofport->up.netdev);
1846     if (ofport->bfd != old) {
1847         ofproto->backer->need_revalidate = REV_RECONFIGURE;
1848     }
1849     ofproto_dpif_monitor_port_update(ofport, ofport->bfd, ofport->cfm,
1850                                      ofport->up.pp.hw_addr);
1851     return 0;
1852 }
1853
1854 static int
1855 get_bfd_status(struct ofport *ofport_, struct smap *smap)
1856 {
1857     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
1858     int ret = 0;
1859
1860     if (ofport->bfd) {
1861         if (bfd_check_status_change(ofport->bfd)) {
1862             bfd_get_status(ofport->bfd, smap);
1863         } else {
1864             ret = NO_STATUS_CHANGE;
1865         }
1866     } else {
1867         ret = ENOENT;
1868     }
1869
1870     return ret;
1871 }
1872 \f
1873 /* Spanning Tree. */
1874
1875 static void
1876 send_bpdu_cb(struct ofpbuf *pkt, int port_num, void *ofproto_)
1877 {
1878     struct ofproto_dpif *ofproto = ofproto_;
1879     struct stp_port *sp = stp_get_port(ofproto->stp, port_num);
1880     struct ofport_dpif *ofport;
1881
1882     ofport = stp_port_get_aux(sp);
1883     if (!ofport) {
1884         VLOG_WARN_RL(&rl, "%s: cannot send BPDU on unknown port %d",
1885                      ofproto->up.name, port_num);
1886     } else {
1887         struct eth_header *eth = ofpbuf_l2(pkt);
1888
1889         netdev_get_etheraddr(ofport->up.netdev, eth->eth_src);
1890         if (eth_addr_is_zero(eth->eth_src)) {
1891             VLOG_WARN_RL(&rl, "%s: cannot send BPDU on port %d "
1892                          "with unknown MAC", ofproto->up.name, port_num);
1893         } else {
1894             ofproto_dpif_send_packet(ofport, pkt);
1895         }
1896     }
1897     ofpbuf_delete(pkt);
1898 }
1899
1900 /* Configures STP on 'ofproto_' using the settings defined in 's'. */
1901 static int
1902 set_stp(struct ofproto *ofproto_, const struct ofproto_stp_settings *s)
1903 {
1904     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1905
1906     /* Only revalidate flows if the configuration changed. */
1907     if (!s != !ofproto->stp) {
1908         ofproto->backer->need_revalidate = REV_RECONFIGURE;
1909     }
1910
1911     if (s) {
1912         if (!ofproto->stp) {
1913             ofproto->stp = stp_create(ofproto_->name, s->system_id,
1914                                       send_bpdu_cb, ofproto);
1915             ofproto->stp_last_tick = time_msec();
1916         }
1917
1918         stp_set_bridge_id(ofproto->stp, s->system_id);
1919         stp_set_bridge_priority(ofproto->stp, s->priority);
1920         stp_set_hello_time(ofproto->stp, s->hello_time);
1921         stp_set_max_age(ofproto->stp, s->max_age);
1922         stp_set_forward_delay(ofproto->stp, s->fwd_delay);
1923     }  else {
1924         struct ofport *ofport;
1925
1926         HMAP_FOR_EACH (ofport, hmap_node, &ofproto->up.ports) {
1927             set_stp_port(ofport, NULL);
1928         }
1929
1930         stp_unref(ofproto->stp);
1931         ofproto->stp = NULL;
1932     }
1933
1934     return 0;
1935 }
1936
1937 static int
1938 get_stp_status(struct ofproto *ofproto_, struct ofproto_stp_status *s)
1939 {
1940     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
1941
1942     if (ofproto->stp) {
1943         s->enabled = true;
1944         s->bridge_id = stp_get_bridge_id(ofproto->stp);
1945         s->designated_root = stp_get_designated_root(ofproto->stp);
1946         s->root_path_cost = stp_get_root_path_cost(ofproto->stp);
1947     } else {
1948         s->enabled = false;
1949     }
1950
1951     return 0;
1952 }
1953
1954 static void
1955 update_stp_port_state(struct ofport_dpif *ofport)
1956 {
1957     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
1958     enum stp_state state;
1959
1960     /* Figure out new state. */
1961     state = ofport->stp_port ? stp_port_get_state(ofport->stp_port)
1962                              : STP_DISABLED;
1963
1964     /* Update state. */
1965     if (ofport->stp_state != state) {
1966         enum ofputil_port_state of_state;
1967         bool fwd_change;
1968
1969         VLOG_DBG_RL(&rl, "port %s: STP state changed from %s to %s",
1970                     netdev_get_name(ofport->up.netdev),
1971                     stp_state_name(ofport->stp_state),
1972                     stp_state_name(state));
1973         if (stp_learn_in_state(ofport->stp_state)
1974                 != stp_learn_in_state(state)) {
1975             /* xxx Learning action flows should also be flushed. */
1976             ovs_rwlock_wrlock(&ofproto->ml->rwlock);
1977             mac_learning_flush(ofproto->ml);
1978             ovs_rwlock_unlock(&ofproto->ml->rwlock);
1979         }
1980         fwd_change = stp_forward_in_state(ofport->stp_state)
1981                         != stp_forward_in_state(state);
1982
1983         ofproto->backer->need_revalidate = REV_STP;
1984         ofport->stp_state = state;
1985         ofport->stp_state_entered = time_msec();
1986
1987         if (fwd_change && ofport->bundle) {
1988             bundle_update(ofport->bundle);
1989         }
1990
1991         /* Update the STP state bits in the OpenFlow port description. */
1992         of_state = ofport->up.pp.state & ~OFPUTIL_PS_STP_MASK;
1993         of_state |= (state == STP_LISTENING ? OFPUTIL_PS_STP_LISTEN
1994                      : state == STP_LEARNING ? OFPUTIL_PS_STP_LEARN
1995                      : state == STP_FORWARDING ? OFPUTIL_PS_STP_FORWARD
1996                      : state == STP_BLOCKING ?  OFPUTIL_PS_STP_BLOCK
1997                      : 0);
1998         ofproto_port_set_state(&ofport->up, of_state);
1999     }
2000 }
2001
2002 /* Configures STP on 'ofport_' using the settings defined in 's'.  The
2003  * caller is responsible for assigning STP port numbers and ensuring
2004  * there are no duplicates. */
2005 static int
2006 set_stp_port(struct ofport *ofport_,
2007              const struct ofproto_port_stp_settings *s)
2008 {
2009     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2010     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2011     struct stp_port *sp = ofport->stp_port;
2012
2013     if (!s || !s->enable) {
2014         if (sp) {
2015             ofport->stp_port = NULL;
2016             stp_port_disable(sp);
2017             update_stp_port_state(ofport);
2018         }
2019         return 0;
2020     } else if (sp && stp_port_no(sp) != s->port_num
2021             && ofport == stp_port_get_aux(sp)) {
2022         /* The port-id changed, so disable the old one if it's not
2023          * already in use by another port. */
2024         stp_port_disable(sp);
2025     }
2026
2027     sp = ofport->stp_port = stp_get_port(ofproto->stp, s->port_num);
2028     stp_port_enable(sp);
2029
2030     stp_port_set_aux(sp, ofport);
2031     stp_port_set_priority(sp, s->priority);
2032     stp_port_set_path_cost(sp, s->path_cost);
2033
2034     update_stp_port_state(ofport);
2035
2036     return 0;
2037 }
2038
2039 static int
2040 get_stp_port_status(struct ofport *ofport_,
2041                     struct ofproto_port_stp_status *s)
2042 {
2043     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2044     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2045     struct stp_port *sp = ofport->stp_port;
2046
2047     if (!ofproto->stp || !sp) {
2048         s->enabled = false;
2049         return 0;
2050     }
2051
2052     s->enabled = true;
2053     s->port_id = stp_port_get_id(sp);
2054     s->state = stp_port_get_state(sp);
2055     s->sec_in_state = (time_msec() - ofport->stp_state_entered) / 1000;
2056     s->role = stp_port_get_role(sp);
2057
2058     return 0;
2059 }
2060
2061 static int
2062 get_stp_port_stats(struct ofport *ofport_,
2063                    struct ofproto_port_stp_stats *s)
2064 {
2065     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2066     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2067     struct stp_port *sp = ofport->stp_port;
2068
2069     if (!ofproto->stp || !sp) {
2070         s->enabled = false;
2071         return 0;
2072     }
2073
2074     s->enabled = true;
2075     stp_port_get_counts(sp, &s->tx_count, &s->rx_count, &s->error_count);
2076
2077     return 0;
2078 }
2079
2080 static void
2081 stp_run(struct ofproto_dpif *ofproto)
2082 {
2083     if (ofproto->stp) {
2084         long long int now = time_msec();
2085         long long int elapsed = now - ofproto->stp_last_tick;
2086         struct stp_port *sp;
2087
2088         if (elapsed > 0) {
2089             stp_tick(ofproto->stp, MIN(INT_MAX, elapsed));
2090             ofproto->stp_last_tick = now;
2091         }
2092         while (stp_get_changed_port(ofproto->stp, &sp)) {
2093             struct ofport_dpif *ofport = stp_port_get_aux(sp);
2094
2095             if (ofport) {
2096                 update_stp_port_state(ofport);
2097             }
2098         }
2099
2100         if (stp_check_and_reset_fdb_flush(ofproto->stp)) {
2101             ovs_rwlock_wrlock(&ofproto->ml->rwlock);
2102             mac_learning_flush(ofproto->ml);
2103             ovs_rwlock_unlock(&ofproto->ml->rwlock);
2104         }
2105     }
2106 }
2107
2108 static void
2109 stp_wait(struct ofproto_dpif *ofproto)
2110 {
2111     if (ofproto->stp) {
2112         poll_timer_wait(1000);
2113     }
2114 }
2115 \f
2116 static int
2117 set_queues(struct ofport *ofport_, const struct ofproto_port_queue *qdscp,
2118            size_t n_qdscp)
2119 {
2120     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2121     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2122
2123     if (ofport->n_qdscp != n_qdscp
2124         || (n_qdscp && memcmp(ofport->qdscp, qdscp,
2125                               n_qdscp * sizeof *qdscp))) {
2126         ofproto->backer->need_revalidate = REV_RECONFIGURE;
2127         free(ofport->qdscp);
2128         ofport->qdscp = n_qdscp
2129             ? xmemdup(qdscp, n_qdscp * sizeof *qdscp)
2130             : NULL;
2131         ofport->n_qdscp = n_qdscp;
2132     }
2133
2134     return 0;
2135 }
2136 \f
2137 /* Bundles. */
2138
2139 /* Expires all MAC learning entries associated with 'bundle' and forces its
2140  * ofproto to revalidate every flow.
2141  *
2142  * Normally MAC learning entries are removed only from the ofproto associated
2143  * with 'bundle', but if 'all_ofprotos' is true, then the MAC learning entries
2144  * are removed from every ofproto.  When patch ports and SLB bonds are in use
2145  * and a VM migration happens and the gratuitous ARPs are somehow lost, this
2146  * avoids a MAC_ENTRY_IDLE_TIME delay before the migrated VM can communicate
2147  * with the host from which it migrated. */
2148 static void
2149 bundle_flush_macs(struct ofbundle *bundle, bool all_ofprotos)
2150 {
2151     struct ofproto_dpif *ofproto = bundle->ofproto;
2152     struct mac_learning *ml = ofproto->ml;
2153     struct mac_entry *mac, *next_mac;
2154
2155     ofproto->backer->need_revalidate = REV_RECONFIGURE;
2156     ovs_rwlock_wrlock(&ml->rwlock);
2157     LIST_FOR_EACH_SAFE (mac, next_mac, lru_node, &ml->lrus) {
2158         if (mac->port.p == bundle) {
2159             if (all_ofprotos) {
2160                 struct ofproto_dpif *o;
2161
2162                 HMAP_FOR_EACH (o, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
2163                     if (o != ofproto) {
2164                         struct mac_entry *e;
2165
2166                         ovs_rwlock_wrlock(&o->ml->rwlock);
2167                         e = mac_learning_lookup(o->ml, mac->mac, mac->vlan);
2168                         if (e) {
2169                             mac_learning_expire(o->ml, e);
2170                         }
2171                         ovs_rwlock_unlock(&o->ml->rwlock);
2172                     }
2173                 }
2174             }
2175
2176             mac_learning_expire(ml, mac);
2177         }
2178     }
2179     ovs_rwlock_unlock(&ml->rwlock);
2180 }
2181
2182 static struct ofbundle *
2183 bundle_lookup(const struct ofproto_dpif *ofproto, void *aux)
2184 {
2185     struct ofbundle *bundle;
2186
2187     HMAP_FOR_EACH_IN_BUCKET (bundle, hmap_node, hash_pointer(aux, 0),
2188                              &ofproto->bundles) {
2189         if (bundle->aux == aux) {
2190             return bundle;
2191         }
2192     }
2193     return NULL;
2194 }
2195
2196 static void
2197 bundle_update(struct ofbundle *bundle)
2198 {
2199     struct ofport_dpif *port;
2200
2201     bundle->floodable = true;
2202     LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
2203         if (port->up.pp.config & OFPUTIL_PC_NO_FLOOD
2204             || port->is_layer3
2205             || !stp_forward_in_state(port->stp_state)) {
2206             bundle->floodable = false;
2207             break;
2208         }
2209     }
2210 }
2211
2212 static void
2213 bundle_del_port(struct ofport_dpif *port)
2214 {
2215     struct ofbundle *bundle = port->bundle;
2216
2217     bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
2218
2219     list_remove(&port->bundle_node);
2220     port->bundle = NULL;
2221
2222     if (bundle->lacp) {
2223         lacp_slave_unregister(bundle->lacp, port);
2224     }
2225     if (bundle->bond) {
2226         bond_slave_unregister(bundle->bond, port);
2227     }
2228
2229     bundle_update(bundle);
2230 }
2231
2232 static bool
2233 bundle_add_port(struct ofbundle *bundle, ofp_port_t ofp_port,
2234                 struct lacp_slave_settings *lacp)
2235 {
2236     struct ofport_dpif *port;
2237
2238     port = get_ofp_port(bundle->ofproto, ofp_port);
2239     if (!port) {
2240         return false;
2241     }
2242
2243     if (port->bundle != bundle) {
2244         bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
2245         if (port->bundle) {
2246             bundle_remove(&port->up);
2247         }
2248
2249         port->bundle = bundle;
2250         list_push_back(&bundle->ports, &port->bundle_node);
2251         if (port->up.pp.config & OFPUTIL_PC_NO_FLOOD
2252             || port->is_layer3
2253             || !stp_forward_in_state(port->stp_state)) {
2254             bundle->floodable = false;
2255         }
2256     }
2257     if (lacp) {
2258         bundle->ofproto->backer->need_revalidate = REV_RECONFIGURE;
2259         lacp_slave_register(bundle->lacp, port, lacp);
2260     }
2261
2262     return true;
2263 }
2264
2265 static void
2266 bundle_destroy(struct ofbundle *bundle)
2267 {
2268     struct ofproto_dpif *ofproto;
2269     struct ofport_dpif *port, *next_port;
2270
2271     if (!bundle) {
2272         return;
2273     }
2274
2275     ofproto = bundle->ofproto;
2276     mbridge_unregister_bundle(ofproto->mbridge, bundle->aux);
2277
2278     xlate_txn_start();
2279     xlate_bundle_remove(bundle);
2280     xlate_txn_commit();
2281
2282     LIST_FOR_EACH_SAFE (port, next_port, bundle_node, &bundle->ports) {
2283         bundle_del_port(port);
2284     }
2285
2286     bundle_flush_macs(bundle, true);
2287     hmap_remove(&ofproto->bundles, &bundle->hmap_node);
2288     free(bundle->name);
2289     free(bundle->trunks);
2290     lacp_unref(bundle->lacp);
2291     bond_unref(bundle->bond);
2292     free(bundle);
2293 }
2294
2295 static int
2296 bundle_set(struct ofproto *ofproto_, void *aux,
2297            const struct ofproto_bundle_settings *s)
2298 {
2299     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2300     bool need_flush = false;
2301     struct ofport_dpif *port;
2302     struct ofbundle *bundle;
2303     unsigned long *trunks;
2304     int vlan;
2305     size_t i;
2306     bool ok;
2307
2308     if (!s) {
2309         bundle_destroy(bundle_lookup(ofproto, aux));
2310         return 0;
2311     }
2312
2313     ovs_assert(s->n_slaves == 1 || s->bond != NULL);
2314     ovs_assert((s->lacp != NULL) == (s->lacp_slaves != NULL));
2315
2316     bundle = bundle_lookup(ofproto, aux);
2317     if (!bundle) {
2318         bundle = xmalloc(sizeof *bundle);
2319
2320         bundle->ofproto = ofproto;
2321         hmap_insert(&ofproto->bundles, &bundle->hmap_node,
2322                     hash_pointer(aux, 0));
2323         bundle->aux = aux;
2324         bundle->name = NULL;
2325
2326         list_init(&bundle->ports);
2327         bundle->vlan_mode = PORT_VLAN_TRUNK;
2328         bundle->vlan = -1;
2329         bundle->trunks = NULL;
2330         bundle->use_priority_tags = s->use_priority_tags;
2331         bundle->lacp = NULL;
2332         bundle->bond = NULL;
2333
2334         bundle->floodable = true;
2335         mbridge_register_bundle(ofproto->mbridge, bundle);
2336     }
2337
2338     if (!bundle->name || strcmp(s->name, bundle->name)) {
2339         free(bundle->name);
2340         bundle->name = xstrdup(s->name);
2341     }
2342
2343     /* LACP. */
2344     if (s->lacp) {
2345         ofproto->lacp_enabled = true;
2346         if (!bundle->lacp) {
2347             ofproto->backer->need_revalidate = REV_RECONFIGURE;
2348             bundle->lacp = lacp_create();
2349         }
2350         lacp_configure(bundle->lacp, s->lacp);
2351     } else {
2352         lacp_unref(bundle->lacp);
2353         bundle->lacp = NULL;
2354     }
2355
2356     /* Update set of ports. */
2357     ok = true;
2358     for (i = 0; i < s->n_slaves; i++) {
2359         if (!bundle_add_port(bundle, s->slaves[i],
2360                              s->lacp ? &s->lacp_slaves[i] : NULL)) {
2361             ok = false;
2362         }
2363     }
2364     if (!ok || list_size(&bundle->ports) != s->n_slaves) {
2365         struct ofport_dpif *next_port;
2366
2367         LIST_FOR_EACH_SAFE (port, next_port, bundle_node, &bundle->ports) {
2368             for (i = 0; i < s->n_slaves; i++) {
2369                 if (s->slaves[i] == port->up.ofp_port) {
2370                     goto found;
2371                 }
2372             }
2373
2374             bundle_del_port(port);
2375         found: ;
2376         }
2377     }
2378     ovs_assert(list_size(&bundle->ports) <= s->n_slaves);
2379
2380     if (list_is_empty(&bundle->ports)) {
2381         bundle_destroy(bundle);
2382         return EINVAL;
2383     }
2384
2385     /* Set VLAN tagging mode */
2386     if (s->vlan_mode != bundle->vlan_mode
2387         || s->use_priority_tags != bundle->use_priority_tags) {
2388         bundle->vlan_mode = s->vlan_mode;
2389         bundle->use_priority_tags = s->use_priority_tags;
2390         need_flush = true;
2391     }
2392
2393     /* Set VLAN tag. */
2394     vlan = (s->vlan_mode == PORT_VLAN_TRUNK ? -1
2395             : s->vlan >= 0 && s->vlan <= 4095 ? s->vlan
2396             : 0);
2397     if (vlan != bundle->vlan) {
2398         bundle->vlan = vlan;
2399         need_flush = true;
2400     }
2401
2402     /* Get trunked VLANs. */
2403     switch (s->vlan_mode) {
2404     case PORT_VLAN_ACCESS:
2405         trunks = NULL;
2406         break;
2407
2408     case PORT_VLAN_TRUNK:
2409         trunks = CONST_CAST(unsigned long *, s->trunks);
2410         break;
2411
2412     case PORT_VLAN_NATIVE_UNTAGGED:
2413     case PORT_VLAN_NATIVE_TAGGED:
2414         if (vlan != 0 && (!s->trunks
2415                           || !bitmap_is_set(s->trunks, vlan)
2416                           || bitmap_is_set(s->trunks, 0))) {
2417             /* Force trunking the native VLAN and prohibit trunking VLAN 0. */
2418             if (s->trunks) {
2419                 trunks = bitmap_clone(s->trunks, 4096);
2420             } else {
2421                 trunks = bitmap_allocate1(4096);
2422             }
2423             bitmap_set1(trunks, vlan);
2424             bitmap_set0(trunks, 0);
2425         } else {
2426             trunks = CONST_CAST(unsigned long *, s->trunks);
2427         }
2428         break;
2429
2430     default:
2431         OVS_NOT_REACHED();
2432     }
2433     if (!vlan_bitmap_equal(trunks, bundle->trunks)) {
2434         free(bundle->trunks);
2435         if (trunks == s->trunks) {
2436             bundle->trunks = vlan_bitmap_clone(trunks);
2437         } else {
2438             bundle->trunks = trunks;
2439             trunks = NULL;
2440         }
2441         need_flush = true;
2442     }
2443     if (trunks != s->trunks) {
2444         free(trunks);
2445     }
2446
2447     /* Bonding. */
2448     if (!list_is_short(&bundle->ports)) {
2449         bundle->ofproto->has_bonded_bundles = true;
2450         if (bundle->bond) {
2451             if (bond_reconfigure(bundle->bond, s->bond)) {
2452                 ofproto->backer->need_revalidate = REV_RECONFIGURE;
2453             }
2454         } else {
2455             bundle->bond = bond_create(s->bond, ofproto);
2456             ofproto->backer->need_revalidate = REV_RECONFIGURE;
2457         }
2458
2459         LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
2460             bond_slave_register(bundle->bond, port,
2461                                 port->up.ofp_port, port->up.netdev);
2462         }
2463     } else {
2464         bond_unref(bundle->bond);
2465         bundle->bond = NULL;
2466     }
2467
2468     /* If we changed something that would affect MAC learning, un-learn
2469      * everything on this port and force flow revalidation. */
2470     if (need_flush) {
2471         bundle_flush_macs(bundle, false);
2472     }
2473
2474     return 0;
2475 }
2476
2477 static void
2478 bundle_remove(struct ofport *port_)
2479 {
2480     struct ofport_dpif *port = ofport_dpif_cast(port_);
2481     struct ofbundle *bundle = port->bundle;
2482
2483     if (bundle) {
2484         bundle_del_port(port);
2485         if (list_is_empty(&bundle->ports)) {
2486             bundle_destroy(bundle);
2487         } else if (list_is_short(&bundle->ports)) {
2488             bond_unref(bundle->bond);
2489             bundle->bond = NULL;
2490         }
2491     }
2492 }
2493
2494 static void
2495 send_pdu_cb(void *port_, const void *pdu, size_t pdu_size)
2496 {
2497     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 10);
2498     struct ofport_dpif *port = port_;
2499     uint8_t ea[ETH_ADDR_LEN];
2500     int error;
2501
2502     error = netdev_get_etheraddr(port->up.netdev, ea);
2503     if (!error) {
2504         struct ofpbuf packet;
2505         void *packet_pdu;
2506
2507         ofpbuf_init(&packet, 0);
2508         packet_pdu = eth_compose(&packet, eth_addr_lacp, ea, ETH_TYPE_LACP,
2509                                  pdu_size);
2510         memcpy(packet_pdu, pdu, pdu_size);
2511
2512         ofproto_dpif_send_packet(port, &packet);
2513         ofpbuf_uninit(&packet);
2514     } else {
2515         VLOG_ERR_RL(&rl, "port %s: cannot obtain Ethernet address of iface "
2516                     "%s (%s)", port->bundle->name,
2517                     netdev_get_name(port->up.netdev), ovs_strerror(error));
2518     }
2519 }
2520
2521 static void
2522 bundle_send_learning_packets(struct ofbundle *bundle)
2523 {
2524     struct ofproto_dpif *ofproto = bundle->ofproto;
2525     struct ofpbuf *learning_packet;
2526     int error, n_packets, n_errors;
2527     struct mac_entry *e;
2528     struct list packets;
2529
2530     list_init(&packets);
2531     ovs_rwlock_rdlock(&ofproto->ml->rwlock);
2532     LIST_FOR_EACH (e, lru_node, &ofproto->ml->lrus) {
2533         if (e->port.p != bundle) {
2534             void *port_void;
2535
2536             learning_packet = bond_compose_learning_packet(bundle->bond,
2537                                                            e->mac, e->vlan,
2538                                                            &port_void);
2539             /* Temporarily use 'frame' as a private pointer (see below). */
2540             ovs_assert(learning_packet->frame == ofpbuf_data(learning_packet));
2541             learning_packet->frame = port_void;
2542             list_push_back(&packets, &learning_packet->list_node);
2543         }
2544     }
2545     ovs_rwlock_unlock(&ofproto->ml->rwlock);
2546
2547     error = n_packets = n_errors = 0;
2548     LIST_FOR_EACH (learning_packet, list_node, &packets) {
2549         int ret;
2550         void *port_void = learning_packet->frame;
2551
2552         /* Restore 'frame'. */
2553         learning_packet->frame = ofpbuf_data(learning_packet);
2554         ret = ofproto_dpif_send_packet(port_void, learning_packet);
2555         if (ret) {
2556             error = ret;
2557             n_errors++;
2558         }
2559         n_packets++;
2560     }
2561     ofpbuf_list_delete(&packets);
2562
2563     if (n_errors) {
2564         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2565         VLOG_WARN_RL(&rl, "bond %s: %d errors sending %d gratuitous learning "
2566                      "packets, last error was: %s",
2567                      bundle->name, n_errors, n_packets, ovs_strerror(error));
2568     } else {
2569         VLOG_DBG("bond %s: sent %d gratuitous learning packets",
2570                  bundle->name, n_packets);
2571     }
2572 }
2573
2574 static void
2575 bundle_run(struct ofbundle *bundle)
2576 {
2577     if (bundle->lacp) {
2578         lacp_run(bundle->lacp, send_pdu_cb);
2579     }
2580     if (bundle->bond) {
2581         struct ofport_dpif *port;
2582
2583         LIST_FOR_EACH (port, bundle_node, &bundle->ports) {
2584             bond_slave_set_may_enable(bundle->bond, port, port->may_enable);
2585         }
2586
2587         if (bond_run(bundle->bond, lacp_status(bundle->lacp))) {
2588             bundle->ofproto->backer->need_revalidate = REV_BOND;
2589         }
2590
2591         if (bond_should_send_learning_packets(bundle->bond)) {
2592             bundle_send_learning_packets(bundle);
2593         }
2594     }
2595 }
2596
2597 static void
2598 bundle_wait(struct ofbundle *bundle)
2599 {
2600     if (bundle->lacp) {
2601         lacp_wait(bundle->lacp);
2602     }
2603     if (bundle->bond) {
2604         bond_wait(bundle->bond);
2605     }
2606 }
2607 \f
2608 /* Mirrors. */
2609
2610 static int
2611 mirror_set__(struct ofproto *ofproto_, void *aux,
2612              const struct ofproto_mirror_settings *s)
2613 {
2614     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2615     struct ofbundle **srcs, **dsts;
2616     int error;
2617     size_t i;
2618
2619     if (!s) {
2620         mirror_destroy(ofproto->mbridge, aux);
2621         return 0;
2622     }
2623
2624     srcs = xmalloc(s->n_srcs * sizeof *srcs);
2625     dsts = xmalloc(s->n_dsts * sizeof *dsts);
2626
2627     for (i = 0; i < s->n_srcs; i++) {
2628         srcs[i] = bundle_lookup(ofproto, s->srcs[i]);
2629     }
2630
2631     for (i = 0; i < s->n_dsts; i++) {
2632         dsts[i] = bundle_lookup(ofproto, s->dsts[i]);
2633     }
2634
2635     error = mirror_set(ofproto->mbridge, aux, s->name, srcs, s->n_srcs, dsts,
2636                        s->n_dsts, s->src_vlans,
2637                        bundle_lookup(ofproto, s->out_bundle), s->out_vlan);
2638     free(srcs);
2639     free(dsts);
2640     return error;
2641 }
2642
2643 static int
2644 mirror_get_stats__(struct ofproto *ofproto, void *aux,
2645                    uint64_t *packets, uint64_t *bytes)
2646 {
2647     return mirror_get_stats(ofproto_dpif_cast(ofproto)->mbridge, aux, packets,
2648                             bytes);
2649 }
2650
2651 static int
2652 set_flood_vlans(struct ofproto *ofproto_, unsigned long *flood_vlans)
2653 {
2654     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2655     ovs_rwlock_wrlock(&ofproto->ml->rwlock);
2656     if (mac_learning_set_flood_vlans(ofproto->ml, flood_vlans)) {
2657         mac_learning_flush(ofproto->ml);
2658     }
2659     ovs_rwlock_unlock(&ofproto->ml->rwlock);
2660     return 0;
2661 }
2662
2663 static bool
2664 is_mirror_output_bundle(const struct ofproto *ofproto_, void *aux)
2665 {
2666     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2667     struct ofbundle *bundle = bundle_lookup(ofproto, aux);
2668     return bundle && mirror_bundle_out(ofproto->mbridge, bundle) != 0;
2669 }
2670
2671 static void
2672 forward_bpdu_changed(struct ofproto *ofproto_)
2673 {
2674     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2675     ofproto->backer->need_revalidate = REV_RECONFIGURE;
2676 }
2677
2678 static void
2679 set_mac_table_config(struct ofproto *ofproto_, unsigned int idle_time,
2680                      size_t max_entries)
2681 {
2682     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2683     ovs_rwlock_wrlock(&ofproto->ml->rwlock);
2684     mac_learning_set_idle_time(ofproto->ml, idle_time);
2685     mac_learning_set_max_entries(ofproto->ml, max_entries);
2686     ovs_rwlock_unlock(&ofproto->ml->rwlock);
2687 }
2688 \f
2689 /* Ports. */
2690
2691 static struct ofport_dpif *
2692 get_ofp_port(const struct ofproto_dpif *ofproto, ofp_port_t ofp_port)
2693 {
2694     struct ofport *ofport = ofproto_get_port(&ofproto->up, ofp_port);
2695     return ofport ? ofport_dpif_cast(ofport) : NULL;
2696 }
2697
2698 static void
2699 ofproto_port_from_dpif_port(struct ofproto_dpif *ofproto,
2700                             struct ofproto_port *ofproto_port,
2701                             struct dpif_port *dpif_port)
2702 {
2703     ofproto_port->name = dpif_port->name;
2704     ofproto_port->type = dpif_port->type;
2705     ofproto_port->ofp_port = odp_port_to_ofp_port(ofproto, dpif_port->port_no);
2706 }
2707
2708 static void
2709 ofport_update_peer(struct ofport_dpif *ofport)
2710 {
2711     const struct ofproto_dpif *ofproto;
2712     struct dpif_backer *backer;
2713     char *peer_name;
2714
2715     if (!netdev_vport_is_patch(ofport->up.netdev)) {
2716         return;
2717     }
2718
2719     backer = ofproto_dpif_cast(ofport->up.ofproto)->backer;
2720     backer->need_revalidate = REV_RECONFIGURE;
2721
2722     if (ofport->peer) {
2723         ofport->peer->peer = NULL;
2724         ofport->peer = NULL;
2725     }
2726
2727     peer_name = netdev_vport_patch_peer(ofport->up.netdev);
2728     if (!peer_name) {
2729         return;
2730     }
2731
2732     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
2733         struct ofport *peer_ofport;
2734         struct ofport_dpif *peer;
2735         char *peer_peer;
2736
2737         if (ofproto->backer != backer) {
2738             continue;
2739         }
2740
2741         peer_ofport = shash_find_data(&ofproto->up.port_by_name, peer_name);
2742         if (!peer_ofport) {
2743             continue;
2744         }
2745
2746         peer = ofport_dpif_cast(peer_ofport);
2747         peer_peer = netdev_vport_patch_peer(peer->up.netdev);
2748         if (peer_peer && !strcmp(netdev_get_name(ofport->up.netdev),
2749                                  peer_peer)) {
2750             ofport->peer = peer;
2751             ofport->peer->peer = ofport;
2752         }
2753         free(peer_peer);
2754
2755         break;
2756     }
2757     free(peer_name);
2758 }
2759
2760 static void
2761 port_run(struct ofport_dpif *ofport)
2762 {
2763     long long int carrier_seq = netdev_get_carrier_resets(ofport->up.netdev);
2764     bool carrier_changed = carrier_seq != ofport->carrier_seq;
2765     bool enable = netdev_get_carrier(ofport->up.netdev);
2766     bool cfm_enable = false;
2767     bool bfd_enable = false;
2768
2769     ofport->carrier_seq = carrier_seq;
2770
2771     if (ofport->cfm) {
2772         int cfm_opup = cfm_get_opup(ofport->cfm);
2773
2774         cfm_enable = !cfm_get_fault(ofport->cfm);
2775
2776         if (cfm_opup >= 0) {
2777             cfm_enable = cfm_enable && cfm_opup;
2778         }
2779     }
2780
2781     if (ofport->bfd) {
2782         bfd_enable = bfd_forwarding(ofport->bfd);
2783     }
2784
2785     if (ofport->bfd || ofport->cfm) {
2786         enable = enable && (cfm_enable || bfd_enable);
2787     }
2788
2789     if (ofport->bundle) {
2790         enable = enable && lacp_slave_may_enable(ofport->bundle->lacp, ofport);
2791         if (carrier_changed) {
2792             lacp_slave_carrier_changed(ofport->bundle->lacp, ofport);
2793         }
2794     }
2795
2796     if (ofport->may_enable != enable) {
2797         struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2798         ofproto->backer->need_revalidate = REV_PORT_TOGGLED;
2799     }
2800
2801     ofport->may_enable = enable;
2802 }
2803
2804 static int
2805 port_query_by_name(const struct ofproto *ofproto_, const char *devname,
2806                    struct ofproto_port *ofproto_port)
2807 {
2808     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2809     struct dpif_port dpif_port;
2810     int error;
2811
2812     if (sset_contains(&ofproto->ghost_ports, devname)) {
2813         const char *type = netdev_get_type_from_name(devname);
2814
2815         /* We may be called before ofproto->up.port_by_name is populated with
2816          * the appropriate ofport.  For this reason, we must get the name and
2817          * type from the netdev layer directly. */
2818         if (type) {
2819             const struct ofport *ofport;
2820
2821             ofport = shash_find_data(&ofproto->up.port_by_name, devname);
2822             ofproto_port->ofp_port = ofport ? ofport->ofp_port : OFPP_NONE;
2823             ofproto_port->name = xstrdup(devname);
2824             ofproto_port->type = xstrdup(type);
2825             return 0;
2826         }
2827         return ENODEV;
2828     }
2829
2830     if (!sset_contains(&ofproto->ports, devname)) {
2831         return ENODEV;
2832     }
2833     error = dpif_port_query_by_name(ofproto->backer->dpif,
2834                                     devname, &dpif_port);
2835     if (!error) {
2836         ofproto_port_from_dpif_port(ofproto, ofproto_port, &dpif_port);
2837     }
2838     return error;
2839 }
2840
2841 static int
2842 port_add(struct ofproto *ofproto_, struct netdev *netdev)
2843 {
2844     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2845     const char *devname = netdev_get_name(netdev);
2846     char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
2847     const char *dp_port_name;
2848
2849     if (netdev_vport_is_patch(netdev)) {
2850         sset_add(&ofproto->ghost_ports, netdev_get_name(netdev));
2851         return 0;
2852     }
2853
2854     dp_port_name = netdev_vport_get_dpif_port(netdev, namebuf, sizeof namebuf);
2855     if (!dpif_port_exists(ofproto->backer->dpif, dp_port_name)) {
2856         odp_port_t port_no = ODPP_NONE;
2857         int error;
2858
2859         error = dpif_port_add(ofproto->backer->dpif, netdev, &port_no);
2860         if (error) {
2861             return error;
2862         }
2863         if (netdev_get_tunnel_config(netdev)) {
2864             simap_put(&ofproto->backer->tnl_backers,
2865                       dp_port_name, odp_to_u32(port_no));
2866         }
2867     }
2868
2869     if (netdev_get_tunnel_config(netdev)) {
2870         sset_add(&ofproto->ghost_ports, devname);
2871     } else {
2872         sset_add(&ofproto->ports, devname);
2873     }
2874     return 0;
2875 }
2876
2877 static int
2878 port_del(struct ofproto *ofproto_, ofp_port_t ofp_port)
2879 {
2880     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2881     struct ofport_dpif *ofport = get_ofp_port(ofproto, ofp_port);
2882     int error = 0;
2883
2884     if (!ofport) {
2885         return 0;
2886     }
2887
2888     sset_find_and_delete(&ofproto->ghost_ports,
2889                          netdev_get_name(ofport->up.netdev));
2890     ofproto->backer->need_revalidate = REV_RECONFIGURE;
2891     if (!ofport->is_tunnel && !netdev_vport_is_patch(ofport->up.netdev)) {
2892         error = dpif_port_del(ofproto->backer->dpif, ofport->odp_port);
2893         if (!error) {
2894             /* The caller is going to close ofport->up.netdev.  If this is a
2895              * bonded port, then the bond is using that netdev, so remove it
2896              * from the bond.  The client will need to reconfigure everything
2897              * after deleting ports, so then the slave will get re-added. */
2898             bundle_remove(&ofport->up);
2899         }
2900     }
2901     return error;
2902 }
2903
2904 static int
2905 port_get_stats(const struct ofport *ofport_, struct netdev_stats *stats)
2906 {
2907     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
2908     int error;
2909
2910     error = netdev_get_stats(ofport->up.netdev, stats);
2911
2912     if (!error && ofport_->ofp_port == OFPP_LOCAL) {
2913         struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
2914
2915         ovs_mutex_lock(&ofproto->stats_mutex);
2916         /* ofproto->stats.tx_packets represents packets that we created
2917          * internally and sent to some port (e.g. packets sent with
2918          * ofproto_dpif_send_packet()).  Account for them as if they had
2919          * come from OFPP_LOCAL and got forwarded. */
2920
2921         if (stats->rx_packets != UINT64_MAX) {
2922             stats->rx_packets += ofproto->stats.tx_packets;
2923         }
2924
2925         if (stats->rx_bytes != UINT64_MAX) {
2926             stats->rx_bytes += ofproto->stats.tx_bytes;
2927         }
2928
2929         /* ofproto->stats.rx_packets represents packets that were received on
2930          * some port and we processed internally and dropped (e.g. STP).
2931          * Account for them as if they had been forwarded to OFPP_LOCAL. */
2932
2933         if (stats->tx_packets != UINT64_MAX) {
2934             stats->tx_packets += ofproto->stats.rx_packets;
2935         }
2936
2937         if (stats->tx_bytes != UINT64_MAX) {
2938             stats->tx_bytes += ofproto->stats.rx_bytes;
2939         }
2940         ovs_mutex_unlock(&ofproto->stats_mutex);
2941     }
2942
2943     return error;
2944 }
2945
2946 struct port_dump_state {
2947     uint32_t bucket;
2948     uint32_t offset;
2949     bool ghost;
2950
2951     struct ofproto_port port;
2952     bool has_port;
2953 };
2954
2955 static int
2956 port_dump_start(const struct ofproto *ofproto_ OVS_UNUSED, void **statep)
2957 {
2958     *statep = xzalloc(sizeof(struct port_dump_state));
2959     return 0;
2960 }
2961
2962 static int
2963 port_dump_next(const struct ofproto *ofproto_, void *state_,
2964                struct ofproto_port *port)
2965 {
2966     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
2967     struct port_dump_state *state = state_;
2968     const struct sset *sset;
2969     struct sset_node *node;
2970
2971     if (state->has_port) {
2972         ofproto_port_destroy(&state->port);
2973         state->has_port = false;
2974     }
2975     sset = state->ghost ? &ofproto->ghost_ports : &ofproto->ports;
2976     while ((node = sset_at_position(sset, &state->bucket, &state->offset))) {
2977         int error;
2978
2979         error = port_query_by_name(ofproto_, node->name, &state->port);
2980         if (!error) {
2981             *port = state->port;
2982             state->has_port = true;
2983             return 0;
2984         } else if (error != ENODEV) {
2985             return error;
2986         }
2987     }
2988
2989     if (!state->ghost) {
2990         state->ghost = true;
2991         state->bucket = 0;
2992         state->offset = 0;
2993         return port_dump_next(ofproto_, state_, port);
2994     }
2995
2996     return EOF;
2997 }
2998
2999 static int
3000 port_dump_done(const struct ofproto *ofproto_ OVS_UNUSED, void *state_)
3001 {
3002     struct port_dump_state *state = state_;
3003
3004     if (state->has_port) {
3005         ofproto_port_destroy(&state->port);
3006     }
3007     free(state);
3008     return 0;
3009 }
3010
3011 static int
3012 port_poll(const struct ofproto *ofproto_, char **devnamep)
3013 {
3014     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3015
3016     if (ofproto->port_poll_errno) {
3017         int error = ofproto->port_poll_errno;
3018         ofproto->port_poll_errno = 0;
3019         return error;
3020     }
3021
3022     if (sset_is_empty(&ofproto->port_poll_set)) {
3023         return EAGAIN;
3024     }
3025
3026     *devnamep = sset_pop(&ofproto->port_poll_set);
3027     return 0;
3028 }
3029
3030 static void
3031 port_poll_wait(const struct ofproto *ofproto_)
3032 {
3033     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3034     dpif_port_poll_wait(ofproto->backer->dpif);
3035 }
3036
3037 static int
3038 port_is_lacp_current(const struct ofport *ofport_)
3039 {
3040     const struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
3041     return (ofport->bundle && ofport->bundle->lacp
3042             ? lacp_slave_is_current(ofport->bundle->lacp, ofport)
3043             : -1);
3044 }
3045 \f
3046 /* If 'rule' is an OpenFlow rule, that has expired according to OpenFlow rules,
3047  * then delete it entirely. */
3048 static void
3049 rule_expire(struct rule_dpif *rule)
3050     OVS_REQUIRES(ofproto_mutex)
3051 {
3052     uint16_t hard_timeout, idle_timeout;
3053     long long int now = time_msec();
3054     int reason = -1;
3055
3056     hard_timeout = rule->up.hard_timeout;
3057     idle_timeout = rule->up.idle_timeout;
3058
3059     /* Has 'rule' expired? */
3060     if (hard_timeout) {
3061         long long int modified;
3062
3063         ovs_mutex_lock(&rule->up.mutex);
3064         modified = rule->up.modified;
3065         ovs_mutex_unlock(&rule->up.mutex);
3066
3067         if (now > modified + hard_timeout * 1000) {
3068             reason = OFPRR_HARD_TIMEOUT;
3069         }
3070     }
3071
3072     if (reason < 0 && idle_timeout) {
3073         long long int used;
3074
3075         ovs_mutex_lock(&rule->stats_mutex);
3076         used = rule->stats.used;
3077         ovs_mutex_unlock(&rule->stats_mutex);
3078
3079         if (now > used + idle_timeout * 1000) {
3080             reason = OFPRR_IDLE_TIMEOUT;
3081         }
3082     }
3083
3084     if (reason >= 0) {
3085         COVERAGE_INC(ofproto_dpif_expired);
3086         ofproto_rule_expire(&rule->up, reason);
3087     }
3088 }
3089
3090 /* Executes, within 'ofproto', the actions in 'rule' or 'ofpacts' on 'packet'.
3091  * 'flow' must reflect the data in 'packet'. */
3092 int
3093 ofproto_dpif_execute_actions(struct ofproto_dpif *ofproto,
3094                              const struct flow *flow,
3095                              struct rule_dpif *rule,
3096                              const struct ofpact *ofpacts, size_t ofpacts_len,
3097                              struct ofpbuf *packet)
3098 {
3099     struct dpif_flow_stats stats;
3100     struct xlate_out xout;
3101     struct xlate_in xin;
3102     ofp_port_t in_port;
3103     struct dpif_execute execute;
3104     int error;
3105
3106     ovs_assert((rule != NULL) != (ofpacts != NULL));
3107
3108     dpif_flow_stats_extract(flow, packet, time_msec(), &stats);
3109
3110     if (rule) {
3111         rule_dpif_credit_stats(rule, &stats);
3112     }
3113
3114     xlate_in_init(&xin, ofproto, flow, rule, stats.tcp_flags, packet);
3115     xin.ofpacts = ofpacts;
3116     xin.ofpacts_len = ofpacts_len;
3117     xin.resubmit_stats = &stats;
3118     xlate_actions(&xin, &xout);
3119
3120     execute.actions = ofpbuf_data(&xout.odp_actions);
3121     execute.actions_len = ofpbuf_size(&xout.odp_actions);
3122     execute.packet = packet;
3123     execute.md = pkt_metadata_from_flow(flow);
3124     execute.needs_help = (xout.slow & SLOW_ACTION) != 0;
3125
3126     /* Fix up in_port. */
3127     in_port = flow->in_port.ofp_port;
3128     if (in_port == OFPP_NONE) {
3129         in_port = OFPP_LOCAL;
3130     }
3131     execute.md.in_port.odp_port = ofp_port_to_odp_port(ofproto, in_port);
3132
3133     error = dpif_execute(ofproto->backer->dpif, &execute);
3134
3135     xlate_out_uninit(&xout);
3136
3137     return error;
3138 }
3139
3140 void
3141 rule_dpif_credit_stats(struct rule_dpif *rule,
3142                        const struct dpif_flow_stats *stats)
3143 {
3144     ovs_mutex_lock(&rule->stats_mutex);
3145     rule->stats.n_packets += stats->n_packets;
3146     rule->stats.n_bytes += stats->n_bytes;
3147     rule->stats.used = MAX(rule->stats.used, stats->used);
3148     ovs_mutex_unlock(&rule->stats_mutex);
3149 }
3150
3151 ovs_be64
3152 rule_dpif_get_flow_cookie(const struct rule_dpif *rule)
3153     OVS_REQUIRES(rule->up.mutex)
3154 {
3155     return rule->up.flow_cookie;
3156 }
3157
3158 void
3159 rule_dpif_reduce_timeouts(struct rule_dpif *rule, uint16_t idle_timeout,
3160                      uint16_t hard_timeout)
3161 {
3162     ofproto_rule_reduce_timeouts(&rule->up, idle_timeout, hard_timeout);
3163 }
3164
3165 /* Returns 'rule''s actions.  The caller owns a reference on the returned
3166  * actions and must eventually release it (with rule_actions_unref()) to avoid
3167  * a memory leak. */
3168 const struct rule_actions *
3169 rule_dpif_get_actions(const struct rule_dpif *rule)
3170 {
3171     return rule_get_actions(&rule->up);
3172 }
3173
3174 /* Sets 'rule''s recirculation id. */
3175 static void
3176 rule_dpif_set_recirc_id(struct rule_dpif *rule, uint32_t id)
3177     OVS_REQUIRES(rule->up.mutex)
3178 {
3179     ovs_assert(!rule->recirc_id);
3180     rule->recirc_id = id;
3181 }
3182
3183 /* Returns 'rule''s recirculation id. */
3184 uint32_t
3185 rule_dpif_get_recirc_id(struct rule_dpif *rule)
3186     OVS_REQUIRES(rule->up.mutex)
3187 {
3188     if (!rule->recirc_id) {
3189         struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
3190
3191         rule_dpif_set_recirc_id(rule, ofproto_dpif_alloc_recirc_id(ofproto));
3192     }
3193     return rule->recirc_id;
3194 }
3195
3196 /* Sets 'rule''s recirculation id. */
3197 void
3198 rule_set_recirc_id(struct rule *rule_, uint32_t id)
3199 {
3200     struct rule_dpif *rule = rule_dpif_cast(rule_);
3201
3202     ovs_mutex_lock(&rule->up.mutex);
3203     rule_dpif_set_recirc_id(rule, id);
3204     ovs_mutex_unlock(&rule->up.mutex);
3205 }
3206
3207 /* Lookup 'flow' in table 0 of 'ofproto''s classifier.
3208  * If 'wc' is non-null, sets the fields that were relevant as part of
3209  * the lookup. Returns the table_id where a match or miss occurred.
3210  *
3211  * The return value will be zero unless there was a miss and
3212  * OFPTC11_TABLE_MISS_CONTINUE is in effect for the sequence of tables
3213  * where misses occur.
3214  *
3215  * The rule is returned in '*rule', which is valid at least until the next
3216  * RCU quiescent period.  If the '*rule' needs to stay around longer,
3217  * a non-zero 'take_ref' must be passed in to cause a reference to be taken
3218  * on it before this returns. */
3219 uint8_t
3220 rule_dpif_lookup(struct ofproto_dpif *ofproto, struct flow *flow,
3221                  struct flow_wildcards *wc, struct rule_dpif **rule,
3222                  bool take_ref, const struct dpif_flow_stats *stats)
3223 {
3224     enum rule_dpif_lookup_verdict verdict;
3225     enum ofputil_port_config config = 0;
3226     uint8_t table_id;
3227
3228     if (ofproto_dpif_get_enable_recirc(ofproto)) {
3229         /* Always exactly match recirc_id since datapath supports
3230          * recirculation.  */
3231         if (wc) {
3232             wc->masks.recirc_id = UINT32_MAX;
3233         }
3234
3235         /* Start looking up from internal table for post recirculation flows
3236          * or packets. We can also simply send all, including normal flows
3237          * or packets to the internal table. They will not match any post
3238          * recirculation rules except the 'catch all' rule that resubmit
3239          * them to table 0.
3240          *
3241          * As an optimization, we send normal flows and packets to table 0
3242          * directly, saving one table lookup.  */
3243         table_id = flow->recirc_id ? TBL_INTERNAL : 0;
3244     } else {
3245         table_id = 0;
3246     }
3247
3248     verdict = rule_dpif_lookup_from_table(ofproto, flow, wc, true,
3249                                           &table_id, rule, take_ref, stats);
3250
3251     switch (verdict) {
3252     case RULE_DPIF_LOOKUP_VERDICT_MATCH:
3253         return table_id;
3254     case RULE_DPIF_LOOKUP_VERDICT_CONTROLLER: {
3255         struct ofport_dpif *port;
3256
3257         port = get_ofp_port(ofproto, flow->in_port.ofp_port);
3258         if (!port) {
3259             VLOG_WARN_RL(&rl, "packet-in on unknown OpenFlow port %"PRIu16,
3260                          flow->in_port.ofp_port);
3261         }
3262         config = port ? port->up.pp.config : 0;
3263         break;
3264     }
3265     case RULE_DPIF_LOOKUP_VERDICT_DROP:
3266         config = OFPUTIL_PC_NO_PACKET_IN;
3267         break;
3268     case RULE_DPIF_LOOKUP_VERDICT_DEFAULT:
3269         if (!connmgr_wants_packet_in_on_miss(ofproto->up.connmgr)) {
3270             config = OFPUTIL_PC_NO_PACKET_IN;
3271         }
3272         break;
3273     default:
3274         OVS_NOT_REACHED();
3275     }
3276
3277     choose_miss_rule(config, ofproto->miss_rule,
3278                      ofproto->no_packet_in_rule, rule, take_ref);
3279     return table_id;
3280 }
3281
3282 /* The returned rule is valid at least until the next RCU quiescent period.
3283  * If the '*rule' needs to stay around longer, a non-zero 'take_ref' must be
3284  * passed in to cause a reference to be taken on it before this returns. */
3285 static struct rule_dpif *
3286 rule_dpif_lookup_in_table(struct ofproto_dpif *ofproto, uint8_t table_id,
3287                           const struct flow *flow, struct flow_wildcards *wc,
3288                           bool take_ref)
3289 {
3290     struct classifier *cls = &ofproto->up.tables[table_id].cls;
3291     const struct cls_rule *cls_rule;
3292     struct rule_dpif *rule;
3293
3294     fat_rwlock_rdlock(&cls->rwlock);
3295     if (ofproto->up.frag_handling != OFPC_FRAG_NX_MATCH) {
3296         if (wc) {
3297             memset(&wc->masks.dl_type, 0xff, sizeof wc->masks.dl_type);
3298             if (is_ip_any(flow)) {
3299                 wc->masks.nw_frag |= FLOW_NW_FRAG_MASK;
3300             }
3301         }
3302
3303         if (flow->nw_frag & FLOW_NW_FRAG_ANY) {
3304             if (ofproto->up.frag_handling == OFPC_FRAG_NORMAL) {
3305                 /* We must pretend that transport ports are unavailable. */
3306                 struct flow ofpc_normal_flow = *flow;
3307                 ofpc_normal_flow.tp_src = htons(0);
3308                 ofpc_normal_flow.tp_dst = htons(0);
3309                 cls_rule = classifier_lookup(cls, &ofpc_normal_flow, wc);
3310             } else {
3311                 /* Must be OFPC_FRAG_DROP (we don't have OFPC_FRAG_REASM). */
3312                 cls_rule = &ofproto->drop_frags_rule->up.cr;
3313             }
3314         } else {
3315             cls_rule = classifier_lookup(cls, flow, wc);
3316         }
3317     } else {
3318         cls_rule = classifier_lookup(cls, flow, wc);
3319     }
3320
3321     rule = rule_dpif_cast(rule_from_cls_rule(cls_rule));
3322     if (take_ref) {
3323         rule_dpif_ref(rule);
3324     }
3325     fat_rwlock_unlock(&cls->rwlock);
3326
3327     return rule;
3328 }
3329
3330 /* Look up 'flow' in 'ofproto''s classifier starting from table '*table_id'.
3331  * Stores the rule that was found in '*rule', or NULL if none was found.
3332  * Updates 'wc', if nonnull, to reflect the fields that were used during the
3333  * lookup.
3334  *
3335  * If 'honor_table_miss' is true, the first lookup occurs in '*table_id', but
3336  * if none is found then the table miss configuration for that table is
3337  * honored, which can result in additional lookups in other OpenFlow tables.
3338  * In this case the function updates '*table_id' to reflect the final OpenFlow
3339  * table that was searched.
3340  *
3341  * If 'honor_table_miss' is false, then only one table lookup occurs, in
3342  * '*table_id'.
3343  *
3344  * Returns:
3345  *
3346  *    - RULE_DPIF_LOOKUP_VERDICT_MATCH if a rule (in '*rule') was found.
3347  *
3348  *    - RULE_OFPTC_TABLE_MISS_CONTROLLER if no rule was found and either:
3349  *      + 'honor_table_miss' is false
3350  *      + a table miss configuration specified that the packet should be
3351  *        sent to the controller in this case.
3352  *
3353  *    - RULE_DPIF_LOOKUP_VERDICT_DROP if no rule was found, 'honor_table_miss'
3354  *      is true and a table miss configuration specified that the packet
3355  *      should be dropped in this case.
3356  *
3357  *    - RULE_DPIF_LOOKUP_VERDICT_DEFAULT if no rule was found,
3358  *      'honor_table_miss' is true and a table miss configuration has
3359  *      not been specified in this case.
3360  *
3361  * The rule is returned in '*rule', which is valid at least until the next
3362  * RCU quiescent period.  If the '*rule' needs to stay around longer,
3363  * a non-zero 'take_ref' must be passed in to cause a reference to be taken
3364  * on it before this returns. */
3365 enum rule_dpif_lookup_verdict
3366 rule_dpif_lookup_from_table(struct ofproto_dpif *ofproto,
3367                             const struct flow *flow,
3368                             struct flow_wildcards *wc,
3369                             bool honor_table_miss,
3370                             uint8_t *table_id, struct rule_dpif **rule,
3371                             bool take_ref, const struct dpif_flow_stats *stats)
3372 {
3373     uint8_t next_id;
3374
3375     for (next_id = *table_id;
3376          next_id < ofproto->up.n_tables;
3377          next_id++, next_id += (next_id == TBL_INTERNAL))
3378     {
3379         *table_id = next_id;
3380         *rule = rule_dpif_lookup_in_table(ofproto, *table_id, flow, wc,
3381                                           take_ref);
3382         if (stats) {
3383             struct oftable *tbl = &ofproto->up.tables[next_id];
3384             atomic_ulong *stat = *rule ? &tbl->n_matched : &tbl->n_missed;
3385             unsigned long orig;
3386             atomic_add(stat, stats->n_packets, &orig);
3387         }
3388         if (*rule) {
3389             return RULE_DPIF_LOOKUP_VERDICT_MATCH;
3390         } else if (!honor_table_miss) {
3391             return RULE_DPIF_LOOKUP_VERDICT_CONTROLLER;
3392         } else {
3393             switch (ofproto_table_get_config(&ofproto->up, *table_id)) {
3394             case OFPROTO_TABLE_MISS_CONTINUE:
3395                 break;
3396
3397             case OFPROTO_TABLE_MISS_CONTROLLER:
3398                 return RULE_DPIF_LOOKUP_VERDICT_CONTROLLER;
3399
3400             case OFPROTO_TABLE_MISS_DROP:
3401                 return RULE_DPIF_LOOKUP_VERDICT_DROP;
3402
3403             case OFPROTO_TABLE_MISS_DEFAULT:
3404                 return RULE_DPIF_LOOKUP_VERDICT_DEFAULT;
3405             }
3406         }
3407     }
3408
3409     return RULE_DPIF_LOOKUP_VERDICT_CONTROLLER;
3410 }
3411
3412 /* Given a port configuration (specified as zero if there's no port), chooses
3413  * which of 'miss_rule' and 'no_packet_in_rule' should be used in case of a
3414  * flow table miss.
3415  *
3416  * The rule is returned in '*rule', which is valid at least until the next
3417  * RCU quiescent period.  If the '*rule' needs to stay around longer,
3418  * a reference must be taken on it (rule_dpif_ref()).
3419  */
3420 void
3421 choose_miss_rule(enum ofputil_port_config config, struct rule_dpif *miss_rule,
3422                  struct rule_dpif *no_packet_in_rule, struct rule_dpif **rule,
3423                  bool take_ref)
3424 {
3425     *rule = config & OFPUTIL_PC_NO_PACKET_IN ? no_packet_in_rule : miss_rule;
3426     if (take_ref) {
3427         rule_dpif_ref(*rule);
3428     }
3429 }
3430
3431 static void
3432 complete_operation(struct rule_dpif *rule)
3433     OVS_REQUIRES(ofproto_mutex)
3434 {
3435     struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
3436
3437     ofproto->backer->need_revalidate = REV_FLOW_TABLE;
3438 }
3439
3440 static struct rule_dpif *rule_dpif_cast(const struct rule *rule)
3441 {
3442     return rule ? CONTAINER_OF(rule, struct rule_dpif, up) : NULL;
3443 }
3444
3445 static struct rule *
3446 rule_alloc(void)
3447 {
3448     struct rule_dpif *rule = xmalloc(sizeof *rule);
3449     return &rule->up;
3450 }
3451
3452 static void
3453 rule_dealloc(struct rule *rule_)
3454 {
3455     struct rule_dpif *rule = rule_dpif_cast(rule_);
3456     free(rule);
3457 }
3458
3459 static enum ofperr
3460 rule_construct(struct rule *rule_)
3461     OVS_NO_THREAD_SAFETY_ANALYSIS
3462 {
3463     struct rule_dpif *rule = rule_dpif_cast(rule_);
3464     ovs_mutex_init_adaptive(&rule->stats_mutex);
3465     rule->stats.n_packets = 0;
3466     rule->stats.n_bytes = 0;
3467     rule->stats.used = rule->up.modified;
3468     rule->recirc_id = 0;
3469
3470     return 0;
3471 }
3472
3473 static enum ofperr
3474 rule_insert(struct rule *rule_)
3475     OVS_REQUIRES(ofproto_mutex)
3476 {
3477     struct rule_dpif *rule = rule_dpif_cast(rule_);
3478     complete_operation(rule);
3479     return 0;
3480 }
3481
3482 static void
3483 rule_delete(struct rule *rule_)
3484     OVS_REQUIRES(ofproto_mutex)
3485 {
3486     struct rule_dpif *rule = rule_dpif_cast(rule_);
3487     complete_operation(rule);
3488 }
3489
3490 static void
3491 rule_destruct(struct rule *rule_)
3492 {
3493     struct rule_dpif *rule = rule_dpif_cast(rule_);
3494
3495     ovs_mutex_destroy(&rule->stats_mutex);
3496     if (rule->recirc_id) {
3497         struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
3498
3499         ofproto_dpif_free_recirc_id(ofproto, rule->recirc_id);
3500     }
3501 }
3502
3503 static void
3504 rule_get_stats(struct rule *rule_, uint64_t *packets, uint64_t *bytes,
3505                long long int *used)
3506 {
3507     struct rule_dpif *rule = rule_dpif_cast(rule_);
3508
3509     ovs_mutex_lock(&rule->stats_mutex);
3510     *packets = rule->stats.n_packets;
3511     *bytes = rule->stats.n_bytes;
3512     *used = rule->stats.used;
3513     ovs_mutex_unlock(&rule->stats_mutex);
3514 }
3515
3516 static void
3517 rule_dpif_execute(struct rule_dpif *rule, const struct flow *flow,
3518                   struct ofpbuf *packet)
3519 {
3520     struct ofproto_dpif *ofproto = ofproto_dpif_cast(rule->up.ofproto);
3521
3522     ofproto_dpif_execute_actions(ofproto, flow, rule, NULL, 0, packet);
3523 }
3524
3525 static enum ofperr
3526 rule_execute(struct rule *rule, const struct flow *flow,
3527              struct ofpbuf *packet)
3528 {
3529     rule_dpif_execute(rule_dpif_cast(rule), flow, packet);
3530     ofpbuf_delete(packet);
3531     return 0;
3532 }
3533
3534 static void
3535 rule_modify_actions(struct rule *rule_, bool reset_counters)
3536     OVS_REQUIRES(ofproto_mutex)
3537 {
3538     struct rule_dpif *rule = rule_dpif_cast(rule_);
3539
3540     if (reset_counters) {
3541         ovs_mutex_lock(&rule->stats_mutex);
3542         rule->stats.n_packets = 0;
3543         rule->stats.n_bytes = 0;
3544         ovs_mutex_unlock(&rule->stats_mutex);
3545     }
3546
3547     complete_operation(rule);
3548 }
3549
3550 static struct group_dpif *group_dpif_cast(const struct ofgroup *group)
3551 {
3552     return group ? CONTAINER_OF(group, struct group_dpif, up) : NULL;
3553 }
3554
3555 static struct ofgroup *
3556 group_alloc(void)
3557 {
3558     struct group_dpif *group = xzalloc(sizeof *group);
3559     return &group->up;
3560 }
3561
3562 static void
3563 group_dealloc(struct ofgroup *group_)
3564 {
3565     struct group_dpif *group = group_dpif_cast(group_);
3566     free(group);
3567 }
3568
3569 static void
3570 group_construct_stats(struct group_dpif *group)
3571     OVS_REQUIRES(group->stats_mutex)
3572 {
3573     struct ofputil_bucket *bucket;
3574     const struct list *buckets;
3575
3576     group->packet_count = 0;
3577     group->byte_count = 0;
3578
3579     group_dpif_get_buckets(group, &buckets);
3580     LIST_FOR_EACH (bucket, list_node, buckets) {
3581         bucket->stats.packet_count = 0;
3582         bucket->stats.byte_count = 0;
3583     }
3584 }
3585
3586 void
3587 group_dpif_credit_stats(struct group_dpif *group,
3588                         struct ofputil_bucket *bucket,
3589                         const struct dpif_flow_stats *stats)
3590 {
3591     ovs_mutex_lock(&group->stats_mutex);
3592     group->packet_count += stats->n_packets;
3593     group->byte_count += stats->n_bytes;
3594     if (bucket) {
3595         bucket->stats.packet_count += stats->n_packets;
3596         bucket->stats.byte_count += stats->n_bytes;
3597     } else { /* Credit to all buckets */
3598         const struct list *buckets;
3599
3600         group_dpif_get_buckets(group, &buckets);
3601         LIST_FOR_EACH (bucket, list_node, buckets) {
3602             bucket->stats.packet_count += stats->n_packets;
3603             bucket->stats.byte_count += stats->n_bytes;
3604         }
3605     }
3606     ovs_mutex_unlock(&group->stats_mutex);
3607 }
3608
3609 static enum ofperr
3610 group_construct(struct ofgroup *group_)
3611 {
3612     struct group_dpif *group = group_dpif_cast(group_);
3613     const struct ofputil_bucket *bucket;
3614
3615     /* Prevent group chaining because our locking structure makes it hard to
3616      * implement deadlock-free.  (See xlate_group_resource_check().) */
3617     LIST_FOR_EACH (bucket, list_node, &group->up.buckets) {
3618         const struct ofpact *a;
3619
3620         OFPACT_FOR_EACH (a, bucket->ofpacts, bucket->ofpacts_len) {
3621             if (a->type == OFPACT_GROUP) {
3622                 return OFPERR_OFPGMFC_CHAINING_UNSUPPORTED;
3623             }
3624         }
3625     }
3626
3627     ovs_mutex_init_adaptive(&group->stats_mutex);
3628     ovs_mutex_lock(&group->stats_mutex);
3629     group_construct_stats(group);
3630     ovs_mutex_unlock(&group->stats_mutex);
3631     return 0;
3632 }
3633
3634 static void
3635 group_destruct(struct ofgroup *group_)
3636 {
3637     struct group_dpif *group = group_dpif_cast(group_);
3638     ovs_mutex_destroy(&group->stats_mutex);
3639 }
3640
3641 static enum ofperr
3642 group_modify(struct ofgroup *group_)
3643 {
3644     struct ofproto_dpif *ofproto = ofproto_dpif_cast(group_->ofproto);
3645
3646     ofproto->backer->need_revalidate = REV_FLOW_TABLE;
3647
3648     return 0;
3649 }
3650
3651 static enum ofperr
3652 group_get_stats(const struct ofgroup *group_, struct ofputil_group_stats *ogs)
3653 {
3654     struct group_dpif *group = group_dpif_cast(group_);
3655     struct ofputil_bucket *bucket;
3656     const struct list *buckets;
3657     struct bucket_counter *bucket_stats;
3658
3659     ovs_mutex_lock(&group->stats_mutex);
3660     ogs->packet_count = group->packet_count;
3661     ogs->byte_count = group->byte_count;
3662
3663     group_dpif_get_buckets(group, &buckets);
3664     bucket_stats = ogs->bucket_stats;
3665     LIST_FOR_EACH (bucket, list_node, buckets) {
3666         bucket_stats->packet_count = bucket->stats.packet_count;
3667         bucket_stats->byte_count = bucket->stats.byte_count;
3668         bucket_stats++;
3669     }
3670     ovs_mutex_unlock(&group->stats_mutex);
3671
3672     return 0;
3673 }
3674
3675 /* If the group exists, this function increments the groups's reference count.
3676  *
3677  * Make sure to call group_dpif_unref() after no longer needing to maintain
3678  * a reference to the group. */
3679 bool
3680 group_dpif_lookup(struct ofproto_dpif *ofproto, uint32_t group_id,
3681                   struct group_dpif **group)
3682 {
3683     struct ofgroup *ofgroup;
3684     bool found;
3685
3686     found = ofproto_group_lookup(&ofproto->up, group_id, &ofgroup);
3687     *group = found ?  group_dpif_cast(ofgroup) : NULL;
3688
3689     return found;
3690 }
3691
3692 void
3693 group_dpif_get_buckets(const struct group_dpif *group,
3694                        const struct list **buckets)
3695 {
3696     *buckets = &group->up.buckets;
3697 }
3698
3699 enum ofp11_group_type
3700 group_dpif_get_type(const struct group_dpif *group)
3701 {
3702     return group->up.type;
3703 }
3704 \f
3705 /* Sends 'packet' out 'ofport'.
3706  * May modify 'packet'.
3707  * Returns 0 if successful, otherwise a positive errno value. */
3708 int
3709 ofproto_dpif_send_packet(const struct ofport_dpif *ofport, struct ofpbuf *packet)
3710 {
3711     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport->up.ofproto);
3712     int error;
3713
3714     error = xlate_send_packet(ofport, packet);
3715
3716     ovs_mutex_lock(&ofproto->stats_mutex);
3717     ofproto->stats.tx_packets++;
3718     ofproto->stats.tx_bytes += ofpbuf_size(packet);
3719     ovs_mutex_unlock(&ofproto->stats_mutex);
3720     return error;
3721 }
3722 \f
3723 static bool
3724 set_frag_handling(struct ofproto *ofproto_,
3725                   enum ofp_config_flags frag_handling)
3726 {
3727     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3728     if (frag_handling != OFPC_FRAG_REASM) {
3729         ofproto->backer->need_revalidate = REV_RECONFIGURE;
3730         return true;
3731     } else {
3732         return false;
3733     }
3734 }
3735
3736 static enum ofperr
3737 packet_out(struct ofproto *ofproto_, struct ofpbuf *packet,
3738            const struct flow *flow,
3739            const struct ofpact *ofpacts, size_t ofpacts_len)
3740 {
3741     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3742
3743     ofproto_dpif_execute_actions(ofproto, flow, NULL, ofpacts,
3744                                  ofpacts_len, packet);
3745     return 0;
3746 }
3747 \f
3748 /* NetFlow. */
3749
3750 static int
3751 set_netflow(struct ofproto *ofproto_,
3752             const struct netflow_options *netflow_options)
3753 {
3754     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3755
3756     if (netflow_options) {
3757         if (!ofproto->netflow) {
3758             ofproto->netflow = netflow_create();
3759             ofproto->backer->need_revalidate = REV_RECONFIGURE;
3760         }
3761         return netflow_set_options(ofproto->netflow, netflow_options);
3762     } else if (ofproto->netflow) {
3763         ofproto->backer->need_revalidate = REV_RECONFIGURE;
3764         netflow_unref(ofproto->netflow);
3765         ofproto->netflow = NULL;
3766     }
3767
3768     return 0;
3769 }
3770
3771 static void
3772 get_netflow_ids(const struct ofproto *ofproto_,
3773                 uint8_t *engine_type, uint8_t *engine_id)
3774 {
3775     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_);
3776
3777     dpif_get_netflow_ids(ofproto->backer->dpif, engine_type, engine_id);
3778 }
3779 \f
3780 static struct ofproto_dpif *
3781 ofproto_dpif_lookup(const char *name)
3782 {
3783     struct ofproto_dpif *ofproto;
3784
3785     HMAP_FOR_EACH_WITH_HASH (ofproto, all_ofproto_dpifs_node,
3786                              hash_string(name, 0), &all_ofproto_dpifs) {
3787         if (!strcmp(ofproto->up.name, name)) {
3788             return ofproto;
3789         }
3790     }
3791     return NULL;
3792 }
3793
3794 static void
3795 ofproto_unixctl_fdb_flush(struct unixctl_conn *conn, int argc,
3796                           const char *argv[], void *aux OVS_UNUSED)
3797 {
3798     struct ofproto_dpif *ofproto;
3799
3800     if (argc > 1) {
3801         ofproto = ofproto_dpif_lookup(argv[1]);
3802         if (!ofproto) {
3803             unixctl_command_reply_error(conn, "no such bridge");
3804             return;
3805         }
3806         ovs_rwlock_wrlock(&ofproto->ml->rwlock);
3807         mac_learning_flush(ofproto->ml);
3808         ovs_rwlock_unlock(&ofproto->ml->rwlock);
3809     } else {
3810         HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
3811             ovs_rwlock_wrlock(&ofproto->ml->rwlock);
3812             mac_learning_flush(ofproto->ml);
3813             ovs_rwlock_unlock(&ofproto->ml->rwlock);
3814         }
3815     }
3816
3817     unixctl_command_reply(conn, "table successfully flushed");
3818 }
3819
3820 static struct ofport_dpif *
3821 ofbundle_get_a_port(const struct ofbundle *bundle)
3822 {
3823     return CONTAINER_OF(list_front(&bundle->ports), struct ofport_dpif,
3824                         bundle_node);
3825 }
3826
3827 static void
3828 ofproto_unixctl_fdb_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
3829                          const char *argv[], void *aux OVS_UNUSED)
3830 {
3831     struct ds ds = DS_EMPTY_INITIALIZER;
3832     const struct ofproto_dpif *ofproto;
3833     const struct mac_entry *e;
3834
3835     ofproto = ofproto_dpif_lookup(argv[1]);
3836     if (!ofproto) {
3837         unixctl_command_reply_error(conn, "no such bridge");
3838         return;
3839     }
3840
3841     ds_put_cstr(&ds, " port  VLAN  MAC                Age\n");
3842     ovs_rwlock_rdlock(&ofproto->ml->rwlock);
3843     LIST_FOR_EACH (e, lru_node, &ofproto->ml->lrus) {
3844         struct ofbundle *bundle = e->port.p;
3845         char name[OFP_MAX_PORT_NAME_LEN];
3846
3847         ofputil_port_to_string(ofbundle_get_a_port(bundle)->up.ofp_port,
3848                                name, sizeof name);
3849         ds_put_format(&ds, "%5s  %4d  "ETH_ADDR_FMT"  %3d\n",
3850                       name, e->vlan, ETH_ADDR_ARGS(e->mac),
3851                       mac_entry_age(ofproto->ml, e));
3852     }
3853     ovs_rwlock_unlock(&ofproto->ml->rwlock);
3854     unixctl_command_reply(conn, ds_cstr(&ds));
3855     ds_destroy(&ds);
3856 }
3857
3858 struct trace_ctx {
3859     struct xlate_out xout;
3860     struct xlate_in xin;
3861     const struct flow *key;
3862     struct flow flow;
3863     struct flow_wildcards wc;
3864     struct ds *result;
3865 };
3866
3867 static void
3868 trace_format_rule(struct ds *result, int level, const struct rule_dpif *rule)
3869 {
3870     const struct rule_actions *actions;
3871     ovs_be64 cookie;
3872
3873     ds_put_char_multiple(result, '\t', level);
3874     if (!rule) {
3875         ds_put_cstr(result, "No match\n");
3876         return;
3877     }
3878
3879     ovs_mutex_lock(&rule->up.mutex);
3880     cookie = rule->up.flow_cookie;
3881     ovs_mutex_unlock(&rule->up.mutex);
3882
3883     ds_put_format(result, "Rule: table=%"PRIu8" cookie=%#"PRIx64" ",
3884                   rule ? rule->up.table_id : 0, ntohll(cookie));
3885     cls_rule_format(&rule->up.cr, result);
3886     ds_put_char(result, '\n');
3887
3888     actions = rule_dpif_get_actions(rule);
3889
3890     ds_put_char_multiple(result, '\t', level);
3891     ds_put_cstr(result, "OpenFlow actions=");
3892     ofpacts_format(actions->ofpacts, actions->ofpacts_len, result);
3893     ds_put_char(result, '\n');
3894 }
3895
3896 static void
3897 trace_format_flow(struct ds *result, int level, const char *title,
3898                   struct trace_ctx *trace)
3899 {
3900     ds_put_char_multiple(result, '\t', level);
3901     ds_put_format(result, "%s: ", title);
3902     /* Do not report unchanged flows for resubmits. */
3903     if ((level > 0 && flow_equal(&trace->xin.flow, &trace->flow))
3904         || (level == 0 && flow_equal(&trace->xin.flow, trace->key))) {
3905         ds_put_cstr(result, "unchanged");
3906     } else {
3907         flow_format(result, &trace->xin.flow);
3908         trace->flow = trace->xin.flow;
3909     }
3910     ds_put_char(result, '\n');
3911 }
3912
3913 static void
3914 trace_format_regs(struct ds *result, int level, const char *title,
3915                   struct trace_ctx *trace)
3916 {
3917     size_t i;
3918
3919     ds_put_char_multiple(result, '\t', level);
3920     ds_put_format(result, "%s:", title);
3921     for (i = 0; i < FLOW_N_REGS; i++) {
3922         ds_put_format(result, " reg%"PRIuSIZE"=0x%"PRIx32, i, trace->flow.regs[i]);
3923     }
3924     ds_put_char(result, '\n');
3925 }
3926
3927 static void
3928 trace_format_odp(struct ds *result, int level, const char *title,
3929                  struct trace_ctx *trace)
3930 {
3931     struct ofpbuf *odp_actions = &trace->xout.odp_actions;
3932
3933     ds_put_char_multiple(result, '\t', level);
3934     ds_put_format(result, "%s: ", title);
3935     format_odp_actions(result, ofpbuf_data(odp_actions),
3936                                ofpbuf_size(odp_actions));
3937     ds_put_char(result, '\n');
3938 }
3939
3940 static void
3941 trace_format_megaflow(struct ds *result, int level, const char *title,
3942                       struct trace_ctx *trace)
3943 {
3944     struct match match;
3945
3946     ds_put_char_multiple(result, '\t', level);
3947     ds_put_format(result, "%s: ", title);
3948     flow_wildcards_or(&trace->wc, &trace->xout.wc, &trace->wc);
3949     match_init(&match, trace->key, &trace->wc);
3950     match_format(&match, result, OFP_DEFAULT_PRIORITY);
3951     ds_put_char(result, '\n');
3952 }
3953
3954 static void
3955 trace_resubmit(struct xlate_in *xin, struct rule_dpif *rule, int recurse)
3956 {
3957     struct trace_ctx *trace = CONTAINER_OF(xin, struct trace_ctx, xin);
3958     struct ds *result = trace->result;
3959
3960     ds_put_char(result, '\n');
3961     trace_format_flow(result, recurse + 1, "Resubmitted flow", trace);
3962     trace_format_regs(result, recurse + 1, "Resubmitted regs", trace);
3963     trace_format_odp(result,  recurse + 1, "Resubmitted  odp", trace);
3964     trace_format_megaflow(result, recurse + 1, "Resubmitted megaflow", trace);
3965     trace_format_rule(result, recurse + 1, rule);
3966 }
3967
3968 static void
3969 trace_report(struct xlate_in *xin, const char *s, int recurse)
3970 {
3971     struct trace_ctx *trace = CONTAINER_OF(xin, struct trace_ctx, xin);
3972     struct ds *result = trace->result;
3973
3974     ds_put_char_multiple(result, '\t', recurse);
3975     ds_put_cstr(result, s);
3976     ds_put_char(result, '\n');
3977 }
3978
3979 /* Parses the 'argc' elements of 'argv', ignoring argv[0].  The following
3980  * forms are supported:
3981  *
3982  *     - [dpname] odp_flow [-generate | packet]
3983  *     - bridge br_flow [-generate | packet]
3984  *
3985  * On success, initializes '*ofprotop' and 'flow' and returns NULL.  On failure
3986  * returns a nonnull malloced error message. */
3987 static char * WARN_UNUSED_RESULT
3988 parse_flow_and_packet(int argc, const char *argv[],
3989                       struct ofproto_dpif **ofprotop, struct flow *flow,
3990                       struct ofpbuf **packetp)
3991 {
3992     const struct dpif_backer *backer = NULL;
3993     const char *error = NULL;
3994     char *m_err = NULL;
3995     struct simap port_names = SIMAP_INITIALIZER(&port_names);
3996     struct ofpbuf *packet;
3997     struct ofpbuf odp_key;
3998     struct ofpbuf odp_mask;
3999
4000     ofpbuf_init(&odp_key, 0);
4001     ofpbuf_init(&odp_mask, 0);
4002
4003     /* Handle "-generate" or a hex string as the last argument. */
4004     if (!strcmp(argv[argc - 1], "-generate")) {
4005         packet = ofpbuf_new(0);
4006         argc--;
4007     } else {
4008         error = eth_from_hex(argv[argc - 1], &packet);
4009         if (!error) {
4010             argc--;
4011         } else if (argc == 4) {
4012             /* The 3-argument form must end in "-generate' or a hex string. */
4013             goto exit;
4014         }
4015         error = NULL;
4016     }
4017
4018     /* odp_flow can have its in_port specified as a name instead of port no.
4019      * We do not yet know whether a given flow is a odp_flow or a br_flow.
4020      * But, to know whether a flow is odp_flow through odp_flow_from_string(),
4021      * we need to create a simap of name to port no. */
4022     if (argc == 3) {
4023         const char *dp_type;
4024         if (!strncmp(argv[1], "ovs-", 4)) {
4025             dp_type = argv[1] + 4;
4026         } else {
4027             dp_type = argv[1];
4028         }
4029         backer = shash_find_data(&all_dpif_backers, dp_type);
4030     } else if (argc == 2) {
4031         struct shash_node *node;
4032         if (shash_count(&all_dpif_backers) == 1) {
4033             node = shash_first(&all_dpif_backers);
4034             backer = node->data;
4035         }
4036     } else {
4037         error = "Syntax error";
4038         goto exit;
4039     }
4040     if (backer && backer->dpif) {
4041         struct dpif_port dpif_port;
4042         struct dpif_port_dump port_dump;
4043         DPIF_PORT_FOR_EACH (&dpif_port, &port_dump, backer->dpif) {
4044             simap_put(&port_names, dpif_port.name,
4045                       odp_to_u32(dpif_port.port_no));
4046         }
4047     }
4048
4049     /* Parse the flow and determine whether a datapath or
4050      * bridge is specified. If function odp_flow_key_from_string()
4051      * returns 0, the flow is a odp_flow. If function
4052      * parse_ofp_exact_flow() returns NULL, the flow is a br_flow. */
4053     if (!odp_flow_from_string(argv[argc - 1], &port_names,
4054                               &odp_key, &odp_mask)) {
4055         if (!backer) {
4056             error = "Cannot find the datapath";
4057             goto exit;
4058         }
4059
4060         if (xlate_receive(backer, NULL, ofpbuf_data(&odp_key),
4061                           ofpbuf_size(&odp_key), flow,
4062                           ofprotop, NULL, NULL, NULL, NULL)) {
4063             error = "Invalid datapath flow";
4064             goto exit;
4065         }
4066     } else {
4067         char *err = parse_ofp_exact_flow(flow, NULL, argv[argc - 1], NULL);
4068
4069         if (err) {
4070             m_err = xasprintf("Bad flow syntax: %s", err);
4071             free(err);
4072             goto exit;
4073         } else {
4074             if (argc != 3) {
4075                 error = "Must specify bridge name";
4076                 goto exit;
4077             }
4078
4079             *ofprotop = ofproto_dpif_lookup(argv[1]);
4080             if (!*ofprotop) {
4081                 error = "Unknown bridge name";
4082                 goto exit;
4083             }
4084         }
4085     }
4086
4087     /* Generate a packet, if requested. */
4088     if (packet) {
4089         if (!ofpbuf_size(packet)) {
4090             flow_compose(packet, flow);
4091         } else {
4092             struct pkt_metadata md = pkt_metadata_from_flow(flow);
4093
4094             /* Use the metadata from the flow and the packet argument
4095              * to reconstruct the flow. */
4096             flow_extract(packet, &md, flow);
4097         }
4098     }
4099
4100 exit:
4101     if (error && !m_err) {
4102         m_err = xstrdup(error);
4103     }
4104     if (m_err) {
4105         ofpbuf_delete(packet);
4106         packet = NULL;
4107     }
4108     *packetp = packet;
4109     ofpbuf_uninit(&odp_key);
4110     ofpbuf_uninit(&odp_mask);
4111     simap_destroy(&port_names);
4112     return m_err;
4113 }
4114
4115 static void
4116 ofproto_unixctl_trace(struct unixctl_conn *conn, int argc, const char *argv[],
4117                       void *aux OVS_UNUSED)
4118 {
4119     struct ofproto_dpif *ofproto;
4120     struct ofpbuf *packet;
4121     char *error;
4122     struct flow flow;
4123
4124     error = parse_flow_and_packet(argc, argv, &ofproto, &flow, &packet);
4125     if (!error) {
4126         struct ds result;
4127
4128         ds_init(&result);
4129         ofproto_trace(ofproto, &flow, packet, NULL, 0, &result);
4130         unixctl_command_reply(conn, ds_cstr(&result));
4131         ds_destroy(&result);
4132         ofpbuf_delete(packet);
4133     } else {
4134         unixctl_command_reply_error(conn, error);
4135         free(error);
4136     }
4137 }
4138
4139 static void
4140 ofproto_unixctl_trace_actions(struct unixctl_conn *conn, int argc,
4141                               const char *argv[], void *aux OVS_UNUSED)
4142 {
4143     enum ofputil_protocol usable_protocols;
4144     struct ofproto_dpif *ofproto;
4145     bool enforce_consistency;
4146     struct ofpbuf ofpacts;
4147     struct ofpbuf *packet;
4148     struct ds result;
4149     struct flow flow;
4150     uint16_t in_port;
4151
4152     /* Three kinds of error return values! */
4153     enum ofperr retval;
4154     char *error;
4155
4156     packet = NULL;
4157     ds_init(&result);
4158     ofpbuf_init(&ofpacts, 0);
4159
4160     /* Parse actions. */
4161     error = parse_ofpacts(argv[--argc], &ofpacts, &usable_protocols);
4162     if (error) {
4163         unixctl_command_reply_error(conn, error);
4164         free(error);
4165         goto exit;
4166     }
4167
4168     /* OpenFlow 1.1 and later suggest that the switch enforces certain forms of
4169      * consistency between the flow and the actions.  With -consistent, we
4170      * enforce consistency even for a flow supported in OpenFlow 1.0. */
4171     if (!strcmp(argv[1], "-consistent")) {
4172         enforce_consistency = true;
4173         argv++;
4174         argc--;
4175     } else {
4176         enforce_consistency = false;
4177     }
4178
4179     error = parse_flow_and_packet(argc, argv, &ofproto, &flow, &packet);
4180     if (error) {
4181         unixctl_command_reply_error(conn, error);
4182         free(error);
4183         goto exit;
4184     }
4185
4186     /* Do the same checks as handle_packet_out() in ofproto.c.
4187      *
4188      * We pass a 'table_id' of 0 to ofproto_check_ofpacts(), which isn't
4189      * strictly correct because these actions aren't in any table, but it's OK
4190      * because it 'table_id' is used only to check goto_table instructions, but
4191      * packet-outs take a list of actions and therefore it can't include
4192      * instructions.
4193      *
4194      * We skip the "meter" check here because meter is an instruction, not an
4195      * action, and thus cannot appear in ofpacts. */
4196     in_port = ofp_to_u16(flow.in_port.ofp_port);
4197     if (in_port >= ofproto->up.max_ports && in_port < ofp_to_u16(OFPP_MAX)) {
4198         unixctl_command_reply_error(conn, "invalid in_port");
4199         goto exit;
4200     }
4201     if (enforce_consistency) {
4202         retval = ofpacts_check_consistency(ofpbuf_data(&ofpacts), ofpbuf_size(&ofpacts),
4203                                            &flow, u16_to_ofp(ofproto->up.max_ports),
4204                                            0, 0, usable_protocols);
4205     } else {
4206         retval = ofpacts_check(ofpbuf_data(&ofpacts), ofpbuf_size(&ofpacts), &flow,
4207                                u16_to_ofp(ofproto->up.max_ports), 0, 0,
4208                                &usable_protocols);
4209     }
4210
4211     if (retval) {
4212         ds_clear(&result);
4213         ds_put_format(&result, "Bad actions: %s", ofperr_to_string(retval));
4214         unixctl_command_reply_error(conn, ds_cstr(&result));
4215         goto exit;
4216     }
4217
4218     ofproto_trace(ofproto, &flow, packet,
4219                   ofpbuf_data(&ofpacts), ofpbuf_size(&ofpacts), &result);
4220     unixctl_command_reply(conn, ds_cstr(&result));
4221
4222 exit:
4223     ds_destroy(&result);
4224     ofpbuf_delete(packet);
4225     ofpbuf_uninit(&ofpacts);
4226 }
4227
4228 /* Implements a "trace" through 'ofproto''s flow table, appending a textual
4229  * description of the results to 'ds'.
4230  *
4231  * The trace follows a packet with the specified 'flow' through the flow
4232  * table.  'packet' may be nonnull to trace an actual packet, with consequent
4233  * side effects (if it is nonnull then its flow must be 'flow').
4234  *
4235  * If 'ofpacts' is nonnull then its 'ofpacts_len' bytes specify the actions to
4236  * trace, otherwise the actions are determined by a flow table lookup. */
4237 static void
4238 ofproto_trace(struct ofproto_dpif *ofproto, struct flow *flow,
4239               const struct ofpbuf *packet,
4240               const struct ofpact ofpacts[], size_t ofpacts_len,
4241               struct ds *ds)
4242 {
4243     struct rule_dpif *rule;
4244     struct trace_ctx trace;
4245
4246     ds_put_format(ds, "Bridge: %s\n", ofproto->up.name);
4247     ds_put_cstr(ds, "Flow: ");
4248     flow_format(ds, flow);
4249     ds_put_char(ds, '\n');
4250
4251     flow_wildcards_init_catchall(&trace.wc);
4252     if (ofpacts) {
4253         rule = NULL;
4254     } else {
4255         rule_dpif_lookup(ofproto, flow, &trace.wc, &rule, false, NULL);
4256
4257         trace_format_rule(ds, 0, rule);
4258         if (rule == ofproto->miss_rule) {
4259             ds_put_cstr(ds, "\nNo match, flow generates \"packet in\"s.\n");
4260         } else if (rule == ofproto->no_packet_in_rule) {
4261             ds_put_cstr(ds, "\nNo match, packets dropped because "
4262                         "OFPPC_NO_PACKET_IN is set on in_port.\n");
4263         } else if (rule == ofproto->drop_frags_rule) {
4264             ds_put_cstr(ds, "\nPackets dropped because they are IP fragments "
4265                         "and the fragment handling mode is \"drop\".\n");
4266         }
4267     }
4268
4269     if (rule || ofpacts) {
4270         trace.result = ds;
4271         trace.key = flow; /* Original flow key, used for megaflow. */
4272         trace.flow = *flow; /* May be modified by actions. */
4273         xlate_in_init(&trace.xin, ofproto, flow, rule, ntohs(flow->tcp_flags),
4274                       packet);
4275         if (ofpacts) {
4276             trace.xin.ofpacts = ofpacts;
4277             trace.xin.ofpacts_len = ofpacts_len;
4278         }
4279         trace.xin.resubmit_hook = trace_resubmit;
4280         trace.xin.report_hook = trace_report;
4281
4282         xlate_actions(&trace.xin, &trace.xout);
4283
4284         ds_put_char(ds, '\n');
4285         trace_format_flow(ds, 0, "Final flow", &trace);
4286         trace_format_megaflow(ds, 0, "Megaflow", &trace);
4287
4288         ds_put_cstr(ds, "Datapath actions: ");
4289         format_odp_actions(ds, ofpbuf_data(&trace.xout.odp_actions),
4290                            ofpbuf_size(&trace.xout.odp_actions));
4291
4292         if (trace.xout.slow) {
4293             enum slow_path_reason slow;
4294
4295             ds_put_cstr(ds, "\nThis flow is handled by the userspace "
4296                         "slow path because it:");
4297
4298             slow = trace.xout.slow;
4299             while (slow) {
4300                 enum slow_path_reason bit = rightmost_1bit(slow);
4301
4302                 ds_put_format(ds, "\n\t- %s.",
4303                               slow_path_reason_to_explanation(bit));
4304
4305                 slow &= ~bit;
4306             }
4307         }
4308
4309         xlate_out_uninit(&trace.xout);
4310     }
4311 }
4312
4313 /* Store the current ofprotos in 'ofproto_shash'.  Returns a sorted list
4314  * of the 'ofproto_shash' nodes.  It is the responsibility of the caller
4315  * to destroy 'ofproto_shash' and free the returned value. */
4316 static const struct shash_node **
4317 get_ofprotos(struct shash *ofproto_shash)
4318 {
4319     const struct ofproto_dpif *ofproto;
4320
4321     HMAP_FOR_EACH (ofproto, all_ofproto_dpifs_node, &all_ofproto_dpifs) {
4322         char *name = xasprintf("%s@%s", ofproto->up.type, ofproto->up.name);
4323         shash_add_nocopy(ofproto_shash, name, ofproto);
4324     }
4325
4326     return shash_sort(ofproto_shash);
4327 }
4328
4329 static void
4330 ofproto_unixctl_dpif_dump_dps(struct unixctl_conn *conn, int argc OVS_UNUSED,
4331                               const char *argv[] OVS_UNUSED,
4332                               void *aux OVS_UNUSED)
4333 {
4334     struct ds ds = DS_EMPTY_INITIALIZER;
4335     struct shash ofproto_shash;
4336     const struct shash_node **sorted_ofprotos;
4337     int i;
4338
4339     shash_init(&ofproto_shash);
4340     sorted_ofprotos = get_ofprotos(&ofproto_shash);
4341     for (i = 0; i < shash_count(&ofproto_shash); i++) {
4342         const struct shash_node *node = sorted_ofprotos[i];
4343         ds_put_format(&ds, "%s\n", node->name);
4344     }
4345
4346     shash_destroy(&ofproto_shash);
4347     free(sorted_ofprotos);
4348
4349     unixctl_command_reply(conn, ds_cstr(&ds));
4350     ds_destroy(&ds);
4351 }
4352
4353 static void
4354 dpif_show_backer(const struct dpif_backer *backer, struct ds *ds)
4355 {
4356     const struct shash_node **ofprotos;
4357     struct dpif_dp_stats dp_stats;
4358     struct shash ofproto_shash;
4359     size_t i;
4360
4361     dpif_get_dp_stats(backer->dpif, &dp_stats);
4362
4363     ds_put_format(ds, "%s: hit:%"PRIu64" missed:%"PRIu64"\n",
4364                   dpif_name(backer->dpif), dp_stats.n_hit, dp_stats.n_missed);
4365
4366     shash_init(&ofproto_shash);
4367     ofprotos = get_ofprotos(&ofproto_shash);
4368     for (i = 0; i < shash_count(&ofproto_shash); i++) {
4369         struct ofproto_dpif *ofproto = ofprotos[i]->data;
4370         const struct shash_node **ports;
4371         size_t j;
4372
4373         if (ofproto->backer != backer) {
4374             continue;
4375         }
4376
4377         ds_put_format(ds, "\t%s:\n", ofproto->up.name);
4378
4379         ports = shash_sort(&ofproto->up.port_by_name);
4380         for (j = 0; j < shash_count(&ofproto->up.port_by_name); j++) {
4381             const struct shash_node *node = ports[j];
4382             struct ofport *ofport = node->data;
4383             struct smap config;
4384             odp_port_t odp_port;
4385
4386             ds_put_format(ds, "\t\t%s %u/", netdev_get_name(ofport->netdev),
4387                           ofport->ofp_port);
4388
4389             odp_port = ofp_port_to_odp_port(ofproto, ofport->ofp_port);
4390             if (odp_port != ODPP_NONE) {
4391                 ds_put_format(ds, "%"PRIu32":", odp_port);
4392             } else {
4393                 ds_put_cstr(ds, "none:");
4394             }
4395
4396             ds_put_format(ds, " (%s", netdev_get_type(ofport->netdev));
4397
4398             smap_init(&config);
4399             if (!netdev_get_config(ofport->netdev, &config)) {
4400                 const struct smap_node **nodes;
4401                 size_t i;
4402
4403                 nodes = smap_sort(&config);
4404                 for (i = 0; i < smap_count(&config); i++) {
4405                     const struct smap_node *node = nodes[i];
4406                     ds_put_format(ds, "%c %s=%s", i ? ',' : ':',
4407                                   node->key, node->value);
4408                 }
4409                 free(nodes);
4410             }
4411             smap_destroy(&config);
4412
4413             ds_put_char(ds, ')');
4414             ds_put_char(ds, '\n');
4415         }
4416         free(ports);
4417     }
4418     shash_destroy(&ofproto_shash);
4419     free(ofprotos);
4420 }
4421
4422 static void
4423 ofproto_unixctl_dpif_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
4424                           const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
4425 {
4426     struct ds ds = DS_EMPTY_INITIALIZER;
4427     const struct shash_node **backers;
4428     int i;
4429
4430     backers = shash_sort(&all_dpif_backers);
4431     for (i = 0; i < shash_count(&all_dpif_backers); i++) {
4432         dpif_show_backer(backers[i]->data, &ds);
4433     }
4434     free(backers);
4435
4436     unixctl_command_reply(conn, ds_cstr(&ds));
4437     ds_destroy(&ds);
4438 }
4439
4440 static bool
4441 ofproto_dpif_contains_flow(const struct ofproto_dpif *ofproto,
4442                            const struct nlattr *key, size_t key_len)
4443 {
4444     struct ofproto_dpif *ofp;
4445     struct flow flow;
4446
4447     xlate_receive(ofproto->backer, NULL, key, key_len, &flow, &ofp,
4448                   NULL, NULL, NULL, NULL);
4449     return ofp == ofproto;
4450 }
4451
4452 static void
4453 ofproto_unixctl_dpif_dump_flows(struct unixctl_conn *conn,
4454                                 int argc OVS_UNUSED, const char *argv[],
4455                                 void *aux OVS_UNUSED)
4456 {
4457     const struct ofproto_dpif *ofproto;
4458
4459     struct ds ds = DS_EMPTY_INITIALIZER;
4460     bool verbosity = false;
4461
4462     struct dpif_port dpif_port;
4463     struct dpif_port_dump port_dump;
4464     struct hmap portno_names;
4465
4466     struct dpif_flow_dump *flow_dump;
4467     struct dpif_flow_dump_thread *flow_dump_thread;
4468     struct dpif_flow f;
4469     int error;
4470
4471     ofproto = ofproto_dpif_lookup(argv[argc - 1]);
4472     if (!ofproto) {
4473         unixctl_command_reply_error(conn, "no such bridge");
4474         return;
4475     }
4476
4477     if (argc > 2 && !strcmp(argv[1], "-m")) {
4478         verbosity = true;
4479     }
4480
4481     hmap_init(&portno_names);
4482     DPIF_PORT_FOR_EACH (&dpif_port, &port_dump, ofproto->backer->dpif) {
4483         odp_portno_names_set(&portno_names, dpif_port.port_no, dpif_port.name);
4484     }
4485
4486     ds_init(&ds);
4487     flow_dump = dpif_flow_dump_create(ofproto->backer->dpif);
4488     flow_dump_thread = dpif_flow_dump_thread_create(flow_dump);
4489     while (dpif_flow_dump_next(flow_dump_thread, &f, 1)) {
4490         if (!ofproto_dpif_contains_flow(ofproto, f.key, f.key_len)) {
4491             continue;
4492         }
4493
4494         odp_flow_format(f.key, f.key_len, f.mask, f.mask_len,
4495                         &portno_names, &ds, verbosity);
4496         ds_put_cstr(&ds, ", ");
4497         dpif_flow_stats_format(&f.stats, &ds);
4498         ds_put_cstr(&ds, ", actions:");
4499         format_odp_actions(&ds, f.actions, f.actions_len);
4500         ds_put_char(&ds, '\n');
4501     }
4502     dpif_flow_dump_thread_destroy(flow_dump_thread);
4503     error = dpif_flow_dump_destroy(flow_dump);
4504
4505     if (error) {
4506         ds_clear(&ds);
4507         ds_put_format(&ds, "dpif/dump_flows failed: %s", ovs_strerror(errno));
4508         unixctl_command_reply_error(conn, ds_cstr(&ds));
4509     } else {
4510         unixctl_command_reply(conn, ds_cstr(&ds));
4511     }
4512     odp_portno_names_destroy(&portno_names);
4513     hmap_destroy(&portno_names);
4514     ds_destroy(&ds);
4515 }
4516
4517 static void
4518 ofproto_dpif_unixctl_init(void)
4519 {
4520     static bool registered;
4521     if (registered) {
4522         return;
4523     }
4524     registered = true;
4525
4526     unixctl_command_register(
4527         "ofproto/trace",
4528         "{[dp_name] odp_flow | bridge br_flow} [-generate|packet]",
4529         1, 3, ofproto_unixctl_trace, NULL);
4530     unixctl_command_register(
4531         "ofproto/trace-packet-out",
4532         "[-consistent] {[dp_name] odp_flow | bridge br_flow} [-generate|packet] actions",
4533         2, 6, ofproto_unixctl_trace_actions, NULL);
4534     unixctl_command_register("fdb/flush", "[bridge]", 0, 1,
4535                              ofproto_unixctl_fdb_flush, NULL);
4536     unixctl_command_register("fdb/show", "bridge", 1, 1,
4537                              ofproto_unixctl_fdb_show, NULL);
4538     unixctl_command_register("dpif/dump-dps", "", 0, 0,
4539                              ofproto_unixctl_dpif_dump_dps, NULL);
4540     unixctl_command_register("dpif/show", "", 0, 0, ofproto_unixctl_dpif_show,
4541                              NULL);
4542     unixctl_command_register("dpif/dump-flows", "[-m] bridge", 1, 2,
4543                              ofproto_unixctl_dpif_dump_flows, NULL);
4544 }
4545
4546 /* Returns true if 'table' is the table used for internal rules,
4547  * false otherwise. */
4548 bool
4549 table_is_internal(uint8_t table_id)
4550 {
4551     return table_id == TBL_INTERNAL;
4552 }
4553 \f
4554 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
4555  *
4556  * This is deprecated.  It is only for compatibility with broken device drivers
4557  * in old versions of Linux that do not properly support VLANs when VLAN
4558  * devices are not used.  When broken device drivers are no longer in
4559  * widespread use, we will delete these interfaces. */
4560
4561 static int
4562 set_realdev(struct ofport *ofport_, ofp_port_t realdev_ofp_port, int vid)
4563 {
4564     struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofport_->ofproto);
4565     struct ofport_dpif *ofport = ofport_dpif_cast(ofport_);
4566
4567     if (realdev_ofp_port == ofport->realdev_ofp_port
4568         && vid == ofport->vlandev_vid) {
4569         return 0;
4570     }
4571
4572     ofproto->backer->need_revalidate = REV_RECONFIGURE;
4573
4574     if (ofport->realdev_ofp_port) {
4575         vsp_remove(ofport);
4576     }
4577     if (realdev_ofp_port && ofport->bundle) {
4578         /* vlandevs are enslaved to their realdevs, so they are not allowed to
4579          * themselves be part of a bundle. */
4580         bundle_set(ofport_->ofproto, ofport->bundle, NULL);
4581     }
4582
4583     ofport->realdev_ofp_port = realdev_ofp_port;
4584     ofport->vlandev_vid = vid;
4585
4586     if (realdev_ofp_port) {
4587         vsp_add(ofport, realdev_ofp_port, vid);
4588     }
4589
4590     return 0;
4591 }
4592
4593 static uint32_t
4594 hash_realdev_vid(ofp_port_t realdev_ofp_port, int vid)
4595 {
4596     return hash_2words(ofp_to_u16(realdev_ofp_port), vid);
4597 }
4598
4599 bool
4600 ofproto_has_vlan_splinters(const struct ofproto_dpif *ofproto)
4601     OVS_EXCLUDED(ofproto->vsp_mutex)
4602 {
4603     /* hmap_is_empty is thread safe. */
4604     return !hmap_is_empty(&ofproto->realdev_vid_map);
4605 }
4606
4607
4608 static ofp_port_t
4609 vsp_realdev_to_vlandev__(const struct ofproto_dpif *ofproto,
4610                          ofp_port_t realdev_ofp_port, ovs_be16 vlan_tci)
4611     OVS_REQUIRES(ofproto->vsp_mutex)
4612 {
4613     if (!hmap_is_empty(&ofproto->realdev_vid_map)) {
4614         int vid = vlan_tci_to_vid(vlan_tci);
4615         const struct vlan_splinter *vsp;
4616
4617         HMAP_FOR_EACH_WITH_HASH (vsp, realdev_vid_node,
4618                                  hash_realdev_vid(realdev_ofp_port, vid),
4619                                  &ofproto->realdev_vid_map) {
4620             if (vsp->realdev_ofp_port == realdev_ofp_port
4621                 && vsp->vid == vid) {
4622                 return vsp->vlandev_ofp_port;
4623             }
4624         }
4625     }
4626     return realdev_ofp_port;
4627 }
4628
4629 /* Returns the OFP port number of the Linux VLAN device that corresponds to
4630  * 'vlan_tci' on the network device with port number 'realdev_ofp_port' in
4631  * 'struct ofport_dpif'.  For example, given 'realdev_ofp_port' of eth0 and
4632  * 'vlan_tci' 9, it would return the port number of eth0.9.
4633  *
4634  * Unless VLAN splinters are enabled for port 'realdev_ofp_port', this
4635  * function just returns its 'realdev_ofp_port' argument. */
4636 ofp_port_t
4637 vsp_realdev_to_vlandev(const struct ofproto_dpif *ofproto,
4638                        ofp_port_t realdev_ofp_port, ovs_be16 vlan_tci)
4639     OVS_EXCLUDED(ofproto->vsp_mutex)
4640 {
4641     ofp_port_t ret;
4642
4643     /* hmap_is_empty is thread safe, see if we can return immediately. */
4644     if (hmap_is_empty(&ofproto->realdev_vid_map)) {
4645         return realdev_ofp_port;
4646     }
4647     ovs_mutex_lock(&ofproto->vsp_mutex);
4648     ret = vsp_realdev_to_vlandev__(ofproto, realdev_ofp_port, vlan_tci);
4649     ovs_mutex_unlock(&ofproto->vsp_mutex);
4650     return ret;
4651 }
4652
4653 static struct vlan_splinter *
4654 vlandev_find(const struct ofproto_dpif *ofproto, ofp_port_t vlandev_ofp_port)
4655 {
4656     struct vlan_splinter *vsp;
4657
4658     HMAP_FOR_EACH_WITH_HASH (vsp, vlandev_node,
4659                              hash_ofp_port(vlandev_ofp_port),
4660                              &ofproto->vlandev_map) {
4661         if (vsp->vlandev_ofp_port == vlandev_ofp_port) {
4662             return vsp;
4663         }
4664     }
4665
4666     return NULL;
4667 }
4668
4669 /* Returns the OpenFlow port number of the "real" device underlying the Linux
4670  * VLAN device with OpenFlow port number 'vlandev_ofp_port' and stores the
4671  * VLAN VID of the Linux VLAN device in '*vid'.  For example, given
4672  * 'vlandev_ofp_port' of eth0.9, it would return the OpenFlow port number of
4673  * eth0 and store 9 in '*vid'.
4674  *
4675  * Returns 0 and does not modify '*vid' if 'vlandev_ofp_port' is not a Linux
4676  * VLAN device.  Unless VLAN splinters are enabled, this is what this function
4677  * always does.*/
4678 static ofp_port_t
4679 vsp_vlandev_to_realdev(const struct ofproto_dpif *ofproto,
4680                        ofp_port_t vlandev_ofp_port, int *vid)
4681     OVS_REQUIRES(ofproto->vsp_mutex)
4682 {
4683     if (!hmap_is_empty(&ofproto->vlandev_map)) {
4684         const struct vlan_splinter *vsp;
4685
4686         vsp = vlandev_find(ofproto, vlandev_ofp_port);
4687         if (vsp) {
4688             if (vid) {
4689                 *vid = vsp->vid;
4690             }
4691             return vsp->realdev_ofp_port;
4692         }
4693     }
4694     return 0;
4695 }
4696
4697 /* Given 'flow', a flow representing a packet received on 'ofproto', checks
4698  * whether 'flow->in_port' represents a Linux VLAN device.  If so, changes
4699  * 'flow->in_port' to the "real" device backing the VLAN device, sets
4700  * 'flow->vlan_tci' to the VLAN VID, and returns true.  Otherwise (which is
4701  * always the case unless VLAN splinters are enabled), returns false without
4702  * making any changes. */
4703 bool
4704 vsp_adjust_flow(const struct ofproto_dpif *ofproto, struct flow *flow)
4705     OVS_EXCLUDED(ofproto->vsp_mutex)
4706 {
4707     ofp_port_t realdev;
4708     int vid;
4709
4710     /* hmap_is_empty is thread safe. */
4711     if (hmap_is_empty(&ofproto->vlandev_map)) {
4712         return false;
4713     }
4714
4715     ovs_mutex_lock(&ofproto->vsp_mutex);
4716     realdev = vsp_vlandev_to_realdev(ofproto, flow->in_port.ofp_port, &vid);
4717     ovs_mutex_unlock(&ofproto->vsp_mutex);
4718     if (!realdev) {
4719         return false;
4720     }
4721
4722     /* Cause the flow to be processed as if it came in on the real device with
4723      * the VLAN device's VLAN ID. */
4724     flow->in_port.ofp_port = realdev;
4725     flow->vlan_tci = htons((vid & VLAN_VID_MASK) | VLAN_CFI);
4726     return true;
4727 }
4728
4729 static void
4730 vsp_remove(struct ofport_dpif *port)
4731 {
4732     struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
4733     struct vlan_splinter *vsp;
4734
4735     ovs_mutex_lock(&ofproto->vsp_mutex);
4736     vsp = vlandev_find(ofproto, port->up.ofp_port);
4737     if (vsp) {
4738         hmap_remove(&ofproto->vlandev_map, &vsp->vlandev_node);
4739         hmap_remove(&ofproto->realdev_vid_map, &vsp->realdev_vid_node);
4740         free(vsp);
4741
4742         port->realdev_ofp_port = 0;
4743     } else {
4744         VLOG_ERR("missing vlan device record");
4745     }
4746     ovs_mutex_unlock(&ofproto->vsp_mutex);
4747 }
4748
4749 static void
4750 vsp_add(struct ofport_dpif *port, ofp_port_t realdev_ofp_port, int vid)
4751 {
4752     struct ofproto_dpif *ofproto = ofproto_dpif_cast(port->up.ofproto);
4753
4754     ovs_mutex_lock(&ofproto->vsp_mutex);
4755     if (!vsp_vlandev_to_realdev(ofproto, port->up.ofp_port, NULL)
4756         && (vsp_realdev_to_vlandev__(ofproto, realdev_ofp_port, htons(vid))
4757             == realdev_ofp_port)) {
4758         struct vlan_splinter *vsp;
4759
4760         vsp = xmalloc(sizeof *vsp);
4761         vsp->realdev_ofp_port = realdev_ofp_port;
4762         vsp->vlandev_ofp_port = port->up.ofp_port;
4763         vsp->vid = vid;
4764
4765         port->realdev_ofp_port = realdev_ofp_port;
4766
4767         hmap_insert(&ofproto->vlandev_map, &vsp->vlandev_node,
4768                     hash_ofp_port(port->up.ofp_port));
4769         hmap_insert(&ofproto->realdev_vid_map, &vsp->realdev_vid_node,
4770                     hash_realdev_vid(realdev_ofp_port, vid));
4771     } else {
4772         VLOG_ERR("duplicate vlan device record");
4773     }
4774     ovs_mutex_unlock(&ofproto->vsp_mutex);
4775 }
4776
4777 static odp_port_t
4778 ofp_port_to_odp_port(const struct ofproto_dpif *ofproto, ofp_port_t ofp_port)
4779 {
4780     const struct ofport_dpif *ofport = get_ofp_port(ofproto, ofp_port);
4781     return ofport ? ofport->odp_port : ODPP_NONE;
4782 }
4783
4784 struct ofport_dpif *
4785 odp_port_to_ofport(const struct dpif_backer *backer, odp_port_t odp_port)
4786 {
4787     struct ofport_dpif *port;
4788
4789     ovs_rwlock_rdlock(&backer->odp_to_ofport_lock);
4790     HMAP_FOR_EACH_IN_BUCKET (port, odp_port_node, hash_odp_port(odp_port),
4791                              &backer->odp_to_ofport_map) {
4792         if (port->odp_port == odp_port) {
4793             ovs_rwlock_unlock(&backer->odp_to_ofport_lock);
4794             return port;
4795         }
4796     }
4797
4798     ovs_rwlock_unlock(&backer->odp_to_ofport_lock);
4799     return NULL;
4800 }
4801
4802 static ofp_port_t
4803 odp_port_to_ofp_port(const struct ofproto_dpif *ofproto, odp_port_t odp_port)
4804 {
4805     struct ofport_dpif *port;
4806
4807     port = odp_port_to_ofport(ofproto->backer, odp_port);
4808     if (port && &ofproto->up == port->up.ofproto) {
4809         return port->up.ofp_port;
4810     } else {
4811         return OFPP_NONE;
4812     }
4813 }
4814
4815 uint32_t
4816 ofproto_dpif_alloc_recirc_id(struct ofproto_dpif *ofproto)
4817 {
4818     struct dpif_backer *backer = ofproto->backer;
4819
4820     return  recirc_id_alloc(backer->rid_pool);
4821 }
4822
4823 void
4824 ofproto_dpif_free_recirc_id(struct ofproto_dpif *ofproto, uint32_t recirc_id)
4825 {
4826     struct dpif_backer *backer = ofproto->backer;
4827
4828     recirc_id_free(backer->rid_pool, recirc_id);
4829 }
4830
4831 int
4832 ofproto_dpif_add_internal_flow(struct ofproto_dpif *ofproto,
4833                                const struct match *match, int priority,
4834                                uint16_t idle_timeout,
4835                                const struct ofpbuf *ofpacts,
4836                                struct rule **rulep)
4837 {
4838     struct ofputil_flow_mod fm;
4839     struct rule_dpif *rule;
4840     int error;
4841
4842     fm.match = *match;
4843     fm.priority = priority;
4844     fm.new_cookie = htonll(0);
4845     fm.cookie = htonll(0);
4846     fm.cookie_mask = htonll(0);
4847     fm.modify_cookie = false;
4848     fm.table_id = TBL_INTERNAL;
4849     fm.command = OFPFC_ADD;
4850     fm.idle_timeout = idle_timeout;
4851     fm.hard_timeout = 0;
4852     fm.buffer_id = 0;
4853     fm.out_port = 0;
4854     fm.flags = OFPUTIL_FF_HIDDEN_FIELDS | OFPUTIL_FF_NO_READONLY;
4855     fm.ofpacts = ofpbuf_data(ofpacts);
4856     fm.ofpacts_len = ofpbuf_size(ofpacts);
4857
4858     error = ofproto_flow_mod(&ofproto->up, &fm);
4859     if (error) {
4860         VLOG_ERR_RL(&rl, "failed to add internal flow (%s)",
4861                     ofperr_to_string(error));
4862         *rulep = NULL;
4863         return error;
4864     }
4865
4866     rule = rule_dpif_lookup_in_table(ofproto, TBL_INTERNAL, &fm.match.flow,
4867                                      &fm.match.wc, false);
4868     if (rule) {
4869         *rulep = &rule->up;
4870     } else {
4871         OVS_NOT_REACHED();
4872     }
4873     return 0;
4874 }
4875
4876 int
4877 ofproto_dpif_delete_internal_flow(struct ofproto_dpif *ofproto,
4878                                   struct match *match, int priority)
4879 {
4880     struct ofputil_flow_mod fm;
4881     int error;
4882
4883     fm.match = *match;
4884     fm.priority = priority;
4885     fm.new_cookie = htonll(0);
4886     fm.cookie = htonll(0);
4887     fm.cookie_mask = htonll(0);
4888     fm.modify_cookie = false;
4889     fm.table_id = TBL_INTERNAL;
4890     fm.flags = OFPUTIL_FF_HIDDEN_FIELDS | OFPUTIL_FF_NO_READONLY;
4891     fm.command = OFPFC_DELETE_STRICT;
4892
4893     error = ofproto_flow_mod(&ofproto->up, &fm);
4894     if (error) {
4895         VLOG_ERR_RL(&rl, "failed to delete internal flow (%s)",
4896                     ofperr_to_string(error));
4897         return error;
4898     }
4899
4900     return 0;
4901 }
4902
4903 const struct ofproto_class ofproto_dpif_class = {
4904     init,
4905     enumerate_types,
4906     enumerate_names,
4907     del,
4908     port_open_type,
4909     type_run,
4910     type_wait,
4911     alloc,
4912     construct,
4913     destruct,
4914     dealloc,
4915     run,
4916     wait,
4917     NULL,                       /* get_memory_usage. */
4918     type_get_memory_usage,
4919     flush,
4920     get_features,
4921     get_tables,
4922     port_alloc,
4923     port_construct,
4924     port_destruct,
4925     port_dealloc,
4926     port_modified,
4927     port_reconfigured,
4928     port_query_by_name,
4929     port_add,
4930     port_del,
4931     port_get_stats,
4932     port_dump_start,
4933     port_dump_next,
4934     port_dump_done,
4935     port_poll,
4936     port_poll_wait,
4937     port_is_lacp_current,
4938     NULL,                       /* rule_choose_table */
4939     rule_alloc,
4940     rule_construct,
4941     rule_insert,
4942     rule_delete,
4943     rule_destruct,
4944     rule_dealloc,
4945     rule_get_stats,
4946     rule_execute,
4947     NULL,                       /* rule_premodify_actions */
4948     rule_modify_actions,
4949     set_frag_handling,
4950     packet_out,
4951     set_netflow,
4952     get_netflow_ids,
4953     set_sflow,
4954     set_ipfix,
4955     set_cfm,
4956     get_cfm_status,
4957     set_bfd,
4958     get_bfd_status,
4959     set_stp,
4960     get_stp_status,
4961     set_stp_port,
4962     get_stp_port_status,
4963     get_stp_port_stats,
4964     set_queues,
4965     bundle_set,
4966     bundle_remove,
4967     mirror_set__,
4968     mirror_get_stats__,
4969     set_flood_vlans,
4970     is_mirror_output_bundle,
4971     forward_bpdu_changed,
4972     set_mac_table_config,
4973     set_realdev,
4974     NULL,                       /* meter_get_features */
4975     NULL,                       /* meter_set */
4976     NULL,                       /* meter_get */
4977     NULL,                       /* meter_del */
4978     group_alloc,                /* group_alloc */
4979     group_construct,            /* group_construct */
4980     group_destruct,             /* group_destruct */
4981     group_dealloc,              /* group_dealloc */
4982     group_modify,               /* group_modify */
4983     group_get_stats,            /* group_get_stats */
4984 };