musl
11 years agorevert regex "cleanup" that seems unjustified and may break backtracking
Rich Felker [Fri, 1 Feb 2013 06:10:59 +0000 (01:10 -0500)]
revert regex "cleanup" that seems unjustified and may break backtracking

it's not clear to me at the moment whether the code that was removed
(and which is now being re-added) is needed, but it's far from being a
no-op, and i don't want to risk breaking regex in this release.

11 years agoSOL_TCP is nonstandard and not in the reserved namespace
Rich Felker [Thu, 31 Jan 2013 05:49:53 +0000 (00:49 -0500)]
SOL_TCP is nonstandard and not in the reserved namespace

alternatively, we could define it in sys/socket.h since SO* is
reserved there, and tcp.h includes sys/socket.h in extensions mode.

note that SOL_TCP is simply wrong and it's only here for compatibility
with broken applications. the correct argument to pass for setting TCP
socket options is IPPROTO_TCP, which of course has the same value as
SOL_TCP but works everywhere.

11 years agofix tm_to_time logic for number of days in november
Rich Felker [Sat, 26 Jan 2013 16:40:40 +0000 (11:40 -0500)]
fix tm_to_time logic for number of days in november

report/patch by Hiltjo Posthuma <hiltjo@codemadness.org>

11 years agoadd RTLD_NODELETE flag for dlopen
Rich Felker [Thu, 24 Jan 2013 03:18:45 +0000 (22:18 -0500)]
add RTLD_NODELETE flag for dlopen

this is a trivial no-op, because dlclose never deletes libraries. thus
we might as well have it in the header in case some application wants
it, since we're already providing it anyway.

11 years agoadd support for RTLD_NOLOAD to dlopen
Rich Felker [Thu, 24 Jan 2013 03:07:45 +0000 (22:07 -0500)]
add support for RTLD_NOLOAD to dlopen

based on patch by Pierre Carrier <pierre@gcarrier.fr> that just added
the flag constant, but with minimal additional code so that it
actually works as documented. this is a nonstandard option but some
major software (reportedly, Firefox) uses it and it was easy to add
anyway.

11 years agofix regression in dlsym: rejection of special RTLD_* handles as invalid
Rich Felker [Thu, 24 Jan 2013 01:21:36 +0000 (20:21 -0500)]
fix regression in dlsym: rejection of special RTLD_* handles as invalid

11 years agouse a common definition of NULL as 0L for C and C++
Rich Felker [Sat, 19 Jan 2013 01:35:26 +0000 (20:35 -0500)]
use a common definition of NULL as 0L for C and C++

the historical mess of having different definitions for C and C++
comes from the historical C definition as (void *)0 and the fact that
(void *)0 can't be used in C++ because it does not convert to other
pointer types implicitly. however, using plain 0 in C++ exposed bugs
in C++ programs that call variadic functions with NULL as an argument
and (wrongly; this is UB) expect it to arrive as a null pointer. on
64-bit machines, the high bits end up containing junk. glibc dodges
the issue by using a GCC extension __null to define NULL; this is
observably non-conforming because a conforming application could
observe the definition of NULL via stringizing and see that it is
neither an integer constant expression with value zero nor such an
expression cast to void.

switching to 0L eliminates the issue and provides compatibility with
broken applications, since on all musl targets, long and pointers have
the same size, representation, and argument-passing convention. we
could maintain separate C and C++ definitions of NULL (i.e. just use
0L on C++ and use (void *)0 on C) but after careful analysis, it seems
extremely difficult for a C program to even determine whether NULL has
integer or pointer type, much less depend in subtle, unintentional
ways, on whether it does. C89 seems to have no way to make the
distinction. on C99, the fact that (int)(void *)0 is not an integer
constant expression, along with subtle VLA/sizeof semantics, can be
used to make the distinction, but many compilers are non-conforming
and give the wrong result to this test anyway. on C11, _Generic can
trivially make the distinction, but it seems unlikely that code
targetting C11 would be so backwards in caring which definition of
NULL an implementation uses.

as such, the simplest path of using the same definition for NULL in
both C and C++ was chosen. the #undef directive was also removed so
that the compiler can catch and give a warning or error on
redefinition if buggy programs have defined their own versions of
NULL prior to inclusion of standard headers.

11 years agofix warning building dynlink.c stub for static libc
Rich Felker [Wed, 16 Jan 2013 16:49:00 +0000 (11:49 -0500)]
fix warning building dynlink.c stub for static libc

struct dso was not defined in this case, and it's not needed in the
code that was using it anyway; void pointers work just as well.

11 years agofix bug in dladdr that prevented resolving addresses in the PLT
Rich Felker [Wed, 16 Jan 2013 16:47:35 +0000 (11:47 -0500)]
fix bug in dladdr that prevented resolving addresses in the PLT

11 years agoremove unused "params" related code from regex
Szabolcs Nagy [Tue, 15 Jan 2013 00:05:29 +0000 (01:05 +0100)]
remove unused "params" related code from regex

