elf: Do not parse ill-formatted strings
[glibc.git] / nscd / netgroupcache.c
blobb9174a138c3bd0b934c77044e33ae053b5770807
1 /* Cache handling for netgroup lookup.
2 Copyright (C) 2011-2023 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; version 2 of the License, or
8 (at your option) any later version.
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, see <https://www.gnu.org/licenses/>. */
18 #include <alloca.h>
19 #include <assert.h>
20 #include <errno.h>
21 #include <libintl.h>
22 #include <stdbool.h>
23 #include <stdlib.h>
24 #include <unistd.h>
25 #include <sys/mman.h>
27 #include "../nss/netgroup.h"
28 #include "nscd.h"
29 #include "dbg_log.h"
31 #include <kernel-features.h>
34 /* This is the standard reply in case the service is disabled. */
35 static const netgroup_response_header disabled =
37 .version = NSCD_VERSION,
38 .found = -1,
39 .nresults = 0,
40 .result_len = 0
43 /* This is the struct describing how to write this record. */
44 const struct iovec netgroup_iov_disabled =
46 .iov_base = (void *) &disabled,
47 .iov_len = sizeof (disabled)
51 /* This is the standard reply in case we haven't found the dataset. */
52 static const netgroup_response_header notfound =
54 .version = NSCD_VERSION,
55 .found = 0,
56 .nresults = 0,
57 .result_len = 0
61 struct dataset
63 struct datahead head;
64 netgroup_response_header resp;
65 char strdata[0];
68 /* Sends a notfound message and prepares a notfound dataset to write to the
69 cache. Returns true if there was enough memory to allocate the dataset and
70 returns the dataset in DATASETP, total bytes to write in TOTALP and the
71 timeout in TIMEOUTP. KEY_COPY is set to point to the copy of the key in the
72 dataset. */
73 static bool
74 do_notfound (struct database_dyn *db, int fd, request_header *req,
75 const char *key, struct dataset **datasetp, ssize_t *totalp,
76 time_t *timeoutp, char **key_copy)
78 struct dataset *dataset;
79 ssize_t total;
80 time_t timeout;
81 bool cacheable = false;
83 total = sizeof (notfound);
84 timeout = time (NULL) + db->negtimeout;
86 if (fd != -1)
87 TEMP_FAILURE_RETRY (send (fd, &notfound, total, MSG_NOSIGNAL));
89 dataset = mempool_alloc (db, sizeof (struct dataset) + req->key_len, 1);
90 /* If we cannot permanently store the result, so be it. */
91 if (dataset != NULL)
93 timeout = datahead_init_neg (&dataset->head,
94 sizeof (struct dataset) + req->key_len,
95 total, db->negtimeout);
97 /* This is the reply. */
98 memcpy (&dataset->resp, &notfound, total);
100 /* Copy the key data. */
101 memcpy (dataset->strdata, key, req->key_len);
102 *key_copy = dataset->strdata;
104 cacheable = true;
106 *timeoutp = timeout;
107 *totalp = total;
108 *datasetp = dataset;
109 return cacheable;
112 static time_t
113 addgetnetgrentX (struct database_dyn *db, int fd, request_header *req,
114 const char *key, uid_t uid, struct hashentry *he,
115 struct datahead *dh, struct dataset **resultp,
116 void **tofreep)
118 if (__glibc_unlikely (debug_level > 0))
120 if (he == NULL)
121 dbg_log (_("Haven't found \"%s\" in netgroup cache!"), key);
122 else
123 dbg_log (_("Reloading \"%s\" in netgroup cache!"), key);
126 static nss_action_list netgroup_database;
127 time_t timeout;
128 struct dataset *dataset;
129 bool cacheable = false;
130 ssize_t total;
131 bool found = false;
133 char *key_copy = NULL;
134 struct __netgrent data;
135 size_t buflen = MAX (1024, sizeof (*dataset) + req->key_len);
136 size_t buffilled = sizeof (*dataset);
137 char *buffer = NULL;
138 size_t nentries = 0;
139 size_t group_len = strlen (key) + 1;
140 struct name_list *first_needed
141 = alloca (sizeof (struct name_list) + group_len);
142 *tofreep = NULL;
144 if (netgroup_database == NULL
145 && !__nss_database_get (nss_database_netgroup, &netgroup_database))
147 /* No such service. */
148 cacheable = do_notfound (db, fd, req, key, &dataset, &total, &timeout,
149 &key_copy);
150 goto writeout;
153 memset (&data, '\0', sizeof (data));
154 buffer = xmalloc (buflen);
155 *tofreep = buffer;
156 first_needed->next = first_needed;
157 memcpy (first_needed->name, key, group_len);
158 data.needed_groups = first_needed;
160 while (data.needed_groups != NULL)
162 /* Add the next group to the list of those which are known. */
163 struct name_list *this_group = data.needed_groups->next;
164 if (this_group == data.needed_groups)
165 data.needed_groups = NULL;
166 else
167 data.needed_groups->next = this_group->next;
168 this_group->next = data.known_groups;
169 data.known_groups = this_group;
171 union
173 enum nss_status (*f) (const char *, struct __netgrent *);
174 void *ptr;
175 } setfct;
177 nss_action_list nip = netgroup_database;
178 int no_more = __nss_lookup (&nip, "setnetgrent", NULL, &setfct.ptr);
179 while (!no_more)
181 enum nss_status status
182 = DL_CALL_FCT (*setfct.f, (data.known_groups->name, &data));
184 if (status == NSS_STATUS_SUCCESS)
186 found = true;
187 union
189 enum nss_status (*f) (struct __netgrent *, char *, size_t,
190 int *);
191 void *ptr;
192 } getfct;
193 getfct.ptr = __nss_lookup_function (nip, "getnetgrent_r");
194 if (getfct.f != NULL)
195 while (1)
197 int e;
198 status = getfct.f (&data, buffer + buffilled,
199 buflen - buffilled - req->key_len, &e);
200 if (status == NSS_STATUS_SUCCESS)
202 if (data.type == triple_val)
204 const char *nhost = data.val.triple.host;
205 const char *nuser = data.val.triple.user;
206 const char *ndomain = data.val.triple.domain;
208 size_t hostlen = strlen (nhost ?: "") + 1;
209 size_t userlen = strlen (nuser ?: "") + 1;
210 size_t domainlen = strlen (ndomain ?: "") + 1;
212 if (nhost == NULL || nuser == NULL || ndomain == NULL
213 || nhost > nuser || nuser > ndomain)
215 const char *last = nhost;
216 if (last == NULL
217 || (nuser != NULL && nuser > last))
218 last = nuser;
219 if (last == NULL
220 || (ndomain != NULL && ndomain > last))
221 last = ndomain;
223 size_t bufused
224 = (last == NULL
225 ? buffilled
226 : last + strlen (last) + 1 - buffer);
228 /* We have to make temporary copies. */
229 size_t needed = hostlen + userlen + domainlen;
231 if (buflen - req->key_len - bufused < needed)
233 buflen += MAX (buflen, 2 * needed);
234 /* Save offset in the old buffer. We don't
235 bother with the NULL check here since
236 we'll do that later anyway. */
237 size_t nhostdiff = nhost - buffer;
238 size_t nuserdiff = nuser - buffer;
239 size_t ndomaindiff = ndomain - buffer;
241 char *newbuf = xrealloc (buffer, buflen);
242 /* Fix up the triplet pointers into the new
243 buffer. */
244 nhost = (nhost ? newbuf + nhostdiff
245 : NULL);
246 nuser = (nuser ? newbuf + nuserdiff
247 : NULL);
248 ndomain = (ndomain ? newbuf + ndomaindiff
249 : NULL);
250 *tofreep = buffer = newbuf;
253 nhost = memcpy (buffer + bufused,
254 nhost ?: "", hostlen);
255 nuser = memcpy ((char *) nhost + hostlen,
256 nuser ?: "", userlen);
257 ndomain = memcpy ((char *) nuser + userlen,
258 ndomain ?: "", domainlen);
261 char *wp = buffer + buffilled;
262 wp = memmove (wp, nhost ?: "", hostlen);
263 wp += hostlen;
264 wp = memmove (wp, nuser ?: "", userlen);
265 wp += userlen;
266 wp = memmove (wp, ndomain ?: "", domainlen);
267 wp += domainlen;
268 buffilled = wp - buffer;
269 ++nentries;
271 else
273 /* Check that the group has not been
274 requested before. */
275 struct name_list *runp = data.needed_groups;
276 if (runp != NULL)
277 while (1)
279 if (strcmp (runp->name, data.val.group) == 0)
280 break;
282 runp = runp->next;
283 if (runp == data.needed_groups)
285 runp = NULL;
286 break;
290 if (runp == NULL)
292 runp = data.known_groups;
293 while (runp != NULL)
294 if (strcmp (runp->name, data.val.group) == 0)
295 break;
296 else
297 runp = runp->next;
300 if (runp == NULL)
302 /* A new group is requested. */
303 size_t namelen = strlen (data.val.group) + 1;
304 struct name_list *newg = alloca (sizeof (*newg)
305 + namelen);
306 memcpy (newg->name, data.val.group, namelen);
307 if (data.needed_groups == NULL)
308 data.needed_groups = newg->next = newg;
309 else
311 newg->next = data.needed_groups->next;
312 data.needed_groups->next = newg;
313 data.needed_groups = newg;
318 else if (status == NSS_STATUS_TRYAGAIN && e == ERANGE)
320 buflen *= 2;
321 *tofreep = buffer = xrealloc (buffer, buflen);
323 else if (status == NSS_STATUS_RETURN
324 || status == NSS_STATUS_NOTFOUND
325 || status == NSS_STATUS_UNAVAIL)
326 /* This was either the last one for this group or the
327 group was empty or the NSS module had an internal
328 failure. Look at next group if available. */
329 break;
332 enum nss_status (*endfct) (struct __netgrent *);
333 endfct = __nss_lookup_function (nip, "endnetgrent");
334 if (endfct != NULL)
335 (void) DL_CALL_FCT (*endfct, (&data));
337 break;
340 no_more = __nss_next2 (&nip, "setnetgrent", NULL, &setfct.ptr,
341 status, 0);
345 /* No results. Return a failure and write out a notfound record in the
346 cache. */
347 if (!found)
349 cacheable = do_notfound (db, fd, req, key, &dataset, &total, &timeout,
350 &key_copy);
351 goto writeout;
354 total = buffilled;
356 /* Fill in the dataset. */
357 dataset = (struct dataset *) buffer;
358 timeout = datahead_init_pos (&dataset->head, total + req->key_len,
359 total - offsetof (struct dataset, resp),
360 he == NULL ? 0 : dh->nreloads + 1,
361 db->postimeout);
363 dataset->resp.version = NSCD_VERSION;
364 dataset->resp.found = 1;
365 dataset->resp.nresults = nentries;
366 dataset->resp.result_len = buffilled - sizeof (*dataset);
368 assert (buflen - buffilled >= req->key_len);
369 key_copy = memcpy (buffer + buffilled, key, req->key_len);
370 buffilled += req->key_len;
372 /* Now we can determine whether on refill we have to create a new
373 record or not. */
374 if (he != NULL)
376 assert (fd == -1);
378 if (dataset->head.allocsize == dh->allocsize
379 && dataset->head.recsize == dh->recsize
380 && memcmp (&dataset->resp, dh->data,
381 dh->allocsize - offsetof (struct dataset, resp)) == 0)
383 /* The data has not changed. We will just bump the timeout
384 value. Note that the new record has been allocated on
385 the stack and need not be freed. */
386 dh->timeout = dataset->head.timeout;
387 dh->ttl = dataset->head.ttl;
388 ++dh->nreloads;
389 dataset = (struct dataset *) dh;
391 goto out;
396 struct dataset *newp
397 = (struct dataset *) mempool_alloc (db, total + req->key_len, 1);
398 if (__glibc_likely (newp != NULL))
400 /* Adjust pointer into the memory block. */
401 key_copy = (char *) newp + (key_copy - buffer);
403 dataset = memcpy (newp, dataset, total + req->key_len);
404 cacheable = true;
406 if (he != NULL)
407 /* Mark the old record as obsolete. */
408 dh->usable = false;
412 if (he == NULL && fd != -1)
414 /* We write the dataset before inserting it to the database
415 since while inserting this thread might block and so would
416 unnecessarily let the receiver wait. */
417 writeout:
418 writeall (fd, &dataset->resp, dataset->head.recsize);
421 if (cacheable)
423 /* If necessary, we also propagate the data to disk. */
424 if (db->persistent)
426 // XXX async OK?
427 uintptr_t pval = (uintptr_t) dataset & ~pagesize_m1;
428 msync ((void *) pval,
429 ((uintptr_t) dataset & pagesize_m1) + total + req->key_len,
430 MS_ASYNC);
433 (void) cache_add (req->type, key_copy, req->key_len, &dataset->head,
434 true, db, uid, he == NULL);
436 pthread_rwlock_unlock (&db->lock);
438 /* Mark the old entry as obsolete. */
439 if (dh != NULL)
440 dh->usable = false;
443 out:
444 *resultp = dataset;
446 return timeout;
450 static time_t
451 addinnetgrX (struct database_dyn *db, int fd, request_header *req,
452 char *key, uid_t uid, struct hashentry *he,
453 struct datahead *dh)
455 const char *group = key;
456 key = strchr (key, '\0') + 1;
457 size_t group_len = key - group;
458 const char *host = *key++ ? key : NULL;
459 if (host != NULL)
460 key = strchr (key, '\0') + 1;
461 const char *user = *key++ ? key : NULL;
462 if (user != NULL)
463 key = strchr (key, '\0') + 1;
464 const char *domain = *key++ ? key : NULL;
466 if (__glibc_unlikely (debug_level > 0))
468 if (he == NULL)
469 dbg_log (_("Haven't found \"%s (%s,%s,%s)\" in netgroup cache!"),
470 group, host ?: "", user ?: "", domain ?: "");
471 else
472 dbg_log (_("Reloading \"%s (%s,%s,%s)\" in netgroup cache!"),
473 group, host ?: "", user ?: "", domain ?: "");
476 struct dataset *result = (struct dataset *) cache_search (GETNETGRENT,
477 group, group_len,
478 db, uid);
479 time_t timeout;
480 void *tofree;
481 if (result != NULL)
483 timeout = result->head.timeout;
484 tofree = NULL;
486 else
488 request_header req_get =
490 .type = GETNETGRENT,
491 .key_len = group_len
493 timeout = addgetnetgrentX (db, -1, &req_get, group, uid, NULL, NULL,
494 &result, &tofree);
497 struct indataset
499 struct datahead head;
500 innetgroup_response_header resp;
501 } *dataset
502 = (struct indataset *) mempool_alloc (db,
503 sizeof (*dataset) + req->key_len,
505 struct indataset dataset_mem;
506 bool cacheable = true;
507 if (__glibc_unlikely (dataset == NULL))
509 cacheable = false;
510 dataset = &dataset_mem;
513 datahead_init_pos (&dataset->head, sizeof (*dataset) + req->key_len,
514 sizeof (innetgroup_response_header),
515 he == NULL ? 0 : dh->nreloads + 1, result->head.ttl);
516 /* Set the notfound status and timeout based on the result from
517 getnetgrent. */
518 dataset->head.notfound = result->head.notfound;
519 dataset->head.timeout = timeout;
521 dataset->resp.version = NSCD_VERSION;
522 dataset->resp.found = result->resp.found;
523 /* Until we find a matching entry the result is 0. */
524 dataset->resp.result = 0;
526 char *key_copy = memcpy ((char *) (dataset + 1), group, req->key_len);
528 if (dataset->resp.found)
530 const char *triplets = (const char *) (&result->resp + 1);
532 for (nscd_ssize_t i = result->resp.nresults; i > 0; --i)
534 bool success = true;
536 /* For the host, user and domain in each triplet, we assume success
537 if the value is blank because that is how the wildcard entry to
538 match anything is stored in the netgroup cache. */
539 if (host != NULL && *triplets != '\0')
540 success = strcmp (host, triplets) == 0;
541 triplets = strchr (triplets, '\0') + 1;
543 if (success && user != NULL && *triplets != '\0')
544 success = strcmp (user, triplets) == 0;
545 triplets = strchr (triplets, '\0') + 1;
547 if (success && (domain == NULL || *triplets == '\0'
548 || strcmp (domain, triplets) == 0))
550 dataset->resp.result = 1;
551 break;
553 triplets = strchr (triplets, '\0') + 1;
557 if (he != NULL && dh->data[0].innetgroupdata.result == dataset->resp.result)
559 /* The data has not changed. We will just bump the timeout
560 value. Note that the new record has been allocated on
561 the stack and need not be freed. */
562 dh->timeout = timeout;
563 dh->ttl = dataset->head.ttl;
564 ++dh->nreloads;
565 if (cacheable)
566 pthread_rwlock_unlock (&db->lock);
567 goto out;
570 if (he == NULL)
572 /* We write the dataset before inserting it to the database
573 since while inserting this thread might block and so would
574 unnecessarily let the receiver wait. */
575 assert (fd != -1);
577 writeall (fd, &dataset->resp, sizeof (innetgroup_response_header));
580 if (cacheable)
582 /* If necessary, we also propagate the data to disk. */
583 if (db->persistent)
585 // XXX async OK?
586 uintptr_t pval = (uintptr_t) dataset & ~pagesize_m1;
587 msync ((void *) pval,
588 ((uintptr_t) dataset & pagesize_m1) + sizeof (*dataset)
589 + req->key_len,
590 MS_ASYNC);
593 (void) cache_add (req->type, key_copy, req->key_len, &dataset->head,
594 true, db, uid, he == NULL);
596 pthread_rwlock_unlock (&db->lock);
598 /* Mark the old entry as obsolete. */
599 if (dh != NULL)
600 dh->usable = false;
603 out:
604 free (tofree);
605 return timeout;
609 static time_t
610 addgetnetgrentX_ignore (struct database_dyn *db, int fd, request_header *req,
611 const char *key, uid_t uid, struct hashentry *he,
612 struct datahead *dh)
614 struct dataset *ignore;
615 void *tofree;
616 time_t timeout = addgetnetgrentX (db, fd, req, key, uid, he, dh,
617 &ignore, &tofree);
618 free (tofree);
619 return timeout;
622 void
623 addgetnetgrent (struct database_dyn *db, int fd, request_header *req,
624 void *key, uid_t uid)
626 addgetnetgrentX_ignore (db, fd, req, key, uid, NULL, NULL);
630 time_t
631 readdgetnetgrent (struct database_dyn *db, struct hashentry *he,
632 struct datahead *dh)
634 request_header req =
636 .type = GETNETGRENT,
637 .key_len = he->len
639 return addgetnetgrentX_ignore
640 (db, -1, &req, db->data + he->key, he->owner, he, dh);
644 void
645 addinnetgr (struct database_dyn *db, int fd, request_header *req,
646 void *key, uid_t uid)
648 addinnetgrX (db, fd, req, key, uid, NULL, NULL);
652 time_t
653 readdinnetgr (struct database_dyn *db, struct hashentry *he,
654 struct datahead *dh)
656 request_header req =
658 .type = INNETGR,
659 .key_len = he->len
662 return addinnetgrX (db, -1, &req, db->data + he->key, he->owner, he, dh);