blob: 947f48d432e6e7d6f38e400618055b6a99fea8db [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Eric Andersen9615a082004-07-15 12:53:49 +00002/* Copyright (C) 2003 Manuel Novoa III
3 *
Rob Landley25413bf2005-10-08 02:23:22 +00004 * Licensed under GPL v2, or later. See file LICENSE in this tarball.
Eric Andersen9615a082004-07-15 12:53:49 +00005 */
6
7/* Nov 6, 2003 Initial version.
8 *
9 * NOTE: This implementation is quite strict about requiring all
10 * field seperators. It also does not allow leading whitespace
11 * except when processing the numeric fields. glibc is more
12 * lenient. See the various glibc difference comments below.
13 *
14 * TODO:
Rob Landley06ec8cf2006-03-03 19:02:50 +000015 * Move to dynamic allocation of (currently statically allocated)
Eric Andersen9615a082004-07-15 12:53:49 +000016 * buffers; especially for the group-related functions since
17 * large group member lists will cause error returns.
18 *
19 */
20
Rob Landleyea224be2006-06-18 20:20:07 +000021#include "libbb.h"
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +020022//#include <features.h>
Eric Andersen9615a082004-07-15 12:53:49 +000023#include <assert.h>
Bernhard Reutner-Fischerfa939aa2006-04-05 16:21:37 +000024
Eric Andersen9615a082004-07-15 12:53:49 +000025#ifndef _PATH_SHADOW
26#define _PATH_SHADOW "/etc/shadow"
27#endif
28#ifndef _PATH_PASSWD
29#define _PATH_PASSWD "/etc/passwd"
30#endif
31#ifndef _PATH_GROUP
32#define _PATH_GROUP "/etc/group"
33#endif
34
35/**********************************************************************/
Rob Landley06ec8cf2006-03-03 19:02:50 +000036/* Sizes for statically allocated buffers. */
Eric Andersen9615a082004-07-15 12:53:49 +000037
38/* If you change these values, also change _SC_GETPW_R_SIZE_MAX and
39 * _SC_GETGR_R_SIZE_MAX in libc/unistd/sysconf.c to match */
40#define PWD_BUFFER_SIZE 256
41#define GRP_BUFFER_SIZE 256
42
43/**********************************************************************/
44/* Prototypes for internal functions. */
45
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000046static int bb__pgsreader(int (*parserfunc)(void *d, char *line), void *data,
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000047 char *__restrict line_buff, size_t buflen, FILE *f);
Eric Andersen9615a082004-07-15 12:53:49 +000048
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000049static int bb__parsepwent(void *pw, char *line);
50static int bb__parsegrent(void *gr, char *line);
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +000051#if ENABLE_USE_BB_SHADOW
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000052static int bb__parsespent(void *sp, char *line);
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +000053#endif
54
Eric Andersen9615a082004-07-15 12:53:49 +000055/**********************************************************************/
Denis Vlasenko2c91efb2007-06-18 10:08:27 +000056/* We avoid having big global data. */
57
58struct statics {
59 /* Smaller things first */
60 struct passwd getpwuid_resultbuf;
61 struct group getgrgid_resultbuf;
62 struct passwd getpwnam_resultbuf;
63 struct group getgrnam_resultbuf;
64
65 char getpwuid_buffer[PWD_BUFFER_SIZE];
66 char getgrgid_buffer[GRP_BUFFER_SIZE];
67 char getpwnam_buffer[PWD_BUFFER_SIZE];
68 char getgrnam_buffer[GRP_BUFFER_SIZE];
69#if 0
70 struct passwd fgetpwent_resultbuf;
71 struct group fgetgrent_resultbuf;
72 struct spwd fgetspent_resultbuf;
73 char fgetpwent_buffer[PWD_BUFFER_SIZE];
74 char fgetgrent_buffer[GRP_BUFFER_SIZE];
75 char fgetspent_buffer[PWD_BUFFER_SIZE];
76#endif
77#if 0 //ENABLE_USE_BB_SHADOW
78 struct spwd getspuid_resultbuf;
79 struct spwd getspnam_resultbuf;
80 char getspuid_buffer[PWD_BUFFER_SIZE];
81 char getspnam_buffer[PWD_BUFFER_SIZE];
82#endif
83// Not converted - too small to bother
84//pthread_mutex_t mylock = PTHREAD_MUTEX_INITIALIZER;
85//FILE *pwf /*= NULL*/;
86//FILE *grf /*= NULL*/;
87//FILE *spf /*= NULL*/;
88#if 0
89 struct passwd getpwent_pwd;
90 struct group getgrent_gr;
91 char getpwent_line_buff[PWD_BUFFER_SIZE];
92 char getgrent_line_buff[GRP_BUFFER_SIZE];
93#endif
94#if 0 //ENABLE_USE_BB_SHADOW
95 struct spwd getspent_spwd;
96 struct spwd sgetspent_spwd;
97 char getspent_line_buff[PWD_BUFFER_SIZE];
98 char sgetspent_line_buff[PWD_BUFFER_SIZE];
99#endif
100};
101
102static struct statics *ptr_to_statics;
103
104static struct statics *get_S(void)
105{
106 if (!ptr_to_statics)
107 ptr_to_statics = xzalloc(sizeof(*ptr_to_statics));
108 return ptr_to_statics;
109}
110
111/* Always use in this order, get_S() must be called first */
112#define RESULTBUF(name) &((S = get_S())->name##_resultbuf)
113#define BUFFER(name) (S->name##_buffer)
114
115/**********************************************************************/
Eric Andersen9615a082004-07-15 12:53:49 +0000116/* For the various fget??ent_r funcs, return
117 *
118 * 0: success
119 * ENOENT: end-of-file encountered
120 * ERANGE: buflen too small
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000121 * other error values possible. See bb__pgsreader.
Eric Andersen9615a082004-07-15 12:53:49 +0000122 *
123 * Also, *result == resultbuf on success and NULL on failure.
124 *
125 * NOTE: glibc difference - For the ENOENT case, glibc also sets errno.
126 * We do not, as it really isn't an error if we reach the end-of-file.
127 * Doing so is analogous to having fgetc() set errno on EOF.
128 */
129/**********************************************************************/
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000130
Eric Andersen9615a082004-07-15 12:53:49 +0000131int fgetpwent_r(FILE *__restrict stream, struct passwd *__restrict resultbuf,
132 char *__restrict buffer, size_t buflen,
133 struct passwd **__restrict result)
134{
135 int rv;
136
137 *result = NULL;
138
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000139 rv = bb__pgsreader(bb__parsepwent, resultbuf, buffer, buflen, stream);
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000140 if (!rv) {
Eric Andersen9615a082004-07-15 12:53:49 +0000141 *result = resultbuf;
142 }
143
144 return rv;
145}
146
Eric Andersen9615a082004-07-15 12:53:49 +0000147int fgetgrent_r(FILE *__restrict stream, struct group *__restrict resultbuf,
148 char *__restrict buffer, size_t buflen,
149 struct group **__restrict result)
150{
151 int rv;
152
153 *result = NULL;
154
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000155 rv = bb__pgsreader(bb__parsegrent, resultbuf, buffer, buflen, stream);
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000156 if (!rv) {
Eric Andersen9615a082004-07-15 12:53:49 +0000157 *result = resultbuf;
158 }
159
160 return rv;
161}
162
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000163#if ENABLE_USE_BB_SHADOW
Eric Andersen9615a082004-07-15 12:53:49 +0000164int fgetspent_r(FILE *__restrict stream, struct spwd *__restrict resultbuf,
165 char *__restrict buffer, size_t buflen,
166 struct spwd **__restrict result)
167{
168 int rv;
169
170 *result = NULL;
171
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000172 rv = bb__pgsreader(bb__parsespent, resultbuf, buffer, buflen, stream);
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000173 if (!rv) {
Eric Andersen9615a082004-07-15 12:53:49 +0000174 *result = resultbuf;
175 }
176
177 return rv;
178}
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000179#endif
Eric Andersen9615a082004-07-15 12:53:49 +0000180
Eric Andersen9615a082004-07-15 12:53:49 +0000181/**********************************************************************/
182/* For the various fget??ent funcs, return NULL on failure and a
Rob Landley06ec8cf2006-03-03 19:02:50 +0000183 * pointer to the appropriate struct (statically allocated) on success.
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000184 * TODO: audit & stop using these in bbox, they pull in static buffers */
Eric Andersen9615a082004-07-15 12:53:49 +0000185/**********************************************************************/
Eric Andersen9615a082004-07-15 12:53:49 +0000186
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000187#if 0
Eric Andersen9615a082004-07-15 12:53:49 +0000188struct passwd *fgetpwent(FILE *stream)
189{
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000190 struct statics *S;
191 struct passwd *resultbuf = RESULTBUF(fgetpwent);
192 char *buffer = BUFFER(fgetpwent);
Eric Andersen9615a082004-07-15 12:53:49 +0000193 struct passwd *result;
194
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000195 fgetpwent_r(stream, resultbuf, buffer, sizeof(BUFFER(fgetpwent)), &result);
Eric Andersen9615a082004-07-15 12:53:49 +0000196 return result;
197}
198
Eric Andersen9615a082004-07-15 12:53:49 +0000199struct group *fgetgrent(FILE *stream)
200{
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000201 struct statics *S;
202 struct group *resultbuf = RESULTBUF(fgetgrent);
203 char *buffer = BUFFER(fgetgrent);
Eric Andersen9615a082004-07-15 12:53:49 +0000204 struct group *result;
205
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000206 fgetgrent_r(stream, resultbuf, buffer, sizeof(BUFFER(fgetgrent)), &result);
Eric Andersen9615a082004-07-15 12:53:49 +0000207 return result;
208}
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000209#endif
Eric Andersen9615a082004-07-15 12:53:49 +0000210
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000211#if ENABLE_USE_BB_SHADOW
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000212#if 0
Eric Andersen9615a082004-07-15 12:53:49 +0000213struct spwd *fgetspent(FILE *stream)
214{
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000215 struct statics *S;
216 struct spwd *resultbuf = RESULTBUF(fgetspent);
217 char *buffer = BUFFER(fgetspent);
Eric Andersen9615a082004-07-15 12:53:49 +0000218 struct spwd *result;
219
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000220 fgetspent_r(stream, resultbuf, buffer, sizeof(BUFFER(fgetspent)), &result);
Eric Andersen9615a082004-07-15 12:53:49 +0000221 return result;
222}
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000223#endif
Eric Andersen9615a082004-07-15 12:53:49 +0000224
Eric Andersen9615a082004-07-15 12:53:49 +0000225int sgetspent_r(const char *string, struct spwd *result_buf,
226 char *buffer, size_t buflen, struct spwd **result)
227{
228 int rv = ERANGE;
229
230 *result = NULL;
231
232 if (buflen < PWD_BUFFER_SIZE) {
233 DO_ERANGE:
234 errno=rv;
235 goto DONE;
236 }
237
238 if (string != buffer) {
239 if (strlen(string) >= buflen) {
240 goto DO_ERANGE;
241 }
242 strcpy(buffer, string);
243 }
244
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000245 rv = bb__parsespent(result_buf, buffer);
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000246 if (!rv) {
Eric Andersen9615a082004-07-15 12:53:49 +0000247 *result = result_buf;
248 }
249
250 DONE:
251 return rv;
252}
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000253#endif
Eric Andersen9615a082004-07-15 12:53:49 +0000254
Eric Andersen9615a082004-07-15 12:53:49 +0000255/**********************************************************************/
256
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000257#define GETXXKEY_R_FUNC getpwnam_r
258#define GETXXKEY_R_PARSER bb__parsepwent
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000259#define GETXXKEY_R_ENTTYPE struct passwd
260#define GETXXKEY_R_TEST(ENT) (!strcmp((ENT)->pw_name, key))
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000261#define GETXXKEY_R_KEYTYPE const char *__restrict
262#define GETXXKEY_R_PATHNAME _PATH_PASSWD
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000263#include "pwd_grp_internal.c"
Eric Andersen9615a082004-07-15 12:53:49 +0000264
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000265#define GETXXKEY_R_FUNC getgrnam_r
266#define GETXXKEY_R_PARSER bb__parsegrent
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000267#define GETXXKEY_R_ENTTYPE struct group
268#define GETXXKEY_R_TEST(ENT) (!strcmp((ENT)->gr_name, key))
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000269#define GETXXKEY_R_KEYTYPE const char *__restrict
270#define GETXXKEY_R_PATHNAME _PATH_GROUP
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000271#include "pwd_grp_internal.c"
Eric Andersen9615a082004-07-15 12:53:49 +0000272
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000273#if ENABLE_USE_BB_SHADOW
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000274#define GETXXKEY_R_FUNC getspnam_r
275#define GETXXKEY_R_PARSER bb__parsespent
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000276#define GETXXKEY_R_ENTTYPE struct spwd
277#define GETXXKEY_R_TEST(ENT) (!strcmp((ENT)->sp_namp, key))
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000278#define GETXXKEY_R_KEYTYPE const char *__restrict
279#define GETXXKEY_R_PATHNAME _PATH_SHADOW
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000280#include "pwd_grp_internal.c"
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000281#endif
Eric Andersen9615a082004-07-15 12:53:49 +0000282
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000283#define GETXXKEY_R_FUNC getpwuid_r
284#define GETXXKEY_R_PARSER bb__parsepwent
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000285#define GETXXKEY_R_ENTTYPE struct passwd
286#define GETXXKEY_R_TEST(ENT) ((ENT)->pw_uid == key)
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000287#define GETXXKEY_R_KEYTYPE uid_t
288#define GETXXKEY_R_PATHNAME _PATH_PASSWD
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000289#include "pwd_grp_internal.c"
Eric Andersen9615a082004-07-15 12:53:49 +0000290
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000291#define GETXXKEY_R_FUNC getgrgid_r
292#define GETXXKEY_R_PARSER bb__parsegrent
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000293#define GETXXKEY_R_ENTTYPE struct group
294#define GETXXKEY_R_TEST(ENT) ((ENT)->gr_gid == key)
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000295#define GETXXKEY_R_KEYTYPE gid_t
296#define GETXXKEY_R_PATHNAME _PATH_GROUP
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000297#include "pwd_grp_internal.c"
Eric Andersen9615a082004-07-15 12:53:49 +0000298
299/**********************************************************************/
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000300/* TODO: audit & stop using these in bbox, they pull in static buffers */
Eric Andersen9615a082004-07-15 12:53:49 +0000301
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000302/* This one has many users */
Eric Andersen9615a082004-07-15 12:53:49 +0000303struct passwd *getpwuid(uid_t uid)
304{
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000305 struct statics *S;
306 struct passwd *resultbuf = RESULTBUF(getpwuid);
307 char *buffer = BUFFER(getpwuid);
Eric Andersen9615a082004-07-15 12:53:49 +0000308 struct passwd *result;
309
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000310 getpwuid_r(uid, resultbuf, buffer, sizeof(BUFFER(getpwuid)), &result);
Eric Andersen9615a082004-07-15 12:53:49 +0000311 return result;
312}
313
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000314/* This one has many users */
Eric Andersen9615a082004-07-15 12:53:49 +0000315struct group *getgrgid(gid_t gid)
316{
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000317 struct statics *S;
318 struct group *resultbuf = RESULTBUF(getgrgid);
319 char *buffer = BUFFER(getgrgid);
Eric Andersen9615a082004-07-15 12:53:49 +0000320 struct group *result;
321
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000322 getgrgid_r(gid, resultbuf, buffer, sizeof(BUFFER(getgrgid)), &result);
Eric Andersen9615a082004-07-15 12:53:49 +0000323 return result;
324}
325
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000326#if 0 //ENABLE_USE_BB_SHADOW
Eric Andersen9615a082004-07-15 12:53:49 +0000327/* This function is non-standard and is currently not built. It seems
328 * to have been created as a reentrant version of the non-standard
329 * functions getspuid. Why getspuid was added, I do not know. */
Eric Andersen9615a082004-07-15 12:53:49 +0000330int getspuid_r(uid_t uid, struct spwd *__restrict resultbuf,
331 char *__restrict buffer, size_t buflen,
332 struct spwd **__restrict result)
333{
334 int rv;
335 struct passwd *pp;
336 struct passwd password;
337 char pwd_buff[PWD_BUFFER_SIZE];
338
339 *result = NULL;
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000340 rv = getpwuid_r(uid, &password, pwd_buff, sizeof(pwd_buff), &pp);
341 if (!rv) {
Eric Andersen9615a082004-07-15 12:53:49 +0000342 rv = getspnam_r(password.pw_name, resultbuf, buffer, buflen, result);
343 }
344
345 return rv;
346}
347
Eric Andersen9615a082004-07-15 12:53:49 +0000348/* This function is non-standard and is currently not built.
349 * Why it was added, I do not know. */
Eric Andersen9615a082004-07-15 12:53:49 +0000350struct spwd *getspuid(uid_t uid)
351{
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000352 struct statics *S;
353 struct spwd *resultbuf = RESULTBUF(getspuid);
354 char *buffer = BUFFER(getspuid);
Eric Andersen9615a082004-07-15 12:53:49 +0000355 struct spwd *result;
356
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000357 getspuid_r(uid, resultbuf, buffer, sizeof(BUFFER(getspuid)), &result);
Eric Andersen9615a082004-07-15 12:53:49 +0000358 return result;
359}
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000360#endif
Eric Andersen9615a082004-07-15 12:53:49 +0000361
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000362/* This one has many users */
Eric Andersen9615a082004-07-15 12:53:49 +0000363struct passwd *getpwnam(const char *name)
364{
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000365 struct statics *S;
366 struct passwd *resultbuf = RESULTBUF(getpwnam);
367 char *buffer = BUFFER(getpwnam);
Eric Andersen9615a082004-07-15 12:53:49 +0000368 struct passwd *result;
369
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000370 getpwnam_r(name, resultbuf, buffer, sizeof(BUFFER(getpwnam)), &result);
Eric Andersen9615a082004-07-15 12:53:49 +0000371 return result;
372}
373
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000374/* This one has many users */
Eric Andersen9615a082004-07-15 12:53:49 +0000375struct group *getgrnam(const char *name)
376{
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000377 struct statics *S;
378 struct group *resultbuf = RESULTBUF(getgrnam);
379 char *buffer = BUFFER(getgrnam);
Eric Andersen9615a082004-07-15 12:53:49 +0000380 struct group *result;
381
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000382 getgrnam_r(name, resultbuf, buffer, sizeof(BUFFER(getgrnam)), &result);
Eric Andersen9615a082004-07-15 12:53:49 +0000383 return result;
384}
385
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000386#if 0 //ENABLE_USE_BB_SHADOW
Eric Andersen9615a082004-07-15 12:53:49 +0000387struct spwd *getspnam(const char *name)
388{
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000389 struct statics *S;
390 struct spwd *resultbuf = RESULTBUF(getspnam);
391 char *buffer = BUFFER(getspnam);
Eric Andersen9615a082004-07-15 12:53:49 +0000392 struct spwd *result;
393
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000394 getspnam_r(name, resultbuf, buffer, sizeof(BUFFER(getspnam)), &result);
Eric Andersen9615a082004-07-15 12:53:49 +0000395 return result;
396}
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000397#endif
Eric Andersen9615a082004-07-15 12:53:49 +0000398
Denis Vlasenkoee5dce32008-09-26 10:35:55 +0000399#ifdef THIS_ONE_IS_UNUSED
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000400/* This one doesn't use static buffers */
Eric Andersen9615a082004-07-15 12:53:49 +0000401int getpw(uid_t uid, char *buf)
402{
403 struct passwd resultbuf;
404 struct passwd *result;
405 char buffer[PWD_BUFFER_SIZE];
406
407 if (!buf) {
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000408 errno = EINVAL;
Eric Andersen9615a082004-07-15 12:53:49 +0000409 } else if (!getpwuid_r(uid, &resultbuf, buffer, sizeof(buffer), &result)) {
410 if (sprintf(buf, "%s:%s:%lu:%lu:%s:%s:%s\n",
411 resultbuf.pw_name, resultbuf.pw_passwd,
412 (unsigned long)(resultbuf.pw_uid),
413 (unsigned long)(resultbuf.pw_gid),
414 resultbuf.pw_gecos, resultbuf.pw_dir,
415 resultbuf.pw_shell) >= 0
416 ) {
417 return 0;
418 }
419 }
420
421 return -1;
422}
Denis Vlasenkoee5dce32008-09-26 10:35:55 +0000423#endif
Eric Andersen9615a082004-07-15 12:53:49 +0000424
Eric Andersen9615a082004-07-15 12:53:49 +0000425/**********************************************************************/
Eric Andersen9615a082004-07-15 12:53:49 +0000426
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000427/* FIXME: we don't have such CONFIG_xx - ?! */
428
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000429#if defined CONFIG_USE_BB_THREADSAFE_SHADOW && defined PTHREAD_MUTEX_INITIALIZER
430static pthread_mutex_t mylock = PTHREAD_MUTEX_INITIALIZER;
431# define LOCK pthread_mutex_lock(&mylock)
432# define UNLOCK pthread_mutex_unlock(&mylock);
433#else
434# define LOCK ((void) 0)
435# define UNLOCK ((void) 0)
436#endif
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000437
Eric Andersen9615a082004-07-15 12:53:49 +0000438static FILE *pwf /*= NULL*/;
439void setpwent(void)
440{
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000441 LOCK;
Eric Andersen9615a082004-07-15 12:53:49 +0000442 if (pwf) {
443 rewind(pwf);
444 }
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000445 UNLOCK;
Eric Andersen9615a082004-07-15 12:53:49 +0000446}
447
448void endpwent(void)
449{
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000450 LOCK;
Eric Andersen9615a082004-07-15 12:53:49 +0000451 if (pwf) {
452 fclose(pwf);
453 pwf = NULL;
454 }
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000455 UNLOCK;
Eric Andersen9615a082004-07-15 12:53:49 +0000456}
457
458
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000459int getpwent_r(struct passwd *__restrict resultbuf,
Eric Andersen9615a082004-07-15 12:53:49 +0000460 char *__restrict buffer, size_t buflen,
461 struct passwd **__restrict result)
462{
463 int rv;
464
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000465 LOCK;
Eric Andersen9615a082004-07-15 12:53:49 +0000466 *result = NULL; /* In case of error... */
467
468 if (!pwf) {
Denis Vlasenko5415c852008-07-21 23:05:26 +0000469 pwf = fopen_for_read(_PATH_PASSWD);
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000470 if (!pwf) {
Eric Andersen9615a082004-07-15 12:53:49 +0000471 rv = errno;
472 goto ERR;
473 }
474 }
475
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000476 rv = bb__pgsreader(bb__parsepwent, resultbuf, buffer, buflen, pwf);
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000477 if (!rv) {
Eric Andersen9615a082004-07-15 12:53:49 +0000478 *result = resultbuf;
479 }
480
481 ERR:
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000482 UNLOCK;
Eric Andersen9615a082004-07-15 12:53:49 +0000483 return rv;
484}
485
Eric Andersen9615a082004-07-15 12:53:49 +0000486static FILE *grf /*= NULL*/;
487void setgrent(void)
488{
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000489 LOCK;
Eric Andersen9615a082004-07-15 12:53:49 +0000490 if (grf) {
491 rewind(grf);
492 }
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000493 UNLOCK;
Eric Andersen9615a082004-07-15 12:53:49 +0000494}
495
496void endgrent(void)
497{
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000498 LOCK;
Eric Andersen9615a082004-07-15 12:53:49 +0000499 if (grf) {
500 fclose(grf);
501 grf = NULL;
502 }
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000503 UNLOCK;
Eric Andersen9615a082004-07-15 12:53:49 +0000504}
505
506int getgrent_r(struct group *__restrict resultbuf,
507 char *__restrict buffer, size_t buflen,
508 struct group **__restrict result)
509{
510 int rv;
511
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000512 LOCK;
Eric Andersen9615a082004-07-15 12:53:49 +0000513 *result = NULL; /* In case of error... */
514
515 if (!grf) {
Denis Vlasenko5415c852008-07-21 23:05:26 +0000516 grf = fopen_for_read(_PATH_GROUP);
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000517 if (!grf) {
Eric Andersen9615a082004-07-15 12:53:49 +0000518 rv = errno;
519 goto ERR;
520 }
521 }
522
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000523 rv = bb__pgsreader(bb__parsegrent, resultbuf, buffer, buflen, grf);
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000524 if (!rv) {
Eric Andersen9615a082004-07-15 12:53:49 +0000525 *result = resultbuf;
526 }
527
528 ERR:
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000529 UNLOCK;
Eric Andersen9615a082004-07-15 12:53:49 +0000530 return rv;
531}
532
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000533#if ENABLE_USE_BB_SHADOW
Eric Andersen9615a082004-07-15 12:53:49 +0000534static FILE *spf /*= NULL*/;
535void setspent(void)
536{
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000537 LOCK;
Eric Andersen9615a082004-07-15 12:53:49 +0000538 if (spf) {
539 rewind(spf);
540 }
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000541 UNLOCK;
Eric Andersen9615a082004-07-15 12:53:49 +0000542}
543
544void endspent(void)
545{
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000546 LOCK;
Eric Andersen9615a082004-07-15 12:53:49 +0000547 if (spf) {
548 fclose(spf);
549 spf = NULL;
550 }
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000551 UNLOCK;
Eric Andersen9615a082004-07-15 12:53:49 +0000552}
553
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000554int getspent_r(struct spwd *resultbuf, char *buffer,
Eric Andersen9615a082004-07-15 12:53:49 +0000555 size_t buflen, struct spwd **result)
556{
557 int rv;
558
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000559 LOCK;
Eric Andersen9615a082004-07-15 12:53:49 +0000560 *result = NULL; /* In case of error... */
561
562 if (!spf) {
Denis Vlasenko5415c852008-07-21 23:05:26 +0000563 spf = fopen_for_read(_PATH_SHADOW);
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000564 if (!spf) {
Eric Andersen9615a082004-07-15 12:53:49 +0000565 rv = errno;
566 goto ERR;
567 }
568 }
569
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000570 rv = bb__pgsreader(bb__parsespent, resultbuf, buffer, buflen, spf);
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000571 if (!rv) {
Eric Andersen9615a082004-07-15 12:53:49 +0000572 *result = resultbuf;
573 }
574
575 ERR:
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000576 UNLOCK;
Eric Andersen9615a082004-07-15 12:53:49 +0000577 return rv;
578}
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000579#endif
Eric Andersen9615a082004-07-15 12:53:49 +0000580
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000581#if 0
Eric Andersen9615a082004-07-15 12:53:49 +0000582struct passwd *getpwent(void)
583{
584 static char line_buff[PWD_BUFFER_SIZE];
585 static struct passwd pwd;
586 struct passwd *result;
587
588 getpwent_r(&pwd, line_buff, sizeof(line_buff), &result);
589 return result;
590}
591
Eric Andersen9615a082004-07-15 12:53:49 +0000592struct group *getgrent(void)
593{
594 static char line_buff[GRP_BUFFER_SIZE];
595 static struct group gr;
596 struct group *result;
597
598 getgrent_r(&gr, line_buff, sizeof(line_buff), &result);
599 return result;
600}
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000601#endif
Eric Andersen9615a082004-07-15 12:53:49 +0000602
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000603#if 0 //ENABLE_USE_BB_SHADOW
Eric Andersen9615a082004-07-15 12:53:49 +0000604struct spwd *getspent(void)
605{
606 static char line_buff[PWD_BUFFER_SIZE];
607 static struct spwd spwd;
608 struct spwd *result;
609
610 getspent_r(&spwd, line_buff, sizeof(line_buff), &result);
611 return result;
612}
613
Eric Andersen9615a082004-07-15 12:53:49 +0000614struct spwd *sgetspent(const char *string)
615{
616 static char line_buff[PWD_BUFFER_SIZE];
617 static struct spwd spwd;
618 struct spwd *result;
619
620 sgetspent_r(string, &spwd, line_buff, sizeof(line_buff), &result);
621 return result;
622}
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000623#endif
Eric Andersen9615a082004-07-15 12:53:49 +0000624
Denis Vlasenko22284262008-09-18 00:56:24 +0000625static gid_t *getgrouplist_internal(int *ngroups_ptr, const char *user, gid_t gid)
Eric Andersen9615a082004-07-15 12:53:49 +0000626{
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000627 FILE *grfile;
Eric Andersen9615a082004-07-15 12:53:49 +0000628 gid_t *group_list;
Denis Vlasenko22284262008-09-18 00:56:24 +0000629 int ngroups;
Eric Andersen9615a082004-07-15 12:53:49 +0000630 struct group group;
631 char buff[PWD_BUFFER_SIZE];
632
Denis Vlasenko22284262008-09-18 00:56:24 +0000633 /* We alloc space for 8 gids at a time. */
634 group_list = xmalloc(8 * sizeof(group_list[0]));
635 group_list[0] = gid;
636 ngroups = 1;
637
Denis Vlasenko5415c852008-07-21 23:05:26 +0000638 grfile = fopen_for_read(_PATH_GROUP);
Denis Vlasenko22284262008-09-18 00:56:24 +0000639 if (grfile) {
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000640 while (!bb__pgsreader(bb__parsegrent, &group, buff, sizeof(buff), grfile)) {
Denis Vlasenko22284262008-09-18 00:56:24 +0000641 char **m;
Eric Andersen9615a082004-07-15 12:53:49 +0000642 assert(group.gr_mem); /* Must have at least a NULL terminator. */
Denis Vlasenko22284262008-09-18 00:56:24 +0000643 if (group.gr_gid == gid)
644 continue;
645 for (m = group.gr_mem; *m; m++) {
646 if (strcmp(*m, user) != 0)
647 continue;
648 group_list = xrealloc_vector(group_list, 3, ngroups);
649 group_list[ngroups++] = group.gr_gid;
650 break;
Eric Andersen9615a082004-07-15 12:53:49 +0000651 }
652 }
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +0000653 fclose(grfile);
Eric Andersen9615a082004-07-15 12:53:49 +0000654 }
Denis Vlasenko22284262008-09-18 00:56:24 +0000655 *ngroups_ptr = ngroups;
656 return group_list;
657}
Eric Andersen9615a082004-07-15 12:53:49 +0000658
Denis Vlasenko22284262008-09-18 00:56:24 +0000659int initgroups(const char *user, gid_t gid)
660{
661 int ngroups;
662 gid_t *group_list = getgrouplist_internal(&ngroups, user, gid);
663
Denis Vlasenko22284262008-09-18 00:56:24 +0000664 ngroups = setgroups(ngroups, group_list);
665 free(group_list);
666 return ngroups;
667}
668
Denis Vlasenko22284262008-09-18 00:56:24 +0000669int getgrouplist(const char *user, gid_t gid, gid_t *groups, int *ngroups)
670{
671 int ngroups_old = *ngroups;
672 gid_t *group_list = getgrouplist_internal(ngroups, user, gid);
673
674 if (*ngroups <= ngroups_old) {
675 ngroups_old = *ngroups;
676 memcpy(groups, group_list, ngroups_old * sizeof(groups[0]));
677 } else {
678 ngroups_old = -1;
679 }
680 free(group_list);
681 return ngroups_old;
Eric Andersen9615a082004-07-15 12:53:49 +0000682}
683
Eric Andersen9615a082004-07-15 12:53:49 +0000684int putpwent(const struct passwd *__restrict p, FILE *__restrict f)
685{
686 int rv = -1;
687
688 if (!p || !f) {
Denis Vlasenko92305822008-03-20 15:12:58 +0000689 errno = EINVAL;
Eric Andersen9615a082004-07-15 12:53:49 +0000690 } else {
691 /* No extra thread locking is needed above what fprintf does. */
692 if (fprintf(f, "%s:%s:%lu:%lu:%s:%s:%s\n",
693 p->pw_name, p->pw_passwd,
694 (unsigned long)(p->pw_uid),
695 (unsigned long)(p->pw_gid),
696 p->pw_gecos, p->pw_dir, p->pw_shell) >= 0
697 ) {
698 rv = 0;
699 }
700 }
701
702 return rv;
703}
704
Eric Andersen9615a082004-07-15 12:53:49 +0000705int putgrent(const struct group *__restrict p, FILE *__restrict f)
706{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000707 static const char format[] ALIGN1 = ",%s";
708
Eric Andersen9615a082004-07-15 12:53:49 +0000709 char **m;
710 const char *fmt;
711 int rv = -1;
712
713 if (!p || !f) { /* Sigh... glibc checks. */
Denis Vlasenko92305822008-03-20 15:12:58 +0000714 errno = EINVAL;
Eric Andersen9615a082004-07-15 12:53:49 +0000715 } else {
716 if (fprintf(f, "%s:%s:%lu:",
717 p->gr_name, p->gr_passwd,
718 (unsigned long)(p->gr_gid)) >= 0
719 ) {
720
721 fmt = format + 1;
722
723 assert(p->gr_mem);
724 m = p->gr_mem;
725
726 do {
727 if (!*m) {
Rob Landley25413bf2005-10-08 02:23:22 +0000728 if (fputc('\n', f) >= 0) {
Eric Andersen9615a082004-07-15 12:53:49 +0000729 rv = 0;
730 }
731 break;
732 }
733 if (fprintf(f, fmt, *m) < 0) {
734 break;
735 }
736 ++m;
737 fmt = format;
738 } while (1);
739
740 }
741
742 }
743
744 return rv;
745}
746
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000747#if ENABLE_USE_BB_SHADOW
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000748static const unsigned char _sp_off[] ALIGN1 = {
749 offsetof(struct spwd, sp_lstchg), /* 2 - not a char ptr */
750 offsetof(struct spwd, sp_min), /* 3 - not a char ptr */
751 offsetof(struct spwd, sp_max), /* 4 - not a char ptr */
752 offsetof(struct spwd, sp_warn), /* 5 - not a char ptr */
753 offsetof(struct spwd, sp_inact), /* 6 - not a char ptr */
754 offsetof(struct spwd, sp_expire) /* 7 - not a char ptr */
Eric Andersen9615a082004-07-15 12:53:49 +0000755};
756
757int putspent(const struct spwd *p, FILE *stream)
758{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000759 static const char ld_format[] ALIGN1 = "%ld:";
760
Eric Andersen9615a082004-07-15 12:53:49 +0000761 const char *f;
Denis Vlasenko87468852007-04-13 23:22:00 +0000762 long x;
Eric Andersen9615a082004-07-15 12:53:49 +0000763 int i;
764 int rv = -1;
765
766 /* Unlike putpwent and putgrent, glibc does not check the args. */
767 if (fprintf(stream, "%s:%s:", p->sp_namp,
768 (p->sp_pwdp ? p->sp_pwdp : "")) < 0
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000769 ) {
Eric Andersen9615a082004-07-15 12:53:49 +0000770 goto DO_UNLOCK;
771 }
772
Denis Vlasenkob71c6682007-07-21 15:08:09 +0000773 for (i = 0; i < sizeof(_sp_off); i++) {
Eric Andersen9615a082004-07-15 12:53:49 +0000774 f = ld_format;
Denis Vlasenko87468852007-04-13 23:22:00 +0000775 x = *(const long *)(((const char *) p) + _sp_off[i]);
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000776 if (x == -1) {
Eric Andersen9615a082004-07-15 12:53:49 +0000777 f += 3;
778 }
779 if (fprintf(stream, f, x) < 0) {
780 goto DO_UNLOCK;
781 }
782 }
783
784 if ((p->sp_flag != ~0UL) && (fprintf(stream, "%lu", p->sp_flag) < 0)) {
785 goto DO_UNLOCK;
786 }
787
Rob Landley25413bf2005-10-08 02:23:22 +0000788 if (fputc('\n', stream) > 0) {
Eric Andersen9615a082004-07-15 12:53:49 +0000789 rv = 0;
790 }
791
792DO_UNLOCK:
793 return rv;
794}
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000795#endif
Eric Andersen9615a082004-07-15 12:53:49 +0000796
Eric Andersen9615a082004-07-15 12:53:49 +0000797/**********************************************************************/
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000798/* Internal uClibc functions. */
Eric Andersen9615a082004-07-15 12:53:49 +0000799/**********************************************************************/
Eric Andersen9615a082004-07-15 12:53:49 +0000800
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000801static const unsigned char pw_off[] ALIGN1 = {
802 offsetof(struct passwd, pw_name), /* 0 */
803 offsetof(struct passwd, pw_passwd), /* 1 */
804 offsetof(struct passwd, pw_uid), /* 2 - not a char ptr */
805 offsetof(struct passwd, pw_gid), /* 3 - not a char ptr */
806 offsetof(struct passwd, pw_gecos), /* 4 */
807 offsetof(struct passwd, pw_dir), /* 5 */
808 offsetof(struct passwd, pw_shell) /* 6 */
Eric Andersen9615a082004-07-15 12:53:49 +0000809};
810
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000811static int bb__parsepwent(void *data, char *line)
Eric Andersen9615a082004-07-15 12:53:49 +0000812{
813 char *endptr;
814 char *p;
815 int i;
816
817 i = 0;
818 do {
Denys Vlasenko1f27ab02009-09-23 17:17:53 +0200819 p = (char *) data + pw_off[i];
Eric Andersen9615a082004-07-15 12:53:49 +0000820
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000821 if ((i & 6) ^ 2) { /* i!=2 and i!=3 */
Eric Andersen9615a082004-07-15 12:53:49 +0000822 *((char **) p) = line;
823 if (i==6) {
824 return 0;
825 }
826 /* NOTE: glibc difference - glibc allows omission of
827 * ':' seperators after the gid field if all remaining
828 * entries are empty. We require all separators. */
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000829 line = strchr(line, ':');
830 if (!line) {
Eric Andersen9615a082004-07-15 12:53:49 +0000831 break;
832 }
833 } else {
834 unsigned long t = strtoul(line, &endptr, 10);
835 /* Make sure we had at least one digit, and that the
836 * failing char is the next field seperator ':'. See
837 * glibc difference note above. */
838 /* TODO: Also check for leading whitespace? */
839 if ((endptr == line) || (*endptr != ':')) {
840 break;
841 }
842 line = endptr;
843 if (i & 1) { /* i == 3 -- gid */
844 *((gid_t *) p) = t;
845 } else { /* i == 2 -- uid */
846 *((uid_t *) p) = t;
847 }
848 }
849
850 *line++ = 0;
851 ++i;
852 } while (1);
853
854 return -1;
855}
856
Eric Andersen9615a082004-07-15 12:53:49 +0000857/**********************************************************************/
Eric Andersen9615a082004-07-15 12:53:49 +0000858
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000859static const unsigned char gr_off[] ALIGN1 = {
860 offsetof(struct group, gr_name), /* 0 */
861 offsetof(struct group, gr_passwd), /* 1 */
862 offsetof(struct group, gr_gid) /* 2 - not a char ptr */
Eric Andersen9615a082004-07-15 12:53:49 +0000863};
864
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000865static int bb__parsegrent(void *data, char *line)
Eric Andersen9615a082004-07-15 12:53:49 +0000866{
867 char *endptr;
868 char *p;
869 int i;
870 char **members;
871 char *end_of_buf;
872
873 end_of_buf = ((struct group *) data)->gr_name; /* Evil hack! */
874 i = 0;
875 do {
Denys Vlasenko1f27ab02009-09-23 17:17:53 +0200876 p = (char *) data + gr_off[i];
Eric Andersen9615a082004-07-15 12:53:49 +0000877
878 if (i < 2) {
879 *((char **) p) = line;
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000880 line = strchr(line, ':');
881 if (!line) {
Eric Andersen9615a082004-07-15 12:53:49 +0000882 break;
883 }
884 *line++ = 0;
885 ++i;
886 } else {
887 *((gid_t *) p) = strtoul(line, &endptr, 10);
888
889 /* NOTE: glibc difference - glibc allows omission of the
890 * trailing colon when there is no member list. We treat
891 * this as an error. */
892
893 /* Make sure we had at least one digit, and that the
894 * failing char is the next field seperator ':'. See
895 * glibc difference note above. */
896 if ((endptr == line) || (*endptr != ':')) {
897 break;
898 }
899
900 i = 1; /* Count terminating NULL ptr. */
901 p = endptr;
902
903 if (p[1]) { /* We have a member list to process. */
904 /* Overwrite the last ':' with a ',' before counting.
905 * This allows us to test for initial ',' and adds
906 * one ',' so that the ',' count equals the member
907 * count. */
908 *p = ',';
909 do {
910 /* NOTE: glibc difference - glibc allows and trims leading
911 * (but not trailing) space. We treat this as an error. */
912 /* NOTE: glibc difference - glibc allows consecutive and
913 * trailing commas, and ignores "empty string" users. We
914 * treat this as an error. */
915 if (*p == ',') {
916 ++i;
917 *p = 0; /* nul-terminate each member string. */
918 if (!*++p || (*p == ',') || isspace(*p)) {
919 goto ERR;
920 }
921 }
922 } while (*++p);
923 }
924
925 /* Now align (p+1), rounding up. */
926 /* Assumes sizeof(char **) is a power of 2. */
927 members = (char **)( (((intptr_t) p) + sizeof(char **))
928 & ~((intptr_t)(sizeof(char **) - 1)) );
929
930 if (((char *)(members + i)) > end_of_buf) { /* No space. */
931 break;
932 }
933
934 ((struct group *) data)->gr_mem = members;
935
936 if (--i) {
937 p = endptr; /* Pointing to char prior to first member. */
938 do {
939 *members++ = ++p;
940 if (!--i) break;
941 while (*++p) {}
942 } while (1);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000943 }
Eric Andersen9615a082004-07-15 12:53:49 +0000944 *members = NULL;
945
946 return 0;
947 }
948 } while (1);
949
950 ERR:
951 return -1;
952}
953
Eric Andersen9615a082004-07-15 12:53:49 +0000954/**********************************************************************/
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000955
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000956#if ENABLE_USE_BB_SHADOW
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000957static const unsigned char sp_off[] ALIGN1 = {
958 offsetof(struct spwd, sp_namp), /* 0 */
959 offsetof(struct spwd, sp_pwdp), /* 1 */
960 offsetof(struct spwd, sp_lstchg), /* 2 - not a char ptr */
961 offsetof(struct spwd, sp_min), /* 3 - not a char ptr */
962 offsetof(struct spwd, sp_max), /* 4 - not a char ptr */
963 offsetof(struct spwd, sp_warn), /* 5 - not a char ptr */
964 offsetof(struct spwd, sp_inact), /* 6 - not a char ptr */
965 offsetof(struct spwd, sp_expire), /* 7 - not a char ptr */
966 offsetof(struct spwd, sp_flag) /* 8 - not a char ptr */
Eric Andersen9615a082004-07-15 12:53:49 +0000967};
968
Denys Vlasenko1f27ab02009-09-23 17:17:53 +0200969static int bb__parsespent(void *data, char *line)
Eric Andersen9615a082004-07-15 12:53:49 +0000970{
971 char *endptr;
972 char *p;
973 int i;
974
975 i = 0;
Denys Vlasenko1f27ab02009-09-23 17:17:53 +0200976 while (1) {
977 p = (char *) data + sp_off[i];
Eric Andersen9615a082004-07-15 12:53:49 +0000978 if (i < 2) {
979 *((char **) p) = line;
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000980 line = strchr(line, ':');
981 if (!line) {
Eric Andersen9615a082004-07-15 12:53:49 +0000982 break;
983 }
984 } else {
Denys Vlasenko1f27ab02009-09-23 17:17:53 +0200985 *((long *) p) = strtoul(line, &endptr, 10);
Eric Andersen9615a082004-07-15 12:53:49 +0000986
987 if (endptr == line) {
Denys Vlasenko1f27ab02009-09-23 17:17:53 +0200988 *((long *) p) = (i != 8) ? -1L : (long)(~0UL);
Eric Andersen9615a082004-07-15 12:53:49 +0000989 }
990
991 line = endptr;
992
993 if (i == 8) {
994 if (!*endptr) {
995 return 0;
996 }
997 break;
998 }
999
1000 if (*endptr != ':') {
1001 break;
1002 }
1003
1004 }
1005
Denys Vlasenko1f27ab02009-09-23 17:17:53 +02001006 *line++ = '\0';
Eric Andersen9615a082004-07-15 12:53:49 +00001007 ++i;
Denys Vlasenko1f27ab02009-09-23 17:17:53 +02001008 }
Eric Andersen9615a082004-07-15 12:53:49 +00001009
1010 return EINVAL;
1011}
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +00001012#endif
Eric Andersen9615a082004-07-15 12:53:49 +00001013
Eric Andersen9615a082004-07-15 12:53:49 +00001014/**********************************************************************/
Eric Andersen9615a082004-07-15 12:53:49 +00001015
1016/* Reads until if EOF, or until if finds a line which fits in the buffer
1017 * and for which the parser function succeeds.
1018 *
1019 * Returns 0 on success and ENOENT for end-of-file (glibc concession).
1020 */
1021
Denis Vlasenkocb04ff52006-12-30 21:11:57 +00001022static int bb__pgsreader(int (*parserfunc)(void *d, char *line), void *data,
Eric Andersen9615a082004-07-15 12:53:49 +00001023 char *__restrict line_buff, size_t buflen, FILE *f)
1024{
1025 int line_len;
1026 int skip;
1027 int rv = ERANGE;
1028
1029 if (buflen < PWD_BUFFER_SIZE) {
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +00001030 errno = rv;
Eric Andersen9615a082004-07-15 12:53:49 +00001031 } else {
1032 skip = 0;
1033 do {
Rob Landley25413bf2005-10-08 02:23:22 +00001034 if (!fgets(line_buff, buflen, f)) {
1035 if (feof(f)) {
Eric Andersen9615a082004-07-15 12:53:49 +00001036 rv = ENOENT;
1037 }
1038 break;
1039 }
1040
1041 line_len = strlen(line_buff) - 1; /* strlen() must be > 0. */
1042 if (line_buff[line_len] == '\n') {
1043 line_buff[line_len] = 0;
1044 } else if (line_len + 2 == buflen) { /* line too long */
1045 ++skip;
1046 continue;
1047 }
1048
1049 if (skip) {
1050 --skip;
1051 continue;
1052 }
1053
1054 /* NOTE: glibc difference - glibc strips leading whitespace from
1055 * records. We do not allow leading whitespace. */
1056
1057 /* Skip empty lines, comment lines, and lines with leading
1058 * whitespace. */
1059 if (*line_buff && (*line_buff != '#') && !isspace(*line_buff)) {
Denis Vlasenkocb04ff52006-12-30 21:11:57 +00001060 if (parserfunc == bb__parsegrent) { /* Do evil group hack. */
Eric Andersen9615a082004-07-15 12:53:49 +00001061 /* The group entry parsing function needs to know where
1062 * the end of the buffer is so that it can construct the
1063 * group member ptr table. */
1064 ((struct group *) data)->gr_name = line_buff + buflen;
1065 }
1066
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +00001067 if (!parserfunc(data, line_buff)) {
Eric Andersen9615a082004-07-15 12:53:49 +00001068 rv = 0;
1069 break;
1070 }
1071 }
1072 } while (1);
1073
1074 }
1075
1076 return rv;
1077}