some structs and functions had reference to the params
feature of tre that is not used by the code anymore

11 years agoMerge remote-tracking branch 'nsz/math'
Rich Felker [Mon, 14 Jan 2013 23:04:49 +0000 (18:04 -0500)]
Merge remote-tracking branch 'nsz/math'

11 years agoregex: remove an unused local variable from regexec
Szabolcs Nagy [Sun, 13 Jan 2013 23:06:49 +0000 (00:06 +0100)]
regex: remove an unused local variable from regexec

pos_start local variable is not used in tre_tnfa_run_backtrack

11 years agoin crypt_des change unnecessary union keybuf into unsigned char[]
Szabolcs Nagy [Sun, 13 Jan 2013 22:54:48 +0000 (23:54 +0100)]
in crypt_des change unnecessary union keybuf into unsigned char[]

original FreeSec code accessed keybuf as uint32* and uint8* as well
(incorrectly), this got fixed with an union, but then it seems the
uint32* access is no longer needed so the code can be simplified

11 years agocrypt: fix the prototype of md5_sum, sha256_sum and sha512_sum
Szabolcs Nagy [Sun, 13 Jan 2013 22:18:32 +0000 (23:18 +0100)]
crypt: fix the prototype of md5_sum, sha256_sum and sha512_sum

the internal sha2 hash sum functions had incorrect array size
in the prototype for the message digest argument, fixed by
using pointer so it is not misleading

11 years agofix lio_listio return value in LIO_WAIT mode
Szabolcs Nagy [Sun, 13 Jan 2013 22:15:39 +0000 (23:15 +0100)]
fix lio_listio return value in LIO_WAIT mode

11 years agoadd MOD_TAI to sys/timex.h and update STA_RONLY
Szabolcs Nagy [Sat, 12 Jan 2013 18:14:34 +0000 (19:14 +0100)]
add MOD_TAI to sys/timex.h and update STA_RONLY

11 years agoadd SWAP_FLAG_DISCARD to sys/swap.h
Szabolcs Nagy [Sat, 12 Jan 2013 18:13:59 +0000 (19:13 +0100)]
add SWAP_FLAG_DISCARD to sys/swap.h

11 years agoadd mount flags to sys/mount.h
Szabolcs Nagy [Sat, 12 Jan 2013 17:25:13 +0000 (18:25 +0100)]
add mount flags to sys/mount.h

added various MS_*, MNT_*, UMOUNT_* flags following the linux
headers, with one exception: MS_NOUSER is defined as (1U<<31)
instead of (1<<31) which invokes undefined behaviour

the S_* flags were removed following glibc

11 years agoadd IN_EXCL_UNLINK to sys/inotify.h
Szabolcs Nagy [Sat, 12 Jan 2013 17:24:45 +0000 (18:24 +0100)]
add IN_EXCL_UNLINK to sys/inotify.h

11 years agoadd EPOLLWAKEUP flag to sys/epoll.h
Szabolcs Nagy [Sat, 12 Jan 2013 16:29:45 +0000 (17:29 +0100)]
add EPOLLWAKEUP flag to sys/epoll.h

11 years agoadd RB_SW_SUSPEND and RB_KEXEC to sys/reboot.h
Szabolcs Nagy [Sat, 12 Jan 2013 14:37:00 +0000 (15:37 +0100)]
add RB_SW_SUSPEND and RB_KEXEC to sys/reboot.h

using the glibc names for the magic constants of the linux reboot syscall

11 years agoadd missing mmap options and madvices to bits/mman.h based on linux headers
Szabolcs Nagy [Fri, 11 Jan 2013 01:07:40 +0000 (02:07 +0100)]
add missing mmap options and madvices to bits/mman.h based on linux headers

11 years agoadd missing EXTPROC flag to bits/termios.h
Szabolcs Nagy [Fri, 11 Jan 2013 01:05:19 +0000 (02:05 +0100)]
add missing EXTPROC flag to bits/termios.h

mips and powerpc already had this termios flag defined

11 years agoadd missing F_GETOWNER_UIDS flag to bits/fcntl.h
Szabolcs Nagy [Fri, 11 Jan 2013 01:03:45 +0000 (02:03 +0100)]
add missing F_GETOWNER_UIDS flag to bits/fcntl.h

11 years agoadd missing EHWPOISON to bits/errno.h
Szabolcs Nagy [Fri, 11 Jan 2013 01:00:14 +0000 (02:00 +0100)]
add missing EHWPOISON to bits/errno.h

it was already defined for mips, but was missing from other archs

11 years agoadd missing ptrace requests and options to sys/ptrace.h
Szabolcs Nagy [Fri, 11 Jan 2013 00:58:54 +0000 (01:58 +0100)]
add missing ptrace requests and options to sys/ptrace.h

