*** empty log message ***
[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
14 have different representations.
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
a0e07ba4
NJ
880Return a name in the file system that does not match any
881existing file. However there is no guarantee that another
882process will not create the file after @code{tmpnam} is called.
883Care should be taken if opening the file, e.g., use the
884@code{O_EXCL} open flag or use @code{mkstemp!} instead.
885@end deffn
886
8f85c0c6
NJ
887@deffn {Scheme Procedure} mkstemp! tmpl
888@deffnx {C Function} scm_mkstemp (tmpl)
f3dfb8ac 889@cindex temporary file
a0e07ba4
NJ
890Create a new unique file in the file system and returns a new
891buffered port open for reading and writing to the file.
24ec486c 892
a0e07ba4 893@var{tmpl} is a string specifying where the file should be
7403e409 894created: it must end with @samp{XXXXXX} and will be changed in
a0e07ba4 895place to return the name of the temporary file.
24ec486c
KR
896
897The file is created with mode @code{0600}, which means read and write
898for the owner only. @code{chmod} can be used to change this.
a0e07ba4
NJ
899@end deffn
900
8f85c0c6
NJ
901@deffn {Scheme Procedure} dirname filename
902@deffnx {C Function} scm_dirname (filename)
a0e07ba4
NJ
903Return the directory name component of the file name
904@var{filename}. If @var{filename} does not contain a directory
905component, @code{.} is returned.
906@end deffn
907
8f85c0c6
NJ
908@deffn {Scheme Procedure} basename filename [suffix]
909@deffnx {C Function} scm_basename (filename, suffix)
a0e07ba4
NJ
910Return the base name of the file name @var{filename}. The
911base name is the file name without any directory components.
85a9b4ed 912If @var{suffix} is provided, and is equal to the end of
a0e07ba4 913@var{basename}, it is removed also.
bcf009c3
NJ
914
915@lisp
916(basename "/tmp/test.xml" ".xml")
917@result{} "test"
918@end lisp
a0e07ba4
NJ
919@end deffn
920
921
922@node User Information
3229f68b 923@subsection User Information
f3dfb8ac
KR
924@cindex user information
925@cindex password file
926@cindex group file
a0e07ba4
NJ
927
928The facilities in this section provide an interface to the user and
929group database.
930They should be used with care since they are not reentrant.
931
932The following functions accept an object representing user information
933and return a selected component:
934
2ce02471 935@deffn {Scheme Procedure} passwd:name pw
a0e07ba4 936The name of the userid.
2ce02471
NJ
937@end deffn
938@deffn {Scheme Procedure} passwd:passwd pw
a0e07ba4 939The encrypted passwd.
2ce02471
NJ
940@end deffn
941@deffn {Scheme Procedure} passwd:uid pw
a0e07ba4 942The user id number.
2ce02471
NJ
943@end deffn
944@deffn {Scheme Procedure} passwd:gid pw
a0e07ba4 945The group id number.
2ce02471
NJ
946@end deffn
947@deffn {Scheme Procedure} passwd:gecos pw
a0e07ba4 948The full name.
2ce02471
NJ
949@end deffn
950@deffn {Scheme Procedure} passwd:dir pw
a0e07ba4 951The home directory.
2ce02471
NJ
952@end deffn
953@deffn {Scheme Procedure} passwd:shell pw
a0e07ba4 954The login shell.
2ce02471
NJ
955@end deffn
956@sp 1
a0e07ba4 957
8f85c0c6 958@deffn {Scheme Procedure} getpwuid uid
a0e07ba4
NJ
959Look up an integer userid in the user database.
960@end deffn
961
8f85c0c6 962@deffn {Scheme Procedure} getpwnam name
a0e07ba4
NJ
963Look up a user name string in the user database.
964@end deffn
965
8f85c0c6 966@deffn {Scheme Procedure} setpwent
a0e07ba4
NJ
967Initializes a stream used by @code{getpwent} to read from the user database.
968The next use of @code{getpwent} will return the first entry. The
969return value is unspecified.
970@end deffn
971
8f85c0c6 972@deffn {Scheme Procedure} getpwent
a0e07ba4
NJ
973Return the next entry in the user database, using the stream set by
974@code{setpwent}.
975@end deffn
976
8f85c0c6 977@deffn {Scheme Procedure} endpwent
a0e07ba4
NJ
978Closes the stream used by @code{getpwent}. The return value is unspecified.
979@end deffn
980
8f85c0c6
NJ
981@deffn {Scheme Procedure} setpw [arg]
982@deffnx {C Function} scm_setpwent (arg)
a0e07ba4
NJ
983If called with a true argument, initialize or reset the password data
984stream. Otherwise, close the stream. The @code{setpwent} and
985@code{endpwent} procedures are implemented on top of this.
986@end deffn
987
8f85c0c6
NJ
988@deffn {Scheme Procedure} getpw [user]
989@deffnx {C Function} scm_getpwuid (user)
a0e07ba4
NJ
990Look up an entry in the user database. @var{obj} can be an integer,
991a string, or omitted, giving the behaviour of getpwuid, getpwnam
992or getpwent respectively.
993@end deffn
994
995The following functions accept an object representing group information
996and return a selected component:
997
2ce02471 998@deffn {Scheme Procedure} group:name gr
a0e07ba4 999The group name.
2ce02471
NJ
1000@end deffn
1001@deffn {Scheme Procedure} group:passwd gr
a0e07ba4 1002The encrypted group password.
2ce02471
NJ
1003@end deffn
1004@deffn {Scheme Procedure} group:gid gr
a0e07ba4 1005The group id number.
2ce02471
NJ
1006@end deffn
1007@deffn {Scheme Procedure} group:mem gr
85a9b4ed 1008A list of userids which have this group as a supplementary group.
2ce02471
NJ
1009@end deffn
1010@sp 1
a0e07ba4 1011
8f85c0c6 1012@deffn {Scheme Procedure} getgrgid gid
85a9b4ed 1013Look up an integer group id in the group database.
a0e07ba4
NJ
1014@end deffn
1015
8f85c0c6 1016@deffn {Scheme Procedure} getgrnam name
a0e07ba4
NJ
1017Look up a group name in the group database.
1018@end deffn
1019
8f85c0c6 1020@deffn {Scheme Procedure} setgrent
a0e07ba4
NJ
1021Initializes a stream used by @code{getgrent} to read from the group database.
1022The next use of @code{getgrent} will return the first entry.
1023The return value is unspecified.
1024@end deffn
1025
8f85c0c6 1026@deffn {Scheme Procedure} getgrent
a0e07ba4
NJ
1027Return the next entry in the group database, using the stream set by
1028@code{setgrent}.
1029@end deffn
1030
8f85c0c6 1031@deffn {Scheme Procedure} endgrent
a0e07ba4
NJ
1032Closes the stream used by @code{getgrent}.
1033The return value is unspecified.
1034@end deffn
1035
8f85c0c6
NJ
1036@deffn {Scheme Procedure} setgr [arg]
1037@deffnx {C Function} scm_setgrent (arg)
a0e07ba4
NJ
1038If called with a true argument, initialize or reset the group data
1039stream. Otherwise, close the stream. The @code{setgrent} and
1040@code{endgrent} procedures are implemented on top of this.
1041@end deffn
1042
8f85c0c6
NJ
1043@deffn {Scheme Procedure} getgr [name]
1044@deffnx {C Function} scm_getgrgid (name)
a0e07ba4
NJ
1045Look up an entry in the group database. @var{obj} can be an integer,
1046a string, or omitted, giving the behaviour of getgrgid, getgrnam
1047or getgrent respectively.
1048@end deffn
1049
1050In addition to the accessor procedures for the user database, the
1051following shortcut procedures are also available.
1052
8f85c0c6
NJ
1053@deffn {Scheme Procedure} cuserid
1054@deffnx {C Function} scm_cuserid ()
a0e07ba4
NJ
1055Return a string containing a user name associated with the
1056effective user id of the process. Return @code{#f} if this
1057information cannot be obtained.
2afd305b
KR
1058
1059This function has been removed from the latest POSIX specification,
1060Guile provides it only if the system has it. Using @code{(getpwuid
1061(geteuid))} may be a better idea.
a0e07ba4
NJ
1062@end deffn
1063
8f85c0c6
NJ
1064@deffn {Scheme Procedure} getlogin
1065@deffnx {C Function} scm_getlogin ()
a0e07ba4
NJ
1066Return a string containing the name of the user logged in on
1067the controlling terminal of the process, or @code{#f} if this
1068information cannot be obtained.
1069@end deffn
1070
1071
1072@node Time
3229f68b 1073@subsection Time
f3dfb8ac 1074@cindex time
a0e07ba4 1075
8f85c0c6
NJ
1076@deffn {Scheme Procedure} current-time
1077@deffnx {C Function} scm_current_time ()
7403e409 1078Return the number of seconds since 1970-01-01 00:00:00 @acronym{UTC},
a0e07ba4
NJ
1079excluding leap seconds.
1080@end deffn
1081
8f85c0c6
NJ
1082@deffn {Scheme Procedure} gettimeofday
1083@deffnx {C Function} scm_gettimeofday ()
a0e07ba4 1084Return a pair containing the number of seconds and microseconds
7403e409 1085since 1970-01-01 00:00:00 @acronym{UTC}, excluding leap seconds. Note:
a0e07ba4
NJ
1086whether true microsecond resolution is available depends on the
1087operating system.
1088@end deffn
1089
1090The following procedures either accept an object representing a broken down
1091time and return a selected component, or accept an object representing
1092a broken down time and a value and set the component to the value.
1093The numbers in parentheses give the usual range.
1094
2ce02471
NJ
1095@deffn {Scheme Procedure} tm:sec tm
1096@deffnx {Scheme Procedure} set-tm:sec tm val
a0e07ba4 1097Seconds (0-59).
2ce02471
NJ
1098@end deffn
1099@deffn {Scheme Procedure} tm:min tm
1100@deffnx {Scheme Procedure} set-tm:min tm val
a0e07ba4 1101Minutes (0-59).
2ce02471
NJ
1102@end deffn
1103@deffn {Scheme Procedure} tm:hour tm
1104@deffnx {Scheme Procedure} set-tm:hour tm val
a0e07ba4 1105Hours (0-23).
2ce02471
NJ
1106@end deffn
1107@deffn {Scheme Procedure} tm:mday tm
1108@deffnx {Scheme Procedure} set-tm:mday tm val
a0e07ba4 1109Day of the month (1-31).
2ce02471
NJ
1110@end deffn
1111@deffn {Scheme Procedure} tm:mon tm
1112@deffnx {Scheme Procedure} set-tm:mon tm val
a0e07ba4 1113Month (0-11).
2ce02471
NJ
1114@end deffn
1115@deffn {Scheme Procedure} tm:year tm
1116@deffnx {Scheme Procedure} set-tm:year tm val
a0e07ba4 1117Year (70-), the year minus 1900.
2ce02471
NJ
1118@end deffn
1119@deffn {Scheme Procedure} tm:wday tm
1120@deffnx {Scheme Procedure} set-tm:wday tm val
a0e07ba4 1121Day of the week (0-6) with Sunday represented as 0.
2ce02471
NJ
1122@end deffn
1123@deffn {Scheme Procedure} tm:yday tm
1124@deffnx {Scheme Procedure} set-tm:yday tm val
a0e07ba4 1125Day of the year (0-364, 365 in leap years).
2ce02471
NJ
1126@end deffn
1127@deffn {Scheme Procedure} tm:isdst tm
1128@deffnx {Scheme Procedure} set-tm:isdst tm val
7403e409
NJ
1129Daylight saving indicator (0 for ``no'', greater than 0 for ``yes'', less than
11300 for ``unknown'').
2ce02471
NJ
1131@end deffn
1132@deffn {Scheme Procedure} tm:gmtoff tm
1133@deffnx {Scheme Procedure} set-tm:gmtoff tm val
7403e409 1134Time zone offset in seconds west of @acronym{UTC} (-46800 to 43200).
2ce02471
NJ
1135@end deffn
1136@deffn {Scheme Procedure} tm:zone tm
1137@deffnx {Scheme Procedure} set-tm:zone tm val
a0e07ba4 1138Time zone label (a string), not necessarily unique.
2ce02471
NJ
1139@end deffn
1140@sp 1
a0e07ba4 1141
8f85c0c6
NJ
1142@deffn {Scheme Procedure} localtime time [zone]
1143@deffnx {C Function} scm_localtime (time, zone)
f3dfb8ac 1144@cindex local time
a0e07ba4
NJ
1145Return an object representing the broken down components of
1146@var{time}, an integer like the one returned by
1147@code{current-time}. The time zone for the calculation is
1148optionally specified by @var{zone} (a string), otherwise the
7403e409 1149@env{TZ} environment variable or the system default is used.
a0e07ba4
NJ
1150@end deffn
1151
8f85c0c6
NJ
1152@deffn {Scheme Procedure} gmtime time
1153@deffnx {C Function} scm_gmtime (time)
a0e07ba4
NJ
1154Return an object representing the broken down components of
1155@var{time}, an integer like the one returned by
7403e409 1156@code{current-time}. The values are calculated for @acronym{UTC}.
a0e07ba4
NJ
1157@end deffn
1158
82512be0 1159@deffn {Scheme Procedure} mktime sbd-time [zone]
8f85c0c6 1160@deffnx {C Function} scm_mktime (sbd_time, zone)
b0fb2306
KR
1161For a broken down time object @var{sbd-time}, return a pair the
1162@code{car} of which is an integer time like @code{current-time}, and
1163the @code{cdr} of which is a new broken down time with normalized
1164fields.
1165
1166@var{zone} is a timezone string, or the default is the @env{TZ}
1167environment variable or the system default (@pxref{TZ Variable,,
1168Specifying the Time Zone with @env{TZ}, libc, GNU C Library Reference
1169Manual}). @var{sbd-time} is taken to be in that @var{zone}.
1170
1171The following fields of @var{sbd-time} are used: @code{tm:year},
1172@code{tm:mon}, @code{tm:mday}, @code{tm:hour}, @code{tm:min},
1173@code{tm:sec}, @code{tm:isdst}. The values can be outside their usual
1174ranges. For example @code{tm:hour} normally goes up to 23, but a
1175value say 33 would mean 9 the following day.
1176
1177@code{tm:isdst} in @var{sbd-time} says whether the time given is with
1178daylight savings or not. This is ignored if @var{zone} doesn't have
1179any daylight savings adjustment amount.
1180
1181The broken down time in the return normalizes the values of
1182@var{sbd-time} by bringing them into their usual ranges, and using the
1183actual daylight savings rule for that time in @var{zone} (which may
1184differ from what @var{sbd-time} had). The easiest way to think of
1185this is that @var{sbd-time} plus @var{zone} converts to the integer
1186UTC time, then a @code{localtime} is applied to get the normal
1187presentation of that time, in @var{zone}.
a0e07ba4
NJ
1188@end deffn
1189
8f85c0c6
NJ
1190@deffn {Scheme Procedure} tzset
1191@deffnx {C Function} scm_tzset ()
7403e409 1192Initialize the timezone from the @env{TZ} environment variable
a0e07ba4
NJ
1193or the system default. It's not usually necessary to call this procedure
1194since it's done automatically by other procedures that depend on the
1195timezone.
1196@end deffn
1197
8f85c0c6
NJ
1198@deffn {Scheme Procedure} strftime format stime
1199@deffnx {C Function} scm_strftime (format, stime)
f3dfb8ac 1200@cindex time formatting
a0e07ba4
NJ
1201Formats a time specification @var{time} using @var{template}. @var{time}
1202is an object with time components in the form returned by @code{localtime}
1203or @code{gmtime}. @var{template} is a string which can include formatting
7403e409 1204specifications introduced by a @samp{%} character. The formatting of
a0e07ba4
NJ
1205month and day names is dependent on the current locale. The value returned
1206is the formatted string.
158fab2b 1207@xref{Formatting Calendar Time, , , libc, The GNU C Library Reference Manual}.
bcf009c3
NJ
1208
1209@lisp
1210(strftime "%c" (localtime (current-time)))
1211@result{} "Mon Mar 11 20:17:43 2002"
1212@end lisp
a0e07ba4
NJ
1213@end deffn
1214
8f85c0c6
NJ
1215@deffn {Scheme Procedure} strptime format string
1216@deffnx {C Function} scm_strptime (format, string)
f3dfb8ac 1217@cindex time parsing
a0e07ba4
NJ
1218Performs the reverse action to @code{strftime}, parsing
1219@var{string} according to the specification supplied in
1220@var{template}. The interpretation of month and day names is
1221dependent on the current locale. The value returned is a pair.
7403e409 1222The @acronym{CAR} has an object with time components
a0e07ba4
NJ
1223in the form returned by @code{localtime} or @code{gmtime},
1224but the time zone components
1225are not usefully set.
7403e409 1226The @acronym{CDR} reports the number of characters from @var{string}
a0e07ba4
NJ
1227which were used for the conversion.
1228@end deffn
1229
1230@defvar internal-time-units-per-second
1231The value of this variable is the number of time units per second
1232reported by the following procedures.
1233@end defvar
1234
8f85c0c6
NJ
1235@deffn {Scheme Procedure} times
1236@deffnx {C Function} scm_times ()
a0e07ba4
NJ
1237Return an object with information about real and processor
1238time. The following procedures accept such an object as an
1239argument and return a selected component:
1240
2ce02471 1241@deffn {Scheme Procedure} tms:clock tms
a0e07ba4
NJ
1242The current real time, expressed as time units relative to an
1243arbitrary base.
2ce02471
NJ
1244@end deffn
1245@deffn {Scheme Procedure} tms:utime tms
a0e07ba4 1246The CPU time units used by the calling process.
2ce02471
NJ
1247@end deffn
1248@deffn {Scheme Procedure} tms:stime tms
a0e07ba4
NJ
1249The CPU time units used by the system on behalf of the calling
1250process.
2ce02471
NJ
1251@end deffn
1252@deffn {Scheme Procedure} tms:cutime tms
a0e07ba4
NJ
1253The CPU time units used by terminated child processes of the
1254calling process, whose status has been collected (e.g., using
1255@code{waitpid}).
2ce02471
NJ
1256@end deffn
1257@deffn {Scheme Procedure} tms:cstime tms
a0e07ba4
NJ
1258Similarly, the CPU times units used by the system on behalf of
1259terminated child processes.
2ce02471 1260@end deffn
a0e07ba4
NJ
1261@end deffn
1262
8f85c0c6
NJ
1263@deffn {Scheme Procedure} get-internal-real-time
1264@deffnx {C Function} scm_get_internal_real_time ()
a0e07ba4
NJ
1265Return the number of time units since the interpreter was
1266started.
1267@end deffn
1268
8f85c0c6
NJ
1269@deffn {Scheme Procedure} get-internal-run-time
1270@deffnx {C Function} scm_get_internal_run_time ()
a0e07ba4
NJ
1271Return the number of time units of processor time used by the
1272interpreter. Both @emph{system} and @emph{user} time are
1273included but subprocesses are not.
1274@end deffn
1275
1276@node Runtime Environment
3229f68b 1277@subsection Runtime Environment
a0e07ba4 1278
8f85c0c6
NJ
1279@deffn {Scheme Procedure} program-arguments
1280@deffnx {Scheme Procedure} command-line
1281@deffnx {C Function} scm_program_arguments ()
f3dfb8ac
KR
1282@cindex command line
1283@cindex program arguments
a0e07ba4
NJ
1284Return the list of command line arguments passed to Guile, as a list of
1285strings. The list includes the invoked program name, which is usually
1286@code{"guile"}, but excludes switches and parameters for command line
1287options like @code{-e} and @code{-l}.
1288@end deffn
1289
8f85c0c6
NJ
1290@deffn {Scheme Procedure} getenv nam
1291@deffnx {C Function} scm_getenv (nam)
f3dfb8ac 1292@cindex environment
a0e07ba4
NJ
1293Looks up the string @var{name} in the current environment. The return
1294value is @code{#f} unless a string of the form @code{NAME=VALUE} is
1295found, in which case the string @code{VALUE} is returned.
1296@end deffn
1297
8f85c0c6 1298@deffn {Scheme Procedure} setenv name value
a0e07ba4
NJ
1299Modifies the environment of the current process, which is
1300also the default environment inherited by child processes.
1301
1302If @var{value} is @code{#f}, then @var{name} is removed from the
1303environment. Otherwise, the string @var{name}=@var{value} is added
1304to the environment, replacing any existing string with name matching
1305@var{name}.
1306
1307The return value is unspecified.
1308@end deffn
1309
395b0a34
NJ
1310@deffn {Scheme Procedure} unsetenv name
1311Remove variable @var{name} from the environment. The
1312name can not contain a @samp{=} character.
1313@end deffn
1314
8f85c0c6
NJ
1315@deffn {Scheme Procedure} environ [env]
1316@deffnx {C Function} scm_environ (env)
a0e07ba4
NJ
1317If @var{env} is omitted, return the current environment (in the
1318Unix sense) as a list of strings. Otherwise set the current
1319environment, which is also the default environment for child
1320processes, to the supplied list of strings. Each member of
7403e409
NJ
1321@var{env} should be of the form @var{NAME}=@var{VALUE} and values of
1322@var{NAME} should not be duplicated. If @var{env} is supplied
a0e07ba4
NJ
1323then the return value is unspecified.
1324@end deffn
1325
8f85c0c6
NJ
1326@deffn {Scheme Procedure} putenv str
1327@deffnx {C Function} scm_putenv (str)
a0e07ba4
NJ
1328Modifies the environment of the current process, which is
1329also the default environment inherited by child processes.
1330
1331If @var{string} is of the form @code{NAME=VALUE} then it will be written
1332directly into the environment, replacing any existing environment string
1333with
1334name matching @code{NAME}. If @var{string} does not contain an equal
1335sign, then any existing string with name matching @var{string} will
1336be removed.
1337
1338The return value is unspecified.
1339@end deffn
1340
1341
1342@node Processes
3229f68b 1343@subsection Processes
f3dfb8ac
KR
1344@cindex processes
1345@cindex child processes
a0e07ba4
NJ
1346
1347@findex cd
8f85c0c6
NJ
1348@deffn {Scheme Procedure} chdir str
1349@deffnx {C Function} scm_chdir (str)
f3dfb8ac 1350@cindex current directory
a0e07ba4
NJ
1351Change the current working directory to @var{path}.
1352The return value is unspecified.
1353@end deffn
1354
1355@findex pwd
8f85c0c6
NJ
1356@deffn {Scheme Procedure} getcwd
1357@deffnx {C Function} scm_getcwd ()
a0e07ba4
NJ
1358Return the name of the current working directory.
1359@end deffn
1360
8f85c0c6
NJ
1361@deffn {Scheme Procedure} umask [mode]
1362@deffnx {C Function} scm_umask (mode)
7403e409
NJ
1363If @var{mode} is omitted, returns a decimal number representing the
1364current file creation mask. Otherwise the file creation mask is set
1365to @var{mode} and the previous value is returned. @xref{Setting
1366Permissions,,Assigning File Permissions,libc,The GNU C Library
1367Reference Manual}, for more on how to use umasks.
a0e07ba4 1368
7403e409 1369E.g., @code{(umask #o022)} sets the mask to octal 22/decimal 18.
a0e07ba4
NJ
1370@end deffn
1371
8f85c0c6
NJ
1372@deffn {Scheme Procedure} chroot path
1373@deffnx {C Function} scm_chroot (path)
a0e07ba4
NJ
1374Change the root directory to that specified in @var{path}.
1375This directory will be used for path names beginning with
1376@file{/}. The root directory is inherited by all children
1377of the current process. Only the superuser may change the
1378root directory.
1379@end deffn
1380
8f85c0c6
NJ
1381@deffn {Scheme Procedure} getpid
1382@deffnx {C Function} scm_getpid ()
a0e07ba4
NJ
1383Return an integer representing the current process ID.
1384@end deffn
1385
8f85c0c6
NJ
1386@deffn {Scheme Procedure} getgroups
1387@deffnx {C Function} scm_getgroups ()
a0e07ba4 1388Return a vector of integers representing the current
85a9b4ed 1389supplementary group IDs.
a0e07ba4
NJ
1390@end deffn
1391
8f85c0c6
NJ
1392@deffn {Scheme Procedure} getppid
1393@deffnx {C Function} scm_getppid ()
a0e07ba4
NJ
1394Return an integer representing the process ID of the parent
1395process.
1396@end deffn
1397
8f85c0c6
NJ
1398@deffn {Scheme Procedure} getuid
1399@deffnx {C Function} scm_getuid ()
a0e07ba4
NJ
1400Return an integer representing the current real user ID.
1401@end deffn
1402
8f85c0c6
NJ
1403@deffn {Scheme Procedure} getgid
1404@deffnx {C Function} scm_getgid ()
a0e07ba4
NJ
1405Return an integer representing the current real group ID.
1406@end deffn
1407
8f85c0c6
NJ
1408@deffn {Scheme Procedure} geteuid
1409@deffnx {C Function} scm_geteuid ()
a0e07ba4
NJ
1410Return an integer representing the current effective user ID.
1411If the system does not support effective IDs, then the real ID
66add4eb 1412is returned. @code{(provided? 'EIDs)} reports whether the
a0e07ba4
NJ
1413system supports effective IDs.
1414@end deffn
1415
8f85c0c6
NJ
1416@deffn {Scheme Procedure} getegid
1417@deffnx {C Function} scm_getegid ()
a0e07ba4
NJ
1418Return an integer representing the current effective group ID.
1419If the system does not support effective IDs, then the real ID
66add4eb 1420is returned. @code{(provided? 'EIDs)} reports whether the
a0e07ba4
NJ
1421system supports effective IDs.
1422@end deffn
1423
ef048324
KR
1424@deffn {Scheme Procedure} setgroups vec
1425@deffnx {C Function} scm_setgroups (vec)
1426Set the current set of supplementary group IDs to the integers in the
1427given vector @var{vec}. The return value is unspecified.
1428
1429Generally only the superuser can set the process group IDs
1430(@pxref{Setting Groups, Setting the Group IDs,, libc, The GNU C
1431Library Reference Manual}).
1432@end deffn
1433
8f85c0c6
NJ
1434@deffn {Scheme Procedure} setuid id
1435@deffnx {C Function} scm_setuid (id)
a0e07ba4
NJ
1436Sets both the real and effective user IDs to the integer @var{id}, provided
1437the process has appropriate privileges.
1438The return value is unspecified.
1439@end deffn
1440
8f85c0c6
NJ
1441@deffn {Scheme Procedure} setgid id
1442@deffnx {C Function} scm_setgid (id)
a0e07ba4
NJ
1443Sets both the real and effective group IDs to the integer @var{id}, provided
1444the process has appropriate privileges.
1445The return value is unspecified.
1446@end deffn
1447
8f85c0c6
NJ
1448@deffn {Scheme Procedure} seteuid id
1449@deffnx {C Function} scm_seteuid (id)
a0e07ba4
NJ
1450Sets the effective user ID to the integer @var{id}, provided the process
1451has appropriate privileges. If effective IDs are not supported, the
7403e409 1452real ID is set instead---@code{(provided? 'EIDs)} reports whether the
a0e07ba4
NJ
1453system supports effective IDs.
1454The return value is unspecified.
1455@end deffn
1456
8f85c0c6
NJ
1457@deffn {Scheme Procedure} setegid id
1458@deffnx {C Function} scm_setegid (id)
a0e07ba4
NJ
1459Sets the effective group ID to the integer @var{id}, provided the process
1460has appropriate privileges. If effective IDs are not supported, the
7403e409 1461real ID is set instead---@code{(provided? 'EIDs)} reports whether the
a0e07ba4
NJ
1462system supports effective IDs.
1463The return value is unspecified.
1464@end deffn
1465
8f85c0c6
NJ
1466@deffn {Scheme Procedure} getpgrp
1467@deffnx {C Function} scm_getpgrp ()
a0e07ba4 1468Return an integer representing the current process group ID.
7403e409 1469This is the @acronym{POSIX} definition, not @acronym{BSD}.
a0e07ba4
NJ
1470@end deffn
1471
8f85c0c6
NJ
1472@deffn {Scheme Procedure} setpgid pid pgid
1473@deffnx {C Function} scm_setpgid (pid, pgid)
a0e07ba4
NJ
1474Move the process @var{pid} into the process group @var{pgid}. @var{pid} or
1475@var{pgid} must be integers: they can be zero to indicate the ID of the
1476current process.
1477Fails on systems that do not support job control.
1478The return value is unspecified.
1479@end deffn
1480
8f85c0c6
NJ
1481@deffn {Scheme Procedure} setsid
1482@deffnx {C Function} scm_setsid ()
a0e07ba4
NJ
1483Creates a new session. The current process becomes the session leader
1484and is put in a new process group. The process will be detached
1485from its controlling terminal if it has one.
1486The return value is an integer representing the new process group ID.
1487@end deffn
1488
8f85c0c6
NJ
1489@deffn {Scheme Procedure} waitpid pid [options]
1490@deffnx {C Function} scm_waitpid (pid, options)
a0e07ba4
NJ
1491This procedure collects status information from a child process which
1492has terminated or (optionally) stopped. Normally it will
1493suspend the calling process until this can be done. If more than one
1494child process is eligible then one will be chosen by the operating system.
1495
1496The value of @var{pid} determines the behaviour:
1497
7403e409 1498@table @asis
a0e07ba4
NJ
1499@item @var{pid} greater than 0
1500Request status information from the specified child process.
7403e409 1501@item @var{pid} equal to -1 or @code{WAIT_ANY}
2ce02471 1502@vindex WAIT_ANY
a0e07ba4 1503Request status information for any child process.
7403e409 1504@item @var{pid} equal to 0 or @code{WAIT_MYPGRP}
2ce02471 1505@vindex WAIT_MYPGRP
a0e07ba4
NJ
1506Request status information for any child process in the current process
1507group.
1508@item @var{pid} less than -1
1509Request status information for any child process whose process group ID
7403e409 1510is @minus{}@var{pid}.
a0e07ba4
NJ
1511@end table
1512
1513The @var{options} argument, if supplied, should be the bitwise OR of the
1514values of zero or more of the following variables:
1515
1516@defvar WNOHANG
1517Return immediately even if there are no child processes to be collected.
1518@end defvar
1519
1520@defvar WUNTRACED
1521Report status information for stopped processes as well as terminated
1522processes.
1523@end defvar
1524
1525The return value is a pair containing:
1526
1527@enumerate
1528@item
1529The process ID of the child process, or 0 if @code{WNOHANG} was
1530specified and no process was collected.
1531@item
1532The integer status value.
1533@end enumerate
1534@end deffn
1535
1536The following three
1537functions can be used to decode the process status code returned
1538by @code{waitpid}.
1539
8f85c0c6
NJ
1540@deffn {Scheme Procedure} status:exit-val status
1541@deffnx {C Function} scm_status_exit_val (status)
a0e07ba4
NJ
1542Return the exit status value, as would be set if a process
1543ended normally through a call to @code{exit} or @code{_exit},
1544if any, otherwise @code{#f}.
1545@end deffn
1546
8f85c0c6
NJ
1547@deffn {Scheme Procedure} status:term-sig status
1548@deffnx {C Function} scm_status_term_sig (status)
a0e07ba4
NJ
1549Return the signal number which terminated the process, if any,
1550otherwise @code{#f}.
1551@end deffn
1552
8f85c0c6
NJ
1553@deffn {Scheme Procedure} status:stop-sig status
1554@deffnx {C Function} scm_status_stop_sig (status)
a0e07ba4
NJ
1555Return the signal number which stopped the process, if any,
1556otherwise @code{#f}.
1557@end deffn
1558
8f85c0c6
NJ
1559@deffn {Scheme Procedure} system [cmd]
1560@deffnx {C Function} scm_system (cmd)
7403e409
NJ
1561Execute @var{cmd} using the operating system's ``command
1562processor''. Under Unix this is usually the default shell
a0e07ba4
NJ
1563@code{sh}. The value returned is @var{cmd}'s exit status as
1564returned by @code{waitpid}, which can be interpreted using the
1565functions above.
1566
1567If @code{system} is called without arguments, return a boolean
1568indicating whether the command processor is available.
1569@end deffn
1570
8141bd98
RB
1571@deffn {Scheme Procedure} system* . args
1572@deffnx {C Function} scm_system_star (args)
1573Execute the command indicated by @var{args}. The first element must
1574be a string indicating the command to be executed, and the remaining
1575items must be strings representing each of the arguments to that
1576command.
1577
1578This function returns the exit status of the command as provided by
1579@code{waitpid}. This value can be handled with @code{status:exit-val}
1580and the related functions.
1581
1582@code{system*} is similar to @code{system}, but accepts only one
1583string per-argument, and performs no shell interpretation. The
1584command is executed using fork and execlp. Accordingly this function
1585may be safer than @code{system} in situations where shell
1586interpretation is not required.
1587
1588Example: (system* "echo" "foo" "bar")
1589@end deffn
1590
8f85c0c6
NJ
1591@deffn {Scheme Procedure} primitive-exit [status]
1592@deffnx {C Function} scm_primitive_exit (status)
a0e07ba4
NJ
1593Terminate the current process without unwinding the Scheme stack.
1594This is would typically be useful after a fork. The exit status
1595is @var{status} if supplied, otherwise zero.
1596@end deffn
1597
8f85c0c6
NJ
1598@deffn {Scheme Procedure} execl filename . args
1599@deffnx {C Function} scm_execl (filename, args)
a0e07ba4
NJ
1600Executes the file named by @var{path} as a new process image.
1601The remaining arguments are supplied to the process; from a C program
85a9b4ed 1602they are accessible as the @code{argv} argument to @code{main}.
a0e07ba4
NJ
1603Conventionally the first @var{arg} is the same as @var{path}.
1604All arguments must be strings.
1605
1606If @var{arg} is missing, @var{path} is executed with a null
1607argument list, which may have system-dependent side-effects.
1608
1609This procedure is currently implemented using the @code{execv} system
1610call, but we call it @code{execl} because of its Scheme calling interface.
1611@end deffn
1612
8f85c0c6
NJ
1613@deffn {Scheme Procedure} execlp filename . args
1614@deffnx {C Function} scm_execlp (filename, args)
a0e07ba4
NJ
1615Similar to @code{execl}, however if
1616@var{filename} does not contain a slash
1617then the file to execute will be located by searching the
1618directories listed in the @code{PATH} environment variable.
1619
1620This procedure is currently implemented using the @code{execvp} system
1621call, but we call it @code{execlp} because of its Scheme calling interface.
1622@end deffn
1623
8f85c0c6
NJ
1624@deffn {Scheme Procedure} execle filename env . args
1625@deffnx {C Function} scm_execle (filename, env, args)
a0e07ba4
NJ
1626Similar to @code{execl}, but the environment of the new process is
1627specified by @var{env}, which must be a list of strings as returned by the
1628@code{environ} procedure.
1629
1630This procedure is currently implemented using the @code{execve} system
1631call, but we call it @code{execle} because of its Scheme calling interface.
1632@end deffn
1633
8f85c0c6
NJ
1634@deffn {Scheme Procedure} primitive-fork
1635@deffnx {C Function} scm_fork ()
7403e409 1636Creates a new ``child'' process by duplicating the current ``parent'' process.
a0e07ba4
NJ
1637In the child the return value is 0. In the parent the return value is
1638the integer process ID of the child.
1639
1640This procedure has been renamed from @code{fork} to avoid a naming conflict
1641with the scsh fork.
1642@end deffn
1643
8f85c0c6
NJ
1644@deffn {Scheme Procedure} nice incr
1645@deffnx {C Function} scm_nice (incr)
f3dfb8ac 1646@cindex process priority
a0e07ba4
NJ
1647Increment the priority of the current process by @var{incr}. A higher
1648priority value means that the process runs less often.
1649The return value is unspecified.
1650@end deffn
1651
8f85c0c6
NJ
1652@deffn {Scheme Procedure} setpriority which who prio
1653@deffnx {C Function} scm_setpriority (which, who, prio)
2ce02471
NJ
1654@vindex PRIO_PROCESS
1655@vindex PRIO_PGRP
1656@vindex PRIO_USER
a0e07ba4
NJ
1657Set the scheduling priority of the process, process group
1658or user, as indicated by @var{which} and @var{who}. @var{which}
1659is one of the variables @code{PRIO_PROCESS}, @code{PRIO_PGRP}
1660or @code{PRIO_USER}, and @var{who} is interpreted relative to
1661@var{which} (a process identifier for @code{PRIO_PROCESS},
004fe2c8 1662process group identifier for @code{PRIO_PGRP}, and a user
a0e07ba4
NJ
1663identifier for @code{PRIO_USER}. A zero value of @var{who}
1664denotes the current process, process group, or user.
7403e409
NJ
1665@var{prio} is a value in the range [@minus{}20,20]. The default
1666priority is 0; lower priorities (in numerical terms) cause more
1667favorable scheduling. Sets the priority of all of the specified
1668processes. Only the super-user may lower priorities. The return
1669value is not specified.
a0e07ba4
NJ
1670@end deffn
1671
8f85c0c6
NJ
1672@deffn {Scheme Procedure} getpriority which who
1673@deffnx {C Function} scm_getpriority (which, who)
2ce02471
NJ
1674@vindex PRIO_PROCESS
1675@vindex PRIO_PGRP
1676@vindex PRIO_USER
a0e07ba4
NJ
1677Return 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}
7403e409 1680or @code{PRIO_USER}, and @var{who} should be interpreted depending on
a0e07ba4
NJ
1681@var{which} (a process identifier for @code{PRIO_PROCESS},
1682process group identifier for @code{PRIO_PGRP}, and a user
7403e409 1683identifier for @code{PRIO_USER}). A zero value of @var{who}
a0e07ba4
NJ
1684denotes the current process, process group, or user. Return
1685the highest priority (lowest numerical value) of any of the
1686specified processes.
1687@end deffn
1688
1689
1690@node Signals
3229f68b 1691@subsection Signals
f3dfb8ac 1692@cindex signal
a0e07ba4
NJ
1693
1694Procedures to raise, handle and wait for signals.
1695
8f85c0c6
NJ
1696@deffn {Scheme Procedure} kill pid sig
1697@deffnx {C Function} scm_kill (pid, sig)
a0e07ba4
NJ
1698Sends a signal to the specified process or group of processes.
1699
1700@var{pid} specifies the processes to which the signal is sent:
1701
7403e409 1702@table @asis
a0e07ba4
NJ
1703@item @var{pid} greater than 0
1704The process whose identifier is @var{pid}.
1705@item @var{pid} equal to 0
1706All processes in the current process group.
1707@item @var{pid} less than -1
1708The process group whose identifier is -@var{pid}
1709@item @var{pid} equal to -1
1710If the process is privileged, all processes except for some special
1711system processes. Otherwise, all processes with the current effective
1712user ID.
1713@end table
1714
1715@var{sig} should be specified using a variable corresponding to
1716the Unix symbolic name, e.g.,
1717
1718@defvar SIGHUP
1719Hang-up signal.
1720@end defvar
1721
1722@defvar SIGINT
1723Interrupt signal.
1724@end defvar
7403e409
NJ
1725
1726A full list of signals on the GNU system may be found in @ref{Standard
1727Signals,,,libc,The GNU C Library Reference Manual}.
a0e07ba4
NJ
1728@end deffn
1729
8f85c0c6
NJ
1730@deffn {Scheme Procedure} raise sig
1731@deffnx {C Function} scm_raise (sig)
a0e07ba4 1732Sends a specified signal @var{sig} to the current process, where
7403e409 1733@var{sig} is as described for the @code{kill} procedure.
a0e07ba4
NJ
1734@end deffn
1735
b6506f45 1736@deffn {Scheme Procedure} sigaction signum [handler [flags [thread]]]
8f85c0c6 1737@deffnx {C Function} scm_sigaction (signum, handler, flags)
b6506f45 1738@deffnx {C Function} scm_sigaction_for_thread (signum, handler, flags, thread)
a0e07ba4
NJ
1739Install or report the signal handler for a specified signal.
1740
1741@var{signum} is the signal number, which can be specified using the value
1742of variables such as @code{SIGINT}.
1743
b6506f45 1744If @var{handler} is omitted, @code{sigaction} returns a pair: the
7403e409
NJ
1745@acronym{CAR} is the current signal hander, which will be either an
1746integer with the value @code{SIG_DFL} (default action) or
1747@code{SIG_IGN} (ignore), or the Scheme procedure which handles the
1748signal, or @code{#f} if a non-Scheme procedure handles the signal.
1749The @acronym{CDR} contains the current @code{sigaction} flags for the
1750handler.
a0e07ba4 1751
b6506f45 1752If @var{handler} is provided, it is installed as the new handler for
0a50eeaa
NJ
1753@var{signum}. @var{handler} can be a Scheme procedure taking one
1754argument, or the value of @code{SIG_DFL} (default action) or
a0e07ba4 1755@code{SIG_IGN} (ignore), or @code{#f} to restore whatever signal handler
b6506f45
MV
1756was installed before @code{sigaction} was first used. When a scheme
1757procedure has been specified, that procedure will run in the given
1758@var{thread}. When no thread has been given, the thread that made this
1759call to @code{sigaction} is used.
1760
91f5e9f7
KR
1761@var{flags} is a @code{logior} (@pxref{Bitwise Operations}) of the
1762following (where provided by the system), or @code{0} for none.
1763
1764@defvar SA_NOCLDSTOP
1765By default, @code{SIGCHLD} is signalled when a child process stops
1766(ie.@: receives @code{SIGSTOP}), and when a child process terminates.
1767With the @code{SA_NOCLDSTOP} flag, @code{SIGCHLD} is only signalled
1768for termination, not stopping.
1769
1770@code{SA_NOCLDSTOP} has no effect on signals other than
1771@code{SIGCHLD}.
1772@end defvar
1773
1774@defvar SA_RESTART
1775If a signal occurs while in a system call, deliver the signal then
1776restart the system call (as opposed to returning an @code{EINTR} error
1777from that call).
1778
1779Guile always enables this flag where available, no matter what
1780@var{flags} are specified. This avoids spurious error returns in low
1781level operations.
1782@end defvar
1783
1784The return value is a pair with information about the old handler as
1785described above.
a0e07ba4 1786
7403e409 1787This interface does not provide access to the ``signal blocking''
a0e07ba4
NJ
1788facility. Maybe this is not needed, since the thread support may
1789provide solutions to the problem of consistent access to data
1790structures.
1791@end deffn
1792
8f85c0c6
NJ
1793@deffn {Scheme Procedure} restore-signals
1794@deffnx {C Function} scm_restore_signals ()
a0e07ba4
NJ
1795Return all signal handlers to the values they had before any call to
1796@code{sigaction} was made. The return value is unspecified.
1797@end deffn
1798
8f85c0c6
NJ
1799@deffn {Scheme Procedure} alarm i
1800@deffnx {C Function} scm_alarm (i)
a0e07ba4
NJ
1801Set a timer to raise a @code{SIGALRM} signal after the specified
1802number of seconds (an integer). It's advisable to install a signal
1803handler for
1804@code{SIGALRM} beforehand, since the default action is to terminate
1805the process.
1806
1807The return value indicates the time remaining for the previous alarm,
1808if any. The new value replaces the previous alarm. If there was
1809no previous alarm, the return value is zero.
1810@end deffn
1811
8f85c0c6
NJ
1812@deffn {Scheme Procedure} pause
1813@deffnx {C Function} scm_pause ()
a0e07ba4
NJ
1814Pause the current process (thread?) until a signal arrives whose
1815action is to either terminate the current process or invoke a
1816handler procedure. The return value is unspecified.
1817@end deffn
1818
8f85c0c6
NJ
1819@deffn {Scheme Procedure} sleep i
1820@deffnx {C Function} scm_sleep (i)
a0e07ba4
NJ
1821Wait for the given number of seconds (an integer) or until a signal
1822arrives. The return value is zero if the time elapses or the number
1823of seconds remaining otherwise.
1824@end deffn
1825
8f85c0c6
NJ
1826@deffn {Scheme Procedure} usleep i
1827@deffnx {C Function} scm_usleep (i)
7403e409
NJ
1828Sleep for @var{i} microseconds. @code{usleep} is not available on
1829all platforms. [FIXME: so what happens when it isn't?]
a0e07ba4
NJ
1830@end deffn
1831
8f85c0c6
NJ
1832@deffn {Scheme Procedure} setitimer which_timer interval_seconds interval_microseconds value_seconds value_microseconds
1833@deffnx {C Function} scm_setitimer (which_timer, interval_seconds, interval_microseconds, value_seconds, value_microseconds)
a0e07ba4
NJ
1834Set the timer specified by @var{which_timer} according to the given
1835@var{interval_seconds}, @var{interval_microseconds},
9401323e
NJ
1836@var{value_seconds}, and @var{value_microseconds} values.
1837
1838Return information about the timer's previous setting.
9401323e
NJ
1839
1840The timers available are: @code{ITIMER_REAL}, @code{ITIMER_VIRTUAL},
1841and @code{ITIMER_PROF}.
1842
1843The return value will be a list of two cons pairs representing the
a0e07ba4 1844current state of the given timer. The first pair is the seconds and
9401323e
NJ
1845microseconds of the timer @code{it_interval}, and the second pair is
1846the seconds and microseconds of the timer @code{it_value}.
a0e07ba4
NJ
1847@end deffn
1848
8f85c0c6
NJ
1849@deffn {Scheme Procedure} getitimer which_timer
1850@deffnx {C Function} scm_getitimer (which_timer)
7403e409 1851Return information about the timer specified by @var{which_timer}.
9401323e
NJ
1852
1853The timers available are: @code{ITIMER_REAL}, @code{ITIMER_VIRTUAL},
1854and @code{ITIMER_PROF}.
1855
1856The return value will be a list of two cons pairs representing the
1857current state of the given timer. The first pair is the seconds and
1858microseconds of the timer @code{it_interval}, and the second pair is
1859the seconds and microseconds of the timer @code{it_value}.
a0e07ba4
NJ
1860@end deffn
1861
1862
1863@node Terminals and Ptys
3229f68b 1864@subsection Terminals and Ptys
a0e07ba4 1865
8f85c0c6
NJ
1866@deffn {Scheme Procedure} isatty? port
1867@deffnx {C Function} scm_isatty_p (port)
f3dfb8ac 1868@cindex terminal
a0e07ba4
NJ
1869Return @code{#t} if @var{port} is using a serial non--file
1870device, otherwise @code{#f}.
1871@end deffn
1872
8f85c0c6
NJ
1873@deffn {Scheme Procedure} ttyname port
1874@deffnx {C Function} scm_ttyname (port)
f3dfb8ac 1875@cindex terminal
a0e07ba4
NJ
1876Return a string with the name of the serial terminal device
1877underlying @var{port}.
1878@end deffn
1879
8f85c0c6
NJ
1880@deffn {Scheme Procedure} ctermid
1881@deffnx {C Function} scm_ctermid ()
f3dfb8ac 1882@cindex terminal
a0e07ba4
NJ
1883Return a string containing the file name of the controlling
1884terminal for the current process.
1885@end deffn
1886
8f85c0c6
NJ
1887@deffn {Scheme Procedure} tcgetpgrp port
1888@deffnx {C Function} scm_tcgetpgrp (port)
f3dfb8ac 1889@cindex process group
a0e07ba4
NJ
1890Return the process group ID of the foreground process group
1891associated with the terminal open on the file descriptor
1892underlying @var{port}.
1893
1894If there is no foreground process group, the return value is a
1895number greater than 1 that does not match the process group ID
1896of any existing process group. This can happen if all of the
1897processes in the job that was formerly the foreground job have
1898terminated, and no other job has yet been moved into the
1899foreground.
1900@end deffn
1901
8f85c0c6
NJ
1902@deffn {Scheme Procedure} tcsetpgrp port pgid
1903@deffnx {C Function} scm_tcsetpgrp (port, pgid)
f3dfb8ac 1904@cindex process group
a0e07ba4
NJ
1905Set the foreground process group ID for the terminal used by the file
1906descriptor underlying @var{port} to the integer @var{pgid}.
1907The calling process
1908must be a member of the same session as @var{pgid} and must have the same
1909controlling terminal. The return value is unspecified.
1910@end deffn
1911
1912@node Pipes
3229f68b 1913@subsection Pipes
f3dfb8ac 1914@cindex pipe
a0e07ba4 1915
cb62d8e5 1916The following procedures are similar to the @code{popen} and
7403e409 1917@code{pclose} system routines. The code is in a separate ``popen''
a0e07ba4
NJ
1918module:
1919
1920@smalllisp
1921(use-modules (ice-9 popen))
1922@end smalllisp
1923
1924@findex popen
cb62d8e5
KR
1925@deffn {Scheme Procedure} open-pipe command mode
1926@deffnx {Scheme Procedure} open-pipe* mode prog [args...]
1927Execute a command in a subprocess, with a pipe to it or from it, or
1928with pipes in both directions.
1929
1930@code{open-pipe} runs the shell @var{command} using @samp{/bin/sh -c}.
1931@code{open-pipe*} executes @var{prog} directly, with the optional
1932@var{args} arguments (all strings).
1933
1934@var{mode} should be one of the following values. @code{OPEN_READ} is
1935an input pipe, ie.@: to read from the subprocess. @code{OPEN_WRITE}
1936is an output pipe, ie.@: to write to it.
1937
1938@defvar OPEN_READ
1939@defvarx OPEN_WRITE
1940@defvarx OPEN_BOTH
1941@end defvar
1942
1943For an input pipe, the child's standard output is the pipe and
1944standard input is inherited from @code{current-input-port}. For an
1945output pipe, the child's standard input is the pipe and standard
1946output is inherited from @code{current-output-port}. In all cases
1947cases the child's standard error is inherited from
1948@code{current-error-port} (@pxref{Default Ports}).
1949
1950If those @code{current-X-ports} are not files of some kind, and hence
1951don't have file descriptors for the child, then @file{/dev/null} is
1952used instead.
7064e449 1953
cb62d8e5
KR
1954Care should be taken with @code{OPEN_BOTH}, a deadlock will occur if
1955both parent and child are writing, and waiting until the write
1956completes before doing any reading. Each direction has
1957@code{PIPE_BUF} bytes of buffering (@pxref{Ports and File
1958Descriptors}), which will be enough for small writes, but not for say
1959putting a big file through a filter.
a0e07ba4
NJ
1960@end deffn
1961
8f85c0c6 1962@deffn {Scheme Procedure} open-input-pipe command
a0e07ba4 1963Equivalent to @code{open-pipe} with mode @code{OPEN_READ}.
bcf009c3
NJ
1964
1965@lisp
cb62d8e5
KR
1966(let* ((port (open-input-pipe "date --utc"))
1967 (str (read-line port)))
1968 (close-pipe port)
1969 str)
1970@result{} "Mon Mar 11 20:10:44 UTC 2002"
bcf009c3 1971@end lisp
a0e07ba4
NJ
1972@end deffn
1973
8f85c0c6 1974@deffn {Scheme Procedure} open-output-pipe command
a0e07ba4 1975Equivalent to @code{open-pipe} with mode @code{OPEN_WRITE}.
cb62d8e5
KR
1976
1977@lisp
1978(let ((port (open-output-pipe "lpr")))
1979 (display "Something for the line printer.\n" port)
1980 (if (not (eqv? 0 (status:exit-val (close-pipe port))))
1981 (error "Cannot print")))
1982@end lisp
a0e07ba4
NJ
1983@end deffn
1984
7064e449
MV
1985@deffn {Scheme Procedure} open-input-output-pipe command
1986Equivalent to @code{open-pipe} with mode @code{OPEN_BOTH}.
1987@end deffn
1988
a0e07ba4 1989@findex pclose
8f85c0c6 1990@deffn {Scheme Procedure} close-pipe port
cb62d8e5
KR
1991Close a pipe created by @code{open-pipe}, wait for the process to
1992terminate, and return the wait status code. The status is as per
1993@code{waitpid} and can be decoded with @code{status:exit-val} etc
1994(@pxref{Processes})
a0e07ba4
NJ
1995@end deffn
1996
cb62d8e5
KR
1997@sp 1
1998@code{waitpid WAIT_ANY} should not be used when pipes are open, since
1999it can reap a pipe's child process, causing an error from a subsequent
2000@code{close-pipe}.
2001
2002@code{close-port} (@pxref{Closing}) can close a pipe, but it doesn't
2003reap the child process.
2004
2005The garbage collector will close a pipe no longer in use, and reap the
2006child process with @code{waitpid}. If the child hasn't yet terminated
2007the garbage collector doesn't block, but instead checks again in the
2008next GC.
2009
2010Many systems have per-user and system-wide limits on the number of
2011processes, and a system-wide limit on the number of pipes, so pipes
2012should be closed explicitly when no longer needed, rather than letting
2013the garbage collector pick them up at some later time.
2014
2015
a0e07ba4 2016@node Networking
3229f68b 2017@subsection Networking
f3dfb8ac 2018@cindex network
a0e07ba4
NJ
2019
2020@menu
2021* Network Address Conversion::
5f378d17
TTN
2022* Network Databases::
2023* Network Sockets and Communication::
bcf009c3 2024* Internet Socket Examples::
a0e07ba4
NJ
2025@end menu
2026
2027@node Network Address Conversion
3229f68b 2028@subsubsection Network Address Conversion
f3dfb8ac 2029@cindex network address
a0e07ba4
NJ
2030
2031This section describes procedures which convert internet addresses
2032between numeric and string formats.
2033
3229f68b 2034@subsubheading IPv4 Address Conversion
f3dfb8ac 2035@cindex IPv4
a0e07ba4 2036
957f9f62
KR
2037An IPv4 Internet address is a 4-byte value, represented in Guile as an
2038integer in network byte order (meaning the first byte is the most
2039significant in the number).
2040
2041@defvar INADDR_LOOPBACK
2042The address of the local host using the loopback device, ie.@:
2043@samp{127.0.0.1}.
2044@end defvar
2045
2046@defvar INADDR_BROADCAST
2047The broadcast address on the local network.
2048@end defvar
2049
2050@c INADDR_NONE is defined in the code, but serves no purpose.
2051@c inet_addr() returns it as an error indication, but that function
2052@c isn't provided, for the good reason that inet_aton() does the same
2053@c job and gives an unambiguous error indication. (INADDR_NONE is a
2054@c valid 4-byte value, in glibc it's the same as INADDR_BROADCAST.)
2055@c
2056@c @defvar INADDR_NONE
2057@c No address.
2058@c @end defvar
2059
8f85c0c6
NJ
2060@deffn {Scheme Procedure} inet-aton address
2061@deffnx {C Function} scm_inet_aton (address)
a0e07ba4
NJ
2062Convert an IPv4 Internet address from printable string
2063(dotted decimal notation) to an integer. E.g.,
2064
2065@lisp
2066(inet-aton "127.0.0.1") @result{} 2130706433
2067@end lisp
2068@end deffn
2069
8f85c0c6
NJ
2070@deffn {Scheme Procedure} inet-ntoa inetid
2071@deffnx {C Function} scm_inet_ntoa (inetid)
a0e07ba4
NJ
2072Convert an IPv4 Internet address to a printable
2073(dotted decimal notation) string. E.g.,
2074
2075@lisp
2076(inet-ntoa 2130706433) @result{} "127.0.0.1"
2077@end lisp
2078@end deffn
2079
8f85c0c6
NJ
2080@deffn {Scheme Procedure} inet-netof address
2081@deffnx {C Function} scm_inet_netof (address)
a0e07ba4
NJ
2082Return the network number part of the given IPv4
2083Internet address. E.g.,
2084
2085@lisp
2086(inet-netof 2130706433) @result{} 127
2087@end lisp
2088@end deffn
2089
8f85c0c6
NJ
2090@deffn {Scheme Procedure} inet-lnaof address
2091@deffnx {C Function} scm_lnaof (address)
a0e07ba4
NJ
2092Return the local-address-with-network part of the given
2093IPv4 Internet address, using the obsolete class A/B/C system.
2094E.g.,
2095
2096@lisp
2097(inet-lnaof 2130706433) @result{} 1
2098@end lisp
2099@end deffn
2100
8f85c0c6
NJ
2101@deffn {Scheme Procedure} inet-makeaddr net lna
2102@deffnx {C Function} scm_inet_makeaddr (net, lna)
a0e07ba4
NJ
2103Make an IPv4 Internet address by combining the network number
2104@var{net} with the local-address-within-network number
2105@var{lna}. E.g.,
2106
2107@lisp
2108(inet-makeaddr 127 1) @result{} 2130706433
2109@end lisp
2110@end deffn
2111
3229f68b 2112@subsubheading IPv6 Address Conversion
f3dfb8ac 2113@cindex IPv6
a0e07ba4 2114
8f85c0c6
NJ
2115@deffn {Scheme Procedure} inet-ntop family address
2116@deffnx {C Function} scm_inet_ntop (family, address)
a0e07ba4
NJ
2117Convert a network address into a printable string.
2118Note that unlike the C version of this function,
2119the input is an integer with normal host byte ordering.
2120@var{family} can be @code{AF_INET} or @code{AF_INET6}. E.g.,
2121
2122@lisp
2123(inet-ntop AF_INET 2130706433) @result{} "127.0.0.1"
2124(inet-ntop AF_INET6 (- (expt 2 128) 1)) @result{}
2125ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
2126@end lisp
2127@end deffn
2128
8f85c0c6
NJ
2129@deffn {Scheme Procedure} inet-pton family address
2130@deffnx {C Function} scm_inet_pton (family, address)
a0e07ba4
NJ
2131Convert a string containing a printable network address to
2132an integer address. Note that unlike the C version of this
2133function,
2134the result is an integer with normal host byte ordering.
2135@var{family} can be @code{AF_INET} or @code{AF_INET6}. E.g.,
2136
2137@lisp
2138(inet-pton AF_INET "127.0.0.1") @result{} 2130706433
2139(inet-pton AF_INET6 "::1") @result{} 1
2140@end lisp
2141@end deffn
2142
2143
2144@node Network Databases
3229f68b 2145@subsubsection Network Databases
f3dfb8ac 2146@cindex network database
a0e07ba4
NJ
2147
2148This section describes procedures which query various network databases.
2149Care should be taken when using the database routines since they are not
2150reentrant.
2151
3229f68b 2152@subsubheading The Host Database
f3dfb8ac
KR
2153@cindex @file{/etc/hosts}
2154@cindex network database
a0e07ba4
NJ
2155
2156A @dfn{host object} is a structure that represents what is known about a
2157network host, and is the usual way of representing a system's network
2158identity inside software.
2159
2160The following functions accept a host object and return a selected
2161component:
2162
8f85c0c6 2163@deffn {Scheme Procedure} hostent:name host
7403e409 2164The ``official'' hostname for @var{host}.
a0e07ba4 2165@end deffn
8f85c0c6 2166@deffn {Scheme Procedure} hostent:aliases host
a0e07ba4
NJ
2167A list of aliases for @var{host}.
2168@end deffn
8f85c0c6 2169@deffn {Scheme Procedure} hostent:addrtype host
a0e07ba4
NJ
2170The host address type. For hosts with Internet addresses, this will
2171return @code{AF_INET}.
2172@end deffn
8f85c0c6 2173@deffn {Scheme Procedure} hostent:length host
a0e07ba4
NJ
2174The length of each address for @var{host}, in bytes.
2175@end deffn
8f85c0c6 2176@deffn {Scheme Procedure} hostent:addr-list host
a0e07ba4
NJ
2177The list of network addresses associated with @var{host}.
2178@end deffn
2179
2180The following procedures are used to search the host database:
2181
8f85c0c6
NJ
2182@deffn {Scheme Procedure} gethost [host]
2183@deffnx {Scheme Procedure} gethostbyname hostname
2184@deffnx {Scheme Procedure} gethostbyaddr address
2185@deffnx {C Function} scm_gethost (host)
a0e07ba4
NJ
2186Look up a host by name or address, returning a host object. The
2187@code{gethost} procedure will accept either a string name or an integer
2188address; if given no arguments, it behaves like @code{gethostent} (see
2189below). If a name or address is supplied but the address can not be
2190found, an error will be thrown to one of the keys:
2191@code{host-not-found}, @code{try-again}, @code{no-recovery} or
2192@code{no-data}, corresponding to the equivalent @code{h_error} values.
2193Unusual conditions may result in errors thrown to the
2194@code{system-error} or @code{misc_error} keys.
bcf009c3
NJ
2195
2196@lisp
2197(gethost "www.gnu.org")
2198@result{} #("www.gnu.org" () 2 4 (3353880842))
2199
2200(gethostbyname "www.emacs.org")
2201@result{} #("emacs.org" ("www.emacs.org") 2 4 (1073448978))
2202@end lisp
a0e07ba4
NJ
2203@end deffn
2204
2205The following procedures may be used to step through the host
2206database from beginning to end.
2207
8f85c0c6 2208@deffn {Scheme Procedure} sethostent [stayopen]
a0e07ba4
NJ
2209Initialize an internal stream from which host objects may be read. This
2210procedure must be called before any calls to @code{gethostent}, and may
2211also be called afterward to reset the host entry stream. If
2212@var{stayopen} is supplied and is not @code{#f}, the database is not
2213closed by subsequent @code{gethostbyname} or @code{gethostbyaddr} calls,
2214possibly giving an efficiency gain.
2215@end deffn
2216
8f85c0c6 2217@deffn {Scheme Procedure} gethostent
a0e07ba4
NJ
2218Return the next host object from the host database, or @code{#f} if
2219there are no more hosts to be found (or an error has been encountered).
2220This procedure may not be used before @code{sethostent} has been called.
2221@end deffn
2222
8f85c0c6 2223@deffn {Scheme Procedure} endhostent
a0e07ba4
NJ
2224Close the stream used by @code{gethostent}. The return value is unspecified.
2225@end deffn
2226
8f85c0c6
NJ
2227@deffn {Scheme Procedure} sethost [stayopen]
2228@deffnx {C Function} scm_sethost (stayopen)
a0e07ba4
NJ
2229If @var{stayopen} is omitted, this is equivalent to @code{endhostent}.
2230Otherwise it is equivalent to @code{sethostent stayopen}.
2231@end deffn
3229f68b
MV
2232
2233@subsubheading The Network Database
f3dfb8ac 2234@cindex network database
a0e07ba4
NJ
2235
2236The following functions accept an object representing a network
2237and return a selected component:
2238
8f85c0c6 2239@deffn {Scheme Procedure} netent:name net
7403e409 2240The ``official'' network name.
a0e07ba4 2241@end deffn
8f85c0c6 2242@deffn {Scheme Procedure} netent:aliases net
a0e07ba4
NJ
2243A list of aliases for the network.
2244@end deffn
8f85c0c6 2245@deffn {Scheme Procedure} netent:addrtype net
a0e07ba4
NJ
2246The type of the network number. Currently, this returns only
2247@code{AF_INET}.
2248@end deffn
8f85c0c6 2249@deffn {Scheme Procedure} netent:net net
a0e07ba4
NJ
2250The network number.
2251@end deffn
2252
2253The following procedures are used to search the network database:
2254
8f85c0c6
NJ
2255@deffn {Scheme Procedure} getnet [net]
2256@deffnx {Scheme Procedure} getnetbyname net-name
2257@deffnx {Scheme Procedure} getnetbyaddr net-number
2258@deffnx {C Function} scm_getnet (net)
a0e07ba4
NJ
2259Look up a network by name or net number in the network database. The
2260@var{net-name} argument must be a string, and the @var{net-number}
2261argument must be an integer. @code{getnet} will accept either type of
2262argument, behaving like @code{getnetent} (see below) if no arguments are
2263given.
2264@end deffn
2265
2266The following procedures may be used to step through the network
2267database from beginning to end.
2268
8f85c0c6 2269@deffn {Scheme Procedure} setnetent [stayopen]
a0e07ba4
NJ
2270Initialize an internal stream from which network objects may be read. This
2271procedure must be called before any calls to @code{getnetent}, and may
2272also be called afterward to reset the net entry stream. If
2273@var{stayopen} is supplied and is not @code{#f}, the database is not
2274closed by subsequent @code{getnetbyname} or @code{getnetbyaddr} calls,
2275possibly giving an efficiency gain.
2276@end deffn
2277
8f85c0c6 2278@deffn {Scheme Procedure} getnetent
a0e07ba4
NJ
2279Return the next entry from the network database.
2280@end deffn
2281
8f85c0c6 2282@deffn {Scheme Procedure} endnetent
a0e07ba4
NJ
2283Close the stream used by @code{getnetent}. The return value is unspecified.
2284@end deffn
2285
8f85c0c6
NJ
2286@deffn {Scheme Procedure} setnet [stayopen]
2287@deffnx {C Function} scm_setnet (stayopen)
a0e07ba4
NJ
2288If @var{stayopen} is omitted, this is equivalent to @code{endnetent}.
2289Otherwise it is equivalent to @code{setnetent stayopen}.
2290@end deffn
2291
3229f68b 2292@subsubheading The Protocol Database
f3dfb8ac
KR
2293@cindex @file{/etc/protocols}
2294@cindex protocols
2295@cindex network protocols
a0e07ba4
NJ
2296
2297The following functions accept an object representing a protocol
2298and return a selected component:
2299
8f85c0c6 2300@deffn {Scheme Procedure} protoent:name protocol
7403e409 2301The ``official'' protocol name.
a0e07ba4 2302@end deffn
8f85c0c6 2303@deffn {Scheme Procedure} protoent:aliases protocol
a0e07ba4
NJ
2304A list of aliases for the protocol.
2305@end deffn
8f85c0c6 2306@deffn {Scheme Procedure} protoent:proto protocol
a0e07ba4
NJ
2307The protocol number.
2308@end deffn
2309
2310The following procedures are used to search the protocol database:
2311
8f85c0c6
NJ
2312@deffn {Scheme Procedure} getproto [protocol]
2313@deffnx {Scheme Procedure} getprotobyname name
2314@deffnx {Scheme Procedure} getprotobynumber number
2315@deffnx {C Function} scm_getproto (protocol)
a0e07ba4
NJ
2316Look up a network protocol by name or by number. @code{getprotobyname}
2317takes a string argument, and @code{getprotobynumber} takes an integer
2318argument. @code{getproto} will accept either type, behaving like
2319@code{getprotoent} (see below) if no arguments are supplied.
2320@end deffn
2321
2322The following procedures may be used to step through the protocol
2323database from beginning to end.
2324
8f85c0c6 2325@deffn {Scheme Procedure} setprotoent [stayopen]
a0e07ba4
NJ
2326Initialize an internal stream from which protocol objects may be read. This
2327procedure must be called before any calls to @code{getprotoent}, and may
2328also be called afterward to reset the protocol entry stream. If
2329@var{stayopen} is supplied and is not @code{#f}, the database is not
2330closed by subsequent @code{getprotobyname} or @code{getprotobynumber} calls,
2331possibly giving an efficiency gain.
2332@end deffn
2333
8f85c0c6 2334@deffn {Scheme Procedure} getprotoent
a0e07ba4
NJ
2335Return the next entry from the protocol database.
2336@end deffn
2337
8f85c0c6 2338@deffn {Scheme Procedure} endprotoent
a0e07ba4
NJ
2339Close the stream used by @code{getprotoent}. The return value is unspecified.
2340@end deffn
2341
8f85c0c6
NJ
2342@deffn {Scheme Procedure} setproto [stayopen]
2343@deffnx {C Function} scm_setproto (stayopen)
a0e07ba4
NJ
2344If @var{stayopen} is omitted, this is equivalent to @code{endprotoent}.
2345Otherwise it is equivalent to @code{setprotoent stayopen}.
2346@end deffn
2347
3229f68b 2348@subsubheading The Service Database
f3dfb8ac
KR
2349@cindex @file{/etc/services}
2350@cindex services
2351@cindex network services
a0e07ba4
NJ
2352
2353The following functions accept an object representing a service
2354and return a selected component:
2355
8f85c0c6 2356@deffn {Scheme Procedure} servent:name serv
7403e409 2357The ``official'' name of the network service.
a0e07ba4 2358@end deffn
8f85c0c6 2359@deffn {Scheme Procedure} servent:aliases serv
a0e07ba4
NJ
2360A list of aliases for the network service.
2361@end deffn
8f85c0c6 2362@deffn {Scheme Procedure} servent:port serv
a0e07ba4
NJ
2363The Internet port used by the service.
2364@end deffn
8f85c0c6 2365@deffn {Scheme Procedure} servent:proto serv
a0e07ba4
NJ
2366The protocol used by the service. A service may be listed many times
2367in the database under different protocol names.
2368@end deffn
2369
2370The following procedures are used to search the service database:
2371
8f85c0c6
NJ
2372@deffn {Scheme Procedure} getserv [name [protocol]]
2373@deffnx {Scheme Procedure} getservbyname name protocol
2374@deffnx {Scheme Procedure} getservbyport port protocol
2375@deffnx {C Function} scm_getserv (name, protocol)
a0e07ba4
NJ
2376Look up a network service by name or by service number, and return a
2377network service object. The @var{protocol} argument specifies the name
2378of the desired protocol; if the protocol found in the network service
2379database does not match this name, a system error is signalled.
2380
2381The @code{getserv} procedure will take either a service name or number
2382as its first argument; if given no arguments, it behaves like
2383@code{getservent} (see below).
bcf009c3
NJ
2384
2385@lisp
2386(getserv "imap" "tcp")
2387@result{} #("imap2" ("imap") 143 "tcp")
2388
2389(getservbyport 88 "udp")
2390@result{} #("kerberos" ("kerberos5" "krb5") 88 "udp")
2391@end lisp
a0e07ba4
NJ
2392@end deffn
2393
2394The following procedures may be used to step through the service
2395database from beginning to end.
2396
8f85c0c6 2397@deffn {Scheme Procedure} setservent [stayopen]
a0e07ba4
NJ
2398Initialize an internal stream from which service objects may be read. This
2399procedure must be called before any calls to @code{getservent}, and may
2400also be called afterward to reset the service entry stream. If
2401@var{stayopen} is supplied and is not @code{#f}, the database is not
2402closed by subsequent @code{getservbyname} or @code{getservbyport} calls,
2403possibly giving an efficiency gain.
2404@end deffn
2405
8f85c0c6 2406@deffn {Scheme Procedure} getservent
a0e07ba4
NJ
2407Return the next entry from the services database.
2408@end deffn
2409
8f85c0c6 2410@deffn {Scheme Procedure} endservent
a0e07ba4
NJ
2411Close the stream used by @code{getservent}. The return value is unspecified.
2412@end deffn
2413
8f85c0c6
NJ
2414@deffn {Scheme Procedure} setserv [stayopen]
2415@deffnx {C Function} scm_setserv (stayopen)
a0e07ba4
NJ
2416If @var{stayopen} is omitted, this is equivalent to @code{endservent}.
2417Otherwise it is equivalent to @code{setservent stayopen}.
2418@end deffn
2419
2420@node Network Sockets and Communication
3229f68b 2421@subsubsection Network Sockets and Communication
f3dfb8ac
KR
2422@cindex socket
2423@cindex network socket
a0e07ba4
NJ
2424
2425Socket ports can be created using @code{socket} and @code{socketpair}.
2426The ports are initially unbuffered, to make reading and writing to the
2427same port more reliable. A buffer can be added to the port using
7403e409 2428@code{setvbuf}; see @ref{Ports and File Descriptors}.
a0e07ba4 2429
9e996fb1
KR
2430Most systems have limits on how many files and sockets can be open, so
2431it's strongly recommended that socket ports be closed explicitly when
2432no longer required (@pxref{Ports}).
2433
7403e409
NJ
2434The convention used for ``host'' vs.@: ``network'' addresses is that
2435addresses are always held in host order at the Scheme level. The
2436procedures in this section automatically convert between host and
2437network order when required. The arguments and return values are thus
2438in host order.
a0e07ba4 2439
8f85c0c6
NJ
2440@deffn {Scheme Procedure} socket family style proto
2441@deffnx {C Function} scm_socket (family, style, proto)
a0e07ba4 2442Return a new socket port of the type specified by @var{family},
3dba2dd9
KR
2443@var{style} and @var{proto}. All three parameters are integers. The
2444possible values for @var{family} are as follows, where supported by
2445the system,
2446
2447@defvar PF_UNIX
2448@defvarx PF_INET
2449@defvarx PF_INET6
2450@end defvar
2451
2452The possible values for @var{style} are as follows, again where
2453supported by the system,
2454
2455@defvar SOCK_STREAM
2456@defvarx SOCK_DGRAM
2457@defvarx SOCK_RAW
0bd094c2
KR
2458@defvarx SOCK_RDM
2459@defvarx SOCK_SEQPACKET
3dba2dd9 2460@end defvar
a0e07ba4
NJ
2461
2462@var{proto} can be obtained from a protocol name using
3dba2dd9
KR
2463@code{getprotobyname} (@pxref{Network Databases}). A value of zero
2464means the default protocol, which is usually right.
a0e07ba4 2465
3dba2dd9
KR
2466A socket cannot by used for communication until it has been connected
2467somewhere, usually with either @code{connect} or @code{accept} below.
a0e07ba4
NJ
2468@end deffn
2469
8f85c0c6
NJ
2470@deffn {Scheme Procedure} socketpair family style proto
2471@deffnx {C Function} scm_socketpair (family, style, proto)
497cbe20
KR
2472Return a pair, the @code{car} and @code{cdr} of which are two unnamed
2473socket ports connected to each other. The connection is full-duplex,
2474so data can be transferred in either direction between the two.
2475
2476@var{family}, @var{style} and @var{proto} are as per @code{socket}
2477above. But many systems only support socket pairs in the
2478@code{PF_UNIX} family. Zero is likely to be the only meaningful value
2479for @var{proto}.
a0e07ba4
NJ
2480@end deffn
2481
8f85c0c6
NJ
2482@deffn {Scheme Procedure} getsockopt sock level optname
2483@deffnx {C Function} scm_getsockopt (sock, level, optname)
a0e07ba4
NJ
2484Return the value of a particular socket option for the socket
2485port @var{sock}. @var{level} is an integer code for type of
2486option being requested, e.g., @code{SOL_SOCKET} for
2487socket-level options. @var{optname} is an integer code for the
2488option required and should be specified using one of the
2489symbols @code{SO_DEBUG}, @code{SO_REUSEADDR} etc.
2490
2491The returned value is typically an integer but @code{SO_LINGER}
2492returns a pair of integers.
2493@end deffn
2494
8f85c0c6
NJ
2495@deffn {Scheme Procedure} setsockopt sock level optname value
2496@deffnx {C Function} scm_setsockopt (sock, level, optname, value)
a0e07ba4
NJ
2497Set the value of a particular socket option for the socket
2498port @var{sock}. @var{level} is an integer code for type of option
2499being set, e.g., @code{SOL_SOCKET} for socket-level options.
2500@var{optname} is an
2501integer code for the option to set and should be specified using one of
2502the symbols @code{SO_DEBUG}, @code{SO_REUSEADDR} etc.
2503@var{value} is the value to which the option should be set. For
2504most options this must be an integer, but for @code{SO_LINGER} it must
2505be a pair.
2506
2507The return value is unspecified.
2508@end deffn
2509
8f85c0c6
NJ
2510@deffn {Scheme Procedure} shutdown sock how
2511@deffnx {C Function} scm_shutdown (sock, how)
a0e07ba4 2512Sockets can be closed simply by using @code{close-port}. The
85a9b4ed 2513@code{shutdown} procedure allows reception or transmission on a
a0e07ba4
NJ
2514connection to be shut down individually, according to the parameter
2515@var{how}:
2516
2517@table @asis
2518@item 0
2519Stop receiving data for this socket. If further data arrives, reject it.
2520@item 1
2521Stop trying to transmit data from this socket. Discard any
2522data waiting to be sent. Stop looking for acknowledgement of
2523data already sent; don't retransmit it if it is lost.
2524@item 2
2525Stop both reception and transmission.
2526@end table
2527
2528The return value is unspecified.
2529@end deffn
2530
8f85c0c6
NJ
2531@deffn {Scheme Procedure} connect sock fam address . args
2532@deffnx {C Function} scm_connect (sock, fam, address, args)
a0e07ba4
NJ
2533Initiate a connection from a socket using a specified address
2534family to the address
2535specified by @var{address} and possibly @var{args}.
2536The format required for @var{address}
2537and @var{args} depends on the family of the socket.
2538
2539For a socket of family @code{AF_UNIX},
2540only @var{address} is specified and must be a string with the
2541filename where the socket is to be created.
2542
2543For a socket of family @code{AF_INET},
2544@var{address} must be an integer IPv4 host address and
2545@var{args} must be a single integer port number.
2546
2547For a socket of family @code{AF_INET6},
2548@var{address} must be an integer IPv6 host address and
2549@var{args} may be up to three integers:
2550port [flowinfo] [scope_id],
2551where flowinfo and scope_id default to zero.
2552
2553The return value is unspecified.
2554@end deffn
2555
8f85c0c6
NJ
2556@deffn {Scheme Procedure} bind sock fam address . args
2557@deffnx {C Function} scm_bind (sock, fam, address, args)
a0e07ba4
NJ
2558Assign an address to the socket port @var{sock}.
2559Generally this only needs to be done for server sockets,
2560so they know where to look for incoming connections. A socket
2561without an address will be assigned one automatically when it
2562starts communicating.
2563
2564The format of @var{address} and @var{args} depends
2565on the family of the socket.
2566
2567For a socket of family @code{AF_UNIX}, only @var{address}
2568is specified and must be a string with the filename where
2569the socket is to be created.
2570
2571For a socket of family @code{AF_INET}, @var{address}
2572must be an integer IPv4 address and @var{args}
2573must be a single integer port number.
2574
2575The values of the following variables can also be used for
2576@var{address}:
2577
2578@defvar INADDR_ANY
2579Allow connections from any address.
2580@end defvar
2581
2582@defvar INADDR_LOOPBACK
2583The address of the local host using the loopback device.
2584@end defvar
2585
2586@defvar INADDR_BROADCAST
2587The broadcast address on the local network.
2588@end defvar
2589
2590@defvar INADDR_NONE
2591No address.
2592@end defvar
2593
2594For a socket of family @code{AF_INET6}, @var{address}
2595must be an integer IPv6 address and @var{args}
2596may be up to three integers:
2597port [flowinfo] [scope_id],
2598where flowinfo and scope_id default to zero.
2599
2600The return value is unspecified.
2601@end deffn
2602
8f85c0c6
NJ
2603@deffn {Scheme Procedure} listen sock backlog
2604@deffnx {C Function} scm_listen (sock, backlog)
a0e07ba4
NJ
2605Enable @var{sock} to accept connection
2606requests. @var{backlog} is an integer specifying
2607the maximum length of the queue for pending connections.
2608If the queue fills, new clients will fail to connect until
2609the server calls @code{accept} to accept a connection from
2610the queue.
2611
2612The return value is unspecified.
2613@end deffn
2614
8f85c0c6
NJ
2615@deffn {Scheme Procedure} accept sock
2616@deffnx {C Function} scm_accept (sock)
a0e07ba4
NJ
2617Accept a connection on a bound, listening socket.
2618If there
2619are no pending connections in the queue, wait until
2620one is available unless the non-blocking option has been
2621set on the socket.
2622
2623The return value is a
7403e409 2624pair in which the @acronym{CAR} is a new socket port for the
a0e07ba4 2625connection and
7403e409 2626the @acronym{CDR} is an object with address information about the
a0e07ba4
NJ
2627client which initiated the connection.
2628
2629@var{sock} does not become part of the
2630connection and will continue to accept new requests.
2631@end deffn
2632
2633The following functions take a socket address object, as returned
2634by @code{accept} and other procedures, and return a selected component.
2635
2ce02471 2636@deffn {Scheme Procedure} sockaddr:fam sa
a0e07ba4
NJ
2637The socket family, typically equal to the value of @code{AF_UNIX} or
2638@code{AF_INET}.
2ce02471
NJ
2639@end deffn
2640@deffn {Scheme Procedure} sockaddr:path sa
a0e07ba4
NJ
2641If the socket family is @code{AF_UNIX}, returns the path of the
2642filename the socket is based on.
2ce02471
NJ
2643@end deffn
2644@deffn {Scheme Procedure} sockaddr:addr sa
a0e07ba4
NJ
2645If the socket family is @code{AF_INET}, returns the Internet host
2646address.
2ce02471
NJ
2647@end deffn
2648@deffn {Scheme Procedure} sockaddr:port sa
a0e07ba4
NJ
2649If the socket family is @code{AF_INET}, returns the Internet port
2650number.
2ce02471 2651@end deffn
a0e07ba4 2652
8f85c0c6
NJ
2653@deffn {Scheme Procedure} getsockname sock
2654@deffnx {C Function} scm_getsockname (sock)
a0e07ba4
NJ
2655Return the address of @var{sock}, in the same form as the
2656object returned by @code{accept}. On many systems the address
c16da59f 2657of a socket in the @code{AF_FILE} namespace cannot be read.
a0e07ba4
NJ
2658@end deffn
2659
8f85c0c6
NJ
2660@deffn {Scheme Procedure} getpeername sock
2661@deffnx {C Function} scm_getpeername (sock)
a0e07ba4
NJ
2662Return the address that @var{sock}
2663is connected to, in the same form as the object returned by
2664@code{accept}. On many systems the address of a socket in the
c16da59f 2665@code{AF_FILE} namespace cannot be read.
a0e07ba4
NJ
2666@end deffn
2667
8f85c0c6
NJ
2668@deffn {Scheme Procedure} recv! sock buf [flags]
2669@deffnx {C Function} scm_recv (sock, buf, flags)
a0e07ba4
NJ
2670Receive data from a socket port.
2671@var{sock} must already
2672be bound to the address from which data is to be received.
2673@var{buf} is a string into which
2674the data will be written. The size of @var{buf} limits
2675the amount of
2676data which can be received: in the case of packet
2677protocols, if a packet larger than this limit is encountered
2678then some data
2679will be irrevocably lost.
2680
2ce02471
NJ
2681@vindex MSG_OOB
2682@vindex MSG_PEEK
2683@vindex MSG_DONTROUTE
7403e409
NJ
2684The optional @var{flags} argument is a value or bitwise OR of
2685@code{MSG_OOB}, @code{MSG_PEEK}, @code{MSG_DONTROUTE} etc.
a0e07ba4
NJ
2686
2687The value returned is the number of bytes read from the
2688socket.
2689
2690Note that the data is read directly from the socket file
2691descriptor:
2692any unread buffered port data is ignored.
2693@end deffn
2694
8f85c0c6
NJ
2695@deffn {Scheme Procedure} send sock message [flags]
2696@deffnx {C Function} scm_send (sock, message, flags)
2ce02471
NJ
2697@vindex MSG_OOB
2698@vindex MSG_PEEK
2699@vindex MSG_DONTROUTE
a0e07ba4 2700Transmit the string @var{message} on a socket port @var{sock}.
7403e409
NJ
2701@var{sock} must already be bound to a destination address. The value
2702returned is the number of bytes transmitted---it's possible for this
2703to be less than the length of @var{message} if the socket is set to be
2704non-blocking. The optional @var{flags} argument is a value or bitwise
2705OR of @code{MSG_OOB}, @code{MSG_PEEK}, @code{MSG_DONTROUTE} etc.
a0e07ba4
NJ
2706
2707Note that the data is written directly to the socket
2708file descriptor:
2709any unflushed buffered port data is ignored.
2710@end deffn
2711
8f85c0c6
NJ
2712@deffn {Scheme Procedure} recvfrom! sock str [flags [start [end]]]
2713@deffnx {C Function} scm_recvfrom (sock, str, flags, start, end)
a0e07ba4
NJ
2714Return data from the socket port @var{sock} and also
2715information about where the data was received from.
2716@var{sock} must already be bound to the address from which
2717data is to be received. @code{str}, is a string into which the
2718data will be written. The size of @var{str} limits the amount
2719of data which can be received: in the case of packet protocols,
2720if a packet larger than this limit is encountered then some
2721data will be irrevocably lost.
2722
2ce02471
NJ
2723@vindex MSG_OOB
2724@vindex MSG_PEEK
2725@vindex MSG_DONTROUTE
a0e07ba4
NJ
2726The optional @var{flags} argument is a value or bitwise OR of
2727@code{MSG_OOB}, @code{MSG_PEEK}, @code{MSG_DONTROUTE} etc.
2728
7403e409
NJ
2729The value returned is a pair: the @acronym{CAR} is the number of
2730bytes read from the socket and the @acronym{CDR} an address object
a0e07ba4
NJ
2731in the same form as returned by @code{accept}. The address
2732will given as @code{#f} if not available, as is usually the
2733case for stream sockets.
2734
2735The @var{start} and @var{end} arguments specify a substring of
2736@var{str} to which the data should be written.
2737
2738Note that the data is read directly from the socket file
2739descriptor: any unread buffered port data is ignored.
2740@end deffn
2741
8f85c0c6
NJ
2742@deffn {Scheme Procedure} sendto sock message fam address . args_and_flags
2743@deffnx {C Function} scm_sendto (sock, message, fam, address, args_and_flags)
a0e07ba4
NJ
2744Transmit the string @var{message} on the socket port
2745@var{sock}. The
2746destination address is specified using the @var{fam},
2747@var{address} and
2748@var{args_and_flags} arguments, in a similar way to the
2749@code{connect} procedure. @var{args_and_flags} contains
2750the usual connection arguments optionally followed by
2751a flags argument, which is a value or
7403e409 2752bitwise OR of @code{MSG_OOB}, @code{MSG_PEEK}, @code{MSG_DONTROUTE} etc.
a0e07ba4
NJ
2753
2754The value returned is the number of bytes transmitted --
2755it's possible for
2756this to be less than the length of @var{message} if the
2757socket is
2758set to be non-blocking.
2759Note that the data is written directly to the socket
2760file descriptor:
2761any unflushed buffered port data is ignored.
2762@end deffn
2763
2764The following functions can be used to convert short and long integers
7403e409 2765between ``host'' and ``network'' order. Although the procedures above do
a0e07ba4
NJ
2766this automatically for addresses, the conversion will still need to
2767be done when sending or receiving encoded integer data from the network.
2768
8f85c0c6
NJ
2769@deffn {Scheme Procedure} htons value
2770@deffnx {C Function} scm_htons (value)
a0e07ba4
NJ
2771Convert a 16 bit quantity from host to network byte ordering.
2772@var{value} is packed into 2 bytes, which are then converted
2773and returned as a new integer.
2774@end deffn
2775
8f85c0c6
NJ
2776@deffn {Scheme Procedure} ntohs value
2777@deffnx {C Function} scm_ntohs (value)
a0e07ba4
NJ
2778Convert a 16 bit quantity from network to host byte ordering.
2779@var{value} is packed into 2 bytes, which are then converted
2780and returned as a new integer.
2781@end deffn
2782
8f85c0c6
NJ
2783@deffn {Scheme Procedure} htonl value
2784@deffnx {C Function} scm_htonl (value)
a0e07ba4
NJ
2785Convert a 32 bit quantity from host to network byte ordering.
2786@var{value} is packed into 4 bytes, which are then converted
2787and returned as a new integer.
2788@end deffn
2789
8f85c0c6
NJ
2790@deffn {Scheme Procedure} ntohl value
2791@deffnx {C Function} scm_ntohl (value)
a0e07ba4
NJ
2792Convert a 32 bit quantity from network to host byte ordering.
2793@var{value} is packed into 4 bytes, which are then converted
2794and returned as a new integer.
2795@end deffn
2796
2797These procedures are inconvenient to use at present, but consider:
2798
2799@example
2800(define write-network-long
2801 (lambda (value port)
2802 (let ((v (make-uniform-vector 1 1 0)))
2803 (uniform-vector-set! v 0 (htonl value))
2804 (uniform-vector-write v port))))
2805
2806(define read-network-long
2807 (lambda (port)
2808 (let ((v (make-uniform-vector 1 1 0)))
2809 (uniform-vector-read! v port)
2810 (ntohl (uniform-vector-ref v 0)))))
2811@end example
2812
bcf009c3
NJ
2813
2814@node Internet Socket Examples
3229f68b 2815@subsubsection Network Socket Examples
f3dfb8ac
KR
2816@cindex network examples
2817@cindex socket examples
bcf009c3 2818
3229f68b 2819The following give examples of how to use network sockets.
bcf009c3 2820
3229f68b 2821@subsubheading Internet Socket Client Example
bcf009c3
NJ
2822
2823@cindex socket client example
2824The following example demonstrates an Internet socket client.
2825It connects to the HTTP daemon running on the local machine and
2826returns the contents of the root index URL.
2827
2828@example
a8d0313f 2829(let ((s (socket PF_INET SOCK_STREAM 0)))
bcf009c3
NJ
2830 (connect s AF_INET (inet-aton "127.0.0.1") 80)
2831 (display "GET / HTTP/1.0\r\n\r\n" s)
2832
2833 (do ((line (read-line s) (read-line s)))
2834 ((eof-object? line))
2835 (display line)
2836 (newline)))
2837@end example
2838
2839
3229f68b 2840@subsubheading Internet Socket Server Example
bcf009c3
NJ
2841
2842@cindex socket server example
2843The following example shows a simple Internet server which listens on
2844port 2904 for incoming connections and sends a greeting back to the
2845client.
2846
2847@example
a8d0313f 2848(let ((s (socket PF_INET SOCK_STREAM 0)))
bcf009c3 2849 (setsockopt s SOL_SOCKET SO_REUSEADDR 1)
7403e409
NJ
2850 ;; @r{Specific address?}
2851 ;; @r{(bind s AF_INET (inet-aton "127.0.0.1") 2904)}
bcf009c3
NJ
2852 (bind s AF_INET INADDR_ANY 2904)
2853 (listen s 5)
2854
2855 (simple-format #t "Listening for clients in pid: ~S" (getpid))
2856 (newline)
2857
2858 (while #t
2859 (let* ((client-connection (accept s))
2860 (client-details (cdr client-connection))
2861 (client (car client-connection)))
2862 (simple-format #t "Got new client connection: ~S"
2863 client-details)
2864 (newline)
2865 (simple-format #t "Client address: ~S"
2866 (gethostbyaddr
2867 (sockaddr:addr client-details)))
2868 (newline)
7403e409 2869 ;; @r{Send back the greeting to the client port}
bcf009c3
NJ
2870 (display "Hello client\r\n" client)
2871 (close client))))
2872@end example
2873
2874
a0e07ba4 2875@node System Identification
3229f68b 2876@subsection System Identification
f3dfb8ac 2877@cindex system name
a0e07ba4
NJ
2878
2879This section lists the various procedures Guile provides for accessing
2880information about the system it runs on.
2881
8f85c0c6
NJ
2882@deffn {Scheme Procedure} uname
2883@deffnx {C Function} scm_uname ()
a0e07ba4
NJ
2884Return an object with some information about the computer
2885system the program is running on.
a0e07ba4
NJ
2886
2887The following procedures accept an object as returned by @code{uname}
2888and return a selected component.
2889
2ce02471 2890@deffn {Scheme Procedure} utsname:sysname un
a0e07ba4 2891The name of the operating system.
2ce02471
NJ
2892@end deffn
2893@deffn {Scheme Procedure} utsname:nodename un
a0e07ba4 2894The network name of the computer.
2ce02471
NJ
2895@end deffn
2896@deffn {Scheme Procedure} utsname:release un
a0e07ba4 2897The current release level of the operating system implementation.
2ce02471
NJ
2898@end deffn
2899@deffn {Scheme Procedure} utsname:version un
a0e07ba4 2900The current version level within the release of the operating system.
2ce02471
NJ
2901@end deffn
2902@deffn {Scheme Procedure} utsname:machine un
a0e07ba4 2903A description of the hardware.
2ce02471
NJ
2904@end deffn
2905@end deffn
a0e07ba4 2906
8f85c0c6
NJ
2907@deffn {Scheme Procedure} gethostname
2908@deffnx {C Function} scm_gethostname ()
f3dfb8ac 2909@cindex host name
a0e07ba4
NJ
2910Return the host name of the current processor.
2911@end deffn
2912
8f85c0c6
NJ
2913@deffn {Scheme Procedure} sethostname name
2914@deffnx {C Function} scm_sethostname (name)
a0e07ba4
NJ
2915Set the host name of the current processor to @var{name}. May
2916only be used by the superuser. The return value is not
2917specified.
2918@end deffn
2919
a0e07ba4 2920@node Locales
3229f68b 2921@subsection Locales
f3dfb8ac 2922@cindex locale
a0e07ba4 2923
8f85c0c6
NJ
2924@deffn {Scheme Procedure} setlocale category [locale]
2925@deffnx {C Function} scm_setlocale (category, locale)
74f76d62
KR
2926Get or set the current locale, used for various internationalizations.
2927Locales are strings, such as @samp{sv_SE}.
2928
bdd46043 2929If @var{locale} is given then the locale for the given @var{category} is set
74f76d62
KR
2930and the new value returned. If @var{locale} is not given then the
2931current value is returned. @var{category} should be one of the
2932following values
2933
2934@defvar LC_ALL
2935@defvarx LC_COLLATE
2936@defvarx LC_CTYPE
2937@defvarx LC_MESSAGES
2938@defvarx LC_MONETARY
2939@defvarx LC_NUMERIC
2940@defvarx LC_TIME
2941@end defvar
2942
f3dfb8ac 2943@cindex @code{LANG}
74f76d62
KR
2944A common usage is @samp{(setlocale LC_ALL "")}, which initializes all
2945categories based on standard environment variables (@code{LANG} etc).
2946For full details on categories and locale names @pxref{Locales,,
2947Locales and Internationalization, libc, The GNU C Library Reference
2948Manual}.
a0e07ba4
NJ
2949@end deffn
2950
2951@node Encryption
3229f68b 2952@subsection Encryption
f3dfb8ac 2953@cindex encryption
a0e07ba4
NJ
2954
2955Please note that the procedures in this section are not suited for
2956strong encryption, they are only interfaces to the well-known and
2957common system library functions of the same name. They are just as good
2958(or bad) as the underlying functions, so you should refer to your system
2959documentation before using them.
2960
8f85c0c6
NJ
2961@deffn {Scheme Procedure} crypt key salt
2962@deffnx {C Function} scm_crypt (key, salt)
a0e07ba4 2963Encrypt @var{key} using @var{salt} as the salt value to the
9401323e 2964crypt(3) library call.
a0e07ba4
NJ
2965@end deffn
2966
5f378d17
TTN
2967Although @code{getpass} is not an encryption procedure per se, it
2968appears here because it is often used in combination with @code{crypt}:
a0e07ba4 2969
8f85c0c6
NJ
2970@deffn {Scheme Procedure} getpass prompt
2971@deffnx {C Function} scm_getpass (prompt)
f3dfb8ac 2972@cindex password
a0e07ba4
NJ
2973Display @var{prompt} to the standard error output and read
2974a password from @file{/dev/tty}. If this file is not
2975accessible, it reads from standard input. The password may be
2976up to 127 characters in length. Additional characters and the
2977terminating newline character are discarded. While reading
2978the password, echoing and the generation of signals by special
2979characters is disabled.
2980@end deffn
5982a8e0
KR
2981
2982
2983@c Local Variables:
2984@c TeX-master: "guile.texi"
2985@c End: