blob: 10debbcdb1281c13d8b4fb14c95c1afa4260021c [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Denys Vlasenko2ab94032017-10-05 15:33:28 +02002/*
3 * Copyright (C) 2014 Tito Ragusa <farmatito@tiscali.it>
Eric Andersen9615a082004-07-15 12:53:49 +00004 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02005 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersen9615a082004-07-15 12:53:49 +00006 */
Tito Ragusa1da09cf2015-01-02 21:37:59 +01007/* This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY!!
Eric Andersen9615a082004-07-15 12:53:49 +00009 *
Tito Ragusa1da09cf2015-01-02 21:37:59 +010010 * Rewrite of some parts. Main differences are:
Eric Andersen9615a082004-07-15 12:53:49 +000011 *
Tito Ragusa1da09cf2015-01-02 21:37:59 +010012 * 1) the buffer for getpwuid, getgrgid, getpwnam, getgrnam is dynamically
Denys Vlasenkoc5d4a042015-01-05 15:09:04 +010013 * allocated.
Tito Ragusa1da09cf2015-01-02 21:37:59 +010014 * If ENABLE_FEATURE_CLEAN_UP is set the buffers are freed at program
15 * exit using the atexit function to make valgrind happy.
16 * 2) the passwd/group files:
17 * a) must contain the expected number of fields (as per count of field
Denys Vlasenko10ad6222017-04-17 16:13:32 +020018 * delimiters ":") or we will complain with a error message.
Denys Vlasenkoc5d4a042015-01-05 15:09:04 +010019 * b) leading and trailing whitespace in fields is stripped.
Denys Vlasenkob5dabd92015-10-13 00:31:02 +020020 * c) some fields are not allowed to be empty (e.g. username, uid/gid),
21 * and in this case NULL is returned and errno is set to EINVAL.
22 * This behaviour could be easily changed by modifying PW_DEF, GR_DEF,
23 * SP_DEF strings (uppercase makes a field mandatory).
Tito Ragusa1da09cf2015-01-02 21:37:59 +010024 * d) the string representing uid/gid must be convertible by strtoXX
Denys Vlasenko31d67342015-01-03 15:15:47 +010025 * functions, or errno is set to EINVAL.
Denys Vlasenkoc5d4a042015-01-05 15:09:04 +010026 * e) leading and trailing whitespace in group member names is stripped.
Denys Vlasenko31d67342015-01-03 15:15:47 +010027 * 3) the internal function for getgrouplist uses dynamically allocated buffer.
28 * 4) at the moment only the functions really used by busybox code are
Tito Ragusa1da09cf2015-01-02 21:37:59 +010029 * implemented, if you need a particular missing function it should be
30 * easy to write it by using the internal common code.
Eric Andersen9615a082004-07-15 12:53:49 +000031 */
Rob Landleyea224be2006-06-18 20:20:07 +000032#include "libbb.h"
Bernhard Reutner-Fischerfa939aa2006-04-05 16:21:37 +000033
Denys Vlasenko8d547ac2015-01-03 15:54:04 +010034struct const_passdb {
35 const char *filename;
Denys Vlasenkoc5d4a042015-01-05 15:09:04 +010036 char def[7 + 2*ENABLE_USE_BB_SHADOW];
37 uint8_t off[7 + 2*ENABLE_USE_BB_SHADOW];
Denys Vlasenko8d547ac2015-01-03 15:54:04 +010038 uint8_t numfields;
Denys Vlasenko134c5302015-01-03 20:47:47 +010039 uint8_t size_of;
Denys Vlasenko8d547ac2015-01-03 15:54:04 +010040};
41struct passdb {
42 const char *filename;
Denys Vlasenkoc5d4a042015-01-05 15:09:04 +010043 char def[7 + 2*ENABLE_USE_BB_SHADOW];
44 uint8_t off[7 + 2*ENABLE_USE_BB_SHADOW];
Denys Vlasenko8d547ac2015-01-03 15:54:04 +010045 uint8_t numfields;
Denys Vlasenko134c5302015-01-03 20:47:47 +010046 uint8_t size_of;
Denys Vlasenko8d547ac2015-01-03 15:54:04 +010047 FILE *fp;
48 char *malloced;
Denys Vlasenko8d547ac2015-01-03 15:54:04 +010049};
Denys Vlasenko134c5302015-01-03 20:47:47 +010050/* Note: for shadow db, def[] will not contain terminating NUL,
Denys Vlasenko20c0a162015-01-03 19:12:49 +010051 * but convert_to_struct() logic detects def[] end by "less than SP?",
52 * not by "is it NUL?" condition; and off[0] happens to be zero
53 * for every db anyway, so there _is_ in fact a terminating NUL there.
54 */
Denys Vlasenko8d547ac2015-01-03 15:54:04 +010055
Denys Vlasenko31d67342015-01-03 15:15:47 +010056/* S = string not empty, s = string maybe empty,
57 * I = uid,gid, l = long maybe empty, m = members,
58 * r = reserved
59 */
Denys Vlasenko5de45022015-10-12 04:06:18 +020060#define PW_DEF "SsIIsss"
Tito Ragusa1da09cf2015-01-02 21:37:59 +010061#define GR_DEF "SsIm"
62#define SP_DEF "Ssllllllr"
Eric Andersen9615a082004-07-15 12:53:49 +000063
Denys Vlasenko8d547ac2015-01-03 15:54:04 +010064static const struct const_passdb const_pw_db = {
65 _PATH_PASSWD, PW_DEF,
66 {
67 offsetof(struct passwd, pw_name), /* 0 S */
68 offsetof(struct passwd, pw_passwd), /* 1 s */
69 offsetof(struct passwd, pw_uid), /* 2 I */
70 offsetof(struct passwd, pw_gid), /* 3 I */
71 offsetof(struct passwd, pw_gecos), /* 4 s */
Denys Vlasenkob5dabd92015-10-13 00:31:02 +020072 offsetof(struct passwd, pw_dir), /* 5 s */
73 offsetof(struct passwd, pw_shell) /* 6 s */
Denys Vlasenko8d547ac2015-01-03 15:54:04 +010074 },
Denys Vlasenko134c5302015-01-03 20:47:47 +010075 sizeof(PW_DEF)-1, sizeof(struct passwd)
Tito Ragusa1da09cf2015-01-02 21:37:59 +010076};
Denys Vlasenko8d547ac2015-01-03 15:54:04 +010077static const struct const_passdb const_gr_db = {
78 _PATH_GROUP, GR_DEF,
79 {
80 offsetof(struct group, gr_name), /* 0 S */
81 offsetof(struct group, gr_passwd), /* 1 s */
82 offsetof(struct group, gr_gid), /* 2 I */
83 offsetof(struct group, gr_mem) /* 3 m (char **) */
84 },
Denys Vlasenko134c5302015-01-03 20:47:47 +010085 sizeof(GR_DEF)-1, sizeof(struct group)
Tito Ragusa1da09cf2015-01-02 21:37:59 +010086};
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +000087#if ENABLE_USE_BB_SHADOW
Denys Vlasenko8d547ac2015-01-03 15:54:04 +010088static const struct const_passdb const_sp_db = {
89 _PATH_SHADOW, SP_DEF,
90 {
91 offsetof(struct spwd, sp_namp), /* 0 S Login name */
92 offsetof(struct spwd, sp_pwdp), /* 1 s Encrypted password */
93 offsetof(struct spwd, sp_lstchg), /* 2 l */
94 offsetof(struct spwd, sp_min), /* 3 l */
95 offsetof(struct spwd, sp_max), /* 4 l */
96 offsetof(struct spwd, sp_warn), /* 5 l */
97 offsetof(struct spwd, sp_inact), /* 6 l */
98 offsetof(struct spwd, sp_expire), /* 7 l */
99 offsetof(struct spwd, sp_flag) /* 8 r Reserved */
100 },
Denys Vlasenko134c5302015-01-03 20:47:47 +0100101 sizeof(SP_DEF)-1, sizeof(struct spwd)
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100102};
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000103#endif
104
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100105/* We avoid having big global data. */
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000106struct statics {
Denys Vlasenkoc5d4a042015-01-05 15:09:04 +0100107 /* We use same buffer (db[0].malloced) for getpwuid and getpwnam.
Denys Vlasenko31d67342015-01-03 15:15:47 +0100108 * Manpage says:
Denys Vlasenkoacdb0042012-01-06 16:24:56 +0100109 * "The return value may point to a static area, and may be overwritten
110 * by subsequent calls to getpwent(), getpwnam(), or getpwuid()."
111 */
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100112 struct passdb db[2 + ENABLE_USE_BB_SHADOW];
113 char *tokenize_end;
Denys Vlasenko134c5302015-01-03 20:47:47 +0100114 unsigned string_size;
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000115};
116
117static struct statics *ptr_to_statics;
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100118#define S (*ptr_to_statics)
119#define has_S (ptr_to_statics)
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000120
Denys Vlasenko9dca6ac2015-01-03 16:09:05 +0100121#if ENABLE_FEATURE_CLEAN_UP
122static void free_static(void)
123{
Denys Vlasenko6390a3a2015-10-13 01:51:37 +0200124 free(S.db[0].malloced);
Denys Vlasenko9dca6ac2015-01-03 16:09:05 +0100125 free(S.db[1].malloced);
126# if ENABLE_USE_BB_SHADOW
Denys Vlasenko20c0a162015-01-03 19:12:49 +0100127 free(S.db[2].malloced);
Denys Vlasenko9dca6ac2015-01-03 16:09:05 +0100128# endif
129 free(ptr_to_statics);
130}
131#endif
132
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000133static struct statics *get_S(void)
134{
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100135 if (!ptr_to_statics) {
136 ptr_to_statics = xzalloc(sizeof(S));
137 memcpy(&S.db[0], &const_pw_db, sizeof(const_pw_db));
138 memcpy(&S.db[1], &const_gr_db, sizeof(const_gr_db));
139#if ENABLE_USE_BB_SHADOW
140 memcpy(&S.db[2], &const_sp_db, sizeof(const_sp_db));
141#endif
Denys Vlasenko9dca6ac2015-01-03 16:09:05 +0100142#if ENABLE_FEATURE_CLEAN_UP
143 atexit(free_static);
144#endif
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100145 }
Denis Vlasenko2c91efb2007-06-18 10:08:27 +0000146 return ptr_to_statics;
147}
148
Denys Vlasenko31d67342015-01-03 15:15:47 +0100149/* Internal functions */
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100150
151/* Divide the passwd/group/shadow record in fields
Denys Vlasenko10ad6222017-04-17 16:13:32 +0200152 * by substituting the given delimiter
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100153 * e.g. ':' or ',' with '\0'.
Denys Vlasenko31d67342015-01-03 15:15:47 +0100154 * Returns the number of fields found.
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100155 * Strips leading and trailing whitespace in fields.
Eric Andersen9615a082004-07-15 12:53:49 +0000156 */
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100157static int tokenize(char *buffer, int ch)
Eric Andersen9615a082004-07-15 12:53:49 +0000158{
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100159 char *p = buffer;
160 char *s = p;
161 int num_fields = 0;
Eric Andersen9615a082004-07-15 12:53:49 +0000162
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100163 for (;;) {
164 if (isblank(*s)) {
165 overlapping_strcpy(s, skip_whitespace(s));
Eric Andersen9615a082004-07-15 12:53:49 +0000166 }
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100167 if (*p == ch || *p == '\0') {
168 char *end = p;
169 while (p != s && isblank(p[-1]))
170 p--;
171 if (p != end)
172 overlapping_strcpy(p, end);
173 num_fields++;
174 if (*end == '\0') {
175 S.tokenize_end = p + 1;
176 return num_fields;
177 }
178 *p = '\0';
179 s = p + 1;
180 }
181 p++;
Eric Andersen9615a082004-07-15 12:53:49 +0000182 }
Eric Andersen9615a082004-07-15 12:53:49 +0000183}
184
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100185/* Returns !NULL on success and matching line broken up in fields by '\0' in buf.
186 * We require the expected number of fields to be found.
187 */
Denys Vlasenko5acf1342015-01-04 02:02:39 +0100188static char *parse_common(FILE *fp, struct passdb *db,
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100189 const char *key, int field_pos)
190{
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100191 char *buf;
Eric Andersen9615a082004-07-15 12:53:49 +0000192
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100193 while ((buf = xmalloc_fgetline(fp)) != NULL) {
Denys Vlasenko0cdd6f52022-04-27 15:29:57 +0200194 int n;
195 char *field;
196
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100197 /* Skip empty lines, comment lines */
198 if (buf[0] == '\0' || buf[0] == '#')
199 goto free_and_next;
Denys Vlasenko5acf1342015-01-04 02:02:39 +0100200 if (tokenize(buf, ':') != db->numfields) {
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100201 /* number of fields is wrong */
Tito Ragusae5cae082015-01-06 01:22:36 +0100202 bb_error_msg("%s: bad record", db->filename);
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100203 goto free_and_next;
204 }
Eric Andersen9615a082004-07-15 12:53:49 +0000205
Denys Vlasenkoc5d4a042015-01-05 15:09:04 +0100206 if (field_pos == -1) {
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100207 /* no key specified: sequential read, return a record */
208 break;
209 }
Denys Vlasenko0cdd6f52022-04-27 15:29:57 +0200210 /* Can't use nth_string() here, it does not allow empty strings
211 * ("\0\0" terminates the list), and a valid passwd entry
212 * "user::UID:GID..." would be mishandled */
213 n = field_pos;
214 field = buf;
215 while (n) {
216 n--;
217 field += strlen(field) + 1;
218 }
219 if (strcmp(key, field) == 0) {
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100220 /* record found */
221 break;
222 }
223 free_and_next:
224 free(buf);
225 }
226
Denys Vlasenkof9936672015-01-03 21:03:39 +0100227 S.string_size = S.tokenize_end - buf;
228/*
229 * Ugly hack: group db requires additional buffer space
230 * for members[] array. If there is only one group, we need space
231 * for 3 pointers: alignment padding, group name, NULL.
232 * +1 for every additional group.
233 */
Denys Vlasenko5acf1342015-01-04 02:02:39 +0100234 if (buf && db->numfields == sizeof(GR_DEF)-1) { /* if we read group file... */
Denys Vlasenkof9936672015-01-03 21:03:39 +0100235 int cnt = 3;
236 char *p = buf;
237 while (p < S.tokenize_end)
238 if (*p++ == ',')
239 cnt++;
240 S.string_size += cnt * sizeof(char*);
241//bb_error_msg("+%d words = %u key:%s buf:'%s'", cnt, S.string_size, key, buf);
242 buf = xrealloc(buf, S.string_size);
243 }
244
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100245 return buf;
246}
247
Denys Vlasenko5acf1342015-01-04 02:02:39 +0100248static char *parse_file(struct passdb *db,
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100249 const char *key, int field_pos)
250{
251 char *buf = NULL;
Denys Vlasenko5acf1342015-01-04 02:02:39 +0100252 FILE *fp = fopen_for_read(db->filename);
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100253
254 if (fp) {
Denys Vlasenko5acf1342015-01-04 02:02:39 +0100255 buf = parse_common(fp, db, key, field_pos);
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100256 fclose(fp);
257 }
258 return buf;
259}
260
261/* Convert passwd/group/shadow file record in buffer to a struct */
Denys Vlasenko8d547ac2015-01-03 15:54:04 +0100262static void *convert_to_struct(struct passdb *db,
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100263 char *buffer, void *result)
264{
Denys Vlasenko8d547ac2015-01-03 15:54:04 +0100265 const char *def = db->def;
266 const uint8_t *off = db->off;
267
Denys Vlasenko134c5302015-01-03 20:47:47 +0100268 /* For consistency, zero out all fields */
269 memset(result, 0, db->size_of);
Denys Vlasenko8d547ac2015-01-03 15:54:04 +0100270
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100271 for (;;) {
272 void *member = (char*)result + (*off++);
273
274 if ((*def | 0x20) == 's') { /* s or S */
275 *(char **)member = (char*)buffer;
276 if (!buffer[0] && (*def == 'S')) {
277 errno = EINVAL;
278 }
279 }
280 if (*def == 'I') {
281 *(int *)member = bb_strtou(buffer, NULL, 10);
282 }
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000283#if ENABLE_USE_BB_SHADOW
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100284 if (*def == 'l') {
285 long n = -1;
286 if (buffer[0])
287 n = bb_strtol(buffer, NULL, 10);
288 *(long *)member = n;
289 }
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000290#endif
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100291 if (*def == 'm') {
292 char **members;
293 int i = tokenize(buffer, ',');
Eric Andersen9615a082004-07-15 12:53:49 +0000294
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100295 /* Store members[] after buffer's end.
296 * This is safe ONLY because there is a hack
297 * in parse_common() which allocates additional space
298 * at the end of malloced buffer!
299 */
300 members = (char **)
Denys Vlasenko20c0a162015-01-03 19:12:49 +0100301 ( ((intptr_t)S.tokenize_end + sizeof(members[0]))
302 & -(intptr_t)sizeof(members[0])
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100303 );
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100304 ((struct group *)result)->gr_mem = members;
305 while (--i >= 0) {
Denys Vlasenko12fc8692015-01-03 21:16:18 +0100306 if (buffer[0]) {
307 *members++ = buffer;
308 // bb_error_msg("member[]='%s'", buffer);
309 }
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100310 buffer += strlen(buffer) + 1;
311 }
312 *members = NULL;
313 }
314 /* def "r" does nothing */
Eric Andersen9615a082004-07-15 12:53:49 +0000315
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100316 def++;
Denys Vlasenko134c5302015-01-03 20:47:47 +0100317 if ((unsigned char)*def <= (unsigned char)' ')
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100318 break;
319 buffer += strlen(buffer) + 1;
Eric Andersen9615a082004-07-15 12:53:49 +0000320 }
321
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100322 if (errno)
323 result = NULL;
324 return result;
Eric Andersen9615a082004-07-15 12:53:49 +0000325}
326
Denys Vlasenkodb4d1052015-01-04 02:34:52 +0100327static int massage_data_for_r_func(struct passdb *db,
Denys Vlasenko8d547ac2015-01-03 15:54:04 +0100328 char *buffer, size_t buflen,
Denys Vlasenkodb4d1052015-01-04 02:34:52 +0100329 void **result,
330 char *buf)
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100331{
Denys Vlasenkodb4d1052015-01-04 02:34:52 +0100332 void *result_buf = *result;
333 *result = NULL;
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100334 if (buf) {
Denys Vlasenkodb4d1052015-01-04 02:34:52 +0100335 if (S.string_size > buflen) {
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100336 errno = ERANGE;
337 } else {
Denys Vlasenkodb4d1052015-01-04 02:34:52 +0100338 memcpy(buffer, buf, S.string_size);
339 *result = convert_to_struct(db, buffer, result_buf);
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100340 }
341 free(buf);
342 }
343 /* "The reentrant functions return zero on success.
344 * In case of error, an error number is returned."
345 * NB: not finding the record is also a "success" here:
346 */
347 return errno;
348}
349
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100350static void* massage_data_for_non_r_func(struct passdb *db, char *buf)
351{
352 if (!buf)
353 return NULL;
354
355 free(db->malloced);
356 /* We enlarge buf and move string data up, freeing space
357 * for struct passwd/group/spwd at the beginning. This way,
358 * entire result of getXXnam is in a single malloced block.
359 * This enables easy creation of xmalloc_getpwnam() API.
360 */
361 db->malloced = buf = xrealloc(buf, db->size_of + S.string_size);
362 memmove(buf + db->size_of, buf, S.string_size);
363 return convert_to_struct(db, buf + db->size_of, buf);
364}
365
Denys Vlasenkodb4d1052015-01-04 02:34:52 +0100366/****** getXXnam/id_r */
367
368static int FAST_FUNC getXXnam_r(const char *name, uintptr_t db_and_field_pos,
369 char *buffer, size_t buflen,
370 void *result)
371{
372 char *buf;
373 struct passdb *db = &get_S()->db[db_and_field_pos >> 2];
374
375 buf = parse_file(db, name, 0 /*db_and_field_pos & 3*/);
376 /* "db_and_field_pos & 3" is commented out since so far we don't implement
377 * getXXXid_r() functions which would use that to pass 2 here */
378
379 return massage_data_for_r_func(db, buffer, buflen, result, buf);
380}
381
Denys Vlasenko8d547ac2015-01-03 15:54:04 +0100382int FAST_FUNC getpwnam_r(const char *name, struct passwd *struct_buf,
383 char *buffer, size_t buflen,
384 struct passwd **result)
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100385{
386 /* Why the "store buffer address in result" trick?
387 * This way, getXXnam_r has the same ABI signature as getpwnam_r,
Denys Vlasenko908b6e52015-01-02 22:31:07 +0100388 * hopefully compiler can optimize tail call better in this case.
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100389 */
390 *result = struct_buf;
391 return getXXnam_r(name, (0 << 2) + 0, buffer, buflen, result);
392}
393#if ENABLE_USE_BB_SHADOW
Denys Vlasenko908b6e52015-01-02 22:31:07 +0100394int FAST_FUNC getspnam_r(const char *name, struct spwd *struct_buf, char *buffer, size_t buflen,
Denys Vlasenko31d67342015-01-03 15:15:47 +0100395 struct spwd **result)
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100396{
397 *result = struct_buf;
398 return getXXnam_r(name, (2 << 2) + 0, buffer, buflen, result);
Eric Andersen9615a082004-07-15 12:53:49 +0000399}
Denis Vlasenko7fa0fca2006-12-28 21:33:30 +0000400#endif
Eric Andersen9615a082004-07-15 12:53:49 +0000401
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100402#ifdef UNUSED
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100403/****** getXXent_r */
404
Denys Vlasenkodb4d1052015-01-04 02:34:52 +0100405static int FAST_FUNC getXXent_r(uintptr_t db_idx, char *buffer, size_t buflen,
406 void *result)
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100407{
408 char *buf;
Denys Vlasenko5acf1342015-01-04 02:02:39 +0100409 struct passdb *db = &get_S()->db[db_idx];
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100410
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100411 if (!db->fp) {
412 db->fp = fopen_for_read(db->filename);
413 if (!db->fp) {
414 return errno;
415 }
416 close_on_exec_on(fileno(db->fp));
417 }
418
Denys Vlasenkoc5d4a042015-01-05 15:09:04 +0100419 buf = parse_common(db->fp, db, /*no search key:*/ NULL, -1);
420 if (!buf && !errno)
421 errno = ENOENT;
Denys Vlasenkodb4d1052015-01-04 02:34:52 +0100422 return massage_data_for_r_func(db, buffer, buflen, result, buf);
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100423}
424
Denys Vlasenkodb4d1052015-01-04 02:34:52 +0100425int FAST_FUNC getpwent_r(struct passwd *struct_buf, char *buffer, size_t buflen,
426 struct passwd **result)
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100427{
Denys Vlasenkodb4d1052015-01-04 02:34:52 +0100428 *result = struct_buf;
429 return getXXent_r(0, buffer, buflen, result);
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100430}
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100431#endif
432
433/****** getXXent */
434
435static void* FAST_FUNC getXXent(uintptr_t db_idx)
436{
437 char *buf;
438 struct passdb *db = &get_S()->db[db_idx];
439
440 if (!db->fp) {
441 db->fp = fopen_for_read(db->filename);
442 if (!db->fp) {
443 return NULL;
444 }
445 close_on_exec_on(fileno(db->fp));
446 }
447
448 buf = parse_common(db->fp, db, /*no search key:*/ NULL, -1);
449 return massage_data_for_non_r_func(db, buf);
450}
451
452struct passwd* FAST_FUNC getpwent(void)
453{
454 return getXXent(0);
455}
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100456
457/****** getXXnam/id */
458
Denys Vlasenko908b6e52015-01-02 22:31:07 +0100459static void* FAST_FUNC getXXnam(const char *name, unsigned db_and_field_pos)
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100460{
461 char *buf;
Denys Vlasenko5acf1342015-01-04 02:02:39 +0100462 struct passdb *db = &get_S()->db[db_and_field_pos >> 2];
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100463
Tito Ragusacb6a1122015-02-19 22:02:59 +0100464 buf = parse_file(db, name, db_and_field_pos & 3);
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100465 return massage_data_for_non_r_func(db, buf);
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100466}
467
Denys Vlasenko908b6e52015-01-02 22:31:07 +0100468struct passwd* FAST_FUNC getpwnam(const char *name)
Eric Andersen9615a082004-07-15 12:53:49 +0000469{
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100470 return getXXnam(name, (0 << 2) + 0);
Eric Andersen9615a082004-07-15 12:53:49 +0000471}
Denys Vlasenko908b6e52015-01-02 22:31:07 +0100472struct group* FAST_FUNC getgrnam(const char *name)
Eric Andersen9615a082004-07-15 12:53:49 +0000473{
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100474 return getXXnam(name, (1 << 2) + 0);
Eric Andersen9615a082004-07-15 12:53:49 +0000475}
Denys Vlasenko908b6e52015-01-02 22:31:07 +0100476struct passwd* FAST_FUNC getpwuid(uid_t id)
Eric Andersen9615a082004-07-15 12:53:49 +0000477{
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100478 return getXXnam(utoa(id), (0 << 2) + 2);
Eric Andersen9615a082004-07-15 12:53:49 +0000479}
Denys Vlasenko908b6e52015-01-02 22:31:07 +0100480struct group* FAST_FUNC getgrgid(gid_t id)
Eric Andersen9615a082004-07-15 12:53:49 +0000481{
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100482 return getXXnam(utoa(id), (1 << 2) + 2);
Eric Andersen9615a082004-07-15 12:53:49 +0000483}
484
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100485/****** end/setXXend */
486
Denys Vlasenko908b6e52015-01-02 22:31:07 +0100487void FAST_FUNC endpwent(void)
Eric Andersen9615a082004-07-15 12:53:49 +0000488{
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100489 if (has_S && S.db[0].fp) {
490 fclose(S.db[0].fp);
491 S.db[0].fp = NULL;
Eric Andersen9615a082004-07-15 12:53:49 +0000492 }
493}
Denys Vlasenko908b6e52015-01-02 22:31:07 +0100494void FAST_FUNC setpwent(void)
Eric Andersen9615a082004-07-15 12:53:49 +0000495{
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100496 if (has_S && S.db[0].fp) {
497 rewind(S.db[0].fp);
Eric Andersen9615a082004-07-15 12:53:49 +0000498 }
Eric Andersen9615a082004-07-15 12:53:49 +0000499}
Denys Vlasenko908b6e52015-01-02 22:31:07 +0100500void FAST_FUNC endgrent(void)
Eric Andersen9615a082004-07-15 12:53:49 +0000501{
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100502 if (has_S && S.db[1].fp) {
503 fclose(S.db[1].fp);
504 S.db[1].fp = NULL;
Eric Andersen9615a082004-07-15 12:53:49 +0000505 }
506}
507
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100508/****** initgroups and getgrouplist */
509
510static gid_t* FAST_FUNC getgrouplist_internal(int *ngroups_ptr,
511 const char *user, gid_t gid)
Eric Andersen9615a082004-07-15 12:53:49 +0000512{
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100513 FILE *fp;
Eric Andersen9615a082004-07-15 12:53:49 +0000514 gid_t *group_list;
Denis Vlasenko22284262008-09-18 00:56:24 +0000515 int ngroups;
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100516
Denis Vlasenko22284262008-09-18 00:56:24 +0000517 /* We alloc space for 8 gids at a time. */
Denys Vlasenko31d67342015-01-03 15:15:47 +0100518 group_list = xzalloc(8 * sizeof(group_list[0]));
Denis Vlasenko22284262008-09-18 00:56:24 +0000519 group_list[0] = gid;
520 ngroups = 1;
521
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100522 fp = fopen_for_read(_PATH_GROUP);
523 if (fp) {
Denys Vlasenko5acf1342015-01-04 02:02:39 +0100524 struct passdb *db = &get_S()->db[1];
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100525 char *buf;
Denys Vlasenkoc5d4a042015-01-05 15:09:04 +0100526 while ((buf = parse_common(fp, db, NULL, -1)) != NULL) {
Denis Vlasenko22284262008-09-18 00:56:24 +0000527 char **m;
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100528 struct group group;
Denys Vlasenko5acf1342015-01-04 02:02:39 +0100529 if (!convert_to_struct(db, buf, &group))
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100530 goto next;
Denis Vlasenko22284262008-09-18 00:56:24 +0000531 if (group.gr_gid == gid)
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100532 goto next;
Denis Vlasenko22284262008-09-18 00:56:24 +0000533 for (m = group.gr_mem; *m; m++) {
534 if (strcmp(*m, user) != 0)
535 continue;
Denys Vlasenko17fcd722010-03-31 12:37:43 +0200536 group_list = xrealloc_vector(group_list, /*8=2^3:*/ 3, ngroups);
Denis Vlasenko22284262008-09-18 00:56:24 +0000537 group_list[ngroups++] = group.gr_gid;
Denys Vlasenkoc5d4a042015-01-05 15:09:04 +0100538 goto next;
Eric Andersen9615a082004-07-15 12:53:49 +0000539 }
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100540 next:
541 free(buf);
Eric Andersen9615a082004-07-15 12:53:49 +0000542 }
Tito Ragusa1da09cf2015-01-02 21:37:59 +0100543 fclose(fp);
Eric Andersen9615a082004-07-15 12:53:49 +0000544 }
Denis Vlasenko22284262008-09-18 00:56:24 +0000545 *ngroups_ptr = ngroups;
546 return group_list;
547}
Eric Andersen9615a082004-07-15 12:53:49 +0000548
Denys Vlasenko908b6e52015-01-02 22:31:07 +0100549int FAST_FUNC initgroups(const char *user, gid_t gid)
Denis Vlasenko22284262008-09-18 00:56:24 +0000550{
551 int ngroups;
552 gid_t *group_list = getgrouplist_internal(&ngroups, user, gid);
553
Denis Vlasenko22284262008-09-18 00:56:24 +0000554 ngroups = setgroups(ngroups, group_list);
555 free(group_list);
556 return ngroups;
557}
558
Denys Vlasenko908b6e52015-01-02 22:31:07 +0100559int FAST_FUNC getgrouplist(const char *user, gid_t gid, gid_t *groups, int *ngroups)
Denis Vlasenko22284262008-09-18 00:56:24 +0000560{
561 int ngroups_old = *ngroups;
562 gid_t *group_list = getgrouplist_internal(ngroups, user, gid);
563
564 if (*ngroups <= ngroups_old) {
565 ngroups_old = *ngroups;
566 memcpy(groups, group_list, ngroups_old * sizeof(groups[0]));
567 } else {
568 ngroups_old = -1;
569 }
570 free(group_list);
571 return ngroups_old;
Eric Andersen9615a082004-07-15 12:53:49 +0000572}