Add protoent and netent (#209)

The implementations of the getproto* functions follow from the getserv*
functions: same static name allocation, same type of internal function
that opens a file to search, aliases are not written to the struct, same
type of error handling/returns.

This changes also fixes a getaddrinfo AI_PASSIVE memory error. When
getaddrinfo is passed name = NULL and AI_PASSIVE in hints->ai_flags, it was
setting the s_addr value to INADDR_ANY but *not* returning the addrinfo
pointer via *res = ai. This caused a free(NULL) memory error when the caller
tried to free res, because the caller expects res to be a valid pointer to a
struct addrinfo.

Our non-standard API parseport() has been updated to use strtoimax.
strtoimax has an extra parameter endptr to store where the parsing was
terminated. endptr is used in parseport to check if the provided string
was valid.
This commit is contained in:
Gautham 2021-07-11 01:06:35 +05:30 committed by GitHub
parent c002e4ba76
commit e99a4dcc8c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 713 additions and 124 deletions

View file

@ -27,9 +27,9 @@
*/
#include "libc/dns/servicestxt.h"
#include "libc/calls/calls.h"
#include "libc/dns/dns.h"
#include "libc/dns/ent.h"
#include "libc/calls/calls.h"
#include "libc/testlib/testlib.h"
char testlib_enable_tmp_setup_teardown;
@ -48,88 +48,133 @@ ssh 22/tcp # SSH Remote Login Protocol";
}
TEST(LookupServicesByPort, GetNameWhenPortCorrect) {
char name[16]; /* sample has only names of length 3 */
char name[8]; /* service names are of length 3 */
char eitherproto[8]; /* protocol names are of length 3 */
char proto1[] = "tcp";
char proto2[] = "udp";
char* localproto[1];
char* localproto;
strcpy(eitherproto, "");
strcpy(name, "");
localproto[0] = NULL;
ASSERT_EQ(
-1, /* non existent port */
LookupServicesByPort(965, localproto, name, sizeof(name), "services"));
ASSERT_EQ(NULL, localproto[0]);
localproto = eitherproto;
ASSERT_EQ(-1, /* non existent port */
LookupServicesByPort(965, localproto, sizeof(eitherproto), name,
sizeof(name), "services"));
ASSERT_EQ('\0', localproto[0]);
ASSERT_EQ(
-1, /* port not in network byte order */
LookupServicesByPort(22, localproto, name, sizeof(name), "services"));
ASSERT_EQ(NULL, localproto[0]);
localproto = eitherproto;
ASSERT_EQ(-1, /* port in network byte order */
LookupServicesByPort(htons(22), localproto, sizeof(eitherproto),
name, sizeof(name), "services"));
ASSERT_EQ('\0', localproto[0]);
localproto[0] = proto2;
localproto = proto2;
ASSERT_EQ(-1, /* port ok but wrong protocol */
LookupServicesByPort(htons(22), localproto, name, sizeof(name),
LookupServicesByPort(22, localproto, sizeof(proto2), name,
sizeof(name), "services"));
ASSERT_STREQ(proto2, "udp");
localproto = proto1;
ASSERT_EQ(
-1, /* protocol is non-NULL/length must be nonzero */
LookupServicesByPort(22, localproto, 0, name, sizeof(name), "services"));
ASSERT_STREQ(proto1, "tcp");
localproto = proto1;
ASSERT_EQ(-1, /* sizeof(name) insufficient, memccpy failure */
LookupServicesByPort(22, localproto, sizeof(proto1), name, 1,
"services"));
ASSERT_EQ(localproto[0], proto2);
ASSERT_STREQ(proto1, "tcp");
ASSERT_STREQ(name, ""); /* cleaned up after memccpy failed */
localproto[0] = proto1;
ASSERT_EQ(0, LookupServicesByPort(htons(22), localproto, name, sizeof(name),
"services"));
localproto = eitherproto;
ASSERT_EQ(
-1, /* sizeof(proto) insufficient, memccpy failure */
LookupServicesByPort(22, localproto, 1, name, sizeof(name), "services"));
ASSERT_STREQ(eitherproto, ""); /* cleaned up after memccpy failed */
localproto = proto1;
ASSERT_EQ(0, LookupServicesByPort(22, localproto, sizeof(proto1), name,
sizeof(name), "services"));
ASSERT_STREQ(name, "ssh");
ASSERT_EQ(localproto[0], proto1);
ASSERT_STREQ(proto1, "tcp");
localproto[0] = proto2;
ASSERT_EQ(0, LookupServicesByPort(htons(19), localproto, name,
localproto = proto2;
ASSERT_EQ(0, LookupServicesByPort(19, localproto, sizeof(proto2), name,
sizeof(name), "services"));
ASSERT_STREQ(name, "chargen");
ASSERT_EQ(localproto[0], proto2);
ASSERT_STREQ(proto2, "udp");
localproto[0] = NULL;
localproto = eitherproto;
ASSERT_EQ(0, /* pick first matching protocol */
LookupServicesByPort(htons(19), localproto, name, sizeof(name),
"services"));
LookupServicesByPort(19, localproto, sizeof(eitherproto), name,
sizeof(name), "services"));
ASSERT_STREQ(name, "chargen");
ASSERT_NE(NULL, localproto[0]); /* got alloc'd during the call */
ASSERT_STREQ(localproto[0], "tcp");
free(localproto[0]);
ASSERT_NE('\0', localproto[0]); /* buffer filled during the call */
ASSERT_STREQ(eitherproto, "tcp");
}
TEST(LookupServicesByName, GetPortWhenNameOrAlias) {
char name[16]; /* sample has only names of length 3 */
char name[8]; /* service names are of length 3 */
char eitherproto[8]; /* protocol names are of length 3 */
char proto1[] = "tcp";
char proto2[] = "udp";
char* localproto[1];
char* localproto;
strcpy(eitherproto, "");
strcpy(name, "");
localproto[0] = NULL;
ASSERT_EQ(
-1, /* non-existent name */
LookupServicesByName("http", localproto, name, sizeof(name), "services"));
ASSERT_EQ(NULL, localproto[0]);
localproto = eitherproto;
ASSERT_EQ(-1, /* non-existent name */
LookupServicesByName("http", localproto, sizeof(eitherproto), name,
sizeof(name), "services"));
ASSERT_EQ('\0', localproto[0]);
localproto[0] = proto2;
ASSERT_EQ(
-1, /* name exists but wrong protocol */
LookupServicesByName("ssh", localproto, name, sizeof(name), "services"));
ASSERT_EQ(localproto[0], proto2);
localproto = proto2;
ASSERT_EQ(-1, /* name exists but wrong protocol */
LookupServicesByName("ssh", localproto, sizeof(proto2), name,
sizeof(name), "services"));
ASSERT_STREQ(proto2, "udp");
localproto[0] = proto1;
ASSERT_EQ(
htons(22), /* in network byte order */
LookupServicesByName("ssh", localproto, name, sizeof(name), "services"));
localproto = proto2;
ASSERT_EQ(-1, /* protocol is non-NULL/length must be nonzero */
LookupServicesByName("ssh", localproto, 0, name, sizeof(name),
"services"));
ASSERT_STREQ(proto2, "udp");
localproto = proto1;
ASSERT_EQ(-1, /* sizeof(name) insufficient, memccpy failure */
LookupServicesByName("ssh", localproto, sizeof(proto1), name, 1,
"services"));
ASSERT_STREQ(proto1, "tcp");
ASSERT_STREQ(name, ""); /* cleaned up after memccpy failed */
localproto = eitherproto;
ASSERT_EQ(-1, /* sizeof(proto) insufficient, memccpy failure */
LookupServicesByName("ssh", localproto, 1, name, sizeof(name),
"services"));
ASSERT_STREQ(eitherproto, ""); /* cleaned up after memccpy failed */
localproto = proto1;
ASSERT_EQ(22, LookupServicesByName("ssh", localproto, sizeof(proto1), name,
sizeof(name), "services"));
ASSERT_STREQ(name, "ssh"); /* official name written to buffer */
ASSERT_EQ(localproto[0], proto1);
ASSERT_STREQ(proto1, "tcp");
localproto[0] = proto2;
ASSERT_EQ(htons(19), /* works if alias provided */
LookupServicesByName("ttytst", localproto, name, sizeof(name),
"services"));
localproto = proto2;
ASSERT_EQ(19, /* works if alias provided */
LookupServicesByName("ttytst", localproto, sizeof(proto2), name,
sizeof(name), "services"));
ASSERT_STREQ(name, "chargen"); /* official name written to buffer */
ASSERT_EQ(localproto[0], proto2);
localproto[0] = NULL;
ASSERT_EQ(htons(19), /* pick first matching protocol */
LookupServicesByName("source", localproto, name, sizeof(name),
localproto = proto2;
ASSERT_EQ(19, /* can get port returned without official name */
LookupServicesByName("ttytst", localproto, sizeof(proto2), NULL, 0,
"services"));
localproto = eitherproto;
ASSERT_EQ(19, /* pick first matching protocol */
LookupServicesByName("source", localproto, sizeof(eitherproto),
name, sizeof(name), "services"));
ASSERT_STREQ(name, "chargen");
ASSERT_NE(NULL, localproto[0]); /* got alloc'd during the call */
ASSERT_STREQ(localproto[0], "tcp");
free(localproto[0]);
ASSERT_STREQ(localproto, "tcp");
}