1 /* Cache handling for passwd lookup.
2 Copyright (C) 1998-2002, 2003, 2004 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
35 #include <stackinfo.h>
40 /* This is the standard reply in case the service is disabled. */
41 static const pw_response_header disabled
=
43 .version
= NSCD_VERSION
,
54 /* This is the struct describing how to write this record. */
55 const struct iovec pwd_iov_disabled
=
57 .iov_base
= (void *) &disabled
,
58 .iov_len
= sizeof (disabled
)
62 /* This is the standard reply in case we haven't found the dataset. */
63 static const pw_response_header notfound
=
65 .version
= NSCD_VERSION
,
78 cache_addpw (struct database_dyn
*db
, int fd
, request_header
*req
,
79 const void *key
, struct passwd
*pwd
, uid_t owner
,
80 struct hashentry
*he
, struct datahead
*dh
, int errval
)
84 time_t t
= time (NULL
);
86 /* We allocate all data in one memory block: the iov vector,
87 the response header and the dataset itself. */
91 pw_response_header resp
;
95 assert (offsetof (struct dataset
, resp
) == offsetof (struct datahead
, data
));
99 if (he
!= NULL
&& errval
== EAGAIN
)
101 /* If we have an old record available but cannot find one
102 now because the service is not available we keep the old
103 record and make sure it does not get removed. */
104 if (reload_count
!= UINT_MAX
&& dh
->nreloads
== reload_count
)
105 /* Do not reset the value if we never not reload the record. */
106 dh
->nreloads
= reload_count
- 1;
112 /* We have no data. This means we send the standard reply for this
114 written
= total
= sizeof (notfound
);
117 written
= TEMP_FAILURE_RETRY (write (fd
, ¬found
, total
));
119 dataset
= mempool_alloc (db
, sizeof (struct dataset
) + req
->key_len
);
120 /* If we cannot permanently store the result, so be it. */
123 dataset
->head
.allocsize
= sizeof (struct dataset
) + req
->key_len
;
124 dataset
->head
.recsize
= total
;
125 dataset
->head
.notfound
= true;
126 dataset
->head
.nreloads
= 0;
127 dataset
->head
.usable
= true;
129 /* Compute the timeout time. */
130 dataset
->head
.timeout
= t
+ db
->negtimeout
;
132 /* This is the reply. */
133 memcpy (&dataset
->resp
, ¬found
, total
);
135 /* Copy the key data. */
136 char *key_copy
= memcpy (dataset
->strdata
, key
, req
->key_len
);
138 /* If necessary, we also propagate the data to disk. */
142 uintptr_t pval
= (uintptr_t) dataset
& ~pagesize_m1
;
143 msync ((void *) pval
,
144 ((uintptr_t) dataset
& pagesize_m1
)
145 + sizeof (struct dataset
) + req
->key_len
, MS_ASYNC
);
148 /* Now get the lock to safely insert the records. */
149 pthread_rwlock_rdlock (&db
->lock
);
151 if (cache_add (req
->type
, key_copy
, req
->key_len
,
152 &dataset
->head
, true, db
, owner
) < 0)
153 /* Ensure the data can be recovered. */
154 dataset
->head
.usable
= false;
157 pthread_rwlock_unlock (&db
->lock
);
159 /* Mark the old entry as obsolete. */
164 ++db
->head
->addfailed
;
169 /* Determine the I/O structure. */
170 size_t pw_name_len
= strlen (pwd
->pw_name
) + 1;
171 size_t pw_passwd_len
= strlen (pwd
->pw_passwd
) + 1;
172 size_t pw_gecos_len
= strlen (pwd
->pw_gecos
) + 1;
173 size_t pw_dir_len
= strlen (pwd
->pw_dir
) + 1;
174 size_t pw_shell_len
= strlen (pwd
->pw_shell
) + 1;
176 const size_t key_len
= strlen (key
);
177 const size_t buf_len
= 3 * sizeof (pwd
->pw_uid
) + key_len
+ 1;
178 char *buf
= alloca (buf_len
);
181 /* We need this to insert the `byuid' entry. */
183 n
= snprintf (buf
, buf_len
, "%d%c%n%s", pwd
->pw_uid
, '\0',
184 &key_offset
, (char *) key
) + 1;
186 written
= total
= (sizeof (struct dataset
) + pw_name_len
+ pw_passwd_len
187 + pw_gecos_len
+ pw_dir_len
+ pw_shell_len
);
189 /* If we refill the cache, first assume the reconrd did not
190 change. Allocate memory on the cache since it is likely
191 discarded anyway. If it turns out to be necessary to have a
192 new record we can still allocate real memory. */
193 bool alloca_used
= false;
198 dataset
= (struct dataset
*) mempool_alloc (db
, total
+ n
);
200 ++db
->head
->addfailed
;
205 /* We cannot permanently add the result in the moment. But
206 we can provide the result as is. Store the data in some
208 dataset
= (struct dataset
*) alloca (total
+ n
);
210 /* We cannot add this record to the permanent database. */
214 dataset
->head
.allocsize
= total
+ n
;
215 dataset
->head
.recsize
= total
- offsetof (struct dataset
, resp
);
216 dataset
->head
.notfound
= false;
217 dataset
->head
.nreloads
= he
== NULL
? 0 : (dh
->nreloads
+ 1);
218 dataset
->head
.usable
= true;
220 /* Compute the timeout time. */
221 dataset
->head
.timeout
= t
+ db
->postimeout
;
223 dataset
->resp
.version
= NSCD_VERSION
;
224 dataset
->resp
.found
= 1;
225 dataset
->resp
.pw_name_len
= pw_name_len
;
226 dataset
->resp
.pw_passwd_len
= pw_passwd_len
;
227 dataset
->resp
.pw_uid
= pwd
->pw_uid
;
228 dataset
->resp
.pw_gid
= pwd
->pw_gid
;
229 dataset
->resp
.pw_gecos_len
= pw_gecos_len
;
230 dataset
->resp
.pw_dir_len
= pw_dir_len
;
231 dataset
->resp
.pw_shell_len
= pw_shell_len
;
233 cp
= dataset
->strdata
;
235 /* Copy the strings over into the buffer. */
236 cp
= mempcpy (cp
, pwd
->pw_name
, pw_name_len
);
237 cp
= mempcpy (cp
, pwd
->pw_passwd
, pw_passwd_len
);
238 cp
= mempcpy (cp
, pwd
->pw_gecos
, pw_gecos_len
);
239 cp
= mempcpy (cp
, pwd
->pw_dir
, pw_dir_len
);
240 cp
= mempcpy (cp
, pwd
->pw_shell
, pw_shell_len
);
242 /* Finally the stringified UID value. */
244 char *key_copy
= cp
+ key_offset
;
245 assert (key_copy
== (char *) rawmemchr (cp
, '\0') + 1);
247 /* Now we can determine whether on refill we have to create a new
253 if (total
+ n
== dh
->allocsize
254 && total
- offsetof (struct dataset
, resp
) == dh
->recsize
255 && memcmp (&dataset
->resp
, dh
->data
,
256 dh
->allocsize
- offsetof (struct dataset
, resp
)) == 0)
258 /* The data has not changed. We will just bump the
259 timeout value. Note that the new record has been
260 allocated on the stack and need not be freed. */
261 dh
->timeout
= dataset
->head
.timeout
;
266 /* We have to create a new record. Just allocate
267 appropriate memory and copy it. */
269 = (struct dataset
*) mempool_alloc (db
, total
+ n
);
272 /* Adjust pointer into the memory block. */
273 cp
= (char *) newp
+ (cp
- (char *) dataset
);
275 dataset
= memcpy (newp
, dataset
, total
+ n
);
279 /* Mark the old record as obsolete. */
285 /* We write the dataset before inserting it to the database
286 since while inserting this thread might block and so would
287 unnecessarily let the receiver wait. */
290 written
= TEMP_FAILURE_RETRY (write (fd
, &dataset
->resp
, total
));
294 /* Add the record to the database. But only if it has not been
295 stored on the stack. */
298 /* If necessary, we also propagate the data to disk. */
302 uintptr_t pval
= (uintptr_t) dataset
& ~pagesize_m1
;
303 msync ((void *) pval
,
304 ((uintptr_t) dataset
& pagesize_m1
) + total
+ n
,
308 /* Now get the lock to safely insert the records. */
309 pthread_rwlock_rdlock (&db
->lock
);
311 /* NB: in the following code we always must add the entry
312 marked with FIRST first. Otherwise we end up with
313 dangling "pointers" in case a latter hash entry cannot be
315 bool first
= req
->type
== GETPWBYNAME
;
317 /* If the request was by UID, add that entry first. */
318 if (req
->type
!= GETPWBYNAME
)
320 if (cache_add (GETPWBYUID
, cp
, key_offset
, &dataset
->head
, true,
323 /* Could not allocate memory. Make sure the data gets
325 dataset
->head
.usable
= false;
329 /* If the key is different from the name add a separate entry. */
330 else if (strcmp (key_copy
, dataset
->strdata
) != 0)
332 if (cache_add (GETPWBYNAME
, key_copy
, key_len
+ 1,
333 &dataset
->head
, first
, db
, owner
) < 0)
335 /* Could not allocate memory. Make sure the data gets
337 dataset
->head
.usable
= false;
344 /* We have to add the value for both, byname and byuid. */
345 if (__builtin_expect (cache_add (GETPWBYNAME
, dataset
->strdata
,
346 pw_name_len
, &dataset
->head
, first
,
349 if (req
->type
== GETPWBYNAME
)
350 (void) cache_add (GETPWBYUID
, cp
, key_offset
, &dataset
->head
,
351 req
->type
!= GETPWBYNAME
, db
, owner
);
354 /* Could not allocate memory. Make sure the data gets
356 dataset
->head
.usable
= false;
359 pthread_rwlock_unlock (&db
->lock
);
363 if (__builtin_expect (written
!= total
, 0) && debug_level
> 0)
366 dbg_log (_("short write in %s: %s"), __FUNCTION__
,
367 strerror_r (errno
, buf
, sizeof (buf
)));
380 lookup (int type
, union keytype key
, struct passwd
*resultbufp
, char *buffer
,
381 size_t buflen
, struct passwd
**pwd
)
383 if (type
== GETPWBYNAME
)
384 return __getpwnam_r (key
.v
, resultbufp
, buffer
, buflen
, pwd
);
386 return __getpwuid_r (key
.u
, resultbufp
, buffer
, buflen
, pwd
);
391 addpwbyX (struct database_dyn
*db
, int fd
, request_header
*req
,
392 union keytype key
, const char *keystr
, uid_t c_uid
,
393 struct hashentry
*he
, struct datahead
*dh
)
395 /* Search for the entry matching the key. Please note that we don't
396 look again in the table whether the dataset is now available. We
397 simply insert it. It does not matter if it is in there twice. The
398 pruning function only will look at the timestamp. */
399 size_t buflen
= 1024;
400 char *buffer
= (char *) alloca (buflen
);
401 struct passwd resultbuf
;
403 bool use_malloc
= false;
406 if (__builtin_expect (debug_level
> 0, 0))
409 dbg_log (_("Haven't found \"%s\" in password cache!"), keystr
);
411 dbg_log (_("Reloading \"%s\" in password cache!"), keystr
);
418 oldeuid
= geteuid ();
419 pthread_seteuid_np (c_uid
);
423 while (lookup (req
->type
, key
, &resultbuf
, buffer
, buflen
, &pwd
) != 0
424 && (errval
= errno
) == ERANGE
)
426 char *old_buffer
= buffer
;
430 if (__builtin_expect (buflen
> 32768, 0))
433 buffer
= (char *) realloc (use_malloc
? buffer
: NULL
, buflen
);
436 /* We ran out of memory. We cannot do anything but
437 sending a negative response. In reality this should
442 /* We set the error to indicate this is (possibly) a
443 temporary error and that it does not mean the entry
444 is not available at all. */
451 /* Allocate a new buffer on the stack. If possible combine it
452 with the previously allocated buffer. */
453 buffer
= (char *) extend_alloca (buffer
, buflen
, buflen
+ INCR
);
458 pthread_seteuid_np (oldeuid
);
461 /* Add the entry to the cache. */
462 cache_addpw (db
, fd
, req
, keystr
, pwd
, c_uid
, he
, dh
, errval
);
470 addpwbyname (struct database_dyn
*db
, int fd
, request_header
*req
,
471 void *key
, uid_t c_uid
)
473 union keytype u
= { .v
= key
};
475 addpwbyX (db
, fd
, req
, u
, key
, c_uid
, NULL
, NULL
);
480 readdpwbyname (struct database_dyn
*db
, struct hashentry
*he
,
488 union keytype u
= { .v
= db
->data
+ he
->key
};
490 addpwbyX (db
, -1, &req
, u
, db
->data
+ he
->key
, he
->owner
, he
, dh
);
495 addpwbyuid (struct database_dyn
*db
, int fd
, request_header
*req
,
496 void *key
, uid_t c_uid
)
499 uid_t uid
= strtoul ((char *) key
, &ep
, 10);
501 if (*(char *) key
== '\0' || *ep
!= '\0') /* invalid numeric uid */
504 dbg_log (_("Invalid numeric uid \"%s\"!"), (char *) key
);
510 union keytype u
= { .u
= uid
};
512 addpwbyX (db
, fd
, req
, u
, key
, c_uid
, NULL
, NULL
);
517 readdpwbyuid (struct database_dyn
*db
, struct hashentry
*he
,
521 uid_t uid
= strtoul (db
->data
+ he
->key
, &ep
, 10);
523 /* Since the key has been added before it must be OK. */
524 assert (*(db
->data
+ he
->key
) != '\0' && *ep
== '\0');
531 union keytype u
= { .u
= uid
};
533 addpwbyX (db
, -1, &req
, u
, db
->data
+ he
->key
, he
->owner
, he
, dh
);