From: Lennart Poettering Date: Tue, 10 Dec 2024 12:37:56 +0000 (+0100) Subject: sd-path: don't chop off trailing slash in sd_path apis, when user provided them X-Git-Tag: v258-rc1~1795^2~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=616586b91003adf08c56b5f63e60b6f8a4dbe893;p=thirdparty%2Fsystemd.git sd-path: don't chop off trailing slash in sd_path apis, when user provided them This is a minor compat break, but given the slow adoption of the sd-path.h APIs I think it's one we should take. Basically, the idea is that if the user provides a suffix path with a trailing slash (thus encoding in the path that the last element must be a dir), we should keep it in place, and not suppress it, in order to not willy nilly reduce the amount of information contained in the path. Simplifications that do not alter meaning, and do not suppress information should be fine to apply to a path, but otherwise we really should be conservative on this. --- diff --git a/src/libsystemd/sd-path/sd-path.c b/src/libsystemd/sd-path/sd-path.c index 9f495f30512..a2f03f52e92 100644 --- a/src/libsystemd/sd-path/sd-path.c +++ b/src/libsystemd/sd-path/sd-path.c @@ -366,12 +366,12 @@ static int get_path_alloc(uint64_t type, const char *suffix, char **ret) { if (r < 0) return r; - if (suffix) { + if (!isempty(suffix)) { char *suffixed = path_join(p, suffix); if (!suffixed) return -ENOMEM; - path_simplify(suffixed); + path_simplify_full(suffixed, PATH_SIMPLIFY_KEEP_TRAILING_SLASH); free_and_replace(buffer, suffixed); } else if (!buffer) { @@ -637,7 +637,7 @@ _public_ int sd_path_lookup_strv(uint64_t type, const char *suffix, char ***ret) if (!path_extend(i, suffix)) return -ENOMEM; - path_simplify(*i); + path_simplify_full(*i, PATH_SIMPLIFY_KEEP_TRAILING_SLASH); } *ret = TAKE_PTR(l);