Further harden glibc malloc metadata against 1-byte overflows.
[glibc.git] / nptl / tst-cancel14.c
blob75e2c3b3ab564f045ef131fa3851fbc2e79e31a9
1 /* Test sem_timedwait 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>
27 #include <sys/time.h>
30 static pthread_barrier_t bar;
31 static sem_t sem;
34 static void
35 cleanup (void *arg)
37 static int ncall;
39 if (++ncall != 1)
41 puts ("second call to cleanup");
42 exit (1);
47 static void *
48 tf (void *arg)
50 pthread_cleanup_push (cleanup, NULL);
52 int e = pthread_barrier_wait (&bar);
53 if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD)
55 puts ("error: tf: 1st barrier_wait failed");
56 exit (1);
59 struct timeval tv;
60 (void) gettimeofday (&tv, NULL);
62 struct timespec ts;
63 TIMEVAL_TO_TIMESPEC (&tv, &ts);
65 /* Timeout in 5 seconds. */
66 ts.tv_sec += 5;
68 /* This call should block and be cancelable. */
69 sem_timedwait (&sem, &ts);
71 pthread_cleanup_pop (0);
73 return NULL;
77 static int
78 do_test (void)
80 pthread_t th;
82 if (pthread_barrier_init (&bar, NULL, 2) != 0)
84 puts ("error: barrier_init failed");
85 exit (1);
88 if (sem_init (&sem, 0, 1) != 0)
90 puts ("error: sem_init failed");
91 exit (1);
94 if (pthread_create (&th, NULL, tf, NULL) != 0)
96 puts ("error: create failed");
97 exit (1);
100 /* Check whether cancellation is honored even before sem_timedwait does
101 anything. */
102 if (pthread_cancel (th) != 0)
104 puts ("error: 1st cancel failed");
105 exit (1);
108 int e = pthread_barrier_wait (&bar);
109 if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD)
111 puts ("1st barrier_wait failed");
112 exit (1);
115 void *r;
116 if (pthread_join (th, &r) != 0)
118 puts ("join failed");
119 exit (1);
122 if (r != PTHREAD_CANCELED)
124 puts ("thread not canceled");
125 exit (1);
128 return 0;
132 #define TEST_FUNCTION do_test ()
133 #include "../test-skeleton.c"