Re: [BUG/PATCH] kernel RNG and its secrets

2015-04-27 Thread Daniel Borkmann

On 04/27/2015 10:41 PM, Stephan Mueller wrote:
...

It seems you have the code already in mind, so please if you could write it
:-)


Ok, sure. I'll cook something by tomorrow morning.

Cheers,
Daniel
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [BUG/PATCH] kernel RNG and its secrets

2015-04-27 Thread Stephan Mueller
Am Montag, 27. April 2015, 22:34:30 schrieb Daniel Borkmann:

Hi Daniel,

> On 04/27/2015 09:10 PM, Stephan Mueller wrote:
> ...
> 
> > I posted the issue on the clang mailing list on April 10 -- no word so
> > far. I would interpret this as a sign that it is a no-issue for them.
> 
> Hm. ;)
> 
> Here's a bug report on the topic, gcc vs llvm:
> 
>https://llvm.org/bugs/show_bug.cgi?id=15495
> 
> Lets add a new barrier macro to linux/compiler{,-gcc}.h, f.e.
> 
>#define barrier_data(ptr) __asm__ __volatile__("" : : "r" (ptr) :
> "memory")
> 
> or the version Mancha proposed. You could wrap that ...
> 
>#define OPTIMIZER_HIDE(ptr)   barrier_data(ptr)
> 
> ... and use that one for memzero_explicit() instead:
> 
>void memzero_explicit(void *s, size_t count)
>{
>   memset(s, 0, count);
>   OPTIMIZER_HIDE(s);
>}
> 
> It certainly needs comments explaining in what situations to use
> which OPTIMIZER_HIDE* variants, etc.
> 
> Do you want to send a patch?

It seems you have the code already in mind, so please if you could write it 
:-)

-- 
Ciao
Stephan
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [BUG/PATCH] kernel RNG and its secrets

2015-04-27 Thread Daniel Borkmann

On 04/27/2015 09:10 PM, Stephan Mueller wrote:
...

I posted the issue on the clang mailing list on April 10 -- no word so far. I
would interpret this as a sign that it is a no-issue for them.


Hm. ;)

Here's a bug report on the topic, gcc vs llvm:

  https://llvm.org/bugs/show_bug.cgi?id=15495

Lets add a new barrier macro to linux/compiler{,-gcc}.h, f.e.

  #define barrier_data(ptr) __asm__ __volatile__("" : : "r" (ptr) : "memory")

or the version Mancha proposed. You could wrap that ...

  #define OPTIMIZER_HIDE(ptr)   barrier_data(ptr)

... and use that one for memzero_explicit() instead:

  void memzero_explicit(void *s, size_t count)
  {
 memset(s, 0, count);
 OPTIMIZER_HIDE(s);
  }

It certainly needs comments explaining in what situations to use
which OPTIMIZER_HIDE* variants, etc.

Do you want to send a patch?
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [BUG/PATCH] kernel RNG and its secrets

2015-04-27 Thread Stephan Mueller
Am Freitag, 10. April 2015, 16:50:22 schrieb Stephan Mueller:

Hi Stephan,

>Am Freitag, 10. April 2015, 16:46:04 schrieb Daniel Borkmann:
>
>Hi Daniel,
>
>>On 04/10/2015 04:36 PM, Stephan Mueller wrote:
>>> Am Freitag, 10. April 2015, 16:26:00 schrieb Hannes Frederic Sowa:
>>...
>>
 I suspected a problem in how volatile with non-present output args could
 be different, but this seems not to be the case.
 
 I would contact llvm/clang mailing list and ask. Maybe there is a
 problem? It seems kind of strange to me...
>>
>>+1
>>
>>> Do you really think this is a compiler issue?
>>
>>If clang/LLVM advertises "GCC compatibility", then this would
>>certainly be a different behavior.
>
>As you wish. I will contact the clang folks. As the proposed fix is not super
>urgend, I think we can leave it until I got word from clang.

I posted the issue on the clang mailing list on April 10 -- no word so far. I 
would interpret this as a sign that it is a no-issue for them.

Thus, I propose we update our memzero_explicit implementation to use

__asm__ __volatile__("" : "=r" (s) : "0" (s) : "memory");

Concerns?

Ciao
Stephan
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [BUG/PATCH] kernel RNG and its secrets

2015-04-10 Thread mancha security
On Fri, Apr 10, 2015 at 04:33:17PM +0200, Stephan Mueller wrote:
> Am Freitag, 10. April 2015, 14:22:08 schrieb mancha security:
> 
> Hi mancha,
> 
> >__asm__ __volatile__("": :"r"(p) :"memory")
> 
> gcc -O2/3: mov present
> 
> clang -O2/3: mov present
> 
> ==> approach would be good too.
> 
> Note, the assembly code does not seem to change whether to use this approach 
> or the one I initially tested.
> 
> 
> Ciao
> Stephan

Hi Stephan.

Many thanks for confirmation.


pgpGFFg5aoDor.pgp
Description: PGP signature


Re: [BUG/PATCH] kernel RNG and its secrets

2015-03-18 Thread Cesar Eduardo Barros

On 18-03-2015 14:14, mancha wrote:

On Wed, Mar 18, 2015 at 05:02:01PM +0100, Stephan Mueller wrote:

Am Mittwoch, 18. März 2015, 16:09:34 schrieb Hannes Frederic Sowa:

Seems like just using barrier() is the best and easiest option.


However, if the idea is to use barrier() instead of OPTIMIZER_HIDE_VAR()
in crypto_memneq() as well, then patch 0002 is the one to use. Please
review and keep in mind my analysis was limited to memzero_explicit().

Cesar, were there reasons you didn't use the gcc version of barrier()
for crypto_memneq()?


Yes. Two reasons.

Take a look at how barrier() is defined:

#define barrier() __asm__ __volatile__("": : :"memory")

It tells gcc that the dummy assembly "instruction" touches memory (so 
the compiler can't assume anything about the memory), and that nothing 
should be moved from before to after the barrier and vice versa.


It mentions nothing about registers. Therefore, as far as I know gcc can 
assume that the dummy "instruction" touches no integer registers (or 
restores their values). I can imagine a sufficiently perverse compiler 
using that fact to introduce timing-dependent computations. For 
instance, it could load the values using more than one register and 
combine them at the end, after the barriers; there, it could exit early 
in case one of the registers is all-ones. My definition of 
OPTIMIZER_HIDE_VAR introduces a data dependency to prevent that:


#define OPTIMIZER_HIDE_VAR(var) __asm__ ("" : "=r" (var) : "0" (var))

The second reason is that barrier() is too strong. For crypto_memneq, 
only the or-chain is critical; the order or width of the loads makes no 
difference. The compiler could, if it wishes, do all the loads and xors 
first and do the or-chain at the end, or whenever it can see a pipeline 
bubble; it doesn't matter as long as it does *all* the "or" operations, 
in sequence.


I would be comfortable with a stronger OPTIMIZER_HIDE_VAR (adding 
"memory" or volatile), even though it could limit optimization 
opportunities, but I wouldn't be comfortable with a weaker 
OPTIMIZER_HIDE_VAR (removing the data dependency), unless the gcc and 
clang guys promise that our definition of barrier() will always prevent 
undesired optimization of register-only operations.


There was a third reason for the exact definition of OPTIMIZER_HIDE_VAR: 
it was copied from RELOC_HIDE, which is a longstanding "hide this 
variable from gcc" operation, and thus known to work as expected.


--
Cesar Eduardo Barros
ces...@cesarb.eti.br
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [BUG/PATCH] kernel RNG and its secrets

2015-03-18 Thread mancha
On Wed, Mar 18, 2015 at 06:49:55PM +0100, Daniel Borkmann wrote:
> On 03/18/2015 06:14 PM, mancha wrote:
> ...
> >Patch 0001 fixes the dead store issue in memzero_explicit().
> 
> Thanks! I have issued the fix for the memzero bug to Herbert in
> your authorship as discussed, also giving some more context.
> 
> For the 2nd issue, lets wait for Cesar.
> 
> Thanks again!

Excellent! 

Cheers.

--mancha


pgpGYVOl8GcTL.pgp
Description: PGP signature


Re: [BUG/PATCH] kernel RNG and its secrets

2015-03-18 Thread Theodore Ts'o
On Wed, Mar 18, 2015 at 06:56:19PM +0100, Hannes Frederic Sowa wrote:
> 
> Maybe a BUILD_BUGON: ;)

