153 Commits

Author SHA1 Message Date
Rich Felker
f305467aad popen: handle issues with fd0/1 being closed
also check for failure of dup2 and abort the child rather than
reading/writing the wrong file.
2012-06-20 14:32:48 -04:00
Rich Felker
839bff64a1 fix another oob pointer arithmetic issue in printf floating point
this one could never cause any problems unless the compiler/machine
goes to extra trouble to break oob pointer arithmetic, but it's best
to fix it anyway.
2012-06-20 09:28:54 -04:00
Rich Felker
82a4499e67 minor perror behavior fix
patch by nsz
2012-06-20 09:27:28 -04:00
Rich Felker
914949d321 fix pointer overflow bug in floating point printf
large precision values could cause out-of-bounds pointer arithmetic in
computing the precision cutoff (used to avoid expensive long-precision
arithmetic when the result will be discarded). per the C standard,
this is undefined behavior. one would expect that it works anyway, and
in fact it did in most real-world cases, but it was randomly
(depending on aslr) crashing in i386 binaries running on x86_64
kernels. this is because linux puts the userspace stack near 4GB
(instead of near 3GB) when the kernel is 64-bit, leading to the
out-of-bounds pointer arithmetic overflowing past the end of address
space and giving a very low pointer value, which then compared lower
than a pointer it should have been higher than.

the new code rearranges the arithmetic so that no overflow can occur.

while this bug could crash printf with memory corruption, it's
unlikely to have security impact in real-world applications since the
ability to provide an extremely large field precision value under
attacker-control is required to trigger the bug.
2012-06-19 21:41:43 -04:00
Rich Felker
e15171b8d8 add new stdio extension functions to make gnulib happy
this is mildly ugly, but less ugly than gnulib trying to poke at the
definition of the FILE structure...
2012-06-19 01:35:23 -04:00
Rich Felker
a71e0af255 stdio: handle file position correctly at program exit
for seekable files, posix imposed requirements on the offset of the
underlying open file description after a stream is closed. this was
correctly handled (as a side effect of the unconditional fflush call)
when streams were explicitly closed by fclose, but was not handled
correctly at program exit time, where fflush(0) was being used.

the weak symbol hackery is to pull in __stdio_exit if either of
__toread or __towrite is used, but avoid calling it twice so we don't
have to keep extra state. the new __stdio_exit is a streamlined fflush
variant that avoids performing any unnecessary operations and which
never unlocks the files or open file list, so we can be sure no other
threads write new data to a stream's buffer after it's already
flushed.
2012-06-19 01:27:26 -04:00
Rich Felker
ca8a4e7fbd minor cleanup in fflush 2012-06-19 01:12:36 -04:00
Rich Felker
2499cd9d9b remove flush hook cruft that was never used from stdio
there is no need/use for a flush hook. the write function serves this
purpose already. i originally created the hook for implementing mem
streams based on a mistaken reading of posix, and later realized it
wasn't useful but never removed it until now.
2012-06-19 00:05:35 -04:00
Rich Felker
deb90c79e5 change stdio_ext __freading/__fwriting semantics slightly
the old behavior was to only consider a stream to be "reading" or
"writing" if it had buffered, unread/unwritten data. this reportedly
differs from the traditional behavior of these functions, which is
essentially to return true as much as possible without creating the
possibility that both __freading and __fwriting could return true.

gnulib expects __fwriting to return true as soon as a file is opened
write-only, and possibly expects other cases that depend on the
traditional behavior. and since these functions exist mostly for
gnulib (does anything else use them??), they should match the expected
behavior to avoid even more ugly hacks and workarounds...
2012-06-17 21:24:58 -04:00
Rich Felker
3b43d10faf fdopen should set errno when it fails due to invalid mode string 2012-06-17 20:34:04 -04:00
Rich Felker
63d40196b9 fix %ls breakage in last printf fix
signedness issue kept %ls with no precision from working at all
2012-06-08 10:36:43 -04:00
Rich Felker
6e9ff6a4cf fix printf %ls with precision limit over-read issue
printf was not printing too many characters, but it was reading one
too many wchar_t elements from the input. this could lead to crashes
if running off the page, or spurious failure if the conversion of the
extra wchar_t resulted in EILSEQ.
2012-06-08 10:32:59 -04:00
Rich Felker
31eaad4796 fix scanf bug reading literals after width-limited field
the field width limit was not being cleared before reading the
literal, causing spurious failures in scanf in cases like "%2d:"
scanning "00:".
2012-06-07 22:52:41 -04:00
Rich Felker
6a4b9472fb add some ugly aliases for LSB ABI compatibility
for some nonsensical reason, glibc's headers use inline functions that
redirect some of the standard functions to ugly nonstandard names (and
likewise for some of their nonstandard functions).
2012-06-02 21:20:21 -04:00
Rich Felker
3f25354e62 avoid using pthread cleanup push/pop in stdio when not needed
unfortunately in dynamic-linked programs, these macros cause
pthread_self to be initialized, which costs a couple syscalls, and
(much worse) would necessarily fail, crash, and burn on ancient (2.4
and earlier) kernels where setting up a thread pointer does not work.

