musl
12 years agosimplify unified timed wait code, drop support for newer method
Rich Felker [Sun, 7 Aug 2011 15:14:32 +0000 (11:14 -0400)]
simplify unified timed wait code, drop support for newer method

the new absolute-time-based wait kernelside was hard to get right and
basically just code duplication. it could only improve "performance"
when waiting, and even then, the improvement was just slight drop in
cpu usage during a wait.

actually, with vdso clock_gettime, the "old" way will be even faster
than the "new" way if the time has already expired, since it will not
invoke any syscalls. it can determine entirely in userspace that it
needs to return ETIMEDOUT.

12 years agoadd fast path for normal mutexes back to pthread_mutex_lock
Rich Felker [Sun, 7 Aug 2011 08:50:02 +0000 (04:50 -0400)]
add fast path for normal mutexes back to pthread_mutex_lock

12 years agoclose should not be cancellable after "failing" with EINTR
Rich Felker [Sun, 7 Aug 2011 04:05:01 +0000 (00:05 -0400)]
close should not be cancellable after "failing" with EINTR

normally we allow cancellation to be acted upon when a syscall fails
with EINTR, since there is no useful status to report to the caller in
this case, and the signal that caused the interruption was almost
surely the cancellation request, anyway.

however, unlike all other syscalls, close has actually performed its
resource-deallocation function whenever it returns, even when it
returned an error. if we allow cancellation at this point, the caller
has no way of informing the program that the file descriptor was
closed, and the program may later try to close the file descriptor
again, possibly closing a different, newly-opened file.

the workaround looks ugly (special-casing one syscall), but it's
actually the case that close is the one and only syscall (at least
among cancellation points) with this ugly property.

12 years agoensure the compiler does not move around thread-register-based reads
Rich Felker [Sun, 7 Aug 2011 00:45:30 +0000 (20:45 -0400)]
ensure the compiler does not move around thread-register-based reads

if gcc decided to move this across a conditional that checks validity
of the thread register, an invalid thread-register-based read could be
performed and raise sigsegv.

12 years agosimplify multi-threaded errno, eliminate useless function pointer
Rich Felker [Sun, 7 Aug 2011 00:20:23 +0000 (20:20 -0400)]
simplify multi-threaded errno, eliminate useless function pointer

12 years agouse weak aliases rather than function pointers to simplify some code
Rich Felker [Sun, 7 Aug 2011 00:09:51 +0000 (20:09 -0400)]
use weak aliases rather than function pointers to simplify some code

12 years agofix off-by-one bug in siglongjmp that caused unpredictable behavior
Rich Felker [Fri, 5 Aug 2011 10:43:45 +0000 (06:43 -0400)]
fix off-by-one bug in siglongjmp that caused unpredictable behavior

if saved, signal mask would not be restored unless some low signals
were masked. if not saved, signal mask could be wrongly restored to
uninitialized values. in any, wrong mask would be restored.

i believe this function was written for a very old version of the
jmp_buf structure which did not contain a final 0 field for
compatibility with siglongjmp, and never updated...

12 years agofurther debloat cancellation handlers
Rich Felker [Wed, 3 Aug 2011 23:57:46 +0000 (19:57 -0400)]
further debloat cancellation handlers

cleanup push and pop are also no-ops if pthread_exit is not reachable.
this can make a big difference for library code which needs to protect
itself against cancellation, but which is unlikely to actually be used
in programs with threads/cancellation.

12 years agomissed detail in cancellation bloat fix
Rich Felker [Wed, 3 Aug 2011 23:50:35 +0000 (19:50 -0400)]
missed detail in cancellation bloat fix

12 years agofix static linking dependency bloat with cancellation
Rich Felker [Wed, 3 Aug 2011 23:45:21 +0000 (19:45 -0400)]
fix static linking dependency bloat with cancellation

previously, pthread_cleanup_push/pop were pulling in all of
pthread_create due to dependency on the __pthread_unwind_next
function. this was not needed, as cancellation cleanup handlers can
never be called unless pthread_exit or pthread_cancel is reachable.

12 years agoimplement if_nameindex and if_freenameindex
Rich Felker [Wed, 3 Aug 2011 16:13:13 +0000 (12:13 -0400)]
implement if_nameindex and if_freenameindex

