-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mismatch between SHA_ROUNDS_MAX in shadow and musl #79
Comments
Per the LFS 11.0 for shadow 4.9:
in LFS 11.1, shadow is updated to 4.11.1 and the suggested fix above was omitted. closed issue But LFS, is based on Glibc. I haven’t checked if Glibc limits the max as well or if it matches shadow. As reference, I check Alpine Linux (and sometimes Void Linux) for any suggested patches or modifications. So far I have not seen any patches. If there is, I probably didn’t see it by mistake. So far, I haven’t seen this cause any issues on my daily driver system. |
glibc matches shadow with 9 digits:
Nevertheless, the potential is there. What would happen if the number of rounds was passed greater than 9999999 (7 digits) is that musl would silently fallback to returning a DES-encrypted string, making shadow print out error about SHA512 "not being supported?", when it actually is. I believe this is either not being considered by musl developers, or left to the user's configuration of userland programs such as those from shadow. On my system, I used sed to apply musl's limit to shadow as well, because it seems saner to me. |
Oh okay. I thank you for the explanation as… I wasn’t sure where to start researching. then yes, I agree on applying the same limit in Musl Libc on shadow. |
As reference, this is the exact command I used:
|
Regarding the
Musl-LFS/doc/3-Chroot/022-Shadow
Line 13 in eb64786
Currently, the
SHA_ROUNDS_MAX
in shadow and musl differ. The one in musl 1.2.3 is defined ashttps://git.musl-libc.org/cgit/musl/tree/src/crypt/crypt_sha512.c?h=v1.2.3#n196
(7 digits), whereas the one expected by shadow 4.11.1 is
https://github.com/shadow-maint/shadow/blob/1bf5868e3378aef0f36ba3490852709d79729419/libmisc/salt.c#L63
(9 digits), which means that shadow can potentially request the larger number of rounds than supported by musl.
The text was updated successfully, but these errors were encountered: