[PATCH] diff: don't presume empty file when corresponding object is missing

Subsystems: the rest

DORMANTno replies

2 messages, 2 authors, 2016-06-15 · open the first message on its own page

[PATCH] diff: don't presume empty file when corresponding object is missing

From: Nicolas Pitre <nico@fluxnic.net>
Date: 2016-06-15 22:49:50

The low-level diff code will happily produce totally bogus diff output 
with a broken repository via format-patch and friends by treating missing
objects as empty files.  Let's prevent that from happening any longer.

Reported-by: Uwe Kleine-König <redacted>
Signed-off-by: Nicolas Pitre <nico@fluxnic.net>
---
diff --git a/diff.c b/diff.c
index 4732b32..b2839f9 100644
--- a/diff.c
+++ b/diff.c
@@ -2386,10 +2386,14 @@ int diff_populate_filespec(struct diff_filespec *s, int size_only)
 	}
 	else {
 		enum object_type type;
-		if (size_only)
+		if (size_only) {
 			type = sha1_object_info(s->sha1, &s->size);
-		else {
+			if (type < 0)
+				die("unable to read %s", sha1_to_hex(s->sha1));
+		} else {
 			s->data = read_sha1_file(s->sha1, &type, &s->size);
+			if (!s->data)
+				die("unable to read %s", sha1_to_hex(s->sha1));
 			s->should_free = 1;
 		}
 	}

Re: [PATCH] diff: don't presume empty file when corresponding object is missing

From: Uwe Kleine-König <hidden>
Date: 2016-06-15 22:49:50

Hi Nicolas,

On Fri, Oct 22, 2010 at 12:02:27AM -0400, Nicolas Pitre wrote:
The low-level diff code will happily produce totally bogus diff output 
with a broken repository via format-patch and friends by treating missing
objects as empty files.  Let's prevent that from happening any longer.

Reported-by: Uwe Kleine-König <redacted>
Great, this fixes format-patch to fail in my tree as advertised.
Tested-by: Uwe Kleine-König <redacted>
Signed-off-by: Nicolas Pitre <nico@fluxnic.net>
Thanks
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help