3926 Commits

Author SHA1 Message Date
Rich Felker
cd0ae687de revert regression in faccessat AT_EACCESS robustness
commit f9fb20b42da0e755d93de229a5a737d79a0e8f60 switched from using a
pipe for the result to conveying it via the child process exit status.
Alexander Monakov pointed out that the latter could fail if the
application is not expecting faccessat to produce a child and performs
a wait operation with __WCLONE or __WALL, and that it is not clear
whether it's guaranteed to work when SIGCHLD's disposition has been
set to SIG_IGN.

in addition, that commit introduced a bug that caused EACCES to be
produced instead of EBUSY due to an exit path that was overlooked when
the error channel was changed, and introduced a spurious retry loop
around the wait operation.
2018-02-05 11:31:11 -05:00
William Pitcock
7c709f2d4f store pthread stack guard sizes for pthread_getattr_np 2018-02-03 10:04:24 -05:00
Rich Felker
b3ae7beabb adjust dladdr dli_fbase definition to match other implementations
the Linux and FreeBSD man pages for dladdr document dli_fbase as the
"base address" of the library/module found. normally (e.g. AT_BASE)
the term "base" is used to denote the base address relative to which
p_vaddr addresses are interpreted; however in the case of dladdr's
Dl_info structure, existing implementations define it as the lowest
address of the mapping, which makes sense in the context of
determining which module's memory range the input address falls
within.

since this is a nonstandard interface provided to mimic one provided
by other implementations, adjust it to match their behavior.
2018-02-02 12:15:43 -05:00
Samuel Holland
6f03b61b46 getopt_long: accept prefix match of long options containing equals signs
Consider the first equals sign found in the option to be the delimiter
between it and its argument, even if it matches an equals sign in the
option name. This avoids consuming the equals sign, which would prevent
finding the argument. Instead, it forces a partial match of the part of
the option name before the equals sign.

