blob: d2915c9ee7adff1cfe54aa553061efce76fed23f [file] [log] [blame]
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +00001/* Copyright (C) 2003 Manuel Novoa III
2 *
3 * Licensed under GPL v2, or later. See file LICENSE in this tarball.
4 */
5
6/* Nov 6, 2003 Initial version.
7 *
8 * NOTE: This implementation is quite strict about requiring all
9 * field seperators. It also does not allow leading whitespace
10 * except when processing the numeric fields. glibc is more
11 * lenient. See the various glibc difference comments below.
12 *
13 * TODO:
Rob Landley06ec8cf2006-03-03 19:02:50 +000014 * Move to dynamic allocation of (currently statically allocated)
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +000015 * buffers; especially for the group-related functions since
16 * large group member lists will cause error returns.
17 *
18 */
19
20#include <features.h>
21#include <stdio.h>
22#include <stdlib.h>
23#include <stdint.h>
24#include <string.h>
25#include <stddef.h>
26#include <errno.h>
27#include <assert.h>
28#include <ctype.h>
29#include "busybox.h"
30#include "pwd_.h"
31#include "grp_.h"
32#include "shadow_.h"
33
34#ifndef _PATH_SHADOW
35#define _PATH_SHADOW "/etc/shadow"
36#endif
37#ifndef _PATH_PASSWD
38#define _PATH_PASSWD "/etc/passwd"
39#endif
40#ifndef _PATH_GROUP
41#define _PATH_GROUP "/etc/group"
42#endif
43
44/**********************************************************************/
Rob Landley06ec8cf2006-03-03 19:02:50 +000045/* Sizes for statically allocated buffers. */
Bernhard Reutner-Fischer30c7de02005-10-28 11:21:40 +000046
47/* If you change these values, also change _SC_GETPW_R_SIZE_MAX and
48 * _SC_GETGR_R_SIZE_MAX in libc/unistd/sysconf.c to match */
49#define PWD_BUFFER_SIZE 256
50#define GRP_BUFFER_SIZE 256
51
52/**********************************************************************/
53/* Prototypes for internal functions. */
54
55extern int __parsepwent(void *pw, char *line);
56extern int __parsegrent(void *gr, char *line);
57extern int __parsespent(void *sp, char *line);
58
59extern int __pgsreader(int (*__parserfunc)(void *d, char *line), void *data,
60 char *__restrict line_buff, size_t buflen, FILE *f);
61
62
63#ifndef GETXXKEY_R_FUNC
64#error GETXXKEY_R_FUNC is not defined!
65#endif
66/**********************************************************************/
67#ifdef GETXXKEY_R_FUNC
68
69int GETXXKEY_R_FUNC(DO_GETXXKEY_R_KEYTYPE key,
70 GETXXKEY_R_ENTTYPE *__restrict resultbuf,
71 char *__restrict buffer, size_t buflen,
72 GETXXKEY_R_ENTTYPE **__restrict result)
73{
74 FILE *stream;
75 int rv;
76
77 *result = NULL;
78
79 if (!(stream = fopen(DO_GETXXKEY_R_PATHNAME, "r"))) {
80 rv = errno;
81 } else {
82 do {
83 if (!(rv = __pgsreader(GETXXKEY_R_PARSER, resultbuf,
84 buffer, buflen, stream))
85 ) {
86 if (GETXXKEY_R_TEST(resultbuf)) { /* Found key? */
87 *result = resultbuf;
88 break;
89 }
90 } else {
91 if (rv == ENOENT) { /* end-of-file encountered. */
92 rv = 0;
93 }
94 break;
95 }
96 } while (1);
97 fclose(stream);
98 }
99
100 return rv;
101}
102
103#endif
104/**********************************************************************/
105#undef GETXXKEY_R_FUNC
106#undef GETXXKEY_R_PARSER
107#undef GETXXKEY_R_ENTTYPE
108#undef GETXXKEY_R_TEST
109#undef DO_GETXXKEY_R_KEYTYPE
110#undef DO_GETXXKEY_R_PATHNAME
111