Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-06-25 | XSI search.h API implementation by Szabolcs Nagy | Rich Felker | 4 | -0/+352 | |
2011-06-25 | handle library paths better (ignore empty path components, etc.) | Rich Felker | 1 | -3/+5 | |
2011-06-25 | fix possible (questionable) strict aliasing violations and ptr arith | Rich Felker | 1 | -3/+3 | |
2011-06-25 | const correctness in mq_notify | Rich Felker | 1 | -1/+1 | |
why did gcc allow this invalid assignment to compile in the first place? | |||||
2011-06-25 | proper path searching for dynamic linker | Rich Felker | 1 | -14/+38 | |
first, use $LD_LIBRARY_PATH unless suid. if that fails, read path from /etc/ld-musl-$ARCH.path and fallback to a builtin default. | |||||
2011-06-25 | optimize opendir using O_CLOEXEC | Rich Felker | 1 | -2/+1 | |
2011-06-25 | discard dso descriptors after performing relocations | Rich Felker | 1 | -0/+12 | |
eventually (once dlopen exists) this behavior will be conditional on dlopen/dlsym not being reachable. | |||||
2011-06-25 | keep track of which dsos have been relocated | Rich Felker | 1 | -0/+1 | |
2011-06-23 | prepare support for LD_LIBRARY_PATH (checking suid/sgid safety) | Rich Felker | 1 | -0/+6 | |
the use of this test will be much stricter than glibc and other typical implementations; the environment will not be honored whatsoever unless the program is confirmed non-suid/sgid by the aux vector the kernel passed in. no fallback to slow syscall-based checking is used if the kernel fails to provide the information; we simply assume the worst (suid) in this case and refuse to honor environment. | |||||
2011-06-23 | initial commit of prng implementation by Szabolcs Nagy | Rich Felker | 2 | -12/+107 | |
2011-06-19 | make ldso asm more uniform with rest of codebase (no unnecessary suffixes) | Rich Felker | 1 | -12/+12 | |
2011-06-19 | x86_64: ensure that dtor pointer passed to app is 0 so it won't be used | Rich Felker | 1 | -0/+1 | |
leaving it uninitialized caused unpredictable crashes or worse due to calling an indeterminate function pointer. | |||||
2011-06-18 | dynamic linker 64bit fix: hash table entries are always 32bit | Rich Felker | 1 | -2/+2 | |
2011-06-18 | experimental dynamic linker! | Rich Felker | 3 | -0/+412 | |
some notes: - library search path is hard coded - x86_64 code is untested and may not work - dlopen/dlsym is not yet implemented - relocations in read-only memory won't work | |||||
2011-06-18 | fix memory leak on failure in realpath | Rich Felker | 1 | -4/+4 | |
2011-06-16 | duplicate re_nsub in LSB/glibc ABI compatible location | Rich Felker | 1 | -1/+1 | |
2011-06-14 | restore use of .type in asm, but use modern @function (vs %function) | Rich Felker | 20 | -0/+29 | |
this seems to be necessary to make the linker accept the functions in a shared library (perhaps to generate PLT entries?) strictly speaking libc-internal asm should not need it. i might clean that up later. | |||||
2011-06-14 | fix race condition in pthread_kill | Rich Felker | 3 | -1/+8 | |
if thread id was reused by the kernel between the time pthread_kill read it from the userspace pthread_t object and the time of the tgkill syscall, a signal could be sent to the wrong thread. the tgkill syscall was supposed to prevent this race (versus the old tkill syscall) but it can't; it can only help in the case where the tid is reused in a different process, but not when the tid is reused in the same process. the only solution i can see is an extra lock to prevent threads from exiting while another thread is trying to pthread_kill them. it should be very very cheap in the non-contended case. | |||||
2011-06-14 | run dtors before taking the exit-lock in pthread exit | Rich Felker | 1 | -2/+2 | |
previously a long-running dtor could cause pthread_detach to block. | |||||
2011-06-14 | minor locking optimizations | Rich Felker | 2 | -2/+2 | |
2011-06-13 | avoid 64bit warnings when using pointers as entropy for temp names | Rich Felker | 2 | -2/+4 | |
2011-06-13 | fix sigset macro for 64-bit systems (<< was overflowing due to wrong type) | Rich Felker | 1 | -1/+1 | |
2011-06-13 | remove all .size and .type directives for functions from the asm | Rich Felker | 18 | -52/+0 | |
these are useless and have caused problems for users trying to build with non-gnu tools like tcc's assembler. | |||||
2011-06-13 | remove old useless timezone.s file (unused) | Rich Felker | 1 | -27/+0 | |
2011-06-13 | fix wrong type for wcsrchr argument 2 | Rich Felker | 1 | -1/+1 | |
2011-06-13 | x86_64 fenv support (untested; at least known to build successfully) | Rich Felker | 1 | -0/+88 | |
2011-06-13 | fix fesetround - it was writing to status word instead of control word | Rich Felker | 1 | -3/+8 | |
2011-06-12 | floating point environment, untested | Rich Felker | 6 | -0/+144 | |
at present the i386 code does not support sse floating point, which is not part of the standard i386 abi. while it may be desirable to support it later, doing so will reduce performance and require some tricks to probe if sse support is present. this first commit is i386-only, but it should be trivial to port the asm to x86_64. | |||||
2011-06-12 | malloc: cast size down to int in bin_index functions | Rich Felker | 1 | -2/+2 | |
even if size_t was 32-bit already, the fact that the value was unsigned and that gcc is too stupid to figure out it would be positive as a signed quantity (due to the immediately-prior arithmetic and conditionals) results in gcc compiling the integer-to-float conversion as zero extension to 64 bits followed by an "fildll" (64 bit) instruction rather than a simple "fildl" (32 bit) instruction on x86. reportedly fildll is very slow on certain p4-class machines; even if not, the new code is slightly smaller. | |||||
2011-06-12 | another return value fix for mktemp... | Rich Felker | 1 | -1/+2 | |
2011-06-08 | it's called getgrgid_r, not getgruid_r... | Rich Felker | 1 | -1/+1 | |
2011-06-08 | implement psignal and psiginfo | Rich Felker | 2 | -0/+20 | |
2011-06-07 | mq names without leading / have impl-def behavior; allowing them is easier | Rich Felker | 2 | -9/+2 | |
2011-06-07 | define MQ_PRIO_MAX | Rich Felker | 1 | -1/+1 | |
2011-06-07 | mq send/recv functions are cancellation points | Rich Felker | 2 | -2/+2 | |
2011-06-07 | implement mq_notify | Rich Felker | 1 | -2/+65 | |
2011-06-07 | add support for POSIX message queues, except mq_notify | Rich Felker | 10 | -0/+99 | |
2011-06-06 | use volatile pointers for intentional-crash code. | Rich Felker | 2 | -3/+3 | |
2011-06-06 | fix handling of d_name in struct dirent | Rich Felker | 2 | -7/+5 | |
basically there are 3 choices for how to implement this variable-size string member: 1. C99 flexible array member: breaks using dirent.h with pre-C99 compiler. 2. old way: length-1 string: generates array bounds warnings in caller. 3. new way: length-NAME_MAX string. no problems, simplifies all code. of course the usable part in the pointer returned by readdir might be shorter than NAME_MAX+1 bytes, but that is allowed by the standard and doesn't hurt anything. | |||||
2011-06-05 | safety fix for glob's vla usage: disallow patterns longer than PATH_MAX | Rich Felker | 1 | -0/+2 | |
this actually inadvertently disallows some valid patterns with redundant / or * characters, but it's better than allowing unbounded vla allocation. eventually i'll write code to move the pattern to the stack and eliminate redundancy to ensure that it fits in PATH_MAX at the beginning of glob. this would also allow it to be modified in place for passing to fnmatch rather than copied at each level of recursion. | |||||
2011-06-05 | eliminate (harmless in this case) vla usage in fnmatch.c | Rich Felker | 1 | -1/+1 | |
2011-05-30 | implement pthread_[sg]etconcurrency. | Rich Felker | 2 | -0/+15 | |
there is a resource limit of 0 bits to store the concurrency level requested. thus any positive level exceeds a resource limit, resulting in EAGAIN. :-) | |||||
2011-05-30 | implement uselocale function (minimal) | Rich Felker | 2 | -0/+12 | |
2011-05-29 | add useless, obsolescent function ulimit | Rich Felker | 1 | -0/+19 | |
2011-05-29 | fix backwards posix_spawn file action order | Rich Felker | 5 | -6/+10 | |
2011-05-28 | add accidentally-omitted file needed for posix_spawn file actions | Rich Felker | 1 | -0/+10 | |
2011-05-28 | add file actions support to posix_spawn | Rich Felker | 5 | -2/+85 | |
2011-05-28 | posix_spawn: honor POSIX_SPAWN_SETSIGDEF flag | Rich Felker | 1 | -1/+3 | |
2011-05-28 | initial implementation of posix_spawn | Rich Felker | 12 | -0/+151 | |
file actions are not yet implemented, but everything else should be mostly complete and roughly correct. | |||||
2011-05-26 | modernize coding style in sjlj asm | Rich Felker | 4 | -35/+35 | |