Even better!  :-)

- Ted

> 
> __label__ l1, l2;
> char buffer[1024];
> l1:
> memset(buffer, 0, 1024);
> l2:
>   BUILD_BUGON(&&l1 == &&l2);
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [BUG/PATCH] kernel RNG and its secrets

2015-03-18 Thread Hannes Frederic Sowa
On Wed, Mar 18, 2015, at 18:41, Theodore Ts'o wrote:
> Maybe we should add a kernel self-test that automatically checks
> whether or not memset_explicit() gets optimized away?  Otherwise we
> might not notice when gcc or how we implement barrier() or whatever
> else we end up using ends up changing.
> 
> It shold be something that is really fast, so it might be a good idea
> to simply automatically run it as part of an __initcall()
> unconditionally.  We can debate where the __initcall() lives, but I'd
> prefer that it be run even if the crypto layer isn't configured for
> some reason.  Hopefully such an self-test is small enough that the
> kernel bloat people won't complain.  :-)
> 
>-Ted

Maybe a BUILD_BUGON: ;)

__label__ l1, l2;
char buffer[1024];
l1:
memset(buffer, 0, 1024);
l2:
  BUILD_BUGON(&&l1 == &&l2);

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [BUG/PATCH] kernel RNG and its secrets

2015-03-18 Thread Daniel Borkmann

On 03/18/2015 06:14 PM, mancha wrote:
...

Patch 0001 fixes the dead store issue in memzero_explicit().


Thanks! I have issued the fix for the memzero bug to Herbert in
your authorship as discussed, also giving some more context.

For the 2nd issue, lets wait for Cesar.

Thanks again!
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [BUG/PATCH] kernel RNG and its secrets

2015-03-18 Thread Theodore Ts'o
Maybe we should add a kernel self-test that automatically checks
whether or not memset_explicit() gets optimized away?  Otherwise we
might not notice when gcc or how we implement barrier() or whatever
else we end up using ends up changing.

It shold be something that is really fast, so it might be a good idea
to simply automatically run it as part of an __initcall()
unconditionally.  We can debate where the __initcall() lives, but I'd
prefer that it be run even if the crypto layer isn't configured for
some reason.  Hopefully such an self-test is small enough that the
kernel bloat people won't complain.  :-)

 -Ted
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [BUG/PATCH] kernel RNG and its secrets

2015-03-18 Thread mancha
On Wed, Mar 18, 2015 at 05:02:01PM +0100, Stephan Mueller wrote:
> Am Mittwoch, 18. März 2015, 16:09:34 schrieb Hannes Frederic Sowa:
> 
> Hi Hannes,
> 
> >On Wed, Mar 18, 2015, at 13:42, Daniel Borkmann wrote:
> >> On 03/18/2015 01:20 PM, Stephan Mueller wrote:
> >> > Am Mittwoch, 18. März 2015, 13:19:07 schrieb Hannes Frederic Sowa:
> >>  My proposal would be to add a
> >>  
> >>  #define OPTIMIZER_HIDE_MEM(ptr, len) __asm__ __volatile__ ("" :
> >>  :
> >>  "m"(
> >>  ({ struct { u8 b[len]; } *p = (void *)ptr ; *p; }) )
> >>  
> >>  and use this in the code function.
> >>  
> >>  This is documented in gcc manual 6.43.2.5.
> >> >>> 
> >> >>> That one adds the zeroization instructuctions. But now there are
> >> >>> much
> >> >>> more than with the barrier.
> >> >>> 
> >> >>>400469:   48 c7 04 24 00 00 00movq   $0x0,(%rsp)
> >> >>>400470:   00
> >> >>>400471:   48 c7 44 24 08 00 00movq   $0x0,0x8(%rsp)
> >> >>>400478:   00 00
> >> >>>40047a:   c7 44 24 10 00 00 00movl   $0x0,0x10(%rsp)
> >> >>>400481:   00
> >> >>>400482:   48 c7 44 24 20 00 00movq   $0x0,0x20(%rsp)
> >> >>>400489:   00 00
> >> >>>40048b:   48 c7 44 24 28 00 00movq   $0x0,0x28(%rsp)
> >> >>>400492:   00 00
> >> >>>400494:   c7 44 24 30 00 00 00movl   $0x0,0x30(%rsp)
> >> >>>40049b:   00
> >> >>> 
> >> >>> Any ideas?
> >> >> 
> >> >> Hmm, correct definition of u8?
> >> > 
> >> > I use unsigned char
> >> > 
> >> >> Which version of gcc do you use? I can't see any difference if I
> >> >> compile your example at -O2.
> >> > 
> >> > gcc-Version 4.9.2 20150212 (Red Hat 4.9.2-6) (GCC)
> >
> >Well, was an error on my side, I see the same behavior.
> >
> >> I can see the same with the gcc version I previously posted. So
> >> it clears the 20 bytes from your example (movq, movq, movl) at
> >> two locations, presumably buf[] and b[].
> >
> >Yes, it looks like that. The reservation on the stack changes, too.
> >
> >Seems like just using barrier() is the best and easiest option.
> 
> Would you prepare a patch for that?
> >
> >Thanks,
> >Hannes
> 
> 
> Ciao
> Stephan

Hi.

Patch 0001 fixes the dead store issue in memzero_explicit().

However, if the idea is to use barrier() instead of OPTIMIZER_HIDE_VAR()
in crypto_memneq() as well, then patch 0002 is the one to use. Please
review and keep in mind my analysis was limited to memzero_explicit().

Cesar, were there reasons you didn't use the gcc version of barrier()
for crypto_memneq()?

Please let me know if I can be of any further assistance.

--mancha
From cd9e882cd1d684f50c52471d83f9ecf55427c360 Mon Sep 17 00:00:00 2001
From: mancha security 
Date: Wed, 18 Mar 2015 16:14:34 +
Subject: [PATCH] lib/string.c: use barrier() to protect memzero_explicit()

OPTIMIZER_HIDE_VAR(), as defined when using gcc, is insufficient
to ensure protection from dead store optimization.
---
 lib/string.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/string.c b/lib/string.c
index ce81aae..a579201 100644
--- a/lib/string.c
+++ b/lib/string.c
@@ -607,7 +607,7 @@ EXPORT_SYMBOL(memset);
 void memzero_explicit(void *s, size_t count)
 {
memset(s, 0, count);
-   OPTIMIZER_HIDE_VAR(s);
+   barrier();
 }
 EXPORT_SYMBOL(memzero_explicit);
 
-- 
2.1.4

From bca436d73ee5388be26488e3d2decdad1c6ba322 Mon Sep 17 00:00:00 2001
From: mancha security 
Date: Wed, 18 Mar 2015 16:26:11 +
Subject: [PATCH] crypto: cyrpto_memneq and memzero_explicit

OPTIMIZER_HIDE_VAR(), as defined for gcc, is insufficient to protect
against certain compiler optimizations. Use barrier() instead.
---
 crypto/memneq.c| 48 +-
 include/linux/compiler-gcc.h   |  3 ---
 include/linux/compiler-intel.h |  7 --
 include/linux/compiler.h   |  4 
 lib/string.c   |  2 +-
 5 files changed, 25 insertions(+), 39 deletions(-)

diff --git a/crypto/memneq.c b/crypto/memneq.c
index afed1bd..efa7750 100644
--- a/crypto/memneq.c
+++ b/crypto/memneq.c
@@ -72,7 +72,7 @@ __crypto_memneq_generic(const void *a, const void *b, size_t 
size)
 #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
