aboutsummaryrefslogtreecommitdiff
path: root/vswitchd
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2011-10-14 10:17:41 -0700
committerBen Pfaff <blp@nicira.com>2011-10-17 09:05:15 -0700
commit5af5b5324cfc096ff80e96b06b3eb4d6f03307a3 (patch)
tree767295a2205bfb71049e555aab4471bd077cde34 /vswitchd
parent085a41cb35dc1d396cf2d5fd833696072d84c040 (diff)
bridge: Forbid '/' in bridge names to prevent arbitrary directory access.
Diffstat (limited to 'vswitchd')
-rw-r--r--vswitchd/bridge.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c
index 186f2501..4e2833e0 100644
--- a/vswitchd/bridge.c
+++ b/vswitchd/bridge.c
@@ -739,9 +739,16 @@ add_del_bridges(const struct ovsrec_open_vswitch *cfg)
/* Collect new bridges' names and types. */
shash_init(&new_br);
for (i = 0; i < cfg->n_bridges; i++) {
+ static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
const struct ovsrec_bridge *br_cfg = cfg->bridges[i];
- if (!shash_add_once(&new_br, br_cfg->name, br_cfg)) {
- VLOG_WARN("bridge %s specified twice", br_cfg->name);
+
+ if (strchr(br_cfg->name, '/')) {
+ /* Prevent remote ovsdb-server users from accessing arbitrary
+ * directories, e.g. consider a bridge named "../../../etc/". */
+ VLOG_WARN_RL(&rl, "ignoring bridge with invalid name \"%s\"",
+ br_cfg->name);
+ } else if (!shash_add_once(&new_br, br_cfg->name, br_cfg)) {
+ VLOG_WARN_RL(&rl, "bridge %s specified twice", br_cfg->name);
}
}