1. 29 4月, 2016 1 次提交
    • R
      update COPYRIGHT file to clarify that permissions apply for all files · f0a61399
      Rich Felker 提交于
      these changes are the outcome of a long mailing list thread that took
      place March 2016, "musl licensing". among minor other issues,
      prospective users were not confident that the whole-project MIT
      license would grant permission for files to which the COPYRIGHT file
      expressed a belief that copyright not apply, if it turned out that
      these files were actually subject to copyright.
      
      in accordance with the original intent of applying a permissive
      license to the project, which was that license issues not be an
      obstacle to use, the text which was causing confusion is removed. no
      new claims of copyright are made, but new text is added to clarify
      that the grant of permissions applies to all files, and an explicit
      grant of permission to use public headers and crt files without
      attribution has been made.
      
      this patch was reviewed and approved by all substantial contributors
      to the affected files: Bobby Bingham, John Spencer (rofl0r), Nicholas
      J. Kain, Rich Felker, Richard Pennington, Stefan Kristiansson, and
      Szabolcs Nagy.
      f0a61399
  2. 27 4月, 2016 1 次提交
    • R
      fix FILE buffer underflow in ungetwc · 6ed791e7
      Rich Felker 提交于
      commit 7e816a64 (version 1.1.11
      release cycle) moved the code that performs wchar_t to multibyte
      conversion across code that used the resulting length in bytes,
      thereby breaking the unget buffer space check in ungetwc and
      clobbering up to three bytes below the start of the buffer.
      
      for allocated FILEs (all read-enabled FILEs except stdin), the
      underflow clobbers at most the FILE-specific locale pointer. no stores
      are performed through this pointer, but subsequent loads may result in
      a crash or mismatching encoding rule (UTF-8 multibyte vs byte-based).
      
      for stdin, the buffer lies in .bss and the underflow may clobber
      another object. in practice, for libc.so the adjacent object seems to
      be stderr's buffer, which is completely unused, but this could vary
      with linking options, or when static linking.
      
      applications which do not attempt to use more than one character of
      ungetwc pushback, or which do not use ungetwc, are not affected.
      6ed791e7
  3. 26 4月, 2016 1 次提交
    • R
      fix thread structure/dtv-pointer corruption on powerpc · be999f7a
      Rich Felker 提交于
      per the powerpc psabi, offset 4 of the stack at call time belongs to
      the callee and is used for spilling lr (return address). in addition,
      offset 0 on the stack must contain a pointer to the previous stack
      frame, or a null pointer for the initial stack frame of a thread.
      __clone failed to setup any stack frame on the new thread's stack,
      thereby allowing the start function it called to clobber offset 4 of
      the new thread's struct __pthread, which contains the dtv pointer.
      
      add code to setup a proper stack frame and align the stack pointer to
      a multiple of 16 (also an abi requirement) if it was not already
      aligned.
      be999f7a
  4. 18 4月, 2016 2 次提交
  5. 03 4月, 2016 1 次提交
    • R
      add support for mips and mips64 r6 isa · 6d99ad91
      Rich Felker 提交于
      mips32r6 and mips64r6 are actually new isas at both the asm source and
      opcode levels (pre-r6 code cannot run on r6) and thus need to be
      treated as a new subarch. the following changes are made, some of
      which yield code generation improvements for non-r6 targets too:
      
      - add subarch logic in configure script and reloc.h files for dynamic
        linker name.
      
      - suppress use of .set mips2 asm directives (used to allow mips2
        atomic instructions on baseline mips1 builds; the kernel has to
        emulate them on mips1) except when actually needed. they cause wrong
        instruction encodings on r6, and pessimize inlining on at least some
        compilers.
      
      - only hard-code sync instruction encoding on mips1.
      
      - use "ZC" constraint instead of "m" constraint for llsc memory
        operands on r6, where the ll/sc instructions no longer accept full
        16-bit offsets.
      
      - only hard-code rdhwr instruction encoding with .word on targets
        (pre-r2) where it may need trap-and-emulate by the kernel.
        otherwise, just use the instruction mnemonic, and allow an arbitrary
        destination register to be used.
      6d99ad91
  6. 02 4月, 2016 1 次提交
    • R
      fix read past end of haystack buffer for short needles in memmem · c718f9fc
      Rich Felker 提交于
      the two/three/four byte memmem specializations are not prepared to
      handle haystacks shorter than the needle; they unconditionally read at
      least up to the needle length and subtract from the haystack length.
      if the haystack is shorter, the remaining haystack length underflows
      and produces an unbounded search which will eventually either crash or
      find a spurious match.
      
      the top-level memmem function attempted to avoid this case already by
      checking for haystack shorter than needle, but it failed to re-check
      after using memchr to remove the maximal prefix not containing the
      first byte of the needle.
      c718f9fc
  7. 30 3月, 2016 1 次提交
  8. 29 3月, 2016 1 次提交
    • R
      fix undefined pointer comparison in stdio-internal __toread · 6d1a3dfe
      Rich Felker 提交于
      the comparison f->wpos > f->buf has undefined behavior when f->wpos is
      a null pointer, despite the intuition (and actual compiler behavior,
      for all known compilers) being that NULL > ptr is false for all valid
      pointers ptr.
      
      the purpose of the comparison is to determine if the write buffer is
      non-empty, and the idiom used elsewhere for that is comparison against
      f->wbase, which is either a null pointer when not writing, or equal to
      f->buf when writing. in the former case, both f->wpos and f->wbase are
      null; in the latter they are both non-null and point into the same
      array.
      6d1a3dfe
  9. 25 3月, 2016 1 次提交
  10. 19 3月, 2016 8 次提交
  11. 17 3月, 2016 1 次提交
    • R
      fix padding string formats to width in wide printf variants · 4aac019a
      Rich Felker 提交于
      the idiom fprintf(f, "%.*s", n, "") was wrongly used in vfwprintf as a
      means of producing n spaces; instead it produces no output. the
      correct form is fprintf(f, "%*s", n, ""), using width instead of
      precision, since for %s the later is a maximum rather than a minimum.
      4aac019a
  12. 11 3月, 2016 2 次提交
  13. 07 3月, 2016 6 次提交
  14. 05 3月, 2016 1 次提交
  15. 03 3月, 2016 2 次提交
    • N
      add sched_getcpu vDSO support · db66ef1f
      Nathan Zadoks 提交于
      This brings the call to an actually usable speed.
      Quick unscientific benchmark: 14ns : 102ns :: vDSO : syscall
      db66ef1f
    • N
      add sched_getcpu · 98d33573
      Nathan Zadoks 提交于
      This is a GNU extension, but a fairly minor one, for a system call that
      otherwise has no libc wrapper.
      98d33573
  16. 02 3月, 2016 4 次提交
    • S
      fix ^* at the start of a complete BRE · 29b13575
      Szabolcs Nagy 提交于
      This is a workaround to treat * as literal * at the start of a BRE.
      
      Ideally ^ would be treated as an anchor at the start of any BRE
      subexpression and similarly $ would be an anchor at the end of any
      subexpression.  This is not required by the standard and hard to do
      with the current code, but it's the existing practice.  If it is
      changed, * should be treated as literal after such anchor as well.
      29b13575
    • S
      fix * at the start of a BRE subexpression · 39ea71fb
      Szabolcs Nagy 提交于
      commit 7eaa76fc made * invalid at
      the start of a BRE subexpression, but it should be accepted as
      literal * there according to the standard.
      
      This patch does not fix subexpressions starting with ^*.
      39ea71fb
    • M
    • R
      handle non-matching address family entries in hosts file · 6d70c08a
      Rich Felker 提交于
      name_from_hosts failed to account for the possibility of an address
      family error from name_from_numeric, wrongly counting such a return as
      success and using the uninitialized address data as part of the
      results passed up to the caller.
      
      non-matching address family entries cannot simply be ignored or
      results would be inconsistent with respect to whether AF_UNSPEC or a
      specific address family is queried. instead, record that a
      non-matching entry was seen, and fail the lookup with EAI_NONAME of no
      matching-family entries are found.
      6d70c08a
  17. 24 2月, 2016 2 次提交
  18. 22 2月, 2016 1 次提交
  19. 20 2月, 2016 1 次提交
  20. 19 2月, 2016 2 次提交
    • R
      add arch tuple matching for nt32 and nt64 in configure · 4c101e15
      Rich Felker 提交于
      the nt32 and nt64 archs will be provided by the midipix project for
      building musl on top of its posix-like syscall layer for windows. at
      present the needed arch files are in a separate repository, but having
      the tuple matching in the upstream configure script should make it
      possible to overlay the arch files without needing any further
      patching.
      4c101e15
    • R
      work around regression building for armhf with clang (compiler bug) · 71c334f9
      Rich Felker 提交于
      commit e4355bd6 moved the math asm
      from external source files to inline asm, but unfortunately, all
      current releases of clang use the wrong inline asm constraint codes
      for float and double ("w" and "P" instead of "t" and "w",
      respectively). this patch adds detection for the bug in configure,
      and, for now, just disables the affected asm on broken clang versions.
      71c334f9