From: Jeff King <peff@peff.net> To: Junio C Hamano <gitster@pobox.com> Cc: "Ævar Arnfjörð Bjarmason" <avarab@gmail.com>, "Jeffrey Walton" <noloader@gmail.com>, "Todd Zullinger" <tmz@pobox.com>, "Git List" <git@vger.kernel.org> Subject: [PATCH] Makefile: fix unaligned loads in sha1dc with UBSan Date: Tue, 12 Mar 2019 17:06:26 -0400 Message-ID: <20190312210626.GA5157@sigill.intra.peff.net> (raw) In-Reply-To: <20190311033755.GB7087@sigill.intra.peff.net> On Sun, Mar 10, 2019 at 11:37:55PM -0400, Jeff King wrote: > Unfortunately, I don't think sha1dc currently supports #defines in that > direction. The only logic is "if we are on intel, do unaligned loads" > and "even if we are not on intel, do it anyway". There is no "even if we > are on intel, do not do unaligned loads". > > I think you'd need something like this: > [...] The sha1dc folks gave us a very nice and quick turnaround on this. Thanks to them, and to Jeffrey for opening an issue there. Here's a commit which updates Git to use the new feature. I've tested it with both the in-tree and submodule builds like: make DC_SHA1_SUBMODULE=Yes SANITIZE=undefined && (cd t && ./t0001-*) make DC_SHA1_SUBMODULE= SANITIZE=undefined && (cd t && ./t0001-*) both of which fail without this patch and succeed without it. -- >8 -- Subject: [PATCH] Makefile: fix unaligned loads in sha1dc with UBSan The sha1dc library uses unaligned loads on platforms that support them. This is normally what you'd want for performance, but it does cause UBSan to complain when we compile with SANITIZE=undefined. Just like we set -DNO_UNALIGNED_LOADS for our own code in that case, we should set -DSHA1DC_FORCE_ALIGNED_ACCESS. Of course that does nothing without pulling in the patches from sha1dc to respect that define. So let's do that, too, updating both the submodule link and our in-tree copy (from the same commit). Signed-off-by: Jeff King <peff@peff.net> --- Makefile | 1 + sha1collisiondetection | 2 +- sha1dc/sha1.c | 5 +++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 537493822b..593c2c729a 100644 --- a/Makefile +++ b/Makefile @@ -1195,6 +1195,7 @@ BASIC_CFLAGS += -fsanitize=$(SANITIZE) -fno-sanitize-recover=$(SANITIZE) BASIC_CFLAGS += -fno-omit-frame-pointer ifneq ($(filter undefined,$(SANITIZERS)),) BASIC_CFLAGS += -DNO_UNALIGNED_LOADS +BASIC_CFLAGS += -DSHA1DC_FORCE_ALIGNED_ACCESS endif ifneq ($(filter leak,$(SANITIZERS)),) BASIC_CFLAGS += -DSUPPRESS_ANNOTATED_LEAKS diff --git a/sha1collisiondetection b/sha1collisiondetection index 232357eb2e..16033998da 160000 --- a/sha1collisiondetection +++ b/sha1collisiondetection @@ -1 +1 @@ -Subproject commit 232357eb2ea0397388254a4b188333a227bf5b10 +Subproject commit 16033998da4b273aebd92c84b1e1b12e4aaf7009 diff --git a/sha1dc/sha1.c b/sha1dc/sha1.c index df0630bc6d..5931cf25d5 100644 --- a/sha1dc/sha1.c +++ b/sha1dc/sha1.c @@ -124,10 +124,11 @@ #endif /*ENDIANNESS SELECTION*/ +#ifndef SHA1DC_FORCE_ALIGNED_ACCESS #if defined(SHA1DC_FORCE_UNALIGNED_ACCESS) || defined(SHA1DC_ON_INTEL_LIKE_PROCESSOR) #define SHA1DC_ALLOW_UNALIGNED_ACCESS -#endif /*UNALIGNMENT DETECTION*/ - +#endif /*UNALIGNED ACCESS DETECTION*/ +#endif /*FORCE ALIGNED ACCESS*/ #define rotate_right(x,n) (((x)>>(n))|((x)<<(32-(n)))) #define rotate_left(x,n) (((x)<<(n))|((x)>>(32-(n)))) -- 2.21.0.539.gcf54785f87
next prev parent reply other threads:[~2019-03-12 21:06 UTC|newest] Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-03-08 10:48 One failed self test on Fedora 29 Jeffrey Walton 2019-03-08 17:43 ` Todd Zullinger 2019-03-09 12:34 ` Jeffrey Walton 2019-03-09 13:12 ` Jeffrey Walton 2019-03-11 2:00 ` Junio C Hamano 2019-03-11 2:16 ` Jeffrey Walton 2019-03-11 3:37 ` disabling sha1dc unaligned access, was " Jeff King 2019-03-11 10:40 ` Jeffrey Walton 2019-03-11 18:19 ` Jeff King 2019-03-11 11:58 ` Duy Nguyen 2019-03-11 18:15 ` Thomas Braun 2019-03-11 18:23 ` Jeff King 2019-03-12 7:27 ` Junio C Hamano 2019-03-12 10:51 ` Jeff King 2019-03-13 11:47 ` Thomas Braun 2019-03-13 15:39 ` Jeff King 2019-03-13 16:00 ` Ævar Arnfjörð Bjarmason 2019-03-12 8:53 ` Ævar Arnfjörð Bjarmason 2019-03-12 11:05 ` Jeff King 2019-03-12 12:09 ` Ævar Arnfjörð Bjarmason 2019-03-12 21:01 ` Jeff King 2019-03-12 21:06 ` Jeff King [this message] 2019-03-12 21:17 ` [PATCH] Makefile: fix unaligned loads in sha1dc with UBSan Ævar Arnfjörð Bjarmason 2019-03-12 21:19 ` Jeff King 2019-03-11 3:29 ` One failed self test on Fedora 29 Jeff King
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style List information: http://vger.kernel.org/majordomo-info.html * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20190312210626.GA5157@sigill.intra.peff.net \ --to=peff@peff.net \ --cc=avarab@gmail.com \ --cc=git@vger.kernel.org \ --cc=gitster@pobox.com \ --cc=noloader@gmail.com \ --cc=tmz@pobox.com \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
git@vger.kernel.org list mirror (unofficial, one of many) This inbox may be cloned and mirrored by anyone: git clone --mirror https://public-inbox.org/git git clone --mirror http://ou63pmih66umazou.onion/git git clone --mirror http://czquwvybam4bgbro.onion/git git clone --mirror http://hjrcffqmbrq6wope.onion/git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V1 git git/ https://public-inbox.org/git \ git@vger.kernel.org public-inbox-index git Example config snippet for mirrors. Newsgroups are available over NNTP: nntp://news.public-inbox.org/inbox.comp.version-control.git nntp://ou63pmih66umazou.onion/inbox.comp.version-control.git nntp://czquwvybam4bgbro.onion/inbox.comp.version-control.git nntp://hjrcffqmbrq6wope.onion/inbox.comp.version-control.git nntp://news.gmane.io/gmane.comp.version-control.git note: .onion URLs require Tor: https://www.torproject.org/ code repositories for the project(s) associated with this inbox: https://80x24.org/mirrors/git.git AGPL code for this site: git clone https://public-inbox.org/public-inbox.git