summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/git/git/CVE-2023-25652.patch
blob: 825701eaffcede1e3ec1930344bd15dbfebca38b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
From 9db05711c98efc14f414d4c87135a34c13586e0b Mon Sep 17 00:00:00 2001
From: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Date: Thu Mar 9 16:02:54 2023 +0100
Subject: [PATCH] apply --reject: overwrite existing `.rej` symlink if it
 exists

   The `git apply --reject` is expected to write out `.rej` files in case
   one or more hunks fail to apply cleanly. Historically, the command
   overwrites any existing `.rej` files. The idea being that
   apply/reject/edit cycles are relatively common, and the generated `.rej`
   files are not considered precious.

    But the command does not overwrite existing `.rej` symbolic links, and
    instead follows them. This is unsafe because the same patch could
    potentially create such a symbolic link and point at arbitrary paths
    outside the current worktree, and `git apply` would write the contents
    of the `.rej` file into that location.

    Therefore, let's make sure that any existing `.rej` file or symbolic
    link is removed before writing it.

    Reported-by: RyotaK <ryotak.mail@gmail.com>
    Helped-by: Taylor Blau <me@ttaylorr.com>
    Helped-by: Junio C Hamano <gitster@pobox.com>
    Helped-by: Linus Torvalds <torvalds@linuxfoundation.org>
    Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

CVE: CVE-2023-25652
Upstream-Status: Backport [https://github.com/git/git/commit/9db05711c98efc14f414d4c87135a34c13586e0b]

Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
---
 apply.c                  | 14 ++++++++++++--
 t/t4115-apply-symlink.sh | 15 +++++++++++++++
 2 files changed, 27 insertions(+), 2 deletions(-)

diff --git a/apply.c b/apply.c
index fc6f484..47f2686 100644
--- a/apply.c
+++ b/apply.c
@@ -4584,7 +4584,7 @@ static int write_out_one_reject(struct apply_state *state, struct patch *patch)
	FILE *rej;
	char namebuf[PATH_MAX];
	struct fragment *frag;
-	int cnt = 0;
+	int fd, cnt = 0;
	struct strbuf sb = STRBUF_INIT;

	for (cnt = 0, frag = patch->fragments; frag; frag = frag->next) {
@@ -4624,7 +4624,17 @@ static int write_out_one_reject(struct apply_state *state, struct patch *patch)
	memcpy(namebuf, patch->new_name, cnt);
	memcpy(namebuf + cnt, ".rej", 5);

-	rej = fopen(namebuf, "w");
+	fd = open(namebuf, O_CREAT | O_EXCL | O_WRONLY, 0666);
+	if (fd < 0) {
+		if (errno != EEXIST)
+			return error_errno(_("cannot open %s"), namebuf);
+		if (unlink(namebuf))
+			return error_errno(_("cannot unlink '%s'"), namebuf);
+		fd = open(namebuf, O_CREAT | O_EXCL | O_WRONLY, 0666);
+		if (fd < 0)
+			return error_errno(_("cannot open %s"), namebuf);
+	}
+	rej = fdopen(fd, "w");
	if (!rej)
		return error_errno(_("cannot open %s"), namebuf);

diff --git a/t/t4115-apply-symlink.sh b/t/t4115-apply-symlink.sh
index 65ac7df..e95e6d4 100755
--- a/t/t4115-apply-symlink.sh
+++ b/t/t4115-apply-symlink.sh
@@ -126,4 +126,19 @@ test_expect_success SYMLINKS 'symlink escape when deleting file' '
	test_path_is_file .git/delete-me
 '

+test_expect_success SYMLINKS '--reject removes .rej symlink if it exists' '
+	test_when_finished "git reset --hard && git clean -dfx" &&
+
+	test_commit file &&
+	echo modified >file.t &&
+	git diff -- file.t >patch &&
+	echo modified-again >file.t &&
+
+	ln -s foo file.t.rej &&
+	test_must_fail git apply patch --reject 2>err &&
+	test_i18ngrep "Rejected hunk" err &&
+	test_path_is_missing foo &&
+	test_path_is_file file.t.rej
+'
+
 test_done
--
2.40.0