1 /* Test that garbage packets do not affect timeout handling.
2 Copyright (C) 2017-2022 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 <https://www.gnu.org/licenses/>. */
19 #include <netinet/in.h>
23 #include <support/check.h>
24 #include <support/namespace.h>
25 #include <support/xsocket.h>
26 #include <support/xthread.h>
27 #include <sys/socket.h>
30 /* Descriptor for the server UDP socket. */
34 garbage_sender_thread (void *unused
)
38 struct sockaddr_storage sa
;
39 socklen_t salen
= sizeof (sa
);
41 if (recvfrom (server_fd
, buf
, sizeof (buf
), 0,
42 (struct sockaddr
*) &sa
, &salen
) < 0)
43 FAIL_EXIT1 ("recvfrom: %m");
45 /* Send garbage packets indefinitely. */
49 /* sendto can fail if the client closed the socket. */
50 if (sendto (server_fd
, buf
, sizeof (buf
), 0,
51 (struct sockaddr
*) &sa
, salen
) < 0)
54 /* Wait a bit, to avoid burning too many CPU cycles in a
55 tight loop. The wait period must be much shorter than
56 the client timeouts configured below. */
65 support_become_root ();
66 support_enter_network_namespace ();
68 server_fd
= xsocket (AF_INET
, SOCK_DGRAM
| SOCK_CLOEXEC
, IPPROTO_UDP
);
69 struct sockaddr_in server_address
=
71 .sin_family
= AF_INET
,
72 .sin_addr
.s_addr
= htonl (INADDR_LOOPBACK
),
75 (struct sockaddr
*) &server_address
, sizeof (server_address
));
77 socklen_t sinlen
= sizeof (server_address
);
78 xgetsockname (server_fd
, (struct sockaddr
*) &server_address
, &sinlen
);
79 TEST_VERIFY (sizeof (server_address
) == sinlen
);
82 /* Garbage packet source. */
83 xpthread_detach (xpthread_create (NULL
, garbage_sender_thread
, NULL
));
85 /* Test client. Use an arbitrary timeout of one second, which is
86 much longer than the garbage packet interval, but still
87 reasonably short, so that the test completes quickly. */
88 int client_fd
= RPC_ANYSOCK
;
89 CLIENT
*clnt
= clntudp_create (&server_address
,
90 1, 2, /* Arbitrary RPC endpoint numbers. */
91 (struct timeval
) { 1, 0 },
94 FAIL_EXIT1 ("clntudp_create: %m");
96 TEST_VERIFY (clnt_call (clnt
, 3, /* Arbitrary RPC procedure number. */
97 (xdrproc_t
) xdr_void
, NULL
,
98 (xdrproc_t
) xdr_void
, NULL
,
99 ((struct timeval
) { 1, 0 })));
104 #include <support/test-driver.c>