]>
Commit | Line | Data |
---|---|---|
59804c80 | 1 | /* Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014 Nicira, Inc. |
c93b1d6a | 2 | * |
a14bc59f BP |
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: | |
064af421 | 6 | * |
a14bc59f | 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
064af421 | 8 | * |
a14bc59f BP |
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. | |
064af421 BP |
14 | */ |
15 | ||
16 | #include <config.h> | |
17 | #include "bridge.h" | |
064af421 | 18 | #include <errno.h> |
064af421 | 19 | #include <inttypes.h> |
064af421 | 20 | #include <stdlib.h> |
a5fb0e29 | 21 | #include "async-append.h" |
ccc09689 | 22 | #include "bfd.h" |
064af421 | 23 | #include "bitmap.h" |
b31bcf60 | 24 | #include "cfm.h" |
7f8f2757 | 25 | #include "connectivity.h" |
064af421 | 26 | #include "coverage.h" |
a7ff9bd7 | 27 | #include "daemon.h" |
064af421 | 28 | #include "dirs.h" |
064af421 | 29 | #include "dynamic-string.h" |
064af421 | 30 | #include "hash.h" |
d9a8717a | 31 | #include "hmap.h" |
f145afdc | 32 | #include "hmapx.h" |
cd11000b | 33 | #include "jsonrpc.h" |
6aa74308 | 34 | #include "lacp.h" |
064af421 | 35 | #include "list.h" |
e764773c | 36 | #include "mac-learning.h" |
254750ce | 37 | #include "meta-flow.h" |
064af421 | 38 | #include "netdev.h" |
064af421 | 39 | #include "ofp-print.h" |
7beaa082 | 40 | #include "ofp-util.h" |
064af421 | 41 | #include "ofpbuf.h" |
9a54394a | 42 | #include "ofproto/bond.h" |
8cd4882f | 43 | #include "ofproto/ofproto.h" |
064af421 | 44 | #include "poll-loop.h" |
7f8f2757 | 45 | #include "seq.h" |
76343538 | 46 | #include "sha1.h" |
6c88d577 | 47 | #include "shash.h" |
79f1cbe9 | 48 | #include "smap.h" |
064af421 | 49 | #include "socket-util.h" |
5bd31620 | 50 | #include "stream.h" |
fe55ad15 | 51 | #include "stream-ssl.h" |
b3c01ed3 | 52 | #include "sset.h" |
ce887677 | 53 | #include "system-stats.h" |
064af421 BP |
54 | #include "timeval.h" |
55 | #include "util.h" | |
da285df4 | 56 | #include "unixctl.h" |
52a90c29 | 57 | #include "vlandev.h" |
eaa67ba8 | 58 | #include "lib/vswitch-idl.h" |
064af421 | 59 | #include "xenserver.h" |
5136ce49 | 60 | #include "vlog.h" |
72b06300 | 61 | #include "sflow_api.h" |
0fb7b915 | 62 | #include "vlan-bitmap.h" |
064af421 | 63 | |
d98e6007 | 64 | VLOG_DEFINE_THIS_MODULE(bridge); |
064af421 | 65 | |
d76f09ea BP |
66 | COVERAGE_DEFINE(bridge_reconfigure); |
67 | ||
064af421 | 68 | struct iface { |
2a73b1d7 BP |
69 | /* These members are always valid. |
70 | * | |
71 | * They are immutable: they never change between iface_create() and | |
72 | * iface_destroy(). */ | |
83db7968 | 73 | struct list port_elem; /* Element in struct port's "ifaces" list. */ |
ebea37cc | 74 | struct hmap_node name_node; /* In struct bridge's "iface_by_name" hmap. */ |
2a73b1d7 | 75 | struct hmap_node ofp_port_node; /* In struct bridge's "ifaces" hmap. */ |
064af421 | 76 | struct port *port; /* Containing port. */ |
064af421 | 77 | char *name; /* Host network device name. */ |
0c6aea3f | 78 | struct netdev *netdev; /* Network device. */ |
2a73b1d7 | 79 | ofp_port_t ofp_port; /* OpenFlow port number. */ |
6a5f9a8f | 80 | uint64_t change_seq; |
2a73b1d7 BP |
81 | |
82 | /* These members are valid only within bridge_reconfigure(). */ | |
6cefe1da | 83 | const char *type; /* Usually same as cfg->type. */ |
76343538 | 84 | const struct ovsrec_interface *cfg; |
064af421 BP |
85 | }; |
86 | ||
064af421 | 87 | struct mirror { |
fa066f01 BP |
88 | struct uuid uuid; /* UUID of this "mirror" record in database. */ |
89 | struct hmap_node hmap_node; /* In struct bridge's "mirrors" hmap. */ | |
064af421 | 90 | struct bridge *bridge; |
064af421 | 91 | char *name; |
9d24de3b | 92 | const struct ovsrec_mirror *cfg; |
064af421 BP |
93 | }; |
94 | ||
064af421 | 95 | struct port { |
8052fb14 | 96 | struct hmap_node hmap_node; /* Element in struct bridge's "ports" hmap. */ |
6e492d81 | 97 | struct bridge *bridge; |
8052fb14 BP |
98 | char *name; |
99 | ||
1e0b752d | 100 | const struct ovsrec_port *cfg; |
064af421 BP |
101 | |
102 | /* An ordinary bridge port has 1 interface. | |
103 | * A bridge port for bonding has at least 2 interfaces. */ | |
83db7968 | 104 | struct list ifaces; /* List of "struct iface"s. */ |
064af421 BP |
105 | }; |
106 | ||
064af421 | 107 | struct bridge { |
764072fd | 108 | struct hmap_node node; /* In 'all_bridges'. */ |
064af421 | 109 | char *name; /* User-specified arbitrary name. */ |
66da9bef | 110 | char *type; /* Datapath type. */ |
abe457eb | 111 | uint8_t ea[ETH_ADDR_LEN]; /* Bridge Ethernet Address. */ |
064af421 | 112 | uint8_t default_ea[ETH_ADDR_LEN]; /* Default MAC. */ |
1e0b752d | 113 | const struct ovsrec_bridge *cfg; |
064af421 | 114 | |
064af421 BP |
115 | /* OpenFlow switch processing. */ |
116 | struct ofproto *ofproto; /* OpenFlow switch. */ | |
117 | ||
064af421 | 118 | /* Bridge ports. */ |
8052fb14 | 119 | struct hmap ports; /* "struct port"s indexed by name. */ |
892815f5 | 120 | struct hmap ifaces; /* "struct iface"s indexed by ofp_port. */ |
ebea37cc | 121 | struct hmap iface_by_name; /* "struct iface"s indexed by name. */ |
064af421 | 122 | |
064af421 | 123 | /* Port mirroring. */ |
fa066f01 | 124 | struct hmap mirrors; /* "struct mirror" indexed by UUID. */ |
cfea354b | 125 | |
2a73b1d7 BP |
126 | /* Used during reconfiguration. */ |
127 | struct shash wanted_ports; | |
128 | ||
cfea354b BP |
129 | /* Synthetic local port if necessary. */ |
130 | struct ovsrec_port synth_local_port; | |
131 | struct ovsrec_interface synth_local_iface; | |
132 | struct ovsrec_interface *synth_local_ifacep; | |
064af421 BP |
133 | }; |
134 | ||
764072fd BP |
135 | /* All bridges, indexed by name. */ |
136 | static struct hmap all_bridges = HMAP_INITIALIZER(&all_bridges); | |
064af421 | 137 | |
c5187f17 BP |
138 | /* OVSDB IDL used to obtain configuration. */ |
139 | static struct ovsdb_idl *idl; | |
140 | ||
63ff04e8 BP |
141 | /* We want to complete daemonization, fully detaching from our parent process, |
142 | * only after we have completed our initial configuration, committed our state | |
143 | * to the database, and received confirmation back from the database server | |
144 | * that it applied the commit. This allows our parent process to know that, | |
145 | * post-detach, ephemeral fields such as datapath-id and ofport are very likely | |
146 | * to have already been filled in. (It is only "very likely" rather than | |
147 | * certain because there is always a slim possibility that the transaction will | |
148 | * fail or that some other client has added new bridges, ports, etc. while | |
149 | * ovs-vswitchd was configuring using an old configuration.) | |
150 | * | |
151 | * We only need to do this once for our initial configuration at startup, so | |
152 | * 'initial_config_done' tracks whether we've already done it. While we are | |
153 | * waiting for a response to our commit, 'daemonize_txn' tracks the transaction | |
154 | * itself and is otherwise NULL. */ | |
155 | static bool initial_config_done; | |
156 | static struct ovsdb_idl_txn *daemonize_txn; | |
157 | ||
854a94d9 BP |
158 | /* Most recently processed IDL sequence number. */ |
159 | static unsigned int idl_seqno; | |
160 | ||
7f8f2757 JS |
161 | /* Track changes to port connectivity. */ |
162 | static uint64_t connectivity_seqno = LLONG_MIN; | |
163 | ||
6a5f9a8f AW |
164 | /* Status update to database. |
165 | * | |
166 | * Some information in the database must be kept as up-to-date as possible to | |
167 | * allow controllers to respond rapidly to network outages. Those status are | |
168 | * updated via the 'status_txn'. | |
169 | * | |
170 | * We use the global connectivity sequence number to detect the status change. | |
171 | * Also, to prevent the status update from sending too much to the database, | |
172 | * we check the return status of each update transaction and do not start new | |
173 | * update if the previous transaction status is 'TXN_INCOMPLETE'. | |
174 | * | |
175 | * 'statux_txn' is NULL if there is no ongoing status update. | |
176 | */ | |
177 | static struct ovsdb_idl_txn *status_txn; | |
178 | ||
179 | /* When the status update transaction returns 'TXN_INCOMPLETE', should register a | |
180 | * timeout in 'STATUS_CHECK_AGAIN_MSEC' to check again. */ | |
181 | #define STATUS_CHECK_AGAIN_MSEC 100 | |
182 | ||
35a22d8c | 183 | /* Each time this timer expires, the bridge fetches interface and mirror |
cd0cd65f | 184 | * statistics and pushes them into the database. */ |
12eb035b AW |
185 | static int stats_timer_interval; |
186 | static long long int stats_timer = LLONG_MIN; | |
018f1525 | 187 | |
c7e7bb21 EJ |
188 | /* In some datapaths, creating and destroying OpenFlow ports can be extremely |
189 | * expensive. This can cause bridge_reconfigure() to take a long time during | |
190 | * which no other work can be done. To deal with this problem, we limit port | |
191 | * adds and deletions to a window of OFP_PORT_ACTION_WINDOW milliseconds per | |
192 | * call to bridge_reconfigure(). If there is more work to do after the limit | |
193 | * is reached, 'need_reconfigure', is flagged and it's done on the next loop. | |
194 | * This allows the rest of the code to catch up on important things like | |
195 | * forwarding packets. */ | |
196 | #define OFP_PORT_ACTION_WINDOW 10 | |
c7e7bb21 | 197 | |
66da9bef | 198 | static void add_del_bridges(const struct ovsrec_open_vswitch *); |
aeed7879 | 199 | static void bridge_run__(void); |
66da9bef | 200 | static void bridge_create(const struct ovsrec_bridge *); |
064af421 BP |
201 | static void bridge_destroy(struct bridge *); |
202 | static struct bridge *bridge_lookup(const char *name); | |
8ca79daa | 203 | static unixctl_cb_func bridge_unixctl_dump_flows; |
fa05809b | 204 | static unixctl_cb_func bridge_unixctl_reconnect; |
1a048029 | 205 | static size_t bridge_get_controllers(const struct bridge *br, |
76ce9432 | 206 | struct ovsrec_controller ***controllersp); |
2a73b1d7 BP |
207 | static void bridge_collect_wanted_ports(struct bridge *, |
208 | const unsigned long *splinter_vlans, | |
209 | struct shash *wanted_ports); | |
210 | static void bridge_delete_ofprotos(void); | |
211 | static void bridge_delete_or_reconfigure_ports(struct bridge *); | |
212 | static void bridge_del_ports(struct bridge *, | |
213 | const struct shash *wanted_ports); | |
214 | static void bridge_add_ports(struct bridge *, | |
215 | const struct shash *wanted_ports); | |
216 | ||
6f90b8f4 BP |
217 | static void bridge_configure_datapath_id(struct bridge *); |
218 | static void bridge_configure_netflow(struct bridge *); | |
8402c74b | 219 | static void bridge_configure_forward_bpdu(struct bridge *); |
c4069512 | 220 | static void bridge_configure_mac_table(struct bridge *); |
6f90b8f4 | 221 | static void bridge_configure_sflow(struct bridge *, int *sflow_bridge_number); |
29089a54 | 222 | static void bridge_configure_ipfix(struct bridge *); |
21f7563c | 223 | static void bridge_configure_stp(struct bridge *); |
254750ce | 224 | static void bridge_configure_tables(struct bridge *); |
8b6ff729 | 225 | static void bridge_configure_dp_desc(struct bridge *); |
fa066f01 BP |
226 | static void bridge_configure_remotes(struct bridge *, |
227 | const struct sockaddr_in *managers, | |
228 | size_t n_managers); | |
064af421 BP |
229 | static void bridge_pick_local_hw_addr(struct bridge *, |
230 | uint8_t ea[ETH_ADDR_LEN], | |
07c318f4 | 231 | struct iface **hw_addr_iface); |
064af421 BP |
232 | static uint64_t bridge_pick_datapath_id(struct bridge *, |
233 | const uint8_t bridge_ea[ETH_ADDR_LEN], | |
07c318f4 | 234 | struct iface *hw_addr_iface); |
064af421 | 235 | static uint64_t dpid_from_hash(const void *, size_t nbytes); |
e8192d80 BP |
236 | static bool bridge_has_bond_fake_iface(const struct bridge *, |
237 | const char *name); | |
238 | static bool port_is_bond_fake_iface(const struct port *); | |
064af421 | 239 | |
e8fe3026 | 240 | static unixctl_cb_func qos_unixctl_show; |
8c4c1387 | 241 | |
66da9bef | 242 | static struct port *port_create(struct bridge *, const struct ovsrec_port *); |
66da9bef | 243 | static void port_del_ifaces(struct port *); |
064af421 BP |
244 | static void port_destroy(struct port *); |
245 | static struct port *port_lookup(const struct bridge *, const char *name); | |
fa066f01 BP |
246 | static void port_configure(struct port *); |
247 | static struct lacp_settings *port_configure_lacp(struct port *, | |
248 | struct lacp_settings *); | |
df53d41c | 249 | static void port_configure_bond(struct port *, struct bond_settings *); |
06b592bc | 250 | static bool port_is_synthetic(const struct port *); |
fa066f01 | 251 | |
35a22d8c BP |
252 | static void reconfigure_system_stats(const struct ovsrec_open_vswitch *); |
253 | static void run_system_stats(void); | |
254 | ||
fa066f01 BP |
255 | static void bridge_configure_mirrors(struct bridge *); |
256 | static struct mirror *mirror_create(struct bridge *, | |
257 | const struct ovsrec_mirror *); | |
064af421 | 258 | static void mirror_destroy(struct mirror *); |
9d24de3b JP |
259 | static bool mirror_configure(struct mirror *); |
260 | static void mirror_refresh_stats(struct mirror *); | |
064af421 | 261 | |
fa066f01 | 262 | static void iface_configure_lacp(struct iface *, struct lacp_slave_settings *); |
2a73b1d7 BP |
263 | static bool iface_create(struct bridge *, const struct ovsrec_interface *, |
264 | const struct ovsrec_port *); | |
05ba03e0 JP |
265 | static bool iface_is_internal(const struct ovsrec_interface *iface, |
266 | const struct ovsrec_bridge *br); | |
b54441b3 BP |
267 | static const char *iface_get_type(const struct ovsrec_interface *, |
268 | const struct ovsrec_bridge *); | |
064af421 | 269 | static void iface_destroy(struct iface *); |
96be8de5 | 270 | static void iface_destroy__(struct iface *); |
064af421 | 271 | static struct iface *iface_lookup(const struct bridge *, const char *name); |
e8fe3026 | 272 | static struct iface *iface_find(const char *name); |
892815f5 | 273 | static struct iface *iface_from_ofp_port(const struct bridge *, |
4e022ec0 | 274 | ofp_port_t ofp_port); |
21a955fc | 275 | static void iface_set_mac(const struct bridge *, const struct port *, struct iface *); |
4e022ec0 | 276 | static void iface_set_ofport(const struct ovsrec_interface *, ofp_port_t ofport); |
3fc5a86a | 277 | static void iface_clear_db_record(const struct ovsrec_interface *if_cfg); |
66da9bef BP |
278 | static void iface_configure_qos(struct iface *, const struct ovsrec_qos *); |
279 | static void iface_configure_cfm(struct iface *); | |
8f3fe844 | 280 | static void iface_refresh_cfm_stats(struct iface *); |
1101a0b4 | 281 | static void iface_refresh_stats(struct iface *); |
6a5f9a8f AW |
282 | static void iface_refresh_netdev_status(struct iface *); |
283 | static void iface_refresh_ofproto_status(struct iface *); | |
cfea354b | 284 | static bool iface_is_synthetic(const struct iface *); |
4abb8608 BP |
285 | static ofp_port_t iface_get_requested_ofp_port( |
286 | const struct ovsrec_interface *); | |
4e022ec0 | 287 | static ofp_port_t iface_pick_ofport(const struct ovsrec_interface *); |
52a90c29 BP |
288 | |
289 | /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.) | |
290 | * | |
291 | * This is deprecated. It is only for compatibility with broken device drivers | |
292 | * in old versions of Linux that do not properly support VLANs when VLAN | |
293 | * devices are not used. When broken device drivers are no longer in | |
294 | * widespread use, we will delete these interfaces. */ | |
295 | ||
296 | /* True if VLAN splinters are enabled on any interface, false otherwise.*/ | |
297 | static bool vlan_splinters_enabled_anywhere; | |
298 | ||
299 | static bool vlan_splinters_is_enabled(const struct ovsrec_interface *); | |
300 | static unsigned long int *collect_splinter_vlans( | |
301 | const struct ovsrec_open_vswitch *); | |
302 | static void configure_splinter_port(struct port *); | |
303 | static void add_vlan_splinter_ports(struct bridge *, | |
304 | const unsigned long int *splinter_vlans, | |
305 | struct shash *ports); | |
b0408fca JP |
306 | |
307 | static void | |
308 | bridge_init_ofproto(const struct ovsrec_open_vswitch *cfg) | |
309 | { | |
310 | struct shash iface_hints; | |
311 | static bool initialized = false; | |
312 | int i; | |
313 | ||
314 | if (initialized) { | |
315 | return; | |
316 | } | |
317 | ||
318 | shash_init(&iface_hints); | |
319 | ||
b099cd5f EJ |
320 | if (cfg) { |
321 | for (i = 0; i < cfg->n_bridges; i++) { | |
322 | const struct ovsrec_bridge *br_cfg = cfg->bridges[i]; | |
323 | int j; | |
324 | ||
325 | for (j = 0; j < br_cfg->n_ports; j++) { | |
326 | struct ovsrec_port *port_cfg = br_cfg->ports[j]; | |
327 | int k; | |
328 | ||
329 | for (k = 0; k < port_cfg->n_interfaces; k++) { | |
330 | struct ovsrec_interface *if_cfg = port_cfg->interfaces[k]; | |
331 | struct iface_hint *iface_hint; | |
332 | ||
333 | iface_hint = xmalloc(sizeof *iface_hint); | |
334 | iface_hint->br_name = br_cfg->name; | |
335 | iface_hint->br_type = br_cfg->datapath_type; | |
558e2cc5 | 336 | iface_hint->ofp_port = iface_pick_ofport(if_cfg); |
b099cd5f EJ |
337 | |
338 | shash_add(&iface_hints, if_cfg->name, iface_hint); | |
339 | } | |
b0408fca JP |
340 | } |
341 | } | |
342 | } | |
343 | ||
344 | ofproto_init(&iface_hints); | |
345 | ||
346 | shash_destroy_free_data(&iface_hints); | |
347 | initialized = true; | |
348 | } | |
064af421 BP |
349 | \f |
350 | /* Public functions. */ | |
351 | ||
c5187f17 BP |
352 | /* Initializes the bridge module, configuring it to obtain its configuration |
353 | * from an OVSDB server accessed over 'remote', which should be a string in a | |
354 | * form acceptable to ovsdb_idl_create(). */ | |
064af421 | 355 | void |
c5187f17 BP |
356 | bridge_init(const char *remote) |
357 | { | |
358 | /* Create connection to database. */ | |
fba6bd1d | 359 | idl = ovsdb_idl_create(remote, &ovsrec_idl_class, true, true); |
854a94d9 | 360 | idl_seqno = ovsdb_idl_get_seqno(idl); |
06b6d651 | 361 | ovsdb_idl_set_lock(idl, "ovs_vswitchd"); |
8cdec725 | 362 | ovsdb_idl_verify_write_only(idl); |
c5187f17 | 363 | |
ef73f86c BP |
364 | ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_cur_cfg); |
365 | ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_statistics); | |
e85bbd75 | 366 | ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_external_ids); |
62f3aaed BP |
367 | ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_ovs_version); |
368 | ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_db_version); | |
369 | ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_system_type); | |
370 | ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_system_version); | |
e85bbd75 | 371 | |
62f3aaed | 372 | ovsdb_idl_omit_alert(idl, &ovsrec_bridge_col_datapath_id); |
21f7563c | 373 | ovsdb_idl_omit_alert(idl, &ovsrec_bridge_col_status); |
e85bbd75 BP |
374 | ovsdb_idl_omit(idl, &ovsrec_bridge_col_external_ids); |
375 | ||
21f7563c | 376 | ovsdb_idl_omit_alert(idl, &ovsrec_port_col_status); |
80740385 | 377 | ovsdb_idl_omit_alert(idl, &ovsrec_port_col_statistics); |
e85bbd75 | 378 | ovsdb_idl_omit(idl, &ovsrec_port_col_external_ids); |
e85bbd75 | 379 | |
62f3aaed BP |
380 | ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_admin_state); |
381 | ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_duplex); | |
382 | ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_link_speed); | |
383 | ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_link_state); | |
65c3058c | 384 | ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_link_resets); |
df867eda | 385 | ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_mac_in_use); |
ea401d9a | 386 | ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_ifindex); |
62f3aaed | 387 | ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_mtu); |
ef73f86c BP |
388 | ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_ofport); |
389 | ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_statistics); | |
62f3aaed | 390 | ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_status); |
b4117094 | 391 | ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_cfm_fault); |
b9380396 | 392 | ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_cfm_fault_status); |
1de11730 | 393 | ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_cfm_remote_mpids); |
76c4290d | 394 | ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_cfm_flap_count); |
3967a833 | 395 | ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_cfm_health); |
4104aaf1 | 396 | ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_cfm_remote_opstate); |
ccc09689 | 397 | ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_bfd_status); |
b4117094 | 398 | ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_lacp_current); |
e85bbd75 BP |
399 | ovsdb_idl_omit(idl, &ovsrec_interface_col_external_ids); |
400 | ||
62f3aaed BP |
401 | ovsdb_idl_omit_alert(idl, &ovsrec_controller_col_is_connected); |
402 | ovsdb_idl_omit_alert(idl, &ovsrec_controller_col_role); | |
403 | ovsdb_idl_omit_alert(idl, &ovsrec_controller_col_status); | |
404 | ovsdb_idl_omit(idl, &ovsrec_controller_col_external_ids); | |
405 | ||
62f3aaed BP |
406 | ovsdb_idl_omit(idl, &ovsrec_qos_col_external_ids); |
407 | ||
408 | ovsdb_idl_omit(idl, &ovsrec_queue_col_external_ids); | |
409 | ||
410 | ovsdb_idl_omit(idl, &ovsrec_mirror_col_external_ids); | |
9d24de3b | 411 | ovsdb_idl_omit_alert(idl, &ovsrec_mirror_col_statistics); |
62f3aaed BP |
412 | |
413 | ovsdb_idl_omit(idl, &ovsrec_netflow_col_external_ids); | |
62f3aaed | 414 | ovsdb_idl_omit(idl, &ovsrec_sflow_col_external_ids); |
29089a54 RL |
415 | ovsdb_idl_omit(idl, &ovsrec_ipfix_col_external_ids); |
416 | ovsdb_idl_omit(idl, &ovsrec_flow_sample_collector_set_col_external_ids); | |
62f3aaed BP |
417 | |
418 | ovsdb_idl_omit(idl, &ovsrec_manager_col_external_ids); | |
419 | ovsdb_idl_omit(idl, &ovsrec_manager_col_inactivity_probe); | |
420 | ovsdb_idl_omit(idl, &ovsrec_manager_col_is_connected); | |
421 | ovsdb_idl_omit(idl, &ovsrec_manager_col_max_backoff); | |
422 | ovsdb_idl_omit(idl, &ovsrec_manager_col_status); | |
423 | ||
424 | ovsdb_idl_omit(idl, &ovsrec_ssl_col_external_ids); | |
425 | ||
c5187f17 | 426 | /* Register unixctl commands. */ |
0e15264f BP |
427 | unixctl_command_register("qos/show", "interface", 1, 1, |
428 | qos_unixctl_show, NULL); | |
429 | unixctl_command_register("bridge/dump-flows", "bridge", 1, 1, | |
7ff2009a | 430 | bridge_unixctl_dump_flows, NULL); |
0e15264f | 431 | unixctl_command_register("bridge/reconnect", "[bridge]", 0, 1, |
7ff2009a | 432 | bridge_unixctl_reconnect, NULL); |
5827ce14 | 433 | lacp_init(); |
c5187f17 | 434 | bond_init(); |
9ac3fce4 | 435 | cfm_init(); |
fe4a02e4 | 436 | stp_init(); |
c5187f17 BP |
437 | } |
438 | ||
ee45ad81 BP |
439 | void |
440 | bridge_exit(void) | |
441 | { | |
442 | struct bridge *br, *next_br; | |
443 | ||
764072fd | 444 | HMAP_FOR_EACH_SAFE (br, next_br, node, &all_bridges) { |
ee45ad81 BP |
445 | bridge_destroy(br); |
446 | } | |
447 | ovsdb_idl_destroy(idl); | |
448 | } | |
449 | ||
cd11000b BP |
450 | /* Looks at the list of managers in 'ovs_cfg' and extracts their remote IP |
451 | * addresses and ports into '*managersp' and '*n_managersp'. The caller is | |
452 | * responsible for freeing '*managersp' (with free()). | |
453 | * | |
454 | * You may be asking yourself "why does ovs-vswitchd care?", because | |
455 | * ovsdb-server is responsible for connecting to the managers, and ovs-vswitchd | |
456 | * should not be and in fact is not directly involved in that. But | |
457 | * ovs-vswitchd needs to make sure that ovsdb-server can reach the managers, so | |
458 | * it has to tell in-band control where the managers are to enable that. | |
94db5407 | 459 | * (Thus, only managers connected in-band are collected.) |
cd11000b BP |
460 | */ |
461 | static void | |
94db5407 BP |
462 | collect_in_band_managers(const struct ovsrec_open_vswitch *ovs_cfg, |
463 | struct sockaddr_in **managersp, size_t *n_managersp) | |
cd11000b BP |
464 | { |
465 | struct sockaddr_in *managers = NULL; | |
466 | size_t n_managers = 0; | |
b3c01ed3 | 467 | struct sset targets; |
94db5407 BP |
468 | size_t i; |
469 | ||
289df16d AE |
470 | /* Collect all of the potential targets from the "targets" columns of the |
471 | * rows pointed to by "manager_options", excluding any that are | |
472 | * out-of-band. */ | |
b3c01ed3 | 473 | sset_init(&targets); |
94db5407 BP |
474 | for (i = 0; i < ovs_cfg->n_manager_options; i++) { |
475 | struct ovsrec_manager *m = ovs_cfg->manager_options[i]; | |
476 | ||
477 | if (m->connection_mode && !strcmp(m->connection_mode, "out-of-band")) { | |
b3c01ed3 | 478 | sset_find_and_delete(&targets, m->target); |
94db5407 | 479 | } else { |
b3c01ed3 | 480 | sset_add(&targets, m->target); |
94db5407 BP |
481 | } |
482 | } | |
cd11000b | 483 | |
94db5407 | 484 | /* Now extract the targets' IP addresses. */ |
b3c01ed3 BP |
485 | if (!sset_is_empty(&targets)) { |
486 | const char *target; | |
cd11000b | 487 | |
b3c01ed3 BP |
488 | managers = xmalloc(sset_count(&targets) * sizeof *managers); |
489 | SSET_FOR_EACH (target, &targets) { | |
e731d71b | 490 | struct sockaddr_storage ss; |
cd11000b | 491 | |
e731d71b AS |
492 | if (stream_parse_target_with_default_port(target, OVSDB_OLD_PORT, |
493 | &ss) | |
494 | && ss.ss_family == AF_INET) { | |
495 | managers[n_managers++] = *(struct sockaddr_in *) &ss; | |
cd11000b BP |
496 | } |
497 | } | |
498 | } | |
b3c01ed3 | 499 | sset_destroy(&targets); |
cd11000b BP |
500 | |
501 | *managersp = managers; | |
502 | *n_managersp = n_managers; | |
503 | } | |
504 | ||
c5187f17 | 505 | static void |
76343538 | 506 | bridge_reconfigure(const struct ovsrec_open_vswitch *ovs_cfg) |
064af421 | 507 | { |
52a90c29 | 508 | unsigned long int *splinter_vlans; |
2a73b1d7 BP |
509 | struct sockaddr_in *managers; |
510 | struct bridge *br, *next; | |
511 | int sflow_bridge_number; | |
512 | size_t n_managers; | |
064af421 BP |
513 | |
514 | COVERAGE_INC(bridge_reconfigure); | |
515 | ||
e79a6c83 EJ |
516 | ofproto_set_flow_limit(smap_get_int(&ovs_cfg->other_config, "flow-limit", |
517 | OFPROTO_FLOW_LIMIT_DEFAULT)); | |
72310b04 JS |
518 | ofproto_set_max_idle(smap_get_int(&ovs_cfg->other_config, "max-idle", |
519 | OFPROTO_MAX_IDLE_DEFAULT)); | |
380f49c4 | 520 | |
6567010f | 521 | ofproto_set_threads( |
e79a6c83 EJ |
522 | smap_get_int(&ovs_cfg->other_config, "n-handler-threads", 0), |
523 | smap_get_int(&ovs_cfg->other_config, "n-revalidator-threads", 0)); | |
448a4b2f | 524 | |
bae7208e | 525 | /* Destroy "struct bridge"s, "struct port"s, and "struct iface"s according |
2a73b1d7 | 526 | * to 'ovs_cfg', with only very minimal configuration otherwise. |
66da9bef | 527 | * |
bae7208e EJ |
528 | * This is mostly an update to bridge data structures. Nothing is pushed |
529 | * down to ofproto or lower layers. */ | |
66da9bef | 530 | add_del_bridges(ovs_cfg); |
52a90c29 | 531 | splinter_vlans = collect_splinter_vlans(ovs_cfg); |
764072fd | 532 | HMAP_FOR_EACH (br, node, &all_bridges) { |
2a73b1d7 BP |
533 | bridge_collect_wanted_ports(br, splinter_vlans, &br->wanted_ports); |
534 | bridge_del_ports(br, &br->wanted_ports); | |
76343538 | 535 | } |
52a90c29 | 536 | free(splinter_vlans); |
064af421 | 537 | |
2a73b1d7 BP |
538 | /* Start pushing configuration changes down to the ofproto layer: |
539 | * | |
540 | * - Delete ofprotos that are no longer configured. | |
541 | * | |
542 | * - Delete ports that are no longer configured. | |
543 | * | |
544 | * - Reconfigure existing ports to their desired configurations, or | |
545 | * delete them if not possible. | |
546 | * | |
547 | * We have to do all the deletions before we can do any additions, because | |
548 | * the ports to be added might require resources that will be freed up by | |
549 | * deletions (they might especially overlap in name). */ | |
550 | bridge_delete_ofprotos(); | |
bae7208e | 551 | HMAP_FOR_EACH (br, node, &all_bridges) { |
2a73b1d7 BP |
552 | if (br->ofproto) { |
553 | bridge_delete_or_reconfigure_ports(br); | |
76343538 | 554 | } |
064af421 | 555 | } |
35a22d8c | 556 | |
2a73b1d7 BP |
557 | /* Finish pushing configuration changes to the ofproto layer: |
558 | * | |
559 | * - Create ofprotos that are missing. | |
560 | * | |
561 | * - Add ports that are missing. */ | |
562 | HMAP_FOR_EACH_SAFE (br, next, node, &all_bridges) { | |
563 | if (!br->ofproto) { | |
564 | int error; | |
bae7208e | 565 | |
2a73b1d7 BP |
566 | error = ofproto_create(br->name, br->type, &br->ofproto); |
567 | if (error) { | |
568 | VLOG_ERR("failed to create bridge %s: %s", br->name, | |
569 | ovs_strerror(error)); | |
570 | shash_destroy(&br->wanted_ports); | |
571 | bridge_destroy(br); | |
e56365a5 | 572 | } |
064af421 BP |
573 | } |
574 | } | |
e8192d80 | 575 | HMAP_FOR_EACH (br, node, &all_bridges) { |
2a73b1d7 BP |
576 | bridge_add_ports(br, &br->wanted_ports); |
577 | shash_destroy(&br->wanted_ports); | |
064af421 | 578 | } |
064af421 | 579 | |
2a73b1d7 | 580 | reconfigure_system_stats(ovs_cfg); |
bae7208e | 581 | |
66da9bef BP |
582 | /* Complete the configuration. */ |
583 | sflow_bridge_number = 0; | |
584 | collect_in_band_managers(ovs_cfg, &managers, &n_managers); | |
764072fd | 585 | HMAP_FOR_EACH (br, node, &all_bridges) { |
8052fb14 | 586 | struct port *port; |
064af421 | 587 | |
f145afdc BP |
588 | /* We need the datapath ID early to allow LACP ports to use it as the |
589 | * default system ID. */ | |
590 | bridge_configure_datapath_id(br); | |
591 | ||
8052fb14 | 592 | HMAP_FOR_EACH (port, hmap_node, &br->ports) { |
83db7968 | 593 | struct iface *iface; |
52df17e7 | 594 | |
fa066f01 | 595 | port_configure(port); |
c1c9c9c4 | 596 | |
48e1b7fb | 597 | LIST_FOR_EACH (iface, port_elem, &port->ifaces) { |
59804c80 | 598 | iface_set_ofport(iface->cfg, iface->ofp_port); |
66da9bef BP |
599 | iface_configure_cfm(iface); |
600 | iface_configure_qos(iface, port->cfg->qos); | |
21a955fc | 601 | iface_set_mac(br, port, iface); |
ccc09689 EJ |
602 | ofproto_port_set_bfd(br->ofproto, iface->ofp_port, |
603 | &iface->cfg->bfd); | |
064af421 BP |
604 | } |
605 | } | |
fa066f01 | 606 | bridge_configure_mirrors(br); |
8402c74b | 607 | bridge_configure_forward_bpdu(br); |
c4069512 | 608 | bridge_configure_mac_table(br); |
fa066f01 | 609 | bridge_configure_remotes(br, managers, n_managers); |
66da9bef BP |
610 | bridge_configure_netflow(br); |
611 | bridge_configure_sflow(br, &sflow_bridge_number); | |
29089a54 | 612 | bridge_configure_ipfix(br); |
21f7563c | 613 | bridge_configure_stp(br); |
254750ce | 614 | bridge_configure_tables(br); |
8b6ff729 | 615 | bridge_configure_dp_desc(br); |
064af421 | 616 | } |
66da9bef | 617 | free(managers); |
aeed7879 BP |
618 | |
619 | /* The ofproto-dpif provider does some final reconfiguration in its | |
620 | * ->type_run() function. We have to call it before notifying the database | |
621 | * client that reconfiguration is complete, otherwise there is a very | |
622 | * narrow race window in which e.g. ofproto/trace will not recognize the | |
623 | * new configuration (sometimes this causes unit test failures). */ | |
624 | bridge_run__(); | |
66da9bef | 625 | } |
064af421 | 626 | |
bae7208e EJ |
627 | /* Delete ofprotos which aren't configured or have the wrong type. Create |
628 | * ofprotos which don't exist but need to. */ | |
66da9bef | 629 | static void |
2a73b1d7 | 630 | bridge_delete_ofprotos(void) |
66da9bef | 631 | { |
2a73b1d7 | 632 | struct bridge *br; |
f79e673f BP |
633 | struct sset names; |
634 | struct sset types; | |
66da9bef | 635 | const char *type; |
6c88d577 | 636 | |
bae7208e | 637 | /* Delete ofprotos with no bridge or with the wrong type. */ |
f79e673f BP |
638 | sset_init(&names); |
639 | sset_init(&types); | |
640 | ofproto_enumerate_types(&types); | |
641 | SSET_FOR_EACH (type, &types) { | |
66da9bef | 642 | const char *name; |
3a6ccc8c | 643 | |
f79e673f BP |
644 | ofproto_enumerate_names(type, &names); |
645 | SSET_FOR_EACH (name, &names) { | |
bae7208e | 646 | br = bridge_lookup(name); |
66da9bef | 647 | if (!br || strcmp(type, br->type)) { |
f79e673f | 648 | ofproto_delete(name, type); |
3a6ccc8c | 649 | } |
b31bcf60 EJ |
650 | } |
651 | } | |
f79e673f BP |
652 | sset_destroy(&names); |
653 | sset_destroy(&types); | |
2a73b1d7 | 654 | } |
76343538 | 655 | |
2a73b1d7 BP |
656 | static ofp_port_t * |
657 | add_ofp_port(ofp_port_t port, ofp_port_t *ports, size_t *n, size_t *allocated) | |
658 | { | |
659 | if (*n >= *allocated) { | |
660 | ports = x2nrealloc(ports, allocated, sizeof *ports); | |
661 | } | |
662 | ports[(*n)++] = port; | |
663 | return ports; | |
664 | } | |
bae7208e | 665 | |
2a73b1d7 BP |
666 | static void |
667 | bridge_delete_or_reconfigure_ports(struct bridge *br) | |
668 | { | |
669 | struct ofproto_port ofproto_port; | |
670 | struct ofproto_port_dump dump; | |
671 | ||
96be8de5 BP |
672 | struct sset ofproto_ports; |
673 | struct port *port, *port_next; | |
674 | ||
2a73b1d7 BP |
675 | /* List of "ofp_port"s to delete. We make a list instead of deleting them |
676 | * right away because ofproto implementations aren't necessarily able to | |
677 | * iterate through a changing list of ports in an entirely robust way. */ | |
678 | ofp_port_t *del; | |
679 | size_t n, allocated; | |
680 | size_t i; | |
681 | ||
682 | del = NULL; | |
683 | n = allocated = 0; | |
96be8de5 | 684 | sset_init(&ofproto_ports); |
bae7208e | 685 | |
96be8de5 BP |
686 | /* Main task: Iterate over the ports in 'br->ofproto' and remove the ports |
687 | * that are not configured in the database. (This commonly happens when | |
688 | * ports have been deleted, e.g. with "ovs-vsctl del-port".) | |
689 | * | |
690 | * Side tasks: Reconfigure the ports that are still in 'br'. Delete ports | |
691 | * that have the wrong OpenFlow port number (and arrange to add them back | |
692 | * with the correct OpenFlow port number). */ | |
2a73b1d7 | 693 | OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, br->ofproto) { |
4abb8608 | 694 | ofp_port_t requested_ofp_port; |
2a73b1d7 | 695 | struct iface *iface; |
bae7208e | 696 | |
96be8de5 BP |
697 | sset_add(&ofproto_ports, ofproto_port.name); |
698 | ||
2a73b1d7 BP |
699 | iface = iface_lookup(br, ofproto_port.name); |
700 | if (!iface) { | |
701 | /* No such iface is configured, so we should delete this | |
702 | * ofproto_port. | |
703 | * | |
704 | * As a corner case exception, keep the port if it's a bond fake | |
705 | * interface. */ | |
706 | if (bridge_has_bond_fake_iface(br, ofproto_port.name) | |
707 | && !strcmp(ofproto_port.type, "internal")) { | |
bae7208e EJ |
708 | continue; |
709 | } | |
2a73b1d7 BP |
710 | goto delete; |
711 | } | |
bae7208e | 712 | |
2a73b1d7 BP |
713 | if (strcmp(ofproto_port.type, iface->type) |
714 | || netdev_set_config(iface->netdev, &iface->cfg->options)) { | |
715 | /* The interface is the wrong type or can't be configured. | |
716 | * Delete it. */ | |
717 | goto delete; | |
bae7208e EJ |
718 | } |
719 | ||
4abb8608 BP |
720 | /* If the requested OpenFlow port for 'iface' changed, and it's not |
721 | * already the correct port, then we might want to temporarily delete | |
722 | * this interface, so we can add it back again with the new OpenFlow | |
723 | * port number. */ | |
724 | requested_ofp_port = iface_get_requested_ofp_port(iface->cfg); | |
725 | if (iface->ofp_port != OFPP_LOCAL && | |
726 | requested_ofp_port != OFPP_NONE && | |
727 | requested_ofp_port != iface->ofp_port) { | |
728 | ofp_port_t victim_request; | |
729 | struct iface *victim; | |
730 | ||
731 | /* Check for an existing OpenFlow port currently occupying | |
732 | * 'iface''s requested port number. If there isn't one, then | |
733 | * delete this port. Otherwise we need to consider further. */ | |
734 | victim = iface_from_ofp_port(br, requested_ofp_port); | |
735 | if (!victim) { | |
736 | goto delete; | |
737 | } | |
738 | ||
739 | /* 'victim' is a port currently using 'iface''s requested port | |
740 | * number. Unless 'victim' specifically requested that port | |
741 | * number, too, then we can delete both 'iface' and 'victim' | |
742 | * temporarily. (We'll add both of them back again later with new | |
743 | * OpenFlow port numbers.) | |
744 | * | |
745 | * If 'victim' did request port number 'requested_ofp_port', just | |
746 | * like 'iface', then that's a configuration inconsistency that we | |
747 | * can't resolve. We might as well let it keep its current port | |
748 | * number. */ | |
749 | victim_request = iface_get_requested_ofp_port(victim->cfg); | |
750 | if (victim_request != requested_ofp_port) { | |
751 | del = add_ofp_port(victim->ofp_port, del, &n, &allocated); | |
752 | iface_destroy(victim); | |
753 | goto delete; | |
754 | } | |
755 | } | |
756 | ||
2a73b1d7 BP |
757 | /* Keep it. */ |
758 | continue; | |
759 | ||
760 | delete: | |
761 | iface_destroy(iface); | |
762 | del = add_ofp_port(ofproto_port.ofp_port, del, &n, &allocated); | |
763 | } | |
2a73b1d7 BP |
764 | for (i = 0; i < n; i++) { |
765 | ofproto_port_del(br->ofproto, del[i]); | |
766 | } | |
767 | free(del); | |
96be8de5 BP |
768 | |
769 | /* Iterate over this module's idea of interfaces in 'br'. Remove any ports | |
770 | * that we didn't see when we iterated through the datapath, i.e. ports | |
771 | * that disappeared underneath use. This is an unusual situation, but it | |
772 | * can happen in some cases: | |
773 | * | |
774 | * - An admin runs a command like "ovs-dpctl del-port" (which is a bad | |
775 | * idea but could happen). | |
776 | * | |
777 | * - The port represented a device that disappeared, e.g. a tuntap | |
778 | * device destroyed via "tunctl -d", a physical Ethernet device | |
779 | * whose module was just unloaded via "rmmod", or a virtual NIC for a | |
780 | * VM whose VM was just terminated. */ | |
781 | HMAP_FOR_EACH_SAFE (port, port_next, hmap_node, &br->ports) { | |
782 | struct iface *iface, *iface_next; | |
783 | ||
784 | LIST_FOR_EACH_SAFE (iface, iface_next, port_elem, &port->ifaces) { | |
785 | if (!sset_contains(&ofproto_ports, iface->name)) { | |
786 | iface_destroy__(iface); | |
787 | } | |
788 | } | |
789 | ||
790 | if (list_is_empty(&port->ifaces)) { | |
791 | port_destroy(port); | |
792 | } | |
793 | } | |
794 | sset_destroy(&ofproto_ports); | |
2a73b1d7 BP |
795 | } |
796 | ||
797 | static void | |
4abb8608 BP |
798 | bridge_add_ports__(struct bridge *br, const struct shash *wanted_ports, |
799 | bool with_requested_port) | |
2a73b1d7 BP |
800 | { |
801 | struct shash_node *port_node; | |
802 | ||
803 | SHASH_FOR_EACH (port_node, wanted_ports) { | |
804 | const struct ovsrec_port *port_cfg = port_node->data; | |
805 | size_t i; | |
806 | ||
807 | for (i = 0; i < port_cfg->n_interfaces; i++) { | |
808 | const struct ovsrec_interface *iface_cfg = port_cfg->interfaces[i]; | |
4abb8608 BP |
809 | ofp_port_t requested_ofp_port; |
810 | ||
811 | requested_ofp_port = iface_get_requested_ofp_port(iface_cfg); | |
812 | if ((requested_ofp_port != OFPP_NONE) == with_requested_port) { | |
813 | struct iface *iface = iface_lookup(br, iface_cfg->name); | |
2a73b1d7 | 814 | |
4abb8608 BP |
815 | if (!iface) { |
816 | iface_create(br, iface_cfg, port_cfg); | |
817 | } | |
2a73b1d7 | 818 | } |
bae7208e | 819 | } |
66da9bef | 820 | } |
093e47f4 | 821 | } |
c3827f61 | 822 | |
4abb8608 BP |
823 | static void |
824 | bridge_add_ports(struct bridge *br, const struct shash *wanted_ports) | |
825 | { | |
826 | /* First add interfaces that request a particular port number. */ | |
827 | bridge_add_ports__(br, wanted_ports, true); | |
828 | ||
829 | /* Then add interfaces that want automatic port number assignment. | |
830 | * We add these afterward to avoid accidentally taking a specifically | |
831 | * requested port number. */ | |
832 | bridge_add_ports__(br, wanted_ports, false); | |
833 | } | |
834 | ||
fa066f01 BP |
835 | static void |
836 | port_configure(struct port *port) | |
837 | { | |
838 | const struct ovsrec_port *cfg = port->cfg; | |
839 | struct bond_settings bond_settings; | |
840 | struct lacp_settings lacp_settings; | |
841 | struct ofproto_bundle_settings s; | |
842 | struct iface *iface; | |
82057f51 | 843 | |
52a90c29 BP |
844 | if (cfg->vlan_mode && !strcmp(cfg->vlan_mode, "splinter")) { |
845 | configure_splinter_port(port); | |
846 | return; | |
847 | } | |
848 | ||
fa066f01 BP |
849 | /* Get name. */ |
850 | s.name = port->name; | |
3a6ccc8c | 851 | |
fa066f01 BP |
852 | /* Get slaves. */ |
853 | s.n_slaves = 0; | |
854 | s.slaves = xmalloc(list_size(&port->ifaces) * sizeof *s.slaves); | |
855 | LIST_FOR_EACH (iface, port_elem, &port->ifaces) { | |
892815f5 | 856 | s.slaves[s.n_slaves++] = iface->ofp_port; |
fa066f01 | 857 | } |
c3827f61 | 858 | |
fa066f01 BP |
859 | /* Get VLAN tag. */ |
860 | s.vlan = -1; | |
acaf1486 BP |
861 | if (cfg->tag && *cfg->tag >= 0 && *cfg->tag <= 4095) { |
862 | s.vlan = *cfg->tag; | |
fa066f01 | 863 | } |
b0ec0f27 | 864 | |
fa066f01 BP |
865 | /* Get VLAN trunks. */ |
866 | s.trunks = NULL; | |
ecac4ebf | 867 | if (cfg->n_trunks) { |
fa066f01 | 868 | s.trunks = vlan_bitmap_from_array(cfg->trunks, cfg->n_trunks); |
ecac4ebf BP |
869 | } |
870 | ||
871 | /* Get VLAN mode. */ | |
872 | if (cfg->vlan_mode) { | |
873 | if (!strcmp(cfg->vlan_mode, "access")) { | |
874 | s.vlan_mode = PORT_VLAN_ACCESS; | |
875 | } else if (!strcmp(cfg->vlan_mode, "trunk")) { | |
876 | s.vlan_mode = PORT_VLAN_TRUNK; | |
877 | } else if (!strcmp(cfg->vlan_mode, "native-tagged")) { | |
878 | s.vlan_mode = PORT_VLAN_NATIVE_TAGGED; | |
879 | } else if (!strcmp(cfg->vlan_mode, "native-untagged")) { | |
880 | s.vlan_mode = PORT_VLAN_NATIVE_UNTAGGED; | |
881 | } else { | |
882 | /* This "can't happen" because ovsdb-server should prevent it. */ | |
65a0903b TG |
883 | VLOG_WARN("port %s: unknown VLAN mode %s, falling " |
884 | "back to trunk mode", port->name, cfg->vlan_mode); | |
ecac4ebf BP |
885 | s.vlan_mode = PORT_VLAN_TRUNK; |
886 | } | |
887 | } else { | |
888 | if (s.vlan >= 0) { | |
889 | s.vlan_mode = PORT_VLAN_ACCESS; | |
890 | if (cfg->n_trunks) { | |
65a0903b TG |
891 | VLOG_WARN("port %s: ignoring trunks in favor of implicit vlan", |
892 | port->name); | |
ecac4ebf BP |
893 | } |
894 | } else { | |
895 | s.vlan_mode = PORT_VLAN_TRUNK; | |
896 | } | |
064af421 | 897 | } |
a699f614 EJ |
898 | s.use_priority_tags = smap_get_bool(&cfg->other_config, "priority-tags", |
899 | false); | |
064af421 | 900 | |
fa066f01 BP |
901 | /* Get LACP settings. */ |
902 | s.lacp = port_configure_lacp(port, &lacp_settings); | |
903 | if (s.lacp) { | |
904 | size_t i = 0; | |
064af421 | 905 | |
fa066f01 BP |
906 | s.lacp_slaves = xmalloc(s.n_slaves * sizeof *s.lacp_slaves); |
907 | LIST_FOR_EACH (iface, port_elem, &port->ifaces) { | |
908 | iface_configure_lacp(iface, &s.lacp_slaves[i++]); | |
064af421 | 909 | } |
fa066f01 BP |
910 | } else { |
911 | s.lacp_slaves = NULL; | |
912 | } | |
064af421 | 913 | |
fa066f01 BP |
914 | /* Get bond settings. */ |
915 | if (s.n_slaves > 1) { | |
fa066f01 | 916 | s.bond = &bond_settings; |
df53d41c | 917 | port_configure_bond(port, &bond_settings); |
fa066f01 BP |
918 | } else { |
919 | s.bond = NULL; | |
1670c579 EJ |
920 | LIST_FOR_EACH (iface, port_elem, &port->ifaces) { |
921 | netdev_set_miimon_interval(iface->netdev, 0); | |
922 | } | |
fa066f01 | 923 | } |
093e47f4 | 924 | |
fa066f01 BP |
925 | /* Register. */ |
926 | ofproto_bundle_register(port->bridge->ofproto, port, &s); | |
76343538 | 927 | |
fa066f01 | 928 | /* Clean up. */ |
4e51de4c | 929 | free(s.slaves); |
fa066f01 BP |
930 | free(s.trunks); |
931 | free(s.lacp_slaves); | |
932 | } | |
76343538 | 933 | |
6f90b8f4 BP |
934 | /* Pick local port hardware address and datapath ID for 'br'. */ |
935 | static void | |
936 | bridge_configure_datapath_id(struct bridge *br) | |
937 | { | |
938 | uint8_t ea[ETH_ADDR_LEN]; | |
939 | uint64_t dpid; | |
940 | struct iface *local_iface; | |
941 | struct iface *hw_addr_iface; | |
942 | char *dpid_string; | |
76343538 | 943 | |
6f90b8f4 | 944 | bridge_pick_local_hw_addr(br, ea, &hw_addr_iface); |
892815f5 | 945 | local_iface = iface_from_ofp_port(br, OFPP_LOCAL); |
6f90b8f4 BP |
946 | if (local_iface) { |
947 | int error = netdev_set_etheraddr(local_iface->netdev, ea); | |
948 | if (error) { | |
949 | static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5); | |
950 | VLOG_ERR_RL(&rl, "bridge %s: failed to set bridge " | |
951 | "Ethernet address: %s", | |
10a89ef0 | 952 | br->name, ovs_strerror(error)); |
6f90b8f4 BP |
953 | } |
954 | } | |
955 | memcpy(br->ea, ea, ETH_ADDR_LEN); | |
76343538 | 956 | |
6f90b8f4 | 957 | dpid = bridge_pick_datapath_id(br, ea, hw_addr_iface); |
e825ace2 BP |
958 | if (dpid != ofproto_get_datapath_id(br->ofproto)) { |
959 | VLOG_INFO("bridge %s: using datapath ID %016"PRIx64, br->name, dpid); | |
960 | ofproto_set_datapath_id(br->ofproto, dpid); | |
961 | } | |
76343538 | 962 | |
6f90b8f4 BP |
963 | dpid_string = xasprintf("%016"PRIx64, dpid); |
964 | ovsrec_bridge_set_datapath_id(br->cfg, dpid_string); | |
965 | free(dpid_string); | |
966 | } | |
064af421 | 967 | |
7beaa082 SH |
968 | /* Returns a bitmap of "enum ofputil_protocol"s that are allowed for use with |
969 | * 'br'. */ | |
970 | static uint32_t | |
971 | bridge_get_allowed_versions(struct bridge *br) | |
972 | { | |
973 | if (!br->cfg->n_protocols) | |
974 | return 0; | |
975 | ||
aa233d57 BP |
976 | return ofputil_versions_from_strings(br->cfg->protocols, |
977 | br->cfg->n_protocols); | |
7beaa082 SH |
978 | } |
979 | ||
6f90b8f4 BP |
980 | /* Set NetFlow configuration on 'br'. */ |
981 | static void | |
982 | bridge_configure_netflow(struct bridge *br) | |
983 | { | |
984 | struct ovsrec_netflow *cfg = br->cfg->netflow; | |
985 | struct netflow_options opts; | |
72b06300 | 986 | |
6f90b8f4 BP |
987 | if (!cfg) { |
988 | ofproto_set_netflow(br->ofproto, NULL); | |
989 | return; | |
990 | } | |
a4af0040 | 991 | |
6f90b8f4 | 992 | memset(&opts, 0, sizeof opts); |
72b06300 | 993 | |
6f90b8f4 BP |
994 | /* Get default NetFlow configuration from datapath. |
995 | * Apply overrides from 'cfg'. */ | |
996 | ofproto_get_netflow_ids(br->ofproto, &opts.engine_type, &opts.engine_id); | |
997 | if (cfg->engine_type) { | |
998 | opts.engine_type = *cfg->engine_type; | |
999 | } | |
1000 | if (cfg->engine_id) { | |
1001 | opts.engine_id = *cfg->engine_id; | |
1002 | } | |
72b06300 | 1003 | |
6f90b8f4 BP |
1004 | /* Configure active timeout interval. */ |
1005 | opts.active_timeout = cfg->active_timeout; | |
1006 | if (!opts.active_timeout) { | |
1007 | opts.active_timeout = -1; | |
1008 | } else if (opts.active_timeout < 0) { | |
1009 | VLOG_WARN("bridge %s: active timeout interval set to negative " | |
1010 | "value, using default instead (%d seconds)", br->name, | |
1011 | NF_ACTIVE_TIMEOUT_DEFAULT); | |
1012 | opts.active_timeout = -1; | |
1013 | } | |
72b06300 | 1014 | |
6f90b8f4 BP |
1015 | /* Add engine ID to interface number to disambiguate bridgs? */ |
1016 | opts.add_id_to_iface = cfg->add_id_to_interface; | |
1017 | if (opts.add_id_to_iface) { | |
1018 | if (opts.engine_id > 0x7f) { | |
1019 | VLOG_WARN("bridge %s: NetFlow port mangling may conflict with " | |
1020 | "another vswitch, choose an engine id less than 128", | |
1021 | br->name); | |
1022 | } | |
1023 | if (hmap_count(&br->ports) > 508) { | |
1024 | VLOG_WARN("bridge %s: NetFlow port mangling will conflict with " | |
1025 | "another port when more than 508 ports are used", | |
1026 | br->name); | |
1027 | } | |
1028 | } | |
72b06300 | 1029 | |
6f90b8f4 BP |
1030 | /* Collectors. */ |
1031 | sset_init(&opts.collectors); | |
1032 | sset_add_array(&opts.collectors, cfg->targets, cfg->n_targets); | |
a4af0040 | 1033 | |
6f90b8f4 BP |
1034 | /* Configure. */ |
1035 | if (ofproto_set_netflow(br->ofproto, &opts)) { | |
1036 | VLOG_ERR("bridge %s: problem setting netflow collectors", br->name); | |
1037 | } | |
1038 | sset_destroy(&opts.collectors); | |
1039 | } | |
72b06300 | 1040 | |
6f90b8f4 BP |
1041 | /* Set sFlow configuration on 'br'. */ |
1042 | static void | |
1043 | bridge_configure_sflow(struct bridge *br, int *sflow_bridge_number) | |
1044 | { | |
1045 | const struct ovsrec_sflow *cfg = br->cfg->sflow; | |
1046 | struct ovsrec_controller **controllers; | |
1047 | struct ofproto_sflow_options oso; | |
1048 | size_t n_controllers; | |
1049 | size_t i; | |
72b06300 | 1050 | |
6f90b8f4 BP |
1051 | if (!cfg) { |
1052 | ofproto_set_sflow(br->ofproto, NULL); | |
1053 | return; | |
064af421 | 1054 | } |
8052fb14 | 1055 | |
6f90b8f4 | 1056 | memset(&oso, 0, sizeof oso); |
52df17e7 | 1057 | |
6f90b8f4 BP |
1058 | sset_init(&oso.targets); |
1059 | sset_add_array(&oso.targets, cfg->targets, cfg->n_targets); | |
c1c9c9c4 | 1060 | |
6f90b8f4 BP |
1061 | oso.sampling_rate = SFL_DEFAULT_SAMPLING_RATE; |
1062 | if (cfg->sampling) { | |
1063 | oso.sampling_rate = *cfg->sampling; | |
064af421 | 1064 | } |
6f90b8f4 BP |
1065 | |
1066 | oso.polling_interval = SFL_DEFAULT_POLLING_INTERVAL; | |
1067 | if (cfg->polling) { | |
1068 | oso.polling_interval = *cfg->polling; | |
064af421 | 1069 | } |
093e47f4 | 1070 | |
6f90b8f4 BP |
1071 | oso.header_len = SFL_DEFAULT_HEADER_SIZE; |
1072 | if (cfg->header) { | |
1073 | oso.header_len = *cfg->header; | |
1074 | } | |
392730c4 | 1075 | |
6f90b8f4 BP |
1076 | oso.sub_id = (*sflow_bridge_number)++; |
1077 | oso.agent_device = cfg->agent; | |
392730c4 | 1078 | |
6f90b8f4 BP |
1079 | oso.control_ip = NULL; |
1080 | n_controllers = bridge_get_controllers(br, &controllers); | |
1081 | for (i = 0; i < n_controllers; i++) { | |
1082 | if (controllers[i]->local_ip) { | |
1083 | oso.control_ip = controllers[i]->local_ip; | |
1084 | break; | |
b31bcf60 EJ |
1085 | } |
1086 | } | |
6f90b8f4 | 1087 | ofproto_set_sflow(br->ofproto, &oso); |
b31bcf60 | 1088 | |
6f90b8f4 BP |
1089 | sset_destroy(&oso.targets); |
1090 | } | |
a7ff9bd7 | 1091 | |
88afd5fc RL |
1092 | /* Returns whether a IPFIX row is valid. */ |
1093 | static bool | |
1094 | ovsrec_ipfix_is_valid(const struct ovsrec_ipfix *ipfix) | |
1095 | { | |
1096 | return ipfix && ipfix->n_targets > 0; | |
1097 | } | |
1098 | ||
3388e51a RL |
1099 | /* Returns whether a Flow_Sample_Collector_Set row is valid. */ |
1100 | static bool | |
1101 | ovsrec_fscs_is_valid(const struct ovsrec_flow_sample_collector_set *fscs, | |
1102 | const struct bridge *br) | |
1103 | { | |
88afd5fc | 1104 | return ovsrec_ipfix_is_valid(fscs->ipfix) && fscs->bridge == br->cfg; |
3388e51a RL |
1105 | } |
1106 | ||
29089a54 RL |
1107 | /* Set IPFIX configuration on 'br'. */ |
1108 | static void | |
1109 | bridge_configure_ipfix(struct bridge *br) | |
1110 | { | |
1111 | const struct ovsrec_ipfix *be_cfg = br->cfg->ipfix; | |
88afd5fc | 1112 | bool valid_be_cfg = ovsrec_ipfix_is_valid(be_cfg); |
29089a54 RL |
1113 | const struct ovsrec_flow_sample_collector_set *fe_cfg; |
1114 | struct ofproto_ipfix_bridge_exporter_options be_opts; | |
1115 | struct ofproto_ipfix_flow_exporter_options *fe_opts = NULL; | |
1116 | size_t n_fe_opts = 0; | |
1117 | ||
1118 | OVSREC_FLOW_SAMPLE_COLLECTOR_SET_FOR_EACH(fe_cfg, idl) { | |
3388e51a | 1119 | if (ovsrec_fscs_is_valid(fe_cfg, br)) { |
29089a54 RL |
1120 | n_fe_opts++; |
1121 | } | |
1122 | } | |
1123 | ||
88afd5fc | 1124 | if (!valid_be_cfg && n_fe_opts == 0) { |
29089a54 RL |
1125 | ofproto_set_ipfix(br->ofproto, NULL, NULL, 0); |
1126 | return; | |
1127 | } | |
1128 | ||
88afd5fc | 1129 | if (valid_be_cfg) { |
29089a54 RL |
1130 | memset(&be_opts, 0, sizeof be_opts); |
1131 | ||
1132 | sset_init(&be_opts.targets); | |
1133 | sset_add_array(&be_opts.targets, be_cfg->targets, be_cfg->n_targets); | |
1134 | ||
1135 | if (be_cfg->sampling) { | |
1136 | be_opts.sampling_rate = *be_cfg->sampling; | |
1137 | } else { | |
1138 | be_opts.sampling_rate = SFL_DEFAULT_SAMPLING_RATE; | |
1139 | } | |
1140 | if (be_cfg->obs_domain_id) { | |
1141 | be_opts.obs_domain_id = *be_cfg->obs_domain_id; | |
1142 | } | |
1143 | if (be_cfg->obs_point_id) { | |
1144 | be_opts.obs_point_id = *be_cfg->obs_point_id; | |
1145 | } | |
978427a5 RL |
1146 | if (be_cfg->cache_active_timeout) { |
1147 | be_opts.cache_active_timeout = *be_cfg->cache_active_timeout; | |
1148 | } | |
1149 | if (be_cfg->cache_max_flows) { | |
1150 | be_opts.cache_max_flows = *be_cfg->cache_max_flows; | |
1151 | } | |
29089a54 RL |
1152 | } |
1153 | ||
1154 | if (n_fe_opts > 0) { | |
1155 | struct ofproto_ipfix_flow_exporter_options *opts; | |
1156 | fe_opts = xcalloc(n_fe_opts, sizeof *fe_opts); | |
1157 | opts = fe_opts; | |
1158 | OVSREC_FLOW_SAMPLE_COLLECTOR_SET_FOR_EACH(fe_cfg, idl) { | |
3388e51a | 1159 | if (ovsrec_fscs_is_valid(fe_cfg, br)) { |
29089a54 RL |
1160 | opts->collector_set_id = fe_cfg->id; |
1161 | sset_init(&opts->targets); | |
1162 | sset_add_array(&opts->targets, fe_cfg->ipfix->targets, | |
1163 | fe_cfg->ipfix->n_targets); | |
978427a5 RL |
1164 | opts->cache_active_timeout = fe_cfg->ipfix->cache_active_timeout |
1165 | ? *fe_cfg->ipfix->cache_active_timeout : 0; | |
1166 | opts->cache_max_flows = fe_cfg->ipfix->cache_max_flows | |
1167 | ? *fe_cfg->ipfix->cache_max_flows : 0; | |
29089a54 RL |
1168 | opts++; |
1169 | } | |
1170 | } | |
1171 | } | |
1172 | ||
88afd5fc | 1173 | ofproto_set_ipfix(br->ofproto, valid_be_cfg ? &be_opts : NULL, fe_opts, |
29089a54 RL |
1174 | n_fe_opts); |
1175 | ||
88afd5fc | 1176 | if (valid_be_cfg) { |
29089a54 RL |
1177 | sset_destroy(&be_opts.targets); |
1178 | } | |
1179 | ||
1180 | if (n_fe_opts > 0) { | |
1181 | struct ofproto_ipfix_flow_exporter_options *opts = fe_opts; | |
1182 | size_t i; | |
1183 | for (i = 0; i < n_fe_opts; i++) { | |
1184 | sset_destroy(&opts->targets); | |
1185 | opts++; | |
1186 | } | |
1187 | free(fe_opts); | |
1188 | } | |
1189 | } | |
1190 | ||
21f7563c JP |
1191 | static void |
1192 | port_configure_stp(const struct ofproto *ofproto, struct port *port, | |
1193 | struct ofproto_port_stp_settings *port_s, | |
1194 | int *port_num_counter, unsigned long *port_num_bitmap) | |
1195 | { | |
1196 | const char *config_str; | |
1197 | struct iface *iface; | |
1198 | ||
079b5942 | 1199 | if (!smap_get_bool(&port->cfg->other_config, "stp-enable", true)) { |
21f7563c JP |
1200 | port_s->enable = false; |
1201 | return; | |
1202 | } else { | |
1203 | port_s->enable = true; | |
1204 | } | |
1205 | ||
1206 | /* STP over bonds is not supported. */ | |
1207 | if (!list_is_singleton(&port->ifaces)) { | |
1208 | VLOG_ERR("port %s: cannot enable STP on bonds, disabling", | |
1209 | port->name); | |
1210 | port_s->enable = false; | |
1211 | return; | |
1212 | } | |
1213 | ||
1214 | iface = CONTAINER_OF(list_front(&port->ifaces), struct iface, port_elem); | |
1215 | ||
1216 | /* Internal ports shouldn't participate in spanning tree, so | |
1217 | * skip them. */ | |
1218 | if (!strcmp(iface->type, "internal")) { | |
1219 | VLOG_DBG("port %s: disable STP on internal ports", port->name); | |
1220 | port_s->enable = false; | |
1221 | return; | |
1222 | } | |
1223 | ||
1224 | /* STP on mirror output ports is not supported. */ | |
1225 | if (ofproto_is_mirror_output_bundle(ofproto, port)) { | |
1226 | VLOG_DBG("port %s: disable STP on mirror ports", port->name); | |
1227 | port_s->enable = false; | |
1228 | return; | |
1229 | } | |
1230 | ||
a699f614 | 1231 | config_str = smap_get(&port->cfg->other_config, "stp-port-num"); |
21f7563c JP |
1232 | if (config_str) { |
1233 | unsigned long int port_num = strtoul(config_str, NULL, 0); | |
1234 | int port_idx = port_num - 1; | |
1235 | ||
1236 | if (port_num < 1 || port_num > STP_MAX_PORTS) { | |
1237 | VLOG_ERR("port %s: invalid stp-port-num", port->name); | |
1238 | port_s->enable = false; | |
1239 | return; | |
1240 | } | |
1241 | ||
1242 | if (bitmap_is_set(port_num_bitmap, port_idx)) { | |
1243 | VLOG_ERR("port %s: duplicate stp-port-num %lu, disabling", | |
1244 | port->name, port_num); | |
1245 | port_s->enable = false; | |
1246 | return; | |
1247 | } | |
1248 | bitmap_set1(port_num_bitmap, port_idx); | |
1249 | port_s->port_num = port_idx; | |
1250 | } else { | |
6019f124 | 1251 | if (*port_num_counter >= STP_MAX_PORTS) { |
21f7563c JP |
1252 | VLOG_ERR("port %s: too many STP ports, disabling", port->name); |
1253 | port_s->enable = false; | |
1254 | return; | |
1255 | } | |
1256 | ||
1257 | port_s->port_num = (*port_num_counter)++; | |
1258 | } | |
1259 | ||
a699f614 | 1260 | config_str = smap_get(&port->cfg->other_config, "stp-path-cost"); |
21f7563c JP |
1261 | if (config_str) { |
1262 | port_s->path_cost = strtoul(config_str, NULL, 10); | |
1263 | } else { | |
6c038611 | 1264 | enum netdev_features current; |
d02a5f8e | 1265 | unsigned int mbps; |
21f7563c | 1266 | |
d02a5f8e BP |
1267 | netdev_get_features(iface->netdev, ¤t, NULL, NULL, NULL); |
1268 | mbps = netdev_features_to_bps(current, 100 * 1000 * 1000) / 1000000; | |
1269 | port_s->path_cost = stp_convert_speed_to_cost(mbps); | |
21f7563c JP |
1270 | } |
1271 | ||
a699f614 | 1272 | config_str = smap_get(&port->cfg->other_config, "stp-port-priority"); |
21f7563c JP |
1273 | if (config_str) { |
1274 | port_s->priority = strtoul(config_str, NULL, 0); | |
1275 | } else { | |
1276 | port_s->priority = STP_DEFAULT_PORT_PRIORITY; | |
1277 | } | |
1278 | } | |
1279 | ||
1280 | /* Set spanning tree configuration on 'br'. */ | |
1281 | static void | |
1282 | bridge_configure_stp(struct bridge *br) | |
1283 | { | |
1284 | if (!br->cfg->stp_enable) { | |
1285 | ofproto_set_stp(br->ofproto, NULL); | |
1286 | } else { | |
1287 | struct ofproto_stp_settings br_s; | |
1288 | const char *config_str; | |
1289 | struct port *port; | |
1290 | int port_num_counter; | |
1291 | unsigned long *port_num_bitmap; | |
1292 | ||
a699f614 | 1293 | config_str = smap_get(&br->cfg->other_config, "stp-system-id"); |
21f7563c JP |
1294 | if (config_str) { |
1295 | uint8_t ea[ETH_ADDR_LEN]; | |
1296 | ||
1297 | if (eth_addr_from_string(config_str, ea)) { | |
1298 | br_s.system_id = eth_addr_to_uint64(ea); | |
1299 | } else { | |
1300 | br_s.system_id = eth_addr_to_uint64(br->ea); | |
1301 | VLOG_ERR("bridge %s: invalid stp-system-id, defaulting " | |
1302 | "to "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(br->ea)); | |
1303 | } | |
1304 | } else { | |
1305 | br_s.system_id = eth_addr_to_uint64(br->ea); | |
1306 | } | |
1307 | ||
a699f614 | 1308 | config_str = smap_get(&br->cfg->other_config, "stp-priority"); |
21f7563c JP |
1309 | if (config_str) { |
1310 | br_s.priority = strtoul(config_str, NULL, 0); | |
1311 | } else { | |
1312 | br_s.priority = STP_DEFAULT_BRIDGE_PRIORITY; | |
1313 | } | |
1314 | ||
a699f614 | 1315 | config_str = smap_get(&br->cfg->other_config, "stp-hello-time"); |
21f7563c JP |
1316 | if (config_str) { |
1317 | br_s.hello_time = strtoul(config_str, NULL, 10) * 1000; | |
1318 | } else { | |
1319 | br_s.hello_time = STP_DEFAULT_HELLO_TIME; | |
1320 | } | |
1321 | ||
a699f614 | 1322 | config_str = smap_get(&br->cfg->other_config, "stp-max-age"); |
21f7563c JP |
1323 | if (config_str) { |
1324 | br_s.max_age = strtoul(config_str, NULL, 10) * 1000; | |
1325 | } else { | |
1326 | br_s.max_age = STP_DEFAULT_MAX_AGE; | |
1327 | } | |
1328 | ||
a699f614 | 1329 | config_str = smap_get(&br->cfg->other_config, "stp-forward-delay"); |
21f7563c JP |
1330 | if (config_str) { |
1331 | br_s.fwd_delay = strtoul(config_str, NULL, 10) * 1000; | |
1332 | } else { | |
1333 | br_s.fwd_delay = STP_DEFAULT_FWD_DELAY; | |
1334 | } | |
1335 | ||
1336 | /* Configure STP on the bridge. */ | |
1337 | if (ofproto_set_stp(br->ofproto, &br_s)) { | |
1338 | VLOG_ERR("bridge %s: could not enable STP", br->name); | |
1339 | return; | |
1340 | } | |
1341 | ||
1342 | /* Users must either set the port number with the "stp-port-num" | |
1343 | * configuration on all ports or none. If manual configuration | |
1344 | * is not done, then we allocate them sequentially. */ | |
1345 | port_num_counter = 0; | |
1346 | port_num_bitmap = bitmap_allocate(STP_MAX_PORTS); | |
1347 | HMAP_FOR_EACH (port, hmap_node, &br->ports) { | |
1348 | struct ofproto_port_stp_settings port_s; | |
1349 | struct iface *iface; | |
1350 | ||
1351 | port_configure_stp(br->ofproto, port, &port_s, | |
1352 | &port_num_counter, port_num_bitmap); | |
1353 | ||
1354 | /* As bonds are not supported, just apply configuration to | |
1355 | * all interfaces. */ | |
1356 | LIST_FOR_EACH (iface, port_elem, &port->ifaces) { | |
1357 | if (ofproto_port_set_stp(br->ofproto, iface->ofp_port, | |
1358 | &port_s)) { | |
1359 | VLOG_ERR("port %s: could not enable STP", port->name); | |
1360 | continue; | |
1361 | } | |
1362 | } | |
1363 | } | |
1364 | ||
b71273f6 | 1365 | if (bitmap_scan(port_num_bitmap, 1, 0, STP_MAX_PORTS) != STP_MAX_PORTS |
21f7563c JP |
1366 | && port_num_counter) { |
1367 | VLOG_ERR("bridge %s: must manually configure all STP port " | |
1368 | "IDs or none, disabling", br->name); | |
1369 | ofproto_set_stp(br->ofproto, NULL); | |
1370 | } | |
1371 | bitmap_free(port_num_bitmap); | |
1372 | } | |
1373 | } | |
1374 | ||
e8192d80 BP |
1375 | static bool |
1376 | bridge_has_bond_fake_iface(const struct bridge *br, const char *name) | |
1377 | { | |
1378 | const struct port *port = port_lookup(br, name); | |
1379 | return port && port_is_bond_fake_iface(port); | |
093e47f4 BP |
1380 | } |
1381 | ||
e8192d80 BP |
1382 | static bool |
1383 | port_is_bond_fake_iface(const struct port *port) | |
093e47f4 | 1384 | { |
e8192d80 BP |
1385 | return port->cfg->bond_fake_iface && !list_is_short(&port->ifaces); |
1386 | } | |
093e47f4 | 1387 | |
66da9bef BP |
1388 | static void |
1389 | add_del_bridges(const struct ovsrec_open_vswitch *cfg) | |
1390 | { | |
1391 | struct bridge *br, *next; | |
1392 | struct shash new_br; | |
1393 | size_t i; | |
1394 | ||
1395 | /* Collect new bridges' names and types. */ | |
1396 | shash_init(&new_br); | |
1397 | for (i = 0; i < cfg->n_bridges; i++) { | |
5af5b532 | 1398 | static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5); |
66da9bef | 1399 | const struct ovsrec_bridge *br_cfg = cfg->bridges[i]; |
5af5b532 BP |
1400 | |
1401 | if (strchr(br_cfg->name, '/')) { | |
1402 | /* Prevent remote ovsdb-server users from accessing arbitrary | |
1403 | * directories, e.g. consider a bridge named "../../../etc/". */ | |
1404 | VLOG_WARN_RL(&rl, "ignoring bridge with invalid name \"%s\"", | |
1405 | br_cfg->name); | |
1406 | } else if (!shash_add_once(&new_br, br_cfg->name, br_cfg)) { | |
1407 | VLOG_WARN_RL(&rl, "bridge %s specified twice", br_cfg->name); | |
66da9bef BP |
1408 | } |
1409 | } | |
1410 | ||
1411 | /* Get rid of deleted bridges or those whose types have changed. | |
1412 | * Update 'cfg' of bridges that still exist. */ | |
1413 | HMAP_FOR_EACH_SAFE (br, next, node, &all_bridges) { | |
1414 | br->cfg = shash_find_data(&new_br, br->name); | |
f79e673f BP |
1415 | if (!br->cfg || strcmp(br->type, ofproto_normalize_type( |
1416 | br->cfg->datapath_type))) { | |
66da9bef BP |
1417 | bridge_destroy(br); |
1418 | } | |
1419 | } | |
1420 | ||
1421 | /* Add new bridges. */ | |
1422 | for (i = 0; i < cfg->n_bridges; i++) { | |
1423 | const struct ovsrec_bridge *br_cfg = cfg->bridges[i]; | |
1424 | struct bridge *br = bridge_lookup(br_cfg->name); | |
1425 | if (!br) { | |
1426 | bridge_create(br_cfg); | |
1427 | } | |
1428 | } | |
1429 | ||
1430 | shash_destroy(&new_br); | |
1431 | } | |
1432 | ||
2a485ee8 BP |
1433 | /* Configures 'netdev' based on the "options" column in 'iface_cfg'. |
1434 | * Returns 0 if successful, otherwise a positive errno value. */ | |
1435 | static int | |
1436 | iface_set_netdev_config(const struct ovsrec_interface *iface_cfg, | |
1437 | struct netdev *netdev) | |
1438 | { | |
4f6b9934 | 1439 | return netdev_set_config(netdev, &iface_cfg->options); |
2a485ee8 BP |
1440 | } |
1441 | ||
fb2ec1e9 YT |
1442 | /* Opens a network device for 'if_cfg' and configures it. Adds the network |
1443 | * device to br->ofproto and stores the OpenFlow port number in '*ofp_portp'. | |
cc086465 BP |
1444 | * |
1445 | * If successful, returns 0 and stores the network device in '*netdevp'. On | |
1446 | * failure, returns a positive errno value and stores NULL in '*netdevp'. */ | |
1447 | static int | |
1448 | iface_do_create(const struct bridge *br, | |
2a73b1d7 BP |
1449 | const struct ovsrec_interface *iface_cfg, |
1450 | const struct ovsrec_port *port_cfg, | |
4e022ec0 | 1451 | ofp_port_t *ofp_portp, struct netdev **netdevp) |
cc086465 | 1452 | { |
2291eb08 | 1453 | struct netdev *netdev = NULL; |
cc086465 BP |
1454 | int error; |
1455 | ||
94a53842 AW |
1456 | if (netdev_is_reserved_name(iface_cfg->name)) { |
1457 | VLOG_WARN("could not create interface %s, name is reserved", | |
1458 | iface_cfg->name); | |
1459 | error = EINVAL; | |
1460 | goto error; | |
1461 | } | |
1462 | ||
cc086465 BP |
1463 | error = netdev_open(iface_cfg->name, |
1464 | iface_get_type(iface_cfg, br->cfg), &netdev); | |
1465 | if (error) { | |
1466 | VLOG_WARN("could not open network device %s (%s)", | |
10a89ef0 | 1467 | iface_cfg->name, ovs_strerror(error)); |
cc086465 BP |
1468 | goto error; |
1469 | } | |
1470 | ||
1471 | error = iface_set_netdev_config(iface_cfg, netdev); | |
1472 | if (error) { | |
1473 | goto error; | |
1474 | } | |
1475 | ||
2a73b1d7 BP |
1476 | *ofp_portp = iface_pick_ofport(iface_cfg); |
1477 | error = ofproto_port_add(br->ofproto, netdev, ofp_portp); | |
1478 | if (error) { | |
1479 | goto error; | |
cc086465 BP |
1480 | } |
1481 | ||
2a73b1d7 BP |
1482 | VLOG_INFO("bridge %s: added interface %s on port %d", |
1483 | br->name, iface_cfg->name, *ofp_portp); | |
1484 | ||
1839c356 | 1485 | if (port_cfg->vlan_mode && !strcmp(port_cfg->vlan_mode, "splinter")) { |
4b609110 | 1486 | netdev_turn_flags_on(netdev, NETDEV_UP, NULL); |
cc086465 BP |
1487 | } |
1488 | ||
1489 | *netdevp = netdev; | |
1490 | return 0; | |
1491 | ||
1492 | error: | |
1493 | *netdevp = NULL; | |
1494 | netdev_close(netdev); | |
1495 | return error; | |
1496 | } | |
1497 | ||
bae7208e | 1498 | /* Creates a new iface on 'br' based on 'if_cfg'. The new iface has OpenFlow |
c60c33fb | 1499 | * port number 'ofp_port'. If ofp_port is OFPP_NONE, an OpenFlow port is |
bae7208e | 1500 | * automatically allocated for the iface. Takes ownership of and |
01546f5d BP |
1501 | * deallocates 'if_cfg'. |
1502 | * | |
1503 | * Return true if an iface is successfully created, false otherwise. */ | |
1504 | static bool | |
2a73b1d7 BP |
1505 | iface_create(struct bridge *br, const struct ovsrec_interface *iface_cfg, |
1506 | const struct ovsrec_port *port_cfg) | |
66da9bef | 1507 | { |
cc086465 | 1508 | struct netdev *netdev; |
bae7208e | 1509 | struct iface *iface; |
2a73b1d7 | 1510 | ofp_port_t ofp_port; |
bae7208e EJ |
1511 | struct port *port; |
1512 | int error; | |
52a90c29 | 1513 | |
a6b7506d | 1514 | /* Do the bits that can fail up front. */ |
cb22974d | 1515 | ovs_assert(!iface_lookup(br, iface_cfg->name)); |
2a73b1d7 | 1516 | error = iface_do_create(br, iface_cfg, port_cfg, &ofp_port, &netdev); |
bae7208e | 1517 | if (error) { |
cc086465 | 1518 | iface_clear_db_record(iface_cfg); |
2a73b1d7 | 1519 | return false; |
bae7208e | 1520 | } |
c7e7bb21 | 1521 | |
cc086465 BP |
1522 | /* Get or create the port structure. */ |
1523 | port = port_lookup(br, port_cfg->name); | |
1524 | if (!port) { | |
1525 | port = port_create(br, port_cfg); | |
bae7208e EJ |
1526 | } |
1527 | ||
cc086465 BP |
1528 | /* Create the iface structure. */ |
1529 | iface = xzalloc(sizeof *iface); | |
1530 | list_push_back(&port->ifaces, &iface->port_elem); | |
1531 | hmap_insert(&br->iface_by_name, &iface->name_node, | |
1532 | hash_string(iface_cfg->name, 0)); | |
1533 | iface->port = port; | |
1534 | iface->name = xstrdup(iface_cfg->name); | |
2a73b1d7 | 1535 | iface->ofp_port = ofp_port; |
cc086465 BP |
1536 | iface->netdev = netdev; |
1537 | iface->type = iface_get_type(iface_cfg, br->cfg); | |
1538 | iface->cfg = iface_cfg; | |
2a73b1d7 BP |
1539 | hmap_insert(&br->ifaces, &iface->ofp_port_node, |
1540 | hash_ofp_port(ofp_port)); | |
8b5da7a6 | 1541 | |
cc086465 BP |
1542 | /* Populate initial status in database. */ |
1543 | iface_refresh_stats(iface); | |
6a5f9a8f | 1544 | iface_refresh_netdev_status(iface); |
bae7208e EJ |
1545 | |
1546 | /* Add bond fake iface if necessary. */ | |
1547 | if (port_is_bond_fake_iface(port)) { | |
8b5da7a6 BP |
1548 | struct ofproto_port ofproto_port; |
1549 | ||
bae7208e EJ |
1550 | if (ofproto_port_query_by_name(br->ofproto, port->name, |
1551 | &ofproto_port)) { | |
1552 | struct netdev *netdev; | |
1553 | int error; | |
1554 | ||
1555 | error = netdev_open(port->name, "internal", &netdev); | |
1556 | if (!error) { | |
4abb8608 | 1557 | ofp_port_t fake_ofp_port = OFPP_NONE; |
0d7bb1b4 | 1558 | ofproto_port_add(br->ofproto, netdev, &fake_ofp_port); |
bae7208e | 1559 | netdev_close(netdev); |
66da9bef | 1560 | } else { |
bae7208e | 1561 | VLOG_WARN("could not open network device %s (%s)", |
10a89ef0 | 1562 | port->name, ovs_strerror(error)); |
66da9bef | 1563 | } |
bae7208e EJ |
1564 | } else { |
1565 | /* Already exists, nothing to do. */ | |
1566 | ofproto_port_destroy(&ofproto_port); | |
66da9bef BP |
1567 | } |
1568 | } | |
01546f5d | 1569 | |
2a73b1d7 | 1570 | return true; |
66da9bef BP |
1571 | } |
1572 | ||
8402c74b SS |
1573 | /* Set forward BPDU option. */ |
1574 | static void | |
1575 | bridge_configure_forward_bpdu(struct bridge *br) | |
1576 | { | |
a699f614 EJ |
1577 | ofproto_set_forward_bpdu(br->ofproto, |
1578 | smap_get_bool(&br->cfg->other_config, | |
1579 | "forward-bpdu", | |
1580 | false)); | |
8402c74b SS |
1581 | } |
1582 | ||
c4069512 | 1583 | /* Set MAC learning table configuration for 'br'. */ |
e764773c | 1584 | static void |
c4069512 | 1585 | bridge_configure_mac_table(struct bridge *br) |
e764773c BP |
1586 | { |
1587 | const char *idle_time_str; | |
1588 | int idle_time; | |
1589 | ||
c4069512 BP |
1590 | const char *mac_table_size_str; |
1591 | int mac_table_size; | |
1592 | ||
a699f614 | 1593 | idle_time_str = smap_get(&br->cfg->other_config, "mac-aging-time"); |
e764773c BP |
1594 | idle_time = (idle_time_str && atoi(idle_time_str) |
1595 | ? atoi(idle_time_str) | |
1596 | : MAC_ENTRY_DEFAULT_IDLE_TIME); | |
c4069512 BP |
1597 | |
1598 | mac_table_size_str = smap_get(&br->cfg->other_config, "mac-table-size"); | |
1599 | mac_table_size = (mac_table_size_str && atoi(mac_table_size_str) | |
1600 | ? atoi(mac_table_size_str) | |
1601 | : MAC_DEFAULT_MAX); | |
1602 | ||
1603 | ofproto_set_mac_table_config(br->ofproto, idle_time, mac_table_size); | |
e764773c BP |
1604 | } |
1605 | ||
064af421 | 1606 | static void |
21a955fc HS |
1607 | find_local_hw_addr(const struct bridge *br, uint8_t ea[ETH_ADDR_LEN], |
1608 | const struct port *fake_br, struct iface **hw_addr_iface) | |
064af421 | 1609 | { |
f145afdc | 1610 | struct hmapx mirror_output_ports; |
8052fb14 | 1611 | struct port *port; |
3a48ace3 | 1612 | bool found_addr = false; |
064af421 | 1613 | int error; |
f145afdc | 1614 | int i; |
064af421 | 1615 | |
f145afdc BP |
1616 | /* Mirror output ports don't participate in picking the local hardware |
1617 | * address. ofproto can't help us find out whether a given port is a | |
1618 | * mirror output because we haven't configured mirrors yet, so we need to | |
1619 | * accumulate them ourselves. */ | |
1620 | hmapx_init(&mirror_output_ports); | |
1621 | for (i = 0; i < br->cfg->n_mirrors; i++) { | |
1622 | struct ovsrec_mirror *m = br->cfg->mirrors[i]; | |
1623 | if (m->output_port) { | |
1624 | hmapx_add(&mirror_output_ports, m->output_port); | |
1625 | } | |
1626 | } | |
1627 | ||
141f4942 BP |
1628 | /* Otherwise choose the minimum non-local MAC address among all of the |
1629 | * interfaces. */ | |
8052fb14 | 1630 | HMAP_FOR_EACH (port, hmap_node, &br->ports) { |
58b7527e | 1631 | uint8_t iface_ea[ETH_ADDR_LEN]; |
83db7968 | 1632 | struct iface *candidate; |
58b7527e BP |
1633 | struct iface *iface; |
1634 | ||
1635 | /* Mirror output ports don't participate. */ | |
f145afdc | 1636 | if (hmapx_contains(&mirror_output_ports, port->cfg)) { |
064af421 BP |
1637 | continue; |
1638 | } | |
58b7527e BP |
1639 | |
1640 | /* Choose the MAC address to represent the port. */ | |
83db7968 | 1641 | iface = NULL; |
76343538 | 1642 | if (port->cfg->mac && eth_addr_from_string(port->cfg->mac, iface_ea)) { |
ba09980a BP |
1643 | /* Find the interface with this Ethernet address (if any) so that |
1644 | * we can provide the correct devname to the caller. */ | |
83db7968 | 1645 | LIST_FOR_EACH (candidate, port_elem, &port->ifaces) { |
ba09980a | 1646 | uint8_t candidate_ea[ETH_ADDR_LEN]; |
8fef8c71 | 1647 | if (!netdev_get_etheraddr(candidate->netdev, candidate_ea) |
ba09980a BP |
1648 | && eth_addr_equals(iface_ea, candidate_ea)) { |
1649 | iface = candidate; | |
1650 | } | |
1651 | } | |
58b7527e BP |
1652 | } else { |
1653 | /* Choose the interface whose MAC address will represent the port. | |
1654 | * The Linux kernel bonding code always chooses the MAC address of | |
1655 | * the first slave added to a bond, and the Fedora networking | |
1656 | * scripts always add slaves to a bond in alphabetical order, so | |
1657 | * for compatibility we choose the interface with the name that is | |
1658 | * first in alphabetical order. */ | |
83db7968 BP |
1659 | LIST_FOR_EACH (candidate, port_elem, &port->ifaces) { |
1660 | if (!iface || strcmp(candidate->name, iface->name) < 0) { | |
58b7527e BP |
1661 | iface = candidate; |
1662 | } | |
1663 | } | |
1664 | ||
1665 | /* The local port doesn't count (since we're trying to choose its | |
141f4942 | 1666 | * MAC address anyway). */ |
892815f5 | 1667 | if (iface->ofp_port == OFPP_LOCAL) { |
064af421 BP |
1668 | continue; |
1669 | } | |
58b7527e | 1670 | |
21a955fc HS |
1671 | /* For fake bridges we only choose from ports with the same tag */ |
1672 | if (fake_br && fake_br->cfg && fake_br->cfg->tag) { | |
1673 | if (!port->cfg->tag) { | |
1674 | continue; | |
1675 | } | |
1676 | if (*port->cfg->tag != *fake_br->cfg->tag) { | |
1677 | continue; | |
1678 | } | |
1679 | } | |
1680 | ||
58b7527e | 1681 | /* Grab MAC. */ |
07c318f4 | 1682 | error = netdev_get_etheraddr(iface->netdev, iface_ea); |
58b7527e | 1683 | if (error) { |
58b7527e | 1684 | continue; |
064af421 BP |
1685 | } |
1686 | } | |
58b7527e BP |
1687 | |
1688 | /* Compare against our current choice. */ | |
1689 | if (!eth_addr_is_multicast(iface_ea) && | |
141f4942 | 1690 | !eth_addr_is_local(iface_ea) && |
58b7527e BP |
1691 | !eth_addr_is_reserved(iface_ea) && |
1692 | !eth_addr_is_zero(iface_ea) && | |
0d1fe4a3 | 1693 | (!found_addr || eth_addr_compare_3way(iface_ea, ea) < 0)) |
58b7527e | 1694 | { |
0babc06f | 1695 | memcpy(ea, iface_ea, ETH_ADDR_LEN); |
8fef8c71 | 1696 | *hw_addr_iface = iface; |
3a48ace3 | 1697 | found_addr = true; |
58b7527e | 1698 | } |
064af421 | 1699 | } |
f145afdc | 1700 | |
51b67a10 JP |
1701 | if (!found_addr) { |
1702 | memcpy(ea, br->default_ea, ETH_ADDR_LEN); | |
1703 | *hw_addr_iface = NULL; | |
1704 | } | |
1705 | ||
f145afdc | 1706 | hmapx_destroy(&mirror_output_ports); |
064af421 BP |
1707 | } |
1708 | ||
4bc1cfde HS |
1709 | static void |
1710 | bridge_pick_local_hw_addr(struct bridge *br, uint8_t ea[ETH_ADDR_LEN], | |
1711 | struct iface **hw_addr_iface) | |
1712 | { | |
1713 | const char *hwaddr; | |
1714 | *hw_addr_iface = NULL; | |
1715 | ||
1716 | /* Did the user request a particular MAC? */ | |
1717 | hwaddr = smap_get(&br->cfg->other_config, "hwaddr"); | |
1718 | if (hwaddr && eth_addr_from_string(hwaddr, ea)) { | |
1719 | if (eth_addr_is_multicast(ea)) { | |
1720 | VLOG_ERR("bridge %s: cannot set MAC address to multicast " | |
1721 | "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea)); | |
1722 | } else if (eth_addr_is_zero(ea)) { | |
1723 | VLOG_ERR("bridge %s: cannot set MAC address to zero", br->name); | |
1724 | } else { | |
1725 | return; | |
1726 | } | |
1727 | } | |
1728 | ||
1729 | /* Find a local hw address */ | |
21a955fc | 1730 | find_local_hw_addr(br, ea, NULL, hw_addr_iface); |
4bc1cfde HS |
1731 | } |
1732 | ||
064af421 BP |
1733 | /* Choose and returns the datapath ID for bridge 'br' given that the bridge |
1734 | * Ethernet address is 'bridge_ea'. If 'bridge_ea' is the Ethernet address of | |
07c318f4 BP |
1735 | * an interface on 'br', then that interface must be passed in as |
1736 | * 'hw_addr_iface'; if 'bridge_ea' was derived some other way, then | |
1737 | * 'hw_addr_iface' must be passed in as a null pointer. */ | |
064af421 BP |
1738 | static uint64_t |
1739 | bridge_pick_datapath_id(struct bridge *br, | |
1740 | const uint8_t bridge_ea[ETH_ADDR_LEN], | |
07c318f4 | 1741 | struct iface *hw_addr_iface) |
064af421 BP |
1742 | { |
1743 | /* | |
1744 | * The procedure for choosing a bridge MAC address will, in the most | |
1745 | * ordinary case, also choose a unique MAC that we can use as a datapath | |
1746 | * ID. In some special cases, though, multiple bridges will end up with | |
1747 | * the same MAC address. This is OK for the bridges, but it will confuse | |
1748 | * the OpenFlow controller, because each datapath needs a unique datapath | |
1749 | * ID. | |
1750 | * | |
1751 | * Datapath IDs must be unique. It is also very desirable that they be | |
1752 | * stable from one run to the next, so that policy set on a datapath | |
1753 | * "sticks". | |
1754 | */ | |
093e47f4 | 1755 | const char *datapath_id; |
064af421 BP |
1756 | uint64_t dpid; |
1757 | ||
a699f614 | 1758 | datapath_id = smap_get(&br->cfg->other_config, "datapath-id"); |
093e47f4 | 1759 | if (datapath_id && dpid_from_string(datapath_id, &dpid)) { |
064af421 BP |
1760 | return dpid; |
1761 | } | |
1762 | ||
03eae5f8 | 1763 | if (!hw_addr_iface) { |
064af421 BP |
1764 | /* |
1765 | * A purely internal bridge, that is, one that has no non-virtual | |
03eae5f8 | 1766 | * network devices on it at all, is difficult because it has no |
064af421 BP |
1767 | * natural unique identifier at all. |
1768 | * | |
1769 | * When the host is a XenServer, we handle this case by hashing the | |
1770 | * host's UUID with the name of the bridge. Names of bridges are | |
1771 | * persistent across XenServer reboots, although they can be reused if | |
1772 | * an internal network is destroyed and then a new one is later | |
1773 | * created, so this is fairly effective. | |
1774 | * | |
1775 | * When the host is not a XenServer, we punt by using a random MAC | |
1776 | * address on each run. | |
1777 | */ | |
1778 | const char *host_uuid = xenserver_get_host_uuid(); | |
1779 | if (host_uuid) { | |
1780 | char *combined = xasprintf("%s,%s", host_uuid, br->name); | |
1781 | dpid = dpid_from_hash(combined, strlen(combined)); | |
1782 | free(combined); | |
1783 | return dpid; | |
1784 | } | |
1785 | } | |
1786 | ||
1787 | return eth_addr_to_uint64(bridge_ea); | |
1788 | } | |
1789 | ||
1790 | static uint64_t | |
1791 | dpid_from_hash(const void *data, size_t n) | |
1792 | { | |
5eccf359 | 1793 | uint8_t hash[SHA1_DIGEST_SIZE]; |
064af421 BP |
1794 | |
1795 | BUILD_ASSERT_DECL(sizeof hash >= ETH_ADDR_LEN); | |
5eccf359 | 1796 | sha1_bytes(data, n, hash); |
064af421 BP |
1797 | eth_addr_mark_random(hash); |
1798 | return eth_addr_to_uint64(hash); | |
1799 | } | |
1800 | ||
ea83a2fc | 1801 | static void |
6a5f9a8f | 1802 | iface_refresh_netdev_status(struct iface *iface) |
ea83a2fc | 1803 | { |
79f1cbe9 | 1804 | struct smap smap; |
ea763e0e | 1805 | |
6c038611 | 1806 | enum netdev_features current; |
6a5f9a8f AW |
1807 | enum netdev_flags flags; |
1808 | const char *link_state; | |
df867eda | 1809 | uint8_t mac[ETH_ADDR_LEN]; |
6a5f9a8f AW |
1810 | int64_t bps, mtu_64, ifindex64, link_resets; |
1811 | int mtu, error; | |
e210037e | 1812 | |
cfea354b BP |
1813 | if (iface_is_synthetic(iface)) { |
1814 | return; | |
1815 | } | |
1816 | ||
6a5f9a8f AW |
1817 | if (iface->change_seq == netdev_get_change_seq(iface->netdev)) { |
1818 | return; | |
1819 | } | |
1820 | ||
1821 | iface->change_seq = netdev_get_change_seq(iface->netdev); | |
1822 | ||
79f1cbe9 | 1823 | smap_init(&smap); |
ea763e0e | 1824 | |
275707c3 | 1825 | if (!netdev_get_status(iface->netdev, &smap)) { |
a699f614 | 1826 | ovsrec_interface_set_status(iface->cfg, &smap); |
ea763e0e | 1827 | } else { |
a699f614 | 1828 | ovsrec_interface_set_status(iface->cfg, NULL); |
ea763e0e EJ |
1829 | } |
1830 | ||
79f1cbe9 | 1831 | smap_destroy(&smap); |
e210037e | 1832 | |
6a5f9a8f AW |
1833 | error = netdev_get_flags(iface->netdev, &flags); |
1834 | if (!error) { | |
1835 | const char *state = flags & NETDEV_UP ? "up" : "down"; | |
1836 | ||
1837 | ovsrec_interface_set_admin_state(iface->cfg, state); | |
1838 | } else { | |
1839 | ovsrec_interface_set_admin_state(iface->cfg, NULL); | |
1840 | } | |
1841 | ||
1842 | link_state = netdev_get_carrier(iface->netdev) ? "up" : "down"; | |
1843 | ovsrec_interface_set_link_state(iface->cfg, link_state); | |
1844 | ||
1845 | link_resets = netdev_get_carrier_resets(iface->netdev); | |
1846 | ovsrec_interface_set_link_resets(iface->cfg, &link_resets, 1); | |
1847 | ||
e210037e | 1848 | error = netdev_get_features(iface->netdev, ¤t, NULL, NULL, NULL); |
d02a5f8e BP |
1849 | bps = !error ? netdev_features_to_bps(current, 0) : 0; |
1850 | if (bps) { | |
e210037e AE |
1851 | ovsrec_interface_set_duplex(iface->cfg, |
1852 | netdev_features_is_full_duplex(current) | |
1853 | ? "full" : "half"); | |
e210037e | 1854 | ovsrec_interface_set_link_speed(iface->cfg, &bps, 1); |
d0db8de2 | 1855 | } else { |
e210037e AE |
1856 | ovsrec_interface_set_duplex(iface->cfg, NULL); |
1857 | ovsrec_interface_set_link_speed(iface->cfg, NULL, 0); | |
1858 | } | |
1859 | ||
e210037e | 1860 | error = netdev_get_mtu(iface->netdev, &mtu); |
9b020780 | 1861 | if (!error) { |
e210037e AE |
1862 | mtu_64 = mtu; |
1863 | ovsrec_interface_set_mtu(iface->cfg, &mtu_64, 1); | |
8d6db33e | 1864 | } else { |
e210037e AE |
1865 | ovsrec_interface_set_mtu(iface->cfg, NULL, 0); |
1866 | } | |
df867eda JP |
1867 | |
1868 | error = netdev_get_etheraddr(iface->netdev, mac); | |
1869 | if (!error) { | |
1870 | char mac_string[32]; | |
1871 | ||
1872 | sprintf(mac_string, ETH_ADDR_FMT, ETH_ADDR_ARGS(mac)); | |
1873 | ovsrec_interface_set_mac_in_use(iface->cfg, mac_string); | |
1874 | } else { | |
1875 | ovsrec_interface_set_mac_in_use(iface->cfg, NULL); | |
1876 | } | |
ea401d9a NM |
1877 | |
1878 | /* The netdev may return a negative number (such as -EOPNOTSUPP) | |
1879 | * if there is no valid ifindex number. */ | |
1880 | ifindex64 = netdev_get_ifindex(iface->netdev); | |
1881 | if (ifindex64 < 0) { | |
1882 | ifindex64 = 0; | |
1883 | } | |
1884 | ovsrec_interface_set_ifindex(iface->cfg, &ifindex64, 1); | |
ea83a2fc EJ |
1885 | } |
1886 | ||
6a5f9a8f AW |
1887 | static void |
1888 | iface_refresh_ofproto_status(struct iface *iface) | |
1889 | { | |
1890 | struct smap smap; | |
1891 | int current, error; | |
1892 | ||
1893 | if (iface_is_synthetic(iface)) { | |
1894 | return; | |
1895 | } | |
1896 | ||
1897 | current = ofproto_port_is_lacp_current(iface->port->bridge->ofproto, | |
1898 | iface->ofp_port); | |
1899 | if (current >= 0) { | |
1900 | bool bl = current; | |
1901 | ovsrec_interface_set_lacp_current(iface->cfg, &bl, 1); | |
1902 | } else { | |
1903 | ovsrec_interface_set_lacp_current(iface->cfg, NULL, 0); | |
1904 | } | |
1905 | ||
1906 | iface_refresh_cfm_stats(iface); | |
1907 | ||
1908 | smap_init(&smap); | |
1909 | error = ofproto_port_get_bfd_status(iface->port->bridge->ofproto, | |
1910 | iface->ofp_port, &smap); | |
1911 | if (error >= 0) { | |
1912 | ovsrec_interface_set_bfd_status(iface->cfg, &smap); | |
1913 | } | |
1914 | smap_destroy(&smap); | |
1915 | } | |
1916 | ||
353079d0 EJ |
1917 | /* Writes 'iface''s CFM statistics to the database. 'iface' must not be |
1918 | * synthetic. */ | |
8f3fe844 | 1919 | static void |
b31bcf60 EJ |
1920 | iface_refresh_cfm_stats(struct iface *iface) |
1921 | { | |
93b8df38 | 1922 | const struct ovsrec_interface *cfg = iface->cfg; |
9a9e3786 | 1923 | struct ofproto_cfm_status status; |
88bf179a | 1924 | int error; |
9a9e3786 | 1925 | |
88bf179a AW |
1926 | error = ofproto_port_get_cfm_status(iface->port->bridge->ofproto, |
1927 | iface->ofp_port, &status); | |
1928 | if (error < 0) { | |
1929 | /* Do nothing if there is no status change since last update. */ | |
1930 | } else if (error > 0) { | |
9a9e3786 BP |
1931 | ovsrec_interface_set_cfm_fault(cfg, NULL, 0); |
1932 | ovsrec_interface_set_cfm_fault_status(cfg, NULL, 0); | |
1933 | ovsrec_interface_set_cfm_remote_opstate(cfg, NULL); | |
76c4290d | 1934 | ovsrec_interface_set_cfm_flap_count(cfg, NULL, 0); |
9a9e3786 BP |
1935 | ovsrec_interface_set_cfm_health(cfg, NULL, 0); |
1936 | ovsrec_interface_set_cfm_remote_mpids(cfg, NULL, 0); | |
1937 | } else { | |
b9380396 | 1938 | const char *reasons[CFM_FAULT_N_REASONS]; |
9a9e3786 | 1939 | int64_t cfm_health = status.health; |
76c4290d | 1940 | int64_t cfm_flap_count = status.flap_count; |
9a9e3786 | 1941 | bool faulted = status.faults != 0; |
b9380396 EJ |
1942 | size_t i, j; |
1943 | ||
9a9e3786 BP |
1944 | ovsrec_interface_set_cfm_fault(cfg, &faulted, 1); |
1945 | ||
b9380396 EJ |
1946 | j = 0; |
1947 | for (i = 0; i < CFM_FAULT_N_REASONS; i++) { | |
1948 | int reason = 1 << i; | |
9a9e3786 | 1949 | if (status.faults & reason) { |
b9380396 EJ |
1950 | reasons[j++] = cfm_fault_reason_to_str(reason); |
1951 | } | |
1952 | } | |
b9380396 | 1953 | ovsrec_interface_set_cfm_fault_status(cfg, (char **) reasons, j); |
1c0333b6 | 1954 | |
76c4290d AW |
1955 | ovsrec_interface_set_cfm_flap_count(cfg, &cfm_flap_count, 1); |
1956 | ||
18637fdc BP |
1957 | if (status.remote_opstate >= 0) { |
1958 | const char *remote_opstate = status.remote_opstate ? "up" : "down"; | |
1959 | ovsrec_interface_set_cfm_remote_opstate(cfg, remote_opstate); | |
1960 | } else { | |
1961 | ovsrec_interface_set_cfm_remote_opstate(cfg, NULL); | |
1962 | } | |
1963 | ||
9a9e3786 BP |
1964 | ovsrec_interface_set_cfm_remote_mpids(cfg, |
1965 | (const int64_t *)status.rmps, | |
1966 | status.n_rmps); | |
4cd9ab26 BP |
1967 | if (cfm_health >= 0) { |
1968 | ovsrec_interface_set_cfm_health(cfg, &cfm_health, 1); | |
1969 | } else { | |
1970 | ovsrec_interface_set_cfm_health(cfg, NULL, 0); | |
1971 | } | |
13b1b2ae EJ |
1972 | |
1973 | free(status.rmps); | |
3967a833 | 1974 | } |
b31bcf60 EJ |
1975 | } |
1976 | ||
018f1525 BP |
1977 | static void |
1978 | iface_refresh_stats(struct iface *iface) | |
1979 | { | |
98dbe2dd BP |
1980 | #define IFACE_STATS \ |
1981 | IFACE_STAT(rx_packets, "rx_packets") \ | |
1982 | IFACE_STAT(tx_packets, "tx_packets") \ | |
1983 | IFACE_STAT(rx_bytes, "rx_bytes") \ | |
1984 | IFACE_STAT(tx_bytes, "tx_bytes") \ | |
1985 | IFACE_STAT(rx_dropped, "rx_dropped") \ | |
1986 | IFACE_STAT(tx_dropped, "tx_dropped") \ | |
1987 | IFACE_STAT(rx_errors, "rx_errors") \ | |
1988 | IFACE_STAT(tx_errors, "tx_errors") \ | |
1989 | IFACE_STAT(rx_frame_errors, "rx_frame_err") \ | |
1990 | IFACE_STAT(rx_over_errors, "rx_over_err") \ | |
1991 | IFACE_STAT(rx_crc_errors, "rx_crc_err") \ | |
1992 | IFACE_STAT(collisions, "collisions") | |
1993 | ||
c2553db9 BP |
1994 | #define IFACE_STAT(MEMBER, NAME) + 1 |
1995 | enum { N_IFACE_STATS = IFACE_STATS }; | |
98dbe2dd | 1996 | #undef IFACE_STAT |
c2553db9 BP |
1997 | int64_t values[N_IFACE_STATS]; |
1998 | char *keys[N_IFACE_STATS]; | |
1999 | int n; | |
018f1525 BP |
2000 | |
2001 | struct netdev_stats stats; | |
2002 | ||
cfea354b BP |
2003 | if (iface_is_synthetic(iface)) { |
2004 | return; | |
2005 | } | |
2006 | ||
018f1525 BP |
2007 | /* Intentionally ignore return value, since errors will set 'stats' to |
2008 | * all-1s, and we will deal with that correctly below. */ | |
2009 | netdev_get_stats(iface->netdev, &stats); | |
2010 | ||
c2553db9 BP |
2011 | /* Copy statistics into keys[] and values[]. */ |
2012 | n = 0; | |
2013 | #define IFACE_STAT(MEMBER, NAME) \ | |
2014 | if (stats.MEMBER != UINT64_MAX) { \ | |
2015 | keys[n] = NAME; \ | |
2016 | values[n] = stats.MEMBER; \ | |
2017 | n++; \ | |
2018 | } | |
98dbe2dd BP |
2019 | IFACE_STATS; |
2020 | #undef IFACE_STAT | |
c2553db9 | 2021 | ovs_assert(n <= N_IFACE_STATS); |
018f1525 | 2022 | |
c2553db9 | 2023 | ovsrec_interface_set_statistics(iface->cfg, keys, values, n); |
98dbe2dd | 2024 | #undef IFACE_STATS |
018f1525 BP |
2025 | } |
2026 | ||
21f7563c JP |
2027 | static void |
2028 | br_refresh_stp_status(struct bridge *br) | |
2029 | { | |
a699f614 | 2030 | struct smap smap = SMAP_INITIALIZER(&smap); |
21f7563c JP |
2031 | struct ofproto *ofproto = br->ofproto; |
2032 | struct ofproto_stp_status status; | |
21f7563c JP |
2033 | |
2034 | if (ofproto_get_stp_status(ofproto, &status)) { | |
2035 | return; | |
2036 | } | |
2037 | ||
2038 | if (!status.enabled) { | |
a699f614 | 2039 | ovsrec_bridge_set_status(br->cfg, NULL); |
21f7563c JP |
2040 | return; |
2041 | } | |
2042 | ||
a699f614 EJ |
2043 | smap_add_format(&smap, "stp_bridge_id", STP_ID_FMT, |
2044 | STP_ID_ARGS(status.bridge_id)); | |
2045 | smap_add_format(&smap, "stp_designated_root", STP_ID_FMT, | |
2046 | STP_ID_ARGS(status.designated_root)); | |
2047 | smap_add_format(&smap, "stp_root_path_cost", "%d", status.root_path_cost); | |
21f7563c | 2048 | |
a699f614 EJ |
2049 | ovsrec_bridge_set_status(br->cfg, &smap); |
2050 | smap_destroy(&smap); | |
21f7563c JP |
2051 | } |
2052 | ||
2053 | static void | |
2054 | port_refresh_stp_status(struct port *port) | |
2055 | { | |
2056 | struct ofproto *ofproto = port->bridge->ofproto; | |
2057 | struct iface *iface; | |
2058 | struct ofproto_port_stp_status status; | |
a699f614 | 2059 | struct smap smap; |
21f7563c | 2060 | |
06b592bc EJ |
2061 | if (port_is_synthetic(port)) { |
2062 | return; | |
2063 | } | |
2064 | ||
21f7563c JP |
2065 | /* STP doesn't currently support bonds. */ |
2066 | if (!list_is_singleton(&port->ifaces)) { | |
a699f614 | 2067 | ovsrec_port_set_status(port->cfg, NULL); |
21f7563c JP |
2068 | return; |
2069 | } | |
2070 | ||
2071 | iface = CONTAINER_OF(list_front(&port->ifaces), struct iface, port_elem); | |
21f7563c JP |
2072 | if (ofproto_port_get_stp_status(ofproto, iface->ofp_port, &status)) { |
2073 | return; | |
2074 | } | |
2075 | ||
2076 | if (!status.enabled) { | |
a699f614 | 2077 | ovsrec_port_set_status(port->cfg, NULL); |
21f7563c JP |
2078 | return; |
2079 | } | |
2080 | ||
80740385 | 2081 | /* Set Status column. */ |
a699f614 EJ |
2082 | smap_init(&smap); |
2083 | smap_add_format(&smap, "stp_port_id", STP_PORT_ID_FMT, status.port_id); | |
2084 | smap_add(&smap, "stp_state", stp_state_name(status.state)); | |
2085 | smap_add_format(&smap, "stp_sec_in_state", "%u", status.sec_in_state); | |
2086 | smap_add(&smap, "stp_role", stp_role_name(status.role)); | |
2087 | ovsrec_port_set_status(port->cfg, &smap); | |
2088 | smap_destroy(&smap); | |
fd28ce3a JS |
2089 | } |
2090 | ||
2091 | static void | |
2092 | port_refresh_stp_stats(struct port *port) | |
2093 | { | |
2094 | struct ofproto *ofproto = port->bridge->ofproto; | |
2095 | struct iface *iface; | |
2096 | struct ofproto_port_stp_stats stats; | |
2097 | char *keys[3]; | |
2098 | int64_t int_values[3]; | |
2099 | ||
2100 | if (port_is_synthetic(port)) { | |
2101 | return; | |
2102 | } | |
2103 | ||
2104 | /* STP doesn't currently support bonds. */ | |
2105 | if (!list_is_singleton(&port->ifaces)) { | |
2106 | return; | |
2107 | } | |
2108 | ||
2109 | iface = CONTAINER_OF(list_front(&port->ifaces), struct iface, port_elem); | |
2110 | if (ofproto_port_get_stp_stats(ofproto, iface->ofp_port, &stats)) { | |
2111 | return; | |
2112 | } | |
2113 | ||
2114 | if (!stats.enabled) { | |
2115 | ovsrec_port_set_statistics(port->cfg, NULL, NULL, 0); | |
2116 | return; | |
2117 | } | |
80740385 JP |
2118 | |
2119 | /* Set Statistics column. */ | |
2120 | keys[0] = "stp_tx_count"; | |
fd28ce3a | 2121 | int_values[0] = stats.tx_count; |
80740385 | 2122 | keys[1] = "stp_rx_count"; |
fd28ce3a | 2123 | int_values[1] = stats.rx_count; |
80740385 | 2124 | keys[2] = "stp_error_count"; |
fd28ce3a | 2125 | int_values[2] = stats.error_count; |
80740385 JP |
2126 | |
2127 | ovsrec_port_set_statistics(port->cfg, keys, int_values, | |
2128 | ARRAY_SIZE(int_values)); | |
21f7563c JP |
2129 | } |
2130 | ||
3fe80505 BP |
2131 | static bool |
2132 | enable_system_stats(const struct ovsrec_open_vswitch *cfg) | |
2133 | { | |
a699f614 | 2134 | return smap_get_bool(&cfg->other_config, "enable-statistics", false); |
3fe80505 BP |
2135 | } |
2136 | ||
ce887677 | 2137 | static void |
35a22d8c | 2138 | reconfigure_system_stats(const struct ovsrec_open_vswitch *cfg) |
ce887677 | 2139 | { |
35a22d8c | 2140 | bool enable = enable_system_stats(cfg); |
ce887677 | 2141 | |
35a22d8c BP |
2142 | system_stats_enable(enable); |
2143 | if (!enable) { | |
2144 | ovsrec_open_vswitch_set_statistics(cfg, NULL); | |
3fe80505 | 2145 | } |
35a22d8c BP |
2146 | } |
2147 | ||
2148 | static void | |
2149 | run_system_stats(void) | |
2150 | { | |
2151 | const struct ovsrec_open_vswitch *cfg = ovsrec_open_vswitch_first(idl); | |
2152 | struct smap *stats; | |
2153 | ||
2154 | stats = system_stats_run(); | |
2155 | if (stats && cfg) { | |
2156 | struct ovsdb_idl_txn *txn; | |
2157 | struct ovsdb_datum datum; | |
2158 | ||
2159 | txn = ovsdb_idl_txn_create(idl); | |
2160 | ovsdb_datum_from_smap(&datum, stats); | |
2161 | ovsdb_idl_txn_write(&cfg->header_, &ovsrec_open_vswitch_col_statistics, | |
2162 | &datum); | |
2163 | ovsdb_idl_txn_commit(txn); | |
2164 | ovsdb_idl_txn_destroy(txn); | |
ce887677 | 2165 | |
35a22d8c BP |
2166 | free(stats); |
2167 | } | |
ce887677 BP |
2168 | } |
2169 | ||
61c75840 | 2170 | static const char * |
f4f1ea7e | 2171 | ofp12_controller_role_to_str(enum ofp12_controller_role role) |
bffc0589 AE |
2172 | { |
2173 | switch (role) { | |
f4f1ea7e | 2174 | case OFPCR12_ROLE_EQUAL: |
bffc0589 | 2175 | return "other"; |
f4f1ea7e | 2176 | case OFPCR12_ROLE_MASTER: |
bffc0589 | 2177 | return "master"; |
f4f1ea7e | 2178 | case OFPCR12_ROLE_SLAVE: |
bffc0589 | 2179 | return "slave"; |
f4f1ea7e | 2180 | case OFPCR12_ROLE_NOCHANGE: |
bffc0589 AE |
2181 | default: |
2182 | return "*** INVALID ROLE ***"; | |
2183 | } | |
2184 | } | |
2185 | ||
2186 | static void | |
5d279086 | 2187 | refresh_controller_status(void) |
bffc0589 | 2188 | { |
5d279086 | 2189 | struct bridge *br; |
bffc0589 AE |
2190 | struct shash info; |
2191 | const struct ovsrec_controller *cfg; | |
2192 | ||
5d279086 AE |
2193 | shash_init(&info); |
2194 | ||
2195 | /* Accumulate status for controllers on all bridges. */ | |
2196 | HMAP_FOR_EACH (br, node, &all_bridges) { | |
2197 | ofproto_get_ofproto_controller_info(br->ofproto, &info); | |
2198 | } | |
bffc0589 | 2199 | |
5d279086 | 2200 | /* Update each controller in the database with current status. */ |
bffc0589 | 2201 | OVSREC_CONTROLLER_FOR_EACH(cfg, idl) { |
eb9b8307 AE |
2202 | struct ofproto_controller_info *cinfo = |
2203 | shash_find_data(&info, cfg->target); | |
2204 | ||
2205 | if (cinfo) { | |
a699f614 EJ |
2206 | struct smap smap = SMAP_INITIALIZER(&smap); |
2207 | const char **values = cinfo->pairs.values; | |
2208 | const char **keys = cinfo->pairs.keys; | |
2209 | size_t i; | |
2210 | ||
2211 | for (i = 0; i < cinfo->pairs.n; i++) { | |
2212 | smap_add(&smap, keys[i], values[i]); | |
2213 | } | |
2214 | ||
eb9b8307 | 2215 | ovsrec_controller_set_is_connected(cfg, cinfo->is_connected); |
f4f1ea7e BP |
2216 | ovsrec_controller_set_role(cfg, ofp12_controller_role_to_str( |
2217 | cinfo->role)); | |
a699f614 EJ |
2218 | ovsrec_controller_set_status(cfg, &smap); |
2219 | smap_destroy(&smap); | |
eb9b8307 AE |
2220 | } else { |
2221 | ovsrec_controller_set_is_connected(cfg, false); | |
2222 | ovsrec_controller_set_role(cfg, NULL); | |
a699f614 | 2223 | ovsrec_controller_set_status(cfg, NULL); |
eb9b8307 | 2224 | } |
bffc0589 AE |
2225 | } |
2226 | ||
2227 | ofproto_free_ofproto_controller_info(&info); | |
2228 | } | |
b40dcae7 | 2229 | \f |
aeed7879 BP |
2230 | static void |
2231 | bridge_run__(void) | |
2232 | { | |
2233 | struct bridge *br; | |
2234 | struct sset types; | |
2235 | const char *type; | |
2236 | ||
2237 | /* Let each datapath type do the work that it needs to do. */ | |
2238 | sset_init(&types); | |
2239 | ofproto_enumerate_types(&types); | |
2240 | SSET_FOR_EACH (type, &types) { | |
2241 | ofproto_type_run(type); | |
2242 | } | |
2243 | sset_destroy(&types); | |
2244 | ||
2245 | /* Let each bridge do the work that it needs to do. */ | |
2246 | HMAP_FOR_EACH (br, node, &all_bridges) { | |
2247 | ofproto_run(br->ofproto); | |
2248 | } | |
2249 | } | |
2250 | ||
c5187f17 | 2251 | void |
064af421 BP |
2252 | bridge_run(void) |
2253 | { | |
8c0f519f | 2254 | static struct ovsrec_open_vswitch null_cfg; |
d54ff998 BP |
2255 | const struct ovsrec_open_vswitch *cfg; |
2256 | ||
52a90c29 | 2257 | bool vlan_splinters_changed; |
c5187f17 | 2258 | struct bridge *br; |
12eb035b | 2259 | int stats_interval; |
064af421 | 2260 | |
8c0f519f | 2261 | ovsrec_open_vswitch_init(&null_cfg); |
edce886c | 2262 | |
2a73b1d7 | 2263 | ovsdb_idl_run(idl); |
06b6d651 | 2264 | |
2a73b1d7 BP |
2265 | if (ovsdb_idl_is_lock_contended(idl)) { |
2266 | static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1); | |
2267 | struct bridge *br, *next_br; | |
06b6d651 | 2268 | |
2a73b1d7 BP |
2269 | VLOG_ERR_RL(&rl, "another ovs-vswitchd process is running, " |
2270 | "disabling this process (pid %ld) until it goes away", | |
2271 | (long int) getpid()); | |
bae7208e | 2272 | |
2a73b1d7 BP |
2273 | HMAP_FOR_EACH_SAFE (br, next_br, node, &all_bridges) { |
2274 | bridge_destroy(br); | |
06b6d651 | 2275 | } |
2a73b1d7 BP |
2276 | /* Since we will not be running system_stats_run() in this process |
2277 | * with the current situation of multiple ovs-vswitchd daemons, | |
2278 | * disable system stats collection. */ | |
2279 | system_stats_enable(false); | |
2280 | return; | |
2281 | } else if (!ovsdb_idl_has_lock(idl)) { | |
2282 | return; | |
06b6d651 BP |
2283 | } |
2284 | cfg = ovsrec_open_vswitch_first(idl); | |
2285 | ||
b0408fca JP |
2286 | /* Initialize the ofproto library. This only needs to run once, but |
2287 | * it must be done after the configuration is set. If the | |
2288 | * initialization has already occurred, bridge_init_ofproto() | |
2289 | * returns immediately. */ | |
2290 | bridge_init_ofproto(cfg); | |
2291 | ||
40358701 GS |
2292 | /* Once the value of flow-restore-wait is false, we no longer should |
2293 | * check its value from the database. */ | |
2294 | if (cfg && ofproto_get_flow_restore_wait()) { | |
2295 | ofproto_set_flow_restore_wait(smap_get_bool(&cfg->other_config, | |
2296 | "flow-restore-wait", false)); | |
2297 | } | |
2298 | ||
aeed7879 | 2299 | bridge_run__(); |
c5187f17 | 2300 | |
d6da96ce BP |
2301 | /* Re-configure SSL. We do this on every trip through the main loop, |
2302 | * instead of just when the database changes, because the contents of the | |
2303 | * key and certificate files can change without the database changing. | |
2304 | * | |
2305 | * We do this before bridge_reconfigure() because that function might | |
2306 | * initiate SSL connections and thus requires SSL to be configured. */ | |
2307 | if (cfg && cfg->ssl) { | |
2308 | const struct ovsrec_ssl *ssl = cfg->ssl; | |
2309 | ||
2310 | stream_ssl_set_key_and_cert(ssl->private_key, ssl->certificate); | |
2311 | stream_ssl_set_ca_cert_file(ssl->ca_cert, ssl->bootstrap_ca_cert); | |
2312 | } | |
bf8f2167 | 2313 | |
2a73b1d7 BP |
2314 | /* If VLAN splinters are in use, then we need to reconfigure if VLAN |
2315 | * usage has changed. */ | |
2316 | vlan_splinters_changed = false; | |
2317 | if (vlan_splinters_enabled_anywhere) { | |
2318 | HMAP_FOR_EACH (br, node, &all_bridges) { | |
2319 | if (ofproto_has_vlan_usage_changed(br->ofproto)) { | |
2320 | vlan_splinters_changed = true; | |
2321 | break; | |
52a90c29 BP |
2322 | } |
2323 | } | |
2324 | } | |
2325 | ||
2a73b1d7 BP |
2326 | if (ovsdb_idl_get_seqno(idl) != idl_seqno || vlan_splinters_changed) { |
2327 | struct ovsdb_idl_txn *txn; | |
ff02e9a5 | 2328 | |
2a73b1d7 BP |
2329 | idl_seqno = ovsdb_idl_get_seqno(idl); |
2330 | txn = ovsdb_idl_txn_create(idl); | |
2331 | bridge_reconfigure(cfg ? cfg : &null_cfg); | |
ff02e9a5 | 2332 | |
2a73b1d7 BP |
2333 | if (cfg) { |
2334 | ovsrec_open_vswitch_set_cur_cfg(cfg, cfg->next_cfg); | |
064af421 | 2335 | } |
018f1525 | 2336 | |
2a73b1d7 BP |
2337 | /* If we are completing our initial configuration for this run |
2338 | * of ovs-vswitchd, then keep the transaction around to monitor | |
2339 | * it for completion. */ | |
2340 | if (initial_config_done) { | |
2341 | ovsdb_idl_txn_commit(txn); | |
2342 | ovsdb_idl_txn_destroy(txn); | |
2343 | } else { | |
2344 | initial_config_done = true; | |
2345 | daemonize_txn = txn; | |
2346 | } | |
bae7208e EJ |
2347 | } |
2348 | ||
63ff04e8 BP |
2349 | if (daemonize_txn) { |
2350 | enum ovsdb_idl_txn_status status = ovsdb_idl_txn_commit(daemonize_txn); | |
2351 | if (status != TXN_INCOMPLETE) { | |
2352 | ovsdb_idl_txn_destroy(daemonize_txn); | |
2353 | daemonize_txn = NULL; | |
2354 | ||
2355 | /* ovs-vswitchd has completed initialization, so allow the | |
2356 | * process that forked us to exit successfully. */ | |
2357 | daemonize_complete(); | |
2358 | ||
888e0cf4 | 2359 | vlog_enable_async(); |
a5fb0e29 | 2360 | |
63ff04e8 BP |
2361 | VLOG_INFO_ONCE("%s (Open vSwitch) %s", program_name, VERSION); |
2362 | } | |
2363 | } | |
2364 | ||
12eb035b AW |
2365 | /* Statistics update interval should always be greater than or equal to |
2366 | * 5000 ms. */ | |
8c1c3342 YT |
2367 | if (cfg) { |
2368 | stats_interval = MAX(smap_get_int(&cfg->other_config, | |
2369 | "stats-update-interval", | |
2370 | 5000), 5000); | |
2371 | } else { | |
2372 | stats_interval = 5000; | |
2373 | } | |
12eb035b AW |
2374 | if (stats_timer_interval != stats_interval) { |
2375 | stats_timer_interval = stats_interval; | |
2376 | stats_timer = LLONG_MIN; | |
2377 | } | |
2378 | ||
35a22d8c | 2379 | /* Refresh interface and mirror stats if necessary. */ |
12eb035b | 2380 | if (time_msec() >= stats_timer) { |
ce887677 BP |
2381 | if (cfg) { |
2382 | struct ovsdb_idl_txn *txn; | |
018f1525 | 2383 | |
ce887677 | 2384 | txn = ovsdb_idl_txn_create(idl); |
764072fd | 2385 | HMAP_FOR_EACH (br, node, &all_bridges) { |
8052fb14 | 2386 | struct port *port; |
9d24de3b | 2387 | struct mirror *m; |
018f1525 | 2388 | |
8052fb14 | 2389 | HMAP_FOR_EACH (port, hmap_node, &br->ports) { |
83db7968 | 2390 | struct iface *iface; |
018f1525 | 2391 | |
83db7968 | 2392 | LIST_FOR_EACH (iface, port_elem, &port->ifaces) { |
ce887677 BP |
2393 | iface_refresh_stats(iface); |
2394 | } | |
fd28ce3a JS |
2395 | |
2396 | port_refresh_stp_stats(port); | |
018f1525 | 2397 | } |
9d24de3b JP |
2398 | |
2399 | HMAP_FOR_EACH (m, hmap_node, &br->mirrors) { | |
2400 | mirror_refresh_stats(m); | |
2401 | } | |
2402 | ||
018f1525 | 2403 | } |
5d279086 | 2404 | refresh_controller_status(); |
ce887677 BP |
2405 | ovsdb_idl_txn_commit(txn); |
2406 | ovsdb_idl_txn_destroy(txn); /* XXX */ | |
018f1525 | 2407 | } |
018f1525 | 2408 | |
12eb035b | 2409 | stats_timer = time_msec() + stats_timer_interval; |
018f1525 | 2410 | } |
6586adf5 | 2411 | |
6a5f9a8f AW |
2412 | if (!status_txn) { |
2413 | uint64_t seq; | |
2414 | ||
2415 | /* Check the need to update status. */ | |
2416 | seq = seq_read(connectivity_seq_get()); | |
2417 | if (seq != connectivity_seqno) { | |
2418 | connectivity_seqno = seq; | |
2419 | status_txn = ovsdb_idl_txn_create(idl); | |
2420 | HMAP_FOR_EACH (br, node, &all_bridges) { | |
2421 | struct port *port; | |
2422 | ||
2423 | br_refresh_stp_status(br); | |
2424 | HMAP_FOR_EACH (port, hmap_node, &br->ports) { | |
2425 | struct iface *iface; | |
2426 | ||
2427 | port_refresh_stp_status(port); | |
2428 | LIST_FOR_EACH (iface, port_elem, &port->ifaces) { | |
2429 | iface_refresh_netdev_status(iface); | |
2430 | iface_refresh_ofproto_status(iface); | |
2431 | } | |
2432 | } | |
2433 | } | |
2434 | } | |
2435 | } | |
2436 | ||
2437 | if (status_txn) { | |
2438 | enum ovsdb_idl_txn_status status; | |
2439 | ||
2440 | status = ovsdb_idl_txn_commit(status_txn); | |
2441 | /* Do not destroy "status_txn" if the transaction is | |
2442 | * "TXN_INCOMPLETE". */ | |
2443 | if (status != TXN_INCOMPLETE) { | |
2444 | ovsdb_idl_txn_destroy(status_txn); | |
2445 | status_txn = NULL; | |
2446 | } | |
2447 | } | |
2448 | ||
35a22d8c | 2449 | run_system_stats(); |
064af421 BP |
2450 | } |
2451 | ||
2452 | void | |
2453 | bridge_wait(void) | |
2454 | { | |
11a574a7 JP |
2455 | struct sset types; |
2456 | const char *type; | |
2457 | ||
c5187f17 | 2458 | ovsdb_idl_wait(idl); |
63ff04e8 BP |
2459 | if (daemonize_txn) { |
2460 | ovsdb_idl_txn_wait(daemonize_txn); | |
2461 | } | |
c7e7bb21 | 2462 | |
11a574a7 JP |
2463 | sset_init(&types); |
2464 | ofproto_enumerate_types(&types); | |
2465 | SSET_FOR_EACH (type, &types) { | |
2466 | ofproto_type_wait(type); | |
2467 | } | |
2468 | sset_destroy(&types); | |
2469 | ||
06b6d651 BP |
2470 | if (!hmap_is_empty(&all_bridges)) { |
2471 | struct bridge *br; | |
6586adf5 | 2472 | |
06b6d651 BP |
2473 | HMAP_FOR_EACH (br, node, &all_bridges) { |
2474 | ofproto_wait(br->ofproto); | |
2475 | } | |
12eb035b AW |
2476 | |
2477 | poll_timer_wait_until(stats_timer); | |
6586adf5 | 2478 | } |
35a22d8c | 2479 | |
6a5f9a8f AW |
2480 | /* If the status database transaction is 'TXN_INCOMPLETE' in this run, |
2481 | * register a timeout in 'STATUS_CHECK_AGAIN_MSEC'. Else, wait on the | |
2482 | * global connectivity sequence number. Note, this also helps batch | |
2483 | * multiple status changes into one transaction. */ | |
2484 | if (status_txn) { | |
2485 | poll_timer_wait_until(time_msec() + STATUS_CHECK_AGAIN_MSEC); | |
2486 | } else { | |
2487 | seq_wait(connectivity_seq_get(), connectivity_seqno); | |
2488 | } | |
2489 | ||
35a22d8c | 2490 | system_stats_wait(); |
064af421 | 2491 | } |
0d085684 BP |
2492 | |
2493 | /* Adds some memory usage statistics for bridges into 'usage', for use with | |
2494 | * memory_report(). */ | |
2495 | void | |
2496 | bridge_get_memory_usage(struct simap *usage) | |
2497 | { | |
2498 | struct bridge *br; | |
1c030aa5 EJ |
2499 | struct sset types; |
2500 | const char *type; | |
2501 | ||
2502 | sset_init(&types); | |
2503 | ofproto_enumerate_types(&types); | |
2504 | SSET_FOR_EACH (type, &types) { | |
2505 | ofproto_type_get_memory_usage(type, usage); | |
2506 | } | |
2507 | sset_destroy(&types); | |
0d085684 BP |
2508 | |
2509 | HMAP_FOR_EACH (br, node, &all_bridges) { | |
2510 | ofproto_get_memory_usage(br->ofproto, usage); | |
2511 | } | |
2512 | } | |
8c4c1387 | 2513 | \f |
e8fe3026 EJ |
2514 | /* QoS unixctl user interface functions. */ |
2515 | ||
2516 | struct qos_unixctl_show_cbdata { | |
2517 | struct ds *ds; | |
2518 | struct iface *iface; | |
2519 | }; | |
2520 | ||
2521 | static void | |
89454bf4 BP |
2522 | qos_unixctl_show_queue(unsigned int queue_id, |
2523 | const struct smap *details, | |
2524 | struct iface *iface, | |
2525 | struct ds *ds) | |
e8fe3026 | 2526 | { |
e8fe3026 | 2527 | struct netdev_queue_stats stats; |
79f1cbe9 | 2528 | struct smap_node *node; |
e8fe3026 EJ |
2529 | int error; |
2530 | ||
2531 | ds_put_cstr(ds, "\n"); | |
2532 | if (queue_id) { | |
2533 | ds_put_format(ds, "Queue %u:\n", queue_id); | |
2534 | } else { | |
2535 | ds_put_cstr(ds, "Default:\n"); | |
2536 | } | |
2537 | ||
79f1cbe9 EJ |
2538 | SMAP_FOR_EACH (node, details) { |
2539 | ds_put_format(ds, "\t%s: %s\n", node->key, node->value); | |
e8fe3026 EJ |
2540 | } |
2541 | ||
2542 | error = netdev_get_queue_stats(iface->netdev, queue_id, &stats); | |
2543 | if (!error) { | |
2544 | if (stats.tx_packets != UINT64_MAX) { | |
2545 | ds_put_format(ds, "\ttx_packets: %"PRIu64"\n", stats.tx_packets); | |
2546 | } | |
2547 | ||
2548 | if (stats.tx_bytes != UINT64_MAX) { | |
2549 | ds_put_format(ds, "\ttx_bytes: %"PRIu64"\n", stats.tx_bytes); | |
2550 | } | |
2551 | ||
2552 | if (stats.tx_errors != UINT64_MAX) { | |
2553 | ds_put_format(ds, "\ttx_errors: %"PRIu64"\n", stats.tx_errors); | |
2554 | } | |
2555 | } else { | |
2556 | ds_put_format(ds, "\tFailed to get statistics for queue %u: %s", | |
10a89ef0 | 2557 | queue_id, ovs_strerror(error)); |
e8fe3026 EJ |
2558 | } |
2559 | } | |
2560 | ||
2561 | static void | |
0e15264f BP |
2562 | qos_unixctl_show(struct unixctl_conn *conn, int argc OVS_UNUSED, |
2563 | const char *argv[], void *aux OVS_UNUSED) | |
e8fe3026 EJ |
2564 | { |
2565 | struct ds ds = DS_EMPTY_INITIALIZER; | |
79f1cbe9 | 2566 | struct smap smap = SMAP_INITIALIZER(&smap); |
e8fe3026 EJ |
2567 | struct iface *iface; |
2568 | const char *type; | |
79f1cbe9 | 2569 | struct smap_node *node; |
e8fe3026 | 2570 | |
0e15264f | 2571 | iface = iface_find(argv[1]); |
e8fe3026 | 2572 | if (!iface) { |
bde9f75d | 2573 | unixctl_command_reply_error(conn, "no such interface"); |
e8fe3026 EJ |
2574 | return; |
2575 | } | |
2576 | ||
79f1cbe9 | 2577 | netdev_get_qos(iface->netdev, &type, &smap); |
e8fe3026 EJ |
2578 | |
2579 | if (*type != '\0') { | |
89454bf4 BP |
2580 | struct netdev_queue_dump dump; |
2581 | struct smap details; | |
2582 | unsigned int queue_id; | |
2583 | ||
e8fe3026 EJ |
2584 | ds_put_format(&ds, "QoS: %s %s\n", iface->name, type); |
2585 | ||
79f1cbe9 EJ |
2586 | SMAP_FOR_EACH (node, &smap) { |
2587 | ds_put_format(&ds, "%s: %s\n", node->key, node->value); | |
e8fe3026 EJ |
2588 | } |
2589 | ||
89454bf4 BP |
2590 | smap_init(&details); |
2591 | NETDEV_QUEUE_FOR_EACH (&queue_id, &details, &dump, iface->netdev) { | |
2592 | qos_unixctl_show_queue(queue_id, &details, iface, &ds); | |
e8fe3026 | 2593 | } |
89454bf4 BP |
2594 | smap_destroy(&details); |
2595 | ||
bde9f75d | 2596 | unixctl_command_reply(conn, ds_cstr(&ds)); |
e8fe3026 EJ |
2597 | } else { |
2598 | ds_put_format(&ds, "QoS not configured on %s\n", iface->name); | |
bde9f75d | 2599 | unixctl_command_reply_error(conn, ds_cstr(&ds)); |
e8fe3026 EJ |
2600 | } |
2601 | ||
79f1cbe9 | 2602 | smap_destroy(&smap); |
e8fe3026 EJ |
2603 | ds_destroy(&ds); |
2604 | } | |
2605 | \f | |
064af421 | 2606 | /* Bridge reconfiguration functions. */ |
66da9bef | 2607 | static void |
1a6f1e2a | 2608 | bridge_create(const struct ovsrec_bridge *br_cfg) |
064af421 BP |
2609 | { |
2610 | struct bridge *br; | |
064af421 | 2611 | |
cb22974d | 2612 | ovs_assert(!bridge_lookup(br_cfg->name)); |
ec6fde61 | 2613 | br = xzalloc(sizeof *br); |
064af421 | 2614 | |
1a6f1e2a | 2615 | br->name = xstrdup(br_cfg->name); |
f79e673f | 2616 | br->type = xstrdup(ofproto_normalize_type(br_cfg->datapath_type)); |
1a6f1e2a | 2617 | br->cfg = br_cfg; |
e3f55cb8 BP |
2618 | |
2619 | /* Derive the default Ethernet address from the bridge's UUID. This should | |
2620 | * be unique and it will be stable between ovs-vswitchd runs. */ | |
2621 | memcpy(br->default_ea, &br_cfg->header_.uuid, ETH_ADDR_LEN); | |
2622 | eth_addr_mark_random(br->default_ea); | |
064af421 | 2623 | |
8052fb14 | 2624 | hmap_init(&br->ports); |
d9a8717a | 2625 | hmap_init(&br->ifaces); |
ebea37cc | 2626 | hmap_init(&br->iface_by_name); |
fa066f01 | 2627 | hmap_init(&br->mirrors); |
4a1ee6ae | 2628 | |
764072fd | 2629 | hmap_insert(&all_bridges, &br->node, hash_string(br->name, 0)); |
064af421 BP |
2630 | } |
2631 | ||
2632 | static void | |
2633 | bridge_destroy(struct bridge *br) | |
2634 | { | |
2635 | if (br) { | |
fa066f01 BP |
2636 | struct mirror *mirror, *next_mirror; |
2637 | struct port *port, *next_port; | |
064af421 | 2638 | |
fa066f01 | 2639 | HMAP_FOR_EACH_SAFE (port, next_port, hmap_node, &br->ports) { |
8052fb14 | 2640 | port_destroy(port); |
064af421 | 2641 | } |
fa066f01 BP |
2642 | HMAP_FOR_EACH_SAFE (mirror, next_mirror, hmap_node, &br->mirrors) { |
2643 | mirror_destroy(mirror); | |
f76e2dfc | 2644 | } |
bae7208e | 2645 | |
764072fd | 2646 | hmap_remove(&all_bridges, &br->node); |
6d6ab93e | 2647 | ofproto_destroy(br->ofproto); |
d9a8717a | 2648 | hmap_destroy(&br->ifaces); |
8052fb14 | 2649 | hmap_destroy(&br->ports); |
ebea37cc | 2650 | hmap_destroy(&br->iface_by_name); |
fa066f01 | 2651 | hmap_destroy(&br->mirrors); |
064af421 | 2652 | free(br->name); |
66da9bef | 2653 | free(br->type); |
064af421 BP |
2654 | free(br); |
2655 | } | |
2656 | } | |
2657 | ||
2658 | static struct bridge * | |
2659 | bridge_lookup(const char *name) | |
2660 | { | |
2661 | struct bridge *br; | |
2662 | ||
764072fd | 2663 | HMAP_FOR_EACH_WITH_HASH (br, node, hash_string(name, 0), &all_bridges) { |
064af421 BP |
2664 | if (!strcmp(br->name, name)) { |
2665 | return br; | |
2666 | } | |
2667 | } | |
2668 | return NULL; | |
2669 | } | |
2670 | ||
4f2cad2c JP |
2671 | /* Handle requests for a listing of all flows known by the OpenFlow |
2672 | * stack, including those normally hidden. */ | |
2673 | static void | |
0e15264f BP |
2674 | bridge_unixctl_dump_flows(struct unixctl_conn *conn, int argc OVS_UNUSED, |
2675 | const char *argv[], void *aux OVS_UNUSED) | |
4f2cad2c JP |
2676 | { |
2677 | struct bridge *br; | |
2678 | struct ds results; | |
d295e8e9 | 2679 | |
0e15264f | 2680 | br = bridge_lookup(argv[1]); |
4f2cad2c | 2681 | if (!br) { |
bde9f75d | 2682 | unixctl_command_reply_error(conn, "Unknown bridge"); |
4f2cad2c JP |
2683 | return; |
2684 | } | |
2685 | ||
2686 | ds_init(&results); | |
2687 | ofproto_get_all_flows(br->ofproto, &results); | |
2688 | ||
bde9f75d | 2689 | unixctl_command_reply(conn, ds_cstr(&results)); |
4f2cad2c JP |
2690 | ds_destroy(&results); |
2691 | } | |
2692 | ||
fa05809b BP |
2693 | /* "bridge/reconnect [BRIDGE]": makes BRIDGE drop all of its controller |
2694 | * connections and reconnect. If BRIDGE is not specified, then all bridges | |
2695 | * drop their controller connections and reconnect. */ | |
2696 | static void | |
0e15264f BP |
2697 | bridge_unixctl_reconnect(struct unixctl_conn *conn, int argc, |
2698 | const char *argv[], void *aux OVS_UNUSED) | |
fa05809b BP |
2699 | { |
2700 | struct bridge *br; | |
0e15264f BP |
2701 | if (argc > 1) { |
2702 | br = bridge_lookup(argv[1]); | |
fa05809b | 2703 | if (!br) { |
bde9f75d | 2704 | unixctl_command_reply_error(conn, "Unknown bridge"); |
fa05809b BP |
2705 | return; |
2706 | } | |
2707 | ofproto_reconnect_controllers(br->ofproto); | |
2708 | } else { | |
764072fd | 2709 | HMAP_FOR_EACH (br, node, &all_bridges) { |
fa05809b BP |
2710 | ofproto_reconnect_controllers(br->ofproto); |
2711 | } | |
2712 | } | |
bde9f75d | 2713 | unixctl_command_reply(conn, NULL); |
fa05809b BP |
2714 | } |
2715 | ||
76ce9432 | 2716 | static size_t |
1a048029 | 2717 | bridge_get_controllers(const struct bridge *br, |
76ce9432 | 2718 | struct ovsrec_controller ***controllersp) |
064af421 | 2719 | { |
76ce9432 BP |
2720 | struct ovsrec_controller **controllers; |
2721 | size_t n_controllers; | |
064af421 | 2722 | |
1a048029 JP |
2723 | controllers = br->cfg->controller; |
2724 | n_controllers = br->cfg->n_controller; | |
76343538 | 2725 | |
76ce9432 BP |
2726 | if (n_controllers == 1 && !strcmp(controllers[0]->target, "none")) { |
2727 | controllers = NULL; | |
2728 | n_controllers = 0; | |
064af421 | 2729 | } |
76343538 | 2730 | |
76ce9432 BP |
2731 | if (controllersp) { |
2732 | *controllersp = controllers; | |
2733 | } | |
2734 | return n_controllers; | |
064af421 BP |
2735 | } |
2736 | ||
bae7208e | 2737 | static void |
2a73b1d7 BP |
2738 | bridge_collect_wanted_ports(struct bridge *br, |
2739 | const unsigned long int *splinter_vlans, | |
2740 | struct shash *wanted_ports) | |
bae7208e | 2741 | { |
6ae39834 | 2742 | size_t i; |
064af421 | 2743 | |
2a73b1d7 | 2744 | shash_init(wanted_ports); |
bae7208e | 2745 | |
76343538 BP |
2746 | for (i = 0; i < br->cfg->n_ports; i++) { |
2747 | const char *name = br->cfg->ports[i]->name; | |
2a73b1d7 | 2748 | if (!shash_add_once(wanted_ports, name, br->cfg->ports[i])) { |
76343538 BP |
2749 | VLOG_WARN("bridge %s: %s specified twice as bridge port", |
2750 | br->name, name); | |
2751 | } | |
2752 | } | |
b5827b24 | 2753 | if (bridge_get_controllers(br, NULL) |
2a73b1d7 | 2754 | && !shash_find(wanted_ports, br->name)) { |
cfea354b BP |
2755 | VLOG_WARN("bridge %s: no port named %s, synthesizing one", |
2756 | br->name, br->name); | |
72865317 | 2757 | |
a699f614 EJ |
2758 | ovsrec_interface_init(&br->synth_local_iface); |
2759 | ovsrec_port_init(&br->synth_local_port); | |
2760 | ||
cfea354b BP |
2761 | br->synth_local_port.interfaces = &br->synth_local_ifacep; |
2762 | br->synth_local_port.n_interfaces = 1; | |
2763 | br->synth_local_port.name = br->name; | |
2764 | ||
2765 | br->synth_local_iface.name = br->name; | |
66da9bef | 2766 | br->synth_local_iface.type = "internal"; |
cfea354b BP |
2767 | |
2768 | br->synth_local_ifacep = &br->synth_local_iface; | |
2769 | ||
2a73b1d7 | 2770 | shash_add(wanted_ports, br->name, &br->synth_local_port); |
064af421 | 2771 | } |
064af421 | 2772 | |
52a90c29 | 2773 | if (splinter_vlans) { |
2a73b1d7 | 2774 | add_vlan_splinter_ports(br, splinter_vlans, wanted_ports); |
52a90c29 | 2775 | } |
2a73b1d7 BP |
2776 | } |
2777 | ||
2778 | /* Deletes "struct port"s and "struct iface"s under 'br' which aren't | |
2779 | * consistent with 'br->cfg'. Updates 'br->if_cfg_queue' with interfaces which | |
2780 | * 'br' needs to complete its configuration. */ | |
2781 | static void | |
2782 | bridge_del_ports(struct bridge *br, const struct shash *wanted_ports) | |
2783 | { | |
2784 | struct shash_node *port_node; | |
2785 | struct port *port, *next; | |
52a90c29 | 2786 | |
4a1ee6ae | 2787 | /* Get rid of deleted ports. |
a70e4b2a | 2788 | * Get rid of deleted interfaces on ports that still exist. */ |
8052fb14 | 2789 | HMAP_FOR_EACH_SAFE (port, next, hmap_node, &br->ports) { |
2a73b1d7 | 2790 | port->cfg = shash_find_data(wanted_ports, port->name); |
66da9bef | 2791 | if (!port->cfg) { |
4a1ee6ae BP |
2792 | port_destroy(port); |
2793 | } else { | |
66da9bef | 2794 | port_del_ifaces(port); |
064af421 BP |
2795 | } |
2796 | } | |
4a1ee6ae | 2797 | |
2a73b1d7 BP |
2798 | /* Update iface->cfg and iface->type in interfaces that still exist. */ |
2799 | SHASH_FOR_EACH (port_node, wanted_ports) { | |
bae7208e EJ |
2800 | const struct ovsrec_port *port = port_node->data; |
2801 | size_t i; | |
2802 | ||
2803 | for (i = 0; i < port->n_interfaces; i++) { | |
2804 | const struct ovsrec_interface *cfg = port->interfaces[i]; | |
2805 | struct iface *iface = iface_lookup(br, cfg->name); | |
046f1f89 | 2806 | const char *type = iface_get_type(cfg, br->cfg); |
bae7208e EJ |
2807 | |
2808 | if (iface) { | |
2809 | iface->cfg = cfg; | |
046f1f89 | 2810 | iface->type = type; |
0faed346 EJ |
2811 | } else if (!strcmp(type, "null")) { |
2812 | VLOG_WARN_ONCE("%s: The null interface type is deprecated and" | |
2813 | " may be removed in February 2013. Please email" | |
2814 | " dev@openvswitch.org with concerns.", | |
2815 | cfg->name); | |
2816 | } else { | |
2a73b1d7 | 2817 | /* We will add new interfaces later. */ |
bae7208e | 2818 | } |
ceb4559f | 2819 | } |
064af421 | 2820 | } |
064af421 BP |
2821 | } |
2822 | ||
7d674866 BP |
2823 | /* Initializes 'oc' appropriately as a management service controller for |
2824 | * 'br'. | |
2825 | * | |
2826 | * The caller must free oc->target when it is no longer needed. */ | |
2827 | static void | |
2828 | bridge_ofproto_controller_for_mgmt(const struct bridge *br, | |
2829 | struct ofproto_controller *oc) | |
2830 | { | |
b43c6fe2 | 2831 | oc->target = xasprintf("punix:%s/%s.mgmt", ovs_rundir(), br->name); |
7d674866 BP |
2832 | oc->max_backoff = 0; |
2833 | oc->probe_interval = 60; | |
2834 | oc->band = OFPROTO_OUT_OF_BAND; | |
7d674866 BP |
2835 | oc->rate_limit = 0; |
2836 | oc->burst_limit = 0; | |
9886b662 | 2837 | oc->enable_async_msgs = true; |
7d674866 BP |
2838 | } |
2839 | ||
2840 | /* Converts ovsrec_controller 'c' into an ofproto_controller in 'oc'. */ | |
2841 | static void | |
2842 | bridge_ofproto_controller_from_ovsrec(const struct ovsrec_controller *c, | |
2843 | struct ofproto_controller *oc) | |
2844 | { | |
a699f614 | 2845 | int dscp; |
f125905c | 2846 | |
7d674866 BP |
2847 | oc->target = c->target; |
2848 | oc->max_backoff = c->max_backoff ? *c->max_backoff / 1000 : 8; | |
2849 | oc->probe_interval = c->inactivity_probe ? *c->inactivity_probe / 1000 : 5; | |
2850 | oc->band = (!c->connection_mode || !strcmp(c->connection_mode, "in-band") | |
2851 | ? OFPROTO_IN_BAND : OFPROTO_OUT_OF_BAND); | |
7d674866 BP |
2852 | oc->rate_limit = c->controller_rate_limit ? *c->controller_rate_limit : 0; |
2853 | oc->burst_limit = (c->controller_burst_limit | |
2854 | ? *c->controller_burst_limit : 0); | |
9886b662 BP |
2855 | oc->enable_async_msgs = (!c->enable_async_messages |
2856 | || *c->enable_async_messages); | |
a699f614 EJ |
2857 | dscp = smap_get_int(&c->other_config, "dscp", DSCP_DEFAULT); |
2858 | if (dscp < 0 || dscp > 63) { | |
2859 | dscp = DSCP_DEFAULT; | |
f125905c | 2860 | } |
a699f614 | 2861 | oc->dscp = dscp; |
7d674866 BP |
2862 | } |
2863 | ||
2864 | /* Configures the IP stack for 'br''s local interface properly according to the | |
2865 | * configuration in 'c'. */ | |
2866 | static void | |
2867 | bridge_configure_local_iface_netdev(struct bridge *br, | |
2868 | struct ovsrec_controller *c) | |
2869 | { | |
2870 | struct netdev *netdev; | |
2871 | struct in_addr mask, gateway; | |
2872 | ||
2873 | struct iface *local_iface; | |
2874 | struct in_addr ip; | |
2875 | ||
7d674866 | 2876 | /* If there's no local interface or no IP address, give up. */ |
892815f5 | 2877 | local_iface = iface_from_ofp_port(br, OFPP_LOCAL); |
1bbd1728 GS |
2878 | if (!local_iface || !c->local_ip |
2879 | || !inet_pton(AF_INET, c->local_ip, &ip)) { | |
7d674866 BP |
2880 | return; |
2881 | } | |
2882 | ||
2883 | /* Bring up the local interface. */ | |
2884 | netdev = local_iface->netdev; | |
4b609110 | 2885 | netdev_turn_flags_on(netdev, NETDEV_UP, NULL); |
7d674866 BP |
2886 | |
2887 | /* Configure the IP address and netmask. */ | |
2888 | if (!c->local_netmask | |
1bbd1728 | 2889 | || !inet_pton(AF_INET, c->local_netmask, &mask) |
7d674866 BP |
2890 | || !mask.s_addr) { |
2891 | mask.s_addr = guess_netmask(ip.s_addr); | |
2892 | } | |
2893 | if (!netdev_set_in4(netdev, ip, mask)) { | |
2894 | VLOG_INFO("bridge %s: configured IP address "IP_FMT", netmask "IP_FMT, | |
ed36537e | 2895 | br->name, IP_ARGS(ip.s_addr), IP_ARGS(mask.s_addr)); |
7d674866 BP |
2896 | } |
2897 | ||
2898 | /* Configure the default gateway. */ | |
2899 | if (c->local_gateway | |
1bbd1728 | 2900 | && inet_pton(AF_INET, c->local_gateway, &gateway) |
7d674866 BP |
2901 | && gateway.s_addr) { |
2902 | if (!netdev_add_router(netdev, gateway)) { | |
2903 | VLOG_INFO("bridge %s: configured gateway "IP_FMT, | |
ed36537e | 2904 | br->name, IP_ARGS(gateway.s_addr)); |
7d674866 BP |
2905 | } |
2906 | } | |
2907 | } | |
2908 | ||
cb4ef1ea BP |
2909 | /* Returns true if 'a' and 'b' are the same except that any number of slashes |
2910 | * in either string are treated as equal to any number of slashes in the other, | |
329e3462 PR |
2911 | * e.g. "x///y" is equal to "x/y". |
2912 | * | |
2913 | * Also, if 'b_stoplen' bytes from 'b' are found to be equal to corresponding | |
2914 | * bytes from 'a', the function considers this success. Specify 'b_stoplen' as | |
2915 | * SIZE_MAX to compare all of 'a' to all of 'b' rather than just a prefix of | |
2916 | * 'b' against a prefix of 'a'. | |
2917 | */ | |
cb4ef1ea | 2918 | static bool |
329e3462 | 2919 | equal_pathnames(const char *a, const char *b, size_t b_stoplen) |
cb4ef1ea | 2920 | { |
329e3462 | 2921 | const char *b_start = b; |
4a1d4e86 BP |
2922 | for (;;) { |
2923 | if (b - b_start >= b_stoplen) { | |
2924 | return true; | |
2925 | } else if (*a != *b) { | |
2926 | return false; | |
2927 | } else if (*a == '/') { | |
cb4ef1ea BP |
2928 | a += strspn(a, "/"); |
2929 | b += strspn(b, "/"); | |
2930 | } else if (*a == '\0') { | |
2931 | return true; | |
2932 | } else { | |
2933 | a++; | |
2934 | b++; | |
2935 | } | |
2936 | } | |
cb4ef1ea BP |
2937 | } |
2938 | ||
064af421 | 2939 | static void |
fa066f01 BP |
2940 | bridge_configure_remotes(struct bridge *br, |
2941 | const struct sockaddr_in *managers, size_t n_managers) | |
064af421 | 2942 | { |
a699f614 | 2943 | bool disable_in_band; |
b1da6250 | 2944 | |
76ce9432 BP |
2945 | struct ovsrec_controller **controllers; |
2946 | size_t n_controllers; | |
7d674866 | 2947 | |
66da9bef | 2948 | enum ofproto_fail_mode fail_mode; |
7d674866 BP |
2949 | |
2950 | struct ofproto_controller *ocs; | |
2951 | size_t n_ocs; | |
2952 | size_t i; | |
064af421 | 2953 | |
8731b2b6 | 2954 | /* Check if we should disable in-band control on this bridge. */ |
a699f614 EJ |
2955 | disable_in_band = smap_get_bool(&br->cfg->other_config, "disable-in-band", |
2956 | false); | |
8731b2b6 | 2957 | |
b1da6250 | 2958 | /* Set OpenFlow queue ID for in-band control. */ |
a699f614 EJ |
2959 | ofproto_set_in_band_queue(br->ofproto, |
2960 | smap_get_int(&br->cfg->other_config, | |
2961 | "in-band-queue", -1)); | |
b1da6250 | 2962 | |
8731b2b6 JP |
2963 | if (disable_in_band) { |
2964 | ofproto_set_extra_in_band_remotes(br->ofproto, NULL, 0); | |
2965 | } else { | |
2966 | ofproto_set_extra_in_band_remotes(br->ofproto, managers, n_managers); | |
2967 | } | |
cd11000b | 2968 | |
1a048029 | 2969 | n_controllers = bridge_get_controllers(br, &controllers); |
064af421 | 2970 | |
7d674866 BP |
2971 | ocs = xmalloc((n_controllers + 1) * sizeof *ocs); |
2972 | n_ocs = 0; | |
064af421 | 2973 | |
7d674866 BP |
2974 | bridge_ofproto_controller_for_mgmt(br, &ocs[n_ocs++]); |
2975 | for (i = 0; i < n_controllers; i++) { | |
2976 | struct ovsrec_controller *c = controllers[i]; | |
76ce9432 | 2977 | |
7d674866 BP |
2978 | if (!strncmp(c->target, "punix:", 6) |
2979 | || !strncmp(c->target, "unix:", 5)) { | |
2980 | static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5); | |
cb4ef1ea BP |
2981 | char *whitelist; |
2982 | ||
329e3462 PR |
2983 | if (!strncmp(c->target, "unix:", 5)) { |
2984 | /* Connect to a listening socket */ | |
2985 | whitelist = xasprintf("unix:%s/", ovs_rundir()); | |
2c487bc8 PR |
2986 | if (strchr(c->target, '/') && |
2987 | !equal_pathnames(c->target, whitelist, | |
2988 | strlen(whitelist))) { | |
2989 | /* Absolute path specified, but not in ovs_rundir */ | |
329e3462 PR |
2990 | VLOG_ERR_RL(&rl, "bridge %s: Not connecting to socket " |
2991 | "controller \"%s\" due to possibility for " | |
2992 | "remote exploit. Instead, specify socket " | |
2993 | "in whitelisted \"%s\" or connect to " | |
2994 | "\"unix:%s/%s.mgmt\" (which is always " | |
2995 | "available without special configuration).", | |
2996 | br->name, c->target, whitelist, | |
cb4ef1ea | 2997 | ovs_rundir(), br->name); |
329e3462 PR |
2998 | free(whitelist); |
2999 | continue; | |
3000 | } | |
3001 | } else { | |
3002 | whitelist = xasprintf("punix:%s/%s.controller", | |
3003 | ovs_rundir(), br->name); | |
3004 | if (!equal_pathnames(c->target, whitelist, SIZE_MAX)) { | |
3005 | /* Prevent remote ovsdb-server users from accessing | |
3006 | * arbitrary Unix domain sockets and overwriting arbitrary | |
3007 | * local files. */ | |
3008 | VLOG_ERR_RL(&rl, "bridge %s: Not adding Unix domain socket " | |
3009 | "controller \"%s\" due to possibility of " | |
3010 | "overwriting local files. Instead, specify " | |
3011 | "whitelisted \"%s\" or connect to " | |
3012 | "\"unix:%s/%s.mgmt\" (which is always " | |
3013 | "available without special configuration).", | |
3014 | br->name, c->target, whitelist, | |
3015 | ovs_rundir(), br->name); | |
3016 | free(whitelist); | |
3017 | continue; | |
3018 | } | |
cb4ef1ea | 3019 | } |
4d6fb5eb | 3020 | |
cb4ef1ea | 3021 | free(whitelist); |
4d6fb5eb EJ |
3022 | } |
3023 | ||
7d674866 | 3024 | bridge_configure_local_iface_netdev(br, c); |
8731b2b6 JP |
3025 | bridge_ofproto_controller_from_ovsrec(c, &ocs[n_ocs]); |
3026 | if (disable_in_band) { | |
3027 | ocs[n_ocs].band = OFPROTO_OUT_OF_BAND; | |
f620b43a | 3028 | } |
8731b2b6 | 3029 | n_ocs++; |
be02e7c3 | 3030 | } |
be02e7c3 | 3031 | |
7beaa082 SH |
3032 | ofproto_set_controllers(br->ofproto, ocs, n_ocs, |
3033 | bridge_get_allowed_versions(br)); | |
7d674866 BP |
3034 | free(ocs[0].target); /* From bridge_ofproto_controller_for_mgmt(). */ |
3035 | free(ocs); | |
66da9bef BP |
3036 | |
3037 | /* Set the fail-mode. */ | |
3038 | fail_mode = !br->cfg->fail_mode | |
3039 | || !strcmp(br->cfg->fail_mode, "standalone") | |
3040 | ? OFPROTO_FAIL_STANDALONE | |
3041 | : OFPROTO_FAIL_SECURE; | |
3042 | ofproto_set_fail_mode(br->ofproto, fail_mode); | |
3043 | ||
3044 | /* Configure OpenFlow controller connection snooping. */ | |
3045 | if (!ofproto_has_snoops(br->ofproto)) { | |
3046 | struct sset snoops; | |
5827ce14 | 3047 | |
66da9bef BP |
3048 | sset_init(&snoops); |
3049 | sset_add_and_free(&snoops, xasprintf("punix:%s/%s.snoop", | |
3050 | ovs_rundir(), br->name)); | |
3051 | ofproto_set_snoops(br->ofproto, &snoops); | |
3052 | sset_destroy(&snoops); | |
064af421 BP |
3053 | } |
3054 | } | |
254750ce BP |
3055 | |
3056 | static void | |
3057 | bridge_configure_tables(struct bridge *br) | |
3058 | { | |
3059 | static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5); | |
3060 | int n_tables; | |
13751fd8 | 3061 | int i, j, k; |
254750ce BP |
3062 | |
3063 | n_tables = ofproto_get_n_tables(br->ofproto); | |
3064 | j = 0; | |
3065 | for (i = 0; i < n_tables; i++) { | |
3066 | struct ofproto_table_settings s; | |
3067 | ||
3068 | s.name = NULL; | |
3069 | s.max_flows = UINT_MAX; | |
3070 | s.groups = NULL; | |
3071 | s.n_groups = 0; | |
13751fd8 JR |
3072 | s.n_prefix_fields = 0; |
3073 | memset(s.prefix_fields, ~0, sizeof(s.prefix_fields)); | |
254750ce BP |
3074 | |
3075 | if (j < br->cfg->n_flow_tables && i == br->cfg->key_flow_tables[j]) { | |
3076 | struct ovsrec_flow_table *cfg = br->cfg->value_flow_tables[j++]; | |
3077 | ||
3078 | s.name = cfg->name; | |
3079 | if (cfg->n_flow_limit && *cfg->flow_limit < UINT_MAX) { | |
3080 | s.max_flows = *cfg->flow_limit; | |
3081 | } | |
3082 | if (cfg->overflow_policy | |
3083 | && !strcmp(cfg->overflow_policy, "evict")) { | |
254750ce BP |
3084 | |
3085 | s.groups = xmalloc(cfg->n_groups * sizeof *s.groups); | |
3086 | for (k = 0; k < cfg->n_groups; k++) { | |
3087 | const char *string = cfg->groups[k]; | |
3088 | char *msg; | |
3089 | ||
3090 | msg = mf_parse_subfield__(&s.groups[k], &string); | |
3091 | if (msg) { | |
3092 | VLOG_WARN_RL(&rl, "bridge %s table %d: error parsing " | |
3093 | "'groups' (%s)", br->name, i, msg); | |
3094 | free(msg); | |
3095 | } else if (*string) { | |
3096 | VLOG_WARN_RL(&rl, "bridge %s table %d: 'groups' " | |
3097 | "element '%s' contains trailing garbage", | |
3098 | br->name, i, cfg->groups[k]); | |
3099 | } else { | |
3100 | s.n_groups++; | |
3101 | } | |
3102 | } | |
3103 | } | |
13751fd8 JR |
3104 | /* Prefix lookup fields. */ |
3105 | s.n_prefix_fields = 0; | |
3106 | for (k = 0; k < cfg->n_prefixes; k++) { | |
3107 | const char *name = cfg->prefixes[k]; | |
3108 | const struct mf_field *mf = mf_from_name(name); | |
3109 | if (!mf) { | |
3110 | VLOG_WARN("bridge %s: 'prefixes' with unknown field: %s", | |
3111 | br->name, name); | |
3112 | continue; | |
3113 | } | |
3114 | if (mf->flow_be32ofs < 0 || mf->n_bits % 32) { | |
3115 | VLOG_WARN("bridge %s: 'prefixes' with incompatible field: " | |
3116 | "%s", br->name, name); | |
3117 | continue; | |
3118 | } | |
3119 | if (s.n_prefix_fields >= ARRAY_SIZE(s.prefix_fields)) { | |
3120 | VLOG_WARN("bridge %s: 'prefixes' with too many fields, " | |
3121 | "field not used: %s", br->name, name); | |
3122 | continue; | |
3123 | } | |
3124 | s.prefix_fields[s.n_prefix_fields++] = mf->id; | |
3125 | } | |
3126 | if (s.n_prefix_fields > 0) { | |
3127 | int k; | |
3128 | struct ds ds = DS_EMPTY_INITIALIZER; | |
3129 | for (k = 0; k < s.n_prefix_fields; k++) { | |
3130 | if (k) { | |
3131 | ds_put_char(&ds, ','); | |
3132 | } | |
3133 | ds_put_cstr(&ds, mf_from_id(s.prefix_fields[k])->name); | |
3134 | } | |
3135 | VLOG_INFO("bridge %s table %d: Prefix lookup with: %s.", | |
3136 | br->name, i, ds_cstr(&ds)); | |
3137 | ds_destroy(&ds); | |
3138 | } | |
254750ce BP |
3139 | } |
3140 | ||
3141 | ofproto_configure_table(br->ofproto, i, &s); | |
3142 | ||
3143 | free(s.groups); | |
3144 | } | |
3145 | for (; j < br->cfg->n_flow_tables; j++) { | |
3146 | VLOG_WARN_RL(&rl, "bridge %s: ignoring configuration for flow table " | |
3147 | "%"PRId64" not supported by this datapath", br->name, | |
3148 | br->cfg->key_flow_tables[j]); | |
3149 | } | |
3150 | } | |
8b6ff729 BP |
3151 | |
3152 | static void | |
3153 | bridge_configure_dp_desc(struct bridge *br) | |
3154 | { | |
3155 | ofproto_set_dp_desc(br->ofproto, | |
3156 | smap_get(&br->cfg->other_config, "dp-desc")); | |
3157 | } | |
064af421 | 3158 | \f |
fa066f01 | 3159 | /* Port functions. */ |
064af421 | 3160 | |
f620b43a | 3161 | static struct port * |
fa066f01 | 3162 | port_create(struct bridge *br, const struct ovsrec_port *cfg) |
064af421 | 3163 | { |
f620b43a BP |
3164 | struct port *port; |
3165 | ||
3166 | port = xzalloc(sizeof *port); | |
3167 | port->bridge = br; | |
fa066f01 BP |
3168 | port->name = xstrdup(cfg->name); |
3169 | port->cfg = cfg; | |
f620b43a BP |
3170 | list_init(&port->ifaces); |
3171 | ||
3172 | hmap_insert(&br->ports, &port->hmap_node, hash_string(port->name, 0)); | |
f620b43a | 3173 | return port; |
064af421 BP |
3174 | } |
3175 | ||
fa066f01 | 3176 | /* Deletes interfaces from 'port' that are no longer configured for it. */ |
064af421 | 3177 | static void |
fa066f01 | 3178 | port_del_ifaces(struct port *port) |
064af421 | 3179 | { |
f620b43a BP |
3180 | struct iface *iface, *next; |
3181 | struct sset new_ifaces; | |
3182 | size_t i; | |
064af421 | 3183 | |
f620b43a BP |
3184 | /* Collect list of new interfaces. */ |
3185 | sset_init(&new_ifaces); | |
fa066f01 BP |
3186 | for (i = 0; i < port->cfg->n_interfaces; i++) { |
3187 | const char *name = port->cfg->interfaces[i]->name; | |
93f331d3 | 3188 | const char *type = port->cfg->interfaces[i]->type; |
00794817 BP |
3189 | if (strcmp(type, "null")) { |
3190 | sset_add(&new_ifaces, name); | |
3191 | } | |
f620b43a | 3192 | } |
064af421 | 3193 | |
f620b43a BP |
3194 | /* Get rid of deleted interfaces. */ |
3195 | LIST_FOR_EACH_SAFE (iface, next, port_elem, &port->ifaces) { | |
3196 | if (!sset_contains(&new_ifaces, iface->name)) { | |
3197 | iface_destroy(iface); | |
064af421 | 3198 | } |
064af421 | 3199 | } |
f620b43a BP |
3200 | |
3201 | sset_destroy(&new_ifaces); | |
064af421 BP |
3202 | } |
3203 | ||
064af421 BP |
3204 | static void |
3205 | port_destroy(struct port *port) | |
3206 | { | |
3207 | if (port) { | |
3208 | struct bridge *br = port->bridge; | |
83db7968 | 3209 | struct iface *iface, *next; |
064af421 | 3210 | |
fa066f01 BP |
3211 | if (br->ofproto) { |
3212 | ofproto_bundle_unregister(br->ofproto, port); | |
064af421 BP |
3213 | } |
3214 | ||
83db7968 | 3215 | LIST_FOR_EACH_SAFE (iface, next, port_elem, &port->ifaces) { |
2a73b1d7 | 3216 | iface_destroy__(iface); |
064af421 BP |
3217 | } |
3218 | ||
8052fb14 | 3219 | hmap_remove(&br->ports, &port->hmap_node); |
064af421 BP |
3220 | free(port->name); |
3221 | free(port); | |
064af421 BP |
3222 | } |
3223 | } | |
3224 | ||
064af421 BP |
3225 | static struct port * |
3226 | port_lookup(const struct bridge *br, const char *name) | |
3227 | { | |
8052fb14 BP |
3228 | struct port *port; |
3229 | ||
3230 | HMAP_FOR_EACH_WITH_HASH (port, hmap_node, hash_string(name, 0), | |
3231 | &br->ports) { | |
3232 | if (!strcmp(port->name, name)) { | |
3233 | return port; | |
3234 | } | |
3235 | } | |
3236 | return NULL; | |
064af421 BP |
3237 | } |
3238 | ||
7a673515 BP |
3239 | static bool |
3240 | enable_lacp(struct port *port, bool *activep) | |
3241 | { | |
3242 | if (!port->cfg->lacp) { | |
3243 | /* XXX when LACP implementation has been sufficiently tested, enable by | |
3244 | * default and make active on bonded ports. */ | |
3245 | return false; | |
3246 | } else if (!strcmp(port->cfg->lacp, "off")) { | |
3247 | return false; | |
3248 | } else if (!strcmp(port->cfg->lacp, "active")) { | |
3249 | *activep = true; | |
3250 | return true; | |
3251 | } else if (!strcmp(port->cfg->lacp, "passive")) { | |
3252 | *activep = false; | |
3253 | return true; | |
3254 | } else { | |
3255 | VLOG_WARN("port %s: unknown LACP mode %s", | |
3256 | port->name, port->cfg->lacp); | |
3257 | return false; | |
3258 | } | |
3259 | } | |
3260 | ||
fa066f01 BP |
3261 | static struct lacp_settings * |
3262 | port_configure_lacp(struct port *port, struct lacp_settings *s) | |
5827ce14 | 3263 | { |
e567943d | 3264 | const char *lacp_time, *system_id; |
b5a25389 | 3265 | int priority; |
5827ce14 | 3266 | |
fa066f01 BP |
3267 | if (!enable_lacp(port, &s->active)) { |
3268 | return NULL; | |
abd4a95d EJ |
3269 | } |
3270 | ||
fa066f01 | 3271 | s->name = port->name; |
e567943d | 3272 | |
a699f614 | 3273 | system_id = smap_get(&port->cfg->other_config, "lacp-system-id"); |
a9bf011b | 3274 | if (system_id) { |
c2c28dfd BP |
3275 | if (!ovs_scan(system_id, ETH_ADDR_SCAN_FMT, |
3276 | ETH_ADDR_SCAN_ARGS(s->id))) { | |
a9bf011b EJ |
3277 | VLOG_WARN("port %s: LACP system ID (%s) must be an Ethernet" |
3278 | " address.", port->name, system_id); | |
3279 | return NULL; | |
3280 | } | |
3281 | } else { | |
e567943d EJ |
3282 | memcpy(s->id, port->bridge->ea, ETH_ADDR_LEN); |
3283 | } | |
b5a25389 | 3284 | |
69fdadb1 EJ |
3285 | if (eth_addr_is_zero(s->id)) { |
3286 | VLOG_WARN("port %s: Invalid zero LACP system ID.", port->name); | |
3287 | return NULL; | |
3288 | } | |
3289 | ||
b5a25389 | 3290 | /* Prefer bondable links if unspecified. */ |
a699f614 EJ |
3291 | priority = smap_get_int(&port->cfg->other_config, "lacp-system-priority", |
3292 | 0); | |
fa066f01 BP |
3293 | s->priority = (priority > 0 && priority <= UINT16_MAX |
3294 | ? priority | |
3295 | : UINT16_MAX - !list_is_short(&port->ifaces)); | |
b5a25389 | 3296 | |
a699f614 EJ |
3297 | lacp_time = smap_get(&port->cfg->other_config, "lacp-time"); |
3298 | s->fast = lacp_time && !strcasecmp(lacp_time, "fast"); | |
9dd165e0 RK |
3299 | |
3300 | s->fallback_ab_cfg = smap_get_bool(&port->cfg->other_config, | |
3301 | "lacp-fallback-ab", false); | |
3302 | ||
fa066f01 BP |
3303 | return s; |
3304 | } | |
5827ce14 | 3305 | |
fa066f01 BP |
3306 | static void |
3307 | iface_configure_lacp(struct iface *iface, struct lacp_slave_settings *s) | |
3308 | { | |
00794817 | 3309 | int priority, portid, key; |
5827ce14 | 3310 | |
a699f614 EJ |
3311 | portid = smap_get_int(&iface->cfg->other_config, "lacp-port-id", 0); |
3312 | priority = smap_get_int(&iface->cfg->other_config, "lacp-port-priority", | |
3313 | 0); | |
3314 | key = smap_get_int(&iface->cfg->other_config, "lacp-aggregation-key", 0); | |
fa066f01 BP |
3315 | |
3316 | if (portid <= 0 || portid > UINT16_MAX) { | |
4e022ec0 | 3317 | portid = ofp_to_u16(iface->ofp_port); |
5827ce14 EJ |
3318 | } |
3319 | ||
fa066f01 BP |
3320 | if (priority <= 0 || priority > UINT16_MAX) { |
3321 | priority = UINT16_MAX; | |
3322 | } | |
5827ce14 | 3323 | |
00794817 BP |
3324 | if (key < 0 || key > UINT16_MAX) { |
3325 | key = 0; | |
5827ce14 | 3326 | } |
00794817 | 3327 | |
fa066f01 | 3328 | s->name = iface->name; |
fa066f01 BP |
3329 | s->id = portid; |
3330 | s->priority = priority; | |
00794817 | 3331 | s->key = key; |
bb5bc6c0 BP |
3332 | } |
3333 | ||
c25c91fd | 3334 | static void |
df53d41c | 3335 | port_configure_bond(struct port *port, struct bond_settings *s) |
c25c91fd | 3336 | { |
f620b43a | 3337 | const char *detect_s; |
7a673515 | 3338 | struct iface *iface; |
1670c579 | 3339 | int miimon_interval; |
c25c91fd | 3340 | |
fa066f01 | 3341 | s->name = port->name; |
4df08875 | 3342 | s->balance = BM_AB; |
4c57c3bc EJ |
3343 | if (port->cfg->bond_mode) { |
3344 | if (!bond_mode_from_string(&s->balance, port->cfg->bond_mode)) { | |
3345 | VLOG_WARN("port %s: unknown bond_mode %s, defaulting to %s", | |
3346 | port->name, port->cfg->bond_mode, | |
3347 | bond_mode_to_string(s->balance)); | |
3348 | } | |
3349 | } else { | |
3350 | static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1); | |
3351 | ||
4df08875 EJ |
3352 | /* XXX: Post version 1.5.*, the default bond_mode changed from SLB to |
3353 | * active-backup. At some point we should remove this warning. */ | |
4c57c3bc | 3354 | VLOG_WARN_RL(&rl, "port %s: Using the default bond_mode %s. Note that" |
4df08875 EJ |
3355 | " in previous versions, the default bond_mode was" |
3356 | " balance-slb", port->name, | |
4c57c3bc | 3357 | bond_mode_to_string(s->balance)); |
f620b43a | 3358 | } |
6c2d2a9f BP |
3359 | if (s->balance == BM_SLB && port->bridge->cfg->n_flood_vlans) { |
3360 | VLOG_WARN("port %s: SLB bonds are incompatible with flood_vlans, " | |
3361 | "please use another bond type or disable flood_vlans", | |
3362 | port->name); | |
3363 | } | |
bb5bc6c0 | 3364 | |
a699f614 EJ |
3365 | miimon_interval = smap_get_int(&port->cfg->other_config, |
3366 | "bond-miimon-interval", 0); | |
1670c579 EJ |
3367 | if (miimon_interval <= 0) { |
3368 | miimon_interval = 200; | |
f620b43a BP |
3369 | } |
3370 | ||
a699f614 EJ |
3371 | detect_s = smap_get(&port->cfg->other_config, "bond-detect-mode"); |
3372 | if (!detect_s || !strcmp(detect_s, "carrier")) { | |
1670c579 EJ |
3373 | miimon_interval = 0; |
3374 | } else if (strcmp(detect_s, "miimon")) { | |
3375 | VLOG_WARN("port %s: unsupported bond-detect-mode %s, " | |
3376 | "defaulting to carrier", port->name, detect_s); | |
3377 | miimon_interval = 0; | |
f620b43a BP |
3378 | } |
3379 | ||
fa066f01 BP |
3380 | s->up_delay = MAX(0, port->cfg->bond_updelay); |
3381 | s->down_delay = MAX(0, port->cfg->bond_downdelay); | |
a699f614 EJ |
3382 | s->basis = smap_get_int(&port->cfg->other_config, "bond-hash-basis", 0); |
3383 | s->rebalance_interval = smap_get_int(&port->cfg->other_config, | |
3384 | "bond-rebalance-interval", 10000); | |
bc1b010c | 3385 | if (s->rebalance_interval && s->rebalance_interval < 1000) { |
fa066f01 | 3386 | s->rebalance_interval = 1000; |
f620b43a BP |
3387 | } |
3388 | ||
fa066f01 | 3389 | s->fake_iface = port->cfg->bond_fake_iface; |
7a673515 | 3390 | |
9dd165e0 RK |
3391 | s->lacp_fallback_ab_cfg = smap_get_bool(&port->cfg->other_config, |
3392 | "lacp-fallback-ab", false); | |
3393 | ||
7a673515 | 3394 | LIST_FOR_EACH (iface, port_elem, &port->ifaces) { |
1670c579 | 3395 | netdev_set_miimon_interval(iface->netdev, miimon_interval); |
064af421 BP |
3396 | } |
3397 | } | |
06b592bc EJ |
3398 | |
3399 | /* Returns true if 'port' is synthetic, that is, if we constructed it locally | |
3400 | * instead of obtaining it from the database. */ | |
3401 | static bool | |
3402 | port_is_synthetic(const struct port *port) | |
3403 | { | |
3404 | return ovsdb_idl_row_is_synthetic(&port->cfg->header_); | |
3405 | } | |
064af421 BP |
3406 | \f |
3407 | /* Interface functions. */ | |
3408 | ||
05ba03e0 JP |
3409 | static bool |
3410 | iface_is_internal(const struct ovsrec_interface *iface, | |
3411 | const struct ovsrec_bridge *br) | |
3412 | { | |
3413 | /* The local port and "internal" ports are always "internal". */ | |
3414 | return !strcmp(iface->type, "internal") || !strcmp(iface->name, br->name); | |
3415 | } | |
3416 | ||
b54441b3 BP |
3417 | /* Returns the correct network device type for interface 'iface' in bridge |
3418 | * 'br'. */ | |
3419 | static const char * | |
3420 | iface_get_type(const struct ovsrec_interface *iface, | |
3421 | const struct ovsrec_bridge *br) | |
3422 | { | |
b4f4b737 JP |
3423 | const char *type; |
3424 | ||
3425 | /* The local port always has type "internal". Other ports take | |
3426 | * their type from the database and default to "system" if none is | |
3427 | * specified. */ | |
05ba03e0 | 3428 | if (iface_is_internal(iface, br)) { |
b4f4b737 | 3429 | type = "internal"; |
acf60855 | 3430 | } else { |
b4f4b737 | 3431 | type = iface->type[0] ? iface->type : "system"; |
acf60855 | 3432 | } |
b4f4b737 JP |
3433 | |
3434 | return ofproto_port_open_type(br->datapath_type, type); | |
064af421 BP |
3435 | } |
3436 | ||
3437 | static void | |
2a73b1d7 | 3438 | iface_destroy__(struct iface *iface) |
064af421 BP |
3439 | { |
3440 | if (iface) { | |
3441 | struct port *port = iface->port; | |
3442 | struct bridge *br = port->bridge; | |
c17f0d5e | 3443 | |
c60c33fb | 3444 | if (br->ofproto && iface->ofp_port != OFPP_NONE) { |
892815f5 | 3445 | ofproto_port_unregister(br->ofproto, iface->ofp_port); |
5827ce14 EJ |
3446 | } |
3447 | ||
c60c33fb | 3448 | if (iface->ofp_port != OFPP_NONE) { |
892815f5 | 3449 | hmap_remove(&br->ifaces, &iface->ofp_port_node); |
064af421 BP |
3450 | } |
3451 | ||
83db7968 | 3452 | list_remove(&iface->port_elem); |
ebea37cc | 3453 | hmap_remove(&br->iface_by_name, &iface->name_node); |
064af421 | 3454 | |
fe83f81d RW |
3455 | /* The user is changing configuration here, so netdev_remove needs to be |
3456 | * used as opposed to netdev_close */ | |
3457 | netdev_remove(iface->netdev); | |
064af421 | 3458 | |
a740f0de JG |
3459 | free(iface->name); |
3460 | free(iface); | |
064af421 BP |
3461 | } |
3462 | } | |
3463 | ||
2a73b1d7 BP |
3464 | static void |
3465 | iface_destroy(struct iface *iface) | |
3466 | { | |
3467 | if (iface) { | |
3468 | struct port *port = iface->port; | |
3469 | ||
3470 | iface_destroy__(iface); | |
3471 | if (list_is_empty(&port->ifaces)) { | |
3472 | port_destroy(port); | |
3473 | } | |
3474 | } | |
3475 | } | |
3476 | ||
064af421 BP |
3477 | static struct iface * |
3478 | iface_lookup(const struct bridge *br, const char *name) | |
3479 | { | |
ebea37cc BP |
3480 | struct iface *iface; |
3481 | ||
3482 | HMAP_FOR_EACH_WITH_HASH (iface, name_node, hash_string(name, 0), | |
3483 | &br->iface_by_name) { | |
3484 | if (!strcmp(iface->name, name)) { | |
3485 | return iface; | |
3486 | } | |
3487 | } | |
3488 | ||
3489 | return NULL; | |
064af421 BP |
3490 | } |
3491 | ||
e8fe3026 EJ |
3492 | static struct iface * |
3493 | iface_find(const char *name) | |
3494 | { | |
3495 | const struct bridge *br; | |
3496 | ||
764072fd | 3497 | HMAP_FOR_EACH (br, node, &all_bridges) { |
e8fe3026 EJ |
3498 | struct iface *iface = iface_lookup(br, name); |
3499 | ||
3500 | if (iface) { | |
3501 | return iface; | |
3502 | } | |
3503 | } | |
3504 | return NULL; | |
3505 | } | |
3506 | ||
064af421 | 3507 | static struct iface * |
4e022ec0 | 3508 | iface_from_ofp_port(const struct bridge *br, ofp_port_t ofp_port) |
064af421 | 3509 | { |
d9a8717a BP |
3510 | struct iface *iface; |
3511 | ||
f9c0c3ec | 3512 | HMAP_FOR_EACH_IN_BUCKET (iface, ofp_port_node, hash_ofp_port(ofp_port), |
4e022ec0 | 3513 | &br->ifaces) { |
892815f5 | 3514 | if (iface->ofp_port == ofp_port) { |
d9a8717a BP |
3515 | return iface; |
3516 | } | |
3517 | } | |
3518 | return NULL; | |
064af421 | 3519 | } |
557d8e6c | 3520 | |
52df17e7 BP |
3521 | /* Set Ethernet address of 'iface', if one is specified in the configuration |
3522 | * file. */ | |
3523 | static void | |
21a955fc | 3524 | iface_set_mac(const struct bridge *br, const struct port *port, struct iface *iface) |
52df17e7 | 3525 | { |
21a955fc HS |
3526 | uint8_t ea[ETH_ADDR_LEN], *mac = NULL; |
3527 | struct iface *hw_addr_iface; | |
52df17e7 | 3528 | |
ddd43de9 HS |
3529 | if (strcmp(iface->type, "internal")) { |
3530 | return; | |
3531 | } | |
3532 | ||
3533 | if (iface->cfg->mac && eth_addr_from_string(iface->cfg->mac, ea)) { | |
3534 | mac = ea; | |
21a955fc HS |
3535 | } else if (port->cfg->fake_bridge) { |
3536 | /* Fake bridge and no MAC set in the configuration. Pick a local one. */ | |
3537 | find_local_hw_addr(br, ea, port, &hw_addr_iface); | |
3538 | mac = ea; | |
ddd43de9 HS |
3539 | } |
3540 | ||
3541 | if (mac) { | |
892815f5 | 3542 | if (iface->ofp_port == OFPP_LOCAL) { |
ede2fd6d BP |
3543 | VLOG_ERR("interface %s: ignoring mac in Interface record " |
3544 | "(use Bridge record to set local port's mac)", | |
3545 | iface->name); | |
ddd43de9 | 3546 | } else if (eth_addr_is_multicast(mac)) { |
52df17e7 BP |
3547 | VLOG_ERR("interface %s: cannot set MAC to multicast address", |
3548 | iface->name); | |
52df17e7 | 3549 | } else { |
ddd43de9 | 3550 | int error = netdev_set_etheraddr(iface->netdev, mac); |
52df17e7 BP |
3551 | if (error) { |
3552 | VLOG_ERR("interface %s: setting MAC failed (%s)", | |
10a89ef0 | 3553 | iface->name, ovs_strerror(error)); |
52df17e7 BP |
3554 | } |
3555 | } | |
3556 | } | |
3557 | } | |
c1c9c9c4 | 3558 | |
bcd49a45 BP |
3559 | /* Sets the ofport column of 'if_cfg' to 'ofport'. */ |
3560 | static void | |
4e022ec0 | 3561 | iface_set_ofport(const struct ovsrec_interface *if_cfg, ofp_port_t ofport) |
bcd49a45 | 3562 | { |
cfea354b | 3563 | if (if_cfg && !ovsdb_idl_row_is_synthetic(&if_cfg->header_)) { |
820b35a3 BP |
3564 | int64_t port = ofport == OFPP_NONE ? -1 : ofp_to_u16(ofport); |
3565 | ovsrec_interface_set_ofport(if_cfg, &port, 1); | |
bcd49a45 BP |
3566 | } |
3567 | } | |
3568 | ||
3fc5a86a BP |
3569 | /* Clears all of the fields in 'if_cfg' that indicate interface status, and |
3570 | * sets the "ofport" field to -1. | |
3571 | * | |
3572 | * This is appropriate when 'if_cfg''s interface cannot be created or is | |
3573 | * otherwise invalid. */ | |
3574 | static void | |
3575 | iface_clear_db_record(const struct ovsrec_interface *if_cfg) | |
3576 | { | |
3577 | if (!ovsdb_idl_row_is_synthetic(&if_cfg->header_)) { | |
59804c80 | 3578 | iface_set_ofport(if_cfg, OFPP_NONE); |
a699f614 | 3579 | ovsrec_interface_set_status(if_cfg, NULL); |
3fc5a86a BP |
3580 | ovsrec_interface_set_admin_state(if_cfg, NULL); |
3581 | ovsrec_interface_set_duplex(if_cfg, NULL); | |
3582 | ovsrec_interface_set_link_speed(if_cfg, NULL, 0); | |
3583 | ovsrec_interface_set_link_state(if_cfg, NULL); | |
df867eda | 3584 | ovsrec_interface_set_mac_in_use(if_cfg, NULL); |
3fc5a86a BP |
3585 | ovsrec_interface_set_mtu(if_cfg, NULL, 0); |
3586 | ovsrec_interface_set_cfm_fault(if_cfg, NULL, 0); | |
b9380396 | 3587 | ovsrec_interface_set_cfm_fault_status(if_cfg, NULL, 0); |
3fc5a86a BP |
3588 | ovsrec_interface_set_cfm_remote_mpids(if_cfg, NULL, 0); |
3589 | ovsrec_interface_set_lacp_current(if_cfg, NULL, 0); | |
3590 | ovsrec_interface_set_statistics(if_cfg, NULL, NULL, 0); | |
ea401d9a | 3591 | ovsrec_interface_set_ifindex(if_cfg, NULL, 0); |
3fc5a86a BP |
3592 | } |
3593 | } | |
3594 | ||
c1c9c9c4 | 3595 | static bool |
44fca7f9 | 3596 | queue_ids_include(const struct ovsdb_datum *queues, int64_t target) |
c1c9c9c4 | 3597 | { |
44fca7f9 | 3598 | union ovsdb_atom atom; |
c1c9c9c4 | 3599 | |
44fca7f9 BP |
3600 | atom.integer = target; |
3601 | return ovsdb_datum_find_key(queues, &atom, OVSDB_TYPE_INTEGER) != UINT_MAX; | |
c1c9c9c4 BP |
3602 | } |
3603 | ||
c1c9c9c4 | 3604 | static void |
66da9bef | 3605 | iface_configure_qos(struct iface *iface, const struct ovsrec_qos *qos) |
c1c9c9c4 | 3606 | { |
8b36f51e EJ |
3607 | struct ofpbuf queues_buf; |
3608 | ||
3609 | ofpbuf_init(&queues_buf, 0); | |
3610 | ||
daa8bd2b | 3611 | if (!qos || qos->type[0] == '\0' || qos->n_queues < 1) { |
c1c9c9c4 BP |
3612 | netdev_set_qos(iface->netdev, NULL, NULL); |
3613 | } else { | |
89454bf4 BP |
3614 | const struct ovsdb_datum *queues; |
3615 | struct netdev_queue_dump dump; | |
3616 | unsigned int queue_id; | |
3617 | struct smap details; | |
6a6e60bd | 3618 | bool queue_zero; |
c1c9c9c4 BP |
3619 | size_t i; |
3620 | ||
3621 | /* Configure top-level Qos for 'iface'. */ | |
a699f614 | 3622 | netdev_set_qos(iface->netdev, qos->type, &qos->other_config); |
c1c9c9c4 BP |
3623 | |
3624 | /* Deconfigure queues that were deleted. */ | |
89454bf4 BP |
3625 | queues = ovsrec_qos_get_queues(qos, OVSDB_TYPE_INTEGER, |
3626 | OVSDB_TYPE_UUID); | |
3627 | smap_init(&details); | |
3628 | NETDEV_QUEUE_FOR_EACH (&queue_id, &details, &dump, iface->netdev) { | |
3629 | if (!queue_ids_include(queues, queue_id)) { | |
3630 | netdev_delete_queue(iface->netdev, queue_id); | |
3631 | } | |
3632 | } | |
3633 | smap_destroy(&details); | |
c1c9c9c4 BP |
3634 | |
3635 | /* Configure queues for 'iface'. */ | |
6a6e60bd | 3636 | queue_zero = false; |
c1c9c9c4 BP |
3637 | for (i = 0; i < qos->n_queues; i++) { |
3638 | const struct ovsrec_queue *queue = qos->value_queues[i]; | |
3639 | unsigned int queue_id = qos->key_queues[i]; | |
3640 | ||
6a6e60bd BP |
3641 | if (queue_id == 0) { |
3642 | queue_zero = true; | |
3643 | } | |
3644 | ||
8b36f51e EJ |
3645 | if (queue->n_dscp == 1) { |
3646 | struct ofproto_port_queue *port_queue; | |
3647 | ||
3648 | port_queue = ofpbuf_put_uninit(&queues_buf, | |
3649 | sizeof *port_queue); | |
3650 | port_queue->queue = queue_id; | |
3651 | port_queue->dscp = queue->dscp[0]; | |
3652 | } | |
3653 | ||
a699f614 | 3654 | netdev_set_queue(iface->netdev, queue_id, &queue->other_config); |
c1c9c9c4 | 3655 | } |
6a6e60bd | 3656 | if (!queue_zero) { |
a699f614 EJ |
3657 | struct smap details; |
3658 | ||
79f1cbe9 | 3659 | smap_init(&details); |
2c999774 | 3660 | netdev_set_queue(iface->netdev, 0, &details); |
79f1cbe9 | 3661 | smap_destroy(&details); |
6a6e60bd | 3662 | } |
c1c9c9c4 | 3663 | } |
fa066f01 | 3664 | |
c60c33fb | 3665 | if (iface->ofp_port != OFPP_NONE) { |
1f317cb5 PS |
3666 | const struct ofproto_port_queue *port_queues = ofpbuf_data(&queues_buf); |
3667 | size_t n_queues = ofpbuf_size(&queues_buf) / sizeof *port_queues; | |
8b36f51e EJ |
3668 | |
3669 | ofproto_port_set_queues(iface->port->bridge->ofproto, iface->ofp_port, | |
3670 | port_queues, n_queues); | |
3671 | } | |
3672 | ||
fa066f01 BP |
3673 | netdev_set_policing(iface->netdev, |
3674 | iface->cfg->ingress_policing_rate, | |
3675 | iface->cfg->ingress_policing_burst); | |
8b36f51e EJ |
3676 | |
3677 | ofpbuf_uninit(&queues_buf); | |
c1c9c9c4 | 3678 | } |
b31bcf60 EJ |
3679 | |
3680 | static void | |
66da9bef | 3681 | iface_configure_cfm(struct iface *iface) |
b31bcf60 | 3682 | { |
93b8df38 | 3683 | const struct ovsrec_interface *cfg = iface->cfg; |
a699f614 | 3684 | const char *opstate_str; |
189cb9e4 | 3685 | const char *cfm_ccm_vlan; |
a5610457 | 3686 | struct cfm_settings s; |
b363bae4 | 3687 | struct smap netdev_args; |
b31bcf60 | 3688 | |
144216a3 | 3689 | if (!cfg->n_cfm_mpid) { |
892815f5 | 3690 | ofproto_port_clear_cfm(iface->port->bridge->ofproto, iface->ofp_port); |
b31bcf60 EJ |
3691 | return; |
3692 | } | |
3693 | ||
b363bae4 EJ |
3694 | s.check_tnl_key = false; |
3695 | smap_init(&netdev_args); | |
3696 | if (!netdev_get_config(iface->netdev, &netdev_args)) { | |
3697 | const char *key = smap_get(&netdev_args, "key"); | |
3698 | const char *in_key = smap_get(&netdev_args, "in_key"); | |
3699 | ||
3700 | s.check_tnl_key = (key && !strcmp(key, "flow")) | |
3701 | || (in_key && !strcmp(in_key, "flow")); | |
3702 | } | |
3703 | smap_destroy(&netdev_args); | |
3704 | ||
a5610457 | 3705 | s.mpid = *cfg->cfm_mpid; |
a699f614 EJ |
3706 | s.interval = smap_get_int(&iface->cfg->other_config, "cfm_interval", 0); |
3707 | cfm_ccm_vlan = smap_get(&iface->cfg->other_config, "cfm_ccm_vlan"); | |
3708 | s.ccm_pcp = smap_get_int(&iface->cfg->other_config, "cfm_ccm_pcp", 0); | |
3709 | ||
a5610457 EJ |
3710 | if (s.interval <= 0) { |
3711 | s.interval = 1000; | |
b31bcf60 | 3712 | } |
b31bcf60 | 3713 | |
a699f614 EJ |
3714 | if (!cfm_ccm_vlan) { |
3715 | s.ccm_vlan = 0; | |
3716 | } else if (!strcasecmp("random", cfm_ccm_vlan)) { | |
189cb9e4 EJ |
3717 | s.ccm_vlan = CFM_RANDOM_VLAN; |
3718 | } else { | |
3719 | s.ccm_vlan = atoi(cfm_ccm_vlan); | |
3720 | if (s.ccm_vlan == CFM_RANDOM_VLAN) { | |
3721 | s.ccm_vlan = 0; | |
3722 | } | |
3723 | } | |
3724 | ||
a699f614 EJ |
3725 | s.extended = smap_get_bool(&iface->cfg->other_config, "cfm_extended", |
3726 | false); | |
90967e95 | 3727 | s.demand = smap_get_bool(&iface->cfg->other_config, "cfm_demand", false); |
ef9819b5 | 3728 | |
a699f614 EJ |
3729 | opstate_str = smap_get(&iface->cfg->other_config, "cfm_opstate"); |
3730 | s.opup = !opstate_str || !strcasecmp("up", opstate_str); | |
86dc6501 | 3731 | |
a5610457 | 3732 | ofproto_port_set_cfm(iface->port->bridge->ofproto, iface->ofp_port, &s); |
b31bcf60 | 3733 | } |
0b8024eb | 3734 | |
cfea354b BP |
3735 | /* Returns true if 'iface' is synthetic, that is, if we constructed it locally |
3736 | * instead of obtaining it from the database. */ | |
3737 | static bool | |
3738 | iface_is_synthetic(const struct iface *iface) | |
3739 | { | |
3740 | return ovsdb_idl_row_is_synthetic(&iface->cfg->header_); | |
3741 | } | |
f125905c | 3742 | |
4e022ec0 | 3743 | static ofp_port_t |
4abb8608 BP |
3744 | iface_validate_ofport__(size_t n, int64_t *ofport) |
3745 | { | |
3746 | return (n && *ofport >= 1 && *ofport < ofp_to_u16(OFPP_MAX) | |
3747 | ? u16_to_ofp(*ofport) | |
3748 | : OFPP_NONE); | |
3749 | } | |
3750 | ||
3751 | static ofp_port_t | |
3752 | iface_get_requested_ofp_port(const struct ovsrec_interface *cfg) | |
558e2cc5 | 3753 | { |
4abb8608 | 3754 | return iface_validate_ofport__(cfg->n_ofport_request, cfg->ofport_request); |
558e2cc5 GS |
3755 | } |
3756 | ||
4abb8608 BP |
3757 | static ofp_port_t |
3758 | iface_pick_ofport(const struct ovsrec_interface *cfg) | |
3759 | { | |
3760 | ofp_port_t requested_ofport = iface_get_requested_ofp_port(cfg); | |
3761 | return (requested_ofport != OFPP_NONE | |
3762 | ? requested_ofport | |
3763 | : iface_validate_ofport__(cfg->n_ofport, cfg->ofport)); | |
3764 | } | |
064af421 BP |
3765 | \f |
3766 | /* Port mirroring. */ | |
3767 | ||
dd0d105c BP |
3768 | static struct mirror * |
3769 | mirror_find_by_uuid(struct bridge *br, const struct uuid *uuid) | |
3770 | { | |
fa066f01 | 3771 | struct mirror *m; |
dd0d105c | 3772 | |
fa066f01 BP |
3773 | HMAP_FOR_EACH_IN_BUCKET (m, hmap_node, uuid_hash(uuid), &br->mirrors) { |
3774 | if (uuid_equals(uuid, &m->uuid)) { | |
dd0d105c BP |
3775 | return m; |
3776 | } | |
3777 | } | |
3778 | return NULL; | |
3779 | } | |
3780 | ||
064af421 | 3781 | static void |
fa066f01 | 3782 | bridge_configure_mirrors(struct bridge *br) |
064af421 | 3783 | { |
fa066f01 BP |
3784 | const struct ovsdb_datum *mc; |
3785 | unsigned long *flood_vlans; | |
3786 | struct mirror *m, *next; | |
3787 | size_t i; | |
064af421 | 3788 | |
dd0d105c | 3789 | /* Get rid of deleted mirrors. */ |
fa066f01 BP |
3790 | mc = ovsrec_bridge_get_mirrors(br->cfg, OVSDB_TYPE_UUID); |
3791 | HMAP_FOR_EACH_SAFE (m, next, hmap_node, &br->mirrors) { | |
3792 | union ovsdb_atom atom; | |
3793 | ||
3794 | atom.uuid = m->uuid; | |
3795 | if (ovsdb_datum_find_key(mc, &atom, OVSDB_TYPE_UUID) == UINT_MAX) { | |
3796 | mirror_destroy(m); | |
064af421 BP |
3797 | } |
3798 | } | |
3799 | ||
dd0d105c | 3800 | /* Add new mirrors and reconfigure existing ones. */ |
37e7f427 | 3801 | for (i = 0; i < br->cfg->n_mirrors; i++) { |
fa066f01 | 3802 | const struct ovsrec_mirror *cfg = br->cfg->mirrors[i]; |
dd0d105c | 3803 | struct mirror *m = mirror_find_by_uuid(br, &cfg->header_.uuid); |
fa066f01 BP |
3804 | if (!m) { |
3805 | m = mirror_create(br, cfg); | |
064af421 | 3806 | } |
9d24de3b JP |
3807 | m->cfg = cfg; |
3808 | if (!mirror_configure(m)) { | |
fa066f01 | 3809 | mirror_destroy(m); |
064af421 BP |
3810 | } |
3811 | } | |
f2d7fd66 | 3812 | |
8f30d09a | 3813 | /* Update flooded vlans (for RSPAN). */ |
fa066f01 BP |
3814 | flood_vlans = vlan_bitmap_from_array(br->cfg->flood_vlans, |
3815 | br->cfg->n_flood_vlans); | |
3816 | ofproto_set_flood_vlans(br->ofproto, flood_vlans); | |
3817 | bitmap_free(flood_vlans); | |
064af421 BP |
3818 | } |
3819 | ||
fa066f01 BP |
3820 | static struct mirror * |
3821 | mirror_create(struct bridge *br, const struct ovsrec_mirror *cfg) | |
064af421 BP |
3822 | { |
3823 | struct mirror *m; | |
064af421 | 3824 | |
fa066f01 | 3825 | m = xzalloc(sizeof *m); |
8bbc128e | 3826 | m->uuid = cfg->header_.uuid; |
fa066f01 | 3827 | hmap_insert(&br->mirrors, &m->hmap_node, uuid_hash(&m->uuid)); |
064af421 | 3828 | m->bridge = br; |
dd0d105c | 3829 | m->name = xstrdup(cfg->name); |
37e7f427 | 3830 | |
fa066f01 | 3831 | return m; |
064af421 BP |
3832 | } |
3833 | ||
3834 | static void | |
3835 | mirror_destroy(struct mirror *m) | |
3836 | { | |
3837 | if (m) { | |
3838 | struct bridge *br = m->bridge; | |
064af421 | 3839 | |
fa066f01 BP |
3840 | if (br->ofproto) { |
3841 | ofproto_mirror_unregister(br->ofproto, m); | |
064af421 BP |
3842 | } |
3843 | ||
fa066f01 | 3844 | hmap_remove(&br->mirrors, &m->hmap_node); |
786880a5 | 3845 | free(m->name); |
064af421 | 3846 | free(m); |
064af421 BP |
3847 | } |
3848 | } | |
3849 | ||
3850 | static void | |
fa066f01 BP |
3851 | mirror_collect_ports(struct mirror *m, |
3852 | struct ovsrec_port **in_ports, int n_in_ports, | |
3853 | void ***out_portsp, size_t *n_out_portsp) | |
064af421 | 3854 | { |
fa066f01 BP |
3855 | void **out_ports = xmalloc(n_in_ports * sizeof *out_ports); |
3856 | size_t n_out_ports = 0; | |
064af421 BP |
3857 | size_t i; |
3858 | ||
fa066f01 BP |
3859 | for (i = 0; i < n_in_ports; i++) { |
3860 | const char *name = in_ports[i]->name; | |
3861 | struct port *port = port_lookup(m->bridge, name); | |
3862 | if (port) { | |
3863 | out_ports[n_out_ports++] = port; | |
064af421 | 3864 | } else { |
37e7f427 BP |
3865 | VLOG_WARN("bridge %s: mirror %s cannot match on nonexistent " |
3866 | "port %s", m->bridge->name, m->name, name); | |
064af421 BP |
3867 | } |
3868 | } | |
fa066f01 BP |
3869 | *out_portsp = out_ports; |
3870 | *n_out_portsp = n_out_ports; | |
064af421 BP |
3871 | } |
3872 | ||
3873 | static bool | |
9d24de3b | 3874 | mirror_configure(struct mirror *m) |
064af421 | 3875 | { |
9d24de3b | 3876 | const struct ovsrec_mirror *cfg = m->cfg; |
fa066f01 | 3877 | struct ofproto_mirror_settings s; |
064af421 | 3878 | |
dd0d105c BP |
3879 | /* Set name. */ |
3880 | if (strcmp(cfg->name, m->name)) { | |
3881 | free(m->name); | |
3882 | m->name = xstrdup(cfg->name); | |
3883 | } | |
fa066f01 | 3884 | s.name = m->name; |
dd0d105c | 3885 | |
fa066f01 | 3886 | /* Get output port or VLAN. */ |
37e7f427 | 3887 | if (cfg->output_port) { |
fa066f01 | 3888 | s.out_bundle = port_lookup(m->bridge, cfg->output_port->name); |
abe529af | 3889 | if (!s.out_bundle) { |
37e7f427 BP |
3890 | VLOG_ERR("bridge %s: mirror %s outputs to port not on bridge", |
3891 | m->bridge->name, m->name); | |
fa066f01 | 3892 | return false; |
064af421 | 3893 | } |
fa066f01 | 3894 | s.out_vlan = UINT16_MAX; |
064af421 | 3895 | |
37e7f427 BP |
3896 | if (cfg->output_vlan) { |
3897 | VLOG_ERR("bridge %s: mirror %s specifies both output port and " | |
3898 | "output vlan; ignoring output vlan", | |
3899 | m->bridge->name, m->name); | |
064af421 | 3900 | } |
37e7f427 | 3901 | } else if (cfg->output_vlan) { |
fa066f01 BP |
3902 | /* The database should prevent invalid VLAN values. */ |
3903 | s.out_bundle = NULL; | |
3904 | s.out_vlan = *cfg->output_vlan; | |
064af421 | 3905 | } else { |
37e7f427 BP |
3906 | VLOG_ERR("bridge %s: mirror %s does not specify output; ignoring", |
3907 | m->bridge->name, m->name); | |
fa066f01 | 3908 | return false; |
064af421 BP |
3909 | } |
3910 | ||
fa066f01 | 3911 | /* Get port selection. */ |
939ff267 | 3912 | if (cfg->select_all) { |
fa066f01 BP |
3913 | size_t n_ports = hmap_count(&m->bridge->ports); |
3914 | void **ports = xmalloc(n_ports * sizeof *ports); | |
abe529af | 3915 | struct port *port; |
fa066f01 BP |
3916 | size_t i; |
3917 | ||
3918 | i = 0; | |
8052fb14 | 3919 | HMAP_FOR_EACH (port, hmap_node, &m->bridge->ports) { |
fa066f01 | 3920 | ports[i++] = port; |
939ff267 | 3921 | } |
fa066f01 BP |
3922 | |
3923 | s.srcs = ports; | |
3924 | s.n_srcs = n_ports; | |
3925 | ||
3926 | s.dsts = ports; | |
3927 | s.n_dsts = n_ports; | |
939ff267 | 3928 | } else { |
fa066f01 BP |
3929 | /* Get ports, dropping ports that don't exist. |
3930 | * The IDL ensures that there are no duplicates. */ | |
939ff267 | 3931 | mirror_collect_ports(m, cfg->select_src_port, cfg->n_select_src_port, |
fa066f01 | 3932 | &s.srcs, &s.n_srcs); |
939ff267 | 3933 | mirror_collect_ports(m, cfg->select_dst_port, cfg->n_select_dst_port, |
fa066f01 | 3934 | &s.dsts, &s.n_dsts); |
064af421 BP |
3935 | } |
3936 | ||
fa066f01 BP |
3937 | /* Get VLAN selection. */ |
3938 | s.src_vlans = vlan_bitmap_from_array(cfg->select_vlan, cfg->n_select_vlan); | |
3939 | ||
3940 | /* Configure. */ | |
3941 | ofproto_mirror_register(m->bridge->ofproto, m, &s); | |
3942 | ||
064af421 | 3943 | /* Clean up. */ |
fa066f01 BP |
3944 | if (s.srcs != s.dsts) { |
3945 | free(s.dsts); | |
3946 | } | |
3947 | free(s.srcs); | |
3948 | free(s.src_vlans); | |
3949 | ||
3950 | return true; | |
064af421 | 3951 | } |
52a90c29 BP |
3952 | \f |
3953 | /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.) | |
3954 | * | |
3955 | * This is deprecated. It is only for compatibility with broken device drivers | |
3956 | * in old versions of Linux that do not properly support VLANs when VLAN | |
3957 | * devices are not used. When broken device drivers are no longer in | |
3958 | * widespread use, we will delete these interfaces. */ | |
3959 | ||
37344ffa EJ |
3960 | static struct ovsrec_port **recs; |
3961 | static size_t n_recs, allocated_recs; | |
52a90c29 | 3962 | |
37344ffa EJ |
3963 | /* Adds 'rec' to a list of recs that have to be destroyed when the VLAN |
3964 | * splinters are reconfigured. */ | |
52a90c29 | 3965 | static void |
37344ffa | 3966 | register_rec(struct ovsrec_port *rec) |
52a90c29 | 3967 | { |
37344ffa EJ |
3968 | if (n_recs >= allocated_recs) { |
3969 | recs = x2nrealloc(recs, &allocated_recs, sizeof *recs); | |
52a90c29 | 3970 | } |
37344ffa | 3971 | recs[n_recs++] = rec; |
52a90c29 BP |
3972 | } |
3973 | ||
37344ffa | 3974 | /* Frees all of the ports registered with register_reg(). */ |
52a90c29 | 3975 | static void |
37344ffa | 3976 | free_registered_recs(void) |
52a90c29 BP |
3977 | { |
3978 | size_t i; | |
3979 | ||
37344ffa EJ |
3980 | for (i = 0; i < n_recs; i++) { |
3981 | struct ovsrec_port *port = recs[i]; | |
3982 | size_t j; | |
3983 | ||
3984 | for (j = 0; j < port->n_interfaces; j++) { | |
3985 | struct ovsrec_interface *iface = port->interfaces[j]; | |
3986 | free(iface->name); | |
3987 | free(iface); | |
3988 | } | |
3989 | ||
a699f614 | 3990 | smap_destroy(&port->other_config); |
37344ffa EJ |
3991 | free(port->interfaces); |
3992 | free(port->name); | |
3993 | free(port->tag); | |
37344ffa | 3994 | free(port); |
52a90c29 | 3995 | } |
37344ffa | 3996 | n_recs = 0; |
52a90c29 BP |
3997 | } |
3998 | ||
3999 | /* Returns true if VLAN splinters are enabled on 'iface_cfg', false | |
4000 | * otherwise. */ | |
4001 | static bool | |
4002 | vlan_splinters_is_enabled(const struct ovsrec_interface *iface_cfg) | |
4003 | { | |
a699f614 EJ |
4004 | return smap_get_bool(&iface_cfg->other_config, "enable-vlan-splinters", |
4005 | false); | |
52a90c29 BP |
4006 | } |
4007 | ||
4008 | /* Figures out the set of VLANs that are in use for the purpose of VLAN | |
4009 | * splinters. | |
4010 | * | |
4011 | * If VLAN splinters are enabled on at least one interface and any VLANs are in | |
4012 | * use, returns a 4096-bit bitmap with a 1-bit for each in-use VLAN (bits 0 and | |
4013 | * 4095 will not be set). The caller is responsible for freeing the bitmap, | |
4014 | * with free(). | |
4015 | * | |
4016 | * If VLANs splinters are not enabled on any interface or if no VLANs are in | |
4017 | * use, returns NULL. | |
4018 | * | |
4019 | * Updates 'vlan_splinters_enabled_anywhere'. */ | |
4020 | static unsigned long int * | |
4021 | collect_splinter_vlans(const struct ovsrec_open_vswitch *ovs_cfg) | |
4022 | { | |
4023 | unsigned long int *splinter_vlans; | |
4024 | struct sset splinter_ifaces; | |
4025 | const char *real_dev_name; | |
4026 | struct shash *real_devs; | |
4027 | struct shash_node *node; | |
4028 | struct bridge *br; | |
4029 | size_t i; | |
4030 | ||
7c70698f BP |
4031 | /* Free space allocated for synthesized ports and interfaces, since we're |
4032 | * in the process of reconstructing all of them. */ | |
37344ffa | 4033 | free_registered_recs(); |
7c70698f | 4034 | |
45c580a3 | 4035 | splinter_vlans = bitmap_allocate(4096); |
52a90c29 | 4036 | sset_init(&splinter_ifaces); |
45c580a3 | 4037 | vlan_splinters_enabled_anywhere = false; |
52a90c29 BP |
4038 | for (i = 0; i < ovs_cfg->n_bridges; i++) { |
4039 | struct ovsrec_bridge *br_cfg = ovs_cfg->bridges[i]; | |
4040 | size_t j; | |
4041 | ||
4042 | for (j = 0; j < br_cfg->n_ports; j++) { | |
4043 | struct ovsrec_port *port_cfg = br_cfg->ports[j]; | |
4044 | int k; | |
4045 | ||
4046 | for (k = 0; k < port_cfg->n_interfaces; k++) { | |
4047 | struct ovsrec_interface *iface_cfg = port_cfg->interfaces[k]; | |
4048 | ||
4049 | if (vlan_splinters_is_enabled(iface_cfg)) { | |
45c580a3 | 4050 | vlan_splinters_enabled_anywhere = true; |
52a90c29 | 4051 | sset_add(&splinter_ifaces, iface_cfg->name); |
52a90c29 BP |
4052 | vlan_bitmap_from_array__(port_cfg->trunks, |
4053 | port_cfg->n_trunks, | |
4054 | splinter_vlans); | |
4055 | } | |
4056 | } | |
45c580a3 BP |
4057 | |
4058 | if (port_cfg->tag && *port_cfg->tag > 0 && *port_cfg->tag < 4095) { | |
4059 | bitmap_set1(splinter_vlans, *port_cfg->tag); | |
4060 | } | |
52a90c29 BP |
4061 | } |
4062 | } | |
4063 | ||
45c580a3 BP |
4064 | if (!vlan_splinters_enabled_anywhere) { |
4065 | free(splinter_vlans); | |
52a90c29 BP |
4066 | sset_destroy(&splinter_ifaces); |
4067 | return NULL; | |
4068 | } | |
4069 | ||
4070 | HMAP_FOR_EACH (br, node, &all_bridges) { | |
4071 | if (br->ofproto) { | |
4072 | ofproto_get_vlan_usage(br->ofproto, splinter_vlans); | |
4073 | } | |
4074 | } | |
4075 | ||
4076 | /* Don't allow VLANs 0 or 4095 to be splintered. VLAN 0 should appear on | |
4077 | * the real device. VLAN 4095 is reserved and Linux doesn't allow a VLAN | |
4078 | * device to be created for it. */ | |
4079 | bitmap_set0(splinter_vlans, 0); | |
4080 | bitmap_set0(splinter_vlans, 4095); | |
4081 | ||
4082 | /* Delete all VLAN devices that we don't need. */ | |
4083 | vlandev_refresh(); | |
4084 | real_devs = vlandev_get_real_devs(); | |
4085 | SHASH_FOR_EACH (node, real_devs) { | |
4086 | const struct vlan_real_dev *real_dev = node->data; | |
4087 | const struct vlan_dev *vlan_dev; | |
4088 | bool real_dev_has_splinters; | |
4089 | ||
4090 | real_dev_has_splinters = sset_contains(&splinter_ifaces, | |
4091 | real_dev->name); | |
4092 | HMAP_FOR_EACH (vlan_dev, hmap_node, &real_dev->vlan_devs) { | |
4093 | if (!real_dev_has_splinters | |
4094 | || !bitmap_is_set(splinter_vlans, vlan_dev->vid)) { | |
4095 | struct netdev *netdev; | |
4096 | ||
4097 | if (!netdev_open(vlan_dev->name, "system", &netdev)) { | |
4098 | if (!netdev_get_in4(netdev, NULL, NULL) || | |
4099 | !netdev_get_in6(netdev, NULL)) { | |
52a90c29 BP |
4100 | /* It has an IP address configured, so we don't own |
4101 | * it. Don't delete it. */ | |
b41c3e5c AW |
4102 | } else { |
4103 | vlandev_del(vlan_dev->name); | |
52a90c29 BP |
4104 | } |
4105 | netdev_close(netdev); | |
4106 | } | |
4107 | } | |
4108 | ||
4109 | } | |
4110 | } | |
4111 | ||
4112 | /* Add all VLAN devices that we need. */ | |
4113 | SSET_FOR_EACH (real_dev_name, &splinter_ifaces) { | |
4114 | int vid; | |
4115 | ||
4116 | BITMAP_FOR_EACH_1 (vid, 4096, splinter_vlans) { | |
4117 | if (!vlandev_get_name(real_dev_name, vid)) { | |
4118 | vlandev_add(real_dev_name, vid); | |
4119 | } | |
4120 | } | |
4121 | } | |
4122 | ||
4123 | vlandev_refresh(); | |
4124 | ||
4125 | sset_destroy(&splinter_ifaces); | |
4126 | ||
b71273f6 | 4127 | if (bitmap_scan(splinter_vlans, 1, 0, 4096) >= 4096) { |
52a90c29 BP |
4128 | free(splinter_vlans); |
4129 | return NULL; | |
4130 | } | |
4131 | return splinter_vlans; | |
4132 | } | |
4133 | ||
4134 | /* Pushes the configure of VLAN splinter port 'port' (e.g. eth0.9) down to | |
4135 | * ofproto. */ | |
4136 | static void | |
4137 | configure_splinter_port(struct port *port) | |
4138 | { | |
4139 | struct ofproto *ofproto = port->bridge->ofproto; | |
4e022ec0 | 4140 | ofp_port_t realdev_ofp_port; |
52a90c29 BP |
4141 | const char *realdev_name; |
4142 | struct iface *vlandev, *realdev; | |
4143 | ||
4144 | ofproto_bundle_unregister(port->bridge->ofproto, port); | |
4145 | ||
4146 | vlandev = CONTAINER_OF(list_front(&port->ifaces), struct iface, | |
4147 | port_elem); | |
4148 | ||
a699f614 | 4149 | realdev_name = smap_get(&port->cfg->other_config, "realdev"); |
52a90c29 BP |
4150 | realdev = iface_lookup(port->bridge, realdev_name); |
4151 | realdev_ofp_port = realdev ? realdev->ofp_port : 0; | |
4152 | ||
4153 | ofproto_port_set_realdev(ofproto, vlandev->ofp_port, realdev_ofp_port, | |
4154 | *port->cfg->tag); | |
4155 | } | |
4156 | ||
4157 | static struct ovsrec_port * | |
4158 | synthesize_splinter_port(const char *real_dev_name, | |
4159 | const char *vlan_dev_name, int vid) | |
4160 | { | |
4161 | struct ovsrec_interface *iface; | |
4162 | struct ovsrec_port *port; | |
4163 | ||
a699f614 EJ |
4164 | iface = xmalloc(sizeof *iface); |
4165 | ovsrec_interface_init(iface); | |
52a90c29 BP |
4166 | iface->name = xstrdup(vlan_dev_name); |
4167 | iface->type = "system"; | |
4168 | ||
a699f614 EJ |
4169 | port = xmalloc(sizeof *port); |
4170 | ovsrec_port_init(port); | |
52a90c29 BP |
4171 | port->interfaces = xmemdup(&iface, sizeof iface); |
4172 | port->n_interfaces = 1; | |
4173 | port->name = xstrdup(vlan_dev_name); | |
4174 | port->vlan_mode = "splinter"; | |
4175 | port->tag = xmalloc(sizeof *port->tag); | |
4176 | *port->tag = vid; | |
a699f614 EJ |
4177 | |
4178 | smap_add(&port->other_config, "realdev", real_dev_name); | |
52a90c29 | 4179 | |
37344ffa | 4180 | register_rec(port); |
52a90c29 BP |
4181 | return port; |
4182 | } | |
4183 | ||
4184 | /* For each interface with 'br' that has VLAN splinters enabled, adds a | |
4185 | * corresponding ovsrec_port to 'ports' for each splinter VLAN marked with a | |
4186 | * 1-bit in the 'splinter_vlans' bitmap. */ | |
4187 | static void | |
4188 | add_vlan_splinter_ports(struct bridge *br, | |
4189 | const unsigned long int *splinter_vlans, | |
4190 | struct shash *ports) | |
4191 | { | |
4192 | size_t i; | |
4193 | ||
52a90c29 BP |
4194 | /* We iterate through 'br->cfg->ports' instead of 'ports' here because |
4195 | * we're modifying 'ports'. */ | |
4196 | for (i = 0; i < br->cfg->n_ports; i++) { | |
4197 | const char *name = br->cfg->ports[i]->name; | |
4198 | struct ovsrec_port *port_cfg = shash_find_data(ports, name); | |
4199 | size_t j; | |
4200 | ||
4201 | for (j = 0; j < port_cfg->n_interfaces; j++) { | |
4202 | struct ovsrec_interface *iface_cfg = port_cfg->interfaces[j]; | |
4203 | ||
4204 | if (vlan_splinters_is_enabled(iface_cfg)) { | |
4205 | const char *real_dev_name; | |
4206 | uint16_t vid; | |
4207 | ||
4208 | real_dev_name = iface_cfg->name; | |
4209 | BITMAP_FOR_EACH_1 (vid, 4096, splinter_vlans) { | |
4210 | const char *vlan_dev_name; | |
4211 | ||
4212 | vlan_dev_name = vlandev_get_name(real_dev_name, vid); | |
4213 | if (vlan_dev_name | |
4214 | && !shash_find(ports, vlan_dev_name)) { | |
4215 | shash_add(ports, vlan_dev_name, | |
4216 | synthesize_splinter_port( | |
4217 | real_dev_name, vlan_dev_name, vid)); | |
4218 | } | |
4219 | } | |
4220 | } | |
4221 | } | |
4222 | } | |
4223 | } | |
9d24de3b JP |
4224 | |
4225 | static void | |
4226 | mirror_refresh_stats(struct mirror *m) | |
4227 | { | |
4228 | struct ofproto *ofproto = m->bridge->ofproto; | |
4229 | uint64_t tx_packets, tx_bytes; | |
4230 | char *keys[2]; | |
4231 | int64_t values[2]; | |
4232 | size_t stat_cnt = 0; | |
4233 | ||
4234 | if (ofproto_mirror_get_stats(ofproto, m, &tx_packets, &tx_bytes)) { | |
4235 | ovsrec_mirror_set_statistics(m->cfg, NULL, NULL, 0); | |
4236 | return; | |
4237 | } | |
4238 | ||
4239 | if (tx_packets != UINT64_MAX) { | |
4240 | keys[stat_cnt] = "tx_packets"; | |
4241 | values[stat_cnt] = tx_packets; | |
4242 | stat_cnt++; | |
4243 | } | |
4244 | if (tx_bytes != UINT64_MAX) { | |
4245 | keys[stat_cnt] = "tx_bytes"; | |
4246 | values[stat_cnt] = tx_bytes; | |
4247 | stat_cnt++; | |
4248 | } | |
4249 | ||
4250 | ovsrec_mirror_set_statistics(m->cfg, keys, values, stat_cnt); | |
4251 | } |