]> git.ipfire.org Git - thirdparty/git.git/commitdiff
safe.directory: preliminary clean-up
authorJunio C Hamano <gitster@pobox.com>
Tue, 30 Jul 2024 18:43:49 +0000 (11:43 -0700)
committerJunio C Hamano <gitster@pobox.com>
Tue, 30 Jul 2024 18:47:58 +0000 (11:47 -0700)
The paths given in the safe.directory configuration variable are
allowed to contain "~user" (which interpolates to user's home
directory) and "%(prefix)" (which interpolates to the installation
location in RUNTIME_PREFIX-enabled builds, and a call to the
git_config_pathname() function is tasked to obtain a copy of the
path with these constructs interpolated.

The function, when it succeeds, always yields an allocated string in
the location given as the out-parameter; even when there is nothing
to interpolate in the original, a literal copy is made.  The code
path that contains this caller somehow made two contradicting and
incorrect assumptions of the behaviour when there is no need for
interpolation, and was written with extra defensiveness against
two phantom risks that do not exist.

One wrong assumption was that the function might yield NULL when
there is no interpolation.  This led to the use of an extra "check"
variable, conditionally holding either the interpolated or the
original string.  The assumption was with us since 8959555c
(setup_git_directory(): add an owner check for the top-level
directory, 2022-03-02) originally introduced the safe.directory
feature.

Another wrong assumption was that the function might yield the same
pointer as the input when there is no interpolation.  This led to a
conditional free'ing of the interpolated copy, that the conditional
never skipped, as we always received an allocated string.

Simplify the code by removing the extra defensiveness.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
setup.c

diff --git a/setup.c b/setup.c
index d458edcc028ef17d5917470bdbc71ecbbd66045c..3177d010d1e0826304e121e0acc3507cf5e14fa6 100644 (file)
--- a/setup.c
+++ b/setup.c
@@ -1235,17 +1235,15 @@ static int safe_directory_cb(const char *key, const char *value,
                char *allowed = NULL;
 
                if (!git_config_pathname(&allowed, key, value)) {
-                       const char *check = allowed ? allowed : value;
-                       if (ends_with(check, "/*")) {
-                               size_t len = strlen(check);
-                               if (!fspathncmp(check, data->path, len - 1))
+                       if (ends_with(allowed, "/*")) {
+                               size_t len = strlen(allowed);
+                               if (!fspathncmp(allowed, data->path, len - 1))
                                        data->is_safe = 1;
-                       } else if (!fspathcmp(data->path, check)) {
+                       } else if (!fspathcmp(data->path, allowed)) {
                                data->is_safe = 1;
                        }
-               }
-               if (allowed != value)
                        free(allowed);
+               }
        }
 
        return 0;