mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
973fe93a56
When an NSS plugin only implements the _gethostbyname2_r and _getcanonname_r callbacks, getaddrinfo could use memory that was freed during tmpbuf resizing, through h_name in a previous query response. The backing store for res->at->name when doing a query with gethostbyname3_r or gethostbyname2_r is tmpbuf, which is reallocated in gethosts during the query. For AF_INET6 lookup with AI_ALL | AI_V4MAPPED, gethosts gets called twice, once for a v6 lookup and second for a v4 lookup. In this case, if the first call reallocates tmpbuf enough number of times, resulting in a malloc, th->h_name (that res->at->name refers to) ends up on a heap allocated storage in tmpbuf. Now if the second call to gethosts also causes the plugin callback to return NSS_STATUS_TRYAGAIN, tmpbuf will get freed, resulting in a UAF reference in res->at->name. This then gets dereferenced in the getcanonname_r plugin call, resulting in the use after free. Fix this by copying h_name over and freeing it at the end. This resolves BZ #30843, which is assigned CVE-2023-4806. Signed-off-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
57 lines
1.9 KiB
C
57 lines
1.9 KiB
C
/* NSS service provider that only provides gethostbyname2_r.
|
|
Copyright The GNU Toolchain Authors.
|
|
This file is part of the GNU C Library.
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library; if not, see
|
|
<https://www.gnu.org/licenses/>. */
|
|
|
|
#include <nss.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include "nss/tst-nss-gai-hv2-canonname.h"
|
|
|
|
/* Catch misnamed and functions. */
|
|
#pragma GCC diagnostic error "-Wmissing-prototypes"
|
|
NSS_DECLARE_MODULE_FUNCTIONS (test_gai_hv2_canonname)
|
|
|
|
extern enum nss_status _nss_files_gethostbyname2_r (const char *, int,
|
|
struct hostent *, char *,
|
|
size_t, int *, int *);
|
|
|
|
enum nss_status
|
|
_nss_test_gai_hv2_canonname_gethostbyname2_r (const char *name, int af,
|
|
struct hostent *result,
|
|
char *buffer, size_t buflen,
|
|
int *errnop, int *herrnop)
|
|
{
|
|
return _nss_files_gethostbyname2_r (name, af, result, buffer, buflen, errnop,
|
|
herrnop);
|
|
}
|
|
|
|
enum nss_status
|
|
_nss_test_gai_hv2_canonname_getcanonname_r (const char *name, char *buffer,
|
|
size_t buflen, char **result,
|
|
int *errnop, int *h_errnop)
|
|
{
|
|
/* We expect QUERYNAME, which is a small enough string that it shouldn't fail
|
|
the test. */
|
|
if (memcmp (QUERYNAME, name, sizeof (QUERYNAME))
|
|
|| buflen < sizeof (QUERYNAME))
|
|
abort ();
|
|
|
|
strncpy (buffer, name, buflen);
|
|
*result = buffer;
|
|
return NSS_STATUS_SUCCESS;
|
|
}
|