lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Tue, 18 Aug 2020 17:44:03 -0700 From: Linus Torvalds <torvalds@...ux-foundation.org> To: Arvind Sankar <nivedita@...m.mit.edu> Cc: Andrew Morton <akpm@...ux-foundation.org>, Nick Desaulniers <ndesaulniers@...gle.com>, Linux Kernel Mailing List <linux-kernel@...r.kernel.org>, clang-built-linux <clang-built-linux@...glegroups.com> Subject: Re: [PATCH] lib/string.c: Disable tree-loop-distribute-patterns On Tue, Aug 18, 2020 at 4:43 PM Arvind Sankar <nivedita@...m.mit.edu> wrote: > > This by itself is insufficient for gcc if the optimization was > explicitly enabled by CFLAGS, so also add a flag to explicitly disable > it. Using -fno-tree-loop-distribute-patterns seems to really be a bit too incestuous with internal compiler knowledge. That generic memcpy implementation is horrible anyway. It should never be used. So I'd rather see this either removed entirely, ot possibly rewritten to be a somewhat proper memcpy implementation, and in the process made to not be recognizable by the compiler (possibly by adding a dummy barrier() or something like that). Looking at the implementation of "strscpy()" in the same file, and then comparing that to the ludicrously simplisting "memcpy()", I really get the feeling that that memcpy() is not worth having. Linus
Powered by blists - more mailing lists