-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnss.c
189 lines (160 loc) · 3.91 KB
/
nss.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
#define _GNU_SOURCE
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <shadow.h>
#include <nss.h>
#include <unistd.h>
#include <fcntl.h>
#include <dirent.h>
#include "tcb.h"
static __thread DIR *tcbdir = NULL;
int _nss_tcb_setspent(void)
{
if (!tcbdir) {
tcbdir = opendir(TCB_DIR);
if (!tcbdir)
return NSS_STATUS_UNAVAIL;
return 1;
}
rewinddir(tcbdir);
return 1;
}
int _nss_tcb_endspent(void)
{
if (tcbdir) {
closedir(tcbdir);
tcbdir = NULL;
}
return 1;
}
/******************************************************************************
IEEE Std 1003.1-2001 allows only the following characters to appear in group-
and usernames: letters, digits, underscores, periods, <at>-signs (@), and
dashes. The name may not start with a dash or an "@" sign. The "$" sign
is allowed at the end of usernames to allow typical Samba machine accounts.
******************************************************************************/
static int
is_valid_username (const char *un)
{
if (!un || !*un || un[0] == '-' || un[0] == '@' ||
/* curdir || parentdir */
!strcmp(un, ".") || !strcmp(un, ".."))
return 0;
do {
char c = *un++;
if (!((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') ||
(c >= '0' && c <= '9') || c == '-' || c == '.' ||
c == '@' || c == '_' || (!*un && c == '$')))
return 0;
} while (*un);
return 1;
}
static FILE *tcb_safe_open(const char *file, const char *name)
{
gid_t grplist[TCB_NGROUPS];
struct tcb_privs tp = { grplist, TCB_NGROUPS, -1, -1, 0 };
FILE *f;
int fd, saved_errno;
if (tcb_drop_priv_r(name, &tp))
return NULL;
fd = open(file, O_RDONLY | O_NOCTTY | O_NONBLOCK | O_NOFOLLOW);
saved_errno = errno;
if (fd >= 0 && tcb_is_suspect(fd)) {
close(fd);
fd = -1;
/* XXX: what would be the proper errno? */
saved_errno = ENOENT;
}
tcb_gain_priv_r(&tp);
errno = saved_errno;
if (fd < 0)
return 0;
f = fdopen(fd, "r");
if (!f)
close(fd);
return f;
}
int _nss_tcb_getspnam_r(const char *name, struct spwd *__result_buf,
char *__buffer, size_t __buflen, struct spwd **__result)
{
FILE *f;
char *file;
int retval, saved_errno;
/* Disallow potentially-malicious user names */
if (!is_valid_username(name)) {
errno = ENOENT;
return NSS_STATUS_NOTFOUND;
}
if (asprintf(&file, TCB_FMT, name) < 0)
return NSS_STATUS_TRYAGAIN;
f = tcb_safe_open(file, name);
free(file);
if (!f)
return errno == ENOENT ? NSS_STATUS_NOTFOUND : NSS_STATUS_UNAVAIL;
retval = fgetspent_r(f, __result_buf, __buffer, __buflen, __result);
saved_errno = errno;
fclose(f);
errno = saved_errno;
if (!retval)
return NSS_STATUS_SUCCESS;
switch (saved_errno) {
case 0:
return NSS_STATUS_SUCCESS;
case ENOENT:
return NSS_STATUS_NOTFOUND;
case ERANGE:
return NSS_STATUS_TRYAGAIN;
default:
return NSS_STATUS_UNAVAIL;
}
}
int _nss_tcb_getspent_r(struct spwd *__result_buf,
char *__buffer, size_t __buflen, struct spwd **__result)
{
struct dirent *result;
off_t currpos;
int retval, saved_errno;
if (!tcbdir) {
errno = ENOENT;
return NSS_STATUS_UNAVAIL;
}
do {
currpos = telldir(tcbdir);
saved_errno = errno;
errno = 0;
result = readdir(tcbdir);
if (!result && errno) {
closedir(tcbdir);
errno = saved_errno;
tcbdir = NULL;
return NSS_STATUS_UNAVAIL;
}
if (!result) {
closedir(tcbdir);
errno = ENOENT;
tcbdir = NULL;
return NSS_STATUS_NOTFOUND;
}
errno = saved_errno;
} while (!strcmp(result->d_name, ".") ||
!strcmp(result->d_name, "..") || result->d_name[0] == ':');
retval = _nss_tcb_getspnam_r(result->d_name, __result_buf, __buffer,
__buflen, __result);
switch (retval) {
case NSS_STATUS_SUCCESS:
return NSS_STATUS_SUCCESS;
case NSS_STATUS_TRYAGAIN:
saved_errno = errno;
seekdir(tcbdir, currpos);
errno = saved_errno;
return NSS_STATUS_TRYAGAIN;
default:
saved_errno = errno;
closedir(tcbdir);
errno = saved_errno;
tcbdir = NULL;
return retval;
}
}