12 years agooverhaul rwlocks to address several issues
Rich Felker [Wed, 3 Aug 2011 14:21:32 +0000 (10:21 -0400)]
overhaul rwlocks to address several issues

like mutexes and semaphores, rwlocks suffered from a race condition
where the unlock operation could access the lock memory after another
thread successfully obtained the lock (and possibly destroyed or
unmapped the object). this has been fixed in the same way it was fixed
for other lock types.

in addition, the previous implementation favored writers over readers.
in the absence of other considerations, that is the best behavior for
rwlocks, and posix explicitly allows it. however posix also requires
read locks to be recursive. if writers are favored, any attempt to
obtain a read lock while a writer is waiting for the lock will fail,
causing "recursive" read locks to deadlock. this can be avoided by
keeping track of which threads already hold read locks, but doing so
requires unbounded memory usage, and there must be a fallback case
that favors readers in case memory allocation failed. and all of this
must be synchronized. the cost, complexity, and risk of errors in
getting it right is too great, so we simply favor readers.

tracking of the owner of write locks has been removed, as it was not
useful for anything. it could allow deadlock detection, but it's not
clear to me that returning EDEADLK (which a buggy program is likely to
ignore) is better than deadlocking; at least the latter behavior
prevents further data corruption. a correct program cannot invoke this
situation anyway.

the reader count and write lock state, as well as the "last minute"
waiter flag have all been combined into a single atomic lock. this
means all state transitions for the lock are atomic compare-and-swap
operations. this makes establishing correctness much easier and may
improve performance.

finally, some code duplication has been cleaned up. more is called
for, especially the standard __timedwait idiom repeated in all locks.

12 years agotimedwait: play it safe for now
Rich Felker [Wed, 3 Aug 2011 12:36:13 +0000 (08:36 -0400)]
timedwait: play it safe for now

it's unclear whether EINVAL or ENOSYS is used when the operation is
not supported, so check for both...

12 years agofix stubbed-out reboot call
Rich Felker [Wed, 3 Aug 2011 01:22:56 +0000 (21:22 -0400)]
fix stubbed-out reboot call

12 years agocorrectly handle old kernels without FUTEX_WAIT_BITSET
Rich Felker [Wed, 3 Aug 2011 01:18:43 +0000 (21:18 -0400)]
correctly handle old kernels without FUTEX_WAIT_BITSET

futex returns EINVAL, not ENOSYS, when op is not supported.
unfortunately this looks just like EINVAL from other causes, and we
end up running the fallback code and getting EINVAL again. fortunately
this case should be rare since correct code should not generate EINVAL
anyway.

12 years agofix sem_timedwait bug introduced in timedwait unification
Rich Felker [Wed, 3 Aug 2011 01:15:20 +0000 (21:15 -0400)]
fix sem_timedwait bug introduced in timedwait unification

this dec used to be performed by the cancellation handler, which was
called when popped.

12 years agounify and overhaul timed futex waits
Rich Felker [Wed, 3 Aug 2011 01:11:36 +0000 (21:11 -0400)]
unify and overhaul timed futex waits

new features:

- FUTEX_WAIT_BITSET op will be used for timed waits if available. this
  saves a call to clock_gettime.

- error checking for the timespec struct is now inside __timedwait so
  it doesn't need to be duplicated everywhere. cond_timedwait still
  needs to duplicate it to avoid unlocking the mutex, though.

- pushing and popping the cancellation handler is delegated to
  __timedwait, and cancellable/non-cancellable waits are unified.

12 years agoavoid accessing mutex memory after atomic unlock
Rich Felker [Wed, 3 Aug 2011 00:31:15 +0000 (20:31 -0400)]
avoid accessing mutex memory after atomic unlock

this change is needed to fix a race condition and ensure that it's
possible to unlock and destroy or unmap the mutex as soon as
pthread_mutex_lock succeeds. POSIX explicitly gives such an example in
the rationale and requires an implementation to allow such usage.

12 years agofix breakage in cancellation due to signal functions overhaul
Rich Felker [Tue, 2 Aug 2011 23:59:56 +0000 (19:59 -0400)]
fix breakage in cancellation due to signal functions overhaul

