mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-13 00:30:07 +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
137 lines
4.1 KiB
C
137 lines
4.1 KiB
C
/* Test name resolution behavior with trailing characters.
|
|
Copyright (C) 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 <array_length.h>
|
|
#include <netdb.h>
|
|
#include <support/check.h>
|
|
#include <support/check_nss.h>
|
|
#include <support/resolv_test.h>
|
|
#include <support/support.h>
|
|
|
|
static void
|
|
response (const struct resolv_response_context *ctx,
|
|
struct resolv_response_builder *b,
|
|
const char *qname, uint16_t qclass, uint16_t qtype)
|
|
{
|
|
/* The tests are not supposed send any DNS queries. */
|
|
FAIL_EXIT1 ("unexpected DNS query for %s/%d/%d", qname, qclass, qtype);
|
|
}
|
|
|
|
static int
|
|
do_test (void)
|
|
{
|
|
struct resolv_test *aux = resolv_test_start
|
|
((struct resolv_redirect_config)
|
|
{
|
|
.response_callback = response,
|
|
});
|
|
|
|
static const char *const queries[] =
|
|
{
|
|
"192.0.2.1 ",
|
|
"192.0.2.2\t",
|
|
"192.0.2.3\n",
|
|
"192.0.2.4 X",
|
|
"192.0.2.5\tY",
|
|
"192.0.2.6\nZ",
|
|
"192.0.2. ",
|
|
"192.0.2.\t",
|
|
"192.0.2.\n",
|
|
"192.0.2. X",
|
|
"192.0.2.\tY",
|
|
"192.0.2.\nZ",
|
|
"2001:db8::1 ",
|
|
"2001:db8::2\t",
|
|
"2001:db8::3\n",
|
|
"2001:db8::4 X",
|
|
"2001:db8::5\tY",
|
|
"2001:db8::6\nZ",
|
|
};
|
|
for (size_t query_idx = 0; query_idx < array_length (queries); ++query_idx)
|
|
{
|
|
const char *query = queries[query_idx];
|
|
struct hostent storage;
|
|
char buf[4096];
|
|
struct hostent *e;
|
|
|
|
h_errno = 0;
|
|
TEST_VERIFY (gethostbyname (query) == NULL);
|
|
TEST_COMPARE (h_errno, HOST_NOT_FOUND);
|
|
|
|
h_errno = 0;
|
|
e = NULL;
|
|
TEST_COMPARE (gethostbyname_r (query, &storage, buf, sizeof (buf),
|
|
&e, &h_errno), 0);
|
|
TEST_VERIFY (e == NULL);
|
|
TEST_COMPARE (h_errno, HOST_NOT_FOUND);
|
|
|
|
h_errno = 0;
|
|
TEST_VERIFY (gethostbyname2 (query, AF_INET) == NULL);
|
|
TEST_COMPARE (h_errno, HOST_NOT_FOUND);
|
|
|
|
h_errno = 0;
|
|
e = NULL;
|
|
TEST_COMPARE (gethostbyname2_r (query, AF_INET,
|
|
&storage, buf, sizeof (buf),
|
|
&e, &h_errno), 0);
|
|
TEST_VERIFY (e == NULL);
|
|
TEST_COMPARE (h_errno, HOST_NOT_FOUND);
|
|
|
|
h_errno = 0;
|
|
TEST_VERIFY (gethostbyname2 (query, AF_INET6) == NULL);
|
|
TEST_COMPARE (h_errno, HOST_NOT_FOUND);
|
|
|
|
h_errno = 0;
|
|
e = NULL;
|
|
TEST_COMPARE (gethostbyname2_r (query, AF_INET6,
|
|
&storage, buf, sizeof (buf),
|
|
&e, &h_errno), 0);
|
|
TEST_VERIFY (e == NULL);
|
|
TEST_COMPARE (h_errno, HOST_NOT_FOUND);
|
|
|
|
static const int gai_flags[] =
|
|
{
|
|
0,
|
|
AI_ADDRCONFIG,
|
|
AI_NUMERICHOST,
|
|
AI_IDN,
|
|
AI_IDN | AI_NUMERICHOST,
|
|
AI_V4MAPPED,
|
|
AI_V4MAPPED | AI_NUMERICHOST,
|
|
};
|
|
for (size_t gai_flags_idx; gai_flags_idx < array_length (gai_flags);
|
|
++gai_flags_idx)
|
|
{
|
|
struct addrinfo hints = { .ai_flags = gai_flags[gai_flags_idx], };
|
|
struct addrinfo *ai;
|
|
hints.ai_family = AF_INET;
|
|
TEST_COMPARE (getaddrinfo (query, "80", &hints, &ai), EAI_NONAME);
|
|
hints.ai_family = AF_INET6;
|
|
TEST_COMPARE (getaddrinfo (query, "80", &hints, &ai), EAI_NONAME);
|
|
hints.ai_family = AF_UNSPEC;
|
|
TEST_COMPARE (getaddrinfo (query, "80", &hints, &ai), EAI_NONAME);
|
|
}
|
|
};
|
|
|
|
resolv_test_end (aux);
|
|
|
|
return 0;
|
|
}
|
|
|
|
#include <support/test-driver.c>
|