+ ansi_cprng-zero-out-key-data-on-exit.patch added to -mm tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



The patch titled
     ansi_cprng: zero out key data on exit
has been added to the -mm tree.  Its filename is
     ansi_cprng-zero-out-key-data-on-exit.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/SubmitChecklist when testing your code ***

See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find
out what to do about this

The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/

------------------------------------------------------
Subject: ansi_cprng: zero out key data on exit
From: Neil Horman <nhorman@xxxxxxxxxxxxx>

Its been mentioned to me a few times that the ansi_cprng doesn't zero out
its data when a context is freed.  Given that we store key, and other seed
data in that structure, I think its probably a good idea that we zero it
out.  This patch does that.

Signed-off-by: Neil Horman <nhorman@xxxxxxxxxxxxx>
Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
---

 crypto/ansi_cprng.c |    1 +
 1 file changed, 1 insertion(+)

diff -puN crypto/ansi_cprng.c~ansi_cprng-zero-out-key-data-on-exit crypto/ansi_cprng.c
--- a/crypto/ansi_cprng.c~ansi_cprng-zero-out-key-data-on-exit
+++ a/crypto/ansi_cprng.c
@@ -271,6 +271,7 @@ done:
 static void free_prng_context(struct prng_context *ctx)
 {
 	crypto_free_cipher(ctx->tfm);
+	memset(ctx, 0, sizeof(struct prng_context));
 }
 
 static int reset_prng_context(struct prng_context *ctx,
_

Patches currently in -mm which might be from nhorman@xxxxxxxxxxxxx are

linux-next.patch
ansi_cprng-zero-out-key-data-on-exit.patch

--
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Kernel Newbies FAQ]     [Kernel Archive]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [Bugtraq]     [Photo]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]

  Powered by Linux