11 years agoadd missing multicast socket options to netinet/in.h
Szabolcs Nagy [Fri, 11 Jan 2013 00:54:53 +0000 (01:54 +0100)]
add missing multicast socket options to netinet/in.h

based on linux headers add the missing MCAST_* options
under _GNU_SOURCE as they are not in the reserved namespace
(this api was originally specified by RFC 3678)

11 years agoadd missing protocol families to sys/socket.h
Szabolcs Nagy [Fri, 11 Jan 2013 00:46:09 +0000 (01:46 +0100)]
add missing protocol families to sys/socket.h

missing protocol families based on current linux headers:
PF_RDS, PF_LLC, PF_CAN, PF_TIPC, PF_NFC

11 years agofix another case of cloexec/nonblock flags not matching arch values
Rich Felker [Thu, 10 Jan 2013 22:57:30 +0000 (17:57 -0500)]
fix another case of cloexec/nonblock flags not matching arch values

11 years agocheck for invalid handles in dlsym/dlclose
Rich Felker [Thu, 10 Jan 2013 19:05:40 +0000 (14:05 -0500)]
check for invalid handles in dlsym/dlclose

this is wasteful and useless from a standpoint of sane programs, but
it is required by the standard, and the current requirements were
upheld with the closure of Austin Group issue #639:
http://austingroupbugs.net/view.php?id=639

11 years agomath: erf and erfc cleanup math
Szabolcs Nagy [Mon, 7 Jan 2013 22:54:13 +0000 (23:54 +0100)]
math: erf and erfc cleanup

common part of erf and erfc was put in a separate function which
saved some space and the new code is using unsigned arithmetics

erfcf had a bug: for some inputs in [7.95,8] the result had
more than 60ulp error: in expf(-z*z - 0.5625f) the argument
must be exact but not enough lowbits of z were zeroed,
-SET_FLOAT_WORD(z, ix&0xfffff000);
+SET_FLOAT_WORD(z, ix&0xffffe000);
fixed the issue

11 years agosetjmp.h: add struct tag for sigjmp_buf (GCC C++ compatibility)
rofl0r [Fri, 4 Jan 2013 17:47:17 +0000 (18:47 +0100)]
setjmp.h: add struct tag for sigjmp_buf (GCC C++ compatibility)

the anonymous struct typedef with array notation breaks with
GCC in C++ mode:

error: non-local function 'static<anonymous struct>
(& boost::signal_handler::jump_buffer())[1]' uses anonymous type

this is a known GCC issue, as search results for that error msg
suggest.

since this is hard to work around in the calling C++ code, a
fix in musl is preferable.

11 years agoadd legacy header values.h
rofl0r [Fri, 4 Jan 2013 12:05:42 +0000 (13:05 +0100)]
add legacy header values.h

some programs (procps, babl) expect it, and it doesn't seem to
cause any harm to just add it.
it's small and straightforward.

since math.h also defines MAXFLOAT, we undef it in both places,
before defining it.

11 years agotime.h: add BSD aliases for otherwise internal struct tm members
rofl0r [Fri, 4 Jan 2013 11:57:15 +0000 (12:57 +0100)]
time.h: add BSD aliases for otherwise internal struct tm members

11 years agowait.h: add linux specific, thread-related waitpid() flags
rofl0r [Tue, 1 Jan 2013 07:07:26 +0000 (08:07 +0100)]
wait.h: add linux specific, thread-related waitpid() flags

these flags are needed in order to be able to handle lwp id's
which the kernel returns after clone() calls for new threads
via ptrace(PTRACE_GETEVENTMSG).

fortunately, they're the same for all archs and in the reserved
namespace.

11 years ago__assert_fail(): remove _Noreturn, to get proper stacktraces
rofl0r [Tue, 1 Jan 2013 06:59:11 +0000 (07:59 +0100)]
__assert_fail(): remove _Noreturn, to get proper stacktraces

for _Noreturn functions, gcc generates code that trashes the
stack frame, and so it makes it impossible to inspect the causes
of an assert error in gdb.

abort() is not affected (i have not yet investigated why).

11 years agoadd some new-ish IPPROTO constants that were missing
Rich Felker [Wed, 2 Jan 2013 01:19:20 +0000 (20:19 -0500)]
add some new-ish IPPROTO constants that were missing

11 years agomath: bessel cleanup (jn.c and jnf.c)
Szabolcs Nagy [Tue, 1 Jan 2013 21:20:45 +0000 (22:20 +0100)]
math: bessel cleanup (jn.c and jnf.c)

both jn and yn functions had integer overflow issues for large
and small n

to handle these issues nm1 (== |n|-1) is used instead of n and -n
in the code and some loops are changed to make sure the iteration
counter does not overflow

(another solution could be to use larger integer type or even double
but that has more size and runtime cost, on x87 loading int64_t or
even uint32_t into an fpu register is more than two times slower than
loading int32_t, and using double for n slows down iteration logic)

yn(-1,0) now returns inf

