ITS#9643 Fix out of bounds read in entry_decode()

This commit is contained in:
HAMANO Tsukasa 2021-09-01 18:42:10 +09:00 committed by Quanah Gibson-Mount
parent 73be971a7d
commit ccb4f4854a

View File

@ -845,7 +845,8 @@ int entry_decode(EntryHeader *eh, Entry **e)
a = x->e_attrs;
bptr = (BerVarray)eh->bv.bv_val;
while ((i = entry_getlen(&ptr))) {
while (((char *)ptr - eh->bv.bv_val < eh->bv.bv_len) &&
(i = entry_getlen(&ptr))) {
struct berval bv;
bv.bv_len = i;
bv.bv_val = (char *) ptr;