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 /* Now get the lock to safely insert the records. */
139 pthread_rwlock_rdlock (&db
->lock
);
141 if (cache_add (req
->type
, key_copy
, req
->key_len
,
142 &dataset
->head
, true, db
, owner
) < 0)
143 /* Ensure the data can be recovered. */
144 dataset
->head
.usable
= false;
147 pthread_rwlock_unlock (&db
->lock
);
149 /* Mark the old entry as obsolete. */
154 ++db
->head
->addfailed
;
159 /* Determine the I/O structure. */
160 size_t pw_name_len
= strlen (pwd
->pw_name
) + 1;
161 size_t pw_passwd_len
= strlen (pwd
->pw_passwd
) + 1;
162 size_t pw_gecos_len
= strlen (pwd
->pw_gecos
) + 1;
163 size_t pw_dir_len
= strlen (pwd
->pw_dir
) + 1;
164 size_t pw_shell_len
= strlen (pwd
->pw_shell
) + 1;
166 const size_t key_len
= strlen (key
);
167 const size_t buf_len
= 3 * sizeof (pwd
->pw_uid
) + key_len
+ 1;
168 char *buf
= alloca (buf_len
);
171 /* We need this to insert the `byuid' entry. */
173 n
= snprintf (buf
, buf_len
, "%d%c%n%s", pwd
->pw_uid
, '\0',
174 &key_offset
, (char *) key
) + 1;
176 written
= total
= (sizeof (struct dataset
) + pw_name_len
+ pw_passwd_len
177 + pw_gecos_len
+ pw_dir_len
+ pw_shell_len
);
179 /* If we refill the cache, first assume the reconrd did not
180 change. Allocate memory on the cache since it is likely
181 discarded anyway. If it turns out to be necessary to have a
182 new record we can still allocate real memory. */
183 bool alloca_used
= false;
188 dataset
= (struct dataset
*) mempool_alloc (db
, total
+ n
);
190 ++db
->head
->addfailed
;
195 /* We cannot permanently add the result in the moment. But
196 we can provide the result as is. Store the data in some
198 dataset
= (struct dataset
*) alloca (total
+ n
);
200 /* We cannot add this record to the permanent database. */
204 dataset
->head
.allocsize
= total
+ n
;
205 dataset
->head
.recsize
= total
- offsetof (struct dataset
, resp
);
206 dataset
->head
.notfound
= false;
207 dataset
->head
.nreloads
= he
== NULL
? 0 : (dh
->nreloads
+ 1);
208 dataset
->head
.usable
= true;
210 /* Compute the timeout time. */
211 dataset
->head
.timeout
= t
+ db
->postimeout
;
213 dataset
->resp
.version
= NSCD_VERSION
;
214 dataset
->resp
.found
= 1;
215 dataset
->resp
.pw_name_len
= pw_name_len
;
216 dataset
->resp
.pw_passwd_len
= pw_passwd_len
;
217 dataset
->resp
.pw_uid
= pwd
->pw_uid
;
218 dataset
->resp
.pw_gid
= pwd
->pw_gid
;
219 dataset
->resp
.pw_gecos_len
= pw_gecos_len
;
220 dataset
->resp
.pw_dir_len
= pw_dir_len
;
221 dataset
->resp
.pw_shell_len
= pw_shell_len
;
223 cp
= dataset
->strdata
;
225 /* Copy the strings over into the buffer. */
226 cp
= mempcpy (cp
, pwd
->pw_name
, pw_name_len
);
227 cp
= mempcpy (cp
, pwd
->pw_passwd
, pw_passwd_len
);
228 cp
= mempcpy (cp
, pwd
->pw_gecos
, pw_gecos_len
);
229 cp
= mempcpy (cp
, pwd
->pw_dir
, pw_dir_len
);
230 cp
= mempcpy (cp
, pwd
->pw_shell
, pw_shell_len
);
232 /* Finally the stringified UID value. */
234 char *key_copy
= cp
+ key_offset
;
235 assert (key_copy
== (char *) rawmemchr (cp
, '\0') + 1);
237 /* Now we can determine whether on refill we have to create a new
243 if (total
+ n
== dh
->allocsize
244 && total
- offsetof (struct dataset
, resp
) == dh
->recsize
245 && memcmp (&dataset
->resp
, dh
->data
,
246 dh
->allocsize
- offsetof (struct dataset
, resp
)) == 0)
248 /* The sata has not changed. We will just bump the
249 timeout value. Note that the new record has been
250 allocated on the stack and need not be freed. */
251 dh
->timeout
= dataset
->head
.timeout
;
256 /* We have to create a new record. Just allocate
257 appropriate memory and copy it. */
259 = (struct dataset
*) mempool_alloc (db
, total
+ n
);
262 /* Adjust pointer into the memory block. */
263 cp
= (char *) newp
+ (cp
- (char *) dataset
);
265 dataset
= memcpy (newp
, dataset
, total
+ n
);
269 /* Mark the old record as obsolete. */
275 /* We write the dataset before inserting it to the database
276 since while inserting this thread might block and so would
277 unnecessarily let the receiver wait. */
280 written
= TEMP_FAILURE_RETRY (write (fd
, &dataset
->resp
, total
));
284 /* Add the record to the database. But only if it has not been
285 stored on the stack. */
288 /* If necessary, we also propagate the data to disk. */
292 uintptr_t pval
= (uintptr_t) dataset
& ~pagesize_m1
;
293 msync ((void *) pval
,
294 ((uintptr_t) dataset
& pagesize_m1
) + total
+ n
,
298 /* Now get the lock to safely insert the records. */
299 pthread_rwlock_rdlock (&db
->lock
);
301 /* NB: in the following code we always must add the entry
302 marked with FIRST first. Otherwise we end up with
303 dangling "pointers" in case a latter hash entry cannot be
305 bool first
= req
->type
== GETPWBYNAME
;
307 /* If the request was by UID, add that entry first. */
308 if (req
->type
!= GETPWBYNAME
)
310 if (cache_add (GETPWBYUID
, cp
, key_offset
, &dataset
->head
, true,
313 /* Could not allocate memory. Make sure the data gets
315 dataset
->head
.usable
= false;
319 /* If the key is different from the name add a separate entry. */
320 else if (strcmp (key_copy
, dataset
->strdata
) != 0)
322 if (cache_add (GETPWBYNAME
, key_copy
, key_len
+ 1,
323 &dataset
->head
, first
, db
, owner
) < 0)
325 /* Could not allocate memory. Make sure the data gets
327 dataset
->head
.usable
= false;
334 /* We have to add the value for both, byname and byuid. */
335 if (__builtin_expect (cache_add (GETPWBYNAME
, dataset
->strdata
,
336 pw_name_len
, &dataset
->head
, first
,
339 if (req
->type
== GETPWBYNAME
)
340 (void) cache_add (GETPWBYUID
, cp
, key_offset
, &dataset
->head
,
341 req
->type
!= GETPWBYNAME
, db
, owner
);
344 /* Could not allocate memory. Make sure the data gets
346 dataset
->head
.usable
= false;
349 pthread_rwlock_unlock (&db
->lock
);
353 if (__builtin_expect (written
!= total
, 0) && debug_level
> 0)
356 dbg_log (_("short write in %s: %s"), __FUNCTION__
,
357 strerror_r (errno
, buf
, sizeof (buf
)));
370 lookup (int type
, union keytype key
, struct passwd
*resultbufp
, char *buffer
,
371 size_t buflen
, struct passwd
**pwd
)
373 if (type
== GETPWBYNAME
)
374 return __getpwnam_r (key
.v
, resultbufp
, buffer
, buflen
, pwd
);
376 return __getpwuid_r (key
.u
, resultbufp
, buffer
, buflen
, pwd
);
381 addpwbyX (struct database_dyn
*db
, int fd
, request_header
*req
,
382 union keytype key
, const char *keystr
, uid_t c_uid
,
383 struct hashentry
*he
, struct datahead
*dh
)
385 /* Search for the entry matching the key. Please note that we don't
386 look again in the table whether the dataset is now available. We
387 simply insert it. It does not matter if it is in there twice. The
388 pruning function only will look at the timestamp. */
389 size_t buflen
= 1024;
390 char *buffer
= (char *) alloca (buflen
);
391 struct passwd resultbuf
;
394 bool use_malloc
= false;
397 if (__builtin_expect (debug_level
> 0, 0))
400 dbg_log (_("Haven't found \"%s\" in password cache!"), keystr
);
402 dbg_log (_("Reloading \"%s\" in password cache!"), keystr
);
407 oldeuid
= geteuid ();
411 while (lookup (req
->type
, key
, &resultbuf
, buffer
, buflen
, &pwd
) != 0
412 && (errval
= errno
) == ERANGE
)
414 char *old_buffer
= buffer
;
418 if (__builtin_expect (buflen
> 32768, 0))
421 buffer
= (char *) realloc (use_malloc
? buffer
: NULL
, buflen
);
424 /* We ran out of memory. We cannot do anything but
425 sending a negative response. In reality this should
430 /* We set the error to indicate this is (possibly) a
431 temporary error and that it does not mean the entry
432 is not available at all. */
439 /* Allocate a new buffer on the stack. If possible combine it
440 with the previously allocated buffer. */
441 buffer
= (char *) extend_alloca (buffer
, buflen
, buflen
+ INCR
);
447 /* Add the entry to the cache. */
448 cache_addpw (db
, fd
, req
, keystr
, pwd
, c_uid
, he
, dh
, errval
);
456 addpwbyname (struct database_dyn
*db
, int fd
, request_header
*req
,
457 void *key
, uid_t c_uid
)
459 union keytype u
= { .v
= key
};
461 addpwbyX (db
, fd
, req
, u
, key
, c_uid
, NULL
, NULL
);
466 readdpwbyname (struct database_dyn
*db
, struct hashentry
*he
,
474 union keytype u
= { .v
= db
->data
+ he
->key
};
476 addpwbyX (db
, -1, &req
, u
, db
->data
+ he
->key
, he
->owner
, he
, dh
);
481 addpwbyuid (struct database_dyn
*db
, int fd
, request_header
*req
,
482 void *key
, uid_t c_uid
)
485 uid_t uid
= strtoul ((char *) key
, &ep
, 10);
487 if (*(char *) key
== '\0' || *ep
!= '\0') /* invalid numeric uid */
490 dbg_log (_("Invalid numeric uid \"%s\"!"), (char *) key
);
496 union keytype u
= { .u
= uid
};
498 addpwbyX (db
, fd
, req
, u
, key
, c_uid
, NULL
, NULL
);
503 readdpwbyuid (struct database_dyn
*db
, struct hashentry
*he
,
507 uid_t uid
= strtoul (db
->data
+ he
->key
, &ep
, 10);
509 /* Since the key has been added before it must be OK. */
510 assert (*(db
->data
+ he
->key
) != '\0' && *ep
== '\0');
517 union keytype u
= { .u
= uid
};
519 addpwbyX (db
, -1, &req
, u
, db
->data
+ he
->key
, he
->owner
, he
, dh
);