posix2008 specifies that on overflow and at +-0 all y0,y1,yn functions
return -inf, this is not consistent with math when n<0 odd integer in yn
(eg. when x->0, yn(-1,x)->inf, but historically yn(-1,0) seems to be
special cased and returned -inf)

some threshold values in jnf and ynf were fixed that seems to be
incorrectly copy-pasted from the double version

11 years agomath: bessel cleanup (j1.c and j1f.c)
Szabolcs Nagy [Tue, 1 Jan 2013 21:11:28 +0000 (22:11 +0100)]
math: bessel cleanup (j1.c and j1f.c)

a common code path in j1 and y1 was factored out so the resulting
object code is a bit smaller

unsigned int arithmetics is used for bit manipulation

j1(-inf) now returns 0 instead of -0

an incorrect threshold in the common code of j1f and y1f got fixed
(this caused spurious overflow and underflow exceptions)

the else branch in pone and pzero functions are fixed
(so code analyzers dont warn about uninitialized values)

11 years agomath: bessel cleanup (j0.c and j0f.c)
Szabolcs Nagy [Tue, 1 Jan 2013 20:59:46 +0000 (21:59 +0100)]
math: bessel cleanup (j0.c and j0f.c)

a common code path in j0 and y0 was factored out so the resulting
object code is smaller

unsigned int arithmetics is used for bit manipulation

the logic of j0 got a bit simplified (x < 1 case was handled
separately with a bit higher precision than now, but there are large
errors in other domains anyway so that branch has been removed)

some threshold values were adjusted in j0f and y0f

11 years agoexpose [v]asprintf under _BSD_SOURCE
Rich Felker [Fri, 28 Dec 2012 20:39:33 +0000 (15:39 -0500)]
expose [v]asprintf under _BSD_SOURCE

reported/requested by Strake; simplified from the provided patch

11 years agoalign EPOLL_* flags with fcntl O_* flag definitions, which vary by arch
Rich Felker [Fri, 28 Dec 2012 01:44:44 +0000 (20:44 -0500)]
align EPOLL_* flags with fcntl O_* flag definitions, which vary by arch

the old definitions were wrong on some archs. actually, EPOLL_NONBLOCK
probably should not even be defined; it is not accepted by the kernel
and it's not clear to me whether it has any use at all, even if it did
work. this issue should be revisited at some point, but I'm leaving it
in place for now in case some applications reference it.

11 years agofix alignment logic in strlcpy
Rich Felker [Thu, 27 Dec 2012 04:48:02 +0000 (23:48 -0500)]
fix alignment logic in strlcpy

11 years agoadd linux extension POLLRDHUP to poll.h
Rich Felker [Wed, 26 Dec 2012 21:55:49 +0000 (16:55 -0500)]
add linux extension POLLRDHUP to poll.h

the POLL prefix is in the reserved namespace for poll.h, so no feature
test macro checks are needed.

11 years agofix reference to libc struct in static tls init code
Rich Felker [Wed, 26 Dec 2012 02:51:11 +0000 (21:51 -0500)]
fix reference to libc struct in static tls init code

libc is the macro, __libc is the internal symbol, but under some
configurations on old/broken compilers, the symbol might not actually
exist and the libc macro might instead use __libc_loc() to obtain
access to the object.

11 years agoclean up and fix logic for making mmap fail on invalid/unsupported offsets
Rich Felker [Thu, 20 Dec 2012 17:16:02 +0000 (12:16 -0500)]
clean up and fix logic for making mmap fail on invalid/unsupported offsets

the previous logic was assuming the kernel would give EINVAL when
passed an invalid address, but instead with MAP_FIXED it was giving
EPERM, as it considered this an attempt to map over kernel memory.
instead of trying to get the kernel to do the rigth thing, the new
code just handles the error in userspace.

I have also cleaned up the code to use a single mask to check for
invalid low bits and unsupported high bits, so it's simpler and more
clearly correct. the old code was actually wrong for sizeof(long)
smaller than sizeof(off_t) but not equal to 4; now it should be
correct for all possibilities.

for 64-bit systems, the low-bits test is new and extraneous (the
kernel should catch the error anyway when the mmap2 syscall is not
used), but it's cheap anyway. if this is an issue, the OFF_MASK
definition could be tweaked to omit the low bits when SYS_mmap2 is not
defined.

11 years agomerge a few fixes by sh4rm4
Rich Felker [Wed, 19 Dec 2012 18:07:37 +0000 (13:07 -0500)]
merge a few fixes by sh4rm4

11 years agosocket.h: add SO_(SND/RCV)BUFFORCE to generic block
rofl0r [Wed, 19 Dec 2012 18:02:22 +0000 (19:02 +0100)]
socket.h: add SO_(SND/RCV)BUFFORCE to generic block

11 years agomath: more correct tgmath.h type cast logic
Szabolcs Nagy [Wed, 19 Dec 2012 09:57:54 +0000 (10:57 +0100)]
math: more correct tgmath.h type cast logic

