1. 12 3月, 2014 2 次提交
    • R
      fix sysvipc structures on powerpc · ad66ae93
      Rich Felker 提交于
      these have been wrong for a long time and were never detected or
      corrected. powerpc needs some gratuitous extra padding/reserved slots
      in ipc_perm, big-endian ordering for the padding of time_t slots that
      was intended by the kernel folks to allow a transition to 64-bit
      time_t, and some minor gratuitous reordering of struct members.
      ad66ae93
    • R
      move struct semid_ds to from shared sys/sem.h to bits · f6e2f7e1
      Rich Felker 提交于
      the definition was found to be incorrect at least for powerpc, and
      fixing this cleanly requires making the definition arch-specific. this
      will allow cleaning up the definition for other archs to make it more
      specific, and reversing some of the ugliness (time_t hacks) introduced
      with the x32 port.
      
      this first commit simply copies the existing definition to each arch
      without any changes. this is intentional, to make it easier to review
      changes made on a per-arch basis.
      f6e2f7e1
  2. 10 3月, 2014 1 次提交
  3. 09 3月, 2014 2 次提交
    • R
      fix incorrect rounding in printf floating point corner cases · 9743a399
      Rich Felker 提交于
      the printf floating point formatting code contains an optimization to
      avoid computing digits that will be thrown away by rounding at the
      specified (or default) precision. while it was correctly retaining all
      places up to the last decimal place to be printed, it was not
      retaining enough precision to see the next nonzero decimal place in
      all cases. this could cause incorrect rounding down in round-to-even
      (default) rounding mode, for example, when printing 0.5+DBL_EPSILON
      with "%.0f".
      
      in the fix, LDBL_MANT_DIG/3 is a lazy (non-sharp) upper bound on the
      number of zeros between any two nonzero decimal digits.
      9743a399
    • R
      fix buffer overflow in printf formatting of denormals with low bit set · ba231cf9
      Rich Felker 提交于
      empirically the overflow was an off-by-one, and it did not seem to be
      overwriting meaningful data. rather than simply increasing the buffer
      size by one, however, I have attempted to make the size obviously
      correct in terms of bounds on the number of iterations for the loops
      that fill the buffer. this still results in no more than a negligible
      size increase of the buffer on the stack (6-7 32-bit slots) and is a
      "safer" fix unless/until somebody wants to do the proof that a smaller
      buffer would suffice.
      ba231cf9
  4. 08 3月, 2014 3 次提交
    • R
      in sys/procfs.h, avoid using __WORDSIZE macro · 73f5b096
      Rich Felker 提交于
      this was problematic because several archs don't define __WORDSIZE. we
      could add it, but I would rather phase this macro out in the long
      term. in our version of the headers, UINTPTR_MAX is available here, so
      just use it instead.
      73f5b096
    • R
      add bits/user.h for sh port · e12fda3b
      Rich Felker 提交于
      this seems to have been overlooked, and resulted in breakage in
      anything including sys/user.h.
      e12fda3b
    • R
      in fcntl, use unsigned long instead of long for variadic argument type · b576766d
      Rich Felker 提交于
      neither is correct; different commands take different argument types,
      and some take no arguments at all. I have a much larger overhaul of
      fcntl prepared to address this, but it's not appropriate to commit
      during freeze.
      
      the immediate problem being addressed affects forward-compatibility on
      x32: if new commands are added and they take pointers, but the
      libc-level fcntl function is not aware of them, using long would
      sign-extend the pointer to 64 bits and give the kernel an invalid
      pointer. on the kernel side, the argument to fcntl is always treated
      as unsigned long, so no harm is done by treating possibly-signed
      integer arguments as unsigned. for every command that takes an integer
      argument except for F_SETOWN, large integer arguments and negative
      arguments are handled identically anyway. in the case of F_SETOWN, the
      kernel is responsible for converting the argument which it received as
      unsigned long to int, so the sign of negative arguments is recovered.
      
      the other problem that will be addressed later is that the type passed
      to va_arg does not match the type in the caller of fcntl. an advanced
      compiler doing cross-translation-unit analysis could potentially see
      this mismatch and issue warnings or otherwise make trouble.
      
      on i386, this patch was confirmed not to alter the code generated by
      gcc 4.7.3. in principle the generated code should not be affected on
      any arch except x32.
      b576766d
  5. 07 3月, 2014 1 次提交
  6. 06 3月, 2014 2 次提交
    • R
      x32: fix sysinfo() · dae8ca73
      rofl0r 提交于
      the kernel uses long longs in the struct, but the documentation
      says they're long. so we need to fixup the mismatch between the
      userspace and kernelspace structs.
      since the struct offers a mem_unit member, we can avoid truncation
      by adjusting that value.
      dae8ca73
    • R
      fix strerror on mips: one error code is out of the 8-bit table range · abdd2e48
      Rich Felker 提交于
      if we ever encounter other targets where error codes don't fit in the
      8-bit range, the table should probably just be bumped to 16-bit, but
      for now I don't want to increase the table size on all archs just
      because of a bug in the mips abi.
      abdd2e48
  7. 01 3月, 2014 1 次提交
    • R
      improve configure's target arch matching · 0b8f0c57
      Rich Felker 提交于
      most notably, it was failing to match sh4-*, etc., but in general the
      explicit matching of hyphens for some archs was problematic because it
      failed to accept simply the musl-style arch name (without a gcc-style
      tuple) as an input. the original motivation of matching hyphens was to
      prevent incorrectly identifying a 64-bit arch as the corresponding
      32-bit arch (e.g. mips* matching mips64) but this is easily fixed by
      simply checking (and for now, rejecting as unsupported) the relevant
      64-bit archs.
      0b8f0c57
  8. 28 2月, 2014 5 次提交
  9. 26 2月, 2014 1 次提交
    • R
      fix readdir not to set ENOENT when directory is removed while reading · b9f7f2e8
      Rich Felker 提交于
      per POSIX, ENOENT is reserved for invalid stream position; it is an
      optional error and would only happen if the application performs
      invalid seeks on the underlying file descriptor. however, linux's
      getdents syscall also returns ENOENT if the directory was removed
      between the time it was opened and the time of the read. we need to
      catch this case and remap it to simple end-of-file condition (null
      pointer return value like an error, but no change to errno). this
      issue reportedly affects GNU make in certain corner cases.
      
      rather than backing up and restoring errno, I've just changed the
      syscall to be made in a way that doesn't affect errno (via an inline
      syscall rather than a call to the __getdents function). the latter
      still exists for the purpose of providing the public getdents alias
      which sets errno.
      b9f7f2e8
  10. 25 2月, 2014 8 次提交
  11. 24 2月, 2014 3 次提交
  12. 23 2月, 2014 7 次提交
  13. 22 2月, 2014 4 次提交