(Network Address Conversion): Move INADDR_ANY to here.
[bpt/guile.git] / doc / ref / posix.texi
CommitLineData
2da09c3f
MV
1@c -*-texinfo-*-
2@c This is part of the GNU Guile Reference Manual.
3@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004
4@c Free Software Foundation, Inc.
5@c See the file guile.texi for copying conditions.
6
a0e07ba4 7@node POSIX
3229f68b 8@section @acronym{POSIX} System Calls and Networking
f3dfb8ac 9@cindex POSIX
a0e07ba4
NJ
10
11@menu
12* Conventions:: Conventions employed by the POSIX interface.
13* Ports and File Descriptors:: Scheme ``ports'' and Unix file descriptors
7381c1de 14 have different representations.
a0e07ba4
NJ
15* File System:: stat, chown, chmod, etc.
16* User Information:: Retrieving a user's GECOS (/etc/passwd) entry.
17* Time:: gettimeofday, localtime, strftime, etc.
18* Runtime Environment:: Accessing and modifying Guile's environment.
19* Processes:: getuid, getpid, etc.
20* Signals:: sigaction, kill, pause, alarm, setitimer, etc.
21* Terminals and Ptys:: ttyname, tcsetpgrp, etc.
22* Pipes:: Communicating data between processes.
23* Networking:: gethostbyaddr, getnetent, socket, bind, listen.
24* System Identification:: Obtaining information about the system.
25* Locales:: setlocale, etc.
5f378d17 26* Encryption::
a0e07ba4
NJ
27@end menu
28
29@node Conventions
3229f68b 30@subsection @acronym{POSIX} Interface Conventions
a0e07ba4
NJ
31
32These interfaces provide access to operating system facilities.
33They provide a simple wrapping around the underlying C interfaces
34to make usage from Scheme more convenient. They are also used
7403e409 35to implement the Guile port of scsh (@pxref{The Scheme shell (scsh)}).
a0e07ba4
NJ
36
37Generally there is a single procedure for each corresponding Unix
38facility. There are some exceptions, such as procedures implemented for
39speed and convenience in Scheme with no primitive Unix equivalent,
7403e409 40e.g.@: @code{copy-file}.
a0e07ba4
NJ
41
42The interfaces are intended as far as possible to be portable across
43different versions of Unix. In some cases procedures which can't be
44implemented on particular systems may become no-ops, or perform limited
45actions. In other cases they may throw errors.
46
47General naming conventions are as follows:
48
49@itemize @bullet
50@item
51The Scheme name is often identical to the name of the underlying Unix
52facility.
53@item
54Underscores in Unix procedure names are converted to hyphens.
55@item
85a9b4ed 56Procedures which destructively modify Scheme data have exclamation
a0e07ba4
NJ
57marks appended, e.g., @code{recv!}.
58@item
59Predicates (returning only @code{#t} or @code{#f}) have question marks
60appended, e.g., @code{access?}.
61@item
62Some names are changed to avoid conflict with dissimilar interfaces
63defined by scsh, e.g., @code{primitive-fork}.
64@item
65Unix preprocessor names such as @code{EPERM} or @code{R_OK} are converted
66to Scheme variables of the same name (underscores are not replaced
67with hyphens).
68@end itemize
69
70Unexpected conditions are generally handled by raising exceptions.
71There are a few procedures which return a special value if they don't
72succeed, e.g., @code{getenv} returns @code{#f} if it the requested
73string is not found in the environment. These cases are noted in
74the documentation.
75
7403e409 76For ways to deal with exceptions, see @ref{Exceptions}.
a0e07ba4 77
f3dfb8ac 78@cindex @code{errno}
7403e409 79Errors which the C library would report by returning a null pointer or
a0e07ba4 80through some other means are reported by raising a @code{system-error}
5982a8e0
KR
81exception with @code{scm-error} (@pxref{Error Reporting}). The
82@var{data} parameter is a list containing the Unix @code{errno} value
83(an integer). For example,
a0e07ba4 84
5982a8e0
KR
85@example
86(define (my-handler key func fmt fmtargs data)
87 (display key) (newline)
88 (display func) (newline)
89 (apply format #t fmt fmtargs) (newline)
90 (display data) (newline))
91
92(catch 'system-error
93 (lambda () (dup2 -123 -456))
94 my-handler)
95
96@print{}
97system-error
98dup2
99Bad file descriptor
100(9)
101@end example
102
103
104@sp 1
105@defun system-error-errno arglist
f3dfb8ac 106@cindex @code{errno}
5982a8e0
KR
107Return the @code{errno} value from a list which is the arguments to an
108exception handler. If the exception is not a @code{system-error},
109then the return is @code{#f}. For example,
a0e07ba4
NJ
110
111@example
112(catch
113 'system-error
114 (lambda ()
115 (mkdir "/this-ought-to-fail-if-I'm-not-root"))
116 (lambda stuff
117 (let ((errno (system-error-errno stuff)))
118 (cond
119 ((= errno EACCES)
120 (display "You're not allowed to do that."))
121 ((= errno EEXIST)
122 (display "Already exists."))
123 (#t
124 (display (strerror errno))))
125 (newline))))
126@end example
5982a8e0
KR
127@end defun
128
a0e07ba4
NJ
129
130@node Ports and File Descriptors
3229f68b 131@subsection Ports and File Descriptors
f3dfb8ac 132@cindex file descriptor
a0e07ba4
NJ
133
134Conventions generally follow those of scsh, @ref{The Scheme shell (scsh)}.
135
136File ports are implemented using low-level operating system I/O
7403e409
NJ
137facilities, with optional buffering to improve efficiency; see
138@ref{File Ports}.
a0e07ba4
NJ
139
140Note that some procedures (e.g., @code{recv!}) will accept ports as
141arguments, but will actually operate directly on the file descriptor
142underlying the port. Any port buffering is ignored, including the
143buffer which implements @code{peek-char} and @code{unread-char}.
144
145The @code{force-output} and @code{drain-input} procedures can be used
146to clear the buffers.
147
148Each open file port has an associated operating system file descriptor.
149File descriptors are generally not useful in Scheme programs; however
150they may be needed when interfacing with foreign code and the Unix
151environment.
152
153A file descriptor can be extracted from a port and a new port can be
154created from a file descriptor. However a file descriptor is just an
85a9b4ed 155integer and the garbage collector doesn't recognize it as a reference
a0e07ba4
NJ
156to the port. If all other references to the port were dropped, then
157it's likely that the garbage collector would free the port, with the
158side-effect of closing the file descriptor prematurely.
159
160To assist the programmer in avoiding this problem, each port has an
7403e409 161associated @dfn{revealed count} which can be used to keep track of how many
a0e07ba4
NJ
162times the underlying file descriptor has been stored in other places.
163If a port's revealed count is greater than zero, the file descriptor
85a9b4ed 164will not be closed when the port is garbage collected. A programmer
a0e07ba4
NJ
165can therefore ensure that the revealed count will be greater than
166zero if the file descriptor is needed elsewhere.
167
7403e409 168For the simple case where a file descriptor is ``imported'' once to become
a0e07ba4
NJ
169a port, it does not matter if the file descriptor is closed when the
170port is garbage collected. There is no need to maintain a revealed
7403e409 171count. Likewise when ``exporting'' a file descriptor to the external
a0e07ba4
NJ
172environment, setting the revealed count is not required provided the
173port is kept open (i.e., is pointed to by a live Scheme binding) while
174the file descriptor is in use.
175
7403e409
NJ
176To correspond with traditional Unix behaviour, three file descriptors
177(0, 1, and 2) are automatically imported when a program starts up and
178assigned to the initial values of the current/standard input, output,
179and error ports, respectively. The revealed count for each is
180initially set to one, so that dropping references to one of these
181ports will not result in its garbage collection: it could be retrieved
182with @code{fdopen} or @code{fdes->ports}.
a0e07ba4 183
8f85c0c6
NJ
184@deffn {Scheme Procedure} port-revealed port
185@deffnx {C Function} scm_port_revealed (port)
a0e07ba4
NJ
186Return the revealed count for @var{port}.
187@end deffn
188
8f85c0c6
NJ
189@deffn {Scheme Procedure} set-port-revealed! port rcount
190@deffnx {C Function} scm_set_port_revealed_x (port, rcount)
7403e409 191Sets the revealed count for a @var{port} to @var{rcount}.
a0e07ba4
NJ
192The return value is unspecified.
193@end deffn
194
8f85c0c6
NJ
195@deffn {Scheme Procedure} fileno port
196@deffnx {C Function} scm_fileno (port)
a0e07ba4
NJ
197Return the integer file descriptor underlying @var{port}. Does
198not change its revealed count.
199@end deffn
200
8f85c0c6 201@deffn {Scheme Procedure} port->fdes port
a0e07ba4
NJ
202Returns the integer file descriptor underlying @var{port}. As a
203side effect the revealed count of @var{port} is incremented.
204@end deffn
205
8f85c0c6
NJ
206@deffn {Scheme Procedure} fdopen fdes modes
207@deffnx {C Function} scm_fdopen (fdes, modes)
7403e409
NJ
208Return a new port based on the file descriptor @var{fdes}. Modes are
209given by the string @var{modes}. The revealed count of the port is
210initialized to zero. The @var{modes} string is the same as that
211accepted by @code{open-file} (@pxref{File Ports, open-file}).
a0e07ba4
NJ
212@end deffn
213
8f85c0c6
NJ
214@deffn {Scheme Procedure} fdes->ports fd
215@deffnx {C Function} scm_fdes_to_ports (fd)
a0e07ba4
NJ
216Return a list of existing ports which have @var{fdes} as an
217underlying file descriptor, without changing their revealed
218counts.
219@end deffn
220
8f85c0c6 221@deffn {Scheme Procedure} fdes->inport fdes
a0e07ba4
NJ
222Returns an existing input port which has @var{fdes} as its underlying file
223descriptor, if one exists, and increments its revealed count.
224Otherwise, returns a new input port with a revealed count of 1.
225@end deffn
226
8f85c0c6 227@deffn {Scheme Procedure} fdes->outport fdes
a0e07ba4
NJ
228Returns an existing output port which has @var{fdes} as its underlying file
229descriptor, if one exists, and increments its revealed count.
230Otherwise, returns a new output port with a revealed count of 1.
231@end deffn
232
8f85c0c6
NJ
233@deffn {Scheme Procedure} primitive-move->fdes port fd
234@deffnx {C Function} scm_primitive_move_to_fdes (port, fd)
a0e07ba4
NJ
235Moves the underlying file descriptor for @var{port} to the integer
236value @var{fdes} without changing the revealed count of @var{port}.
237Any other ports already using this descriptor will be automatically
238shifted to new descriptors and their revealed counts reset to zero.
239The return value is @code{#f} if the file descriptor already had the
240required value or @code{#t} if it was moved.
241@end deffn
242
8f85c0c6 243@deffn {Scheme Procedure} move->fdes port fdes
a0e07ba4
NJ
244Moves the underlying file descriptor for @var{port} to the integer
245value @var{fdes} and sets its revealed count to one. Any other ports
246already using this descriptor will be automatically
247shifted to new descriptors and their revealed counts reset to zero.
248The return value is unspecified.
249@end deffn
250
8f85c0c6 251@deffn {Scheme Procedure} release-port-handle port
a0e07ba4
NJ
252Decrements the revealed count for a port.
253@end deffn
254
8f85c0c6
NJ
255@deffn {Scheme Procedure} fsync object
256@deffnx {C Function} scm_fsync (object)
a0e07ba4
NJ
257Copies any unwritten data for the specified output file descriptor to disk.
258If @var{port/fd} is a port, its buffer is flushed before the underlying
259file descriptor is fsync'd.
260The return value is unspecified.
261@end deffn
262
8f85c0c6
NJ
263@deffn {Scheme Procedure} open path flags [mode]
264@deffnx {C Function} scm_open (path, flags, mode)
a0e07ba4
NJ
265Open the file named by @var{path} for reading and/or writing.
266@var{flags} is an integer specifying how the file should be opened.
7403e409
NJ
267@var{mode} is an integer specifying the permission bits of the file,
268if it needs to be created, before the umask (@pxref{Processes}) is
269applied. The default is 666 (Unix itself has no default).
a0e07ba4
NJ
270
271@var{flags} can be constructed by combining variables using @code{logior}.
272Basic flags are:
273
274@defvar O_RDONLY
275Open the file read-only.
276@end defvar
277@defvar O_WRONLY
278Open the file write-only.
279@end defvar
280@defvar O_RDWR
281Open the file read/write.
282@end defvar
283@defvar O_APPEND
284Append to the file instead of truncating.
285@end defvar
286@defvar O_CREAT
287Create the file if it does not already exist.
288@end defvar
289
7403e409 290@xref{File Status Flags,,,libc,The GNU C Library Reference Manual},
a0e07ba4
NJ
291for additional flags.
292@end deffn
293
8f85c0c6
NJ
294@deffn {Scheme Procedure} open-fdes path flags [mode]
295@deffnx {C Function} scm_open_fdes (path, flags, mode)
a0e07ba4
NJ
296Similar to @code{open} but return a file descriptor instead of
297a port.
298@end deffn
299
8f85c0c6
NJ
300@deffn {Scheme Procedure} close fd_or_port
301@deffnx {C Function} scm_close (fd_or_port)
7403e409 302Similar to @code{close-port} (@pxref{Closing, close-port}),
8f85c0c6
NJ
303but also works on file descriptors. A side
304effect of closing a file descriptor is that any ports using that file
305descriptor are moved to a different file descriptor and have
306their revealed counts set to zero.
a0e07ba4
NJ
307@end deffn
308
8f85c0c6
NJ
309@deffn {Scheme Procedure} close-fdes fd
310@deffnx {C Function} scm_close_fdes (fd)
7403e409
NJ
311A simple wrapper for the @code{close} system call. Close file
312descriptor @var{fd}, which must be an integer. Unlike @code{close},
313the file descriptor will be closed even if a port is using it. The
314return value is unspecified.
a0e07ba4
NJ
315@end deffn
316
8f85c0c6 317@deffn {Scheme Procedure} unread-char char [port]
c16da59f 318@deffnx {C Function} scm_unread_char (char, port)
7403e409
NJ
319Place @var{char} in @var{port} so that it will be read by the next
320read operation on that port. If called multiple times, the unread
321characters will be read again in ``last-in, first-out'' order (i.e.@:
322a stack). If @var{port} is not supplied, the current input port is
323used.
a0e07ba4
NJ
324@end deffn
325
8f85c0c6 326@deffn {Scheme Procedure} unread-string str port
a0e07ba4
NJ
327Place the string @var{str} in @var{port} so that its characters will be
328read in subsequent read operations. If called multiple times, the
329unread characters will be read again in last-in first-out order. If
330@var{port} is not supplied, the current-input-port is used.
331@end deffn
332
8f85c0c6
NJ
333@deffn {Scheme Procedure} pipe
334@deffnx {C Function} scm_pipe ()
f3dfb8ac 335@cindex pipe
a0e07ba4 336Return a newly created pipe: a pair of ports which are linked
7403e409
NJ
337together on the local machine. The @acronym{CAR} is the input
338port and the @acronym{CDR} is the output port. Data written (and
a0e07ba4
NJ
339flushed) to the output port can be read from the input port.
340Pipes are commonly used for communication with a newly forked
341child process. The need to flush the output port can be
342avoided by making it unbuffered using @code{setvbuf}.
343
c6ba64cd
KR
344@defvar PIPE_BUF
345A write of up to @code{PIPE_BUF} many bytes to a pipe is atomic,
346meaning when done it goes into the pipe instantaneously and as a
347contiguous block (@pxref{Pipe Atomicity,, Atomicity of Pipe I/O, libc,
348The GNU C Library Reference Manual}).
349@end defvar
350
351Note that the output port is likely to block if too much data has been
352written but not yet read from the input port. Typically the capacity
353is @code{PIPE_BUF} bytes.
a0e07ba4
NJ
354@end deffn
355
356The next group of procedures perform a @code{dup2}
357system call, if @var{newfd} (an
358integer) is supplied, otherwise a @code{dup}. The file descriptor to be
359duplicated can be supplied as an integer or contained in a port. The
360type of value returned varies depending on which procedure is used.
361
362All procedures also have the side effect when performing @code{dup2} that any
363ports using @var{newfd} are moved to a different file descriptor and have
364their revealed counts set to zero.
365
8f85c0c6
NJ
366@deffn {Scheme Procedure} dup->fdes fd_or_port [fd]
367@deffnx {C Function} scm_dup_to_fdes (fd_or_port, fd)
a0e07ba4
NJ
368Return a new integer file descriptor referring to the open file
369designated by @var{fd_or_port}, which must be either an open
370file port or a file descriptor.
371@end deffn
372
8f85c0c6 373@deffn {Scheme Procedure} dup->inport port/fd [newfd]
a0e07ba4
NJ
374Returns a new input port using the new file descriptor.
375@end deffn
376
8f85c0c6 377@deffn {Scheme Procedure} dup->outport port/fd [newfd]
a0e07ba4
NJ
378Returns a new output port using the new file descriptor.
379@end deffn
380
8f85c0c6 381@deffn {Scheme Procedure} dup port/fd [newfd]
a0e07ba4
NJ
382Returns a new port if @var{port/fd} is a port, with the same mode as the
383supplied port, otherwise returns an integer file descriptor.
384@end deffn
385
8f85c0c6 386@deffn {Scheme Procedure} dup->port port/fd mode [newfd]
a0e07ba4
NJ
387Returns a new port using the new file descriptor. @var{mode} supplies a
388mode string for the port (@pxref{File Ports, open-file}).
389@end deffn
390
8f85c0c6 391@deffn {Scheme Procedure} duplicate-port port modes
a0e07ba4
NJ
392Returns a new port which is opened on a duplicate of the file
393descriptor underlying @var{port}, with mode string @var{modes}
394as for @ref{File Ports, open-file}. The two ports
395will share a file position and file status flags.
396
397Unexpected behaviour can result if both ports are subsequently used
398and the original and/or duplicate ports are buffered.
399The mode string can include @code{0} to obtain an unbuffered duplicate
400port.
401
402This procedure is equivalent to @code{(dup->port @var{port} @var{modes})}.
403@end deffn
404
8f85c0c6
NJ
405@deffn {Scheme Procedure} redirect-port old new
406@deffnx {C Function} scm_redirect_port (old, new)
a0e07ba4
NJ
407This procedure takes two ports and duplicates the underlying file
408descriptor from @var{old-port} into @var{new-port}. The
409current file descriptor in @var{new-port} will be closed.
410After the redirection the two ports will share a file position
411and file status flags.
412
413The return value is unspecified.
414
415Unexpected behaviour can result if both ports are subsequently used
416and the original and/or duplicate ports are buffered.
417
418This procedure does not have any side effects on other ports or
419revealed counts.
420@end deffn
421
8f85c0c6
NJ
422@deffn {Scheme Procedure} dup2 oldfd newfd
423@deffnx {C Function} scm_dup2 (oldfd, newfd)
a0e07ba4
NJ
424A simple wrapper for the @code{dup2} system call.
425Copies the file descriptor @var{oldfd} to descriptor
426number @var{newfd}, replacing the previous meaning
427of @var{newfd}. Both @var{oldfd} and @var{newfd} must
428be integers.
7403e409 429Unlike for @code{dup->fdes} or @code{primitive-move->fdes}, no attempt
a0e07ba4
NJ
430is made to move away ports which are using @var{newfd}.
431The return value is unspecified.
432@end deffn
433
8f85c0c6 434@deffn {Scheme Procedure} port-mode port
a0e07ba4
NJ
435Return the port modes associated with the open port @var{port}.
436These will not necessarily be identical to the modes used when
7403e409 437the port was opened, since modes such as ``append'' which are
a0e07ba4
NJ
438used only during port creation are not retained.
439@end deffn
440
8f85c0c6 441@deffn {Scheme Procedure} port-for-each proc
c2e15516
MV
442@deffnx {C Function} scm_port_for_each (SCM proc)
443@deffnx {C Function} scm_c_port_for_each (void (*proc)(void *, SCM), void *data)
a0e07ba4 444Apply @var{proc} to each port in the Guile port table
7403e409 445(FIXME: what is the Guile port table?)
a0e07ba4 446in turn. The return value is unspecified. More specifically,
7403e409
NJ
447@var{proc} is applied exactly once to every port that exists in the
448system at the time @code{port-for-each} is invoked. Changes to the
449port table while @code{port-for-each} is running have no effect as far
450as @code{port-for-each} is concerned.
c2e15516
MV
451
452The C function @code{scm_port_for_each} takes a Scheme procedure
453encoded as a @code{SCM} value, while @code{scm_c_port_for_each} takes
454a pointer to a C function and passes along a arbitrary @var{data}
455cookie.
a0e07ba4
NJ
456@end deffn
457
8f85c0c6
NJ
458@deffn {Scheme Procedure} setvbuf port mode [size]
459@deffnx {C Function} scm_setvbuf (port, mode, size)
f3dfb8ac 460@cindex port buffering
a0e07ba4 461Set the buffering mode for @var{port}. @var{mode} can be:
2ce02471
NJ
462
463@defvar _IONBF
a0e07ba4 464non-buffered
2ce02471
NJ
465@end defvar
466@defvar _IOLBF
a0e07ba4 467line buffered
2ce02471
NJ
468@end defvar
469@defvar _IOFBF
a0e07ba4
NJ
470block buffered, using a newly allocated buffer of @var{size} bytes.
471If @var{size} is omitted, a default size will be used.
2ce02471 472@end defvar
a0e07ba4
NJ
473@end deffn
474
8f85c0c6
NJ
475@deffn {Scheme Procedure} fcntl object cmd [value]
476@deffnx {C Function} scm_fcntl (object, cmd, value)
a0e07ba4
NJ
477Apply @var{command} to the specified file descriptor or the underlying
478file descriptor of the specified port. @var{value} is an optional
479integer argument.
480
481Values for @var{command} are:
482
2ce02471 483@defvar F_DUPFD
a0e07ba4 484Duplicate a file descriptor
2ce02471
NJ
485@end defvar
486@defvar F_GETFD
a0e07ba4 487Get flags associated with the file descriptor.
2ce02471
NJ
488@end defvar
489@defvar F_SETFD
a0e07ba4 490Set flags associated with the file descriptor to @var{value}.
2ce02471
NJ
491@end defvar
492@defvar F_GETFL
a0e07ba4 493Get flags associated with the open file.
2ce02471
NJ
494@end defvar
495@defvar F_SETFL
a0e07ba4 496Set flags associated with the open file to @var{value}
2ce02471
NJ
497@end defvar
498@defvar F_GETOWN
a0e07ba4 499Get the process ID of a socket's owner, for @code{SIGIO} signals.
2ce02471
NJ
500@end defvar
501@defvar F_SETOWN
a0e07ba4 502Set the process that owns a socket to @var{value}, for @code{SIGIO} signals.
2ce02471
NJ
503@end defvar
504@defvar FD_CLOEXEC
7403e409 505The value used to indicate the ``close on exec'' flag with @code{F_GETFL} or
a0e07ba4 506@code{F_SETFL}.
2ce02471 507@end defvar
a0e07ba4
NJ
508@end deffn
509
8f85c0c6
NJ
510@deffn {Scheme Procedure} flock file operation
511@deffnx {C Function} scm_flock (file, operation)
f3dfb8ac 512@cindex file locking
a0e07ba4
NJ
513Apply or remove an advisory lock on an open file.
514@var{operation} specifies the action to be done:
2ce02471
NJ
515
516@defvar LOCK_SH
a0e07ba4
NJ
517Shared lock. More than one process may hold a shared lock
518for a given file at a given time.
2ce02471
NJ
519@end defvar
520@defvar LOCK_EX
a0e07ba4
NJ
521Exclusive lock. Only one process may hold an exclusive lock
522for a given file at a given time.
2ce02471
NJ
523@end defvar
524@defvar LOCK_UN
a0e07ba4 525Unlock the file.
2ce02471
NJ
526@end defvar
527@defvar LOCK_NB
67bcd110
KR
528Don't block when locking. This is combined with one of the other
529operations using @code{logior} (@pxref{Bitwise Operations}). If
530@code{flock} would block an @code{EWOULDBLOCK} error is thrown
531(@pxref{Conventions}).
2ce02471
NJ
532@end defvar
533
a0e07ba4 534The return value is not specified. @var{file} may be an open
85a9b4ed 535file descriptor or an open file descriptor port.
67bcd110
KR
536
537Note that @code{flock} does not lock files across NFS.
a0e07ba4
NJ
538@end deffn
539
8f85c0c6
NJ
540@deffn {Scheme Procedure} select reads writes excepts [secs [usecs]]
541@deffnx {C Function} scm_select (reads, writes, excepts, secs, usecs)
a0e07ba4 542This procedure has a variety of uses: waiting for the ability
85a9b4ed 543to provide input, accept output, or the existence of
a0e07ba4
NJ
544exceptional conditions on a collection of ports or file
545descriptors, or waiting for a timeout to occur.
546It also returns if interrupted by a signal.
547
548@var{reads}, @var{writes} and @var{excepts} can be lists or
549vectors, with each member a port or a file descriptor.
550The value returned is a list of three corresponding
551lists or vectors containing only the members which meet the
552specified requirement. The ability of port buffers to
553provide input or accept output is taken into account.
554Ordering of the input lists or vectors is not preserved.
555
556The optional arguments @var{secs} and @var{usecs} specify the
557timeout. Either @var{secs} can be specified alone, as
558either an integer or a real number, or both @var{secs} and
559@var{usecs} can be specified as integers, in which case
560@var{usecs} is an additional timeout expressed in
561microseconds. If @var{secs} is omitted or is @code{#f} then
562select will wait for as long as it takes for one of the other
563conditions to be satisfied.
564
565The scsh version of @code{select} differs as follows:
566Only vectors are accepted for the first three arguments.
567The @var{usecs} argument is not supported.
568Multiple values are returned instead of a list.
569Duplicates in the input vectors appear only once in output.
570An additional @code{select!} interface is provided.
571@end deffn
572
573@node File System
3229f68b 574@subsection File System
f3dfb8ac 575@cindex file system
a0e07ba4
NJ
576
577These procedures allow querying and setting file system attributes
578(such as owner,
579permissions, sizes and types of files); deleting, copying, renaming and
580linking files; creating and removing directories and querying their
581contents; syncing the file system and creating special files.
582
8f85c0c6
NJ
583@deffn {Scheme Procedure} access? path how
584@deffnx {C Function} scm_access (path, how)
ad1c1f18
KR
585Test accessibility of a file under the real UID and GID of the calling
586process. The return is @code{#t} if @var{path} exists and the
587permissions requested by @var{how} are all allowed, or @code{#f} if
588not.
a0e07ba4 589
ad1c1f18
KR
590@var{how} is an integer which is one of the following values, or a
591bitwise-OR (@code{logior}) of multiple values.
a0e07ba4
NJ
592
593@defvar R_OK
ad1c1f18 594Test for read permission.
a0e07ba4
NJ
595@end defvar
596@defvar W_OK
ad1c1f18 597Test for write permission.
a0e07ba4
NJ
598@end defvar
599@defvar X_OK
ad1c1f18 600Test for execute permission.
a0e07ba4
NJ
601@end defvar
602@defvar F_OK
ad1c1f18
KR
603Test for existence of the file. This is implied by each of the other
604tests, so there's no need to combine it with them.
a0e07ba4 605@end defvar
ad1c1f18
KR
606
607It's important to note that @code{access?} does not simply indicate
608what will happen on attempting to read or write a file. In normal
609circumstances it does, but in a set-UID or set-GID program it doesn't
610because @code{access?} tests the real ID, whereas an open or execute
611attempt uses the effective ID.
612
613A program which will never run set-UID/GID can ignore the difference
614between real and effective IDs, but for maximum generality, especially
1cd9ea69
KR
615in library functions, it's best not to use @code{access?} to predict
616the result of an open or execute, instead simply attempt that and
617catch any exception.
ad1c1f18
KR
618
619The main use for @code{access?} is to let a set-UID/GID program
620determine what the invoking user would have been allowed to do,
621without the greater (or perhaps lesser) privileges afforded by the
622effective ID. For more on this, see @ref{Testing File Access,,, libc,
623The GNU C Library Reference Manual}.
a0e07ba4
NJ
624@end deffn
625
626@findex fstat
8f85c0c6
NJ
627@deffn {Scheme Procedure} stat object
628@deffnx {C Function} scm_stat (object)
a0e07ba4
NJ
629Return an object containing various information about the file
630determined by @var{obj}. @var{obj} can be a string containing
631a file name or a port or integer file descriptor which is open
632on a file (in which case @code{fstat} is used as the underlying
633system call).
634
635The object returned by @code{stat} can be passed as a single
636parameter to the following procedures, all of which return
637integers:
638
2ce02471 639@deffn {Scheme Procedure} stat:dev st
5c3917e7 640The device number containing the file.
2ce02471
NJ
641@end deffn
642@deffn {Scheme Procedure} stat:ino st
a0e07ba4
NJ
643The file serial number, which distinguishes this file from all
644other files on the same device.
2ce02471
NJ
645@end deffn
646@deffn {Scheme Procedure} stat:mode st
5c3917e7
KR
647The mode of the file. This is an integer which incorporates file type
648information and file permission bits. See also @code{stat:type} and
a0e07ba4 649@code{stat:perms} below.
2ce02471
NJ
650@end deffn
651@deffn {Scheme Procedure} stat:nlink st
a0e07ba4 652The number of hard links to the file.
2ce02471
NJ
653@end deffn
654@deffn {Scheme Procedure} stat:uid st
a0e07ba4 655The user ID of the file's owner.
2ce02471
NJ
656@end deffn
657@deffn {Scheme Procedure} stat:gid st
a0e07ba4 658The group ID of the file.
2ce02471
NJ
659@end deffn
660@deffn {Scheme Procedure} stat:rdev st
f5f7888d
KR
661Device ID; this entry is defined only for character or block special
662files. On some systems this field is not available at all, in which
663case @code{stat:rdev} returns @code{#f}.
2ce02471
NJ
664@end deffn
665@deffn {Scheme Procedure} stat:size st
a0e07ba4 666The size of a regular file in bytes.
2ce02471
NJ
667@end deffn
668@deffn {Scheme Procedure} stat:atime st
a0e07ba4 669The last access time for the file.
2ce02471
NJ
670@end deffn
671@deffn {Scheme Procedure} stat:mtime st
a0e07ba4 672The last modification time for the file.
2ce02471
NJ
673@end deffn
674@deffn {Scheme Procedure} stat:ctime st
a0e07ba4 675The last modification time for the attributes of the file.
2ce02471
NJ
676@end deffn
677@deffn {Scheme Procedure} stat:blksize st
f5f7888d
KR
678The optimal block size for reading or writing the file, in bytes. On
679some systems this field is not available, in which case
680@code{stat:blksize} returns a sensible suggested block size.
2ce02471
NJ
681@end deffn
682@deffn {Scheme Procedure} stat:blocks st
f5f7888d
KR
683The amount of disk space that the file occupies measured in units of
684512 byte blocks. On some systems this field is not available, in
685which case @code{stat:blocks} returns @code{#f}.
2ce02471 686@end deffn
a0e07ba4
NJ
687
688In addition, the following procedures return the information
5c3917e7 689from @code{stat:mode} in a more convenient form:
a0e07ba4 690
2ce02471 691@deffn {Scheme Procedure} stat:type st
a0e07ba4 692A symbol representing the type of file. Possible values are
7403e409
NJ
693@samp{regular}, @samp{directory}, @samp{symlink},
694@samp{block-special}, @samp{char-special}, @samp{fifo}, @samp{socket},
695and @samp{unknown}.
2ce02471
NJ
696@end deffn
697@deffn {Scheme Procedure} stat:perms st
a0e07ba4 698An integer representing the access permission bits.
2ce02471 699@end deffn
a0e07ba4
NJ
700@end deffn
701
8f85c0c6
NJ
702@deffn {Scheme Procedure} lstat str
703@deffnx {C Function} scm_lstat (str)
a0e07ba4
NJ
704Similar to @code{stat}, but does not follow symbolic links, i.e.,
705it will return information about a symbolic link itself, not the
706file it points to. @var{path} must be a string.
707@end deffn
708
8f85c0c6
NJ
709@deffn {Scheme Procedure} readlink path
710@deffnx {C Function} scm_readlink (path)
a0e07ba4
NJ
711Return the value of the symbolic link named by @var{path} (a
712string), i.e., the file that the link points to.
713@end deffn
714
715@findex fchown
716@findex lchown
8f85c0c6
NJ
717@deffn {Scheme Procedure} chown object owner group
718@deffnx {C Function} scm_chown (object, owner, group)
7403e409
NJ
719Change the ownership and group of the file referred to by @var{object}
720to the integer values @var{owner} and @var{group}. @var{object} can
721be a string containing a file name or, if the platform supports
722@code{fchown} (@pxref{File Owner,,,libc,The GNU C Library Reference
723Manual}), a port or integer file descriptor which is open on the file.
724The return value is unspecified.
a0e07ba4
NJ
725
726If @var{object} is a symbolic link, either the
727ownership of the link or the ownership of the referenced file will be
728changed depending on the operating system (lchown is
729unsupported at present). If @var{owner} or @var{group} is specified
730as @code{-1}, then that ID is not changed.
731@end deffn
732
733@findex fchmod
8f85c0c6
NJ
734@deffn {Scheme Procedure} chmod object mode
735@deffnx {C Function} scm_chmod (object, mode)
a0e07ba4
NJ
736Changes the permissions of the file referred to by @var{obj}.
737@var{obj} can be a string containing a file name or a port or integer file
738descriptor which is open on a file (in which case @code{fchmod} is used
739as the underlying system call).
740@var{mode} specifies
741the new permissions as a decimal number, e.g., @code{(chmod "foo" #o755)}.
742The return value is unspecified.
743@end deffn
744
8f85c0c6
NJ
745@deffn {Scheme Procedure} utime pathname [actime [modtime]]
746@deffnx {C Function} scm_utime (pathname, actime, modtime)
f3dfb8ac 747@cindex file times
a0e07ba4
NJ
748@code{utime} sets the access and modification times for the
749file named by @var{path}. If @var{actime} or @var{modtime} is
750not supplied, then the current time is used. @var{actime} and
751@var{modtime} must be integer time values as returned by the
752@code{current-time} procedure.
753@lisp
754(utime "foo" (- (current-time) 3600))
755@end lisp
756will set the access time to one hour in the past and the
757modification time to the current time.
758@end deffn
759
760@findex unlink
8f85c0c6
NJ
761@deffn {Scheme Procedure} delete-file str
762@deffnx {C Function} scm_delete_file (str)
7403e409
NJ
763Deletes (or ``unlinks'') the file whose path is specified by
764@var{str}.
a0e07ba4
NJ
765@end deffn
766
8f85c0c6
NJ
767@deffn {Scheme Procedure} copy-file oldfile newfile
768@deffnx {C Function} scm_copy_file (oldfile, newfile)
7403e409 769Copy the file specified by @var{oldfile} to @var{newfile}.
a0e07ba4
NJ
770The return value is unspecified.
771@end deffn
772
773@findex rename
8f85c0c6
NJ
774@deffn {Scheme Procedure} rename-file oldname newname
775@deffnx {C Function} scm_rename (oldname, newname)
a0e07ba4
NJ
776Renames the file specified by @var{oldname} to @var{newname}.
777The return value is unspecified.
778@end deffn
779
8f85c0c6
NJ
780@deffn {Scheme Procedure} link oldpath newpath
781@deffnx {C Function} scm_link (oldpath, newpath)
a0e07ba4
NJ
782Creates a new name @var{newpath} in the file system for the
783file named by @var{oldpath}. If @var{oldpath} is a symbolic
784link, the link may or may not be followed depending on the
785system.
786@end deffn
787
8f85c0c6
NJ
788@deffn {Scheme Procedure} symlink oldpath newpath
789@deffnx {C Function} scm_symlink (oldpath, newpath)
7403e409
NJ
790Create a symbolic link named @var{newpath} with the value (i.e., pointing to)
791@var{oldpath}. The return value is unspecified.
a0e07ba4
NJ
792@end deffn
793
8f85c0c6
NJ
794@deffn {Scheme Procedure} mkdir path [mode]
795@deffnx {C Function} scm_mkdir (path, mode)
a0e07ba4
NJ
796Create a new directory named by @var{path}. If @var{mode} is omitted
797then the permissions of the directory file are set using the current
7403e409
NJ
798umask (@pxref{Processes}). Otherwise they are set to the decimal
799value specified with @var{mode}. The return value is unspecified.
a0e07ba4
NJ
800@end deffn
801
8f85c0c6
NJ
802@deffn {Scheme Procedure} rmdir path
803@deffnx {C Function} scm_rmdir (path)
a0e07ba4
NJ
804Remove the existing directory named by @var{path}. The directory must
805be empty for this to succeed. The return value is unspecified.
806@end deffn
807
8f85c0c6
NJ
808@deffn {Scheme Procedure} opendir dirname
809@deffnx {C Function} scm_opendir (dirname)
f3dfb8ac 810@cindex directory contents
7403e409 811Open the directory specified by @var{dirname} and return a directory
a0e07ba4
NJ
812stream.
813@end deffn
814
7403e409
NJ
815@deffn {Scheme Procedure} directory-stream? object
816@deffnx {C Function} scm_directory_stream_p (object)
a0e07ba4
NJ
817Return a boolean indicating whether @var{object} is a directory
818stream as returned by @code{opendir}.
819@end deffn
820
7403e409
NJ
821@deffn {Scheme Procedure} readdir stream
822@deffnx {C Function} scm_readdir (stream)
a0e07ba4
NJ
823Return (as a string) the next directory entry from the directory stream
824@var{stream}. If there is no remaining entry to be read then the
825end of file object is returned.
826@end deffn
827
7403e409
NJ
828@deffn {Scheme Procedure} rewinddir stream
829@deffnx {C Function} scm_rewinddir (stream)
a0e07ba4
NJ
830Reset the directory port @var{stream} so that the next call to
831@code{readdir} will return the first directory entry.
832@end deffn
833
7403e409
NJ
834@deffn {Scheme Procedure} closedir stream
835@deffnx {C Function} scm_closedir (stream)
a0e07ba4
NJ
836Close the directory stream @var{stream}.
837The return value is unspecified.
838@end deffn
839
bcf009c3
NJ
840Here is an example showing how to display all the entries in a
841directory:
842
843@lisp
844(define dir (opendir "/usr/lib"))
845(do ((entry (readdir dir) (readdir dir)))
846 ((eof-object? entry))
847 (display entry)(newline))
848(closedir dir)
849@end lisp
850
8f85c0c6
NJ
851@deffn {Scheme Procedure} sync
852@deffnx {C Function} scm_sync ()
a0e07ba4
NJ
853Flush the operating system disk buffers.
854The return value is unspecified.
855@end deffn
856
8f85c0c6
NJ
857@deffn {Scheme Procedure} mknod path type perms dev
858@deffnx {C Function} scm_mknod (path, type, perms, dev)
f3dfb8ac 859@cindex device file
a0e07ba4 860Creates a new special file, such as a file corresponding to a device.
7403e409
NJ
861@var{path} specifies the name of the file. @var{type} should be one
862of the following symbols: @samp{regular}, @samp{directory},
863@samp{symlink}, @samp{block-special}, @samp{char-special},
864@samp{fifo}, or @samp{socket}. @var{perms} (an integer) specifies the
865file permissions. @var{dev} (an integer) specifies which device the
866special file refers to. Its exact interpretation depends on the kind
867of special file being created.
a0e07ba4
NJ
868
869E.g.,
870@lisp
871(mknod "/dev/fd0" 'block-special #o660 (+ (* 2 256) 2))
872@end lisp
873
874The return value is unspecified.
875@end deffn
876
8f85c0c6
NJ
877@deffn {Scheme Procedure} tmpnam
878@deffnx {C Function} scm_tmpnam ()
f3dfb8ac 879@cindex temporary file
0b0715f1
KR
880Return an auto-generated name of a temporary file, a file which
881doesn't already exist. The name includes a path, it's usually in
882@file{/tmp} but that's system dependent.
883
884Care must be taken when using @code{tmpnam}. In between choosing the
885name and creating the file another program might use that name, or an
886attacker might even make it a symlink pointing at something important
887and causing you to overwrite that.
888
889The safe way is to create the file using @code{open} with
890@code{O_EXCL} to avoid any overwriting. A loop can try again with
891another name if the file exists (error @code{EEXIST}).
892@code{mkstemp!} below does that.
a0e07ba4
NJ
893@end deffn
894
8f85c0c6
NJ
895@deffn {Scheme Procedure} mkstemp! tmpl
896@deffnx {C Function} scm_mkstemp (tmpl)
f3dfb8ac 897@cindex temporary file
0b0715f1
KR
898Create a new unique file in the file system and return a new buffered
899port open for reading and writing to the file.
24ec486c 900
0b0715f1
KR
901@var{tmpl} is a string specifying where the file should be created: it
902must end with @samp{XXXXXX} and those @samp{X}s will be changed in the
903string to return the name of the file. (@code{port-filename} on the
904port also gives the name.)
24ec486c 905
0b0715f1
KR
906POSIX doesn't specify the permissions mode of the file, on GNU and
907most systems it's @code{#o600}. An application can use @code{chmod}
908to relax that if desired. For example @code{#o666} less @code{umask},
909which is usual for ordinary file creation,
61fdb557
KR
910
911@example
0b0715f1 912(let ((port (mkstemp! (string-copy "/tmp/myfile-XXXXXX"))))
61fdb557
KR
913 (chmod port (logand #o666 (lognot (umask))))
914 ...)
915@end example
a0e07ba4
NJ
916@end deffn
917
8f85c0c6
NJ
918@deffn {Scheme Procedure} dirname filename
919@deffnx {C Function} scm_dirname (filename)
a0e07ba4
NJ
920Return the directory name component of the file name
921@var{filename}. If @var{filename} does not contain a directory
922component, @code{.} is returned.
923@end deffn
924
8f85c0c6
NJ
925@deffn {Scheme Procedure} basename filename [suffix]
926@deffnx {C Function} scm_basename (filename, suffix)
a0e07ba4
NJ
927Return the base name of the file name @var{filename}. The
928base name is the file name without any directory components.
85a9b4ed 929If @var{suffix} is provided, and is equal to the end of
a0e07ba4 930@var{basename}, it is removed also.
bcf009c3
NJ
931
932@lisp
933(basename "/tmp/test.xml" ".xml")
934@result{} "test"
935@end lisp
a0e07ba4
NJ
936@end deffn
937
938
939@node User Information
3229f68b 940@subsection User Information
f3dfb8ac
KR
941@cindex user information
942@cindex password file
943@cindex group file
a0e07ba4
NJ
944
945The facilities in this section provide an interface to the user and
946group database.
947They should be used with care since they are not reentrant.
948
949The following functions accept an object representing user information
950and return a selected component:
951
2ce02471 952@deffn {Scheme Procedure} passwd:name pw
a0e07ba4 953The name of the userid.
2ce02471
NJ
954@end deffn
955@deffn {Scheme Procedure} passwd:passwd pw
a0e07ba4 956The encrypted passwd.
2ce02471
NJ
957@end deffn
958@deffn {Scheme Procedure} passwd:uid pw
a0e07ba4 959The user id number.
2ce02471
NJ
960@end deffn
961@deffn {Scheme Procedure} passwd:gid pw
a0e07ba4 962The group id number.
2ce02471
NJ
963@end deffn
964@deffn {Scheme Procedure} passwd:gecos pw
a0e07ba4 965The full name.
2ce02471
NJ
966@end deffn
967@deffn {Scheme Procedure} passwd:dir pw
a0e07ba4 968The home directory.
2ce02471
NJ
969@end deffn
970@deffn {Scheme Procedure} passwd:shell pw
a0e07ba4 971The login shell.
2ce02471
NJ
972@end deffn
973@sp 1
a0e07ba4 974
8f85c0c6 975@deffn {Scheme Procedure} getpwuid uid
a0e07ba4
NJ
976Look up an integer userid in the user database.
977@end deffn
978
8f85c0c6 979@deffn {Scheme Procedure} getpwnam name
a0e07ba4
NJ
980Look up a user name string in the user database.
981@end deffn
982
8f85c0c6 983@deffn {Scheme Procedure} setpwent
a0e07ba4
NJ
984Initializes a stream used by @code{getpwent} to read from the user database.
985The next use of @code{getpwent} will return the first entry. The
986return value is unspecified.
987@end deffn
988
8f85c0c6 989@deffn {Scheme Procedure} getpwent
a0e07ba4
NJ
990Return the next entry in the user database, using the stream set by
991@code{setpwent}.
992@end deffn
993
8f85c0c6 994@deffn {Scheme Procedure} endpwent
a0e07ba4
NJ
995Closes the stream used by @code{getpwent}. The return value is unspecified.
996@end deffn
997
8f85c0c6
NJ
998@deffn {Scheme Procedure} setpw [arg]
999@deffnx {C Function} scm_setpwent (arg)
a0e07ba4
NJ
1000If called with a true argument, initialize or reset the password data
1001stream. Otherwise, close the stream. The @code{setpwent} and
1002@code{endpwent} procedures are implemented on top of this.
1003@end deffn
1004
8f85c0c6
NJ
1005@deffn {Scheme Procedure} getpw [user]
1006@deffnx {C Function} scm_getpwuid (user)
a0e07ba4
NJ
1007Look up an entry in the user database. @var{obj} can be an integer,
1008a string, or omitted, giving the behaviour of getpwuid, getpwnam
1009or getpwent respectively.
1010@end deffn
1011
1012The following functions accept an object representing group information
1013and return a selected component:
1014
2ce02471 1015@deffn {Scheme Procedure} group:name gr
a0e07ba4 1016The group name.
2ce02471
NJ
1017@end deffn
1018@deffn {Scheme Procedure} group:passwd gr
a0e07ba4 1019The encrypted group password.
2ce02471
NJ
1020@end deffn
1021@deffn {Scheme Procedure} group:gid gr
a0e07ba4 1022The group id number.
2ce02471
NJ
1023@end deffn
1024@deffn {Scheme Procedure} group:mem gr
85a9b4ed 1025A list of userids which have this group as a supplementary group.
2ce02471
NJ
1026@end deffn
1027@sp 1
a0e07ba4 1028
8f85c0c6 1029@deffn {Scheme Procedure} getgrgid gid
85a9b4ed 1030Look up an integer group id in the group database.
a0e07ba4
NJ
1031@end deffn
1032
8f85c0c6 1033@deffn {Scheme Procedure} getgrnam name
a0e07ba4
NJ
1034Look up a group name in the group database.
1035@end deffn
1036
8f85c0c6 1037@deffn {Scheme Procedure} setgrent
a0e07ba4
NJ
1038Initializes a stream used by @code{getgrent} to read from the group database.
1039The next use of @code{getgrent} will return the first entry.
1040The return value is unspecified.
1041@end deffn
1042
8f85c0c6 1043@deffn {Scheme Procedure} getgrent
a0e07ba4
NJ
1044Return the next entry in the group database, using the stream set by
1045@code{setgrent}.
1046@end deffn
1047
8f85c0c6 1048@deffn {Scheme Procedure} endgrent
a0e07ba4
NJ
1049Closes the stream used by @code{getgrent}.
1050The return value is unspecified.
1051@end deffn
1052
8f85c0c6
NJ
1053@deffn {Scheme Procedure} setgr [arg]
1054@deffnx {C Function} scm_setgrent (arg)
a0e07ba4
NJ
1055If called with a true argument, initialize or reset the group data
1056stream. Otherwise, close the stream. The @code{setgrent} and
1057@code{endgrent} procedures are implemented on top of this.
1058@end deffn
1059
8f85c0c6
NJ
1060@deffn {Scheme Procedure} getgr [name]
1061@deffnx {C Function} scm_getgrgid (name)
a0e07ba4
NJ
1062Look up an entry in the group database. @var{obj} can be an integer,
1063a string, or omitted, giving the behaviour of getgrgid, getgrnam
1064or getgrent respectively.
1065@end deffn
1066
1067In addition to the accessor procedures for the user database, the
1068following shortcut procedures are also available.
1069
8f85c0c6
NJ
1070@deffn {Scheme Procedure} cuserid
1071@deffnx {C Function} scm_cuserid ()
a0e07ba4
NJ
1072Return a string containing a user name associated with the
1073effective user id of the process. Return @code{#f} if this
1074information cannot be obtained.
2afd305b
KR
1075
1076This function has been removed from the latest POSIX specification,
1077Guile provides it only if the system has it. Using @code{(getpwuid
1078(geteuid))} may be a better idea.
a0e07ba4
NJ
1079@end deffn
1080
8f85c0c6
NJ
1081@deffn {Scheme Procedure} getlogin
1082@deffnx {C Function} scm_getlogin ()
a0e07ba4
NJ
1083Return a string containing the name of the user logged in on
1084the controlling terminal of the process, or @code{#f} if this
1085information cannot be obtained.
1086@end deffn
1087
1088
1089@node Time
3229f68b 1090@subsection Time
f3dfb8ac 1091@cindex time
a0e07ba4 1092
8f85c0c6
NJ
1093@deffn {Scheme Procedure} current-time
1094@deffnx {C Function} scm_current_time ()
7403e409 1095Return the number of seconds since 1970-01-01 00:00:00 @acronym{UTC},
a0e07ba4
NJ
1096excluding leap seconds.
1097@end deffn
1098
8f85c0c6
NJ
1099@deffn {Scheme Procedure} gettimeofday
1100@deffnx {C Function} scm_gettimeofday ()
a0e07ba4 1101Return a pair containing the number of seconds and microseconds
7403e409 1102since 1970-01-01 00:00:00 @acronym{UTC}, excluding leap seconds. Note:
a0e07ba4
NJ
1103whether true microsecond resolution is available depends on the
1104operating system.
1105@end deffn
1106
1107The following procedures either accept an object representing a broken down
1108time and return a selected component, or accept an object representing
1109a broken down time and a value and set the component to the value.
1110The numbers in parentheses give the usual range.
1111
2ce02471
NJ
1112@deffn {Scheme Procedure} tm:sec tm
1113@deffnx {Scheme Procedure} set-tm:sec tm val
a0e07ba4 1114Seconds (0-59).
2ce02471
NJ
1115@end deffn
1116@deffn {Scheme Procedure} tm:min tm
1117@deffnx {Scheme Procedure} set-tm:min tm val
a0e07ba4 1118Minutes (0-59).
2ce02471
NJ
1119@end deffn
1120@deffn {Scheme Procedure} tm:hour tm
1121@deffnx {Scheme Procedure} set-tm:hour tm val
a0e07ba4 1122Hours (0-23).
2ce02471
NJ
1123@end deffn
1124@deffn {Scheme Procedure} tm:mday tm
1125@deffnx {Scheme Procedure} set-tm:mday tm val
a0e07ba4 1126Day of the month (1-31).
2ce02471
NJ
1127@end deffn
1128@deffn {Scheme Procedure} tm:mon tm
1129@deffnx {Scheme Procedure} set-tm:mon tm val
a0e07ba4 1130Month (0-11).
2ce02471
NJ
1131@end deffn
1132@deffn {Scheme Procedure} tm:year tm
1133@deffnx {Scheme Procedure} set-tm:year tm val
a0e07ba4 1134Year (70-), the year minus 1900.
2ce02471
NJ
1135@end deffn
1136@deffn {Scheme Procedure} tm:wday tm
1137@deffnx {Scheme Procedure} set-tm:wday tm val
a0e07ba4 1138Day of the week (0-6) with Sunday represented as 0.
2ce02471
NJ
1139@end deffn
1140@deffn {Scheme Procedure} tm:yday tm
1141@deffnx {Scheme Procedure} set-tm:yday tm val
a0e07ba4 1142Day of the year (0-364, 365 in leap years).
2ce02471
NJ
1143@end deffn
1144@deffn {Scheme Procedure} tm:isdst tm
1145@deffnx {Scheme Procedure} set-tm:isdst tm val
7403e409
NJ
1146Daylight saving indicator (0 for ``no'', greater than 0 for ``yes'', less than
11470 for ``unknown'').
2ce02471
NJ
1148@end deffn
1149@deffn {Scheme Procedure} tm:gmtoff tm
1150@deffnx {Scheme Procedure} set-tm:gmtoff tm val
7403e409 1151Time zone offset in seconds west of @acronym{UTC} (-46800 to 43200).
2ce02471
NJ
1152@end deffn
1153@deffn {Scheme Procedure} tm:zone tm
1154@deffnx {Scheme Procedure} set-tm:zone tm val
a0e07ba4 1155Time zone label (a string), not necessarily unique.
2ce02471
NJ
1156@end deffn
1157@sp 1
a0e07ba4 1158
8f85c0c6
NJ
1159@deffn {Scheme Procedure} localtime time [zone]
1160@deffnx {C Function} scm_localtime (time, zone)
f3dfb8ac 1161@cindex local time
a0e07ba4
NJ
1162Return an object representing the broken down components of
1163@var{time}, an integer like the one returned by
1164@code{current-time}. The time zone for the calculation is
1165optionally specified by @var{zone} (a string), otherwise the
7403e409 1166@env{TZ} environment variable or the system default is used.
a0e07ba4
NJ
1167@end deffn
1168
8f85c0c6
NJ
1169@deffn {Scheme Procedure} gmtime time
1170@deffnx {C Function} scm_gmtime (time)
a0e07ba4
NJ
1171Return an object representing the broken down components of
1172@var{time}, an integer like the one returned by
7403e409 1173@code{current-time}. The values are calculated for @acronym{UTC}.
a0e07ba4
NJ
1174@end deffn
1175
82512be0 1176@deffn {Scheme Procedure} mktime sbd-time [zone]
8f85c0c6 1177@deffnx {C Function} scm_mktime (sbd_time, zone)
b0fb2306
KR
1178For a broken down time object @var{sbd-time}, return a pair the
1179@code{car} of which is an integer time like @code{current-time}, and
1180the @code{cdr} of which is a new broken down time with normalized
1181fields.
1182
1183@var{zone} is a timezone string, or the default is the @env{TZ}
1184environment variable or the system default (@pxref{TZ Variable,,
1185Specifying the Time Zone with @env{TZ}, libc, GNU C Library Reference
1186Manual}). @var{sbd-time} is taken to be in that @var{zone}.
1187
1188The following fields of @var{sbd-time} are used: @code{tm:year},
1189@code{tm:mon}, @code{tm:mday}, @code{tm:hour}, @code{tm:min},
1190@code{tm:sec}, @code{tm:isdst}. The values can be outside their usual
1191ranges. For example @code{tm:hour} normally goes up to 23, but a
1192value say 33 would mean 9 the following day.
1193
1194@code{tm:isdst} in @var{sbd-time} says whether the time given is with
1195daylight savings or not. This is ignored if @var{zone} doesn't have
1196any daylight savings adjustment amount.
1197
1198The broken down time in the return normalizes the values of
1199@var{sbd-time} by bringing them into their usual ranges, and using the
1200actual daylight savings rule for that time in @var{zone} (which may
1201differ from what @var{sbd-time} had). The easiest way to think of
1202this is that @var{sbd-time} plus @var{zone} converts to the integer
1203UTC time, then a @code{localtime} is applied to get the normal
1204presentation of that time, in @var{zone}.
a0e07ba4
NJ
1205@end deffn
1206
8f85c0c6
NJ
1207@deffn {Scheme Procedure} tzset
1208@deffnx {C Function} scm_tzset ()
7403e409 1209Initialize the timezone from the @env{TZ} environment variable
a0e07ba4
NJ
1210or the system default. It's not usually necessary to call this procedure
1211since it's done automatically by other procedures that depend on the
1212timezone.
1213@end deffn
1214
4b08cab6
KR
1215@deffn {Scheme Procedure} strftime format tm
1216@deffnx {C Function} scm_strftime (format, tm)
f3dfb8ac 1217@cindex time formatting
4b08cab6
KR
1218Return a string which is broken-down time structure @var{tm} formatted
1219according to the given @var{format} string.
1220
1221@var{format} contains field specifications introduced by a @samp{%}
1222character. See @ref{Formatting Calendar Time,,, libc, The GNU C
1223Library Reference Manual}, or @samp{man 3 strftime}, for the available
1224formatting.
bcf009c3
NJ
1225
1226@lisp
1227(strftime "%c" (localtime (current-time)))
1228@result{} "Mon Mar 11 20:17:43 2002"
1229@end lisp
4b08cab6
KR
1230
1231If @code{setlocale} has been called (@pxref{Locales}), month and day
1232names are from the current locale and in the locale character set.
a0e07ba4
NJ
1233@end deffn
1234
8f85c0c6
NJ
1235@deffn {Scheme Procedure} strptime format string
1236@deffnx {C Function} scm_strptime (format, string)
f3dfb8ac 1237@cindex time parsing
a0e07ba4
NJ
1238Performs the reverse action to @code{strftime}, parsing
1239@var{string} according to the specification supplied in
1240@var{template}. The interpretation of month and day names is
1241dependent on the current locale. The value returned is a pair.
7403e409 1242The @acronym{CAR} has an object with time components
a0e07ba4
NJ
1243in the form returned by @code{localtime} or @code{gmtime},
1244but the time zone components
1245are not usefully set.
7403e409 1246The @acronym{CDR} reports the number of characters from @var{string}
a0e07ba4
NJ
1247which were used for the conversion.
1248@end deffn
1249
1250@defvar internal-time-units-per-second
1251The value of this variable is the number of time units per second
1252reported by the following procedures.
1253@end defvar
1254
8f85c0c6
NJ
1255@deffn {Scheme Procedure} times
1256@deffnx {C Function} scm_times ()
a0e07ba4
NJ
1257Return an object with information about real and processor
1258time. The following procedures accept such an object as an
1259argument and return a selected component:
1260
2ce02471 1261@deffn {Scheme Procedure} tms:clock tms
a0e07ba4
NJ
1262The current real time, expressed as time units relative to an
1263arbitrary base.
2ce02471
NJ
1264@end deffn
1265@deffn {Scheme Procedure} tms:utime tms
a0e07ba4 1266The CPU time units used by the calling process.
2ce02471
NJ
1267@end deffn
1268@deffn {Scheme Procedure} tms:stime tms
a0e07ba4
NJ
1269The CPU time units used by the system on behalf of the calling
1270process.
2ce02471
NJ
1271@end deffn
1272@deffn {Scheme Procedure} tms:cutime tms
a0e07ba4
NJ
1273The CPU time units used by terminated child processes of the
1274calling process, whose status has been collected (e.g., using
1275@code{waitpid}).
2ce02471
NJ
1276@end deffn
1277@deffn {Scheme Procedure} tms:cstime tms
a0e07ba4
NJ
1278Similarly, the CPU times units used by the system on behalf of
1279terminated child processes.
2ce02471 1280@end deffn
a0e07ba4
NJ
1281@end deffn
1282
8f85c0c6
NJ
1283@deffn {Scheme Procedure} get-internal-real-time
1284@deffnx {C Function} scm_get_internal_real_time ()
a0e07ba4
NJ
1285Return the number of time units since the interpreter was
1286started.
1287@end deffn
1288
8f85c0c6
NJ
1289@deffn {Scheme Procedure} get-internal-run-time
1290@deffnx {C Function} scm_get_internal_run_time ()
a0e07ba4
NJ
1291Return the number of time units of processor time used by the
1292interpreter. Both @emph{system} and @emph{user} time are
1293included but subprocesses are not.
1294@end deffn
1295
1296@node Runtime Environment
3229f68b 1297@subsection Runtime Environment
a0e07ba4 1298
8f85c0c6
NJ
1299@deffn {Scheme Procedure} program-arguments
1300@deffnx {Scheme Procedure} command-line
1301@deffnx {C Function} scm_program_arguments ()
f3dfb8ac
KR
1302@cindex command line
1303@cindex program arguments
a0e07ba4
NJ
1304Return the list of command line arguments passed to Guile, as a list of
1305strings. The list includes the invoked program name, which is usually
1306@code{"guile"}, but excludes switches and parameters for command line
1307options like @code{-e} and @code{-l}.
1308@end deffn
1309
8f85c0c6
NJ
1310@deffn {Scheme Procedure} getenv nam
1311@deffnx {C Function} scm_getenv (nam)
f3dfb8ac 1312@cindex environment
a0e07ba4
NJ
1313Looks up the string @var{name} in the current environment. The return
1314value is @code{#f} unless a string of the form @code{NAME=VALUE} is
1315found, in which case the string @code{VALUE} is returned.
1316@end deffn
1317
8f85c0c6 1318@deffn {Scheme Procedure} setenv name value
a0e07ba4
NJ
1319Modifies the environment of the current process, which is
1320also the default environment inherited by child processes.
1321
1322If @var{value} is @code{#f}, then @var{name} is removed from the
1323environment. Otherwise, the string @var{name}=@var{value} is added
1324to the environment, replacing any existing string with name matching
1325@var{name}.
1326
1327The return value is unspecified.
1328@end deffn
1329
395b0a34
NJ
1330@deffn {Scheme Procedure} unsetenv name
1331Remove variable @var{name} from the environment. The
1332name can not contain a @samp{=} character.
1333@end deffn
1334
8f85c0c6
NJ
1335@deffn {Scheme Procedure} environ [env]
1336@deffnx {C Function} scm_environ (env)
a0e07ba4
NJ
1337If @var{env} is omitted, return the current environment (in the
1338Unix sense) as a list of strings. Otherwise set the current
1339environment, which is also the default environment for child
1340processes, to the supplied list of strings. Each member of
7403e409
NJ
1341@var{env} should be of the form @var{NAME}=@var{VALUE} and values of
1342@var{NAME} should not be duplicated. If @var{env} is supplied
a0e07ba4
NJ
1343then the return value is unspecified.
1344@end deffn
1345
8f85c0c6
NJ
1346@deffn {Scheme Procedure} putenv str
1347@deffnx {C Function} scm_putenv (str)
a0e07ba4
NJ
1348Modifies the environment of the current process, which is
1349also the default environment inherited by child processes.
1350
1351If @var{string} is of the form @code{NAME=VALUE} then it will be written
1352directly into the environment, replacing any existing environment string
1353with
1354name matching @code{NAME}. If @var{string} does not contain an equal
1355sign, then any existing string with name matching @var{string} will
1356be removed.
1357
1358The return value is unspecified.
1359@end deffn
1360
1361
1362@node Processes
3229f68b 1363@subsection Processes
f3dfb8ac
KR
1364@cindex processes
1365@cindex child processes
a0e07ba4
NJ
1366
1367@findex cd
8f85c0c6
NJ
1368@deffn {Scheme Procedure} chdir str
1369@deffnx {C Function} scm_chdir (str)
f3dfb8ac 1370@cindex current directory
a0e07ba4
NJ
1371Change the current working directory to @var{path}.
1372The return value is unspecified.
1373@end deffn
1374
1375@findex pwd
8f85c0c6
NJ
1376@deffn {Scheme Procedure} getcwd
1377@deffnx {C Function} scm_getcwd ()
a0e07ba4
NJ
1378Return the name of the current working directory.
1379@end deffn
1380
8f85c0c6
NJ
1381@deffn {Scheme Procedure} umask [mode]
1382@deffnx {C Function} scm_umask (mode)
7403e409
NJ
1383If @var{mode} is omitted, returns a decimal number representing the
1384current file creation mask. Otherwise the file creation mask is set
1385to @var{mode} and the previous value is returned. @xref{Setting
1386Permissions,,Assigning File Permissions,libc,The GNU C Library
1387Reference Manual}, for more on how to use umasks.
a0e07ba4 1388
7403e409 1389E.g., @code{(umask #o022)} sets the mask to octal 22/decimal 18.
a0e07ba4
NJ
1390@end deffn
1391
8f85c0c6
NJ
1392@deffn {Scheme Procedure} chroot path
1393@deffnx {C Function} scm_chroot (path)
a0e07ba4
NJ
1394Change the root directory to that specified in @var{path}.
1395This directory will be used for path names beginning with
1396@file{/}. The root directory is inherited by all children
1397of the current process. Only the superuser may change the
1398root directory.
1399@end deffn
1400
8f85c0c6
NJ
1401@deffn {Scheme Procedure} getpid
1402@deffnx {C Function} scm_getpid ()
a0e07ba4
NJ
1403Return an integer representing the current process ID.
1404@end deffn
1405
8f85c0c6
NJ
1406@deffn {Scheme Procedure} getgroups
1407@deffnx {C Function} scm_getgroups ()
a0e07ba4 1408Return a vector of integers representing the current
85a9b4ed 1409supplementary group IDs.
a0e07ba4
NJ
1410@end deffn
1411
8f85c0c6
NJ
1412@deffn {Scheme Procedure} getppid
1413@deffnx {C Function} scm_getppid ()
a0e07ba4
NJ
1414Return an integer representing the process ID of the parent
1415process.
1416@end deffn
1417
8f85c0c6
NJ
1418@deffn {Scheme Procedure} getuid
1419@deffnx {C Function} scm_getuid ()
a0e07ba4
NJ
1420Return an integer representing the current real user ID.
1421@end deffn
1422
8f85c0c6
NJ
1423@deffn {Scheme Procedure} getgid
1424@deffnx {C Function} scm_getgid ()
a0e07ba4
NJ
1425Return an integer representing the current real group ID.
1426@end deffn
1427
8f85c0c6
NJ
1428@deffn {Scheme Procedure} geteuid
1429@deffnx {C Function} scm_geteuid ()
a0e07ba4
NJ
1430Return an integer representing the current effective user ID.
1431If the system does not support effective IDs, then the real ID
66add4eb 1432is returned. @code{(provided? 'EIDs)} reports whether the
a0e07ba4
NJ
1433system supports effective IDs.
1434@end deffn
1435
8f85c0c6
NJ
1436@deffn {Scheme Procedure} getegid
1437@deffnx {C Function} scm_getegid ()
a0e07ba4
NJ
1438Return an integer representing the current effective group ID.
1439If the system does not support effective IDs, then the real ID
66add4eb 1440is returned. @code{(provided? 'EIDs)} reports whether the
a0e07ba4
NJ
1441system supports effective IDs.
1442@end deffn
1443
ef048324
KR
1444@deffn {Scheme Procedure} setgroups vec
1445@deffnx {C Function} scm_setgroups (vec)
1446Set the current set of supplementary group IDs to the integers in the
1447given vector @var{vec}. The return value is unspecified.
1448
1449Generally only the superuser can set the process group IDs
1450(@pxref{Setting Groups, Setting the Group IDs,, libc, The GNU C
1451Library Reference Manual}).
1452@end deffn
1453
8f85c0c6
NJ
1454@deffn {Scheme Procedure} setuid id
1455@deffnx {C Function} scm_setuid (id)
a0e07ba4
NJ
1456Sets both the real and effective user IDs to the integer @var{id}, provided
1457the process has appropriate privileges.
1458The return value is unspecified.
1459@end deffn
1460
8f85c0c6
NJ
1461@deffn {Scheme Procedure} setgid id
1462@deffnx {C Function} scm_setgid (id)
a0e07ba4
NJ
1463Sets both the real and effective group IDs to the integer @var{id}, provided
1464the process has appropriate privileges.
1465The return value is unspecified.
1466@end deffn
1467
8f85c0c6
NJ
1468@deffn {Scheme Procedure} seteuid id
1469@deffnx {C Function} scm_seteuid (id)
a0e07ba4
NJ
1470Sets the effective user ID to the integer @var{id}, provided the process
1471has appropriate privileges. If effective IDs are not supported, the
7403e409 1472real ID is set instead---@code{(provided? 'EIDs)} reports whether the
a0e07ba4
NJ
1473system supports effective IDs.
1474The return value is unspecified.
1475@end deffn
1476
8f85c0c6
NJ
1477@deffn {Scheme Procedure} setegid id
1478@deffnx {C Function} scm_setegid (id)
a0e07ba4
NJ
1479Sets the effective group ID to the integer @var{id}, provided the process
1480has appropriate privileges. If effective IDs are not supported, the
7403e409 1481real ID is set instead---@code{(provided? 'EIDs)} reports whether the
a0e07ba4
NJ
1482system supports effective IDs.
1483The return value is unspecified.
1484@end deffn
1485
8f85c0c6
NJ
1486@deffn {Scheme Procedure} getpgrp
1487@deffnx {C Function} scm_getpgrp ()
a0e07ba4 1488Return an integer representing the current process group ID.
7403e409 1489This is the @acronym{POSIX} definition, not @acronym{BSD}.
a0e07ba4
NJ
1490@end deffn
1491
8f85c0c6
NJ
1492@deffn {Scheme Procedure} setpgid pid pgid
1493@deffnx {C Function} scm_setpgid (pid, pgid)
a0e07ba4
NJ
1494Move the process @var{pid} into the process group @var{pgid}. @var{pid} or
1495@var{pgid} must be integers: they can be zero to indicate the ID of the
1496current process.
1497Fails on systems that do not support job control.
1498The return value is unspecified.
1499@end deffn
1500
8f85c0c6
NJ
1501@deffn {Scheme Procedure} setsid
1502@deffnx {C Function} scm_setsid ()
a0e07ba4
NJ
1503Creates a new session. The current process becomes the session leader
1504and is put in a new process group. The process will be detached
1505from its controlling terminal if it has one.
1506The return value is an integer representing the new process group ID.
1507@end deffn
1508
8f85c0c6
NJ
1509@deffn {Scheme Procedure} waitpid pid [options]
1510@deffnx {C Function} scm_waitpid (pid, options)
a0e07ba4
NJ
1511This procedure collects status information from a child process which
1512has terminated or (optionally) stopped. Normally it will
1513suspend the calling process until this can be done. If more than one
1514child process is eligible then one will be chosen by the operating system.
1515
1516The value of @var{pid} determines the behaviour:
1517
7403e409 1518@table @asis
a0e07ba4
NJ
1519@item @var{pid} greater than 0
1520Request status information from the specified child process.
7403e409 1521@item @var{pid} equal to -1 or @code{WAIT_ANY}
2ce02471 1522@vindex WAIT_ANY
a0e07ba4 1523Request status information for any child process.
7403e409 1524@item @var{pid} equal to 0 or @code{WAIT_MYPGRP}
2ce02471 1525@vindex WAIT_MYPGRP
a0e07ba4
NJ
1526Request status information for any child process in the current process
1527group.
1528@item @var{pid} less than -1
1529Request status information for any child process whose process group ID
7403e409 1530is @minus{}@var{pid}.
a0e07ba4
NJ
1531@end table
1532
1533The @var{options} argument, if supplied, should be the bitwise OR of the
1534values of zero or more of the following variables:
1535
1536@defvar WNOHANG
1537Return immediately even if there are no child processes to be collected.
1538@end defvar
1539
1540@defvar WUNTRACED
1541Report status information for stopped processes as well as terminated
1542processes.
1543@end defvar
1544
1545The return value is a pair containing:
1546
1547@enumerate
1548@item
1549The process ID of the child process, or 0 if @code{WNOHANG} was
1550specified and no process was collected.
1551@item
1552The integer status value.
1553@end enumerate
1554@end deffn
1555
1556The following three
1557functions can be used to decode the process status code returned
1558by @code{waitpid}.
1559
8f85c0c6
NJ
1560@deffn {Scheme Procedure} status:exit-val status
1561@deffnx {C Function} scm_status_exit_val (status)
a0e07ba4
NJ
1562Return the exit status value, as would be set if a process
1563ended normally through a call to @code{exit} or @code{_exit},
1564if any, otherwise @code{#f}.
1565@end deffn
1566
8f85c0c6
NJ
1567@deffn {Scheme Procedure} status:term-sig status
1568@deffnx {C Function} scm_status_term_sig (status)
a0e07ba4
NJ
1569Return the signal number which terminated the process, if any,
1570otherwise @code{#f}.
1571@end deffn
1572
8f85c0c6
NJ
1573@deffn {Scheme Procedure} status:stop-sig status
1574@deffnx {C Function} scm_status_stop_sig (status)
a0e07ba4
NJ
1575Return the signal number which stopped the process, if any,
1576otherwise @code{#f}.
1577@end deffn
1578
8f85c0c6
NJ
1579@deffn {Scheme Procedure} system [cmd]
1580@deffnx {C Function} scm_system (cmd)
7403e409
NJ
1581Execute @var{cmd} using the operating system's ``command
1582processor''. Under Unix this is usually the default shell
a0e07ba4
NJ
1583@code{sh}. The value returned is @var{cmd}'s exit status as
1584returned by @code{waitpid}, which can be interpreted using the
1585functions above.
1586
1587If @code{system} is called without arguments, return a boolean
1588indicating whether the command processor is available.
1589@end deffn
1590
8141bd98
RB
1591@deffn {Scheme Procedure} system* . args
1592@deffnx {C Function} scm_system_star (args)
1593Execute the command indicated by @var{args}. The first element must
1594be a string indicating the command to be executed, and the remaining
1595items must be strings representing each of the arguments to that
1596command.
1597
1598This function returns the exit status of the command as provided by
1599@code{waitpid}. This value can be handled with @code{status:exit-val}
1600and the related functions.
1601
1602@code{system*} is similar to @code{system}, but accepts only one
1603string per-argument, and performs no shell interpretation. The
1604command is executed using fork and execlp. Accordingly this function
1605may be safer than @code{system} in situations where shell
1606interpretation is not required.
1607
1608Example: (system* "echo" "foo" "bar")
1609@end deffn
1610
8f85c0c6
NJ
1611@deffn {Scheme Procedure} primitive-exit [status]
1612@deffnx {C Function} scm_primitive_exit (status)
a0e07ba4
NJ
1613Terminate the current process without unwinding the Scheme stack.
1614This is would typically be useful after a fork. The exit status
1615is @var{status} if supplied, otherwise zero.
1616@end deffn
1617
8f85c0c6
NJ
1618@deffn {Scheme Procedure} execl filename . args
1619@deffnx {C Function} scm_execl (filename, args)
a0e07ba4
NJ
1620Executes the file named by @var{path} as a new process image.
1621The remaining arguments are supplied to the process; from a C program
85a9b4ed 1622they are accessible as the @code{argv} argument to @code{main}.
a0e07ba4
NJ
1623Conventionally the first @var{arg} is the same as @var{path}.
1624All arguments must be strings.
1625
1626If @var{arg} is missing, @var{path} is executed with a null
1627argument list, which may have system-dependent side-effects.
1628
1629This procedure is currently implemented using the @code{execv} system
1630call, but we call it @code{execl} because of its Scheme calling interface.
1631@end deffn
1632
8f85c0c6
NJ
1633@deffn {Scheme Procedure} execlp filename . args
1634@deffnx {C Function} scm_execlp (filename, args)
a0e07ba4
NJ
1635Similar to @code{execl}, however if
1636@var{filename} does not contain a slash
1637then the file to execute will be located by searching the
1638directories listed in the @code{PATH} environment variable.
1639
1640This procedure is currently implemented using the @code{execvp} system
1641call, but we call it @code{execlp} because of its Scheme calling interface.
1642@end deffn
1643
8f85c0c6
NJ
1644@deffn {Scheme Procedure} execle filename env . args
1645@deffnx {C Function} scm_execle (filename, env, args)
a0e07ba4
NJ
1646Similar to @code{execl}, but the environment of the new process is
1647specified by @var{env}, which must be a list of strings as returned by the
1648@code{environ} procedure.
1649
1650This procedure is currently implemented using the @code{execve} system
1651call, but we call it @code{execle} because of its Scheme calling interface.
1652@end deffn
1653
8f85c0c6
NJ
1654@deffn {Scheme Procedure} primitive-fork
1655@deffnx {C Function} scm_fork ()
7403e409 1656Creates a new ``child'' process by duplicating the current ``parent'' process.
a0e07ba4
NJ
1657In the child the return value is 0. In the parent the return value is
1658the integer process ID of the child.
1659
1660This procedure has been renamed from @code{fork} to avoid a naming conflict
1661with the scsh fork.
1662@end deffn
1663
8f85c0c6
NJ
1664@deffn {Scheme Procedure} nice incr
1665@deffnx {C Function} scm_nice (incr)
f3dfb8ac 1666@cindex process priority
a0e07ba4
NJ
1667Increment the priority of the current process by @var{incr}. A higher
1668priority value means that the process runs less often.
1669The return value is unspecified.
1670@end deffn
1671
8f85c0c6
NJ
1672@deffn {Scheme Procedure} setpriority which who prio
1673@deffnx {C Function} scm_setpriority (which, who, prio)
2ce02471
NJ
1674@vindex PRIO_PROCESS
1675@vindex PRIO_PGRP
1676@vindex PRIO_USER
a0e07ba4
NJ
1677Set the scheduling priority of the process, process group
1678or user, as indicated by @var{which} and @var{who}. @var{which}
1679is one of the variables @code{PRIO_PROCESS}, @code{PRIO_PGRP}
1680or @code{PRIO_USER}, and @var{who} is interpreted relative to
1681@var{which} (a process identifier for @code{PRIO_PROCESS},
004fe2c8 1682process group identifier for @code{PRIO_PGRP}, and a user
a0e07ba4
NJ
1683identifier for @code{PRIO_USER}. A zero value of @var{who}
1684denotes the current process, process group, or user.
7403e409
NJ
1685@var{prio} is a value in the range [@minus{}20,20]. The default
1686priority is 0; lower priorities (in numerical terms) cause more
1687favorable scheduling. Sets the priority of all of the specified
1688processes. Only the super-user may lower priorities. The return
1689value is not specified.
a0e07ba4
NJ
1690@end deffn
1691
8f85c0c6
NJ
1692@deffn {Scheme Procedure} getpriority which who
1693@deffnx {C Function} scm_getpriority (which, who)
2ce02471
NJ
1694@vindex PRIO_PROCESS
1695@vindex PRIO_PGRP
1696@vindex PRIO_USER
a0e07ba4
NJ
1697Return the scheduling priority of the process, process group
1698or user, as indicated by @var{which} and @var{who}. @var{which}
1699is one of the variables @code{PRIO_PROCESS}, @code{PRIO_PGRP}
7403e409 1700or @code{PRIO_USER}, and @var{who} should be interpreted depending on
a0e07ba4
NJ
1701@var{which} (a process identifier for @code{PRIO_PROCESS},
1702process group identifier for @code{PRIO_PGRP}, and a user
7403e409 1703identifier for @code{PRIO_USER}). A zero value of @var{who}
a0e07ba4
NJ
1704denotes the current process, process group, or user. Return
1705the highest priority (lowest numerical value) of any of the
1706specified processes.
1707@end deffn
1708
1709
1710@node Signals
3229f68b 1711@subsection Signals
f3dfb8ac 1712@cindex signal
a0e07ba4
NJ
1713
1714Procedures to raise, handle and wait for signals.
1715
8f85c0c6
NJ
1716@deffn {Scheme Procedure} kill pid sig
1717@deffnx {C Function} scm_kill (pid, sig)
a0e07ba4
NJ
1718Sends a signal to the specified process or group of processes.
1719
1720@var{pid} specifies the processes to which the signal is sent:
1721
7403e409 1722@table @asis
a0e07ba4
NJ
1723@item @var{pid} greater than 0
1724The process whose identifier is @var{pid}.
1725@item @var{pid} equal to 0
1726All processes in the current process group.
1727@item @var{pid} less than -1
1728The process group whose identifier is -@var{pid}
1729@item @var{pid} equal to -1
1730If the process is privileged, all processes except for some special
1731system processes. Otherwise, all processes with the current effective
1732user ID.
1733@end table
1734
1735@var{sig} should be specified using a variable corresponding to
1736the Unix symbolic name, e.g.,
1737
1738@defvar SIGHUP
1739Hang-up signal.
1740@end defvar
1741
1742@defvar SIGINT
1743Interrupt signal.
1744@end defvar
7403e409
NJ
1745
1746A full list of signals on the GNU system may be found in @ref{Standard
1747Signals,,,libc,The GNU C Library Reference Manual}.
a0e07ba4
NJ
1748@end deffn
1749
8f85c0c6
NJ
1750@deffn {Scheme Procedure} raise sig
1751@deffnx {C Function} scm_raise (sig)
a0e07ba4 1752Sends a specified signal @var{sig} to the current process, where
7403e409 1753@var{sig} is as described for the @code{kill} procedure.
a0e07ba4
NJ
1754@end deffn
1755
b6506f45 1756@deffn {Scheme Procedure} sigaction signum [handler [flags [thread]]]
8f85c0c6 1757@deffnx {C Function} scm_sigaction (signum, handler, flags)
b6506f45 1758@deffnx {C Function} scm_sigaction_for_thread (signum, handler, flags, thread)
a0e07ba4
NJ
1759Install or report the signal handler for a specified signal.
1760
1761@var{signum} is the signal number, which can be specified using the value
1762of variables such as @code{SIGINT}.
1763
b6506f45 1764If @var{handler} is omitted, @code{sigaction} returns a pair: the
7403e409
NJ
1765@acronym{CAR} is the current signal hander, which will be either an
1766integer with the value @code{SIG_DFL} (default action) or
1767@code{SIG_IGN} (ignore), or the Scheme procedure which handles the
1768signal, or @code{#f} if a non-Scheme procedure handles the signal.
1769The @acronym{CDR} contains the current @code{sigaction} flags for the
1770handler.
a0e07ba4 1771
b6506f45 1772If @var{handler} is provided, it is installed as the new handler for
0a50eeaa
NJ
1773@var{signum}. @var{handler} can be a Scheme procedure taking one
1774argument, or the value of @code{SIG_DFL} (default action) or
a0e07ba4 1775@code{SIG_IGN} (ignore), or @code{#f} to restore whatever signal handler
b6506f45
MV
1776was installed before @code{sigaction} was first used. When a scheme
1777procedure has been specified, that procedure will run in the given
1778@var{thread}. When no thread has been given, the thread that made this
1779call to @code{sigaction} is used.
1780
91f5e9f7
KR
1781@var{flags} is a @code{logior} (@pxref{Bitwise Operations}) of the
1782following (where provided by the system), or @code{0} for none.
1783
1784@defvar SA_NOCLDSTOP
1785By default, @code{SIGCHLD} is signalled when a child process stops
1786(ie.@: receives @code{SIGSTOP}), and when a child process terminates.
1787With the @code{SA_NOCLDSTOP} flag, @code{SIGCHLD} is only signalled
1788for termination, not stopping.
1789
1790@code{SA_NOCLDSTOP} has no effect on signals other than
1791@code{SIGCHLD}.
1792@end defvar
1793
1794@defvar SA_RESTART
1795If a signal occurs while in a system call, deliver the signal then
1796restart the system call (as opposed to returning an @code{EINTR} error
1797from that call).
1798
1799Guile always enables this flag where available, no matter what
1800@var{flags} are specified. This avoids spurious error returns in low
1801level operations.
1802@end defvar
1803
1804The return value is a pair with information about the old handler as
1805described above.
a0e07ba4 1806
7403e409 1807This interface does not provide access to the ``signal blocking''
a0e07ba4
NJ
1808facility. Maybe this is not needed, since the thread support may
1809provide solutions to the problem of consistent access to data
1810structures.
1811@end deffn
1812
8f85c0c6
NJ
1813@deffn {Scheme Procedure} restore-signals
1814@deffnx {C Function} scm_restore_signals ()
a0e07ba4
NJ
1815Return all signal handlers to the values they had before any call to
1816@code{sigaction} was made. The return value is unspecified.
1817@end deffn
1818
8f85c0c6
NJ
1819@deffn {Scheme Procedure} alarm i
1820@deffnx {C Function} scm_alarm (i)
a0e07ba4
NJ
1821Set a timer to raise a @code{SIGALRM} signal after the specified
1822number of seconds (an integer). It's advisable to install a signal
1823handler for
1824@code{SIGALRM} beforehand, since the default action is to terminate
1825the process.
1826
1827The return value indicates the time remaining for the previous alarm,
1828if any. The new value replaces the previous alarm. If there was
1829no previous alarm, the return value is zero.
1830@end deffn
1831
8f85c0c6
NJ
1832@deffn {Scheme Procedure} pause
1833@deffnx {C Function} scm_pause ()
a0e07ba4
NJ
1834Pause the current process (thread?) until a signal arrives whose
1835action is to either terminate the current process or invoke a
1836handler procedure. The return value is unspecified.
1837@end deffn
1838
8f85c0c6
NJ
1839@deffn {Scheme Procedure} sleep i
1840@deffnx {C Function} scm_sleep (i)
a0e07ba4
NJ
1841Wait for the given number of seconds (an integer) or until a signal
1842arrives. The return value is zero if the time elapses or the number
1843of seconds remaining otherwise.
1844@end deffn
1845
8f85c0c6
NJ
1846@deffn {Scheme Procedure} usleep i
1847@deffnx {C Function} scm_usleep (i)
7403e409
NJ
1848Sleep for @var{i} microseconds. @code{usleep} is not available on
1849all platforms. [FIXME: so what happens when it isn't?]
a0e07ba4
NJ
1850@end deffn
1851
8f85c0c6
NJ
1852@deffn {Scheme Procedure} setitimer which_timer interval_seconds interval_microseconds value_seconds value_microseconds
1853@deffnx {C Function} scm_setitimer (which_timer, interval_seconds, interval_microseconds, value_seconds, value_microseconds)
a0e07ba4
NJ
1854Set the timer specified by @var{which_timer} according to the given
1855@var{interval_seconds}, @var{interval_microseconds},
9401323e
NJ
1856@var{value_seconds}, and @var{value_microseconds} values.
1857
1858Return information about the timer's previous setting.
9401323e
NJ
1859
1860The timers available are: @code{ITIMER_REAL}, @code{ITIMER_VIRTUAL},
1861and @code{ITIMER_PROF}.
1862
1863The return value will be a list of two cons pairs representing the
a0e07ba4 1864current state of the given timer. The first pair is the seconds and
9401323e
NJ
1865microseconds of the timer @code{it_interval}, and the second pair is
1866the seconds and microseconds of the timer @code{it_value}.
a0e07ba4
NJ
1867@end deffn
1868
8f85c0c6
NJ
1869@deffn {Scheme Procedure} getitimer which_timer
1870@deffnx {C Function} scm_getitimer (which_timer)
7403e409 1871Return information about the timer specified by @var{which_timer}.
9401323e
NJ
1872
1873The timers available are: @code{ITIMER_REAL}, @code{ITIMER_VIRTUAL},
1874and @code{ITIMER_PROF}.
1875
1876The return value will be a list of two cons pairs representing the
1877current state of the given timer. The first pair is the seconds and
1878microseconds of the timer @code{it_interval}, and the second pair is
1879the seconds and microseconds of the timer @code{it_value}.
a0e07ba4
NJ
1880@end deffn
1881
1882
1883@node Terminals and Ptys
3229f68b 1884@subsection Terminals and Ptys
a0e07ba4 1885
8f85c0c6
NJ
1886@deffn {Scheme Procedure} isatty? port
1887@deffnx {C Function} scm_isatty_p (port)
f3dfb8ac 1888@cindex terminal
a0e07ba4
NJ
1889Return @code{#t} if @var{port} is using a serial non--file
1890device, otherwise @code{#f}.
1891@end deffn
1892
8f85c0c6
NJ
1893@deffn {Scheme Procedure} ttyname port
1894@deffnx {C Function} scm_ttyname (port)
f3dfb8ac 1895@cindex terminal
a0e07ba4
NJ
1896Return a string with the name of the serial terminal device
1897underlying @var{port}.
1898@end deffn
1899
8f85c0c6
NJ
1900@deffn {Scheme Procedure} ctermid
1901@deffnx {C Function} scm_ctermid ()
f3dfb8ac 1902@cindex terminal
a0e07ba4
NJ
1903Return a string containing the file name of the controlling
1904terminal for the current process.
1905@end deffn
1906
8f85c0c6
NJ
1907@deffn {Scheme Procedure} tcgetpgrp port
1908@deffnx {C Function} scm_tcgetpgrp (port)
f3dfb8ac 1909@cindex process group
a0e07ba4
NJ
1910Return the process group ID of the foreground process group
1911associated with the terminal open on the file descriptor
1912underlying @var{port}.
1913
1914If there is no foreground process group, the return value is a
1915number greater than 1 that does not match the process group ID
1916of any existing process group. This can happen if all of the
1917processes in the job that was formerly the foreground job have
1918terminated, and no other job has yet been moved into the
1919foreground.
1920@end deffn
1921
8f85c0c6
NJ
1922@deffn {Scheme Procedure} tcsetpgrp port pgid
1923@deffnx {C Function} scm_tcsetpgrp (port, pgid)
f3dfb8ac 1924@cindex process group
a0e07ba4
NJ
1925Set the foreground process group ID for the terminal used by the file
1926descriptor underlying @var{port} to the integer @var{pgid}.
1927The calling process
1928must be a member of the same session as @var{pgid} and must have the same
1929controlling terminal. The return value is unspecified.
1930@end deffn
1931
1932@node Pipes
3229f68b 1933@subsection Pipes
f3dfb8ac 1934@cindex pipe
a0e07ba4 1935
cb62d8e5 1936The following procedures are similar to the @code{popen} and
7403e409 1937@code{pclose} system routines. The code is in a separate ``popen''
a0e07ba4
NJ
1938module:
1939
1940@smalllisp
1941(use-modules (ice-9 popen))
1942@end smalllisp
1943
1944@findex popen
cb62d8e5
KR
1945@deffn {Scheme Procedure} open-pipe command mode
1946@deffnx {Scheme Procedure} open-pipe* mode prog [args...]
1947Execute a command in a subprocess, with a pipe to it or from it, or
1948with pipes in both directions.
1949
1950@code{open-pipe} runs the shell @var{command} using @samp{/bin/sh -c}.
1951@code{open-pipe*} executes @var{prog} directly, with the optional
1952@var{args} arguments (all strings).
1953
1954@var{mode} should be one of the following values. @code{OPEN_READ} is
1955an input pipe, ie.@: to read from the subprocess. @code{OPEN_WRITE}
1956is an output pipe, ie.@: to write to it.
1957
1958@defvar OPEN_READ
1959@defvarx OPEN_WRITE
1960@defvarx OPEN_BOTH
1961@end defvar
1962
1963For an input pipe, the child's standard output is the pipe and
1964standard input is inherited from @code{current-input-port}. For an
1965output pipe, the child's standard input is the pipe and standard
1966output is inherited from @code{current-output-port}. In all cases
1967cases the child's standard error is inherited from
1968@code{current-error-port} (@pxref{Default Ports}).
1969
1970If those @code{current-X-ports} are not files of some kind, and hence
1971don't have file descriptors for the child, then @file{/dev/null} is
1972used instead.
7064e449 1973
cb62d8e5
KR
1974Care should be taken with @code{OPEN_BOTH}, a deadlock will occur if
1975both parent and child are writing, and waiting until the write
1976completes before doing any reading. Each direction has
1977@code{PIPE_BUF} bytes of buffering (@pxref{Ports and File
1978Descriptors}), which will be enough for small writes, but not for say
1979putting a big file through a filter.
a0e07ba4
NJ
1980@end deffn
1981
8f85c0c6 1982@deffn {Scheme Procedure} open-input-pipe command
a0e07ba4 1983Equivalent to @code{open-pipe} with mode @code{OPEN_READ}.
bcf009c3
NJ
1984
1985@lisp
cb62d8e5
KR
1986(let* ((port (open-input-pipe "date --utc"))
1987 (str (read-line port)))
1988 (close-pipe port)
1989 str)
1990@result{} "Mon Mar 11 20:10:44 UTC 2002"
bcf009c3 1991@end lisp
a0e07ba4
NJ
1992@end deffn
1993
8f85c0c6 1994@deffn {Scheme Procedure} open-output-pipe command
a0e07ba4 1995Equivalent to @code{open-pipe} with mode @code{OPEN_WRITE}.
cb62d8e5
KR
1996
1997@lisp
1998(let ((port (open-output-pipe "lpr")))
1999 (display "Something for the line printer.\n" port)
2000 (if (not (eqv? 0 (status:exit-val (close-pipe port))))
2001 (error "Cannot print")))
2002@end lisp
a0e07ba4
NJ
2003@end deffn
2004
7064e449
MV
2005@deffn {Scheme Procedure} open-input-output-pipe command
2006Equivalent to @code{open-pipe} with mode @code{OPEN_BOTH}.
2007@end deffn
2008
a0e07ba4 2009@findex pclose
8f85c0c6 2010@deffn {Scheme Procedure} close-pipe port
cb62d8e5
KR
2011Close a pipe created by @code{open-pipe}, wait for the process to
2012terminate, and return the wait status code. The status is as per
2013@code{waitpid} and can be decoded with @code{status:exit-val} etc
2014(@pxref{Processes})
a0e07ba4
NJ
2015@end deffn
2016
cb62d8e5
KR
2017@sp 1
2018@code{waitpid WAIT_ANY} should not be used when pipes are open, since
2019it can reap a pipe's child process, causing an error from a subsequent
2020@code{close-pipe}.
2021
2022@code{close-port} (@pxref{Closing}) can close a pipe, but it doesn't
2023reap the child process.
2024
2025The garbage collector will close a pipe no longer in use, and reap the
2026child process with @code{waitpid}. If the child hasn't yet terminated
2027the garbage collector doesn't block, but instead checks again in the
2028next GC.
2029
2030Many systems have per-user and system-wide limits on the number of
2031processes, and a system-wide limit on the number of pipes, so pipes
2032should be closed explicitly when no longer needed, rather than letting
2033the garbage collector pick them up at some later time.
2034
2035
a0e07ba4 2036@node Networking
3229f68b 2037@subsection Networking
f3dfb8ac 2038@cindex network
a0e07ba4
NJ
2039
2040@menu
13ed23db
KR
2041* Network Address Conversion::
2042* Network Databases::
2043* Network Socket Address::
2044* Network Sockets and Communication::
2045* Internet Socket Examples::
a0e07ba4
NJ
2046@end menu
2047
2048@node Network Address Conversion
3229f68b 2049@subsubsection Network Address Conversion
f3dfb8ac 2050@cindex network address
a0e07ba4
NJ
2051
2052This section describes procedures which convert internet addresses
2053between numeric and string formats.
2054
3229f68b 2055@subsubheading IPv4 Address Conversion
f3dfb8ac 2056@cindex IPv4
a0e07ba4 2057
957f9f62
KR
2058An IPv4 Internet address is a 4-byte value, represented in Guile as an
2059integer in network byte order (meaning the first byte is the most
2060significant in the number).
2061
13ed23db
KR
2062@defvar INADDR_ANY
2063For a server, this can be used with @code{bind} (@pxref{Network
2064Sockets and Communication}) to allow connections from any interface on
2065the machine.
957f9f62
KR
2066@end defvar
2067
2068@defvar INADDR_BROADCAST
2069The broadcast address on the local network.
2070@end defvar
2071
13ed23db
KR
2072@defvar INADDR_LOOPBACK
2073The address of the local host using the loopback device, ie.@:
2074@samp{127.0.0.1}.
2075@end defvar
2076
957f9f62
KR
2077@c INADDR_NONE is defined in the code, but serves no purpose.
2078@c inet_addr() returns it as an error indication, but that function
2079@c isn't provided, for the good reason that inet_aton() does the same
2080@c job and gives an unambiguous error indication. (INADDR_NONE is a
2081@c valid 4-byte value, in glibc it's the same as INADDR_BROADCAST.)
2082@c
2083@c @defvar INADDR_NONE
2084@c No address.
2085@c @end defvar
2086
8f85c0c6
NJ
2087@deffn {Scheme Procedure} inet-aton address
2088@deffnx {C Function} scm_inet_aton (address)
a0e07ba4
NJ
2089Convert an IPv4 Internet address from printable string
2090(dotted decimal notation) to an integer. E.g.,
2091
2092@lisp
2093(inet-aton "127.0.0.1") @result{} 2130706433
2094@end lisp
2095@end deffn
2096
8f85c0c6
NJ
2097@deffn {Scheme Procedure} inet-ntoa inetid
2098@deffnx {C Function} scm_inet_ntoa (inetid)
a0e07ba4
NJ
2099Convert an IPv4 Internet address to a printable
2100(dotted decimal notation) string. E.g.,
2101
2102@lisp
2103(inet-ntoa 2130706433) @result{} "127.0.0.1"
2104@end lisp
2105@end deffn
2106
8f85c0c6
NJ
2107@deffn {Scheme Procedure} inet-netof address
2108@deffnx {C Function} scm_inet_netof (address)
a0e07ba4
NJ
2109Return the network number part of the given IPv4
2110Internet address. E.g.,
2111
2112@lisp
2113(inet-netof 2130706433) @result{} 127
2114@end lisp
2115@end deffn
2116
8f85c0c6
NJ
2117@deffn {Scheme Procedure} inet-lnaof address
2118@deffnx {C Function} scm_lnaof (address)
a0e07ba4
NJ
2119Return the local-address-with-network part of the given
2120IPv4 Internet address, using the obsolete class A/B/C system.
2121E.g.,
2122
2123@lisp
2124(inet-lnaof 2130706433) @result{} 1
2125@end lisp
2126@end deffn
2127
8f85c0c6
NJ
2128@deffn {Scheme Procedure} inet-makeaddr net lna
2129@deffnx {C Function} scm_inet_makeaddr (net, lna)
a0e07ba4
NJ
2130Make an IPv4 Internet address by combining the network number
2131@var{net} with the local-address-within-network number
2132@var{lna}. E.g.,
2133
2134@lisp
2135(inet-makeaddr 127 1) @result{} 2130706433
2136@end lisp
2137@end deffn
2138
3229f68b 2139@subsubheading IPv6 Address Conversion
f3dfb8ac 2140@cindex IPv6
a0e07ba4 2141
8f85c0c6
NJ
2142@deffn {Scheme Procedure} inet-ntop family address
2143@deffnx {C Function} scm_inet_ntop (family, address)
a0e07ba4
NJ
2144Convert a network address into a printable string.
2145Note that unlike the C version of this function,
2146the input is an integer with normal host byte ordering.
2147@var{family} can be @code{AF_INET} or @code{AF_INET6}. E.g.,
2148
2149@lisp
2150(inet-ntop AF_INET 2130706433) @result{} "127.0.0.1"
2151(inet-ntop AF_INET6 (- (expt 2 128) 1)) @result{}
2152ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
2153@end lisp
2154@end deffn
2155
8f85c0c6
NJ
2156@deffn {Scheme Procedure} inet-pton family address
2157@deffnx {C Function} scm_inet_pton (family, address)
a0e07ba4
NJ
2158Convert a string containing a printable network address to
2159an integer address. Note that unlike the C version of this
2160function,
2161the result is an integer with normal host byte ordering.
2162@var{family} can be @code{AF_INET} or @code{AF_INET6}. E.g.,
2163
2164@lisp
2165(inet-pton AF_INET "127.0.0.1") @result{} 2130706433
2166(inet-pton AF_INET6 "::1") @result{} 1
2167@end lisp
2168@end deffn
2169
2170
2171@node Network Databases
3229f68b 2172@subsubsection Network Databases
f3dfb8ac 2173@cindex network database
a0e07ba4
NJ
2174
2175This section describes procedures which query various network databases.
2176Care should be taken when using the database routines since they are not
2177reentrant.
2178
3229f68b 2179@subsubheading The Host Database
f3dfb8ac
KR
2180@cindex @file{/etc/hosts}
2181@cindex network database
a0e07ba4
NJ
2182
2183A @dfn{host object} is a structure that represents what is known about a
2184network host, and is the usual way of representing a system's network
2185identity inside software.
2186
2187The following functions accept a host object and return a selected
2188component:
2189
8f85c0c6 2190@deffn {Scheme Procedure} hostent:name host
7403e409 2191The ``official'' hostname for @var{host}.
a0e07ba4 2192@end deffn
8f85c0c6 2193@deffn {Scheme Procedure} hostent:aliases host
a0e07ba4
NJ
2194A list of aliases for @var{host}.
2195@end deffn
8f85c0c6 2196@deffn {Scheme Procedure} hostent:addrtype host
a0e07ba4
NJ
2197The host address type. For hosts with Internet addresses, this will
2198return @code{AF_INET}.
2199@end deffn
8f85c0c6 2200@deffn {Scheme Procedure} hostent:length host
a0e07ba4
NJ
2201The length of each address for @var{host}, in bytes.
2202@end deffn
8f85c0c6 2203@deffn {Scheme Procedure} hostent:addr-list host
a0e07ba4
NJ
2204The list of network addresses associated with @var{host}.
2205@end deffn
2206
2207The following procedures are used to search the host database:
2208
8f85c0c6
NJ
2209@deffn {Scheme Procedure} gethost [host]
2210@deffnx {Scheme Procedure} gethostbyname hostname
2211@deffnx {Scheme Procedure} gethostbyaddr address
2212@deffnx {C Function} scm_gethost (host)
a0e07ba4
NJ
2213Look up a host by name or address, returning a host object. The
2214@code{gethost} procedure will accept either a string name or an integer
2215address; if given no arguments, it behaves like @code{gethostent} (see
2216below). If a name or address is supplied but the address can not be
2217found, an error will be thrown to one of the keys:
2218@code{host-not-found}, @code{try-again}, @code{no-recovery} or
2219@code{no-data}, corresponding to the equivalent @code{h_error} values.
2220Unusual conditions may result in errors thrown to the
2221@code{system-error} or @code{misc_error} keys.
bcf009c3
NJ
2222
2223@lisp
2224(gethost "www.gnu.org")
2225@result{} #("www.gnu.org" () 2 4 (3353880842))
2226
2227(gethostbyname "www.emacs.org")
2228@result{} #("emacs.org" ("www.emacs.org") 2 4 (1073448978))
2229@end lisp
a0e07ba4
NJ
2230@end deffn
2231
2232The following procedures may be used to step through the host
2233database from beginning to end.
2234
8f85c0c6 2235@deffn {Scheme Procedure} sethostent [stayopen]
a0e07ba4
NJ
2236Initialize an internal stream from which host objects may be read. This
2237procedure must be called before any calls to @code{gethostent}, and may
2238also be called afterward to reset the host entry stream. If
2239@var{stayopen} is supplied and is not @code{#f}, the database is not
2240closed by subsequent @code{gethostbyname} or @code{gethostbyaddr} calls,
2241possibly giving an efficiency gain.
2242@end deffn
2243
8f85c0c6 2244@deffn {Scheme Procedure} gethostent
a0e07ba4
NJ
2245Return the next host object from the host database, or @code{#f} if
2246there are no more hosts to be found (or an error has been encountered).
2247This procedure may not be used before @code{sethostent} has been called.
2248@end deffn
2249
8f85c0c6 2250@deffn {Scheme Procedure} endhostent
a0e07ba4
NJ
2251Close the stream used by @code{gethostent}. The return value is unspecified.
2252@end deffn
2253
8f85c0c6
NJ
2254@deffn {Scheme Procedure} sethost [stayopen]
2255@deffnx {C Function} scm_sethost (stayopen)
a0e07ba4
NJ
2256If @var{stayopen} is omitted, this is equivalent to @code{endhostent}.
2257Otherwise it is equivalent to @code{sethostent stayopen}.
2258@end deffn
3229f68b
MV
2259
2260@subsubheading The Network Database
f3dfb8ac 2261@cindex network database
a0e07ba4
NJ
2262
2263The following functions accept an object representing a network
2264and return a selected component:
2265
8f85c0c6 2266@deffn {Scheme Procedure} netent:name net
7403e409 2267The ``official'' network name.
a0e07ba4 2268@end deffn
8f85c0c6 2269@deffn {Scheme Procedure} netent:aliases net
a0e07ba4
NJ
2270A list of aliases for the network.
2271@end deffn
8f85c0c6 2272@deffn {Scheme Procedure} netent:addrtype net
a0e07ba4
NJ
2273The type of the network number. Currently, this returns only
2274@code{AF_INET}.
2275@end deffn
8f85c0c6 2276@deffn {Scheme Procedure} netent:net net
a0e07ba4
NJ
2277The network number.
2278@end deffn
2279
2280The following procedures are used to search the network database:
2281
8f85c0c6
NJ
2282@deffn {Scheme Procedure} getnet [net]
2283@deffnx {Scheme Procedure} getnetbyname net-name
2284@deffnx {Scheme Procedure} getnetbyaddr net-number
2285@deffnx {C Function} scm_getnet (net)
a0e07ba4
NJ
2286Look up a network by name or net number in the network database. The
2287@var{net-name} argument must be a string, and the @var{net-number}
2288argument must be an integer. @code{getnet} will accept either type of
2289argument, behaving like @code{getnetent} (see below) if no arguments are
2290given.
2291@end deffn
2292
2293The following procedures may be used to step through the network
2294database from beginning to end.
2295
8f85c0c6 2296@deffn {Scheme Procedure} setnetent [stayopen]
a0e07ba4
NJ
2297Initialize an internal stream from which network objects may be read. This
2298procedure must be called before any calls to @code{getnetent}, and may
2299also be called afterward to reset the net entry stream. If
2300@var{stayopen} is supplied and is not @code{#f}, the database is not
2301closed by subsequent @code{getnetbyname} or @code{getnetbyaddr} calls,
2302possibly giving an efficiency gain.
2303@end deffn
2304
8f85c0c6 2305@deffn {Scheme Procedure} getnetent
a0e07ba4
NJ
2306Return the next entry from the network database.
2307@end deffn
2308
8f85c0c6 2309@deffn {Scheme Procedure} endnetent
a0e07ba4
NJ
2310Close the stream used by @code{getnetent}. The return value is unspecified.
2311@end deffn
2312
8f85c0c6
NJ
2313@deffn {Scheme Procedure} setnet [stayopen]
2314@deffnx {C Function} scm_setnet (stayopen)
a0e07ba4
NJ
2315If @var{stayopen} is omitted, this is equivalent to @code{endnetent}.
2316Otherwise it is equivalent to @code{setnetent stayopen}.
2317@end deffn
2318
3229f68b 2319@subsubheading The Protocol Database
f3dfb8ac
KR
2320@cindex @file{/etc/protocols}
2321@cindex protocols
2322@cindex network protocols
a0e07ba4
NJ
2323
2324The following functions accept an object representing a protocol
2325and return a selected component:
2326
8f85c0c6 2327@deffn {Scheme Procedure} protoent:name protocol
7403e409 2328The ``official'' protocol name.
a0e07ba4 2329@end deffn
8f85c0c6 2330@deffn {Scheme Procedure} protoent:aliases protocol
a0e07ba4
NJ
2331A list of aliases for the protocol.
2332@end deffn
8f85c0c6 2333@deffn {Scheme Procedure} protoent:proto protocol
a0e07ba4
NJ
2334The protocol number.
2335@end deffn
2336
2337The following procedures are used to search the protocol database:
2338
8f85c0c6
NJ
2339@deffn {Scheme Procedure} getproto [protocol]
2340@deffnx {Scheme Procedure} getprotobyname name
2341@deffnx {Scheme Procedure} getprotobynumber number
2342@deffnx {C Function} scm_getproto (protocol)
a0e07ba4
NJ
2343Look up a network protocol by name or by number. @code{getprotobyname}
2344takes a string argument, and @code{getprotobynumber} takes an integer
2345argument. @code{getproto} will accept either type, behaving like
2346@code{getprotoent} (see below) if no arguments are supplied.
2347@end deffn
2348
2349The following procedures may be used to step through the protocol
2350database from beginning to end.
2351
8f85c0c6 2352@deffn {Scheme Procedure} setprotoent [stayopen]
a0e07ba4
NJ
2353Initialize an internal stream from which protocol objects may be read. This
2354procedure must be called before any calls to @code{getprotoent}, and may
2355also be called afterward to reset the protocol entry stream. If
2356@var{stayopen} is supplied and is not @code{#f}, the database is not
2357closed by subsequent @code{getprotobyname} or @code{getprotobynumber} calls,
2358possibly giving an efficiency gain.
2359@end deffn
2360
8f85c0c6 2361@deffn {Scheme Procedure} getprotoent
a0e07ba4
NJ
2362Return the next entry from the protocol database.
2363@end deffn
2364
8f85c0c6 2365@deffn {Scheme Procedure} endprotoent
a0e07ba4
NJ
2366Close the stream used by @code{getprotoent}. The return value is unspecified.
2367@end deffn
2368
8f85c0c6
NJ
2369@deffn {Scheme Procedure} setproto [stayopen]
2370@deffnx {C Function} scm_setproto (stayopen)
a0e07ba4
NJ
2371If @var{stayopen} is omitted, this is equivalent to @code{endprotoent}.
2372Otherwise it is equivalent to @code{setprotoent stayopen}.
2373@end deffn
2374
3229f68b 2375@subsubheading The Service Database
f3dfb8ac
KR
2376@cindex @file{/etc/services}
2377@cindex services
2378@cindex network services
a0e07ba4
NJ
2379
2380The following functions accept an object representing a service
2381and return a selected component:
2382
8f85c0c6 2383@deffn {Scheme Procedure} servent:name serv
7403e409 2384The ``official'' name of the network service.
a0e07ba4 2385@end deffn
8f85c0c6 2386@deffn {Scheme Procedure} servent:aliases serv
a0e07ba4
NJ
2387A list of aliases for the network service.
2388@end deffn
8f85c0c6 2389@deffn {Scheme Procedure} servent:port serv
a0e07ba4
NJ
2390The Internet port used by the service.
2391@end deffn
8f85c0c6 2392@deffn {Scheme Procedure} servent:proto serv
a0e07ba4
NJ
2393The protocol used by the service. A service may be listed many times
2394in the database under different protocol names.
2395@end deffn
2396
2397The following procedures are used to search the service database:
2398
8f85c0c6
NJ
2399@deffn {Scheme Procedure} getserv [name [protocol]]
2400@deffnx {Scheme Procedure} getservbyname name protocol
2401@deffnx {Scheme Procedure} getservbyport port protocol
2402@deffnx {C Function} scm_getserv (name, protocol)
a0e07ba4
NJ
2403Look up a network service by name or by service number, and return a
2404network service object. The @var{protocol} argument specifies the name
2405of the desired protocol; if the protocol found in the network service
2406database does not match this name, a system error is signalled.
2407
2408The @code{getserv} procedure will take either a service name or number
2409as its first argument; if given no arguments, it behaves like
2410@code{getservent} (see below).
bcf009c3
NJ
2411
2412@lisp
2413(getserv "imap" "tcp")
2414@result{} #("imap2" ("imap") 143 "tcp")
2415
2416(getservbyport 88 "udp")
2417@result{} #("kerberos" ("kerberos5" "krb5") 88 "udp")
2418@end lisp
a0e07ba4
NJ
2419@end deffn
2420
2421The following procedures may be used to step through the service
2422database from beginning to end.
2423
8f85c0c6 2424@deffn {Scheme Procedure} setservent [stayopen]
a0e07ba4
NJ
2425Initialize an internal stream from which service objects may be read. This
2426procedure must be called before any calls to @code{getservent}, and may
2427also be called afterward to reset the service entry stream. If
2428@var{stayopen} is supplied and is not @code{#f}, the database is not
2429closed by subsequent @code{getservbyname} or @code{getservbyport} calls,
2430possibly giving an efficiency gain.
2431@end deffn
2432
8f85c0c6 2433@deffn {Scheme Procedure} getservent
a0e07ba4
NJ
2434Return the next entry from the services database.
2435@end deffn
2436
8f85c0c6 2437@deffn {Scheme Procedure} endservent
a0e07ba4
NJ
2438Close the stream used by @code{getservent}. The return value is unspecified.
2439@end deffn
2440
8f85c0c6
NJ
2441@deffn {Scheme Procedure} setserv [stayopen]
2442@deffnx {C Function} scm_setserv (stayopen)
a0e07ba4
NJ
2443If @var{stayopen} is omitted, this is equivalent to @code{endservent}.
2444Otherwise it is equivalent to @code{setservent stayopen}.
2445@end deffn
2446
13ed23db
KR
2447
2448@node Network Socket Address
2449@subsubsection Network Socket Address
2450@cindex socket
2451@cindex network socket
2452
2453A socket address object identifies a socket endpoint for
2454communication. In the case of @code{AF_INET} for instance, the host
2455address is only the machine (or interface on the machine), a port
2456number is also needed to specify a particular open socket in a running
2457client or server process.
2458
2459A socket address object can be created with,
2460
2461@defun {Scheme Procedure} make-socket-address AF_INET ipv4addr port
2462@defunx {Scheme Procedure} make-socket-address AF_INET6 ipv6addr port [flowinfo [scopeid]]
2463@defunx {Scheme Procedure} make-socket-address AF_UNIX path
2464Return a new socket address object. The first argument is the address
2465family, one of the @code{AF} constants, then the arguments vary
2466according to the family.
2467
2468For @code{AF_INET} the arguments are an IPv4 network address number
2469and a port number.
2470
2471For @code{AF_INET6} the arguments are an IPv6 network address number
2472and a port number. Optional @var{flowinfo} and @var{scopeid}
2473arguments may be given (both integers, default 0).
2474
2475For @code{AF_UNIX} the argument is a filename (a string).
2476@end defun
2477
2478@noindent
2479The following functions access the fields of a socket address object,
2480
2481@deffn {Scheme Procedure} sockaddr:fam sa
2482Return the address family from socket address object @var{sa}. This
2483is one of the @code{AF} constants (eg. @code{AF_INET}).
2484@end deffn
2485
2486@deffn {Scheme Procedure} sockaddr:path sa
2487For an @code{AF_UNIX} socket address object @var{sa}, return the
2488filename.
2489@end deffn
2490
2491@deffn {Scheme Procedure} sockaddr:addr sa
2492For an @code{AF_INET} or @code{AF_INET6} socket address object
2493@var{sa}, return the network address number.
2494@end deffn
2495
2496@deffn {Scheme Procedure} sockaddr:port sa
2497For an @code{AF_INET} or @code{AF_INET6} socket address object
2498@var{sa}, return the port number.
2499@end deffn
2500
2501@deffn {Scheme Procedure} sockaddr:flowinfo sa
2502For an @code{AF_INET6} socket address object @var{sa}, return the
2503flowinfo value.
2504@end deffn
2505
2506@deffn {Scheme Procedure} sockaddr:scopeid sa
2507For an @code{AF_INET6} socket address object @var{sa}, return the
2508scope ID value.
2509@end deffn
2510
2511
a0e07ba4 2512@node Network Sockets and Communication
3229f68b 2513@subsubsection Network Sockets and Communication
f3dfb8ac
KR
2514@cindex socket
2515@cindex network socket
a0e07ba4
NJ
2516
2517Socket ports can be created using @code{socket} and @code{socketpair}.
2518The ports are initially unbuffered, to make reading and writing to the
2519same port more reliable. A buffer can be added to the port using
7403e409 2520@code{setvbuf}; see @ref{Ports and File Descriptors}.
a0e07ba4 2521
9e996fb1
KR
2522Most systems have limits on how many files and sockets can be open, so
2523it's strongly recommended that socket ports be closed explicitly when
2524no longer required (@pxref{Ports}).
2525
7403e409
NJ
2526The convention used for ``host'' vs.@: ``network'' addresses is that
2527addresses are always held in host order at the Scheme level. The
2528procedures in this section automatically convert between host and
2529network order when required. The arguments and return values are thus
2530in host order.
a0e07ba4 2531
8f85c0c6
NJ
2532@deffn {Scheme Procedure} socket family style proto
2533@deffnx {C Function} scm_socket (family, style, proto)
a0e07ba4 2534Return a new socket port of the type specified by @var{family},
3dba2dd9
KR
2535@var{style} and @var{proto}. All three parameters are integers. The
2536possible values for @var{family} are as follows, where supported by
2537the system,
2538
2539@defvar PF_UNIX
2540@defvarx PF_INET
2541@defvarx PF_INET6
2542@end defvar
2543
2544The possible values for @var{style} are as follows, again where
2545supported by the system,
2546
2547@defvar SOCK_STREAM
2548@defvarx SOCK_DGRAM
2549@defvarx SOCK_RAW
0bd094c2
KR
2550@defvarx SOCK_RDM
2551@defvarx SOCK_SEQPACKET
3dba2dd9 2552@end defvar
a0e07ba4
NJ
2553
2554@var{proto} can be obtained from a protocol name using
3dba2dd9
KR
2555@code{getprotobyname} (@pxref{Network Databases}). A value of zero
2556means the default protocol, which is usually right.
a0e07ba4 2557
3dba2dd9
KR
2558A socket cannot by used for communication until it has been connected
2559somewhere, usually with either @code{connect} or @code{accept} below.
a0e07ba4
NJ
2560@end deffn
2561
8f85c0c6
NJ
2562@deffn {Scheme Procedure} socketpair family style proto
2563@deffnx {C Function} scm_socketpair (family, style, proto)
497cbe20
KR
2564Return a pair, the @code{car} and @code{cdr} of which are two unnamed
2565socket ports connected to each other. The connection is full-duplex,
2566so data can be transferred in either direction between the two.
2567
2568@var{family}, @var{style} and @var{proto} are as per @code{socket}
2569above. But many systems only support socket pairs in the
2570@code{PF_UNIX} family. Zero is likely to be the only meaningful value
2571for @var{proto}.
a0e07ba4
NJ
2572@end deffn
2573
8f85c0c6 2574@deffn {Scheme Procedure} getsockopt sock level optname
8b6b6ce5 2575@deffnx {Scheme Procedure} setsockopt sock level optname value
8f85c0c6 2576@deffnx {C Function} scm_getsockopt (sock, level, optname)
8b6b6ce5
KR
2577@deffnx {C Function} scm_setsockopt (sock, level, optname, value)
2578Get or set an option on socket port @var{sock}. @code{getsockopt}
2579returns the current value. @code{setsockopt} sets a value and the
2580return is unspecified.
2581
2582@var{level} is an integer specifying a protocol layer, either
2583@code{SOL_SOCKET} for socket level options, or a protocol number from
2584the @code{IPPROTO} constants or @code{getprotoent} (@pxref{Network
2585Databases}).
2586
2587@defvar SOL_SOCKET
2588@defvarx IPPROTO_IP
2589@defvarx IPPROTO_TCP
2590@defvarx IPPROTO_UDP
2591@end defvar
a0e07ba4 2592
8b6b6ce5
KR
2593@var{optname} is an integer specifying an option within the protocol
2594layer.
2595
2596For @code{SOL_SOCKET} level the following @var{optname}s are defined
2597(when provided by the system). For their meaning see
2598@ref{Socket-Level Options,,, libc, The GNU C Library Reference
2599Manual}, or @command{man 7 socket}.
2600
2601@defvar SO_DEBUG
2602@defvarx SO_REUSEADDR
2603@defvarx SO_STYLE
2604@defvarx SO_TYPE
2605@defvarx SO_ERROR
2606@defvarx SO_DONTROUTE
2607@defvarx SO_BROADCAST
2608@defvarx SO_SNDBUF
2609@defvarx SO_RCVBUF
2610@defvarx SO_KEEPALIVE
2611@defvarx SO_OOBINLINE
2612@defvarx SO_NO_CHECK
2613@defvarx SO_PRIORITY
2614The @var{value} taken or returned is an integer.
2615@end defvar
a0e07ba4 2616
8b6b6ce5
KR
2617@defvar SO_LINGER
2618The @var{value} taken or returned is a pair of integers
2619@code{(@var{ENABLE} . @var{TIMEOUT})}. On old systems without timeout
2620support (ie.@: without @code{struct linger}), only @var{ENABLE} has an
2621effect but the value in Guile is always a pair.
2622@end defvar
a0e07ba4 2623
8b6b6ce5
KR
2624@c Note that we refer only to ``man ip'' here. On GNU/Linux it's
2625@c ``man 7 ip'' but on NetBSD it's ``man 4 ip''.
2626@c
2627For IP level (@code{IPPROTO_IP}) the following @var{optname}s are
2628defined (when provided by the system). See @command{man ip} for what
2629they mean.
2630
2631@defvar IP_ADD_MEMBERSHIP
2632@defvarx IP_DROP_MEMBERSHIP
2633These can be used only with @code{setsockopt}, not @code{getsockopt}.
2634@var{value} is a pair @code{(@var{MULTIADDR} . @var{INTERFACEADDR})}
2635of IPv4 addresses (@pxref{Network Address Conversion}).
2636@var{MULTIADDR} is a multicast address to be added to or dropped from
2637the interface @var{INTERFACEADDR}. @var{INTERFACEADDR} can be
2638@code{INADDR_ANY} to have the system select the interface.
2639@var{INTERFACEADDR} can also be an interface index number, on systems
2640supporting that.
2641@end defvar
a0e07ba4
NJ
2642@end deffn
2643
8f85c0c6
NJ
2644@deffn {Scheme Procedure} shutdown sock how
2645@deffnx {C Function} scm_shutdown (sock, how)
a0e07ba4 2646Sockets can be closed simply by using @code{close-port}. The
85a9b4ed 2647@code{shutdown} procedure allows reception or transmission on a
a0e07ba4
NJ
2648connection to be shut down individually, according to the parameter
2649@var{how}:
2650
2651@table @asis
2652@item 0
2653Stop receiving data for this socket. If further data arrives, reject it.
2654@item 1
2655Stop trying to transmit data from this socket. Discard any
2656data waiting to be sent. Stop looking for acknowledgement of
2657data already sent; don't retransmit it if it is lost.
2658@item 2
2659Stop both reception and transmission.
2660@end table
2661
2662The return value is unspecified.
2663@end deffn
2664
13ed23db
KR
2665@deffn {Scheme Procedure} connect sock sockaddr
2666@deffnx {Scheme Procedure} connect sock AF_INET ipv4addr port
2667@deffnx {Scheme Procedure} connect sock AF_INET6 ipv6addr port [flowinfo [scopeid]]
2668@deffnx {Scheme Procedure} connect sock AF_UNIX path
8f85c0c6 2669@deffnx {C Function} scm_connect (sock, fam, address, args)
13ed23db
KR
2670Initiate a connection on socket port @var{sock} to a given address.
2671The destination is either a socket address object, or arguments the
2672same as @code{make-socket-address} would take to make such an object
2673(@pxref{Network Socket Address}). The return value is unspecified.
a0e07ba4 2674
13ed23db
KR
2675@example
2676(connect sock AF_INET INADDR_LOCALHOST 23)
2677(connect sock (make-socket-address AF_INET INADDR_LOCALHOST 23))
2678@end example
a0e07ba4
NJ
2679@end deffn
2680
13ed23db
KR
2681@deffn {Scheme Procedure} bind sock sockaddr
2682@deffnx {Scheme Procedure} bind sock AF_INET ipv4addr port
2683@deffnx {Scheme Procedure} bind sock AF_INET6 ipv6addr port [flowinfo [scopeid]]
2684@deffnx {Scheme Procedure} bind sock AF_UNIX path
8f85c0c6 2685@deffnx {C Function} scm_bind (sock, fam, address, args)
13ed23db
KR
2686Bind socket port @var{sock} to the given address. The address is
2687either a socket address object, or arguments the same as
2688@code{make-socket-address} would take to make such an object
2689(@pxref{Network Socket Address}). The return value is unspecified.
a0e07ba4 2690
13ed23db
KR
2691Generally a socket is only explicitly bound to a particular address
2692when making a server, ie. to listen on a particular port. For an
2693outgoing connection the system will assign a local address
2694automatically, if not already bound.
a0e07ba4 2695
13ed23db
KR
2696@example
2697(bind sock AF_INET INADDR_ANY 12345)
2698(bind sock (make-socket-object AF_INET INADDR_ANY 12345))
2699@end example
a0e07ba4
NJ
2700@end deffn
2701
8f85c0c6
NJ
2702@deffn {Scheme Procedure} listen sock backlog
2703@deffnx {C Function} scm_listen (sock, backlog)
a0e07ba4
NJ
2704Enable @var{sock} to accept connection
2705requests. @var{backlog} is an integer specifying
2706the maximum length of the queue for pending connections.
2707If the queue fills, new clients will fail to connect until
2708the server calls @code{accept} to accept a connection from
2709the queue.
2710
2711The return value is unspecified.
2712@end deffn
2713
8f85c0c6
NJ
2714@deffn {Scheme Procedure} accept sock
2715@deffnx {C Function} scm_accept (sock)
13ed23db
KR
2716Accept a connection from socket port @var{sock} which has been enabled
2717for listening with @code{listen} above. If there are no incoming
2718connections in the queue, wait until one is available (unless the
2719non-blocking option has been set on the socket).
a0e07ba4 2720
13ed23db
KR
2721The return value is a pair. The @code{car} is a new socket port,
2722connected and ready to communicate. The @code{cdr} is a socket
2723address object (@pxref{Network Socket Address}) which is where the
2724remote connection is from (like @code{getpeername} below).
a0e07ba4 2725
13ed23db
KR
2726All communication takes place using the new socket returned. The
2727given @var{sock} remains bound and listening, and @code{accept} may be
2728called on it again to get another incoming connection when desired.
2ce02471 2729@end deffn
a0e07ba4 2730
8f85c0c6
NJ
2731@deffn {Scheme Procedure} getsockname sock
2732@deffnx {C Function} scm_getsockname (sock)
13ed23db
KR
2733Return a socket address object which is the where @var{sock} is bound
2734locally. @var{sock} may have obtained its local address from
2735@code{bind} (above), or if a @code{connect} is done with an otherwise
2736unbound socket (which is usual) then the system will have assigned an
2737address.
2738
2739Note that on many systems the address of a socket in the
2740@code{AF_UNIX} namespace cannot be read.
a0e07ba4
NJ
2741@end deffn
2742
8f85c0c6
NJ
2743@deffn {Scheme Procedure} getpeername sock
2744@deffnx {C Function} scm_getpeername (sock)
13ed23db
KR
2745Return a socket address object which is where @var{sock} is connected
2746to, ie. the remote endpoint.
2747
2748Note that on many systems the address of a socket in the
2749@code{AF_UNIX} namespace cannot be read.
a0e07ba4
NJ
2750@end deffn
2751
8f85c0c6
NJ
2752@deffn {Scheme Procedure} recv! sock buf [flags]
2753@deffnx {C Function} scm_recv (sock, buf, flags)
a0e07ba4
NJ
2754Receive data from a socket port.
2755@var{sock} must already
2756be bound to the address from which data is to be received.
2757@var{buf} is a string into which
2758the data will be written. The size of @var{buf} limits
2759the amount of
2760data which can be received: in the case of packet
2761protocols, if a packet larger than this limit is encountered
2762then some data
2763will be irrevocably lost.
2764
2ce02471
NJ
2765@vindex MSG_OOB
2766@vindex MSG_PEEK
2767@vindex MSG_DONTROUTE
7403e409
NJ
2768The optional @var{flags} argument is a value or bitwise OR of
2769@code{MSG_OOB}, @code{MSG_PEEK}, @code{MSG_DONTROUTE} etc.
a0e07ba4
NJ
2770
2771The value returned is the number of bytes read from the
2772socket.
2773
2774Note that the data is read directly from the socket file
2775descriptor:
2776any unread buffered port data is ignored.
2777@end deffn
2778
8f85c0c6
NJ
2779@deffn {Scheme Procedure} send sock message [flags]
2780@deffnx {C Function} scm_send (sock, message, flags)
2ce02471
NJ
2781@vindex MSG_OOB
2782@vindex MSG_PEEK
2783@vindex MSG_DONTROUTE
a0e07ba4 2784Transmit the string @var{message} on a socket port @var{sock}.
7403e409
NJ
2785@var{sock} must already be bound to a destination address. The value
2786returned is the number of bytes transmitted---it's possible for this
2787to be less than the length of @var{message} if the socket is set to be
2788non-blocking. The optional @var{flags} argument is a value or bitwise
2789OR of @code{MSG_OOB}, @code{MSG_PEEK}, @code{MSG_DONTROUTE} etc.
a0e07ba4
NJ
2790
2791Note that the data is written directly to the socket
2792file descriptor:
2793any unflushed buffered port data is ignored.
2794@end deffn
2795
8f85c0c6
NJ
2796@deffn {Scheme Procedure} recvfrom! sock str [flags [start [end]]]
2797@deffnx {C Function} scm_recvfrom (sock, str, flags, start, end)
a0e07ba4
NJ
2798Return data from the socket port @var{sock} and also
2799information about where the data was received from.
2800@var{sock} must already be bound to the address from which
2801data is to be received. @code{str}, is a string into which the
2802data will be written. The size of @var{str} limits the amount
2803of data which can be received: in the case of packet protocols,
2804if a packet larger than this limit is encountered then some
2805data will be irrevocably lost.
2806
2ce02471
NJ
2807@vindex MSG_OOB
2808@vindex MSG_PEEK
2809@vindex MSG_DONTROUTE
a0e07ba4
NJ
2810The optional @var{flags} argument is a value or bitwise OR of
2811@code{MSG_OOB}, @code{MSG_PEEK}, @code{MSG_DONTROUTE} etc.
2812
7403e409
NJ
2813The value returned is a pair: the @acronym{CAR} is the number of
2814bytes read from the socket and the @acronym{CDR} an address object
a0e07ba4
NJ
2815in the same form as returned by @code{accept}. The address
2816will given as @code{#f} if not available, as is usually the
2817case for stream sockets.
2818
2819The @var{start} and @var{end} arguments specify a substring of
2820@var{str} to which the data should be written.
2821
2822Note that the data is read directly from the socket file
2823descriptor: any unread buffered port data is ignored.
2824@end deffn
2825
13ed23db
KR
2826@deffn {Scheme Procedure} sendto sock message sockaddr [flags]
2827@deffnx {Scheme Procedure} sendto sock message AF_INET ipv4addr port [flags]
2828@deffnx {Scheme Procedure} sendto sock message AF_INET6 ipv6addr port [flowinfo [scopeid [flags]]]
2829@deffnx {Scheme Procedure} sendto sock message AF_UNIX path [flags]
8f85c0c6 2830@deffnx {C Function} scm_sendto (sock, message, fam, address, args_and_flags)
13ed23db
KR
2831Transmit the string @var{message} as a datagram on socket port
2832@var{sock}. The destination is specified either as a socket address
2833object, or as arguments the same as would be taken by
2834@code{make-socket-address} to create such an object (@pxref{Network
2835Socket Address}).
2836
2837The destination address may be followed by an optional @var{flags}
2838argument which is a @code{logior} (@pxref{Bitwise Operations}) of
2839@code{MSG_OOB}, @code{MSG_PEEK}, @code{MSG_DONTROUTE} etc.
a0e07ba4
NJ
2840
2841The value returned is the number of bytes transmitted --
2842it's possible for
2843this to be less than the length of @var{message} if the
2844socket is
2845set to be non-blocking.
2846Note that the data is written directly to the socket
2847file descriptor:
2848any unflushed buffered port data is ignored.
2849@end deffn
2850
2851The following functions can be used to convert short and long integers
7403e409 2852between ``host'' and ``network'' order. Although the procedures above do
a0e07ba4
NJ
2853this automatically for addresses, the conversion will still need to
2854be done when sending or receiving encoded integer data from the network.
2855
8f85c0c6
NJ
2856@deffn {Scheme Procedure} htons value
2857@deffnx {C Function} scm_htons (value)
a0e07ba4
NJ
2858Convert a 16 bit quantity from host to network byte ordering.
2859@var{value} is packed into 2 bytes, which are then converted
2860and returned as a new integer.
2861@end deffn
2862
8f85c0c6
NJ
2863@deffn {Scheme Procedure} ntohs value
2864@deffnx {C Function} scm_ntohs (value)
a0e07ba4
NJ
2865Convert a 16 bit quantity from network to host byte ordering.
2866@var{value} is packed into 2 bytes, which are then converted
2867and returned as a new integer.
2868@end deffn
2869
8f85c0c6
NJ
2870@deffn {Scheme Procedure} htonl value
2871@deffnx {C Function} scm_htonl (value)
a0e07ba4
NJ
2872Convert a 32 bit quantity from host to network byte ordering.
2873@var{value} is packed into 4 bytes, which are then converted
2874and returned as a new integer.
2875@end deffn
2876
8f85c0c6
NJ
2877@deffn {Scheme Procedure} ntohl value
2878@deffnx {C Function} scm_ntohl (value)
a0e07ba4
NJ
2879Convert a 32 bit quantity from network to host byte ordering.
2880@var{value} is packed into 4 bytes, which are then converted
2881and returned as a new integer.
2882@end deffn
2883
2884These procedures are inconvenient to use at present, but consider:
2885
2886@example
2887(define write-network-long
2888 (lambda (value port)
2889 (let ((v (make-uniform-vector 1 1 0)))
2890 (uniform-vector-set! v 0 (htonl value))
2891 (uniform-vector-write v port))))
2892
2893(define read-network-long
2894 (lambda (port)
2895 (let ((v (make-uniform-vector 1 1 0)))
2896 (uniform-vector-read! v port)
2897 (ntohl (uniform-vector-ref v 0)))))
2898@end example
2899
bcf009c3
NJ
2900
2901@node Internet Socket Examples
3229f68b 2902@subsubsection Network Socket Examples
f3dfb8ac
KR
2903@cindex network examples
2904@cindex socket examples
bcf009c3 2905
3229f68b 2906The following give examples of how to use network sockets.
bcf009c3 2907
3229f68b 2908@subsubheading Internet Socket Client Example
bcf009c3
NJ
2909
2910@cindex socket client example
2911The following example demonstrates an Internet socket client.
2912It connects to the HTTP daemon running on the local machine and
2913returns the contents of the root index URL.
2914
2915@example
a8d0313f 2916(let ((s (socket PF_INET SOCK_STREAM 0)))
bcf009c3
NJ
2917 (connect s AF_INET (inet-aton "127.0.0.1") 80)
2918 (display "GET / HTTP/1.0\r\n\r\n" s)
2919
2920 (do ((line (read-line s) (read-line s)))
2921 ((eof-object? line))
2922 (display line)
2923 (newline)))
2924@end example
2925
2926
3229f68b 2927@subsubheading Internet Socket Server Example
bcf009c3
NJ
2928
2929@cindex socket server example
2930The following example shows a simple Internet server which listens on
2931port 2904 for incoming connections and sends a greeting back to the
2932client.
2933
2934@example
a8d0313f 2935(let ((s (socket PF_INET SOCK_STREAM 0)))
bcf009c3 2936 (setsockopt s SOL_SOCKET SO_REUSEADDR 1)
7403e409
NJ
2937 ;; @r{Specific address?}
2938 ;; @r{(bind s AF_INET (inet-aton "127.0.0.1") 2904)}
bcf009c3
NJ
2939 (bind s AF_INET INADDR_ANY 2904)
2940 (listen s 5)
2941
2942 (simple-format #t "Listening for clients in pid: ~S" (getpid))
2943 (newline)
2944
2945 (while #t
2946 (let* ((client-connection (accept s))
2947 (client-details (cdr client-connection))
2948 (client (car client-connection)))
2949 (simple-format #t "Got new client connection: ~S"
2950 client-details)
2951 (newline)
2952 (simple-format #t "Client address: ~S"
2953 (gethostbyaddr
2954 (sockaddr:addr client-details)))
2955 (newline)
7403e409 2956 ;; @r{Send back the greeting to the client port}
bcf009c3
NJ
2957 (display "Hello client\r\n" client)
2958 (close client))))
2959@end example
2960
2961
a0e07ba4 2962@node System Identification
3229f68b 2963@subsection System Identification
f3dfb8ac 2964@cindex system name
a0e07ba4
NJ
2965
2966This section lists the various procedures Guile provides for accessing
2967information about the system it runs on.
2968
8f85c0c6
NJ
2969@deffn {Scheme Procedure} uname
2970@deffnx {C Function} scm_uname ()
a0e07ba4
NJ
2971Return an object with some information about the computer
2972system the program is running on.
a0e07ba4
NJ
2973
2974The following procedures accept an object as returned by @code{uname}
2975and return a selected component.
2976
2ce02471 2977@deffn {Scheme Procedure} utsname:sysname un
a0e07ba4 2978The name of the operating system.
2ce02471
NJ
2979@end deffn
2980@deffn {Scheme Procedure} utsname:nodename un
a0e07ba4 2981The network name of the computer.
2ce02471
NJ
2982@end deffn
2983@deffn {Scheme Procedure} utsname:release un
a0e07ba4 2984The current release level of the operating system implementation.
2ce02471
NJ
2985@end deffn
2986@deffn {Scheme Procedure} utsname:version un
a0e07ba4 2987The current version level within the release of the operating system.
2ce02471
NJ
2988@end deffn
2989@deffn {Scheme Procedure} utsname:machine un
a0e07ba4 2990A description of the hardware.
2ce02471
NJ
2991@end deffn
2992@end deffn
a0e07ba4 2993
8f85c0c6
NJ
2994@deffn {Scheme Procedure} gethostname
2995@deffnx {C Function} scm_gethostname ()
f3dfb8ac 2996@cindex host name
a0e07ba4
NJ
2997Return the host name of the current processor.
2998@end deffn
2999
8f85c0c6
NJ
3000@deffn {Scheme Procedure} sethostname name
3001@deffnx {C Function} scm_sethostname (name)
a0e07ba4
NJ
3002Set the host name of the current processor to @var{name}. May
3003only be used by the superuser. The return value is not
3004specified.
3005@end deffn
3006
a0e07ba4 3007@node Locales
3229f68b 3008@subsection Locales
f3dfb8ac 3009@cindex locale
a0e07ba4 3010
8f85c0c6
NJ
3011@deffn {Scheme Procedure} setlocale category [locale]
3012@deffnx {C Function} scm_setlocale (category, locale)
74f76d62
KR
3013Get or set the current locale, used for various internationalizations.
3014Locales are strings, such as @samp{sv_SE}.
3015
bdd46043 3016If @var{locale} is given then the locale for the given @var{category} is set
74f76d62
KR
3017and the new value returned. If @var{locale} is not given then the
3018current value is returned. @var{category} should be one of the
3019following values
3020
3021@defvar LC_ALL
3022@defvarx LC_COLLATE
3023@defvarx LC_CTYPE
3024@defvarx LC_MESSAGES
3025@defvarx LC_MONETARY
3026@defvarx LC_NUMERIC
3027@defvarx LC_TIME
3028@end defvar
3029
f3dfb8ac 3030@cindex @code{LANG}
74f76d62
KR
3031A common usage is @samp{(setlocale LC_ALL "")}, which initializes all
3032categories based on standard environment variables (@code{LANG} etc).
3033For full details on categories and locale names @pxref{Locales,,
3034Locales and Internationalization, libc, The GNU C Library Reference
3035Manual}.
a0e07ba4
NJ
3036@end deffn
3037
3038@node Encryption
3229f68b 3039@subsection Encryption
f3dfb8ac 3040@cindex encryption
a0e07ba4
NJ
3041
3042Please note that the procedures in this section are not suited for
3043strong encryption, they are only interfaces to the well-known and
3044common system library functions of the same name. They are just as good
3045(or bad) as the underlying functions, so you should refer to your system
3046documentation before using them.
3047
8f85c0c6
NJ
3048@deffn {Scheme Procedure} crypt key salt
3049@deffnx {C Function} scm_crypt (key, salt)
a0e07ba4 3050Encrypt @var{key} using @var{salt} as the salt value to the
9401323e 3051crypt(3) library call.
a0e07ba4
NJ
3052@end deffn
3053
5f378d17
TTN
3054Although @code{getpass} is not an encryption procedure per se, it
3055appears here because it is often used in combination with @code{crypt}:
a0e07ba4 3056
8f85c0c6
NJ
3057@deffn {Scheme Procedure} getpass prompt
3058@deffnx {C Function} scm_getpass (prompt)
f3dfb8ac 3059@cindex password
a0e07ba4
NJ
3060Display @var{prompt} to the standard error output and read
3061a password from @file{/dev/tty}. If this file is not
3062accessible, it reads from standard input. The password may be
3063up to 127 characters in length. Additional characters and the
3064terminating newline character are discarded. While reading
3065the password, echoing and the generation of signals by special
3066characters is disabled.
3067@end deffn
5982a8e0
KR
3068
3069
3070@c Local Variables:
3071@c TeX-master: "guile.texi"
3072@c End: