* elf/tst-tls8.c (do_test): Use $ORIGIN in module names.
[glibc.git] / nscd / pwdcache.c
blob2daff79d78ea514774d4a25970b62e99ae513304
1 /* Cache handling for passwd lookup.
2 Copyright (C) 1998-2005, 2006 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License version 2 as
8 published by the Free Software Foundation.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software Foundation,
17 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19 #include <alloca.h>
20 #include <assert.h>
21 #include <errno.h>
22 #include <error.h>
23 #include <libintl.h>
24 #include <pwd.h>
25 #include <stdbool.h>
26 #include <stddef.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <time.h>
31 #include <unistd.h>
32 #include <sys/mman.h>
33 #include <sys/socket.h>
34 #include <stackinfo.h>
36 #include "nscd.h"
37 #include "dbg_log.h"
38 #ifdef HAVE_SENDFILE
39 # include <kernel-features.h>
40 #endif
42 /* This is the standard reply in case the service is disabled. */
43 static const pw_response_header disabled =
45 .version = NSCD_VERSION,
46 .found = -1,
47 .pw_name_len = 0,
48 .pw_passwd_len = 0,
49 .pw_uid = -1,
50 .pw_gid = -1,
51 .pw_gecos_len = 0,
52 .pw_dir_len = 0,
53 .pw_shell_len = 0
56 /* This is the struct describing how to write this record. */
57 const struct iovec pwd_iov_disabled =
59 .iov_base = (void *) &disabled,
60 .iov_len = sizeof (disabled)
64 /* This is the standard reply in case we haven't found the dataset. */
65 static const pw_response_header notfound =
67 .version = NSCD_VERSION,
68 .found = 0,
69 .pw_name_len = 0,
70 .pw_passwd_len = 0,
71 .pw_uid = -1,
72 .pw_gid = -1,
73 .pw_gecos_len = 0,
74 .pw_dir_len = 0,
75 .pw_shell_len = 0
79 static void
80 cache_addpw (struct database_dyn *db, int fd, request_header *req,
81 const void *key, struct passwd *pwd, uid_t owner,
82 struct hashentry *he, struct datahead *dh, int errval)
84 ssize_t total;
85 ssize_t written;
86 time_t t = time (NULL);
88 /* We allocate all data in one memory block: the iov vector,
89 the response header and the dataset itself. */
90 struct dataset
92 struct datahead head;
93 pw_response_header resp;
94 char strdata[0];
95 } *dataset;
97 assert (offsetof (struct dataset, resp) == offsetof (struct datahead, data));
99 if (pwd == NULL)
101 if (he != NULL && errval == EAGAIN)
103 /* If we have an old record available but cannot find one
104 now because the service is not available we keep the old
105 record and make sure it does not get removed. */
106 if (reload_count != UINT_MAX && dh->nreloads == reload_count)
107 /* Do not reset the value if we never not reload the record. */
108 dh->nreloads = reload_count - 1;
110 written = total = 0;
112 else
114 /* We have no data. This means we send the standard reply for this
115 case. */
116 written = total = sizeof (notfound);
118 if (fd != -1)
119 written = TEMP_FAILURE_RETRY (send (fd, &notfound, total,
120 MSG_NOSIGNAL));
122 dataset = mempool_alloc (db, sizeof (struct dataset) + req->key_len);
123 /* If we cannot permanently store the result, so be it. */
124 if (dataset != NULL)
126 dataset->head.allocsize = sizeof (struct dataset) + req->key_len;
127 dataset->head.recsize = total;
128 dataset->head.notfound = true;
129 dataset->head.nreloads = 0;
130 dataset->head.usable = true;
132 /* Compute the timeout time. */
133 dataset->head.timeout = t + db->negtimeout;
135 /* This is the reply. */
136 memcpy (&dataset->resp, &notfound, total);
138 /* Copy the key data. */
139 char *key_copy = memcpy (dataset->strdata, key, req->key_len);
141 /* If necessary, we also propagate the data to disk. */
142 if (db->persistent)
144 // XXX async OK?
145 uintptr_t pval = (uintptr_t) dataset & ~pagesize_m1;
146 msync ((void *) pval,
147 ((uintptr_t) dataset & pagesize_m1)
148 + sizeof (struct dataset) + req->key_len, MS_ASYNC);
151 /* Now get the lock to safely insert the records. */
152 pthread_rwlock_rdlock (&db->lock);
154 if (cache_add (req->type, key_copy, req->key_len,
155 &dataset->head, true, db, owner) < 0)
156 /* Ensure the data can be recovered. */
157 dataset->head.usable = false;
160 pthread_rwlock_unlock (&db->lock);
162 /* Mark the old entry as obsolete. */
163 if (dh != NULL)
164 dh->usable = false;
166 else
167 ++db->head->addfailed;
170 else
172 /* Determine the I/O structure. */
173 size_t pw_name_len = strlen (pwd->pw_name) + 1;
174 size_t pw_passwd_len = strlen (pwd->pw_passwd) + 1;
175 size_t pw_gecos_len = strlen (pwd->pw_gecos) + 1;
176 size_t pw_dir_len = strlen (pwd->pw_dir) + 1;
177 size_t pw_shell_len = strlen (pwd->pw_shell) + 1;
178 char *cp;
179 const size_t key_len = strlen (key);
180 const size_t buf_len = 3 * sizeof (pwd->pw_uid) + key_len + 1;
181 char *buf = alloca (buf_len);
182 ssize_t n;
184 /* We need this to insert the `byuid' entry. */
185 int key_offset;
186 n = snprintf (buf, buf_len, "%d%c%n%s", pwd->pw_uid, '\0',
187 &key_offset, (char *) key) + 1;
189 written = total = (sizeof (struct dataset) + pw_name_len + pw_passwd_len
190 + pw_gecos_len + pw_dir_len + pw_shell_len);
192 /* If we refill the cache, first assume the reconrd did not
193 change. Allocate memory on the cache since it is likely
194 discarded anyway. If it turns out to be necessary to have a
195 new record we can still allocate real memory. */
196 bool alloca_used = false;
197 dataset = NULL;
199 if (he == NULL)
201 dataset = (struct dataset *) mempool_alloc (db, total + n);
202 if (dataset == NULL)
203 ++db->head->addfailed;
206 if (dataset == NULL)
208 /* We cannot permanently add the result in the moment. But
209 we can provide the result as is. Store the data in some
210 temporary memory. */
211 dataset = (struct dataset *) alloca (total + n);
213 /* We cannot add this record to the permanent database. */
214 alloca_used = true;
217 dataset->head.allocsize = total + n;
218 dataset->head.recsize = total - offsetof (struct dataset, resp);
219 dataset->head.notfound = false;
220 dataset->head.nreloads = he == NULL ? 0 : (dh->nreloads + 1);
221 dataset->head.usable = true;
223 /* Compute the timeout time. */
224 dataset->head.timeout = t + db->postimeout;
226 dataset->resp.version = NSCD_VERSION;
227 dataset->resp.found = 1;
228 dataset->resp.pw_name_len = pw_name_len;
229 dataset->resp.pw_passwd_len = pw_passwd_len;
230 dataset->resp.pw_uid = pwd->pw_uid;
231 dataset->resp.pw_gid = pwd->pw_gid;
232 dataset->resp.pw_gecos_len = pw_gecos_len;
233 dataset->resp.pw_dir_len = pw_dir_len;
234 dataset->resp.pw_shell_len = pw_shell_len;
236 cp = dataset->strdata;
238 /* Copy the strings over into the buffer. */
239 cp = mempcpy (cp, pwd->pw_name, pw_name_len);
240 cp = mempcpy (cp, pwd->pw_passwd, pw_passwd_len);
241 cp = mempcpy (cp, pwd->pw_gecos, pw_gecos_len);
242 cp = mempcpy (cp, pwd->pw_dir, pw_dir_len);
243 cp = mempcpy (cp, pwd->pw_shell, pw_shell_len);
245 /* Finally the stringified UID value. */
246 memcpy (cp, buf, n);
247 char *key_copy = cp + key_offset;
248 assert (key_copy == (char *) rawmemchr (cp, '\0') + 1);
250 /* Now we can determine whether on refill we have to create a new
251 record or not. */
252 if (he != NULL)
254 assert (fd == -1);
256 if (total + n == dh->allocsize
257 && total - offsetof (struct dataset, resp) == dh->recsize
258 && memcmp (&dataset->resp, dh->data,
259 dh->allocsize - offsetof (struct dataset, resp)) == 0)
261 /* The data has not changed. We will just bump the
262 timeout value. Note that the new record has been
263 allocated on the stack and need not be freed. */
264 dh->timeout = dataset->head.timeout;
265 ++dh->nreloads;
267 else
269 /* We have to create a new record. Just allocate
270 appropriate memory and copy it. */
271 struct dataset *newp
272 = (struct dataset *) mempool_alloc (db, total + n);
273 if (newp != NULL)
275 /* Adjust pointer into the memory block. */
276 cp = (char *) newp + (cp - (char *) dataset);
278 dataset = memcpy (newp, dataset, total + n);
279 alloca_used = false;
282 /* Mark the old record as obsolete. */
283 dh->usable = false;
286 else
288 /* We write the dataset before inserting it to the database
289 since while inserting this thread might block and so would
290 unnecessarily let the receiver wait. */
291 assert (fd != -1);
293 #ifdef HAVE_SENDFILE
294 if (__builtin_expect (db->mmap_used, 1) && !alloca_used)
296 assert (db->wr_fd != -1);
297 assert ((char *) &dataset->resp > (char *) db->data);
298 assert ((char *) &dataset->resp - (char *) db->head
299 + total
300 <= (sizeof (struct database_pers_head)
301 + db->head->module * sizeof (ref_t)
302 + db->head->data_size));
303 written = sendfileall (fd, db->wr_fd,
304 (char *) &dataset->resp
305 - (char *) db->head, total);
306 # ifndef __ASSUME_SENDFILE
307 if (written == -1 && errno == ENOSYS)
308 goto use_write;
309 # endif
311 else
312 # ifndef __ASSUME_SENDFILE
313 use_write:
314 # endif
315 #endif
316 written = writeall (fd, &dataset->resp, total);
320 /* Add the record to the database. But only if it has not been
321 stored on the stack. */
322 if (! alloca_used)
324 /* If necessary, we also propagate the data to disk. */
325 if (db->persistent)
327 // XXX async OK?
328 uintptr_t pval = (uintptr_t) dataset & ~pagesize_m1;
329 msync ((void *) pval,
330 ((uintptr_t) dataset & pagesize_m1) + total + n,
331 MS_ASYNC);
334 /* Now get the lock to safely insert the records. */
335 pthread_rwlock_rdlock (&db->lock);
337 /* NB: in the following code we always must add the entry
338 marked with FIRST first. Otherwise we end up with
339 dangling "pointers" in case a latter hash entry cannot be
340 added. */
341 bool first = req->type == GETPWBYNAME;
343 /* If the request was by UID, add that entry first. */
344 if (req->type != GETPWBYNAME)
346 if (cache_add (GETPWBYUID, cp, key_offset, &dataset->head, true,
347 db, owner) < 0)
349 /* Could not allocate memory. Make sure the data gets
350 discarded. */
351 dataset->head.usable = false;
352 goto out;
355 /* If the key is different from the name add a separate entry. */
356 else if (strcmp (key_copy, dataset->strdata) != 0)
358 if (cache_add (GETPWBYNAME, key_copy, key_len + 1,
359 &dataset->head, first, db, owner) < 0)
361 /* Could not allocate memory. Make sure the data gets
362 discarded. */
363 dataset->head.usable = false;
364 goto out;
367 first = false;
370 /* We have to add the value for both, byname and byuid. */
371 if (__builtin_expect (cache_add (GETPWBYNAME, dataset->strdata,
372 pw_name_len, &dataset->head, first,
373 db, owner) == 0, 1))
375 if (req->type == GETPWBYNAME)
376 (void) cache_add (GETPWBYUID, cp, key_offset, &dataset->head,
377 req->type != GETPWBYNAME, db, owner);
379 else if (first)
380 /* Could not allocate memory. Make sure the data gets
381 discarded. */
382 dataset->head.usable = false;
384 out:
385 pthread_rwlock_unlock (&db->lock);
389 if (__builtin_expect (written != total, 0) && debug_level > 0)
391 char buf[256];
392 dbg_log (_("short write in %s: %s"), __FUNCTION__,
393 strerror_r (errno, buf, sizeof (buf)));
398 union keytype
400 void *v;
401 uid_t u;
405 static int
406 lookup (int type, union keytype key, struct passwd *resultbufp, char *buffer,
407 size_t buflen, struct passwd **pwd)
409 if (type == GETPWBYNAME)
410 return __getpwnam_r (key.v, resultbufp, buffer, buflen, pwd);
411 else
412 return __getpwuid_r (key.u, resultbufp, buffer, buflen, pwd);
416 static void
417 addpwbyX (struct database_dyn *db, int fd, request_header *req,
418 union keytype key, const char *keystr, uid_t c_uid,
419 struct hashentry *he, struct datahead *dh)
421 /* Search for the entry matching the key. Please note that we don't
422 look again in the table whether the dataset is now available. We
423 simply insert it. It does not matter if it is in there twice. The
424 pruning function only will look at the timestamp. */
425 size_t buflen = 1024;
426 char *buffer = (char *) alloca (buflen);
427 struct passwd resultbuf;
428 struct passwd *pwd;
429 bool use_malloc = false;
430 int errval = 0;
432 if (__builtin_expect (debug_level > 0, 0))
434 if (he == NULL)
435 dbg_log (_("Haven't found \"%s\" in password cache!"), keystr);
436 else
437 dbg_log (_("Reloading \"%s\" in password cache!"), keystr);
440 #if 0
441 uid_t oldeuid = 0;
442 if (db->secure)
444 oldeuid = geteuid ();
445 pthread_seteuid_np (c_uid);
447 #endif
449 while (lookup (req->type, key, &resultbuf, buffer, buflen, &pwd) != 0
450 && (errval = errno) == ERANGE)
452 char *old_buffer = buffer;
453 errno = 0;
455 if (__builtin_expect (buflen > 32768, 0))
457 buflen *= 2;
458 buffer = (char *) realloc (use_malloc ? buffer : NULL, buflen);
459 if (buffer == NULL)
461 /* We ran out of memory. We cannot do anything but
462 sending a negative response. In reality this should
463 never happen. */
464 pwd = NULL;
465 buffer = old_buffer;
467 /* We set the error to indicate this is (possibly) a
468 temporary error and that it does not mean the entry
469 is not available at all. */
470 errval = EAGAIN;
471 break;
473 use_malloc = true;
475 else
476 /* Allocate a new buffer on the stack. If possible combine it
477 with the previously allocated buffer. */
478 buffer = (char *) extend_alloca (buffer, buflen, 2 * buflen);
481 #if 0
482 if (db->secure)
483 pthread_seteuid_np (oldeuid);
484 #endif
486 /* Add the entry to the cache. */
487 cache_addpw (db, fd, req, keystr, pwd, c_uid, he, dh, errval);
489 if (use_malloc)
490 free (buffer);
494 void
495 addpwbyname (struct database_dyn *db, int fd, request_header *req,
496 void *key, uid_t c_uid)
498 union keytype u = { .v = key };
500 addpwbyX (db, fd, req, u, key, c_uid, NULL, NULL);
504 void
505 readdpwbyname (struct database_dyn *db, struct hashentry *he,
506 struct datahead *dh)
508 request_header req =
510 .type = GETPWBYNAME,
511 .key_len = he->len
513 union keytype u = { .v = db->data + he->key };
515 addpwbyX (db, -1, &req, u, db->data + he->key, he->owner, he, dh);
519 void
520 addpwbyuid (struct database_dyn *db, int fd, request_header *req,
521 void *key, uid_t c_uid)
523 char *ep;
524 uid_t uid = strtoul ((char *) key, &ep, 10);
526 if (*(char *) key == '\0' || *ep != '\0') /* invalid numeric uid */
528 if (debug_level > 0)
529 dbg_log (_("Invalid numeric uid \"%s\"!"), (char *) key);
531 errno = EINVAL;
532 return;
535 union keytype u = { .u = uid };
537 addpwbyX (db, fd, req, u, key, c_uid, NULL, NULL);
541 void
542 readdpwbyuid (struct database_dyn *db, struct hashentry *he,
543 struct datahead *dh)
545 char *ep;
546 uid_t uid = strtoul (db->data + he->key, &ep, 10);
548 /* Since the key has been added before it must be OK. */
549 assert (*(db->data + he->key) != '\0' && *ep == '\0');
551 request_header req =
553 .type = GETPWBYUID,
554 .key_len = he->len
556 union keytype u = { .u = uid };
558 addpwbyX (db, -1, &req, u, db->data + he->key, he->owner, he, dh);