CVE-2026-93155: crypto: keembay - Fix AEAD unregister count in error path

Published Sep 17, 2026
·
Updated

In the Linux kernel, the following vulnerability has been resolved:

crypto: keembay - Fix AEAD unregister count in error path

registeraesalgs() registers the AEAD algorithms before registering the skcipher algorithms. If skcipher registration fails, the function unwinds the earlier AEAD registration with cryptoengineunregisteraeads(), but it passes ARRAYSIZE(algs), which is the skcipher table size.

Use ARRAYSIZE(algsaead) for the AEAD unwind path so the unregister helper iterates over the same table that was registered. Also clarify the nearby comment: the crypto registration helpers clean up algorithms registered within the same call, while this function must still unwind earlier successful registration steps.

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Configuration

    Modify the AEAD unregister/error unwind path to iterate over the AEAD algorithm table using ARRAY_SIZE(algs_aead), so it matches the AEAD algorithms registered earlier in register_aes_algs() and uses the correct table size during unregister helper cleanup.

    Linux kernel crypto subsystem (crypto/keembay) Use ARRAY_SIZE(algs_aead) for the AEAD unwind path instead of ARRAY_SIZE(algs) = ARRAY_SIZE(algs_aead)

Event History

Sep 17, 2026
CVE Published
via MITRE·04:11 PM
Data Sourced
via MITRE·04:11 PM
Description

Frequently Asked Questions

1

Under what condition is the faulty cleanup path reached?

It is reached when register_aes_algs() has successfully registered the AEAD algorithms but registration of the skcipher algorithms subsequently fails.

2

What is the practical effect of the fix?

The fix makes the AEAD unregister helper use the AEAD algorithm table size rather than the skcipher table size, so the earlier AEAD registration is unwound using the same table that was registered.

3

Does this affect normal successful algorithm registration?

The described issue is specifically in the error-unwind path after skcipher registration fails. The provided information does not indicate an issue when both AEAD and skcipher registration succeed.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203