1 /* Copyright (C) 1998-2015 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Andreas Jaeger <aj@suse.de>, 1998.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
20 Testing of some network related lookup functions.
21 The system databases looked up are:
26 The tests try to be fairly generic and simple so that they work on
27 every possible setup (and might therefore not detect some possible
35 #include <arpa/inet.h>
36 #include <netinet/in.h>
37 #include <sys/param.h>
38 #include <sys/socket.h>
44 The following define is necessary for glibc 2.0.6
46 #ifndef INET6_ADDRSTRLEN
47 # define INET6_ADDRSTRLEN 46
53 output_servent (const char *call
, struct servent
*sptr
)
58 printf ("Call: %s returned NULL\n", call
);
61 printf ("Call: %s, returned: s_name: %s, s_port: %d, s_proto: %s\n",
62 call
, sptr
->s_name
, ntohs(sptr
->s_port
), sptr
->s_proto
);
63 for (pptr
= sptr
->s_aliases
; *pptr
!= NULL
; pptr
++)
64 printf (" alias: %s\n", *pptr
);
74 sptr
= getservbyname ("domain", "tcp");
75 output_servent ("getservbyname (\"domain\", \"tcp\")", sptr
);
77 sptr
= getservbyname ("domain", "udp");
78 output_servent ("getservbyname (\"domain\", \"udp\")", sptr
);
80 sptr
= getservbyname ("domain", NULL
);
81 output_servent ("getservbyname (\"domain\", NULL)", sptr
);
83 sptr
= getservbyname ("not-existant", NULL
);
84 output_servent ("getservbyname (\"not-existant\", NULL)", sptr
);
86 /* This shouldn't return anything. */
87 sptr
= getservbyname ("", "");
88 output_servent ("getservbyname (\"\", \"\")", sptr
);
90 sptr
= getservbyname ("", "tcp");
91 output_servent ("getservbyname (\"\", \"tcp\")", sptr
);
93 sptr
= getservbyport (htons(53), "tcp");
94 output_servent ("getservbyport (htons(53), \"tcp\")", sptr
);
96 sptr
= getservbyport (htons(53), NULL
);
97 output_servent ("getservbyport (htons(53), NULL)", sptr
);
99 sptr
= getservbyport (htons(1), "udp"); /* shouldn't exist */
100 output_servent ("getservbyport (htons(1), \"udp\")", sptr
);
105 sptr
= getservent ();
106 output_servent ("getservent ()", sptr
);
108 while (sptr
!= NULL
);
114 output_hostent (const char *call
, struct hostent
*hptr
)
117 char buf
[INET6_ADDRSTRLEN
];
120 printf ("Call: %s returned NULL\n", call
);
123 printf ("Call: %s returned: name: %s, addr_type: %d\n",
124 call
, hptr
->h_name
, hptr
->h_addrtype
);
126 for (pptr
= hptr
->h_aliases
; *pptr
!= NULL
; pptr
++)
127 printf (" alias: %s\n", *pptr
);
129 for (pptr
= hptr
->h_addr_list
; *pptr
!= NULL
; pptr
++)
131 inet_ntop (hptr
->h_addrtype
, *pptr
, buf
, sizeof (buf
)));
138 struct hostent
*hptr1
, *hptr2
;
143 hptr1
= gethostbyname ("localhost");
144 hptr2
= gethostbyname ("LocalHost");
145 if (hptr1
!= NULL
|| hptr2
!= NULL
)
149 printf ("localhost not found - but LocalHost found:-(\n");
152 else if (hptr2
== NULL
)
154 printf ("LocalHost not found - but localhost found:-(\n");
157 else if (strcmp (hptr1
->h_name
, hptr2
->h_name
) != 0)
159 printf ("localhost and LocalHost have different canoncial name\n");
160 printf ("gethostbyname (\"localhost\")->%s\n", hptr1
->h_name
);
161 printf ("gethostbyname (\"LocalHost\")->%s\n", hptr2
->h_name
);
165 output_hostent ("gethostbyname(\"localhost\")", hptr1
);
168 hptr1
= gethostbyname ("127.0.0.1");
169 output_hostent ("gethostbyname (\"127.0.0.1\")", hptr1
);
171 hptr1
= gethostbyname ("10.1234");
172 output_hostent ("gethostbyname (\"10.1234\")", hptr1
);
174 hptr1
= gethostbyname2 ("localhost", AF_INET
);
175 output_hostent ("gethostbyname2 (\"localhost\", AF_INET)", hptr1
);
177 while (gethostname (name
, namelen
) < 0 && errno
== ENAMETOOLONG
)
179 namelen
+= 2; /* tiny increments to test a lot */
180 name
= realloc (name
, namelen
);
182 if (gethostname (name
, namelen
) == 0)
184 printf ("Hostname: %s\n", name
);
187 hptr1
= gethostbyname (name
);
188 output_hostent ("gethostbyname (gethostname(...))", hptr1
);
192 ip
.s_addr
= htonl (INADDR_LOOPBACK
);
193 hptr1
= gethostbyaddr ((char *) &ip
, sizeof(ip
), AF_INET
);
196 printf ("official name of 127.0.0.1: %s\n", hptr1
->h_name
);
202 hptr1
= gethostent ();
203 output_hostent ("gethostent ()", hptr1
);
205 while (hptr1
!= NULL
);
212 output_netent (const char *call
, struct netent
*nptr
)
217 printf ("Call: %s returned NULL\n", call
);
222 ip
.s_addr
= htonl(nptr
->n_net
);
223 printf ("Call: %s, returned: n_name: %s, network_number: %s\n",
224 call
, nptr
->n_name
, inet_ntoa (ip
));
226 for (pptr
= nptr
->n_aliases
; *pptr
!= NULL
; pptr
++)
227 printf (" alias: %s\n", *pptr
);
238 This test needs the following line in /etc/networks:
241 nptr
= getnetbyname ("loopback");
242 output_netent ("getnetbyname (\"loopback\")",nptr
);
244 nptr
= getnetbyname ("LoopBACK");
245 output_netent ("getnetbyname (\"LoopBACK\")",nptr
);
247 ip
= inet_network ("127.0.0.0");
248 nptr
= getnetbyaddr (ip
, AF_INET
);
249 output_netent ("getnetbyaddr (inet_network (\"127.0.0.0\"), AF_INET)",nptr
);
255 output_netent ("getnetent ()", nptr
);
257 while (nptr
!= NULL
);
263 output_protoent (const char *call
, struct protoent
*prptr
)
268 printf ("Call: %s returned NULL\n", call
);
271 printf ("Call: %s, returned: p_name: %s, p_proto: %d\n",
272 call
, prptr
->p_name
, prptr
->p_proto
);
273 for (pptr
= prptr
->p_aliases
; *pptr
!= NULL
; pptr
++)
274 printf (" alias: %s\n", *pptr
);
280 test_protocols (void)
282 struct protoent
*prptr
;
284 prptr
= getprotobyname ("IP");
285 output_protoent ("getprotobyname (\"IP\")", prptr
);
287 prptr
= getprotobynumber (1);
288 output_protoent ("getprotobynumber (1)", prptr
);
293 prptr
= getprotoent ();
294 output_protoent ("getprotoent ()", prptr
);
296 while (prptr
!= NULL
);
301 /* Override /etc/nsswitch.conf for this program. This is mainly
302 useful for developers. */
303 static void __attribute__ ((unused
))
304 setdb (const char *dbname
)
306 if (strcmp ("db", dbname
))
309 db is not implemented for hosts, networks
311 __nss_configure_lookup ("hosts", dbname
);
312 __nss_configure_lookup ("networks", dbname
);
314 __nss_configure_lookup ("protocols", dbname
);
315 __nss_configure_lookup ("services", dbname
);
332 printf ("\n %d errors occurred!\n", error_count
);
334 printf ("No visible errors occurred!\n");
336 return (error_count
!= 0);
339 #define TEST_FUNCTION do_test ()
340 #include "../test-skeleton.c"