]> andersk Git - nss_nonlocal.git/blame_incremental - nonlocal-passwd.c
Bug fixes and cleanups.
[nss_nonlocal.git] / nonlocal-passwd.c
... / ...
CommitLineData
1/*
2 * nonlocal-passwd.c
3 * passwd database for nss_nonlocal proxy.
4 *
5 * Copyright © 2007 Anders Kaseorg <andersk@mit.edu> and Tim Abbott
6 * <tabbott@mit.edu>
7 *
8 * Permission is hereby granted, free of charge, to any person
9 * obtaining a copy of this software and associated documentation
10 * files (the "Software"), to deal in the Software without
11 * restriction, including without limitation the rights to use, copy,
12 * modify, merge, publish, distribute, sublicense, and/or sell copies
13 * of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be
17 * included in all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
23 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
24 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
25 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 * SOFTWARE.
27 */
28
29
30#define _GNU_SOURCE
31#include <sys/types.h>
32#include <unistd.h>
33#include <stdlib.h>
34#include <stdint.h>
35#include <string.h>
36#include <dlfcn.h>
37#include <stdio.h>
38#include <syslog.h>
39#include <errno.h>
40#include <pwd.h>
41#include <grp.h>
42#include <nss.h>
43#include "nsswitch-internal.h"
44#include "nonlocal.h"
45
46#define MAGIC_LOCAL_PW_BUFLEN (sysconf(_SC_GETPW_R_SIZE_MAX) + 7)
47
48
49static service_user *
50nss_passwd_nonlocal_database(void)
51{
52 static service_user *nip = NULL;
53 if (nip == NULL)
54 __nss_database_lookup("passwd_nonlocal", NULL, "", &nip);
55
56 return nip;
57}
58
59
60enum nss_status
61check_nonlocal_uid(const char *user, uid_t uid, int *errnop)
62{
63 enum nss_status status = NSS_STATUS_SUCCESS;
64 struct passwd pwbuf;
65 struct passwd *pwbufp = &pwbuf;
66 int ret;
67 int old_errno = errno;
68 int buflen = MAGIC_LOCAL_PW_BUFLEN;
69 char *buf = malloc(buflen);
70 if (buf == NULL) {
71 *errnop = ENOMEM;
72 errno = old_errno;
73 return NSS_STATUS_TRYAGAIN;
74 }
75 errno = 0;
76 ret = getpwuid_r(uid, pwbufp, buf, buflen, &pwbufp);
77 if (ret != 0) {
78 *errnop = errno;
79 status = NSS_STATUS_TRYAGAIN;
80 } else if (pwbufp != NULL) {
81 syslog(LOG_ERR, "nss_nonlocal: possible spoofing attack: non-local user %s has same UID as local user %s!\n", user, pwbuf.pw_name);
82 status = NSS_STATUS_NOTFOUND;
83 }
84 free(buf);
85 errno = old_errno;
86 return status;
87}
88
89enum nss_status
90check_nonlocal_user(const char *user, int *errnop)
91{
92 enum nss_status status = NSS_STATUS_SUCCESS;
93 struct passwd pwbuf;
94 struct passwd *pwbufp = &pwbuf;
95 int ret;
96 int old_errno = errno;
97 int buflen = MAGIC_LOCAL_PW_BUFLEN;
98 char *buf = malloc(buflen);
99 if (buf == NULL) {
100 *errnop = ENOMEM;
101 errno = old_errno;
102 return NSS_STATUS_TRYAGAIN;
103 }
104 errno = 0;
105 ret = getpwnam_r(user, pwbufp, buf, buflen, &pwbufp);
106 if (ret != 0) {
107 *errnop = errno;
108 status = NSS_STATUS_TRYAGAIN;
109 } else if (pwbufp != NULL) {
110 status = NSS_STATUS_NOTFOUND;
111 }
112 free(buf);
113 errno = old_errno;
114 return status;
115}
116
117
118static service_user *pwent_nip = NULL;
119static void *pwent_fct_start;
120static union {
121 enum nss_status (*l)(struct passwd *pwd, char *buffer, size_t buflen,
122 int *errnop);
123 void *ptr;
124} pwent_fct;
125static const char *pwent_fct_name = "getpwent_r";
126
127enum nss_status
128_nss_nonlocal_setpwent(int stayopen)
129{
130 static const char *fct_name = "setpwent";
131 static void *fct_start = NULL;
132 enum nss_status status;
133 service_user *nip;
134 union {
135 enum nss_status (*l)(int stayopen);
136 void *ptr;
137 } fct;
138
139 nip = nss_passwd_nonlocal_database();
140 if (nip == NULL)
141 return NSS_STATUS_UNAVAIL;
142 if (fct_start == NULL)
143 fct_start = __nss_lookup_function(nip, fct_name);
144 fct.ptr = fct_start;
145 do {
146 if (fct.ptr == NULL)
147 status = NSS_STATUS_UNAVAIL;
148 else
149 status = DL_CALL_FCT(fct.l, (stayopen));
150 } while (__nss_next(&nip, fct_name, &fct.ptr, status, 0) == 0);
151 if (status != NSS_STATUS_SUCCESS)
152 return status;
153
154 pwent_nip = nip;
155 if (pwent_fct_start == NULL)
156 pwent_fct_start = __nss_lookup_function(nip, pwent_fct_name);
157 pwent_fct.ptr = pwent_fct_start;
158 return NSS_STATUS_SUCCESS;
159}
160
161enum nss_status
162_nss_nonlocal_endpwent(void)
163{
164 static const char *fct_name = "endpwent";
165 static void *fct_start = NULL;
166 enum nss_status status;
167 service_user *nip;
168 union {
169 enum nss_status (*l)(void);
170 void *ptr;
171 } fct;
172
173 pwent_nip = NULL;
174
175 nip = nss_passwd_nonlocal_database();
176 if (nip == NULL)
177 return NSS_STATUS_UNAVAIL;
178 if (fct_start == NULL)
179 fct_start = __nss_lookup_function(nip, fct_name);
180 fct.ptr = fct_start;
181 do {
182 if (fct.ptr == NULL)
183 status = NSS_STATUS_UNAVAIL;
184 else
185 status = DL_CALL_FCT(fct.l, ());
186 } while (__nss_next(&nip, fct_name, &fct.ptr, status, 0) == 0);
187 return status;
188}
189
190enum nss_status
191_nss_nonlocal_getpwent_r(struct passwd *pwd, char *buffer, size_t buflen,
192 int *errnop)
193{
194 enum nss_status status;
195 if (pwent_nip == NULL) {
196 status = _nss_nonlocal_setpwent(0);
197 if (status != NSS_STATUS_SUCCESS)
198 return status;
199 }
200 do {
201 if (pwent_fct.ptr == NULL)
202 status = NSS_STATUS_UNAVAIL;
203 else {
204 int nonlocal_errno;
205 do
206 status = DL_CALL_FCT(pwent_fct.l, (pwd, buffer, buflen, errnop));
207 while (status == NSS_STATUS_SUCCESS &&
208 check_nonlocal_uid(pwd->pw_name, pwd->pw_uid, &nonlocal_errno) != NSS_STATUS_SUCCESS);
209 }
210 if (status == NSS_STATUS_TRYAGAIN && *errnop == ERANGE)
211 return status;
212
213 if (status == NSS_STATUS_SUCCESS)
214 return NSS_STATUS_SUCCESS;
215 } while (__nss_next(&pwent_nip, pwent_fct_name, &pwent_fct.ptr, status, 0) == 0);
216
217 pwent_nip = NULL;
218 return NSS_STATUS_NOTFOUND;
219}
220
221
222enum nss_status
223_nss_nonlocal_getpwnam_r(const char *name, struct passwd *pwd,
224 char *buffer, size_t buflen, int *errnop)
225{
226 static const char *fct_name = "getpwnam_r";
227 static void *fct_start = NULL;
228 enum nss_status status;
229 service_user *nip;
230 union {
231 enum nss_status (*l)(const char *name, struct passwd *pwd,
232 char *buffer, size_t buflen, int *errnop);
233 void *ptr;
234 } fct;
235 int group_errno;
236
237 if (buflen == MAGIC_LOCAL_PW_BUFLEN)
238 return NSS_STATUS_UNAVAIL;
239
240 nip = nss_passwd_nonlocal_database();
241 if (nip == NULL)
242 return NSS_STATUS_UNAVAIL;
243 if (fct_start == NULL)
244 fct_start = __nss_lookup_function(nip, fct_name);
245 fct.ptr = fct_start;
246 do {
247 if (fct.ptr == NULL)
248 status = NSS_STATUS_UNAVAIL;
249 else
250 status = DL_CALL_FCT(fct.l, (name, pwd, buffer, buflen, errnop));
251 if (status == NSS_STATUS_TRYAGAIN && *errnop == ERANGE)
252 break;
253 } while (__nss_next(&nip, fct_name, &fct.ptr, status, 0) == 0);
254 if (status != NSS_STATUS_SUCCESS)
255 return status;
256
257 status = check_nonlocal_uid(name, pwd->pw_uid, errnop);
258 if (status != NSS_STATUS_SUCCESS)
259 return status;
260
261 if (check_nonlocal_gid(name, pwd->pw_gid, &group_errno) !=
262 NSS_STATUS_SUCCESS)
263 pwd->pw_gid = 65534 /* nogroup */;
264 return NSS_STATUS_SUCCESS;
265}
266
267enum nss_status
268_nss_nonlocal_getpwuid_r(uid_t uid, struct passwd *pwd,
269 char *buffer, size_t buflen, int *errnop)
270{
271 static const char *fct_name = "getpwuid_r";
272 static void *fct_start = NULL;
273 enum nss_status status;
274 service_user *nip;
275 union {
276 enum nss_status (*l)(uid_t uid, struct passwd *pwd,
277 char *buffer, size_t buflen, int *errnop);
278 void *ptr;
279 } fct;
280 int group_errno;
281
282 if (buflen == MAGIC_LOCAL_PW_BUFLEN)
283 return NSS_STATUS_UNAVAIL;
284
285 nip = nss_passwd_nonlocal_database();
286 if (nip == NULL)
287 return NSS_STATUS_UNAVAIL;
288 if (fct_start == NULL)
289 fct_start = __nss_lookup_function(nip, fct_name);
290 fct.ptr = fct_start;
291 do {
292 if (fct.ptr == NULL)
293 status = NSS_STATUS_UNAVAIL;
294 else
295 status = DL_CALL_FCT(fct.l, (uid, pwd, buffer, buflen, errnop));
296 if (status == NSS_STATUS_TRYAGAIN && *errnop == ERANGE)
297 break;
298 } while (__nss_next(&nip, fct_name, &fct.ptr, status, 0) == 0);
299 if (status != NSS_STATUS_SUCCESS)
300 return status;
301
302 status = check_nonlocal_uid(pwd->pw_name, pwd->pw_uid, errnop);
303 if (status != NSS_STATUS_SUCCESS)
304 return status;
305
306 if (check_nonlocal_gid(pwd->pw_name, pwd->pw_gid, &group_errno) !=
307 NSS_STATUS_SUCCESS)
308 pwd->pw_gid = 65534 /* nogroup */;
309 return NSS_STATUS_SUCCESS;
310}
This page took 0.054381 seconds and 5 git commands to generate.