aboutsummaryrefslogtreecommitdiff
path: root/src/Data
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbaren@google.com>2018-01-25 21:39:05 -0500
committerGravatar Benjamin Barenblat <bbaren@google.com>2018-01-25 21:39:05 -0500
commit4e56c79b907da4a4654e5278bdcf94b08480a426 (patch)
treeb25e2fbaa615a2ef96f7fe162071f3bc0c7bd47d /src/Data
parent1da0165678cb990160edcf376c4e6f08cccf8bf4 (diff)
Data.Digest.Sha2: Cleanse hash buffers after use
Implement a wrapper for `OPENSSL_cleanse` and use it to securely erase hash buffers. This matches the behavior of BoringSSL’s all-in-one hash functions (`SHA256`, `SHA512`, etc.) and memory allocation subsystem.
Diffstat (limited to 'src/Data')
-rw-r--r--src/Data/Digest/Internal.hs16
1 files changed, 13 insertions, 3 deletions
diff --git a/src/Data/Digest/Internal.hs b/src/Data/Digest/Internal.hs
index 8e723ee..acfb70c 100644
--- a/src/Data/Digest/Internal.hs
+++ b/src/Data/Digest/Internal.hs
@@ -11,11 +11,13 @@ import qualified Data.ByteString as ByteString
import qualified Data.ByteString.Unsafe as ByteString
import Data.Char (intToDigit)
import Data.Word (Word8)
-import Foreign (Ptr, Storable, alloca, allocaArray, throwIf_)
+import Foreign (Ptr, Storable, allocaArray, throwIf_, withForeignPtr)
import Foreign.C.Types
import Foreign.Marshal.Unsafe (unsafeLocalState)
import Unsafe.Coerce (unsafeCoerce)
+import Cleanse (mallocCleansablePtr)
+
-- | A hash algorithm which follows the standard initialize-update-finalize
-- pattern.
data Algo = forall ctx. Storable ctx => Algo
@@ -56,14 +58,22 @@ instance Show Digest where
hash :: Algo -> ByteString -> Digest
hash (Algo {mdLen, mdInit, mdUpdate, mdFinal}) bytes =
let mdLen' = fromIntegral mdLen :: Int
- in unsafeLocalState $
- alloca $ \ctx -> do
+ in unsafeLocalState $ do
+ -- Allocate cleansable space for the hash context. This matches the
+ -- behavior of the all-in-one hash functions in BoringSSL (@SHA256@,
+ -- @SHA512@, etc.) which cleanse their buffers prior to returning.
+ ctxFP <- mallocCleansablePtr
+ withForeignPtr ctxFP $ \ctx -> do
alwaysSucceeds $ mdInit ctx
-- 'mdUpdate' treats its @buf@ argument as @const@, so the sharing
-- inherent in 'ByteString.unsafeUseAsCStringLen' is fine.
ByteString.unsafeUseAsCStringLen bytes $ \(buf, len) ->
alwaysSucceeds $ mdUpdate ctx buf (fromIntegral len)
d <-
+ -- We could allocate another cleansable 'ForeignPtr' to store the
+ -- digest, but we're going to be returning a copy of it as a ByteString
+ -- anyway, so there's not really any point. Use 'allocaArray'; it's
+ -- faster and simpler.
allocaArray mdLen' $ \mdOut -> do
requireSuccess $ mdFinal mdOut ctx
-- 'mdOut' is a 'Ptr CUChar'. However, to make life more interesting,