1. 05 5月, 2018 1 次提交
    • R
      remove incorrect ESRCH error from pthread_kill · 4df42163
      Rich Felker 提交于
      posix documents in the rationale and future directions for
      pthread_kill that, since the lifetime of the thread id for a joinable
      thread lasts until it is joined, ESRCH is not a correct error for
      pthread_kill to produce when the target thread has exited but not yet
      been joined, and that conforming applications cannot attempt to detect
      this state. future versions of the standard may explicitly require
      that ESRCH not be returned for this case.
      4df42163
  2. 03 5月, 2018 1 次提交
    • R
      use a dedicated futex object for pthread_join instead of tid field · 9e2d820a
      Rich Felker 提交于
      the tid field in the pthread structure is not volatile, and really
      shouldn't be, so as not to limit the compiler's ability to reorder,
      merge, or split loads in code paths that may be relevant to
      performance (like controlling lock ownership).
      
      however, use of objects which are not volatile or atomic with futex
      wait is inherently broken, since the compiler is free to transform a
      single load into multiple loads, thereby using a different value for
      the controlling expression of the loop and the value passed to the
      futex syscall, leading the syscall to block instead of returning.
      
      reportedly glibc's pthread_join was actually affected by an equivalent
      issue in glibc on s390.
      
      add a separate, dedicated join_futex object for pthread_join to use.
      9e2d820a
  3. 02 5月, 2018 2 次提交
    • R
      optimize sigisemptyset · 941bd884
      Rich Felker 提交于
      the static const zero set ended up getting put in bss instead of
      rodata, wasting writable memory, and the call to memcmp was
      size-inefficient. generally for nonstandard extension functions we try
      to avoid poking at any internals directly, but the way the zero set
      was setup was arguably already doing so.
      941bd884
    • R
      avoid excessive stack usage in getcwd · 375840c7
      Rich Felker 提交于
      to support the GNU extension of allocating a buffer for getcwd's
      result when a null pointer is passed without incurring a link
      dependency on free, we use a PATH_MAX-sized buffer on the stack and
      only duplicate it to allocated storage after the operation succeeds.
      unfortunately this imposed excessive stack usage on all callers,
      including those not making use of the GNU extension.
      
      instead, use a VLA to make stack allocation conditional.
      375840c7
  4. 27 4月, 2018 1 次提交
    • R
      getopt_long_only: don't prefix-match long-options that match short ones · 9be4ed5d
      Rich Felker 提交于
      for getopt_long, partial (prefix) matches of long options always begin
      with "--" and thus can never be ambiguous with a short option. for
      getopt_long_only, though, a single-character option can match both a
      short option and as a prefix for a long option. in this case, we
      wrongly interpreted it as a prefix for the long option.
      
      introduce a new pass, only in long-only mode, to check the prefix
      match against short options before accepting it. the only reason
      there's a slightly nontrivial loop being introduced rather than strchr
      is that our getopt already supports multibyte short options, and
      getopt_long_long should handle them consistently. a temp buffer and
      strstr could have been used, but the code to set it up would be just
      as large as what's introduced here and it would unnecessarily pull in
      relatively large code for strstr.
      9be4ed5d
  5. 20 4月, 2018 7 次提交
    • R
      reintroduce hardening against partially-replaced allocator · b4b1e103
      Rich Felker 提交于
      commit 618b18c7 removed the previous
      detection and hardening since it was incorrect. commit
      72141795 already handled all that
      remained for hardening the static-linked case. in the dynamic-linked
      case, have the dynamic linker check whether malloc was replaced and
      make that information available.
      
      with these changes, the properties documented in commit
      c9f415d7 are restored: if calloc is
      not provided, it will behave as malloc+memset, and any of the
      memalign-family functions not provided will fail with ENOMEM.
      b4b1e103
    • R
      return chunks split off by memalign using __bin_chunk instead of free · 72141795
      Rich Felker 提交于
      this change serves multiple purposes:
      
      1. it ensures that static linking of memalign-family functions will
      pull in the system malloc implementation, thereby causing link errors
      if an attempt is made to link the system memalign functions with a
      replacement malloc (incomplete allocator replacement).
      
      2. it eliminates calls to free that are unpaired with allocations,
      which are confusing when setting breakpoints or tracing execution.
      
      as a bonus, making __bin_chunk external may discourage aggressive and
      unnecessary inlining of it.
      72141795
    • R
      using malloc implementation types/macros/idioms for memalign · 3c2cbbe7
      Rich Felker 提交于
      the generated code should be mostly unchanged, except for explicit use
      of C_INUSE in place of copying the low bits from existing chunk
      headers/footers.
      
      these changes also remove mild UB due to dubious arithmetic on
      pointers into imaginary size_t[] arrays.
      3c2cbbe7
    • R
      23389b19
    • R
      revert detection of partially-replaced allocator · 618b18c7
      Rich Felker 提交于
      commit c9f415d7 included checks to
      make calloc fallback to memset if used with a replaced malloc that
      didn't also replace calloc, and the memalign family fail if free has
      been replaced. however, the checks gave false positives for
      replacement whenever malloc or free resolved to a PLT entry in the
      main program.
      
      for now, disable the checks so as not to leave libc in a broken state.
      this means that the properties documented in the above commit are no
      longer satisfied; failure to replace calloc and the memalign family
      along with malloc is unsafe if they are ever called.
      
      the calloc checks were correct but useless for static linking. in both
      cases (simple or full malloc), calloc and malloc are in a source file
      together, so replacement of one but not the other would give linking
      errors. the memalign-family check was useful for static linking, but
      broken for dynamic as described above, and can be replaced with a
      better link-time check.
      618b18c7
    • W
      setvbuf: minor comment typo fix · 3f3cc3e9
      Will Dietz 提交于
      3f3cc3e9
    • A
      remove a_ctz_l from arch specific atomic_arch.h · 0c6abb58
      Andre McCurdy 提交于
      Update atomic.h to provide a_ctz_l in all cases (atomic_arch.h should
      now only provide a_ctz_32 and/or a_ctz_64).
      
      The generic version of a_ctz_32 now takes advantage of a_clz_32 if
      available and the generic a_ctz_64 now makes use of a_ctz_32.
      0c6abb58
  6. 19 4月, 2018 8 次提交
    • M
    • R
      add support for caller-provided buffers to setvbuf · 0b80a7b0
      Rich Felker 提交于
      0b80a7b0
    • R
      clean up allocation/setup logic for open_[w]memstream · 60194592
      Rich Felker 提交于
      bring these functions up to date with the current idioms we use/prefer
      in fmemopen and fopencookie.
      60194592
    • R
      clean up allocation/setup logic for fmemopen · 0b043c7b
      Rich Felker 提交于
      rather than manually performing pointer arithmetic to carve multiple
      objects out of one allocation, use a containing struct that
      encompasses them all.
      0b043c7b
    • R
      minor cleanup in fopencookie · 4245a233
      Rich Felker 提交于
      assign entire struct rather than member-at-a-time. don't repeat buffer
      sizes; always use sizeof to ensure consistency.
      4245a233
    • R
      allow interposition/replacement of allocator (malloc) · c9f415d7
      Rich Felker 提交于
      replacement is subject to conditions on the replacement functions.
      they may only call functions which are async-signal-safe, as specified
      either by POSIX or as an implementation-defined extension. if any
      allocator functions are replaced, at least malloc, realloc, and free
      must be provided. if calloc is not provided, it will behave as
      malloc+memset. any of the memalign-family functions not provided will
      fail with ENOMEM.
      
      in order to implement the above properties, calloc and __memalign
      check that they are using their own malloc or free, respectively.
      choice to check malloc or free is based on considerations of
      supporting __simple_malloc. in order to make this work, calloc is
      split into separate versions for __simple_malloc and full malloc;
      commit ba819787 already did most of
      the split anyway, and completing it saves an extra call frame.
      
      previously, use of -Bsymbolic-functions made dynamic interposition
      impossible. now, we are using an explicit dynamic-list, so add
      allocator functions to the list. most are not referenced anyway, but
      all are added for completeness.
      c9f415d7
    • R
      c1014a81
    • R
      fix stdio lock dependency on read-after-free not faulting · c21f7507
      Rich Felker 提交于
      instead of using a waiters count, add a bit to the lock field
      indicating that the lock may have waiters. threads which obtain the
      lock after contending for it will perform a potentially-spurious wake
      when they release the lock.
      c21f7507
  7. 18 4月, 2018 5 次提交
  8. 12 4月, 2018 2 次提交
    • A
      optimize malloc0 · 424eab22
      Alexander Monakov 提交于
      Implementation of __malloc0 in malloc.c takes care to preserve zero
      pages by overwriting only non-zero data. However, malloc must have
      already modified auxiliary heap data just before and beyond the
      allocated region, so we know that edge pages need not be preserved.
      
      For allocations smaller than one page, pass them immediately to memset.
      Otherwise, use memset to handle partial pages at the head and tail of
      the allocation, and scan complete pages in the interior. Optimize the
      scanning loop by processing 16 bytes per iteration and handling rest of
      page via memset as soon as a non-zero byte is found.
      424eab22
    • R
      fix incorrect results for catan with some inputs · 10e4bd37
      Rich Felker 提交于
      the catan implementation from OpenBSD includes a FIXME-annotated
      "overflow" branch that produces a meaningless and incorrect
      large-magnitude result. it was reachable via three paths,
      corresponding to gotos removed by this commit, in order:
      
      1. pure imaginary argument with imaginary component greater than 1 in
         magnitude. this case does not seem at all exceptional and is
         handled (at least with the quality currently expected from our
         complex math functions) by the existing non-exceptional code path.
      
      2. arguments on the unit circle, including the pure-real argument 1.0.
         these are not exceptional except for ±i, which should produce
         results with infinite imaginary component and which lead to
         computation of atan2(±0,0) in the existing non-exceptional code
         path. such calls to atan2() however are well-defined by POSIX.
      
      3. the specific argument +i. this route should be unreachable due to
         the above (2), but subtle rounding effects might have made it
         possible in rare cases. continuing on the non-exceptional code path
         in this case would lead to computing the (real) log of an infinite
         argument, then producing a NAN when multiplying it by I.
      
      for now, remove the exceptional code paths entirely. replace the
      multiplication by I with construction of a complex number using the
      CMPLX macro so that the NAN issue (3) prevented cannot arise.
      
      with these changes, catan should give reasonably correct results for
      real arguments, and should no longer give completely-wrong results for
      pure-imaginary arguments outside the interval (-i,+i).
      10e4bd37
  9. 10 4月, 2018 1 次提交
    • R
      fix wrong result in casin and many related complex functions · ae2a01da
      Rich Felker 提交于
      the factor of -i noted in the comment at the top of casin.c was
      omitted from the actual code, yielding a result rotated 90 degrees and
      propagating into errors in other functions defined in terms of casin.
      
      implement multiplication by -i as a rotation of the real and imaginary
      parts of the result, rather than by actual multiplication, since the
      latter cannot be optimized without knowledge that the operand is
      finite. here, the rotation is the actual intent, anyway.
      ae2a01da
  10. 08 4月, 2018 1 次提交
    • S
      implement wcsftime padding specifier extensions · ea81529f
      Samuel Holland 提交于
      Commit 8a6bd730 added support for
      padding specifier extensions to strftime, but did not modify wcsftime.
      In the process, it added a parameter to __strftime_fmt_1 in strftime.c,
      but failed to update the prototype in wcsftime.c. This was found by
      compiling musl with LTO:
      
          src/time/wcsftime.c:7:13: warning: type of '__strftime_fmt_1' does \
              not match original declaration [-Wlto-type-mismatch]
      
      Fix the prototype of __strftime_fmt_1 in wcsftime.c, and generate the
      'pad' argument the same way as it is done in strftime.
      ea81529f
  11. 05 4月, 2018 1 次提交
    • R
      prevent bypass of guarantee that suids start with fd 0/1/2 open · 119bc55b
      Rich Felker 提交于
      it was reported by Erik Bosman that poll fails without setting revents
      when the nfds argument exceeds the current value for RLIMIT_NOFILE,
      causing the subsequent open calls to be bypassed. if the rlimit is
      either 1 or 2, this leaves fd 0 and 1 potentially closed but openable
      when the application code is reached.
      
      based on a brief reading of the poll syscall documentation and code,
      it may be possible for poll to fail under other attacker-controlled
      conditions as well. if it turns out these are reasonable conditions
      that may happen in the real world, we may have to go back and
      implement fallbacks to probe each fd individually if poll fails, but
      for now, keep things simple and treat all poll failures as fatal.
      119bc55b
  12. 03 4月, 2018 1 次提交
    • S
      fix fmaf wrong result · 282b1cd2
      Szabolcs Nagy 提交于
      if double precision r=x*y+z is not a half way case between two single
      precision floats or it is an exact result then fmaf returns (float)r.
      
      however the exactness check was wrong when |x*y| < |z| and could cause
      incorrectly rounded result in nearest rounding mode when r is a half
      way case.
      
      fmaf(-0x1.26524ep-54, -0x1.cb7868p+11, 0x1.d10f5ep-29)
      was incorrectly rounded up to 0x1.d117ap-29 instead of 0x1.d1179ep-29.
      (exact result is 0x1.d1179efffffffecp-29, r is 0x1.d1179fp-29)
      282b1cd2
  13. 08 3月, 2018 1 次提交
  14. 26 2月, 2018 1 次提交
    • R
      add public interface headers to implementation files · 57b97b42
      Rich Felker 提交于
      general policy is that all source files defining a public API or an
      ABI mechanism referenced by a public header should include the public
      header that declares the interface, so that the compiler or analysis
      tools can check the consistency of the declarations. Alexander Monakov
      pointed out a number of violations of this principle a few years back.
      fix them now.
      57b97b42
  15. 25 2月, 2018 7 次提交