Further harden glibc malloc metadata against 1-byte overflows.
[glibc.git] / nptl / tst-cancel12.c
blobff8c4241a4ea74a4401d7080680241bff3786444
1 /* Test sem_wait cancellation for uncontended case.
2 Copyright (C) 2003-2017 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@redhat.com>, 2003.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
20 #include <errno.h>
21 #include <pthread.h>
22 #include <semaphore.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <unistd.h>
29 static pthread_barrier_t bar;
30 static sem_t sem;
33 static void
34 cleanup (void *arg)
36 static int ncall;
38 if (++ncall != 1)
40 puts ("second call to cleanup");
41 exit (1);
46 static void *
47 tf (void *arg)
49 pthread_cleanup_push (cleanup, NULL);
51 int e = pthread_barrier_wait (&bar);
52 if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD)
54 puts ("error: tf: 1st barrier_wait failed");
55 exit (1);
58 /* This call should be cancelable. */
59 sem_wait (&sem);
61 pthread_cleanup_pop (0);
63 return NULL;
67 static int
68 do_test (void)
70 pthread_t th;
72 if (pthread_barrier_init (&bar, NULL, 2) != 0)
74 puts ("error: barrier_init failed");
75 exit (1);
78 /* A value higher than 0 will check for uncontended pthread cancellation,
79 where the sem_wait operation will return immediatelly. */
80 if (sem_init (&sem, 0, 1) != 0)
82 puts ("error: sem_init failed");
83 exit (1);
86 if (pthread_create (&th, NULL, tf, NULL) != 0)
88 puts ("error: create failed");
89 exit (1);
92 if (pthread_cancel (th) != 0)
94 puts ("error: pthread_cancel failed");
95 exit (1);
98 int e = pthread_barrier_wait (&bar);
99 if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD)
101 puts ("error: 1st barrier_wait failed");
102 exit (1);
105 void *r;
106 if (pthread_join (th, &r) != 0)
108 puts ("error: pthread_join failed");
109 exit (1);
112 if (r != PTHREAD_CANCELED)
114 puts ("error: thread not canceled");
115 exit (1);
118 return 0;
122 #define TEST_FUNCTION do_test ()
123 #include "../test-skeleton.c"