1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

[network] Avoid out ouf bounds read in __libc_res_nquerydomain

2012-02-28  Jeff Law  <law@redhat.com>

	* resolv/res_query.c (__libc_res_nquerydomain): Avoid
	out of bounds read.
This commit is contained in:
Jeff Law
2012-02-29 11:51:27 -05:00
committed by Carlos O'Donell
parent 1f393a11f6
commit 8fdceb2efd
2 changed files with 12 additions and 3 deletions

View File

@ -556,12 +556,16 @@ __libc_res_nquerydomain(res_state statp,
* copy without '.' if present.
*/
n = strlen(name);
if (n >= MAXDNAME) {
/* Decrement N prior to checking it against MAXDNAME
so that we detect a wrap to SIZE_MAX and return
a reasonable error. */
n--;
if (n >= MAXDNAME - 1) {
RES_SET_H_ERRNO(statp, NO_RECOVERY);
return (-1);
}
n--;
if (n >= 0 && name[n] == '.') {
if (name[n] == '.') {
strncpy(nbuf, name, n);
nbuf[n] = '\0';
} else