musl
11 years agofix remaining IPC_64 issue (shmctl)
Rich Felker [Sat, 22 Sep 2012 20:08:58 +0000 (16:08 -0400)]
fix remaining IPC_64 issue (shmctl)

also cleanup cruft related to the issue

11 years agofix IPC_64 in msgctl too
Rich Felker [Sat, 22 Sep 2012 12:04:17 +0000 (08:04 -0400)]
fix IPC_64 in msgctl too

11 years agofix broken semctl on systems that don't use IPC_64 flag
Rich Felker [Sat, 22 Sep 2012 12:02:42 +0000 (08:02 -0400)]
fix broken semctl on systems that don't use IPC_64 flag

not tested on mips and arm; they may still be broken. x86_64 should be
ok now.

11 years agooffer REALGCC variable to configure musl-gcc wrapper at runtime
Rich Felker [Fri, 21 Sep 2012 17:47:26 +0000 (13:47 -0400)]
offer REALGCC variable to configure musl-gcc wrapper at runtime

this is useful when the underlying gcc is already a wrapper, which is
the case at least on some uclibc-based system images. it's also useful
for running an older/newer/nondefault version of gcc.

11 years agoLFS64 alias for prlimit
Rich Felker [Fri, 21 Sep 2012 08:05:01 +0000 (04:05 -0400)]
LFS64 alias for prlimit

issue reported/requested by Justin Cormack

11 years agoadd clock_adjtime, remap_file_pages, and syncfs syscall wrappers
Rich Felker [Mon, 17 Sep 2012 02:26:23 +0000 (22:26 -0400)]
add clock_adjtime, remap_file_pages, and syncfs syscall wrappers

patch by Justin Cormack, with slight modification

11 years agorelease notes for 0.9.6
Rich Felker [Sun, 16 Sep 2012 04:10:08 +0000 (00:10 -0400)]
release notes for 0.9.6

11 years agoadd O_EXEC open mode
Rich Felker [Sun, 16 Sep 2012 03:45:41 +0000 (23:45 -0400)]
add O_EXEC open mode

the linux O_PATH mode provides the necessary semantics for both the
O_SEARCH and O_EXEC modes defined and required by POSIX 2008.

11 years agoadd crypt_md5 password hash
Rich Felker [Sun, 16 Sep 2012 03:41:07 +0000 (23:41 -0400)]
add crypt_md5 password hash

contributed by nsz

11 years agofix stupid bug in updating of O_ACCMODE for O_SEARCH support
Rich Felker [Sun, 16 Sep 2012 03:17:00 +0000 (23:17 -0400)]
fix stupid bug in updating of O_ACCMODE for O_SEARCH support

this could cause major bugs, and warrants a fix release right away.

11 years ago0.9.5 release notes
Rich Felker [Sat, 15 Sep 2012 07:38:20 +0000 (03:38 -0400)]
0.9.5 release notes

11 years agofix syscall asm constraints for arm too
Rich Felker [Sat, 15 Sep 2012 07:19:41 +0000 (03:19 -0400)]
fix syscall asm constraints for arm too

no problems were detected so far, but the constraints seem to have
been invalid just like the mips ones.

11 years agorevert low rounds-count limits in crypt hashes
Rich Felker [Sat, 15 Sep 2012 07:03:21 +0000 (03:03 -0400)]
revert low rounds-count limits in crypt hashes

it was determined in discussion that these kind of limits are not
sufficient to protect single-threaded servers against denial of
service attacks from maliciously large round counts. the time scales
simply vary too much; many users will want login passwords with rounds
counts on a scale that gives decisecond latency, while highly loaded
webservers will need millisecond latency or shorter.

still some limit is left in place; the idea is not to protect against
attacks, but to avoid the runtime of a single call to crypt being, for
all practical purposes, infinite, so that configuration errors can be
caught and fixed without bringing down whole systems. these limits are
very high, on the order of minute-long runtimes for modest systems.

11 years agoupdate mips cancellation-point syscall asm with 7-arg and r25 fixes
Rich Felker [Sat, 15 Sep 2012 06:24:12 +0000 (02:24 -0400)]
update mips cancellation-point syscall asm with 7-arg and r25 fixes

