1.0.5.9: experimental semi-synchronous deadlines
[sbcl.git] / src / code / unix.lisp
1 ;;;; This file contains Unix support that SBCL needs to implement
2 ;;;; itself. It's derived from Peter Van Eynde's unix-glibc2.lisp for
3 ;;;; CMU CL, which was derived from CMU CL unix.lisp 1.56. But those
4 ;;;; files aspired to be complete Unix interfaces exported to the end
5 ;;;; user, while this file aims to be as simple as possible and is not
6 ;;;; intended for the end user.
7 ;;;;
8 ;;;; FIXME: The old CMU CL unix.lisp code was implemented as hand
9 ;;;; transcriptions from Unix headers into Lisp. It appears that this was as
10 ;;;; unmaintainable in practice as you'd expect in theory, so I really really
11 ;;;; don't want to do that. It'd be good to implement the various system calls
12 ;;;; as C code implemented using the Unix header files, and have their
13 ;;;; interface back to SBCL code be characterized by things like "32-bit-wide
14 ;;;; int" which are already in the interface between the runtime
15 ;;;; executable and the SBCL lisp code.
16
17 ;;;; This software is part of the SBCL system. See the README file for
18 ;;;; more information.
19 ;;;;
20 ;;;; This software is derived from the CMU CL system, which was
21 ;;;; written at Carnegie Mellon University and released into the
22 ;;;; public domain. The software is in the public domain and is
23 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
24 ;;;; files for more information.
25
26 (in-package "SB!UNIX")
27
28 (/show0 "unix.lisp 21")
29
30 (defmacro def-enum (inc cur &rest names)
31   (flet ((defform (name)
32            (prog1 (when name `(defconstant ,name ,cur))
33              (setf cur (funcall inc cur 1)))))
34     `(progn ,@(mapcar #'defform names))))
35
36 ;;; Given a C-level zero-terminated array of C strings, return a
37 ;;; corresponding Lisp-level list of SIMPLE-STRINGs.
38 (defun c-strings->string-list (c-strings)
39   (declare (type (alien (* c-string)) c-strings))
40   (let ((reversed-result nil))
41     (dotimes (i most-positive-fixnum (error "argh! can't happen"))
42       (declare (type index i))
43       (let ((c-string (deref c-strings i)))
44         (if c-string
45             (push c-string reversed-result)
46             (return (nreverse reversed-result)))))))
47 \f
48 ;;;; Lisp types used by syscalls
49
50 (deftype unix-pathname () 'simple-string)
51 (deftype unix-fd () `(integer 0 ,most-positive-fixnum))
52
53 (deftype unix-file-mode () '(unsigned-byte 32))
54 (deftype unix-pid () '(unsigned-byte 32))
55 (deftype unix-uid () '(unsigned-byte 32))
56 (deftype unix-gid () '(unsigned-byte 32))
57 \f
58 ;;;; system calls
59
60 (/show0 "unix.lisp 74")
61
62 ;;; FIXME: The various FOO-SYSCALL-BAR macros, and perhaps some other
63 ;;; macros in this file, are only used in this file, and could be
64 ;;; implemented using SB!XC:DEFMACRO wrapped in EVAL-WHEN.
65
66 (defmacro syscall ((name &rest arg-types) success-form &rest args)
67   `(locally
68     (declare (optimize (sb!c::float-accuracy 0)))
69     (let ((result (alien-funcall (extern-alien ,name (function int ,@arg-types))
70                                 ,@args)))
71       (if (minusp result)
72           (values nil (get-errno))
73           ,success-form))))
74
75 ;;; This is like SYSCALL, but if it fails, signal an error instead of
76 ;;; returning error codes. Should only be used for syscalls that will
77 ;;; never really get an error.
78 (defmacro syscall* ((name &rest arg-types) success-form &rest args)
79   `(locally
80     (declare (optimize (sb!c::float-accuracy 0)))
81     (let ((result (alien-funcall (extern-alien ,name (function int ,@arg-types))
82                                  ,@args)))
83       (if (minusp result)
84           (error "Syscall ~A failed: ~A" ,name (strerror))
85           ,success-form))))
86
87 (/show0 "unix.lisp 109")
88
89 (defmacro void-syscall ((name &rest arg-types) &rest args)
90   `(syscall (,name ,@arg-types) (values t 0) ,@args))
91
92 (defmacro int-syscall ((name &rest arg-types) &rest args)
93   `(syscall (,name ,@arg-types) (values result 0) ,@args))
94
95 (defmacro with-restarted-syscall ((&optional (value (gensym))
96                                              (errno (gensym)))
97                                   syscall-form &rest body)
98   #!+sb-doc
99   "Evaluate BODY with VALUE and ERRNO bound to the return values of
100 SYSCALL-FORM. Repeat evaluation of SYSCALL-FORM if it is interrupted."
101   `(let (,value ,errno)
102      (loop (multiple-value-setq (,value ,errno)
103              ,syscall-form)
104         (unless #!-win32 (eql ,errno sb!unix:eintr) #!+win32 nil
105           (return (values ,value ,errno))))
106      ,@body))
107
108 #!+win32
109 (progn
110   (defconstant espipe 29)
111   ;; For stat-wrapper hack (different-type or non-existing win32 fields).
112   (define-alien-type nlink-t short)
113   (define-alien-type uid-t short)
114   (define-alien-type gid-t short))
115 \f
116 ;;;; hacking the Unix environment
117
118 #!-win32
119 (define-alien-routine ("getenv" posix-getenv) c-string
120   "Return the \"value\" part of the environment string \"name=value\" which
121    corresponds to NAME, or NIL if there is none."
122   (name c-string))
123 \f
124 ;;; from stdio.h
125
126 ;;; Rename the file with string NAME1 to the string NAME2. NIL and an
127 ;;; error code is returned if an error occurs.
128 #!-win32
129 (defun unix-rename (name1 name2)
130   (declare (type unix-pathname name1 name2))
131   (void-syscall ("rename" c-string c-string) name1 name2))
132 \f
133 ;;; from sys/types.h and gnu/types.h
134
135 (/show0 "unix.lisp 220")
136
137 ;;; FIXME: We shouldn't hand-copy types from header files into Lisp
138 ;;; like this unless we have extreme provocation. Reading directories
139 ;;; is not extreme enough, since it doesn't need to be blindingly
140 ;;; fast: we can just implement those functions in C as a wrapper
141 ;;; layer.
142 (define-alien-type fd-mask unsigned-long)
143
144 (eval-when (:compile-toplevel :load-toplevel :execute)
145   (defconstant fd-setsize 1024))
146
147 (define-alien-type nil
148   (struct fd-set
149           (fds-bits (array fd-mask #.(/ fd-setsize
150                                         sb!vm:n-machine-word-bits)))))
151
152 (/show0 "unix.lisp 304")
153 \f
154 \f
155 ;;;; fcntl.h
156 ;;;;
157 ;;;; POSIX Standard: 6.5 File Control Operations        <fcntl.h>
158
159 ;;; Open the file whose pathname is specified by PATH for reading
160 ;;; and/or writing as specified by the FLAGS argument. Various FLAGS
161 ;;; masks (O_RDONLY etc.) are defined in fcntlbits.h.
162 ;;;
163 ;;; If the O_CREAT flag is specified, then the file is created with a
164 ;;; permission of argument MODE if the file doesn't exist. An integer
165 ;;; file descriptor is returned by UNIX-OPEN.
166 (defun unix-open (path flags mode)
167   (declare (type unix-pathname path)
168            (type fixnum flags)
169            (type unix-file-mode mode))
170   (int-syscall ("open" c-string int int)
171                path
172                (logior #!+win32 o_binary
173                        #!+largefile o_largefile
174                        flags)
175                mode))
176
177 ;;; UNIX-CLOSE accepts a file descriptor and attempts to close the file
178 ;;; associated with it.
179 (/show0 "unix.lisp 391")
180 (defun unix-close (fd)
181   (declare (type unix-fd fd))
182   (void-syscall ("close" int) fd))
183 \f
184 ;;;; timebits.h
185
186 ;; A time value that is accurate to the nearest
187 ;; microsecond but also has a range of years.
188 ;; CLH: Note that tv-usec used to be a time-t, but that this seems
189 ;; problematic on Darwin x86-64 (and wrong). Trying suseconds-t.
190 #!-win32
191 (define-alien-type nil
192   (struct timeval
193           (tv-sec time-t)           ; seconds
194           (tv-usec suseconds-t)))   ; and microseconds
195
196 #!+win32
197 (define-alien-type nil
198   (struct timeval
199           (tv-sec time-t)           ; seconds
200           (tv-usec long)))          ; and microseconds
201 \f
202 ;;;; resourcebits.h
203
204 (defconstant rusage_self 0) ; the calling process
205 (defconstant rusage_children -1) ; terminated child processes
206 (defconstant rusage_both -2)
207
208 (define-alien-type nil
209   (struct rusage
210     (ru-utime (struct timeval))     ; user time used
211     (ru-stime (struct timeval))     ; system time used.
212     (ru-maxrss long)                ; maximum resident set size (in kilobytes)
213     (ru-ixrss long)                 ; integral shared memory size
214     (ru-idrss long)                 ; integral unshared data size
215     (ru-isrss long)                 ; integral unshared stack size
216     (ru-minflt long)                ; page reclaims
217     (ru-majflt long)                ; page faults
218     (ru-nswap long)                 ; swaps
219     (ru-inblock long)               ; block input operations
220     (ru-oublock long)               ; block output operations
221     (ru-msgsnd long)                ; messages sent
222     (ru-msgrcv long)                ; messages received
223     (ru-nsignals long)              ; signals received
224     (ru-nvcsw long)                 ; voluntary context switches
225     (ru-nivcsw long)))              ; involuntary context switches
226 \f
227 ;;;; unistd.h
228
229 ;;; Given a file path (a string) and one of four constant modes,
230 ;;; return T if the file is accessible with that mode and NIL if not.
231 ;;; When NIL, also return an errno value with NIL which tells why the
232 ;;; file was not accessible.
233 ;;;
234 ;;; The access modes are:
235 ;;;   r_ok     Read permission.
236 ;;;   w_ok     Write permission.
237 ;;;   x_ok     Execute permission.
238 ;;;   f_ok     Presence of file.
239
240 ;;; In Windows, the MODE argument to access is defined in terms of
241 ;;; literal magic numbers---there are no constants to grovel.  X_OK
242 ;;; is not defined.
243 #!+win32
244 (progn
245   (defconstant f_ok 0)
246   (defconstant w_ok 2)
247   (defconstant r_ok 4))
248
249 (defun unix-access (path mode)
250   (declare (type unix-pathname path)
251            (type (mod 8) mode))
252   (void-syscall ("access" c-string int) path mode))
253
254 ;;; values for the second argument to UNIX-LSEEK
255 (defconstant l_set 0) ; to set the file pointer
256 (defconstant l_incr 1) ; to increment the file pointer
257 (defconstant l_xtnd 2) ; to extend the file size
258
259 ;;; Is a stream interactive?
260 (defun unix-isatty (fd)
261   (declare (type unix-fd fd))
262   (int-syscall ("isatty" int) fd))
263
264 (defun unix-lseek (fd offset whence)
265   "Unix-lseek accepts a file descriptor and moves the file pointer by
266    OFFSET octets.  Whence can be any of the following:
267
268    L_SET        Set the file pointer.
269    L_INCR       Increment the file pointer.
270    L_XTND       Extend the file size.
271   "
272   (declare (type unix-fd fd)
273            (type (integer 0 2) whence))
274   (let ((result (alien-funcall (extern-alien #!-largefile "lseek"
275                                              #!+largefile "lseek_largefile"
276                                              (function off-t int off-t int))
277                  fd offset whence)))
278     (if (minusp result )
279         (values nil (get-errno))
280       (values result 0))))
281
282 ;;; UNIX-READ accepts a file descriptor, a buffer, and the length to read.
283 ;;; It attempts to read len bytes from the device associated with fd
284 ;;; and store them into the buffer. It returns the actual number of
285 ;;; bytes read.
286 (defun unix-read (fd buf len)
287   (declare (type unix-fd fd)
288            (type (unsigned-byte 32) len))
289   (int-syscall ("read" int (* char) int) fd buf len))
290
291 ;;; UNIX-WRITE accepts a file descriptor, a buffer, an offset, and the
292 ;;; length to write. It attempts to write len bytes to the device
293 ;;; associated with fd from the buffer starting at offset. It returns
294 ;;; the actual number of bytes written.
295 (defun unix-write (fd buf offset len)
296   (declare (type unix-fd fd)
297            (type (unsigned-byte 32) offset len))
298   (int-syscall ("write" int (* char) int)
299                fd
300                (with-alien ((ptr (* char) (etypecase buf
301                                             ((simple-array * (*))
302                                              ;; This SAP-taking is
303                                              ;; safe as BUF remains
304                                              ;; either in a register
305                                              ;; or on stack.
306                                              (vector-sap buf))
307                                             (system-area-pointer
308                                              buf))))
309                  (addr (deref ptr offset)))
310                len))
311
312 ;;; Set up a unix-piping mechanism consisting of an input pipe and an
313 ;;; output pipe. Return two values: if no error occurred the first
314 ;;; value is the pipe to be read from and the second is can be written
315 ;;; to. If an error occurred the first value is NIL and the second the
316 ;;; unix error code.
317 #!-win32
318 (defun unix-pipe ()
319   (with-alien ((fds (array int 2)))
320     (syscall ("pipe" (* int))
321              (values (deref fds 0) (deref fds 1))
322              (cast fds (* int)))))
323 #!+win32
324 (defun msvcrt-raw-pipe (fds size mode)
325   (syscall ("_pipe" (* int) int int)
326            (values (deref fds 0) (deref fds 1))
327            (cast fds (* int)) size mode))
328 #!+win32
329 (defun unix-pipe ()
330   (with-alien ((fds (array int 2)))
331     (msvcrt-raw-pipe fds 256 o_binary)))
332
333 ;; Windows mkdir() doesn't take the mode argument. It's cdecl, so we could
334 ;; actually call it passing the mode argument, but some sharp-eyed reader
335 ;; would put five and twenty-seven together and ask us about it, so...
336 ;;    -- AB, 2005-12-27
337 #!-win32
338 (defun unix-mkdir (name mode)
339   (declare (type unix-pathname name)
340            (type unix-file-mode mode)
341            #!+win32 (ignore mode))
342   (void-syscall ("mkdir" c-string #!-win32 int) name #!-win32 mode))
343
344 ;;; Given a C char* pointer allocated by malloc(), free it and return a
345 ;;; corresponding Lisp string (or return NIL if the pointer is a C NULL).
346 (defun newcharstar-string (newcharstar)
347   (declare (type (alien (* char)) newcharstar))
348   (if (null-alien newcharstar)
349       nil
350       (prog1
351           (cast newcharstar c-string)
352         (free-alien newcharstar))))
353
354 ;;; Return the Unix current directory as a SIMPLE-STRING, in the
355 ;;; style returned by getcwd() (no trailing slash character).
356 #!-win32
357 (defun posix-getcwd ()
358   ;; This implementation relies on a BSD/Linux extension to getcwd()
359   ;; behavior, automatically allocating memory when a null buffer
360   ;; pointer is used. On a system which doesn't support that
361   ;; extension, it'll have to be rewritten somehow.
362   ;;
363   ;; SunOS and OSF/1 provide almost as useful an extension: if given a null
364   ;; buffer pointer, it will automatically allocate size space. The
365   ;; KLUDGE in this solution arises because we have just read off
366   ;; PATH_MAX+1 from the Solaris header files and stuck it in here as
367   ;; a constant. Going the grovel_headers route doesn't seem to be
368   ;; helpful, either, as Solaris doesn't export PATH_MAX from
369   ;; unistd.h.
370   ;;
371   ;; FIXME: The (,stub,) nastiness produces an error message about a
372   ;; comma not inside a backquote. This error has absolutely nothing
373   ;; to do with the actual meaning of the error (and little to do with
374   ;; its location, either).
375   #!-(or linux openbsd freebsd netbsd sunos osf1 darwin win32) (,stub,)
376   #!+(or linux openbsd freebsd netbsd sunos osf1 darwin win32)
377   (or (newcharstar-string (alien-funcall (extern-alien "getcwd"
378                                                        (function (* char)
379                                                                  (* char)
380                                                                  size-t))
381                                          nil
382                                          #!+(or linux openbsd freebsd netbsd darwin win32) 0
383                                          #!+(or sunos osf1) 1025))
384       (simple-perror "getcwd")))
385
386 ;;; Return the Unix current directory as a SIMPLE-STRING terminated
387 ;;; by a slash character.
388 (defun posix-getcwd/ ()
389   (concatenate 'string (posix-getcwd) "/"))
390
391 ;;; Duplicate an existing file descriptor (given as the argument) and
392 ;;; return it. If FD is not a valid file descriptor, NIL and an error
393 ;;; number are returned.
394 (defun unix-dup (fd)
395   (declare (type unix-fd fd))
396   (int-syscall ("dup" int) fd))
397
398 ;;; Terminate the current process with an optional error code. If
399 ;;; successful, the call doesn't return. If unsuccessful, the call
400 ;;; returns NIL and an error number.
401 (defun unix-exit (&optional (code 0))
402   (declare (type (signed-byte 32) code))
403   (void-syscall ("exit" int) code))
404
405 ;;; Return the process id of the current process.
406 (define-alien-routine ("getpid" unix-getpid) int)
407
408 ;;; Return the real user id associated with the current process.
409 #!-win32
410 (define-alien-routine ("getuid" unix-getuid) int)
411
412 ;;; Translate a user id into a login name.
413 #!-win32
414 (defun uid-username (uid)
415   (or (newcharstar-string (alien-funcall (extern-alien "uid_username"
416                                                        (function (* char) int))
417                                          uid))
418       (error "found no match for Unix uid=~S" uid)))
419
420 ;;; Return the namestring of the home directory, being careful to
421 ;;; include a trailing #\/
422 #!-win32
423 (defun uid-homedir (uid)
424   (or (newcharstar-string (alien-funcall (extern-alien "uid_homedir"
425                                                        (function (* char) int))
426                                          uid))
427       (error "failed to resolve home directory for Unix uid=~S" uid)))
428
429 ;;; Invoke readlink(2) on the file name specified by PATH. Return
430 ;;; (VALUES LINKSTRING NIL) on success, or (VALUES NIL ERRNO) on
431 ;;; failure.
432 #!-win32
433 (defun unix-readlink (path)
434   (declare (type unix-pathname path))
435   (with-alien ((ptr (* char)
436                     (alien-funcall (extern-alien
437                                     "wrapped_readlink"
438                                     (function (* char) c-string))
439                                    path)))
440     (if (null-alien ptr)
441         (values nil (get-errno))
442         (multiple-value-prog1
443             (values (with-alien ((c-string c-string ptr)) c-string)
444                     nil)
445           (free-alien ptr)))))
446 #!+win32
447 ;; Win32 doesn't do links, but something likes to call this anyway.
448 ;; Something in this file, no less. But it only takes one result, so...
449 (defun unix-readlink (path)
450   (declare (ignore path))
451   nil)
452
453 ;;; UNIX-UNLINK accepts a name and deletes the directory entry for that
454 ;;; name and the file if this is the last link.
455 (defun unix-unlink (name)
456   (declare (type unix-pathname name))
457   (void-syscall ("unlink" c-string) name))
458
459 ;;; Return the name of the host machine as a string.
460 #!-win32
461 (defun unix-gethostname ()
462   (with-alien ((buf (array char 256)))
463     (syscall ("gethostname" (* char) int)
464              (cast buf c-string)
465              (cast buf (* char)) 256)))
466
467 #!-win32
468 (defun unix-setsid ()
469   (int-syscall ("setsid")))
470
471 ;;;; sys/ioctl.h
472
473 ;;; UNIX-IOCTL performs a variety of operations on open i/o
474 ;;; descriptors. See the UNIX Programmer's Manual for more
475 ;;; information.
476 #!-win32
477 (defun unix-ioctl (fd cmd arg)
478   (declare (type unix-fd fd)
479            (type (signed-byte 32) cmd))
480   (void-syscall ("ioctl" int int (* char)) fd cmd arg))
481 \f
482 ;;;; sys/resource.h
483
484 ;;; FIXME: All we seem to need is the RUSAGE_SELF version of this.
485 ;;;
486 ;;; This is like getrusage(2), except it returns only the system and
487 ;;; user time, and returns the seconds and microseconds as separate
488 ;;; values.
489 #!-sb-fluid (declaim (inline unix-fast-getrusage))
490 #!-win32
491 (defun unix-fast-getrusage (who)
492   (declare (values (member t)
493                    (unsigned-byte 31) (integer 0 1000000)
494                    (unsigned-byte 31) (integer 0 1000000)))
495   (with-alien ((usage (struct rusage)))
496     (syscall* ("getrusage" int (* (struct rusage)))
497               (values t
498                       (slot (slot usage 'ru-utime) 'tv-sec)
499                       (slot (slot usage 'ru-utime) 'tv-usec)
500                       (slot (slot usage 'ru-stime) 'tv-sec)
501                       (slot (slot usage 'ru-stime) 'tv-usec))
502               who (addr usage))))
503
504 ;;; Return information about the resource usage of the process
505 ;;; specified by WHO. WHO can be either the current process
506 ;;; (rusage_self) or all of the terminated child processes
507 ;;; (rusage_children). NIL and an error number is returned if the call
508 ;;; fails.
509 #!-win32
510 (defun unix-getrusage (who)
511   (with-alien ((usage (struct rusage)))
512     (syscall ("getrusage" int (* (struct rusage)))
513               (values t
514                       (+ (* (slot (slot usage 'ru-utime) 'tv-sec) 1000000)
515                          (slot (slot usage 'ru-utime) 'tv-usec))
516                       (+ (* (slot (slot usage 'ru-stime) 'tv-sec) 1000000)
517                          (slot (slot usage 'ru-stime) 'tv-usec))
518                       (slot usage 'ru-maxrss)
519                       (slot usage 'ru-ixrss)
520                       (slot usage 'ru-idrss)
521                       (slot usage 'ru-isrss)
522                       (slot usage 'ru-minflt)
523                       (slot usage 'ru-majflt)
524                       (slot usage 'ru-nswap)
525                       (slot usage 'ru-inblock)
526                       (slot usage 'ru-oublock)
527                       (slot usage 'ru-msgsnd)
528                       (slot usage 'ru-msgrcv)
529                       (slot usage 'ru-nsignals)
530                       (slot usage 'ru-nvcsw)
531                       (slot usage 'ru-nivcsw))
532               who (addr usage))))
533 \f
534 ;;;; sys/select.h
535
536 (defvar *on-dangerous-select* :warn)
537
538 ;;; Calling select in a bad place can hang in a nasty manner, so it's better
539 ;;; to have some way to detect these.
540 (defun note-dangerous-select ()
541   (let ((action *on-dangerous-select*)
542         (*on-dangerous-select* nil))
543     (case action
544       (:warn
545        (warn "Starting a select without a timeout while interrupts are ~
546              disabled."))
547       (:error
548        (error "Starting a select without a timeout while interrupts are ~
549               disabled."))
550       (:backtrace
551        (write-line
552         "=== Starting a select without a timeout while interrupts are disabled. ==="
553         *debug-io*)
554        (sb!debug:backtrace)))
555     nil))
556
557 ;;;; FIXME: Why have both UNIX-SELECT and UNIX-FAST-SELECT?
558
559 ;;; Perform the UNIX select(2) system call.
560 (declaim (inline unix-fast-select))
561 (defun unix-fast-select (num-descriptors
562                          read-fds write-fds exception-fds
563                          timeout-secs timeout-usecs)
564   (declare (type (integer 0 #.fd-setsize) num-descriptors)
565            (type (or (alien (* (struct fd-set))) null)
566                  read-fds write-fds exception-fds)
567            (type (or null (unsigned-byte 31)) timeout-secs timeout-usecs))
568   (flet ((select (tv-sap)
569            (int-syscall ("select" int (* (struct fd-set)) (* (struct fd-set))
570                                   (* (struct fd-set)) (* (struct timeval)))
571                         num-descriptors read-fds write-fds exception-fds
572                         tv-sap)))
573     (cond ((or timeout-secs timeout-usecs)
574            (with-alien ((tv (struct timeval)))
575              (setf (slot tv 'tv-sec) (or timeout-secs 0))
576              (setf (slot tv 'tv-usec) (or timeout-usecs 0))
577              (select (alien-sap (addr tv)))))
578           (t
579            (unless *interrupts-enabled*
580              (note-dangerous-select))
581            (select (int-sap 0))))))
582
583 ;;; UNIX-SELECT accepts sets of file descriptors and waits for an event
584 ;;; to happen on one of them or to time out.
585 (defmacro num-to-fd-set (fdset num)
586   `(if (fixnump ,num)
587        (progn
588          (setf (deref (slot ,fdset 'fds-bits) 0) ,num)
589          ,@(loop for index upfrom 1 below (/ fd-setsize
590                                              sb!vm:n-machine-word-bits)
591              collect `(setf (deref (slot ,fdset 'fds-bits) ,index) 0)))
592        (progn
593          ,@(loop for index upfrom 0 below (/ fd-setsize
594                                              sb!vm:n-machine-word-bits)
595              collect `(setf (deref (slot ,fdset 'fds-bits) ,index)
596                             (ldb (byte sb!vm:n-machine-word-bits
597                                        ,(* index sb!vm:n-machine-word-bits))
598                                  ,num))))))
599
600 (defmacro fd-set-to-num (nfds fdset)
601   `(if (<= ,nfds sb!vm:n-machine-word-bits)
602        (deref (slot ,fdset 'fds-bits) 0)
603        (+ ,@(loop for index upfrom 0 below (/ fd-setsize
604                                               sb!vm:n-machine-word-bits)
605               collect `(ash (deref (slot ,fdset 'fds-bits) ,index)
606                             ,(* index sb!vm:n-machine-word-bits))))))
607
608 ;;; Examine the sets of descriptors passed as arguments to see whether
609 ;;; they are ready for reading and writing. See the UNIX Programmer's
610 ;;; Manual for more information.
611 (defun unix-select (nfds rdfds wrfds xpfds to-secs &optional (to-usecs 0))
612   (declare (type (integer 0 #.fd-setsize) nfds)
613            (type unsigned-byte rdfds wrfds xpfds)
614            (type (or (unsigned-byte 31) null) to-secs)
615            (type (unsigned-byte 31) to-usecs)
616            (optimize (speed 3) (safety 0) (inhibit-warnings 3)))
617   (with-alien ((tv (struct timeval))
618                (rdf (struct fd-set))
619                (wrf (struct fd-set))
620                (xpf (struct fd-set)))
621     (cond (to-secs
622            (setf (slot tv 'tv-sec) to-secs
623                  (slot tv 'tv-usec) to-usecs))
624           ((not *interrupts-enabled*)
625            (note-dangerous-select)))
626     (num-to-fd-set rdf rdfds)
627     (num-to-fd-set wrf wrfds)
628     (num-to-fd-set xpf xpfds)
629     (macrolet ((frob (lispvar alienvar)
630                  `(if (zerop ,lispvar)
631                       (int-sap 0)
632                       (alien-sap (addr ,alienvar)))))
633       (syscall ("select" int (* (struct fd-set)) (* (struct fd-set))
634                          (* (struct fd-set)) (* (struct timeval)))
635                (values result
636                        (fd-set-to-num nfds rdf)
637                        (fd-set-to-num nfds wrf)
638                        (fd-set-to-num nfds xpf))
639                nfds (frob rdfds rdf) (frob wrfds wrf) (frob xpfds xpf)
640                (if to-secs (alien-sap (addr tv)) (int-sap 0))))))
641 \f
642 ;;;; sys/stat.h
643
644 ;;; This is a structure defined in src/runtime/wrap.c, to look
645 ;;; basically like "struct stat" according to stat(2). It may not
646 ;;; actually correspond to the real in-memory stat structure that the
647 ;;; syscall uses, and that's OK. Linux in particular is packed full of
648 ;;; stat macros, and trying to keep Lisp code in correspondence with
649 ;;; it is more pain than it's worth, so we just let our C runtime
650 ;;; synthesize a nice consistent structure for us.
651 ;;;
652 ;;; Note that st-dev is a long, not a dev-t. This is because dev-t on
653 ;;; linux 32 bit archs is a 64 bit quantity, but alien doesn't support
654 ;;; those. We don't actually access that field anywhere, though, so
655 ;;; until we can get 64 bit alien support it'll do. Also note that
656 ;;; st_size is a long, not an off-t, because off-t is a 64-bit
657 ;;; quantity on Alpha. And FIXME: "No one would want a file length
658 ;;; longer than 32 bits anyway, right?":-|
659 (define-alien-type nil
660   (struct wrapped_stat
661     (st-dev #!-(or mips largefile) unsigned-int
662             #!+mips unsigned-long
663             #!+largefile dev-t)
664     (st-ino ino-t)
665     (st-mode mode-t)
666     (st-nlink nlink-t)
667     (st-uid uid-t)
668     (st-gid gid-t)
669     (st-rdev #!-(or mips largefile) unsigned-int
670              #!+mips unsigned-long
671              #!+largefile dev-t)
672     (st-size #!-(or darwin mips largefile) unsigned-int
673              #!+(or darwin mips largefile) off-t)
674     #!+(and darwin)
675     (st-blksize unsigned-int)
676     #!-(and darwin)
677     (st-blksize unsigned-long)
678     (st-blocks unsigned-long)
679     (st-atime time-t)
680     (st-mtime time-t)
681     (st-ctime time-t)))
682
683 ;;; shared C-struct-to-multiple-VALUES conversion for the stat(2)
684 ;;; family of Unix system calls
685 ;;;
686 ;;; FIXME: I think this should probably not be INLINE. However, when
687 ;;; this was not inline, it seemed to cause memory corruption
688 ;;; problems. My first guess is that it's a bug in the FFI code, where
689 ;;; the WITH-ALIEN expansion doesn't deal well with being wrapped
690 ;;; around a call to a function returning >10 values. But I didn't try
691 ;;; to figure it out, just inlined it as a quick fix. Perhaps someone
692 ;;; who's motivated to debug the FFI code can go over the DISASSEMBLE
693 ;;; output in the not-inlined case and see whether there's a problem,
694 ;;; and maybe even find a fix..
695 (declaim (inline %extract-stat-results))
696 (defun %extract-stat-results (wrapped-stat)
697   (declare (type (alien (* (struct wrapped_stat))) wrapped-stat))
698   (values t
699           (slot wrapped-stat 'st-dev)
700           (slot wrapped-stat 'st-ino)
701           (slot wrapped-stat 'st-mode)
702           (slot wrapped-stat 'st-nlink)
703           (slot wrapped-stat 'st-uid)
704           (slot wrapped-stat 'st-gid)
705           (slot wrapped-stat 'st-rdev)
706           (slot wrapped-stat 'st-size)
707           (slot wrapped-stat 'st-atime)
708           (slot wrapped-stat 'st-mtime)
709           (slot wrapped-stat 'st-ctime)
710           (slot wrapped-stat 'st-blksize)
711           (slot wrapped-stat 'st-blocks)))
712
713 ;;; Unix system calls in the stat(2) family are handled by calls to
714 ;;; C-level wrapper functions which copy all the raw "struct stat"
715 ;;; slots into the system-independent wrapped_stat format.
716 ;;;    stat(2) <->  stat_wrapper()
717 ;;;   fstat(2) <-> fstat_wrapper()
718 ;;;   lstat(2) <-> lstat_wrapper()
719 (defun unix-stat (name)
720   (declare (type unix-pathname name))
721   (with-alien ((buf (struct wrapped_stat)))
722     (syscall ("stat_wrapper" c-string (* (struct wrapped_stat)))
723              (%extract-stat-results (addr buf))
724              name (addr buf))))
725 (defun unix-lstat (name)
726   (declare (type unix-pathname name))
727   (with-alien ((buf (struct wrapped_stat)))
728     (syscall ("lstat_wrapper" c-string (* (struct wrapped_stat)))
729              (%extract-stat-results (addr buf))
730              name (addr buf))))
731 (defun unix-fstat (fd)
732   (declare (type unix-fd fd))
733   (with-alien ((buf (struct wrapped_stat)))
734     (syscall ("fstat_wrapper" int (* (struct wrapped_stat)))
735              (%extract-stat-results (addr buf))
736              fd (addr buf))))
737 \f
738 ;;;; time.h
739
740 ;; the POSIX.4 structure for a time value. This is like a "struct
741 ;; timeval" but has nanoseconds instead of microseconds.
742 (define-alien-type nil
743     (struct timespec
744             (tv-sec long)   ; seconds
745             (tv-nsec long))) ; nanoseconds
746
747 ;; used by other time functions
748 (define-alien-type nil
749     (struct tm
750             (tm-sec int)   ; Seconds.   [0-60] (1 leap second)
751             (tm-min int)   ; Minutes.   [0-59]
752             (tm-hour int)  ; Hours.     [0-23]
753             (tm-mday int)  ; Day.       [1-31]
754             (tm-mon int)   ; Month.     [0-11]
755             (tm-year int)  ; Year - 1900.
756             (tm-wday int)  ; Day of week. [0-6]
757             (tm-yday int)  ; Days in year. [0-365]
758             (tm-isdst int) ; DST.       [-1/0/1]
759             (tm-gmtoff long) ;  Seconds east of UTC.
760             (tm-zone c-string))) ; Timezone abbreviation.
761
762 (define-alien-routine get-timezone sb!alien:void
763   (when sb!alien:long :in)
764   (seconds-west sb!alien:int :out)
765   (daylight-savings-p sb!alien:boolean :out))
766
767 #!-win32
768 (defun nanosleep (secs nsecs)
769   (with-alien ((req (struct timespec))
770                (rem (struct timespec)))
771     (setf (slot req 'tv-sec) secs)
772     (setf (slot req 'tv-nsec) nsecs)
773     (loop while (eql sb!unix:eintr
774                      (nth-value 1
775                                 (int-syscall ("nanosleep" (* (struct timespec))
776                                                           (* (struct timespec)))
777                                              (addr req) (addr rem))))
778        do (rotatef req rem))))
779
780 (defun unix-get-seconds-west (secs)
781   (multiple-value-bind (ignore seconds dst) (get-timezone secs)
782     (declare (ignore ignore) (ignore dst))
783     (values seconds)))
784 \f
785 ;;;; sys/time.h
786
787 ;;; Structure crudely representing a timezone. KLUDGE: This is
788 ;;; obsolete and should never be used.
789 (define-alien-type nil
790   (struct timezone
791     (tz-minuteswest int)                ; minutes west of Greenwich
792     (tz-dsttime int)))                  ; type of dst correction
793
794 ;;; If it works, UNIX-GETTIMEOFDAY returns 5 values: T, the seconds
795 ;;; and microseconds of the current time of day, the timezone (in
796 ;;; minutes west of Greenwich), and a daylight-savings flag. If it
797 ;;; doesn't work, it returns NIL and the errno.
798 #!-sb-fluid (declaim (inline unix-gettimeofday))
799 (defun unix-gettimeofday ()
800   #!+(and x86-64 darwin)
801   (with-alien ((tv (struct timeval)))
802     ;; CLH: FIXME! This seems to be a MacOS bug, but on x86-64/darwin,
803     ;; gettimeofday occasionally fails. passing in a null pointer for
804     ;; the timezone struct seems to work around the problem. I can't
805     ;; find any instances in the SBCL where we actually ues the
806     ;; timezone values, so we just punt for the moment.
807     (syscall* ("gettimeofday" (* (struct timeval))
808                               (* (struct timezone)))
809               (values t
810                       (slot tv 'tv-sec)
811                       (slot tv 'tv-usec))
812               (addr tv)
813               nil))
814   #!-(and x86-64 darwin)
815   (with-alien ((tv (struct timeval))
816                (tz (struct timezone)))
817     (syscall* ("gettimeofday" (* (struct timeval))
818                               (* (struct timezone)))
819               (values t
820                       (slot tv 'tv-sec)
821                       (slot tv 'tv-usec)
822                       (slot tz 'tz-minuteswest)
823                       (slot tz 'tz-dsttime))
824               (addr tv)
825               (addr tz))))
826 \f
827
828 ;; Type of the second argument to `getitimer' and
829 ;; the second and third arguments `setitimer'.
830 (define-alien-type nil
831   (struct itimerval
832     (it-interval (struct timeval))      ; timer interval
833     (it-value (struct timeval))))       ; current value
834
835 (defconstant itimer-real 0)
836 (defconstant itimer-virtual 1)
837 (defconstant itimer-prof 2)
838
839 #!-win32
840 (defun unix-getitimer (which)
841   "Unix-getitimer returns the INTERVAL and VALUE slots of one of
842    three system timers (:real :virtual or :profile). On success,
843    unix-getitimer returns 5 values,
844    T, it-interval-secs, it-interval-usec, it-value-secs, it-value-usec."
845   (declare (type (member :real :virtual :profile) which)
846            (values t
847                    (unsigned-byte 29) (mod 1000000)
848                    (unsigned-byte 29) (mod 1000000)))
849   (let ((which (ecase which
850                  (:real itimer-real)
851                  (:virtual itimer-virtual)
852                  (:profile itimer-prof))))
853     (with-alien ((itv (struct itimerval)))
854       (syscall* ("getitimer" int (* (struct itimerval)))
855                 (values t
856                         (slot (slot itv 'it-interval) 'tv-sec)
857                         (slot (slot itv 'it-interval) 'tv-usec)
858                         (slot (slot itv 'it-value) 'tv-sec)
859                         (slot (slot itv 'it-value) 'tv-usec))
860                 which (alien-sap (addr itv))))))
861
862 #!-win32
863 (defun unix-setitimer (which int-secs int-usec val-secs val-usec)
864   " Unix-setitimer sets the INTERVAL and VALUE slots of one of
865    three system timers (:real :virtual or :profile). A SIGALRM signal
866    will be delivered VALUE <seconds+microseconds> from now. INTERVAL,
867    when non-zero, is <seconds+microseconds> to be loaded each time
868    the timer expires. Setting INTERVAL and VALUE to zero disables
869    the timer. See the Unix man page for more details. On success,
870    unix-setitimer returns the old contents of the INTERVAL and VALUE
871    slots as in unix-getitimer."
872   (declare (type (member :real :virtual :profile) which)
873            (type (unsigned-byte 29) int-secs val-secs)
874            (type (integer 0 (1000000)) int-usec val-usec)
875            (values t
876                    (unsigned-byte 29) (mod 1000000)
877                    (unsigned-byte 29) (mod 1000000)))
878   (let ((which (ecase which
879                  (:real itimer-real)
880                  (:virtual itimer-virtual)
881                  (:profile itimer-prof))))
882     (with-alien ((itvn (struct itimerval))
883                  (itvo (struct itimerval)))
884       (setf (slot (slot itvn 'it-interval) 'tv-sec ) int-secs
885             (slot (slot itvn 'it-interval) 'tv-usec) int-usec
886             (slot (slot itvn 'it-value   ) 'tv-sec ) val-secs
887             (slot (slot itvn 'it-value   ) 'tv-usec) val-usec)
888       (syscall* ("setitimer" int (* (struct timeval))(* (struct timeval)))
889                 (values t
890                         (slot (slot itvo 'it-interval) 'tv-sec)
891                         (slot (slot itvo 'it-interval) 'tv-usec)
892                         (slot (slot itvo 'it-value) 'tv-sec)
893                         (slot (slot itvo 'it-value) 'tv-usec))
894                 which (alien-sap (addr itvn))(alien-sap (addr itvo))))))
895
896 \f
897 ;;; FIXME: Many Unix error code definitions were deleted from the old
898 ;;; CMU CL source code here, but not in the exports of SB-UNIX. I
899 ;;; (WHN) hope that someday I'll figure out an automatic way to detect
900 ;;; unused symbols in package exports, but if I don't, there are
901 ;;; enough of them all in one place here that they should probably be
902 ;;; removed by hand.
903 \f
904 ;;;; support routines for dealing with Unix pathnames
905
906 (defun unix-file-kind (name &optional check-for-links)
907   #!+sb-doc
908   "Return either :FILE, :DIRECTORY, :LINK, :SPECIAL, or NIL."
909   (declare (simple-string name))
910   (multiple-value-bind (res dev ino mode)
911       (if check-for-links (unix-lstat name) (unix-stat name))
912     (declare (type (or fixnum null) mode)
913              (ignore dev ino))
914     (when res
915       (let ((kind (logand mode s-ifmt)))
916         (cond ((eql kind s-ifdir) :directory)
917               ((eql kind s-ifreg) :file)
918               #!-win32
919               ((eql kind s-iflnk) :link)
920               (t :special))))))
921
922 ;;; Is the Unix pathname PATHNAME relative, instead of absolute? (E.g.
923 ;;; "passwd" or "etc/passwd" instead of "/etc/passwd"?)
924 (defun relative-unix-pathname? (pathname)
925   (declare (type simple-string pathname))
926   (or (zerop (length pathname))
927       (char/= (schar pathname 0) #\/)))
928
929 ;;; Return PATHNAME with all symbolic links resolved. PATHNAME should
930 ;;; already be a complete absolute Unix pathname, since at least in
931 ;;; sbcl-0.6.12.36 we're called only from TRUENAME, and only after
932 ;;; paths have been converted to absolute paths, so we don't need to
933 ;;; try to handle any more generality than that.
934 (defun unix-resolve-links (pathname)
935   (declare (type simple-string pathname))
936   ;; KLUDGE: The Win32 platform doesn't have symbolic links, so
937   ;; short-cut this computation (and the check for being an absolute
938   ;; unix pathname...)
939   #!+win32 (return-from unix-resolve-links pathname)
940   (aver (not (relative-unix-pathname? pathname)))
941   ;; KLUDGE: readlink and lstat are unreliable if given symlinks
942   ;; ending in slashes -- fix the issue here instead of waiting for
943   ;; libc to change...
944   ;;
945   ;; but be careful!  Must not strip the final slash from "/".  (This
946   ;; adjustment might be a candidate for being transferred into the C
947   ;; code in a wrap_readlink() function, too.) CSR, 2006-01-18
948   (let ((len (length pathname)))
949     (when (and (> len 1) (eql #\/ (schar pathname (1- len))))
950       (setf pathname (subseq pathname 0 (1- len)))))
951   (/noshow "entering UNIX-RESOLVE-LINKS")
952   (loop with previous-pathnames = nil do
953        (/noshow pathname previous-pathnames)
954        (let ((link (unix-readlink pathname)))
955           (/noshow link)
956           ;; Unlike the old CMU CL code, we handle a broken symlink by
957           ;; returning the link itself. That way, CL:TRUENAME on a
958           ;; broken link returns the link itself, so that CL:DIRECTORY
959           ;; can return broken links, so that even without
960           ;; Unix-specific extensions to do interesting things with
961           ;; them, at least Lisp programs can see them and, if
962           ;; necessary, delete them. (This is handy e.g. when your
963           ;; managed-by-Lisp directories are visited by Emacs, which
964           ;; creates broken links as notes to itself.)
965           (if (null link)
966               (return pathname)
967               (let ((new-pathname
968                      (simplify-namestring
969                       (if (relative-unix-pathname? link)
970                           (let* ((dir-len (1+ (position #\/
971                                                         pathname
972                                                         :from-end t)))
973                                  (dir (subseq pathname 0 dir-len)))
974                             (/noshow dir)
975                             (concatenate 'string dir link))
976                           link))))
977                 (if (unix-file-kind new-pathname)
978                     (setf pathname new-pathname)
979                     (return pathname)))))
980         ;; To generalize the principle that even if portable Lisp code
981         ;; can't do anything interesting with a broken symlink, at
982         ;; least it should be able to see and delete it, when we
983         ;; detect a cyclic link, we return the link itself. (So even
984         ;; though portable Lisp code can't do anything interesting
985         ;; with a cyclic link, at least it can see it and delete it.)
986         (if (member pathname previous-pathnames :test #'string=)
987             (return pathname)
988             (push pathname previous-pathnames))))
989 \f
990 ;;; UNIX specific code, that has been cleanly separated from the
991 ;;; Windows build.
992 #!-win32
993 (progn
994   (defconstant micro-seconds-per-internal-time-unit
995     (/ 1000000 sb!xc:internal-time-units-per-second))
996
997   (declaim (inline system-internal-run-time
998                    system-real-time-values))
999
1000   (defun system-real-time-values ()
1001     (multiple-value-bind (_ sec usec) (unix-gettimeofday)
1002       (declare (ignore _) (type (unsigned-byte 32) sec usec))
1003       (values sec (truncate usec micro-seconds-per-internal-time-unit))))
1004
1005   ;; There are two optimizations here that actually matter (on 32-bit
1006   ;; systems): substract the epoch from seconds and milliseconds
1007   ;; separately, as those should remain fixnums for the first 17 years
1008   ;; or so of runtime. Also, avoid doing consing a new bignum if the
1009   ;; result would be = to the last result given.
1010   ;;
1011   ;; Note: the next trick would be to spin a separate thread to update
1012   ;; a global value once per internal tick, so each individual call to
1013   ;; get-internal-real-time would be just a memory read... but that is
1014   ;; probably best left for user-level code. ;)
1015   ;;
1016   ;; Thanks to James Anderson for the optimization hint.
1017   ;;
1018   ;; Yes, it is possible to a computation to be GET-INTERNAL-REAL-TIME
1019   ;; bound.
1020   ;;
1021   ;; --NS 2007-04-05
1022   (let ((e-sec 0)
1023         (e-msec 0)
1024         (c-sec 0)
1025         (c-msec 0)
1026         (now 0))
1027     (declare (type (unsigned-byte 32) e-sec c-sec)
1028              (type fixnum e-msec c-msec)
1029              (type unsigned-byte now))
1030     (defun reinit-internal-real-time ()
1031       (setf (values e-sec e-msec) (system-real-time-values)
1032             c-sec 0
1033             c-msec 0))
1034     ;; If two threads call this at the same time, we're still safe, I believe,
1035     ;; as long as NOW is updated before either of C-MSEC or C-SEC. Same applies
1036     ;; to interrupts. --NS
1037     (defun get-internal-real-time ()
1038       (multiple-value-bind (sec msec) (system-real-time-values)
1039         (unless (and (= msec c-msec) (= sec c-sec))
1040           (setf now (+ (* (- sec e-sec)
1041                           sb!xc:internal-time-units-per-second)
1042                        (- msec e-msec))
1043                 c-msec msec
1044                 c-sec sec))
1045         now)))
1046
1047   (defun system-internal-run-time ()
1048     (multiple-value-bind (ignore utime-sec utime-usec stime-sec stime-usec)
1049         (unix-fast-getrusage rusage_self)
1050       (declare (ignore ignore)
1051                (type (unsigned-byte 31) utime-sec stime-sec)
1052                ;; (Classic CMU CL had these (MOD 1000000) instead, but
1053                ;; at least in Linux 2.2.12, the type doesn't seem to
1054                ;; be documented anywhere and the observed behavior is
1055                ;; to sometimes return 1000000 exactly.)
1056                (type (integer 0 1000000) utime-usec stime-usec))
1057       (let ((result (+ (* (+ utime-sec stime-sec)
1058                           sb!xc:internal-time-units-per-second)
1059                        (floor (+ utime-usec
1060                                  stime-usec
1061                                  (floor micro-seconds-per-internal-time-unit 2))
1062                               micro-seconds-per-internal-time-unit))))
1063         result))))
1064 \f
1065 ;;;; A magic constant for wait3().
1066 ;;;;
1067 ;;;; FIXME: This used to be defined in run-program.lisp as
1068 ;;;; (defconstant wait-wstopped #-svr4 #o177 #+svr4 wait-wuntraced)
1069 ;;;; According to some of the man pages, the #o177 is part of the API
1070 ;;;; for wait3(); that said, under SunOS there is a WSTOPPED thing in
1071 ;;;; the headers that may or may not be the same thing. To be
1072 ;;;; investigated. -- CSR, 2002-03-25
1073 (defconstant wstopped #o177)
1074
1075 \f
1076 ;;;; stuff not yet found in the header files
1077 ;;;;
1078 ;;;; Abandon all hope who enters here...
1079
1080 ;;; not checked for linux...
1081 (defmacro fd-set (offset fd-set)
1082   (let ((word (gensym))
1083         (bit (gensym)))
1084     `(multiple-value-bind (,word ,bit) (floor ,offset
1085                                               sb!vm:n-machine-word-bits)
1086        (setf (deref (slot ,fd-set 'fds-bits) ,word)
1087              (logior (truly-the (unsigned-byte #.sb!vm:n-machine-word-bits)
1088                                 (ash 1 ,bit))
1089                      (deref (slot ,fd-set 'fds-bits) ,word))))))
1090
1091 ;;; not checked for linux...
1092 (defmacro fd-clr (offset fd-set)
1093   (let ((word (gensym))
1094         (bit (gensym)))
1095     `(multiple-value-bind (,word ,bit) (floor ,offset
1096                                               sb!vm:n-machine-word-bits)
1097        (setf (deref (slot ,fd-set 'fds-bits) ,word)
1098              (logand (deref (slot ,fd-set 'fds-bits) ,word)
1099                      (sb!kernel:word-logical-not
1100                       (truly-the (unsigned-byte #.sb!vm:n-machine-word-bits)
1101                                  (ash 1 ,bit))))))))
1102
1103 ;;; not checked for linux...
1104 (defmacro fd-isset (offset fd-set)
1105   (let ((word (gensym))
1106         (bit (gensym)))
1107     `(multiple-value-bind (,word ,bit) (floor ,offset
1108                                               sb!vm:n-machine-word-bits)
1109        (logbitp ,bit (deref (slot ,fd-set 'fds-bits) ,word)))))
1110
1111 ;;; not checked for linux...
1112 (defmacro fd-zero (fd-set)
1113   `(progn
1114      ,@(loop for index upfrom 0 below (/ fd-setsize sb!vm:n-machine-word-bits)
1115          collect `(setf (deref (slot ,fd-set 'fds-bits) ,index) 0))))
1116