while (size >= sizeof(unsigned long)) {
neq |= *(unsigned long *)a ^ *(unsigned long *)b;
-   OPTIMIZER_HIDE_VAR(neq);
+   barrier();
a += sizeof(unsigned long);
b += sizeof(unsigned long);
size -= sizeof(unsigned long);
@@ -80,7 +80,7 @@ __crypto_memneq_generic(const void *a, const void *b, size_t 
size)
 #endif /* CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS */
while (size > 0) {
neq |= *(unsigned char *)a ^ *(unsigned char *)b;
-   OPTIMIZER_HIDE_VAR(neq);
+   barrier();
a += 1;
b += 1;
size -= 1;
@@ -96,53 +96,53 @@ static inline

Re: [BUG/PATCH] kernel RNG and its secrets

2015-03-18 Thread Stephan Mueller
Am Mittwoch, 18. März 2015, 16:09:34 schrieb Hannes Frederic Sowa:

Hi Hannes,

>On Wed, Mar 18, 2015, at 13:42, Daniel Borkmann wrote:
>> On 03/18/2015 01:20 PM, Stephan Mueller wrote:
>> > Am Mittwoch, 18. März 2015, 13:19:07 schrieb Hannes Frederic Sowa:
>>  My proposal would be to add a
>>  
>>  #define OPTIMIZER_HIDE_MEM(ptr, len) __asm__ __volatile__ ("" :
>>  :
>>  "m"(
>>  ({ struct { u8 b[len]; } *p = (void *)ptr ; *p; }) )
>>  
>>  and use this in the code function.
>>  
>>  This is documented in gcc manual 6.43.2.5.
>> >>> 
>> >>> That one adds the zeroization instructuctions. But now there are
>> >>> much
>> >>> more than with the barrier.
>> >>> 
>> >>>400469:   48 c7 04 24 00 00 00movq   $0x0,(%rsp)
>> >>>400470:   00
>> >>>400471:   48 c7 44 24 08 00 00movq   $0x0,0x8(%rsp)
>> >>>400478:   00 00
>> >>>40047a:   c7 44 24 10 00 00 00movl   $0x0,0x10(%rsp)
>> >>>400481:   00
>> >>>400482:   48 c7 44 24 20 00 00movq   $0x0,0x20(%rsp)
>> >>>400489:   00 00
>> >>>40048b:   48 c7 44 24 28 00 00movq   $0x0,0x28(%rsp)
>> >>>400492:   00 00
>> >>>400494:   c7 44 24 30 00 00 00movl   $0x0,0x30(%rsp)
>> >>>40049b:   00
>> >>> 
>> >>> Any ideas?
>> >> 
>> >> Hmm, correct definition of u8?
>> > 
>> > I use unsigned char
>> > 
>> >> Which version of gcc do you use? I can't see any difference if I
>> >> compile your example at -O2.
>> > 
>> > gcc-Version 4.9.2 20150212 (Red Hat 4.9.2-6) (GCC)
>
>Well, was an error on my side, I see the same behavior.
>
>> I can see the same with the gcc version I previously posted. So
>> it clears the 20 bytes from your example (movq, movq, movl) at
>> two locations, presumably buf[] and b[].
>
>Yes, it looks like that. The reservation on the stack changes, too.
>
>Seems like just using barrier() is the best and easiest option.

Would you prepare a patch for that?
>
>Thanks,
>Hannes


Ciao
Stephan
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [BUG/PATCH] kernel RNG and its secrets

2015-03-18 Thread Hannes Frederic Sowa


On Wed, Mar 18, 2015, at 13:42, Daniel Borkmann wrote:
> On 03/18/2015 01:20 PM, Stephan Mueller wrote:
> > Am Mittwoch, 18. März 2015, 13:19:07 schrieb Hannes Frederic Sowa:
>  My proposal would be to add a
> 
>  #define OPTIMIZER_HIDE_MEM(ptr, len) __asm__ __volatile__ ("" : :
>  "m"(
>  ({ struct { u8 b[len]; } *p = (void *)ptr ; *p; }) )
> 
>  and use this in the code function.
> 
>  This is documented in gcc manual 6.43.2.5.
> >>>
> >>> That one adds the zeroization instructuctions. But now there are much
> >>> more than with the barrier.
> >>>
> >>>400469:   48 c7 04 24 00 00 00movq   $0x0,(%rsp)
> >>>400470:   00
> >>>400471:   48 c7 44 24 08 00 00movq   $0x0,0x8(%rsp)
> >>>400478:   00 00
> >>>40047a:   c7 44 24 10 00 00 00movl   $0x0,0x10(%rsp)
> >>>400481:   00
> >>>400482:   48 c7 44 24 20 00 00movq   $0x0,0x20(%rsp)
> >>>400489:   00 00
> >>>40048b:   48 c7 44 24 28 00 00movq   $0x0,0x28(%rsp)
> >>>400492:   00 00
> >>>400494:   c7 44 24 30 00 00 00movl   $0x0,0x30(%rsp)
> >>>40049b:   00
> >>>
> >>> Any ideas?
> >>
> >> Hmm, correct definition of u8?
> >
> > I use unsigned char
> >>
> >> Which version of gcc do you use? I can't see any difference if I
> >> compile your example at -O2.
> >
> > gcc-Version 4.9.2 20150212 (Red Hat 4.9.2-6) (GCC)

Well, was an error on my side, I see the same behavior.

> 
> I can see the same with the gcc version I previously posted. So
> it clears the 20 bytes from your example (movq, movq, movl) at
> two locations, presumably buf[] and b[].

Yes, it looks like that. The reservation on the stack changes, too.

Seems like just using barrier() is the best and easiest option.

Thanks,
Hannes
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [BUG/PATCH] kernel RNG and its secrets

2015-03-18 Thread mancha
On Wed, Mar 18, 2015 at 01:02:12PM +0100, Hannes Frederic Sowa wrote:
> On Wed, Mar 18, 2015, at 12:09, Stephan Mueller wrote:
> > Am Mittwoch, 18. März 2015, 11:56:43 schrieb Daniel Borkmann:
> > >On 03/18/2015 11:50 AM, Hannes Frederic Sowa wrote:
> > >> On Wed, Mar 18, 2015, at 10:53, mancha wrote:
> > >>> Hi.
> > >>> 
> > >>> The kernel RNG introduced memzero_explicit in d4c5efdb9777 to
> > >>> protect
> > >>> 
> > >>> memory cleansing against things like dead store optimization:
> > >>> void memzero_explicit(void *s, size_t count)
> > >>> {
> > >>> 
> > >>> memset(s, 0, count);
> > >>> OPTIMIZER_HIDE_VAR(s);
> > >>> 
> > >>> }
> > >>> 
> > >>> OPTIMIZER_HIDE_VAR, introduced in fe8c8a126806 to protect
> > >>> crypto_memneq>> 
> > >>> against timing analysis, is defined when using gcc as:
> > >>> #define OPTIMIZER_HIDE_VAR(var) __asm__ ("" : "=r" (var) : "0"
> > >>> (var))
> > >>> 
> > >>> My tests with gcc 4.8.2 on x86 find it insufficient to prevent gcc
> > >>> from optimizing out memset (i.e. secrets remain in memory).
> > >>> 
> > >>> Two things that do work:
> > >>> __asm__ __volatile__ ("" : "=r" (var) : "0" (var))
> > >> 
> > >> You are correct, volatile signature should be added to
> > >> OPTIMIZER_HIDE_VAR. Because we use an output variable "=r", gcc is
> > >> allowed to check if it is needed and may remove the asm statement.
> > >> Another option would be to just use var as an input variable - asm
> > >> blocks without output variables are always considered being volatile
> > >> by gcc.
> > >> 
> > >> Can you send a patch?
> > >> 
> > >> I don't think it is security critical, as Daniel pointed out, the
> > >> call
> > >> will happen because the function is an external call to the crypto
> > >> functions, thus the compiler has to flush memory on return.
> > >
> > >Just had a look.
> > >
> > >$ gdb vmlinux
> > >(gdb) disassemble memzero_explicit
> > >Dump of assembler code for function memzero_explicit:
> > >0x813a18b0 <+0>:   push   %rbp
> > >0x813a18b1 <+1>:   mov%rsi,%rdx
> > >0x813a18b4 <+4>:   xor%esi,%esi
> > >0x813a18b6 <+6>:   mov%rsp,%rbp
> > >0x813a18b9 <+9>:   callq  0x813a7120 
> > >0x813a18be <+14>:  pop%rbp
> > >0x813a18bf <+15>:  retq
> > >End of assembler dump.
> > >
> > >(gdb) disassemble extract_entropy
> > >[...]
> > >0x814a5000 <+304>: sub%r15,%rbx
> > >0x814a5003 <+307>: jne0x814a4f80
> > > 0x814a5009 <+313>:   mov%r12,%rdi
> > >0x814a500c <+316>: mov$0xa,%esi
> > >0x814a5011 <+321>: callq  0x813a18b0
> > > 0x814a5016 <+326>:  mov-0x48(%rbp),%rax
> > >[...]
> > >
> > >I would be fine with __volatile__.
> > 
> > Are we sure that simply adding a __volatile__ works in any case? I just 
> > did a test with a simple user space app:
> > 
> > static inline void memset_secure(void *s, int c, size_t n)
> > {
> > memset(s, c, n);
> > //__asm__ __volatile__("": : :"memory");
> > __asm__ __volatile__("" : "=r" (s) : "0" (s));
> > }
> > 
> 
> Good point, thanks!
> 
> Of course an input or output of s does not force the memory pointed to
> by s being flushed.
> 
> 
> My proposal would be to add a
> 
> #define OPTIMIZER_HIDE_MEM(ptr, len) __asm__ __volatile__ ("" : : "m"(
> ({ struct { u8 b[len]; } *p = (void *)ptr ; *p; }) )
> 
> and use this in the code function.
> 
> This is documented in gcc manual 6.43.2.5.
> 
> Bye,
> Hannes
> 

