summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2018-04-18 14:20:49 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-04-18 14:20:49 +0200
commit57ea45e11a3856a110cf195628f8b26cfe019a15 (patch)
tree900a35ca836367027c812d0829bf7cf2f508e9b1
parent12777909c9cbf4217aecbbb38de97bac5252fc5b (diff)
downloadsystemd-57ea45e11a3856a110cf195628f8b26cfe019a15.tar.gz
util-lib: introduce new empty_or_root() helper (#8746)
We check the same condition at various places. Let's add a trivial, common helper for this, and use it everywhere. It's not going to make things much faster or much shorter, but I think a lot more readable
-rw-r--r--coccinelle/empty-or-root.cocci10
-rw-r--r--src/basic/cgroup-util.c4
-rw-r--r--src/basic/fs-util.c12
-rw-r--r--src/basic/path-util.c13
-rw-r--r--src/basic/path-util.h4
-rw-r--r--src/basic/unit-name.c2
-rw-r--r--src/basic/user-util.c3
-rw-r--r--src/cgtop/cgtop.c2
-rw-r--r--src/core/cgroup.c2
-rw-r--r--src/shared/path-lookup.c2
-rw-r--r--src/test/test-path-util.c14
11 files changed, 50 insertions, 18 deletions
diff --git a/coccinelle/empty-or-root.cocci b/coccinelle/empty-or-root.cocci
new file mode 100644
index 0000000000..bf2f614da6
--- /dev/null
+++ b/coccinelle/empty-or-root.cocci
@@ -0,0 +1,10 @@
+@@
+expression s;
+@@
+- (isempty(s) || path_equal(s, "/"))
++ empty_or_root(s)
+@@
+expression s;
+@@
+- (!isempty(s) && !path_equal(s, "/"))
++ !empty_or_root(s)
diff --git a/src/basic/cgroup-util.c b/src/basic/cgroup-util.c
index 46ae36d081..b5b0d58485 100644
--- a/src/basic/cgroup-util.c
+++ b/src/basic/cgroup-util.c
@@ -421,7 +421,7 @@ int cg_migrate(
* exist in the root cgroup, we only check for
* them there. */
if (cfrom &&
- (isempty(pfrom) || path_equal(pfrom, "/")) &&
+ empty_or_root(pfrom) &&
is_kernel_thread(pid) > 0)
continue;
@@ -1185,7 +1185,7 @@ int cg_is_empty_recursive(const char *controller, const char *path) {
assert(path);
/* The root cgroup is always populated */
- if (controller && (isempty(path) || path_equal(path, "/")))
+ if (controller && empty_or_root(path))
return false;
r = cg_unified_controller(controller);
diff --git a/src/basic/fs-util.c b/src/basic/fs-util.c
index bfdd9282f2..8ce4571d2b 100644
--- a/src/basic/fs-util.c
+++ b/src/basic/fs-util.c
@@ -564,10 +564,6 @@ int inotify_add_watch_fd(int fd, int what, uint32_t mask) {
return r;
}
-static bool noop_root(const char *root) {
- return isempty(root) || path_equal(root, "/");
-}
-
static bool safe_transition(const struct stat *a, const struct stat *b) {
/* Returns true if the transition from a to b is safe, i.e. that we never transition from unprivileged to
* privileged files or directories. Why bother? So that unprivileged code can't symlink to privileged files
@@ -618,7 +614,7 @@ int chase_symlinks(const char *path, const char *original_root, unsigned flags,
* specified path. */
/* A root directory of "/" or "" is identical to none */
- if (noop_root(original_root))
+ if (empty_or_root(original_root))
original_root = NULL;
if (!original_root && !ret && (flags & (CHASE_NONEXISTENT|CHASE_NO_AUTOFS|CHASE_SAFE|CHASE_OPEN)) == CHASE_OPEN) {
@@ -703,7 +699,7 @@ int chase_symlinks(const char *path, const char *original_root, unsigned flags,
/* If we already are at the top, then going up will not change anything. This is in-line with
* how the kernel handles this. */
- if (isempty(done) || path_equal(done, "/"))
+ if (empty_or_root(done))
continue;
parent = dirname_malloc(done);
@@ -889,7 +885,7 @@ int chase_symlinks_and_open(
if (chase_flags & CHASE_NONEXISTENT)
return -EINVAL;
- if (noop_root(root) && !ret_path && (chase_flags & (CHASE_NO_AUTOFS|CHASE_SAFE)) == 0) {
+ if (empty_or_root(root) && !ret_path && (chase_flags & (CHASE_NO_AUTOFS|CHASE_SAFE)) == 0) {
/* Shortcut this call if none of the special features of this call are requested */
r = open(path, open_flags);
if (r < 0)
@@ -929,7 +925,7 @@ int chase_symlinks_and_opendir(
if (chase_flags & CHASE_NONEXISTENT)
return -EINVAL;
- if (noop_root(root) && !ret_path && (chase_flags & (CHASE_NO_AUTOFS|CHASE_SAFE)) == 0) {
+ if (empty_or_root(root) && !ret_path && (chase_flags & (CHASE_NO_AUTOFS|CHASE_SAFE)) == 0) {
/* Shortcut this call if none of the special features of this call are requested */
d = opendir(path);
if (!d)
diff --git a/src/basic/path-util.c b/src/basic/path-util.c
index 5572c21952..2ecb143014 100644
--- a/src/basic/path-util.c
+++ b/src/basic/path-util.c
@@ -640,7 +640,7 @@ char *prefix_root(const char *root, const char *path) {
while (path[0] == '/' && path[1] == '/')
path++;
- if (isempty(root) || path_equal(root, "/"))
+ if (empty_or_root(root))
return strdup(path);
l = strlen(root) + 1 + strlen(path) + 1;
@@ -965,3 +965,14 @@ bool dot_or_dot_dot(const char *path) {
return path[2] == 0;
}
+
+bool empty_or_root(const char *root) {
+
+ /* For operations relative to some root directory, returns true if the specified root directory is redundant,
+ * i.e. either / or NULL or the empty string or any equivalent. */
+
+ if (!root)
+ return true;
+
+ return root[strspn(root, "/")] == 0;
+}
diff --git a/src/basic/path-util.h b/src/basic/path-util.h
index 7ec0a3eb0f..fa8f8e4eab 100644
--- a/src/basic/path-util.h
+++ b/src/basic/path-util.h
@@ -111,7 +111,7 @@ char *prefix_root(const char *root, const char *path);
size_t _l; \
while (_path[0] == '/' && _path[1] == '/') \
_path ++; \
- if (isempty(_root) || path_equal(_root, "/")) \
+ if (empty_or_root(_root)) \
_ret = _path; \
else { \
_l = strlen(_root) + 1 + strlen(_path) + 1; \
@@ -155,3 +155,5 @@ static inline const char *skip_dev_prefix(const char *p) {
return e ?: p;
}
+
+bool empty_or_root(const char *root);
diff --git a/src/basic/unit-name.c b/src/basic/unit-name.c
index 13653d9b78..407982e8ff 100644
--- a/src/basic/unit-name.c
+++ b/src/basic/unit-name.c
@@ -385,7 +385,7 @@ int unit_name_path_escape(const char *f, char **ret) {
path_kill_slashes(p);
- if (STR_IN_SET(p, "/", ""))
+ if (empty_or_root(p))
s = strdup("-");
else {
if (!path_is_normalized(p))
diff --git a/src/basic/user-util.c b/src/basic/user-util.c
index 66a01b0cfd..1effd55b02 100644
--- a/src/basic/user-util.c
+++ b/src/basic/user-util.c
@@ -221,8 +221,7 @@ int get_user_creds_clean(
(isempty(*shell) || is_nologin_shell(*shell)))
*shell = NULL;
- if (home &&
- (isempty(*home) || path_equal(*home, "/")))
+ if (home && empty_or_root(*home))
*home = NULL;
return 0;
diff --git a/src/cgtop/cgtop.c b/src/cgtop/cgtop.c
index 7fe812d0ff..de5083bdde 100644
--- a/src/cgtop/cgtop.c
+++ b/src/cgtop/cgtop.c
@@ -134,7 +134,7 @@ static bool is_root_cgroup(const char *path) {
if (detect_container() > 0)
return false;
- return isempty(path) || path_equal(path, "/");
+ return empty_or_root(path);
}
static int process(
diff --git a/src/core/cgroup.c b/src/core/cgroup.c
index b6d185ba53..1308bc195c 100644
--- a/src/core/cgroup.c
+++ b/src/core/cgroup.c
@@ -40,7 +40,7 @@ bool manager_owns_root_cgroup(Manager *m) {
if (detect_container() > 0)
return false;
- return isempty(m->cgroup_root) || path_equal(m->cgroup_root, "/");
+ return empty_or_root(m->cgroup_root);
}
bool unit_has_root_cgroup(Unit *u) {
diff --git a/src/shared/path-lookup.c b/src/shared/path-lookup.c
index c4b5075596..33e38f8a71 100644
--- a/src/shared/path-lookup.c
+++ b/src/shared/path-lookup.c
@@ -484,7 +484,7 @@ int lookup_paths_init(
assert(scope >= 0);
assert(scope < _UNIT_FILE_SCOPE_MAX);
- if (!isempty(root_dir) && !path_equal(root_dir, "/")) {
+ if (!empty_or_root(root_dir)) {
if (scope == UNIT_FILE_USER)
return -EINVAL;
diff --git a/src/test/test-path-util.c b/src/test/test-path-util.c
index f1a2df3465..c65b0b06b4 100644
--- a/src/test/test-path-util.c
+++ b/src/test/test-path-util.c
@@ -474,6 +474,19 @@ static void test_skip_dev_prefix(void) {
assert_se(streq(skip_dev_prefix("foo"), "foo"));
}
+static void test_empty_or_root(void) {
+ assert_se(empty_or_root(NULL));
+ assert_se(empty_or_root(""));
+ assert_se(empty_or_root("/"));
+ assert_se(empty_or_root("//"));
+ assert_se(empty_or_root("///"));
+ assert_se(empty_or_root("/////////////////"));
+ assert_se(!empty_or_root("xxx"));
+ assert_se(!empty_or_root("/xxx"));
+ assert_se(!empty_or_root("/xxx/"));
+ assert_se(!empty_or_root("//yy//"));
+}
+
int main(int argc, char **argv) {
log_set_max_level(LOG_DEBUG);
log_parse_environment();
@@ -494,6 +507,7 @@ int main(int argc, char **argv) {
test_filename_is_valid();
test_hidden_or_backup_file();
test_skip_dev_prefix();
+ test_empty_or_root();
test_systemd_installation_has_version(argv[1]); /* NULL is OK */