these fixes were already made to the normal syscall asm but not the
cancellation point version.

11 years agofix buggy constraints in mips inline syscall asm
Rich Felker [Sat, 15 Sep 2012 06:22:10 +0000 (02:22 -0400)]
fix buggy constraints in mips inline syscall asm

if same register is used for input/output, the compiler must be told.
otherwise is generates random junk code that clobbers the result. in
pure syscall-wrapper functions, nothing went wrong, but in more
complex functions where register allocation is non-trivial, things
broke badly.

11 years agoworkaround gcc got-register-reload performance problems in malloc
Rich Felker [Sat, 15 Sep 2012 03:52:51 +0000 (23:52 -0400)]
workaround gcc got-register-reload performance problems in malloc

with this patch, the malloc in libc.so built with -Os is nearly the
same speed as the one built with -O3. thus it solves the performance
regression that resulted from removing the forced -O3 when building
libc.so; now libc.so can be both small and fast.

11 years agoremove forced -O3 from shared library CFLAGS
Rich Felker [Sat, 15 Sep 2012 03:38:10 +0000 (23:38 -0400)]
remove forced -O3 from shared library CFLAGS

I originally added -O3 for shared libraries to counteract very bad
behavior by GCC when building PIC code: it insists on reloading the
GOT register in static functions that need it, even if the address of
the function is never leaked from the translation unit and all local
callers of the function have already loaded the GOT register. this
measurably degrades performance in a few key areas like malloc. the
inlining done at -O3 avoids the issue, but that's really not a good
reason for overriding the user's choice of optimization level.

11 years agouse vfork if possible in posix_spawn
Rich Felker [Fri, 14 Sep 2012 19:32:51 +0000 (15:32 -0400)]
use vfork if possible in posix_spawn

vfork is implemented as the fork syscall (with no atfork handlers run)
on archs where it is not available, so this change does not introduce
any change in behavior or regression for such archs.

11 years agostrsep is BSD|GNU, not GNU-only; it's originally from BSD
Rich Felker [Fri, 14 Sep 2012 01:01:30 +0000 (21:01 -0400)]
strsep is BSD|GNU, not GNU-only; it's originally from BSD

11 years agoadd O_PATH/O_SEARCH support to fcntl.h
Rich Felker [Fri, 14 Sep 2012 00:56:25 +0000 (20:56 -0400)]
add O_PATH/O_SEARCH support to fcntl.h

I'm not 100% sure that Linux's O_PATH meets the POSIX requirements for
O_SEARCH, but it seems very close if not perfect. and old kernels
ignore it, so O_SEARCH will still work as desired as long as the
caller has read permissions to the directory.

11 years agoimprove mips syscall asm constraints to use immediates, if possible
Rich Felker [Tue, 11 Sep 2012 06:23:47 +0000 (02:23 -0400)]
improve mips syscall asm constraints to use immediates, if possible

by using the "ir" constraint (immediate or register) and the carefully
constructed instruction addu $2,$0,%2 which can take either an
immediate or a register for %2, the new inline asm admits maximal
optimization with no register spillage to the stack when the compiler
successfully performs constant propagration, but still works by
allocating a register when the syscall number cannot be recognized as
a constant. in the case of syscalls with 0-3 arguments it barely
matters, but for 4-argument syscalls, using an immediate for the
syscall number avoids creating a stack frame for the syscall wrapper
function.

11 years agoeliminate assumption that mips syscall restart preserves r25
Rich Felker [Tue, 11 Sep 2012 02:43:22 +0000 (22:43 -0400)]
eliminate assumption that mips syscall restart preserves r25

all past and current kernel versions have done so, but there seems to
be no reason it's necessary and the sentiment from everyone I've asked
has been that we should not rely on it. instead, use r7 (an argument
register) which will necessarily be preserved upon syscall restart.
however this only works for 0-3 argument syscalls, and we have to
resort to the function call for 4-argument syscalls.

