diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-05-13 03:19:01 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-05-13 03:19:01 +0200 |
commit | 12a432715f066cf9d677316a39c9e0ebc6d72404 (patch) | |
tree | 14a33cdedbd6ba7739449cc3dec968b55a01efad /libbb | |
parent | 0806e401d6747c391fa0427e0ccba9951f9a1c3d (diff) | |
download | busybox-w32-12a432715f066cf9d677316a39c9e0ebc6d72404.tar.gz busybox-w32-12a432715f066cf9d677316a39c9e0ebc6d72404.tar.bz2 busybox-w32-12a432715f066cf9d677316a39c9e0ebc6d72404.zip |
adduser: safe username passing to passwd/addgroup
passwd: support creating SHA passwords
random code shrink
function old new delta
crypt_make_pw_salt - 87 +87
adduser_main 883 904 +21
...
crypt_make_salt 99 89 -10
chpasswd_main 329 312 -17
packed_usage 28731 28691 -40
passwd_main 1070 1000 -70
cryptpw_main 310 224 -86
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 4/12 up/down: 154/-288) Total: -134 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/pw_encrypt.c | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/libbb/pw_encrypt.c b/libbb/pw_encrypt.c index c6c04d44a..39ffa084f 100644 --- a/libbb/pw_encrypt.c +++ b/libbb/pw_encrypt.c | |||
@@ -27,9 +27,10 @@ static int i64c(int i) | |||
27 | return ('a' - 38 + i); | 27 | return ('a' - 38 + i); |
28 | } | 28 | } |
29 | 29 | ||
30 | int FAST_FUNC crypt_make_salt(char *p, int cnt, int x) | 30 | int FAST_FUNC crypt_make_salt(char *p, int cnt /*, int x */) |
31 | { | 31 | { |
32 | x += getpid() + time(NULL); | 32 | /* was: x += ... */ |
33 | int x = getpid() + monotonic_us(); | ||
33 | do { | 34 | do { |
34 | /* x = (x*1664525 + 1013904223) % 2^32 generator is lame | 35 | /* x = (x*1664525 + 1013904223) % 2^32 generator is lame |
35 | * (low-order bit is not "random", etc...), | 36 | * (low-order bit is not "random", etc...), |
@@ -47,6 +48,26 @@ int FAST_FUNC crypt_make_salt(char *p, int cnt, int x) | |||
47 | return x; | 48 | return x; |
48 | } | 49 | } |
49 | 50 | ||
51 | char* FAST_FUNC crypt_make_pw_salt(char salt[MAX_PW_SALT_LEN], const char *algo) | ||
52 | { | ||
53 | int len = 2/2; | ||
54 | char *salt_ptr = salt; | ||
55 | if (algo[0] != 'd') { /* not des */ | ||
56 | len = 8/2; /* so far assuming md5 */ | ||
57 | *salt_ptr++ = '$'; | ||
58 | *salt_ptr++ = '1'; | ||
59 | *salt_ptr++ = '$'; | ||
60 | #if !ENABLE_USE_BB_CRYPT || ENABLE_USE_BB_CRYPT_SHA | ||
61 | if (algo[0] == 's') { /* sha */ | ||
62 | salt[1] = '5' + (strcmp(algo, "sha512") == 0); | ||
63 | len = 16/2; | ||
64 | } | ||
65 | #endif | ||
66 | } | ||
67 | crypt_make_salt(salt_ptr, len); | ||
68 | return salt_ptr; | ||
69 | } | ||
70 | |||
50 | #if ENABLE_USE_BB_CRYPT | 71 | #if ENABLE_USE_BB_CRYPT |
51 | 72 | ||
52 | static char* | 73 | static char* |