Hi all.

Any reason to not use __asm__ __volatile__("": : :"memory") [aka 
barrier()]?

Or maybe __asm__ __volatile__("": :"r"(ptr) :"memory").

Cheers.

--mancha


pgp0GCMsMqTv1.pgp
Description: PGP signature


Re: [BUG/PATCH] kernel RNG and its secrets

2015-03-18 Thread Daniel Borkmann

On 03/18/2015 01:20 PM, Stephan Mueller wrote:

Am Mittwoch, 18. März 2015, 13:19:07 schrieb Hannes Frederic Sowa:

Hi Hannes,


On Wed, Mar 18, 2015, at 13:14, Stephan Mueller wrote:

Am Mittwoch, 18. März 2015, 13:02:12 schrieb Hannes Frederic Sowa:

Hi Hannes,


On Wed, Mar 18, 2015, at 12:09, Stephan Mueller wrote:

Am Mittwoch, 18. März 2015, 11:56:43 schrieb Daniel Borkmann:

On 03/18/2015 11:50 AM, Hannes Frederic Sowa wrote:

On Wed, Mar 18, 2015, at 10:53, mancha wrote:

Hi.

The kernel RNG introduced memzero_explicit in d4c5efdb9777 to
protect

memory cleansing against things like dead store optimization:
 void memzero_explicit(void *s, size_t count)
 {

 memset(s, 0, count);
 OPTIMIZER_HIDE_VAR(s);

 }

OPTIMIZER_HIDE_VAR, introduced in fe8c8a126806 to protect
crypto_memneq>>

against timing analysis, is defined when using gcc as:
 #define OPTIMIZER_HIDE_VAR(var) __asm__ ("" : "=r" (var) :
 "0"
 (var))

My tests with gcc 4.8.2 on x86 find it insufficient to prevent
gcc
from optimizing out memset (i.e. secrets remain in memory).

Two things that do work:
 __asm__ __volatile__ ("" : "=r" (var) : "0" (var))


You are correct, volatile signature should be added to
OPTIMIZER_HIDE_VAR. Because we use an output variable "=r", gcc
is
allowed to check if it is needed and may remove the asm
statement.
Another option would be to just use var as an input variable -
asm
blocks without output variables are always considered being
volatile
by gcc.

Can you send a patch?

I don't think it is security critical, as Daniel pointed out,
the
call
will happen because the function is an external call to the
crypto
functions, thus the compiler has to flush memory on return.


Just had a look.

$ gdb vmlinux
(gdb) disassemble memzero_explicit

Dump of assembler code for function memzero_explicit:
0x813a18b0 <+0>:  push   %rbp
0x813a18b1 <+1>:  mov%rsi,%rdx
0x813a18b4 <+4>:  xor%esi,%esi
0x813a18b6 <+6>:  mov%rsp,%rbp
0x813a18b9 <+9>:  callq  0x813a7120





0x813a18be <+14>: pop%rbp
0x813a18bf <+15>: retq

End of assembler dump.

(gdb) disassemble extract_entropy
[...]

0x814a5000 <+304>:sub%r15,%rbx
0x814a5003 <+307>:jne0x814a4f80

 0x814a5009 <+313>:mov%r12,%rdi

0x814a500c <+316>:mov$0xa,%esi
0x814a5011 <+321>:callq  0x813a18b0

 0x814a5016 <+326>:   mov
-0x48(%rbp),%rax
[...]

I would be fine with __volatile__.


Are we sure that simply adding a __volatile__ works in any case? I
just did a test with a simple user space app:

static inline void memset_secure(void *s, int c, size_t n)
{

 memset(s, c, n);
 //__asm__ __volatile__("": : :"memory");
 __asm__ __volatile__("" : "=r" (s) : "0" (s));

}


Good point, thanks!

Of course an input or output of s does not force the memory pointed
to
by s being flushed.


My proposal would be to add a

#define OPTIMIZER_HIDE_MEM(ptr, len) __asm__ __volatile__ ("" : :
"m"(
({ struct { u8 b[len]; } *p = (void *)ptr ; *p; }) )

and use this in the code function.

This is documented in gcc manual 6.43.2.5.


That one adds the zeroization instructuctions. But now there are much
more than with the barrier.

   400469:   48 c7 04 24 00 00 00movq   $0x0,(%rsp)
   400470:   00
   400471:   48 c7 44 24 08 00 00movq   $0x0,0x8(%rsp)
   400478:   00 00
   40047a:   c7 44 24 10 00 00 00movl   $0x0,0x10(%rsp)
   400481:   00
   400482:   48 c7 44 24 20 00 00movq   $0x0,0x20(%rsp)
   400489:   00 00
   40048b:   48 c7 44 24 28 00 00movq   $0x0,0x28(%rsp)
   400492:   00 00
   400494:   c7 44 24 30 00 00 00movl   $0x0,0x30(%rsp)
   40049b:   00

Any ideas?


Hmm, correct definition of u8?


I use unsigned char


Which version of gcc do you use? I can't see any difference if I
compile your example at -O2.


gcc-Version 4.9.2 20150212 (Red Hat 4.9.2-6) (GCC)


I can see the same with the gcc version I previously posted. So
it clears the 20 bytes from your example (movq, movq, movl) at
two locations, presumably buf[] and b[].

Best,
Daniel
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [BUG/PATCH] kernel RNG and its secrets

2015-03-18 Thread Stephan Mueller
Am Mittwoch, 18. März 2015, 13:19:07 schrieb Hannes Frederic Sowa:

Hi Hannes,

