From 24d1f4dd34cd86759673f736c16e671a6303f8a8 Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Sat, 15 Jun 2019 14:33:32 +0200 Subject: [PATCH] nlist: Check whether sh_link is within bounds The sh_link members should be >= e_shnum, otherwise we might do out of bounds read accesses on the shdr array. Reported-by: Daniel Hodson Based-on-patch-by: Daniel Hodson Signed-off-by: Guillem Jover --- src/nlist.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/nlist.c b/src/nlist.c index 2aa2eee..e2a7949 100644 --- a/src/nlist.c +++ b/src/nlist.c @@ -172,6 +172,9 @@ __fdnlist(int fd, struct nlist *list) */ for (i = 0; i < ehdr.e_shnum; i++) { if (shdr[i].sh_type == SHT_SYMTAB) { + if (shdr[i].sh_link >= ehdr.e_shnum) + goto done; + symoff = shdr[i].sh_offset; symsize = shdr[i].sh_size; symstroff = shdr[shdr[i].sh_link].sh_offset;