aboutsummaryrefslogtreecommitdiff
path: root/libbb/correct_password.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/correct_password.c')
-rw-r--r--libbb/correct_password.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/libbb/correct_password.c b/libbb/correct_password.c
index f1793cd17..96bb10e0b 100644
--- a/libbb/correct_password.c
+++ b/libbb/correct_password.c
@@ -40,6 +40,11 @@ int correct_password(const struct passwd *pw)
40{ 40{
41 char *unencrypted, *encrypted; 41 char *unencrypted, *encrypted;
42 const char *correct; 42 const char *correct;
43#if ENABLE_FEATURE_SHADOWPASSWDS
44 /* Using _r function to avoid pulling in static buffers */
45 struct spwd spw;
46 char buffer[256];
47#endif
43 48
44 /* fake salt. crypt() can choke otherwise. */ 49 /* fake salt. crypt() can choke otherwise. */
45 correct = "aa"; 50 correct = "aa";
@@ -50,11 +55,11 @@ int correct_password(const struct passwd *pw)
50 correct = pw->pw_passwd; 55 correct = pw->pw_passwd;
51#if ENABLE_FEATURE_SHADOWPASSWDS 56#if ENABLE_FEATURE_SHADOWPASSWDS
52 if ((correct[0] == 'x' || correct[0] == '*') && !correct[1]) { 57 if ((correct[0] == 'x' || correct[0] == '*') && !correct[1]) {
53 /* Using _r function to avoid pulling in static buffers */ 58 /* getspnam_r may return 0 yet set result to NULL.
54 struct spwd spw; 59 * At least glibc 2.4 does this. Be extra paranoid here. */
55 struct spwd *result; 60 struct spwd *result = NULL;
56 char buffer[256]; 61 int r = getspnam_r(pw->pw_name, &spw, buffer, sizeof(buffer), &result);
57 correct = (getspnam_r(pw->pw_name, &spw, buffer, sizeof(buffer), &result)) ? "aa" : spw.sp_pwdp; 62 correct = (r || !result) ? "aa" : result->sp_pwdp;
58 } 63 }
59#endif 64#endif
60 65