blob: 020570762b10690518f9501db91eea0daa145fef [file] [log] [blame]
Elliott Hughesd3b9d112013-02-13 08:22:07 -08001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Yabin Cui58d33a52014-12-16 17:03:44 -080017#include <netdb.h>
18
Elliott Hughesd3b9d112013-02-13 08:22:07 -080019#include <gtest/gtest.h>
20
Yabin Cui58d33a52014-12-16 17:03:44 -080021#include <arpa/inet.h>
Yabin Cuia35cd8c2015-01-13 14:35:15 -080022#include <string.h>
Elliott Hughesd3b9d112013-02-13 08:22:07 -080023#include <sys/types.h>
24#include <sys/socket.h>
Elliott Hughesd8213bb2013-02-13 09:49:33 -080025#include <netinet/in.h>
Elliott Hughesd3b9d112013-02-13 08:22:07 -080026
Elliott Hughesc62a4b52015-01-08 17:28:46 -080027// https://code.google.com/p/android/issues/detail?id=13228
28TEST(netdb, freeaddrinfo_NULL) {
Yi Kong32bc0fc2018-08-02 17:31:13 -070029 freeaddrinfo(nullptr);
Elliott Hughesc62a4b52015-01-08 17:28:46 -080030}
31
Elliott Hughes32fea142014-11-16 10:14:54 -080032TEST(netdb, getaddrinfo_NULL_host) {
33 // It's okay for the host argument to be NULL, as long as service isn't.
Yi Kong32bc0fc2018-08-02 17:31:13 -070034 addrinfo* ai = nullptr;
35 ASSERT_EQ(0, getaddrinfo(nullptr, "smtp", nullptr, &ai));
Elliott Hughes32fea142014-11-16 10:14:54 -080036 // (sockaddr_in::sin_port and sockaddr_in6::sin6_port overlap.)
37 ASSERT_EQ(25U, ntohs(reinterpret_cast<sockaddr_in*>(ai->ai_addr)->sin_port));
38 freeaddrinfo(ai);
39}
40
41TEST(netdb, getaddrinfo_NULL_service) {
42 // It's okay for the service argument to be NULL, as long as host isn't.
Yi Kong32bc0fc2018-08-02 17:31:13 -070043 addrinfo* ai = nullptr;
44 ASSERT_EQ(0, getaddrinfo("localhost", nullptr, nullptr, &ai));
45 ASSERT_TRUE(ai != nullptr);
Elliott Hughes32fea142014-11-16 10:14:54 -080046 freeaddrinfo(ai);
47}
48
Elliott Hughesd3b9d112013-02-13 08:22:07 -080049TEST(netdb, getaddrinfo_NULL_hints) {
Yi Kong32bc0fc2018-08-02 17:31:13 -070050 addrinfo* ai = nullptr;
51 ASSERT_EQ(0, getaddrinfo("localhost", "9999", nullptr, &ai));
Derek Xueba811122014-08-13 14:19:17 +010052
53 bool saw_tcp = false;
54 bool saw_udp = false;
Yi Kong32bc0fc2018-08-02 17:31:13 -070055 for (addrinfo* p = ai; p != nullptr; p = p->ai_next) {
Derek Xueba811122014-08-13 14:19:17 +010056 ASSERT_TRUE(p->ai_family == AF_INET || p->ai_family == AF_INET6);
57 if (p->ai_socktype == SOCK_STREAM) {
58 ASSERT_EQ(IPPROTO_TCP, p->ai_protocol);
59 saw_tcp = true;
60 } else if (p->ai_socktype == SOCK_DGRAM) {
61 ASSERT_EQ(IPPROTO_UDP, p->ai_protocol);
62 saw_udp = true;
63 }
64 }
65 ASSERT_TRUE(saw_tcp);
66 ASSERT_TRUE(saw_udp);
67
68 freeaddrinfo(ai);
69}
70
71TEST(netdb, getaddrinfo_service_lookup) {
Yi Kong32bc0fc2018-08-02 17:31:13 -070072 addrinfo* ai = nullptr;
73 ASSERT_EQ(0, getaddrinfo("localhost", "smtp", nullptr, &ai));
Derek Xueba811122014-08-13 14:19:17 +010074 ASSERT_EQ(SOCK_STREAM, ai->ai_socktype);
75 ASSERT_EQ(IPPROTO_TCP, ai->ai_protocol);
76 ASSERT_EQ(25, ntohs(reinterpret_cast<sockaddr_in*>(ai->ai_addr)->sin_port));
77 freeaddrinfo(ai);
78}
79
80TEST(netdb, getaddrinfo_hints) {
81 addrinfo hints;
82 memset(&hints, 0, sizeof(hints));
Yabin Cuia35cd8c2015-01-13 14:35:15 -080083 hints.ai_family = AF_INET;
Derek Xueba811122014-08-13 14:19:17 +010084 hints.ai_socktype = SOCK_STREAM;
85 hints.ai_protocol = IPPROTO_TCP;
86
Yi Kong32bc0fc2018-08-02 17:31:13 -070087 addrinfo* ai = nullptr;
Derek Xueba811122014-08-13 14:19:17 +010088 ASSERT_EQ(0, getaddrinfo( "localhost", "9999", &hints, &ai));
Yi Kong32bc0fc2018-08-02 17:31:13 -070089 ASSERT_TRUE(ai != nullptr);
Yabin Cuia35cd8c2015-01-13 14:35:15 -080090 // In glibc, getaddrinfo() converts ::1 to 127.0.0.1 for localhost,
91 // so one or two addrinfo may be returned.
92 addrinfo* tai = ai;
Yi Kong32bc0fc2018-08-02 17:31:13 -070093 while (tai != nullptr) {
Yabin Cuia35cd8c2015-01-13 14:35:15 -080094 ASSERT_EQ(AF_INET, tai->ai_family);
95 ASSERT_EQ(SOCK_STREAM, tai->ai_socktype);
96 ASSERT_EQ(IPPROTO_TCP, tai->ai_protocol);
97 tai = tai->ai_next;
98 }
99 freeaddrinfo(ai);
100}
101
102TEST(netdb, getaddrinfo_ip6_localhost) {
Yi Kong32bc0fc2018-08-02 17:31:13 -0700103 addrinfo* ai = nullptr;
104 ASSERT_EQ(0, getaddrinfo("ip6-localhost", nullptr, nullptr, &ai));
105 ASSERT_TRUE(ai != nullptr);
Yabin Cuia35cd8c2015-01-13 14:35:15 -0800106 ASSERT_GE(ai->ai_addrlen, static_cast<socklen_t>(sizeof(sockaddr_in6)));
Yi Kong32bc0fc2018-08-02 17:31:13 -0700107 ASSERT_TRUE(ai->ai_addr != nullptr);
Yabin Cuia35cd8c2015-01-13 14:35:15 -0800108 sockaddr_in6 *addr = reinterpret_cast<sockaddr_in6*>(ai->ai_addr);
109 ASSERT_EQ(addr->sin6_family, AF_INET6);
110 ASSERT_EQ(0, memcmp(&addr->sin6_addr, &in6addr_loopback, sizeof(in6_addr)));
Elliott Hughesd3b9d112013-02-13 08:22:07 -0800111 freeaddrinfo(ai);
112}
Elliott Hughesd8213bb2013-02-13 09:49:33 -0800113
114TEST(netdb, getnameinfo_salen) {
115 sockaddr_storage ss;
116 memset(&ss, 0, sizeof(ss));
117 sockaddr* sa = reinterpret_cast<sockaddr*>(&ss);
118 char tmp[16];
119
120 ss.ss_family = AF_INET;
121 socklen_t too_much = sizeof(ss);
122 socklen_t just_right = sizeof(sockaddr_in);
123 socklen_t too_little = sizeof(sockaddr_in) - 1;
124
Yi Kong32bc0fc2018-08-02 17:31:13 -0700125 ASSERT_EQ(0, getnameinfo(sa, too_much, tmp, sizeof(tmp), nullptr, 0, NI_NUMERICHOST));
Elliott Hughesd8213bb2013-02-13 09:49:33 -0800126 ASSERT_STREQ("0.0.0.0", tmp);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700127 ASSERT_EQ(0, getnameinfo(sa, just_right, tmp, sizeof(tmp), nullptr, 0, NI_NUMERICHOST));
Elliott Hughesd8213bb2013-02-13 09:49:33 -0800128 ASSERT_STREQ("0.0.0.0", tmp);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700129 ASSERT_EQ(EAI_FAMILY, getnameinfo(sa, too_little, tmp, sizeof(tmp), nullptr, 0, NI_NUMERICHOST));
Elliott Hughesd8213bb2013-02-13 09:49:33 -0800130
131 ss.ss_family = AF_INET6;
132 just_right = sizeof(sockaddr_in6);
133 too_little = sizeof(sockaddr_in6) - 1;
134 too_much = just_right + 1;
135
Yi Kong32bc0fc2018-08-02 17:31:13 -0700136 ASSERT_EQ(0, getnameinfo(sa, too_much, tmp, sizeof(tmp), nullptr, 0, NI_NUMERICHOST));
Elliott Hughesd8213bb2013-02-13 09:49:33 -0800137 ASSERT_STREQ("::", tmp);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700138 ASSERT_EQ(0, getnameinfo(sa, just_right, tmp, sizeof(tmp), nullptr, 0, NI_NUMERICHOST));
Elliott Hughesd8213bb2013-02-13 09:49:33 -0800139 ASSERT_STREQ("::", tmp);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700140 ASSERT_EQ(EAI_FAMILY, getnameinfo(sa, too_little, tmp, sizeof(tmp), nullptr, 0, NI_NUMERICHOST));
Elliott Hughesd8213bb2013-02-13 09:49:33 -0800141}
Derek Xue4912fc72014-08-13 14:19:17 +0100142
Yabin Cuia35cd8c2015-01-13 14:35:15 -0800143TEST(netdb, getnameinfo_localhost) {
144 sockaddr_in addr;
145 char host[NI_MAXHOST];
146 memset(&addr, 0, sizeof(sockaddr_in));
147 addr.sin_family = AF_INET;
148 addr.sin_addr.s_addr = htonl(0x7f000001);
149 ASSERT_EQ(0, getnameinfo(reinterpret_cast<sockaddr*>(&addr), sizeof(addr),
Yi Kong32bc0fc2018-08-02 17:31:13 -0700150 host, sizeof(host), nullptr, 0, 0));
Yabin Cuia35cd8c2015-01-13 14:35:15 -0800151 ASSERT_STREQ(host, "localhost");
152}
153
154static void VerifyLocalhostName(const char* name) {
155 // Test possible localhost name and aliases, which depend on /etc/hosts or /system/etc/hosts.
156 ASSERT_TRUE(strcmp(name, "localhost") == 0 ||
157 strcmp(name, "ip6-localhost") == 0 ||
158 strcmp(name, "ip6-loopback") == 0) << name;
159}
160
161TEST(netdb, getnameinfo_ip6_localhost) {
162 sockaddr_in6 addr;
163 char host[NI_MAXHOST];
164 memset(&addr, 0, sizeof(sockaddr_in6));
165 addr.sin6_family = AF_INET6;
166 addr.sin6_addr = in6addr_loopback;
167 ASSERT_EQ(0, getnameinfo(reinterpret_cast<sockaddr*>(&addr), sizeof(addr),
Yi Kong32bc0fc2018-08-02 17:31:13 -0700168 host, sizeof(host), nullptr, 0, 0));
Yabin Cuia35cd8c2015-01-13 14:35:15 -0800169 VerifyLocalhostName(host);
170}
171
172static void VerifyLocalhost(hostent *hent) {
Yi Kong32bc0fc2018-08-02 17:31:13 -0700173 ASSERT_TRUE(hent != nullptr);
Yabin Cuia35cd8c2015-01-13 14:35:15 -0800174 VerifyLocalhostName(hent->h_name);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700175 for (size_t i = 0; hent->h_aliases[i] != nullptr; ++i) {
Yabin Cuia35cd8c2015-01-13 14:35:15 -0800176 VerifyLocalhostName(hent->h_aliases[i]);
177 }
Derek Xue4912fc72014-08-13 14:19:17 +0100178 ASSERT_EQ(hent->h_addrtype, AF_INET);
179 ASSERT_EQ(hent->h_addr[0], 127);
180 ASSERT_EQ(hent->h_addr[1], 0);
181 ASSERT_EQ(hent->h_addr[2], 0);
182 ASSERT_EQ(hent->h_addr[3], 1);
183}
Derek Xueba811122014-08-13 14:19:17 +0100184
Yabin Cui58d33a52014-12-16 17:03:44 -0800185TEST(netdb, gethostbyname) {
186 hostent* hp = gethostbyname("localhost");
187 VerifyLocalhost(hp);
188}
189
190TEST(netdb, gethostbyname2) {
191 hostent* hp = gethostbyname2("localhost", AF_INET);
192 VerifyLocalhost(hp);
193}
194
195TEST(netdb, gethostbyname_r) {
196 hostent hent;
197 hostent *hp;
198 char buf[512];
199 int err;
200 int result = gethostbyname_r("localhost", &hent, buf, sizeof(buf), &hp, &err);
201 ASSERT_EQ(0, result);
202 VerifyLocalhost(hp);
203
204 // Change hp->h_addr to test reentrancy.
205 hp->h_addr[0] = 0;
206
207 hostent hent2;
208 hostent *hp2;
209 char buf2[512];
210 result = gethostbyname_r("localhost", &hent2, buf2, sizeof(buf2), &hp2, &err);
211 ASSERT_EQ(0, result);
212 VerifyLocalhost(hp2);
213
214 ASSERT_EQ(0, hp->h_addr[0]);
215}
216
217TEST(netdb, gethostbyname2_r) {
218 hostent hent;
219 hostent *hp;
220 char buf[512];
221 int err;
222 int result = gethostbyname2_r("localhost", AF_INET, &hent, buf, sizeof(buf), &hp, &err);
223 ASSERT_EQ(0, result);
224 VerifyLocalhost(hp);
225
226 // Change hp->h_addr to test reentrancy.
227 hp->h_addr[0] = 0;
228
229 hostent hent2;
230 hostent *hp2;
231 char buf2[512];
232 result = gethostbyname2_r("localhost", AF_INET, &hent2, buf2, sizeof(buf2), &hp2, &err);
233 ASSERT_EQ(0, result);
234 VerifyLocalhost(hp2);
235
236 ASSERT_EQ(0, hp->h_addr[0]);
237}
238
239TEST(netdb, gethostbyaddr) {
Yabin Cuia35cd8c2015-01-13 14:35:15 -0800240 in_addr addr = { htonl(0x7f000001) };
241 hostent *hp = gethostbyaddr(&addr, sizeof(addr), AF_INET);
Yabin Cui58d33a52014-12-16 17:03:44 -0800242 VerifyLocalhost(hp);
243}
244
245TEST(netdb, gethostbyaddr_r) {
Yabin Cuia35cd8c2015-01-13 14:35:15 -0800246 in_addr addr = { htonl(0x7f000001) };
Yabin Cui58d33a52014-12-16 17:03:44 -0800247 hostent hent;
248 hostent *hp;
249 char buf[512];
250 int err;
Yabin Cuia35cd8c2015-01-13 14:35:15 -0800251 int result = gethostbyaddr_r(&addr, sizeof(addr), AF_INET, &hent, buf, sizeof(buf), &hp, &err);
Yabin Cui58d33a52014-12-16 17:03:44 -0800252 ASSERT_EQ(0, result);
253 VerifyLocalhost(hp);
254
255 // Change hp->h_addr to test reentrancy.
256 hp->h_addr[0] = 0;
257
258 hostent hent2;
259 hostent *hp2;
260 char buf2[512];
Yabin Cuia35cd8c2015-01-13 14:35:15 -0800261 result = gethostbyaddr_r(&addr, sizeof(addr), AF_INET, &hent2, buf2, sizeof(buf2), &hp2, &err);
Yabin Cui58d33a52014-12-16 17:03:44 -0800262 ASSERT_EQ(0, result);
263 VerifyLocalhost(hp2);
264
265 ASSERT_EQ(0, hp->h_addr[0]);
266}
267
Colin Cross7da20342021-07-28 11:18:11 -0700268#if defined(MUSL)
269// musl doesn't define NETDB_INTERNAL. It also never sets *err to -1, but
270// since gethostbyname_r is a glibc extension, the difference in behavior
271// between musl and glibc should probably be considered a bug in musl.
272#define NETDB_INTERNAL -1
273#endif
274
Yabin Cui58d33a52014-12-16 17:03:44 -0800275TEST(netdb, gethostbyname_r_ERANGE) {
276 hostent hent;
277 hostent *hp;
278 char buf[4]; // Use too small buffer.
Colin Cross7da20342021-07-28 11:18:11 -0700279 int err = 0;
Yabin Cui58d33a52014-12-16 17:03:44 -0800280 int result = gethostbyname_r("localhost", &hent, buf, sizeof(buf), &hp, &err);
Elliott Hughesbb7d9fb2017-10-23 17:38:35 -0700281 EXPECT_EQ(NETDB_INTERNAL, err);
282 EXPECT_EQ(ERANGE, result);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700283 EXPECT_EQ(nullptr, hp);
Yabin Cui58d33a52014-12-16 17:03:44 -0800284}
285
286TEST(netdb, gethostbyname2_r_ERANGE) {
287 hostent hent;
288 hostent *hp;
289 char buf[4]; // Use too small buffer.
Colin Cross7da20342021-07-28 11:18:11 -0700290 int err = 0;
Yabin Cui58d33a52014-12-16 17:03:44 -0800291 int result = gethostbyname2_r("localhost", AF_INET, &hent, buf, sizeof(buf), &hp, &err);
Elliott Hughesbb7d9fb2017-10-23 17:38:35 -0700292 EXPECT_EQ(NETDB_INTERNAL, err);
293 EXPECT_EQ(ERANGE, result);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700294 EXPECT_EQ(nullptr, hp);
Yabin Cui58d33a52014-12-16 17:03:44 -0800295}
296
297TEST(netdb, gethostbyaddr_r_ERANGE) {
Yabin Cuia35cd8c2015-01-13 14:35:15 -0800298 in_addr addr = { htonl(0x7f000001) };
Yabin Cui58d33a52014-12-16 17:03:44 -0800299 hostent hent;
300 hostent *hp;
301 char buf[4]; // Use too small buffer.
Colin Cross7da20342021-07-28 11:18:11 -0700302 int err = 0;
Yabin Cuia35cd8c2015-01-13 14:35:15 -0800303 int result = gethostbyaddr_r(&addr, sizeof(addr), AF_INET, &hent, buf, sizeof(buf), &hp, &err);
Elliott Hughesbb7d9fb2017-10-23 17:38:35 -0700304 EXPECT_EQ(NETDB_INTERNAL, err);
305 EXPECT_EQ(ERANGE, result);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700306 EXPECT_EQ(nullptr, hp);
Elliott Hughesbb7d9fb2017-10-23 17:38:35 -0700307}
308
309TEST(netdb, gethostbyname_r_HOST_NOT_FOUND) {
310 hostent hent;
311 hostent *hp;
312 char buf[BUFSIZ];
313 int err;
314 int result = gethostbyname_r("does.not.exist.google.com", &hent, buf, sizeof(buf), &hp, &err);
315 EXPECT_EQ(HOST_NOT_FOUND, err);
316 EXPECT_EQ(0, result);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700317 EXPECT_EQ(nullptr, hp);
Elliott Hughesbb7d9fb2017-10-23 17:38:35 -0700318}
319
320TEST(netdb, gethostbyname2_r_HOST_NOT_FOUND) {
321 hostent hent;
322 hostent *hp;
323 char buf[BUFSIZ];
324 int err;
325 int result = gethostbyname2_r("does.not.exist.google.com", AF_INET, &hent, buf, sizeof(buf), &hp, &err);
326 EXPECT_EQ(HOST_NOT_FOUND, err);
327 EXPECT_EQ(0, result);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700328 EXPECT_EQ(nullptr, hp);
Elliott Hughesbb7d9fb2017-10-23 17:38:35 -0700329}
330
331TEST(netdb, gethostbyaddr_r_HOST_NOT_FOUND) {
332 in_addr addr = { htonl(0xffffffff) };
333 hostent hent;
334 hostent *hp;
335 char buf[BUFSIZ];
336 int err;
337 int result = gethostbyaddr_r(&addr, sizeof(addr), AF_INET, &hent, buf, sizeof(buf), &hp, &err);
338 EXPECT_EQ(HOST_NOT_FOUND, err);
339 EXPECT_EQ(0, result);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700340 EXPECT_EQ(nullptr, hp);
Yabin Cui58d33a52014-12-16 17:03:44 -0800341}
342
Derek Xueba811122014-08-13 14:19:17 +0100343TEST(netdb, getservbyname) {
344 // smtp is TCP-only, so we know we'll get 25/tcp back.
Elliott Hughes50339182017-10-13 17:52:01 -0700345 servent* s = getservbyname("smtp", nullptr);
346 ASSERT_TRUE(s != nullptr);
347 ASSERT_STREQ("smtp", s->s_name);
Derek Xueba811122014-08-13 14:19:17 +0100348 ASSERT_EQ(25, ntohs(s->s_port));
349 ASSERT_STREQ("tcp", s->s_proto);
350
351 // We get the same result by explicitly asking for tcp.
352 s = getservbyname("smtp", "tcp");
Elliott Hughes50339182017-10-13 17:52:01 -0700353 ASSERT_TRUE(s != nullptr);
354 ASSERT_STREQ("smtp", s->s_name);
Derek Xueba811122014-08-13 14:19:17 +0100355 ASSERT_EQ(25, ntohs(s->s_port));
356 ASSERT_STREQ("tcp", s->s_proto);
357
358 // And we get a failure if we explicitly ask for udp.
359 s = getservbyname("smtp", "udp");
Elliott Hughes50339182017-10-13 17:52:01 -0700360 ASSERT_TRUE(s == nullptr);
Derek Xueba811122014-08-13 14:19:17 +0100361
362 // But there are actually udp services.
363 s = getservbyname("echo", "udp");
Elliott Hughes50339182017-10-13 17:52:01 -0700364 ASSERT_TRUE(s != nullptr);
365 ASSERT_STREQ("echo", s->s_name);
Derek Xueba811122014-08-13 14:19:17 +0100366 ASSERT_EQ(7, ntohs(s->s_port));
367 ASSERT_STREQ("udp", s->s_proto);
368}
Elliott Hughes50339182017-10-13 17:52:01 -0700369
370TEST(netdb, getservbyport) {
371 // smtp is TCP-only, so we know we'll get 25/tcp back.
372 servent* s = getservbyport(htons(25), nullptr);
373 ASSERT_TRUE(s != nullptr);
374 ASSERT_STREQ("smtp", s->s_name);
375 ASSERT_EQ(25, ntohs(s->s_port));
376 ASSERT_STREQ("tcp", s->s_proto);
377
378 // We get the same result by explicitly asking for tcp.
379 s = getservbyport(htons(25), "tcp");
380 ASSERT_TRUE(s != nullptr);
381 ASSERT_STREQ("smtp", s->s_name);
382 ASSERT_EQ(25, ntohs(s->s_port));
383 ASSERT_STREQ("tcp", s->s_proto);
384
385 // And we get a failure if we explicitly ask for udp.
386 s = getservbyport(htons(25), "udp");
387 ASSERT_TRUE(s == nullptr);
388
389 // But there are actually udp services.
390 s = getservbyport(htons(7), "udp");
391 ASSERT_TRUE(s != nullptr);
392 ASSERT_STREQ("echo", s->s_name);
393 ASSERT_EQ(7, ntohs(s->s_port));
394 ASSERT_STREQ("udp", s->s_proto);
395}
396
397TEST(netdb, endnetent_getnetent_setnetent) {
398 setnetent(0);
399 setnetent(1);
400 endnetent();
401 while (getnetent() != nullptr) {
402 }
403}
404
405TEST(netdb, getnetbyaddr) {
406 getnetbyaddr(0, 0);
407}
408
409TEST(netdb, getnetbyname) {
410 getnetbyname("x");
411}
412
413TEST(netdb, endprotoent_getprotoent_setprotoent) {
414 setprotoent(0);
415 setprotoent(1);
416 endprotoent();
417 while (getprotoent() != nullptr) {
418 }
419}
420
421TEST(netdb, getprotobyname) {
422 getprotobyname("tcp");
423}
424
425TEST(netdb, getprotobynumber) {
426 getprotobynumber(6);
427}
428
429TEST(netdb, endservent_getservent_setservent) {
430 setservent(0);
431 setservent(1);
432 endservent();
433 size_t service_count = 0;
434 while (getservent() != nullptr) {
435 ++service_count;
436 }
437 ASSERT_GT(service_count, 0U);
438}
439
440TEST(netdb, getservbyname_getservent_conflicts) {
441 // Calling getservbyname shouldn't affect getservent's iteration order.
442 endservent();
443 while (getservent() != nullptr) {
444 ASSERT_TRUE(getservbyname("smtp", "tcp") != nullptr);
445 }
446}
447
448TEST(netdb, getservbyport_getservent_conflicts) {
449 // Calling getservbyport shouldn't affect getservent's iteration order.
450 endservent();
451 while (getservent() != nullptr) {
452 ASSERT_TRUE(getservbyport(htons(25), "tcp") != nullptr);
453 }
454}
455
456TEST(netdb, endservent_resets) {
457 endservent();
458 std::string first_service(getservent()->s_name);
459 endservent();
460 ASSERT_EQ(first_service, std::string(getservent()->s_name));
461}
462
463TEST(netdb, setservent_resets) {
464 endservent();
465 std::string first_service(getservent()->s_name);
466 setservent(0);
467 ASSERT_EQ(first_service, std::string(getservent()->s_name));
468}
469
470TEST(netdb, endhostent_gethostent_sethostent) {
471 sethostent(0);
472 sethostent(1);
473 endhostent();
474 size_t host_count = 0;
475 while (gethostent() != nullptr) {
476 ++host_count;
477 }
478 ASSERT_GT(host_count, 0U);
479}
480
481TEST(netdb, endhostent_resets) {
482 endhostent();
483 std::string first_host(gethostent()->h_name);
484 endhostent();
485 ASSERT_EQ(first_host, std::string(gethostent()->h_name));
486}
487
488TEST(netdb, sethostent_resets) {
489 endhostent();
490 std::string first_host(gethostent()->h_name);
491 sethostent(0);
492 ASSERT_EQ(first_host, std::string(gethostent()->h_name));
493}