From: Lennart Poettering Date: Wed, 16 May 2012 01:23:54 +0000 (+0200) Subject: switch-root: check for absolute paths X-Git-Tag: v183~98 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=ee83acc49b7231b493fd08ac619d09e4a5461f83 switch-root: check for absolute paths --- diff --git a/src/core/dbus-manager.c b/src/core/dbus-manager.c index 33dcb56c0..7a06ca649 100644 --- a/src/core/dbus-manager.c +++ b/src/core/dbus-manager.c @@ -1196,10 +1196,10 @@ static DBusHandlerResult bus_manager_message_handler(DBusConnection *connection, DBUS_TYPE_INVALID)) return bus_send_error_reply(connection, message, &error, -EINVAL); - if (path_equal(switch_root, "/") || !is_path(switch_root)) + if (path_equal(switch_root, "/") || !path_is_absolute(switch_root)) return bus_send_error_reply(connection, message, NULL, -EINVAL); - if (!isempty(switch_root_init) && !is_path(switch_root_init)) + if (!isempty(switch_root_init) && !path_is_absolute(switch_root_init)) return bus_send_error_reply(connection, message, NULL, -EINVAL); if (m->running_as != MANAGER_SYSTEM) {