1. 02 Dec, 2014 3 commits
    • Julia Lawall's avatar
      crypto: sha - replace memset by memzero_explicit · a6326ba0
      Julia Lawall authored
      Memset on a local variable may be removed when it is called just before the
      variable goes out of scope.  Using memzero_explicit defeats this
      optimization.  A simplified version of the semantic patch that makes this
      change is as follows: (http://coccinelle.lip6.fr/)
      
      // <smpl>
      @@
      identifier x;
      type T;
      @@
      
      {
      ... when any
      T x[...];
      ... when any
          when exists
      - memset
      + memzero_explicit
        (x,
      -0,
        ...)
      ... when != x
          when strict
      }
      // </smpl>
      
      This change was suggested by Daniel Borkmann <dborkman@redhat.com>
      Signed-off-by: default avatarJulia Lawall <Julia.Lawall@lip6.fr>
      Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
      a6326ba0
    • Julia Lawall's avatar
      crypto: sparc - replace memset by memzero_explicit · 8202cd72
      Julia Lawall authored
      Memset on a local variable may be removed when it is called just before the
      variable goes out of scope.  Using memzero_explicit defeats this
      optimization.  A simplified version of the semantic patch that makes this
      change is as follows: (http://coccinelle.lip6.fr/)
      
      // <smpl>
      @@
      identifier x;
      type T;
      @@
      
      {
      ... when any
      T x[...];
      ... when any
          when exists
      - memset
      + memzero_explicit
        (x,
      -0,
        ...)
      ... when != x
          when strict
      }
      // </smpl>
      
      This change was suggested by Daniel Borkmann <dborkman@redhat.com>
      Signed-off-by: default avatarJulia Lawall <Julia.Lawall@lip6.fr>
      Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
      8202cd72
    • Stephan Mueller's avatar
      crypto: algif_skcipher - initialize upon init request · f26b7b80
      Stephan Mueller authored
      When using the algif_skcipher, the following call sequence causess a
      re-initialization:
      
      1. sendmsg with ALG_SET_OP and iov == NULL, iovlen == 0 (i.e
      initializing the cipher, but not sending data)
      
      2. sendmsg with msg->msg-controllen == 0 and iov != NULL (using the initalized
      cipher handle by sending data)
      
      In step 2, the cipher operation type (encryption or decryption) is reset
      to always decryption, because the local variable of enc is put into
      ctx->enc as ctx->user is still zero.
      
      The same applies when all send data is processed and ctx->used falls to
      zero followed by user space to send new data.
      
      This patch changes the behavior to only reset the cipher operation type
      (and the IV) if such configuration request is received.
      Signed-off-by: default avatarStephan Mueller <smueller@chronox.de>
      Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
      f26b7b80
  2. 01 Dec, 2014 1 commit
  3. 28 Nov, 2014 1 commit
  4. 27 Nov, 2014 1 commit
  5. 26 Nov, 2014 3 commits
  6. 25 Nov, 2014 3 commits
  7. 24 Nov, 2014 2 commits
  8. 20 Nov, 2014 6 commits
  9. 17 Nov, 2014 3 commits
  10. 13 Nov, 2014 13 commits
  11. 12 Nov, 2014 4 commits