meta-flow: Correctly set destination MAC in mf_set_flow_value().
[sliver-openvswitch.git] / vswitchd / bridge.c
1 /* Copyright (c) 2008, 2009, 2010, 2011, 2012 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 <assert.h>
19 #include <errno.h>
20 #include <inttypes.h>
21 #include <stdlib.h>
22 #include "bitmap.h"
23 #include "bond.h"
24 #include "cfm.h"
25 #include "coverage.h"
26 #include "daemon.h"
27 #include "dirs.h"
28 #include "dynamic-string.h"
29 #include "hash.h"
30 #include "hmap.h"
31 #include "hmapx.h"
32 #include "jsonrpc.h"
33 #include "lacp.h"
34 #include "list.h"
35 #include "mac-learning.h"
36 #include "netdev.h"
37 #include "ofp-print.h"
38 #include "ofpbuf.h"
39 #include "ofproto/ofproto.h"
40 #include "poll-loop.h"
41 #include "sha1.h"
42 #include "shash.h"
43 #include "socket-util.h"
44 #include "stream.h"
45 #include "stream-ssl.h"
46 #include "sset.h"
47 #include "system-stats.h"
48 #include "timeval.h"
49 #include "util.h"
50 #include "unixctl.h"
51 #include "vlandev.h"
52 #include "vswitchd/vswitch-idl.h"
53 #include "xenserver.h"
54 #include "vlog.h"
55 #include "sflow_api.h"
56 #include "vlan-bitmap.h"
57
58 VLOG_DEFINE_THIS_MODULE(bridge);
59
60 COVERAGE_DEFINE(bridge_reconfigure);
61
62 struct iface {
63     /* These members are always valid. */
64     struct list port_elem;      /* Element in struct port's "ifaces" list. */
65     struct hmap_node name_node; /* In struct bridge's "iface_by_name" hmap. */
66     struct port *port;          /* Containing port. */
67     char *name;                 /* Host network device name. */
68     tag_type tag;               /* Tag associated with this interface. */
69
70     /* These members are valid only after bridge_reconfigure() causes them to
71      * be initialized. */
72     struct hmap_node ofp_port_node; /* In struct bridge's "ifaces" hmap. */
73     int ofp_port;               /* OpenFlow port number, -1 if unknown. */
74     struct netdev *netdev;      /* Network device. */
75     const char *type;           /* Usually same as cfg->type. */
76     const struct ovsrec_interface *cfg;
77 };
78
79 struct mirror {
80     struct uuid uuid;           /* UUID of this "mirror" record in database. */
81     struct hmap_node hmap_node; /* In struct bridge's "mirrors" hmap. */
82     struct bridge *bridge;
83     char *name;
84     const struct ovsrec_mirror *cfg;
85 };
86
87 struct port {
88     struct bridge *bridge;
89     struct hmap_node hmap_node; /* Element in struct bridge's "ports" hmap. */
90     char *name;
91
92     const struct ovsrec_port *cfg;
93
94     /* An ordinary bridge port has 1 interface.
95      * A bridge port for bonding has at least 2 interfaces. */
96     struct list ifaces;         /* List of "struct iface"s. */
97 };
98
99 struct bridge {
100     struct hmap_node node;      /* In 'all_bridges'. */
101     char *name;                 /* User-specified arbitrary name. */
102     char *type;                 /* Datapath type. */
103     uint8_t ea[ETH_ADDR_LEN];   /* Bridge Ethernet Address. */
104     uint8_t default_ea[ETH_ADDR_LEN]; /* Default MAC. */
105     const struct ovsrec_bridge *cfg;
106
107     /* OpenFlow switch processing. */
108     struct ofproto *ofproto;    /* OpenFlow switch. */
109
110     /* Bridge ports. */
111     struct hmap ports;          /* "struct port"s indexed by name. */
112     struct hmap ifaces;         /* "struct iface"s indexed by ofp_port. */
113     struct hmap iface_by_name;  /* "struct iface"s indexed by name. */
114
115     /* Port mirroring. */
116     struct hmap mirrors;        /* "struct mirror" indexed by UUID. */
117
118     /* Synthetic local port if necessary. */
119     struct ovsrec_port synth_local_port;
120     struct ovsrec_interface synth_local_iface;
121     struct ovsrec_interface *synth_local_ifacep;
122 };
123
124 /* All bridges, indexed by name. */
125 static struct hmap all_bridges = HMAP_INITIALIZER(&all_bridges);
126
127 /* OVSDB IDL used to obtain configuration. */
128 static struct ovsdb_idl *idl;
129
130 /* Each time this timer expires, the bridge fetches systems and interface
131  * statistics and pushes them into the database. */
132 #define STATS_INTERVAL (5 * 1000) /* In milliseconds. */
133 static long long int stats_timer = LLONG_MIN;
134
135 /* Stores the time after which rate limited statistics may be written to the
136  * database.  Only updated when changes to the database require rate limiting.
137  */
138 #define DB_LIMIT_INTERVAL (1 * 1000) /* In milliseconds. */
139 static long long int db_limiter = LLONG_MIN;
140
141 static void add_del_bridges(const struct ovsrec_open_vswitch *);
142 static void bridge_del_ofprotos(void);
143 static bool bridge_add_ofprotos(struct bridge *);
144 static void bridge_create(const struct ovsrec_bridge *);
145 static void bridge_destroy(struct bridge *);
146 static struct bridge *bridge_lookup(const char *name);
147 static unixctl_cb_func bridge_unixctl_dump_flows;
148 static unixctl_cb_func bridge_unixctl_reconnect;
149 static size_t bridge_get_controllers(const struct bridge *br,
150                                      struct ovsrec_controller ***controllersp);
151 static void bridge_add_del_ports(struct bridge *,
152                                  const unsigned long int *splinter_vlans);
153 static void bridge_add_ofproto_ports(struct bridge *);
154 static void bridge_del_ofproto_ports(struct bridge *);
155 static void bridge_refresh_ofp_port(struct bridge *);
156 static void bridge_configure_datapath_id(struct bridge *);
157 static void bridge_configure_flow_eviction_threshold(struct bridge *);
158 static void bridge_configure_netflow(struct bridge *);
159 static void bridge_configure_forward_bpdu(struct bridge *);
160 static void bridge_configure_mac_idle_time(struct bridge *);
161 static void bridge_configure_sflow(struct bridge *, int *sflow_bridge_number);
162 static void bridge_configure_stp(struct bridge *);
163 static void bridge_configure_remotes(struct bridge *,
164                                      const struct sockaddr_in *managers,
165                                      size_t n_managers);
166 static void bridge_pick_local_hw_addr(struct bridge *,
167                                       uint8_t ea[ETH_ADDR_LEN],
168                                       struct iface **hw_addr_iface);
169 static uint64_t bridge_pick_datapath_id(struct bridge *,
170                                         const uint8_t bridge_ea[ETH_ADDR_LEN],
171                                         struct iface *hw_addr_iface);
172 static const char *bridge_get_other_config(const struct ovsrec_bridge *,
173                                             const char *key);
174 static const char *get_port_other_config(const struct ovsrec_port *,
175                                          const char *key,
176                                          const char *default_value);
177 static uint64_t dpid_from_hash(const void *, size_t nbytes);
178 static bool bridge_has_bond_fake_iface(const struct bridge *,
179                                        const char *name);
180 static bool port_is_bond_fake_iface(const struct port *);
181
182 static unixctl_cb_func qos_unixctl_show;
183
184 static struct port *port_create(struct bridge *, const struct ovsrec_port *);
185 static void port_add_ifaces(struct port *);
186 static void port_del_ifaces(struct port *);
187 static void port_destroy(struct port *);
188 static struct port *port_lookup(const struct bridge *, const char *name);
189 static void port_configure(struct port *);
190 static struct lacp_settings *port_configure_lacp(struct port *,
191                                                  struct lacp_settings *);
192 static void port_configure_bond(struct port *, struct bond_settings *,
193                                 uint32_t *bond_stable_ids);
194 static bool port_is_synthetic(const struct port *);
195
196 static void bridge_configure_mirrors(struct bridge *);
197 static struct mirror *mirror_create(struct bridge *,
198                                     const struct ovsrec_mirror *);
199 static void mirror_destroy(struct mirror *);
200 static bool mirror_configure(struct mirror *);
201 static void mirror_refresh_stats(struct mirror *);
202
203 static void iface_configure_lacp(struct iface *, struct lacp_slave_settings *);
204 static struct iface *iface_create(struct port *port,
205                                   const struct ovsrec_interface *if_cfg);
206 static void iface_destroy(struct iface *);
207 static struct iface *iface_lookup(const struct bridge *, const char *name);
208 static struct iface *iface_find(const char *name);
209 static struct iface *iface_from_ofp_port(const struct bridge *,
210                                          uint16_t ofp_port);
211 static void iface_set_mac(struct iface *);
212 static void iface_set_ofport(const struct ovsrec_interface *, int64_t ofport);
213 static void iface_clear_db_record(const struct ovsrec_interface *if_cfg);
214 static void iface_configure_qos(struct iface *, const struct ovsrec_qos *);
215 static void iface_configure_cfm(struct iface *);
216 static void iface_refresh_cfm_stats(struct iface *);
217 static void iface_refresh_stats(struct iface *);
218 static void iface_refresh_status(struct iface *);
219 static bool iface_is_synthetic(const struct iface *);
220 static const char *get_interface_other_config(const struct ovsrec_interface *,
221                                               const char *key,
222                                               const char *default_value);
223
224 static void shash_from_ovs_idl_map(char **keys, char **values, size_t n,
225                                    struct shash *);
226 static void shash_to_ovs_idl_map(struct shash *,
227                                  char ***keys, char ***values, size_t *n);
228
229 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
230  *
231  * This is deprecated.  It is only for compatibility with broken device drivers
232  * in old versions of Linux that do not properly support VLANs when VLAN
233  * devices are not used.  When broken device drivers are no longer in
234  * widespread use, we will delete these interfaces. */
235
236 /* True if VLAN splinters are enabled on any interface, false otherwise.*/
237 static bool vlan_splinters_enabled_anywhere;
238
239 static bool vlan_splinters_is_enabled(const struct ovsrec_interface *);
240 static unsigned long int *collect_splinter_vlans(
241     const struct ovsrec_open_vswitch *);
242 static void configure_splinter_port(struct port *);
243 static void add_vlan_splinter_ports(struct bridge *,
244                                     const unsigned long int *splinter_vlans,
245                                     struct shash *ports);
246 \f
247 /* Public functions. */
248
249 /* Initializes the bridge module, configuring it to obtain its configuration
250  * from an OVSDB server accessed over 'remote', which should be a string in a
251  * form acceptable to ovsdb_idl_create(). */
252 void
253 bridge_init(const char *remote)
254 {
255     /* Create connection to database. */
256     idl = ovsdb_idl_create(remote, &ovsrec_idl_class, true);
257     ovsdb_idl_set_lock(idl, "ovs_vswitchd");
258
259     ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_cur_cfg);
260     ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_statistics);
261     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_external_ids);
262     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_ovs_version);
263     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_db_version);
264     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_system_type);
265     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_system_version);
266
267     ovsdb_idl_omit_alert(idl, &ovsrec_bridge_col_datapath_id);
268     ovsdb_idl_omit_alert(idl, &ovsrec_bridge_col_status);
269     ovsdb_idl_omit(idl, &ovsrec_bridge_col_external_ids);
270
271     ovsdb_idl_omit_alert(idl, &ovsrec_port_col_status);
272     ovsdb_idl_omit_alert(idl, &ovsrec_port_col_statistics);
273     ovsdb_idl_omit(idl, &ovsrec_port_col_external_ids);
274     ovsdb_idl_omit(idl, &ovsrec_port_col_fake_bridge);
275
276     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_admin_state);
277     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_duplex);
278     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_link_speed);
279     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_link_state);
280     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_link_resets);
281     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_mtu);
282     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_ofport);
283     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_statistics);
284     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_status);
285     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_cfm_fault);
286     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_cfm_remote_mpids);
287     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_lacp_current);
288     ovsdb_idl_omit(idl, &ovsrec_interface_col_external_ids);
289
290     ovsdb_idl_omit_alert(idl, &ovsrec_controller_col_is_connected);
291     ovsdb_idl_omit_alert(idl, &ovsrec_controller_col_role);
292     ovsdb_idl_omit_alert(idl, &ovsrec_controller_col_status);
293     ovsdb_idl_omit(idl, &ovsrec_controller_col_external_ids);
294
295     ovsdb_idl_omit(idl, &ovsrec_qos_col_external_ids);
296
297     ovsdb_idl_omit(idl, &ovsrec_queue_col_external_ids);
298
299     ovsdb_idl_omit(idl, &ovsrec_mirror_col_external_ids);
300     ovsdb_idl_omit_alert(idl, &ovsrec_mirror_col_statistics);
301
302     ovsdb_idl_omit(idl, &ovsrec_netflow_col_external_ids);
303
304     ovsdb_idl_omit(idl, &ovsrec_sflow_col_external_ids);
305
306     ovsdb_idl_omit(idl, &ovsrec_manager_col_external_ids);
307     ovsdb_idl_omit(idl, &ovsrec_manager_col_inactivity_probe);
308     ovsdb_idl_omit(idl, &ovsrec_manager_col_is_connected);
309     ovsdb_idl_omit(idl, &ovsrec_manager_col_max_backoff);
310     ovsdb_idl_omit(idl, &ovsrec_manager_col_status);
311
312     ovsdb_idl_omit(idl, &ovsrec_ssl_col_external_ids);
313
314     /* Register unixctl commands. */
315     unixctl_command_register("qos/show", "interface", 1, 1,
316                              qos_unixctl_show, NULL);
317     unixctl_command_register("bridge/dump-flows", "bridge", 1, 1,
318                              bridge_unixctl_dump_flows, NULL);
319     unixctl_command_register("bridge/reconnect", "[bridge]", 0, 1,
320                              bridge_unixctl_reconnect, NULL);
321     lacp_init();
322     bond_init();
323     cfm_init();
324 }
325
326 void
327 bridge_exit(void)
328 {
329     struct bridge *br, *next_br;
330
331     HMAP_FOR_EACH_SAFE (br, next_br, node, &all_bridges) {
332         bridge_destroy(br);
333     }
334     ovsdb_idl_destroy(idl);
335 }
336
337 /* Looks at the list of managers in 'ovs_cfg' and extracts their remote IP
338  * addresses and ports into '*managersp' and '*n_managersp'.  The caller is
339  * responsible for freeing '*managersp' (with free()).
340  *
341  * You may be asking yourself "why does ovs-vswitchd care?", because
342  * ovsdb-server is responsible for connecting to the managers, and ovs-vswitchd
343  * should not be and in fact is not directly involved in that.  But
344  * ovs-vswitchd needs to make sure that ovsdb-server can reach the managers, so
345  * it has to tell in-band control where the managers are to enable that.
346  * (Thus, only managers connected in-band are collected.)
347  */
348 static void
349 collect_in_band_managers(const struct ovsrec_open_vswitch *ovs_cfg,
350                          struct sockaddr_in **managersp, size_t *n_managersp)
351 {
352     struct sockaddr_in *managers = NULL;
353     size_t n_managers = 0;
354     struct sset targets;
355     size_t i;
356
357     /* Collect all of the potential targets from the "targets" columns of the
358      * rows pointed to by "manager_options", excluding any that are
359      * out-of-band. */
360     sset_init(&targets);
361     for (i = 0; i < ovs_cfg->n_manager_options; i++) {
362         struct ovsrec_manager *m = ovs_cfg->manager_options[i];
363
364         if (m->connection_mode && !strcmp(m->connection_mode, "out-of-band")) {
365             sset_find_and_delete(&targets, m->target);
366         } else {
367             sset_add(&targets, m->target);
368         }
369     }
370
371     /* Now extract the targets' IP addresses. */
372     if (!sset_is_empty(&targets)) {
373         const char *target;
374
375         managers = xmalloc(sset_count(&targets) * sizeof *managers);
376         SSET_FOR_EACH (target, &targets) {
377             struct sockaddr_in *sin = &managers[n_managers];
378
379             if (stream_parse_target_with_default_ports(target,
380                                                        JSONRPC_TCP_PORT,
381                                                        JSONRPC_SSL_PORT,
382                                                        sin)) {
383                 n_managers++;
384             }
385         }
386     }
387     sset_destroy(&targets);
388
389     *managersp = managers;
390     *n_managersp = n_managers;
391 }
392
393 static void
394 bridge_reconfigure(const struct ovsrec_open_vswitch *ovs_cfg)
395 {
396     unsigned long int *splinter_vlans;
397     struct sockaddr_in *managers;
398     struct bridge *br, *next;
399     int sflow_bridge_number;
400     size_t n_managers;
401
402     COVERAGE_INC(bridge_reconfigure);
403
404     /* Create and destroy "struct bridge"s, "struct port"s, and "struct
405      * iface"s according to 'ovs_cfg', with only very minimal configuration
406      * otherwise.
407      *
408      * This is mostly an update to bridge data structures.  Very little is
409      * pushed down to ofproto or lower layers. */
410     add_del_bridges(ovs_cfg);
411     splinter_vlans = collect_splinter_vlans(ovs_cfg);
412     HMAP_FOR_EACH (br, node, &all_bridges) {
413         bridge_add_del_ports(br, splinter_vlans);
414     }
415     free(splinter_vlans);
416
417     /* Delete all datapaths and datapath ports that are no longer configured.
418      *
419      * The kernel will reject any attempt to add a given port to a datapath if
420      * that port already belongs to a different datapath, so we must do all
421      * port deletions before any port additions.  A datapath always has a
422      * "local port" so we must delete not-configured datapaths too. */
423     bridge_del_ofprotos();
424     HMAP_FOR_EACH (br, node, &all_bridges) {
425         if (br->ofproto) {
426             bridge_del_ofproto_ports(br);
427         }
428     }
429
430     /* Create datapaths and datapath ports that are missing.
431      *
432      * After this is done, we have our final set of bridges, ports, and
433      * interfaces.  Every "struct bridge" has an ofproto, every "struct port"
434      * has at least one iface, every "struct iface" has a valid ofp_port and
435      * netdev. */
436     HMAP_FOR_EACH_SAFE (br, next, node, &all_bridges) {
437         if (!br->ofproto) {
438             if (bridge_add_ofprotos(br)) {
439                 bridge_del_ofproto_ports(br);
440             } else {
441                 bridge_destroy(br);
442             }
443         }
444     }
445     HMAP_FOR_EACH (br, node, &all_bridges) {
446         bridge_refresh_ofp_port(br);
447         bridge_add_ofproto_ports(br);
448     }
449
450     /* Complete the configuration. */
451     sflow_bridge_number = 0;
452     collect_in_band_managers(ovs_cfg, &managers, &n_managers);
453     HMAP_FOR_EACH (br, node, &all_bridges) {
454         struct port *port;
455
456         /* We need the datapath ID early to allow LACP ports to use it as the
457          * default system ID. */
458         bridge_configure_datapath_id(br);
459
460         HMAP_FOR_EACH (port, hmap_node, &br->ports) {
461             struct iface *iface;
462
463             port_configure(port);
464
465             LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
466                 iface_configure_cfm(iface);
467                 iface_configure_qos(iface, port->cfg->qos);
468                 iface_set_mac(iface);
469             }
470         }
471         bridge_configure_mirrors(br);
472         bridge_configure_flow_eviction_threshold(br);
473         bridge_configure_forward_bpdu(br);
474         bridge_configure_mac_idle_time(br);
475         bridge_configure_remotes(br, managers, n_managers);
476         bridge_configure_netflow(br);
477         bridge_configure_sflow(br, &sflow_bridge_number);
478         bridge_configure_stp(br);
479     }
480     free(managers);
481
482     /* ovs-vswitchd has completed initialization, so allow the process that
483      * forked us to exit successfully. */
484     daemonize_complete();
485 }
486
487 /* Iterate over all ofprotos and delete any of them that do not have a
488  * configured bridge or that are the wrong type. */
489 static void
490 bridge_del_ofprotos(void)
491 {
492     struct sset names;
493     struct sset types;
494     const char *type;
495
496     sset_init(&names);
497     sset_init(&types);
498     ofproto_enumerate_types(&types);
499     SSET_FOR_EACH (type, &types) {
500         const char *name;
501
502         ofproto_enumerate_names(type, &names);
503         SSET_FOR_EACH (name, &names) {
504             struct bridge *br = bridge_lookup(name);
505             if (!br || strcmp(type, br->type)) {
506                 ofproto_delete(name, type);
507             }
508         }
509     }
510     sset_destroy(&names);
511     sset_destroy(&types);
512 }
513
514 static bool
515 bridge_add_ofprotos(struct bridge *br)
516 {
517     int error = ofproto_create(br->name, br->type, &br->ofproto);
518     if (error) {
519         VLOG_ERR("failed to create bridge %s: %s", br->name, strerror(error));
520         return false;
521     }
522     return true;
523 }
524
525 static void
526 port_configure(struct port *port)
527 {
528     const struct ovsrec_port *cfg = port->cfg;
529     struct bond_settings bond_settings;
530     struct lacp_settings lacp_settings;
531     struct ofproto_bundle_settings s;
532     struct iface *iface;
533
534     if (cfg->vlan_mode && !strcmp(cfg->vlan_mode, "splinter")) {
535         configure_splinter_port(port);
536         return;
537     }
538
539     /* Get name. */
540     s.name = port->name;
541
542     /* Get slaves. */
543     s.n_slaves = 0;
544     s.slaves = xmalloc(list_size(&port->ifaces) * sizeof *s.slaves);
545     LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
546         s.slaves[s.n_slaves++] = iface->ofp_port;
547     }
548
549     /* Get VLAN tag. */
550     s.vlan = -1;
551     if (cfg->tag && *cfg->tag >= 0 && *cfg->tag <= 4095) {
552         s.vlan = *cfg->tag;
553     }
554
555     /* Get VLAN trunks. */
556     s.trunks = NULL;
557     if (cfg->n_trunks) {
558         s.trunks = vlan_bitmap_from_array(cfg->trunks, cfg->n_trunks);
559     }
560
561     /* Get VLAN mode. */
562     if (cfg->vlan_mode) {
563         if (!strcmp(cfg->vlan_mode, "access")) {
564             s.vlan_mode = PORT_VLAN_ACCESS;
565         } else if (!strcmp(cfg->vlan_mode, "trunk")) {
566             s.vlan_mode = PORT_VLAN_TRUNK;
567         } else if (!strcmp(cfg->vlan_mode, "native-tagged")) {
568             s.vlan_mode = PORT_VLAN_NATIVE_TAGGED;
569         } else if (!strcmp(cfg->vlan_mode, "native-untagged")) {
570             s.vlan_mode = PORT_VLAN_NATIVE_UNTAGGED;
571         } else {
572             /* This "can't happen" because ovsdb-server should prevent it. */
573             VLOG_ERR("unknown VLAN mode %s", cfg->vlan_mode);
574             s.vlan_mode = PORT_VLAN_TRUNK;
575         }
576     } else {
577         if (s.vlan >= 0) {
578             s.vlan_mode = PORT_VLAN_ACCESS;
579             if (cfg->n_trunks) {
580                 VLOG_ERR("port %s: ignoring trunks in favor of implicit vlan",
581                          port->name);
582             }
583         } else {
584             s.vlan_mode = PORT_VLAN_TRUNK;
585         }
586     }
587     s.use_priority_tags = !strcmp("true", get_port_other_config(
588                                       cfg, "priority-tags", ""));
589
590     /* Get LACP settings. */
591     s.lacp = port_configure_lacp(port, &lacp_settings);
592     if (s.lacp) {
593         size_t i = 0;
594
595         s.lacp_slaves = xmalloc(s.n_slaves * sizeof *s.lacp_slaves);
596         LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
597             iface_configure_lacp(iface, &s.lacp_slaves[i++]);
598         }
599     } else {
600         s.lacp_slaves = NULL;
601     }
602
603     /* Get bond settings. */
604     if (s.n_slaves > 1) {
605         s.bond = &bond_settings;
606         s.bond_stable_ids = xmalloc(s.n_slaves * sizeof *s.bond_stable_ids);
607         port_configure_bond(port, &bond_settings, s.bond_stable_ids);
608     } else {
609         s.bond = NULL;
610         s.bond_stable_ids = NULL;
611
612         LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
613             netdev_set_miimon_interval(iface->netdev, 0);
614         }
615     }
616
617     /* Register. */
618     ofproto_bundle_register(port->bridge->ofproto, port, &s);
619
620     /* Clean up. */
621     free(s.slaves);
622     free(s.trunks);
623     free(s.lacp_slaves);
624     free(s.bond_stable_ids);
625 }
626
627 /* Pick local port hardware address and datapath ID for 'br'. */
628 static void
629 bridge_configure_datapath_id(struct bridge *br)
630 {
631     uint8_t ea[ETH_ADDR_LEN];
632     uint64_t dpid;
633     struct iface *local_iface;
634     struct iface *hw_addr_iface;
635     char *dpid_string;
636
637     bridge_pick_local_hw_addr(br, ea, &hw_addr_iface);
638     local_iface = iface_from_ofp_port(br, OFPP_LOCAL);
639     if (local_iface) {
640         int error = netdev_set_etheraddr(local_iface->netdev, ea);
641         if (error) {
642             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
643             VLOG_ERR_RL(&rl, "bridge %s: failed to set bridge "
644                         "Ethernet address: %s",
645                         br->name, strerror(error));
646         }
647     }
648     memcpy(br->ea, ea, ETH_ADDR_LEN);
649
650     dpid = bridge_pick_datapath_id(br, ea, hw_addr_iface);
651     ofproto_set_datapath_id(br->ofproto, dpid);
652
653     dpid_string = xasprintf("%016"PRIx64, dpid);
654     ovsrec_bridge_set_datapath_id(br->cfg, dpid_string);
655     free(dpid_string);
656 }
657
658 /* Set NetFlow configuration on 'br'. */
659 static void
660 bridge_configure_netflow(struct bridge *br)
661 {
662     struct ovsrec_netflow *cfg = br->cfg->netflow;
663     struct netflow_options opts;
664
665     if (!cfg) {
666         ofproto_set_netflow(br->ofproto, NULL);
667         return;
668     }
669
670     memset(&opts, 0, sizeof opts);
671
672     /* Get default NetFlow configuration from datapath.
673      * Apply overrides from 'cfg'. */
674     ofproto_get_netflow_ids(br->ofproto, &opts.engine_type, &opts.engine_id);
675     if (cfg->engine_type) {
676         opts.engine_type = *cfg->engine_type;
677     }
678     if (cfg->engine_id) {
679         opts.engine_id = *cfg->engine_id;
680     }
681
682     /* Configure active timeout interval. */
683     opts.active_timeout = cfg->active_timeout;
684     if (!opts.active_timeout) {
685         opts.active_timeout = -1;
686     } else if (opts.active_timeout < 0) {
687         VLOG_WARN("bridge %s: active timeout interval set to negative "
688                   "value, using default instead (%d seconds)", br->name,
689                   NF_ACTIVE_TIMEOUT_DEFAULT);
690         opts.active_timeout = -1;
691     }
692
693     /* Add engine ID to interface number to disambiguate bridgs? */
694     opts.add_id_to_iface = cfg->add_id_to_interface;
695     if (opts.add_id_to_iface) {
696         if (opts.engine_id > 0x7f) {
697             VLOG_WARN("bridge %s: NetFlow port mangling may conflict with "
698                       "another vswitch, choose an engine id less than 128",
699                       br->name);
700         }
701         if (hmap_count(&br->ports) > 508) {
702             VLOG_WARN("bridge %s: NetFlow port mangling will conflict with "
703                       "another port when more than 508 ports are used",
704                       br->name);
705         }
706     }
707
708     /* Collectors. */
709     sset_init(&opts.collectors);
710     sset_add_array(&opts.collectors, cfg->targets, cfg->n_targets);
711
712     /* Configure. */
713     if (ofproto_set_netflow(br->ofproto, &opts)) {
714         VLOG_ERR("bridge %s: problem setting netflow collectors", br->name);
715     }
716     sset_destroy(&opts.collectors);
717 }
718
719 /* Set sFlow configuration on 'br'. */
720 static void
721 bridge_configure_sflow(struct bridge *br, int *sflow_bridge_number)
722 {
723     const struct ovsrec_sflow *cfg = br->cfg->sflow;
724     struct ovsrec_controller **controllers;
725     struct ofproto_sflow_options oso;
726     size_t n_controllers;
727     size_t i;
728
729     if (!cfg) {
730         ofproto_set_sflow(br->ofproto, NULL);
731         return;
732     }
733
734     memset(&oso, 0, sizeof oso);
735
736     sset_init(&oso.targets);
737     sset_add_array(&oso.targets, cfg->targets, cfg->n_targets);
738
739     oso.sampling_rate = SFL_DEFAULT_SAMPLING_RATE;
740     if (cfg->sampling) {
741         oso.sampling_rate = *cfg->sampling;
742     }
743
744     oso.polling_interval = SFL_DEFAULT_POLLING_INTERVAL;
745     if (cfg->polling) {
746         oso.polling_interval = *cfg->polling;
747     }
748
749     oso.header_len = SFL_DEFAULT_HEADER_SIZE;
750     if (cfg->header) {
751         oso.header_len = *cfg->header;
752     }
753
754     oso.sub_id = (*sflow_bridge_number)++;
755     oso.agent_device = cfg->agent;
756
757     oso.control_ip = NULL;
758     n_controllers = bridge_get_controllers(br, &controllers);
759     for (i = 0; i < n_controllers; i++) {
760         if (controllers[i]->local_ip) {
761             oso.control_ip = controllers[i]->local_ip;
762             break;
763         }
764     }
765     ofproto_set_sflow(br->ofproto, &oso);
766
767     sset_destroy(&oso.targets);
768 }
769
770 static void
771 port_configure_stp(const struct ofproto *ofproto, struct port *port,
772                    struct ofproto_port_stp_settings *port_s,
773                    int *port_num_counter, unsigned long *port_num_bitmap)
774 {
775     const char *config_str;
776     struct iface *iface;
777
778     config_str = get_port_other_config(port->cfg, "stp-enable", NULL);
779     if (config_str && !strcmp(config_str, "false")) {
780         port_s->enable = false;
781         return;
782     } else {
783         port_s->enable = true;
784     }
785
786     /* STP over bonds is not supported. */
787     if (!list_is_singleton(&port->ifaces)) {
788         VLOG_ERR("port %s: cannot enable STP on bonds, disabling",
789                  port->name);
790         port_s->enable = false;
791         return;
792     }
793
794     iface = CONTAINER_OF(list_front(&port->ifaces), struct iface, port_elem);
795
796     /* Internal ports shouldn't participate in spanning tree, so
797      * skip them. */
798     if (!strcmp(iface->type, "internal")) {
799         VLOG_DBG("port %s: disable STP on internal ports", port->name);
800         port_s->enable = false;
801         return;
802     }
803
804     /* STP on mirror output ports is not supported. */
805     if (ofproto_is_mirror_output_bundle(ofproto, port)) {
806         VLOG_DBG("port %s: disable STP on mirror ports", port->name);
807         port_s->enable = false;
808         return;
809     }
810
811     config_str = get_port_other_config(port->cfg, "stp-port-num", NULL);
812     if (config_str) {
813         unsigned long int port_num = strtoul(config_str, NULL, 0);
814         int port_idx = port_num - 1;
815
816         if (port_num < 1 || port_num > STP_MAX_PORTS) {
817             VLOG_ERR("port %s: invalid stp-port-num", port->name);
818             port_s->enable = false;
819             return;
820         }
821
822         if (bitmap_is_set(port_num_bitmap, port_idx)) {
823             VLOG_ERR("port %s: duplicate stp-port-num %lu, disabling",
824                     port->name, port_num);
825             port_s->enable = false;
826             return;
827         }
828         bitmap_set1(port_num_bitmap, port_idx);
829         port_s->port_num = port_idx;
830     } else {
831         if (*port_num_counter > STP_MAX_PORTS) {
832             VLOG_ERR("port %s: too many STP ports, disabling", port->name);
833             port_s->enable = false;
834             return;
835         }
836
837         port_s->port_num = (*port_num_counter)++;
838     }
839
840     config_str = get_port_other_config(port->cfg, "stp-path-cost", NULL);
841     if (config_str) {
842         port_s->path_cost = strtoul(config_str, NULL, 10);
843     } else {
844         uint32_t current;
845
846         if (netdev_get_features(iface->netdev, &current, NULL, NULL, NULL)) {
847             /* Couldn't get speed, so assume 100Mb/s. */
848             port_s->path_cost = 19;
849         } else {
850             unsigned int mbps;
851
852             mbps = netdev_features_to_bps(current) / 1000000;
853             port_s->path_cost = stp_convert_speed_to_cost(mbps);
854         }
855     }
856
857     config_str = get_port_other_config(port->cfg, "stp-port-priority", NULL);
858     if (config_str) {
859         port_s->priority = strtoul(config_str, NULL, 0);
860     } else {
861         port_s->priority = STP_DEFAULT_PORT_PRIORITY;
862     }
863 }
864
865 /* Set spanning tree configuration on 'br'. */
866 static void
867 bridge_configure_stp(struct bridge *br)
868 {
869     if (!br->cfg->stp_enable) {
870         ofproto_set_stp(br->ofproto, NULL);
871     } else {
872         struct ofproto_stp_settings br_s;
873         const char *config_str;
874         struct port *port;
875         int port_num_counter;
876         unsigned long *port_num_bitmap;
877
878         config_str = bridge_get_other_config(br->cfg, "stp-system-id");
879         if (config_str) {
880             uint8_t ea[ETH_ADDR_LEN];
881
882             if (eth_addr_from_string(config_str, ea)) {
883                 br_s.system_id = eth_addr_to_uint64(ea);
884             } else {
885                 br_s.system_id = eth_addr_to_uint64(br->ea);
886                 VLOG_ERR("bridge %s: invalid stp-system-id, defaulting "
887                          "to "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(br->ea));
888             }
889         } else {
890             br_s.system_id = eth_addr_to_uint64(br->ea);
891         }
892
893         config_str = bridge_get_other_config(br->cfg, "stp-priority");
894         if (config_str) {
895             br_s.priority = strtoul(config_str, NULL, 0);
896         } else {
897             br_s.priority = STP_DEFAULT_BRIDGE_PRIORITY;
898         }
899
900         config_str = bridge_get_other_config(br->cfg, "stp-hello-time");
901         if (config_str) {
902             br_s.hello_time = strtoul(config_str, NULL, 10) * 1000;
903         } else {
904             br_s.hello_time = STP_DEFAULT_HELLO_TIME;
905         }
906
907         config_str = bridge_get_other_config(br->cfg, "stp-max-age");
908         if (config_str) {
909             br_s.max_age = strtoul(config_str, NULL, 10) * 1000;
910         } else {
911             br_s.max_age = STP_DEFAULT_MAX_AGE;
912         }
913
914         config_str = bridge_get_other_config(br->cfg, "stp-forward-delay");
915         if (config_str) {
916             br_s.fwd_delay = strtoul(config_str, NULL, 10) * 1000;
917         } else {
918             br_s.fwd_delay = STP_DEFAULT_FWD_DELAY;
919         }
920
921         /* Configure STP on the bridge. */
922         if (ofproto_set_stp(br->ofproto, &br_s)) {
923             VLOG_ERR("bridge %s: could not enable STP", br->name);
924             return;
925         }
926
927         /* Users must either set the port number with the "stp-port-num"
928          * configuration on all ports or none.  If manual configuration
929          * is not done, then we allocate them sequentially. */
930         port_num_counter = 0;
931         port_num_bitmap = bitmap_allocate(STP_MAX_PORTS);
932         HMAP_FOR_EACH (port, hmap_node, &br->ports) {
933             struct ofproto_port_stp_settings port_s;
934             struct iface *iface;
935
936             port_configure_stp(br->ofproto, port, &port_s,
937                                &port_num_counter, port_num_bitmap);
938
939             /* As bonds are not supported, just apply configuration to
940              * all interfaces. */
941             LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
942                 if (ofproto_port_set_stp(br->ofproto, iface->ofp_port,
943                                          &port_s)) {
944                     VLOG_ERR("port %s: could not enable STP", port->name);
945                     continue;
946                 }
947             }
948         }
949
950         if (bitmap_scan(port_num_bitmap, 0, STP_MAX_PORTS) != STP_MAX_PORTS
951                     && port_num_counter) {
952             VLOG_ERR("bridge %s: must manually configure all STP port "
953                      "IDs or none, disabling", br->name);
954             ofproto_set_stp(br->ofproto, NULL);
955         }
956         bitmap_free(port_num_bitmap);
957     }
958 }
959
960 static bool
961 bridge_has_bond_fake_iface(const struct bridge *br, const char *name)
962 {
963     const struct port *port = port_lookup(br, name);
964     return port && port_is_bond_fake_iface(port);
965 }
966
967 static bool
968 port_is_bond_fake_iface(const struct port *port)
969 {
970     return port->cfg->bond_fake_iface && !list_is_short(&port->ifaces);
971 }
972
973 static void
974 add_del_bridges(const struct ovsrec_open_vswitch *cfg)
975 {
976     struct bridge *br, *next;
977     struct shash new_br;
978     size_t i;
979
980     /* Collect new bridges' names and types. */
981     shash_init(&new_br);
982     for (i = 0; i < cfg->n_bridges; i++) {
983         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
984         const struct ovsrec_bridge *br_cfg = cfg->bridges[i];
985
986         if (strchr(br_cfg->name, '/')) {
987             /* Prevent remote ovsdb-server users from accessing arbitrary
988              * directories, e.g. consider a bridge named "../../../etc/". */
989             VLOG_WARN_RL(&rl, "ignoring bridge with invalid name \"%s\"",
990                          br_cfg->name);
991         } else if (!shash_add_once(&new_br, br_cfg->name, br_cfg)) {
992             VLOG_WARN_RL(&rl, "bridge %s specified twice", br_cfg->name);
993         }
994     }
995
996     /* Get rid of deleted bridges or those whose types have changed.
997      * Update 'cfg' of bridges that still exist. */
998     HMAP_FOR_EACH_SAFE (br, next, node, &all_bridges) {
999         br->cfg = shash_find_data(&new_br, br->name);
1000         if (!br->cfg || strcmp(br->type, ofproto_normalize_type(
1001                                    br->cfg->datapath_type))) {
1002             bridge_destroy(br);
1003         }
1004     }
1005
1006     /* Add new bridges. */
1007     for (i = 0; i < cfg->n_bridges; i++) {
1008         const struct ovsrec_bridge *br_cfg = cfg->bridges[i];
1009         struct bridge *br = bridge_lookup(br_cfg->name);
1010         if (!br) {
1011             bridge_create(br_cfg);
1012         }
1013     }
1014
1015     shash_destroy(&new_br);
1016 }
1017
1018 /* Delete each ofproto port on 'br' that doesn't have a corresponding "struct
1019  * iface".
1020  *
1021  * The kernel will reject any attempt to add a given port to a datapath if that
1022  * port already belongs to a different datapath, so we must do all port
1023  * deletions before any port additions. */
1024 static void
1025 bridge_del_ofproto_ports(struct bridge *br)
1026 {
1027     struct ofproto_port_dump dump;
1028     struct ofproto_port ofproto_port;
1029
1030     OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, br->ofproto) {
1031         const char *name = ofproto_port.name;
1032         struct iface *iface;
1033         const char *type;
1034         int error;
1035
1036         /* Ignore the local port.  We can't change it anyhow. */
1037         if (!strcmp(name, br->name)) {
1038             continue;
1039         }
1040
1041         /* Get the type that 'ofproto_port' should have (ordinarily the
1042          * type of its corresponding iface) or NULL if it should be
1043          * deleted. */
1044         iface = iface_lookup(br, name);
1045         type = (iface ? iface->type
1046                 : bridge_has_bond_fake_iface(br, name) ? "internal"
1047                 : NULL);
1048
1049         /* If it's the wrong type then delete the ofproto port. */
1050         if (type
1051             && !strcmp(ofproto_port.type, type)
1052             && (!iface || !iface->netdev
1053                 || !strcmp(netdev_get_type(iface->netdev), type))) {
1054             continue;
1055         }
1056         error = ofproto_port_del(br->ofproto, ofproto_port.ofp_port);
1057         if (error) {
1058             VLOG_WARN("bridge %s: failed to remove %s interface (%s)",
1059                       br->name, name, strerror(error));
1060         }
1061         if (iface) {
1062             netdev_close(iface->netdev);
1063             iface->netdev = NULL;
1064         }
1065     }
1066 }
1067
1068 static void
1069 iface_set_ofp_port(struct iface *iface, int ofp_port)
1070 {
1071     struct bridge *br = iface->port->bridge;
1072
1073     assert(iface->ofp_port < 0 && ofp_port >= 0);
1074     iface->ofp_port = ofp_port;
1075     hmap_insert(&br->ifaces, &iface->ofp_port_node, hash_int(ofp_port, 0));
1076     iface_set_ofport(iface->cfg, ofp_port);
1077 }
1078
1079 static void
1080 bridge_refresh_ofp_port(struct bridge *br)
1081 {
1082     struct ofproto_port_dump dump;
1083     struct ofproto_port ofproto_port;
1084     struct port *port;
1085
1086     /* Clear all the "ofp_port"es. */
1087     hmap_clear(&br->ifaces);
1088     HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1089         struct iface *iface;
1090
1091         LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
1092             iface->ofp_port = -1;
1093         }
1094     }
1095
1096     /* Obtain the correct "ofp_port"s from ofproto. */
1097     OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, br->ofproto) {
1098         struct iface *iface = iface_lookup(br, ofproto_port.name);
1099         if (iface) {
1100             if (iface->ofp_port >= 0) {
1101                 VLOG_WARN("bridge %s: interface %s reported twice",
1102                           br->name, ofproto_port.name);
1103             } else if (iface_from_ofp_port(br, ofproto_port.ofp_port)) {
1104                 VLOG_WARN("bridge %s: interface %"PRIu16" reported twice",
1105                           br->name, ofproto_port.ofp_port);
1106             } else {
1107                 iface_set_ofp_port(iface, ofproto_port.ofp_port);
1108             }
1109         }
1110     }
1111 }
1112
1113 /* Add an ofproto port for any "struct iface" that doesn't have one.
1114  * Delete any "struct iface" for which this fails.
1115  * Delete any "struct port" that thereby ends up with no ifaces. */
1116 static void
1117 bridge_add_ofproto_ports(struct bridge *br)
1118 {
1119     struct port *port, *next_port;
1120
1121     HMAP_FOR_EACH_SAFE (port, next_port, hmap_node, &br->ports) {
1122         struct iface *iface, *next_iface;
1123         struct ofproto_port ofproto_port;
1124
1125         LIST_FOR_EACH_SAFE (iface, next_iface, port_elem, &port->ifaces) {
1126             int error;
1127
1128             /* Open the netdev. */
1129             if (!iface->netdev) {
1130                 error = netdev_open(iface->name, iface->type, &iface->netdev);
1131                 if (error) {
1132                     VLOG_WARN("could not open network device %s (%s)",
1133                               iface->name, strerror(error));
1134                 }
1135
1136                 if (iface->netdev
1137                     && port->cfg->vlan_mode
1138                     && !strcmp(port->cfg->vlan_mode, "splinter")) {
1139                     netdev_turn_flags_on(iface->netdev, NETDEV_UP, true);
1140                 }
1141             } else {
1142                 error = 0;
1143             }
1144
1145             /* Configure the netdev. */
1146             if (iface->netdev) {
1147                 struct shash args;
1148
1149                 shash_init(&args);
1150                 shash_from_ovs_idl_map(iface->cfg->key_options,
1151                                        iface->cfg->value_options,
1152                                        iface->cfg->n_options, &args);
1153                 error = netdev_set_config(iface->netdev, &args);
1154                 shash_destroy(&args);
1155
1156                 if (error) {
1157                     VLOG_WARN("could not configure network device %s (%s)",
1158                               iface->name, strerror(error));
1159                     netdev_close(iface->netdev);
1160                     iface->netdev = NULL;
1161                 }
1162             }
1163
1164             /* Add the port, if necessary. */
1165             if (iface->netdev && iface->ofp_port < 0) {
1166                 uint16_t ofp_port;
1167                 int error;
1168
1169                 error = ofproto_port_add(br->ofproto, iface->netdev,
1170                                          &ofp_port);
1171                 if (!error) {
1172                     iface_set_ofp_port(iface, ofp_port);
1173                 } else {
1174                     netdev_close(iface->netdev);
1175                     iface->netdev = NULL;
1176                 }
1177             }
1178
1179             /* Populate stats columns in new Interface rows. */
1180             if (iface->netdev && !iface->cfg->mtu) {
1181                 iface_refresh_stats(iface);
1182                 iface_refresh_status(iface);
1183             }
1184
1185             /* Delete the iface if we failed. */
1186             if (iface->netdev && iface->ofp_port >= 0) {
1187                 VLOG_DBG("bridge %s: interface %s is on port %d",
1188                          br->name, iface->name, iface->ofp_port);
1189             } else {
1190                 if (iface->netdev) {
1191                     VLOG_ERR("bridge %s: missing %s interface, dropping",
1192                              br->name, iface->name);
1193                 } else {
1194                     /* We already reported a related error, don't bother
1195                      * duplicating it. */
1196                 }
1197                 if (!ofproto_port_query_by_name(br->ofproto, port->name,
1198                                                 &ofproto_port)) {
1199                     ofproto_port_del(br->ofproto, ofproto_port.ofp_port);
1200                     ofproto_port_destroy(&ofproto_port);
1201                 }
1202                 iface_clear_db_record(iface->cfg);
1203                 iface_destroy(iface);
1204             }
1205         }
1206         if (list_is_empty(&port->ifaces)) {
1207             VLOG_WARN("%s port has no interfaces, dropping", port->name);
1208             port_destroy(port);
1209             continue;
1210         }
1211
1212         /* Add bond fake iface if necessary. */
1213         if (port_is_bond_fake_iface(port)) {
1214             if (ofproto_port_query_by_name(br->ofproto, port->name,
1215                                            &ofproto_port)) {
1216                 struct netdev *netdev;
1217                 int error;
1218
1219                 error = netdev_open(port->name, "internal", &netdev);
1220                 if (!error) {
1221                     ofproto_port_add(br->ofproto, netdev, NULL);
1222                     netdev_close(netdev);
1223                 } else {
1224                     VLOG_WARN("could not open network device %s (%s)",
1225                               port->name, strerror(error));
1226                 }
1227             } else {
1228                 /* Already exists, nothing to do. */
1229                 ofproto_port_destroy(&ofproto_port);
1230             }
1231         }
1232     }
1233 }
1234
1235 static const char *
1236 get_ovsrec_key_value(char **keys, char **values, size_t n, const char *key)
1237 {
1238     size_t i;
1239
1240     for (i = 0; i < n; i++) {
1241         if (!strcmp(keys[i], key)) {
1242             return values[i];
1243         }
1244     }
1245     return NULL;
1246 }
1247
1248 static const char *
1249 bridge_get_other_config(const struct ovsrec_bridge *br_cfg, const char *key)
1250 {
1251     return get_ovsrec_key_value(br_cfg->key_other_config,
1252                                 br_cfg->value_other_config,
1253                                 br_cfg->n_other_config, key);
1254 }
1255
1256 /* Set Flow eviction threshold */
1257 static void
1258 bridge_configure_flow_eviction_threshold(struct bridge *br)
1259 {
1260     const char *threshold_str;
1261     unsigned threshold;
1262
1263     threshold_str = bridge_get_other_config(br->cfg, "flow-eviction-threshold");
1264     if (threshold_str) {
1265         threshold = strtoul(threshold_str, NULL, 10);
1266     } else {
1267         threshold = OFPROTO_FLOW_EVICTON_THRESHOLD_DEFAULT;
1268     }
1269     ofproto_set_flow_eviction_threshold(br->ofproto, threshold);
1270 }
1271
1272 /* Set forward BPDU option. */
1273 static void
1274 bridge_configure_forward_bpdu(struct bridge *br)
1275 {
1276     const char *forward_bpdu_str;
1277     bool forward_bpdu = false;
1278
1279     forward_bpdu_str = bridge_get_other_config(br->cfg, "forward-bpdu");
1280     if (forward_bpdu_str && !strcmp(forward_bpdu_str, "true")) {
1281         forward_bpdu = true;
1282     }
1283     ofproto_set_forward_bpdu(br->ofproto, forward_bpdu);
1284 }
1285
1286 /* Set MAC aging time for 'br'. */
1287 static void
1288 bridge_configure_mac_idle_time(struct bridge *br)
1289 {
1290     const char *idle_time_str;
1291     int idle_time;
1292
1293     idle_time_str = bridge_get_other_config(br->cfg, "mac-aging-time");
1294     idle_time = (idle_time_str && atoi(idle_time_str)
1295                  ? atoi(idle_time_str)
1296                  : MAC_ENTRY_DEFAULT_IDLE_TIME);
1297     ofproto_set_mac_idle_time(br->ofproto, idle_time);
1298 }
1299
1300 static void
1301 bridge_pick_local_hw_addr(struct bridge *br, uint8_t ea[ETH_ADDR_LEN],
1302                           struct iface **hw_addr_iface)
1303 {
1304     struct hmapx mirror_output_ports;
1305     const char *hwaddr;
1306     struct port *port;
1307     bool found_addr = false;
1308     int error;
1309     int i;
1310
1311     *hw_addr_iface = NULL;
1312
1313     /* Did the user request a particular MAC? */
1314     hwaddr = bridge_get_other_config(br->cfg, "hwaddr");
1315     if (hwaddr && eth_addr_from_string(hwaddr, ea)) {
1316         if (eth_addr_is_multicast(ea)) {
1317             VLOG_ERR("bridge %s: cannot set MAC address to multicast "
1318                      "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
1319         } else if (eth_addr_is_zero(ea)) {
1320             VLOG_ERR("bridge %s: cannot set MAC address to zero", br->name);
1321         } else {
1322             return;
1323         }
1324     }
1325
1326     /* Mirror output ports don't participate in picking the local hardware
1327      * address.  ofproto can't help us find out whether a given port is a
1328      * mirror output because we haven't configured mirrors yet, so we need to
1329      * accumulate them ourselves. */
1330     hmapx_init(&mirror_output_ports);
1331     for (i = 0; i < br->cfg->n_mirrors; i++) {
1332         struct ovsrec_mirror *m = br->cfg->mirrors[i];
1333         if (m->output_port) {
1334             hmapx_add(&mirror_output_ports, m->output_port);
1335         }
1336     }
1337
1338     /* Otherwise choose the minimum non-local MAC address among all of the
1339      * interfaces. */
1340     HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1341         uint8_t iface_ea[ETH_ADDR_LEN];
1342         struct iface *candidate;
1343         struct iface *iface;
1344
1345         /* Mirror output ports don't participate. */
1346         if (hmapx_contains(&mirror_output_ports, port->cfg)) {
1347             continue;
1348         }
1349
1350         /* Choose the MAC address to represent the port. */
1351         iface = NULL;
1352         if (port->cfg->mac && eth_addr_from_string(port->cfg->mac, iface_ea)) {
1353             /* Find the interface with this Ethernet address (if any) so that
1354              * we can provide the correct devname to the caller. */
1355             LIST_FOR_EACH (candidate, port_elem, &port->ifaces) {
1356                 uint8_t candidate_ea[ETH_ADDR_LEN];
1357                 if (!netdev_get_etheraddr(candidate->netdev, candidate_ea)
1358                     && eth_addr_equals(iface_ea, candidate_ea)) {
1359                     iface = candidate;
1360                 }
1361             }
1362         } else {
1363             /* Choose the interface whose MAC address will represent the port.
1364              * The Linux kernel bonding code always chooses the MAC address of
1365              * the first slave added to a bond, and the Fedora networking
1366              * scripts always add slaves to a bond in alphabetical order, so
1367              * for compatibility we choose the interface with the name that is
1368              * first in alphabetical order. */
1369             LIST_FOR_EACH (candidate, port_elem, &port->ifaces) {
1370                 if (!iface || strcmp(candidate->name, iface->name) < 0) {
1371                     iface = candidate;
1372                 }
1373             }
1374
1375             /* The local port doesn't count (since we're trying to choose its
1376              * MAC address anyway). */
1377             if (iface->ofp_port == OFPP_LOCAL) {
1378                 continue;
1379             }
1380
1381             /* Grab MAC. */
1382             error = netdev_get_etheraddr(iface->netdev, iface_ea);
1383             if (error) {
1384                 continue;
1385             }
1386         }
1387
1388         /* Compare against our current choice. */
1389         if (!eth_addr_is_multicast(iface_ea) &&
1390             !eth_addr_is_local(iface_ea) &&
1391             !eth_addr_is_reserved(iface_ea) &&
1392             !eth_addr_is_zero(iface_ea) &&
1393             (!found_addr || eth_addr_compare_3way(iface_ea, ea) < 0))
1394         {
1395             memcpy(ea, iface_ea, ETH_ADDR_LEN);
1396             *hw_addr_iface = iface;
1397             found_addr = true;
1398         }
1399     }
1400     if (found_addr) {
1401         VLOG_DBG("bridge %s: using bridge Ethernet address "ETH_ADDR_FMT,
1402                  br->name, ETH_ADDR_ARGS(ea));
1403     } else {
1404         memcpy(ea, br->default_ea, ETH_ADDR_LEN);
1405         *hw_addr_iface = NULL;
1406         VLOG_WARN("bridge %s: using default bridge Ethernet "
1407                   "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
1408     }
1409
1410     hmapx_destroy(&mirror_output_ports);
1411 }
1412
1413 /* Choose and returns the datapath ID for bridge 'br' given that the bridge
1414  * Ethernet address is 'bridge_ea'.  If 'bridge_ea' is the Ethernet address of
1415  * an interface on 'br', then that interface must be passed in as
1416  * 'hw_addr_iface'; if 'bridge_ea' was derived some other way, then
1417  * 'hw_addr_iface' must be passed in as a null pointer. */
1418 static uint64_t
1419 bridge_pick_datapath_id(struct bridge *br,
1420                         const uint8_t bridge_ea[ETH_ADDR_LEN],
1421                         struct iface *hw_addr_iface)
1422 {
1423     /*
1424      * The procedure for choosing a bridge MAC address will, in the most
1425      * ordinary case, also choose a unique MAC that we can use as a datapath
1426      * ID.  In some special cases, though, multiple bridges will end up with
1427      * the same MAC address.  This is OK for the bridges, but it will confuse
1428      * the OpenFlow controller, because each datapath needs a unique datapath
1429      * ID.
1430      *
1431      * Datapath IDs must be unique.  It is also very desirable that they be
1432      * stable from one run to the next, so that policy set on a datapath
1433      * "sticks".
1434      */
1435     const char *datapath_id;
1436     uint64_t dpid;
1437
1438     datapath_id = bridge_get_other_config(br->cfg, "datapath-id");
1439     if (datapath_id && dpid_from_string(datapath_id, &dpid)) {
1440         return dpid;
1441     }
1442
1443     if (!hw_addr_iface) {
1444         /*
1445          * A purely internal bridge, that is, one that has no non-virtual
1446          * network devices on it at all, is difficult because it has no
1447          * natural unique identifier at all.
1448          *
1449          * When the host is a XenServer, we handle this case by hashing the
1450          * host's UUID with the name of the bridge.  Names of bridges are
1451          * persistent across XenServer reboots, although they can be reused if
1452          * an internal network is destroyed and then a new one is later
1453          * created, so this is fairly effective.
1454          *
1455          * When the host is not a XenServer, we punt by using a random MAC
1456          * address on each run.
1457          */
1458         const char *host_uuid = xenserver_get_host_uuid();
1459         if (host_uuid) {
1460             char *combined = xasprintf("%s,%s", host_uuid, br->name);
1461             dpid = dpid_from_hash(combined, strlen(combined));
1462             free(combined);
1463             return dpid;
1464         }
1465     }
1466
1467     return eth_addr_to_uint64(bridge_ea);
1468 }
1469
1470 static uint64_t
1471 dpid_from_hash(const void *data, size_t n)
1472 {
1473     uint8_t hash[SHA1_DIGEST_SIZE];
1474
1475     BUILD_ASSERT_DECL(sizeof hash >= ETH_ADDR_LEN);
1476     sha1_bytes(data, n, hash);
1477     eth_addr_mark_random(hash);
1478     return eth_addr_to_uint64(hash);
1479 }
1480
1481 static void
1482 iface_refresh_status(struct iface *iface)
1483 {
1484     struct shash sh;
1485
1486     enum netdev_flags flags;
1487     uint32_t current;
1488     int64_t bps;
1489     int mtu;
1490     int64_t mtu_64;
1491     int error;
1492
1493     if (iface_is_synthetic(iface)) {
1494         return;
1495     }
1496
1497     shash_init(&sh);
1498
1499     if (!netdev_get_status(iface->netdev, &sh)) {
1500         size_t n;
1501         char **keys, **values;
1502
1503         shash_to_ovs_idl_map(&sh, &keys, &values, &n);
1504         ovsrec_interface_set_status(iface->cfg, keys, values, n);
1505
1506         free(keys);
1507         free(values);
1508     } else {
1509         ovsrec_interface_set_status(iface->cfg, NULL, NULL, 0);
1510     }
1511
1512     shash_destroy_free_data(&sh);
1513
1514     error = netdev_get_flags(iface->netdev, &flags);
1515     if (!error) {
1516         ovsrec_interface_set_admin_state(iface->cfg, flags & NETDEV_UP ? "up" : "down");
1517     }
1518     else {
1519         ovsrec_interface_set_admin_state(iface->cfg, NULL);
1520     }
1521
1522     error = netdev_get_features(iface->netdev, &current, NULL, NULL, NULL);
1523     if (!error) {
1524         ovsrec_interface_set_duplex(iface->cfg,
1525                                     netdev_features_is_full_duplex(current)
1526                                     ? "full" : "half");
1527         /* warning: uint64_t -> int64_t conversion */
1528         bps = netdev_features_to_bps(current);
1529         ovsrec_interface_set_link_speed(iface->cfg, &bps, 1);
1530     }
1531     else {
1532         ovsrec_interface_set_duplex(iface->cfg, NULL);
1533         ovsrec_interface_set_link_speed(iface->cfg, NULL, 0);
1534     }
1535
1536     error = netdev_get_mtu(iface->netdev, &mtu);
1537     if (!error) {
1538         mtu_64 = mtu;
1539         ovsrec_interface_set_mtu(iface->cfg, &mtu_64, 1);
1540     }
1541     else {
1542         ovsrec_interface_set_mtu(iface->cfg, NULL, 0);
1543     }
1544 }
1545
1546 /* Writes 'iface''s CFM statistics to the database. */
1547 static void
1548 iface_refresh_cfm_stats(struct iface *iface)
1549 {
1550     const struct ovsrec_interface *cfg = iface->cfg;
1551     int fault, error;
1552     const uint64_t *rmps;
1553     size_t n_rmps;
1554
1555     if (iface_is_synthetic(iface)) {
1556         return;
1557     }
1558
1559     fault = ofproto_port_get_cfm_fault(iface->port->bridge->ofproto,
1560                                        iface->ofp_port);
1561     if (fault >= 0) {
1562         bool fault_bool = fault;
1563         ovsrec_interface_set_cfm_fault(cfg, &fault_bool, 1);
1564     } else {
1565         ovsrec_interface_set_cfm_fault(cfg, NULL, 0);
1566     }
1567
1568     error = ofproto_port_get_cfm_remote_mpids(iface->port->bridge->ofproto,
1569                                               iface->ofp_port, &rmps, &n_rmps);
1570     if (error >= 0) {
1571         ovsrec_interface_set_cfm_remote_mpids(cfg, (const int64_t *)rmps,
1572                                               n_rmps);
1573     } else {
1574         ovsrec_interface_set_cfm_remote_mpids(cfg, NULL, 0);
1575     }
1576 }
1577
1578 static void
1579 iface_refresh_stats(struct iface *iface)
1580 {
1581 #define IFACE_STATS                             \
1582     IFACE_STAT(rx_packets,      "rx_packets")   \
1583     IFACE_STAT(tx_packets,      "tx_packets")   \
1584     IFACE_STAT(rx_bytes,        "rx_bytes")     \
1585     IFACE_STAT(tx_bytes,        "tx_bytes")     \
1586     IFACE_STAT(rx_dropped,      "rx_dropped")   \
1587     IFACE_STAT(tx_dropped,      "tx_dropped")   \
1588     IFACE_STAT(rx_errors,       "rx_errors")    \
1589     IFACE_STAT(tx_errors,       "tx_errors")    \
1590     IFACE_STAT(rx_frame_errors, "rx_frame_err") \
1591     IFACE_STAT(rx_over_errors,  "rx_over_err")  \
1592     IFACE_STAT(rx_crc_errors,   "rx_crc_err")   \
1593     IFACE_STAT(collisions,      "collisions")
1594
1595 #define IFACE_STAT(MEMBER, NAME) NAME,
1596     static char *keys[] = { IFACE_STATS };
1597 #undef IFACE_STAT
1598     int64_t values[ARRAY_SIZE(keys)];
1599     int i;
1600
1601     struct netdev_stats stats;
1602
1603     if (iface_is_synthetic(iface)) {
1604         return;
1605     }
1606
1607     /* Intentionally ignore return value, since errors will set 'stats' to
1608      * all-1s, and we will deal with that correctly below. */
1609     netdev_get_stats(iface->netdev, &stats);
1610
1611     /* Copy statistics into values[] array. */
1612     i = 0;
1613 #define IFACE_STAT(MEMBER, NAME) values[i++] = stats.MEMBER;
1614     IFACE_STATS;
1615 #undef IFACE_STAT
1616     assert(i == ARRAY_SIZE(keys));
1617
1618     ovsrec_interface_set_statistics(iface->cfg, keys, values, ARRAY_SIZE(keys));
1619 #undef IFACE_STATS
1620 }
1621
1622 static void
1623 br_refresh_stp_status(struct bridge *br)
1624 {
1625     struct ofproto *ofproto = br->ofproto;
1626     struct ofproto_stp_status status;
1627     char *keys[3], *values[3];
1628     size_t i;
1629
1630     if (ofproto_get_stp_status(ofproto, &status)) {
1631         return;
1632     }
1633
1634     if (!status.enabled) {
1635         ovsrec_bridge_set_status(br->cfg, NULL, NULL, 0);
1636         return;
1637     }
1638
1639     keys[0] = "stp_bridge_id",
1640     values[0] = xasprintf(STP_ID_FMT, STP_ID_ARGS(status.bridge_id));
1641     keys[1] = "stp_designated_root",
1642     values[1] = xasprintf(STP_ID_FMT, STP_ID_ARGS(status.designated_root));
1643     keys[2] = "stp_root_path_cost",
1644     values[2] = xasprintf("%d", status.root_path_cost);
1645
1646     ovsrec_bridge_set_status(br->cfg, keys, values, ARRAY_SIZE(values));
1647
1648     for (i = 0; i < ARRAY_SIZE(values); i++) {
1649         free(values[i]);
1650     }
1651 }
1652
1653 static void
1654 port_refresh_stp_status(struct port *port)
1655 {
1656     struct ofproto *ofproto = port->bridge->ofproto;
1657     struct iface *iface;
1658     struct ofproto_port_stp_status status;
1659     char *keys[4];
1660     char *str_values[4];
1661     int64_t int_values[3];
1662     size_t i;
1663
1664     if (port_is_synthetic(port)) {
1665         return;
1666     }
1667
1668     /* STP doesn't currently support bonds. */
1669     if (!list_is_singleton(&port->ifaces)) {
1670         ovsrec_port_set_status(port->cfg, NULL, NULL, 0);
1671         return;
1672     }
1673
1674     iface = CONTAINER_OF(list_front(&port->ifaces), struct iface, port_elem);
1675
1676     if (ofproto_port_get_stp_status(ofproto, iface->ofp_port, &status)) {
1677         return;
1678     }
1679
1680     if (!status.enabled) {
1681         ovsrec_port_set_status(port->cfg, NULL, NULL, 0);
1682         ovsrec_port_set_statistics(port->cfg, NULL, NULL, 0);
1683         return;
1684     }
1685
1686     /* Set Status column. */
1687     keys[0] = "stp_port_id";
1688     str_values[0] = xasprintf(STP_PORT_ID_FMT, status.port_id);
1689     keys[1] = "stp_state";
1690     str_values[1] = xstrdup(stp_state_name(status.state));
1691     keys[2] = "stp_sec_in_state";
1692     str_values[2] = xasprintf("%u", status.sec_in_state);
1693     keys[3] = "stp_role";
1694     str_values[3] = xstrdup(stp_role_name(status.role));
1695
1696     ovsrec_port_set_status(port->cfg, keys, str_values,
1697                            ARRAY_SIZE(str_values));
1698
1699     for (i = 0; i < ARRAY_SIZE(str_values); i++) {
1700         free(str_values[i]);
1701     }
1702
1703     /* Set Statistics column. */
1704     keys[0] = "stp_tx_count";
1705     int_values[0] = status.tx_count;
1706     keys[1] = "stp_rx_count";
1707     int_values[1] = status.rx_count;
1708     keys[2] = "stp_error_count";
1709     int_values[2] = status.error_count;
1710
1711     ovsrec_port_set_statistics(port->cfg, keys, int_values,
1712                                ARRAY_SIZE(int_values));
1713 }
1714
1715 static bool
1716 enable_system_stats(const struct ovsrec_open_vswitch *cfg)
1717 {
1718     const char *enable;
1719
1720     /* Use other-config:enable-system-stats by preference. */
1721     enable = get_ovsrec_key_value(cfg->key_other_config,
1722                                   cfg->value_other_config,
1723                                   cfg->n_other_config,
1724                                   "enable-statistics");
1725     if (enable) {
1726         return !strcmp(enable, "true");
1727     }
1728
1729     /* Disable by default. */
1730     return false;
1731 }
1732
1733 static void
1734 refresh_system_stats(const struct ovsrec_open_vswitch *cfg)
1735 {
1736     struct ovsdb_datum datum;
1737     struct shash stats;
1738
1739     shash_init(&stats);
1740     if (enable_system_stats(cfg)) {
1741         get_system_stats(&stats);
1742     }
1743
1744     ovsdb_datum_from_shash(&datum, &stats);
1745     ovsdb_idl_txn_write(&cfg->header_, &ovsrec_open_vswitch_col_statistics,
1746                         &datum);
1747 }
1748
1749 static inline const char *
1750 nx_role_to_str(enum nx_role role)
1751 {
1752     switch (role) {
1753     case NX_ROLE_OTHER:
1754         return "other";
1755     case NX_ROLE_MASTER:
1756         return "master";
1757     case NX_ROLE_SLAVE:
1758         return "slave";
1759     default:
1760         return "*** INVALID ROLE ***";
1761     }
1762 }
1763
1764 static void
1765 refresh_controller_status(void)
1766 {
1767     struct bridge *br;
1768     struct shash info;
1769     const struct ovsrec_controller *cfg;
1770
1771     shash_init(&info);
1772
1773     /* Accumulate status for controllers on all bridges. */
1774     HMAP_FOR_EACH (br, node, &all_bridges) {
1775         ofproto_get_ofproto_controller_info(br->ofproto, &info);
1776     }
1777
1778     /* Update each controller in the database with current status. */
1779     OVSREC_CONTROLLER_FOR_EACH(cfg, idl) {
1780         struct ofproto_controller_info *cinfo =
1781             shash_find_data(&info, cfg->target);
1782
1783         if (cinfo) {
1784             ovsrec_controller_set_is_connected(cfg, cinfo->is_connected);
1785             ovsrec_controller_set_role(cfg, nx_role_to_str(cinfo->role));
1786             ovsrec_controller_set_status(cfg, (char **) cinfo->pairs.keys,
1787                                          (char **) cinfo->pairs.values,
1788                                          cinfo->pairs.n);
1789         } else {
1790             ovsrec_controller_set_is_connected(cfg, false);
1791             ovsrec_controller_set_role(cfg, NULL);
1792             ovsrec_controller_set_status(cfg, NULL, NULL, 0);
1793         }
1794     }
1795
1796     ofproto_free_ofproto_controller_info(&info);
1797 }
1798
1799 static void
1800 refresh_cfm_stats(void)
1801 {
1802     static struct ovsdb_idl_txn *txn = NULL;
1803
1804     if (!txn) {
1805         struct bridge *br;
1806
1807         txn = ovsdb_idl_txn_create(idl);
1808
1809         HMAP_FOR_EACH (br, node, &all_bridges) {
1810             struct iface *iface;
1811
1812             HMAP_FOR_EACH (iface, name_node, &br->iface_by_name) {
1813                 iface_refresh_cfm_stats(iface);
1814             }
1815         }
1816     }
1817
1818     if (ovsdb_idl_txn_commit(txn) != TXN_INCOMPLETE) {
1819         ovsdb_idl_txn_destroy(txn);
1820         txn = NULL;
1821     }
1822 }
1823
1824 /* Performs periodic activity required by bridges that needs to be done with
1825  * the least possible latency.
1826  *
1827  * It makes sense to call this function a couple of times per poll loop, to
1828  * provide a significant performance boost on some benchmarks with ofprotos
1829  * that use the ofproto-dpif implementation. */
1830 void
1831 bridge_run_fast(void)
1832 {
1833     struct bridge *br;
1834
1835     HMAP_FOR_EACH (br, node, &all_bridges) {
1836         ofproto_run_fast(br->ofproto);
1837     }
1838 }
1839
1840 void
1841 bridge_run(void)
1842 {
1843     const struct ovsrec_open_vswitch *cfg;
1844
1845     bool vlan_splinters_changed;
1846     bool database_changed;
1847     struct bridge *br;
1848
1849     /* (Re)configure if necessary. */
1850     database_changed = ovsdb_idl_run(idl);
1851     if (ovsdb_idl_is_lock_contended(idl)) {
1852         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
1853         struct bridge *br, *next_br;
1854
1855         VLOG_ERR_RL(&rl, "another ovs-vswitchd process is running, "
1856                     "disabling this process until it goes away");
1857
1858         HMAP_FOR_EACH_SAFE (br, next_br, node, &all_bridges) {
1859             bridge_destroy(br);
1860         }
1861         return;
1862     } else if (!ovsdb_idl_has_lock(idl)) {
1863         return;
1864     }
1865     cfg = ovsrec_open_vswitch_first(idl);
1866
1867     /* Let each bridge do the work that it needs to do. */
1868     HMAP_FOR_EACH (br, node, &all_bridges) {
1869         ofproto_run(br->ofproto);
1870     }
1871
1872     /* Re-configure SSL.  We do this on every trip through the main loop,
1873      * instead of just when the database changes, because the contents of the
1874      * key and certificate files can change without the database changing.
1875      *
1876      * We do this before bridge_reconfigure() because that function might
1877      * initiate SSL connections and thus requires SSL to be configured. */
1878     if (cfg && cfg->ssl) {
1879         const struct ovsrec_ssl *ssl = cfg->ssl;
1880
1881         stream_ssl_set_key_and_cert(ssl->private_key, ssl->certificate);
1882         stream_ssl_set_ca_cert_file(ssl->ca_cert, ssl->bootstrap_ca_cert);
1883     }
1884
1885     /* If VLAN splinters are in use, then we need to reconfigure if VLAN usage
1886      * has changed. */
1887     vlan_splinters_changed = false;
1888     if (vlan_splinters_enabled_anywhere) {
1889         HMAP_FOR_EACH (br, node, &all_bridges) {
1890             if (ofproto_has_vlan_usage_changed(br->ofproto)) {
1891                 vlan_splinters_changed = true;
1892                 break;
1893             }
1894         }
1895     }
1896
1897     if (database_changed || vlan_splinters_changed) {
1898         if (cfg) {
1899             struct ovsdb_idl_txn *txn = ovsdb_idl_txn_create(idl);
1900
1901             bridge_reconfigure(cfg);
1902
1903             ovsrec_open_vswitch_set_cur_cfg(cfg, cfg->next_cfg);
1904             ovsdb_idl_txn_commit(txn);
1905             ovsdb_idl_txn_destroy(txn); /* XXX */
1906         } else {
1907             /* We still need to reconfigure to avoid dangling pointers to
1908              * now-destroyed ovsrec structures inside bridge data. */
1909             static const struct ovsrec_open_vswitch null_cfg;
1910
1911             bridge_reconfigure(&null_cfg);
1912         }
1913     }
1914
1915     /* Refresh system and interface stats if necessary. */
1916     if (time_msec() >= stats_timer) {
1917         if (cfg) {
1918             struct ovsdb_idl_txn *txn;
1919
1920             txn = ovsdb_idl_txn_create(idl);
1921             HMAP_FOR_EACH (br, node, &all_bridges) {
1922                 struct port *port;
1923                 struct mirror *m;
1924
1925                 HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1926                     struct iface *iface;
1927
1928                     LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
1929                         iface_refresh_stats(iface);
1930                         iface_refresh_status(iface);
1931                     }
1932                 }
1933
1934                 HMAP_FOR_EACH (m, hmap_node, &br->mirrors) {
1935                     mirror_refresh_stats(m);
1936                 }
1937
1938             }
1939             refresh_system_stats(cfg);
1940             refresh_controller_status();
1941             ovsdb_idl_txn_commit(txn);
1942             ovsdb_idl_txn_destroy(txn); /* XXX */
1943         }
1944
1945         stats_timer = time_msec() + STATS_INTERVAL;
1946     }
1947
1948     if (time_msec() >= db_limiter) {
1949         struct ovsdb_idl_txn *txn;
1950
1951         txn = ovsdb_idl_txn_create(idl);
1952         HMAP_FOR_EACH (br, node, &all_bridges) {
1953             struct iface *iface;
1954             struct port *port;
1955
1956             br_refresh_stp_status(br);
1957
1958             HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1959                 port_refresh_stp_status(port);
1960             }
1961
1962             HMAP_FOR_EACH (iface, name_node, &br->iface_by_name) {
1963                 const char *link_state;
1964                 int64_t link_resets;
1965                 int current;
1966
1967                 if (iface_is_synthetic(iface)) {
1968                     continue;
1969                 }
1970
1971                 current = ofproto_port_is_lacp_current(br->ofproto,
1972                                                        iface->ofp_port);
1973                 if (current >= 0) {
1974                     bool bl = current;
1975                     ovsrec_interface_set_lacp_current(iface->cfg, &bl, 1);
1976                 } else {
1977                     ovsrec_interface_set_lacp_current(iface->cfg, NULL, 0);
1978                 }
1979
1980                 link_state = netdev_get_carrier(iface->netdev) ? "up" : "down";
1981                 ovsrec_interface_set_link_state(iface->cfg, link_state);
1982
1983                 link_resets = netdev_get_carrier_resets(iface->netdev);
1984                 ovsrec_interface_set_link_resets(iface->cfg, &link_resets, 1);
1985             }
1986         }
1987
1988         if (ovsdb_idl_txn_commit(txn) != TXN_UNCHANGED) {
1989             db_limiter = time_msec() + DB_LIMIT_INTERVAL;
1990         }
1991         ovsdb_idl_txn_destroy(txn);
1992     }
1993
1994     refresh_cfm_stats();
1995 }
1996
1997 void
1998 bridge_wait(void)
1999 {
2000     ovsdb_idl_wait(idl);
2001     if (!hmap_is_empty(&all_bridges)) {
2002         struct bridge *br;
2003
2004         HMAP_FOR_EACH (br, node, &all_bridges) {
2005             ofproto_wait(br->ofproto);
2006         }
2007         poll_timer_wait_until(stats_timer);
2008
2009         if (db_limiter > time_msec()) {
2010             poll_timer_wait_until(db_limiter);
2011         }
2012     }
2013 }
2014 \f
2015 /* QoS unixctl user interface functions. */
2016
2017 struct qos_unixctl_show_cbdata {
2018     struct ds *ds;
2019     struct iface *iface;
2020 };
2021
2022 static void
2023 qos_unixctl_show_cb(unsigned int queue_id,
2024                     const struct shash *details,
2025                     void *aux)
2026 {
2027     struct qos_unixctl_show_cbdata *data = aux;
2028     struct ds *ds = data->ds;
2029     struct iface *iface = data->iface;
2030     struct netdev_queue_stats stats;
2031     struct shash_node *node;
2032     int error;
2033
2034     ds_put_cstr(ds, "\n");
2035     if (queue_id) {
2036         ds_put_format(ds, "Queue %u:\n", queue_id);
2037     } else {
2038         ds_put_cstr(ds, "Default:\n");
2039     }
2040
2041     SHASH_FOR_EACH (node, details) {
2042         ds_put_format(ds, "\t%s: %s\n", node->name, (char *)node->data);
2043     }
2044
2045     error = netdev_get_queue_stats(iface->netdev, queue_id, &stats);
2046     if (!error) {
2047         if (stats.tx_packets != UINT64_MAX) {
2048             ds_put_format(ds, "\ttx_packets: %"PRIu64"\n", stats.tx_packets);
2049         }
2050
2051         if (stats.tx_bytes != UINT64_MAX) {
2052             ds_put_format(ds, "\ttx_bytes: %"PRIu64"\n", stats.tx_bytes);
2053         }
2054
2055         if (stats.tx_errors != UINT64_MAX) {
2056             ds_put_format(ds, "\ttx_errors: %"PRIu64"\n", stats.tx_errors);
2057         }
2058     } else {
2059         ds_put_format(ds, "\tFailed to get statistics for queue %u: %s",
2060                       queue_id, strerror(error));
2061     }
2062 }
2063
2064 static void
2065 qos_unixctl_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
2066                  const char *argv[], void *aux OVS_UNUSED)
2067 {
2068     struct ds ds = DS_EMPTY_INITIALIZER;
2069     struct shash sh = SHASH_INITIALIZER(&sh);
2070     struct iface *iface;
2071     const char *type;
2072     struct shash_node *node;
2073     struct qos_unixctl_show_cbdata data;
2074     int error;
2075
2076     iface = iface_find(argv[1]);
2077     if (!iface) {
2078         unixctl_command_reply(conn, 501, "no such interface");
2079         return;
2080     }
2081
2082     netdev_get_qos(iface->netdev, &type, &sh);
2083
2084     if (*type != '\0') {
2085         ds_put_format(&ds, "QoS: %s %s\n", iface->name, type);
2086
2087         SHASH_FOR_EACH (node, &sh) {
2088             ds_put_format(&ds, "%s: %s\n", node->name, (char *)node->data);
2089         }
2090
2091         data.ds = &ds;
2092         data.iface = iface;
2093         error = netdev_dump_queues(iface->netdev, qos_unixctl_show_cb, &data);
2094
2095         if (error) {
2096             ds_put_format(&ds, "failed to dump queues: %s", strerror(error));
2097         }
2098         unixctl_command_reply(conn, 200, ds_cstr(&ds));
2099     } else {
2100         ds_put_format(&ds, "QoS not configured on %s\n", iface->name);
2101         unixctl_command_reply(conn, 501, ds_cstr(&ds));
2102     }
2103
2104     shash_destroy_free_data(&sh);
2105     ds_destroy(&ds);
2106 }
2107 \f
2108 /* Bridge reconfiguration functions. */
2109 static void
2110 bridge_create(const struct ovsrec_bridge *br_cfg)
2111 {
2112     struct bridge *br;
2113
2114     assert(!bridge_lookup(br_cfg->name));
2115     br = xzalloc(sizeof *br);
2116
2117     br->name = xstrdup(br_cfg->name);
2118     br->type = xstrdup(ofproto_normalize_type(br_cfg->datapath_type));
2119     br->cfg = br_cfg;
2120
2121     /* Derive the default Ethernet address from the bridge's UUID.  This should
2122      * be unique and it will be stable between ovs-vswitchd runs.  */
2123     memcpy(br->default_ea, &br_cfg->header_.uuid, ETH_ADDR_LEN);
2124     eth_addr_mark_random(br->default_ea);
2125
2126     hmap_init(&br->ports);
2127     hmap_init(&br->ifaces);
2128     hmap_init(&br->iface_by_name);
2129     hmap_init(&br->mirrors);
2130
2131     hmap_insert(&all_bridges, &br->node, hash_string(br->name, 0));
2132 }
2133
2134 static void
2135 bridge_destroy(struct bridge *br)
2136 {
2137     if (br) {
2138         struct mirror *mirror, *next_mirror;
2139         struct port *port, *next_port;
2140
2141         HMAP_FOR_EACH_SAFE (port, next_port, hmap_node, &br->ports) {
2142             port_destroy(port);
2143         }
2144         HMAP_FOR_EACH_SAFE (mirror, next_mirror, hmap_node, &br->mirrors) {
2145             mirror_destroy(mirror);
2146         }
2147         hmap_remove(&all_bridges, &br->node);
2148         ofproto_destroy(br->ofproto);
2149         hmap_destroy(&br->ifaces);
2150         hmap_destroy(&br->ports);
2151         hmap_destroy(&br->iface_by_name);
2152         hmap_destroy(&br->mirrors);
2153         free(br->name);
2154         free(br->type);
2155         free(br);
2156     }
2157 }
2158
2159 static struct bridge *
2160 bridge_lookup(const char *name)
2161 {
2162     struct bridge *br;
2163
2164     HMAP_FOR_EACH_WITH_HASH (br, node, hash_string(name, 0), &all_bridges) {
2165         if (!strcmp(br->name, name)) {
2166             return br;
2167         }
2168     }
2169     return NULL;
2170 }
2171
2172 /* Handle requests for a listing of all flows known by the OpenFlow
2173  * stack, including those normally hidden. */
2174 static void
2175 bridge_unixctl_dump_flows(struct unixctl_conn *conn, int argc OVS_UNUSED,
2176                           const char *argv[], void *aux OVS_UNUSED)
2177 {
2178     struct bridge *br;
2179     struct ds results;
2180
2181     br = bridge_lookup(argv[1]);
2182     if (!br) {
2183         unixctl_command_reply(conn, 501, "Unknown bridge");
2184         return;
2185     }
2186
2187     ds_init(&results);
2188     ofproto_get_all_flows(br->ofproto, &results);
2189
2190     unixctl_command_reply(conn, 200, ds_cstr(&results));
2191     ds_destroy(&results);
2192 }
2193
2194 /* "bridge/reconnect [BRIDGE]": makes BRIDGE drop all of its controller
2195  * connections and reconnect.  If BRIDGE is not specified, then all bridges
2196  * drop their controller connections and reconnect. */
2197 static void
2198 bridge_unixctl_reconnect(struct unixctl_conn *conn, int argc,
2199                          const char *argv[], void *aux OVS_UNUSED)
2200 {
2201     struct bridge *br;
2202     if (argc > 1) {
2203         br = bridge_lookup(argv[1]);
2204         if (!br) {
2205             unixctl_command_reply(conn, 501, "Unknown bridge");
2206             return;
2207         }
2208         ofproto_reconnect_controllers(br->ofproto);
2209     } else {
2210         HMAP_FOR_EACH (br, node, &all_bridges) {
2211             ofproto_reconnect_controllers(br->ofproto);
2212         }
2213     }
2214     unixctl_command_reply(conn, 200, NULL);
2215 }
2216
2217 static size_t
2218 bridge_get_controllers(const struct bridge *br,
2219                        struct ovsrec_controller ***controllersp)
2220 {
2221     struct ovsrec_controller **controllers;
2222     size_t n_controllers;
2223
2224     controllers = br->cfg->controller;
2225     n_controllers = br->cfg->n_controller;
2226
2227     if (n_controllers == 1 && !strcmp(controllers[0]->target, "none")) {
2228         controllers = NULL;
2229         n_controllers = 0;
2230     }
2231
2232     if (controllersp) {
2233         *controllersp = controllers;
2234     }
2235     return n_controllers;
2236 }
2237
2238 /* Adds and deletes "struct port"s and "struct iface"s under 'br' to match
2239  * those configured in 'br->cfg'. */
2240 static void
2241 bridge_add_del_ports(struct bridge *br,
2242                      const unsigned long int *splinter_vlans)
2243 {
2244     struct port *port, *next;
2245     struct shash_node *node;
2246     struct shash new_ports;
2247     size_t i;
2248
2249     /* Collect new ports. */
2250     shash_init(&new_ports);
2251     for (i = 0; i < br->cfg->n_ports; i++) {
2252         const char *name = br->cfg->ports[i]->name;
2253         if (!shash_add_once(&new_ports, name, br->cfg->ports[i])) {
2254             VLOG_WARN("bridge %s: %s specified twice as bridge port",
2255                       br->name, name);
2256         }
2257     }
2258     if (bridge_get_controllers(br, NULL)
2259         && !shash_find(&new_ports, br->name)) {
2260         VLOG_WARN("bridge %s: no port named %s, synthesizing one",
2261                   br->name, br->name);
2262
2263         br->synth_local_port.interfaces = &br->synth_local_ifacep;
2264         br->synth_local_port.n_interfaces = 1;
2265         br->synth_local_port.name = br->name;
2266
2267         br->synth_local_iface.name = br->name;
2268         br->synth_local_iface.type = "internal";
2269
2270         br->synth_local_ifacep = &br->synth_local_iface;
2271
2272         shash_add(&new_ports, br->name, &br->synth_local_port);
2273     }
2274
2275     if (splinter_vlans) {
2276         add_vlan_splinter_ports(br, splinter_vlans, &new_ports);
2277     }
2278
2279     /* Get rid of deleted ports.
2280      * Get rid of deleted interfaces on ports that still exist. */
2281     HMAP_FOR_EACH_SAFE (port, next, hmap_node, &br->ports) {
2282         port->cfg = shash_find_data(&new_ports, port->name);
2283         if (!port->cfg) {
2284             port_destroy(port);
2285         } else {
2286             port_del_ifaces(port);
2287         }
2288     }
2289
2290     /* Create new ports.
2291      * Add new interfaces to existing ports. */
2292     SHASH_FOR_EACH (node, &new_ports) {
2293         struct port *port = port_lookup(br, node->name);
2294         if (!port) {
2295             struct ovsrec_port *cfg = node->data;
2296             port = port_create(br, cfg);
2297         }
2298         port_add_ifaces(port);
2299         if (list_is_empty(&port->ifaces)) {
2300             VLOG_WARN("bridge %s: port %s has no interfaces, dropping",
2301                       br->name, port->name);
2302             port_destroy(port);
2303         }
2304     }
2305     shash_destroy(&new_ports);
2306 }
2307
2308 /* Initializes 'oc' appropriately as a management service controller for
2309  * 'br'.
2310  *
2311  * The caller must free oc->target when it is no longer needed. */
2312 static void
2313 bridge_ofproto_controller_for_mgmt(const struct bridge *br,
2314                                    struct ofproto_controller *oc)
2315 {
2316     oc->target = xasprintf("punix:%s/%s.mgmt", ovs_rundir(), br->name);
2317     oc->max_backoff = 0;
2318     oc->probe_interval = 60;
2319     oc->band = OFPROTO_OUT_OF_BAND;
2320     oc->rate_limit = 0;
2321     oc->burst_limit = 0;
2322 }
2323
2324 /* Converts ovsrec_controller 'c' into an ofproto_controller in 'oc'.  */
2325 static void
2326 bridge_ofproto_controller_from_ovsrec(const struct ovsrec_controller *c,
2327                                       struct ofproto_controller *oc)
2328 {
2329     oc->target = c->target;
2330     oc->max_backoff = c->max_backoff ? *c->max_backoff / 1000 : 8;
2331     oc->probe_interval = c->inactivity_probe ? *c->inactivity_probe / 1000 : 5;
2332     oc->band = (!c->connection_mode || !strcmp(c->connection_mode, "in-band")
2333                 ? OFPROTO_IN_BAND : OFPROTO_OUT_OF_BAND);
2334     oc->rate_limit = c->controller_rate_limit ? *c->controller_rate_limit : 0;
2335     oc->burst_limit = (c->controller_burst_limit
2336                        ? *c->controller_burst_limit : 0);
2337 }
2338
2339 /* Configures the IP stack for 'br''s local interface properly according to the
2340  * configuration in 'c'.  */
2341 static void
2342 bridge_configure_local_iface_netdev(struct bridge *br,
2343                                     struct ovsrec_controller *c)
2344 {
2345     struct netdev *netdev;
2346     struct in_addr mask, gateway;
2347
2348     struct iface *local_iface;
2349     struct in_addr ip;
2350
2351     /* If there's no local interface or no IP address, give up. */
2352     local_iface = iface_from_ofp_port(br, OFPP_LOCAL);
2353     if (!local_iface || !c->local_ip || !inet_aton(c->local_ip, &ip)) {
2354         return;
2355     }
2356
2357     /* Bring up the local interface. */
2358     netdev = local_iface->netdev;
2359     netdev_turn_flags_on(netdev, NETDEV_UP, true);
2360
2361     /* Configure the IP address and netmask. */
2362     if (!c->local_netmask
2363         || !inet_aton(c->local_netmask, &mask)
2364         || !mask.s_addr) {
2365         mask.s_addr = guess_netmask(ip.s_addr);
2366     }
2367     if (!netdev_set_in4(netdev, ip, mask)) {
2368         VLOG_INFO("bridge %s: configured IP address "IP_FMT", netmask "IP_FMT,
2369                   br->name, IP_ARGS(&ip.s_addr), IP_ARGS(&mask.s_addr));
2370     }
2371
2372     /* Configure the default gateway. */
2373     if (c->local_gateway
2374         && inet_aton(c->local_gateway, &gateway)
2375         && gateway.s_addr) {
2376         if (!netdev_add_router(netdev, gateway)) {
2377             VLOG_INFO("bridge %s: configured gateway "IP_FMT,
2378                       br->name, IP_ARGS(&gateway.s_addr));
2379         }
2380     }
2381 }
2382
2383 /* Returns true if 'a' and 'b' are the same except that any number of slashes
2384  * in either string are treated as equal to any number of slashes in the other,
2385  * e.g. "x///y" is equal to "x/y". */
2386 static bool
2387 equal_pathnames(const char *a, const char *b)
2388 {
2389     while (*a == *b) {
2390         if (*a == '/') {
2391             a += strspn(a, "/");
2392             b += strspn(b, "/");
2393         } else if (*a == '\0') {
2394             return true;
2395         } else {
2396             a++;
2397             b++;
2398         }
2399     }
2400     return false;
2401 }
2402
2403 static void
2404 bridge_configure_remotes(struct bridge *br,
2405                          const struct sockaddr_in *managers, size_t n_managers)
2406 {
2407     const char *disable_ib_str, *queue_id_str;
2408     bool disable_in_band = false;
2409     int queue_id;
2410
2411     struct ovsrec_controller **controllers;
2412     size_t n_controllers;
2413
2414     enum ofproto_fail_mode fail_mode;
2415
2416     struct ofproto_controller *ocs;
2417     size_t n_ocs;
2418     size_t i;
2419
2420     /* Check if we should disable in-band control on this bridge. */
2421     disable_ib_str = bridge_get_other_config(br->cfg, "disable-in-band");
2422     if (disable_ib_str && !strcmp(disable_ib_str, "true")) {
2423         disable_in_band = true;
2424     }
2425
2426     /* Set OpenFlow queue ID for in-band control. */
2427     queue_id_str = bridge_get_other_config(br->cfg, "in-band-queue");
2428     queue_id = queue_id_str ? strtol(queue_id_str, NULL, 10) : -1;
2429     ofproto_set_in_band_queue(br->ofproto, queue_id);
2430
2431     if (disable_in_band) {
2432         ofproto_set_extra_in_band_remotes(br->ofproto, NULL, 0);
2433     } else {
2434         ofproto_set_extra_in_band_remotes(br->ofproto, managers, n_managers);
2435     }
2436
2437     n_controllers = bridge_get_controllers(br, &controllers);
2438
2439     ocs = xmalloc((n_controllers + 1) * sizeof *ocs);
2440     n_ocs = 0;
2441
2442     bridge_ofproto_controller_for_mgmt(br, &ocs[n_ocs++]);
2443     for (i = 0; i < n_controllers; i++) {
2444         struct ovsrec_controller *c = controllers[i];
2445
2446         if (!strncmp(c->target, "punix:", 6)
2447             || !strncmp(c->target, "unix:", 5)) {
2448             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2449             char *whitelist;
2450
2451             whitelist = xasprintf("unix:%s/%s.controller",
2452                                   ovs_rundir(), br->name);
2453             if (!equal_pathnames(c->target, whitelist)) {
2454                 /* Prevent remote ovsdb-server users from accessing arbitrary
2455                  * Unix domain sockets and overwriting arbitrary local
2456                  * files. */
2457                 VLOG_ERR_RL(&rl, "bridge %s: Not adding Unix domain socket "
2458                             "controller \"%s\" due to possibility for remote "
2459                             "exploit.  Instead, specify whitelisted \"%s\" or "
2460                             "connect to \"unix:%s/%s.mgmt\" (which is always "
2461                             "available without special configuration).",
2462                             br->name, c->target, whitelist,
2463                             ovs_rundir(), br->name);
2464                 free(whitelist);
2465                 continue;
2466             }
2467
2468             free(whitelist);
2469         }
2470
2471         bridge_configure_local_iface_netdev(br, c);
2472         bridge_ofproto_controller_from_ovsrec(c, &ocs[n_ocs]);
2473         if (disable_in_band) {
2474             ocs[n_ocs].band = OFPROTO_OUT_OF_BAND;
2475         }
2476         n_ocs++;
2477     }
2478
2479     ofproto_set_controllers(br->ofproto, ocs, n_ocs);
2480     free(ocs[0].target); /* From bridge_ofproto_controller_for_mgmt(). */
2481     free(ocs);
2482
2483     /* Set the fail-mode. */
2484     fail_mode = !br->cfg->fail_mode
2485                 || !strcmp(br->cfg->fail_mode, "standalone")
2486                     ? OFPROTO_FAIL_STANDALONE
2487                     : OFPROTO_FAIL_SECURE;
2488     ofproto_set_fail_mode(br->ofproto, fail_mode);
2489
2490     /* Configure OpenFlow controller connection snooping. */
2491     if (!ofproto_has_snoops(br->ofproto)) {
2492         struct sset snoops;
2493
2494         sset_init(&snoops);
2495         sset_add_and_free(&snoops, xasprintf("punix:%s/%s.snoop",
2496                                              ovs_rundir(), br->name));
2497         ofproto_set_snoops(br->ofproto, &snoops);
2498         sset_destroy(&snoops);
2499     }
2500 }
2501 \f
2502 /* Port functions. */
2503
2504 static struct port *
2505 port_create(struct bridge *br, const struct ovsrec_port *cfg)
2506 {
2507     struct port *port;
2508
2509     port = xzalloc(sizeof *port);
2510     port->bridge = br;
2511     port->name = xstrdup(cfg->name);
2512     port->cfg = cfg;
2513     list_init(&port->ifaces);
2514
2515     hmap_insert(&br->ports, &port->hmap_node, hash_string(port->name, 0));
2516
2517     VLOG_INFO("created port %s on bridge %s", port->name, br->name);
2518
2519     return port;
2520 }
2521
2522 static const char *
2523 get_port_other_config(const struct ovsrec_port *port, const char *key,
2524                       const char *default_value)
2525 {
2526     const char *value;
2527
2528     value = get_ovsrec_key_value(port->key_other_config,
2529                                  port->value_other_config,
2530                                  port->n_other_config, key);
2531     return value ? value : default_value;
2532 }
2533
2534 static const char *
2535 get_interface_other_config(const struct ovsrec_interface *iface,
2536                            const char *key, const char *default_value)
2537 {
2538     const char *value;
2539
2540     value = get_ovsrec_key_value(iface->key_other_config,
2541                                  iface->value_other_config,
2542                                  iface->n_other_config, key);
2543     return value ? value : default_value;
2544 }
2545
2546 /* Deletes interfaces from 'port' that are no longer configured for it. */
2547 static void
2548 port_del_ifaces(struct port *port)
2549 {
2550     struct iface *iface, *next;
2551     struct sset new_ifaces;
2552     size_t i;
2553
2554     /* Collect list of new interfaces. */
2555     sset_init(&new_ifaces);
2556     for (i = 0; i < port->cfg->n_interfaces; i++) {
2557         const char *name = port->cfg->interfaces[i]->name;
2558         const char *type = port->cfg->interfaces[i]->name;
2559         if (strcmp(type, "null")) {
2560             sset_add(&new_ifaces, name);
2561         }
2562     }
2563
2564     /* Get rid of deleted interfaces. */
2565     LIST_FOR_EACH_SAFE (iface, next, port_elem, &port->ifaces) {
2566         if (!sset_contains(&new_ifaces, iface->name)) {
2567             iface_destroy(iface);
2568         }
2569     }
2570
2571     sset_destroy(&new_ifaces);
2572 }
2573
2574 /* Adds new interfaces to 'port' and updates 'type' and 'cfg' members of
2575  * existing ones. */
2576 static void
2577 port_add_ifaces(struct port *port)
2578 {
2579     struct shash new_ifaces;
2580     struct shash_node *node;
2581     size_t i;
2582
2583     /* Collect new ifaces. */
2584     shash_init(&new_ifaces);
2585     for (i = 0; i < port->cfg->n_interfaces; i++) {
2586         const struct ovsrec_interface *cfg = port->cfg->interfaces[i];
2587         if (strcmp(cfg->type, "null")
2588             && !shash_add_once(&new_ifaces, cfg->name, cfg)) {
2589             VLOG_WARN("port %s: %s specified twice as port interface",
2590                       port->name, cfg->name);
2591             iface_clear_db_record(cfg);
2592         }
2593     }
2594
2595     /* Create new interfaces.
2596      * Update interface types and 'cfg' members. */
2597     SHASH_FOR_EACH (node, &new_ifaces) {
2598         const struct ovsrec_interface *cfg = node->data;
2599         const char *iface_name = node->name;
2600         struct iface *iface;
2601
2602         iface = iface_lookup(port->bridge, iface_name);
2603         if (!iface) {
2604             iface = iface_create(port, cfg);
2605         } else {
2606             iface->cfg = cfg;
2607         }
2608
2609         /* Determine interface type.  The local port always has type
2610          * "internal".  Other ports take their type from the database and
2611          * default to "system" if none is specified. */
2612         iface->type = (!strcmp(iface_name, port->bridge->name) ? "internal"
2613                        : cfg->type[0] ? cfg->type
2614                        : "system");
2615     }
2616     shash_destroy(&new_ifaces);
2617 }
2618
2619 static void
2620 port_destroy(struct port *port)
2621 {
2622     if (port) {
2623         struct bridge *br = port->bridge;
2624         struct iface *iface, *next;
2625
2626         if (br->ofproto) {
2627             ofproto_bundle_unregister(br->ofproto, port);
2628         }
2629
2630         LIST_FOR_EACH_SAFE (iface, next, port_elem, &port->ifaces) {
2631             iface_destroy(iface);
2632         }
2633
2634         hmap_remove(&br->ports, &port->hmap_node);
2635
2636         VLOG_INFO("destroyed port %s on bridge %s", port->name, br->name);
2637
2638         free(port->name);
2639         free(port);
2640     }
2641 }
2642
2643 static struct port *
2644 port_lookup(const struct bridge *br, const char *name)
2645 {
2646     struct port *port;
2647
2648     HMAP_FOR_EACH_WITH_HASH (port, hmap_node, hash_string(name, 0),
2649                              &br->ports) {
2650         if (!strcmp(port->name, name)) {
2651             return port;
2652         }
2653     }
2654     return NULL;
2655 }
2656
2657 static bool
2658 enable_lacp(struct port *port, bool *activep)
2659 {
2660     if (!port->cfg->lacp) {
2661         /* XXX when LACP implementation has been sufficiently tested, enable by
2662          * default and make active on bonded ports. */
2663         return false;
2664     } else if (!strcmp(port->cfg->lacp, "off")) {
2665         return false;
2666     } else if (!strcmp(port->cfg->lacp, "active")) {
2667         *activep = true;
2668         return true;
2669     } else if (!strcmp(port->cfg->lacp, "passive")) {
2670         *activep = false;
2671         return true;
2672     } else {
2673         VLOG_WARN("port %s: unknown LACP mode %s",
2674                   port->name, port->cfg->lacp);
2675         return false;
2676     }
2677 }
2678
2679 static struct lacp_settings *
2680 port_configure_lacp(struct port *port, struct lacp_settings *s)
2681 {
2682     const char *lacp_time, *system_id;
2683     long long int custom_time;
2684     int priority;
2685
2686     if (!enable_lacp(port, &s->active)) {
2687         return NULL;
2688     }
2689
2690     s->name = port->name;
2691
2692     system_id = get_port_other_config(port->cfg, "lacp-system-id", NULL);
2693     if (!system_id
2694         || sscanf(system_id, ETH_ADDR_SCAN_FMT,
2695                   ETH_ADDR_SCAN_ARGS(s->id)) != ETH_ADDR_SCAN_COUNT) {
2696         memcpy(s->id, port->bridge->ea, ETH_ADDR_LEN);
2697     }
2698
2699     if (eth_addr_is_zero(s->id)) {
2700         VLOG_WARN("port %s: Invalid zero LACP system ID.", port->name);
2701         return NULL;
2702     }
2703
2704     /* Prefer bondable links if unspecified. */
2705     priority = atoi(get_port_other_config(port->cfg, "lacp-system-priority",
2706                                           "0"));
2707     s->priority = (priority > 0 && priority <= UINT16_MAX
2708                    ? priority
2709                    : UINT16_MAX - !list_is_short(&port->ifaces));
2710
2711     s->heartbeat = !strcmp(get_port_other_config(port->cfg,
2712                                                  "lacp-heartbeat",
2713                                                  "false"), "true");
2714
2715     lacp_time = get_port_other_config(port->cfg, "lacp-time", "slow");
2716     custom_time = atoi(lacp_time);
2717     if (!strcmp(lacp_time, "fast")) {
2718         s->lacp_time = LACP_TIME_FAST;
2719     } else if (!strcmp(lacp_time, "slow")) {
2720         s->lacp_time = LACP_TIME_SLOW;
2721     } else if (custom_time > 0) {
2722         s->lacp_time = LACP_TIME_CUSTOM;
2723         s->custom_time = custom_time;
2724     } else {
2725         s->lacp_time = LACP_TIME_SLOW;
2726     }
2727
2728     return s;
2729 }
2730
2731 static void
2732 iface_configure_lacp(struct iface *iface, struct lacp_slave_settings *s)
2733 {
2734     int priority, portid, key;
2735
2736     portid = atoi(get_interface_other_config(iface->cfg, "lacp-port-id", "0"));
2737     priority = atoi(get_interface_other_config(iface->cfg,
2738                                                "lacp-port-priority", "0"));
2739     key = atoi(get_interface_other_config(iface->cfg, "lacp-aggregation-key",
2740                                           "0"));
2741
2742     if (portid <= 0 || portid > UINT16_MAX) {
2743         portid = iface->ofp_port;
2744     }
2745
2746     if (priority <= 0 || priority > UINT16_MAX) {
2747         priority = UINT16_MAX;
2748     }
2749
2750     if (key < 0 || key > UINT16_MAX) {
2751         key = 0;
2752     }
2753
2754     s->name = iface->name;
2755     s->id = portid;
2756     s->priority = priority;
2757     s->key = key;
2758 }
2759
2760 static void
2761 port_configure_bond(struct port *port, struct bond_settings *s,
2762                     uint32_t *bond_stable_ids)
2763 {
2764     const char *detect_s;
2765     struct iface *iface;
2766     int miimon_interval;
2767     size_t i;
2768
2769     s->name = port->name;
2770     s->balance = BM_SLB;
2771     if (port->cfg->bond_mode) {
2772         if (!bond_mode_from_string(&s->balance, port->cfg->bond_mode)) {
2773             VLOG_WARN("port %s: unknown bond_mode %s, defaulting to %s",
2774                       port->name, port->cfg->bond_mode,
2775                       bond_mode_to_string(s->balance));
2776         }
2777     } else {
2778         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
2779
2780         /* XXX: Post version 1.4.*, change the default bond_mode to
2781          * active-backup.  Until then, warn that the change is imminent. */
2782         VLOG_WARN_RL(&rl, "port %s: Using the default bond_mode %s. Note that"
2783                      " in future versions, the default bond_mode is expected"
2784                      " to change to active-backup", port->name,
2785                      bond_mode_to_string(s->balance));
2786     }
2787     if (s->balance == BM_SLB && port->bridge->cfg->n_flood_vlans) {
2788         VLOG_WARN("port %s: SLB bonds are incompatible with flood_vlans, "
2789                   "please use another bond type or disable flood_vlans",
2790                   port->name);
2791     }
2792
2793     miimon_interval = atoi(get_port_other_config(port->cfg,
2794                                                  "bond-miimon-interval", "0"));
2795     if (miimon_interval <= 0) {
2796         miimon_interval = 200;
2797     }
2798
2799     detect_s = get_port_other_config(port->cfg, "bond-detect-mode", "carrier");
2800     if (!strcmp(detect_s, "carrier")) {
2801         miimon_interval = 0;
2802     } else if (strcmp(detect_s, "miimon")) {
2803         VLOG_WARN("port %s: unsupported bond-detect-mode %s, "
2804                   "defaulting to carrier", port->name, detect_s);
2805         miimon_interval = 0;
2806     }
2807
2808     s->up_delay = MAX(0, port->cfg->bond_updelay);
2809     s->down_delay = MAX(0, port->cfg->bond_downdelay);
2810     s->basis = atoi(get_port_other_config(port->cfg, "bond-hash-basis", "0"));
2811     s->rebalance_interval = atoi(
2812         get_port_other_config(port->cfg, "bond-rebalance-interval", "10000"));
2813     if (s->rebalance_interval < 1000) {
2814         s->rebalance_interval = 1000;
2815     }
2816
2817     s->fake_iface = port->cfg->bond_fake_iface;
2818
2819     i = 0;
2820     LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
2821         long long stable_id;
2822
2823         stable_id = atoll(get_interface_other_config(iface->cfg,
2824                                                      "bond-stable-id", "0"));
2825         if (stable_id <= 0 || stable_id >= UINT32_MAX) {
2826             stable_id = iface->ofp_port;
2827         }
2828         bond_stable_ids[i++] = stable_id;
2829
2830         netdev_set_miimon_interval(iface->netdev, miimon_interval);
2831     }
2832 }
2833
2834 /* Returns true if 'port' is synthetic, that is, if we constructed it locally
2835  * instead of obtaining it from the database. */
2836 static bool
2837 port_is_synthetic(const struct port *port)
2838 {
2839     return ovsdb_idl_row_is_synthetic(&port->cfg->header_);
2840 }
2841 \f
2842 /* Interface functions. */
2843
2844 static struct iface *
2845 iface_create(struct port *port, const struct ovsrec_interface *if_cfg)
2846 {
2847     struct bridge *br = port->bridge;
2848     struct iface *iface;
2849     char *name = if_cfg->name;
2850
2851     iface = xzalloc(sizeof *iface);
2852     iface->port = port;
2853     iface->name = xstrdup(name);
2854     iface->ofp_port = -1;
2855     iface->tag = tag_create_random();
2856     iface->netdev = NULL;
2857     iface->cfg = if_cfg;
2858
2859     hmap_insert(&br->iface_by_name, &iface->name_node, hash_string(name, 0));
2860
2861     list_push_back(&port->ifaces, &iface->port_elem);
2862
2863     VLOG_DBG("attached network device %s to port %s", iface->name, port->name);
2864
2865     return iface;
2866 }
2867
2868 static void
2869 iface_destroy(struct iface *iface)
2870 {
2871     if (iface) {
2872         struct port *port = iface->port;
2873         struct bridge *br = port->bridge;
2874
2875         if (br->ofproto && iface->ofp_port >= 0) {
2876             ofproto_port_unregister(br->ofproto, iface->ofp_port);
2877         }
2878
2879         if (iface->ofp_port >= 0) {
2880             hmap_remove(&br->ifaces, &iface->ofp_port_node);
2881         }
2882
2883         list_remove(&iface->port_elem);
2884         hmap_remove(&br->iface_by_name, &iface->name_node);
2885
2886         netdev_close(iface->netdev);
2887
2888         free(iface->name);
2889         free(iface);
2890     }
2891 }
2892
2893 static struct iface *
2894 iface_lookup(const struct bridge *br, const char *name)
2895 {
2896     struct iface *iface;
2897
2898     HMAP_FOR_EACH_WITH_HASH (iface, name_node, hash_string(name, 0),
2899                              &br->iface_by_name) {
2900         if (!strcmp(iface->name, name)) {
2901             return iface;
2902         }
2903     }
2904
2905     return NULL;
2906 }
2907
2908 static struct iface *
2909 iface_find(const char *name)
2910 {
2911     const struct bridge *br;
2912
2913     HMAP_FOR_EACH (br, node, &all_bridges) {
2914         struct iface *iface = iface_lookup(br, name);
2915
2916         if (iface) {
2917             return iface;
2918         }
2919     }
2920     return NULL;
2921 }
2922
2923 static struct iface *
2924 iface_from_ofp_port(const struct bridge *br, uint16_t ofp_port)
2925 {
2926     struct iface *iface;
2927
2928     HMAP_FOR_EACH_IN_BUCKET (iface, ofp_port_node,
2929                              hash_int(ofp_port, 0), &br->ifaces) {
2930         if (iface->ofp_port == ofp_port) {
2931             return iface;
2932         }
2933     }
2934     return NULL;
2935 }
2936
2937 /* Set Ethernet address of 'iface', if one is specified in the configuration
2938  * file. */
2939 static void
2940 iface_set_mac(struct iface *iface)
2941 {
2942     uint8_t ea[ETH_ADDR_LEN];
2943
2944     if (!strcmp(iface->type, "internal")
2945         && iface->cfg->mac && eth_addr_from_string(iface->cfg->mac, ea)) {
2946         if (iface->ofp_port == OFPP_LOCAL) {
2947             VLOG_ERR("interface %s: ignoring mac in Interface record "
2948                      "(use Bridge record to set local port's mac)",
2949                      iface->name);
2950         } else if (eth_addr_is_multicast(ea)) {
2951             VLOG_ERR("interface %s: cannot set MAC to multicast address",
2952                      iface->name);
2953         } else {
2954             int error = netdev_set_etheraddr(iface->netdev, ea);
2955             if (error) {
2956                 VLOG_ERR("interface %s: setting MAC failed (%s)",
2957                          iface->name, strerror(error));
2958             }
2959         }
2960     }
2961 }
2962
2963 /* Sets the ofport column of 'if_cfg' to 'ofport'. */
2964 static void
2965 iface_set_ofport(const struct ovsrec_interface *if_cfg, int64_t ofport)
2966 {
2967     if (if_cfg && !ovsdb_idl_row_is_synthetic(&if_cfg->header_)) {
2968         ovsrec_interface_set_ofport(if_cfg, &ofport, 1);
2969     }
2970 }
2971
2972 /* Clears all of the fields in 'if_cfg' that indicate interface status, and
2973  * sets the "ofport" field to -1.
2974  *
2975  * This is appropriate when 'if_cfg''s interface cannot be created or is
2976  * otherwise invalid. */
2977 static void
2978 iface_clear_db_record(const struct ovsrec_interface *if_cfg)
2979 {
2980     if (!ovsdb_idl_row_is_synthetic(&if_cfg->header_)) {
2981         iface_set_ofport(if_cfg, -1);
2982         ovsrec_interface_set_status(if_cfg, NULL, NULL, 0);
2983         ovsrec_interface_set_admin_state(if_cfg, NULL);
2984         ovsrec_interface_set_duplex(if_cfg, NULL);
2985         ovsrec_interface_set_link_speed(if_cfg, NULL, 0);
2986         ovsrec_interface_set_link_state(if_cfg, NULL);
2987         ovsrec_interface_set_mtu(if_cfg, NULL, 0);
2988         ovsrec_interface_set_cfm_fault(if_cfg, NULL, 0);
2989         ovsrec_interface_set_cfm_remote_mpids(if_cfg, NULL, 0);
2990         ovsrec_interface_set_lacp_current(if_cfg, NULL, 0);
2991         ovsrec_interface_set_statistics(if_cfg, NULL, NULL, 0);
2992     }
2993 }
2994
2995 /* Adds the 'n' key-value pairs in 'keys' in 'values' to 'shash'.
2996  *
2997  * The value strings in '*shash' are taken directly from values[], not copied,
2998  * so the caller should not modify or free them. */
2999 static void
3000 shash_from_ovs_idl_map(char **keys, char **values, size_t n,
3001                        struct shash *shash)
3002 {
3003     size_t i;
3004
3005     shash_init(shash);
3006     for (i = 0; i < n; i++) {
3007         shash_add(shash, keys[i], values[i]);
3008     }
3009 }
3010
3011 /* Creates 'keys' and 'values' arrays from 'shash'.
3012  *
3013  * Sets 'keys' and 'values' to heap allocated arrays representing the key-value
3014  * pairs in 'shash'.  The caller takes ownership of 'keys' and 'values'.  They
3015  * are populated with with strings taken directly from 'shash' and thus have
3016  * the same ownership of the key-value pairs in shash.
3017  */
3018 static void
3019 shash_to_ovs_idl_map(struct shash *shash,
3020                      char ***keys, char ***values, size_t *n)
3021 {
3022     size_t i, count;
3023     char **k, **v;
3024     struct shash_node *sn;
3025
3026     count = shash_count(shash);
3027
3028     k = xmalloc(count * sizeof *k);
3029     v = xmalloc(count * sizeof *v);
3030
3031     i = 0;
3032     SHASH_FOR_EACH(sn, shash) {
3033         k[i] = sn->name;
3034         v[i] = sn->data;
3035         i++;
3036     }
3037
3038     *n      = count;
3039     *keys   = k;
3040     *values = v;
3041 }
3042
3043 struct iface_delete_queues_cbdata {
3044     struct netdev *netdev;
3045     const struct ovsdb_datum *queues;
3046 };
3047
3048 static bool
3049 queue_ids_include(const struct ovsdb_datum *queues, int64_t target)
3050 {
3051     union ovsdb_atom atom;
3052
3053     atom.integer = target;
3054     return ovsdb_datum_find_key(queues, &atom, OVSDB_TYPE_INTEGER) != UINT_MAX;
3055 }
3056
3057 static void
3058 iface_delete_queues(unsigned int queue_id,
3059                     const struct shash *details OVS_UNUSED, void *cbdata_)
3060 {
3061     struct iface_delete_queues_cbdata *cbdata = cbdata_;
3062
3063     if (!queue_ids_include(cbdata->queues, queue_id)) {
3064         netdev_delete_queue(cbdata->netdev, queue_id);
3065     }
3066 }
3067
3068 static void
3069 iface_configure_qos(struct iface *iface, const struct ovsrec_qos *qos)
3070 {
3071     struct ofpbuf queues_buf;
3072
3073     ofpbuf_init(&queues_buf, 0);
3074
3075     if (!qos || qos->type[0] == '\0' || qos->n_queues < 1) {
3076         netdev_set_qos(iface->netdev, NULL, NULL);
3077     } else {
3078         struct iface_delete_queues_cbdata cbdata;
3079         struct shash details;
3080         bool queue_zero;
3081         size_t i;
3082
3083         /* Configure top-level Qos for 'iface'. */
3084         shash_from_ovs_idl_map(qos->key_other_config, qos->value_other_config,
3085                                qos->n_other_config, &details);
3086         netdev_set_qos(iface->netdev, qos->type, &details);
3087         shash_destroy(&details);
3088
3089         /* Deconfigure queues that were deleted. */
3090         cbdata.netdev = iface->netdev;
3091         cbdata.queues = ovsrec_qos_get_queues(qos, OVSDB_TYPE_INTEGER,
3092                                               OVSDB_TYPE_UUID);
3093         netdev_dump_queues(iface->netdev, iface_delete_queues, &cbdata);
3094
3095         /* Configure queues for 'iface'. */
3096         queue_zero = false;
3097         for (i = 0; i < qos->n_queues; i++) {
3098             const struct ovsrec_queue *queue = qos->value_queues[i];
3099             unsigned int queue_id = qos->key_queues[i];
3100
3101             if (queue_id == 0) {
3102                 queue_zero = true;
3103             }
3104
3105             if (queue->n_dscp == 1) {
3106                 struct ofproto_port_queue *port_queue;
3107
3108                 port_queue = ofpbuf_put_uninit(&queues_buf,
3109                                                sizeof *port_queue);
3110                 port_queue->queue = queue_id;
3111                 port_queue->dscp = queue->dscp[0];
3112             }
3113
3114             shash_from_ovs_idl_map(queue->key_other_config,
3115                                    queue->value_other_config,
3116                                    queue->n_other_config, &details);
3117             netdev_set_queue(iface->netdev, queue_id, &details);
3118             shash_destroy(&details);
3119         }
3120         if (!queue_zero) {
3121             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
3122             VLOG_WARN_RL(&rl, "interface %s: QoS configured without a default "
3123                          "queue (queue 0).  Using default configuration.",
3124                          iface->name);
3125
3126             shash_init(&details);
3127             netdev_set_queue(iface->netdev, 0, &details);
3128             shash_destroy(&details);
3129         }
3130     }
3131
3132     if (iface->ofp_port >= 0) {
3133         const struct ofproto_port_queue *port_queues = queues_buf.data;
3134         size_t n_queues = queues_buf.size / sizeof *port_queues;
3135
3136         ofproto_port_set_queues(iface->port->bridge->ofproto, iface->ofp_port,
3137                                 port_queues, n_queues);
3138     }
3139
3140     netdev_set_policing(iface->netdev,
3141                         iface->cfg->ingress_policing_rate,
3142                         iface->cfg->ingress_policing_burst);
3143
3144     ofpbuf_uninit(&queues_buf);
3145 }
3146
3147 static void
3148 iface_configure_cfm(struct iface *iface)
3149 {
3150     const struct ovsrec_interface *cfg = iface->cfg;
3151     const char *extended_str, *opstate_str;
3152     struct cfm_settings s;
3153
3154     if (!cfg->n_cfm_mpid) {
3155         ofproto_port_clear_cfm(iface->port->bridge->ofproto, iface->ofp_port);
3156         return;
3157     }
3158
3159     s.mpid = *cfg->cfm_mpid;
3160     s.interval = atoi(get_interface_other_config(iface->cfg, "cfm_interval",
3161                                                  "0"));
3162     s.ccm_vlan = atoi(get_interface_other_config(iface->cfg, "cfm_ccm_vlan",
3163                                                  "0"));
3164     if (s.interval <= 0) {
3165         s.interval = 1000;
3166     }
3167
3168     extended_str = get_interface_other_config(iface->cfg, "cfm_extended",
3169                                               "false");
3170     s.extended = !strcasecmp("true", extended_str);
3171
3172     opstate_str = get_interface_other_config(iface->cfg, "cfm_opstate", "up");
3173     s.opup = !strcasecmp("up", opstate_str);
3174
3175     ofproto_port_set_cfm(iface->port->bridge->ofproto, iface->ofp_port, &s);
3176 }
3177
3178 /* Returns true if 'iface' is synthetic, that is, if we constructed it locally
3179  * instead of obtaining it from the database. */
3180 static bool
3181 iface_is_synthetic(const struct iface *iface)
3182 {
3183     return ovsdb_idl_row_is_synthetic(&iface->cfg->header_);
3184 }
3185 \f
3186 /* Port mirroring. */
3187
3188 static struct mirror *
3189 mirror_find_by_uuid(struct bridge *br, const struct uuid *uuid)
3190 {
3191     struct mirror *m;
3192
3193     HMAP_FOR_EACH_IN_BUCKET (m, hmap_node, uuid_hash(uuid), &br->mirrors) {
3194         if (uuid_equals(uuid, &m->uuid)) {
3195             return m;
3196         }
3197     }
3198     return NULL;
3199 }
3200
3201 static void
3202 bridge_configure_mirrors(struct bridge *br)
3203 {
3204     const struct ovsdb_datum *mc;
3205     unsigned long *flood_vlans;
3206     struct mirror *m, *next;
3207     size_t i;
3208
3209     /* Get rid of deleted mirrors. */
3210     mc = ovsrec_bridge_get_mirrors(br->cfg, OVSDB_TYPE_UUID);
3211     HMAP_FOR_EACH_SAFE (m, next, hmap_node, &br->mirrors) {
3212         union ovsdb_atom atom;
3213
3214         atom.uuid = m->uuid;
3215         if (ovsdb_datum_find_key(mc, &atom, OVSDB_TYPE_UUID) == UINT_MAX) {
3216             mirror_destroy(m);
3217         }
3218     }
3219
3220     /* Add new mirrors and reconfigure existing ones. */
3221     for (i = 0; i < br->cfg->n_mirrors; i++) {
3222         const struct ovsrec_mirror *cfg = br->cfg->mirrors[i];
3223         struct mirror *m = mirror_find_by_uuid(br, &cfg->header_.uuid);
3224         if (!m) {
3225             m = mirror_create(br, cfg);
3226         }
3227         m->cfg = cfg;
3228         if (!mirror_configure(m)) {
3229             mirror_destroy(m);
3230         }
3231     }
3232
3233     /* Update flooded vlans (for RSPAN). */
3234     flood_vlans = vlan_bitmap_from_array(br->cfg->flood_vlans,
3235                                          br->cfg->n_flood_vlans);
3236     ofproto_set_flood_vlans(br->ofproto, flood_vlans);
3237     bitmap_free(flood_vlans);
3238 }
3239
3240 static struct mirror *
3241 mirror_create(struct bridge *br, const struct ovsrec_mirror *cfg)
3242 {
3243     struct mirror *m;
3244
3245     m = xzalloc(sizeof *m);
3246     m->uuid = cfg->header_.uuid;
3247     hmap_insert(&br->mirrors, &m->hmap_node, uuid_hash(&m->uuid));
3248     m->bridge = br;
3249     m->name = xstrdup(cfg->name);
3250
3251     return m;
3252 }
3253
3254 static void
3255 mirror_destroy(struct mirror *m)
3256 {
3257     if (m) {
3258         struct bridge *br = m->bridge;
3259
3260         if (br->ofproto) {
3261             ofproto_mirror_unregister(br->ofproto, m);
3262         }
3263
3264         hmap_remove(&br->mirrors, &m->hmap_node);
3265         free(m->name);
3266         free(m);
3267     }
3268 }
3269
3270 static void
3271 mirror_collect_ports(struct mirror *m,
3272                      struct ovsrec_port **in_ports, int n_in_ports,
3273                      void ***out_portsp, size_t *n_out_portsp)
3274 {
3275     void **out_ports = xmalloc(n_in_ports * sizeof *out_ports);
3276     size_t n_out_ports = 0;
3277     size_t i;
3278
3279     for (i = 0; i < n_in_ports; i++) {
3280         const char *name = in_ports[i]->name;
3281         struct port *port = port_lookup(m->bridge, name);
3282         if (port) {
3283             out_ports[n_out_ports++] = port;
3284         } else {
3285             VLOG_WARN("bridge %s: mirror %s cannot match on nonexistent "
3286                       "port %s", m->bridge->name, m->name, name);
3287         }
3288     }
3289     *out_portsp = out_ports;
3290     *n_out_portsp = n_out_ports;
3291 }
3292
3293 static bool
3294 mirror_configure(struct mirror *m)
3295 {
3296     const struct ovsrec_mirror *cfg = m->cfg;
3297     struct ofproto_mirror_settings s;
3298
3299     /* Set name. */
3300     if (strcmp(cfg->name, m->name)) {
3301         free(m->name);
3302         m->name = xstrdup(cfg->name);
3303     }
3304     s.name = m->name;
3305
3306     /* Get output port or VLAN. */
3307     if (cfg->output_port) {
3308         s.out_bundle = port_lookup(m->bridge, cfg->output_port->name);
3309         if (!s.out_bundle) {
3310             VLOG_ERR("bridge %s: mirror %s outputs to port not on bridge",
3311                      m->bridge->name, m->name);
3312             return false;
3313         }
3314         s.out_vlan = UINT16_MAX;
3315
3316         if (cfg->output_vlan) {
3317             VLOG_ERR("bridge %s: mirror %s specifies both output port and "
3318                      "output vlan; ignoring output vlan",
3319                      m->bridge->name, m->name);
3320         }
3321     } else if (cfg->output_vlan) {
3322         /* The database should prevent invalid VLAN values. */
3323         s.out_bundle = NULL;
3324         s.out_vlan = *cfg->output_vlan;
3325     } else {
3326         VLOG_ERR("bridge %s: mirror %s does not specify output; ignoring",
3327                  m->bridge->name, m->name);
3328         return false;
3329     }
3330
3331     /* Get port selection. */
3332     if (cfg->select_all) {
3333         size_t n_ports = hmap_count(&m->bridge->ports);
3334         void **ports = xmalloc(n_ports * sizeof *ports);
3335         struct port *port;
3336         size_t i;
3337
3338         i = 0;
3339         HMAP_FOR_EACH (port, hmap_node, &m->bridge->ports) {
3340             ports[i++] = port;
3341         }
3342
3343         s.srcs = ports;
3344         s.n_srcs = n_ports;
3345
3346         s.dsts = ports;
3347         s.n_dsts = n_ports;
3348     } else {
3349         /* Get ports, dropping ports that don't exist.
3350          * The IDL ensures that there are no duplicates. */
3351         mirror_collect_ports(m, cfg->select_src_port, cfg->n_select_src_port,
3352                              &s.srcs, &s.n_srcs);
3353         mirror_collect_ports(m, cfg->select_dst_port, cfg->n_select_dst_port,
3354                              &s.dsts, &s.n_dsts);
3355     }
3356
3357     /* Get VLAN selection. */
3358     s.src_vlans = vlan_bitmap_from_array(cfg->select_vlan, cfg->n_select_vlan);
3359
3360     /* Configure. */
3361     ofproto_mirror_register(m->bridge->ofproto, m, &s);
3362
3363     /* Clean up. */
3364     if (s.srcs != s.dsts) {
3365         free(s.dsts);
3366     }
3367     free(s.srcs);
3368     free(s.src_vlans);
3369
3370     return true;
3371 }
3372 \f
3373 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
3374  *
3375  * This is deprecated.  It is only for compatibility with broken device drivers
3376  * in old versions of Linux that do not properly support VLANs when VLAN
3377  * devices are not used.  When broken device drivers are no longer in
3378  * widespread use, we will delete these interfaces. */
3379
3380 static void **blocks;
3381 static size_t n_blocks, allocated_blocks;
3382
3383 /* Adds 'block' to a list of blocks that have to be freed with free() when the
3384  * VLAN splinters are reconfigured. */
3385 static void
3386 register_block(void *block)
3387 {
3388     if (n_blocks >= allocated_blocks) {
3389         blocks = x2nrealloc(blocks, &allocated_blocks, sizeof *blocks);
3390     }
3391     blocks[n_blocks++] = block;
3392 }
3393
3394 /* Frees all of the blocks registered with register_block(). */
3395 static void
3396 free_registered_blocks(void)
3397 {
3398     size_t i;
3399
3400     for (i = 0; i < n_blocks; i++) {
3401         free(blocks[i]);
3402     }
3403     n_blocks = 0;
3404 }
3405
3406 /* Returns true if VLAN splinters are enabled on 'iface_cfg', false
3407  * otherwise. */
3408 static bool
3409 vlan_splinters_is_enabled(const struct ovsrec_interface *iface_cfg)
3410 {
3411     const char *value;
3412
3413     value = get_interface_other_config(iface_cfg, "enable-vlan-splinters", "");
3414     return !strcmp(value, "true");
3415 }
3416
3417 /* Figures out the set of VLANs that are in use for the purpose of VLAN
3418  * splinters.
3419  *
3420  * If VLAN splinters are enabled on at least one interface and any VLANs are in
3421  * use, returns a 4096-bit bitmap with a 1-bit for each in-use VLAN (bits 0 and
3422  * 4095 will not be set).  The caller is responsible for freeing the bitmap,
3423  * with free().
3424  *
3425  * If VLANs splinters are not enabled on any interface or if no VLANs are in
3426  * use, returns NULL.
3427  *
3428  * Updates 'vlan_splinters_enabled_anywhere'. */
3429 static unsigned long int *
3430 collect_splinter_vlans(const struct ovsrec_open_vswitch *ovs_cfg)
3431 {
3432     unsigned long int *splinter_vlans;
3433     struct sset splinter_ifaces;
3434     const char *real_dev_name;
3435     struct shash *real_devs;
3436     struct shash_node *node;
3437     struct bridge *br;
3438     size_t i;
3439
3440     /* Free space allocated for synthesized ports and interfaces, since we're
3441      * in the process of reconstructing all of them. */
3442     free_registered_blocks();
3443
3444     splinter_vlans = bitmap_allocate(4096);
3445     sset_init(&splinter_ifaces);
3446     vlan_splinters_enabled_anywhere = false;
3447     for (i = 0; i < ovs_cfg->n_bridges; i++) {
3448         struct ovsrec_bridge *br_cfg = ovs_cfg->bridges[i];
3449         size_t j;
3450
3451         for (j = 0; j < br_cfg->n_ports; j++) {
3452             struct ovsrec_port *port_cfg = br_cfg->ports[j];
3453             int k;
3454
3455             for (k = 0; k < port_cfg->n_interfaces; k++) {
3456                 struct ovsrec_interface *iface_cfg = port_cfg->interfaces[k];
3457
3458                 if (vlan_splinters_is_enabled(iface_cfg)) {
3459                     vlan_splinters_enabled_anywhere = true;
3460                     sset_add(&splinter_ifaces, iface_cfg->name);
3461                     vlan_bitmap_from_array__(port_cfg->trunks,
3462                                              port_cfg->n_trunks,
3463                                              splinter_vlans);
3464                 }
3465             }
3466
3467             if (port_cfg->tag && *port_cfg->tag > 0 && *port_cfg->tag < 4095) {
3468                 bitmap_set1(splinter_vlans, *port_cfg->tag);
3469             }
3470         }
3471     }
3472
3473     if (!vlan_splinters_enabled_anywhere) {
3474         free(splinter_vlans);
3475         sset_destroy(&splinter_ifaces);
3476         return NULL;
3477     }
3478
3479     HMAP_FOR_EACH (br, node, &all_bridges) {
3480         if (br->ofproto) {
3481             ofproto_get_vlan_usage(br->ofproto, splinter_vlans);
3482         }
3483     }
3484
3485     /* Don't allow VLANs 0 or 4095 to be splintered.  VLAN 0 should appear on
3486      * the real device.  VLAN 4095 is reserved and Linux doesn't allow a VLAN
3487      * device to be created for it. */
3488     bitmap_set0(splinter_vlans, 0);
3489     bitmap_set0(splinter_vlans, 4095);
3490
3491     /* Delete all VLAN devices that we don't need. */
3492     vlandev_refresh();
3493     real_devs = vlandev_get_real_devs();
3494     SHASH_FOR_EACH (node, real_devs) {
3495         const struct vlan_real_dev *real_dev = node->data;
3496         const struct vlan_dev *vlan_dev;
3497         bool real_dev_has_splinters;
3498
3499         real_dev_has_splinters = sset_contains(&splinter_ifaces,
3500                                                real_dev->name);
3501         HMAP_FOR_EACH (vlan_dev, hmap_node, &real_dev->vlan_devs) {
3502             if (!real_dev_has_splinters
3503                 || !bitmap_is_set(splinter_vlans, vlan_dev->vid)) {
3504                 struct netdev *netdev;
3505
3506                 if (!netdev_open(vlan_dev->name, "system", &netdev)) {
3507                     if (!netdev_get_in4(netdev, NULL, NULL) ||
3508                         !netdev_get_in6(netdev, NULL)) {
3509                         vlandev_del(vlan_dev->name);
3510                     } else {
3511                         /* It has an IP address configured, so we don't own
3512                          * it.  Don't delete it. */
3513                     }
3514                     netdev_close(netdev);
3515                 }
3516             }
3517
3518         }
3519     }
3520
3521     /* Add all VLAN devices that we need. */
3522     SSET_FOR_EACH (real_dev_name, &splinter_ifaces) {
3523         int vid;
3524
3525         BITMAP_FOR_EACH_1 (vid, 4096, splinter_vlans) {
3526             if (!vlandev_get_name(real_dev_name, vid)) {
3527                 vlandev_add(real_dev_name, vid);
3528             }
3529         }
3530     }
3531
3532     vlandev_refresh();
3533
3534     sset_destroy(&splinter_ifaces);
3535
3536     if (bitmap_scan(splinter_vlans, 0, 4096) >= 4096) {
3537         free(splinter_vlans);
3538         return NULL;
3539     }
3540     return splinter_vlans;
3541 }
3542
3543 /* Pushes the configure of VLAN splinter port 'port' (e.g. eth0.9) down to
3544  * ofproto.  */
3545 static void
3546 configure_splinter_port(struct port *port)
3547 {
3548     struct ofproto *ofproto = port->bridge->ofproto;
3549     uint16_t realdev_ofp_port;
3550     const char *realdev_name;
3551     struct iface *vlandev, *realdev;
3552
3553     ofproto_bundle_unregister(port->bridge->ofproto, port);
3554
3555     vlandev = CONTAINER_OF(list_front(&port->ifaces), struct iface,
3556                            port_elem);
3557
3558     realdev_name = get_port_other_config(port->cfg, "realdev", NULL);
3559     realdev = iface_lookup(port->bridge, realdev_name);
3560     realdev_ofp_port = realdev ? realdev->ofp_port : 0;
3561
3562     ofproto_port_set_realdev(ofproto, vlandev->ofp_port, realdev_ofp_port,
3563                              *port->cfg->tag);
3564 }
3565
3566 static struct ovsrec_port *
3567 synthesize_splinter_port(const char *real_dev_name,
3568                          const char *vlan_dev_name, int vid)
3569 {
3570     struct ovsrec_interface *iface;
3571     struct ovsrec_port *port;
3572
3573     iface = xzalloc(sizeof *iface);
3574     iface->name = xstrdup(vlan_dev_name);
3575     iface->type = "system";
3576
3577     port = xzalloc(sizeof *port);
3578     port->interfaces = xmemdup(&iface, sizeof iface);
3579     port->n_interfaces = 1;
3580     port->name = xstrdup(vlan_dev_name);
3581     port->vlan_mode = "splinter";
3582     port->tag = xmalloc(sizeof *port->tag);
3583     *port->tag = vid;
3584     port->key_other_config = xmalloc(sizeof *port->key_other_config);
3585     port->key_other_config[0] = "realdev";
3586     port->value_other_config = xmalloc(sizeof *port->value_other_config);
3587     port->value_other_config[0] = xstrdup(real_dev_name);
3588     port->n_other_config = 1;
3589
3590     register_block(iface);
3591     register_block(iface->name);
3592     register_block(port);
3593     register_block(port->interfaces);
3594     register_block(port->name);
3595     register_block(port->tag);
3596     register_block(port->key_other_config);
3597     register_block(port->value_other_config);
3598     register_block(port->value_other_config[0]);
3599
3600     return port;
3601 }
3602
3603 /* For each interface with 'br' that has VLAN splinters enabled, adds a
3604  * corresponding ovsrec_port to 'ports' for each splinter VLAN marked with a
3605  * 1-bit in the 'splinter_vlans' bitmap. */
3606 static void
3607 add_vlan_splinter_ports(struct bridge *br,
3608                         const unsigned long int *splinter_vlans,
3609                         struct shash *ports)
3610 {
3611     size_t i;
3612
3613     /* We iterate through 'br->cfg->ports' instead of 'ports' here because
3614      * we're modifying 'ports'. */
3615     for (i = 0; i < br->cfg->n_ports; i++) {
3616         const char *name = br->cfg->ports[i]->name;
3617         struct ovsrec_port *port_cfg = shash_find_data(ports, name);
3618         size_t j;
3619
3620         for (j = 0; j < port_cfg->n_interfaces; j++) {
3621             struct ovsrec_interface *iface_cfg = port_cfg->interfaces[j];
3622
3623             if (vlan_splinters_is_enabled(iface_cfg)) {
3624                 const char *real_dev_name;
3625                 uint16_t vid;
3626
3627                 real_dev_name = iface_cfg->name;
3628                 BITMAP_FOR_EACH_1 (vid, 4096, splinter_vlans) {
3629                     const char *vlan_dev_name;
3630
3631                     vlan_dev_name = vlandev_get_name(real_dev_name, vid);
3632                     if (vlan_dev_name
3633                         && !shash_find(ports, vlan_dev_name)) {
3634                         shash_add(ports, vlan_dev_name,
3635                                   synthesize_splinter_port(
3636                                       real_dev_name, vlan_dev_name, vid));
3637                     }
3638                 }
3639             }
3640         }
3641     }
3642 }
3643
3644 static void
3645 mirror_refresh_stats(struct mirror *m)
3646 {
3647     struct ofproto *ofproto = m->bridge->ofproto;
3648     uint64_t tx_packets, tx_bytes;
3649     char *keys[2];
3650     int64_t values[2];
3651     size_t stat_cnt = 0;
3652
3653     if (ofproto_mirror_get_stats(ofproto, m, &tx_packets, &tx_bytes)) {
3654         ovsrec_mirror_set_statistics(m->cfg, NULL, NULL, 0);
3655         return;
3656     }
3657
3658     if (tx_packets != UINT64_MAX) {
3659         keys[stat_cnt] = "tx_packets";
3660         values[stat_cnt] = tx_packets;
3661         stat_cnt++;
3662     }
3663     if (tx_bytes != UINT64_MAX) {
3664         keys[stat_cnt] = "tx_bytes";
3665         values[stat_cnt] = tx_bytes;
3666         stat_cnt++;
3667     }
3668
3669     ovsrec_mirror_set_statistics(m->cfg, keys, values, stat_cnt);
3670 }