1/* Copyright (C) 2000-2024 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3
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
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
17
18/* clone is even more special than fork as it mucks with stacks
19 and invokes a function in the right context after its all over. */
20
21#include <sysdep.h>
22#include <tls.h>
23#define _ERRNO_H 1
24#include <bits/errno.h>
25
26/* int __clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg,
27 pid_t *parent_tid, void *tls, pid_t *child_tid); */
28/* sys_clone (void *child_stack, unsigned long flags,
29 pid_t *parent_tid, pid_t *child_tid, void *tls); */
30
31 .text
32ENTRY(__clone)
33 stm %r6,%r7,24(%r15) /* Save registers. */
34 cfi_offset (%r7, -68)
35 cfi_offset (%r6, -72)
36 ltr %r7,%r2 /* check fn and move to %r7 */
37 jz error /* no NULL function pointers */
38 lhi %r0,-8 /* Align the child_stack to a ... */
39 nr %r3,%r0 /* double word boundary and ... */
40 jz error /* avoid NULL stack pointers. */
41 lr %r0,%r5 /* move *arg out of the way */
42 lr %r2,%r3 /* move child_stack to %r2 */
43 lr %r3,%r4 /* move flags to %r3 */
44 lr %r4,%r6 /* move parent_tid to %r4 */
45 l %r5,100(%r15) /* load child_tid from stack */
46 l %r6,96(%r15) /* load tls from stack */
47 lhi %r1,SYS_ify(clone)
48 svc 0
49 ltr %r2,%r2 /* check return code */
50 jz thread_start
51 lm %r6,%r7,24(%r15) /* Load registers. */
52 jm SYSCALL_ERROR_LABEL
53 br %r14
54error:
55 lhi %r2,-EINVAL
56 lm %r6,%r7,24(%r15) /* Load registers. */
57 j SYSCALL_ERROR_LABEL
58PSEUDO_END (__clone)
59
60thread_start:
61 cfi_startproc
62 /* Mark r14 as undefined in order to stop unwinding here! */
63 cfi_undefined (r14)
64 /* fn is in gpr 7, arg in gpr 0 */
65 lr %r2,%r0 /* set first parameter to void *arg */
66 ahi %r15,-96 /* make room on the stack for the save area */
67 xc 0(4,%r15),0(%r15)
68 basr %r14,%r7 /* jump to fn */
69 DO_CALL (exit, 1)
70 cfi_endproc
71
72libc_hidden_def (__clone)
73weak_alias (__clone, clone)
74

source code of glibc/sysdeps/unix/sysv/linux/s390/s390-32/clone.S