clone.S 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /* Wrapper around clone system call.
  2. Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #include <features.h>
  16. #define _ERRNO_H 1
  17. #include <bits/errno.h>
  18. #include <sysdep.h>
  19. #define CLONE_VM 0x00000100
  20. #define CLONE_THREAD 0x00010000
  21. /* This is the only really unusual system call in PPC linux, but not
  22. because of any weirdness in the system call itself; because of
  23. all the freaky stuff we have to do to make the call useful. */
  24. /* int [r3] clone(int (*fn)(void *arg) [r3], void *child_stack [r4],
  25. int flags [r5], void *arg [r6], void *parent_tid [r7],
  26. void *tls [r8], void *child_tid [r9]); */
  27. #ifdef __NR_clone
  28. .globl __clone
  29. .type __clone,@function
  30. .align 2
  31. __clone:
  32. /* Check for child_stack == NULL || fn == NULL. */
  33. cmpwi cr0,r4,0
  34. cmpwi cr1,r3,0
  35. cror cr0*4+eq,cr1*4+eq,cr0*4+eq
  36. beq- cr0,.Lbadargs
  37. /* Set up stack frame for parent. */
  38. stwu r1,-32(r1)
  39. cfi_adjust_cfa_offset (32)
  40. #ifndef __ASSUME_FIXED_CLONE_SYSCALL
  41. stmw r29,16(r1)
  42. #else
  43. stmw r30,16(r1)
  44. #endif
  45. /* Set up stack frame for child. */
  46. clrrwi r4,r4,4
  47. li r0,0
  48. stwu r0,-16(r4)
  49. /* Save fn, args, stack across syscall. */
  50. mr r30,r3 /* Function in r30. */
  51. #ifndef __ASSUME_FIXED_CLONE_SYSCALL
  52. mr r29,r4 /* Stack pointer in r29. */
  53. #endif
  54. mr r31,r6 /* Argument in r31. */
  55. /* 'flags' argument is first parameter to clone syscall. (The other
  56. argument is the stack pointer, already in r4.) */
  57. mr r3,r5
  58. /* Move the parent_tid, child_tid and tls arguments. */
  59. mr r5,r7
  60. mr r6,r8
  61. mr r7,r9
  62. /* End FDE now, because in the child the unwind info will be wrong. */
  63. cfi_endproc
  64. /* Do the call. */
  65. li 0, __NR_clone
  66. sc
  67. /* Check for child process. */
  68. cmpwi cr1,r3,0
  69. crandc cr1*4+eq,cr1*4+eq,cr0*4+so
  70. bne- cr1,.Lparent /* The '-' is to minimise the race. */
  71. #ifndef __ASSUME_FIXED_CLONE_SYSCALL
  72. /* On at least mklinux DR3a5, clone() doesn't actually change
  73. the stack pointer. I'm pretty sure this is a bug, because
  74. it adds a race condition if a signal is sent to a thread
  75. just after it is created (in the previous three instructions). */
  76. mr r1,r29
  77. #endif
  78. /* Call procedure. */
  79. mtctr r30
  80. mr r3,r31
  81. bctrl
  82. /* Call _exit with result from procedure. */
  83. b HIDDEN_JUMPTARGET(_exit)
  84. .Lparent:
  85. /* Parent. Restore registers & return. */
  86. #ifndef __ASSUME_FIXED_CLONE_SYSCALL
  87. lmw r29,16(r1)
  88. #else
  89. lmw r30,16(r1)
  90. #endif
  91. addi r1,r1,32
  92. bnslr+
  93. b __syscall_error
  94. .Lbadargs:
  95. li r3,EINVAL
  96. b __syscall_error
  97. cfi_startproc
  98. .size __clone,.-__clone
  99. weak_alias(__clone, clone)
  100. #endif