i'd like to do this in a more generic way that avoids all use of
cleanup push/pop before pthread_self has been successfully called and
avoids ugly if/else constructs like the one in this commit, but for
now, this will suffice.
2012-05-25 22:44:34 -04:00
Rich Felker
db4096c5f2 fix uninitialized var in vfwprintf printing 0-prec string
this could lead to spurious failures of wide printf functions
2012-05-04 01:26:43 -04:00
Rich Felker
cb81b6947c fix really bad breakage in strtol, etc.: failure to accept leading spaces 2012-04-19 12:47:34 -04:00
Rich Felker
bdeb184c3d fix wide scanf's handling of input failure on %c, and simplify %[ 2012-04-17 23:35:49 -04:00
Rich Felker
a12aa29185 fix failure to distinguish input/match failure in wide %[ scanf
this also includes a related fix for vswscanf's read function, which
was returning a spurious (uninitialized) character for empty strings.
2012-04-17 23:08:58 -04:00
Rich Felker
2dd5dc78d4 fix over-read in %ls with non-wide scanf 2012-04-17 22:41:38 -04:00
Rich Felker
9ab180fa57 fix broken %s and %[ with no width specifier in wide scanf 2012-04-17 22:15:33 -04:00
Rich Felker
99fbf4cfdb make wide scanf %[ respect width 2012-04-17 21:17:09 -04:00
Rich Felker
0072251572 fix wide scanf to respect field width for strings 2012-04-17 19:37:31 -04:00
Rich Felker
e0d9f780d1 fix some bugs in scanf %[ handling detected while writing the wide version 2012-04-17 14:22:22 -04:00
Rich Felker
73ec1d0495 introduce new wide scanf code and remove the last remnants of old scanf
at this point, strto* and all scanf family functions are using the new
unified integer and floating point parser/converter code.

the wide scanf is largely a wrapper for ordinary byte-based scanf;
since numbers can only contain ascii characters, only strings need to
be handled specially.
2012-04-17 14:19:46 -04:00
Rich Felker
8b57a81577 avoid depending on POSIX symbol in code used from plain C functions 2012-04-17 13:17:01 -04:00
Rich Felker
03de77f521 avoid null pointer dereference on %*p fields in scanf 2012-04-17 11:50:02 -04:00
Rich Felker
b7a2761780 also ensure that write buffer is bounded when __stdio_write returns
assuming other code is correct, this should be a no-op, but better to
be safe...
2012-04-17 11:08:11 -04:00
Rich Felker
b5a8b28915 fix buffer overflow in vfprintf on long writes to unbuffered files
vfprintf temporarily swaps in a local buffer (for the duration of the
operation) when the target stream is unbuffered; this both simplifies
the implementation of functions like dprintf (they don't need their
own buffers) and eliminates the pathologically bad performance of
writing the formatted output with one or more write syscalls per
formatting field.

in cases like dprintf where we are dealing with a virgin FILE
structure, everything worked correctly. however for long-lived files
(like stderr), it's possible that the buffer bounds were already set
for the internal zero-size buffer. on the next write, __stdio_write
would pick up and use the new buffer provided by vfprintf, but the
bound (wend) field was still pointing at the internal zero-size
buffer's end. this in turn allowed unbounded writes to the temporary
buffer.
2012-04-17 10:58:02 -04:00
Rich Felker
cc3a446660 fix %lf, etc. with printf
the l prefix is redundant/no-op with printf, since default promotions
always promote floats to double; however, it is valid, and printf was
wrongly rejecting it.
2012-04-16 21:50:23 -04:00
Rich Felker
18efeb320b new scanf implementation and corresponding integer parser/converter
advantages over the old code:
- correct results for floating point (old code was bogus)
- wide/regular scanf separated so scanf does not pull in wide code
- well-defined behavior on integers that overflow dest type
- support for %[a-b] ranges with %[ (impl-defined by widely used)
- no intermediate conversion of fmt string to wide string
- cleaner, easier to share code with strto* functions
- better standards conformance for corner cases

the old code remains in the source tree, as the wide versions of the
scanf-family functions are still using it. it will be removed when no
longer needed.
2012-04-16 16:03:45 -04:00
Rich Felker
291f839a44 fix scanf handling of "0" (followed by immediate EOF) with "%x"
other cases with %x were probably broken too.

I would actually like to go ahead and replace this code in scanf with
calls to the new __intparse framework, but for now this calls for a
quick and unobtrusive fix without the risk of breaking other things.
2012-03-13 12:37:51 -04:00
Rich Felker
5816592389 make stdio open, read, and write operations cancellation points
it should be noted that only the actual underlying buffer flush and
fill operations are cancellable, not reads from or writes to the
buffer. this behavior is compatible with POSIX, which makes all
cancellation points in stdio optional, and it achieves the goal of
allowing cancellation of a thread that's "stuck" on IO (due to a
non-responsive socket/pipe peer, slow/stuck hardware, etc.) without
imposing any measurable performance cost.
2012-02-02 00:11:29 -05:00
Rich Felker
f753049a50 simplify atexit and fflush-on-exit handling 2011-10-14 23:00:24 -04:00
Rich Felker
5f814682b4 don't crash on null strings in printf
passing null pointer for %s is UB but lots of broken programs do it anyway
2011-09-28 22:07:58 -04:00
Rich Felker
ca52e34767 avoid setting FILE lock count when not using flockfile
for now this is just a tiny optimization, but later if we support
cancellation from __stdio_read and __stdio_write, it will be necessary
for the recusrive lock count to be zero in order for these functions
to know they are responsible for unlocking the FILE on cancellation.
2011-09-21 21:30:45 -04:00
Rich Felker
d2e061a2bd more fmemopen null termination fixes
null termination is only added when current size grows.
in update modes, null termination is not added if it does not fit
(i.e. it is not allowed to clobber data).

these rules make very little sense, but that's how it goes..
2011-09-04 21:53:20 -04:00
Rich Felker
e72ee5786b fix some fmemopen behaviors
read should not be allowed past "current size".
append mode should write at "current size", not buffer size.
null termination should not be written except when "current size" grows.
2011-09-04 21:40:42 -04:00
Rich Felker
22e4542348 fmemopen: fix eof handling, hopefully right this time 2011-09-04 16:06:38 -04:00
Rich Felker
f81279ff58 fmemopen fixes
disallow seek past end of buffer (per posix)
fix position accounting to include data buffered for read
don't set eof flag when no data was requested
2011-09-04 16:04:28 -04:00
Rich Felker
7ee3dcb3c6 memstreams: fix incorrect handling of file pos > current size
the addition is safe and cannot overflow because both operands are
positive when considered as signed quantities.
2011-09-04 10:29:04 -04:00
Rich Felker
c88f36f556 optimize seek function for memory streams 2011-09-04 00:08:32 -04:00
Rich Felker
32d67e938e fix twos complement overflow bug in mem streams boundary check
the expression -off is not safe in case off is the most-negative
value. instead apply - to base which is known to be non-negative and
bounded within sanity.
2011-09-04 00:06:01 -04:00
Rich Felker
d4fa6f0e08 implement fmemopen
testing so far has been minimal. may need further work.
2011-09-03 23:26:17 -04:00
Rich Felker
1e69376435 fix some length calculations in memory streams 2011-09-03 20:19:51 -04:00
Rich Felker
1461e02757 implement open_wmemstream
not heavily tested, but it seems to be correct, including the odd
behavior that seeking is in terms of wide character count. this
precludes any simple buffering, so we just make the stream unbuffered.
2011-09-03 19:49:46 -04:00
Rich Felker
b158b32a44 implement open_memstream
this is the first attempt, and may have bugs. only minimal testing has
been performed.
2011-09-03 00:45:21 -04:00
Rich Felker
e95b0a9d10 fix crash in dns code with new stdio locking code 2011-08-01 00:03:50 -04:00
Rich Felker
dba68bf98f add proper fuxed-based locking for stdio
previously, stdio used spinlocks, which would be unacceptable if we
ever add support for thread priorities, and which yielded
pathologically bad performance if an application attempted to use
flockfile on a key file as a major/primary locking mechanism.

i had held off on making this change for fear that it would hurt
performance in the non-threaded case, but actually support for
recursive locking had already inflicted that cost. by having the
internal locking functions store a flag indicating whether they need
to perform unlocking, rather than using the actual recursive lock
counter, i was able to combine the conditionals at unlock time,
eliminating any additional cost, and also avoid a nasty corner case
where a huge number of calls to ftrylockfile could cause deadlock
later at the point of internal locking.

this commit also fixes some issues with usage of pthread_self
conflicting with __attribute__((const)) which resulted in crashes with
some compiler versions/optimizations, mainly in flockfile prior to
pthread_create.
2011-07-30 08:02:14 -04:00
Rich Felker
7683fceede eliminate dependence of perror on printf 2011-07-30 06:11:16 -04:00