*** empty log message ***
[bpt/guile.git] / libguile / net_db.c
CommitLineData
370312ae
GH
1/* "net_db.c" network database support
2 * Copyright (C) 1995,1996 Free Software Foundation, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2, or (at your option)
7 * any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this software; see the file COPYING. If not, write to
16 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
17 *
18 * As a special exception, the Free Software Foundation gives permission
19 * for additional uses of the text contained in its release of GUILE.
20 *
21 * The exception is that, if you link the GUILE library with other files
22 * to produce an executable, this does not by itself cause the
23 * resulting executable to be covered by the GNU General Public License.
24 * Your use of that executable is in no way restricted on account of
25 * linking the GUILE library code into it.
26 *
27 * This exception does not however invalidate any other reasons why
28 * the executable file might be covered by the GNU General Public License.
29 *
30 * This exception applies only to the code released by the
31 * Free Software Foundation under the name GUILE. If you copy
32 * code from other Free Software Foundation releases into a copy of
33 * GUILE, as the General Public License permits, the exception does
34 * not apply to the code that you add in this way. To avoid misleading
35 * anyone as to the status of such modified files, you must delete
36 * this exception notice from them.
37 *
38 * If you write modifications of your own for GUILE, it is your choice
39 * whether to permit this exception to apply to your modifications.
40 * If you do not wish that, delete this exception notice.
41 */
42
43/* Written in 1994 by Aubrey Jaffer.
44 * Thanks to Hallvard.Tretteberg@si.sintef.no for inspiration and discussion.
45 * Rewritten by Gary Houston to be a closer interface to the C socket library.
46 * Split into net_db.c and socket.c.
47 */
48\f
49
50#include <stdio.h>
51#include "_scm.h"
52#include "feature.h"
53
54#include "net_db.h"
55
56#ifdef HAVE_STRING_H
57#include <string.h>
58#endif
59
60#include <sys/types.h>
61#include <netdb.h>
62#include <netinet/in.h>
63#include <arpa/inet.h>
64
65\f
66
67#ifndef STDC_HEADERS
68int close ();
69#endif /* STDC_HEADERS */
70
71extern int inet_aton ();
72
73SCM_PROC (s_inet_aton, "inet-aton", 1, 0, 0, scm_inet_aton);
74
75SCM
76scm_inet_aton (address)
77 SCM address;
78{
79 struct in_addr soka;
80
81 SCM_ASSERT (SCM_NIMP (address) && SCM_ROSTRINGP (address), address, SCM_ARG1, s_inet_aton);
82 if (SCM_SUBSTRP (address))
83 address = scm_makfromstr (SCM_ROCHARS (address), SCM_ROLENGTH (address), 0);
84 if (inet_aton (SCM_ROCHARS (address), &soka) == 0)
85 scm_syserror (s_inet_aton);
86 return scm_ulong2num (ntohl (soka.s_addr));
87}
88
89
90SCM_PROC (s_inet_ntoa, "inet-ntoa", 1, 0, 0, scm_inet_ntoa);
91
92SCM
93scm_inet_ntoa (inetid)
94 SCM inetid;
95{
96 struct in_addr addr;
97 char *s;
98 SCM answer;
99 addr.s_addr = htonl (scm_num2ulong (inetid, (char *) SCM_ARG1, s_inet_ntoa));
100 SCM_DEFER_INTS;
101 s = inet_ntoa (addr);
102 answer = scm_makfromstr (s, strlen (s), 0);
103 SCM_ALLOW_INTS;
104 return answer;
105}
106
107SCM_PROC (s_inet_netof, "inet-netof", 1, 0, 0, scm_inet_netof);
108
109SCM
110scm_inet_netof (address)
111 SCM address;
112{
113 struct in_addr addr;
114 addr.s_addr = htonl (scm_num2ulong (address, (char *) SCM_ARG1, s_inet_netof));
115 return scm_ulong2num ((unsigned long) inet_netof (addr));
116}
117
118SCM_PROC (s_lnaof, "lnaof", 1, 0, 0, scm_lnaof);
119
120SCM
121scm_lnaof (address)
122 SCM address;
123{
124 struct in_addr addr;
125 addr.s_addr = htonl (scm_num2ulong (address, (char *) SCM_ARG1, s_lnaof));
126 return scm_ulong2num ((unsigned long) inet_lnaof (addr));
127}
128
129
130SCM_PROC (s_inet_makeaddr, "inet-makeaddr", 2, 0, 0, scm_inet_makeaddr);
131
132SCM
133scm_inet_makeaddr (net, lna)
134 SCM net;
135 SCM lna;
136{
137 struct in_addr addr;
138 unsigned long netnum;
139 unsigned long lnanum;
140
141 netnum = scm_num2ulong (net, (char *) SCM_ARG1, s_inet_makeaddr);
142 lnanum = scm_num2ulong (lna, (char *) SCM_ARG2, s_inet_makeaddr);
143 addr = inet_makeaddr (netnum, lnanum);
144 return scm_ulong2num (ntohl (addr.s_addr));
145}
146
147
148/* !!! Doesn't take address format.
149 * Assumes hostent stream isn't reused.
150 */
151
152SCM_PROC (s_gethost, "gethost", 0, 1, 0, scm_gethost);
153
154SCM
155scm_gethost (name)
156 SCM name;
157{
158 SCM ans = scm_make_vector (SCM_MAKINUM (5), SCM_UNSPECIFIED, SCM_BOOL_F);
159 SCM *ve = SCM_VELTS (ans);
160 SCM lst = SCM_EOL;
161 struct hostent *entry;
162 struct in_addr inad;
163 char **argv;
164 int i = 0;
165#ifdef HAVE_GETHOSTENT
166 if (SCM_UNBNDP (name))
167 {
168 SCM_DEFER_INTS;
169 entry = gethostent ();
170 }
171 else
172#endif
173 if (SCM_NIMP (name) && SCM_STRINGP (name))
174 {
175 SCM_DEFER_INTS;
176 entry = gethostbyname (SCM_CHARS (name));
177 }
178 else
179 {
180 inad.s_addr = htonl (scm_num2ulong (name, (char *) SCM_ARG1, s_gethost));
181 SCM_DEFER_INTS;
182 entry = gethostbyaddr ((char *) &inad, sizeof (inad), AF_INET);
183 }
184 SCM_ALLOW_INTS;
185 if (!entry)
186 scm_syserror (s_gethost);
187 ve[0] = scm_makfromstr (entry->h_name, (scm_sizet) strlen (entry->h_name), 0);
188 ve[1] = scm_makfromstrs (-1, entry->h_aliases);
189 ve[2] = SCM_MAKINUM (entry->h_addrtype + 0L);
190 ve[3] = SCM_MAKINUM (entry->h_length + 0L);
191 if (sizeof (struct in_addr) != entry->h_length)
192 {
193 ve[4] = SCM_BOOL_F;
194 return ans;
195 }
196 for (argv = entry->h_addr_list; argv[i]; i++);
197 while (i--)
198 {
199 inad = *(struct in_addr *) argv[i];
200 lst = scm_cons (scm_ulong2num (ntohl (inad.s_addr)), lst);
201 }
202 ve[4] = lst;
203 return ans;
204}
205
206
207SCM_PROC (s_getnet, "getnet", 0, 1, 0, scm_getnet);
208
209SCM
210scm_getnet (name)
211 SCM name;
212{
213 SCM ans;
214 SCM *ve;
215 struct netent *entry;
216
217 ans = scm_make_vector (SCM_MAKINUM (4), SCM_UNSPECIFIED, SCM_BOOL_F);
218 ve = SCM_VELTS (ans);
219 if (SCM_UNBNDP (name))
220 {
221 SCM_DEFER_INTS;
222 entry = getnetent ();
223 }
224 else if (SCM_NIMP (name) && SCM_STRINGP (name))
225 {
226 SCM_DEFER_INTS;
227 entry = getnetbyname (SCM_CHARS (name));
228 }
229 else
230 {
231 unsigned long netnum;
232 netnum = scm_num2ulong (name, (char *) SCM_ARG1, s_getnet);
233 SCM_DEFER_INTS;
234 entry = getnetbyaddr (netnum, AF_INET);
235 }
236 SCM_ALLOW_INTS;
237 if (!entry)
238 scm_syserror (s_getnet);
239 ve[0] = scm_makfromstr (entry->n_name, (scm_sizet) strlen (entry->n_name), 0);
240 ve[1] = scm_makfromstrs (-1, entry->n_aliases);
241 ve[2] = SCM_MAKINUM (entry->n_addrtype + 0L);
242 ve[3] = scm_ulong2num (entry->n_net + 0L);
243 return ans;
244}
245
246SCM_PROC (s_getproto, "getproto", 0, 1, 0, scm_getproto);
247
248SCM
249scm_getproto (name)
250 SCM name;
251{
252 SCM ans;
253 SCM *ve;
254 struct protoent *entry;
255
256 ans = scm_make_vector (SCM_MAKINUM (3), SCM_UNSPECIFIED, SCM_BOOL_F);
257 ve = SCM_VELTS (ans);
258 if (SCM_UNBNDP (name))
259 {
260 SCM_DEFER_INTS;
261 entry = getprotoent ();
262 }
263 else if (SCM_NIMP (name) && SCM_STRINGP (name))
264 {
265 SCM_DEFER_INTS;
266 entry = getprotobyname (SCM_CHARS (name));
267 }
268 else
269 {
270 unsigned long protonum;
271 protonum = scm_num2ulong (name, (char *) SCM_ARG1, s_getproto);
272 SCM_DEFER_INTS;
273 entry = getprotobynumber (protonum);
274 }
275 SCM_ALLOW_INTS;
276 if (!entry)
277 scm_syserror (s_getproto);
278 ve[0] = scm_makfromstr (entry->p_name, (scm_sizet) strlen (entry->p_name), 0);
279 ve[1] = scm_makfromstrs (-1, entry->p_aliases);
280 ve[2] = SCM_MAKINUM (entry->p_proto + 0L);
281 return ans;
282}
283
284
285static SCM scm_return_entry SCM_P ((struct servent *entry));
286
287static SCM
288scm_return_entry (entry)
289 struct servent *entry;
290{
291 SCM ans;
292 SCM *ve;
293
294 ans = scm_make_vector (SCM_MAKINUM (4), SCM_UNSPECIFIED, SCM_BOOL_F);
295 ve = SCM_VELTS (ans);
296 ve[0] = scm_makfromstr (entry->s_name, (scm_sizet) strlen (entry->s_name), 0);
297 ve[1] = scm_makfromstrs (-1, entry->s_aliases);
298 ve[2] = SCM_MAKINUM (ntohs (entry->s_port) + 0L);
299 ve[3] = scm_makfromstr (entry->s_proto, (scm_sizet) strlen (entry->s_proto), 0);
300 SCM_ALLOW_INTS;
301 return ans;
302}
303
304SCM_PROC (s_getserv, "getserv", 0, 2, 0, scm_getserv);
305
306SCM
307scm_getserv (name, proto)
308 SCM name;
309 SCM proto;
310{
311 struct servent *entry;
312 if (SCM_UNBNDP (name))
313 {
314 SCM_DEFER_INTS;
315 entry = getservent ();
316 if (!entry)
317 scm_syserror (s_getserv);
318 return scm_return_entry (entry);
319 }
320 SCM_ASSERT (SCM_NIMP (proto) && SCM_STRINGP (proto), proto, SCM_ARG2, s_getserv);
321 if (SCM_NIMP (name) && SCM_STRINGP (name))
322 {
323 SCM_DEFER_INTS;
324 entry = getservbyname (SCM_CHARS (name), SCM_CHARS (proto));
325 }
326 else
327 {
328 SCM_ASSERT (SCM_INUMP (name), name, SCM_ARG1, s_getserv);
329 SCM_DEFER_INTS;
330 entry = getservbyport (SCM_INUM (name), SCM_CHARS (proto));
331 }
332 if (!entry)
333 scm_syserror (s_getserv);
334 return scm_return_entry (entry);
335}
336
337SCM_PROC (s_sethost, "sethost", 0, 1, 0, scm_sethost);
338
339SCM
340scm_sethost (arg)
341 SCM arg;
342{
343 if (SCM_UNBNDP (arg))
344 endhostent ();
345 else
346 sethostent (SCM_NFALSEP (arg));
347 return SCM_UNSPECIFIED;
348}
349
350SCM_PROC (s_setnet, "setnet", 0, 1, 0, scm_setnet);
351
352SCM
353scm_setnet (arg)
354 SCM arg;
355{
356 if (SCM_UNBNDP (arg))
357 endnetent ();
358 else
359 setnetent (SCM_NFALSEP (arg));
360 return SCM_UNSPECIFIED;
361}
362
363SCM_PROC (s_setproto, "setproto", 0, 1, 0, scm_setproto);
364
365SCM
366scm_setproto (arg)
367 SCM arg;
368{
369 if (SCM_UNBNDP (arg))
370 endprotoent ();
371 else
372 setprotoent (SCM_NFALSEP (arg));
373 return SCM_UNSPECIFIED;
374}
375
376SCM_PROC (s_setserv, "setserv", 0, 1, 0, scm_setserv);
377
378SCM
379scm_setserv (arg)
380 SCM arg;
381{
382 if (SCM_UNBNDP (arg))
383 endservent ();
384 else
385 setservent (SCM_NFALSEP (arg));
386 return SCM_UNSPECIFIED;
387}
388
389
390void
391scm_init_net_db ()
392{
393#ifdef INADDR_ANY
394 scm_sysintern ("INADDR_ANY", scm_ulong2num (INADDR_ANY));
395#endif
396#ifdef INADDR_BROADCAST
397 scm_sysintern ("INADDR_BROADCAST", scm_ulong2num (INADDR_BROADCAST));
398#endif
399#ifdef INADDR_NONE
400 scm_sysintern ("INADDR_NONE", scm_ulong2num (INADDR_NONE));
401#endif
402#ifdef INADDR_LOOPBACK
403 scm_sysintern ("INADDR_LOOPBACK", scm_ulong2num (INADDR_LOOPBACK));
404#endif
405
406 scm_add_feature ("net-db");
407#include "net_db.x"
408}
409
410