Maintainer's note: GNU getopt_long does not explicitly document this
behavior, but it can be seen as a consequence of how partial matches
are specified, and at least GNU (bfd) ld is known to make use of it.
2018-01-31 22:04:50 -05:00
Samuel Holland
f1abc29bd0 fix getopt_long arguments to partial matches
If we find a partial option name match, we need to keep looking for
ambiguous/conflicting options. However, we need to remember the position
in the candidate argument to find its option-argument later, if there is
one. This fixes e.g. option "foobar" being given as "--fooba=baz".
2018-01-31 22:02:49 -05:00
William Pitcock
14edadb542 aarch64: fix mismatched type of ucontext_t uc_link member 2018-01-31 21:59:20 -05:00
Sam Clegg
2b2b3bdbe3
[WebAssembly] wasm.js: use explicity variable for main_module (#43) 2018-01-22 15:18:08 -08:00
Sam Clegg
c93b284f39
[WebAssembly] Add call to __wasm_call_ctors on startup if found (#42) 2018-01-18 12:36:54 -08:00
Sam Clegg
ac877172c1
[WebAssembly] Add stub for _Unwind_ForcedUnwind (#41) 2018-01-17 19:24:15 -08:00
Sam Clegg
b93ae1f7eb [WebAssembly] Add TODO 2018-01-17 14:38:49 -08:00
Sam Clegg
dbd68988a8 [WebAssembly] Update PAGE_SIZE for 64k
See: 910e3cace5/Semantics.md (resizing)
2018-01-16 17:23:54 -08:00
Sam Clegg
9064441edc
[WebAssembly] Support grow memory in brk() (#39) 2018-01-16 17:20:44 -08:00
JF Bastien
2c356f0738
Merge pull request #37 from jfbastien/implment_brk
[WebAssembly] wasm.js: implement brk
2018-01-13 11:30:36 -08:00
Sam Clegg
ddb01fbf88 handle oom 2018-01-13 09:23:30 -08:00
Sam Clegg
3ce20a9f57 [WebAssembly] wasm.js: implement brk 2018-01-13 08:47:42 -08:00
Sam Clegg
0c827335e4
[WebAssebmly] Implement a_cas() in arch/wasm32/atomic_arch.h (#36) 2018-01-13 08:46:40 -08:00
Rostislav Skudnov
1bc10ffeaa add _DIRENT_HAVE_D_* macros to dirent.h 2018-01-12 14:26:59 -05:00
Sam Clegg
0bf0e9f1fe
wasm.js: Add unwind symbols needed by libc++abi (#35) 2018-01-11 15:21:59 -08:00
Sam Clegg
4b17a3b40c
Rename wasm.syms -> libc.imports (#34) 2018-01-11 14:33:17 -08:00
Rich Felker
b64539ae06 fix printf alt-form octal with value 0 and no explicit precision
commit 78897b0dc00b7cd5c29af5e0b7eebf2396d8dce0 wrongly simplified
Dmitry Levin's original submitted patch fixing alt-form octal with the
zero flag and field width present, omitting the special case where the
value is zero. as a result, printf("%#o",0) wrongly prints "00" rather
than "0".

the logic prior to this commit was actually better, in that it was
aligned with how the alt-form flag (#) for printf is specified ("it
shall increase the precision"). at the time there was no good way to
avoid the zero flag issue with the old logic, but commit
167dfe9672c116b315e72e57a55c7769f180dffa added tracking of whether an
explicit precision was provided.

revert commit 78897b0dc00b7cd5c29af5e0b7eebf2396d8dce0 and switch to
using the explicit precision indicator for suppressing the zero flag.
2018-01-10 20:45:02 -05:00
Jens Gustedt
32482f61da revise the definition of multiple basic locks in the code
In all cases this is just a change from two volatile int to one.
2018-01-09 13:15:27 -05:00
Jens Gustedt
c4bc0b1a64 consistently use the LOCK an UNLOCK macros
In some places there has been a direct usage of the functions. Use the
macros consistently everywhere, such that it might be easier later on to
capture the fast path directly inside the macro and only have the call
overhead on the slow path.
2018-01-09 13:14:49 -05:00
Jens Gustedt
47d0bcd476 new lock algorithm with state and congestion count in one atomic int
A variant of this new lock algorithm has been presented at SAC'16, see
https://hal.inria.fr/hal-01304108. A full version of that paper is
available at https://hal.inria.fr/hal-01236734.

The main motivation of this is to improve on the safety of the basic lock
implementation in musl. This is achieved by squeezing a lock flag and a
congestion count (= threads inside the critical section) into a single
int. Thereby an unlock operation does exactly one memory
transfer (a_fetch_add) and never touches the value again, but still
detects if a waiter has to be woken up.

This is a fix of a use-after-free bug in pthread_detach that had
temporarily been patched. Therefore this patch also reverts

         c1e27367a9b26b9baac0f37a12349fc36567c8b6

This is also the only place where internal knowledge of the lock
algorithm is used.

The main price for the improved safety is a little bit larger code.

Under high congestion, the scheduling behavior will be different
compared to the previous algorithm. In that case, a successful
put-to-sleep may appear out of order compared to the arrival in the
critical section.
2018-01-09 13:10:12 -05:00
Hauke Mehrtens
b583c5d3b4 add additional uapi guards for Linux kernel header files
With Linux kernel 4.16 it will be possible to guard more parts of the
Linux header files from a libc. Make use of this in musl to guard all
the structures and other definitions from the Linux header files which
are also defined by the header files provided by musl. This will make
it possible to compile source files which include both the libc
headers and the kernel userspace headers.

This extends the definitions done in commit 04983f227238 ("make
netinet/in.h suppress clashing definitions from kernel headers")
2018-01-09 13:08:25 -05:00
Rich Felker
628cf979b2 fix iconv output of surrogate pairs in ucs2
in the unified code for handling utf-16 and ucs2 output, the check for
ucs2 wrongly looked at the source charset rather than the destination
charset.
2017-12-18 22:33:51 -05:00
Rich Felker
95c6044e2a add support for BOM-determined-endian UCS2, UTF-16, and UTF-32 to iconv
previously, the charset names without endianness specified were always
interpreted as big endian. unicode specifies that UTF-16 and UTF-32
have BOM-determined endianness if BOM is present, and are otherwise
big endian. since commit 5b546faa67544af395d6407553762b37e9711157
added support for stateful encodings, it is now possible to implement
BOM support via the conversion descriptor state.

for conversions to these charsets, the output is always big endian and
does not have a BOM.
2017-12-18 22:31:18 -05:00
Rich Felker
9d4d0ee41b add cp866 (dos cyrillic) to iconv 2017-12-18 19:58:41 -05:00
Rich Felker
54941eddfd update case mappings to unicode 10.0
the mapping tables and code are not automatically generated; they were
produced by comparing the output of towupper/towlower against the
mappings in the UCD, ignoring characters that were previously excluded
from case mappings or from alphabetic status (micro sign and circled
letters), and adding table entries or code for everything else
missing.

based very loosely on a patch by Reini Urban.
2017-12-18 19:34:21 -05:00
Rich Felker
c72c1c52bc update ctype tables to unicode 10.0 2017-12-18 18:05:23 -05:00
Rich Felker
d3f23337ee reformat ctype tables to be diff-friendly, match tool output
the new version of the code used to generate these tables forces a
newline every 256 entries, whereas at the time these files were
originally generated and committed, it only wrapped them at 80
columns. the new behavior ensures that localized changes to the
tables, if they are ever needed, will produce localized diffs.

commit d060edf6c569ba9df4b52d6bcd93edde812869c9 made the corresponding
changes to the iconv tables.
2017-12-18 18:01:42 -05:00
JF Bastien
51733cacc7
Merge pull request #32 from dschuff/nodejs
Support node.js in wasm loader
2017-12-15 15:04:24 -08:00
Derek Schuff
190dffd141 remove extra logging 2017-12-15 13:23:12 -08:00
Rich Felker
d5029bb88a fix endian errors in netinet/icmp6.h due to failure to include endian.h 2017-12-15 12:58:33 -05:00
Jo-Philipp Wich
14cec8678e fix endian errors in arpa/nameser.h due to failure to include endian.h 2017-12-14 23:36:47 -05:00
Nicholas Wilson
2a831786f0 remove unused explicit dependency rules for crti/crtn
notes by maintainer:

commit 2f853dd6b9a95d5b13ee8f9df762125e0588df5d added these rules
because the new system for handling arch-provided replacement files
introduced for out-of-tree builds did not apply to the crt tree.

commit 63bcda4d8f4074e9d92ae156afd0dced6e64eb65 later adapted the
makefile logic so that the crt and ldso trees go through the same
replacement logic as everything else, but failed to remove the
explicit rules that assumed the arch would always provide asm
replacements.

in addition to cleaning things up, removing these spurious rules
allows crti/crtn asm to be omitted by an arch (thereby using the empty
C files instead) if they are not needed.
2017-12-14 23:19:34 -05:00
Natanael Copa
eb7f93c4f6 use the name UTC instead of GMT for UTC timezone
notes by maintainer:

both C and POSIX use the term UTC to specify related functionality,
despite POSIX defining it as something more like UT1 or historical
(pre-UTC) GMT without leap seconds. neither specifies the associated
string for %Z. old choice of "GMT" violated principle of least
surprise for users and some applications/tests. use "UTC" instead.
2017-12-14 21:33:30 -05:00
Natanael Copa
3ec82877e7 fix sysconf for infinite rlimits
sysconf should return -1 for infinity, not LONG_MAX.
2017-12-14 21:25:10 -05:00
Nicholas Wilson
131276809f fix x32 unistd macros to report as ILP32 not LP64 2017-12-14 21:22:51 -05:00
Rich Felker
6430315683 fix data race in at_quick_exit
aside from theoretical arbitrary results due to UB, this could
practically cause unbounded overflow of static array if hit, but
hitting it depends on having more than 32 calls to at_quick_exit and
having them sufficiently often.
2017-12-14 18:54:54 -05:00
Derek Schuff
4b606b59d4 Support node.js in wasm loader
The latest LTS of Node supports wasm, and this allows us to test
against it, as well as the shells.
2017-12-13 15:53:52 -08:00
Rich Felker
01957bed1e add ibm1047 codepage (ebcdic representation of latin1) to iconv 2017-12-12 13:12:12 -05:00
Timo Teräs
8a6bd7307d implement strftime padding specifier extensions
notes added by maintainer:

the '-' specifier allows default padding to be suppressed, and '_'
allows padding with spaces instead of the default (zeros).

these extensions seem to be included in several other implementations
including FreeBSD and derivatives, and Solaris. while portable
software should not depend on them, time format strings are often
exposed to the user for configurable time display. reportedly some
python programs also use and depend on them.
2017-12-11 15:51:30 -05:00
Rich Felker
2488d31f5a adjust fopencookie structure tag for ABI-compat
stdio types use the struct tag names from glibc libio to match C++
ABI.
2017-12-06 13:14:22 -05:00
William Pitcock
061843340f implement the fopencookie extension to stdio
notes added by maintainer:

this function is a GNU extension. it was chosen over the similar BSD
function funopen because the latter depends on fpos_t being an
arithmetic type as part of its public API, conflicting with our
definition of fpos_t and with the intent that it be an opaque type. it
was accepted for inclusion because, despite not being widely used, it
is usually very difficult to extricate software using it from the
dependency on it.

calling pattern for the read and write callbacks is not likely to
match glibc or other implementations, but should work with any
reasonable callbacks. in particular the read function is never called
without at least one byte being needed to satisfy its caller, so that
spurious blocking is not introduced.

contracts for what callbacks called from inside libc/stdio can do are
always complicated, and at some point still need to be specified
explicitly. at the very least, the callbacks must return or block
indefinitely (they cannot perform nonlocal exits) and they should not
make calls to stdio using their own FILE as an argument.
2017-12-06 13:11:48 -05:00
JF Bastien
e43efbe62d
Merge pull request #30 from jfbastien/remove_headers
[WebAssembly] Remove empty headers
2017-11-30 16:10:19 -08:00
Sam Clegg
14ffeeb5bb
[WebAssembly] Keep itermediate files (#31)
In particular we need to keep the generated headers around so they can be installed later.

This behavior mimics more closely what the musl Makefile does now that it supports out-of-tree
building (i.e. it puts all the generated files under obj)
2017-11-30 15:32:18 -08:00
Sam Clegg
c34cb0b46a [WebAssembly] Remove empty headers
These are provided by arch/generic.
2017-11-30 15:14:40 -08:00
JF Bastien
8977c9eba7
Merge pull request #29 from jfbastien/merge_master
Merge master
2017-11-29 22:44:01 -08:00
Sam Clegg
2b92b728e3 Merge remote-tracking branch 'upstream/master' into HEAD 2017-11-29 15:46:05 -08:00
Sam Clegg
b49da62f23
Implement writv syscall so that musl printf works (#26) 2017-11-20 17:13:33 -08:00