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