11 years agoasm for memmove on i386 and x86_64
Rich Felker [Mon, 10 Sep 2012 23:04:24 +0000 (19:04 -0400)]
asm for memmove on i386 and x86_64

for the sake of simplicity, I've only used rep movsb rather than
breaking up the copy for using rep movsd/q. on all modern cpus, this
seems to be fine, but if there are performance problems, there might
be a need to go back and add support for rep movsd/q.

11 years agofix another ppoll issue (missing sigset_t size argument)
Rich Felker [Mon, 10 Sep 2012 22:37:27 +0000 (18:37 -0400)]
fix another ppoll issue (missing sigset_t size argument)

11 years agoreenable word-at-at-time copying in memmove
Rich Felker [Mon, 10 Sep 2012 22:16:11 +0000 (18:16 -0400)]
reenable word-at-at-time copying in memmove

before restrict was added, memove called memcpy for forward copies and
used a byte-at-a-time loop for reverse copies. this was changed to
avoid invoking UB now that memcpy has an undefined copying order,
making memmove considerably slower.

performance is still rather bad, so I'll be adding asm soon.

11 years agofix ppoll with null timeout argument
Rich Felker [Mon, 10 Sep 2012 22:05:02 +0000 (18:05 -0400)]
fix ppoll with null timeout argument

11 years agoadd LIBCC (compiler runtime) logic and override to configure
Rich Felker [Mon, 10 Sep 2012 19:30:52 +0000 (15:30 -0400)]
add LIBCC (compiler runtime) logic and override to configure

this should both fix the issue with ARM needing -lgcc_eh (although
that's really a bug in the libgcc build process that's causing
considerable bloat, which should be fixed) and make it easier to build
musl using clang/llvm in place of gcc. unfortunately I don't know a
good way to detect and support pcc's -lpcc since it's not in pcc's
default library search path...

11 years agoadd setdomainname syscall, fix getdomainname (previously a stub)
Rich Felker [Sun, 9 Sep 2012 20:50:20 +0000 (16:50 -0400)]
add setdomainname syscall, fix getdomainname (previously a stub)

11 years agomincore syscall wrapper
Rich Felker [Sun, 9 Sep 2012 20:37:19 +0000 (16:37 -0400)]
mincore syscall wrapper

11 years agofix up lfs64 junk for preadv/pwritev
Rich Felker [Sun, 9 Sep 2012 20:33:47 +0000 (16:33 -0400)]
fix up lfs64 junk for preadv/pwritev

11 years agoadd preadv/pwritev syscall wrappers
Rich Felker [Sun, 9 Sep 2012 20:29:33 +0000 (16:29 -0400)]
add preadv/pwritev syscall wrappers

11 years agofix typo introduced in poll.h
Rich Felker [Sun, 9 Sep 2012 20:27:26 +0000 (16:27 -0400)]
fix typo introduced in poll.h

11 years agoadd linux ppoll syscall wrapper
Rich Felker [Sun, 9 Sep 2012 20:09:29 +0000 (16:09 -0400)]
add linux ppoll syscall wrapper

11 years agoreenable sync_file_range; should no longer break on mips
Rich Felker [Sun, 9 Sep 2012 18:58:55 +0000 (14:58 -0400)]
reenable sync_file_range; should no longer break on mips

11 years agoadd 7-arg syscall support for mips
Rich Felker [Sun, 9 Sep 2012 18:53:06 +0000 (14:53 -0400)]
add 7-arg syscall support for mips

no syscalls actually use that many arguments; the issue is that some
syscalls with 64-bit arguments have them ordered badly so that
breaking them into aligned 32-bit half-arguments wastes slots with
padding, and a 7th slot is needed for the last argument.

11 years agoinline syscall support for arm
Rich Felker [Sun, 9 Sep 2012 05:29:19 +0000 (01:29 -0400)]
inline syscall support for arm

most pure-syscall-wrapper functions compile to the smallest/simplest
code possible (save r7 ; load syscall # ; svc 0 ; restore r7 ; tail
call to __syscall_ret).

11 years agoinline syscall support for mips
Rich Felker [Sun, 9 Sep 2012 05:01:19 +0000 (01:01 -0400)]
inline syscall support for mips

