Extend the #:replace list of the SRFI 69 module
[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, 2006, 2007, 2008, 2009, 2010
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 port/fd cmd [value]
476 @deffnx {C Function} scm_fcntl (object, cmd, value)
477 Apply @var{cmd} on @var{port/fd}, either a port or file descriptor.
478 The @var{value} argument is used by the @code{SET} commands described
479 below, it's an integer value.
480
481 Values for @var{cmd} are:
482
483 @defvar F_DUPFD
484 Duplicate the file descriptor, the same as @code{dup->fdes} above
485 does.
486 @end defvar
487
488 @defvar F_GETFD
489 @defvarx F_SETFD
490 Get or set flags associated with the file descriptor. The only flag
491 is the following,
492
493 @defvar FD_CLOEXEC
494 ``Close on exec'', meaning the file descriptor will be closed on an
495 @code{exec} call (a successful such call). For example to set that
496 flag,
497
498 @example
499 (fcntl port F_SETFD FD_CLOEXEC)
500 @end example
501
502 Or better, set it but leave any other possible future flags unchanged,
503
504 @example
505 (fcntl port F_SETFD (logior FD_CLOEXEC
506 (fcntl port F_GETFD)))
507 @end example
508 @end defvar
509 @end defvar
510
511 @defvar F_GETFL
512 @defvarx F_SETFL
513 Get or set flags associated with the open file. These flags are
514 @code{O_RDONLY} etc described under @code{open} above.
515
516 A common use is to set @code{O_NONBLOCK} on a network socket. The
517 following sets that flag, and leaves other flags unchanged.
518
519 @example
520 (fcntl sock F_SETFL (logior O_NONBLOCK
521 (fcntl sock F_GETFL)))
522 @end example
523 @end defvar
524
525 @defvar F_GETOWN
526 @defvarx F_SETOWN
527 Get or set the process ID of a socket's owner, for @code{SIGIO} signals.
528 @end defvar
529 @end deffn
530
531 @deffn {Scheme Procedure} flock file operation
532 @deffnx {C Function} scm_flock (file, operation)
533 @cindex file locking
534 Apply or remove an advisory lock on an open file.
535 @var{operation} specifies the action to be done:
536
537 @defvar LOCK_SH
538 Shared lock. More than one process may hold a shared lock
539 for a given file at a given time.
540 @end defvar
541 @defvar LOCK_EX
542 Exclusive lock. Only one process may hold an exclusive lock
543 for a given file at a given time.
544 @end defvar
545 @defvar LOCK_UN
546 Unlock the file.
547 @end defvar
548 @defvar LOCK_NB
549 Don't block when locking. This is combined with one of the other
550 operations using @code{logior} (@pxref{Bitwise Operations}). If
551 @code{flock} would block an @code{EWOULDBLOCK} error is thrown
552 (@pxref{Conventions}).
553 @end defvar
554
555 The return value is not specified. @var{file} may be an open
556 file descriptor or an open file descriptor port.
557
558 Note that @code{flock} does not lock files across NFS.
559 @end deffn
560
561 @deffn {Scheme Procedure} select reads writes excepts [secs [usecs]]
562 @deffnx {C Function} scm_select (reads, writes, excepts, secs, usecs)
563 This procedure has a variety of uses: waiting for the ability
564 to provide input, accept output, or the existence of
565 exceptional conditions on a collection of ports or file
566 descriptors, or waiting for a timeout to occur.
567 It also returns if interrupted by a signal.
568
569 @var{reads}, @var{writes} and @var{excepts} can be lists or
570 vectors, with each member a port or a file descriptor.
571 The value returned is a list of three corresponding
572 lists or vectors containing only the members which meet the
573 specified requirement. The ability of port buffers to
574 provide input or accept output is taken into account.
575 Ordering of the input lists or vectors is not preserved.
576
577 The optional arguments @var{secs} and @var{usecs} specify the
578 timeout. Either @var{secs} can be specified alone, as
579 either an integer or a real number, or both @var{secs} and
580 @var{usecs} can be specified as integers, in which case
581 @var{usecs} is an additional timeout expressed in
582 microseconds. If @var{secs} is omitted or is @code{#f} then
583 select will wait for as long as it takes for one of the other
584 conditions to be satisfied.
585
586 The scsh version of @code{select} differs as follows:
587 Only vectors are accepted for the first three arguments.
588 The @var{usecs} argument is not supported.
589 Multiple values are returned instead of a list.
590 Duplicates in the input vectors appear only once in output.
591 An additional @code{select!} interface is provided.
592 @end deffn
593
594 @node File System
595 @subsection File System
596 @cindex file system
597
598 These procedures allow querying and setting file system attributes
599 (such as owner,
600 permissions, sizes and types of files); deleting, copying, renaming and
601 linking files; creating and removing directories and querying their
602 contents; syncing the file system and creating special files.
603
604 @deffn {Scheme Procedure} access? path how
605 @deffnx {C Function} scm_access (path, how)
606 Test accessibility of a file under the real UID and GID of the calling
607 process. The return is @code{#t} if @var{path} exists and the
608 permissions requested by @var{how} are all allowed, or @code{#f} if
609 not.
610
611 @var{how} is an integer which is one of the following values, or a
612 bitwise-OR (@code{logior}) of multiple values.
613
614 @defvar R_OK
615 Test for read permission.
616 @end defvar
617 @defvar W_OK
618 Test for write permission.
619 @end defvar
620 @defvar X_OK
621 Test for execute permission.
622 @end defvar
623 @defvar F_OK
624 Test for existence of the file. This is implied by each of the other
625 tests, so there's no need to combine it with them.
626 @end defvar
627
628 It's important to note that @code{access?} does not simply indicate
629 what will happen on attempting to read or write a file. In normal
630 circumstances it does, but in a set-UID or set-GID program it doesn't
631 because @code{access?} tests the real ID, whereas an open or execute
632 attempt uses the effective ID.
633
634 A program which will never run set-UID/GID can ignore the difference
635 between real and effective IDs, but for maximum generality, especially
636 in library functions, it's best not to use @code{access?} to predict
637 the result of an open or execute, instead simply attempt that and
638 catch any exception.
639
640 The main use for @code{access?} is to let a set-UID/GID program
641 determine what the invoking user would have been allowed to do,
642 without the greater (or perhaps lesser) privileges afforded by the
643 effective ID. For more on this, see @ref{Testing File Access,,, libc,
644 The GNU C Library Reference Manual}.
645 @end deffn
646
647 @findex fstat
648 @deffn {Scheme Procedure} stat object
649 @deffnx {C Function} scm_stat (object)
650 Return an object containing various information about the file
651 determined by @var{obj}. @var{obj} can be a string containing
652 a file name or a port or integer file descriptor which is open
653 on a file (in which case @code{fstat} is used as the underlying
654 system call).
655
656 The object returned by @code{stat} can be passed as a single
657 parameter to the following procedures, all of which return
658 integers:
659
660 @deffn {Scheme Procedure} stat:dev st
661 The device number containing the file.
662 @end deffn
663 @deffn {Scheme Procedure} stat:ino st
664 The file serial number, which distinguishes this file from all
665 other files on the same device.
666 @end deffn
667 @deffn {Scheme Procedure} stat:mode st
668 The mode of the file. This is an integer which incorporates file type
669 information and file permission bits. See also @code{stat:type} and
670 @code{stat:perms} below.
671 @end deffn
672 @deffn {Scheme Procedure} stat:nlink st
673 The number of hard links to the file.
674 @end deffn
675 @deffn {Scheme Procedure} stat:uid st
676 The user ID of the file's owner.
677 @end deffn
678 @deffn {Scheme Procedure} stat:gid st
679 The group ID of the file.
680 @end deffn
681 @deffn {Scheme Procedure} stat:rdev st
682 Device ID; this entry is defined only for character or block special
683 files. On some systems this field is not available at all, in which
684 case @code{stat:rdev} returns @code{#f}.
685 @end deffn
686 @deffn {Scheme Procedure} stat:size st
687 The size of a regular file in bytes.
688 @end deffn
689 @deffn {Scheme Procedure} stat:atime st
690 The last access time for the file, in seconds.
691 @end deffn
692 @deffn {Scheme Procedure} stat:mtime st
693 The last modification time for the file, in seconds.
694 @end deffn
695 @deffn {Scheme Procedure} stat:ctime st
696 The last modification time for the attributes of the file, in seconds.
697 @end deffn
698 @deffn {Scheme Procedure} stat:atimensec st
699 @deffnx {Scheme Procedure} stat:mtimensec st
700 @deffnx {Scheme Procedure} stat:ctimensec st
701 The fractional part of a file's access, modification, or attribute modification
702 time, in nanoseconds. Nanosecond timestamps are only available on some operating
703 systems and file systems. If Guile cannot retrieve nanosecond-level timestamps
704 for a file, these fields will be set to 0.
705 @end deffn
706 @deffn {Scheme Procedure} stat:blksize st
707 The optimal block size for reading or writing the file, in bytes. On
708 some systems this field is not available, in which case
709 @code{stat:blksize} returns a sensible suggested block size.
710 @end deffn
711 @deffn {Scheme Procedure} stat:blocks st
712 The amount of disk space that the file occupies measured in units of
713 512 byte blocks. On some systems this field is not available, in
714 which case @code{stat:blocks} returns @code{#f}.
715 @end deffn
716
717 In addition, the following procedures return the information
718 from @code{stat:mode} in a more convenient form:
719
720 @deffn {Scheme Procedure} stat:type st
721 A symbol representing the type of file. Possible values are
722 @samp{regular}, @samp{directory}, @samp{symlink},
723 @samp{block-special}, @samp{char-special}, @samp{fifo}, @samp{socket},
724 and @samp{unknown}.
725 @end deffn
726 @deffn {Scheme Procedure} stat:perms st
727 An integer representing the access permission bits.
728 @end deffn
729 @end deffn
730
731 @deffn {Scheme Procedure} lstat str
732 @deffnx {C Function} scm_lstat (str)
733 Similar to @code{stat}, but does not follow symbolic links, i.e.,
734 it will return information about a symbolic link itself, not the
735 file it points to. @var{path} must be a string.
736 @end deffn
737
738 @deffn {Scheme Procedure} readlink path
739 @deffnx {C Function} scm_readlink (path)
740 Return the value of the symbolic link named by @var{path} (a
741 string), i.e., the file that the link points to.
742 @end deffn
743
744 @findex fchown
745 @findex lchown
746 @deffn {Scheme Procedure} chown object owner group
747 @deffnx {C Function} scm_chown (object, owner, group)
748 Change the ownership and group of the file referred to by @var{object}
749 to the integer values @var{owner} and @var{group}. @var{object} can
750 be a string containing a file name or, if the platform supports
751 @code{fchown} (@pxref{File Owner,,,libc,The GNU C Library Reference
752 Manual}), a port or integer file descriptor which is open on the file.
753 The return value is unspecified.
754
755 If @var{object} is a symbolic link, either the
756 ownership of the link or the ownership of the referenced file will be
757 changed depending on the operating system (lchown is
758 unsupported at present). If @var{owner} or @var{group} is specified
759 as @code{-1}, then that ID is not changed.
760 @end deffn
761
762 @findex fchmod
763 @deffn {Scheme Procedure} chmod object mode
764 @deffnx {C Function} scm_chmod (object, mode)
765 Changes the permissions of the file referred to by @var{obj}.
766 @var{obj} can be a string containing a file name or a port or integer file
767 descriptor which is open on a file (in which case @code{fchmod} is used
768 as the underlying system call).
769 @var{mode} specifies
770 the new permissions as a decimal number, e.g., @code{(chmod "foo" #o755)}.
771 The return value is unspecified.
772 @end deffn
773
774 @deffn {Scheme Procedure} utime pathname [actime [modtime [actimens [modtimens [flags]]]]]
775 @deffnx {C Function} scm_utime (pathname, actime, modtime, actimens, modtimens, flags)
776 @code{utime} sets the access and modification times for the
777 file named by @var{path}. If @var{actime} or @var{modtime} is
778 not supplied, then the current time is used. @var{actime} and
779 @var{modtime} must be integer time values as returned by the
780 @code{current-time} procedure.
781
782 The optional @var{actimens} and @var{modtimens} are nanoseconds
783 to add @var{actime} and @var{modtime}. Nanosecond precision is
784 only supported on some combinations of file systems and operating
785 systems.
786 @lisp
787 (utime "foo" (- (current-time) 3600))
788 @end lisp
789 will set the access time to one hour in the past and the
790 modification time to the current time.
791 @end deffn
792
793 @findex unlink
794 @deffn {Scheme Procedure} delete-file str
795 @deffnx {C Function} scm_delete_file (str)
796 Deletes (or ``unlinks'') the file whose path is specified by
797 @var{str}.
798 @end deffn
799
800 @deffn {Scheme Procedure} copy-file oldfile newfile
801 @deffnx {C Function} scm_copy_file (oldfile, newfile)
802 Copy the file specified by @var{oldfile} to @var{newfile}.
803 The return value is unspecified.
804 @end deffn
805
806 @findex rename
807 @deffn {Scheme Procedure} rename-file oldname newname
808 @deffnx {C Function} scm_rename (oldname, newname)
809 Renames the file specified by @var{oldname} to @var{newname}.
810 The return value is unspecified.
811 @end deffn
812
813 @deffn {Scheme Procedure} link oldpath newpath
814 @deffnx {C Function} scm_link (oldpath, newpath)
815 Creates a new name @var{newpath} in the file system for the
816 file named by @var{oldpath}. If @var{oldpath} is a symbolic
817 link, the link may or may not be followed depending on the
818 system.
819 @end deffn
820
821 @deffn {Scheme Procedure} symlink oldpath newpath
822 @deffnx {C Function} scm_symlink (oldpath, newpath)
823 Create a symbolic link named @var{newpath} with the value (i.e., pointing to)
824 @var{oldpath}. The return value is unspecified.
825 @end deffn
826
827 @deffn {Scheme Procedure} mkdir path [mode]
828 @deffnx {C Function} scm_mkdir (path, mode)
829 Create a new directory named by @var{path}. If @var{mode} is omitted
830 then the permissions of the directory file are set using the current
831 umask (@pxref{Processes}). Otherwise they are set to the decimal
832 value specified with @var{mode}. The return value is unspecified.
833 @end deffn
834
835 @deffn {Scheme Procedure} rmdir path
836 @deffnx {C Function} scm_rmdir (path)
837 Remove the existing directory named by @var{path}. The directory must
838 be empty for this to succeed. The return value is unspecified.
839 @end deffn
840
841 @deffn {Scheme Procedure} opendir dirname
842 @deffnx {C Function} scm_opendir (dirname)
843 @cindex directory contents
844 Open the directory specified by @var{dirname} and return a directory
845 stream.
846 @end deffn
847
848 @deffn {Scheme Procedure} directory-stream? object
849 @deffnx {C Function} scm_directory_stream_p (object)
850 Return a boolean indicating whether @var{object} is a directory
851 stream as returned by @code{opendir}.
852 @end deffn
853
854 @deffn {Scheme Procedure} readdir stream
855 @deffnx {C Function} scm_readdir (stream)
856 Return (as a string) the next directory entry from the directory stream
857 @var{stream}. If there is no remaining entry to be read then the
858 end of file object is returned.
859 @end deffn
860
861 @deffn {Scheme Procedure} rewinddir stream
862 @deffnx {C Function} scm_rewinddir (stream)
863 Reset the directory port @var{stream} so that the next call to
864 @code{readdir} will return the first directory entry.
865 @end deffn
866
867 @deffn {Scheme Procedure} closedir stream
868 @deffnx {C Function} scm_closedir (stream)
869 Close the directory stream @var{stream}.
870 The return value is unspecified.
871 @end deffn
872
873 Here is an example showing how to display all the entries in a
874 directory:
875
876 @lisp
877 (define dir (opendir "/usr/lib"))
878 (do ((entry (readdir dir) (readdir dir)))
879 ((eof-object? entry))
880 (display entry)(newline))
881 (closedir dir)
882 @end lisp
883
884 @deffn {Scheme Procedure} sync
885 @deffnx {C Function} scm_sync ()
886 Flush the operating system disk buffers.
887 The return value is unspecified.
888 @end deffn
889
890 @deffn {Scheme Procedure} mknod path type perms dev
891 @deffnx {C Function} scm_mknod (path, type, perms, dev)
892 @cindex device file
893 Creates a new special file, such as a file corresponding to a device.
894 @var{path} specifies the name of the file. @var{type} should be one
895 of the following symbols: @samp{regular}, @samp{directory},
896 @samp{symlink}, @samp{block-special}, @samp{char-special},
897 @samp{fifo}, or @samp{socket}. @var{perms} (an integer) specifies the
898 file permissions. @var{dev} (an integer) specifies which device the
899 special file refers to. Its exact interpretation depends on the kind
900 of special file being created.
901
902 E.g.,
903 @lisp
904 (mknod "/dev/fd0" 'block-special #o660 (+ (* 2 256) 2))
905 @end lisp
906
907 The return value is unspecified.
908 @end deffn
909
910 @deffn {Scheme Procedure} tmpnam
911 @deffnx {C Function} scm_tmpnam ()
912 @cindex temporary file
913 Return an auto-generated name of a temporary file, a file which
914 doesn't already exist. The name includes a path, it's usually in
915 @file{/tmp} but that's system dependent.
916
917 Care must be taken when using @code{tmpnam}. In between choosing the
918 name and creating the file another program might use that name, or an
919 attacker might even make it a symlink pointing at something important
920 and causing you to overwrite that.
921
922 The safe way is to create the file using @code{open} with
923 @code{O_EXCL} to avoid any overwriting. A loop can try again with
924 another name if the file exists (error @code{EEXIST}).
925 @code{mkstemp!} below does that.
926 @end deffn
927
928 @deffn {Scheme Procedure} mkstemp! tmpl
929 @deffnx {C Function} scm_mkstemp (tmpl)
930 @cindex temporary file
931 Create a new unique file in the file system and return a new buffered
932 port open for reading and writing to the file.
933
934 @var{tmpl} is a string specifying where the file should be created: it
935 must end with @samp{XXXXXX} and those @samp{X}s will be changed in the
936 string to return the name of the file. (@code{port-filename} on the
937 port also gives the name.)
938
939 POSIX doesn't specify the permissions mode of the file, on GNU and
940 most systems it's @code{#o600}. An application can use @code{chmod}
941 to relax that if desired. For example @code{#o666} less @code{umask},
942 which is usual for ordinary file creation,
943
944 @example
945 (let ((port (mkstemp! (string-copy "/tmp/myfile-XXXXXX"))))
946 (chmod port (logand #o666 (lognot (umask))))
947 ...)
948 @end example
949 @end deffn
950
951 @deffn {Scheme Procedure} tmpfile
952 @deffnx {C Function} scm_tmpfile
953 Return an input/output port to a unique temporary file
954 named using the path prefix @code{P_tmpdir} defined in
955 @file{stdio.h}.
956 The file is automatically deleted when the port is closed
957 or the program terminates.
958 @end deffn
959
960 @deffn {Scheme Procedure} dirname filename
961 @deffnx {C Function} scm_dirname (filename)
962 Return the directory name component of the file name
963 @var{filename}. If @var{filename} does not contain a directory
964 component, @code{.} is returned.
965 @end deffn
966
967 @deffn {Scheme Procedure} basename filename [suffix]
968 @deffnx {C Function} scm_basename (filename, suffix)
969 Return the base name of the file name @var{filename}. The
970 base name is the file name without any directory components.
971 If @var{suffix} is provided, and is equal to the end of
972 @var{basename}, it is removed also.
973
974 @lisp
975 (basename "/tmp/test.xml" ".xml")
976 @result{} "test"
977 @end lisp
978 @end deffn
979
980 @deffn {Scheme Procedure} file-exists? filename
981 Return @code{#t} if the file named @var{filename} exists, @code{#f} if
982 not.
983 @end deffn
984
985
986 @node User Information
987 @subsection User Information
988 @cindex user information
989 @cindex password file
990 @cindex group file
991
992 The facilities in this section provide an interface to the user and
993 group database.
994 They should be used with care since they are not reentrant.
995
996 The following functions accept an object representing user information
997 and return a selected component:
998
999 @deffn {Scheme Procedure} passwd:name pw
1000 The name of the userid.
1001 @end deffn
1002 @deffn {Scheme Procedure} passwd:passwd pw
1003 The encrypted passwd.
1004 @end deffn
1005 @deffn {Scheme Procedure} passwd:uid pw
1006 The user id number.
1007 @end deffn
1008 @deffn {Scheme Procedure} passwd:gid pw
1009 The group id number.
1010 @end deffn
1011 @deffn {Scheme Procedure} passwd:gecos pw
1012 The full name.
1013 @end deffn
1014 @deffn {Scheme Procedure} passwd:dir pw
1015 The home directory.
1016 @end deffn
1017 @deffn {Scheme Procedure} passwd:shell pw
1018 The login shell.
1019 @end deffn
1020 @sp 1
1021
1022 @deffn {Scheme Procedure} getpwuid uid
1023 Look up an integer userid in the user database.
1024 @end deffn
1025
1026 @deffn {Scheme Procedure} getpwnam name
1027 Look up a user name string in the user database.
1028 @end deffn
1029
1030 @deffn {Scheme Procedure} setpwent
1031 Initializes a stream used by @code{getpwent} to read from the user database.
1032 The next use of @code{getpwent} will return the first entry. The
1033 return value is unspecified.
1034 @end deffn
1035
1036 @deffn {Scheme Procedure} getpwent
1037 Read the next entry in the user database stream. The return is a
1038 passwd user object as above, or @code{#f} when no more entries.
1039 @end deffn
1040
1041 @deffn {Scheme Procedure} endpwent
1042 Closes the stream used by @code{getpwent}. The return value is unspecified.
1043 @end deffn
1044
1045 @deffn {Scheme Procedure} setpw [arg]
1046 @deffnx {C Function} scm_setpwent (arg)
1047 If called with a true argument, initialize or reset the password data
1048 stream. Otherwise, close the stream. The @code{setpwent} and
1049 @code{endpwent} procedures are implemented on top of this.
1050 @end deffn
1051
1052 @deffn {Scheme Procedure} getpw [user]
1053 @deffnx {C Function} scm_getpwuid (user)
1054 Look up an entry in the user database. @var{obj} can be an integer,
1055 a string, or omitted, giving the behaviour of getpwuid, getpwnam
1056 or getpwent respectively.
1057 @end deffn
1058
1059 The following functions accept an object representing group information
1060 and return a selected component:
1061
1062 @deffn {Scheme Procedure} group:name gr
1063 The group name.
1064 @end deffn
1065 @deffn {Scheme Procedure} group:passwd gr
1066 The encrypted group password.
1067 @end deffn
1068 @deffn {Scheme Procedure} group:gid gr
1069 The group id number.
1070 @end deffn
1071 @deffn {Scheme Procedure} group:mem gr
1072 A list of userids which have this group as a supplementary group.
1073 @end deffn
1074 @sp 1
1075
1076 @deffn {Scheme Procedure} getgrgid gid
1077 Look up an integer group id in the group database.
1078 @end deffn
1079
1080 @deffn {Scheme Procedure} getgrnam name
1081 Look up a group name in the group database.
1082 @end deffn
1083
1084 @deffn {Scheme Procedure} setgrent
1085 Initializes a stream used by @code{getgrent} to read from the group database.
1086 The next use of @code{getgrent} will return the first entry.
1087 The return value is unspecified.
1088 @end deffn
1089
1090 @deffn {Scheme Procedure} getgrent
1091 Return the next entry in the group database, using the stream set by
1092 @code{setgrent}.
1093 @end deffn
1094
1095 @deffn {Scheme Procedure} endgrent
1096 Closes the stream used by @code{getgrent}.
1097 The return value is unspecified.
1098 @end deffn
1099
1100 @deffn {Scheme Procedure} setgr [arg]
1101 @deffnx {C Function} scm_setgrent (arg)
1102 If called with a true argument, initialize or reset the group data
1103 stream. Otherwise, close the stream. The @code{setgrent} and
1104 @code{endgrent} procedures are implemented on top of this.
1105 @end deffn
1106
1107 @deffn {Scheme Procedure} getgr [name]
1108 @deffnx {C Function} scm_getgrgid (name)
1109 Look up an entry in the group database. @var{obj} can be an integer,
1110 a string, or omitted, giving the behaviour of getgrgid, getgrnam
1111 or getgrent respectively.
1112 @end deffn
1113
1114 In addition to the accessor procedures for the user database, the
1115 following shortcut procedures are also available.
1116
1117 @deffn {Scheme Procedure} cuserid
1118 @deffnx {C Function} scm_cuserid ()
1119 Return a string containing a user name associated with the
1120 effective user id of the process. Return @code{#f} if this
1121 information cannot be obtained.
1122
1123 This function has been removed from the latest POSIX specification,
1124 Guile provides it only if the system has it. Using @code{(getpwuid
1125 (geteuid))} may be a better idea.
1126 @end deffn
1127
1128 @deffn {Scheme Procedure} getlogin
1129 @deffnx {C Function} scm_getlogin ()
1130 Return a string containing the name of the user logged in on
1131 the controlling terminal of the process, or @code{#f} if this
1132 information cannot be obtained.
1133 @end deffn
1134
1135
1136 @node Time
1137 @subsection Time
1138 @cindex time
1139
1140 @deffn {Scheme Procedure} current-time
1141 @deffnx {C Function} scm_current_time ()
1142 Return the number of seconds since 1970-01-01 00:00:00 @acronym{UTC},
1143 excluding leap seconds.
1144 @end deffn
1145
1146 @deffn {Scheme Procedure} gettimeofday
1147 @deffnx {C Function} scm_gettimeofday ()
1148 Return a pair containing the number of seconds and microseconds
1149 since 1970-01-01 00:00:00 @acronym{UTC}, excluding leap seconds. Note:
1150 whether true microsecond resolution is available depends on the
1151 operating system.
1152 @end deffn
1153
1154 The following procedures either accept an object representing a broken down
1155 time and return a selected component, or accept an object representing
1156 a broken down time and a value and set the component to the value.
1157 The numbers in parentheses give the usual range.
1158
1159 @deffn {Scheme Procedure} tm:sec tm
1160 @deffnx {Scheme Procedure} set-tm:sec tm val
1161 Seconds (0-59).
1162 @end deffn
1163 @deffn {Scheme Procedure} tm:min tm
1164 @deffnx {Scheme Procedure} set-tm:min tm val
1165 Minutes (0-59).
1166 @end deffn
1167 @deffn {Scheme Procedure} tm:hour tm
1168 @deffnx {Scheme Procedure} set-tm:hour tm val
1169 Hours (0-23).
1170 @end deffn
1171 @deffn {Scheme Procedure} tm:mday tm
1172 @deffnx {Scheme Procedure} set-tm:mday tm val
1173 Day of the month (1-31).
1174 @end deffn
1175 @deffn {Scheme Procedure} tm:mon tm
1176 @deffnx {Scheme Procedure} set-tm:mon tm val
1177 Month (0-11).
1178 @end deffn
1179 @deffn {Scheme Procedure} tm:year tm
1180 @deffnx {Scheme Procedure} set-tm:year tm val
1181 Year (70-), the year minus 1900.
1182 @end deffn
1183 @deffn {Scheme Procedure} tm:wday tm
1184 @deffnx {Scheme Procedure} set-tm:wday tm val
1185 Day of the week (0-6) with Sunday represented as 0.
1186 @end deffn
1187 @deffn {Scheme Procedure} tm:yday tm
1188 @deffnx {Scheme Procedure} set-tm:yday tm val
1189 Day of the year (0-364, 365 in leap years).
1190 @end deffn
1191 @deffn {Scheme Procedure} tm:isdst tm
1192 @deffnx {Scheme Procedure} set-tm:isdst tm val
1193 Daylight saving indicator (0 for ``no'', greater than 0 for ``yes'', less than
1194 0 for ``unknown'').
1195 @end deffn
1196 @deffn {Scheme Procedure} tm:gmtoff tm
1197 @deffnx {Scheme Procedure} set-tm:gmtoff tm val
1198 Time zone offset in seconds west of @acronym{UTC} (-46800 to 43200).
1199 For example on East coast USA (zone @samp{EST+5}) this would be 18000
1200 (ie.@: @m{5\times60\times60,5*60*60}) in winter, or 14400
1201 (ie.@: @m{4\times60\times60,4*60*60}) during daylight savings.
1202
1203 Note @code{tm:gmtoff} is not the same as @code{tm_gmtoff} in the C
1204 @code{tm} structure. @code{tm_gmtoff} is seconds east and hence the
1205 negative of the value here.
1206 @end deffn
1207 @deffn {Scheme Procedure} tm:zone tm
1208 @deffnx {Scheme Procedure} set-tm:zone tm val
1209 Time zone label (a string), not necessarily unique.
1210 @end deffn
1211 @sp 1
1212
1213 @deffn {Scheme Procedure} localtime time [zone]
1214 @deffnx {C Function} scm_localtime (time, zone)
1215 @cindex local time
1216 Return an object representing the broken down components of
1217 @var{time}, an integer like the one returned by
1218 @code{current-time}. The time zone for the calculation is
1219 optionally specified by @var{zone} (a string), otherwise the
1220 @env{TZ} environment variable or the system default is used.
1221 @end deffn
1222
1223 @deffn {Scheme Procedure} gmtime time
1224 @deffnx {C Function} scm_gmtime (time)
1225 Return an object representing the broken down components of
1226 @var{time}, an integer like the one returned by
1227 @code{current-time}. The values are calculated for @acronym{UTC}.
1228 @end deffn
1229
1230 @deffn {Scheme Procedure} mktime sbd-time [zone]
1231 @deffnx {C Function} scm_mktime (sbd_time, zone)
1232 For a broken down time object @var{sbd-time}, return a pair the
1233 @code{car} of which is an integer time like @code{current-time}, and
1234 the @code{cdr} of which is a new broken down time with normalized
1235 fields.
1236
1237 @var{zone} is a timezone string, or the default is the @env{TZ}
1238 environment variable or the system default (@pxref{TZ Variable,,
1239 Specifying the Time Zone with @env{TZ}, libc, GNU C Library Reference
1240 Manual}). @var{sbd-time} is taken to be in that @var{zone}.
1241
1242 The following fields of @var{sbd-time} are used: @code{tm:year},
1243 @code{tm:mon}, @code{tm:mday}, @code{tm:hour}, @code{tm:min},
1244 @code{tm:sec}, @code{tm:isdst}. The values can be outside their usual
1245 ranges. For example @code{tm:hour} normally goes up to 23, but a
1246 value say 33 would mean 9 the following day.
1247
1248 @code{tm:isdst} in @var{sbd-time} says whether the time given is with
1249 daylight savings or not. This is ignored if @var{zone} doesn't have
1250 any daylight savings adjustment amount.
1251
1252 The broken down time in the return normalizes the values of
1253 @var{sbd-time} by bringing them into their usual ranges, and using the
1254 actual daylight savings rule for that time in @var{zone} (which may
1255 differ from what @var{sbd-time} had). The easiest way to think of
1256 this is that @var{sbd-time} plus @var{zone} converts to the integer
1257 UTC time, then a @code{localtime} is applied to get the normal
1258 presentation of that time, in @var{zone}.
1259 @end deffn
1260
1261 @deffn {Scheme Procedure} tzset
1262 @deffnx {C Function} scm_tzset ()
1263 Initialize the timezone from the @env{TZ} environment variable
1264 or the system default. It's not usually necessary to call this procedure
1265 since it's done automatically by other procedures that depend on the
1266 timezone.
1267 @end deffn
1268
1269 @deffn {Scheme Procedure} strftime format tm
1270 @deffnx {C Function} scm_strftime (format, tm)
1271 @cindex time formatting
1272 Return a string which is broken-down time structure @var{tm} formatted
1273 according to the given @var{format} string.
1274
1275 @var{format} contains field specifications introduced by a @samp{%}
1276 character. See @ref{Formatting Calendar Time,,, libc, The GNU C
1277 Library Reference Manual}, or @samp{man 3 strftime}, for the available
1278 formatting.
1279
1280 @lisp
1281 (strftime "%c" (localtime (current-time)))
1282 @result{} "Mon Mar 11 20:17:43 2002"
1283 @end lisp
1284
1285 If @code{setlocale} has been called (@pxref{Locales}), month and day
1286 names are from the current locale and in the locale character set.
1287 @end deffn
1288
1289 @deffn {Scheme Procedure} strptime format string
1290 @deffnx {C Function} scm_strptime (format, string)
1291 @cindex time parsing
1292 Performs the reverse action to @code{strftime}, parsing
1293 @var{string} according to the specification supplied in
1294 @var{template}. The interpretation of month and day names is
1295 dependent on the current locale. The value returned is a pair.
1296 The @acronym{CAR} has an object with time components
1297 in the form returned by @code{localtime} or @code{gmtime},
1298 but the time zone components
1299 are not usefully set.
1300 The @acronym{CDR} reports the number of characters from @var{string}
1301 which were used for the conversion.
1302 @end deffn
1303
1304 @defvar internal-time-units-per-second
1305 The value of this variable is the number of time units per second
1306 reported by the following procedures.
1307 @end defvar
1308
1309 @deffn {Scheme Procedure} times
1310 @deffnx {C Function} scm_times ()
1311 Return an object with information about real and processor
1312 time. The following procedures accept such an object as an
1313 argument and return a selected component:
1314
1315 @deffn {Scheme Procedure} tms:clock tms
1316 The current real time, expressed as time units relative to an
1317 arbitrary base.
1318 @end deffn
1319 @deffn {Scheme Procedure} tms:utime tms
1320 The CPU time units used by the calling process.
1321 @end deffn
1322 @deffn {Scheme Procedure} tms:stime tms
1323 The CPU time units used by the system on behalf of the calling
1324 process.
1325 @end deffn
1326 @deffn {Scheme Procedure} tms:cutime tms
1327 The CPU time units used by terminated child processes of the
1328 calling process, whose status has been collected (e.g., using
1329 @code{waitpid}).
1330 @end deffn
1331 @deffn {Scheme Procedure} tms:cstime tms
1332 Similarly, the CPU times units used by the system on behalf of
1333 terminated child processes.
1334 @end deffn
1335 @end deffn
1336
1337 @deffn {Scheme Procedure} get-internal-real-time
1338 @deffnx {C Function} scm_get_internal_real_time ()
1339 Return the number of time units since the interpreter was
1340 started.
1341 @end deffn
1342
1343 @deffn {Scheme Procedure} get-internal-run-time
1344 @deffnx {C Function} scm_get_internal_run_time ()
1345 Return the number of time units of processor time used by the
1346 interpreter. Both @emph{system} and @emph{user} time are
1347 included but subprocesses are not.
1348 @end deffn
1349
1350 @node Runtime Environment
1351 @subsection Runtime Environment
1352
1353 @deffn {Scheme Procedure} program-arguments
1354 @deffnx {Scheme Procedure} command-line
1355 @deffnx {Scheme Procedure} set-program-arguments
1356 @deffnx {C Function} scm_program_arguments ()
1357 @deffnx {C Function} scm_set_program_arguments_scm (lst)
1358 @cindex command line
1359 @cindex program arguments
1360 Get the command line arguments passed to Guile, or set new arguments.
1361
1362 The arguments are a list of strings, the first of which is the invoked
1363 program name. This is just @nicode{"guile"} (or the executable path)
1364 when run interactively, or it's the script name when running a script
1365 with @option{-s} (@pxref{Invoking Guile}).
1366
1367 @example
1368 guile -L /my/extra/dir -s foo.scm abc def
1369
1370 (program-arguments) @result{} ("foo.scm" "abc" "def")
1371 @end example
1372
1373 @code{set-program-arguments} allows a library module or similar to
1374 modify the arguments, for example to strip options it recognises,
1375 leaving the rest for the mainline.
1376
1377 The argument list is held in a fluid, which means it's separate for
1378 each thread. Neither the list nor the strings within it are copied at
1379 any point and normally should not be mutated.
1380
1381 The two names @code{program-arguments} and @code{command-line} are an
1382 historical accident, they both do exactly the same thing. The name
1383 @code{scm_set_program_arguments_scm} has an extra @code{_scm} on the
1384 end to avoid clashing with the C function below.
1385 @end deffn
1386
1387 @deftypefn {C Function} void scm_set_program_arguments (int argc, char **argv, char *first)
1388 @cindex command line
1389 @cindex program arguments
1390 Set the list of command line arguments for @code{program-arguments}
1391 and @code{command-line} above.
1392
1393 @var{argv} is an array of null-terminated strings, as in a C
1394 @code{main} function. @var{argc} is the number of strings in
1395 @var{argv}, or if it's negative then a @code{NULL} in @var{argv} marks
1396 its end.
1397
1398 @var{first} is an extra string put at the start of the arguments, or
1399 @code{NULL} for no such extra. This is a convenient way to pass the
1400 program name after advancing @var{argv} to strip option arguments.
1401 Eg.@:
1402
1403 @example
1404 @{
1405 char *progname = argv[0];
1406 for (argv++; argv[0] != NULL && argv[0][0] == '-'; argv++)
1407 @{
1408 /* munch option ... */
1409 @}
1410 /* remaining args for scheme level use */
1411 scm_set_program_arguments (-1, argv, progname);
1412 @}
1413 @end example
1414
1415 This sort of thing is often done at startup under
1416 @code{scm_boot_guile} with options handled at the C level removed.
1417 The given strings are all copied, so the C data is not accessed again
1418 once @code{scm_set_program_arguments} returns.
1419 @end deftypefn
1420
1421 @deffn {Scheme Procedure} getenv nam
1422 @deffnx {C Function} scm_getenv (nam)
1423 @cindex environment
1424 Looks up the string @var{name} in the current environment. The return
1425 value is @code{#f} unless a string of the form @code{NAME=VALUE} is
1426 found, in which case the string @code{VALUE} is returned.
1427 @end deffn
1428
1429 @deffn {Scheme Procedure} setenv name value
1430 Modifies the environment of the current process, which is
1431 also the default environment inherited by child processes.
1432
1433 If @var{value} is @code{#f}, then @var{name} is removed from the
1434 environment. Otherwise, the string @var{name}=@var{value} is added
1435 to the environment, replacing any existing string with name matching
1436 @var{name}.
1437
1438 The return value is unspecified.
1439 @end deffn
1440
1441 @deffn {Scheme Procedure} unsetenv name
1442 Remove variable @var{name} from the environment. The
1443 name can not contain a @samp{=} character.
1444 @end deffn
1445
1446 @deffn {Scheme Procedure} environ [env]
1447 @deffnx {C Function} scm_environ (env)
1448 If @var{env} is omitted, return the current environment (in the
1449 Unix sense) as a list of strings. Otherwise set the current
1450 environment, which is also the default environment for child
1451 processes, to the supplied list of strings. Each member of
1452 @var{env} should be of the form @var{NAME}=@var{VALUE} and values of
1453 @var{NAME} should not be duplicated. If @var{env} is supplied
1454 then the return value is unspecified.
1455 @end deffn
1456
1457 @deffn {Scheme Procedure} putenv str
1458 @deffnx {C Function} scm_putenv (str)
1459 Modifies the environment of the current process, which is
1460 also the default environment inherited by child processes.
1461
1462 If @var{string} is of the form @code{NAME=VALUE} then it will be written
1463 directly into the environment, replacing any existing environment string
1464 with
1465 name matching @code{NAME}. If @var{string} does not contain an equal
1466 sign, then any existing string with name matching @var{string} will
1467 be removed.
1468
1469 The return value is unspecified.
1470 @end deffn
1471
1472
1473 @node Processes
1474 @subsection Processes
1475 @cindex processes
1476 @cindex child processes
1477
1478 @findex cd
1479 @deffn {Scheme Procedure} chdir str
1480 @deffnx {C Function} scm_chdir (str)
1481 @cindex current directory
1482 Change the current working directory to @var{path}.
1483 The return value is unspecified.
1484 @end deffn
1485
1486 @findex pwd
1487 @deffn {Scheme Procedure} getcwd
1488 @deffnx {C Function} scm_getcwd ()
1489 Return the name of the current working directory.
1490 @end deffn
1491
1492 @deffn {Scheme Procedure} umask [mode]
1493 @deffnx {C Function} scm_umask (mode)
1494 If @var{mode} is omitted, returns a decimal number representing the
1495 current file creation mask. Otherwise the file creation mask is set
1496 to @var{mode} and the previous value is returned. @xref{Setting
1497 Permissions,,Assigning File Permissions,libc,The GNU C Library
1498 Reference Manual}, for more on how to use umasks.
1499
1500 E.g., @code{(umask #o022)} sets the mask to octal 22/decimal 18.
1501 @end deffn
1502
1503 @deffn {Scheme Procedure} chroot path
1504 @deffnx {C Function} scm_chroot (path)
1505 Change the root directory to that specified in @var{path}.
1506 This directory will be used for path names beginning with
1507 @file{/}. The root directory is inherited by all children
1508 of the current process. Only the superuser may change the
1509 root directory.
1510 @end deffn
1511
1512 @deffn {Scheme Procedure} getpid
1513 @deffnx {C Function} scm_getpid ()
1514 Return an integer representing the current process ID.
1515 @end deffn
1516
1517 @deffn {Scheme Procedure} getgroups
1518 @deffnx {C Function} scm_getgroups ()
1519 Return a vector of integers representing the current
1520 supplementary group IDs.
1521 @end deffn
1522
1523 @deffn {Scheme Procedure} getppid
1524 @deffnx {C Function} scm_getppid ()
1525 Return an integer representing the process ID of the parent
1526 process.
1527 @end deffn
1528
1529 @deffn {Scheme Procedure} getuid
1530 @deffnx {C Function} scm_getuid ()
1531 Return an integer representing the current real user ID.
1532 @end deffn
1533
1534 @deffn {Scheme Procedure} getgid
1535 @deffnx {C Function} scm_getgid ()
1536 Return an integer representing the current real group ID.
1537 @end deffn
1538
1539 @deffn {Scheme Procedure} geteuid
1540 @deffnx {C Function} scm_geteuid ()
1541 Return an integer representing the current effective user ID.
1542 If the system does not support effective IDs, then the real ID
1543 is returned. @code{(provided? 'EIDs)} reports whether the
1544 system supports effective IDs.
1545 @end deffn
1546
1547 @deffn {Scheme Procedure} getegid
1548 @deffnx {C Function} scm_getegid ()
1549 Return an integer representing the current effective group ID.
1550 If the system does not support effective IDs, then the real ID
1551 is returned. @code{(provided? 'EIDs)} reports whether the
1552 system supports effective IDs.
1553 @end deffn
1554
1555 @deffn {Scheme Procedure} setgroups vec
1556 @deffnx {C Function} scm_setgroups (vec)
1557 Set the current set of supplementary group IDs to the integers in the
1558 given vector @var{vec}. The return value is unspecified.
1559
1560 Generally only the superuser can set the process group IDs
1561 (@pxref{Setting Groups, Setting the Group IDs,, libc, The GNU C
1562 Library Reference Manual}).
1563 @end deffn
1564
1565 @deffn {Scheme Procedure} setuid id
1566 @deffnx {C Function} scm_setuid (id)
1567 Sets both the real and effective user IDs to the integer @var{id}, provided
1568 the process has appropriate privileges.
1569 The return value is unspecified.
1570 @end deffn
1571
1572 @deffn {Scheme Procedure} setgid id
1573 @deffnx {C Function} scm_setgid (id)
1574 Sets both the real and effective group IDs to the integer @var{id}, provided
1575 the process has appropriate privileges.
1576 The return value is unspecified.
1577 @end deffn
1578
1579 @deffn {Scheme Procedure} seteuid id
1580 @deffnx {C Function} scm_seteuid (id)
1581 Sets the effective user ID to the integer @var{id}, provided the process
1582 has appropriate privileges. If effective IDs are not supported, the
1583 real ID is set instead---@code{(provided? 'EIDs)} reports whether the
1584 system supports effective IDs.
1585 The return value is unspecified.
1586 @end deffn
1587
1588 @deffn {Scheme Procedure} setegid id
1589 @deffnx {C Function} scm_setegid (id)
1590 Sets the effective group ID to the integer @var{id}, provided the process
1591 has appropriate privileges. If effective IDs are not supported, the
1592 real ID is set instead---@code{(provided? 'EIDs)} reports whether the
1593 system supports effective IDs.
1594 The return value is unspecified.
1595 @end deffn
1596
1597 @deffn {Scheme Procedure} getpgrp
1598 @deffnx {C Function} scm_getpgrp ()
1599 Return an integer representing the current process group ID.
1600 This is the @acronym{POSIX} definition, not @acronym{BSD}.
1601 @end deffn
1602
1603 @deffn {Scheme Procedure} setpgid pid pgid
1604 @deffnx {C Function} scm_setpgid (pid, pgid)
1605 Move the process @var{pid} into the process group @var{pgid}. @var{pid} or
1606 @var{pgid} must be integers: they can be zero to indicate the ID of the
1607 current process.
1608 Fails on systems that do not support job control.
1609 The return value is unspecified.
1610 @end deffn
1611
1612 @deffn {Scheme Procedure} setsid
1613 @deffnx {C Function} scm_setsid ()
1614 Creates a new session. The current process becomes the session leader
1615 and is put in a new process group. The process will be detached
1616 from its controlling terminal if it has one.
1617 The return value is an integer representing the new process group ID.
1618 @end deffn
1619
1620 @deffn {Scheme Procedure} getsid pid
1621 @deffnx {C Function} scm_getsid (pid)
1622 Returns the session ID of process @var{pid}. (The session
1623 ID of a process is the process group ID of its session leader.)
1624 @end deffn
1625
1626 @deffn {Scheme Procedure} waitpid pid [options]
1627 @deffnx {C Function} scm_waitpid (pid, options)
1628 This procedure collects status information from a child process which
1629 has terminated or (optionally) stopped. Normally it will
1630 suspend the calling process until this can be done. If more than one
1631 child process is eligible then one will be chosen by the operating system.
1632
1633 The value of @var{pid} determines the behaviour:
1634
1635 @table @asis
1636 @item @var{pid} greater than 0
1637 Request status information from the specified child process.
1638 @item @var{pid} equal to -1 or @code{WAIT_ANY}
1639 @vindex WAIT_ANY
1640 Request status information for any child process.
1641 @item @var{pid} equal to 0 or @code{WAIT_MYPGRP}
1642 @vindex WAIT_MYPGRP
1643 Request status information for any child process in the current process
1644 group.
1645 @item @var{pid} less than -1
1646 Request status information for any child process whose process group ID
1647 is @minus{}@var{pid}.
1648 @end table
1649
1650 The @var{options} argument, if supplied, should be the bitwise OR of the
1651 values of zero or more of the following variables:
1652
1653 @defvar WNOHANG
1654 Return immediately even if there are no child processes to be collected.
1655 @end defvar
1656
1657 @defvar WUNTRACED
1658 Report status information for stopped processes as well as terminated
1659 processes.
1660 @end defvar
1661
1662 The return value is a pair containing:
1663
1664 @enumerate
1665 @item
1666 The process ID of the child process, or 0 if @code{WNOHANG} was
1667 specified and no process was collected.
1668 @item
1669 The integer status value.
1670 @end enumerate
1671 @end deffn
1672
1673 The following three
1674 functions can be used to decode the process status code returned
1675 by @code{waitpid}.
1676
1677 @deffn {Scheme Procedure} status:exit-val status
1678 @deffnx {C Function} scm_status_exit_val (status)
1679 Return the exit status value, as would be set if a process
1680 ended normally through a call to @code{exit} or @code{_exit},
1681 if any, otherwise @code{#f}.
1682 @end deffn
1683
1684 @deffn {Scheme Procedure} status:term-sig status
1685 @deffnx {C Function} scm_status_term_sig (status)
1686 Return the signal number which terminated the process, if any,
1687 otherwise @code{#f}.
1688 @end deffn
1689
1690 @deffn {Scheme Procedure} status:stop-sig status
1691 @deffnx {C Function} scm_status_stop_sig (status)
1692 Return the signal number which stopped the process, if any,
1693 otherwise @code{#f}.
1694 @end deffn
1695
1696 @deffn {Scheme Procedure} system [cmd]
1697 @deffnx {C Function} scm_system (cmd)
1698 Execute @var{cmd} using the operating system's ``command
1699 processor''. Under Unix this is usually the default shell
1700 @code{sh}. The value returned is @var{cmd}'s exit status as
1701 returned by @code{waitpid}, which can be interpreted using the
1702 functions above.
1703
1704 If @code{system} is called without arguments, return a boolean
1705 indicating whether the command processor is available.
1706 @end deffn
1707
1708 @deffn {Scheme Procedure} system* . args
1709 @deffnx {C Function} scm_system_star (args)
1710 Execute the command indicated by @var{args}. The first element must
1711 be a string indicating the command to be executed, and the remaining
1712 items must be strings representing each of the arguments to that
1713 command.
1714
1715 This function returns the exit status of the command as provided by
1716 @code{waitpid}. This value can be handled with @code{status:exit-val}
1717 and the related functions.
1718
1719 @code{system*} is similar to @code{system}, but accepts only one
1720 string per-argument, and performs no shell interpretation. The
1721 command is executed using fork and execlp. Accordingly this function
1722 may be safer than @code{system} in situations where shell
1723 interpretation is not required.
1724
1725 Example: (system* "echo" "foo" "bar")
1726 @end deffn
1727
1728 @deffn {Scheme Procedure} primitive-exit [status]
1729 @deffnx {Scheme Procedure} primitive-_exit [status]
1730 @deffnx {C Function} scm_primitive_exit (status)
1731 @deffnx {C Function} scm_primitive__exit (status)
1732 Terminate the current process without unwinding the Scheme stack. The
1733 exit status is @var{status} if supplied, otherwise zero.
1734
1735 @code{primitive-exit} uses the C @code{exit} function and hence runs
1736 usual C level cleanups (flush output streams, call @code{atexit}
1737 functions, etc, see @ref{Normal Termination,,, libc, The GNU C Library
1738 Reference Manual})).
1739
1740 @code{primitive-_exit} is the @code{_exit} system call
1741 (@pxref{Termination Internals,,, libc, The GNU C Library Reference
1742 Manual}). This terminates the program immediately, with neither
1743 Scheme-level nor C-level cleanups.
1744
1745 The typical use for @code{primitive-_exit} is from a child process
1746 created with @code{primitive-fork}. For example in a Gdk program the
1747 child process inherits the X server connection and a C-level
1748 @code{atexit} cleanup which will close that connection. But closing
1749 in the child would upset the protocol in the parent, so
1750 @code{primitive-_exit} should be used to exit without that.
1751 @end deffn
1752
1753 @deffn {Scheme Procedure} execl filename . args
1754 @deffnx {C Function} scm_execl (filename, args)
1755 Executes the file named by @var{path} as a new process image.
1756 The remaining arguments are supplied to the process; from a C program
1757 they are accessible as the @code{argv} argument to @code{main}.
1758 Conventionally the first @var{arg} is the same as @var{path}.
1759 All arguments must be strings.
1760
1761 If @var{arg} is missing, @var{path} is executed with a null
1762 argument list, which may have system-dependent side-effects.
1763
1764 This procedure is currently implemented using the @code{execv} system
1765 call, but we call it @code{execl} because of its Scheme calling interface.
1766 @end deffn
1767
1768 @deffn {Scheme Procedure} execlp filename . args
1769 @deffnx {C Function} scm_execlp (filename, args)
1770 Similar to @code{execl}, however if
1771 @var{filename} does not contain a slash
1772 then the file to execute will be located by searching the
1773 directories listed in the @code{PATH} environment variable.
1774
1775 This procedure is currently implemented using the @code{execvp} system
1776 call, but we call it @code{execlp} because of its Scheme calling interface.
1777 @end deffn
1778
1779 @deffn {Scheme Procedure} execle filename env . args
1780 @deffnx {C Function} scm_execle (filename, env, args)
1781 Similar to @code{execl}, but the environment of the new process is
1782 specified by @var{env}, which must be a list of strings as returned by the
1783 @code{environ} procedure.
1784
1785 This procedure is currently implemented using the @code{execve} system
1786 call, but we call it @code{execle} because of its Scheme calling interface.
1787 @end deffn
1788
1789 @deffn {Scheme Procedure} primitive-fork
1790 @deffnx {C Function} scm_fork ()
1791 Creates a new ``child'' process by duplicating the current ``parent'' process.
1792 In the child the return value is 0. In the parent the return value is
1793 the integer process ID of the child.
1794
1795 This procedure has been renamed from @code{fork} to avoid a naming conflict
1796 with the scsh fork.
1797 @end deffn
1798
1799 @deffn {Scheme Procedure} nice incr
1800 @deffnx {C Function} scm_nice (incr)
1801 @cindex process priority
1802 Increment the priority of the current process by @var{incr}. A higher
1803 priority value means that the process runs less often.
1804 The return value is unspecified.
1805 @end deffn
1806
1807 @deffn {Scheme Procedure} setpriority which who prio
1808 @deffnx {C Function} scm_setpriority (which, who, prio)
1809 @vindex PRIO_PROCESS
1810 @vindex PRIO_PGRP
1811 @vindex PRIO_USER
1812 Set the scheduling priority of the process, process group
1813 or user, as indicated by @var{which} and @var{who}. @var{which}
1814 is one of the variables @code{PRIO_PROCESS}, @code{PRIO_PGRP}
1815 or @code{PRIO_USER}, and @var{who} is interpreted relative to
1816 @var{which} (a process identifier for @code{PRIO_PROCESS},
1817 process group identifier for @code{PRIO_PGRP}, and a user
1818 identifier for @code{PRIO_USER}. A zero value of @var{who}
1819 denotes the current process, process group, or user.
1820 @var{prio} is a value in the range [@minus{}20,20]. The default
1821 priority is 0; lower priorities (in numerical terms) cause more
1822 favorable scheduling. Sets the priority of all of the specified
1823 processes. Only the super-user may lower priorities. The return
1824 value is not specified.
1825 @end deffn
1826
1827 @deffn {Scheme Procedure} getpriority which who
1828 @deffnx {C Function} scm_getpriority (which, who)
1829 @vindex PRIO_PROCESS
1830 @vindex PRIO_PGRP
1831 @vindex PRIO_USER
1832 Return the scheduling priority of the process, process group
1833 or user, as indicated by @var{which} and @var{who}. @var{which}
1834 is one of the variables @code{PRIO_PROCESS}, @code{PRIO_PGRP}
1835 or @code{PRIO_USER}, and @var{who} should be interpreted depending on
1836 @var{which} (a process identifier for @code{PRIO_PROCESS},
1837 process group identifier for @code{PRIO_PGRP}, and a user
1838 identifier for @code{PRIO_USER}). A zero value of @var{who}
1839 denotes the current process, process group, or user. Return
1840 the highest priority (lowest numerical value) of any of the
1841 specified processes.
1842 @end deffn
1843
1844
1845 @node Signals
1846 @subsection Signals
1847 @cindex signal
1848
1849 The following procedures raise, handle and wait for signals.
1850
1851 Scheme code signal handlers are run via a system async (@pxref{System
1852 asyncs}), so they're called in the handler's thread at the next safe
1853 opportunity. Generally this is after any currently executing
1854 primitive procedure finishes (which could be a long time for
1855 primitives that wait for an external event).
1856
1857 @deffn {Scheme Procedure} kill pid sig
1858 @deffnx {C Function} scm_kill (pid, sig)
1859 Sends a signal to the specified process or group of processes.
1860
1861 @var{pid} specifies the processes to which the signal is sent:
1862
1863 @table @asis
1864 @item @var{pid} greater than 0
1865 The process whose identifier is @var{pid}.
1866 @item @var{pid} equal to 0
1867 All processes in the current process group.
1868 @item @var{pid} less than -1
1869 The process group whose identifier is -@var{pid}
1870 @item @var{pid} equal to -1
1871 If the process is privileged, all processes except for some special
1872 system processes. Otherwise, all processes with the current effective
1873 user ID.
1874 @end table
1875
1876 @var{sig} should be specified using a variable corresponding to
1877 the Unix symbolic name, e.g.,
1878
1879 @defvar SIGHUP
1880 Hang-up signal.
1881 @end defvar
1882
1883 @defvar SIGINT
1884 Interrupt signal.
1885 @end defvar
1886
1887 A full list of signals on the GNU system may be found in @ref{Standard
1888 Signals,,,libc,The GNU C Library Reference Manual}.
1889 @end deffn
1890
1891 @deffn {Scheme Procedure} raise sig
1892 @deffnx {C Function} scm_raise (sig)
1893 Sends a specified signal @var{sig} to the current process, where
1894 @var{sig} is as described for the @code{kill} procedure.
1895 @end deffn
1896
1897 @deffn {Scheme Procedure} sigaction signum [handler [flags [thread]]]
1898 @deffnx {C Function} scm_sigaction (signum, handler, flags)
1899 @deffnx {C Function} scm_sigaction_for_thread (signum, handler, flags, thread)
1900 Install or report the signal handler for a specified signal.
1901
1902 @var{signum} is the signal number, which can be specified using the value
1903 of variables such as @code{SIGINT}.
1904
1905 If @var{handler} is omitted, @code{sigaction} returns a pair: the
1906 @acronym{CAR} is the current signal hander, which will be either an
1907 integer with the value @code{SIG_DFL} (default action) or
1908 @code{SIG_IGN} (ignore), or the Scheme procedure which handles the
1909 signal, or @code{#f} if a non-Scheme procedure handles the signal.
1910 The @acronym{CDR} contains the current @code{sigaction} flags for the
1911 handler.
1912
1913 If @var{handler} is provided, it is installed as the new handler for
1914 @var{signum}. @var{handler} can be a Scheme procedure taking one
1915 argument, or the value of @code{SIG_DFL} (default action) or
1916 @code{SIG_IGN} (ignore), or @code{#f} to restore whatever signal handler
1917 was installed before @code{sigaction} was first used. When a scheme
1918 procedure has been specified, that procedure will run in the given
1919 @var{thread}. When no thread has been given, the thread that made this
1920 call to @code{sigaction} is used.
1921
1922 @var{flags} is a @code{logior} (@pxref{Bitwise Operations}) of the
1923 following (where provided by the system), or @code{0} for none.
1924
1925 @defvar SA_NOCLDSTOP
1926 By default, @code{SIGCHLD} is signalled when a child process stops
1927 (ie.@: receives @code{SIGSTOP}), and when a child process terminates.
1928 With the @code{SA_NOCLDSTOP} flag, @code{SIGCHLD} is only signalled
1929 for termination, not stopping.
1930
1931 @code{SA_NOCLDSTOP} has no effect on signals other than
1932 @code{SIGCHLD}.
1933 @end defvar
1934
1935 @defvar SA_RESTART
1936 If a signal occurs while in a system call, deliver the signal then
1937 restart the system call (as opposed to returning an @code{EINTR} error
1938 from that call).
1939 @end defvar
1940
1941 The return value is a pair with information about the old handler as
1942 described above.
1943
1944 This interface does not provide access to the ``signal blocking''
1945 facility. Maybe this is not needed, since the thread support may
1946 provide solutions to the problem of consistent access to data
1947 structures.
1948 @end deffn
1949
1950 @deffn {Scheme Procedure} restore-signals
1951 @deffnx {C Function} scm_restore_signals ()
1952 Return all signal handlers to the values they had before any call to
1953 @code{sigaction} was made. The return value is unspecified.
1954 @end deffn
1955
1956 @deffn {Scheme Procedure} alarm i
1957 @deffnx {C Function} scm_alarm (i)
1958 Set a timer to raise a @code{SIGALRM} signal after the specified
1959 number of seconds (an integer). It's advisable to install a signal
1960 handler for
1961 @code{SIGALRM} beforehand, since the default action is to terminate
1962 the process.
1963
1964 The return value indicates the time remaining for the previous alarm,
1965 if any. The new value replaces the previous alarm. If there was
1966 no previous alarm, the return value is zero.
1967 @end deffn
1968
1969 @deffn {Scheme Procedure} pause
1970 @deffnx {C Function} scm_pause ()
1971 Pause the current process (thread?) until a signal arrives whose
1972 action is to either terminate the current process or invoke a
1973 handler procedure. The return value is unspecified.
1974 @end deffn
1975
1976 @deffn {Scheme Procedure} sleep secs
1977 @deffnx {Scheme Procedure} usleep usecs
1978 @deffnx {C Function} scm_sleep (secs)
1979 @deffnx {C Function} scm_usleep (usecs)
1980 Wait the given period @var{secs} seconds or @var{usecs} microseconds
1981 (both integers). If a signal arrives the wait stops and the return
1982 value is the time remaining, in seconds or microseconds respectively.
1983 If the period elapses with no signal the return is zero.
1984
1985 On most systems the process scheduler is not microsecond accurate and
1986 the actual period slept by @code{usleep} might be rounded to a system
1987 clock tick boundary, which might be 10 milliseconds for instance.
1988
1989 See @code{scm_std_sleep} and @code{scm_std_usleep} for equivalents at
1990 the C level (@pxref{Blocking}).
1991 @end deffn
1992
1993 @deffn {Scheme Procedure} getitimer which_timer
1994 @deffnx {Scheme Procedure} setitimer which_timer interval_seconds interval_microseconds periodic_seconds periodic_microseconds
1995 @deffnx {C Function} scm_getitimer (which_timer)
1996 @deffnx {C Function} scm_setitimer (which_timer, interval_seconds, interval_microseconds, periodic_seconds, periodic_microseconds)
1997 Get or set the periods programmed in certain system timers. These
1998 timers have a current interval value which counts down and on reaching
1999 zero raises a signal. An optional periodic value can be set to
2000 restart from there each time, for periodic operation.
2001 @var{which_timer} is one of the following values
2002
2003 @defvar ITIMER_REAL
2004 A real-time timer, counting down elapsed real time. At zero it raises
2005 @code{SIGALRM}. This is like @code{alarm} above, but with a higher
2006 resolution period.
2007 @end defvar
2008
2009 @defvar ITIMER_VIRTUAL
2010 A virtual-time timer, counting down while the current process is
2011 actually using CPU. At zero it raises @code{SIGVTALRM}.
2012 @end defvar
2013
2014 @defvar ITIMER_PROF
2015 A profiling timer, counting down while the process is running (like
2016 @code{ITIMER_VIRTUAL}) and also while system calls are running on the
2017 process's behalf. At zero it raises a @code{SIGPROF}.
2018
2019 This timer is intended for profiling where a program is spending its
2020 time (by looking where it is when the timer goes off).
2021 @end defvar
2022
2023 @code{getitimer} returns the current timer value and its programmed
2024 restart value, as a list containing two pairs. Each pair is a time in
2025 seconds and microseconds: @code{((@var{interval_secs}
2026 . @var{interval_usecs}) (@var{periodic_secs}
2027 . @var{periodic_usecs}))}.
2028
2029 @code{setitimer} sets the timer values similarly, in seconds and
2030 microseconds (which must be integers). The periodic value can be zero
2031 to have the timer run down just once. The return value is the timer's
2032 previous setting, in the same form as @code{getitimer} returns.
2033
2034 @example
2035 (setitimer ITIMER_REAL
2036 5 500000 ;; first SIGALRM in 5.5 seconds time
2037 2 0) ;; then repeat every 2 seconds
2038 @end example
2039
2040 Although the timers are programmed in microseconds, the actual
2041 accuracy might not be that high.
2042 @end deffn
2043
2044
2045 @node Terminals and Ptys
2046 @subsection Terminals and Ptys
2047
2048 @deffn {Scheme Procedure} isatty? port
2049 @deffnx {C Function} scm_isatty_p (port)
2050 @cindex terminal
2051 Return @code{#t} if @var{port} is using a serial non--file
2052 device, otherwise @code{#f}.
2053 @end deffn
2054
2055 @deffn {Scheme Procedure} ttyname port
2056 @deffnx {C Function} scm_ttyname (port)
2057 @cindex terminal
2058 Return a string with the name of the serial terminal device
2059 underlying @var{port}.
2060 @end deffn
2061
2062 @deffn {Scheme Procedure} ctermid
2063 @deffnx {C Function} scm_ctermid ()
2064 @cindex terminal
2065 Return a string containing the file name of the controlling
2066 terminal for the current process.
2067 @end deffn
2068
2069 @deffn {Scheme Procedure} tcgetpgrp port
2070 @deffnx {C Function} scm_tcgetpgrp (port)
2071 @cindex process group
2072 Return the process group ID of the foreground process group
2073 associated with the terminal open on the file descriptor
2074 underlying @var{port}.
2075
2076 If there is no foreground process group, the return value is a
2077 number greater than 1 that does not match the process group ID
2078 of any existing process group. This can happen if all of the
2079 processes in the job that was formerly the foreground job have
2080 terminated, and no other job has yet been moved into the
2081 foreground.
2082 @end deffn
2083
2084 @deffn {Scheme Procedure} tcsetpgrp port pgid
2085 @deffnx {C Function} scm_tcsetpgrp (port, pgid)
2086 @cindex process group
2087 Set the foreground process group ID for the terminal used by the file
2088 descriptor underlying @var{port} to the integer @var{pgid}.
2089 The calling process
2090 must be a member of the same session as @var{pgid} and must have the same
2091 controlling terminal. The return value is unspecified.
2092 @end deffn
2093
2094 @node Pipes
2095 @subsection Pipes
2096 @cindex pipe
2097
2098 The following procedures are similar to the @code{popen} and
2099 @code{pclose} system routines. The code is in a separate ``popen''
2100 module:
2101
2102 @lisp
2103 (use-modules (ice-9 popen))
2104 @end lisp
2105
2106 @findex popen
2107 @deffn {Scheme Procedure} open-pipe command mode
2108 @deffnx {Scheme Procedure} open-pipe* mode prog [args...]
2109 Execute a command in a subprocess, with a pipe to it or from it, or
2110 with pipes in both directions.
2111
2112 @code{open-pipe} runs the shell @var{command} using @samp{/bin/sh -c}.
2113 @code{open-pipe*} executes @var{prog} directly, with the optional
2114 @var{args} arguments (all strings).
2115
2116 @var{mode} should be one of the following values. @code{OPEN_READ} is
2117 an input pipe, ie.@: to read from the subprocess. @code{OPEN_WRITE}
2118 is an output pipe, ie.@: to write to it.
2119
2120 @defvar OPEN_READ
2121 @defvarx OPEN_WRITE
2122 @defvarx OPEN_BOTH
2123 @end defvar
2124
2125 For an input pipe, the child's standard output is the pipe and
2126 standard input is inherited from @code{current-input-port}. For an
2127 output pipe, the child's standard input is the pipe and standard
2128 output is inherited from @code{current-output-port}. In all cases
2129 cases the child's standard error is inherited from
2130 @code{current-error-port} (@pxref{Default Ports}).
2131
2132 If those @code{current-X-ports} are not files of some kind, and hence
2133 don't have file descriptors for the child, then @file{/dev/null} is
2134 used instead.
2135
2136 Care should be taken with @code{OPEN_BOTH}, a deadlock will occur if
2137 both parent and child are writing, and waiting until the write
2138 completes before doing any reading. Each direction has
2139 @code{PIPE_BUF} bytes of buffering (@pxref{Ports and File
2140 Descriptors}), which will be enough for small writes, but not for say
2141 putting a big file through a filter.
2142 @end deffn
2143
2144 @deffn {Scheme Procedure} open-input-pipe command
2145 Equivalent to @code{open-pipe} with mode @code{OPEN_READ}.
2146
2147 @lisp
2148 (let* ((port (open-input-pipe "date --utc"))
2149 (str (read-line port)))
2150 (close-pipe port)
2151 str)
2152 @result{} "Mon Mar 11 20:10:44 UTC 2002"
2153 @end lisp
2154 @end deffn
2155
2156 @deffn {Scheme Procedure} open-output-pipe command
2157 Equivalent to @code{open-pipe} with mode @code{OPEN_WRITE}.
2158
2159 @lisp
2160 (let ((port (open-output-pipe "lpr")))
2161 (display "Something for the line printer.\n" port)
2162 (if (not (eqv? 0 (status:exit-val (close-pipe port))))
2163 (error "Cannot print")))
2164 @end lisp
2165 @end deffn
2166
2167 @deffn {Scheme Procedure} open-input-output-pipe command
2168 Equivalent to @code{open-pipe} with mode @code{OPEN_BOTH}.
2169 @end deffn
2170
2171 @findex pclose
2172 @deffn {Scheme Procedure} close-pipe port
2173 Close a pipe created by @code{open-pipe}, wait for the process to
2174 terminate, and return the wait status code. The status is as per
2175 @code{waitpid} and can be decoded with @code{status:exit-val} etc
2176 (@pxref{Processes})
2177 @end deffn
2178
2179 @sp 1
2180 @code{waitpid WAIT_ANY} should not be used when pipes are open, since
2181 it can reap a pipe's child process, causing an error from a subsequent
2182 @code{close-pipe}.
2183
2184 @code{close-port} (@pxref{Closing}) can close a pipe, but it doesn't
2185 reap the child process.
2186
2187 The garbage collector will close a pipe no longer in use, and reap the
2188 child process with @code{waitpid}. If the child hasn't yet terminated
2189 the garbage collector doesn't block, but instead checks again in the
2190 next GC.
2191
2192 Many systems have per-user and system-wide limits on the number of
2193 processes, and a system-wide limit on the number of pipes, so pipes
2194 should be closed explicitly when no longer needed, rather than letting
2195 the garbage collector pick them up at some later time.
2196
2197
2198 @node Networking
2199 @subsection Networking
2200 @cindex network
2201
2202 @menu
2203 * Network Address Conversion::
2204 * Network Databases::
2205 * Network Socket Address::
2206 * Network Sockets and Communication::
2207 * Internet Socket Examples::
2208 @end menu
2209
2210 @node Network Address Conversion
2211 @subsubsection Network Address Conversion
2212 @cindex network address
2213
2214 This section describes procedures which convert internet addresses
2215 between numeric and string formats.
2216
2217 @subsubheading IPv4 Address Conversion
2218 @cindex IPv4
2219
2220 An IPv4 Internet address is a 4-byte value, represented in Guile as an
2221 integer in host byte order, so that say ``0.0.0.1'' is 1, or
2222 ``1.0.0.0'' is 16777216.
2223
2224 Some underlying C functions use network byte order for addresses,
2225 Guile converts as necessary so that at the Scheme level its host byte
2226 order everywhere.
2227
2228 @defvar INADDR_ANY
2229 For a server, this can be used with @code{bind} (@pxref{Network
2230 Sockets and Communication}) to allow connections from any interface on
2231 the machine.
2232 @end defvar
2233
2234 @defvar INADDR_BROADCAST
2235 The broadcast address on the local network.
2236 @end defvar
2237
2238 @defvar INADDR_LOOPBACK
2239 The address of the local host using the loopback device, ie.@:
2240 @samp{127.0.0.1}.
2241 @end defvar
2242
2243 @c INADDR_NONE is defined in the code, but serves no purpose.
2244 @c inet_addr() returns it as an error indication, but that function
2245 @c isn't provided, for the good reason that inet_aton() does the same
2246 @c job and gives an unambiguous error indication. (INADDR_NONE is a
2247 @c valid 4-byte value, in glibc it's the same as INADDR_BROADCAST.)
2248 @c
2249 @c @defvar INADDR_NONE
2250 @c No address.
2251 @c @end defvar
2252
2253 @deffn {Scheme Procedure} inet-aton address
2254 @deffnx {C Function} scm_inet_aton (address)
2255 This function is deprecated in favor of @code{inet-pton}.
2256
2257 Convert an IPv4 Internet address from printable string
2258 (dotted decimal notation) to an integer. E.g.,
2259
2260 @lisp
2261 (inet-aton "127.0.0.1") @result{} 2130706433
2262 @end lisp
2263 @end deffn
2264
2265 @deffn {Scheme Procedure} inet-ntoa inetid
2266 @deffnx {C Function} scm_inet_ntoa (inetid)
2267 This function is deprecated in favor of @code{inet-ntop}.
2268
2269 Convert an IPv4 Internet address to a printable
2270 (dotted decimal notation) string. E.g.,
2271
2272 @lisp
2273 (inet-ntoa 2130706433) @result{} "127.0.0.1"
2274 @end lisp
2275 @end deffn
2276
2277 @deffn {Scheme Procedure} inet-netof address
2278 @deffnx {C Function} scm_inet_netof (address)
2279 Return the network number part of the given IPv4
2280 Internet address. E.g.,
2281
2282 @lisp
2283 (inet-netof 2130706433) @result{} 127
2284 @end lisp
2285 @end deffn
2286
2287 @deffn {Scheme Procedure} inet-lnaof address
2288 @deffnx {C Function} scm_lnaof (address)
2289 Return the local-address-with-network part of the given
2290 IPv4 Internet address, using the obsolete class A/B/C system.
2291 E.g.,
2292
2293 @lisp
2294 (inet-lnaof 2130706433) @result{} 1
2295 @end lisp
2296 @end deffn
2297
2298 @deffn {Scheme Procedure} inet-makeaddr net lna
2299 @deffnx {C Function} scm_inet_makeaddr (net, lna)
2300 Make an IPv4 Internet address by combining the network number
2301 @var{net} with the local-address-within-network number
2302 @var{lna}. E.g.,
2303
2304 @lisp
2305 (inet-makeaddr 127 1) @result{} 2130706433
2306 @end lisp
2307 @end deffn
2308
2309 @subsubheading IPv6 Address Conversion
2310 @cindex IPv6
2311
2312 An IPv6 Internet address is a 16-byte value, represented in Guile as
2313 an integer in host byte order, so that say ``::1'' is 1.
2314
2315 @deffn {Scheme Procedure} inet-ntop family address
2316 @deffnx {C Function} scm_inet_ntop (family, address)
2317 Convert a network address from an integer to a printable string.
2318 @var{family} can be @code{AF_INET} or @code{AF_INET6}. E.g.,
2319
2320 @lisp
2321 (inet-ntop AF_INET 2130706433) @result{} "127.0.0.1"
2322 (inet-ntop AF_INET6 (- (expt 2 128) 1))
2323 @result{} "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff"
2324 @end lisp
2325 @end deffn
2326
2327 @deffn {Scheme Procedure} inet-pton family address
2328 @deffnx {C Function} scm_inet_pton (family, address)
2329 Convert a string containing a printable network address to an integer
2330 address. @var{family} can be @code{AF_INET} or @code{AF_INET6}.
2331 E.g.,
2332
2333 @lisp
2334 (inet-pton AF_INET "127.0.0.1") @result{} 2130706433
2335 (inet-pton AF_INET6 "::1") @result{} 1
2336 @end lisp
2337 @end deffn
2338
2339
2340 @node Network Databases
2341 @subsubsection Network Databases
2342 @cindex network database
2343
2344 This section describes procedures which query various network databases.
2345 Care should be taken when using the database routines since they are not
2346 reentrant.
2347
2348 @subsubheading @code{getaddrinfo}
2349
2350 @cindex @code{addrinfo} object type
2351 @cindex host name lookup
2352 @cindex service name lookup
2353
2354 The @code{getaddrinfo} procedure maps host and service names to socket addresses
2355 and associated information in a protocol-independent way.
2356
2357 @deffn {Scheme Procedure} getaddrinfo name service [hint_flags [hint_family [hint_socktype [hint_protocol]]]]
2358 @deffnx {C Function} scm_getaddrinfo (name, service, hint_flags, hint_family, hint_socktype, hint_protocol)
2359 Return a list of @code{addrinfo} structures containing
2360 a socket address and associated information for host @var{name}
2361 and/or @var{service} to be used in creating a socket with
2362 which to address the specified service.
2363
2364 @example
2365 (let* ((ai (car (getaddrinfo "www.gnu.org" "http")))
2366 (s (socket (addrinfo:fam ai) (addrinfo:socktype ai)
2367 (addrinfo:protocol ai))))
2368 (connect s (addrinfo:addr ai))
2369 s)
2370 @end example
2371
2372 When @var{service} is omitted or is @code{#f}, return
2373 network-level addresses for @var{name}. When @var{name}
2374 is @code{#f} @var{service} must be provided and service
2375 locations local to the caller are returned.
2376
2377 Additional hints can be provided. When specified,
2378 @var{hint_flags} should be a bitwise-or of zero or more
2379 constants among the following:
2380
2381 @table @code
2382 @item AI_PASSIVE
2383 Socket address is intended for @code{bind}.
2384
2385 @item AI_CANONNAME
2386 Request for canonical host name, available via
2387 @code{addrinfo:canonname}. This makes sense mainly when
2388 DNS lookups are involved.
2389
2390 @item AI_NUMERICHOST
2391 Specifies that @var{name} is a numeric host address string
2392 (e.g., @code{"127.0.0.1"}), meaning that name resolution
2393 will not be used.
2394
2395 @item AI_NUMERICSERV
2396 Likewise, specifies that @var{service} is a numeric port
2397 string (e.g., @code{"80"}).
2398
2399 @item AI_ADDRCONFIG
2400 Return only addresses configured on the local system It is
2401 highly recommended to provide this flag when the returned
2402 socket addresses are to be used to make connections;
2403 otherwise, some of the returned addresses could be unreachable
2404 or use a protocol that is not supported.
2405
2406 @item AI_V4MAPPED
2407 When looking up IPv6 addresses, return mapped IPv4 addresses if
2408 there is no IPv6 address available at all.
2409
2410 @item AI_ALL
2411 If this flag is set along with @code{AI_V4MAPPED} when looking up IPv6
2412 addresses, return all IPv6 addresses as well as all IPv4 addresses, the latter
2413 mapped to IPv6 format.
2414 @end table
2415
2416 When given, @var{hint_family} should specify the requested
2417 address family, e.g., @code{AF_INET6}. Similarly,
2418 @var{hint_socktype} should specify the requested socket type
2419 (e.g., @code{SOCK_DGRAM}), and @var{hint_protocol} should
2420 specify the requested protocol (its value is interpretered
2421 as in calls to @code{socket}).
2422
2423 On error, an exception with key @code{getaddrinfo-error} is
2424 thrown, with an error code (an integer) as its argument:
2425
2426 @example
2427 (catch 'getaddrinfo-error
2428 (lambda ()
2429 (getaddrinfo "www.gnu.org" "gopher"))
2430 (lambda (key errcode)
2431 (cond ((= errcode EAI_SERVICE)
2432 (display "doesn't know about Gopher!\n"))
2433 ((= errcode EAI_NONAME)
2434 (display "www.gnu.org not found\\n"))
2435 (else
2436 (format #t "something wrong: ~a\n"
2437 (gai-strerror errcode))))))
2438 @end example
2439
2440 Error codes are:
2441
2442 @table @code
2443 @item EAI_AGAIN
2444 The name or service could not be resolved at this time. Future
2445 attempts may succeed.
2446
2447 @item EAI_BADFLAGS
2448 @var{hint_flags} contains an invalid value.
2449
2450 @item EAI_FAIL
2451 A non-recoverable error occurred when attempting to
2452 resolve the name.
2453
2454 @item EAI_FAMILY
2455 @var{hint_family} was not recognized.
2456
2457 @item EAI_NONAME
2458 Either @var{name} does not resolve for the supplied parameters,
2459 or neither @var{name} nor @var{service} were supplied.
2460
2461 @item EAI_SERVICE
2462 @var{service} was not recognized for the specified socket type.
2463
2464 @item EAI_SOCKTYPE
2465 @var{hint_socktype} was not recognized.
2466
2467 @item EAI_SYSTEM
2468 A system error occurred; the error code can be found in
2469 @code{errno}.
2470 @end table
2471
2472 Users are encouraged to read the
2473 @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getaddrinfo.html,
2474 "POSIX specification} for more details.
2475 @end deffn
2476
2477 The following procedures take an @code{addrinfo} object as returned by
2478 @code{getaddrinfo}:
2479
2480 @deffn {Scheme Procedure} addrinfo:flags ai
2481 Return flags for @var{ai} as a bitwise or of @code{AI_} values (see above).
2482 @end deffn
2483
2484 @deffn {Scheme Procedure} addrinfo:fam ai
2485 Return the address family of @var{ai} (a @code{AF_} value).
2486 @end deffn
2487
2488 @deffn {Scheme Procedure} addrinfo:socktype ai
2489 Return the socket type for @var{ai} (a @code{SOCK_} value).
2490 @end deffn
2491
2492 @deffn {Scheme Procedure} addrinfo:protocol ai
2493 Return the protocol of @var{ai}.
2494 @end deffn
2495
2496 @deffn {Scheme Procedure} addrinfo:addr ai
2497 Return the socket address associated with @var{ai} as a @code{sockaddr}
2498 object (@pxref{Network Socket Address}).
2499 @end deffn
2500
2501 @deffn {Scheme Procedure} addrinfo:canonname ai
2502 Return a string for the canonical name associated with @var{ai} if
2503 the @code{AI_CANONNAME} flag was supplied.
2504 @end deffn
2505
2506 @subsubheading The Host Database
2507 @cindex @file{/etc/hosts}
2508 @cindex network database
2509
2510 A @dfn{host object} is a structure that represents what is known about a
2511 network host, and is the usual way of representing a system's network
2512 identity inside software.
2513
2514 The following functions accept a host object and return a selected
2515 component:
2516
2517 @deffn {Scheme Procedure} hostent:name host
2518 The ``official'' hostname for @var{host}.
2519 @end deffn
2520 @deffn {Scheme Procedure} hostent:aliases host
2521 A list of aliases for @var{host}.
2522 @end deffn
2523 @deffn {Scheme Procedure} hostent:addrtype host
2524 The host address type, one of the @code{AF} constants, such as
2525 @code{AF_INET} or @code{AF_INET6}.
2526 @end deffn
2527 @deffn {Scheme Procedure} hostent:length host
2528 The length of each address for @var{host}, in bytes.
2529 @end deffn
2530 @deffn {Scheme Procedure} hostent:addr-list host
2531 The list of network addresses associated with @var{host}. For
2532 @code{AF_INET} these are integer IPv4 address (@pxref{Network Address
2533 Conversion}).
2534 @end deffn
2535
2536 The following procedures can be used to search the host database. However,
2537 @code{getaddrinfo} should be preferred over them since it's more generic and
2538 thread-safe.
2539
2540 @deffn {Scheme Procedure} gethost [host]
2541 @deffnx {Scheme Procedure} gethostbyname hostname
2542 @deffnx {Scheme Procedure} gethostbyaddr address
2543 @deffnx {C Function} scm_gethost (host)
2544 Look up a host by name or address, returning a host object. The
2545 @code{gethost} procedure will accept either a string name or an integer
2546 address; if given no arguments, it behaves like @code{gethostent} (see
2547 below). If a name or address is supplied but the address can not be
2548 found, an error will be thrown to one of the keys:
2549 @code{host-not-found}, @code{try-again}, @code{no-recovery} or
2550 @code{no-data}, corresponding to the equivalent @code{h_error} values.
2551 Unusual conditions may result in errors thrown to the
2552 @code{system-error} or @code{misc_error} keys.
2553
2554 @lisp
2555 (gethost "www.gnu.org")
2556 @result{} #("www.gnu.org" () 2 4 (3353880842))
2557
2558 (gethostbyname "www.emacs.org")
2559 @result{} #("emacs.org" ("www.emacs.org") 2 4 (1073448978))
2560 @end lisp
2561 @end deffn
2562
2563 The following procedures may be used to step through the host
2564 database from beginning to end.
2565
2566 @deffn {Scheme Procedure} sethostent [stayopen]
2567 Initialize an internal stream from which host objects may be read. This
2568 procedure must be called before any calls to @code{gethostent}, and may
2569 also be called afterward to reset the host entry stream. If
2570 @var{stayopen} is supplied and is not @code{#f}, the database is not
2571 closed by subsequent @code{gethostbyname} or @code{gethostbyaddr} calls,
2572 possibly giving an efficiency gain.
2573 @end deffn
2574
2575 @deffn {Scheme Procedure} gethostent
2576 Return the next host object from the host database, or @code{#f} if
2577 there are no more hosts to be found (or an error has been encountered).
2578 This procedure may not be used before @code{sethostent} has been called.
2579 @end deffn
2580
2581 @deffn {Scheme Procedure} endhostent
2582 Close the stream used by @code{gethostent}. The return value is unspecified.
2583 @end deffn
2584
2585 @deffn {Scheme Procedure} sethost [stayopen]
2586 @deffnx {C Function} scm_sethost (stayopen)
2587 If @var{stayopen} is omitted, this is equivalent to @code{endhostent}.
2588 Otherwise it is equivalent to @code{sethostent stayopen}.
2589 @end deffn
2590
2591 @subsubheading The Network Database
2592 @cindex network database
2593
2594 The following functions accept an object representing a network
2595 and return a selected component:
2596
2597 @deffn {Scheme Procedure} netent:name net
2598 The ``official'' network name.
2599 @end deffn
2600 @deffn {Scheme Procedure} netent:aliases net
2601 A list of aliases for the network.
2602 @end deffn
2603 @deffn {Scheme Procedure} netent:addrtype net
2604 The type of the network number. Currently, this returns only
2605 @code{AF_INET}.
2606 @end deffn
2607 @deffn {Scheme Procedure} netent:net net
2608 The network number.
2609 @end deffn
2610
2611 The following procedures are used to search the network database:
2612
2613 @deffn {Scheme Procedure} getnet [net]
2614 @deffnx {Scheme Procedure} getnetbyname net-name
2615 @deffnx {Scheme Procedure} getnetbyaddr net-number
2616 @deffnx {C Function} scm_getnet (net)
2617 Look up a network by name or net number in the network database. The
2618 @var{net-name} argument must be a string, and the @var{net-number}
2619 argument must be an integer. @code{getnet} will accept either type of
2620 argument, behaving like @code{getnetent} (see below) if no arguments are
2621 given.
2622 @end deffn
2623
2624 The following procedures may be used to step through the network
2625 database from beginning to end.
2626
2627 @deffn {Scheme Procedure} setnetent [stayopen]
2628 Initialize an internal stream from which network objects may be read. This
2629 procedure must be called before any calls to @code{getnetent}, and may
2630 also be called afterward to reset the net entry stream. If
2631 @var{stayopen} is supplied and is not @code{#f}, the database is not
2632 closed by subsequent @code{getnetbyname} or @code{getnetbyaddr} calls,
2633 possibly giving an efficiency gain.
2634 @end deffn
2635
2636 @deffn {Scheme Procedure} getnetent
2637 Return the next entry from the network database.
2638 @end deffn
2639
2640 @deffn {Scheme Procedure} endnetent
2641 Close the stream used by @code{getnetent}. The return value is unspecified.
2642 @end deffn
2643
2644 @deffn {Scheme Procedure} setnet [stayopen]
2645 @deffnx {C Function} scm_setnet (stayopen)
2646 If @var{stayopen} is omitted, this is equivalent to @code{endnetent}.
2647 Otherwise it is equivalent to @code{setnetent stayopen}.
2648 @end deffn
2649
2650 @subsubheading The Protocol Database
2651 @cindex @file{/etc/protocols}
2652 @cindex protocols
2653 @cindex network protocols
2654
2655 The following functions accept an object representing a protocol
2656 and return a selected component:
2657
2658 @deffn {Scheme Procedure} protoent:name protocol
2659 The ``official'' protocol name.
2660 @end deffn
2661 @deffn {Scheme Procedure} protoent:aliases protocol
2662 A list of aliases for the protocol.
2663 @end deffn
2664 @deffn {Scheme Procedure} protoent:proto protocol
2665 The protocol number.
2666 @end deffn
2667
2668 The following procedures are used to search the protocol database:
2669
2670 @deffn {Scheme Procedure} getproto [protocol]
2671 @deffnx {Scheme Procedure} getprotobyname name
2672 @deffnx {Scheme Procedure} getprotobynumber number
2673 @deffnx {C Function} scm_getproto (protocol)
2674 Look up a network protocol by name or by number. @code{getprotobyname}
2675 takes a string argument, and @code{getprotobynumber} takes an integer
2676 argument. @code{getproto} will accept either type, behaving like
2677 @code{getprotoent} (see below) if no arguments are supplied.
2678 @end deffn
2679
2680 The following procedures may be used to step through the protocol
2681 database from beginning to end.
2682
2683 @deffn {Scheme Procedure} setprotoent [stayopen]
2684 Initialize an internal stream from which protocol objects may be read. This
2685 procedure must be called before any calls to @code{getprotoent}, and may
2686 also be called afterward to reset the protocol entry stream. If
2687 @var{stayopen} is supplied and is not @code{#f}, the database is not
2688 closed by subsequent @code{getprotobyname} or @code{getprotobynumber} calls,
2689 possibly giving an efficiency gain.
2690 @end deffn
2691
2692 @deffn {Scheme Procedure} getprotoent
2693 Return the next entry from the protocol database.
2694 @end deffn
2695
2696 @deffn {Scheme Procedure} endprotoent
2697 Close the stream used by @code{getprotoent}. The return value is unspecified.
2698 @end deffn
2699
2700 @deffn {Scheme Procedure} setproto [stayopen]
2701 @deffnx {C Function} scm_setproto (stayopen)
2702 If @var{stayopen} is omitted, this is equivalent to @code{endprotoent}.
2703 Otherwise it is equivalent to @code{setprotoent stayopen}.
2704 @end deffn
2705
2706 @subsubheading The Service Database
2707 @cindex @file{/etc/services}
2708 @cindex services
2709 @cindex network services
2710
2711 The following functions accept an object representing a service
2712 and return a selected component:
2713
2714 @deffn {Scheme Procedure} servent:name serv
2715 The ``official'' name of the network service.
2716 @end deffn
2717 @deffn {Scheme Procedure} servent:aliases serv
2718 A list of aliases for the network service.
2719 @end deffn
2720 @deffn {Scheme Procedure} servent:port serv
2721 The Internet port used by the service.
2722 @end deffn
2723 @deffn {Scheme Procedure} servent:proto serv
2724 The protocol used by the service. A service may be listed many times
2725 in the database under different protocol names.
2726 @end deffn
2727
2728 The following procedures are used to search the service database:
2729
2730 @deffn {Scheme Procedure} getserv [name [protocol]]
2731 @deffnx {Scheme Procedure} getservbyname name protocol
2732 @deffnx {Scheme Procedure} getservbyport port protocol
2733 @deffnx {C Function} scm_getserv (name, protocol)
2734 Look up a network service by name or by service number, and return a
2735 network service object. The @var{protocol} argument specifies the name
2736 of the desired protocol; if the protocol found in the network service
2737 database does not match this name, a system error is signalled.
2738
2739 The @code{getserv} procedure will take either a service name or number
2740 as its first argument; if given no arguments, it behaves like
2741 @code{getservent} (see below).
2742
2743 @lisp
2744 (getserv "imap" "tcp")
2745 @result{} #("imap2" ("imap") 143 "tcp")
2746
2747 (getservbyport 88 "udp")
2748 @result{} #("kerberos" ("kerberos5" "krb5") 88 "udp")
2749 @end lisp
2750 @end deffn
2751
2752 The following procedures may be used to step through the service
2753 database from beginning to end.
2754
2755 @deffn {Scheme Procedure} setservent [stayopen]
2756 Initialize an internal stream from which service objects may be read. This
2757 procedure must be called before any calls to @code{getservent}, and may
2758 also be called afterward to reset the service entry stream. If
2759 @var{stayopen} is supplied and is not @code{#f}, the database is not
2760 closed by subsequent @code{getservbyname} or @code{getservbyport} calls,
2761 possibly giving an efficiency gain.
2762 @end deffn
2763
2764 @deffn {Scheme Procedure} getservent
2765 Return the next entry from the services database.
2766 @end deffn
2767
2768 @deffn {Scheme Procedure} endservent
2769 Close the stream used by @code{getservent}. The return value is unspecified.
2770 @end deffn
2771
2772 @deffn {Scheme Procedure} setserv [stayopen]
2773 @deffnx {C Function} scm_setserv (stayopen)
2774 If @var{stayopen} is omitted, this is equivalent to @code{endservent}.
2775 Otherwise it is equivalent to @code{setservent stayopen}.
2776 @end deffn
2777
2778
2779 @node Network Socket Address
2780 @subsubsection Network Socket Address
2781 @cindex socket address
2782 @cindex network socket address
2783 @tpindex Socket address
2784
2785 A @dfn{socket address} object identifies a socket endpoint for
2786 communication. In the case of @code{AF_INET} for instance, the socket
2787 address object comprises the host address (or interface on the host)
2788 and a port number which specifies a particular open socket in a
2789 running client or server process. A socket address object can be
2790 created with,
2791
2792 @deffn {Scheme Procedure} make-socket-address AF_INET ipv4addr port
2793 @deffnx {Scheme Procedure} make-socket-address AF_INET6 ipv6addr port [flowinfo [scopeid]]
2794 @deffnx {Scheme Procedure} make-socket-address AF_UNIX path
2795 @deffnx {C Function} scm_make_socket_address family address arglist
2796 Return a new socket address object. The first argument is the address
2797 family, one of the @code{AF} constants, then the arguments vary
2798 according to the family.
2799
2800 For @code{AF_INET} the arguments are an IPv4 network address number
2801 (@pxref{Network Address Conversion}), and a port number.
2802
2803 For @code{AF_INET6} the arguments are an IPv6 network address number
2804 and a port number. Optional @var{flowinfo} and @var{scopeid}
2805 arguments may be given (both integers, default 0).
2806
2807 For @code{AF_UNIX} the argument is a filename (a string).
2808
2809 The C function @code{scm_make_socket_address} takes the @var{family}
2810 and @var{address} arguments directly, then @var{arglist} is a list of
2811 further arguments, being the port for IPv4, port and optional flowinfo
2812 and scopeid for IPv6, or the empty list @code{SCM_EOL} for Unix
2813 domain.
2814 @end deffn
2815
2816 @noindent
2817 The following functions access the fields of a socket address object,
2818
2819 @deffn {Scheme Procedure} sockaddr:fam sa
2820 Return the address family from socket address object @var{sa}. This
2821 is one of the @code{AF} constants (eg. @code{AF_INET}).
2822 @end deffn
2823
2824 @deffn {Scheme Procedure} sockaddr:path sa
2825 For an @code{AF_UNIX} socket address object @var{sa}, return the
2826 filename.
2827 @end deffn
2828
2829 @deffn {Scheme Procedure} sockaddr:addr sa
2830 For an @code{AF_INET} or @code{AF_INET6} socket address object
2831 @var{sa}, return the network address number.
2832 @end deffn
2833
2834 @deffn {Scheme Procedure} sockaddr:port sa
2835 For an @code{AF_INET} or @code{AF_INET6} socket address object
2836 @var{sa}, return the port number.
2837 @end deffn
2838
2839 @deffn {Scheme Procedure} sockaddr:flowinfo sa
2840 For an @code{AF_INET6} socket address object @var{sa}, return the
2841 flowinfo value.
2842 @end deffn
2843
2844 @deffn {Scheme Procedure} sockaddr:scopeid sa
2845 For an @code{AF_INET6} socket address object @var{sa}, return the
2846 scope ID value.
2847 @end deffn
2848
2849 @tpindex @code{struct sockaddr}
2850 @tpindex @code{sockaddr}
2851 The functions below convert to and from the C @code{struct sockaddr}
2852 (@pxref{Address Formats,,, libc, The GNU C Library Reference Manual}).
2853 That structure is a generic type, an application can cast to or from
2854 @code{struct sockaddr_in}, @code{struct sockaddr_in6} or @code{struct
2855 sockaddr_un} according to the address family.
2856
2857 In a @code{struct sockaddr} taken or returned, the byte ordering in
2858 the fields follows the C conventions (@pxref{Byte Order,, Byte Order
2859 Conversion, libc, The GNU C Library Reference Manual}). This means
2860 network byte order for @code{AF_INET} host address
2861 (@code{sin_addr.s_addr}) and port number (@code{sin_port}), and
2862 @code{AF_INET6} port number (@code{sin6_port}). But at the Scheme
2863 level these values are taken or returned in host byte order, so the
2864 port is an ordinary integer, and the host address likewise is an
2865 ordinary integer (as described in @ref{Network Address Conversion}).
2866
2867 @deftypefn {C Function} {struct sockaddr *} scm_c_make_socket_address (SCM family, SCM address, SCM args, size_t *outsize)
2868 Return a newly-@code{malloc}ed @code{struct sockaddr} created from
2869 arguments like those taken by @code{scm_make_socket_address} above.
2870
2871 The size (in bytes) of the @code{struct sockaddr} return is stored
2872 into @code{*@var{outsize}}. An application must call @code{free} to
2873 release the returned structure when no longer required.
2874 @end deftypefn
2875
2876 @deftypefn {C Function} SCM scm_from_sockaddr (const struct sockaddr *address, unsigned address_size)
2877 Return a Scheme socket address object from the C @var{address}
2878 structure. @var{address_size} is the size in bytes of @var{address}.
2879 @end deftypefn
2880
2881 @deftypefn {C Function} {struct sockaddr *} scm_to_sockaddr (SCM address, size_t *address_size)
2882 Return a newly-@code{malloc}ed @code{struct sockaddr} from a Scheme
2883 level socket address object.
2884
2885 The size (in bytes) of the @code{struct sockaddr} return is stored
2886 into @code{*@var{outsize}}. An application must call @code{free} to
2887 release the returned structure when no longer required.
2888 @end deftypefn
2889
2890
2891 @node Network Sockets and Communication
2892 @subsubsection Network Sockets and Communication
2893 @cindex socket
2894 @cindex network socket
2895
2896 Socket ports can be created using @code{socket} and @code{socketpair}.
2897 The ports are initially unbuffered, to make reading and writing to the
2898 same port more reliable. A buffer can be added to the port using
2899 @code{setvbuf}; see @ref{Ports and File Descriptors}.
2900
2901 Most systems have limits on how many files and sockets can be open, so
2902 it's strongly recommended that socket ports be closed explicitly when
2903 no longer required (@pxref{Ports}).
2904
2905 Some of the underlying C functions take values in network byte order,
2906 but the convention in Guile is that at the Scheme level everything is
2907 ordinary host byte order and conversions are made automatically where
2908 necessary.
2909
2910 @deffn {Scheme Procedure} socket family style proto
2911 @deffnx {C Function} scm_socket (family, style, proto)
2912 Return a new socket port of the type specified by @var{family},
2913 @var{style} and @var{proto}. All three parameters are integers. The
2914 possible values for @var{family} are as follows, where supported by
2915 the system,
2916
2917 @defvar PF_UNIX
2918 @defvarx PF_INET
2919 @defvarx PF_INET6
2920 @end defvar
2921
2922 The possible values for @var{style} are as follows, again where
2923 supported by the system,
2924
2925 @defvar SOCK_STREAM
2926 @defvarx SOCK_DGRAM
2927 @defvarx SOCK_RAW
2928 @defvarx SOCK_RDM
2929 @defvarx SOCK_SEQPACKET
2930 @end defvar
2931
2932 @var{proto} can be obtained from a protocol name using
2933 @code{getprotobyname} (@pxref{Network Databases}). A value of zero
2934 means the default protocol, which is usually right.
2935
2936 A socket cannot by used for communication until it has been connected
2937 somewhere, usually with either @code{connect} or @code{accept} below.
2938 @end deffn
2939
2940 @deffn {Scheme Procedure} socketpair family style proto
2941 @deffnx {C Function} scm_socketpair (family, style, proto)
2942 Return a pair, the @code{car} and @code{cdr} of which are two unnamed
2943 socket ports connected to each other. The connection is full-duplex,
2944 so data can be transferred in either direction between the two.
2945
2946 @var{family}, @var{style} and @var{proto} are as per @code{socket}
2947 above. But many systems only support socket pairs in the
2948 @code{PF_UNIX} family. Zero is likely to be the only meaningful value
2949 for @var{proto}.
2950 @end deffn
2951
2952 @deffn {Scheme Procedure} getsockopt sock level optname
2953 @deffnx {Scheme Procedure} setsockopt sock level optname value
2954 @deffnx {C Function} scm_getsockopt (sock, level, optname)
2955 @deffnx {C Function} scm_setsockopt (sock, level, optname, value)
2956 Get or set an option on socket port @var{sock}. @code{getsockopt}
2957 returns the current value. @code{setsockopt} sets a value and the
2958 return is unspecified.
2959
2960 @var{level} is an integer specifying a protocol layer, either
2961 @code{SOL_SOCKET} for socket level options, or a protocol number from
2962 the @code{IPPROTO} constants or @code{getprotoent} (@pxref{Network
2963 Databases}).
2964
2965 @defvar SOL_SOCKET
2966 @defvarx IPPROTO_IP
2967 @defvarx IPPROTO_TCP
2968 @defvarx IPPROTO_UDP
2969 @end defvar
2970
2971 @var{optname} is an integer specifying an option within the protocol
2972 layer.
2973
2974 For @code{SOL_SOCKET} level the following @var{optname}s are defined
2975 (when provided by the system). For their meaning see
2976 @ref{Socket-Level Options,,, libc, The GNU C Library Reference
2977 Manual}, or @command{man 7 socket}.
2978
2979 @defvar SO_DEBUG
2980 @defvarx SO_REUSEADDR
2981 @defvarx SO_STYLE
2982 @defvarx SO_TYPE
2983 @defvarx SO_ERROR
2984 @defvarx SO_DONTROUTE
2985 @defvarx SO_BROADCAST
2986 @defvarx SO_SNDBUF
2987 @defvarx SO_RCVBUF
2988 @defvarx SO_KEEPALIVE
2989 @defvarx SO_OOBINLINE
2990 @defvarx SO_NO_CHECK
2991 @defvarx SO_PRIORITY
2992 The @var{value} taken or returned is an integer.
2993 @end defvar
2994
2995 @defvar SO_LINGER
2996 The @var{value} taken or returned is a pair of integers
2997 @code{(@var{ENABLE} . @var{TIMEOUT})}. On old systems without timeout
2998 support (ie.@: without @code{struct linger}), only @var{ENABLE} has an
2999 effect but the value in Guile is always a pair.
3000 @end defvar
3001
3002 @c Note that we refer only to ``man ip'' here. On GNU/Linux it's
3003 @c ``man 7 ip'' but on NetBSD it's ``man 4 ip''.
3004 @c
3005 For IP level (@code{IPPROTO_IP}) the following @var{optname}s are
3006 defined (when provided by the system). See @command{man ip} for what
3007 they mean.
3008
3009 @defvar IP_ADD_MEMBERSHIP
3010 @defvarx IP_DROP_MEMBERSHIP
3011 These can be used only with @code{setsockopt}, not @code{getsockopt}.
3012 @var{value} is a pair @code{(@var{MULTIADDR} . @var{INTERFACEADDR})}
3013 of integer IPv4 addresses (@pxref{Network Address Conversion}).
3014 @var{MULTIADDR} is a multicast address to be added to or dropped from
3015 the interface @var{INTERFACEADDR}. @var{INTERFACEADDR} can be
3016 @code{INADDR_ANY} to have the system select the interface.
3017 @var{INTERFACEADDR} can also be an interface index number, on systems
3018 supporting that.
3019 @end defvar
3020 @end deffn
3021
3022 @deffn {Scheme Procedure} shutdown sock how
3023 @deffnx {C Function} scm_shutdown (sock, how)
3024 Sockets can be closed simply by using @code{close-port}. The
3025 @code{shutdown} procedure allows reception or transmission on a
3026 connection to be shut down individually, according to the parameter
3027 @var{how}:
3028
3029 @table @asis
3030 @item 0
3031 Stop receiving data for this socket. If further data arrives, reject it.
3032 @item 1
3033 Stop trying to transmit data from this socket. Discard any
3034 data waiting to be sent. Stop looking for acknowledgement of
3035 data already sent; don't retransmit it if it is lost.
3036 @item 2
3037 Stop both reception and transmission.
3038 @end table
3039
3040 The return value is unspecified.
3041 @end deffn
3042
3043 @deffn {Scheme Procedure} connect sock sockaddr
3044 @deffnx {Scheme Procedure} connect sock AF_INET ipv4addr port
3045 @deffnx {Scheme Procedure} connect sock AF_INET6 ipv6addr port [flowinfo [scopeid]]
3046 @deffnx {Scheme Procedure} connect sock AF_UNIX path
3047 @deffnx {C Function} scm_connect (sock, fam, address, args)
3048 Initiate a connection on socket port @var{sock} to a given address.
3049 The destination is either a socket address object, or arguments the
3050 same as @code{make-socket-address} would take to make such an object
3051 (@pxref{Network Socket Address}). The return value is unspecified.
3052
3053 @example
3054 (connect sock AF_INET INADDR_LOOPBACK 23)
3055 (connect sock (make-socket-address AF_INET INADDR_LOOPBACK 23))
3056 @end example
3057 @end deffn
3058
3059 @deffn {Scheme Procedure} bind sock sockaddr
3060 @deffnx {Scheme Procedure} bind sock AF_INET ipv4addr port
3061 @deffnx {Scheme Procedure} bind sock AF_INET6 ipv6addr port [flowinfo [scopeid]]
3062 @deffnx {Scheme Procedure} bind sock AF_UNIX path
3063 @deffnx {C Function} scm_bind (sock, fam, address, args)
3064 Bind socket port @var{sock} to the given address. The address is
3065 either a socket address object, or arguments the same as
3066 @code{make-socket-address} would take to make such an object
3067 (@pxref{Network Socket Address}). The return value is unspecified.
3068
3069 Generally a socket is only explicitly bound to a particular address
3070 when making a server, ie. to listen on a particular port. For an
3071 outgoing connection the system will assign a local address
3072 automatically, if not already bound.
3073
3074 @example
3075 (bind sock AF_INET INADDR_ANY 12345)
3076 (bind sock (make-socket-address AF_INET INADDR_ANY 12345))
3077 @end example
3078 @end deffn
3079
3080 @deffn {Scheme Procedure} listen sock backlog
3081 @deffnx {C Function} scm_listen (sock, backlog)
3082 Enable @var{sock} to accept connection
3083 requests. @var{backlog} is an integer specifying
3084 the maximum length of the queue for pending connections.
3085 If the queue fills, new clients will fail to connect until
3086 the server calls @code{accept} to accept a connection from
3087 the queue.
3088
3089 The return value is unspecified.
3090 @end deffn
3091
3092 @deffn {Scheme Procedure} accept sock
3093 @deffnx {C Function} scm_accept (sock)
3094 Accept a connection from socket port @var{sock} which has been enabled
3095 for listening with @code{listen} above. If there are no incoming
3096 connections in the queue, wait until one is available (unless
3097 @code{O_NONBLOCK} has been set on the socket, @pxref{Ports and File
3098 Descriptors,@code{fcntl}}).
3099
3100 The return value is a pair. The @code{car} is a new socket port,
3101 connected and ready to communicate. The @code{cdr} is a socket
3102 address object (@pxref{Network Socket Address}) which is where the
3103 remote connection is from (like @code{getpeername} below).
3104
3105 All communication takes place using the new socket returned. The
3106 given @var{sock} remains bound and listening, and @code{accept} may be
3107 called on it again to get another incoming connection when desired.
3108 @end deffn
3109
3110 @deffn {Scheme Procedure} getsockname sock
3111 @deffnx {C Function} scm_getsockname (sock)
3112 Return a socket address object which is the where @var{sock} is bound
3113 locally. @var{sock} may have obtained its local address from
3114 @code{bind} (above), or if a @code{connect} is done with an otherwise
3115 unbound socket (which is usual) then the system will have assigned an
3116 address.
3117
3118 Note that on many systems the address of a socket in the
3119 @code{AF_UNIX} namespace cannot be read.
3120 @end deffn
3121
3122 @deffn {Scheme Procedure} getpeername sock
3123 @deffnx {C Function} scm_getpeername (sock)
3124 Return a socket address object which is where @var{sock} is connected
3125 to, ie. the remote endpoint.
3126
3127 Note that on many systems the address of a socket in the
3128 @code{AF_UNIX} namespace cannot be read.
3129 @end deffn
3130
3131 @deffn {Scheme Procedure} recv! sock buf [flags]
3132 @deffnx {C Function} scm_recv (sock, buf, flags)
3133 Receive data from a socket port.
3134 @var{sock} must already
3135 be bound to the address from which data is to be received.
3136 @var{buf} is a string into which
3137 the data will be written. The size of @var{buf} limits
3138 the amount of
3139 data which can be received: in the case of packet
3140 protocols, if a packet larger than this limit is encountered
3141 then some data
3142 will be irrevocably lost.
3143
3144 @vindex MSG_OOB
3145 @vindex MSG_PEEK
3146 @vindex MSG_DONTROUTE
3147 The optional @var{flags} argument is a value or bitwise OR of
3148 @code{MSG_OOB}, @code{MSG_PEEK}, @code{MSG_DONTROUTE} etc.
3149
3150 The value returned is the number of bytes read from the
3151 socket.
3152
3153 Note that the data is read directly from the socket file
3154 descriptor:
3155 any unread buffered port data is ignored.
3156 @end deffn
3157
3158 @deffn {Scheme Procedure} send sock message [flags]
3159 @deffnx {C Function} scm_send (sock, message, flags)
3160 @vindex MSG_OOB
3161 @vindex MSG_PEEK
3162 @vindex MSG_DONTROUTE
3163 Transmit the string @var{message} on a socket port @var{sock}.
3164 @var{sock} must already be bound to a destination address. The value
3165 returned is the number of bytes transmitted---it's possible for this
3166 to be less than the length of @var{message} if the socket is set to be
3167 non-blocking. The optional @var{flags} argument is a value or bitwise
3168 OR of @code{MSG_OOB}, @code{MSG_PEEK}, @code{MSG_DONTROUTE} etc.
3169
3170 Note that the data is written directly to the socket
3171 file descriptor:
3172 any unflushed buffered port data is ignored.
3173 @end deffn
3174
3175 @deffn {Scheme Procedure} recvfrom! sock str [flags [start [end]]]
3176 @deffnx {C Function} scm_recvfrom (sock, str, flags, start, end)
3177 Receive data from socket port @var{sock}, returning the originating
3178 address as well as the data. This function is usually for datagram
3179 sockets, but can be used on stream-oriented sockets too.
3180
3181 The data received is stored in the given @var{str}, the whole string
3182 or just the region between the optional @var{start} and @var{end}
3183 positions. The size of @var{str} limits the amount of data which can
3184 be received. For datagram protocols if a packet larger than this is
3185 received then excess bytes are irrevocably lost.
3186
3187 The return value is a pair. The @code{car} is the number of bytes
3188 read. The @code{cdr} is a socket address object (@pxref{Network
3189 Socket Address}) which is where the data came from, or @code{#f} if
3190 the origin is unknown.
3191
3192 @vindex MSG_OOB
3193 @vindex MSG_PEEK
3194 @vindex MSG_DONTROUTE
3195 The optional @var{flags} argument is a or bitwise-OR (@code{logior})
3196 of @code{MSG_OOB}, @code{MSG_PEEK}, @code{MSG_DONTROUTE} etc.
3197
3198 Data is read directly from the socket file descriptor, any buffered
3199 port data is ignored.
3200
3201 @c This was linux kernel 2.6.15 and glibc 2.3.6, not sure what any
3202 @c specs are supposed to say about recvfrom threading.
3203 @c
3204 On a GNU/Linux system @code{recvfrom!} is not multi-threading, all
3205 threads stop while a @code{recvfrom!} call is in progress. An
3206 application may need to use @code{select}, @code{O_NONBLOCK} or
3207 @code{MSG_DONTWAIT} to avoid this.
3208 @end deffn
3209
3210 @deffn {Scheme Procedure} sendto sock message sockaddr [flags]
3211 @deffnx {Scheme Procedure} sendto sock message AF_INET ipv4addr port [flags]
3212 @deffnx {Scheme Procedure} sendto sock message AF_INET6 ipv6addr port [flowinfo [scopeid [flags]]]
3213 @deffnx {Scheme Procedure} sendto sock message AF_UNIX path [flags]
3214 @deffnx {C Function} scm_sendto (sock, message, fam, address, args_and_flags)
3215 Transmit the string @var{message} as a datagram on socket port
3216 @var{sock}. The destination is specified either as a socket address
3217 object, or as arguments the same as would be taken by
3218 @code{make-socket-address} to create such an object (@pxref{Network
3219 Socket Address}).
3220
3221 The destination address may be followed by an optional @var{flags}
3222 argument which is a @code{logior} (@pxref{Bitwise Operations}) of
3223 @code{MSG_OOB}, @code{MSG_PEEK}, @code{MSG_DONTROUTE} etc.
3224
3225 The value returned is the number of bytes transmitted --
3226 it's possible for
3227 this to be less than the length of @var{message} if the
3228 socket is
3229 set to be non-blocking.
3230 Note that the data is written directly to the socket
3231 file descriptor:
3232 any unflushed buffered port data is ignored.
3233 @end deffn
3234
3235 The following functions can be used to convert short and long integers
3236 between ``host'' and ``network'' order. Although the procedures above do
3237 this automatically for addresses, the conversion will still need to
3238 be done when sending or receiving encoded integer data from the network.
3239
3240 @deffn {Scheme Procedure} htons value
3241 @deffnx {C Function} scm_htons (value)
3242 Convert a 16 bit quantity from host to network byte ordering.
3243 @var{value} is packed into 2 bytes, which are then converted
3244 and returned as a new integer.
3245 @end deffn
3246
3247 @deffn {Scheme Procedure} ntohs value
3248 @deffnx {C Function} scm_ntohs (value)
3249 Convert a 16 bit quantity from network to host byte ordering.
3250 @var{value} is packed into 2 bytes, which are then converted
3251 and returned as a new integer.
3252 @end deffn
3253
3254 @deffn {Scheme Procedure} htonl value
3255 @deffnx {C Function} scm_htonl (value)
3256 Convert a 32 bit quantity from host to network byte ordering.
3257 @var{value} is packed into 4 bytes, which are then converted
3258 and returned as a new integer.
3259 @end deffn
3260
3261 @deffn {Scheme Procedure} ntohl value
3262 @deffnx {C Function} scm_ntohl (value)
3263 Convert a 32 bit quantity from network to host byte ordering.
3264 @var{value} is packed into 4 bytes, which are then converted
3265 and returned as a new integer.
3266 @end deffn
3267
3268 These procedures are inconvenient to use at present, but consider:
3269
3270 @example
3271 (define write-network-long
3272 (lambda (value port)
3273 (let ((v (make-uniform-vector 1 1 0)))
3274 (uniform-vector-set! v 0 (htonl value))
3275 (uniform-vector-write v port))))
3276
3277 (define read-network-long
3278 (lambda (port)
3279 (let ((v (make-uniform-vector 1 1 0)))
3280 (uniform-vector-read! v port)
3281 (ntohl (uniform-vector-ref v 0)))))
3282 @end example
3283
3284
3285 @node Internet Socket Examples
3286 @subsubsection Network Socket Examples
3287 @cindex network examples
3288 @cindex socket examples
3289
3290 The following give examples of how to use network sockets.
3291
3292 @subsubheading Internet Socket Client Example
3293
3294 @cindex socket client example
3295 The following example demonstrates an Internet socket client.
3296 It connects to the HTTP daemon running on the local machine and
3297 returns the contents of the root index URL.
3298
3299 @example
3300 (let ((s (socket PF_INET SOCK_STREAM 0)))
3301 (connect s AF_INET (inet-pton AF_INET "127.0.0.1") 80)
3302 (display "GET / HTTP/1.0\r\n\r\n" s)
3303
3304 (do ((line (read-line s) (read-line s)))
3305 ((eof-object? line))
3306 (display line)
3307 (newline)))
3308 @end example
3309
3310
3311 @subsubheading Internet Socket Server Example
3312
3313 @cindex socket server example
3314 The following example shows a simple Internet server which listens on
3315 port 2904 for incoming connections and sends a greeting back to the
3316 client.
3317
3318 @example
3319 (let ((s (socket PF_INET SOCK_STREAM 0)))
3320 (setsockopt s SOL_SOCKET SO_REUSEADDR 1)
3321 ;; @r{Specific address?}
3322 ;; @r{(bind s AF_INET (inet-pton AF_INET "127.0.0.1") 2904)}
3323 (bind s AF_INET INADDR_ANY 2904)
3324 (listen s 5)
3325
3326 (simple-format #t "Listening for clients in pid: ~S" (getpid))
3327 (newline)
3328
3329 (while #t
3330 (let* ((client-connection (accept s))
3331 (client-details (cdr client-connection))
3332 (client (car client-connection)))
3333 (simple-format #t "Got new client connection: ~S"
3334 client-details)
3335 (newline)
3336 (simple-format #t "Client address: ~S"
3337 (gethostbyaddr
3338 (sockaddr:addr client-details)))
3339 (newline)
3340 ;; @r{Send back the greeting to the client port}
3341 (display "Hello client\r\n" client)
3342 (close client))))
3343 @end example
3344
3345
3346 @node System Identification
3347 @subsection System Identification
3348 @cindex system name
3349
3350 This section lists the various procedures Guile provides for accessing
3351 information about the system it runs on.
3352
3353 @deffn {Scheme Procedure} uname
3354 @deffnx {C Function} scm_uname ()
3355 Return an object with some information about the computer
3356 system the program is running on.
3357
3358 The following procedures accept an object as returned by @code{uname}
3359 and return a selected component (all of which are strings).
3360
3361 @deffn {Scheme Procedure} utsname:sysname un
3362 The name of the operating system.
3363 @end deffn
3364 @deffn {Scheme Procedure} utsname:nodename un
3365 The network name of the computer.
3366 @end deffn
3367 @deffn {Scheme Procedure} utsname:release un
3368 The current release level of the operating system implementation.
3369 @end deffn
3370 @deffn {Scheme Procedure} utsname:version un
3371 The current version level within the release of the operating system.
3372 @end deffn
3373 @deffn {Scheme Procedure} utsname:machine un
3374 A description of the hardware.
3375 @end deffn
3376 @end deffn
3377
3378 @deffn {Scheme Procedure} gethostname
3379 @deffnx {C Function} scm_gethostname ()
3380 @cindex host name
3381 Return the host name of the current processor.
3382 @end deffn
3383
3384 @deffn {Scheme Procedure} sethostname name
3385 @deffnx {C Function} scm_sethostname (name)
3386 Set the host name of the current processor to @var{name}. May
3387 only be used by the superuser. The return value is not
3388 specified.
3389 @end deffn
3390
3391 @node Locales
3392 @subsection Locales
3393 @cindex locale
3394
3395 @deffn {Scheme Procedure} setlocale category [locale]
3396 @deffnx {C Function} scm_setlocale (category, locale)
3397 Get or set the current locale, used for various internationalizations.
3398 Locales are strings, such as @samp{sv_SE}.
3399
3400 If @var{locale} is given then the locale for the given @var{category}
3401 is set and the new value returned. If @var{locale} is not given then
3402 the current value is returned. @var{category} should be one of the
3403 following values (@pxref{Locale Categories, Categories of Activities
3404 that Locales Affect,, libc, The GNU C Library Reference Manual}):
3405
3406 @defvar LC_ALL
3407 @defvarx LC_COLLATE
3408 @defvarx LC_CTYPE
3409 @defvarx LC_MESSAGES
3410 @defvarx LC_MONETARY
3411 @defvarx LC_NUMERIC
3412 @defvarx LC_TIME
3413 @end defvar
3414
3415 @cindex @code{LANG}
3416 A common usage is @samp{(setlocale LC_ALL "")}, which initializes all
3417 categories based on standard environment variables (@code{LANG} etc).
3418 For full details on categories and locale names @pxref{Locales,,
3419 Locales and Internationalization, libc, The GNU C Library Reference
3420 Manual}.
3421
3422 Note that @code{setlocale} affects locale settings for the whole
3423 process. @xref{i18n Introduction, locale objects and
3424 @code{make-locale}}, for a thread-safe alternative.
3425 @end deffn
3426
3427 @node Encryption
3428 @subsection Encryption
3429 @cindex encryption
3430
3431 Please note that the procedures in this section are not suited for
3432 strong encryption, they are only interfaces to the well-known and
3433 common system library functions of the same name. They are just as good
3434 (or bad) as the underlying functions, so you should refer to your system
3435 documentation before using them (@pxref{crypt,, Encrypting Passwords,
3436 libc, The GNU C Library Reference Manual}).
3437
3438 @deffn {Scheme Procedure} crypt key salt
3439 @deffnx {C Function} scm_crypt (key, salt)
3440 Encrypt @var{key}, with the addition of @var{salt} (both strings),
3441 using the @code{crypt} C library call.
3442 @end deffn
3443
3444 Although @code{getpass} is not an encryption procedure per se, it
3445 appears here because it is often used in combination with @code{crypt}:
3446
3447 @deffn {Scheme Procedure} getpass prompt
3448 @deffnx {C Function} scm_getpass (prompt)
3449 @cindex password
3450 Display @var{prompt} to the standard error output and read
3451 a password from @file{/dev/tty}. If this file is not
3452 accessible, it reads from standard input. The password may be
3453 up to 127 characters in length. Additional characters and the
3454 terminating newline character are discarded. While reading
3455 the password, echoing and the generation of signals by special
3456 characters is disabled.
3457 @end deffn
3458
3459
3460 @c Local Variables:
3461 @c TeX-master: "guile.texi"
3462 @c End: