OSDN Git Service

fix undefined behavior in strto* via FILE buffer pointer abuse
authorRich Felker <dalias@aerifal.cx>
Sat, 15 Sep 2018 06:33:08 +0000 (02:33 -0400)
committerRich Felker <dalias@aerifal.cx>
Sat, 15 Sep 2018 06:48:25 +0000 (02:48 -0400)
commitd6c855caa88ddb1ab6e24e23a14b1e7baf4ba9c7
tree490ebfe77ff5866f5052d399dcbcfeedaf82a329
parentc84971995b3a6d5118f9357c040572f4c78bcd55
fix undefined behavior in strto* via FILE buffer pointer abuse

in order to produce FILE objects to pass to the intscan/floatscan
backends without any (prohibitively costly) extra buffering layer, the
strto* functions set the FILE's rend (read end) buffer pointer to an
invalid value at the end of the address space, or SIZE_MAX/2 past the
beginning of the string. this led to undefined behavior comparing and
subtracting the end pointer with the buffer position pointer (rpos).

the comparison issue is easily eliminated by using != instead of <.
however the subtractions require nontrivial changes:

previously, f->shcnt stored the count that would have been read if
consuming the whole buffer, which required an end pointer for the
buffer. the purpose for this was that it allowed reading it and adding
rpos-rend at any time to get the actual count so far, and required no
adjustment at the time of __shgetc (actual function call) since the
call would only happen when reaching the end of the buffer.

to get rid of the dependency on rend, instead offset shcnt by buf-rpos
(start of buffer) at the time of last __shlim/__shgetc call. this
makes for slightly more work in __shgetc the function, but for the
inline macro it's still just as easy to compute the current count.

since the scan helper interfaces used here are a big hack, comments
are added to document their contracts and what's going on with their
implementations.
src/internal/shgetc.c
src/internal/shgetc.h
src/stdlib/strtod.c
src/stdlib/strtol.c