this drastically reduces the size of some functions which are purely
syscall wrappers.

disabled for clang due to known bugs satisfying register constraints.

11 years agofix mips syscall_cp_asm code (saved register usage)
Rich Felker [Sun, 9 Sep 2012 04:59:30 +0000 (00:59 -0400)]
fix mips syscall_cp_asm code (saved register usage)

11 years agofix broken mips syscall asm
Rich Felker [Sun, 9 Sep 2012 04:55:31 +0000 (00:55 -0400)]
fix broken mips syscall asm

this code was using $10 to save the syscall number, but $10 is not
necessarily preserved by the kernel across syscalls. only mattered for
syscalls that got interrupted by a signal and restarted. as far as i
can tell, $25 is preserved by the kernel across syscalls.

11 years agodisable sync_file_range for now
Rich Felker [Sun, 9 Sep 2012 02:48:22 +0000 (22:48 -0400)]
disable sync_file_range for now

something is wrong with the logic for the argument layout, resulting
in compile errors on mips due to too many args to syscall... further
information on how it's supposed to work will be needed before it can
be reactivated.

11 years agosyscall organization overhaul
Rich Felker [Sun, 9 Sep 2012 02:43:14 +0000 (22:43 -0400)]
syscall organization overhaul

now public syscall.h only exposes __NR_* and SYS_* constants and the
variadic syscall function. no macros or inline functions, no
__syscall_ret or other internal details, no 16-/32-bit legacy syscall
renaming, etc. this logic has all been moved to src/internal/syscall.h
with the arch-specific parts in arch/$(ARCH)/syscall_arch.h, and the
amount of arch-specific stuff has been reduced to a minimum.

changes still need to be reviewed/double-checked. minimal testing on
i386 and mips has already been performed.

11 years agoadd acct syscall source file, omitted in last syscalls commit
Rich Felker [Sun, 9 Sep 2012 02:23:03 +0000 (22:23 -0400)]
add acct syscall source file, omitted in last syscalls commit

11 years agoadd acct, accept4, setns, and dup3 syscalls (linux extensions)
Rich Felker [Sun, 9 Sep 2012 00:22:08 +0000 (20:22 -0400)]
add acct, accept4, setns, and dup3 syscalls (linux extensions)

based on patch by Justin Cormack

11 years agoadd IPPROTO_HOPOPTS to in.h
Rich Felker [Sat, 8 Sep 2012 23:52:51 +0000 (19:52 -0400)]
add IPPROTO_HOPOPTS to in.h

11 years agoadd IPPROTO_MAX to in.h
Rich Felker [Sat, 8 Sep 2012 23:43:34 +0000 (19:43 -0400)]
add IPPROTO_MAX to in.h

11 years agofix redundant _Noreturn def in err.h
Rich Felker [Sat, 8 Sep 2012 22:16:33 +0000 (18:16 -0400)]
fix redundant _Noreturn def in err.h

not sure why this was missed in the earlier commit.

11 years agoremove all remaining redundant __restrict/__inline/_Noreturn defs
Rich Felker [Sat, 8 Sep 2012 21:14:52 +0000 (17:14 -0400)]
remove all remaining redundant __restrict/__inline/_Noreturn defs

11 years agosysmacros major/minor: result should have type unsigned int, not dev_t
Rich Felker [Sat, 8 Sep 2012 06:42:27 +0000 (02:42 -0400)]
sysmacros major/minor: result should have type unsigned int, not dev_t

11 years agoadd linux tee syscall
Rich Felker [Sat, 8 Sep 2012 05:03:01 +0000 (01:03 -0400)]
add linux tee syscall

11 years agoadd linux sync_file_range syscall
Rich Felker [Sat, 8 Sep 2012 04:58:25 +0000 (00:58 -0400)]
add linux sync_file_range syscall

11 years agomove fallocate syscall wrapper to linux-specific syscalls dir
Rich Felker [Sat, 8 Sep 2012 04:41:11 +0000 (00:41 -0400)]
move fallocate syscall wrapper to linux-specific syscalls dir

11 years agoadd linux readahead syscall
Rich Felker [Sat, 8 Sep 2012 04:40:37 +0000 (00:40 -0400)]
add linux readahead syscall

11 years agoadd fallocate (nonstandardized) function
Rich Felker [Sat, 8 Sep 2012 04:33:04 +0000 (00:33 -0400)]
add fallocate (nonstandardized) function

this is equivalent to posix_fallocate except that it has an extra
mode/flags argument to control its behavior, and stores the error in
errno rather than returning an error code.

11 years agofix broken fallocate syscall in posix_fallocate
Rich Felker [Sat, 8 Sep 2012 04:26:46 +0000 (00:26 -0400)]
fix broken fallocate syscall in posix_fallocate

the syscall takes an extra flag argument which should be zero to meet
the POSIX requirements.

11 years agoadd timerfd interfaces (untested)
Rich Felker [Sat, 8 Sep 2012 04:21:02 +0000 (00:21 -0400)]
add timerfd interfaces (untested)

11 years agoadd stdnoreturn.h (C11)
Rich Felker [Sat, 8 Sep 2012 04:14:25 +0000 (00:14 -0400)]
add stdnoreturn.h (C11)

features.h contains the fallback logic for pre-C11 compilers

11 years agoTCP_* is in the reserved namespace for tcp.h; make use of that
Rich Felker [Sat, 8 Sep 2012 03:56:32 +0000 (23:56 -0400)]
TCP_* is in the reserved namespace for tcp.h; make use of that

11 years agoremove unneeded judgemental commentary from ftw.h
Rich Felker [Sat, 8 Sep 2012 03:55:11 +0000 (23:55 -0400)]
remove unneeded judgemental commentary from ftw.h

11 years agodefault features: make musl usable without feature test macros
Rich Felker [Sat, 8 Sep 2012 03:13:55 +0000 (23:13 -0400)]
default features: make musl usable without feature test macros

the old behavior of exposing nothing except plain ISO C can be
obtained by defining __STRICT_ANSI__ or using a compiler option (such
as -std=c99) that predefines it. the new default featureset is POSIX
with XSI plus _BSD_SOURCE. any explicit feature test macros will
inhibit the default.

installation docs have also been updated to reflect this change.

11 years agoadd clang-compatible thread-pointer code for mips
Rich Felker [Fri, 7 Sep 2012 16:18:14 +0000 (12:18 -0400)]
add clang-compatible thread-pointer code for mips

clang does not presently support the "v" constraint we want to use to
get the result from $3, and trying to use register...__asm__("$3") to
do the same invokes serious compiler bugs. so for now, i'm working
around the issue with an extra temp register and putting $3 in the
clobber list instead of using it as output. when the bugs in clang are
fixed, this issue should be revisited to generate smaller/faster code
like what gcc gets.

11 years agocleanup src/linux and src/misc trees, etc.
Rich Felker [Fri, 7 Sep 2012 04:48:25 +0000 (00:48 -0400)]
cleanup src/linux and src/misc trees, etc.

previously, it was pretty much random which one of these trees a given
function appeared in. they have now been organized into:

src/linux: non-POSIX linux syscalls (possibly shard with other nixen)
src/legacy: various obsolete/legacy functions, mostly wrappers
src/misc: still mostly uncategorized; some misc POSIX, some nonstd
src/crypt: crypt hash functions

further cleanup will be done later.

11 years agofix constraint violation in ftw
Rich Felker [Fri, 7 Sep 2012 03:57:15 +0000 (23:57 -0400)]
fix constraint violation in ftw

void* does not implicitly convert to function pointer types.

11 years agoprovide loff_t for splice syscall
Rich Felker [Fri, 7 Sep 2012 03:49:44 +0000 (23:49 -0400)]
provide loff_t for splice syscall

so far, this is the only actual use of loff_t i've found. some
software, including glib, assumes loff_t must exist if splice exists;
this is a reasonable assumption since the official prototype for
splice uses loff_t, as it always works with 64-bit offsets regardless
of the selected libc off_t size. i'm using #define for now rather than
a typedef to make it easy to define in other headers if necessary
(like the LFS64 ugliness), but it may be necessary to add it to
alltypes.h eventually if other functions end up needing it.

11 years agofurther use of _Noreturn, for non-plain-C functions
Rich Felker [Fri, 7 Sep 2012 03:34:10 +0000 (23:34 -0400)]
further use of _Noreturn, for non-plain-C functions

note that POSIX does not specify these functions as _Noreturn, because
POSIX is aligned with C99, not the new C11 standard. when POSIX is
eventually updated to C11, it will almost surely give these functions
the _Noreturn attribute. for now, the actual _Noreturn keyword is not
used anyway when compiling with a c99 compiler, which is what POSIX
requires; the GCC __attribute__ is used instead if it's available,
however.

in a few places, I've added infinite for loops at the end of _Noreturn
functions to silence compiler warnings. presumably
__buildin_unreachable could achieve the same thing, but it would only
work on newer GCCs and would not be portable. the loops should have
near-zero code size cost anyway.

like the previous _Noreturn commit, this one is based on patches
contributed by philomath.

11 years agofix invalid implicit pointer conversion in gnulib-compat functions
Rich Felker [Fri, 7 Sep 2012 03:27:55 +0000 (23:27 -0400)]
fix invalid implicit pointer conversion in gnulib-compat functions

11 years agoadd _Noreturn function attribute, with fallback for pre-C11 GNUC
Rich Felker [Fri, 7 Sep 2012 03:12:27 +0000 (23:12 -0400)]
add _Noreturn function attribute, with fallback for pre-C11 GNUC

11 years agodladdr should be available under _BSD_SOURCE as well as _GNU_SOURCE
Rich Felker [Fri, 7 Sep 2012 02:58:34 +0000 (22:58 -0400)]
dladdr should be available under _BSD_SOURCE as well as _GNU_SOURCE

11 years agouse restrict everywhere it's required by c99 and/or posix 2008
Rich Felker [Fri, 7 Sep 2012 02:44:55 +0000 (22:44 -0400)]
use restrict everywhere it's required by c99 and/or posix 2008

to deal with the fact that the public headers may be used with pre-c99
compilers, __restrict is used in place of restrict, and defined
appropriately for any supported compiler. we also avoid the form
[restrict] since older versions of gcc rejected it due to a bug in the
original c99 standard, and instead use the form *restrict.

11 years agoremove dependency of wmemmove on wmemcpy direction
Rich Felker [Fri, 7 Sep 2012 00:28:42 +0000 (20:28 -0400)]
remove dependency of wmemmove on wmemcpy direction

unlike the memmove commit, this one should be fine to leave in place.
wmemmove is not performance-critical, and even if it were, it's
already copying whole 32-bit words at a time instead of bytes.

11 years agoremove dependency of memmove on memcpy direction
Rich Felker [Fri, 7 Sep 2012 00:25:48 +0000 (20:25 -0400)]
remove dependency of memmove on memcpy direction

this commit introduces a performance regression in many uses of
memmove, which will need to be addressed before the next release. i'm
making it as a temporary measure so that the restrict patch can be
committed without invoking undefined behavior when memmove calls
memcpy with overlapping regions.

11 years agofix broken ttyname[_r] (failure to null-terminate result)
Rich Felker [Fri, 7 Sep 2012 00:21:13 +0000 (20:21 -0400)]
fix broken ttyname[_r] (failure to null-terminate result)

11 years agoavoid "inline" in public headers for strict c89 compatibility
Rich Felker [Sun, 2 Sep 2012 16:46:06 +0000 (12:46 -0400)]
avoid "inline" in public headers for strict c89 compatibility

while musl itself requires a c99 compiler, some applications insist on
being compiled with c89 compilers, and use of "inline" in the headers
was breaking them. much of this had been avoided already by just
skipping the inline keyword in pre-c99 compilers or modes, but this
new unified solution is cleaner and may/should result in better code
generation in the default gcc configuration.

