1. 19 8月, 2013 1 次提交
  2. 18 8月, 2013 3 次提交
    • R
      37c25065
    • R
      replace system's install command with a shell script · e678fc6f
      Rich Felker 提交于
      the historical (non-standardized) install command is really
      inappropriate for installing binaries/libraries on a system that
      utilizes memory-mapped executable files. rather than replacing an
      existing file atomically, it overwrites the existing file. this can
      cause running programs to see a partially-modified version of the
      file, resulting in unpredictable behavior, or SIGBUS. a MAP_COPY mode
      for mmap would get around this problem, but Linux lacks MAP_COPY.
      
      the shell script added with this commit works around the problem by
      writing temporary files and moving them into place. unlike the
      historical install utility, it also support a -l option for installing
      a symbolic link atomically, via the same method.
      e678fc6f
    • R
      add hkscs/big5-2003/eten extensions to iconv big5 · 109bd65a
      Rich Felker 提交于
      with these changes, the character set implemented as "big5" in musl is
      a pure superset of cp950, the canonical "big5", and agrees with the
      normative parts of Unicode. this means it has minor differences from
      both hkscs and big5-2003:
      
      - the range A2CC-A2CE maps to CJK ideographs rather than numerals,
        contrary to changes made in big5-2003.
      
      - C6CD maps to a CJK ideograph rather than its corresponding Kangxi
        radical character, contrary to changes made in hkscs.
      
      - F9FE maps to U+2593 rather than U+FFED.
      
      of these differences, none but the last are visually distinct, and the
      last is a character used purely for text-based graphics, not to convey
      linguistic content.
      
      should there be future demand for strict conformance to big5-2003 or
      hkscs mappings, the present charset aliases can be replaced with
      distinct variants.
      
      reportedly there are other non-standard big5 extensions in common use
      in Taiwan and perhaps elsewhere, which could also be added as layers
      on top of the existing big5 support.
      
      there may be additional characters which should be added to the hkscs
      table: the whatwg standard for big5 defines what appears to be a
      superset of hkscs.
      109bd65a
  3. 17 8月, 2013 5 次提交
    • R
      make configure store its command line in config.mak for easy re-run · 453f4622
      Rich Felker 提交于
      proper shell quoting and pretty-printing (avoiding ugly gratuitous
      quoting and bad quoting style) is included.
      453f4622
    • R
      fix atomicity and other issues installing dynamic linker symlink · 82fa6b43
      Rich Felker 提交于
      ln -sf is non-atomic; it unlinks the destination first. instead, make
      a temporary link and rename it into place.
      
      this commit also fixes some of the dependency tracking behavior for
      the link. depending on the directory it's to be installed in is not
      reasonable; it causes a new link to be attempted if the library
      directory has been modified, but does not attempt to make a new link
      just because libc has been updated. instead, depend on the target to
      be linked to. this will ensure that, if prefix has changed but
      syslibdir has not, the link will be updated to point to the new
      prefix.
      82fa6b43
    • R
      some initial math asm for armhf (fabs[f] and sqrt[f]) · 63893d3f
      Rich Felker 提交于
      63893d3f
    • R
      fix detection of arm hardfloat · 4918c2bb
      Rich Felker 提交于
      it turns out that __SOFTFP__ does not indicate the ABI in use but
      rather that fpu instructions are not to be used at all. this is
      specified in ARM's documentation so I'm unclear on how I previously
      got the wrong idea. unfortunately, this resulted in the 0.9.12 release
      producing a dynamic linker with the wrong name. fortunately, there do
      not yet seem to be any public toolchain builds using the wrong name.
      
      the __ARM_PCS_VFP macro does not seem to be official from ARM, and in
      fact it was missing from the very earliest gcc versions (around 4.5.x)
      that added -mfloat-abi=hard. it would be possible on such versions to
      perform some ugly linker-based tests instead in hopes that the linker
      will reject ABI-mismatching object files, if there is demand for
      supporting such versions. I would probably prefer to document which
      versions are broken and warn users to manually add -D__ARM_PCS_VFP if
      using such a version.
      
      there's definitely an argument to be made that the fenv macros should
      be exposed even in -mfloat-abi=softfp mode. for now, I have chosen not
      to expose them in this case, since the math library will not
      necessarily have the capability to raise exceptions (it depends on the
      CFLAGS used to compile it), and since exceptions are officially
      excluded from the ARM EABI, which the plain "arm" arch aims to
      follow.
      4918c2bb
    • R
      support floating point environment (fenv) on armhf (hard float) subarchs · 7318c62e
      Rich Felker 提交于
      patch by nsz. I've tested it on an armhf machine and it seems to be
      working correctly.
      7318c62e
  4. 16 8月, 2013 2 次提交
    • R
      fix build of x86_64 expl assembly · 0a4a4a7a
      Rich Felker 提交于
      apparently this label change was not carried over when adapting the
      changes from the i386 version.
      0a4a4a7a
    • R
      add function types to arm crt assembly · badaa04a
      Rich Felker 提交于
      without these, calls may be resolved incorrectly if the calling code
      has been compiled to thumb instead of arm. it's not clear to me at
      this point whether crt_arch.h is even working if crt1.c is built as
      thumb; this needs testing. but the _init and _fini issues were known
      to cause crashes in static-linked apps when libc was built as thumb,
      and this commit should fix that issue.
      badaa04a
  5. 15 8月, 2013 11 次提交
    • S
      math: fix pow(x,-1) to raise underflow properly · c221af95
      Szabolcs Nagy 提交于
      if FLT_EVAL_METHOD!=0 check if (double)(1/x) is subnormal and not a
      power of 2 (if 1/x is power of 2 then either it is exact or the
      long double to double rounding already raised inexact and underflow)
      c221af95
    • S
      411efb3b
    • S
      math: clean up atan2.c · 6d85096f
      Szabolcs Nagy 提交于
      * remove volatile hacks
      * don't care about inexact flag for now (removed all the +-tiny)
      * fix atanl to raise underflow properly
      * remove signed int arithmetics
      * use pi/2 instead of pi_o_2 (gcc generates the same code, which is not
      correct, but it does not matter: we mainly care about nearest rounding)
      6d85096f
    • S
      math: fix x86 asin, atan, exp, log1p to raise underflow · 31c5fb80
      Szabolcs Nagy 提交于
      underflow is raised by an inexact subnormal float store,
      since subnormal operations are slow, check the underflow
      flag and skip the store if it's already raised
      31c5fb80
    • S
    • S
      math: fix asin, atan, log1p, tanh to raise underflow on subnormal · c599f4f4
      Szabolcs Nagy 提交于
      for these functions f(x)=x for small inputs, because f(0)=0 and
      f'(0)=1, but for subnormal values they should raise the underflow
      flag (required by annex F), if they are approximated by a polynomial
      around 0 then spurious underflow should be avoided (not required by
      annex F)
      
      all these functions should raise inexact flag for small x if x!=0,
      but it's not required by the standard and it does not seem a worthy
      goal, so support for it is removed in some cases.
      
      raising underflow:
      - x*x may not raise underflow for subnormal x if FLT_EVAL_METHOD!=0
      - x*x may raise spurious underflow for normal x if FLT_EVAL_METHOD==0
      - in case of double subnormal x, store x as float
      - in case of float subnormal x, store x*x as float
      c599f4f4
    • S
      cd18dc85
    • S
      math: fix pow(0,-inf) to raise divbyzero flag · f29fea00
      Szabolcs Nagy 提交于
      f29fea00
    • S
      math: minor scalbn*.c simplification · 1b77b907
      Szabolcs Nagy 提交于
      1b77b907
    • R
      fix length computation in dn_expand · 56b57f37
      Rich Felker 提交于
      there are two possible points where the length is evaluated: either
      the first 'compression' jump, or the null terminator if no jumps have
      taken place yet. the previous code only measured the length of the
      first component.
      56b57f37
    • R
      de-duplicate dn_expand, fix return value and signature, clean up · fcc522c9
      Rich Felker 提交于
      the duplicate code in dn_expand and its incorrect return values are
      both results of the history of the code: the version in __dns.c was
      originally written with no awareness of the legacy resolver API, and
      was later copy-and-paste duplicated to provide the legacy API.
      
      this commit is the first of a series that will restructure the
      internal dns code to share as much code as possible with the legacy
      resolver API functions.
      
      I have also removed the loop detection logic, since the output buffer
      length limit naturally prevents loops. in order to avoid long runtime
      when encountering a loop if the caller provided a ridiculously long
      buffer, the caller-provided length is clamped at the maximum dns name
      length.
      fcc522c9
  6. 14 8月, 2013 4 次提交
    • R
      add arm-optimized memcpy implementation from bionic libc · cccc1844
      Rich Felker 提交于
      the approach of this implementation was heavily investigated prior to
      adopting it. attempts to obtain similar performance with pure C code
      were capping out at about 75% of the performance of the asm, with
      considerably larger code size, and were fragile in that the compiler
      would sometimes compile part of memcpy into a call to itself.
      therefore, just using the asm seems to be the best option.
      
      this commit is the first to make use of the new subarch-specific asm
      framework. the new armel directory is the location for arm asm that
      should not be used for all arm subarchs, only the default one. armhf
      is the name of the little-endian hardfloat-ABI subarch, which can use
      the exact same asm. in both cases, the build system finds the asm by
      following a memcpy.sub file.
      
      the other two subarchs, armeb and armebhf, would need a big-endian
      variant of this code. it would not be hard to adapt the code to big
      endian, but I will hold off on doing so until there is demand for it.
      cccc1844
    • R
      rework makefile subarch logic to allow shared files · fb72a97d
      Rich Felker 提交于
      instead of subarchs getting their own .s files which are used directly
      by the makefile to replace the .c file, they now must provide a .sub
      file whose contents are a pathname, relative to the location of the
      .sub file, which will substitute for the .c file. essentially these
      files are acting as symbolic links, but implemented as text files.
      fb72a97d
    • R
      add missing MSG_EXCEPT in sys/msg.h · 4ce6bd83
      Rich Felker 提交于
      4ce6bd83
    • R
      provide declarations for strtod_l and family · 35eb1a1a
      Rich Felker 提交于
      these aliases were originally intended to be for ABI compatibility
      only, but their presence caused regressions in broken gnulib-based
      software whose configure scripts detect the existing of these
      functions then use them without declarations, resulting in bogus
      return values.
      35eb1a1a
  7. 11 8月, 2013 7 次提交
    • R
      add subarch asm support for PIC objects/shared libc · 804e9940
      Rich Felker 提交于
      this rule was omitted in previous subarch asm commit
      804e9940
    • R
      add missing a_or_l to atomic.h for non-x86 archs · 7568ee4c
      Rich Felker 提交于
      this is needed for recently committed sigaction code
      7568ee4c
    • R
      allow subarch-specific asm, including asm specific to the default · 90d77722
      Rich Felker 提交于
      the default subarch is the one whose full name is just the base arch
      name, with no suffixes. normally, either the asm in the default
      subarch is suitable for all subarch variants, or separate asm is
      mandatory for each variant. however, in the case of asm which is
      purely for optimization purposes, it's possible to have asm that only
      works (or only performs well) on the default subarch, and not any othe
      the other variants. thus, I have added a mechanism to give a name to
      the default variant, for example "armel" for the default,
      little-endian arm. further such default-subarch names can be added in
      the future as needed.
      90d77722
    • R
      fix _NSIG and SIGRTMAX on mips · 7c440977
      Rich Felker 提交于
      a mips signal mask contains 128 bits, enough for signals 1 through
      128. however, the exit status obtained from the wait-family functions
      only has room for values up to 127. reportedly signal 128 was causing
      kernelspace bugs, so it was removed from the kernel recently; even
      without that issue, however, it was impossible to support it correctly
      in userspace.
      
      at the same time, the bug was masked on musl by SIGRTMAX incorrectly
      yielding 64 on mips, rather than the "correct" value of 128. now that
      the _NSIG issue is fixed, SIGRTMAX can be fixed at the same time,
      exposing the full range of signals for application use.
      
      note that the (nonstandardized) libc _NSIG value is actually one
      greater than the max signal number, and also one greater than the
      kernel headers' idea of _NSIG. this is the reason for the discrepency
      with the recent kernel changes. since reducing _NSIG by one brought it
      down from 129 to 128, rather than from 128 to 127, _NSIG/8, used
      widely in the musl sources, is unchanged.
      7c440977
    • R
      fix definitions of WIFSTOPPED and WIFSIGNALED to support up to signal 127 · 41c63282
      Rich Felker 提交于
      mips has signal numbers up to 127 (formerly, up to 128, but the last
      one never worked right and caused kernel panic when used), so 127 in
      the "signal number" field of the wait status is insufficient for
      determining that the process was stopped. in addition, a nonzero value
      in the upper bits must be present, indicating the signal number which
      caused the process to be stopped.
      
      details on this issue can be seen in the email with message id
      CAAG0J9-d4BfEhbQovFqUAJ3QoOuXScrpsY1y95PrEPxA5DWedQ@mail.gmail.com on
      the linux-mips mailing list, archived at:
      http://www.linux-mips.org/archives/linux-mips/2013-06/msg00552.html
      and in the associated thread about fixing the mips kernel bug.
      
      commit 4a96b948687166da26a6c327e6c6733ad2336c5c fixed the
      corresponding issue in uClibc, but introduced a multiple-evaluation
      issue for the WIFSTOPPED macro.
      
      for the most part, none of these issues affected pure musl systems,
      since musl has up until now (incorrectly) defined SIGRTMAX as 64 on
      all archs, even mips. however, interpreting status of non-musl
      programs on mips may have caused problems. with this change, the full
      range of signal numbers can be made available on mips.
      41c63282
    • R
      7406fdf5
    • R
      add cpu affinity interfaces · eeb0328f
      Rich Felker 提交于
      this first commit just includes the CPU_* and sched_* interfaces, not
      the pthread_* interfaces, which may be added later. simple
      sanity-check testing has been done for the basic interfaces, but most
      of the macros have not yet been tested.
      eeb0328f
  8. 10 8月, 2013 4 次提交
    • R
      change sigset_t functions to restrict to _NSIG · 76fbf6ad
      Rich Felker 提交于
      the idea here is to avoid advertising signals that don't exist and to
      make these functions safe to call (e.g. from within other parts of the
      implementation) on fake sigset_t objects which do not have the HURD
      padding.
      76fbf6ad
    • R
      optimize posix_spawn to avoid spurious sigaction syscalls · 3c5c5e6f
      Rich Felker 提交于
      the trick here is that sigaction can track for us which signals have
      ever had a signal handler set for them, and only those signals need to
      be considered for reset. this tracking mask may have false positives,
      since it is impossible to remove bits from it without race conditions.
      false negatives are not possible since the mask is updated with atomic
      operations prior to making the sigaction syscall.
      
      implementation-internal signals are set to SIG_IGN rather than SIG_DFL
      so that a signal raised in the parent (e.g. calling pthread_cancel on
      the thread executing pthread_spawn) does not have any chance make it
      to the child, where it would cause spurious termination by signal.
      
      this change reduces the minimum/typical number of syscalls in the
      child from around 70 to 4 (including execve). this should greatly
      improve the performance of posix_spawn and other interfaces which use
      it (popen and system).
      
      to facilitate these changes, sigismember is also changed to return 0
      rather than -1 for invalid signals, and to return the actual status of
      implementation-internal signals. POSIX allows but does not require an
      error on invalid signal numbers, and in fact returning an error tends
      to confuse applications which wrongly assume the return value of
      sigismember is boolean.
      3c5c5e6f
    • R
      fix missing errno from exec failure in posix_spawn · 65d7aa4d
      Rich Felker 提交于
      failures prior to the exec attempt were reported correctly, but on
      exec failure, the return value contained junk.
      65d7aa4d
    • R
      block all signals, even implementation-internal ones, in faccessat child · 9848e648
      Rich Felker 提交于
      the child process's stack may be insufficient size to support a signal
      frame, and there is no reason these signal handlers should run in the
      child anyway.
      9848e648
  9. 09 8月, 2013 3 次提交
    • R
      block signals during fork · d4d6d6f3
      Rich Felker 提交于
      there are several reasons for this. some of them are related to race
      conditions that arise since fork is required to be async-signal-safe:
      if fork or pthread_create is called from a signal handler after the
      fork syscall has returned but before the subsequent userspace code has
      finished, inconsistent state could result. also, there seem to be
      kernel and/or strace bugs related to arrival of signals during fork,
      at least on some versions, and simply blocking signals eliminates the
      possibility of such bugs.
      d4d6d6f3
    • R
      work around libraries with versioned symbols in dynamic linker · 72482f90
      Rich Felker 提交于
      this commit does not add versioning support; it merely fixes incorrect
      lookups of symbols in libraries that contain versioned symbols.
      previously, the version information was completely ignored, and
      empirically this seems to have resulted in the oldest version being
      chosen, but I am uncertain if that behavior was even reliable.
      
      the new behavior being introduced is to completely ignore symbols
      which are marked "hidden" (this seems to be the confusing nomenclature
      for non-current-version) when versioning is present. this should solve
      all problems related to libraries with symbol versioning as long as
      all binaries involved are up-to-date (compatible with the
      latest-version symbols), and it's the needed behavior for dlsym under
      all circumstances.
      72482f90
    • R
      sys/personality.h: add missing C++ compat · e28c2eca
      rofl0r 提交于
      e28c2eca