__IS_FP is a portable integer constant expression now
(uses that unsigned long long is larger than float)
the result casting logic should work now on all compilers
supporting typeof

11 years agoadd inet_network (required for wine)
rofl0r [Wed, 19 Dec 2012 06:32:38 +0000 (07:32 +0100)]
add inet_network (required for wine)

11 years agox86_64/bits/signal.h: fix typo in REG_CSGSFS
rofl0r [Wed, 19 Dec 2012 05:09:57 +0000 (06:09 +0100)]
x86_64/bits/signal.h: fix typo in REG_CSGSFS

11 years agolink.h: expose glibc/svr4 dynlinker debugging glue
rofl0r [Wed, 19 Dec 2012 04:08:07 +0000 (05:08 +0100)]
link.h: expose glibc/svr4 dynlinker debugging glue

this is already implemented in the dynliker (see struct debug),
but was not exposed.
we need it to do so to make wine happy...

11 years agomath: new type cast logic in tgmath.h
Szabolcs Nagy [Wed, 19 Dec 2012 03:05:30 +0000 (04:05 +0100)]
math: new type cast logic in tgmath.h

* return type logic is simplified a bit and fixed (see below)
* return type of conj and cproj were wrong on int arguments
* added comments about the pending issues
(usually we don't have comments in public headers but this is
not the biggest issue with tgmath.h)

casting the result to the right type cannot be done in c99
(c11 _Generic can solve this but that is not widely supported),
so the typeof extension of gcc is used and that the ?: operator
has special semantics when one of the operands is a null
pointer constant

the standard is very strict about the definition of null
pointer constants so typeof with ?: is still not enough so
compiler specific workaround is used for now