11 years agofix wrong type for poll.h nfds_t
Rich Felker [Sat, 1 Sep 2012 04:20:24 +0000 (00:20 -0400)]
fix wrong type for poll.h nfds_t

this should not break anything since the type should never be used
except as the argument type for poll.

11 years agofix missing statics in crypt_sha256 code
Rich Felker [Thu, 30 Aug 2012 12:27:08 +0000 (08:27 -0400)]
fix missing statics in crypt_sha256 code

11 years agoanti-DoS rounds count limits for blowfish and des crypt
Rich Felker [Wed, 29 Aug 2012 16:56:12 +0000 (12:56 -0400)]
anti-DoS rounds count limits for blowfish and des crypt

all of the limits could use review, but err on the side of avoiding
excessive rounds for now.

11 years agolimit sha512 rounds to similar runtime to sha256 limit
Rich Felker [Wed, 29 Aug 2012 16:44:27 +0000 (12:44 -0400)]
limit sha512 rounds to similar runtime to sha256 limit

these limits could definitely use review, but for now, i feel
consistency and erring on the side of preventing servers from getting
bogged down by excessively-slow user-provided settings (think
.htpasswd) are the best policy. blowfish should be updated to match.

11 years agoadd sha256/sha512 crypt
Rich Felker [Wed, 29 Aug 2012 16:41:29 +0000 (12:41 -0400)]
add sha256/sha512 crypt

based on versions sent to the list by nsz, with some simplification
and debloating. i'd still like to get them a bit smaller, or ideally
merge them into a single file with most of the code being shared, but
that can be done later.

11 years agoget rid of eh_frame bloat
Rich Felker [Wed, 29 Aug 2012 13:36:02 +0000 (09:36 -0400)]
get rid of eh_frame bloat

if needed for debugging, it will be output in the .debug_frame section
instead, where it is not part of the loaded program and where the
strip command is free to strip it.

11 years agofix bug caused by main app & libc having map set; cannot free them
Rich Felker [Mon, 27 Aug 2012 14:07:32 +0000 (10:07 -0400)]
fix bug caused by main app & libc having map set; cannot free them

11 years agodladdr support for dynamic linker (nonstandard extension)
Rich Felker [Mon, 27 Aug 2012 01:09:26 +0000 (21:09 -0400)]
dladdr support for dynamic linker (nonstandard extension)

based on patches submitted by boris brezillon. this commit also fixes
the issue whereby the main application and libc don't have the address
ranges of their mappings stored, which was theoretically a problem for
RTLD_NEXT support in dlsym; it didn't actually matter because libc
never calls dlsym, and it seemed to be doing the right thing (by
chance) for symbols in the main program as well.

11 years agoimplement "low hanging fruit" from C11
Rich Felker [Sun, 26 Aug 2012 03:15:13 +0000 (23:15 -0400)]
implement "low hanging fruit" from C11

based on Gregor's patch sent to the list. includes:
- stdalign.h
- removing gets in C11 mode
- adding aligned_alloc and adjusting other functions to use it
- adding 'x' flag to fopen for exclusive mode

11 years agoadd c11 quick_exit and at_quick_exit functions
Rich Felker [Sun, 26 Aug 2012 02:49:47 +0000 (22:49 -0400)]
add c11 quick_exit and at_quick_exit functions

11 years agofix bug in gnu hash lookup on dlsym(handle, name) lookups
Rich Felker [Sat, 25 Aug 2012 21:40:27 +0000 (17:40 -0400)]
fix bug in gnu hash lookup on dlsym(handle, name) lookups

wrong hash was being passed; just a copy/paste error. did not affect
lookups in the global namespace; this is probably why it was not
caught in testing.

11 years agoclean up search_vec usage for vdso
Rich Felker [Sat, 25 Aug 2012 21:31:59 +0000 (17:31 -0400)]
clean up search_vec usage for vdso

11 years agouse new search_vec function to find vdso in dynamic linker
Rich Felker [Sat, 25 Aug 2012 21:30:59 +0000 (17:30 -0400)]
use new search_vec function to find vdso in dynamic linker

