blob: a8056935b82d8e2f27ea14f48b8f669f33953c3f [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
268TEST(netdb, gethostbyname_r_ERANGE) {
269 hostent hent;
270 hostent *hp;
271 char buf[4]; // Use too small buffer.
272 int err;
273 int result = gethostbyname_r("localhost", &hent, buf, sizeof(buf), &hp, &err);
Elliott Hughesbb7d9fb2017-10-23 17:38:35 -0700274 EXPECT_EQ(NETDB_INTERNAL, err);
275 EXPECT_EQ(ERANGE, result);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700276 EXPECT_EQ(nullptr, hp);
Yabin Cui58d33a52014-12-16 17:03:44 -0800277}
278
279TEST(netdb, gethostbyname2_r_ERANGE) {
280 hostent hent;
281 hostent *hp;
282 char buf[4]; // Use too small buffer.
283 int err;
284 int result = gethostbyname2_r("localhost", AF_INET, &hent, buf, sizeof(buf), &hp, &err);
Elliott Hughesbb7d9fb2017-10-23 17:38:35 -0700285 EXPECT_EQ(NETDB_INTERNAL, err);
286 EXPECT_EQ(ERANGE, result);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700287 EXPECT_EQ(nullptr, hp);
Yabin Cui58d33a52014-12-16 17:03:44 -0800288}
289
290TEST(netdb, gethostbyaddr_r_ERANGE) {
Yabin Cuia35cd8c2015-01-13 14:35:15 -0800291 in_addr addr = { htonl(0x7f000001) };
Yabin Cui58d33a52014-12-16 17:03:44 -0800292 hostent hent;
293 hostent *hp;
294 char buf[4]; // Use too small buffer.
295 int err;
Yabin Cuia35cd8c2015-01-13 14:35:15 -0800296 int result = gethostbyaddr_r(&addr, sizeof(addr), AF_INET, &hent, buf, sizeof(buf), &hp, &err);
Elliott Hughesbb7d9fb2017-10-23 17:38:35 -0700297 EXPECT_EQ(NETDB_INTERNAL, err);
298 EXPECT_EQ(ERANGE, result);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700299 EXPECT_EQ(nullptr, hp);
Elliott Hughesbb7d9fb2017-10-23 17:38:35 -0700300}
301
302TEST(netdb, gethostbyname_r_HOST_NOT_FOUND) {
303 hostent hent;
304 hostent *hp;
305 char buf[BUFSIZ];
306 int err;
307 int result = gethostbyname_r("does.not.exist.google.com", &hent, buf, sizeof(buf), &hp, &err);
308 EXPECT_EQ(HOST_NOT_FOUND, err);
309 EXPECT_EQ(0, result);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700310 EXPECT_EQ(nullptr, hp);
Elliott Hughesbb7d9fb2017-10-23 17:38:35 -0700311}
312
313TEST(netdb, gethostbyname2_r_HOST_NOT_FOUND) {
314 hostent hent;
315 hostent *hp;
316 char buf[BUFSIZ];
317 int err;
318 int result = gethostbyname2_r("does.not.exist.google.com", AF_INET, &hent, buf, sizeof(buf), &hp, &err);
319 EXPECT_EQ(HOST_NOT_FOUND, err);
320 EXPECT_EQ(0, result);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700321 EXPECT_EQ(nullptr, hp);
Elliott Hughesbb7d9fb2017-10-23 17:38:35 -0700322}
323
324TEST(netdb, gethostbyaddr_r_HOST_NOT_FOUND) {
325 in_addr addr = { htonl(0xffffffff) };
326 hostent hent;
327 hostent *hp;
328 char buf[BUFSIZ];
329 int err;
330 int result = gethostbyaddr_r(&addr, sizeof(addr), AF_INET, &hent, buf, sizeof(buf), &hp, &err);
331 EXPECT_EQ(HOST_NOT_FOUND, err);
332 EXPECT_EQ(0, result);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700333 EXPECT_EQ(nullptr, hp);
Yabin Cui58d33a52014-12-16 17:03:44 -0800334}
335
Derek Xueba811122014-08-13 14:19:17 +0100336TEST(netdb, getservbyname) {
337 // smtp is TCP-only, so we know we'll get 25/tcp back.
Elliott Hughes50339182017-10-13 17:52:01 -0700338 servent* s = getservbyname("smtp", nullptr);
339 ASSERT_TRUE(s != nullptr);
340 ASSERT_STREQ("smtp", s->s_name);
Derek Xueba811122014-08-13 14:19:17 +0100341 ASSERT_EQ(25, ntohs(s->s_port));
342 ASSERT_STREQ("tcp", s->s_proto);
343
344 // We get the same result by explicitly asking for tcp.
345 s = getservbyname("smtp", "tcp");
Elliott Hughes50339182017-10-13 17:52:01 -0700346 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 // And we get a failure if we explicitly ask for udp.
352 s = getservbyname("smtp", "udp");
Elliott Hughes50339182017-10-13 17:52:01 -0700353 ASSERT_TRUE(s == nullptr);
Derek Xueba811122014-08-13 14:19:17 +0100354
355 // But there are actually udp services.
356 s = getservbyname("echo", "udp");
Elliott Hughes50339182017-10-13 17:52:01 -0700357 ASSERT_TRUE(s != nullptr);
358 ASSERT_STREQ("echo", s->s_name);
Derek Xueba811122014-08-13 14:19:17 +0100359 ASSERT_EQ(7, ntohs(s->s_port));
360 ASSERT_STREQ("udp", s->s_proto);
361}
Elliott Hughes50339182017-10-13 17:52:01 -0700362
363TEST(netdb, getservbyport) {
364 // smtp is TCP-only, so we know we'll get 25/tcp back.
365 servent* s = getservbyport(htons(25), nullptr);
366 ASSERT_TRUE(s != nullptr);
367 ASSERT_STREQ("smtp", s->s_name);
368 ASSERT_EQ(25, ntohs(s->s_port));
369 ASSERT_STREQ("tcp", s->s_proto);
370
371 // We get the same result by explicitly asking for tcp.
372 s = getservbyport(htons(25), "tcp");
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 // And we get a failure if we explicitly ask for udp.
379 s = getservbyport(htons(25), "udp");
380 ASSERT_TRUE(s == nullptr);
381
382 // But there are actually udp services.
383 s = getservbyport(htons(7), "udp");
384 ASSERT_TRUE(s != nullptr);
385 ASSERT_STREQ("echo", s->s_name);
386 ASSERT_EQ(7, ntohs(s->s_port));
387 ASSERT_STREQ("udp", s->s_proto);
388}
389
390TEST(netdb, endnetent_getnetent_setnetent) {
391 setnetent(0);
392 setnetent(1);
393 endnetent();
394 while (getnetent() != nullptr) {
395 }
396}
397
398TEST(netdb, getnetbyaddr) {
399 getnetbyaddr(0, 0);
400}
401
402TEST(netdb, getnetbyname) {
403 getnetbyname("x");
404}
405
406TEST(netdb, endprotoent_getprotoent_setprotoent) {
407 setprotoent(0);
408 setprotoent(1);
409 endprotoent();
410 while (getprotoent() != nullptr) {
411 }
412}
413
414TEST(netdb, getprotobyname) {
415 getprotobyname("tcp");
416}
417
418TEST(netdb, getprotobynumber) {
419 getprotobynumber(6);
420}
421
422TEST(netdb, endservent_getservent_setservent) {
423 setservent(0);
424 setservent(1);
425 endservent();
426 size_t service_count = 0;
427 while (getservent() != nullptr) {
428 ++service_count;
429 }
430 ASSERT_GT(service_count, 0U);
431}
432
433TEST(netdb, getservbyname_getservent_conflicts) {
434 // Calling getservbyname shouldn't affect getservent's iteration order.
435 endservent();
436 while (getservent() != nullptr) {
437 ASSERT_TRUE(getservbyname("smtp", "tcp") != nullptr);
438 }
439}
440
441TEST(netdb, getservbyport_getservent_conflicts) {
442 // Calling getservbyport shouldn't affect getservent's iteration order.
443 endservent();
444 while (getservent() != nullptr) {
445 ASSERT_TRUE(getservbyport(htons(25), "tcp") != nullptr);
446 }
447}
448
449TEST(netdb, endservent_resets) {
450 endservent();
451 std::string first_service(getservent()->s_name);
452 endservent();
453 ASSERT_EQ(first_service, std::string(getservent()->s_name));
454}
455
456TEST(netdb, setservent_resets) {
457 endservent();
458 std::string first_service(getservent()->s_name);
459 setservent(0);
460 ASSERT_EQ(first_service, std::string(getservent()->s_name));
461}
462
463TEST(netdb, endhostent_gethostent_sethostent) {
464 sethostent(0);
465 sethostent(1);
466 endhostent();
467 size_t host_count = 0;
468 while (gethostent() != nullptr) {
469 ++host_count;
470 }
471 ASSERT_GT(host_count, 0U);
472}
473
474TEST(netdb, endhostent_resets) {
475 endhostent();
476 std::string first_host(gethostent()->h_name);
477 endhostent();
478 ASSERT_EQ(first_host, std::string(gethostent()->h_name));
479}
480
481TEST(netdb, sethostent_resets) {
482 endhostent();
483 std::string first_host(gethostent()->h_name);
484 sethostent(0);
485 ASSERT_EQ(first_host, std::string(gethostent()->h_name));
486}