1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
|
//
// Copyright 2017 Garrett D'Amore <garrett@damore.org>
//
// This software is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
// file was obtained (LICENSE.txt). A copy of the license may also be
// found online at https://opensource.org/licenses/MIT.
//
#include "core/nng_impl.h"
#include "convey.h"
#include "stubs.h"
#include <string.h>
#ifndef _WIN32
#include <arpa/inet.h>
#endif
static const char *
ip4tostr(void *addr)
{
static char buf[256];
#ifdef _WIN32
return (InetNtop(AF_INET, addr, buf, sizeof (buf)));
#else
return (inet_ntop(AF_INET, addr, buf, sizeof (buf)));
#endif
}
static const char *
ip6tostr(void *addr)
{
static char buf[256];
#ifdef _WIN32
return (InetNtop(AF_INET6, addr, buf, sizeof (buf)));
#else
return (inet_ntop(AF_INET6, addr, buf, sizeof (buf)));
#endif
}
// These work on Darwin, and should work on illumos, but they may
// depend on the local resolver configuration. We elect not to depend
// too much on them, since localhost can be configured weirdly. Notably
// the normal assumptions on Linux do *not* hold true.
#if 0
Convey("Localhost IPv4 resolves", {
nni_aio aio;
const char *str;
memset(&aio, 0, sizeof (aio));
nni_aio_init(&aio, NULL, NULL);
nni_plat_tcp_resolv("localhost", "80", NNG_AF_INET, 1,
&aio);
nni_aio_wait(&aio);
So(nni_aio_result(&aio) == 0);
So(aio.a_naddrs == 1);
So(aio.a_addrs[0].s_un.s_in.sa_family == NNG_AF_INET);
So(aio.a_addrs[0].s_un.s_in.sa_port == ntohs(80));
So(aio.a_addrs[0].s_un.s_in.sa_addr == ntohl(0x7f000001));
str = ip4tostr(&aio.a_addrs[0].s_un.s_in.sa_addr);
So(strcmp(str, "127.0.0.1") == 0);
nni_aio_fini(&aio);
}
);
Convey("Localhost IPv6 resolves", {
nni_aio aio;
memset(&aio, 0, sizeof (aio));
const char *str;
nni_aio_init(&aio, NULL, NULL);
nni_plat_tcp_resolv("localhost", "80", NNG_AF_INET6, 1,
&aio);
nni_aio_wait(&aio);
So(nni_aio_result(&aio) == 0);
So(aio.a_naddrs == 1);
So(aio.a_addrs[0].s_un.s_in6.sa_family == NNG_AF_INET6);
So(aio.a_addrs[0].s_un.s_in6.sa_port == ntohs(80));
str = ip6tostr(&aio.a_addrs[0].s_un.s_in6.sa_addr);
So(strcmp(str, "::1") == 0);
nni_aio_fini(&aio);
}
);
Convey("Localhost UNSPEC resolves", {
nni_aio aio;
memset(&aio, 0, sizeof (aio));
const char *str;
int i;
nni_aio_init(&aio, NULL, NULL);
nni_plat_tcp_resolv("localhost", "80", NNG_AF_UNSPEC, 1,
&aio);
nni_aio_wait(&aio);
So(nni_aio_result(&aio) == 0);
So(aio.a_naddrs == 2);
for (i = 0; i < 2; i++) {
switch (aio.a_addrs[i].s_un.s_family) {
case NNG_AF_INET6:
So(aio.a_addrs[i].s_un.s_in6.sa_port ==
ntohs(80));
str =
ip6tostr(&aio.a_addrs[i].s_un.s_in6.sa_addr);
So(strcmp(str, "::1") == 0);
break;
case NNG_AF_INET:
So(aio.a_addrs[i].s_un.s_in.sa_port ==
ntohs(80));
str =
ip4tostr(&aio.a_addrs[i].s_un.s_in.sa_addr);
So(strcmp(str, "127.0.0.1") == 0);
break;
default:
So(1 == 0);
}
}
So(aio.a_addrs[0].s_un.s_family !=
aio.a_addrs[1].s_un.s_family);
nni_aio_fini(&aio);
}
);
#endif
TestMain("TCP Resolver", {
nni_init();
Convey("Google DNS IPv4 resolves", {
nni_aio aio;
const char *str;
memset(&aio, 0, sizeof (aio));
nni_aio_init(&aio, NULL, NULL);
nni_plat_tcp_resolv("google-public-dns-a.google.com", "80", NNG_AF_INET, 1, &aio);
nni_aio_wait(&aio);
So(nni_aio_result(&aio) == 0);
So(aio.a_naddrs == 1);
So(aio.a_addrs[0].s_un.s_in.sa_family == NNG_AF_INET);
So(aio.a_addrs[0].s_un.s_in.sa_port == ntohs(80));
str = ip4tostr(&aio.a_addrs[0].s_un.s_in.sa_addr);
So(strcmp(str, "8.8.8.8") == 0);
nni_aio_fini(&aio);
}
);
Convey("Numeric resolves", {
nni_aio aio;
const char *str;
memset(&aio, 0, sizeof (aio));
nni_aio_init(&aio, NULL, NULL);
nni_plat_tcp_resolv("8.8.4.4", "80", NNG_AF_INET, 1, &aio);
nni_aio_wait(&aio);
So(nni_aio_result(&aio) == 0);
So(aio.a_naddrs == 1);
So(aio.a_addrs[0].s_un.s_in.sa_family == NNG_AF_INET);
So(aio.a_addrs[0].s_un.s_in.sa_port == ntohs(80));
str = ip4tostr(&aio.a_addrs[0].s_un.s_in.sa_addr);
So(strcmp(str, "8.8.4.4") == 0);
nni_aio_fini(&aio);
});
Convey("Name service resolves", {
nni_aio aio;
const char *str;
memset(&aio, 0, sizeof (aio));
nni_aio_init(&aio, NULL, NULL);
nni_plat_tcp_resolv("8.8.4.4", "http", NNG_AF_INET, 1, &aio);
nni_aio_wait(&aio);
So(nni_aio_result(&aio) == 0);
So(aio.a_naddrs == 1);
So(aio.a_addrs[0].s_un.s_in.sa_family == NNG_AF_INET);
So(aio.a_addrs[0].s_un.s_in.sa_port == ntohs(80));
str = ip4tostr(&aio.a_addrs[0].s_un.s_in.sa_addr);
So(strcmp(str, "8.8.4.4") == 0);
nni_aio_fini(&aio);
});
nni_fini();
})
|