ofproto: Break apart into generic and hardware-specific parts.
[sliver-openvswitch.git] / vswitchd / bridge.c
1 /* Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #include <config.h>
17 #include "bridge.h"
18 #include "byte-order.h"
19 #include <assert.h>
20 #include <errno.h>
21 #include <arpa/inet.h>
22 #include <ctype.h>
23 #include <inttypes.h>
24 #include <sys/socket.h>
25 #include <net/if.h>
26 #include <openflow/openflow.h>
27 #include <signal.h>
28 #include <stdlib.h>
29 #include <strings.h>
30 #include <sys/stat.h>
31 #include <sys/socket.h>
32 #include <sys/types.h>
33 #include <unistd.h>
34 #include "bitmap.h"
35 #include "bond.h"
36 #include "cfm.h"
37 #include "classifier.h"
38 #include "coverage.h"
39 #include "daemon.h"
40 #include "dirs.h"
41 #include "dynamic-string.h"
42 #include "flow.h"
43 #include "hash.h"
44 #include "hmap.h"
45 #include "jsonrpc.h"
46 #include "lacp.h"
47 #include "list.h"
48 #include "mac-learning.h"
49 #include "netdev.h"
50 #include "netlink.h"
51 #include "odp-util.h"
52 #include "ofp-print.h"
53 #include "ofpbuf.h"
54 #include "ofproto/netflow.h"
55 #include "ofproto/ofproto.h"
56 #include "ovsdb-data.h"
57 #include "packets.h"
58 #include "poll-loop.h"
59 #include "process.h"
60 #include "sha1.h"
61 #include "shash.h"
62 #include "socket-util.h"
63 #include "stream-ssl.h"
64 #include "sset.h"
65 #include "svec.h"
66 #include "system-stats.h"
67 #include "timeval.h"
68 #include "util.h"
69 #include "unixctl.h"
70 #include "vconn.h"
71 #include "vswitchd/vswitch-idl.h"
72 #include "xenserver.h"
73 #include "vlog.h"
74 #include "sflow_api.h"
75 #include "vlan-bitmap.h"
76
77 VLOG_DEFINE_THIS_MODULE(bridge);
78
79 COVERAGE_DEFINE(bridge_reconfigure);
80
81 struct iface {
82     /* These members are always valid. */
83     struct list port_elem;      /* Element in struct port's "ifaces" list. */
84     struct hmap_node name_node; /* In struct bridge's "iface_by_name" hmap. */
85     struct port *port;          /* Containing port. */
86     char *name;                 /* Host network device name. */
87     tag_type tag;               /* Tag associated with this interface. */
88
89     /* These members are valid only after bridge_reconfigure() causes them to
90      * be initialized. */
91     struct hmap_node ofp_port_node; /* In struct bridge's "ifaces" hmap. */
92     int ofp_port;               /* OpenFlow port number, -1 if unknown. */
93     struct netdev *netdev;      /* Network device. */
94     const char *type;           /* Usually same as cfg->type. */
95     const struct ovsrec_interface *cfg;
96 };
97
98 struct mirror {
99     struct uuid uuid;           /* UUID of this "mirror" record in database. */
100     struct hmap_node hmap_node; /* In struct bridge's "mirrors" hmap. */
101     struct bridge *bridge;
102     char *name;
103 };
104
105 struct port {
106     struct bridge *bridge;
107     struct hmap_node hmap_node; /* Element in struct bridge's "ports" hmap. */
108     char *name;
109
110     const struct ovsrec_port *cfg;
111
112     /* An ordinary bridge port has 1 interface.
113      * A bridge port for bonding has at least 2 interfaces. */
114     struct list ifaces;         /* List of "struct iface"s. */
115 };
116
117 struct bridge {
118     struct hmap_node node;      /* In 'all_bridges'. */
119     char *name;                 /* User-specified arbitrary name. */
120     char *type;                 /* Datapath type. */
121     uint8_t ea[ETH_ADDR_LEN];   /* Bridge Ethernet Address. */
122     uint8_t default_ea[ETH_ADDR_LEN]; /* Default MAC. */
123     const struct ovsrec_bridge *cfg;
124
125     /* OpenFlow switch processing. */
126     struct ofproto *ofproto;    /* OpenFlow switch. */
127
128     /* Bridge ports. */
129     struct hmap ports;          /* "struct port"s indexed by name. */
130     struct hmap ifaces;         /* "struct iface"s indexed by ofp_port. */
131     struct hmap iface_by_name;  /* "struct iface"s indexed by name. */
132
133     /* Port mirroring. */
134     struct hmap mirrors;        /* "struct mirror" indexed by UUID. */
135
136     /* Synthetic local port if necessary. */
137     struct ovsrec_port synth_local_port;
138     struct ovsrec_interface synth_local_iface;
139     struct ovsrec_interface *synth_local_ifacep;
140 };
141
142 /* All bridges, indexed by name. */
143 static struct hmap all_bridges = HMAP_INITIALIZER(&all_bridges);
144
145 /* OVSDB IDL used to obtain configuration. */
146 static struct ovsdb_idl *idl;
147
148 /* Each time this timer expires, the bridge fetches systems and interface
149  * statistics and pushes them into the database. */
150 #define STATS_INTERVAL (5 * 1000) /* In milliseconds. */
151 static long long int stats_timer = LLONG_MIN;
152
153 /* Stores the time after which rate limited statistics may be written to the
154  * database.  Only updated when changes to the database require rate limiting.
155  */
156 #define DB_LIMIT_INTERVAL (1 * 1000) /* In milliseconds. */
157 static long long int db_limiter = LLONG_MIN;
158
159 static void add_del_bridges(const struct ovsrec_open_vswitch *);
160 static void bridge_del_ofprotos(void);
161 static bool bridge_add_ofprotos(struct bridge *);
162 static void bridge_create(const struct ovsrec_bridge *);
163 static void bridge_destroy(struct bridge *);
164 static struct bridge *bridge_lookup(const char *name);
165 static unixctl_cb_func bridge_unixctl_dump_flows;
166 static unixctl_cb_func bridge_unixctl_reconnect;
167 static size_t bridge_get_controllers(const struct bridge *br,
168                                      struct ovsrec_controller ***controllersp);
169 static void bridge_add_del_ports(struct bridge *);
170 static void bridge_add_ofproto_ports(struct bridge *);
171 static void bridge_del_ofproto_ports(struct bridge *);
172 static void bridge_refresh_ofp_port(struct bridge *);
173 static void bridge_configure_datapath_id(struct bridge *);
174 static void bridge_configure_netflow(struct bridge *);
175 static void bridge_configure_sflow(struct bridge *, int *sflow_bridge_number);
176 static void bridge_configure_remotes(struct bridge *,
177                                      const struct sockaddr_in *managers,
178                                      size_t n_managers);
179 static void bridge_pick_local_hw_addr(struct bridge *,
180                                       uint8_t ea[ETH_ADDR_LEN],
181                                       struct iface **hw_addr_iface);
182 static uint64_t bridge_pick_datapath_id(struct bridge *,
183                                         const uint8_t bridge_ea[ETH_ADDR_LEN],
184                                         struct iface *hw_addr_iface);
185 static uint64_t dpid_from_hash(const void *, size_t nbytes);
186 static bool bridge_has_bond_fake_iface(const struct bridge *,
187                                        const char *name);
188 static bool port_is_bond_fake_iface(const struct port *);
189
190 static unixctl_cb_func cfm_unixctl_show;
191 static unixctl_cb_func qos_unixctl_show;
192
193 static struct port *port_create(struct bridge *, const struct ovsrec_port *);
194 static void port_add_ifaces(struct port *);
195 static void port_del_ifaces(struct port *);
196 static void port_destroy(struct port *);
197 static struct port *port_lookup(const struct bridge *, const char *name);
198 static void port_configure(struct port *);
199 static struct lacp_settings *port_configure_lacp(struct port *,
200                                                  struct lacp_settings *);
201 static void port_configure_bond(struct port *, struct bond_settings *);
202
203 static void bridge_configure_mirrors(struct bridge *);
204 static struct mirror *mirror_create(struct bridge *,
205                                     const struct ovsrec_mirror *);
206 static void mirror_destroy(struct mirror *);
207 static bool mirror_configure(struct mirror *, const struct ovsrec_mirror *);
208
209 static void iface_configure_lacp(struct iface *, struct lacp_slave_settings *);
210 static struct iface *iface_create(struct port *port,
211                                   const struct ovsrec_interface *if_cfg);
212 static void iface_destroy(struct iface *);
213 static struct iface *iface_lookup(const struct bridge *, const char *name);
214 static struct iface *iface_find(const char *name);
215 static struct iface *iface_from_ofp_port(const struct bridge *,
216                                          uint16_t ofp_port);
217 static void iface_set_mac(struct iface *);
218 static void iface_set_ofport(const struct ovsrec_interface *, int64_t ofport);
219 static void iface_configure_qos(struct iface *, const struct ovsrec_qos *);
220 static void iface_configure_cfm(struct iface *);
221 static bool iface_refresh_cfm_stats(struct iface *iface);
222 static bool iface_get_carrier(const struct iface *);
223 static bool iface_is_synthetic(const struct iface *);
224
225 static void shash_from_ovs_idl_map(char **keys, char **values, size_t n,
226                                    struct shash *);
227 static void shash_to_ovs_idl_map(struct shash *,
228                                  char ***keys, char ***values, size_t *n);
229 \f
230 /* Public functions. */
231
232 /* Initializes the bridge module, configuring it to obtain its configuration
233  * from an OVSDB server accessed over 'remote', which should be a string in a
234  * form acceptable to ovsdb_idl_create(). */
235 void
236 bridge_init(const char *remote)
237 {
238     /* Create connection to database. */
239     idl = ovsdb_idl_create(remote, &ovsrec_idl_class, true);
240
241     ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_cur_cfg);
242     ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_statistics);
243     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_external_ids);
244     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_ovs_version);
245     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_db_version);
246     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_system_type);
247     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_system_version);
248
249     ovsdb_idl_omit_alert(idl, &ovsrec_bridge_col_datapath_id);
250     ovsdb_idl_omit(idl, &ovsrec_bridge_col_external_ids);
251
252     ovsdb_idl_omit(idl, &ovsrec_port_col_external_ids);
253     ovsdb_idl_omit(idl, &ovsrec_port_col_fake_bridge);
254
255     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_admin_state);
256     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_duplex);
257     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_link_speed);
258     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_link_state);
259     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_mtu);
260     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_ofport);
261     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_statistics);
262     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_status);
263     ovsdb_idl_omit(idl, &ovsrec_interface_col_external_ids);
264
265     ovsdb_idl_omit_alert(idl, &ovsrec_controller_col_is_connected);
266     ovsdb_idl_omit_alert(idl, &ovsrec_controller_col_role);
267     ovsdb_idl_omit_alert(idl, &ovsrec_controller_col_status);
268     ovsdb_idl_omit(idl, &ovsrec_controller_col_external_ids);
269
270     ovsdb_idl_omit_alert(idl, &ovsrec_maintenance_point_col_fault);
271
272     ovsdb_idl_omit_alert(idl, &ovsrec_monitor_col_fault);
273
274     ovsdb_idl_omit(idl, &ovsrec_qos_col_external_ids);
275
276     ovsdb_idl_omit(idl, &ovsrec_queue_col_external_ids);
277
278     ovsdb_idl_omit(idl, &ovsrec_mirror_col_external_ids);
279
280     ovsdb_idl_omit(idl, &ovsrec_netflow_col_external_ids);
281
282     ovsdb_idl_omit(idl, &ovsrec_sflow_col_external_ids);
283
284     ovsdb_idl_omit(idl, &ovsrec_manager_col_external_ids);
285     ovsdb_idl_omit(idl, &ovsrec_manager_col_inactivity_probe);
286     ovsdb_idl_omit(idl, &ovsrec_manager_col_is_connected);
287     ovsdb_idl_omit(idl, &ovsrec_manager_col_max_backoff);
288     ovsdb_idl_omit(idl, &ovsrec_manager_col_status);
289
290     ovsdb_idl_omit(idl, &ovsrec_ssl_col_external_ids);
291
292     /* Register unixctl commands. */
293     unixctl_command_register("cfm/show", cfm_unixctl_show, NULL);
294     unixctl_command_register("qos/show", qos_unixctl_show, NULL);
295     unixctl_command_register("bridge/dump-flows", bridge_unixctl_dump_flows,
296                              NULL);
297     unixctl_command_register("bridge/reconnect", bridge_unixctl_reconnect,
298                              NULL);
299     lacp_init();
300     bond_init();
301 }
302
303 void
304 bridge_exit(void)
305 {
306     struct bridge *br, *next_br;
307
308     HMAP_FOR_EACH_SAFE (br, next_br, node, &all_bridges) {
309         bridge_destroy(br);
310     }
311     ovsdb_idl_destroy(idl);
312 }
313
314 /* Looks at the list of managers in 'ovs_cfg' and extracts their remote IP
315  * addresses and ports into '*managersp' and '*n_managersp'.  The caller is
316  * responsible for freeing '*managersp' (with free()).
317  *
318  * You may be asking yourself "why does ovs-vswitchd care?", because
319  * ovsdb-server is responsible for connecting to the managers, and ovs-vswitchd
320  * should not be and in fact is not directly involved in that.  But
321  * ovs-vswitchd needs to make sure that ovsdb-server can reach the managers, so
322  * it has to tell in-band control where the managers are to enable that.
323  * (Thus, only managers connected in-band are collected.)
324  */
325 static void
326 collect_in_band_managers(const struct ovsrec_open_vswitch *ovs_cfg,
327                          struct sockaddr_in **managersp, size_t *n_managersp)
328 {
329     struct sockaddr_in *managers = NULL;
330     size_t n_managers = 0;
331     struct sset targets;
332     size_t i;
333
334     /* Collect all of the potential targets from the "targets" columns of the
335      * rows pointed to by "manager_options", excluding any that are
336      * out-of-band. */
337     sset_init(&targets);
338     for (i = 0; i < ovs_cfg->n_manager_options; i++) {
339         struct ovsrec_manager *m = ovs_cfg->manager_options[i];
340
341         if (m->connection_mode && !strcmp(m->connection_mode, "out-of-band")) {
342             sset_find_and_delete(&targets, m->target);
343         } else {
344             sset_add(&targets, m->target);
345         }
346     }
347
348     /* Now extract the targets' IP addresses. */
349     if (!sset_is_empty(&targets)) {
350         const char *target;
351
352         managers = xmalloc(sset_count(&targets) * sizeof *managers);
353         SSET_FOR_EACH (target, &targets) {
354             struct sockaddr_in *sin = &managers[n_managers];
355
356             if ((!strncmp(target, "tcp:", 4)
357                  && inet_parse_active(target + 4, JSONRPC_TCP_PORT, sin)) ||
358                 (!strncmp(target, "ssl:", 4)
359                  && inet_parse_active(target + 4, JSONRPC_SSL_PORT, sin))) {
360                 n_managers++;
361             }
362         }
363     }
364     sset_destroy(&targets);
365
366     *managersp = managers;
367     *n_managersp = n_managers;
368 }
369
370 static void
371 bridge_reconfigure(const struct ovsrec_open_vswitch *ovs_cfg)
372 {
373     struct sockaddr_in *managers;
374     struct bridge *br, *next;
375     int sflow_bridge_number;
376     size_t n_managers;
377
378     COVERAGE_INC(bridge_reconfigure);
379
380     /* Create and destroy "struct bridge"s, "struct port"s, and "struct
381      * iface"s according to 'ovs_cfg', with only very minimal configuration
382      * otherwise.
383      *
384      * This is purely an update to bridge data structures.  Nothing is pushed
385      * down to ofproto or lower layers. */
386     add_del_bridges(ovs_cfg);
387     HMAP_FOR_EACH (br, node, &all_bridges) {
388         bridge_add_del_ports(br);
389     }
390
391     /* Delete all datapaths and datapath ports that are no longer configured.
392      *
393      * The kernel will reject any attempt to add a given port to a datapath if
394      * that port already belongs to a different datapath, so we must do all
395      * port deletions before any port additions.  A datapath always has a
396      * "local port" so we must delete not-configured datapaths too. */
397     bridge_del_ofprotos();
398     HMAP_FOR_EACH (br, node, &all_bridges) {
399         if (br->ofproto) {
400             bridge_del_ofproto_ports(br);
401         }
402     }
403
404     /* Create datapaths and datapath ports that are missing.
405      *
406      * After this is done, we have our final set of bridges, ports, and
407      * interfaces.  Every "struct bridge" has an ofproto, every "struct port"
408      * has at least one iface, every "struct iface" has a valid ofp_port and
409      * netdev. */
410     HMAP_FOR_EACH_SAFE (br, next, node, &all_bridges) {
411         if (!br->ofproto && !bridge_add_ofprotos(br)) {
412             bridge_destroy(br);
413         }
414     }
415     HMAP_FOR_EACH (br, node, &all_bridges) {
416         bridge_refresh_ofp_port(br);
417         bridge_add_ofproto_ports(br);
418     }
419
420     /* Complete the configuration. */
421     sflow_bridge_number = 0;
422     collect_in_band_managers(ovs_cfg, &managers, &n_managers);
423     HMAP_FOR_EACH (br, node, &all_bridges) {
424         struct port *port;
425
426         HMAP_FOR_EACH (port, hmap_node, &br->ports) {
427             struct iface *iface;
428
429             port_configure(port);
430
431             HMAP_FOR_EACH (iface, ofp_port_node, &br->ifaces) {
432                 iface_configure_cfm(iface);
433                 iface_configure_qos(iface, port->cfg->qos);
434                 iface_set_mac(iface);
435             }
436         }
437         bridge_configure_mirrors(br);
438         bridge_configure_datapath_id(br);
439         bridge_configure_remotes(br, managers, n_managers);
440         bridge_configure_netflow(br);
441         bridge_configure_sflow(br, &sflow_bridge_number);
442     }
443     free(managers);
444
445     /* ovs-vswitchd has completed initialization, so allow the process that
446      * forked us to exit successfully. */
447     daemonize_complete();
448 }
449
450 /* Iterate over all ofprotos and delete any of them that do not have a
451  * configured bridge or that are the wrong type. */
452 static void
453 bridge_del_ofprotos(void)
454 {
455     struct sset names;
456     struct sset types;
457     const char *type;
458
459     sset_init(&names);
460     sset_init(&types);
461     ofproto_enumerate_types(&types);
462     SSET_FOR_EACH (type, &types) {
463         const char *name;
464
465         ofproto_enumerate_names(type, &names);
466         SSET_FOR_EACH (name, &names) {
467             struct bridge *br = bridge_lookup(name);
468             if (!br || strcmp(type, br->type)) {
469                 ofproto_delete(name, type);
470             }
471         }
472     }
473     sset_destroy(&names);
474     sset_destroy(&types);
475 }
476
477 static bool
478 bridge_add_ofprotos(struct bridge *br)
479 {
480     int error = ofproto_create(br->name, br->type, &br->ofproto);
481     if (error) {
482         VLOG_ERR("failed to create bridge %s: %s", br->name, strerror(error));
483         return false;
484     }
485     return true;
486 }
487
488 static void
489 port_configure(struct port *port)
490 {
491     const struct ovsrec_port *cfg = port->cfg;
492     struct bond_settings bond_settings;
493     struct lacp_settings lacp_settings;
494     struct ofproto_bundle_settings s;
495     struct iface *iface;
496
497     /* Get name. */
498     s.name = port->name;
499
500     /* Get slaves. */
501     s.n_slaves = 0;
502     s.slaves = xmalloc(list_size(&port->ifaces) * sizeof *s.slaves);
503     LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
504         s.slaves[s.n_slaves++] = iface->ofp_port;
505     }
506
507     /* Get VLAN tag. */
508     s.vlan = -1;
509     if (cfg->tag) {
510         if (list_is_short(&port->ifaces)) {
511             if (*cfg->tag >= 0 && *cfg->tag <= 4095) {
512                 s.vlan = *cfg->tag;
513                 VLOG_DBG("port %s: assigning VLAN tag %d", port->name, s.vlan);
514             }
515         } else {
516             /* It's possible that bonded, VLAN-tagged ports make sense.  Maybe
517              * they even work as-is.  But they have not been tested. */
518             VLOG_WARN("port %s: VLAN tags not supported on bonded ports",
519                       port->name);
520         }
521     }
522
523     /* Get VLAN trunks. */
524     s.trunks = NULL;
525     if (s.vlan < 0 && cfg->n_trunks) {
526         s.trunks = vlan_bitmap_from_array(cfg->trunks, cfg->n_trunks);
527     } else if (s.vlan >= 0 && cfg->n_trunks) {
528         VLOG_ERR("port %s: ignoring trunks in favor of implicit vlan",
529                  port->name);
530     }
531
532     /* Get LACP settings. */
533     s.lacp = port_configure_lacp(port, &lacp_settings);
534     if (s.lacp) {
535         size_t i = 0;
536
537         s.lacp_slaves = xmalloc(s.n_slaves * sizeof *s.lacp_slaves);
538         LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
539             iface_configure_lacp(iface, &s.lacp_slaves[i++]);
540         }
541     } else {
542         s.lacp_slaves = NULL;
543     }
544
545     /* Get bond settings. */
546     if (s.n_slaves > 1) {
547         port_configure_bond(port, &bond_settings);
548         s.bond = &bond_settings;
549     } else {
550         s.bond = NULL;
551     }
552
553     /* Register. */
554     ofproto_bundle_register(port->bridge->ofproto, port, &s);
555
556     /* Clean up. */
557     free(s.trunks);
558     free(s.lacp_slaves);
559 }
560
561 /* Pick local port hardware address and datapath ID for 'br'. */
562 static void
563 bridge_configure_datapath_id(struct bridge *br)
564 {
565     uint8_t ea[ETH_ADDR_LEN];
566     uint64_t dpid;
567     struct iface *local_iface;
568     struct iface *hw_addr_iface;
569     char *dpid_string;
570
571     bridge_pick_local_hw_addr(br, ea, &hw_addr_iface);
572     local_iface = iface_from_ofp_port(br, OFPP_LOCAL);
573     if (local_iface) {
574         int error = netdev_set_etheraddr(local_iface->netdev, ea);
575         if (error) {
576             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
577             VLOG_ERR_RL(&rl, "bridge %s: failed to set bridge "
578                         "Ethernet address: %s",
579                         br->name, strerror(error));
580         }
581     }
582     memcpy(br->ea, ea, ETH_ADDR_LEN);
583
584     dpid = bridge_pick_datapath_id(br, ea, hw_addr_iface);
585     ofproto_set_datapath_id(br->ofproto, dpid);
586
587     dpid_string = xasprintf("%016"PRIx64, dpid);
588     ovsrec_bridge_set_datapath_id(br->cfg, dpid_string);
589     free(dpid_string);
590 }
591
592 /* Set NetFlow configuration on 'br'. */
593 static void
594 bridge_configure_netflow(struct bridge *br)
595 {
596     struct ovsrec_netflow *cfg = br->cfg->netflow;
597     struct netflow_options opts;
598
599     if (!cfg) {
600         ofproto_set_netflow(br->ofproto, NULL);
601         return;
602     }
603
604     memset(&opts, 0, sizeof opts);
605
606     /* Get default NetFlow configuration from datapath.
607      * Apply overrides from 'cfg'. */
608     ofproto_get_netflow_ids(br->ofproto, &opts.engine_type, &opts.engine_id);
609     if (cfg->engine_type) {
610         opts.engine_type = *cfg->engine_type;
611     }
612     if (cfg->engine_id) {
613         opts.engine_id = *cfg->engine_id;
614     }
615
616     /* Configure active timeout interval. */
617     opts.active_timeout = cfg->active_timeout;
618     if (!opts.active_timeout) {
619         opts.active_timeout = -1;
620     } else if (opts.active_timeout < 0) {
621         VLOG_WARN("bridge %s: active timeout interval set to negative "
622                   "value, using default instead (%d seconds)", br->name,
623                   NF_ACTIVE_TIMEOUT_DEFAULT);
624         opts.active_timeout = -1;
625     }
626
627     /* Add engine ID to interface number to disambiguate bridgs? */
628     opts.add_id_to_iface = cfg->add_id_to_interface;
629     if (opts.add_id_to_iface) {
630         if (opts.engine_id > 0x7f) {
631             VLOG_WARN("bridge %s: NetFlow port mangling may conflict with "
632                       "another vswitch, choose an engine id less than 128",
633                       br->name);
634         }
635         if (hmap_count(&br->ports) > 508) {
636             VLOG_WARN("bridge %s: NetFlow port mangling will conflict with "
637                       "another port when more than 508 ports are used",
638                       br->name);
639         }
640     }
641
642     /* Collectors. */
643     sset_init(&opts.collectors);
644     sset_add_array(&opts.collectors, cfg->targets, cfg->n_targets);
645
646     /* Configure. */
647     if (ofproto_set_netflow(br->ofproto, &opts)) {
648         VLOG_ERR("bridge %s: problem setting netflow collectors", br->name);
649     }
650     sset_destroy(&opts.collectors);
651 }
652
653 /* Set sFlow configuration on 'br'. */
654 static void
655 bridge_configure_sflow(struct bridge *br, int *sflow_bridge_number)
656 {
657     const struct ovsrec_sflow *cfg = br->cfg->sflow;
658     struct ovsrec_controller **controllers;
659     struct ofproto_sflow_options oso;
660     size_t n_controllers;
661     size_t i;
662
663     if (!cfg) {
664         ofproto_set_sflow(br->ofproto, NULL);
665         return;
666     }
667
668     memset(&oso, 0, sizeof oso);
669
670     sset_init(&oso.targets);
671     sset_add_array(&oso.targets, cfg->targets, cfg->n_targets);
672
673     oso.sampling_rate = SFL_DEFAULT_SAMPLING_RATE;
674     if (cfg->sampling) {
675         oso.sampling_rate = *cfg->sampling;
676     }
677
678     oso.polling_interval = SFL_DEFAULT_POLLING_INTERVAL;
679     if (cfg->polling) {
680         oso.polling_interval = *cfg->polling;
681     }
682
683     oso.header_len = SFL_DEFAULT_HEADER_SIZE;
684     if (cfg->header) {
685         oso.header_len = *cfg->header;
686     }
687
688     oso.sub_id = (*sflow_bridge_number)++;
689     oso.agent_device = cfg->agent;
690
691     oso.control_ip = NULL;
692     n_controllers = bridge_get_controllers(br, &controllers);
693     for (i = 0; i < n_controllers; i++) {
694         if (controllers[i]->local_ip) {
695             oso.control_ip = controllers[i]->local_ip;
696             break;
697         }
698     }
699     ofproto_set_sflow(br->ofproto, &oso);
700
701     sset_destroy(&oso.targets);
702 }
703
704 static bool
705 bridge_has_bond_fake_iface(const struct bridge *br, const char *name)
706 {
707     const struct port *port = port_lookup(br, name);
708     return port && port_is_bond_fake_iface(port);
709 }
710
711 static bool
712 port_is_bond_fake_iface(const struct port *port)
713 {
714     return port->cfg->bond_fake_iface && !list_is_short(&port->ifaces);
715 }
716
717 static void
718 add_del_bridges(const struct ovsrec_open_vswitch *cfg)
719 {
720     struct bridge *br, *next;
721     struct shash new_br;
722     size_t i;
723
724     /* Collect new bridges' names and types. */
725     shash_init(&new_br);
726     for (i = 0; i < cfg->n_bridges; i++) {
727         const struct ovsrec_bridge *br_cfg = cfg->bridges[i];
728         if (!shash_add_once(&new_br, br_cfg->name, br_cfg)) {
729             VLOG_WARN("bridge %s specified twice", br_cfg->name);
730         }
731     }
732
733     /* Get rid of deleted bridges or those whose types have changed.
734      * Update 'cfg' of bridges that still exist. */
735     HMAP_FOR_EACH_SAFE (br, next, node, &all_bridges) {
736         br->cfg = shash_find_data(&new_br, br->name);
737         if (!br->cfg || strcmp(br->type, ofproto_normalize_type(
738                                    br->cfg->datapath_type))) {
739             bridge_destroy(br);
740         }
741     }
742
743     /* Add new bridges. */
744     for (i = 0; i < cfg->n_bridges; i++) {
745         const struct ovsrec_bridge *br_cfg = cfg->bridges[i];
746         struct bridge *br = bridge_lookup(br_cfg->name);
747         if (!br) {
748             bridge_create(br_cfg);
749         }
750     }
751
752     shash_destroy(&new_br);
753 }
754
755 /* Delete each ofproto port on 'br' that doesn't have a corresponding "struct
756  * iface".
757  *
758  * The kernel will reject any attempt to add a given port to a datapath if that
759  * port already belongs to a different datapath, so we must do all port
760  * deletions before any port additions. */
761 static void
762 bridge_del_ofproto_ports(struct bridge *br)
763 {
764     struct ofproto_port_dump dump;
765     struct ofproto_port ofproto_port;
766
767     OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, br->ofproto) {
768         const char *name = ofproto_port.name;
769         struct iface *iface;
770         const char *type;
771         int error;
772
773         /* Ignore the local port.  We can't change it anyhow. */
774         if (!strcmp(name, br->name)) {
775             continue;
776         }
777
778         /* Get the type that 'ofproto_port' should have (ordinarily the
779          * type of its corresponding iface) or NULL if it should be
780          * deleted. */
781         iface = iface_lookup(br, name);
782         type = (iface ? iface->type
783                 : bridge_has_bond_fake_iface(br, name) ? "internal"
784                 : NULL);
785
786         /* If it's the wrong type then delete the ofproto port. */
787         if (type
788             && !strcmp(ofproto_port.type, type)
789             && (!iface || !iface->netdev
790                 || !strcmp(netdev_get_type(iface->netdev), type))) {
791             continue;
792         }
793         error = ofproto_port_del(br->ofproto, ofproto_port.ofp_port);
794         if (error) {
795             VLOG_WARN("bridge %s: failed to remove %s interface (%s)",
796                       br->name, name, strerror(error));
797         }
798         if (iface) {
799             netdev_close(iface->netdev);
800             iface->netdev = NULL;
801         }
802     }
803 }
804
805 static void
806 iface_set_ofp_port(struct iface *iface, int ofp_port)
807 {
808     struct bridge *br = iface->port->bridge;
809
810     assert(iface->ofp_port < 0 && ofp_port >= 0);
811     iface->ofp_port = ofp_port;
812     hmap_insert(&br->ifaces, &iface->ofp_port_node, hash_int(ofp_port, 0));
813
814 }
815
816 static void
817 bridge_refresh_ofp_port(struct bridge *br)
818 {
819     struct ofproto_port_dump dump;
820     struct ofproto_port ofproto_port;
821     struct port *port;
822
823     /* Clear all the "ofp_port"es. */
824     hmap_clear(&br->ifaces);
825     HMAP_FOR_EACH (port, hmap_node, &br->ports) {
826         struct iface *iface;
827
828         LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
829             iface->ofp_port = -1;
830         }
831     }
832
833     /* Obtain the correct "ofp_port"s from ofproto. */
834     OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, br->ofproto) {
835         struct iface *iface = iface_lookup(br, ofproto_port.name);
836         if (iface) {
837             if (iface->ofp_port >= 0) {
838                 VLOG_WARN("bridge %s: interface %s reported twice",
839                           br->name, ofproto_port.name);
840             } else if (iface_from_ofp_port(br, ofproto_port.ofp_port)) {
841                 VLOG_WARN("bridge %s: interface %"PRIu16" reported twice",
842                           br->name, ofproto_port.ofp_port);
843             } else {
844                 iface_set_ofp_port(iface, ofproto_port.ofp_port);
845             }
846         }
847     }
848 }
849
850 /* Add an ofproto port for any "struct iface" that doesn't have one.
851  * Delete any "struct iface" for which this fails.
852  * Delete any "struct port" that thereby ends up with no ifaces. */
853 static void
854 bridge_add_ofproto_ports(struct bridge *br)
855 {
856     struct port *port, *next_port;
857
858     HMAP_FOR_EACH_SAFE (port, next_port, hmap_node, &br->ports) {
859         struct iface *iface, *next_iface;
860         struct ofproto_port ofproto_port;
861
862         LIST_FOR_EACH_SAFE (iface, next_iface, port_elem, &port->ifaces) {
863             struct shash args;
864             int error;
865
866             /* Open the netdev or reconfigure it. */
867             shash_init(&args);
868             shash_from_ovs_idl_map(iface->cfg->key_options,
869                                    iface->cfg->value_options,
870                                    iface->cfg->n_options, &args);
871             if (!iface->netdev) {
872                 struct netdev_options options;
873                 options.name = iface->name;
874                 options.type = iface->type;
875                 options.args = &args;
876                 options.ethertype = NETDEV_ETH_TYPE_NONE;
877                 error = netdev_open(&options, &iface->netdev);
878             } else {
879                 error = netdev_set_config(iface->netdev, &args);
880             }
881             shash_destroy(&args);
882             if (error) {
883                 VLOG_WARN("could not %s network device %s (%s)",
884                           iface->netdev ? "reconfigure" : "open",
885                           iface->name, strerror(error));
886             }
887
888             /* Add the port, if necessary. */
889             if (iface->netdev && iface->ofp_port < 0) {
890                 uint16_t ofp_port;
891                 int error;
892
893                 error = ofproto_port_add(br->ofproto, iface->netdev,
894                                          &ofp_port);
895                 if (!error) {
896                     iface_set_ofp_port(iface, ofp_port);
897                 } else {
898                     netdev_close(iface->netdev);
899                     iface->netdev = NULL;
900                 }
901             }
902
903             /* Delete the iface if  */
904             if (iface->netdev && iface->ofp_port >= 0) {
905                 VLOG_DBG("bridge %s: interface %s is on port %d",
906                          br->name, iface->name, iface->ofp_port);
907             } else {
908                 if (iface->netdev) {
909                     VLOG_ERR("bridge %s: missing %s interface, dropping",
910                              br->name, iface->name);
911                 } else {
912                     /* We already reported a related error, don't bother
913                      * duplicating it. */
914                 }
915                 iface_set_ofport(iface->cfg, -1);
916                 iface_destroy(iface);
917             }
918         }
919         if (list_is_empty(&port->ifaces)) {
920             VLOG_WARN("%s port has no interfaces, dropping", port->name);
921             port_destroy(port);
922             continue;
923         }
924
925         /* Add bond fake iface if necessary. */
926         if (port_is_bond_fake_iface(port)) {
927             if (ofproto_port_query_by_name(br->ofproto, port->name,
928                                            &ofproto_port)) {
929                 struct netdev_options options;
930                 struct netdev *netdev;
931                 int error;
932
933                 options.name = port->name;
934                 options.type = "internal";
935                 options.args = NULL;
936                 options.ethertype = NETDEV_ETH_TYPE_NONE;
937                 error = netdev_open(&options, &netdev);
938                 if (!error) {
939                     ofproto_port_add(br->ofproto, netdev, NULL);
940                     netdev_close(netdev);
941                 } else {
942                     VLOG_WARN("could not open network device %s (%s)",
943                               port->name, strerror(error));
944                 }
945             } else {
946                 /* Already exists, nothing to do. */
947                 ofproto_port_destroy(&ofproto_port);
948             }
949             ofproto_port_destroy(&ofproto_port);
950         }
951     }
952 }
953
954 static const char *
955 get_ovsrec_key_value(const struct ovsdb_idl_row *row,
956                      const struct ovsdb_idl_column *column,
957                      const char *key)
958 {
959     const struct ovsdb_datum *datum;
960     union ovsdb_atom atom;
961     unsigned int idx;
962
963     datum = ovsdb_idl_get(row, column, OVSDB_TYPE_STRING, OVSDB_TYPE_STRING);
964     atom.string = (char *) key;
965     idx = ovsdb_datum_find_key(datum, &atom, OVSDB_TYPE_STRING);
966     return idx == UINT_MAX ? NULL : datum->values[idx].string;
967 }
968
969 static const char *
970 bridge_get_other_config(const struct ovsrec_bridge *br_cfg, const char *key)
971 {
972     return get_ovsrec_key_value(&br_cfg->header_,
973                                 &ovsrec_bridge_col_other_config, key);
974 }
975
976 static void
977 bridge_pick_local_hw_addr(struct bridge *br, uint8_t ea[ETH_ADDR_LEN],
978                           struct iface **hw_addr_iface)
979 {
980     const char *hwaddr;
981     struct port *port;
982     int error;
983
984     *hw_addr_iface = NULL;
985
986     /* Did the user request a particular MAC? */
987     hwaddr = bridge_get_other_config(br->cfg, "hwaddr");
988     if (hwaddr && eth_addr_from_string(hwaddr, ea)) {
989         if (eth_addr_is_multicast(ea)) {
990             VLOG_ERR("bridge %s: cannot set MAC address to multicast "
991                      "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
992         } else if (eth_addr_is_zero(ea)) {
993             VLOG_ERR("bridge %s: cannot set MAC address to zero", br->name);
994         } else {
995             return;
996         }
997     }
998
999     /* Otherwise choose the minimum non-local MAC address among all of the
1000      * interfaces. */
1001     memset(ea, 0xff, ETH_ADDR_LEN);
1002     HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1003         uint8_t iface_ea[ETH_ADDR_LEN];
1004         struct iface *candidate;
1005         struct iface *iface;
1006
1007         /* Mirror output ports don't participate. */
1008         if (ofproto_is_mirror_output_bundle(br->ofproto, port)) {
1009             continue;
1010         }
1011
1012         /* Choose the MAC address to represent the port. */
1013         iface = NULL;
1014         if (port->cfg->mac && eth_addr_from_string(port->cfg->mac, iface_ea)) {
1015             /* Find the interface with this Ethernet address (if any) so that
1016              * we can provide the correct devname to the caller. */
1017             LIST_FOR_EACH (candidate, port_elem, &port->ifaces) {
1018                 uint8_t candidate_ea[ETH_ADDR_LEN];
1019                 if (!netdev_get_etheraddr(candidate->netdev, candidate_ea)
1020                     && eth_addr_equals(iface_ea, candidate_ea)) {
1021                     iface = candidate;
1022                 }
1023             }
1024         } else {
1025             /* Choose the interface whose MAC address will represent the port.
1026              * The Linux kernel bonding code always chooses the MAC address of
1027              * the first slave added to a bond, and the Fedora networking
1028              * scripts always add slaves to a bond in alphabetical order, so
1029              * for compatibility we choose the interface with the name that is
1030              * first in alphabetical order. */
1031             LIST_FOR_EACH (candidate, port_elem, &port->ifaces) {
1032                 if (!iface || strcmp(candidate->name, iface->name) < 0) {
1033                     iface = candidate;
1034                 }
1035             }
1036
1037             /* The local port doesn't count (since we're trying to choose its
1038              * MAC address anyway). */
1039             if (iface->ofp_port == OFPP_LOCAL) {
1040                 continue;
1041             }
1042
1043             /* Grab MAC. */
1044             error = netdev_get_etheraddr(iface->netdev, iface_ea);
1045             if (error) {
1046                 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1047                 VLOG_ERR_RL(&rl, "failed to obtain Ethernet address of %s: %s",
1048                             iface->name, strerror(error));
1049                 continue;
1050             }
1051         }
1052
1053         /* Compare against our current choice. */
1054         if (!eth_addr_is_multicast(iface_ea) &&
1055             !eth_addr_is_local(iface_ea) &&
1056             !eth_addr_is_reserved(iface_ea) &&
1057             !eth_addr_is_zero(iface_ea) &&
1058             eth_addr_compare_3way(iface_ea, ea) < 0)
1059         {
1060             memcpy(ea, iface_ea, ETH_ADDR_LEN);
1061             *hw_addr_iface = iface;
1062         }
1063     }
1064     if (eth_addr_is_multicast(ea)) {
1065         memcpy(ea, br->default_ea, ETH_ADDR_LEN);
1066         *hw_addr_iface = NULL;
1067         VLOG_WARN("bridge %s: using default bridge Ethernet "
1068                   "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
1069     } else {
1070         VLOG_DBG("bridge %s: using bridge Ethernet address "ETH_ADDR_FMT,
1071                  br->name, ETH_ADDR_ARGS(ea));
1072     }
1073 }
1074
1075 /* Choose and returns the datapath ID for bridge 'br' given that the bridge
1076  * Ethernet address is 'bridge_ea'.  If 'bridge_ea' is the Ethernet address of
1077  * an interface on 'br', then that interface must be passed in as
1078  * 'hw_addr_iface'; if 'bridge_ea' was derived some other way, then
1079  * 'hw_addr_iface' must be passed in as a null pointer. */
1080 static uint64_t
1081 bridge_pick_datapath_id(struct bridge *br,
1082                         const uint8_t bridge_ea[ETH_ADDR_LEN],
1083                         struct iface *hw_addr_iface)
1084 {
1085     /*
1086      * The procedure for choosing a bridge MAC address will, in the most
1087      * ordinary case, also choose a unique MAC that we can use as a datapath
1088      * ID.  In some special cases, though, multiple bridges will end up with
1089      * the same MAC address.  This is OK for the bridges, but it will confuse
1090      * the OpenFlow controller, because each datapath needs a unique datapath
1091      * ID.
1092      *
1093      * Datapath IDs must be unique.  It is also very desirable that they be
1094      * stable from one run to the next, so that policy set on a datapath
1095      * "sticks".
1096      */
1097     const char *datapath_id;
1098     uint64_t dpid;
1099
1100     datapath_id = bridge_get_other_config(br->cfg, "datapath-id");
1101     if (datapath_id && dpid_from_string(datapath_id, &dpid)) {
1102         return dpid;
1103     }
1104
1105     if (hw_addr_iface) {
1106         int vlan;
1107         if (!netdev_get_vlan_vid(hw_addr_iface->netdev, &vlan)) {
1108             /*
1109              * A bridge whose MAC address is taken from a VLAN network device
1110              * (that is, a network device created with vconfig(8) or similar
1111              * tool) will have the same MAC address as a bridge on the VLAN
1112              * device's physical network device.
1113              *
1114              * Handle this case by hashing the physical network device MAC
1115              * along with the VLAN identifier.
1116              */
1117             uint8_t buf[ETH_ADDR_LEN + 2];
1118             memcpy(buf, bridge_ea, ETH_ADDR_LEN);
1119             buf[ETH_ADDR_LEN] = vlan >> 8;
1120             buf[ETH_ADDR_LEN + 1] = vlan;
1121             return dpid_from_hash(buf, sizeof buf);
1122         } else {
1123             /*
1124              * Assume that this bridge's MAC address is unique, since it
1125              * doesn't fit any of the cases we handle specially.
1126              */
1127         }
1128     } else {
1129         /*
1130          * A purely internal bridge, that is, one that has no non-virtual
1131          * network devices on it at all, is more difficult because it has no
1132          * natural unique identifier at all.
1133          *
1134          * When the host is a XenServer, we handle this case by hashing the
1135          * host's UUID with the name of the bridge.  Names of bridges are
1136          * persistent across XenServer reboots, although they can be reused if
1137          * an internal network is destroyed and then a new one is later
1138          * created, so this is fairly effective.
1139          *
1140          * When the host is not a XenServer, we punt by using a random MAC
1141          * address on each run.
1142          */
1143         const char *host_uuid = xenserver_get_host_uuid();
1144         if (host_uuid) {
1145             char *combined = xasprintf("%s,%s", host_uuid, br->name);
1146             dpid = dpid_from_hash(combined, strlen(combined));
1147             free(combined);
1148             return dpid;
1149         }
1150     }
1151
1152     return eth_addr_to_uint64(bridge_ea);
1153 }
1154
1155 static uint64_t
1156 dpid_from_hash(const void *data, size_t n)
1157 {
1158     uint8_t hash[SHA1_DIGEST_SIZE];
1159
1160     BUILD_ASSERT_DECL(sizeof hash >= ETH_ADDR_LEN);
1161     sha1_bytes(data, n, hash);
1162     eth_addr_mark_random(hash);
1163     return eth_addr_to_uint64(hash);
1164 }
1165
1166 static void
1167 iface_refresh_status(struct iface *iface)
1168 {
1169     struct shash sh;
1170
1171     enum netdev_flags flags;
1172     uint32_t current;
1173     int64_t bps;
1174     int mtu;
1175     int64_t mtu_64;
1176     int error;
1177
1178     if (iface_is_synthetic(iface)) {
1179         return;
1180     }
1181
1182     shash_init(&sh);
1183
1184     if (!netdev_get_status(iface->netdev, &sh)) {
1185         size_t n;
1186         char **keys, **values;
1187
1188         shash_to_ovs_idl_map(&sh, &keys, &values, &n);
1189         ovsrec_interface_set_status(iface->cfg, keys, values, n);
1190
1191         free(keys);
1192         free(values);
1193     } else {
1194         ovsrec_interface_set_status(iface->cfg, NULL, NULL, 0);
1195     }
1196
1197     shash_destroy_free_data(&sh);
1198
1199     error = netdev_get_flags(iface->netdev, &flags);
1200     if (!error) {
1201         ovsrec_interface_set_admin_state(iface->cfg, flags & NETDEV_UP ? "up" : "down");
1202     }
1203     else {
1204         ovsrec_interface_set_admin_state(iface->cfg, NULL);
1205     }
1206
1207     error = netdev_get_features(iface->netdev, &current, NULL, NULL, NULL);
1208     if (!error) {
1209         ovsrec_interface_set_duplex(iface->cfg,
1210                                     netdev_features_is_full_duplex(current)
1211                                     ? "full" : "half");
1212         /* warning: uint64_t -> int64_t conversion */
1213         bps = netdev_features_to_bps(current);
1214         ovsrec_interface_set_link_speed(iface->cfg, &bps, 1);
1215     }
1216     else {
1217         ovsrec_interface_set_duplex(iface->cfg, NULL);
1218         ovsrec_interface_set_link_speed(iface->cfg, NULL, 0);
1219     }
1220
1221     ovsrec_interface_set_link_state(iface->cfg,
1222                                     iface_get_carrier(iface) ? "up" : "down");
1223
1224     error = netdev_get_mtu(iface->netdev, &mtu);
1225     if (!error && mtu != INT_MAX) {
1226         mtu_64 = mtu;
1227         ovsrec_interface_set_mtu(iface->cfg, &mtu_64, 1);
1228     }
1229     else {
1230         ovsrec_interface_set_mtu(iface->cfg, NULL, 0);
1231     }
1232 }
1233
1234 /* Writes 'iface''s CFM statistics to the database.  Returns true if anything
1235  * changed, false otherwise. */
1236 static bool
1237 iface_refresh_cfm_stats(struct iface *iface)
1238 {
1239     const struct ovsrec_monitor *mon;
1240     const struct cfm *cfm;
1241     bool changed = false;
1242     size_t i;
1243
1244     mon = iface->cfg->monitor;
1245     cfm = ofproto_port_get_cfm(iface->port->bridge->ofproto, iface->ofp_port);
1246
1247     if (!cfm || !mon) {
1248         return false;
1249     }
1250
1251     for (i = 0; i < mon->n_remote_mps; i++) {
1252         const struct ovsrec_maintenance_point *mp;
1253         const struct remote_mp *rmp;
1254
1255         mp = mon->remote_mps[i];
1256         rmp = cfm_get_remote_mp(cfm, mp->mpid);
1257
1258         if (mp->n_fault != 1 || mp->fault[0] != rmp->fault) {
1259             ovsrec_maintenance_point_set_fault(mp, &rmp->fault, 1);
1260             changed = true;
1261         }
1262     }
1263
1264     if (mon->n_fault != 1 || mon->fault[0] != cfm->fault) {
1265         ovsrec_monitor_set_fault(mon, &cfm->fault, 1);
1266         changed = true;
1267     }
1268
1269     return changed;
1270 }
1271
1272 static bool
1273 iface_refresh_lacp_stats(struct iface *iface)
1274 {
1275     struct ofproto *ofproto = iface->port->bridge->ofproto;
1276     int old = iface->cfg->lacp_current ? *iface->cfg->lacp_current : -1;
1277     int new = ofproto_port_is_lacp_current(ofproto, iface->ofp_port);
1278
1279     if (old != new) {
1280         bool current = new;
1281         ovsrec_interface_set_lacp_current(iface->cfg, &current, new >= 0);
1282     }
1283     return old != new;
1284 }
1285
1286 static void
1287 iface_refresh_stats(struct iface *iface)
1288 {
1289     struct iface_stat {
1290         char *name;
1291         int offset;
1292     };
1293     static const struct iface_stat iface_stats[] = {
1294         { "rx_packets", offsetof(struct netdev_stats, rx_packets) },
1295         { "tx_packets", offsetof(struct netdev_stats, tx_packets) },
1296         { "rx_bytes", offsetof(struct netdev_stats, rx_bytes) },
1297         { "tx_bytes", offsetof(struct netdev_stats, tx_bytes) },
1298         { "rx_dropped", offsetof(struct netdev_stats, rx_dropped) },
1299         { "tx_dropped", offsetof(struct netdev_stats, tx_dropped) },
1300         { "rx_errors", offsetof(struct netdev_stats, rx_errors) },
1301         { "tx_errors", offsetof(struct netdev_stats, tx_errors) },
1302         { "rx_frame_err", offsetof(struct netdev_stats, rx_frame_errors) },
1303         { "rx_over_err", offsetof(struct netdev_stats, rx_over_errors) },
1304         { "rx_crc_err", offsetof(struct netdev_stats, rx_crc_errors) },
1305         { "collisions", offsetof(struct netdev_stats, collisions) },
1306     };
1307     enum { N_STATS = ARRAY_SIZE(iface_stats) };
1308     const struct iface_stat *s;
1309
1310     char *keys[N_STATS];
1311     int64_t values[N_STATS];
1312     int n;
1313
1314     struct netdev_stats stats;
1315
1316     if (iface_is_synthetic(iface)) {
1317         return;
1318     }
1319
1320     /* Intentionally ignore return value, since errors will set 'stats' to
1321      * all-1s, and we will deal with that correctly below. */
1322     netdev_get_stats(iface->netdev, &stats);
1323
1324     n = 0;
1325     for (s = iface_stats; s < &iface_stats[N_STATS]; s++) {
1326         uint64_t value = *(uint64_t *) (((char *) &stats) + s->offset);
1327         if (value != UINT64_MAX) {
1328             keys[n] = s->name;
1329             values[n] = value;
1330             n++;
1331         }
1332     }
1333
1334     ovsrec_interface_set_statistics(iface->cfg, keys, values, n);
1335 }
1336
1337 static void
1338 refresh_system_stats(const struct ovsrec_open_vswitch *cfg)
1339 {
1340     struct ovsdb_datum datum;
1341     struct shash stats;
1342
1343     shash_init(&stats);
1344     get_system_stats(&stats);
1345
1346     ovsdb_datum_from_shash(&datum, &stats);
1347     ovsdb_idl_txn_write(&cfg->header_, &ovsrec_open_vswitch_col_statistics,
1348                         &datum);
1349 }
1350
1351 static inline const char *
1352 nx_role_to_str(enum nx_role role)
1353 {
1354     switch (role) {
1355     case NX_ROLE_OTHER:
1356         return "other";
1357     case NX_ROLE_MASTER:
1358         return "master";
1359     case NX_ROLE_SLAVE:
1360         return "slave";
1361     default:
1362         return "*** INVALID ROLE ***";
1363     }
1364 }
1365
1366 static void
1367 bridge_refresh_controller_status(const struct bridge *br)
1368 {
1369     struct shash info;
1370     const struct ovsrec_controller *cfg;
1371
1372     ofproto_get_ofproto_controller_info(br->ofproto, &info);
1373
1374     OVSREC_CONTROLLER_FOR_EACH(cfg, idl) {
1375         struct ofproto_controller_info *cinfo =
1376             shash_find_data(&info, cfg->target);
1377
1378         if (cinfo) {
1379             ovsrec_controller_set_is_connected(cfg, cinfo->is_connected);
1380             ovsrec_controller_set_role(cfg, nx_role_to_str(cinfo->role));
1381             ovsrec_controller_set_status(cfg, (char **) cinfo->pairs.keys,
1382                                          (char **) cinfo->pairs.values,
1383                                          cinfo->pairs.n);
1384         } else {
1385             ovsrec_controller_set_is_connected(cfg, false);
1386             ovsrec_controller_set_role(cfg, NULL);
1387             ovsrec_controller_set_status(cfg, NULL, NULL, 0);
1388         }
1389     }
1390
1391     ofproto_free_ofproto_controller_info(&info);
1392 }
1393
1394 void
1395 bridge_run(void)
1396 {
1397     const struct ovsrec_open_vswitch *cfg;
1398
1399     bool datapath_destroyed;
1400     bool database_changed;
1401     struct bridge *br;
1402
1403     /* Let each bridge do the work that it needs to do. */
1404     datapath_destroyed = false;
1405     HMAP_FOR_EACH (br, node, &all_bridges) {
1406         int error = ofproto_run(br->ofproto);
1407         if (error) {
1408             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1409             VLOG_ERR_RL(&rl, "bridge %s: datapath was destroyed externally, "
1410                         "forcing reconfiguration", br->name);
1411             datapath_destroyed = true;
1412         }
1413     }
1414
1415     /* (Re)configure if necessary. */
1416     database_changed = ovsdb_idl_run(idl);
1417     cfg = ovsrec_open_vswitch_first(idl);
1418 #ifdef HAVE_OPENSSL
1419     /* Re-configure SSL.  We do this on every trip through the main loop,
1420      * instead of just when the database changes, because the contents of the
1421      * key and certificate files can change without the database changing.
1422      *
1423      * We do this before bridge_reconfigure() because that function might
1424      * initiate SSL connections and thus requires SSL to be configured. */
1425     if (cfg && cfg->ssl) {
1426         const struct ovsrec_ssl *ssl = cfg->ssl;
1427
1428         stream_ssl_set_key_and_cert(ssl->private_key, ssl->certificate);
1429         stream_ssl_set_ca_cert_file(ssl->ca_cert, ssl->bootstrap_ca_cert);
1430     }
1431 #endif
1432     if (database_changed || datapath_destroyed) {
1433         if (cfg) {
1434             struct ovsdb_idl_txn *txn = ovsdb_idl_txn_create(idl);
1435
1436             bridge_reconfigure(cfg);
1437
1438             ovsrec_open_vswitch_set_cur_cfg(cfg, cfg->next_cfg);
1439             ovsdb_idl_txn_commit(txn);
1440             ovsdb_idl_txn_destroy(txn); /* XXX */
1441         } else {
1442             /* We still need to reconfigure to avoid dangling pointers to
1443              * now-destroyed ovsrec structures inside bridge data. */
1444             static const struct ovsrec_open_vswitch null_cfg;
1445
1446             bridge_reconfigure(&null_cfg);
1447         }
1448     }
1449
1450     /* Refresh system and interface stats if necessary. */
1451     if (time_msec() >= stats_timer) {
1452         if (cfg) {
1453             struct ovsdb_idl_txn *txn;
1454
1455             txn = ovsdb_idl_txn_create(idl);
1456             HMAP_FOR_EACH (br, node, &all_bridges) {
1457                 struct port *port;
1458
1459                 HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1460                     struct iface *iface;
1461
1462                     LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
1463                         iface_refresh_stats(iface);
1464                         iface_refresh_status(iface);
1465                     }
1466                 }
1467                 bridge_refresh_controller_status(br);
1468             }
1469             refresh_system_stats(cfg);
1470             ovsdb_idl_txn_commit(txn);
1471             ovsdb_idl_txn_destroy(txn); /* XXX */
1472         }
1473
1474         stats_timer = time_msec() + STATS_INTERVAL;
1475     }
1476
1477     if (time_msec() >= db_limiter) {
1478         struct ovsdb_idl_txn *txn;
1479         bool changed = false;
1480
1481         txn = ovsdb_idl_txn_create(idl);
1482         HMAP_FOR_EACH (br, node, &all_bridges) {
1483             struct port *port;
1484
1485             HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1486                 struct iface *iface;
1487
1488                 LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
1489                     changed = iface_refresh_cfm_stats(iface) || changed;
1490                     changed = iface_refresh_lacp_stats(iface) || changed;
1491                 }
1492             }
1493         }
1494
1495         if (changed) {
1496             db_limiter = time_msec() + DB_LIMIT_INTERVAL;
1497         }
1498
1499         ovsdb_idl_txn_commit(txn);
1500         ovsdb_idl_txn_destroy(txn);
1501     }
1502 }
1503
1504 void
1505 bridge_wait(void)
1506 {
1507     struct bridge *br;
1508
1509     HMAP_FOR_EACH (br, node, &all_bridges) {
1510         ofproto_wait(br->ofproto);
1511     }
1512     ovsdb_idl_wait(idl);
1513     poll_timer_wait_until(stats_timer);
1514
1515     if (db_limiter > time_msec()) {
1516         poll_timer_wait_until(db_limiter);
1517     }
1518 }
1519 \f
1520 /* CFM unixctl user interface functions. */
1521 static void
1522 cfm_unixctl_show(struct unixctl_conn *conn,
1523                  const char *args, void *aux OVS_UNUSED)
1524 {
1525     struct ds ds = DS_EMPTY_INITIALIZER;
1526     struct iface *iface;
1527     const struct cfm *cfm;
1528
1529     iface = iface_find(args);
1530     if (!iface) {
1531         unixctl_command_reply(conn, 501, "no such interface");
1532         return;
1533     }
1534
1535     cfm = ofproto_port_get_cfm(iface->port->bridge->ofproto, iface->ofp_port);
1536
1537     if (!cfm) {
1538         unixctl_command_reply(conn, 501, "CFM not enabled");
1539         return;
1540     }
1541
1542     cfm_dump_ds(cfm, &ds);
1543     unixctl_command_reply(conn, 200, ds_cstr(&ds));
1544     ds_destroy(&ds);
1545 }
1546 \f
1547 /* QoS unixctl user interface functions. */
1548
1549 struct qos_unixctl_show_cbdata {
1550     struct ds *ds;
1551     struct iface *iface;
1552 };
1553
1554 static void
1555 qos_unixctl_show_cb(unsigned int queue_id,
1556                     const struct shash *details,
1557                     void *aux)
1558 {
1559     struct qos_unixctl_show_cbdata *data = aux;
1560     struct ds *ds = data->ds;
1561     struct iface *iface = data->iface;
1562     struct netdev_queue_stats stats;
1563     struct shash_node *node;
1564     int error;
1565
1566     ds_put_cstr(ds, "\n");
1567     if (queue_id) {
1568         ds_put_format(ds, "Queue %u:\n", queue_id);
1569     } else {
1570         ds_put_cstr(ds, "Default:\n");
1571     }
1572
1573     SHASH_FOR_EACH (node, details) {
1574         ds_put_format(ds, "\t%s: %s\n", node->name, (char *)node->data);
1575     }
1576
1577     error = netdev_get_queue_stats(iface->netdev, queue_id, &stats);
1578     if (!error) {
1579         if (stats.tx_packets != UINT64_MAX) {
1580             ds_put_format(ds, "\ttx_packets: %"PRIu64"\n", stats.tx_packets);
1581         }
1582
1583         if (stats.tx_bytes != UINT64_MAX) {
1584             ds_put_format(ds, "\ttx_bytes: %"PRIu64"\n", stats.tx_bytes);
1585         }
1586
1587         if (stats.tx_errors != UINT64_MAX) {
1588             ds_put_format(ds, "\ttx_errors: %"PRIu64"\n", stats.tx_errors);
1589         }
1590     } else {
1591         ds_put_format(ds, "\tFailed to get statistics for queue %u: %s",
1592                       queue_id, strerror(error));
1593     }
1594 }
1595
1596 static void
1597 qos_unixctl_show(struct unixctl_conn *conn,
1598                  const char *args, void *aux OVS_UNUSED)
1599 {
1600     struct ds ds = DS_EMPTY_INITIALIZER;
1601     struct shash sh = SHASH_INITIALIZER(&sh);
1602     struct iface *iface;
1603     const char *type;
1604     struct shash_node *node;
1605     struct qos_unixctl_show_cbdata data;
1606     int error;
1607
1608     iface = iface_find(args);
1609     if (!iface) {
1610         unixctl_command_reply(conn, 501, "no such interface");
1611         return;
1612     }
1613
1614     netdev_get_qos(iface->netdev, &type, &sh);
1615
1616     if (*type != '\0') {
1617         ds_put_format(&ds, "QoS: %s %s\n", iface->name, type);
1618
1619         SHASH_FOR_EACH (node, &sh) {
1620             ds_put_format(&ds, "%s: %s\n", node->name, (char *)node->data);
1621         }
1622
1623         data.ds = &ds;
1624         data.iface = iface;
1625         error = netdev_dump_queues(iface->netdev, qos_unixctl_show_cb, &data);
1626
1627         if (error) {
1628             ds_put_format(&ds, "failed to dump queues: %s", strerror(error));
1629         }
1630         unixctl_command_reply(conn, 200, ds_cstr(&ds));
1631     } else {
1632         ds_put_format(&ds, "QoS not configured on %s\n", iface->name);
1633         unixctl_command_reply(conn, 501, ds_cstr(&ds));
1634     }
1635
1636     shash_destroy_free_data(&sh);
1637     ds_destroy(&ds);
1638 }
1639 \f
1640 /* Bridge reconfiguration functions. */
1641 static void
1642 bridge_create(const struct ovsrec_bridge *br_cfg)
1643 {
1644     struct bridge *br;
1645
1646     assert(!bridge_lookup(br_cfg->name));
1647     br = xzalloc(sizeof *br);
1648
1649     br->name = xstrdup(br_cfg->name);
1650     br->type = xstrdup(ofproto_normalize_type(br_cfg->datapath_type));
1651     br->cfg = br_cfg;
1652     eth_addr_nicira_random(br->default_ea);
1653
1654     hmap_init(&br->ports);
1655     hmap_init(&br->ifaces);
1656     hmap_init(&br->iface_by_name);
1657     hmap_init(&br->mirrors);
1658
1659     hmap_insert(&all_bridges, &br->node, hash_string(br->name, 0));
1660 }
1661
1662 static void
1663 bridge_destroy(struct bridge *br)
1664 {
1665     if (br) {
1666         struct mirror *mirror, *next_mirror;
1667         struct port *port, *next_port;
1668
1669         HMAP_FOR_EACH_SAFE (port, next_port, hmap_node, &br->ports) {
1670             port_destroy(port);
1671         }
1672         HMAP_FOR_EACH_SAFE (mirror, next_mirror, hmap_node, &br->mirrors) {
1673             mirror_destroy(mirror);
1674         }
1675         hmap_remove(&all_bridges, &br->node);
1676         ofproto_destroy(br->ofproto);
1677         hmap_destroy(&br->ifaces);
1678         hmap_destroy(&br->ports);
1679         hmap_destroy(&br->iface_by_name);
1680         hmap_destroy(&br->mirrors);
1681         free(br->name);
1682         free(br->type);
1683         free(br);
1684     }
1685 }
1686
1687 static struct bridge *
1688 bridge_lookup(const char *name)
1689 {
1690     struct bridge *br;
1691
1692     HMAP_FOR_EACH_WITH_HASH (br, node, hash_string(name, 0), &all_bridges) {
1693         if (!strcmp(br->name, name)) {
1694             return br;
1695         }
1696     }
1697     return NULL;
1698 }
1699
1700 /* Handle requests for a listing of all flows known by the OpenFlow
1701  * stack, including those normally hidden. */
1702 static void
1703 bridge_unixctl_dump_flows(struct unixctl_conn *conn,
1704                           const char *args, void *aux OVS_UNUSED)
1705 {
1706     struct bridge *br;
1707     struct ds results;
1708
1709     br = bridge_lookup(args);
1710     if (!br) {
1711         unixctl_command_reply(conn, 501, "Unknown bridge");
1712         return;
1713     }
1714
1715     ds_init(&results);
1716     ofproto_get_all_flows(br->ofproto, &results);
1717
1718     unixctl_command_reply(conn, 200, ds_cstr(&results));
1719     ds_destroy(&results);
1720 }
1721
1722 /* "bridge/reconnect [BRIDGE]": makes BRIDGE drop all of its controller
1723  * connections and reconnect.  If BRIDGE is not specified, then all bridges
1724  * drop their controller connections and reconnect. */
1725 static void
1726 bridge_unixctl_reconnect(struct unixctl_conn *conn,
1727                          const char *args, void *aux OVS_UNUSED)
1728 {
1729     struct bridge *br;
1730     if (args[0] != '\0') {
1731         br = bridge_lookup(args);
1732         if (!br) {
1733             unixctl_command_reply(conn, 501, "Unknown bridge");
1734             return;
1735         }
1736         ofproto_reconnect_controllers(br->ofproto);
1737     } else {
1738         HMAP_FOR_EACH (br, node, &all_bridges) {
1739             ofproto_reconnect_controllers(br->ofproto);
1740         }
1741     }
1742     unixctl_command_reply(conn, 200, NULL);
1743 }
1744
1745 static size_t
1746 bridge_get_controllers(const struct bridge *br,
1747                        struct ovsrec_controller ***controllersp)
1748 {
1749     struct ovsrec_controller **controllers;
1750     size_t n_controllers;
1751
1752     controllers = br->cfg->controller;
1753     n_controllers = br->cfg->n_controller;
1754
1755     if (n_controllers == 1 && !strcmp(controllers[0]->target, "none")) {
1756         controllers = NULL;
1757         n_controllers = 0;
1758     }
1759
1760     if (controllersp) {
1761         *controllersp = controllers;
1762     }
1763     return n_controllers;
1764 }
1765
1766 /* Adds and deletes "struct port"s and "struct iface"s under 'br' to match
1767  * those configured in 'br->cfg'. */
1768 static void
1769 bridge_add_del_ports(struct bridge *br)
1770 {
1771     struct port *port, *next;
1772     struct shash_node *node;
1773     struct shash new_ports;
1774     size_t i;
1775
1776     /* Collect new ports. */
1777     shash_init(&new_ports);
1778     for (i = 0; i < br->cfg->n_ports; i++) {
1779         const char *name = br->cfg->ports[i]->name;
1780         if (!shash_add_once(&new_ports, name, br->cfg->ports[i])) {
1781             VLOG_WARN("bridge %s: %s specified twice as bridge port",
1782                       br->name, name);
1783         }
1784     }
1785     if (bridge_get_controllers(br, NULL)
1786         && !shash_find(&new_ports, br->name)) {
1787         VLOG_WARN("bridge %s: no port named %s, synthesizing one",
1788                   br->name, br->name);
1789
1790         br->synth_local_port.interfaces = &br->synth_local_ifacep;
1791         br->synth_local_port.n_interfaces = 1;
1792         br->synth_local_port.name = br->name;
1793
1794         br->synth_local_iface.name = br->name;
1795         br->synth_local_iface.type = "internal";
1796
1797         br->synth_local_ifacep = &br->synth_local_iface;
1798
1799         shash_add(&new_ports, br->name, &br->synth_local_port);
1800     }
1801
1802     /* Get rid of deleted ports.
1803      * Get rid of deleted interfaces on ports that still exist.
1804      * Update 'cfg' of ports that still exist. */
1805     HMAP_FOR_EACH_SAFE (port, next, hmap_node, &br->ports) {
1806         port->cfg = shash_find_data(&new_ports, port->name);
1807         if (!port->cfg) {
1808             port_destroy(port);
1809         } else {
1810             port_del_ifaces(port);
1811         }
1812     }
1813
1814     /* Create new ports.
1815      * Add new interfaces to existing ports. */
1816     SHASH_FOR_EACH (node, &new_ports) {
1817         struct port *port = port_lookup(br, node->name);
1818         if (!port) {
1819             struct ovsrec_port *cfg = node->data;
1820             port = port_create(br, cfg);
1821         }
1822         port_add_ifaces(port);
1823         if (list_is_empty(&port->ifaces)) {
1824             VLOG_WARN("bridge %s: port %s has no interfaces, dropping",
1825                       br->name, port->name);
1826             port_destroy(port);
1827         }
1828     }
1829     shash_destroy(&new_ports);
1830 }
1831
1832 /* Initializes 'oc' appropriately as a management service controller for
1833  * 'br'.
1834  *
1835  * The caller must free oc->target when it is no longer needed. */
1836 static void
1837 bridge_ofproto_controller_for_mgmt(const struct bridge *br,
1838                                    struct ofproto_controller *oc)
1839 {
1840     oc->target = xasprintf("punix:%s/%s.mgmt", ovs_rundir(), br->name);
1841     oc->max_backoff = 0;
1842     oc->probe_interval = 60;
1843     oc->band = OFPROTO_OUT_OF_BAND;
1844     oc->rate_limit = 0;
1845     oc->burst_limit = 0;
1846 }
1847
1848 /* Converts ovsrec_controller 'c' into an ofproto_controller in 'oc'.  */
1849 static void
1850 bridge_ofproto_controller_from_ovsrec(const struct ovsrec_controller *c,
1851                                       struct ofproto_controller *oc)
1852 {
1853     oc->target = c->target;
1854     oc->max_backoff = c->max_backoff ? *c->max_backoff / 1000 : 8;
1855     oc->probe_interval = c->inactivity_probe ? *c->inactivity_probe / 1000 : 5;
1856     oc->band = (!c->connection_mode || !strcmp(c->connection_mode, "in-band")
1857                 ? OFPROTO_IN_BAND : OFPROTO_OUT_OF_BAND);
1858     oc->rate_limit = c->controller_rate_limit ? *c->controller_rate_limit : 0;
1859     oc->burst_limit = (c->controller_burst_limit
1860                        ? *c->controller_burst_limit : 0);
1861 }
1862
1863 /* Configures the IP stack for 'br''s local interface properly according to the
1864  * configuration in 'c'.  */
1865 static void
1866 bridge_configure_local_iface_netdev(struct bridge *br,
1867                                     struct ovsrec_controller *c)
1868 {
1869     struct netdev *netdev;
1870     struct in_addr mask, gateway;
1871
1872     struct iface *local_iface;
1873     struct in_addr ip;
1874
1875     /* If there's no local interface or no IP address, give up. */
1876     local_iface = iface_from_ofp_port(br, OFPP_LOCAL);
1877     if (!local_iface || !c->local_ip || !inet_aton(c->local_ip, &ip)) {
1878         return;
1879     }
1880
1881     /* Bring up the local interface. */
1882     netdev = local_iface->netdev;
1883     netdev_turn_flags_on(netdev, NETDEV_UP, true);
1884
1885     /* Configure the IP address and netmask. */
1886     if (!c->local_netmask
1887         || !inet_aton(c->local_netmask, &mask)
1888         || !mask.s_addr) {
1889         mask.s_addr = guess_netmask(ip.s_addr);
1890     }
1891     if (!netdev_set_in4(netdev, ip, mask)) {
1892         VLOG_INFO("bridge %s: configured IP address "IP_FMT", netmask "IP_FMT,
1893                   br->name, IP_ARGS(&ip.s_addr), IP_ARGS(&mask.s_addr));
1894     }
1895
1896     /* Configure the default gateway. */
1897     if (c->local_gateway
1898         && inet_aton(c->local_gateway, &gateway)
1899         && gateway.s_addr) {
1900         if (!netdev_add_router(netdev, gateway)) {
1901             VLOG_INFO("bridge %s: configured gateway "IP_FMT,
1902                       br->name, IP_ARGS(&gateway.s_addr));
1903         }
1904     }
1905 }
1906
1907 static void
1908 bridge_configure_remotes(struct bridge *br,
1909                          const struct sockaddr_in *managers, size_t n_managers)
1910 {
1911     const char *disable_ib_str, *queue_id_str;
1912     bool disable_in_band = false;
1913     int queue_id;
1914
1915     struct ovsrec_controller **controllers;
1916     size_t n_controllers;
1917
1918     enum ofproto_fail_mode fail_mode;
1919
1920     struct ofproto_controller *ocs;
1921     size_t n_ocs;
1922     size_t i;
1923
1924     /* Check if we should disable in-band control on this bridge. */
1925     disable_ib_str = bridge_get_other_config(br->cfg, "disable-in-band");
1926     if (disable_ib_str && !strcmp(disable_ib_str, "true")) {
1927         disable_in_band = true;
1928     }
1929
1930     /* Set OpenFlow queue ID for in-band control. */
1931     queue_id_str = bridge_get_other_config(br->cfg, "in-band-queue");
1932     queue_id = queue_id_str ? strtol(queue_id_str, NULL, 10) : -1;
1933     ofproto_set_in_band_queue(br->ofproto, queue_id);
1934
1935     if (disable_in_band) {
1936         ofproto_set_extra_in_band_remotes(br->ofproto, NULL, 0);
1937     } else {
1938         ofproto_set_extra_in_band_remotes(br->ofproto, managers, n_managers);
1939     }
1940
1941     n_controllers = bridge_get_controllers(br, &controllers);
1942
1943     ocs = xmalloc((n_controllers + 1) * sizeof *ocs);
1944     n_ocs = 0;
1945
1946     bridge_ofproto_controller_for_mgmt(br, &ocs[n_ocs++]);
1947     for (i = 0; i < n_controllers; i++) {
1948         struct ovsrec_controller *c = controllers[i];
1949
1950         if (!strncmp(c->target, "punix:", 6)
1951             || !strncmp(c->target, "unix:", 5)) {
1952             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1953
1954             /* Prevent remote ovsdb-server users from accessing arbitrary Unix
1955              * domain sockets and overwriting arbitrary local files. */
1956             VLOG_ERR_RL(&rl, "bridge %s: not adding Unix domain socket "
1957                         "controller \"%s\" due to possibility for remote "
1958                         "exploit", br->name, c->target);
1959             continue;
1960         }
1961
1962         bridge_configure_local_iface_netdev(br, c);
1963         bridge_ofproto_controller_from_ovsrec(c, &ocs[n_ocs]);
1964         if (disable_in_band) {
1965             ocs[n_ocs].band = OFPROTO_OUT_OF_BAND;
1966         }
1967         n_ocs++;
1968     }
1969
1970     ofproto_set_controllers(br->ofproto, ocs, n_ocs);
1971     free(ocs[0].target); /* From bridge_ofproto_controller_for_mgmt(). */
1972     free(ocs);
1973
1974     /* Set the fail-mode. */
1975     fail_mode = !br->cfg->fail_mode
1976                 || !strcmp(br->cfg->fail_mode, "standalone")
1977                     ? OFPROTO_FAIL_STANDALONE
1978                     : OFPROTO_FAIL_SECURE;
1979     ofproto_set_fail_mode(br->ofproto, fail_mode);
1980
1981     /* Configure OpenFlow controller connection snooping. */
1982     if (!ofproto_has_snoops(br->ofproto)) {
1983         struct sset snoops;
1984
1985         sset_init(&snoops);
1986         sset_add_and_free(&snoops, xasprintf("punix:%s/%s.snoop",
1987                                              ovs_rundir(), br->name));
1988         ofproto_set_snoops(br->ofproto, &snoops);
1989         sset_destroy(&snoops);
1990     }
1991 }
1992 \f
1993 /* Port functions. */
1994
1995 static struct port *
1996 port_create(struct bridge *br, const struct ovsrec_port *cfg)
1997 {
1998     struct port *port;
1999
2000     port = xzalloc(sizeof *port);
2001     port->bridge = br;
2002     port->name = xstrdup(cfg->name);
2003     port->cfg = cfg;
2004     list_init(&port->ifaces);
2005
2006     hmap_insert(&br->ports, &port->hmap_node, hash_string(port->name, 0));
2007
2008     VLOG_INFO("created port %s on bridge %s", port->name, br->name);
2009
2010     return port;
2011 }
2012
2013 static const char *
2014 get_port_other_config(const struct ovsrec_port *port, const char *key,
2015                       const char *default_value)
2016 {
2017     const char *value;
2018
2019     value = get_ovsrec_key_value(&port->header_, &ovsrec_port_col_other_config,
2020                                  key);
2021     return value ? value : default_value;
2022 }
2023
2024 static const char *
2025 get_interface_other_config(const struct ovsrec_interface *iface,
2026                            const char *key, const char *default_value)
2027 {
2028     const char *value;
2029
2030     value = get_ovsrec_key_value(&iface->header_,
2031                                  &ovsrec_interface_col_other_config, key);
2032     return value ? value : default_value;
2033 }
2034
2035 /* Deletes interfaces from 'port' that are no longer configured for it. */
2036 static void
2037 port_del_ifaces(struct port *port)
2038 {
2039     struct iface *iface, *next;
2040     struct sset new_ifaces;
2041     size_t i;
2042
2043     /* Collect list of new interfaces. */
2044     sset_init(&new_ifaces);
2045     for (i = 0; i < port->cfg->n_interfaces; i++) {
2046         const char *name = port->cfg->interfaces[i]->name;
2047         sset_add(&new_ifaces, name);
2048     }
2049
2050     /* Get rid of deleted interfaces. */
2051     LIST_FOR_EACH_SAFE (iface, next, port_elem, &port->ifaces) {
2052         if (!sset_contains(&new_ifaces, iface->name)) {
2053             iface_destroy(iface);
2054         }
2055     }
2056
2057     sset_destroy(&new_ifaces);
2058 }
2059
2060 /* Adds new interfaces to 'port' and updates 'type' and 'cfg' members of
2061  * existing ones. */
2062 static void
2063 port_add_ifaces(struct port *port)
2064 {
2065     struct shash new_ifaces;
2066     struct shash_node *node;
2067     size_t i;
2068
2069     /* Collect new ifaces. */
2070     shash_init(&new_ifaces);
2071     for (i = 0; i < port->cfg->n_interfaces; i++) {
2072         const struct ovsrec_interface *cfg = port->cfg->interfaces[i];
2073         if (!shash_add_once(&new_ifaces, cfg->name, cfg)) {
2074             VLOG_WARN("port %s: %s specified twice as port interface",
2075                       port->name, cfg->name);
2076             iface_set_ofport(cfg, -1);
2077         }
2078     }
2079
2080     /* Create new interfaces.
2081      * Update interface types and 'cfg' members. */
2082     SHASH_FOR_EACH (node, &new_ifaces) {
2083         const struct ovsrec_interface *cfg = node->data;
2084         const char *iface_name = node->name;
2085         struct iface *iface;
2086
2087         iface = iface_lookup(port->bridge, iface_name);
2088         if (!iface) {
2089             iface = iface_create(port, cfg);
2090         } else {
2091             iface->cfg = cfg;
2092         }
2093
2094         /* Determine interface type.  The local port always has type
2095          * "internal".  Other ports take their type from the database and
2096          * default to "system" if none is specified. */
2097         iface->type = (!strcmp(iface_name, port->bridge->name) ? "internal"
2098                        : cfg->type[0] ? cfg->type
2099                        : "system");
2100     }
2101     shash_destroy(&new_ifaces);
2102 }
2103
2104 static void
2105 port_destroy(struct port *port)
2106 {
2107     if (port) {
2108         struct bridge *br = port->bridge;
2109         struct iface *iface, *next;
2110
2111         if (br->ofproto) {
2112             ofproto_bundle_unregister(br->ofproto, port);
2113         }
2114
2115         LIST_FOR_EACH_SAFE (iface, next, port_elem, &port->ifaces) {
2116             iface_destroy(iface);
2117         }
2118
2119         hmap_remove(&br->ports, &port->hmap_node);
2120
2121         VLOG_INFO("destroyed port %s on bridge %s", port->name, br->name);
2122
2123         free(port->name);
2124         free(port);
2125     }
2126 }
2127
2128 static struct port *
2129 port_lookup(const struct bridge *br, const char *name)
2130 {
2131     struct port *port;
2132
2133     HMAP_FOR_EACH_WITH_HASH (port, hmap_node, hash_string(name, 0),
2134                              &br->ports) {
2135         if (!strcmp(port->name, name)) {
2136             return port;
2137         }
2138     }
2139     return NULL;
2140 }
2141
2142 static bool
2143 enable_lacp(struct port *port, bool *activep)
2144 {
2145     if (!port->cfg->lacp) {
2146         /* XXX when LACP implementation has been sufficiently tested, enable by
2147          * default and make active on bonded ports. */
2148         return false;
2149     } else if (!strcmp(port->cfg->lacp, "off")) {
2150         return false;
2151     } else if (!strcmp(port->cfg->lacp, "active")) {
2152         *activep = true;
2153         return true;
2154     } else if (!strcmp(port->cfg->lacp, "passive")) {
2155         *activep = false;
2156         return true;
2157     } else {
2158         VLOG_WARN("port %s: unknown LACP mode %s",
2159                   port->name, port->cfg->lacp);
2160         return false;
2161     }
2162 }
2163
2164 static struct lacp_settings *
2165 port_configure_lacp(struct port *port, struct lacp_settings *s)
2166 {
2167     const char *lacp_time;
2168     long long int custom_time;
2169     int priority;
2170
2171     if (!enable_lacp(port, &s->active)) {
2172         return NULL;
2173     }
2174
2175     s->name = port->name;
2176     memcpy(s->id, port->bridge->ea, ETH_ADDR_LEN);
2177
2178     /* Prefer bondable links if unspecified. */
2179     priority = atoi(get_port_other_config(port->cfg, "lacp-system-priority",
2180                                           "0"));
2181     s->priority = (priority > 0 && priority <= UINT16_MAX
2182                    ? priority
2183                    : UINT16_MAX - !list_is_short(&port->ifaces));
2184
2185     s->strict = !strcmp(get_port_other_config(port->cfg, "lacp-strict",
2186                                               "false"),
2187                         "true");
2188
2189     lacp_time = get_port_other_config(port->cfg, "lacp-time", "slow");
2190     custom_time = atoi(lacp_time);
2191     if (!strcmp(lacp_time, "fast")) {
2192         s->lacp_time = LACP_TIME_FAST;
2193     } else if (!strcmp(lacp_time, "slow")) {
2194         s->lacp_time = LACP_TIME_SLOW;
2195     } else if (custom_time > 0) {
2196         s->lacp_time = LACP_TIME_CUSTOM;
2197         s->custom_time = custom_time;
2198     } else {
2199         s->lacp_time = LACP_TIME_SLOW;
2200     }
2201
2202     return s;
2203 }
2204
2205 static void
2206 iface_configure_lacp(struct iface *iface, struct lacp_slave_settings *s)
2207 {
2208     int priority, portid;
2209
2210     portid = atoi(get_interface_other_config(iface->cfg, "lacp-port-id", "0"));
2211     priority = atoi(get_interface_other_config(iface->cfg,
2212                                                "lacp-port-priority", "0"));
2213
2214     if (portid <= 0 || portid > UINT16_MAX) {
2215         portid = iface->ofp_port;
2216     }
2217
2218     if (priority <= 0 || priority > UINT16_MAX) {
2219         priority = UINT16_MAX;
2220     }
2221
2222     s->name = iface->name;
2223     s->id = portid;
2224     s->priority = priority;
2225 }
2226
2227 static void
2228 port_configure_bond(struct port *port, struct bond_settings *s)
2229 {
2230     const char *detect_s;
2231
2232     s->name = port->name;
2233     s->balance = BM_SLB;
2234     if (port->cfg->bond_mode
2235         && !bond_mode_from_string(&s->balance, port->cfg->bond_mode)) {
2236         VLOG_WARN("port %s: unknown bond_mode %s, defaulting to %s",
2237                   port->name, port->cfg->bond_mode,
2238                   bond_mode_to_string(s->balance));
2239     }
2240
2241     s->detect = BLSM_CARRIER;
2242     detect_s = get_port_other_config(port->cfg, "bond-detect-mode", NULL);
2243     if (detect_s && !bond_detect_mode_from_string(&s->detect, detect_s)) {
2244         VLOG_WARN("port %s: unsupported bond-detect-mode %s, "
2245                   "defaulting to %s",
2246                   port->name, detect_s, bond_detect_mode_to_string(s->detect));
2247     }
2248
2249     s->miimon_interval = atoi(
2250         get_port_other_config(port->cfg, "bond-miimon-interval", "200"));
2251     if (s->miimon_interval < 100) {
2252         s->miimon_interval = 100;
2253     }
2254
2255     s->up_delay = MAX(0, port->cfg->bond_updelay);
2256     s->down_delay = MAX(0, port->cfg->bond_downdelay);
2257     s->rebalance_interval = atoi(
2258         get_port_other_config(port->cfg, "bond-rebalance-interval", "10000"));
2259     if (s->rebalance_interval < 1000) {
2260         s->rebalance_interval = 1000;
2261     }
2262
2263     s->fake_iface = port->cfg->bond_fake_iface;
2264 }
2265 \f
2266 /* Interface functions. */
2267
2268 static struct iface *
2269 iface_create(struct port *port, const struct ovsrec_interface *if_cfg)
2270 {
2271     struct bridge *br = port->bridge;
2272     struct iface *iface;
2273     char *name = if_cfg->name;
2274
2275     iface = xzalloc(sizeof *iface);
2276     iface->port = port;
2277     iface->name = xstrdup(name);
2278     iface->ofp_port = -1;
2279     iface->tag = tag_create_random();
2280     iface->netdev = NULL;
2281     iface->cfg = if_cfg;
2282
2283     hmap_insert(&br->iface_by_name, &iface->name_node, hash_string(name, 0));
2284
2285     list_push_back(&port->ifaces, &iface->port_elem);
2286
2287     VLOG_DBG("attached network device %s to port %s", iface->name, port->name);
2288
2289     return iface;
2290 }
2291
2292 static void
2293 iface_destroy(struct iface *iface)
2294 {
2295     if (iface) {
2296         struct port *port = iface->port;
2297         struct bridge *br = port->bridge;
2298
2299         if (br->ofproto && iface->ofp_port >= 0) {
2300             ofproto_port_unregister(br->ofproto, iface->ofp_port);
2301         }
2302
2303         if (iface->ofp_port >= 0) {
2304             hmap_remove(&br->ifaces, &iface->ofp_port_node);
2305         }
2306
2307         list_remove(&iface->port_elem);
2308         hmap_remove(&br->iface_by_name, &iface->name_node);
2309
2310         netdev_close(iface->netdev);
2311
2312         free(iface->name);
2313         free(iface);
2314     }
2315 }
2316
2317 static struct iface *
2318 iface_lookup(const struct bridge *br, const char *name)
2319 {
2320     struct iface *iface;
2321
2322     HMAP_FOR_EACH_WITH_HASH (iface, name_node, hash_string(name, 0),
2323                              &br->iface_by_name) {
2324         if (!strcmp(iface->name, name)) {
2325             return iface;
2326         }
2327     }
2328
2329     return NULL;
2330 }
2331
2332 static struct iface *
2333 iface_find(const char *name)
2334 {
2335     const struct bridge *br;
2336
2337     HMAP_FOR_EACH (br, node, &all_bridges) {
2338         struct iface *iface = iface_lookup(br, name);
2339
2340         if (iface) {
2341             return iface;
2342         }
2343     }
2344     return NULL;
2345 }
2346
2347 static struct iface *
2348 iface_from_ofp_port(const struct bridge *br, uint16_t ofp_port)
2349 {
2350     struct iface *iface;
2351
2352     HMAP_FOR_EACH_IN_BUCKET (iface, ofp_port_node,
2353                              hash_int(ofp_port, 0), &br->ifaces) {
2354         if (iface->ofp_port == ofp_port) {
2355             return iface;
2356         }
2357     }
2358     return NULL;
2359 }
2360
2361 /* Set Ethernet address of 'iface', if one is specified in the configuration
2362  * file. */
2363 static void
2364 iface_set_mac(struct iface *iface)
2365 {
2366     uint8_t ea[ETH_ADDR_LEN];
2367
2368     if (!strcmp(iface->type, "internal")
2369         && iface->cfg->mac && eth_addr_from_string(iface->cfg->mac, ea)) {
2370         if (iface->ofp_port == OFPP_LOCAL) {
2371             VLOG_ERR("interface %s: ignoring mac in Interface record "
2372                      "(use Bridge record to set local port's mac)",
2373                      iface->name);
2374         } else if (eth_addr_is_multicast(ea)) {
2375             VLOG_ERR("interface %s: cannot set MAC to multicast address",
2376                      iface->name);
2377         } else {
2378             int error = netdev_set_etheraddr(iface->netdev, ea);
2379             if (error) {
2380                 VLOG_ERR("interface %s: setting MAC failed (%s)",
2381                          iface->name, strerror(error));
2382             }
2383         }
2384     }
2385 }
2386
2387 /* Sets the ofport column of 'if_cfg' to 'ofport'. */
2388 static void
2389 iface_set_ofport(const struct ovsrec_interface *if_cfg, int64_t ofport)
2390 {
2391     if (if_cfg && !ovsdb_idl_row_is_synthetic(&if_cfg->header_)) {
2392         ovsrec_interface_set_ofport(if_cfg, &ofport, 1);
2393     }
2394 }
2395
2396 /* Adds the 'n' key-value pairs in 'keys' in 'values' to 'shash'.
2397  *
2398  * The value strings in '*shash' are taken directly from values[], not copied,
2399  * so the caller should not modify or free them. */
2400 static void
2401 shash_from_ovs_idl_map(char **keys, char **values, size_t n,
2402                        struct shash *shash)
2403 {
2404     size_t i;
2405
2406     shash_init(shash);
2407     for (i = 0; i < n; i++) {
2408         shash_add(shash, keys[i], values[i]);
2409     }
2410 }
2411
2412 /* Creates 'keys' and 'values' arrays from 'shash'.
2413  *
2414  * Sets 'keys' and 'values' to heap allocated arrays representing the key-value
2415  * pairs in 'shash'.  The caller takes ownership of 'keys' and 'values'.  They
2416  * are populated with with strings taken directly from 'shash' and thus have
2417  * the same ownership of the key-value pairs in shash.
2418  */
2419 static void
2420 shash_to_ovs_idl_map(struct shash *shash,
2421                      char ***keys, char ***values, size_t *n)
2422 {
2423     size_t i, count;
2424     char **k, **v;
2425     struct shash_node *sn;
2426
2427     count = shash_count(shash);
2428
2429     k = xmalloc(count * sizeof *k);
2430     v = xmalloc(count * sizeof *v);
2431
2432     i = 0;
2433     SHASH_FOR_EACH(sn, shash) {
2434         k[i] = sn->name;
2435         v[i] = sn->data;
2436         i++;
2437     }
2438
2439     *n      = count;
2440     *keys   = k;
2441     *values = v;
2442 }
2443
2444 struct iface_delete_queues_cbdata {
2445     struct netdev *netdev;
2446     const struct ovsdb_datum *queues;
2447 };
2448
2449 static bool
2450 queue_ids_include(const struct ovsdb_datum *queues, int64_t target)
2451 {
2452     union ovsdb_atom atom;
2453
2454     atom.integer = target;
2455     return ovsdb_datum_find_key(queues, &atom, OVSDB_TYPE_INTEGER) != UINT_MAX;
2456 }
2457
2458 static void
2459 iface_delete_queues(unsigned int queue_id,
2460                     const struct shash *details OVS_UNUSED, void *cbdata_)
2461 {
2462     struct iface_delete_queues_cbdata *cbdata = cbdata_;
2463
2464     if (!queue_ids_include(cbdata->queues, queue_id)) {
2465         netdev_delete_queue(cbdata->netdev, queue_id);
2466     }
2467 }
2468
2469 static void
2470 iface_configure_qos(struct iface *iface, const struct ovsrec_qos *qos)
2471 {
2472     if (!qos || qos->type[0] == '\0') {
2473         netdev_set_qos(iface->netdev, NULL, NULL);
2474     } else {
2475         struct iface_delete_queues_cbdata cbdata;
2476         struct shash details;
2477         size_t i;
2478
2479         /* Configure top-level Qos for 'iface'. */
2480         shash_from_ovs_idl_map(qos->key_other_config, qos->value_other_config,
2481                                qos->n_other_config, &details);
2482         netdev_set_qos(iface->netdev, qos->type, &details);
2483         shash_destroy(&details);
2484
2485         /* Deconfigure queues that were deleted. */
2486         cbdata.netdev = iface->netdev;
2487         cbdata.queues = ovsrec_qos_get_queues(qos, OVSDB_TYPE_INTEGER,
2488                                               OVSDB_TYPE_UUID);
2489         netdev_dump_queues(iface->netdev, iface_delete_queues, &cbdata);
2490
2491         /* Configure queues for 'iface'. */
2492         for (i = 0; i < qos->n_queues; i++) {
2493             const struct ovsrec_queue *queue = qos->value_queues[i];
2494             unsigned int queue_id = qos->key_queues[i];
2495
2496             shash_from_ovs_idl_map(queue->key_other_config,
2497                                    queue->value_other_config,
2498                                    queue->n_other_config, &details);
2499             netdev_set_queue(iface->netdev, queue_id, &details);
2500             shash_destroy(&details);
2501         }
2502     }
2503
2504     netdev_set_policing(iface->netdev,
2505                         iface->cfg->ingress_policing_rate,
2506                         iface->cfg->ingress_policing_burst);
2507 }
2508
2509 static void
2510 iface_configure_cfm(struct iface *iface)
2511 {
2512     size_t i;
2513     struct cfm cfm;
2514     uint16_t *remote_mps;
2515     struct ovsrec_monitor *mon;
2516     uint8_t maid[CCM_MAID_LEN];
2517
2518     mon = iface->cfg->monitor;
2519
2520     if (!mon) {
2521         ofproto_port_clear_cfm(iface->port->bridge->ofproto, iface->ofp_port);
2522         return;
2523     }
2524
2525     if (!cfm_generate_maid(mon->md_name, mon->ma_name, maid)) {
2526         VLOG_WARN("interface %s: Failed to generate MAID.", iface->name);
2527         return;
2528     }
2529
2530     cfm.mpid     = mon->mpid;
2531     cfm.interval = mon->interval ? *mon->interval : 1000;
2532
2533     memcpy(cfm.maid, maid, sizeof cfm.maid);
2534
2535     remote_mps = xzalloc(mon->n_remote_mps * sizeof *remote_mps);
2536     for(i = 0; i < mon->n_remote_mps; i++) {
2537         remote_mps[i] = mon->remote_mps[i]->mpid;
2538     }
2539
2540     ofproto_port_set_cfm(iface->port->bridge->ofproto, iface->ofp_port,
2541                          &cfm, remote_mps, mon->n_remote_mps);
2542     free(remote_mps);
2543 }
2544
2545 /* Read carrier or miimon status directly from 'iface''s netdev, according to
2546  * how 'iface''s port is configured.
2547  *
2548  * Returns true if 'iface' is up, false otherwise. */
2549 static bool
2550 iface_get_carrier(const struct iface *iface)
2551 {
2552     /* XXX */
2553     return netdev_get_carrier(iface->netdev);
2554 }
2555
2556 /* Returns true if 'iface' is synthetic, that is, if we constructed it locally
2557  * instead of obtaining it from the database. */
2558 static bool
2559 iface_is_synthetic(const struct iface *iface)
2560 {
2561     return ovsdb_idl_row_is_synthetic(&iface->cfg->header_);
2562 }
2563 \f
2564 /* Port mirroring. */
2565
2566 static struct mirror *
2567 mirror_find_by_uuid(struct bridge *br, const struct uuid *uuid)
2568 {
2569     struct mirror *m;
2570
2571     HMAP_FOR_EACH_IN_BUCKET (m, hmap_node, uuid_hash(uuid), &br->mirrors) {
2572         if (uuid_equals(uuid, &m->uuid)) {
2573             return m;
2574         }
2575     }
2576     return NULL;
2577 }
2578
2579 static void
2580 bridge_configure_mirrors(struct bridge *br)
2581 {
2582     const struct ovsdb_datum *mc;
2583     unsigned long *flood_vlans;
2584     struct mirror *m, *next;
2585     size_t i;
2586
2587     /* Get rid of deleted mirrors. */
2588     mc = ovsrec_bridge_get_mirrors(br->cfg, OVSDB_TYPE_UUID);
2589     HMAP_FOR_EACH_SAFE (m, next, hmap_node, &br->mirrors) {
2590         union ovsdb_atom atom;
2591
2592         atom.uuid = m->uuid;
2593         if (ovsdb_datum_find_key(mc, &atom, OVSDB_TYPE_UUID) == UINT_MAX) {
2594             mirror_destroy(m);
2595         }
2596     }
2597
2598     /* Add new mirrors and reconfigure existing ones. */
2599     for (i = 0; i < br->cfg->n_mirrors; i++) {
2600         const struct ovsrec_mirror *cfg = br->cfg->mirrors[i];
2601         struct mirror *m = mirror_find_by_uuid(br, &cfg->header_.uuid);
2602         if (!m) {
2603             m = mirror_create(br, cfg);
2604         }
2605         if (!mirror_configure(m, cfg)) {
2606             mirror_destroy(m);
2607         }
2608     }
2609
2610     /* Update flooded vlans (for RSPAN). */
2611     flood_vlans = vlan_bitmap_from_array(br->cfg->flood_vlans,
2612                                          br->cfg->n_flood_vlans);
2613     ofproto_set_flood_vlans(br->ofproto, flood_vlans);
2614     bitmap_free(flood_vlans);
2615 }
2616
2617 static struct mirror *
2618 mirror_create(struct bridge *br, const struct ovsrec_mirror *cfg)
2619 {
2620     struct mirror *m;
2621
2622     m = xzalloc(sizeof *m);
2623     m->uuid = cfg->header_.uuid;
2624     hmap_insert(&br->mirrors, &m->hmap_node, uuid_hash(&m->uuid));
2625     m->bridge = br;
2626     m->name = xstrdup(cfg->name);
2627
2628     return m;
2629 }
2630
2631 static void
2632 mirror_destroy(struct mirror *m)
2633 {
2634     if (m) {
2635         struct bridge *br = m->bridge;
2636
2637         if (br->ofproto) {
2638             ofproto_mirror_unregister(br->ofproto, m);
2639         }
2640
2641         hmap_remove(&br->mirrors, &m->hmap_node);
2642         free(m->name);
2643         free(m);
2644     }
2645 }
2646
2647 static void
2648 mirror_collect_ports(struct mirror *m,
2649                      struct ovsrec_port **in_ports, int n_in_ports,
2650                      void ***out_portsp, size_t *n_out_portsp)
2651 {
2652     void **out_ports = xmalloc(n_in_ports * sizeof *out_ports);
2653     size_t n_out_ports = 0;
2654     size_t i;
2655
2656     for (i = 0; i < n_in_ports; i++) {
2657         const char *name = in_ports[i]->name;
2658         struct port *port = port_lookup(m->bridge, name);
2659         if (port) {
2660             out_ports[n_out_ports++] = port;
2661         } else {
2662             VLOG_WARN("bridge %s: mirror %s cannot match on nonexistent "
2663                       "port %s", m->bridge->name, m->name, name);
2664         }
2665     }
2666     *out_portsp = out_ports;
2667     *n_out_portsp = n_out_ports;
2668 }
2669
2670 static bool
2671 mirror_configure(struct mirror *m, const struct ovsrec_mirror *cfg)
2672 {
2673     struct ofproto_mirror_settings s;
2674
2675     /* Set name. */
2676     if (strcmp(cfg->name, m->name)) {
2677         free(m->name);
2678         m->name = xstrdup(cfg->name);
2679     }
2680     s.name = m->name;
2681
2682     /* Get output port or VLAN. */
2683     if (cfg->output_port) {
2684         s.out_bundle = port_lookup(m->bridge, cfg->output_port->name);
2685         if (!s.out_bundle) {
2686             VLOG_ERR("bridge %s: mirror %s outputs to port not on bridge",
2687                      m->bridge->name, m->name);
2688             return false;
2689         }
2690         s.out_vlan = UINT16_MAX;
2691
2692         if (cfg->output_vlan) {
2693             VLOG_ERR("bridge %s: mirror %s specifies both output port and "
2694                      "output vlan; ignoring output vlan",
2695                      m->bridge->name, m->name);
2696         }
2697     } else if (cfg->output_vlan) {
2698         /* The database should prevent invalid VLAN values. */
2699         s.out_bundle = NULL;
2700         s.out_vlan = *cfg->output_vlan;
2701     } else {
2702         VLOG_ERR("bridge %s: mirror %s does not specify output; ignoring",
2703                  m->bridge->name, m->name);
2704         return false;
2705     }
2706
2707     /* Get port selection. */
2708     if (cfg->select_all) {
2709         size_t n_ports = hmap_count(&m->bridge->ports);
2710         void **ports = xmalloc(n_ports * sizeof *ports);
2711         struct port *port;
2712         size_t i;
2713
2714         i = 0;
2715         HMAP_FOR_EACH (port, hmap_node, &m->bridge->ports) {
2716             ports[i++] = port;
2717         }
2718
2719         s.srcs = ports;
2720         s.n_srcs = n_ports;
2721
2722         s.dsts = ports;
2723         s.n_dsts = n_ports;
2724     } else {
2725         /* Get ports, dropping ports that don't exist.
2726          * The IDL ensures that there are no duplicates. */
2727         mirror_collect_ports(m, cfg->select_src_port, cfg->n_select_src_port,
2728                              &s.srcs, &s.n_srcs);
2729         mirror_collect_ports(m, cfg->select_dst_port, cfg->n_select_dst_port,
2730                              &s.dsts, &s.n_dsts);
2731
2732     }
2733
2734     /* Get VLAN selection. */
2735     s.src_vlans = vlan_bitmap_from_array(cfg->select_vlan, cfg->n_select_vlan);
2736
2737     /* Configure. */
2738     ofproto_mirror_register(m->bridge->ofproto, m, &s);
2739
2740     /* Clean up. */
2741     if (s.srcs != s.dsts) {
2742         free(s.dsts);
2743     }
2744     free(s.srcs);
2745     free(s.src_vlans);
2746
2747     return true;
2748 }