Simplify get-timezone.
[sbcl.git] / src / code / unix.lisp
blobe223b3bc719db1142627a546109705afa4cae062
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.
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.
26 (in-package "SB!UNIX")
28 (/show0 "unix.lisp 21")
30 ;;; Given a C-level zero-terminated array of C strings, return a
31 ;;; corresponding Lisp-level list of SIMPLE-STRINGs.
32 (defun c-strings->string-list (c-strings)
33 (declare (type (alien (* c-string)) c-strings))
34 (let ((reversed-result nil))
35 (dotimes (i most-positive-fixnum (error "argh! can't happen"))
36 (declare (type index i))
37 (let ((c-string (deref c-strings i)))
38 (if c-string
39 (push c-string reversed-result)
40 (return (nreverse reversed-result)))))))
42 ;;;; Lisp types used by syscalls
44 (deftype unix-pathname () 'simple-string)
45 (deftype unix-fd () `(integer 0 ,sb!xc:most-positive-fixnum))
47 (deftype unix-file-mode () '(unsigned-byte 32))
48 (deftype unix-pid () '(unsigned-byte 32))
49 (deftype unix-uid () '(unsigned-byte 32))
50 (deftype unix-gid () '(unsigned-byte 32))
52 ;;;; system calls
54 (/show0 "unix.lisp 74")
56 ;;; FIXME: The various FOO-SYSCALL-BAR macros, and perhaps some other
57 ;;; macros in this file, are only used in this file, and could be
58 ;;; implemented using SB!XC:DEFMACRO wrapped in EVAL-WHEN.
59 ;;;
60 ;;; SB-EXECUTABLE, at least, uses one of these macros; other libraries
61 ;;; and programs have been known to use them as well. Perhaps they
62 ;;; should live in SB-SYS or even SB-EXT?
64 (defmacro syscall ((name &rest arg-types) success-form &rest args)
65 (when (eql 3 (mismatch "[_]" name))
66 (setf name
67 (concatenate 'string #!+win32 "_" (subseq name 3))))
68 `(locally
69 (declare (optimize (sb!c::float-accuracy 0)))
70 (let ((result (alien-funcall (extern-alien ,name (function int ,@arg-types))
71 ,@args)))
72 (if (minusp result)
73 (values nil (get-errno))
74 ,success-form))))
76 ;;; This is like SYSCALL, but if it fails, signal an error instead of
77 ;;; returning error codes. Should only be used for syscalls that will
78 ;;; never really get an error.
79 (defmacro syscall* ((name &rest arg-types) success-form &rest args)
80 `(locally
81 (declare (optimize (sb!c::float-accuracy 0)))
82 (let ((result (alien-funcall (extern-alien ,name (function int ,@arg-types))
83 ,@args)))
84 (if (minusp result)
85 (error "Syscall ~A failed: ~A" ,name (strerror))
86 ,success-form))))
88 (defmacro int-syscall ((name &rest arg-types) &rest args)
89 `(syscall (,name ,@arg-types) (values result 0) ,@args))
91 (defmacro with-restarted-syscall ((&optional (value (gensym))
92 (errno (gensym)))
93 syscall-form &rest body)
94 #!+sb-doc
95 "Evaluate BODY with VALUE and ERRNO bound to the return values of
96 SYSCALL-FORM. Repeat evaluation of SYSCALL-FORM if it is interrupted."
97 `(let (,value ,errno)
98 (loop (multiple-value-setq (,value ,errno)
99 ,syscall-form)
100 (unless #!-win32 (eql ,errno eintr) #!+win32 nil
101 (return (values ,value ,errno))))
102 ,@body))
104 (defmacro void-syscall ((name &rest arg-types) &rest args)
105 `(syscall (,name ,@arg-types) (values t 0) ,@args))
107 #!+win32
108 (progn
109 (defconstant espipe 29))
111 ;;;; hacking the Unix environment
113 #!-win32
114 (define-alien-routine ("getenv" posix-getenv) c-string
115 #!+sb-doc
116 "Return the \"value\" part of the environment string \"name=value\" which
117 corresponds to NAME, or NIL if there is none."
118 (name (c-string :not-null t)))
120 ;;; from stdio.h
122 ;;; Rename the file with string NAME1 to the string NAME2. NIL and an
123 ;;; error code is returned if an error occurs.
124 #!-win32
125 (defun unix-rename (name1 name2)
126 (declare (type unix-pathname name1 name2))
127 (void-syscall ("rename" (c-string :not-null t)
128 (c-string :not-null t))
129 name1 name2))
131 ;;; from sys/types.h and gnu/types.h
133 (/show0 "unix.lisp 220")
135 ;;; FIXME: We shouldn't hand-copy types from header files into Lisp
136 ;;; like this unless we have extreme provocation. Reading directories
137 ;;; is not extreme enough, since it doesn't need to be blindingly
138 ;;; fast: we can just implement those functions in C as a wrapper
139 ;;; layer.
140 (define-alien-type fd-mask unsigned)
142 (define-alien-type nil
143 (struct fd-set
144 (fds-bits (array fd-mask #.(/ fd-setsize
145 sb!vm:n-machine-word-bits)))))
147 (/show0 "unix.lisp 304")
150 ;;;; fcntl.h
151 ;;;;
152 ;;;; POSIX Standard: 6.5 File Control Operations <fcntl.h>
154 ;;; Open the file whose pathname is specified by PATH for reading
155 ;;; and/or writing as specified by the FLAGS argument. Various FLAGS
156 ;;; masks (O_RDONLY etc.) are defined in fcntlbits.h.
158 ;;; If the O_CREAT flag is specified, then the file is created with a
159 ;;; permission of argument MODE if the file doesn't exist. An integer
160 ;;; file descriptor is returned by UNIX-OPEN.
161 (defun unix-open (path flags mode &key #!+win32 overlapped)
162 (declare (type unix-pathname path)
163 (type fixnum flags)
164 (type unix-file-mode mode)
165 #!+win32
166 (ignore mode))
167 #!+win32 (sb!win32:unixlike-open path flags :overlapped overlapped)
168 #!-win32
169 (with-restarted-syscall (value errno)
170 (int-syscall ("open" c-string int int)
171 path
172 (logior #!+largefile o_largefile
173 flags)
174 mode)))
176 ;;; UNIX-CLOSE accepts a file descriptor and attempts to close the file
177 ;;; associated with it.
178 (/show0 "unix.lisp 391")
179 (defun unix-close (fd)
180 #!+win32 (sb!win32:unixlike-close fd)
181 #!-win32 (declare (type unix-fd fd))
182 #!-win32 (void-syscall ("close" int) fd))
184 ;;;; stdlib.h
186 ;;; There are good reasons to implement some OPEN options with an
187 ;;; mkstemp(3)-like routine, but we don't do that yet. Instead, this
188 ;;; function is used only to make a temporary file for RUN-PROGRAM.
189 ;;; sb_mkstemp() is a wrapper that lives in src/runtime/wrap.c. Since
190 ;;; SUSv3 mkstemp() doesn't specify the mode of the created file and
191 ;;; since we have to implement most of this ourselves for Windows
192 ;;; anyway, it seems worthwhile to depart from the mkstemp()
193 ;;; specification by taking a mode to use when creating the new file.
194 (defun sb-mkstemp (template-string mode)
195 (declare (type string template-string)
196 (type unix-file-mode mode))
197 (let ((template-buffer (string-to-octets template-string :null-terminate t)))
198 (with-pinned-objects (template-buffer)
199 (let ((fd (alien-funcall (extern-alien "sb_mkstemp"
200 (function int (* char) int))
201 (vector-sap template-buffer)
202 mode)))
203 (if (minusp fd)
204 (values nil (get-errno))
205 (values #!-win32 fd #!+win32 (sb!win32::duplicate-and-unwrap-fd fd)
206 (octets-to-string template-buffer)))))))
208 ;;;; resourcebits.h
210 (defconstant rusage_self 0) ; the calling process
211 (defconstant rusage_children -1) ; terminated child processes
212 (defconstant rusage_both -2)
214 (define-alien-type nil
215 (struct rusage
216 (ru-utime (struct timeval)) ; user time used
217 (ru-stime (struct timeval)) ; system time used.
218 (ru-maxrss long) ; maximum resident set size (in kilobytes)
219 (ru-ixrss long) ; integral shared memory size
220 (ru-idrss long) ; integral unshared data size
221 (ru-isrss long) ; integral unshared stack size
222 (ru-minflt long) ; page reclaims
223 (ru-majflt long) ; page faults
224 (ru-nswap long) ; swaps
225 (ru-inblock long) ; block input operations
226 (ru-oublock long) ; block output operations
227 (ru-msgsnd long) ; messages sent
228 (ru-msgrcv long) ; messages received
229 (ru-nsignals long) ; signals received
230 (ru-nvcsw long) ; voluntary context switches
231 (ru-nivcsw long))) ; involuntary context switches
233 ;;;; unistd.h
235 ;;; Given a file path (a string) and one of four constant modes,
236 ;;; return T if the file is accessible with that mode and NIL if not.
237 ;;; When NIL, also return an errno value with NIL which tells why the
238 ;;; file was not accessible.
240 ;;; The access modes are:
241 ;;; r_ok Read permission.
242 ;;; w_ok Write permission.
243 ;;; x_ok Execute permission.
244 ;;; f_ok Presence of file.
246 ;;; In Windows, the MODE argument to access is defined in terms of
247 ;;; literal magic numbers---there are no constants to grovel. X_OK
248 ;;; is not defined.
249 #!+win32
250 (progn
251 (defconstant f_ok 0)
252 (defconstant w_ok 2)
253 (defconstant r_ok 4))
255 (defun unix-access (path mode)
256 (declare (type unix-pathname path)
257 (type (mod 8) mode))
258 (void-syscall ("[_]access" c-string int) path mode))
260 ;;; values for the second argument to UNIX-LSEEK
261 ;;; Note that nowadays these are called SEEK_SET, SEEK_CUR, and SEEK_END
262 (defconstant l_set 0) ; to set the file pointer
263 (defconstant l_incr 1) ; to increment the file pointer
264 (defconstant l_xtnd 2) ; to extend the file size
266 ;; off_t is 32 bit on Windows, yet our functions support 64 bit seeks.
267 (define-alien-type unix-offset
268 #!-win32 off-t
269 #!+win32 (signed 64))
271 ;;; Is a stream interactive?
272 (defun unix-isatty (fd)
273 (declare (type unix-fd fd))
274 #!-win32 (int-syscall ("isatty" int) fd)
275 #!+win32 (sb!win32::windows-isatty fd))
277 (defun unix-lseek (fd offset whence)
278 #!+sb-doc
279 "Unix-lseek accepts a file descriptor and moves the file pointer by
280 OFFSET octets. Whence can be any of the following:
282 L_SET Set the file pointer.
283 L_INCR Increment the file pointer.
284 L_XTND Extend the file size.
286 (declare (type unix-fd fd)
287 (type (integer 0 2) whence))
288 (let ((result
289 #!-win32
290 (alien-funcall (extern-alien #!-largefile "lseek"
291 #!+largefile "lseek_largefile"
292 (function off-t int off-t int))
293 fd offset whence)
294 #!+win32 (sb!win32:lseeki64 fd offset whence)))
295 (if (minusp result)
296 (values nil (get-errno))
297 (values result 0))))
299 ;;; UNIX-READ accepts a file descriptor, a buffer, and the length to read.
300 ;;; It attempts to read len bytes from the device associated with fd
301 ;;; and store them into the buffer. It returns the actual number of
302 ;;; bytes read.
304 #!-sb!fluid
305 (declaim (maybe-inline unix-read))
307 (defun unix-read (fd buf len)
308 (declare (type unix-fd fd)
309 (type (unsigned-byte 32) len))
310 (int-syscall (#!-win32 "read" #!+win32 "win32_unix_read"
311 int (* char) int) fd buf len))
313 ;;; UNIX-WRITE accepts a file descriptor, a buffer, an offset, and the
314 ;;; length to write. It attempts to write len bytes to the device
315 ;;; associated with fd from the buffer starting at offset. It returns
316 ;;; the actual number of bytes written.
317 (defun unix-write (fd buf offset len)
318 (declare (type unix-fd fd)
319 (type (unsigned-byte 32) offset len))
320 (flet ((%write (sap)
321 (declare (system-area-pointer sap))
322 (int-syscall (#!-win32 "write" #!+win32 "win32_unix_write"
323 int (* char) int)
325 (with-alien ((ptr (* char) sap))
326 (addr (deref ptr offset)))
327 len)))
328 (etypecase buf
329 ((simple-array * (*))
330 (with-pinned-objects (buf)
331 (%write (vector-sap buf))))
332 (system-area-pointer
333 (%write buf)))))
335 ;;; Set up a unix-piping mechanism consisting of an input pipe and an
336 ;;; output pipe. Return two values: if no error occurred the first
337 ;;; value is the pipe to be read from and the second is can be written
338 ;;; to. If an error occurred the first value is NIL and the second the
339 ;;; unix error code.
340 #!-win32
341 (defun unix-pipe ()
342 (with-alien ((fds (array int 2)))
343 (syscall ("pipe" (* int))
344 (values (deref fds 0) (deref fds 1))
345 (cast fds (* int)))))
347 #!+win32
348 (defun unix-pipe ()
349 (sb!win32::windows-pipe))
351 ;; Windows mkdir() doesn't take the mode argument. It's cdecl, so we could
352 ;; actually call it passing the mode argument, but some sharp-eyed reader
353 ;; would put five and twenty-seven together and ask us about it, so...
354 ;; -- AB, 2005-12-27
355 #!-win32
356 (defun unix-mkdir (name mode)
357 (declare (type unix-pathname name)
358 (type unix-file-mode mode)
359 #!+win32 (ignore mode))
360 (void-syscall ("mkdir" c-string #!-win32 int) name #!-win32 mode))
362 ;;; Given a C char* pointer allocated by malloc(), free it and return a
363 ;;; corresponding Lisp string (or return NIL if the pointer is a C NULL).
364 (defun newcharstar-string (newcharstar)
365 (declare (type (alien (* char)) newcharstar))
366 (if (null-alien newcharstar)
368 (prog1
369 (cast newcharstar c-string)
370 (free-alien newcharstar))))
372 ;;; Return the Unix current directory as a SIMPLE-STRING, in the
373 ;;; style returned by getcwd() (no trailing slash character).
374 #!-win32
375 (defun posix-getcwd ()
376 ;; This implementation relies on a BSD/Linux extension to getcwd()
377 ;; behavior, automatically allocating memory when a null buffer
378 ;; pointer is used. On a system which doesn't support that
379 ;; extension, it'll have to be rewritten somehow.
381 ;; SunOS and OSF/1 provide almost as useful an extension: if given a null
382 ;; buffer pointer, it will automatically allocate size space. The
383 ;; KLUDGE in this solution arises because we have just read off
384 ;; PATH_MAX+1 from the Solaris header files and stuck it in here as
385 ;; a constant. Going the grovel_headers route doesn't seem to be
386 ;; helpful, either, as Solaris doesn't export PATH_MAX from
387 ;; unistd.h.
389 ;; Signal an error at compile-time, since it's needed for the
390 ;; runtime to start up
391 #!-(or android linux openbsd freebsd netbsd sunos osf1 darwin hpux win32 dragonfly)
392 #.(error "POSIX-GETCWD is not implemented.")
394 #!+(or linux openbsd freebsd netbsd sunos osf1 darwin hpux win32 dragonfly)
395 (newcharstar-string (alien-funcall (extern-alien "getcwd"
396 (function (* char)
397 (* char)
398 size-t))
400 #!+(or linux openbsd freebsd netbsd darwin win32 dragonfly) 0
401 #!+(or sunos osf1 hpux) 1025))
402 #!+android
403 (with-alien ((ptr (array char #.path-max)))
404 ;; Older bionic versions do not have the above feature.
405 (alien-funcall
406 (extern-alien "getcwd"
407 (function c-string (array char #.path-max) int))
408 ptr path-max))
409 (simple-perror "getcwd")))
411 ;;; Return the Unix current directory as a SIMPLE-STRING terminated
412 ;;; by a slash character.
413 (defun posix-getcwd/ ()
414 (concatenate 'string (posix-getcwd) "/"))
416 ;;; Duplicate an existing file descriptor (given as the argument) and
417 ;;; return it. If FD is not a valid file descriptor, NIL and an error
418 ;;; number are returned.
419 #!-win32
420 (defun unix-dup (fd)
421 (declare (type unix-fd fd))
422 (int-syscall ("dup" int) fd))
424 ;;; Terminate the current process with an optional error code. If
425 ;;; successful, the call doesn't return. If unsuccessful, the call
426 ;;; returns NIL and an error number.
427 (deftype exit-code ()
428 `(signed-byte 32))
429 (defun os-exit (code &key abort)
430 #!+sb-doc
431 "Exit the process with CODE. If ABORT is true, exit is performed using _exit(2),
432 avoiding atexit(3) hooks, etc. Otherwise exit(2) is called."
433 (unless (typep code 'exit-code)
434 (setf code (if abort 1 0)))
435 (if abort
436 (void-syscall ("_exit" int) code)
437 (void-syscall ("exit" int) code)))
439 (define-deprecated-function :early "1.0.56.55" unix-exit os-exit (code)
440 (os-exit code))
442 ;;; Return the process id of the current process.
443 (define-alien-routine (#!+win32 "_getpid" #!-win32 "getpid" unix-getpid) int)
445 ;;; Return the real user id associated with the current process.
446 #!-win32
447 (define-alien-routine ("getuid" unix-getuid) int)
449 ;;; Translate a user id into a login name.
450 #!-win32
451 (defun uid-username (uid)
452 (or (newcharstar-string (alien-funcall (extern-alien "uid_username"
453 (function (* char) int))
454 uid))
455 (error "found no match for Unix uid=~S" uid)))
457 ;;; Return the namestring of the home directory, being careful to
458 ;;; include a trailing #\/
459 #!-win32
460 (progn
461 (defun uid-homedir (uid)
462 (or (newcharstar-string (alien-funcall (extern-alien "uid_homedir"
463 (function (* char) int))
464 uid))
465 (error "failed to resolve home directory for Unix uid=~S" uid)))
467 (defun user-homedir (uid)
468 (or (newcharstar-string (alien-funcall (extern-alien "user_homedir"
469 (function (* char) c-string))
470 uid))
471 (error "failed to resolve home directory for Unix uid=~S" uid))))
473 ;;; Invoke readlink(2) on the file name specified by PATH. Return
474 ;;; (VALUES LINKSTRING NIL) on success, or (VALUES NIL ERRNO) on
475 ;;; failure.
476 #!-win32
477 (defun unix-readlink (path)
478 (declare (type unix-pathname path))
479 (with-alien ((ptr (* char)
480 (alien-funcall (extern-alien
481 "wrapped_readlink"
482 (function (* char) c-string))
483 path)))
484 (if (null-alien ptr)
485 (values nil (get-errno))
486 (multiple-value-prog1
487 (values (with-alien ((c-string c-string ptr)) c-string)
488 nil)
489 (free-alien ptr)))))
490 #!+win32
491 ;; Win32 doesn't do links, but something likes to call this anyway.
492 ;; Something in this file, no less. But it only takes one result, so...
493 (defun unix-readlink (path)
494 (declare (ignore path))
495 nil)
497 (defun unix-realpath (path)
498 (declare (type unix-pathname path))
499 (with-alien ((ptr (* char)
500 (alien-funcall (extern-alien
501 "sb_realpath"
502 (function (* char) c-string))
503 path)))
504 (if (null-alien ptr)
505 (values nil (get-errno))
506 (multiple-value-prog1
507 (values (with-alien ((c-string c-string ptr)) c-string)
508 nil)
509 (free-alien ptr)))))
511 ;;; UNIX-UNLINK accepts a name and deletes the directory entry for that
512 ;;; name and the file if this is the last link.
513 (defun unix-unlink (name)
514 (declare (type unix-pathname name))
515 (void-syscall ("[_]unlink" c-string) name))
517 ;;; Return the name of the host machine as a string.
518 #!-win32
519 (defun unix-gethostname ()
520 (with-alien ((buf (array char 256)))
521 (syscall ("gethostname" (* char) int)
522 (cast buf c-string)
523 (cast buf (* char)) 256)))
525 #!-win32
526 (defun unix-setsid ()
527 (int-syscall ("setsid")))
529 ;;;; sys/ioctl.h
531 ;;; UNIX-IOCTL performs a variety of operations on open i/o
532 ;;; descriptors. See the UNIX Programmer's Manual for more
533 ;;; information.
534 #!-win32
535 (defun unix-ioctl (fd cmd arg)
536 (declare (type unix-fd fd)
537 (type (signed-byte 32) cmd))
538 (void-syscall ("ioctl" int int (* char)) fd cmd arg))
540 ;;;; sys/resource.h
542 ;;; FIXME: All we seem to need is the RUSAGE_SELF version of this.
544 ;;; This is like getrusage(2), except it returns only the system and
545 ;;; user time, and returns the seconds and microseconds as separate
546 ;;; values.
547 #!-sb-fluid (declaim (inline unix-fast-getrusage))
548 #!-win32
549 (defun unix-fast-getrusage (who)
550 (declare (values (member t)
551 unsigned-byte fixnum
552 unsigned-byte fixnum))
553 (with-alien ((usage (struct rusage)))
554 (syscall* ("sb_getrusage" int (* (struct rusage)))
555 (values t
556 (slot (slot usage 'ru-utime) 'tv-sec)
557 (slot (slot usage 'ru-utime) 'tv-usec)
558 (slot (slot usage 'ru-stime) 'tv-sec)
559 (slot (slot usage 'ru-stime) 'tv-usec))
560 who (addr usage))))
562 ;;; Return information about the resource usage of the process
563 ;;; specified by WHO. WHO can be either the current process
564 ;;; (rusage_self) or all of the terminated child processes
565 ;;; (rusage_children). NIL and an error number is returned if the call
566 ;;; fails.
567 #!-win32
568 (defun unix-getrusage (who)
569 (with-alien ((usage (struct rusage)))
570 (syscall ("sb_getrusage" int (* (struct rusage)))
571 (values t
572 (+ (* (slot (slot usage 'ru-utime) 'tv-sec) 1000000)
573 (slot (slot usage 'ru-utime) 'tv-usec))
574 (+ (* (slot (slot usage 'ru-stime) 'tv-sec) 1000000)
575 (slot (slot usage 'ru-stime) 'tv-usec))
576 (slot usage 'ru-maxrss)
577 (slot usage 'ru-ixrss)
578 (slot usage 'ru-idrss)
579 (slot usage 'ru-isrss)
580 (slot usage 'ru-minflt)
581 (slot usage 'ru-majflt)
582 (slot usage 'ru-nswap)
583 (slot usage 'ru-inblock)
584 (slot usage 'ru-oublock)
585 (slot usage 'ru-msgsnd)
586 (slot usage 'ru-msgrcv)
587 (slot usage 'ru-nsignals)
588 (slot usage 'ru-nvcsw)
589 (slot usage 'ru-nivcsw))
590 who (addr usage))))
592 (defvar *on-dangerous-wait* :warn)
594 ;;; Calling select in a bad place can hang in a nasty manner, so it's better
595 ;;; to have some way to detect these.
596 (defun note-dangerous-wait (type)
597 (let ((action *on-dangerous-wait*)
598 (*on-dangerous-wait* nil))
599 (case action
600 (:warn
601 (warn "Starting a ~A without a timeout while interrupts are ~
602 disabled."
603 type))
604 (:error
605 (error "Starting a ~A without a timeout while interrupts are ~
606 disabled."
607 type))
608 (:backtrace
609 (format *debug-io*
610 "~&=== Starting a ~A without a timeout while interrupts are disabled. ===~%"
611 type)
612 (sb!debug:print-backtrace)))
613 nil))
615 ;;;; poll.h
616 #!+os-provides-poll
617 (progn
618 (define-alien-type nil
619 (struct pollfd
620 (fd int)
621 (events short) ; requested events
622 (revents short))) ; returned events
624 (defun unix-poll (pollfds nfds to-msec)
625 (declare (fixnum nfds to-msec))
626 (when (and (minusp to-msec) (not *interrupts-enabled*))
627 (note-dangerous-wait "poll(2)"))
628 ;; FAST-SELECT doesn't use WITH-RESTARTED-SYSCALL so this doesn't either
629 (int-syscall ("poll" (* (struct pollfd)) int int)
630 (alien-sap pollfds) nfds to-msec))
632 ;; "simple" poll operates on a single descriptor only
633 (defun unix-simple-poll (fd direction to-msec)
634 (declare (fixnum fd to-msec))
635 (when (and (minusp to-msec) (not *interrupts-enabled*))
636 (note-dangerous-wait "poll(2)"))
637 (let ((events (ecase direction
638 (:input (logior pollin pollpri))
639 (:output pollout))))
640 (with-alien ((fds (struct pollfd)))
641 (with-restarted-syscall (count errno)
642 (progn
643 (setf (slot fds 'fd) fd
644 (slot fds 'events) events
645 (slot fds 'revents) 0)
646 (int-syscall ("poll" (* (struct pollfd)) int int)
647 (addr fds) 1 to-msec))
648 (if (zerop errno)
649 (let ((revents (slot fds 'revents)))
650 (or (and (eql 1 count) (logtest events revents))
651 (logtest pollhup revents)))
652 (error "Syscall poll(2) failed: ~A" (strerror))))))))
654 ;;;; sys/select.h
656 (defmacro with-fd-setsize ((n) &body body)
657 `(let ((,n (if (< 0 ,n fd-setsize)
659 (error "Cannot select(2) on ~D: above FD_SETSIZE limit."
660 (1- ,n)))))
661 (declare (type (integer 0 #.fd-setsize) ,n))
662 ,@body))
664 ;;;; FIXME: Why have both UNIX-SELECT and UNIX-FAST-SELECT?
666 ;;; Perform the UNIX select(2) system call.
667 (declaim (inline unix-fast-select))
668 (defun unix-fast-select (num-descriptors
669 read-fds write-fds exception-fds
670 timeout-secs timeout-usecs)
671 (declare (type integer num-descriptors)
672 (type (or (alien (* (struct fd-set))) null)
673 read-fds write-fds exception-fds)
674 (type (or null (unsigned-byte 31)) timeout-secs timeout-usecs))
675 (with-fd-setsize (num-descriptors)
676 (flet ((select (tv-sap)
677 (int-syscall ("sb_select" int (* (struct fd-set)) (* (struct fd-set))
678 (* (struct fd-set)) (* (struct timeval)))
679 num-descriptors read-fds write-fds exception-fds
680 tv-sap)))
681 (cond ((or timeout-secs timeout-usecs)
682 (with-alien ((tv (struct timeval)))
683 (setf (slot tv 'tv-sec) (or timeout-secs 0))
684 (setf (slot tv 'tv-usec) (or timeout-usecs 0))
685 (select (alien-sap (addr tv)))))
687 (unless *interrupts-enabled*
688 (note-dangerous-wait "select(2)"))
689 (select (int-sap 0)))))))
691 ;;; UNIX-SELECT accepts sets of file descriptors and waits for an event
692 ;;; to happen on one of them or to time out.
693 (declaim (inline num-to-fd-set fd-set-to-num))
694 (defun num-to-fd-set (fdset num)
695 (typecase num
696 (fixnum
697 (setf (deref (slot fdset 'fds-bits) 0) num)
698 (loop for index from 1 below (/ fd-setsize
699 sb!vm:n-machine-word-bits)
700 do (setf (deref (slot fdset 'fds-bits) index) 0)))
702 (loop for index from 0 below (/ fd-setsize
703 sb!vm:n-machine-word-bits)
704 do (setf (deref (slot fdset 'fds-bits) index)
705 (ldb (byte sb!vm:n-machine-word-bits
706 (* index sb!vm:n-machine-word-bits))
707 num))))))
709 (defun fd-set-to-num (nfds fdset)
710 (if (<= nfds sb!vm:n-machine-word-bits)
711 (deref (slot fdset 'fds-bits) 0)
712 (loop for index below (/ fd-setsize
713 sb!vm:n-machine-word-bits)
714 sum (ash (deref (slot fdset 'fds-bits) index)
715 (* index sb!vm:n-machine-word-bits)))))
717 ;;; Examine the sets of descriptors passed as arguments to see whether
718 ;;; they are ready for reading and writing. See the UNIX Programmer's
719 ;;; Manual for more information.
720 (defun unix-select (nfds rdfds wrfds xpfds to-secs &optional (to-usecs 0))
721 (declare (type integer nfds)
722 (type unsigned-byte rdfds wrfds xpfds)
723 (type (or (unsigned-byte 31) null) to-secs)
724 (type (unsigned-byte 31) to-usecs)
725 (optimize (speed 3) (safety 0)))
726 (with-fd-setsize (nfds)
727 (with-alien ((tv (struct timeval))
728 (rdf (struct fd-set))
729 (wrf (struct fd-set))
730 (xpf (struct fd-set)))
731 (cond (to-secs
732 (setf (slot tv 'tv-sec) to-secs
733 (slot tv 'tv-usec) to-usecs))
734 ((not *interrupts-enabled*)
735 (note-dangerous-wait "select(2)")))
736 (num-to-fd-set rdf rdfds)
737 (num-to-fd-set wrf wrfds)
738 (num-to-fd-set xpf xpfds)
739 (macrolet ((frob (lispvar alienvar)
740 `(if (zerop ,lispvar)
741 (int-sap 0)
742 (alien-sap (addr ,alienvar)))))
743 (syscall ("sb_select" int (* (struct fd-set)) (* (struct fd-set))
744 (* (struct fd-set)) (* (struct timeval)))
745 (values result
746 (fd-set-to-num nfds rdf)
747 (fd-set-to-num nfds wrf)
748 (fd-set-to-num nfds xpf))
749 nfds (frob rdfds rdf) (frob wrfds wrf) (frob xpfds xpf)
750 (if to-secs (alien-sap (addr tv)) (int-sap 0)))))))
752 ;;; Lisp-side implmentations of FD_FOO macros.
753 (declaim (inline fd-set fd-clr fd-isset fd-zero))
754 (defun fd-set (offset fd-set)
755 (multiple-value-bind (word bit) (floor offset
756 sb!vm:n-machine-word-bits)
757 (setf (deref (slot fd-set 'fds-bits) word)
758 (logior (truly-the (unsigned-byte #.sb!vm:n-machine-word-bits)
759 (ash 1 bit))
760 (deref (slot fd-set 'fds-bits) word)))))
762 (defun fd-clr (offset fd-set)
763 (multiple-value-bind (word bit) (floor offset
764 sb!vm:n-machine-word-bits)
765 (setf (deref (slot fd-set 'fds-bits) word)
766 (logand (deref (slot fd-set 'fds-bits) word)
767 (sb!kernel:word-logical-not
768 (truly-the (unsigned-byte #.sb!vm:n-machine-word-bits)
769 (ash 1 bit)))))))
771 (defun fd-isset (offset fd-set)
772 (multiple-value-bind (word bit) (floor offset
773 sb!vm:n-machine-word-bits)
774 (logbitp bit (deref (slot fd-set 'fds-bits) word))))
776 (defun fd-zero (fd-set)
777 (loop for index below (/ fd-setsize sb!vm:n-machine-word-bits)
778 do (setf (deref (slot fd-set 'fds-bits) index) 0)))
780 #!-os-provides-poll
781 (defun unix-simple-poll (fd direction to-msec)
782 (multiple-value-bind (to-sec to-usec)
783 (if (minusp to-msec)
784 (values nil nil)
785 (multiple-value-bind (to-sec to-msec2) (truncate to-msec 1000)
786 (values to-sec (* to-msec2 1000))))
787 (with-restarted-syscall (count errno)
788 (with-alien ((fds (struct fd-set)))
789 (fd-zero fds)
790 (fd-set fd fds)
791 (multiple-value-bind (read-fds write-fds)
792 (ecase direction
793 (:input
794 (values (addr fds) nil))
795 (:output
796 (values nil (addr fds))))
797 (unix-fast-select (1+ fd)
798 read-fds write-fds nil
799 to-sec to-usec)))
800 (case count
801 ((1) t)
802 ((0) nil)
803 (otherwise
804 (error "Syscall select(2) failed on fd ~D: ~A" fd (strerror)))))))
806 ;;;; sys/stat.h
808 ;;; This is a structure defined in src/runtime/wrap.c, to look
809 ;;; basically like "struct stat" according to stat(2). It may not
810 ;;; actually correspond to the real in-memory stat structure that the
811 ;;; syscall uses, and that's OK. Linux in particular is packed full of
812 ;;; stat macros, and trying to keep Lisp code in correspondence with
813 ;;; it is more pain than it's worth, so we just let our C runtime
814 ;;; synthesize a nice consistent structure for us.
816 ;;; Note that st-dev is a long, not a dev-t. This is because dev-t on
817 ;;; linux 32 bit archs is a 64 bit quantity, but alien doesn't support
818 ;;; those. We don't actually access that field anywhere, though, so
819 ;;; until we can get 64 bit alien support it'll do. Also note that
820 ;;; st_size is a long, not an off-t, because off-t is a 64-bit
821 ;;; quantity on Alpha. And FIXME: "No one would want a file length
822 ;;; longer than 32 bits anyway, right?":-|
824 ;;; The comment about alien and 64-bit quantities has not been kept in
825 ;;; sync with the comment now in wrap.h (formerly wrap.c), but it's
826 ;;; not clear whether either comment is correct. -- RMK 2007-11-14.
827 (define-alien-type nil
828 (struct wrapped_stat
829 (st-dev wst-dev-t)
830 (st-ino wst-ino-t)
831 (st-mode mode-t)
832 (st-nlink wst-nlink-t)
833 (st-uid wst-uid-t)
834 (st-gid wst-gid-t)
835 (st-rdev wst-dev-t)
836 (st-size wst-off-t)
837 (st-blksize wst-blksize-t)
838 (st-blocks wst-blkcnt-t)
839 (st-atime time-t)
840 (st-mtime time-t)
841 (st-ctime time-t)))
843 ;;; shared C-struct-to-multiple-VALUES conversion for the stat(2)
844 ;;; family of Unix system calls
846 ;;; FIXME: I think this should probably not be INLINE. However, when
847 ;;; this was not inline, it seemed to cause memory corruption
848 ;;; problems. My first guess is that it's a bug in the FFI code, where
849 ;;; the WITH-ALIEN expansion doesn't deal well with being wrapped
850 ;;; around a call to a function returning >10 values. But I didn't try
851 ;;; to figure it out, just inlined it as a quick fix. Perhaps someone
852 ;;; who's motivated to debug the FFI code can go over the DISASSEMBLE
853 ;;; output in the not-inlined case and see whether there's a problem,
854 ;;; and maybe even find a fix..
855 (declaim (inline %extract-stat-results))
856 (defun %extract-stat-results (wrapped-stat)
857 (declare (type (alien (* (struct wrapped_stat))) wrapped-stat))
858 (values t
859 (slot wrapped-stat 'st-dev)
860 (slot wrapped-stat 'st-ino)
861 (slot wrapped-stat 'st-mode)
862 (slot wrapped-stat 'st-nlink)
863 (slot wrapped-stat 'st-uid)
864 (slot wrapped-stat 'st-gid)
865 (slot wrapped-stat 'st-rdev)
866 (slot wrapped-stat 'st-size)
867 (slot wrapped-stat 'st-atime)
868 (slot wrapped-stat 'st-mtime)
869 (slot wrapped-stat 'st-ctime)
870 (slot wrapped-stat 'st-blksize)
871 (slot wrapped-stat 'st-blocks)))
873 ;;; Unix system calls in the stat(2) family are handled by calls to
874 ;;; C-level wrapper functions which copy all the raw "struct stat"
875 ;;; slots into the system-independent wrapped_stat format.
876 ;;; stat(2) <-> stat_wrapper()
877 ;;; fstat(2) <-> fstat_wrapper()
878 ;;; lstat(2) <-> lstat_wrapper()
879 (defun unix-stat (name)
880 (declare (type unix-pathname name))
881 (with-alien ((buf (struct wrapped_stat)))
882 (syscall ("stat_wrapper" c-string (* (struct wrapped_stat)))
883 (%extract-stat-results (addr buf))
884 name (addr buf))))
885 (defun unix-lstat (name)
886 (declare (type unix-pathname name))
887 (with-alien ((buf (struct wrapped_stat)))
888 (syscall ("lstat_wrapper" c-string (* (struct wrapped_stat)))
889 (%extract-stat-results (addr buf))
890 name (addr buf))))
891 (defun unix-fstat (fd)
892 #!-win32
893 (declare (type unix-fd fd))
894 (#!-win32 funcall #!+win32 sb!win32::call-with-crt-fd
895 (lambda (fd)
896 (with-alien ((buf (struct wrapped_stat)))
897 (syscall ("fstat_wrapper" int (* (struct wrapped_stat)))
898 (%extract-stat-results (addr buf))
899 fd (addr buf))))
900 fd))
902 #!-win32
903 (defun fd-type (fd)
904 (declare (type unix-fd fd))
905 (let ((fmt (logand
906 s-ifmt
907 (or (with-alien ((buf (struct wrapped_stat)))
908 (syscall ("fstat_wrapper" int (* (struct wrapped_stat)))
909 (slot buf 'st-mode)
910 fd (addr buf)))
911 0))))
912 (cond ((logtest s-ififo fmt)
913 :fifo)
914 ((logtest s-ifchr fmt)
915 :character)
916 ((logtest s-ifdir fmt)
917 :directory)
918 ((logtest s-ifblk fmt)
919 :block)
920 ((logtest s-ifreg fmt)
921 :regular)
922 ((logtest s-ifsock fmt)
923 :socket)
925 :unknown))))
927 ;;;; time.h
929 ;; used by other time functions
930 (define-alien-type nil
931 (struct tm
932 (tm-sec int) ; Seconds. [0-60] (1 leap second)
933 (tm-min int) ; Minutes. [0-59]
934 (tm-hour int) ; Hours. [0-23]
935 (tm-mday int) ; Day. [1-31]
936 (tm-mon int) ; Month. [0-11]
937 (tm-year int) ; Year - 1900.
938 (tm-wday int) ; Day of week. [0-6]
939 (tm-yday int) ; Days in year. [0-365]
940 (tm-isdst int) ; DST. [-1/0/1]
941 (tm-gmtoff long) ; Seconds east of UTC.
942 (tm-zone c-string))) ; Timezone abbreviation.
944 (define-alien-routine get-timezone int
945 (when time-t)
946 (daylight-savings-p boolean :out))
948 #!-win32
949 (defun nanosleep (secs nsecs)
950 (declare (optimize (sb!c:alien-funcall-saves-fp-and-pc 0)))
951 (with-alien ((req (struct timespec))
952 (rem (struct timespec)))
953 (setf (slot req 'tv-sec) secs
954 (slot req 'tv-nsec) nsecs)
955 (loop while (and (eql eintr
956 (nth-value 1
957 (int-syscall ("sb_nanosleep" (* (struct timespec))
958 (* (struct timespec)))
959 (addr req) (addr rem))))
960 ;; KLUDGE: On Darwin, if an interrupt cases nanosleep to
961 ;; take longer than the requested time, the call will
962 ;; return with EINT and (unsigned)-1 seconds in the
963 ;; remainder timespec, which would cause us to enter
964 ;; nanosleep again for ~136 years. So, we check that the
965 ;; remainder time is actually decreasing.
967 ;; It would be neat to do this bit of defensive
968 ;; programming on all platforms, but unfortunately on
969 ;; Linux, REM can be a little higher than REQ if the
970 ;; nanosleep() call is interrupted quickly enough,
971 ;; probably due to the request being rounded up to the
972 ;; nearest HZ. This would cause the sleep to return way
973 ;; too early.
974 #!+darwin
975 (let ((rem-sec (slot rem 'tv-sec))
976 (rem-nsec (slot rem 'tv-nsec)))
977 (when (or (> secs rem-sec)
978 (and (= secs rem-sec) (>= nsecs rem-nsec)))
979 ;; Update for next round.
980 (setf secs rem-sec
981 nsecs rem-nsec)
982 t)))
983 do (setf (slot req 'tv-sec) (slot rem 'tv-sec)
984 (slot req 'tv-nsec) (slot rem 'tv-nsec)))))
986 ;;;; sys/time.h
988 ;;; Structure crudely representing a timezone. KLUDGE: This is
989 ;;; obsolete and should never be used.
990 (define-alien-type nil
991 (struct timezone
992 (tz-minuteswest int) ; minutes west of Greenwich
993 (tz-dsttime int))) ; type of dst correction
996 ;; Type of the second argument to `getitimer' and
997 ;; the second and third arguments `setitimer'.
998 (define-alien-type nil
999 (struct itimerval
1000 (it-interval (struct timeval)) ; timer interval
1001 (it-value (struct timeval)))) ; current value
1003 (defconstant itimer-real 0)
1004 (defconstant itimer-virtual 1)
1005 (defconstant itimer-prof 2)
1007 #!-win32
1008 (defun unix-getitimer (which)
1009 #!+sb-doc
1010 "UNIX-GETITIMER returns the INTERVAL and VALUE slots of one of
1011 three system timers (:real :virtual or :profile). On success,
1012 unix-getitimer returns 5 values,
1013 T, it-interval-secs, it-interval-usec, it-value-secs, it-value-usec."
1014 (declare (type (member :real :virtual :profile) which)
1015 (values t
1016 unsigned-byte (mod 1000000)
1017 unsigned-byte (mod 1000000)))
1018 (let ((which (ecase which
1019 (:real itimer-real)
1020 (:virtual itimer-virtual)
1021 (:profile itimer-prof))))
1022 (with-alien ((itv (struct itimerval)))
1023 (syscall* ("sb_getitimer" int (* (struct itimerval)))
1024 (values t
1025 (slot (slot itv 'it-interval) 'tv-sec)
1026 (slot (slot itv 'it-interval) 'tv-usec)
1027 (slot (slot itv 'it-value) 'tv-sec)
1028 (slot (slot itv 'it-value) 'tv-usec))
1029 which (alien-sap (addr itv))))))
1031 #!-win32
1032 (defun unix-setitimer (which int-secs int-usec val-secs val-usec)
1033 #!+sb-doc
1034 "UNIX-SETITIMER sets the INTERVAL and VALUE slots of one of
1035 three system timers (:real :virtual or :profile). A SIGALRM signal
1036 will be delivered VALUE <seconds+microseconds> from now. INTERVAL,
1037 when non-zero, is <seconds+microseconds> to be loaded each time
1038 the timer expires. Setting INTERVAL and VALUE to zero disables
1039 the timer. See the Unix man page for more details. On success,
1040 unix-setitimer returns the old contents of the INTERVAL and VALUE
1041 slots as in unix-getitimer."
1042 (declare (type (member :real :virtual :profile) which)
1043 (type unsigned-byte int-secs val-secs)
1044 (type (integer 0 (1000000)) int-usec val-usec)
1045 (values t
1046 unsigned-byte (mod 1000000)
1047 unsigned-byte (mod 1000000)))
1048 (let ((which (ecase which
1049 (:real itimer-real)
1050 (:virtual itimer-virtual)
1051 (:profile itimer-prof))))
1052 (with-alien ((itvn (struct itimerval))
1053 (itvo (struct itimerval)))
1054 (setf (slot (slot itvn 'it-interval) 'tv-sec ) int-secs
1055 (slot (slot itvn 'it-interval) 'tv-usec) int-usec
1056 (slot (slot itvn 'it-value ) 'tv-sec ) val-secs
1057 (slot (slot itvn 'it-value ) 'tv-usec) val-usec)
1058 (syscall* ("sb_setitimer" int (* (struct timeval))(* (struct timeval)))
1059 (values t
1060 (slot (slot itvo 'it-interval) 'tv-sec)
1061 (slot (slot itvo 'it-interval) 'tv-usec)
1062 (slot (slot itvo 'it-value) 'tv-sec)
1063 (slot (slot itvo 'it-value) 'tv-usec))
1064 which (alien-sap (addr itvn))(alien-sap (addr itvo))))))
1067 ;;; FIXME: Many Unix error code definitions were deleted from the old
1068 ;;; CMU CL source code here, but not in the exports of SB-UNIX. I
1069 ;;; (WHN) hope that someday I'll figure out an automatic way to detect
1070 ;;; unused symbols in package exports, but if I don't, there are
1071 ;;; enough of them all in one place here that they should probably be
1072 ;;; removed by hand.
1074 (defconstant micro-seconds-per-internal-time-unit
1075 (/ 1000000 sb!xc:internal-time-units-per-second))
1077 ;;; UNIX specific code, that has been cleanly separated from the
1078 ;;; Windows build.
1079 #!-win32
1080 (progn
1082 #!-sb-fluid (declaim (inline get-time-of-day))
1083 (defun get-time-of-day ()
1084 #!+sb-doc
1085 "Return the number of seconds and microseconds since the beginning of
1086 the UNIX epoch (January 1st 1970.)"
1087 #!+(or darwin netbsd)
1088 (with-alien ((tv (struct timeval)))
1089 ;; CLH: FIXME! This seems to be a MacOS bug, but on x86-64/darwin,
1090 ;; gettimeofday occasionally fails. passing in a null pointer for the
1091 ;; timezone struct seems to work around the problem. NS notes: Darwin
1092 ;; manpage says the timezone is not used anymore in their implementation
1093 ;; at all.
1094 (syscall* ("sb_gettimeofday" (* (struct timeval))
1095 (* (struct timezone)))
1096 (values (slot tv 'tv-sec)
1097 (slot tv 'tv-usec))
1098 (addr tv)
1099 nil))
1100 #!-(or darwin netbsd)
1101 (with-alien ((tv (struct timeval))
1102 (tz (struct timezone)))
1103 (syscall* ("sb_gettimeofday" (* (struct timeval))
1104 (* (struct timezone)))
1105 (values (slot tv 'tv-sec)
1106 (slot tv 'tv-usec))
1107 (addr tv)
1108 (addr tz))))
1110 (declaim (inline system-internal-run-time
1111 system-real-time-values))
1113 (defun system-real-time-values ()
1114 (multiple-value-bind (sec usec) (get-time-of-day)
1115 (declare (type unsigned-byte sec) (type (unsigned-byte 31) usec))
1116 (values sec (truncate usec micro-seconds-per-internal-time-unit))))
1118 ;; There are two optimizations here that actually matter (on 32-bit
1119 ;; systems): substract the epoch from seconds and milliseconds
1120 ;; separately, as those should remain fixnums for the first 17 years
1121 ;; or so of runtime. Also, avoid doing consing a new bignum if the
1122 ;; result would be = to the last result given.
1124 ;; Note: the next trick would be to spin a separate thread to update
1125 ;; a global value once per internal tick, so each individual call to
1126 ;; get-internal-real-time would be just a memory read... but that is
1127 ;; probably best left for user-level code. ;)
1129 ;; Thanks to James Anderson for the optimization hint.
1131 ;; Yes, it is possible to a computation to be GET-INTERNAL-REAL-TIME
1132 ;; bound.
1134 ;; --NS 2007-04-05
1135 (let ((e-sec 0)
1136 (e-msec 0)
1137 (c-sec 0)
1138 (c-msec 0)
1139 (now 0))
1140 (declare (type sb!kernel:internal-seconds e-sec c-sec)
1141 (type sb!kernel:internal-seconds e-msec c-msec)
1142 (type sb!kernel:internal-time now))
1143 (defun reinit-internal-real-time ()
1144 (setf (values e-sec e-msec) (system-real-time-values)
1145 c-sec 0
1146 c-msec 0))
1147 ;; If two threads call this at the same time, we're still safe, I
1148 ;; believe, as long as NOW is updated before either of C-MSEC or
1149 ;; C-SEC. Same applies to interrupts. --NS
1151 ;; I believe this is almost correct with x86/x86-64 cache
1152 ;; coherency, but if the new value of C-SEC, C-MSEC can become
1153 ;; visible to another CPU without NOW doing the same then it's
1154 ;; unsafe. It's `almost' correct on x86 because writes by other
1155 ;; processors may become visible in any order provided transitity
1156 ;; holds. With at least three cpus, C-MSEC and C-SEC may be from
1157 ;; different threads and an incorrect value may be returned.
1158 ;; Considering that this failure is not detectable by the caller -
1159 ;; it looks like time passes a bit slowly - and that it should be
1160 ;; an extremely rare occurance I'm inclinded to leave it as it is.
1161 ;; --MG
1162 (defun get-internal-real-time ()
1163 (multiple-value-bind (sec msec) (system-real-time-values)
1164 (unless (and (= msec c-msec) (= sec c-sec))
1165 (setf now (+ (* (- sec e-sec)
1166 sb!xc:internal-time-units-per-second)
1167 (- msec e-msec))
1168 c-msec msec
1169 c-sec sec))
1170 now)))
1172 (defun system-internal-run-time ()
1173 (multiple-value-bind (ignore utime-sec utime-usec stime-sec stime-usec)
1174 (unix-fast-getrusage rusage_self)
1175 (declare (ignore ignore)
1176 (type unsigned-byte utime-sec stime-sec)
1177 ;; (Classic CMU CL had these (MOD 1000000) instead, but
1178 ;; at least in Linux 2.2.12, the type doesn't seem to
1179 ;; be documented anywhere and the observed behavior is
1180 ;; to sometimes return 1000000 exactly.)
1181 (type fixnum utime-usec stime-usec))
1182 (let ((result (+ (* (+ utime-sec stime-sec)
1183 sb!xc:internal-time-units-per-second)
1184 (floor (+ utime-usec
1185 stime-usec
1186 (floor micro-seconds-per-internal-time-unit 2))
1187 micro-seconds-per-internal-time-unit))))
1188 result))))
1190 ;;; FIXME, KLUDGE: GET-TIME-OF-DAY used to be UNIX-GETTIMEOFDAY, and had a
1191 ;;; primary return value indicating sucess, and also returned timezone
1192 ;;; information -- though the timezone data was not there on Darwin.
1193 ;;; Now we have GET-TIME-OF-DAY, but it turns out that despite SB-UNIX being
1194 ;;; an implementation package UNIX-GETTIMEOFDAY has users in the wild.
1195 ;;; So we're stuck with it for a while -- maybe delete it towards the end
1196 ;;; of 2009.
1197 (defun unix-gettimeofday ()
1198 (multiple-value-bind (sec usec) (get-time-of-day)
1199 (values t sec usec nil nil)))
1201 ;;;; opendir, readdir, closedir, and dirent-name
1203 (declaim (inline unix-opendir))
1204 (defun unix-opendir (namestring &optional (errorp t))
1205 (let ((dir (alien-funcall
1206 (extern-alien "sb_opendir"
1207 (function system-area-pointer c-string))
1208 namestring)))
1209 (if (zerop (sap-int dir))
1210 (when errorp (simple-perror
1211 (format nil "Error opening directory ~S"
1212 namestring)))
1213 dir)))
1215 (declaim (inline unix-readdir))
1216 (defun unix-readdir (dir &optional (errorp t) namestring)
1217 (let ((ent (alien-funcall
1218 (extern-alien "sb_readdir"
1219 (function system-area-pointer system-area-pointer))
1220 dir))
1221 errno)
1222 (if (zerop (sap-int ent))
1223 (when (and errorp
1224 (not (zerop (setf errno (get-errno)))))
1225 (simple-perror
1226 (format nil "Error reading directory entry~@[ from ~S~]"
1227 namestring)
1228 :errno errno))
1229 ent)))
1231 (declaim (inline unix-closedir))
1232 (defun unix-closedir (dir &optional (errorp t) namestring)
1233 (let ((r (alien-funcall
1234 (extern-alien "sb_closedir" (function int system-area-pointer))
1235 dir)))
1236 (if (minusp r)
1237 (when errorp (simple-perror
1238 (format nil "Error closing directory~@[ ~S~]"
1239 namestring)))
1240 r)))
1242 (declaim (inline unix-dirent-name))
1243 (defun unix-dirent-name (ent)
1244 (alien-funcall
1245 (extern-alien "sb_dirent_name" (function c-string system-area-pointer))
1246 ent))
1248 ;;;; A magic constant for wait3().
1249 ;;;;
1250 ;;;; FIXME: This used to be defined in run-program.lisp as
1251 ;;;; (defconstant wait-wstopped #-svr4 #o177 #+svr4 wait-wuntraced)
1252 ;;;; According to some of the man pages, the #o177 is part of the API
1253 ;;;; for wait3(); that said, under SunOS there is a WSTOPPED thing in
1254 ;;;; the headers that may or may not be the same thing. To be
1255 ;;;; investigated. -- CSR, 2002-03-25
1256 (defconstant wstopped #o177)