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