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