1 /* Check if clone (CLONE_THREAD) does not call exit_group (BZ #21512)
2 Copyright (C) 2017-2018 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
23 #include <sys/syscall.h>
25 #include <sys/types.h>
26 #include <linux/futex.h>
28 #include <stackinfo.h> /* For _STACK_GROWS_{UP,DOWN}. */
29 #include <support/check.h>
31 /* Test if clone call with CLONE_THREAD does not call exit_group. The 'f'
32 function returns '1', which will be used by clone thread to call the
33 'exit' syscall directly. If _exit is used instead, exit_group will be
34 used and thus the thread group will finish with return value of '1'
35 (where '2' from main thread is expected. */
43 /* Futex wait for TID argument, similar to pthread_join internal
45 #define wait_tid(tid) \
47 __typeof (tid) __tid; \
48 while ((__tid = (tid)) != 0) \
49 futex_wait (&(tid), __tid); \
53 futex_wait (int *futexp
, int val
)
55 return syscall (__NR_futex
, futexp
, FUTEX_WAIT
, val
);
61 char st
[1024] __attribute__ ((aligned
));
62 int clone_flags
= CLONE_THREAD
;
63 /* Minimum required flags to used along with CLONE_THREAD. */
64 clone_flags
|= CLONE_VM
| CLONE_SIGHAND
;
65 /* We will used ctid to call on futex to wait for thread exit. */
66 clone_flags
|= CLONE_CHILD_CLEARTID
;
70 extern int __clone2 (int (*__fn
) (void *__arg
), void *__child_stack_base
,
71 size_t __child_stack_size
, int __flags
,
73 tid
= __clone2 (f
, st
, sizeof (st
), clone_flags
, NULL
, /* ptid */ NULL
,
74 /* tls */ NULL
, &ctid
);
77 tid
= clone (f
, st
+ sizeof (st
), clone_flags
, NULL
, /* ptid */ NULL
,
78 /* tls */ NULL
, &ctid
);
80 tid
= clone (f
, st
, clone_flags
, NULL
, /* ptid */ NULL
, /* tls */ NULL
,
83 #error "Define either _STACK_GROWS_DOWN or _STACK_GROWS_UP"
87 FAIL_EXIT1 ("clone failed: %m");
95 #define EXPECTED_STATUS 2
96 #include <support/test-driver.c>