]> git.ipfire.org Git - thirdparty/git.git/commitdiff
format-patch: create leading components of output directory
authorBert Wesarg <bert.wesarg@googlemail.com>
Fri, 11 Oct 2019 08:36:41 +0000 (10:36 +0200)
committerJunio C Hamano <gitster@pobox.com>
Sat, 12 Oct 2019 02:51:20 +0000 (11:51 +0900)
'git format-patch -o <outdir>' did an equivalent of 'mkdir <outdir>'
not 'mkdir -p <outdir>', which is being corrected.

Avoid the usage of 'adjust_shared_perm' on the leading directories which
may have security implications. Achieved by temporarily disabling of
'config.sharedRepository' like 'git init' does.

Signed-off-by: Bert Wesarg <bert.wesarg@googlemail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/config/format.txt
Documentation/git-format-patch.txt
builtin/log.c
t/t4014-format-patch.sh

index cb629fa769b7ffb61f4c825894a450aea2e8c1e2..40cad9278fd1734ce5bc7445611dbeb70d00168d 100644 (file)
@@ -81,7 +81,7 @@ format.coverLetter::
 
 format.outputDirectory::
        Set a custom directory to store the resulting files instead of the
-       current working directory.
+       current working directory. All directory components will be created.
 
 format.useAutoBase::
        A boolean value which lets you enable the `--base=auto` option of
index 0ac56f4b7080bc3d8718e7cad7dab4fedca0f670..2035d4d5d53df801186ee7a713a51634d6ac9fd9 100644 (file)
@@ -66,7 +66,8 @@ they are created in the current working directory. The default path
 can be set with the `format.outputDirectory` configuration option.
 The `-o` option takes precedence over `format.outputDirectory`.
 To store patches in the current working directory even when
-`format.outputDirectory` points elsewhere, use `-o .`.
+`format.outputDirectory` points elsewhere, use `-o .`. All directory
+components will be created.
 
 By default, the subject of a single patch is "[PATCH] " followed by
 the concatenation of lines from the commit message up to the first blank
index 44b10b3415414c0723ace29d9defb62c1354e9d6..8d086328583e9fda3329e80664ea697add3307f5 100644 (file)
@@ -1765,10 +1765,26 @@ int cmd_format_patch(int argc, const char **argv, const char *prefix)
                setup_pager();
 
        if (output_directory) {
+               int saved;
                if (rev.diffopt.use_color != GIT_COLOR_ALWAYS)
                        rev.diffopt.use_color = GIT_COLOR_NEVER;
                if (use_stdout)
                        die(_("standard output, or directory, which one?"));
+               /*
+                * We consider <outdir> as 'outside of gitdir', therefore avoid
+                * applying adjust_shared_perm in s-c-l-d.
+                */
+               saved = get_shared_repository();
+               set_shared_repository(0);
+               switch (safe_create_leading_directories_const(output_directory)) {
+               case SCLD_OK:
+               case SCLD_EXISTS:
+                       break;
+               default:
+                       die(_("could not create leading directories "
+                             "of '%s'"), output_directory);
+               }
+               set_shared_repository(saved);
                if (mkdir(output_directory, 0777) < 0 && errno != EEXIST)
                        die_errno(_("could not create directory '%s'"),
                                  output_directory);
index 83f52614d32a7a077d9d4070a8652415de869cc7..c455181e1dd763a3c35fb79b44a55d3bd76f23be 100755 (executable)
@@ -1606,6 +1606,29 @@ test_expect_success 'From line has expected format' '
        test_cmp from filtered
 '
 
+test_expect_success 'format-patch -o with no leading directories' '
+       rm -fr patches &&
+       git format-patch -o patches master..side &&
+       count=$(git rev-list --count master..side) &&
+       ls patches >list &&
+       test_line_count = $count list
+'
+
+test_expect_success 'format-patch -o with leading existing directories' '
+       git format-patch -o patches/side master..side &&
+       count=$(git rev-list --count master..side) &&
+       ls patches/side >list &&
+       test_line_count = $count list
+'
+
+test_expect_success 'format-patch -o with leading non-existing directories' '
+       rm -fr patches &&
+       git format-patch -o patches/side master..side &&
+       count=$(git rev-list --count master..side) &&
+       ls patches/side >list &&
+       test_line_count = $count list
+'
+
 test_expect_success 'format-patch format.outputDirectory option' '
        test_config format.outputDirectory patches &&
        rm -fr patches &&