aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Griebl <griebl@gmx.de>2002-06-04 20:10:23 +0000
committerRobert Griebl <griebl@gmx.de>2002-06-04 20:10:23 +0000
commitea1a63a2011a44b143cc46c7d80a8152f5358e24 (patch)
tree3a71fbfa44c5a0887409c930a682c896aecb7425
parentc9aca4561ddb1165890fae0c8b921a2504c6273f (diff)
downloadbusybox-w32-ea1a63a2011a44b143cc46c7d80a8152f5358e24.tar.gz
busybox-w32-ea1a63a2011a44b143cc46c7d80a8152f5358e24.tar.bz2
busybox-w32-ea1a63a2011a44b143cc46c7d80a8152f5358e24.zip
Fix for broken handling off BusyBox's own pwd/grp implementations
[Parts of this patch may overlap with my other two patches]
-rw-r--r--debianutils/start_stop_daemon.c2
-rw-r--r--include/grp.h6
-rw-r--r--include/pwd.h5
-rw-r--r--include/shadow.h81
-rw-r--r--init/start_stop_daemon.c2
-rw-r--r--libbb/my_getgrgid.c2
-rw-r--r--libbb/my_getgrnam.c2
-rw-r--r--libbb/my_getpwnam.c2
-rw-r--r--libbb/my_getpwnamegid.c2
-rw-r--r--libbb/my_getpwuid.c2
-rw-r--r--networking/netstat.c2
-rw-r--r--shell/ash.c4
12 files changed, 98 insertions, 14 deletions
diff --git a/debianutils/start_stop_daemon.c b/debianutils/start_stop_daemon.c
index ed4503caf..29e3d8673 100644
--- a/debianutils/start_stop_daemon.c
+++ b/debianutils/start_stop_daemon.c
@@ -16,9 +16,9 @@
16#include <sys/stat.h> 16#include <sys/stat.h>
17#include <dirent.h> 17#include <dirent.h>
18#include <unistd.h> 18#include <unistd.h>
19#include "pwd.h"
20 19
21#include "busybox.h" 20#include "busybox.h"
21#include "pwd.h"
22 22
23static int start = 0; 23static int start = 0;
24static int stop = 0; 24static int stop = 0;
diff --git a/include/grp.h b/include/grp.h
index 191c2d4e5..12fecd02e 100644
--- a/include/grp.h
+++ b/include/grp.h
@@ -1,14 +1,16 @@
1#ifndef __CONFIG_GRP_H 1#ifndef __CONFIG_GRP_H
2#define __CONFIG_GRP_H 2#define __CONFIG_GRP_H
3 3
4#if defined USE_SYSTEM_PWD_GRP 4#if !defined CONFIG_USE_BB_PWD_GRP
5#include <grp.h> 5#include_next <grp.h>
6
6#else 7#else
7 8
8#include <sys/types.h> 9#include <sys/types.h>
9#include <features.h> 10#include <features.h>
10#include <stdio.h> 11#include <stdio.h>
11 12
13
12/* The group structure */ 14/* The group structure */
13struct group 15struct group
14{ 16{
diff --git a/include/pwd.h b/include/pwd.h
index 2fd0ab06e..178e9e97a 100644
--- a/include/pwd.h
+++ b/include/pwd.h
@@ -1,8 +1,9 @@
1#ifndef __CONFIG_PWD_H 1#ifndef __CONFIG_PWD_H
2#define __CONFIG_PWD_H 2#define __CONFIG_PWD_H
3 3
4#if defined USE_SYSTEM_PWD_GRP 4#if !defined CONFIG_USE_BB_PWD_GRP
5#include <pwd.h> 5#include_next <pwd.h>
6
6#else 7#else
7 8
8#include <sys/types.h> 9#include <sys/types.h>
diff --git a/include/shadow.h b/include/shadow.h
new file mode 100644
index 000000000..44e4b5878
--- /dev/null
+++ b/include/shadow.h
@@ -0,0 +1,81 @@
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
45typedef long sptime;
46
47/*
48 * Shadow password security file structure.
49 */
50
51struct 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
71struct spwd *getspent(void);
72struct spwd *sgetspent(const char *);
73struct spwd *fgetspent(FILE *);
74void setspent(void);
75void endspent(void);
76int putspent(const struct spwd *, FILE *);
77struct spwd *getspnam(const char *name);
78
79#endif /* CONFIG_USE_BB_SHADOW */
80
81#endif /* __CONFIG_SHADOW_H */
diff --git a/init/start_stop_daemon.c b/init/start_stop_daemon.c
index ed4503caf..29e3d8673 100644
--- a/init/start_stop_daemon.c
+++ b/init/start_stop_daemon.c
@@ -16,9 +16,9 @@
16#include <sys/stat.h> 16#include <sys/stat.h>
17#include <dirent.h> 17#include <dirent.h>
18#include <unistd.h> 18#include <unistd.h>
19#include "pwd.h"
20 19
21#include "busybox.h" 20#include "busybox.h"
21#include "pwd.h"
22 22
23static int start = 0; 23static int start = 0;
24static int stop = 0; 24static int stop = 0;
diff --git a/libbb/my_getgrgid.c b/libbb/my_getgrgid.c
index 27b671922..bf2067e46 100644
--- a/libbb/my_getgrgid.c
+++ b/libbb/my_getgrgid.c
@@ -21,9 +21,9 @@
21 21
22#include <stdio.h> 22#include <stdio.h>
23#include <string.h> 23#include <string.h>
24#include "libbb.h"
24#include "pwd.h" 25#include "pwd.h"
25#include "grp.h" 26#include "grp.h"
26#include "libbb.h"
27 27
28 28
29/* gets a groupname given a gid */ 29/* gets a groupname given a gid */
diff --git a/libbb/my_getgrnam.c b/libbb/my_getgrnam.c
index dbacf5192..f21d482c6 100644
--- a/libbb/my_getgrnam.c
+++ b/libbb/my_getgrnam.c
@@ -21,9 +21,9 @@
21 21
22#include <stdio.h> 22#include <stdio.h>
23#include <string.h> 23#include <string.h>
24#include "libbb.h"
24#include "pwd.h" 25#include "pwd.h"
25#include "grp.h" 26#include "grp.h"
26#include "libbb.h"
27 27
28 28
29/* returns a gid given a group name */ 29/* returns a gid given a group name */
diff --git a/libbb/my_getpwnam.c b/libbb/my_getpwnam.c
index 90277040e..db7f4a65f 100644
--- a/libbb/my_getpwnam.c
+++ b/libbb/my_getpwnam.c
@@ -21,9 +21,9 @@
21 21
22#include <stdio.h> 22#include <stdio.h>
23#include <string.h> 23#include <string.h>
24#include "libbb.h"
24#include "pwd.h" 25#include "pwd.h"
25#include "grp.h" 26#include "grp.h"
26#include "libbb.h"
27 27
28 28
29/* returns a uid given a username */ 29/* returns a uid given a username */
diff --git a/libbb/my_getpwnamegid.c b/libbb/my_getpwnamegid.c
index 9c45580b5..4866b9717 100644
--- a/libbb/my_getpwnamegid.c
+++ b/libbb/my_getpwnamegid.c
@@ -21,9 +21,9 @@
21 21
22#include <stdio.h> 22#include <stdio.h>
23#include <string.h> 23#include <string.h>
24#include "libbb.h"
24#include "pwd.h" 25#include "pwd.h"
25#include "grp.h" 26#include "grp.h"
26#include "libbb.h"
27 27
28 28
29 29
diff --git a/libbb/my_getpwuid.c b/libbb/my_getpwuid.c
index 49bc8fb49..5236c7df3 100644
--- a/libbb/my_getpwuid.c
+++ b/libbb/my_getpwuid.c
@@ -21,9 +21,9 @@
21 21
22#include <stdio.h> 22#include <stdio.h>
23#include <string.h> 23#include <string.h>
24#include "libbb.h"
24#include "pwd.h" 25#include "pwd.h"
25#include "grp.h" 26#include "grp.h"
26#include "libbb.h"
27 27
28 28
29 29
diff --git a/networking/netstat.c b/networking/netstat.c
index b083b0dd4..6e7cc5e7b 100644
--- a/networking/netstat.c
+++ b/networking/netstat.c
@@ -29,9 +29,9 @@
29#include <sys/stat.h> 29#include <sys/stat.h>
30#include <dirent.h> 30#include <dirent.h>
31#include <unistd.h> 31#include <unistd.h>
32#include <pwd.h>
33#include "inet_common.h" 32#include "inet_common.h"
34#include "busybox.h" 33#include "busybox.h"
34#include "pwd.h"
35 35
36#ifdef CONFIG_ROUTE 36#ifdef CONFIG_ROUTE
37extern void displayroutes(int noresolve, int netstatfmt); 37extern void displayroutes(int noresolve, int netstatfmt);
diff --git a/shell/ash.c b/shell/ash.c
index f3b641d53..d834cc02a 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -68,6 +68,7 @@
68#include <sys/times.h> 68#include <sys/times.h>
69#include <sys/types.h> 69#include <sys/types.h>
70#include <sys/wait.h> 70#include <sys/wait.h>
71#include "busybox.h"
71#include "pwd.h" 72#include "pwd.h"
72 73
73 74
@@ -82,7 +83,6 @@
82#include <termios.h> 83#include <termios.h>
83#endif 84#endif
84 85
85#include "busybox.h"
86#include "cmdedit.h" 86#include "cmdedit.h"
87 87
88/* 88/*
@@ -12442,7 +12442,7 @@ findvar(struct var **vpp, const char *name)
12442/* 12442/*
12443 * Copyright (c) 1999 Herbert Xu <herbert@debian.org> 12443 * Copyright (c) 1999 Herbert Xu <herbert@debian.org>
12444 * This file contains code for the times builtin. 12444 * This file contains code for the times builtin.
12445 * $Id: ash.c,v 1.50 2002/05/14 23:22:06 sandman Exp $ 12445 * $Id: ash.c,v 1.51 2002/06/04 20:10:15 sandman Exp $
12446 */ 12446 */
12447static int timescmd (int argc, char **argv) 12447static int timescmd (int argc, char **argv)
12448{ 12448{