>On Wed, Mar 18, 2015, at 13:14, Stephan Mueller wrote:
>> Am Mittwoch, 18. März 2015, 13:02:12 schrieb Hannes Frederic Sowa:
>> 
>> Hi Hannes,
>> 
>> >On Wed, Mar 18, 2015, at 12:09, Stephan Mueller wrote:
>> >> Am Mittwoch, 18. März 2015, 11:56:43 schrieb Daniel Borkmann:
>> >> >On 03/18/2015 11:50 AM, Hannes Frederic Sowa wrote:
>> >> >> On Wed, Mar 18, 2015, at 10:53, mancha wrote:
>> >> >>> Hi.
>> >> >>> 
>> >> >>> The kernel RNG introduced memzero_explicit in d4c5efdb9777 to
>> >> >>> protect
>> >> >>> 
>> >> >>> memory cleansing against things like dead store optimization:
>> >> >>> void memzero_explicit(void *s, size_t count)
>> >> >>> {
>> >> >>> 
>> >> >>> memset(s, 0, count);
>> >> >>> OPTIMIZER_HIDE_VAR(s);
>> >> >>> 
>> >> >>> }
>> >> >>> 
>> >> >>> OPTIMIZER_HIDE_VAR, introduced in fe8c8a126806 to protect
>> >> >>> crypto_memneq>>
>> >> >>> 
>> >> >>> against timing analysis, is defined when using gcc as:
>> >> >>> #define OPTIMIZER_HIDE_VAR(var) __asm__ ("" : "=r" (var) :
>> >> >>> "0"
>> >> >>> (var))
>> >> >>> 
>> >> >>> My tests with gcc 4.8.2 on x86 find it insufficient to prevent
>> >> >>> gcc
>> >> >>> from optimizing out memset (i.e. secrets remain in memory).
>> >> >>> 
>> >> >>> Two things that do work:
>> >> >>> __asm__ __volatile__ ("" : "=r" (var) : "0" (var))
>> >> >> 
>> >> >> You are correct, volatile signature should be added to
>> >> >> OPTIMIZER_HIDE_VAR. Because we use an output variable "=r", gcc
>> >> >> is
>> >> >> allowed to check if it is needed and may remove the asm
>> >> >> statement.
>> >> >> Another option would be to just use var as an input variable -
>> >> >> asm
>> >> >> blocks without output variables are always considered being
>> >> >> volatile
>> >> >> by gcc.
>> >> >> 
>> >> >> Can you send a patch?
>> >> >> 
>> >> >> I don't think it is security critical, as Daniel pointed out,
>> >> >> the
>> >> >> call
>> >> >> will happen because the function is an external call to the
>> >> >> crypto
>> >> >> functions, thus the compiler has to flush memory on return.
>> >> >
>> >> >Just had a look.
>> >> >
>> >> >$ gdb vmlinux
>> >> >(gdb) disassemble memzero_explicit
>> >> >
>> >> >Dump of assembler code for function memzero_explicit:
>> >> >0x813a18b0 <+0>: push   %rbp
>> >> >0x813a18b1 <+1>: mov%rsi,%rdx
>> >> >0x813a18b4 <+4>: xor%esi,%esi
>> >> >0x813a18b6 <+6>: mov%rsp,%rbp
>> >> >0x813a18b9 <+9>: callq  0x813a7120
>> 
>> 
>> 
>> >> >0x813a18be <+14>:pop%rbp
>> >> >0x813a18bf <+15>:retq
>> >> >
>> >> >End of assembler dump.
>> >> >
>> >> >(gdb) disassemble extract_entropy
>> >> >[...]
>> >> >
>> >> >0x814a5000 <+304>:   sub%r15,%rbx
>> >> >0x814a5003 <+307>:   jne0x814a4f80
>> >> >
>> >> > 0x814a5009 <+313>: mov%r12,%rdi
>> >> >
>> >> >0x814a500c <+316>:   mov$0xa,%esi
>> >> >0x814a5011 <+321>:   callq  0x813a18b0
>> >> >
>> >> > 0x814a5016 <+326>:mov
>> >> >-0x48(%rbp),%rax
>> >> >[...]
>> >> >
>> >> >I would be fine with __volatile__.
>> >> 
>> >> Are we sure that simply adding a __volatile__ works in any case? I
>> >> just did a test with a simple user space app:
>> >> 
>> >> static inline void memset_secure(void *s, int c, size_t n)
>> >> {
>> >> 
>> >> memset(s, c, n);
>> >> //__asm__ __volatile__("": : :"memory");
>> >> __asm__ __volatile__("" : "=r" (s) : "0" (s));
>> >> 
>> >> }
>> >
>> >Good point, thanks!
>> >
>> >Of course an input or output of s does not force the memory pointed
>> >to
>> >by s being flushed.
>> >
>> >
>> >My proposal would be to add a
>> >
>> >#define OPTIMIZER_HIDE_MEM(ptr, len) __asm__ __volatile__ ("" : :
>> >"m"(
>> >({ struct { u8 b[len]; } *p = (void *)ptr ; *p; }) )
>> >
>> >and use this in the code function.
>> >
>> >This is documented in gcc manual 6.43.2.5.
>> 
>> That one adds the zeroization instructuctions. But now there are much
>> more than with the barrier.
>> 
>>   400469:   48 c7 04 24 00 00 00movq   $0x0,(%rsp)
>>   400470:   00
>>   400471:   48 c7 44 24 08 00 00movq   $0x0,0x8(%rsp)
>>   400478:   00 00
>>   40047a:   c7 44 24 10 00 00 00movl   $0x0,0x10(%rsp)
>>   400481:   00
>>   400482:   48 c7 44 24 20 00 00movq   $0x0,0x20(%rsp)
>>   400489:   00 00
>>   40048b:   48 c7 44 24 28 00 00movq   $0x0,0x28(%rsp)
>>   400492:   00 00
>>   400494:   c7 44 24 30 00 00 00movl   $0x0,0x30(%rsp)
>>   40049b:   00
>> 
>> Any ideas?
>
>Hmm, correct definition of u8?

I use unsigned char
>
>Which version of gcc do you use? I can't see any difference if I
>compile your example at -O2.

gcc-Version 4.9.2 20150212 (Red Hat 4.9.2-6) (GCC)
>
>Bye,
>Hannes


Ci

Re: [BUG/PATCH] kernel RNG and its secrets

2015-03-18 Thread Hannes Frederic Sowa