on gcc '!1.0' is a null pointer constant so we can use the old
__IS_FP logic (eventhough it's non-standard)

on clang (and on gcc as well) 'sizeof(void)-1' is a null
pointer constant so we can use
 !(sizeof(*(0?(int*)0:(void*)__IS_FP(x)))-1)
(this is non-standard as well), the old logic is used by
default and this new one on clang

11 years agomath: use 0x1p-120f and 0x1p120f for tiny and huge values
Szabolcs Nagy [Sun, 16 Dec 2012 19:28:43 +0000 (20:28 +0100)]
math: use 0x1p-120f and 0x1p120f for tiny and huge values

previously 0x1p-1000 and 0x1p1000 was used for raising inexact
exception like x+tiny (when x is big) or x+huge (when x is small)

the rational is that these float consts are large enough
(0x1p-120 + 1 raises inexact even on ld128 which has 113 mant bits)
and float consts maybe smaller or easier to load on some platforms
(on i386 this reduced the object file size by 4bytes in some cases)

11 years agomath: tgammal.c fixes
Szabolcs Nagy [Sun, 16 Dec 2012 19:22:17 +0000 (20:22 +0100)]
math: tgammal.c fixes

this is not a full rewrite just fixes to the special case logic:
+-0 and non-integer x<INT_MIN inputs incorrectly raised invalid
exception and for +-0 the return value was wrong

so integer test and odd/even test for negative inputs are changed
and a useless overflow test was removed

11 years agomath: tanh.c cleanup similar to sinh, cosh
Szabolcs Nagy [Sun, 16 Dec 2012 18:52:42 +0000 (19:52 +0100)]
math: tanh.c cleanup similar to sinh, cosh

comments are kept in the double version of the function

compared to fdlibm/freebsd we partition the domain into one
more part and select different threshold points:
now the [log(5/3)/2,log(3)/2] and [log(3)/2,inf] domains
should have <1.5ulp error
(so only the last bit may be wrong, assuming good exp, expm1)

(note that log(3)/2 and log(5/3)/2 are the points where tanh
changes resolution: tanh(log(3)/2)=0.5, tanh(log(5/3)/2)=0.25)

for some x < log(5/3)/2 (~=0.2554) the error can be >1.5ulp
but it should be <2ulp
(the freebsd code had some >2ulp errors in [0.255,1])

even with the extra logic the new code produces smaller
object files

11 years agomath: sinh.c cleanup similar to the cosh one
Szabolcs Nagy [Sun, 16 Dec 2012 18:49:55 +0000 (19:49 +0100)]
math: sinh.c cleanup similar to the cosh one

comments are kept in the double version of the function

11 years agomath: finished cosh.c cleanup
Szabolcs Nagy [Sun, 16 Dec 2012 18:23:51 +0000 (19:23 +0100)]
math: finished cosh.c cleanup

changed the algorithm: large input is not special cased
(when exp(-x) is small compared to exp(x))
and the threshold values are reevaluated
(fdlibm code had a log(2)/2 cutoff for which i could not find
justification, log(2) seems to be a better threshold and this
was verified empirically)

the new code is simpler, makes smaller binaries and should be
faster for common cases

the old comments were removed as they are no longer true for the
new algorithm and the fdlibm copyright was dropped as well
because there is no common code or idea with the original anymore
except for trivial ones.

11 years agomath: x86_64 version of expl, fixed some comments in the i386 version
Szabolcs Nagy [Sun, 16 Dec 2012 16:30:29 +0000 (17:30 +0100)]
math: x86_64 version of expl, fixed some comments in the i386 version

11 years agomath: move x86_64 exp2l implementation to exp2l.s from expl.s
Szabolcs Nagy [Sun, 16 Dec 2012 16:28:18 +0000 (17:28 +0100)]
math: move x86_64 exp2l implementation to exp2l.s from expl.s

11 years agofix breakage in ldd (failure to print library load address)
Rich Felker [Sun, 16 Dec 2012 04:34:08 +0000 (23:34 -0500)]
fix breakage in ldd (failure to print library load address)

11 years agoMerge remote-tracking branch 'nsz/math'
Rich Felker [Sat, 15 Dec 2012 05:49:09 +0000 (00:49 -0500)]
Merge remote-tracking branch 'nsz/math'

11 years agoadd some missing macros to sys/shm.h
Rich Felker [Sat, 15 Dec 2012 05:43:27 +0000 (00:43 -0500)]
add some missing macros to sys/shm.h

these are not specified in the standard, but in the reserved
namespace, so there is no problem with defining them unconditionally.

11 years agomath: fix i386/expl.s with more precise x*log2e
Szabolcs Nagy [Fri, 14 Dec 2012 17:29:56 +0000 (18:29 +0100)]
math: fix i386/expl.s with more precise x*log2e

with naive exp2l(x*log2e) the last 12bits of the result was incorrect
for x with large absolute value

with hi + lo = x*log2e is caluclated to 128 bits precision and then
  expl(x) = exp2l(hi) + exp2l(hi) * f2xm1(lo)
this gives <1.5ulp measured error everywhere in nearest rounding mode

11 years agofixed tgmath.h for functions with integral result
Szabolcs Nagy [Fri, 14 Dec 2012 11:49:35 +0000 (12:49 +0100)]
fixed tgmath.h for functions with integral result

in tgmath.h the return values are casted to the appropriate
floating-point type (if the compiler supports gcc __typeof__),
this is wrong in case of ilogb, lrint, llrint, lround, llround
which do not need such cast

11 years agoadd missing flags in sys/timerfd.h
Rich Felker [Thu, 13 Dec 2012 19:15:11 +0000 (14:15 -0500)]
add missing flags in sys/timerfd.h

11 years agotreat invalid C as an error even if warnings aren't enabled.
Rich Felker [Wed, 12 Dec 2012 04:28:31 +0000 (23:28 -0500)]
treat invalid C as an error even if warnings aren't enabled.

11 years agomath: add a non-dummy tgamma implementation
Szabolcs Nagy [Wed, 12 Dec 2012 00:43:43 +0000 (01:43 +0100)]
math: add a non-dummy tgamma implementation

uses the lanczos approximation method with the usual tweaks.
same parameters were selected as in boost and python.
(avoides some extra work and special casing found in boost
so the precision is not that good: measured error is <5ulp for
positive x and <10ulp for negative)

an alternative lgamma_r implementation is also given in the same
file which is simpler and smaller than the current one, but less
precise so it's ifdefed out for now.

11 years agomath: cosh cleanup
Szabolcs Nagy [Wed, 12 Dec 2012 00:39:23 +0000 (01:39 +0100)]
math: cosh cleanup

do fabs by hand, don't check for nan and inf separately

11 years agomath: fix comment in __rem_pio2f.c
Szabolcs Nagy [Wed, 12 Dec 2012 00:28:22 +0000 (01:28 +0100)]
math: fix comment in __rem_pio2f.c

11 years agomath: add empty __invtrigl.s to i386 and x86_64
Szabolcs Nagy [Tue, 11 Dec 2012 23:16:32 +0000 (00:16 +0100)]
math: add empty __invtrigl.s to i386 and x86_64

__invtrigl is not needed when acosl, asinl, atanl have asm
implementations

11 years agomath: clean up inverse trigonometric functions
Szabolcs Nagy [Tue, 11 Dec 2012 22:56:59 +0000 (23:56 +0100)]
math: clean up inverse trigonometric functions

modifications:
* avoid unsigned->signed conversions
* removed various volatile hacks
* use FORCE_EVAL when evaluating only for side-effects
* factor out R() rational approximation instead of manual inline
* __invtrigl.h now only provides __invtrigl_R, __pio2_hi and __pio2_lo
* use 2*pio2_hi, 2*pio2_lo instead of pi_hi, pi_lo

otherwise the logic is not changed, long double versions will
need a revisit when a genaral long double cleanup happens

11 years agomath: rewrite inverse hyperbolic functions to be simpler/smaller
Szabolcs Nagy [Tue, 11 Dec 2012 22:06:20 +0000 (23:06 +0100)]
math: rewrite inverse hyperbolic functions to be simpler/smaller

modifications:
* avoid unsigned->signed integer conversion
* do not handle special cases when they work correctly anyway
* more strict threshold values (0x1p26 instead of 0x1p28 etc)
* smaller code, cleaner branching logic
* same precision as the old code:
    acosh(x) has up to 2ulp error in [1,1.125]
    asinh(x) has up to 1.6ulp error in [0.125,0.5], [-0.5,-0.125]
    atanh(x) has up to 1.7ulp error in [0.125,0.5], [-0.5,-0.125]

11 years agomath: remove long double version of bessel functions from math.h
Szabolcs Nagy [Tue, 11 Dec 2012 21:57:39 +0000 (22:57 +0100)]
math: remove long double version of bessel functions from math.h

j0l,j1l,jnl,y0l,j1l,jnl are gnu extensions, bsd and posix do not
have them.
noone seems to use them and there is no plan to implement them any
time soon so we shouldn't declare them in math.h.

11 years agomake CMPLX macros available in complex.h in non-c11 mode as well
Szabolcs Nagy [Tue, 11 Dec 2012 21:44:36 +0000 (22:44 +0100)]
make CMPLX macros available in complex.h in non-c11 mode as well

11 years agofix double errno-decoding in the old-kernel fallback path of pipe2
Rich Felker [Tue, 11 Dec 2012 14:38:38 +0000 (09:38 -0500)]
fix double errno-decoding in the old-kernel fallback path of pipe2

this bug seems to have caused any failure by pipe2 on such systems to
set errno to 1, rather than the proper error code.

11 years agofix regressions in app compatibility from previous sys/ipc.h changes
Rich Felker [Tue, 11 Dec 2012 02:36:12 +0000 (21:36 -0500)]
fix regressions in app compatibility from previous sys/ipc.h changes

despite glibc using __key and __seq rather than key and seq, some
applications, notably busybox, assume the names are key and seq unless
glibc is being used. and the names key and seq are really the ones
that _should_ be exposed when not attempting to present a
standards-conforming namespace; apps should not be using names that
begin with double-underscore. thus, the optimal fix is to use key and
seq as the actual names of the members when in bsd/gnu source profile,
and define macros for __key and __seq that redirect to plain key and
seq.

11 years agodocument self-synchronized destruction issue for stdio locking
Rich Felker [Mon, 10 Dec 2012 23:31:39 +0000 (18:31 -0500)]
document self-synchronized destruction issue for stdio locking

11 years agosyscall() declaration belongs in unistd.h, not sys/syscall.h
Rich Felker [Mon, 10 Dec 2012 21:40:45 +0000 (16:40 -0500)]
syscall() declaration belongs in unistd.h, not sys/syscall.h

traditionally, both BSD and GNU systems have it this way.
sys/syscall.h is purely syscall number macros. presently glibc exposes
the syscall declaration in unistd.h only with _GNU_SOURCE, but that
does not reflect historical practice.

11 years agoadd support for ctors/dtors on arm with modern gcc
Rich Felker [Sat, 8 Dec 2012 04:04:49 +0000 (23:04 -0500)]
add support for ctors/dtors on arm with modern gcc

a while back, gcc switched from using the old _init/_fini fragments
method for calling ctors and dtors on arm to the __init_array and
__fini_array method. unfortunately, on glibc this depends on ugly
hacks involving making libc.so a linker script and pulling parts of
libc into the main program binary. so I cheat a little bit, and just
write asm to iterate over the init/fini arrays from the _init/_fini
asm. the same approach could be used on any arch it's needed on, but
for now arm is the only one.

11 years agopage-align initial brk value used by malloc in shared libc
Rich Felker [Sat, 8 Dec 2012 03:33:11 +0000 (22:33 -0500)]
page-align initial brk value used by malloc in shared libc

this change fixes an obscure issue with some nonstandard kernels,
where the initial brk syscall returns a pointer just past the end of
bss rather than the beginning of a new page. in that case, the dynamic
linker has already reclaimed the space between the end of bss and the
page end for use by malloc, and memory corruption (allocating the same
memory twice) will occur when malloc again claims it on the first call
to brk.

11 years agoremove __arch_prctl alias for arch_prctl
Rich Felker [Fri, 7 Dec 2012 21:22:13 +0000 (16:22 -0500)]
remove __arch_prctl alias for arch_prctl

if there's evidence of any use for it, we can add it back later. as
far as I can tell, glibc has it only for internal use (and musl uses a
direct syscall in that case rather than a function call), not for
exposing it to applications.

11 years agomove new linux syscall wrapper functions to proper source dir
Rich Felker [Fri, 7 Dec 2012 21:17:16 +0000 (16:17 -0500)]
move new linux syscall wrapper functions to proper source dir

11 years agofix trailing whitespace issues that crept in here and there
Rich Felker [Fri, 7 Dec 2012 21:16:44 +0000 (16:16 -0500)]
fix trailing whitespace issues that crept in here and there

11 years agofix invalid read in aligned_alloc
Rich Felker [Fri, 7 Dec 2012 02:12:28 +0000 (21:12 -0500)]
fix invalid read in aligned_alloc

in case of mmap-obtained chunks, end points past the end of the
mapping and reading it may fault. since the value is not needed until
after the conditional, move the access to prevent invalid reads.

11 years agomove signal.h REG_* macros under _GNU_SOURCE protection
Rich Felker [Thu, 6 Dec 2012 22:05:19 +0000 (17:05 -0500)]
move signal.h REG_* macros under _GNU_SOURCE protection

they were accidentally exposed under just baseline POSIX, which is a
big namespace pollution issue. thankfully glibc only exposes them
under _GNU_SOURCE, not under any of its other options, so omitting
the pollution in the default _BSD_SOURCE profile does not hurt
application compatibility at all.

11 years agofix names of ipc_perm __key/__seq elements
Rich Felker [Thu, 6 Dec 2012 21:52:09 +0000 (16:52 -0500)]
fix names of ipc_perm __key/__seq elements

previously the names were exposed as key/seq with _GNU_SOURCE and
__ipc_perm_key/__ipc_perm/seq otherwise, whereas glibc always uses
__key and __seq for the names. thus, the old behavior never matched
glibc, and the new behavior always does, regardless of feature test
macros.

for now, i'm leaving the renaming here in sys/ipc.h where it's easy to
change globally for all archs, in case something turns out to be
wrong, but eventually the names could just be incorporated directly
into the bits headers for each arch and the renaming removed.

11 years agofix sigorset/sigandset: _NSIG/8 is the size in bytes
rofl0r [Thu, 6 Dec 2012 21:48:46 +0000 (22:48 +0100)]
fix sigorset/sigandset: _NSIG/8 is the size in bytes

11 years agofix F_DUPFD_CLOEXEC being defined twice
rofl0r [Thu, 6 Dec 2012 21:45:56 +0000 (22:45 +0100)]
fix F_DUPFD_CLOEXEC being defined twice

11 years agosigandset/sigorset: do not check for NULL pointers.
rofl0r [Thu, 6 Dec 2012 21:14:37 +0000 (22:14 +0100)]
sigandset/sigorset: do not check for NULL pointers.

that way it's consistent with existing sig* functions, and saves
some code size.

11 years agofixup sigandset
rofl0r [Thu, 6 Dec 2012 20:50:37 +0000 (21:50 +0100)]
fixup sigandset

11 years agofixup for fcntl.h changes
rofl0r [Thu, 6 Dec 2012 20:43:00 +0000 (21:43 +0100)]
fixup for fcntl.h changes

11 years agoadd arch_prctl syscall (amd64/x32 only)
rofl0r [Thu, 6 Dec 2012 20:07:19 +0000 (21:07 +0100)]
add arch_prctl syscall (amd64/x32 only)

11 years agoadd personality syscall
rofl0r [Thu, 6 Dec 2012 20:01:06 +0000 (21:01 +0100)]
add personality syscall

11 years agoadd sigandset and sigorset (needed for qemu)
rofl0r [Thu, 6 Dec 2012 19:51:32 +0000 (20:51 +0100)]
add sigandset and sigorset (needed for qemu)

11 years agoadd struct msgbuf to sys/msg.h
rofl0r [Thu, 6 Dec 2012 19:03:04 +0000 (20:03 +0100)]
add struct msgbuf to sys/msg.h

11 years agounistd.h: fix wrong type for gid_t argument
rofl0r [Thu, 6 Dec 2012 18:48:14 +0000 (19:48 +0100)]
unistd.h: fix wrong type for gid_t argument

the prototype is defined with const gid_t* rather than const gid_t[].
it was already correctly defined in grp.h.

11 years agoipc.h: fix gnu aliases for key and seq in struct ipc_perm
rofl0r [Thu, 6 Dec 2012 18:39:52 +0000 (19:39 +0100)]
ipc.h: fix gnu aliases for key and seq in struct ipc_perm

the macro was the wrong way round, additionally GNU defines
__ prefixed versions, which are used by qemu.

11 years agoadd obsolete futimesat()
rofl0r [Thu, 6 Dec 2012 18:29:38 +0000 (19:29 +0100)]
add obsolete futimesat()

this function is obsolete, however it's available as a syscall
and as such qemu userspace emulation tries to forward it to the
host kernel.

11 years agobits/signal.h: add register names for x86(_64)
rofl0r [Thu, 6 Dec 2012 17:14:45 +0000 (18:14 +0100)]
bits/signal.h: add register names for x86(_64)

glibc exposes them from ucontext.h.
since that header includes signal.h, it is safe to put them
into bits/signal.h, if _GNU_SOURCE is defined.