1 /* Copyright (C) 1998,99,2000,01 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, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21 Testing of some network related lookup functions.
22 The system databases looked up are:
28 The tests try to be fairly generic and simple so that they work on
29 every possible setup (and might therefore not detect some possible
34 #include <rpc/netdb.h>
38 #include <arpa/inet.h>
39 #include <netinet/in.h>
40 #include <sys/param.h>
41 #include <sys/socket.h>
47 The following define is necessary for glibc 2.0.6
49 #ifndef INET6_ADDRSTRLEN
50 # define INET6_ADDRSTRLEN 46
56 output_servent (const char *call
, struct servent
*sptr
)
61 printf ("Call: %s returned NULL\n", call
);
64 printf ("Call: %s, returned: s_name: %s, s_port: %d, s_proto: %s\n",
65 call
, sptr
->s_name
, ntohs(sptr
->s_port
), sptr
->s_proto
);
66 for (pptr
= sptr
->s_aliases
; *pptr
!= NULL
; pptr
++)
67 printf (" alias: %s\n", *pptr
);
77 sptr
= getservbyname ("domain", "tcp");
78 output_servent ("getservbyname (\"domain\", \"tcp\")", sptr
);
80 sptr
= getservbyname ("domain", "udp");
81 output_servent ("getservbyname (\"domain\", \"udp\")", sptr
);
83 sptr
= getservbyname ("domain", NULL
);
84 output_servent ("getservbyname (\"domain\", NULL)", sptr
);
86 sptr
= getservbyname ("not-existant", NULL
);
87 output_servent ("getservbyname (\"not-existant\", NULL)", sptr
);
89 /* This shouldn't return anything. */
90 sptr
= getservbyname ("", "");
91 output_servent ("getservbyname (\"\", \"\")", sptr
);
93 sptr
= getservbyname ("", "tcp");
94 output_servent ("getservbyname (\"\", \"tcp\")", sptr
);
96 sptr
= getservbyport (htons(53), "tcp");
97 output_servent ("getservbyport (htons(53), \"tcp\")", sptr
);
99 sptr
= getservbyport (htons(53), NULL
);
100 output_servent ("getservbyport (htons(53), NULL)", sptr
);
102 sptr
= getservbyport (htons(1), "udp"); /* shouldn't exist */
103 output_servent ("getservbyport (htons(1), \"udp\")", sptr
);
108 sptr
= getservent ();
109 output_servent ("getservent ()", sptr
);
111 while (sptr
!= NULL
);
117 output_hostent (const char *call
, struct hostent
*hptr
)
120 char buf
[INET6_ADDRSTRLEN
];
123 printf ("Call: %s returned NULL\n", call
);
126 printf ("Call: %s returned: name: %s, addr_type: %d\n",
127 call
, hptr
->h_name
, hptr
->h_addrtype
);
129 for (pptr
= hptr
->h_aliases
; *pptr
!= NULL
; pptr
++)
130 printf (" alias: %s\n", *pptr
);
132 for (pptr
= hptr
->h_addr_list
; *pptr
!= NULL
; pptr
++)
134 inet_ntop (hptr
->h_addrtype
, *pptr
, buf
, sizeof (buf
)));
141 struct hostent
*hptr1
, *hptr2
;
146 hptr1
= gethostbyname ("localhost");
147 hptr2
= gethostbyname ("LocalHost");
148 if (hptr1
!= NULL
|| hptr2
!= NULL
)
152 printf ("localhost not found - but LocalHost found:-(\n");
155 else if (hptr2
== NULL
)
157 printf ("LocalHost not found - but localhost found:-(\n");
160 else if (strcmp (hptr1
->h_name
, hptr2
->h_name
) != 0)
162 printf ("localhost and LocalHost have different canoncial name\n");
163 printf ("gethostbyname (\"localhost\")->%s\n", hptr1
->h_name
);
164 printf ("gethostbyname (\"LocalHost\")->%s\n", hptr2
->h_name
);
168 output_hostent ("gethostbyname(\"localhost\")", hptr1
);
171 hptr1
= gethostbyname ("127.0.0.1");
172 output_hostent ("gethostbyname (\"127.0.0.1\")", hptr1
);
174 hptr1
= gethostbyname ("10.1234");
175 output_hostent ("gethostbyname (\"10.1234\")", hptr1
);
177 hptr1
= gethostbyname2 ("localhost", AF_INET
);
178 output_hostent ("gethostbyname2 (\"localhost\", AF_INET)", hptr1
);
180 while (gethostname (name
, namelen
) < 0 && errno
== ENAMETOOLONG
)
182 namelen
+= 2; /* tiny increments to test a lot */
183 name
= realloc (name
, namelen
);
185 if (gethostname (name
, namelen
) == 0)
187 printf ("Hostname: %s\n", name
);
190 hptr1
= gethostbyname (name
);
191 output_hostent ("gethostbyname (gethostname(...))", hptr1
);
195 ip
.s_addr
= htonl (INADDR_LOOPBACK
);
196 hptr1
= gethostbyaddr ((char *) &ip
, sizeof(ip
), AF_INET
);
199 printf ("official name of 127.0.0.1: %s\n", hptr1
->h_name
);
205 hptr1
= gethostent ();
206 output_hostent ("gethostent ()", hptr1
);
208 while (hptr1
!= NULL
);
215 output_netent (const char *call
, struct netent
*nptr
)
220 printf ("Call: %s returned NULL\n", call
);
225 ip
.s_addr
= htonl(nptr
->n_net
);
226 printf ("Call: %s, returned: n_name: %s, network_number: %s\n",
227 call
, nptr
->n_name
, inet_ntoa (ip
));
229 for (pptr
= nptr
->n_aliases
; *pptr
!= NULL
; pptr
++)
230 printf (" alias: %s\n", *pptr
);
241 This test needs the following line in /etc/networks:
244 nptr
= getnetbyname ("loopback");
245 output_netent ("getnetbyname (\"loopback\")",nptr
);
247 nptr
= getnetbyname ("LoopBACK");
248 output_netent ("getnetbyname (\"LoopBACK\")",nptr
);
250 ip
= inet_network ("127.0.0.0");
251 nptr
= getnetbyaddr (ip
, AF_INET
);
252 output_netent ("getnetbyaddr (inet_network (\"127.0.0.0\"), AF_INET)",nptr
);
258 output_netent ("getnetent ()", nptr
);
260 while (nptr
!= NULL
);
266 output_protoent (const char *call
, struct protoent
*prptr
)
271 printf ("Call: %s returned NULL\n", call
);
274 printf ("Call: %s, returned: p_name: %s, p_proto: %d\n",
275 call
, prptr
->p_name
, prptr
->p_proto
);
276 for (pptr
= prptr
->p_aliases
; *pptr
!= NULL
; pptr
++)
277 printf (" alias: %s\n", *pptr
);
283 test_protocols (void)
285 struct protoent
*prptr
;
287 prptr
= getprotobyname ("IP");
288 output_protoent ("getprotobyname (\"IP\")", prptr
);
290 prptr
= getprotobynumber (1);
291 output_protoent ("getprotobynumber (1)", prptr
);
296 prptr
= getprotoent ();
297 output_protoent ("getprotoent ()", prptr
);
299 while (prptr
!= NULL
);
305 output_rpcent (const char *call
, struct rpcent
*rptr
)
310 printf ("Call: %s returned NULL\n", call
);
313 printf ("Call: %s, returned: r_name: %s, r_number: %d\n",
314 call
, rptr
->r_name
, rptr
->r_number
);
315 for (pptr
= rptr
->r_aliases
; *pptr
!= NULL
; pptr
++)
316 printf (" alias: %s\n", *pptr
);
325 rptr
= getrpcbyname ("portmap");
326 output_rpcent ("getrpcyname (\"portmap\")", rptr
);
328 rptr
= getrpcbynumber (100000);
329 output_rpcent ("getrpcbynumber (100000)", rptr
);
335 output_rpcent ("getrpcent ()", rptr
);
337 while (rptr
!= NULL
);
341 /* Override /etc/nsswitch.conf for this program. This is mainly
342 useful for developers. */
343 static void __attribute__ ((unused
))
344 setdb (const char *dbname
)
346 if (strcmp ("db", dbname
))
349 db is not implemented for hosts, networks
351 __nss_configure_lookup ("hosts", dbname
);
352 __nss_configure_lookup ("networks", dbname
);
354 __nss_configure_lookup ("protocols", dbname
);
355 __nss_configure_lookup ("rpc", dbname
);
356 __nss_configure_lookup ("services", dbname
);
374 printf ("\n %d errors occurred!\n", error_count
);
376 printf ("No visible errors occurred!\n");
378 return (error_count
!= 0);