On Wed, Mar 18, 2015, at 13:14, Stephan Mueller wrote:
> Am Mittwoch, 18. März 2015, 13:02:12 schrieb Hannes Frederic Sowa:
> 
> Hi Hannes,
> 
> >On Wed, Mar 18, 2015, at 12:09, Stephan Mueller wrote:
> >> Am Mittwoch, 18. März 2015, 11:56:43 schrieb Daniel Borkmann:
> >> >On 03/18/2015 11:50 AM, Hannes Frederic Sowa wrote:
> >> >> On Wed, Mar 18, 2015, at 10:53, mancha wrote:
> >> >>> Hi.
> >> >>> 
> >> >>> The kernel RNG introduced memzero_explicit in d4c5efdb9777 to
> >> >>> protect
> >> >>> 
> >> >>> memory cleansing against things like dead store optimization:
> >> >>> void memzero_explicit(void *s, size_t count)
> >> >>> {
> >> >>> 
> >> >>> memset(s, 0, count);
> >> >>> OPTIMIZER_HIDE_VAR(s);
> >> >>> 
> >> >>> }
> >> >>> 
> >> >>> OPTIMIZER_HIDE_VAR, introduced in fe8c8a126806 to protect
> >> >>> crypto_memneq>>
> >> >>> 
> >> >>> against timing analysis, is defined when using gcc as:
> >> >>> #define OPTIMIZER_HIDE_VAR(var) __asm__ ("" : "=r" (var) :
> >> >>> "0"
> >> >>> (var))
> >> >>> 
> >> >>> My tests with gcc 4.8.2 on x86 find it insufficient to prevent
> >> >>> gcc
> >> >>> from optimizing out memset (i.e. secrets remain in memory).
> >> >>> 
> >> >>> Two things that do work:
> >> >>> __asm__ __volatile__ ("" : "=r" (var) : "0" (var))
> >> >> 
> >> >> You are correct, volatile signature should be added to
> >> >> OPTIMIZER_HIDE_VAR. Because we use an output variable "=r", gcc is
> >> >> allowed to check if it is needed and may remove the asm statement.
> >> >> Another option would be to just use var as an input variable - asm
> >> >> blocks without output variables are always considered being
> >> >> volatile
> >> >> by gcc.
> >> >> 
> >> >> Can you send a patch?
> >> >> 
> >> >> I don't think it is security critical, as Daniel pointed out, the
> >> >> call
> >> >> will happen because the function is an external call to the crypto
> >> >> functions, thus the compiler has to flush memory on return.
> >> >
> >> >Just had a look.
> >> >
> >> >$ gdb vmlinux
> >> >(gdb) disassemble memzero_explicit
> >> >
> >> >Dump of assembler code for function memzero_explicit:
> >> >0x813a18b0 <+0>:  push   %rbp
> >> >0x813a18b1 <+1>:  mov%rsi,%rdx
> >> >0x813a18b4 <+4>:  xor%esi,%esi
> >> >0x813a18b6 <+6>:  mov%rsp,%rbp
> >> >0x813a18b9 <+9>:  callq  0x813a7120 
> 
> >> >0x813a18be <+14>: pop%rbp
> >> >0x813a18bf <+15>: retq
> >> >
> >> >End of assembler dump.
> >> >
> >> >(gdb) disassemble extract_entropy
> >> >[...]
> >> >
> >> >0x814a5000 <+304>:sub%r15,%rbx
> >> >0x814a5003 <+307>:jne0x814a4f80
> >> >
> >> > 0x814a5009 <+313>:  mov%r12,%rdi
> >> >
> >> >0x814a500c <+316>:mov$0xa,%esi
> >> >0x814a5011 <+321>:callq  0x813a18b0
> >> >
> >> > 0x814a5016 <+326>: mov   
> >> >-0x48(%rbp),%rax
> >> >[...]
> >> >
> >> >I would be fine with __volatile__.
> >> 
> >> Are we sure that simply adding a __volatile__ works in any case? I
> >> just did a test with a simple user space app:
> >> 
> >> static inline void memset_secure(void *s, int c, size_t n)
> >> {
> >> 
> >> memset(s, c, n);
> >> //__asm__ __volatile__("": : :"memory");
> >> __asm__ __volatile__("" : "=r" (s) : "0" (s));
> >> 
> >> }
> >
> >Good point, thanks!
> >
> >Of course an input or output of s does not force the memory pointed to
> >by s being flushed.
> >
> >
> >My proposal would be to add a
> >
> >#define OPTIMIZER_HIDE_MEM(ptr, len) __asm__ __volatile__ ("" : : "m"(
> >({ struct { u8 b[len]; } *p = (void *)ptr ; *p; }) )
> >
> >and use this in the code function.
> >
> >This is documented in gcc manual 6.43.2.5.
> 
> That one adds the zeroization instructuctions. But now there are much 
> more than with the barrier.
> 
>   400469:   48 c7 04 24 00 00 00movq   $0x0,(%rsp)
>   400470:   00 
>   400471:   48 c7 44 24 08 00 00movq   $0x0,0x8(%rsp)
>   400478:   00 00 
>   40047a:   c7 44 24 10 00 00 00movl   $0x0,0x10(%rsp)
>   400481:   00 
>   400482:   48 c7 44 24 20 00 00movq   $0x0,0x20(%rsp)
>   400489:   00 00 
>   40048b:   48 c7 44 24 28 00 00movq   $0x0,0x28(%rsp)
>   400492:   00 00 
>   400494:   c7 44 24 30 00 00 00movl   $0x0,0x30(%rsp)
>   40049b:   00
> 
> Any ideas?

Hmm, correct definition of u8?

Which version of gcc do you use? I can't see any difference if I compile
your example at -O2.

Bye,
Hannes

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [BUG/PATCH] kernel RNG and its secrets

2015-03-18 Thread Stephan Mueller
Am Mittwoch, 18. März 2015, 13:02:12 schrieb Hannes Frederic Sowa:

Hi Hannes,

>On Wed, Mar 18, 2015, at 12:09, Stephan Mueller wrote:
>> Am Mittwoch, 18. März 2015, 11:56:43 schrieb Daniel Borkmann:
>> >On 03/18/2015 11:50 AM, Hannes Frederic Sowa wrote:
>> >> On Wed, Mar 18, 2015, at 10:53, mancha wrote:
>> >>> Hi.
>> >>> 
>> >>> The kernel RNG introduced memzero_explicit in d4c5efdb9777 to
>> >>> protect
>> >>> 
>> >>> memory cleansing against things like dead store optimization:
>> >>> void memzero_explicit(void *s, size_t count)
>> >>> {
>> >>> 
>> >>> memset(s, 0, count);
>> >>> OPTIMIZER_HIDE_VAR(s);
>> >>> 
>> >>> }
>> >>> 
>> >>> OPTIMIZER_HIDE_VAR, introduced in fe8c8a126806 to protect
>> >>> crypto_memneq>>
>> >>> 
>> >>> against timing analysis, is defined when using gcc as:
>> >>> #define OPTIMIZER_HIDE_VAR(var) __asm__ ("" : "=r" (var) :
>> >>> "0"
>> >>> (var))
>> >>> 
>> >>> My tests with gcc 4.8.2 on x86 find it insufficient to prevent
>> >>> gcc
>> >>> from optimizing out memset (i.e. secrets remain in memory).
>> >>> 
>> >>> Two things that do work:
>> >>> __asm__ __volatile__ ("" : "=r" (var) : "0" (var))
>> >> 
>> >> You are correct, volatile signature should be added to
>> >> OPTIMIZER_HIDE_VAR. Because we use an output variable "=r", gcc is
>> >> allowed to check if it is needed and may remove the asm statement.
>> >> Another option would be to just use var as an input variable - asm
>> >> blocks without output variables are always considered being
>> >> volatile
>> >> by gcc.
>> >> 
>> >> Can you send a patch?
>> >> 
>> >> I don't think it is security critical, as Daniel pointed out, the
>> >> call
>> >> will happen because the function is an external call to the crypto
>> >> functions, thus the compiler has to flush memory on return.
>> >
>> >Just had a look.
>> >
>> >$ gdb vmlinux
>> >(gdb) disassemble memzero_explicit
>> >
>> >Dump of assembler code for function memzero_explicit:
>> >0x813a18b0 <+0>:push   %rbp
>> >0x813a18b1 <+1>:mov%rsi,%rdx
>> >0x813a18b4 <+4>:xor%esi,%esi
>> >0x813a18b6 <+6>:mov%rsp,%rbp
>> >0x813a18b9 <+9>:callq  0x813a7120 

>> >0x813a18be <+14>:   pop%rbp
>> >0x813a18bf <+15>:   retq
>> >
>> >End of assembler dump.
>> >
>> >(gdb) disassemble extract_entropy
>> >[...]
>> >
>> >0x814a5000 <+304>:  sub%r15,%rbx
>> >0x814a5003 <+307>:  jne0x814a4f80
>> >
>> > 0x814a5009 <+313>:mov%r12,%rdi
>> >
>> >0x814a500c <+316>:  mov$0xa,%esi
>> >0x814a5011 <+321>:  callq  0x813a18b0
>> >
>> > 0x814a5016 <+326>:   mov   
>> >-0x48(%rbp),%rax
>> >[...]
>> >
>> >I would be fine with __volatile__.
>> 
>> Are we sure that simply adding a __volatile__ works in any case? I
>> just did a test with a simple user space app:
>> 
>> static inline void memset_secure(void *s, int c, size_t n)
>> {
>> 
>> memset(s, c, n);
>> //__asm__ __volatile__("": : :"memory");
>> __asm__ __volatile__("" : "=r" (s) : "0" (s));
>> 
>> }
>
>Good point, thanks!
>
>Of course an input or output of s does not force the memory pointed to
>by s being flushed.
>
>
>My proposal would be to add a
>
>#define OPTIMIZER_HIDE_MEM(ptr, len) __asm__ __volatile__ ("" : : "m"(
>({ struct { u8 b[len]; } *p = (void *)ptr ; *p; }) )
>
>and use this in the code function.
>
>This is documented in gcc manual 6.43.2.5.

