500-e_devcrypto-default-to-not-use-digests-in-engine.patch 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
  2. From: Eneas U de Queiroz <[email protected]>
  3. Date: Mon, 11 Mar 2019 09:29:13 -0300
  4. Subject: e_devcrypto: default to not use digests in engine
  5. Digests are almost always slower when using /dev/crypto because of the
  6. cost of the context switches. Only for large blocks it is worth it.
  7. Also, when forking, the open context structures are duplicated, but the
  8. internal kernel sessions are still shared between forks, which means an
  9. update/close operation in one fork affects all processes using that
  10. session.
  11. This affects digests, especially for HMAC, where the session with the
  12. key hash is used as a source for subsequent operations. At least one
  13. popular application does this across a fork. Disabling digests by
  14. default will mitigate the problem, while still allowing the user to
  15. turn them on if it is safe and fast enough.
  16. Signed-off-by: Eneas U de Queiroz <[email protected]>
  17. --- a/engines/e_devcrypto.c
  18. +++ b/engines/e_devcrypto.c
  19. @@ -852,7 +852,7 @@ static void prepare_digest_methods(void)
  20. for (i = 0, known_digest_nids_amount = 0; i < OSSL_NELEM(digest_data);
  21. i++) {
  22. - selected_digests[i] = 1;
  23. + selected_digests[i] = 0;
  24. /*
  25. * Check that the digest is usable
  26. @@ -1072,7 +1072,7 @@ static const ENGINE_CMD_DEFN devcrypto_c
  27. #ifdef IMPLEMENT_DIGEST
  28. {DEVCRYPTO_CMD_DIGESTS,
  29. "DIGESTS",
  30. - "either ALL, NONE, or a comma-separated list of digests to enable [default=ALL]",
  31. + "either ALL, NONE, or a comma-separated list of digests to enable [default=NONE]",
  32. ENGINE_CMD_FLAG_STRING},
  33. #endif