This commit relaxes the whitelist format for punix path for service controller. Instead of only allowing punix:<ovs_rundir>/<bridge_name>.controller, the new format allows any suffix, like punix:<ovs_rundir>/<bridge_name>.*.
Signed-off-by: Alex Wang <al...@nicira.com> --- tests/ovs-vswitchd.at | 11 +++++++++++ vswitchd/bridge.c | 11 ++++++----- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/tests/ovs-vswitchd.at b/tests/ovs-vswitchd.at index 3b7c516..a42c272 100644 --- a/tests/ovs-vswitchd.at +++ b/tests/ovs-vswitchd.at @@ -153,3 +153,14 @@ AT_CHECK([sed -n " ]) AT_CLEANUP + +dnl ---------------------------------------------------------------------- +AT_SETUP([ovs-vswitchd -- set service controller]) +AT_SKIP_IF([test "$IS_WIN32" = "yes"]) +OVS_VSWITCHD_START + +AT_CHECK([ovs-vsctl set-controller br0 punix:$(pwd)/br0.void]) +OVS_WAIT_UNTIL([test -e br0.void]) + +OVS_VSWITCHD_STOP +AT_CLEANUP diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index f021360..b95610d 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -3559,18 +3559,19 @@ bridge_configure_remotes(struct bridge *br, continue; } } else { - whitelist = xasprintf("punix:%s/%s.controller", + whitelist = xasprintf("punix:%s/%s.", ovs_rundir(), br->name); - if (!equal_pathnames(c->target, whitelist, SIZE_MAX)) { + if (!equal_pathnames(c->target, whitelist, strlen(whitelist))) { /* Prevent remote ovsdb-server users from accessing * arbitrary Unix domain sockets and overwriting arbitrary * local files. */ VLOG_ERR_RL(&rl, "bridge %s: Not adding Unix domain socket " "controller \"%s\" due to possibility of " "overwriting local files. Instead, specify " - "whitelisted \"%s\" or connect to " - "\"unix:%s/%s.mgmt\" (which is always " - "available without special configuration).", + "path in whitelisted format \"%s*\" or " + "connect to \"unix:%s/%s.mgmt\" (which is " + "always available without special " + "configuration).", br->name, c->target, whitelist, ovs_rundir(), br->name); free(whitelist); -- 1.7.9.5 _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev