diff options
author | Florian Weimer <fweimer@redhat.com> | 2024-04-25 15:01:07 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2024-04-25 15:40:34 +0200 |
commit | 5eea50c4402e39588de98aa1d4469a79774703d4 (patch) | |
tree | 5af3afb027bddaacdf5e354e634e4c6c734181d3 | |
parent | f75c298e747b2b8b41b1c2f551c011a52c41bfd1 (diff) | |
download | glibc-5eea50c4402e39588de98aa1d4469a79774703d4.tar.gz glibc-5eea50c4402e39588de98aa1d4469a79774703d4.tar.xz glibc-5eea50c4402e39588de98aa1d4469a79774703d4.zip |
CVE-2024-33600: nscd: Do not send missing not-found response in addgetnetgrentX (bug 31678)
If we failed to add a not-found response to the cache, the dataset point can be null, resulting in a null pointer dereference. Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org> (cherry picked from commit 7835b00dbce53c3c87bbbb1754a95fb5e58187aa)
-rw-r--r-- | nscd/netgroupcache.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/nscd/netgroupcache.c b/nscd/netgroupcache.c index ef76a7e590..52dc68aa20 100644 --- a/nscd/netgroupcache.c +++ b/nscd/netgroupcache.c @@ -147,7 +147,7 @@ addgetnetgrentX (struct database_dyn *db, int fd, request_header *req, /* No such service. */ cacheable = do_notfound (db, fd, req, key, &dataset, &total, &timeout, &key_copy); - goto writeout; + goto maybe_cache_add; } memset (&data, '\0', sizeof (data)); @@ -348,7 +348,7 @@ addgetnetgrentX (struct database_dyn *db, int fd, request_header *req, { cacheable = do_notfound (db, fd, req, key, &dataset, &total, &timeout, &key_copy); - goto writeout; + goto maybe_cache_add; } total = buffilled; @@ -410,14 +410,12 @@ addgetnetgrentX (struct database_dyn *db, int fd, request_header *req, } if (he == NULL && fd != -1) - { - /* We write the dataset before inserting it to the database - since while inserting this thread might block and so would - unnecessarily let the receiver wait. */ - writeout: + /* We write the dataset before inserting it to the database since + while inserting this thread might block and so would + unnecessarily let the receiver wait. */ writeall (fd, &dataset->resp, dataset->head.recsize); - } + maybe_cache_add: if (cacheable) { /* If necessary, we also propagate the data to disk. */ |