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: Sun, 15 May 2016 07:22:40 +0200 From: Willy Tarreau <w@....eu> To: Linus Torvalds <torvalds@...ux-foundation.org> Cc: David Miller <davem@...emloft.net>, Eric Dumazet <eric.dumazet@...il.com>, Network Development List <netdev@...r.kernel.org> Subject: Re: [PATCH] nf_conntrack: avoid kernel pointer value leak in slab name On Sat, May 14, 2016 at 03:21:31PM -0700, Linus Torvalds wrote: > On Sat, May 14, 2016 at 2:33 PM, Willy Tarreau <w@....eu> wrote: > > > > Why simply not cast the atomic to (unsigned long long) instead of (u64) > > so that %llu always matches ? > > Yes, that fixes the problem. It's just more typing, and annoying. The > fact that MS got it right while posix and gcc screwed it up is a bit > embarrassing.. Well on the other hand, because of this MS still has problems porting code from 32 to 64 bit. The real problem is that on both sides they imagined that you needed only one way to specify your types. In practice users generally want either the most optimal types for the architecture because they don't care about the size (char, int, size_t, void *...) or a specific size. This last one is annoying to use with printf format. > If we ever start using __uint128_t, we'll have even more problems in > this area. Oh well. Definitely. Willy
Powered by blists - more mailing lists