Commit Graph

1431 Commits

Author SHA1 Message Date
Rich Felker a9555a995c fix another ppoll issue (missing sigset_t size argument) 2012-09-10 18:37:27 -04:00
Rich Felker 1701e4f3d4 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.
2012-09-10 18:16:11 -04:00
Rich Felker 3b5e69052a fix ppoll with null timeout argument 2012-09-10 18:05:02 -04:00
Rich Felker 2c1cd2399a 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...
2012-09-10 15:30:52 -04:00
Rich Felker c87584a3e9 add setdomainname syscall, fix getdomainname (previously a stub) 2012-09-09 16:50:20 -04:00
Rich Felker a660180c6a mincore syscall wrapper 2012-09-09 16:37:19 -04:00
Rich Felker 2416c63b81 fix up lfs64 junk for preadv/pwritev 2012-09-09 16:33:47 -04:00
Rich Felker ea544bfe80 add preadv/pwritev syscall wrappers 2012-09-09 16:29:33 -04:00
Rich Felker 743546a933 fix typo introduced in poll.h 2012-09-09 16:27:26 -04:00
Rich Felker 141138c41b add linux ppoll syscall wrapper 2012-09-09 16:09:29 -04:00
Rich Felker 3d939be2e3 reenable sync_file_range; should no longer break on mips 2012-09-09 14:58:55 -04:00
Rich Felker 9a3bbce447 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.
2012-09-09 14:53:06 -04:00
Rich Felker 5e3c243d8d 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).
2012-09-09 01:29:19 -04:00
Rich Felker 328810d325 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.
2012-09-09 01:01:19 -04:00
Rich Felker be48e22b42 fix mips syscall_cp_asm code (saved register usage) 2012-09-09 00:59:30 -04:00
Rich Felker 21419914c5 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.
2012-09-09 00:55:31 -04:00
Rich Felker 41c5ee50ee 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.
2012-09-08 22:48:22 -04:00
Rich Felker 208eb584ef 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.
2012-09-08 22:43:14 -04:00
Rich Felker fe0260400e add acct syscall source file, omitted in last syscalls commit 2012-09-08 22:23:03 -04:00
Rich Felker 6cf8bfdb64 add acct, accept4, setns, and dup3 syscalls (linux extensions)
based on patch by Justin Cormack
2012-09-08 20:22:08 -04:00
Rich Felker b10d0230c1 add IPPROTO_HOPOPTS to in.h 2012-09-08 19:52:51 -04:00
Rich Felker f59cedb549 add IPPROTO_MAX to in.h 2012-09-08 19:43:34 -04:00
Rich Felker 695a04fc25 fix redundant _Noreturn def in err.h
not sure why this was missed in the earlier commit.
2012-09-08 18:16:33 -04:00
Rich Felker 455f96857f remove all remaining redundant __restrict/__inline/_Noreturn defs 2012-09-08 17:14:52 -04:00
Rich Felker b7afd7a7ec sysmacros major/minor: result should have type unsigned int, not dev_t 2012-09-08 02:42:27 -04:00
Rich Felker 997ba92a0f add linux tee syscall 2012-09-08 01:03:01 -04:00
Rich Felker 00e6bbcc05 add linux sync_file_range syscall 2012-09-08 00:58:25 -04:00
Rich Felker b72db3d1ed move fallocate syscall wrapper to linux-specific syscalls dir 2012-09-08 00:41:11 -04:00
Rich Felker 90f770523f add linux readahead syscall 2012-09-08 00:40:37 -04:00
Rich Felker adb88e773b 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.
2012-09-08 00:33:04 -04:00
Rich Felker 5271ff46b9 fix broken fallocate syscall in posix_fallocate
the syscall takes an extra flag argument which should be zero to meet
the POSIX requirements.
2012-09-08 00:26:46 -04:00
Rich Felker 231b9d1880 add timerfd interfaces (untested) 2012-09-08 00:21:02 -04:00
Rich Felker f0f17b5b70 add stdnoreturn.h (C11)
features.h contains the fallback logic for pre-C11 compilers
2012-09-08 00:14:25 -04:00
Rich Felker 3cd084bb03 TCP_* is in the reserved namespace for tcp.h; make use of that 2012-09-07 23:56:32 -04:00
Rich Felker 6951110368 remove unneeded judgemental commentary from ftw.h 2012-09-07 23:55:11 -04:00
Rich Felker c1a9658bd1 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.
2012-09-07 23:13:55 -04:00
Rich Felker 9f65796c35 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.
2012-09-07 12:18:14 -04:00
Rich Felker b9bb8f67bb 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.
2012-09-07 00:48:25 -04:00
Rich Felker 780aede419 fix constraint violation in ftw
void* does not implicitly convert to function pointer types.
2012-09-06 23:57:15 -04:00
Rich Felker c4ea0e3f8e 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.
2012-09-06 23:49:44 -04:00
Rich Felker 0c05bd3a9c 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.
2012-09-06 23:34:10 -04:00
Rich Felker 453059571c fix invalid implicit pointer conversion in gnulib-compat functions 2012-09-06 23:27:55 -04:00
Rich Felker c8ea985748 add _Noreturn function attribute, with fallback for pre-C11 GNUC 2012-09-06 23:12:27 -04:00
Rich Felker ac5d085691 dladdr should be available under _BSD_SOURCE as well as _GNU_SOURCE 2012-09-06 22:58:34 -04:00
Rich Felker 400c5e5c83 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.
2012-09-06 22:44:55 -04:00
Rich Felker bac03cdde1 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.
2012-09-06 20:28:42 -04:00
Rich Felker 594318fd3d 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.
2012-09-06 20:25:48 -04:00
Rich Felker fcfba99503 fix broken ttyname[_r] (failure to null-terminate result) 2012-09-06 20:21:13 -04:00
Rich Felker fb247fafa0 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.
2012-09-02 12:46:06 -04:00
Rich Felker 3f62f76cab 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.
2012-09-01 00:20:24 -04:00