1. 05 2月, 2016 1 次提交
  2. 03 2月, 2016 2 次提交
    • R
      make configure accept -h as an alias for --help · 47314f1e
      Rich Felker 提交于
      47314f1e
    • R
      update INSTALL file with new archs, compiler info · 40891ae6
      Rich Felker 提交于
      add aarch64 and or1k archs, upgrade sh from experimental, and note
      that sh now supports the FDPIC ABI.
      
      the old advice on compiler versions was outdated and more specific
      than made sense. presence of compiler bugs varies a lot by arch, so
      it's hard to make any good recommendations beyond "recent". if we want
      to document specific known-good/bad compiler versions, a much larger
      section in the documentation than what's appropriate for the INSTALL
      file would be needed.
      40891ae6
  3. 01 2月, 2016 3 次提交
    • S
      fix malloc_usable_size for NULL input · d1507646
      Szabolcs Nagy 提交于
      the linux man page specifies malloc_usable_size(0) to return 0 and
      this is the semantics other implementations follow (jemalloc).
      reported by Alexander Monakov.
      d1507646
    • S
      regex: increase the stack tre uses for tnfa creation · 2810b30f
      Szabolcs Nagy 提交于
      10k elements stack is increased to 1000k, otherwise tnfa creation fails
      for reasonable sized patterns: a single literal char can add 7 elements
      to this stack, so regcomp of an 1500 char long pattern (with only litral
      chars) fails with REG_ESPACE. (the new limit allows about < 150k chars,
      this arbitrary limit allows most command line regex usage.)
      
      ideally there would be no upper bound: regcomp dynamically reallocates
      this buffer, every reallocation checks for allocation failure and at
      the end this stack is freed so there is no reason for special bound.
      however that may have unwanted effect on regcomp and regexec runtime
      so this is a conservative change.
      2810b30f
    • S
      better a_sc inline asm constraint on aarch64 and arm · 3b277253
      Szabolcs Nagy 提交于
      "Q" input constraint was used for the written object, instead of "=Q"
      output constraint.  this should not cause problems because "memory"
      is on the clobber list, but "=Q" better documents the intent and more
      consistent with the actual asm code.
      
      this changes the generated code, because different registers are used,
      but other than the register names nothing should change.
      3b277253
  4. 31 1月, 2016 10 次提交
    • R
      don't suppress shared libc when linker lacks -Bsymbolic-functions · 65498f28
      Rich Felker 提交于
      previous work overhauling the dynamic linker made it so that linking
      libc with -Bsymbolic-functions was no longer mandatory, but the
      configure logic that forced --disable-shared when ld failed to accept
      the option was left in place.
      
      this commit removes the hard-coded -Bsymbolic-functions from the
      Makefile and changes the configure test to one that simply adds it to
      the auto-detected LDFLAGS on success.
      65498f28
    • F
      ldso: fix GDB dynamic linker info on MIPS · c18d05f0
      Felix Fietkau 提交于
      GDB is looking for a pointer to the ldso debug info in the data of the
      ..rld_map section.
      Signed-off-by: NFelix Fietkau <nbd@openwrt.org>
      c18d05f0
    • S
      regex: simplify the {,} repetition parsing logic · 831e9d9e
      Szabolcs Nagy 提交于
      831e9d9e
    • S
      regex: treat \+, \? as repetitions in BRE · 25160f1c
      Szabolcs Nagy 提交于
      These are undefined escape sequences by the standard, but often
      used in sed scripts.
      25160f1c
    • S
      regex: rewrite the repetition parsing code · 03498ec2
      Szabolcs Nagy 提交于
      The goto logic was hard to follow and modify. This is
      in preparation for the BRE \+ and \? support.
      03498ec2
    • S
      regex: treat \| in BRE as alternation · da4cc13b
      Szabolcs Nagy 提交于
      The standard does not define semantics for \| in BRE, but some code
      depends on it meaning alternation. Empty alternative expression is
      allowed to be consistent with ERE.
      
      Based on a patch by Rob Landley.
      da4cc13b
    • S
      regex: reject repetitions in some cases with REG_BADRPT · 7eaa76fc
      Szabolcs Nagy 提交于
      Previously repetitions were accepted after empty expressions like
      in (*|?)|{2}, but in BRE the handling of * and \{\} were not
      consistent: they were accepted as literals in some cases and
      repetitions in others.
      
      It is better to treat repetitions after an empty expression as an
      error (this is allowed by the standard, and glibc mostly does the
      same). This is hard to do consistently with the current logic so
      the new rule is:
      
      Reject repetitions after empty expressions, except after assertions
      ^*, $? and empty groups ()+ and never treat them as literals.
      
      Empty alternation (|a) is undefined by the standard, but it can be
      useful so that should be accepted.
      7eaa76fc
    • S
      regex: clean up position accounting for literal nodes · a8cc2253
      Szabolcs Nagy 提交于
      This should not change the meaning of the code, just make the intent
      clearer: advancing position is tied to adding a new literal.
      a8cc2253
    • R
      fix misaligned pointer-like objects in arm atomics asm source file · 9ee57db8
      Rich Felker 提交于
      this file's .data section was not aligned, and just happened to get
      the correct alignment with past builds. it's likely that the move of
      atomic.s from arch/arm/src to src/thread/arm caused the change in
      alignment, which broke the atomic and thread-pointer access fragments
      on actual armv5 hardware.
      9ee57db8
    • R
      fix regression in dynamic-linked tls when both main app & libs have tls · 140ad50c
      Rich Felker 提交于
      commit d56460c9 introduced this bug by
      setting up the tls module chain incorrectly when the main app has tls.
      the singly-linked list head pointer was setup correctly, but the tail
      pointer was not, so the first attempt to append to the list (for a
      shared library with tls) would treat the list as empty and effectively
      removed the main app from the list. this left all tls module id
      numbers off-by-one.
      
      this bug did not appear in any released versions.
      140ad50c
  5. 29 1月, 2016 6 次提交
    • R
      1563587b
    • R
      fix uninitialized variable in new resolv.conf parser · dcad020c
      Rich Felker 提交于
      dcad020c
    • R
      add support for search domains to dns resolver · 3d6e2e47
      Rich Felker 提交于
      search is only performed if the search or domain keyword is used in
      resolv.conf and the queried name has fewer than ndots dots. there is
      no default domain and names with >=ndots dots are never subjected to
      search; failure in the root scope is final.
      
      the (non-POSIX) res_search API presently does not honor search. this
      may be added at some point in the future if needed.
      
      resolv.conf is now parsed twice, at two different layers of the code
      involved. this will be fixed in a subsequent patch.
      3d6e2e47
    • R
      fix handling of dns response codes · 0fef7ffa
      Rich Felker 提交于
      rcode of 3 (NxDomain) was treated as a hard EAI_NONAME failure, but it
      should instead return 0 (no results) so the caller can continue
      searching. this will be important for adding search domain support.
      the top-level caller will automatically return EAI_NONAME if there are
      zero results at the end.
      
      also, the case where rcode is 0 (success) but there are no results was
      not handled. this happens when the domain exists but there are no A or
      AAAA records for it. in this case a hard EAI_NONAME should be imposed
      to inhibit further search, since the name was defined and just does
      not have any address associated with it. previously a misleading hard
      failure of EAI_FAIL was reported.
      0fef7ffa
    • R
      fe8453d2
    • R
      factor resolv.conf parsing out of res_msend to its own file · d6cb08bc
      Rich Felker 提交于
      this change is made in preparation for adding search domains, for
      which higher-level code will need to parse resolv.conf. simply parsing
      it twice for each lookup would be one reasonable option, but the
      existing parser code was buggy anyway, which suggested to me that it's
      a bad idea to have two variants of this code in two different places.
      
      the old code in res_msend potentially misinterpreted overly long lines
      in resolv.conf, and stopped parsing after it found 3 nameservers, even
      if there were relevant options left to be parsed later in the file.
      d6cb08bc
  6. 28 1月, 2016 7 次提交
    • R
      add errno setting to stub utmpxname function · 19df86cb
      Rich Felker 提交于
      19df86cb
    • K
      legacy/utmpx: Add utmp{,x}name stubs · 378f8cb5
      Kylie McClain 提交于
      378f8cb5
    • R
      deduplicate the bulk of the arch bits headers · 4dfac115
      Rich Felker 提交于
      all bits headers that were identical for a number of 'clean' archs are
      moved to the new arch/generic tree. in addition, a few headers that
      differed only cosmetically from the new generic version are removed.
      
      additional deduplication may be possible in mman.h and in several
      headers (limits.h, posix.h, stdint.h) that mostly depend on whether
      the arch is 32- or 64-bit, but they are left alone for now because
      greater gains are likely possible with more invasive changes to header
      logic, which is beyond the scope of this commit.
      4dfac115
    • R
      add arch/generic include fallback to build rules · efdf04cf
      Rich Felker 提交于
      this sets the stage for the first phase of the bits deduplication.
      bits headers which are identical for "most" archs will be moved to
      arch/generic/bits.
      efdf04cf
    • R
      remove unneeded -I options from configure test for may_alias attribute · e1d99894
      Rich Felker 提交于
      this test does not include anything, so the -I options are not useful
      and are just a maintenance burden if paths change.
      e1d99894
    • H
      mips: add vdso support · b0bf52f3
      Hauke Mehrtens 提交于
      vdso support is available on mips starting with kernel 4.4, see kernel
      commit a7f4df4e21 "MIPS: VDSO: Add implementations of gettimeofday()
      and clock_gettime()" for details.
      
      In Linux kernel 4.4.0 the mips code returns -ENOSYS in case it can not
      handle the vdso call and assumes the libc will call the original
      syscall in this case. Handle this case in musl. Currently Linux kernel
      4.4.0 handles the following types: CLOCK_REALTIME_COARSE,
      CLOCK_MONOTONIC_COARSE, CLOCK_REALTIME and CLOCK_MONOTONIC.
      b0bf52f3
    • R
      improve clock_gettime and adapt it to support slightly-broken vdso · a5ba2d75
      Rich Felker 提交于
      these changes are motivated by a functionally similar patch by Hauke
      Mehrtens to address the needs of the new mips vdso clock_gettime,
      which wrongly fails with ENOSYS rather than falling back to making a
      syscall for clock ids it cannot handle from userspace. in the process
      of preparing to handle that case, it was noticed that the old
      clock_gettime use of the vdso was actually wrong with respect to error
      handling -- the tail call to the vdso function failed to set errno and
      instead returned an error code.
      
      since tail calls to vdso are no longer possible and since the plain
      syscall code is now needed as a fallback path anyway, it does not make
      sense to use a function pointer to call the plain syscall code path.
      instead, it's inlined at the end of the main clock_gettime function.
      
      the new code also avoids the need to test for initialization of the
      vdso function pointer by statically initializing it to a self-init
      function, and eliminates redundant loads from the volatile pointer
      object.
      
      finally, the use of a_cas_p on an object of type other than void *,
      which is not permitted aliasing, is replaced by using an object with
      the correct type and casting the value.
      a5ba2d75
  7. 27 1月, 2016 11 次提交
    • S
      fix siginfo_t for mips · 9a3b8f97
      Szabolcs Nagy 提交于
      si_errno and si_code are swapped in mips siginfo_t compared to other
      archs and some si_code values are different.  This fix is required
      for POSIX timers to work.
      
      based on patch by Dmitry Ivanov.
      9a3b8f97
    • S
      move bits/signal.h include close to the top of signal.h · 22f84829
      Szabolcs Nagy 提交于
      only have code above the bits/signal.h include that is necessary.
      (some types are used for the ucontext struct and mips has to
      override a few macro definitions)
      
      this way mips bits/signal.h will be able to affect siginfo_t.
      22f84829
    • S
      add new PTRACE_SECCOMP_GET_FILTER ptrace command · c243d6f0
      Szabolcs Nagy 提交于
      allows the tracer to dump the bpf seccomp filters of the tracee,
      new in linux v4.4, commit f8e529ed941ba2bbcbf310b575d968159ce7e895
      c243d6f0
    • S
      add MCL_ONFAULT and MLOCK_ONFAULT mlockall and mlock2 flags · 789ff6a9
      Szabolcs Nagy 提交于
      they lock faulted pages into memory (useful when a small part of a
      large mapped file needs efficient access), new in linux v4.4, commit
      b0f205c2a3082dd9081f9a94e50658c5fa906ff1
      
      MLOCK_* is not in the POSIX reserved namespace for sys/mman.h
      789ff6a9
    • S
      add mlock2 syscall number from linux v4.4 · 51d5f139
      Szabolcs Nagy 提交于
      this is mlock with a flags argument, new in linux commit
      a8ca5d0ecbdde5cc3d7accacbd69968b0c98764e
      
      as usual microblaze and sh don't have allocated syscall number yet.
      51d5f139
    • S
      add new PTRACE_O_SUSPEND_SECCOMP ptrace option · aaa60405
      Szabolcs Nagy 提交于
      allows a ptracer process to disable/enable seccomp filters of the
      traced process, useful for checkpoint/restore, new in v4.3 commit
      13c4a90119d28cfcb6b5bdd820c233b86c2b0237
      aaa60405
    • S
      add new PR_CAP_AMBIENT and related defines to sys/prctl.h · 8afd2a1d
      Szabolcs Nagy 提交于
      ambient capability mask is new in linux v4.3, commit
      58319057b7847667f0c9585b9de0e8932b0fdb08
      8afd2a1d
    • S
      update netpacket/packet.h to linux v4.3 · 3934f49c
      Szabolcs Nagy 提交于
      3934f49c
    • S
      add new membarrier, userfaultfd and switch_endian syscalls · 09001a8f
      Szabolcs Nagy 提交于
      new in linux v4.3 added for aarch64, arm, i386, mips, or1k, powerpc,
      x32 and x86_64.
      
      membarrier is a system wide memory barrier, moves most of the
      synchronization cost to one side, new in kernel commit
      5b25b13ab08f616efd566347d809b4ece54570d1
      
      userfaultfd is useful for qemu and is new in kernel commit
      8d2afd96c20316d112e04d935d9e09150e988397
      
      switch_endian is powerpc only for switching endianness, new in commit
      529d235a0e190ded1d21ccc80a73e625ebcad09b
      09001a8f
    • S
      add new i386 socket syscall numbers · 37bfb68f
      Szabolcs Nagy 提交于
      new in linux v4.3 commit 9dea5dc921b5f4045a18c63eb92e84dc274d17eb
      direct calls instead of socketcall allow better seccomp filtering.
      
      musl continues to use socketcalls internally on i386. (older kernels
      would need a fallback mechanism if the direct calls were used.)
      37bfb68f
    • S
      change the internal socketcall selection logic · a5e133bf
      Szabolcs Nagy 提交于
      only use SYS_socketcall if SYSCALL_USE_SOCKETCALL is defined
      internally, otherwise use direct syscalls.
      
      this commit does not change the current behaviour, it is
      preparation for adding direct syscall numbers for i386.
      a5e133bf