]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
kldxref: Properly handle reading strings near the end of an ELF file
authorJohn Baldwin <jhb@FreeBSD.org>
Tue, 19 Mar 2024 00:01:23 +0000 (17:01 -0700)
committerJohn Baldwin <jhb@FreeBSD.org>
Tue, 19 Mar 2024 00:01:23 +0000 (17:01 -0700)
commit785600d0fb13d6f0b4595bf4dbbc048113dda71d
tree68c839c536cd14a516cc2525f31f1caf010f10d3
parenta8eb3b365eb63d2a569b166f2dfc982967d3a7fa
kldxref: Properly handle reading strings near the end of an ELF file

If a string is at or near the end of an input file and the amount of
remaining data in the file is smaller than the maximum string size,
the pread(2) system call would return a short read which is treated as
an error.  Instead, add a new helper function for reading a string
which permits short reads so long as the data read from the file
contains a terminated string.

Reported by: jrtc27
Reviewed by: jrtc27
Sponsored by: University of Cambridge, Google, Inc.
Differential Revision: https://reviews.freebsd.org/D44419
usr.sbin/kldxref/ef.c
usr.sbin/kldxref/ef.h
usr.sbin/kldxref/ef_obj.c
usr.sbin/kldxref/elf.c