FROMGIT: dm crypt: log the encryption algorithm implementation
authorEric Biggers <ebiggers@google.com>
Thu, 6 Dec 2018 04:53:00 +0000 (20:53 -0800)
committerEric Biggers <ebiggers@google.com>
Tue, 18 Dec 2018 18:56:31 +0000 (10:56 -0800)
Log the encryption algorithm's driver name when a dm-crypt target is
created.  This will help people determine whether the expected
implementation is being used.  In some cases we've seen people do
benchmarks and reject using encryption for performance reasons, when in
fact they used a much slower implementation than was possible on the
hardware.  It can make an enormous difference; e.g., AES-XTS on ARM can
be over 10x faster with the crypto extensions than without.  It can also
be useful to know if an implementation using an external crypto
accelerator is being used instead of a software implementation.

Example message:

[   29.307629] device-mapper: crypt: xts(aes) using implementation "xts-aes-ce"

We've already found the similar message in fs/crypto/keyinfo.c to be
very useful.

Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
(cherry picked from commit 32bbca787931a371256ac51219a6e9c9dbc86960
 https://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git for-next)
Test: Verified that the message is logged when dm-crypt is used.
Change-Id: I20857a5350266431924e177dea50418aeb95009d
Signed-off-by: Eric Biggers <ebiggers@google.com>
drivers/md/dm-crypt.c

index c60d29d09687d73368e0490d096736c8d1456c5a..47b59682d9f6d267d83e3d5f9243dd518d1b2233 100644 (file)
@@ -1893,6 +1893,13 @@ static int crypt_alloc_tfms_skcipher(struct crypt_config *cc, char *ciphermode)
                }
        }
 
+       /*
+        * dm-crypt performance can vary greatly depending on which crypto
+        * algorithm implementation is used.  Help people debug performance
+        * problems by logging the ->cra_driver_name.
+        */
+       DMINFO("%s using implementation \"%s\"", ciphermode,
+              crypto_skcipher_alg(any_tfm(cc))->base.cra_driver_name);
        return 0;
 }
 
@@ -1911,6 +1918,8 @@ static int crypt_alloc_tfms_aead(struct crypt_config *cc, char *ciphermode)
                return err;
        }
 
+       DMINFO("%s using implementation \"%s\"", ciphermode,
+              crypto_aead_alg(any_tfm_aead(cc))->base.cra_driver_name);
        return 0;
 }