123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- #include <netdb.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <arpa/inet.h>
- #include <netinet/in.h>
- #include <sys/param.h>
- #include <sys/socket.h>
- #include <unistd.h>
- #include <errno.h>
- #include "test_helpers.h"
- int error_count;
- static void
- output_servent (const char *call, struct servent *sptr)
- {
- char **pptr;
- if (sptr == NULL)
- printf ("Call: %s returned NULL\n", call);
- else
- {
- printf ("Call: %s, returned: s_name: %s, s_port: %d, s_proto: %s\n",
- call, sptr->s_name, ntohs(sptr->s_port), sptr->s_proto);
- for (pptr = sptr->s_aliases; *pptr != NULL; pptr++)
- printf (" alias: %s\n", *pptr);
- }
- }
- static void
- test_services (void)
- {
- struct servent *sptr;
- sptr = getservbyname ("domain", "tcp");
-
- sptr = getservbyname ("domain", "udp");
-
- sptr = getservbyname ("domain", NULL);
-
- sptr = getservbyname ("not-existant", NULL);
-
-
- sptr = getservbyname ("", "");
-
- sptr = getservbyname ("", "tcp");
-
- sptr = getservbyport (htons(53), "tcp");
-
- sptr = getservbyport (htons(53), NULL);
-
- sptr = getservbyport (htons(1), "udp");
-
- setservent (0);
- do
- {
- sptr = getservent ();
-
- }
- while (sptr != NULL);
- endservent ();
- }
- static void
- output_hostent (const char *call, struct hostent *hptr)
- {
- char **pptr;
- char buf[INET6_ADDRSTRLEN];
- if (hptr == NULL)
- printf ("Call: %s returned NULL\n", call);
- else
- {
- printf ("Call: %s returned: name: %s, addr_type: %d\n",
- call, hptr->h_name, hptr->h_addrtype);
- if (hptr->h_aliases)
- for (pptr = hptr->h_aliases; *pptr != NULL; pptr++)
- printf (" alias: %s\n", *pptr);
- for (pptr = hptr->h_addr_list; *pptr != NULL; pptr++)
- printf (" ip: %s\n",
- inet_ntop (hptr->h_addrtype, *pptr, buf, sizeof (buf)));
- }
- }
- static void
- test_hosts (void)
- {
- struct hostent *hptr1, *hptr2;
- char *name = NULL;
- size_t namelen = 0;
- struct in_addr ip;
- hptr1 = gethostbyname ("localhost");
- hptr2 = gethostbyname ("LocalHost");
- if (hptr1 != NULL || hptr2 != NULL)
- {
- if (hptr1 == NULL)
- {
- printf ("localhost not found - but LocalHost found:-(\n");
- ++error_count;
- }
- else if (hptr2 == NULL)
- {
- printf ("LocalHost not found - but localhost found:-(\n");
- ++error_count;
- }
- else if (strcmp (hptr1->h_name, hptr2->h_name) != 0)
- {
- printf ("localhost and LocalHost have different canoncial name\n");
- printf ("gethostbyname (\"localhost\")->%s\n", hptr1->h_name);
- printf ("gethostbyname (\"LocalHost\")->%s\n", hptr2->h_name);
- ++error_count;
- }
-
-
- }
- hptr1 = gethostbyname ("127.0.0.1");
-
- while (gethostname (name, namelen) < 0 && errno == ENAMETOOLONG)
- {
- namelen += 2;
- name = realloc (name, namelen);
- }
- if (gethostname (name, namelen) == 0)
- {
-
- if (name != NULL)
- {
- hptr1 = gethostbyname (name);
-
- }
- }
- ip.s_addr = htonl (INADDR_LOOPBACK);
- hptr1 = gethostbyaddr ((char *) &ip, sizeof(ip), AF_INET);
- if (hptr1 != NULL)
- {
-
- }
- sethostent (0);
- do
- {
- hptr1 = gethostent ();
-
- }
- while (hptr1 != NULL);
- endhostent ();
- struct hostent* redox = gethostbyname("redox-os.org");
- if (redox == NULL) {
- ++error_count;
- }
-
- struct in_addr el_goog;
- inet_aton("8.8.4.4", &el_goog);
- struct hostent* google = gethostbyaddr(&el_goog, 4, AF_INET);
- if (google == NULL) {
- ++error_count;
- }
-
- }
- static void
- output_protoent (const char *call, struct protoent *prptr)
- {
- char **pptr;
- if (prptr == NULL)
- printf ("Call: %s returned NULL\n", call);
- else
- {
- printf ("Call: %s, returned: p_name: %s, p_proto: %d\n",
- call, prptr->p_name, prptr->p_proto);
- for (pptr = prptr->p_aliases; *pptr != NULL; pptr++)
- printf (" alias: %s\n", *pptr);
- }
- }
- static void
- test_protocols (void)
- {
- struct protoent *prptr;
- prptr = getprotobyname ("ICMP");
-
- prptr = getprotobynumber (1);
-
- setprotoent (0);
- do
- {
- prptr = getprotoent ();
-
- }
- while (prptr != NULL);
- endprotoent ();
- }
- static void
- test_network (void)
- {
- struct netent *nptr = getnetbyname ("loopback");
- if (nptr != NULL) {
- printf("network name %d", nptr->n_net);
- } else {
- ++error_count;
- }
- do
- {
- nptr = getnetent();
- if (nptr != NULL) {
- printf("network name %s", nptr->n_name);
- }
- }
- while (nptr != NULL);
- setnetent (0);
- }
- static int
- do_test (void)
- {
-
- test_hosts ();
- test_network ();
- test_protocols ();
- test_services ();
- if (error_count)
- printf ("\n %d errors occurred!\n", error_count);
- else
- printf ("No visible errors occurred!\n");
- return (error_count != 0);
- }
- int main(void) {
- do_test();
- }
|