git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* parse_object does check_sha1_signature but not parse_object_buffer?
@ 2016-02-02  1:57 Mike Hommey
  2016-02-02  2:06 ` Mike Hommey
  2016-02-02  3:10 ` Junio C Hamano
  0 siblings, 2 replies; 7+ messages in thread
From: Mike Hommey @ 2016-02-02  1:57 UTC (permalink / raw)
  To: git

Hi,

You might or might not be aware of this thread:
https://groups.google.com/forum/#!topic/binary-transparency/f-BI4o8HZW0

Anyways, this got me to take a look around, and I noticed that
parse_object does SHA-1 validation through check_sha1_signature. What
surprised me is that parse_object_buffer doesn't. So we end up with
inconsistent behavior across commands:

$ git init
$ echo a > a ; echo b > b
$ git add a b
$ git cat-file blob 78981922613b2afb6025042ff6bd878ac1994e85
a
$ cp -f .git/objects/61/780798228d17af2d34fce4cfbdf35556832472 .git/objects/78/981922613b2afb6025042ff6bd878ac1994e85
$ git cat-file blob 78981922613b2afb6025042ff6bd878ac1994e85
b
$ git show 78981922613b2afb6025042ff6bd878ac1994e85
error: sha1 mismatch 78981922613b2afb6025042ff6bd878ac1994e85
fatal: bad object 78981922613b2afb6025042ff6bd878ac1994e85

Shouldn't parse_object_buffer also do check_sha1_signature?

Mike

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2016-02-04 17:41 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-02  1:57 parse_object does check_sha1_signature but not parse_object_buffer? Mike Hommey
2016-02-02  2:06 ` Mike Hommey
2016-02-02  3:10 ` Junio C Hamano
2016-02-02  4:36   ` Mike Hommey
2016-02-02 19:25     ` Junio C Hamano
2016-02-04  7:19       ` Jeff King
2016-02-04 17:40         ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).