1. 13 12月, 2016 24 次提交
  2. 12 12月, 2016 13 次提交
  3. 14 11月, 2016 3 次提交
    • E
      fscrypto: don't use on-stack buffer for key derivation · a6e08912
      Eric Biggers 提交于
      With the new (in 4.9) option to use a virtually-mapped stack
      (CONFIG_VMAP_STACK), stack buffers cannot be used as input/output for
      the scatterlist crypto API because they may not be directly mappable to
      struct page.  get_crypt_info() was using a stack buffer to hold the
      output from the encryption operation used to derive the per-file key.
      Fix it by using a heap buffer.
      
      This bug could most easily be observed in a CONFIG_DEBUG_SG kernel
      because this allowed the BUG in sg_set_buf() to be triggered.
      
      Cc: stable@vger.kernel.org
      Signed-off-by: NEric Biggers <ebiggers@google.com>
      Signed-off-by: NTheodore Ts'o <tytso@mit.edu>
      a6e08912
    • E
      fscrypto: don't use on-stack buffer for filename encryption · 08ae877f
      Eric Biggers 提交于
      With the new (in 4.9) option to use a virtually-mapped stack
      (CONFIG_VMAP_STACK), stack buffers cannot be used as input/output for
      the scatterlist crypto API because they may not be directly mappable to
      struct page.  For short filenames, fname_encrypt() was encrypting a
      stack buffer holding the padded filename.  Fix it by encrypting the
      filename in-place in the output buffer, thereby making the temporary
      buffer unnecessary.
      
      This bug could most easily be observed in a CONFIG_DEBUG_SG kernel
      because this allowed the BUG in sg_set_buf() to be triggered.
      
      Cc: stable@vger.kernel.org
      Signed-off-by: NEric Biggers <ebiggers@google.com>
      Signed-off-by: NTheodore Ts'o <tytso@mit.edu>
      08ae877f
    • D
      fscrypt: Let fs select encryption index/tweak · 9c4bb8a3
      David Gstir 提交于
      Avoid re-use of page index as tweak for AES-XTS when multiple parts of
      same page are encrypted. This will happen on multiple (partial) calls of
      fscrypt_encrypt_page on same page.
      page->index is only valid for writeback pages.
      Signed-off-by: NDavid Gstir <david@sigma-star.at>
      Signed-off-by: NRichard Weinberger <richard@nod.at>
      Signed-off-by: NTheodore Ts'o <tytso@mit.edu>
      9c4bb8a3