1. 19 6月, 2011 1 次提交
    • R
      experimental dynamic linker! · 51e2d831
      Rich Felker 提交于
      some notes:
      - library search path is hard coded
      - x86_64 code is untested and may not work
      - dlopen/dlsym is not yet implemented
      - relocations in read-only memory won't work
      51e2d831
  2. 15 6月, 2011 1 次提交
  3. 07 6月, 2011 1 次提交
    • R
      use __WCHAR_TYPE__ on i386 if it is defined · 0b6b43ed
      Rich Felker 提交于
      unfortunately traditional i386 practice was to use "long" rather than
      "int" for wchar_t, despite the latter being much more natural and
      logical. we followed this practice, but it seems some compilers (clang
      and maybe certain gcc builds or others too..?) have switched to using
      int, resulting in spurious pointer type mismatches when L"..." wide
      strings are used. the best solution I could find is to use the
      compiler's definition of wchar_t if it exists, and otherwise fallback
      to the traditional definition.
      
      there's no point in duplicating this approach on 64-bit archs, as
      their only 32-bit type is int.
      0b6b43ed
  4. 28 4月, 2011 2 次提交
    • R
      use compiler builtins for variadic macros when available · def0af18
      Rich Felker 提交于
      this slightly cuts down on the degree musl "fights with" gcc, but more
      importantly, it fixes a critical bug when gcc inlines a variadic
      function and optimizes out the variadic arguments due to noticing that
      they were "not used" (by __builtin_va_arg).
      
      we leave the old code in place if __GNUC__ >= 3 is false; it seems
      like it might be necessary at least for tinycc support and perhaps if
      anyone ever gets around to fixing gcc 2.95.3 enough to make it work..
      def0af18
    • R
      add word-sized ctz function to atomic.h · 4bb9b4f3
      Rich Felker 提交于
      strictly speaking this and a few other ops should be factored into
      asm.h or the file should just be renamed to asm.h, but whatever. clean
      it up someday.
      4bb9b4f3
  5. 22 4月, 2011 1 次提交
  6. 21 4月, 2011 2 次提交
  7. 17 4月, 2011 1 次提交
    • R
      overhaul pthread cancellation · feee9890
      Rich Felker 提交于
      this patch improves the correctness, simplicity, and size of
      cancellation-related code. modulo any small errors, it should now be
      completely conformant, safe, and resource-leak free.
      
      the notion of entering and exiting cancellation-point context has been
      completely eliminated and replaced with alternative syscall assembly
      code for cancellable syscalls. the assembly is responsible for setting
      up execution context information (stack pointer and address of the
      syscall instruction) which the cancellation signal handler can use to
      determine whether the interrupted code was in a cancellable state.
      
      these changes eliminate race conditions in the previous generation of
      cancellation handling code (whereby a cancellation request received
      just prior to the syscall would not be processed, leaving the syscall
      to block, potentially indefinitely), and remedy an issue where
      non-cancellable syscalls made from signal handlers became cancellable
      if the signal handler interrupted a cancellation point.
      
      x86_64 asm is untested and may need a second try to get it right.
      feee9890
  8. 15 4月, 2011 5 次提交
  9. 14 4月, 2011 2 次提交
    • R
      numerous fixes to sysv ipc · 07e865cc
      Rich Felker 提交于
      some of these definitions were just plain wrong, others based on
      outdated ancient "non-64" versions of the kernel interface.
      
      as much as possible has now been moved out of bits/*
      
      these changes break abi (the old abi for these functions was wrong),
      but since they were not working anyway it can hardly matter.
      07e865cc
    • R
      fix and cleanup suseconds_t/timeval stuff (broken on 64-bit) · cac7d837
      Rich Felker 提交于
      trash in the upper 32 bits was making the kernel sleep forever in
      select on 64-bit systems.
      cac7d837
  10. 11 4月, 2011 3 次提交
    • R
      more types cleanup · 43b2e9bf
      Rich Felker 提交于
      the basic idea is that the only things in alltypes.h should be types
      that either vary from system to system (in practice, not just in
      theoretical la-la land - this is the implementation so we choose what
      constraints we want to impose on ports) or which are needed by
      multiple system headers.
      43b2e9bf
    • R
      28bde3b7
    • R
      add missing float.h macros · 196d6437
      Rich Felker 提交于
      actually FLT_ROUNDS needs to expand to a static inline function that
      obtains the current rounding mode and returns it, but that will be
      added later with fenv.h stuff.
      196d6437
  11. 08 4月, 2011 1 次提交
    • R
      workaround broken msghdr struct on 64bit linux · 71687907
      Rich Felker 提交于
      POSIX clearly specifies the type of msg_iovlen and msg_controllen, and
      Linux ignores it and makes them both size_t instead. to work around
      this we add padding (instead of just using the wrong types like glibc
      does), but we also need to patch-up the struct before passing it to
      the kernel in case the caller did not zero-fill it.
      
      if i could trust the kernel to just ignore the upper 32 bits, this
      would not be necessary, but i don't think it will ignore them...
      71687907
  12. 06 4月, 2011 3 次提交
  13. 04 4月, 2011 1 次提交
  14. 02 4月, 2011 2 次提交
  15. 31 3月, 2011 1 次提交
    • R
      avoid all malloc/free in timer creation/destruction · 3990c5c6
      Rich Felker 提交于
      instead of allocating a userspace structure for signal-based timers,
      simply use the kernel timer id. we use the fact that thread pointers
      will always be zero in the low bit (actually more) to encode integer
      timerid values as pointers.
      
      also, this change ensures that the timer_destroy syscall has completed
      before the library timer_destroy function returns, in case it matters.
      3990c5c6
  16. 29 3月, 2011 2 次提交
  17. 26 3月, 2011 1 次提交
    • R
      match glibc/lsb cancellation abi on i386 · ea343364
      Rich Felker 提交于
      glibc made the ridiculous choice to use pass-by-register calling
      convention for these functions, which is impossible to duplicate
      directly on non-gcc compilers. instead, we use ugly asm to wrap and
      convert the calling convention. presumably this works with every
      compiler anyone could potentially want to use.
      ea343364
  18. 25 3月, 2011 1 次提交
    • R
      overhaul cancellation to fix resource leaks and dangerous behavior with signals · b470030f
      Rich Felker 提交于
      this commit addresses two issues:
      
      1. a race condition, whereby a cancellation request occurring after a
      syscall returned from kernelspace but before the subsequent
      CANCELPT_END would cause cancellable resource-allocating syscalls
      (like open) to leak resources.
      
      2. signal handlers invoked while the thread was blocked at a
      cancellation point behaved as if asynchronous cancellation mode wer in
      effect, resulting in potentially dangerous state corruption if a
      cancellation request occurs.
      
      the glibc/nptl implementation of threads shares both of these issues.
      
      with this commit, both are fixed. however, cancellation points
      encountered in a signal handler will not be acted upon if the signal
      was received while the thread was already at a cancellation point.
      they will of course be acted upon after the signal handler returns, so
      in real-world usage where signal handlers quickly return, it should
      not be a problem. it's possible to solve this problem too by having
      sigaction() wrap all signal handlers with a function that uses a
      pthread_cleanup handler to catch cancellation, patch up the saved
      context, and return into the cancellable function that will catch and
      act upon the cancellation. however that would be a lot of complexity
      for minimal if any benefit...
      b470030f
  19. 20 3月, 2011 4 次提交
    • R
    • R
      fix typo in x86_64 part of syscall overhaul · 7877db6b
      Rich Felker 提交于
      7877db6b
    • R
      syscall overhaul part two - unify public and internal syscall interface · 685e40bb
      Rich Felker 提交于
      with this patch, the syscallN() functions are no longer needed; a
      variadic syscall() macro allows syscalls with anywhere from 0 to 6
      arguments to be made with a single macro name. also, manually casting
      each non-integer argument with (long) is no longer necessary; the
      casts are hidden in the macros.
      
      some source files which depended on being able to define the old macro
      SYSCALL_RETURNS_ERRNO have been modified to directly use __syscall()
      instead of syscall(). references to SYSCALL_SIGSET_SIZE and SYSCALL_LL
      have also been changed.
      
      x86_64 has not been tested, and may need a follow-up commit to fix any
      minor bugs/oversights.
      685e40bb
    • R
      overhaul syscall interface · d00ff295
      Rich Felker 提交于
      this commit shuffles around the location of syscall definitions so
      that we can make a syscall() library function with both SYS_* and
      __NR_* style syscall names available to user applications, provides
      the syscall() library function, and optimizes the code that performs
      the actual inline syscalls in the library itself.
      
      previously on i386 when built as PIC (shared library), syscalls were
      incurring bus lock (lock prefix) overhead at entry and exit, due to
      the way the ebx register was being loaded (xchg instruction with a
      memory operand). now the xchg takes place between two registers.
      
      further cleanup to arch/$(ARCH)/syscall.h is planned.
      d00ff295
  20. 19 3月, 2011 1 次提交
  21. 18 3月, 2011 1 次提交
  22. 11 3月, 2011 2 次提交
  23. 10 3月, 2011 1 次提交