Avoid attempt for runtime checks if all environments are defined
[glibc.git] / nptl / tst-cancel4_2.c
blobe8d7550bed403862c016b83abc119f42675c83dc
1 /* Check recvmmsg cancellation.
3 Copyright (C) 2016 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
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 <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <sys/types.h>
24 #include <sys/socket.h>
25 #include <sys/un.h>
26 #include <sys/ipc.h>
27 #include <sys/msg.h>
28 #include <unistd.h>
29 #include <errno.h>
30 #include <pthread.h>
32 #include "tst-cancel4-common.h"
34 static void *
35 tf_recvmmsg (void *arg)
37 struct sockaddr_un sun;
39 tempfd = socket (AF_UNIX, SOCK_DGRAM, 0);
40 if (tempfd == -1)
42 printf ("%s: first socket call failed\n", __FUNCTION__);
43 exit (1);
46 int tries = 0;
49 if (++tries > 10)
51 printf ("%s: too many unsuccessful bind calls\n", __FUNCTION__);
54 strcpy (sun.sun_path, "/tmp/tst-cancel4-socket-5-XXXXXX");
55 if (mktemp (sun.sun_path) == NULL)
57 printf ("%s: cannot generate temp file name\n", __FUNCTION__);
58 exit (1);
61 sun.sun_family = AF_UNIX;
63 while (bind (tempfd, (struct sockaddr *) &sun,
64 offsetof (struct sockaddr_un, sun_path)
65 + strlen (sun.sun_path) + 1) != 0);
67 tempfname = strdup (sun.sun_path);
69 tempfd2 = socket (AF_UNIX, SOCK_DGRAM, 0);
70 if (tempfd2 == -1)
72 printf ("%s: second socket call failed\n", __FUNCTION__);
73 exit (1);
76 int r = pthread_barrier_wait (&b2);
77 if (r != 0 && r != PTHREAD_BARRIER_SERIAL_THREAD)
79 printf ("%s: barrier_wait failed\n", __FUNCTION__);
80 exit (1);
83 if (arg != NULL)
85 r = pthread_barrier_wait (&b2);
86 if (r != 0 && r != PTHREAD_BARRIER_SERIAL_THREAD)
88 printf ("%s: 2nd barrier_wait failed\n", __FUNCTION__);
89 exit (1);
93 pthread_cleanup_push (cl, NULL);
95 char mem[70];
96 struct iovec iov[1];
97 iov[0].iov_base = mem;
98 iov[0].iov_len = arg == NULL ? sizeof (mem) : 0;
100 struct mmsghdr mm;
101 mm.msg_hdr.msg_name = &sun;
102 mm.msg_hdr.msg_namelen = sizeof (sun);
103 mm.msg_hdr.msg_iov = iov;
104 mm.msg_hdr.msg_iovlen = 1;
105 mm.msg_hdr.msg_control = NULL;
106 mm.msg_hdr.msg_controllen = 0;
108 ssize_t ret = recvmmsg (tempfd2, &mm, 1, 0, NULL);
109 if (ret == -1 && errno == ENOSYS)
110 exit (77);
112 pthread_cleanup_pop (0);
114 printf ("%s: recvmmsg returned\n", __FUNCTION__);
116 exit (1);
119 struct cancel_tests tests[] =
121 ADD_TEST (recvmmsg, 2, 1),
123 #define ntest_tf (sizeof (tests) / sizeof (tests[0]))
125 #include "tst-cancel4-common.c"