That one adds the zeroization instructuctions. But now there are much 
more than with the barrier.

  400469:   48 c7 04 24 00 00 00movq   $0x0,(%rsp)
  400470:   00 
  400471:   48 c7 44 24 08 00 00movq   $0x0,0x8(%rsp)
  400478:   00 00 
  40047a:   c7 44 24 10 00 00 00movl   $0x0,0x10(%rsp)
  400481:   00 
  400482:   48 c7 44 24 20 00 00movq   $0x0,0x20(%rsp)
  400489:   00 00 
  40048b:   48 c7 44 24 28 00 00movq   $0x0,0x28(%rsp)
  400492:   00 00 
  400494:   c7 44 24 30 00 00 00movl   $0x0,0x30(%rsp)
  40049b:   00

Any ideas?
>
>Bye,
>Hannes


Ciao
Stephan
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [BUG/PATCH] kernel RNG and its secrets

2015-03-18 Thread Hannes Frederic Sowa
On Wed, Mar 18, 2015, at 12:09, Stephan Mueller wrote:
> Am Mittwoch, 18. März 2015, 11:56:43 schrieb Daniel Borkmann:
> >On 03/18/2015 11:50 AM, Hannes Frederic Sowa wrote:
> >> On Wed, Mar 18, 2015, at 10:53, mancha wrote:
> >>> Hi.
> >>> 
> >>> The kernel RNG introduced memzero_explicit in d4c5efdb9777 to
> >>> protect
> >>> 
> >>> memory cleansing against things like dead store optimization:
> >>> void memzero_explicit(void *s, size_t count)
> >>> {
> >>> 
> >>> memset(s, 0, count);
> >>> OPTIMIZER_HIDE_VAR(s);
> >>> 
> >>> }
> >>> 
> >>> OPTIMIZER_HIDE_VAR, introduced in fe8c8a126806 to protect
> >>> crypto_memneq>> 
> >>> against timing analysis, is defined when using gcc as:
> >>> #define OPTIMIZER_HIDE_VAR(var) __asm__ ("" : "=r" (var) : "0"
> >>> (var))
> >>> 
> >>> My tests with gcc 4.8.2 on x86 find it insufficient to prevent gcc
> >>> from optimizing out memset (i.e. secrets remain in memory).
> >>> 
> >>> Two things that do work:
> >>> __asm__ __volatile__ ("" : "=r" (var) : "0" (var))
> >> 
> >> You are correct, volatile signature should be added to
> >> OPTIMIZER_HIDE_VAR. Because we use an output variable "=r", gcc is
> >> allowed to check if it is needed and may remove the asm statement.
> >> Another option would be to just use var as an input variable - asm
> >> blocks without output variables are always considered being volatile
> >> by gcc.
> >> 
> >> Can you send a patch?
> >> 
> >> I don't think it is security critical, as Daniel pointed out, the
> >> call
> >> will happen because the function is an external call to the crypto
> >> functions, thus the compiler has to flush memory on return.
> >
> >Just had a look.
> >
> >$ gdb vmlinux
> >(gdb) disassemble memzero_explicit
> >Dump of assembler code for function memzero_explicit:
> >0x813a18b0 <+0>: push   %rbp
> >0x813a18b1 <+1>: mov%rsi,%rdx
> >0x813a18b4 <+4>: xor%esi,%esi
> >0x813a18b6 <+6>: mov%rsp,%rbp
> >0x813a18b9 <+9>: callq  0x813a7120 
> >0x813a18be <+14>:pop%rbp
> >0x813a18bf <+15>:retq
> >End of assembler dump.
> >
> >(gdb) disassemble extract_entropy
> >[...]
> >0x814a5000 <+304>:   sub%r15,%rbx
> >0x814a5003 <+307>:   jne0x814a4f80
> > 0x814a5009 <+313>: mov%r12,%rdi
> >0x814a500c <+316>:   mov$0xa,%esi
> >0x814a5011 <+321>:   callq  0x813a18b0
> > 0x814a5016 <+326>:mov-0x48(%rbp),%rax
> >[...]
> >
> >I would be fine with __volatile__.
> 
> Are we sure that simply adding a __volatile__ works in any case? I just 
> did a test with a simple user space app:
> 
> static inline void memset_secure(void *s, int c, size_t n)
> {
> memset(s, c, n);
> //__asm__ __volatile__("": : :"memory");
> __asm__ __volatile__("" : "=r" (s) : "0" (s));
> }
> 

Good point, thanks!

Of course an input or output of s does not force the memory pointed to
by s being flushed.


My proposal would be to add a

#define OPTIMIZER_HIDE_MEM(ptr, len) __asm__ __volatile__ ("" : : "m"(
({ struct { u8 b[len]; } *p = (void *)ptr ; *p; }) )

and use this in the code function.

This is documented in gcc manual 6.43.2.5.

Bye,
Hannes


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [BUG/PATCH] kernel RNG and its secrets

2015-03-18 Thread Stephan Mueller
Am Mittwoch, 18. März 2015, 11:56:43 schrieb Daniel Borkmann:

Hi Daniel,

>On 03/18/2015 11:50 AM, Hannes Frederic Sowa wrote:
>> On Wed, Mar 18, 2015, at 10:53, mancha wrote:
>>> Hi.
>>> 
>>> The kernel RNG introduced memzero_explicit in d4c5efdb9777 to
>>> protect
>>> 
>>> memory cleansing against things like dead store optimization:
>>> void memzero_explicit(void *s, size_t count)
>>> {
>>> 
>>> memset(s, 0, count);
>>> OPTIMIZER_HIDE_VAR(s);
>>> 
>>> }
>>> 
>>> OPTIMIZER_HIDE_VAR, introduced in fe8c8a126806 to protect
>>> crypto_memneq>> 
>>> against timing analysis, is defined when using gcc as:
>>> #define OPTIMIZER_HIDE_VAR(var) __asm__ ("" : "=r" (var) : "0"
>>> (var))
>>> 
>>> My tests with gcc 4.8.2 on x86 find it insufficient to prevent gcc
>>> from optimizing out memset (i.e. secrets remain in memory).
>>> 
>>> Two things that do work:
>>> __asm__ __volatile__ ("" : "=r" (var) : "0" (var))
>> 
>> You are correct, volatile signature should be added to
>> OPTIMIZER_HIDE_VAR. Because we use an output variable "=r", gcc is
>> allowed to check if it is needed and may remove the asm statement.
>> Another option would be to just use var as an input variable - asm
>> blocks without output variables are always considered being volatile
>> by gcc.
>> 
>> Can you send a patch?
>> 
>> I don't think it is security critical, as Daniel pointed out, the
>> call
>> will happen because the function is an external call to the crypto
>> functions, thus the compiler has to flush memory on return.
>
>Just had a look.
>
>$ gdb vmlinux
>(gdb) disassemble memzero_explicit
>Dump of assembler code for function memzero_explicit:
>0x813a18b0 <+0>:   push   %rbp
>0x813a18b1 <+1>:   mov%rsi,%rdx
>0x813a18b4 <+4>:   xor%esi,%esi
>0x813a18b6 <+6>:   mov%rsp,%rbp
>0x813a18b9 <+9>:   callq  0x813a7120 
>0x813a18be <+14>:  pop%rbp
>0x813a18bf <+15>:  retq
>End of assembler dump.
>
>(gdb) disassemble extract_entropy
>[...]
>0x814a5000 <+304>: sub%r15,%rbx
>0x814a5003 <+307>: jne0x814a4f80
> 0x814a5009 <+313>:   mov%r12,%rdi
>0x814a500c <+316>: mov$0xa,%esi
>0x814a5011 <+321>: callq  0x813a18b0
> 0x814a5016 <+326>:  mov-0x48(%rbp),%rax
>[...]
>
>I would be fine with __volatile__.

