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