sigaddset was not accepting SIGCANCEL as a valid signal number.

12 years agooverhaul posix semaphores to fix destructability race
Rich Felker [Tue, 2 Aug 2011 23:19:09 +0000 (19:19 -0400)]
overhaul posix semaphores to fix destructability race

the race condition these changes address is described in glibc bug
report number 12674:

http://sourceware.org/bugzilla/show_bug.cgi?id=12674

up until now, musl has shared the bug, and i had not been able to
figure out how to eliminate it. in short, the problem is that it's not
valid for sem_post to inspect the waiters count after incrementing the
semaphore value, because another thread may have already successfully
returned from sem_wait, (rightly) deemed itself the only remaining
user of the semaphore, and chosen to destroy and free it (or unmap the
shared memory it's stored in). POSIX is not explicit in blessing this
usage, but it gives a very explicit analogous example with mutexes
(which, in musl and glibc, also suffer from the same race condition
bug) in the rationale for pthread_mutex_destroy.

the new semaphore implementation augments the waiter count with a
redundant waiter indication in the semaphore value itself,
representing the presence of "last minute" waiters that may have
arrived after sem_post read the waiter count. this allows sem_post to
read the waiter count prior to incrementing the semaphore value,
rather than after incrementing it, so as to avoid accessing the
semaphore memory whatsoever after the increment takes place.

a similar, but much simpler, fix should be possible for mutexes and
other locking primitives whose usage rules are stricter than
semaphores.

12 years agofix wrong messages in gai_strerror
Rich Felker [Mon, 1 Aug 2011 04:31:15 +0000 (00:31 -0400)]
fix wrong messages in gai_strerror

i had missed the fact that a couple values were unassigned...

12 years agoport numbers should always be interpreted as decimal
Rich Felker [Mon, 1 Aug 2011 04:11:25 +0000 (00:11 -0400)]
port numbers should always be interpreted as decimal

per POSIX and RFC 3493:

If the specified address family is AF_INET, AF_INET6, or AF_UNSPEC,
the service can be specified as a string specifying a decimal port
number.

021 is a valid decimal number, therefore, interpreting it as octal
seems to be non-conformant.

12 years agofix crash in dns code with new stdio locking code
Rich Felker [Mon, 1 Aug 2011 04:03:50 +0000 (00:03 -0400)]
fix crash in dns code with new stdio locking code

12 years agoconsistency: use struct __ucontext instead of ucontext_t in prototypes
Rich Felker [Sun, 31 Jul 2011 04:10:29 +0000 (00:10 -0400)]
consistency: use struct __ucontext instead of ucontext_t in prototypes

this is necessary to avoid build errors if feature test macros are not
properly defined when including ucontext.h

12 years agofix race condition in sigqueue
Rich Felker [Sun, 31 Jul 2011 01:11:31 +0000 (21:11 -0400)]
fix race condition in sigqueue

this race is fundamentally due to linux's bogus requirement that
userspace, rather than kernelspace, fill in the siginfo structure. an
intervening signal handler that calls fork could cause both the parent
and child process to send signals claiming to be from the parent,
which could in turn have harmful effects depending on what the
recipient does with the signal. we simply block all signals for the
interval between getuid and sigqueue syscalls (much like what raise()
does already) to prevent the race and make the getuid/sigqueue pair
atomic.

this will be a non-issue if linux is fixed to validate the siginfo
structure or fill it in from kernelspace.

12 years agoclean up pthread_sigmask/sigprocmask dependency order
Rich Felker [Sun, 31 Jul 2011 01:09:14 +0000 (21:09 -0400)]
clean up pthread_sigmask/sigprocmask dependency order

it's nicer for the function that doesn't use errno to be independent,
and have the other one call it. saves some time and avoids clobbering
errno.

12 years agofix some bugs in setxid and update setrlimit to use __synccall
Rich Felker [Sat, 30 Jul 2011 12:19:31 +0000 (08:19 -0400)]
fix some bugs in setxid and update setrlimit to use __synccall

setrlimit is supposed to be per-process, not per-thread, but again
linux gets it wrong. work around this in userspace. not only is it
needed for correctness; setxid also depends on the resource limits for
all threads being the same to avoid situations where temporarily
unlimiting the limit succeeds in some threads but fails in others.

12 years agoadd proper fuxed-based locking for stdio
Rich Felker [Sat, 30 Jul 2011 12:02:14 +0000 (08:02 -0400)]
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.

12 years agoeliminate dependence of perror on printf
Rich Felker [Sat, 30 Jul 2011 10:11:16 +0000 (06:11 -0400)]
eliminate dependence of perror on printf

12 years agofix bug in synccall with no threads: lock was taken but never released
Rich Felker [Sat, 30 Jul 2011 04:24:26 +0000 (00:24 -0400)]
fix bug in synccall with no threads: lock was taken but never released

12 years agoadd setxid.c for new set*id() framework. missed in last commit.
Rich Felker [Sat, 30 Jul 2011 03:10:07 +0000 (23:10 -0400)]
add setxid.c for new set*id() framework. missed in last commit.

12 years agonew attempt at making set*id() safe and robust
Rich Felker [Sat, 30 Jul 2011 02:59:44 +0000 (22:59 -0400)]
new attempt at making set*id() safe and robust

changing credentials in a multi-threaded program is extremely
difficult on linux because it requires synchronizing the change
between all threads, which have their own thread-local credentials on
the kernel side. this is further complicated by the fact that changing
the real uid can fail due to exceeding RLIMIT_NPROC, making it
possible that the syscall will succeed in some threads but fail in
others.

the old __rsyscall approach being replaced was robust in that it would
report failure if any one thread failed, but in this case, the program
would be left in an inconsistent state where individual threads might
have different uid. (this was not as bad as glibc, which would
sometimes even fail to report the failure entirely!)

the new approach being committed refuses to change real user id when
it cannot temporarily set the rlimit to infinity. this is completely
POSIX conformant since POSIX does not require an implementation to
allow real-user-id changes for non-privileged processes whatsoever.
still, setting the real uid can fail due to memory allocation in the
kernel, but this can only happen if there is not already a cached
object for the target user. thus, we forcibly serialize the syscalls
attempts, and fail the entire operation on the first failure. this
*should* lead to an all-or-nothing success/failure result, but it's
still fragile and highly dependent on kernel developers not breaking
things worse than they're already broken.

ideally linux will eventually add a CLONE_USERCRED flag that would
give POSIX conformant credential changes without any hacks from
userspace, and all of this code would become redundant and could be
removed ~10 years down the line when everyone has abandoned the old
broken kernels. i'm not holding my breath...

12 years agoremove ugly prng from mk*temp and just re-poll time on retry
Rich Felker [Fri, 29 Jul 2011 02:03:54 +0000 (22:03 -0400)]
remove ugly prng from mk*temp and just re-poll time on retry

12 years agoeliminate mk*temp dependency on snprintf
Rich Felker [Fri, 29 Jul 2011 01:48:53 +0000 (21:48 -0400)]
eliminate mk*temp dependency on snprintf

this helps some tiny programs be even more tiny, and barly increases
code size even if both are used.

12 years agofix for setenv bogus var argument handling
Rich Felker [Fri, 29 Jul 2011 00:43:40 +0000 (20:43 -0400)]
fix for setenv bogus var argument handling

thanks to mikachu

per POSIX:

The setenv() function shall fail if:

[EINVAL] The name argument is a null pointer, points to an empty
string, or points to a string containing an '=' character.

12 years agowhen resolving symbols with only weak defs, use first def, not last def
Rich Felker [Mon, 25 Jul 2011 13:22:05 +0000 (09:22 -0400)]
when resolving symbols with only weak defs, use first def, not last def

12 years agocomment non-obvious de bruijn sequence code in int parser
Rich Felker [Mon, 25 Jul 2011 13:21:40 +0000 (09:21 -0400)]
comment non-obvious de bruijn sequence code in int parser

12 years agofix resolution of weak symbols (hopefully right now) and vdso
Rich Felker [Sun, 24 Jul 2011 06:19:47 +0000 (02:19 -0400)]
fix resolution of weak symbols (hopefully right now) and vdso

12 years agoworkaround for gcc's optimizer breaking dynamic symbol resolution
Rich Felker [Sun, 24 Jul 2011 05:10:01 +0000 (01:10 -0400)]
workaround for gcc's optimizer breaking dynamic symbol resolution

12 years agoload vdso, if present, into the dso list
Rich Felker [Sun, 24 Jul 2011 04:54:55 +0000 (00:54 -0400)]
load vdso, if present, into the dso list

12 years agoconst correctness on function pointer
Rich Felker [Sun, 24 Jul 2011 04:54:36 +0000 (00:54 -0400)]
const correctness on function pointer

12 years agosimplify dynamic linker startup
Rich Felker [Sun, 24 Jul 2011 04:26:12 +0000 (00:26 -0400)]
simplify dynamic linker startup

instead of creating temp dso objects on the stack and moving them to
the heap if dlopen/dlsym are used, use static objects to begin with,
and just donate them to malloc if we no longer need them.

12 years agosome preliminaries for vdso clock support
Rich Felker [Sun, 24 Jul 2011 03:45:33 +0000 (23:45 -0400)]
some preliminaries for vdso clock support

these changes also make it so clock_gettime(CLOCK_REALTIME, &ts) works
even on pre-2.6 kernels, emulated via the gettimeofday syscall. there
is no cost for the fallback check, as it falls under the error case
that already must be checked for storing the error code in errno, but
which would normally be hidden inside __syscall_ret.

12 years agocheck for fd exhaustion in forkpty
Rich Felker [Fri, 22 Jul 2011 04:25:56 +0000 (00:25 -0400)]
check for fd exhaustion in forkpty

we cannot report failure after forking, so the idea is to ensure prior
to fork that fd 0,1,2 exist. this will prevent dup2 from possibly
hitting a resource limit and failing in the child process. fcntl
rather than dup2 is used prior to forking to avoid race conditions.

12 years agoincorrect check for open failure in openpty function
Rich Felker [Fri, 22 Jul 2011 04:23:36 +0000 (00:23 -0400)]
incorrect check for open failure in openpty function

-1, not 0, indicates failure

12 years agosocket headers macro adjustment - workaround for buggy programs
Rich Felker [Fri, 22 Jul 2011 02:44:05 +0000 (22:44 -0400)]
socket headers macro adjustment - workaround for buggy programs

some program was undefining AF_NETLINK and thereby breaking AF_ROUTE...

12 years agofix errno value when fdopendir is given an invalid file descriptor
Rich Felker [Fri, 22 Jul 2011 01:15:14 +0000 (21:15 -0400)]
fix errno value when fdopendir is given an invalid file descriptor

this resolves an issue reported by Vasiliy Kulikov

12 years agoensure in fork that child gets its own new robust mutex list
Rich Felker [Sun, 17 Jul 2011 03:17:17 +0000 (23:17 -0400)]
ensure in fork that child gets its own new robust mutex list

12 years agofix logic error in fread
Rich Felker [Sun, 17 Jul 2011 01:24:02 +0000 (21:24 -0400)]
fix logic error in fread

fread was calling f->read without checking that the file was in
reading mode. this could:
1. crash, if f->read was a null pointer
2. cause unwanted blocking on a terminal already at eof
3. allow reading on a write-only file

12 years agofix various bugs in new integer parser framework
Rich Felker [Fri, 15 Jul 2011 02:11:00 +0000 (22:11 -0400)]
fix various bugs in new integer parser framework

1. my interpretation of subject sequence definition was wrong. adjust
parser to conform to the standard.

2. some code for handling tail overflow case was missing (forgot to
finish writing it).

3. typo (= instead of ==) caused ERANGE to wrongly behave like EINVAL

12 years agofix wcsto[iu]max with high characters
Rich Felker [Thu, 14 Jul 2011 05:12:05 +0000 (01:12 -0400)]
fix wcsto[iu]max with high characters

stopping without letting the parser see a stop character prevented
getting a result. so treat all high chars as the null character and
pass them into the parser.

also eliminated ugly tmp var using compound literals.

12 years agonew restartable integer parsing framework.
Rich Felker [Thu, 14 Jul 2011 04:51:45 +0000 (00:51 -0400)]
new restartable integer parsing framework.

this fixes a number of bugs in integer parsing due to lazy haphazard
wrapping, as well as some misinterpretations of the standard. the new
parser is able to work character-at-a-time or on whole strings, making
it easy to support the wide functions without unbounded space for
conversion. it will also be possible to update scanf to use the new
parser.

12 years agogb18030 support in iconv (only from, not to)
Rich Felker [Wed, 13 Jul 2011 00:30:04 +0000 (20:30 -0400)]
gb18030 support in iconv (only from, not to)

also support (and restrict to subsets) older chinese sets, and
explicitly refuse to convert to cjk (since there's no code for it yet)

12 years ago"implement" getnetbyaddr and getnetbyname
Rich Felker [Tue, 12 Jul 2011 06:52:06 +0000 (02:52 -0400)]
"implement" getnetbyaddr and getnetbyname

these are useless legacy functions but some old software contains
cruft that expects them to exist...

12 years agolegacy japanese charset support in iconv (only from, not to)
Rich Felker [Tue, 12 Jul 2011 06:43:24 +0000 (02:43 -0400)]
legacy japanese charset support in iconv (only from, not to)

12 years agosimplify iconv and support more legacy codepages
Rich Felker [Tue, 12 Jul 2011 04:31:39 +0000 (00:31 -0400)]
simplify iconv and support more legacy codepages

12 years agoadd missing signalfd flags
Rich Felker [Sat, 9 Jul 2011 22:06:59 +0000 (18:06 -0400)]
add missing signalfd flags

12 years agoprintf: "if a precision is specified, the '0' flag shall be ignored."
Rich Felker [Mon, 4 Jul 2011 15:55:52 +0000 (11:55 -0400)]
printf: "if a precision is specified, the '0' flag shall be ignored."

12 years agozero precision with zero value should not inhibit prefix/width printing
Rich Felker [Mon, 4 Jul 2011 05:57:00 +0000 (01:57 -0400)]
zero precision with zero value should not inhibit prefix/width printing

12 years agoprintf("%#x",0) should print 0 not 0x0
Rich Felker [Mon, 4 Jul 2011 05:01:58 +0000 (01:01 -0400)]
printf("%#x",0) should print 0 not 0x0

12 years agoiconv was not returning -1 on most failure
Rich Felker [Sun, 3 Jul 2011 23:26:12 +0000 (19:26 -0400)]
iconv was not returning -1 on most failure

this broke most uses of iconv in real-world programs, especially
glib's iconv wrappers.

12 years ago0.7.12 release notes
Rich Felker [Sun, 3 Jul 2011 20:41:20 +0000 (16:41 -0400)]
0.7.12 release notes

12 years agofix dlopen UB due to longjmp/volatile rules violation
Rich Felker [Sat, 2 Jul 2011 02:40:00 +0000 (22:40 -0400)]
fix dlopen UB due to longjmp/volatile rules violation

12 years agores_search symbol, aliased to res_query for now (better than nothing)
Rich Felker [Fri, 1 Jul 2011 03:12:07 +0000 (23:12 -0400)]
res_search symbol, aliased to res_query for now (better than nothing)

12 years agosimple rpath support (no token expansion yet) for dynamic linker
Rich Felker [Fri, 1 Jul 2011 03:02:27 +0000 (23:02 -0400)]
simple rpath support (no token expansion yet) for dynamic linker

12 years agofill in junk in stropts.h
Rich Felker [Fri, 1 Jul 2011 00:23:24 +0000 (20:23 -0400)]
fill in junk in stropts.h

STREAMS are utterly useless as far as I can tell, but some software
was apparently broken by the presence of stropts.h but lack of macros
it's supposed to define...

12 years agofix error in previous ld80 fpclassify commit
Rich Felker [Thu, 30 Jun 2011 20:37:51 +0000 (16:37 -0400)]
fix error in previous ld80 fpclassify commit

12 years agocatch invalid ld80 bit patterns and treat them as nan
Rich Felker [Thu, 30 Jun 2011 20:31:43 +0000 (16:31 -0400)]
catch invalid ld80 bit patterns and treat them as nan

this should not be necessary - the invalid bit patterns cannot be
created except through type punning. however, some broken gnu software
is passing them to printf and triggering dangerous stack-smashing, so
let's catch them anyway...

12 years agofix logic in __fwriting
Rich Felker [Thu, 30 Jun 2011 17:27:08 +0000 (13:27 -0400)]
fix logic in __fwriting

12 years agoadd and consolidate nasty stdio_ext junk
Rich Felker [Thu, 30 Jun 2011 16:44:48 +0000 (12:44 -0400)]
add and consolidate nasty stdio_ext junk

hopefully this resolves the rest of the issues with hideously
nonportable hacks in programs that use gnulib.

12 years agoimplement the nonstandard GNU function fpurge
Rich Felker [Thu, 30 Jun 2011 15:42:33 +0000 (11:42 -0400)]
implement the nonstandard GNU function fpurge

this is a really ugly and backwards function, but its presence will
prevent lots of broken gnulib software from trying to define its own
version of fpurge and thereby failing to build or worse.

12 years agofix buffer overrun in getgrent code when there are no group members
Rich Felker [Thu, 30 Jun 2011 12:11:06 +0000 (08:11 -0400)]
fix buffer overrun in getgrent code when there are no group members

12 years agoposix_memalign should fail if size is not a multiple of sizeof(void *)
Rich Felker [Wed, 29 Jun 2011 23:26:30 +0000 (19:26 -0400)]
posix_memalign should fail if size is not a multiple of sizeof(void *)

12 years agoavoid errors in ucontext.h when no feature test macros are defined
Rich Felker [Wed, 29 Jun 2011 21:13:01 +0000 (17:13 -0400)]
avoid errors in ucontext.h when no feature test macros are defined

12 years agolocking support for random() prng
Rich Felker [Wed, 29 Jun 2011 19:29:52 +0000 (15:29 -0400)]
locking support for random() prng

these interfaces are required to be thread-safe even though they are
not state-free. the random number sequence is shared across all
threads.

12 years agowork around linux bug in mprotect
Rich Felker [Wed, 29 Jun 2011 04:42:42 +0000 (00:42 -0400)]
work around linux bug in mprotect

per POSIX: The mprotect() function shall change the access protections
to be that specified by prot for those whole pages containing any part
of the address space of the process starting at address addr and
continuing for len bytes.

on the other hand, linux mprotect fails with EINVAL if the base
address and/or length is not page-aligned, so we have to align them
before making the syscall.

12 years agotextrel support, cheap and ugly
Rich Felker [Wed, 29 Jun 2011 04:29:08 +0000 (00:29 -0400)]
textrel support, cheap and ugly

12 years agorelease notes for 0.7.11
Rich Felker [Wed, 29 Jun 2011 02:06:58 +0000 (22:06 -0400)]
release notes for 0.7.11

12 years agoreclaim the memory wasted by dynamic linking for use by malloc
Rich Felker [Tue, 28 Jun 2011 23:40:14 +0000 (19:40 -0400)]
reclaim the memory wasted by dynamic linking for use by malloc

12 years agouse type directives for fenv asm functions
Rich Felker [Tue, 28 Jun 2011 18:41:41 +0000 (14:41 -0400)]
use type directives for fenv asm functions

12 years agouse load address from elf header if possible
Rich Felker [Tue, 28 Jun 2011 18:20:41 +0000 (14:20 -0400)]
use load address from elf header if possible

this is mostly useless for shared libs (though it could help for
prelink-like purposes); the intended use case is for adding support
for calling the dynamic linker directly to run a program, as in:
./libc.so ./a.out foo

this usage is not yet supported.

12 years agomake dynamic linker relocate the main program image last, after all libs
Rich Felker [Tue, 28 Jun 2011 18:13:51 +0000 (14:13 -0400)]
make dynamic linker relocate the main program image last, after all libs

prior to this change, copy relocations for initialized pointer
variables would not reflect the relocated contents of the pointer.

12 years agofix a few bugs from last dynamic linking build system commit
Rich Felker [Tue, 28 Jun 2011 12:27:38 +0000 (08:27 -0400)]
fix a few bugs from last dynamic linking build system commit

some cruft was left and DESTDIR was not being used correctly.

12 years agominor updates to INSTALL documentation
Rich Felker [Tue, 28 Jun 2011 02:34:47 +0000 (22:34 -0400)]
minor updates to INSTALL documentation

12 years agocleanup shared library build system to be more $HOME-local-install friendly
Rich Felker [Tue, 28 Jun 2011 01:38:11 +0000 (21:38 -0400)]
cleanup shared library build system to be more $HOME-local-install friendly

the path for the dynamic linker is now configurable, and failure to
install the symlink for it will not stop the build.

12 years agofurther fixup dlfcn.h
Rich Felker [Mon, 27 Jun 2011 05:02:28 +0000 (01:02 -0400)]
further fixup dlfcn.h

12 years agomatch LSB/glibc constants for dynamic loader
Rich Felker [Mon, 27 Jun 2011 05:01:19 +0000 (01:01 -0400)]
match LSB/glibc constants for dynamic loader

12 years agofix stale pointer issue in dynamic linker with dlopen
Rich Felker [Mon, 27 Jun 2011 02:39:34 +0000 (22:39 -0400)]
fix stale pointer issue in dynamic linker with dlopen

12 years agodon't leave the lock held on dlopen failure..
Rich Felker [Mon, 27 Jun 2011 02:09:32 +0000 (22:09 -0400)]
don't leave the lock held on dlopen failure..

12 years agoadd RTLD_DEFAULT support
Rich Felker [Mon, 27 Jun 2011 01:50:01 +0000 (21:50 -0400)]
add RTLD_DEFAULT support

12 years agoin dlopen: don't use null pointer
Rich Felker [Mon, 27 Jun 2011 01:36:44 +0000 (21:36 -0400)]
in dlopen: don't use null pointer

deps can be null if a library has no dependencies (such as libc itself)

12 years agofix resolving symbols in objects loaded in RTLD_LOCAL mode
Rich Felker [Mon, 27 Jun 2011 01:21:04 +0000 (21:21 -0400)]
fix resolving symbols in objects loaded in RTLD_LOCAL mode

basically we temporarily make the library and all its dependencies
part of the global namespace but only for the duration of performing
relocations, then return them to their former state.

12 years agoexperimental dlopen/dlsym and dynlink changes needed to support them
Rich Felker [Sun, 26 Jun 2011 23:23:28 +0000 (19:23 -0400)]
experimental dlopen/dlsym and dynlink changes needed to support them

12 years agotype directives for x86_64 math asm
Rich Felker [Sun, 26 Jun 2011 21:41:34 +0000 (17:41 -0400)]
type directives for x86_64 math asm

12 years agoerror handling in dynamic linking
Rich Felker [Sun, 26 Jun 2011 21:39:17 +0000 (17:39 -0400)]
error handling in dynamic linking

some of the code is not yet used, and is in preparation for dlopen
which needs to be able to handle failure loading libraries without
terminating the program.

12 years agofix useless use of potentially-uninitialized mode variable in sem_open
Rich Felker [Sun, 26 Jun 2011 20:34:05 +0000 (16:34 -0400)]
fix useless use of potentially-uninitialized mode variable in sem_open

12 years agoeliminate OOB array hacks in malloc
Rich Felker [Sun, 26 Jun 2011 20:12:43 +0000 (16:12 -0400)]
eliminate OOB array hacks in malloc

12 years agouse .type directives for math asm (needed for dynamic linking to work)
Rich Felker [Sun, 26 Jun 2011 19:52:37 +0000 (15:52 -0400)]
use .type directives for math asm (needed for dynamic linking to work)

12 years agofix some symbol resolution issues in dynamic linker
Rich Felker [Sun, 26 Jun 2011 02:36:21 +0000 (22:36 -0400)]
fix some symbol resolution issues in dynamic linker

1. search was wrongly beginning with lib itself rather than dso head
2. inconsistent resolution of function pointers for functions in plt

12 years agofix dynamic linker issue in musl-gcc wrapper
Rich Felker [Sat, 25 Jun 2011 22:57:17 +0000 (18:57 -0400)]
fix dynamic linker issue in musl-gcc wrapper