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