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