11 years agoensure canary is setup if stack-prot libs are dlopen'd into non-ssp app
Rich Felker [Sat, 25 Aug 2012 21:24:46 +0000 (17:24 -0400)]
ensure canary is setup if stack-prot libs are dlopen'd into non-ssp app

previously, this usage could lead to a crash if the thread pointer was
still uninitialized, and otherwise would just cause the canary to be
zero (less secure).

11 years agoadd gnu hash support in the dynamic linker
Rich Felker [Sat, 25 Aug 2012 21:13:28 +0000 (17:13 -0400)]
add gnu hash support in the dynamic linker

based on the patches contributed by boris brezillon.

11 years agotype exposure fixes in sys/sem.h
Rich Felker [Fri, 24 Aug 2012 21:01:17 +0000 (17:01 -0400)]
type exposure fixes in sys/sem.h

11 years agostdio_ext.h needs to include stdio.h, at least to get FILE...
Rich Felker [Fri, 24 Aug 2012 20:16:30 +0000 (16:16 -0400)]
stdio_ext.h needs to include stdio.h, at least to get FILE...

11 years agofix missing uintXX_t in nameser.h
Rich Felker [Fri, 24 Aug 2012 19:55:36 +0000 (15:55 -0400)]
fix missing uintXX_t in nameser.h

11 years agofix dirent.h with _BSD_SOURCE
Rich Felker [Fri, 24 Aug 2012 18:23:16 +0000 (14:23 -0400)]
fix dirent.h with _BSD_SOURCE

11 years agooptimize legacy ffs function
Rich Felker [Thu, 23 Aug 2012 18:38:34 +0000 (14:38 -0400)]
optimize legacy ffs function

11 years agofix bug whereby most atexit-registered functions got skipped
Rich Felker [Mon, 20 Aug 2012 00:48:16 +0000 (20:48 -0400)]
fix bug whereby most atexit-registered functions got skipped

11 years agomake dynamic linker report all failures before exiting
Rich Felker [Sat, 18 Aug 2012 20:00:23 +0000 (16:00 -0400)]
make dynamic linker report all failures before exiting

before, only the first library that failed to load or symbol that
failed to resolve was reported, and then the dynamic linker
immediately exited. when attempting to fix a library compatibility
issue, this is about the worst possible behavior. now we print all
errors as they occur and exit at the very end if errors were
encountered.

11 years agorelease notes for 0.9.4
Rich Felker [Sat, 18 Aug 2012 03:51:00 +0000 (23:51 -0400)]
release notes for 0.9.4

11 years agoadd mips to supported arch list in INSTALL file
Rich Felker [Sat, 18 Aug 2012 03:45:21 +0000 (23:45 -0400)]
add mips to supported arch list in INSTALL file

11 years agocrt1 must align stack pointer on mips
Rich Felker [Sat, 18 Aug 2012 01:23:10 +0000 (21:23 -0400)]
crt1 must align stack pointer on mips

it's naturally aligned when entered with the kernel argv array, but if
ld.so has been invoked explicitly to run a program, the stack will not
be aligned due to having thrown away argv[0].

11 years agofix bug computing argc when invoking ld-musl-mips.so.1 progname ...
Rich Felker [Sat, 18 Aug 2012 00:02:37 +0000 (20:02 -0400)]
fix bug computing argc when invoking ld-musl-mips.so.1 progname ...

11 years agosplit up installation target
Rich Felker [Fri, 17 Aug 2012 23:32:24 +0000 (19:32 -0400)]
split up installation target

patch by Luca Barbato (lu_zero)

11 years agofix extremely rare but dangerous race condition in robust mutexes
Rich Felker [Fri, 17 Aug 2012 21:13:53 +0000 (17:13 -0400)]
fix extremely rare but dangerous race condition in robust mutexes

if new shared mappings of files/devices/shared memory can be made
between the time a robust mutex is unlocked and its subsequent removal
from the pending slot in the robustlist header, the kernel can
inadvertently corrupt data in the newly-mapped pages when the process
terminates. i am fixing the bug by using the same global vm lock
mechanism that was used to fix the race condition with unmapping
barriers after pthread_barrier_wait returns.