mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-23 21:40:12 +00:00
5a82c74822
Also, change sources.redhat.com to sourceware.org. This patch was automatically generated by running the following shell script, which uses GNU sed, and which avoids modifying files imported from upstream: sed -ri ' s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g ' \ $(find $(git ls-files) -prune -type f \ ! -name '*.po' \ ! -name 'ChangeLog*' \ ! -path COPYING ! -path COPYING.LIB \ ! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \ ! -path manual/texinfo.tex ! -path scripts/config.guess \ ! -path scripts/config.sub ! -path scripts/install-sh \ ! -path scripts/mkinstalldirs ! -path scripts/move-if-change \ ! -path INSTALL ! -path locale/programs/charmap-kw.h \ ! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \ ! '(' -name configure \ -execdir test -f configure.ac -o -f configure.in ';' ')' \ ! '(' -name preconfigure \ -execdir test -f preconfigure.ac ';' ')' \ -print) and then by running 'make dist-prepare' to regenerate files built from the altered files, and then executing the following to cleanup: chmod a+x sysdeps/unix/sysv/linux/riscv/configure # Omit irrelevant whitespace and comment-only changes, # perhaps from a slightly-different Autoconf version. git checkout -f \ sysdeps/csky/configure \ sysdeps/hppa/configure \ sysdeps/riscv/configure \ sysdeps/unix/sysv/linux/csky/configure # Omit changes that caused a pre-commit check to fail like this: # remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines git checkout -f \ sysdeps/powerpc/powerpc64/ppc-mcount.S \ sysdeps/unix/sysv/linux/s390/s390-64/syscall.S # Omit change that caused a pre-commit check to fail like this: # remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
115 lines
3.6 KiB
C
115 lines
3.6 KiB
C
/* Test entering namespaces.
|
|
Copyright (C) 2016-2019 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library; if not, see
|
|
<https://www.gnu.org/licenses/>. */
|
|
|
|
#include <errno.h>
|
|
#include <netdb.h>
|
|
#include <stdio.h>
|
|
#include <support/check.h>
|
|
#include <support/namespace.h>
|
|
#include <support/xsocket.h>
|
|
#include <support/xunistd.h>
|
|
|
|
/* Check that the loopback interface provides multiple addresses which
|
|
can be used to run independent servers. */
|
|
static void
|
|
test_localhost_bind (void)
|
|
{
|
|
printf ("info: testing loopback interface with multiple addresses\n");
|
|
|
|
/* Create the two server addresses. */
|
|
static const struct addrinfo hints =
|
|
{
|
|
.ai_family = AF_INET,
|
|
.ai_socktype = SOCK_DGRAM,
|
|
.ai_protocol = IPPROTO_UDP,
|
|
};
|
|
struct addrinfo *ai[3];
|
|
TEST_VERIFY_EXIT (getaddrinfo ("127.0.0.1", "53", &hints, ai + 0) == 0);
|
|
TEST_VERIFY_EXIT (getaddrinfo ("127.0.0.2", "53", &hints, ai + 1) == 0);
|
|
TEST_VERIFY_EXIT (getaddrinfo ("127.0.0.3", "53", &hints, ai + 2) == 0);
|
|
|
|
/* Create the server scokets and bind them to these addresses. */
|
|
int sockets[3];
|
|
for (int i = 0; i < 3; ++i)
|
|
{
|
|
sockets[i] = xsocket
|
|
(ai[i]->ai_family, ai[i]->ai_socktype, ai[i]->ai_protocol);
|
|
xbind (sockets[i], ai[i]->ai_addr, ai[i]->ai_addrlen);
|
|
}
|
|
|
|
/* Send two packets to each server. */
|
|
int client = xsocket (AF_INET, SOCK_DGRAM, IPPROTO_UDP);
|
|
for (int i = 0; i < 3; ++i)
|
|
{
|
|
TEST_VERIFY (sendto (client, &i, sizeof (i), 0,
|
|
ai[i]->ai_addr, ai[i]->ai_addrlen) == sizeof (i));
|
|
int j = i + 256;
|
|
TEST_VERIFY (sendto (client, &j, sizeof (j), 0,
|
|
ai[i]->ai_addr, ai[i]->ai_addrlen) == sizeof (j));
|
|
}
|
|
|
|
/* Check that the packets can be received with the expected
|
|
contents. Note that the receive calls interleave differently,
|
|
which hopefully proves that the sockets are, indeed,
|
|
independent. */
|
|
for (int i = 0; i < 3; ++i)
|
|
{
|
|
int buf;
|
|
TEST_VERIFY (recv (sockets[i], &buf, sizeof (buf), 0) == sizeof (buf));
|
|
TEST_VERIFY (buf == i);
|
|
}
|
|
for (int i = 0; i < 3; ++i)
|
|
{
|
|
int buf;
|
|
TEST_VERIFY (recv (sockets[i], &buf, sizeof (buf), 0) == sizeof (buf));
|
|
TEST_VERIFY (buf == i + 256);
|
|
/* Check that there is no more data to receive. */
|
|
TEST_VERIFY (recv (sockets[i], &buf, sizeof (buf), MSG_DONTWAIT) == -1);
|
|
TEST_VERIFY (errno == EWOULDBLOCK || errno == EAGAIN);
|
|
}
|
|
|
|
/* Close all sockets and free the addresses. */
|
|
for (int i = 0; i < 3; ++i)
|
|
{
|
|
freeaddrinfo (ai[i]);
|
|
xclose (sockets[i]);
|
|
}
|
|
xclose (client);
|
|
}
|
|
|
|
|
|
static int
|
|
do_test (void)
|
|
{
|
|
bool root = support_become_root ();
|
|
if (root)
|
|
printf ("info: acquired root-like privileges\n");
|
|
bool netns = support_enter_network_namespace ();
|
|
if (netns)
|
|
printf ("info: entered network namespace\n");
|
|
if (support_in_uts_namespace ())
|
|
printf ("info: also entered UTS namespace\n");
|
|
|
|
if (root && netns)
|
|
test_localhost_bind ();
|
|
|
|
return 0;
|
|
}
|
|
|
|
#include <support/test-driver.c>
|