diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-07-03 04:47:43 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-07-03 04:47:43 +0000 |
commit | 7234c3a0b6e95e0a3c2d907674dedfe930d491e0 (patch) | |
tree | c6f6e49920b7900bec59deef3364f3938a313cfa | |
parent | 009ae1f17daa320836c4215c16ea1c0db12a5d07 (diff) | |
download | busybox-w32-7234c3a0b6e95e0a3c2d907674dedfe930d491e0.tar.gz busybox-w32-7234c3a0b6e95e0a3c2d907674dedfe930d491e0.tar.bz2 busybox-w32-7234c3a0b6e95e0a3c2d907674dedfe930d491e0.zip |
Cleanup shadow.h stuff so it behaves as intended
-Erik
-rw-r--r-- | include/shadow.h | 81 | ||||
-rw-r--r-- | libbb/pwd2spwd.c | 2 | ||||
-rw-r--r-- | libpwdgrp/shadow.c | 3 | ||||
-rw-r--r-- | loginutils/config.in | 4 | ||||
-rw-r--r-- | sysdeps/linux/config.in | 4 |
5 files changed, 6 insertions, 88 deletions
diff --git a/include/shadow.h b/include/shadow.h deleted file mode 100644 index 44e4b5878..000000000 --- a/include/shadow.h +++ /dev/null | |||
@@ -1,81 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright 1988 - 1994, Julianne Frances Haugh <jockgrrl@austin.rr.com> | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions | ||
7 | * are met: | ||
8 | * 1. Redistributions of source code must retain the above copyright | ||
9 | * notice, this list of conditions and the following disclaimer. | ||
10 | * 2. Redistributions in binary form must reproduce the above copyright | ||
11 | * notice, this list of conditions and the following disclaimer in the | ||
12 | * documentation and/or other materials provided with the distribution. | ||
13 | * 3. Neither the name of Julianne F. Haugh nor the names of its contributors | ||
14 | * may be used to endorse or promote products derived from this software | ||
15 | * without specific prior written permission. | ||
16 | * | ||
17 | * THIS SOFTWARE IS PROVIDED BY JULIE HAUGH AND CONTRIBUTORS ``AS IS'' AND | ||
18 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
19 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
20 | * ARE DISCLAIMED. IN NO EVENT SHALL JULIE HAUGH OR CONTRIBUTORS BE LIABLE | ||
21 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
22 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
23 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
24 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
25 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
26 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
27 | * SUCH DAMAGE. | ||
28 | */ | ||
29 | |||
30 | #ifndef __CONFIG_SHADOW_H | ||
31 | #define __CONFIG_SHADOW_H | ||
32 | |||
33 | #if !defined CONFIG_USE_BB_SHADOW | ||
34 | #include_next <shadow.h> | ||
35 | |||
36 | #else | ||
37 | |||
38 | /* | ||
39 | * This information is not derived from AT&T licensed sources. Posted | ||
40 | * to the USENET 11/88, and updated 11/90 with information from SVR4. | ||
41 | * | ||
42 | * $Id: shadow.h,v 1.1 2002/06/04 20:10:10 sandman Exp $ | ||
43 | */ | ||
44 | |||
45 | typedef long sptime; | ||
46 | |||
47 | /* | ||
48 | * Shadow password security file structure. | ||
49 | */ | ||
50 | |||
51 | struct spwd { | ||
52 | char *sp_namp; /* login name */ | ||
53 | char *sp_pwdp; /* encrypted password */ | ||
54 | sptime sp_lstchg; /* date of last change */ | ||
55 | sptime sp_min; /* minimum number of days between changes */ | ||
56 | sptime sp_max; /* maximum number of days between changes */ | ||
57 | sptime sp_warn; /* number of days of warning before password | ||
58 | expires */ | ||
59 | sptime sp_inact; /* number of days after password expires | ||
60 | until the account becomes unusable. */ | ||
61 | sptime sp_expire; /* days since 1/1/70 until account expires */ | ||
62 | unsigned long sp_flag; /* reserved for future use */ | ||
63 | }; | ||
64 | |||
65 | /* | ||
66 | * Shadow password security file functions. | ||
67 | */ | ||
68 | |||
69 | #include <stdio.h> /* for FILE */ | ||
70 | |||
71 | struct spwd *getspent(void); | ||
72 | struct spwd *sgetspent(const char *); | ||
73 | struct spwd *fgetspent(FILE *); | ||
74 | void setspent(void); | ||
75 | void endspent(void); | ||
76 | int putspent(const struct spwd *, FILE *); | ||
77 | struct spwd *getspnam(const char *name); | ||
78 | |||
79 | #endif /* CONFIG_USE_BB_SHADOW */ | ||
80 | |||
81 | #endif /* __CONFIG_SHADOW_H */ | ||
diff --git a/libbb/pwd2spwd.c b/libbb/pwd2spwd.c index a04de5f0f..3dd625b27 100644 --- a/libbb/pwd2spwd.c +++ b/libbb/pwd2spwd.c | |||
@@ -31,7 +31,7 @@ | |||
31 | #include <time.h> | 31 | #include <time.h> |
32 | #include <sys/types.h> | 32 | #include <sys/types.h> |
33 | #include "libbb.h" | 33 | #include "libbb.h" |
34 | #include "shadow.h" | 34 | #include "shadow_.h" |
35 | 35 | ||
36 | /* | 36 | /* |
37 | * pwd_to_spwd - create entries for new spwd structure | 37 | * pwd_to_spwd - create entries for new spwd structure |
diff --git a/libpwdgrp/shadow.c b/libpwdgrp/shadow.c index 6cf195e4a..c79417383 100644 --- a/libpwdgrp/shadow.c +++ b/libpwdgrp/shadow.c | |||
@@ -39,8 +39,7 @@ | |||
39 | #include <stdlib.h> | 39 | #include <stdlib.h> |
40 | #include <string.h> | 40 | #include <string.h> |
41 | #include <unistd.h> | 41 | #include <unistd.h> |
42 | 42 | #include "shadow_.h" | |
43 | #include "shadow.h" | ||
44 | 43 | ||
45 | static FILE *shadow; | 44 | static FILE *shadow; |
46 | static char spwbuf[BUFSIZ]; | 45 | static char spwbuf[BUFSIZ]; |
diff --git a/loginutils/config.in b/loginutils/config.in index b3880aa3d..1d8a98633 100644 --- a/loginutils/config.in +++ b/loginutils/config.in | |||
@@ -7,6 +7,7 @@ mainmenu_option next_comment | |||
7 | comment 'Login/Password Management Utilities' | 7 | comment 'Login/Password Management Utilities' |
8 | 8 | ||
9 | 9 | ||
10 | bool 'Use internal password and group functions instead of the system functions' CONFIG_USE_BB_PWD_GRP | ||
10 | bool 'addgroup' CONFIG_ADDGROUP | 11 | bool 'addgroup' CONFIG_ADDGROUP |
11 | bool 'adduser' CONFIG_ADDUSER | 12 | bool 'adduser' CONFIG_ADDUSER |
12 | bool 'deluser' CONFIG_DELUSER | 13 | bool 'deluser' CONFIG_DELUSER |
@@ -20,6 +21,9 @@ bool 'passwd' CONFIG_PASSWD | |||
20 | bool 'su' CONFIG_SU | 21 | bool 'su' CONFIG_SU |
21 | if [ "$CONFIG_ADDUSER" = "y" -o "$CONFIG_DELUSER" = "y" -o "$CONFIG_LOGIN" = "y" -o "$CONFIG_SU" = "y" ]; then | 22 | if [ "$CONFIG_ADDUSER" = "y" -o "$CONFIG_DELUSER" = "y" -o "$CONFIG_LOGIN" = "y" -o "$CONFIG_SU" = "y" ]; then |
22 | bool ' Support for shadow passwords' CONFIG_FEATURE_SHADOWPASSWDS | 23 | bool ' Support for shadow passwords' CONFIG_FEATURE_SHADOWPASSWDS |
24 | if [ "$CONFIG_USE_BB_PWD_GRP" = "y" -a "$CONFIG_FEATURE_SHADOWPASSWDS" = "y" ]; then | ||
25 | bool ' Use busybox shadow password functions' CONFIG_USE_BB_SHADOW | ||
26 | fi | ||
23 | fi | 27 | fi |
24 | bool 'sulogin' CONFIG_SULOGIN | 28 | bool 'sulogin' CONFIG_SULOGIN |
25 | bool 'vlock' CONFIG_VLOCK | 29 | bool 'vlock' CONFIG_VLOCK |
diff --git a/sysdeps/linux/config.in b/sysdeps/linux/config.in index e2ae0e8c4..adcc77089 100644 --- a/sysdeps/linux/config.in +++ b/sysdeps/linux/config.in | |||
@@ -20,10 +20,6 @@ bool 'Support for SUID/SGID handling' CONFIG_FEATURE_SUID | |||
20 | if [ "$CONFIG_FEATURE_SUID" = "y" ]; then | 20 | if [ "$CONFIG_FEATURE_SUID" = "y" ]; then |
21 | bool ' Runtime configuration via /etc/busybox.conf' CONFIG_FEATURE_SUID_CONFIG | 21 | bool ' Runtime configuration via /etc/busybox.conf' CONFIG_FEATURE_SUID_CONFIG |
22 | fi | 22 | fi |
23 | bool 'Use busybox password and group functions' CONFIG_USE_BB_PWD_GRP | ||
24 | if [ "$CONFIG_USE_BB_PWD_GRP" = "y" ]; then | ||
25 | bool ' Use busybox shadow password functions' CONFIG_USE_BB_SHADOW | ||
26 | fi | ||
27 | endmenu | 23 | endmenu |
28 | 24 | ||
29 | source archival/config.in | 25 | source archival/config.in |