2016-12-31 13:06:16 +00:00
|
|
|
/* Test basic nss_dns functionality and the resolver test harness itself.
|
2024-01-01 18:12:26 +00:00
|
|
|
Copyright (C) 2016-2024 Free Software Foundation, Inc.
|
2016-12-31 13:06:16 +00:00
|
|
|
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
|
Prefer https to http for gnu.org and fsf.org URLs
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
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2016-12-31 13:06:16 +00:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <support/check.h>
|
|
|
|
#include <support/check_nss.h>
|
2017-07-06 12:03:39 +00:00
|
|
|
#include <support/format_nss.h>
|
2016-12-31 13:06:16 +00:00
|
|
|
#include <support/resolv_test.h>
|
|
|
|
#include <support/support.h>
|
|
|
|
|
2017-04-13 09:56:28 +00:00
|
|
|
#define LONG_NAME \
|
|
|
|
"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaax." \
|
|
|
|
"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaay." \
|
|
|
|
"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaz." \
|
|
|
|
"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaat"
|
|
|
|
|
2016-12-31 13:06:16 +00:00
|
|
|
static void
|
|
|
|
response (const struct resolv_response_context *ctx,
|
|
|
|
struct resolv_response_builder *b,
|
|
|
|
const char *qname, uint16_t qclass, uint16_t qtype)
|
|
|
|
{
|
|
|
|
TEST_VERIFY_EXIT (qname != NULL);
|
|
|
|
|
|
|
|
/* The "t." prefix can be used to request TCP fallback. */
|
|
|
|
bool force_tcp;
|
|
|
|
if (strncmp ("t.", qname, 2) == 0)
|
|
|
|
force_tcp = true;
|
|
|
|
else
|
|
|
|
force_tcp = false;
|
|
|
|
const char *qname_compare;
|
|
|
|
if (force_tcp)
|
|
|
|
qname_compare = qname + 2;
|
|
|
|
else
|
|
|
|
qname_compare = qname;
|
2017-09-01 07:34:29 +00:00
|
|
|
enum {www, alias, nxdomain, long_name, nodata} requested_qname;
|
2016-12-31 13:06:16 +00:00
|
|
|
if (strcmp (qname_compare, "www.example") == 0)
|
|
|
|
requested_qname = www;
|
|
|
|
else if (strcmp (qname_compare, "alias.example") == 0)
|
|
|
|
requested_qname = alias;
|
|
|
|
else if (strcmp (qname_compare, "nxdomain.example") == 0)
|
|
|
|
requested_qname = nxdomain;
|
2017-04-13 09:56:28 +00:00
|
|
|
else if (strcmp (qname_compare, LONG_NAME) == 0)
|
|
|
|
requested_qname = long_name;
|
2017-09-01 07:34:29 +00:00
|
|
|
else if (strcmp (qname_compare, "nodata.example") == 0)
|
|
|
|
requested_qname = nodata;
|
2016-12-31 13:06:16 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
support_record_failure ();
|
|
|
|
printf ("error: unexpected QNAME: %s\n", qname);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
TEST_VERIFY_EXIT (qclass == C_IN);
|
|
|
|
struct resolv_response_flags flags = {.tc = force_tcp && !ctx->tcp};
|
|
|
|
if (requested_qname == nxdomain)
|
|
|
|
flags.rcode = 3; /* NXDOMAIN */
|
|
|
|
resolv_response_init (b, flags);
|
|
|
|
resolv_response_add_question (b, qname, qclass, qtype);
|
|
|
|
if (requested_qname == nxdomain || flags.tc)
|
|
|
|
return;
|
|
|
|
|
|
|
|
resolv_response_section (b, ns_s_an);
|
|
|
|
switch (requested_qname)
|
|
|
|
{
|
|
|
|
case www:
|
2017-04-13 09:56:28 +00:00
|
|
|
case long_name:
|
2016-12-31 13:06:16 +00:00
|
|
|
resolv_response_open_record (b, qname, qclass, qtype, 0);
|
|
|
|
break;
|
|
|
|
case alias:
|
|
|
|
resolv_response_open_record (b, qname, qclass, T_CNAME, 0);
|
|
|
|
resolv_response_add_name (b, "www.example");
|
|
|
|
resolv_response_close_record (b);
|
|
|
|
resolv_response_open_record (b, "www.example", qclass, qtype, 0);
|
|
|
|
break;
|
2017-09-01 07:34:29 +00:00
|
|
|
case nodata:
|
|
|
|
return;
|
2016-12-31 13:06:16 +00:00
|
|
|
case nxdomain:
|
|
|
|
FAIL_EXIT1 ("unreachable");
|
|
|
|
}
|
|
|
|
switch (qtype)
|
|
|
|
{
|
|
|
|
case T_A:
|
|
|
|
{
|
|
|
|
char ipv4[4] = {192, 0, 2, 17};
|
|
|
|
ipv4[3] += requested_qname + 2 * ctx->tcp + 4 * ctx->server_index;
|
|
|
|
resolv_response_add_data (b, &ipv4, sizeof (ipv4));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case T_AAAA:
|
|
|
|
{
|
|
|
|
char ipv6[16]
|
|
|
|
= {0x20, 0x01, 0xd, 0xb8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1};
|
|
|
|
ipv6[15] += requested_qname + 2 * ctx->tcp + 4 * ctx->server_index;
|
|
|
|
resolv_response_add_data (b, &ipv6, sizeof (ipv6));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
support_record_failure ();
|
|
|
|
printf ("error: unexpected QTYPE: %s/%u/%u\n",
|
|
|
|
qname, qclass, qtype);
|
|
|
|
}
|
|
|
|
resolv_response_close_record (b);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
check_h (const char *name, int family, const char *expected)
|
|
|
|
{
|
|
|
|
if (family == AF_INET)
|
|
|
|
{
|
|
|
|
char *query = xasprintf ("gethostbyname (\"%s\")", name);
|
|
|
|
check_hostent (query, gethostbyname (name), expected);
|
|
|
|
free (query);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
char *query = xasprintf ("gethostbyname2 (\"%s\", %d)", name, family);
|
|
|
|
check_hostent (query, gethostbyname2 (name, family), expected);
|
|
|
|
free (query);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool too_small = true;
|
|
|
|
for (unsigned int offset = 0; offset < 8; ++offset)
|
|
|
|
for (unsigned int size = 1; too_small; ++size)
|
|
|
|
{
|
|
|
|
char *buf = xmalloc (offset + size);
|
|
|
|
too_small = false;
|
|
|
|
|
|
|
|
struct hostent hostbuf;
|
|
|
|
struct hostent *result;
|
|
|
|
int herror;
|
|
|
|
if (family == AF_INET)
|
|
|
|
{
|
|
|
|
char *query = xasprintf ("gethostbyname (\"%s\") %u/%u",
|
|
|
|
name, offset, size);
|
|
|
|
int ret = gethostbyname_r
|
|
|
|
(name, &hostbuf, buf + offset, size, &result, &herror);
|
|
|
|
if (ret == 0)
|
|
|
|
{
|
|
|
|
h_errno = herror;
|
|
|
|
check_hostent (query, result, expected);
|
|
|
|
}
|
|
|
|
else if (ret == ERANGE)
|
|
|
|
too_small = true;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
errno = ret;
|
|
|
|
FAIL_EXIT1 ("gethostbyname_r: %m");
|
|
|
|
}
|
|
|
|
free (query);
|
|
|
|
memset (buf, 0, offset + size);
|
|
|
|
}
|
|
|
|
char *query = xasprintf ("gethostbyname2 (\"%s\", %d) %u/%u",
|
|
|
|
name, family, offset, size);
|
|
|
|
int ret = gethostbyname2_r
|
|
|
|
(name, family, &hostbuf, buf + offset, size, &result, &herror);
|
|
|
|
if (ret == 0)
|
|
|
|
{
|
|
|
|
h_errno = herror;
|
|
|
|
check_hostent (query, result, expected);
|
|
|
|
}
|
|
|
|
else if (ret == ERANGE)
|
|
|
|
too_small = true;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
errno = ret;
|
|
|
|
FAIL_EXIT1 ("gethostbyname_r: %m");
|
|
|
|
}
|
|
|
|
free (buf);
|
|
|
|
free (query);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-05-11 09:32:16 +00:00
|
|
|
check_ai_hints (const char *name, const char *service,
|
|
|
|
struct addrinfo hints, const char *expected)
|
2016-12-31 13:06:16 +00:00
|
|
|
{
|
|
|
|
struct addrinfo *ai;
|
2017-05-11 09:32:16 +00:00
|
|
|
char *query = xasprintf ("%s:%s [%d]/0x%x", name, service,
|
|
|
|
hints.ai_family, hints.ai_flags);
|
2016-12-31 13:06:16 +00:00
|
|
|
int ret = getaddrinfo (name, service, &hints, &ai);
|
|
|
|
check_addrinfo (query, ai, ret, expected);
|
|
|
|
if (ret == 0)
|
|
|
|
freeaddrinfo (ai);
|
|
|
|
free (query);
|
|
|
|
}
|
|
|
|
|
2017-05-11 09:32:16 +00:00
|
|
|
static void
|
|
|
|
check_ai (const char *name, const char *service,
|
|
|
|
int family, const char *expected)
|
|
|
|
{
|
|
|
|
return check_ai_hints (name, service,
|
|
|
|
(struct addrinfo) { .ai_family = family, },
|
|
|
|
expected);
|
|
|
|
}
|
|
|
|
|
2017-07-06 12:03:39 +00:00
|
|
|
/* Test for bug 21295: getaddrinfo used to discard address information
|
|
|
|
instead of merging it. */
|
|
|
|
static void
|
|
|
|
test_bug_21295 (void)
|
|
|
|
{
|
|
|
|
/* The address order is unpredictable. There are two factors which
|
|
|
|
contribute to that: The stub resolver does not perform proper
|
|
|
|
response matching for A/AAAA queries (an A response could be
|
|
|
|
associated with an AAAA query and vice versa), and without
|
|
|
|
namespaces, system configuration could affect address
|
|
|
|
ordering. */
|
|
|
|
for (int do_tcp = 0; do_tcp < 2; ++do_tcp)
|
|
|
|
{
|
|
|
|
const struct addrinfo hints =
|
|
|
|
{
|
|
|
|
.ai_family = AF_INET6,
|
|
|
|
.ai_socktype = SOCK_STREAM,
|
|
|
|
.ai_flags = AI_V4MAPPED | AI_ALL,
|
|
|
|
};
|
|
|
|
const char *qname;
|
|
|
|
if (do_tcp)
|
|
|
|
qname = "t.www.example";
|
|
|
|
else
|
|
|
|
qname = "www.example";
|
|
|
|
struct addrinfo *ai = NULL;
|
|
|
|
int ret = getaddrinfo (qname, "80", &hints, &ai);
|
|
|
|
TEST_VERIFY_EXIT (ret == 0);
|
|
|
|
|
|
|
|
const char *expected_a;
|
|
|
|
const char *expected_b;
|
|
|
|
if (do_tcp)
|
|
|
|
{
|
|
|
|
expected_a = "flags: AI_V4MAPPED AI_ALL\n"
|
|
|
|
"address: STREAM/TCP 2001:db8::3 80\n"
|
|
|
|
"address: STREAM/TCP ::ffff:192.0.2.19 80\n";
|
|
|
|
expected_b = "flags: AI_V4MAPPED AI_ALL\n"
|
|
|
|
"address: STREAM/TCP ::ffff:192.0.2.19 80\n"
|
|
|
|
"address: STREAM/TCP 2001:db8::3 80\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
expected_a = "flags: AI_V4MAPPED AI_ALL\n"
|
|
|
|
"address: STREAM/TCP 2001:db8::1 80\n"
|
|
|
|
"address: STREAM/TCP ::ffff:192.0.2.17 80\n";
|
|
|
|
expected_b = "flags: AI_V4MAPPED AI_ALL\n"
|
|
|
|
"address: STREAM/TCP ::ffff:192.0.2.17 80\n"
|
|
|
|
"address: STREAM/TCP 2001:db8::1 80\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
char *actual = support_format_addrinfo (ai, ret);
|
|
|
|
if (!(strcmp (actual, expected_a) == 0
|
|
|
|
|| strcmp (actual, expected_b) == 0))
|
|
|
|
{
|
|
|
|
support_record_failure ();
|
|
|
|
printf ("error: %s: unexpected response (TCP: %d):\n%s\n",
|
|
|
|
__func__, do_tcp, actual);
|
|
|
|
}
|
|
|
|
free (actual);
|
|
|
|
freeaddrinfo (ai);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-01 07:34:29 +00:00
|
|
|
/* Run tests which do not expect any data. */
|
|
|
|
static void
|
|
|
|
test_nodata_nxdomain (void)
|
|
|
|
{
|
|
|
|
/* Iterate through different address families. */
|
|
|
|
int families[] = { AF_UNSPEC, AF_INET, AF_INET6, -1 };
|
|
|
|
for (int i = 0; families[i] >= 0; ++i)
|
|
|
|
/* If do_tcp, prepend "t." to the name to trigger TCP
|
|
|
|
fallback. */
|
|
|
|
for (int do_tcp = 0; do_tcp < 2; ++do_tcp)
|
|
|
|
/* If do_nxdomain, trigger an NXDOMAIN error (DNS failure),
|
|
|
|
otherwise use a NODATA response (empty but successful
|
|
|
|
answer). */
|
|
|
|
for (int do_nxdomain = 0; do_nxdomain < 2; ++do_nxdomain)
|
|
|
|
{
|
|
|
|
int family = families[i];
|
|
|
|
char *name = xasprintf ("%s%s.example",
|
|
|
|
do_tcp ? "t." : "",
|
|
|
|
do_nxdomain ? "nxdomain" : "nodata");
|
|
|
|
|
|
|
|
if (family != AF_UNSPEC)
|
|
|
|
{
|
|
|
|
if (do_nxdomain)
|
|
|
|
check_h (name, family, "error: HOST_NOT_FOUND\n");
|
|
|
|
else
|
|
|
|
check_h (name, family, "error: NO_ADDRESS\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *expected;
|
|
|
|
if (do_nxdomain)
|
|
|
|
expected = "error: Name or service not known\n";
|
|
|
|
else
|
|
|
|
expected = "error: No address associated with hostname\n";
|
|
|
|
|
|
|
|
check_ai (name, "80", family, expected);
|
|
|
|
|
|
|
|
struct addrinfo hints =
|
|
|
|
{
|
|
|
|
.ai_family = family,
|
|
|
|
.ai_flags = AI_V4MAPPED | AI_ALL,
|
|
|
|
};
|
|
|
|
check_ai_hints (name, "80", hints, expected);
|
|
|
|
hints.ai_flags |= AI_CANONNAME;
|
|
|
|
check_ai_hints (name, "80", hints, expected);
|
|
|
|
|
|
|
|
free (name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-31 13:06:16 +00:00
|
|
|
static int
|
|
|
|
do_test (void)
|
|
|
|
{
|
|
|
|
struct resolv_test *aux = resolv_test_start
|
|
|
|
((struct resolv_redirect_config)
|
|
|
|
{
|
|
|
|
.response_callback = response,
|
|
|
|
});
|
|
|
|
|
|
|
|
check_h ("www.example", AF_INET,
|
|
|
|
"name: www.example\n"
|
|
|
|
"address: 192.0.2.17\n");
|
|
|
|
check_h ("alias.example", AF_INET,
|
|
|
|
"name: www.example\n"
|
|
|
|
"alias: alias.example\n"
|
|
|
|
"address: 192.0.2.18\n");
|
|
|
|
check_h ("www.example", AF_INET6,
|
|
|
|
"name: www.example\n"
|
|
|
|
"address: 2001:db8::1\n");
|
|
|
|
check_h ("alias.example", AF_INET6,
|
|
|
|
"name: www.example\n"
|
|
|
|
"alias: alias.example\n"
|
|
|
|
"address: 2001:db8::2\n");
|
2017-04-13 09:56:28 +00:00
|
|
|
check_h (LONG_NAME, AF_INET,
|
|
|
|
"name: " LONG_NAME "\n"
|
|
|
|
"address: 192.0.2.20\n");
|
|
|
|
|
2016-12-31 13:06:16 +00:00
|
|
|
check_ai ("www.example", "80", AF_UNSPEC,
|
|
|
|
"address: STREAM/TCP 192.0.2.17 80\n"
|
|
|
|
"address: DGRAM/UDP 192.0.2.17 80\n"
|
|
|
|
"address: RAW/IP 192.0.2.17 80\n"
|
|
|
|
"address: STREAM/TCP 2001:db8::1 80\n"
|
|
|
|
"address: DGRAM/UDP 2001:db8::1 80\n"
|
|
|
|
"address: RAW/IP 2001:db8::1 80\n");
|
2017-05-11 09:32:16 +00:00
|
|
|
check_ai_hints ("www.example", "80",
|
|
|
|
(struct addrinfo) { .ai_family = AF_UNSPEC,
|
|
|
|
.ai_flags = AI_CANONNAME, },
|
|
|
|
"flags: AI_CANONNAME\n"
|
|
|
|
"canonname: www.example\n"
|
|
|
|
"address: STREAM/TCP 192.0.2.17 80\n"
|
|
|
|
"address: DGRAM/UDP 192.0.2.17 80\n"
|
|
|
|
"address: RAW/IP 192.0.2.17 80\n"
|
|
|
|
"address: STREAM/TCP 2001:db8::1 80\n"
|
|
|
|
"address: DGRAM/UDP 2001:db8::1 80\n"
|
|
|
|
"address: RAW/IP 2001:db8::1 80\n");
|
2016-12-31 13:06:16 +00:00
|
|
|
check_ai ("alias.example", "80", AF_UNSPEC,
|
|
|
|
"address: STREAM/TCP 192.0.2.18 80\n"
|
|
|
|
"address: DGRAM/UDP 192.0.2.18 80\n"
|
|
|
|
"address: RAW/IP 192.0.2.18 80\n"
|
|
|
|
"address: STREAM/TCP 2001:db8::2 80\n"
|
|
|
|
"address: DGRAM/UDP 2001:db8::2 80\n"
|
|
|
|
"address: RAW/IP 2001:db8::2 80\n");
|
2017-05-11 09:32:16 +00:00
|
|
|
check_ai_hints ("alias.example", "80",
|
|
|
|
(struct addrinfo) { .ai_family = AF_UNSPEC,
|
|
|
|
.ai_flags = AI_CANONNAME, },
|
|
|
|
"flags: AI_CANONNAME\n"
|
|
|
|
"canonname: www.example\n"
|
|
|
|
"address: STREAM/TCP 192.0.2.18 80\n"
|
|
|
|
"address: DGRAM/UDP 192.0.2.18 80\n"
|
|
|
|
"address: RAW/IP 192.0.2.18 80\n"
|
|
|
|
"address: STREAM/TCP 2001:db8::2 80\n"
|
|
|
|
"address: DGRAM/UDP 2001:db8::2 80\n"
|
|
|
|
"address: RAW/IP 2001:db8::2 80\n");
|
2017-04-13 09:56:28 +00:00
|
|
|
check_ai (LONG_NAME, "80", AF_UNSPEC,
|
|
|
|
"address: STREAM/TCP 192.0.2.20 80\n"
|
|
|
|
"address: DGRAM/UDP 192.0.2.20 80\n"
|
|
|
|
"address: RAW/IP 192.0.2.20 80\n"
|
|
|
|
"address: STREAM/TCP 2001:db8::4 80\n"
|
|
|
|
"address: DGRAM/UDP 2001:db8::4 80\n"
|
|
|
|
"address: RAW/IP 2001:db8::4 80\n");
|
2016-12-31 13:06:16 +00:00
|
|
|
check_ai ("www.example", "80", AF_INET,
|
|
|
|
"address: STREAM/TCP 192.0.2.17 80\n"
|
|
|
|
"address: DGRAM/UDP 192.0.2.17 80\n"
|
|
|
|
"address: RAW/IP 192.0.2.17 80\n");
|
2017-05-11 09:32:16 +00:00
|
|
|
check_ai_hints ("www.example", "80",
|
|
|
|
(struct addrinfo) { .ai_family = AF_INET,
|
|
|
|
.ai_flags = AI_CANONNAME, },
|
|
|
|
"flags: AI_CANONNAME\n"
|
|
|
|
"canonname: www.example\n"
|
|
|
|
"address: STREAM/TCP 192.0.2.17 80\n"
|
|
|
|
"address: DGRAM/UDP 192.0.2.17 80\n"
|
|
|
|
"address: RAW/IP 192.0.2.17 80\n");
|
2016-12-31 13:06:16 +00:00
|
|
|
check_ai ("alias.example", "80", AF_INET,
|
|
|
|
"address: STREAM/TCP 192.0.2.18 80\n"
|
|
|
|
"address: DGRAM/UDP 192.0.2.18 80\n"
|
|
|
|
"address: RAW/IP 192.0.2.18 80\n");
|
2017-05-11 09:32:16 +00:00
|
|
|
check_ai_hints ("alias.example", "80",
|
|
|
|
(struct addrinfo) { .ai_family = AF_INET,
|
|
|
|
.ai_flags = AI_CANONNAME, },
|
|
|
|
"flags: AI_CANONNAME\n"
|
|
|
|
"canonname: www.example\n"
|
|
|
|
"address: STREAM/TCP 192.0.2.18 80\n"
|
|
|
|
"address: DGRAM/UDP 192.0.2.18 80\n"
|
|
|
|
"address: RAW/IP 192.0.2.18 80\n");
|
2017-04-13 09:56:28 +00:00
|
|
|
check_ai (LONG_NAME, "80", AF_INET,
|
|
|
|
"address: STREAM/TCP 192.0.2.20 80\n"
|
|
|
|
"address: DGRAM/UDP 192.0.2.20 80\n"
|
|
|
|
"address: RAW/IP 192.0.2.20 80\n");
|
2016-12-31 13:06:16 +00:00
|
|
|
check_ai ("www.example", "80", AF_INET6,
|
|
|
|
"address: STREAM/TCP 2001:db8::1 80\n"
|
|
|
|
"address: DGRAM/UDP 2001:db8::1 80\n"
|
|
|
|
"address: RAW/IP 2001:db8::1 80\n");
|
2017-05-11 09:32:16 +00:00
|
|
|
check_ai_hints ("www.example", "80",
|
|
|
|
(struct addrinfo) { .ai_family = AF_INET6,
|
|
|
|
.ai_flags = AI_CANONNAME, },
|
|
|
|
"flags: AI_CANONNAME\n"
|
|
|
|
"canonname: www.example\n"
|
|
|
|
"address: STREAM/TCP 2001:db8::1 80\n"
|
|
|
|
"address: DGRAM/UDP 2001:db8::1 80\n"
|
|
|
|
"address: RAW/IP 2001:db8::1 80\n");
|
2016-12-31 13:06:16 +00:00
|
|
|
check_ai ("alias.example", "80", AF_INET6,
|
|
|
|
"address: STREAM/TCP 2001:db8::2 80\n"
|
|
|
|
"address: DGRAM/UDP 2001:db8::2 80\n"
|
|
|
|
"address: RAW/IP 2001:db8::2 80\n");
|
2017-05-11 09:32:16 +00:00
|
|
|
check_ai_hints ("alias.example", "80",
|
|
|
|
(struct addrinfo) { .ai_family = AF_INET6,
|
|
|
|
.ai_flags = AI_CANONNAME, },
|
|
|
|
"flags: AI_CANONNAME\n"
|
|
|
|
"canonname: www.example\n"
|
|
|
|
"address: STREAM/TCP 2001:db8::2 80\n"
|
|
|
|
"address: DGRAM/UDP 2001:db8::2 80\n"
|
|
|
|
"address: RAW/IP 2001:db8::2 80\n");
|
2017-04-13 09:56:28 +00:00
|
|
|
check_ai (LONG_NAME, "80", AF_INET6,
|
|
|
|
"address: STREAM/TCP 2001:db8::4 80\n"
|
|
|
|
"address: DGRAM/UDP 2001:db8::4 80\n"
|
|
|
|
"address: RAW/IP 2001:db8::4 80\n");
|
2016-12-31 13:06:16 +00:00
|
|
|
|
|
|
|
check_h ("t.www.example", AF_INET,
|
|
|
|
"name: t.www.example\n"
|
|
|
|
"address: 192.0.2.19\n");
|
|
|
|
check_h ("t.alias.example", AF_INET,
|
|
|
|
"name: www.example\n"
|
|
|
|
"alias: t.alias.example\n"
|
|
|
|
"address: 192.0.2.20\n");
|
|
|
|
check_h ("t.www.example", AF_INET6,
|
|
|
|
"name: t.www.example\n"
|
|
|
|
"address: 2001:db8::3\n");
|
|
|
|
check_h ("t.alias.example", AF_INET6,
|
|
|
|
"name: www.example\n"
|
|
|
|
"alias: t.alias.example\n"
|
|
|
|
"address: 2001:db8::4\n");
|
|
|
|
check_ai ("t.www.example", "80", AF_UNSPEC,
|
|
|
|
"address: STREAM/TCP 192.0.2.19 80\n"
|
|
|
|
"address: DGRAM/UDP 192.0.2.19 80\n"
|
|
|
|
"address: RAW/IP 192.0.2.19 80\n"
|
|
|
|
"address: STREAM/TCP 2001:db8::3 80\n"
|
|
|
|
"address: DGRAM/UDP 2001:db8::3 80\n"
|
|
|
|
"address: RAW/IP 2001:db8::3 80\n");
|
|
|
|
check_ai ("t.alias.example", "80", AF_UNSPEC,
|
|
|
|
"address: STREAM/TCP 192.0.2.20 80\n"
|
|
|
|
"address: DGRAM/UDP 192.0.2.20 80\n"
|
|
|
|
"address: RAW/IP 192.0.2.20 80\n"
|
|
|
|
"address: STREAM/TCP 2001:db8::4 80\n"
|
|
|
|
"address: DGRAM/UDP 2001:db8::4 80\n"
|
|
|
|
"address: RAW/IP 2001:db8::4 80\n");
|
|
|
|
check_ai ("t.www.example", "80", AF_INET,
|
|
|
|
"address: STREAM/TCP 192.0.2.19 80\n"
|
|
|
|
"address: DGRAM/UDP 192.0.2.19 80\n"
|
|
|
|
"address: RAW/IP 192.0.2.19 80\n");
|
|
|
|
check_ai ("t.alias.example", "80", AF_INET,
|
|
|
|
"address: STREAM/TCP 192.0.2.20 80\n"
|
|
|
|
"address: DGRAM/UDP 192.0.2.20 80\n"
|
|
|
|
"address: RAW/IP 192.0.2.20 80\n");
|
|
|
|
check_ai ("t.www.example", "80", AF_INET6,
|
|
|
|
"address: STREAM/TCP 2001:db8::3 80\n"
|
|
|
|
"address: DGRAM/UDP 2001:db8::3 80\n"
|
|
|
|
"address: RAW/IP 2001:db8::3 80\n");
|
|
|
|
check_ai ("t.alias.example", "80", AF_INET6,
|
|
|
|
"address: STREAM/TCP 2001:db8::4 80\n"
|
|
|
|
"address: DGRAM/UDP 2001:db8::4 80\n"
|
|
|
|
"address: RAW/IP 2001:db8::4 80\n");
|
|
|
|
|
2017-07-06 12:03:39 +00:00
|
|
|
test_bug_21295 ();
|
2017-09-01 07:34:29 +00:00
|
|
|
test_nodata_nxdomain ();
|
2017-06-24 14:51:31 +00:00
|
|
|
|
2016-12-31 13:06:16 +00:00
|
|
|
resolv_test_end (aux);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#include <support/test-driver.c>
|