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. */
33 #include <sys/socket.h>
34 #include <stackinfo.h>
39 # include <kernel-features.h>
42 /* This is the standard reply in case the service is disabled. */
43 static const pw_response_header disabled
=
45 .version
= NSCD_VERSION
,
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
,
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
)
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. */
93 pw_response_header resp
;
97 assert (offsetof (struct dataset
, resp
) == offsetof (struct datahead
, data
));
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;
114 /* We have no data. This means we send the standard reply for this
116 written
= total
= sizeof (notfound
);
119 written
= TEMP_FAILURE_RETRY (send (fd
, ¬found
, total
,
122 dataset
= mempool_alloc (db
, sizeof (struct dataset
) + req
->key_len
);
123 /* If we cannot permanently store the result, so be it. */
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
, ¬found
, 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. */
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. */
167 ++db
->head
->addfailed
;
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;
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
);
184 /* We need this to insert the `byuid' entry. */
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;
201 dataset
= (struct dataset
*) mempool_alloc (db
, total
+ n
);
203 ++db
->head
->addfailed
;
208 /* We cannot permanently add the result in the moment. But
209 we can provide the result as is. Store the data in some
211 dataset
= (struct dataset
*) alloca (total
+ n
);
213 /* We cannot add this record to the permanent database. */
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. */
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
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
;
269 /* We have to create a new record. Just allocate
270 appropriate memory and copy it. */
272 = (struct dataset
*) mempool_alloc (db
, total
+ n
);
275 /* Adjust pointer into the memory block. */
276 cp
= (char *) newp
+ (cp
- (char *) dataset
);
278 dataset
= memcpy (newp
, dataset
, total
+ n
);
282 /* Mark the old record as obsolete. */
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. */
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
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
)
312 # ifndef __ASSUME_SENDFILE
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. */
324 /* If necessary, we also propagate the data to disk. */
328 uintptr_t pval
= (uintptr_t) dataset
& ~pagesize_m1
;
329 msync ((void *) pval
,
330 ((uintptr_t) dataset
& pagesize_m1
) + total
+ n
,
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
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,
349 /* Could not allocate memory. Make sure the data gets
351 dataset
->head
.usable
= false;
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
363 dataset
->head
.usable
= 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
,
375 if (req
->type
== GETPWBYNAME
)
376 (void) cache_add (GETPWBYUID
, cp
, key_offset
, &dataset
->head
,
377 req
->type
!= GETPWBYNAME
, db
, owner
);
380 /* Could not allocate memory. Make sure the data gets
382 dataset
->head
.usable
= false;
385 pthread_rwlock_unlock (&db
->lock
);
389 if (__builtin_expect (written
!= total
, 0) && debug_level
> 0)
392 dbg_log (_("short write in %s: %s"), __FUNCTION__
,
393 strerror_r (errno
, buf
, sizeof (buf
)));
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
);
412 return __getpwuid_r (key
.u
, resultbufp
, buffer
, buflen
, pwd
);
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
;
429 bool use_malloc
= false;
432 if (__builtin_expect (debug_level
> 0, 0))
435 dbg_log (_("Haven't found \"%s\" in password cache!"), keystr
);
437 dbg_log (_("Reloading \"%s\" in password cache!"), keystr
);
444 oldeuid
= geteuid ();
445 pthread_seteuid_np (c_uid
);
449 while (lookup (req
->type
, key
, &resultbuf
, buffer
, buflen
, &pwd
) != 0
450 && (errval
= errno
) == ERANGE
)
452 char *old_buffer
= buffer
;
455 if (__builtin_expect (buflen
> 32768, 0))
458 buffer
= (char *) realloc (use_malloc
? buffer
: NULL
, buflen
);
461 /* We ran out of memory. We cannot do anything but
462 sending a negative response. In reality this should
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. */
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
);
483 pthread_seteuid_np (oldeuid
);
486 /* Add the entry to the cache. */
487 cache_addpw (db
, fd
, req
, keystr
, pwd
, c_uid
, he
, dh
, errval
);
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
);
505 readdpwbyname (struct database_dyn
*db
, struct hashentry
*he
,
513 union keytype u
= { .v
= db
->data
+ he
->key
};
515 addpwbyX (db
, -1, &req
, u
, db
->data
+ he
->key
, he
->owner
, he
, dh
);
520 addpwbyuid (struct database_dyn
*db
, int fd
, request_header
*req
,
521 void *key
, uid_t c_uid
)
524 uid_t uid
= strtoul ((char *) key
, &ep
, 10);
526 if (*(char *) key
== '\0' || *ep
!= '\0') /* invalid numeric uid */
529 dbg_log (_("Invalid numeric uid \"%s\"!"), (char *) key
);
535 union keytype u
= { .u
= uid
};
537 addpwbyX (db
, fd
, req
, u
, key
, c_uid
, NULL
, NULL
);
542 readdpwbyuid (struct database_dyn
*db
, struct hashentry
*he
,
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');
556 union keytype u
= { .u
= uid
};
558 addpwbyX (db
, -1, &req
, u
, db
->data
+ he
->key
, he
->owner
, he
, dh
);