fix read past end of haystack buffer for short needles in memmem
commitc718f9fc1b4bd913eff10d0c12763f90b2bc487c
authorRich Felker <dalias@aerifal.cx>
Fri, 1 Apr 2016 17:36:15 +0000 (1 13:36 -0400)
committerRich Felker <dalias@aerifal.cx>
Fri, 1 Apr 2016 17:36:15 +0000 (1 13:36 -0400)
tree7c34bd9ff1e852482c983b7755fbe47e97fb6bbb
parent5c3412d22555d03a1c00578ba8faaa8dc9206420
fix read past end of haystack buffer for short needles in memmem

the two/three/four byte memmem specializations are not prepared to
handle haystacks shorter than the needle; they unconditionally read at
least up to the needle length and subtract from the haystack length.
if the haystack is shorter, the remaining haystack length underflows
and produces an unbounded search which will eventually either crash or
find a spurious match.

the top-level memmem function attempted to avoid this case already by
checking for haystack shorter than needle, but it failed to re-check
after using memchr to remove the maximal prefix not containing the
first byte of the needle.
src/string/memmem.c