Are we sure that simply adding a __volatile__ works in any case? I just 
did a test with a simple user space app:

static inline void memset_secure(void *s, int c, size_t n)
{
memset(s, c, n);
//__asm__ __volatile__("": : :"memory");
__asm__ __volatile__("" : "=r" (s) : "0" (s));
}

int main(int argc, char *argv[])
{
#define BUFLEN 20
char buf[BUFLEN];

snprintf(buf, (BUFLEN - 1), "teststring\n");
printf("%s", buf);

memset_secure(buf, 0, BUFLEN);
}

When using the discussed code of __asm__ __volatile__("" : "=r" (s) : 
"0" (s));  I do not find the code implementing memset(0) in objdump. 
Only when I enable the memory barrier, I see the following (when 
compiling with -O2):

objdump -d memset_secure:
...
00400440 :
...
  400469:   48 c7 04 24 00 00 00movq   $0x0,(%rsp)
  400470:   00 
  400471:   48 c7 44 24 08 00 00movq   $0x0,0x8(%rsp)
  400478:   00 00 
  40047a:   c7 44 24 10 00 00 00movl   $0x0,0x10(%rsp)
  400481:   00
...

>
>Thanks a lot mancha, could you send a patch?
>
>Best,
>Daniel
>--
>To unsubscribe from this list: send the line "unsubscribe linux-crypto"
>in the body of a message to majord...@vger.kernel.org
>More majordomo info at  http://vger.kernel.org/majordomo-info.html


Ciao
Stephan
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [BUG/PATCH] kernel RNG and its secrets

2015-03-18 Thread Daniel Borkmann

On 03/18/2015 11:50 AM, Hannes Frederic Sowa wrote:



On Wed, Mar 18, 2015, at 10:53, mancha wrote:

Hi.

The kernel RNG introduced memzero_explicit in d4c5efdb9777 to protect
memory cleansing against things like dead store optimization:

void memzero_explicit(void *s, size_t count)
{
memset(s, 0, count);
OPTIMIZER_HIDE_VAR(s);
}

OPTIMIZER_HIDE_VAR, introduced in fe8c8a126806 to protect crypto_memneq
against timing analysis, is defined when using gcc as:

#define OPTIMIZER_HIDE_VAR(var) __asm__ ("" : "=r" (var) : "0" (var))

My tests with gcc 4.8.2 on x86 find it insufficient to prevent gcc from
optimizing out memset (i.e. secrets remain in memory).

Two things that do work:

__asm__ __volatile__ ("" : "=r" (var) : "0" (var))


You are correct, volatile signature should be added to
OPTIMIZER_HIDE_VAR. Because we use an output variable "=r", gcc is
allowed to check if it is needed and may remove the asm statement.
Another option would be to just use var as an input variable - asm
blocks without output variables are always considered being volatile by
gcc.

Can you send a patch?

I don't think it is security critical, as Daniel pointed out, the call
will happen because the function is an external call to the crypto
functions, thus the compiler has to flush memory on return.


Just had a look.

$ gdb vmlinux
(gdb) disassemble memzero_explicit
Dump of assembler code for function memzero_explicit:
   0x813a18b0 <+0>:   push   %rbp
   0x813a18b1 <+1>:   mov%rsi,%rdx
   0x813a18b4 <+4>:   xor%esi,%esi
   0x813a18b6 <+6>:   mov%rsp,%rbp
   0x813a18b9 <+9>:   callq  0x813a7120 
   0x813a18be <+14>:  pop%rbp
   0x813a18bf <+15>:  retq
End of assembler dump.

(gdb) disassemble extract_entropy
[...]
   0x814a5000 <+304>: sub%r15,%rbx
   0x814a5003 <+307>: jne0x814a4f80 

   0x814a5009 <+313>: mov%r12,%rdi
   0x814a500c <+316>: mov$0xa,%esi
   0x814a5011 <+321>: callq  0x813a18b0 
   0x814a5016 <+326>: mov-0x48(%rbp),%rax
[...]

I would be fine with __volatile__.

Thanks a lot mancha, could you send a patch?

Best,
Daniel
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [BUG/PATCH] kernel RNG and its secrets

2015-03-18 Thread Hannes Frederic Sowa


On Wed, Mar 18, 2015, at 10:53, mancha wrote:
> Hi.
> 
> The kernel RNG introduced memzero_explicit in d4c5efdb9777 to protect
> memory cleansing against things like dead store optimization:
> 
>void memzero_explicit(void *s, size_t count)
>{
>memset(s, 0, count);
>OPTIMIZER_HIDE_VAR(s);
>}
> 
> OPTIMIZER_HIDE_VAR, introduced in fe8c8a126806 to protect crypto_memneq
> against timing analysis, is defined when using gcc as:
> 
>#define OPTIMIZER_HIDE_VAR(var) __asm__ ("" : "=r" (var) : "0" (var))
> 
> My tests with gcc 4.8.2 on x86 find it insufficient to prevent gcc from
> optimizing out memset (i.e. secrets remain in memory).
> 
> Two things that do work:
> 
>__asm__ __volatile__ ("" : "=r" (var) : "0" (var))

You are correct, volatile signature should be added to
OPTIMIZER_HIDE_VAR. Because we use an output variable "=r", gcc is
allowed to check if it is needed and may remove the asm statement.
Another option would be to just use var as an input variable - asm
blocks without output variables are always considered being volatile by
gcc.

Can you send a patch?

I don't think it is security critical, as Daniel pointed out, the call
will happen because the function is an external call to the crypto
functions, thus the compiler has to flush memory on return.

Bye,
Hannes
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [BUG/PATCH] kernel RNG and its secrets

2015-03-18 Thread Daniel Borkmann

[ Cc'ing Cesar ]

On 03/18/2015 10:53 AM, mancha wrote:

Hi.

The kernel RNG introduced memzero_explicit in d4c5efdb9777 to protect
memory cleansing against things like dead store optimization:

void memzero_explicit(void *s, size_t count)
{
memset(s, 0, count);
OPTIMIZER_HIDE_VAR(s);
}

OPTIMIZER_HIDE_VAR, introduced in fe8c8a126806 to protect crypto_memneq
against timing analysis, is defined when using gcc as:

#define OPTIMIZER_HIDE_VAR(var) __asm__ ("" : "=r" (var) : "0" (var))

My tests with gcc 4.8.2 on x86 find it insufficient to prevent gcc from
optimizing out memset (i.e. secrets remain in memory).


Could you elaborate on your test case?

memzero_explicit() is actually an EXPORT_SYMBOL(), are you saying
that gcc removes the call to memzero_explicit() entirely, inlines
it, and then optimizes the memset() eventually away?

Last time I looked, it emitted a call to memzero_explicit(), and
inside memzero_explicit() it did the memset() as it cannot make
any assumption from there. I'm using gcc (GCC) 4.8.3 20140911
(Red Hat 4.8.3-7).


Two things that do work:

__asm__ __volatile__ ("" : "=r" (var) : "0" (var))

and

__asm__ __volatile__("": : :"memory")

The first is OPTIMIZER_HIDE_VAR plus a volatile qualifier and the second
is barrier() [as defined when using gcc].

I propose memzero_explicit use barrier().

--- a/lib/string.c
+++ b/lib/string.c
@@ -616,7 +616,7 @@ EXPORT_SYMBOL(memset);
  void memzero_explicit(void *s, size_t count)
  {
 memset(s, 0, count);
-   OPTIMIZER_HIDE_VAR(s);
+   barrier();
  }
  EXPORT_SYMBOL(memzero_explicit);

For any attribution deemed necessary, please use "mancha security".
Please CC me on replies.

--mancha

PS CC'ing Herbert Xu in case this impacts crypto_memneq.



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/