1 ;;;; RUN-PROGRAM and friends, a facility for running Unix programs
4 ;;;; This software is part of the SBCL system. See the README file for
7 ;;;; This software is derived from the CMU CL system, which was
8 ;;;; written at Carnegie Mellon University and released into the
9 ;;;; public domain. The software is in the public domain and is
10 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
11 ;;;; files for more information.
13 (in-package "SB-IMPL") ;(SB-IMPL, not SB!IMPL, since we're built in warm load.)
15 ;;;; hacking the Unix environment
17 ;;;; In the original CMU CL code that LOAD-FOREIGN is derived from, the
18 ;;;; Unix environment (as in "man environ") was represented as an
19 ;;;; alist from keywords to strings, so that e.g. the Unix environment
20 ;;;; "SHELL=/bin/bash" "HOME=/root" "PAGER=less"
21 ;;;; was represented as
22 ;;;; ((:SHELL . "/bin/bash") (:HOME . "/root") (:PAGER "less"))
23 ;;;; This had a few problems in principle: the mapping into
24 ;;;; keyword symbols smashed the case of environment
25 ;;;; variables, and the whole mapping depended on the presence of
26 ;;;; #\= characters in the environment strings. In practice these
27 ;;;; problems weren't hugely important, since conventionally environment
28 ;;;; variables are uppercase strings followed by #\= followed by
29 ;;;; arbitrary data. However, since it's so manifestly not The Right
30 ;;;; Thing to make code which breaks unnecessarily on input which
31 ;;;; doesn't follow what is, after all, only a tradition, we've switched
32 ;;;; formats in SBCL, so that the fundamental environment list
33 ;;;; is just a list of strings, with a one-to-one-correspondence
34 ;;;; to the C-level representation. I.e., in the example above,
35 ;;;; the SBCL representation is
36 ;;;; '("SHELL=/bin/bash" "HOME=/root" "PAGER=less")
37 ;;;; CMU CL's implementation is currently supported to help with porting.
39 ;;;; It's not obvious that this code belongs here (instead of e.g. in
40 ;;;; unix.lisp), since it has only a weak logical connection with
41 ;;;; RUN-PROGRAM. However, physically it's convenient to put it here.
42 ;;;; It's not needed at cold init, so we *can* put it in this
43 ;;;; warm-loaded file. And by putting it in this warm-loaded file, we
44 ;;;; make it easy for it to get to the C-level 'environ' variable.
45 ;;;; which (at least in sbcl-0.6.10 on Red Hat Linux 6.2) is not
46 ;;;; visible at GENESIS time.
50 (define-alien-routine wrapped-environ (* c-string))
51 (defun posix-environ ()
52 "Return the Unix environment (\"man environ\") as a list of SIMPLE-STRINGs."
53 (c-strings->string-list (wrapped-environ))))
55 ;#+win32 (sb-alien:define-alien-routine msvcrt-environ (* c-string))
57 ;;; Convert as best we can from an SBCL representation of a Unix
58 ;;; environment to a CMU CL representation.
60 ;;; * (UNIX-ENVIRONMENT-CMUCL-FROM-SBCL '("Bletch=fub" "Noggin" "YES=No!"))
62 ;;; smashing case of "Bletch=fub" in conversion to CMU-CL-style
65 ;;; no #\= in "Noggin", eliding it in CMU-CL-style environment alist
66 ;;; ((:BLETCH . "fub") (:YES . "No!"))
67 (defun unix-environment-cmucl-from-sbcl (sbcl)
70 (declare (type simple-base-string string))
71 (let ((=-pos (position #\= string :test #'equal)))
74 (let* ((key-as-string (subseq string 0 =-pos))
75 (key-as-upcase-string (string-upcase key-as-string))
76 (key (keywordicate key-as-upcase-string))
77 (val (subseq string (1+ =-pos))))
78 (unless (string= key-as-string key-as-upcase-string)
79 (warn "smashing case of ~S in conversion to CMU-CL-style ~
83 (warn "no #\\= in ~S, eliding it in CMU-CL-style environment alist"
87 ;;; Convert from a CMU CL representation of a Unix environment to a
88 ;;; SBCL representation.
89 (defun unix-environment-sbcl-from-cmucl (cmucl)
92 (destructuring-bind (key . val) cons
93 (declare (type keyword key) (type simple-base-string val))
94 (concatenate 'simple-base-string (symbol-name key) "=" val)))
97 ;;;; Import wait3(2) from Unix.
100 (define-alien-routine ("wait3" c-wait3) sb-alien:int
101 (status sb-alien:int :out)
102 (options sb-alien:int)
103 (rusage sb-alien:int))
106 (defun wait3 (&optional do-not-hang check-for-stopped)
108 "Return any available status information on child process. "
109 (multiple-value-bind (pid status)
110 (c-wait3 (logior (if do-not-hang
113 (if check-for-stopped
117 (cond ((or (minusp pid)
120 ((eql (ldb (byte 8 0) status)
124 (ldb (byte 8 8) status)))
125 ((zerop (ldb (byte 7 0) status))
128 (ldb (byte 8 8) status)))
130 (let ((signal (ldb (byte 7 0) status)))
141 (not (zerop (ldb (byte 1 7) status)))))))))
143 ;;;; process control stuff
144 (defvar *active-processes* nil
146 "List of process structures for all active processes.")
149 (defvar *active-processes-lock*
150 (sb-thread:make-mutex :name "Lock for active processes."))
152 ;;; *ACTIVE-PROCESSES* can be accessed from multiple threads so a
153 ;;; mutex is needed. More importantly the sigchld signal handler also
154 ;;; accesses it, that's why we need without-interrupts.
155 (defmacro with-active-processes-lock (() &body body)
158 (sb-thread:with-mutex (*active-processes-lock*)
163 (defstruct (process (:copier nil))
164 pid ; PID of child process
165 %status ; either :RUNNING, :STOPPED, :EXITED, or :SIGNALED
166 exit-code ; either exit code or signal
167 core-dumped ; T if a core image was dumped
168 #-win32 pty ; stream to child's pty, or NIL
169 input ; stream to child's input, or NIL
170 output ; stream from child's output, or NIL
171 error ; stream from child's error output, or NIL
172 status-hook ; closure to call when PROC changes status
173 plist ; a place for clients to stash things
174 cookie) ; list of the number of pipes from the subproc
176 (defmethod print-object ((process process) stream)
177 (print-unreadable-object (process stream :type t)
178 (let ((status (process-status process)))
179 (if (eq :exited status)
180 (format stream "~S ~S" status (process-exit-code process))
181 (format stream "~S ~S" (process-pid process) status)))
185 (setf (documentation 'process-p 'function)
186 "T if OBJECT is a PROCESS, NIL otherwise.")
189 (setf (documentation 'process-pid 'function) "The pid of the child process.")
192 (define-alien-routine ("GetExitCodeProcess@8" get-exit-code-process)
194 (handle unsigned) (exit-code unsigned :out))
196 (defun process-status (process)
198 "Return the current status of PROCESS. The result is one of :RUNNING,
199 :STOPPED, :EXITED, or :SIGNALED."
200 (get-processes-status-changes)
201 (process-%status process))
204 (setf (documentation 'process-exit-code 'function)
205 "The exit code or the signal of a stopped process.")
208 (setf (documentation 'process-core-dumped 'function)
209 "T if a core image was dumped by the process.")
212 (setf (documentation 'process-pty 'function)
213 "The pty stream of the process or NIL.")
216 (setf (documentation 'process-input 'function)
217 "The input stream of the process or NIL.")
220 (setf (documentation 'process-output 'function)
221 "The output stream of the process or NIL.")
224 (setf (documentation 'process-error 'function)
225 "The error stream of the process or NIL.")
228 (setf (documentation 'process-status-hook 'function)
229 "A function that is called when PROCESS changes its status.
230 The function is called with PROCESS as its only argument.")
233 (setf (documentation 'process-plist 'function)
234 "A place for clients to stash things.")
236 (defun process-wait (process &optional check-for-stopped)
238 "Wait for PROCESS to quit running for some reason. When
239 CHECK-FOR-STOPPED is T, also returns when PROCESS is stopped. Returns
242 (case (process-status process)
245 (when check-for-stopped
248 (when (zerop (car (process-cookie process)))
250 (sb-sys:serve-all-events 1))
254 ;;; Find the current foreground process group id.
255 (defun find-current-foreground-process (proc)
256 (with-alien ((result sb-alien:int))
259 (sb-unix:unix-ioctl (sb-sys:fd-stream-fd (process-pty proc))
261 (alien-sap (sb-alien:addr result)))
263 (error "TIOCPGRP ioctl failed: ~S" (strerror error)))
268 (defun process-kill (process signal &optional (whom :pid))
270 "Hand SIGNAL to PROCESS. If WHOM is :PID, use the kill Unix system call. If
271 WHOM is :PROCESS-GROUP, use the killpg Unix system call. If WHOM is
272 :PTY-PROCESS-GROUP deliver the signal to whichever process group is
273 currently in the foreground."
274 (let ((pid (ecase whom
275 ((:pid :process-group)
276 (process-pid process))
279 (find-current-foreground-process process)))))
285 (sb-unix:unix-ioctl (sb-sys:fd-stream-fd (process-pty process))
289 ((:process-group #-hpux :pty-process-group)
290 (sb-unix:unix-killpg pid signal))
292 (sb-unix:unix-kill pid signal)))
295 ((and (eql pid (process-pid process))
296 (= signal sb-unix:sigcont))
297 (setf (process-%status process) :running)
298 (setf (process-exit-code process) nil)
299 (when (process-status-hook process)
300 (funcall (process-status-hook process) process))
305 (defun process-alive-p (process)
307 "Return T if PROCESS is still alive, NIL otherwise."
308 (let ((status (process-status process)))
309 (if (or (eq status :running)
310 (eq status :stopped))
314 (defun process-close (process)
316 "Close all streams connected to PROCESS and stop maintaining the
318 (macrolet ((frob (stream abort)
319 `(when ,stream (close ,stream :abort ,abort))))
321 (frob (process-pty process) t) ; Don't FLUSH-OUTPUT to dead process,
322 (frob (process-input process) t) ; .. 'cause it will generate SIGPIPE.
323 (frob (process-output process) nil)
324 (frob (process-error process) nil))
325 ;; FIXME: Given that the status-slot is no longer updated,
326 ;; maybe it should be set to :CLOSED, or similar?
327 (with-active-processes-lock ()
328 (setf *active-processes* (delete process *active-processes*)))
331 ;;; the handler for SIGCHLD signals that RUN-PROGRAM establishes
333 (defun sigchld-handler (ignore1 ignore2 ignore3)
334 (declare (ignore ignore1 ignore2 ignore3))
335 (get-processes-status-changes))
337 (defun get-processes-status-changes ()
340 (multiple-value-bind (pid what code core)
344 (let ((proc (with-active-processes-lock ()
345 (find pid *active-processes* :key #'process-pid))))
347 (setf (process-%status proc) what)
348 (setf (process-exit-code proc) code)
349 (setf (process-core-dumped proc) core)
350 (when (process-status-hook proc)
351 (funcall (process-status-hook proc) proc))
352 (when (position what #(:exited :signaled))
353 (with-active-processes-lock ()
354 (setf *active-processes*
355 (delete proc *active-processes*))))))))
358 (with-active-processes-lock ()
359 (setf *active-processes*
360 (delete-if (lambda (proc)
361 (multiple-value-bind (ok code)
362 (get-exit-code-process (process-pid proc))
363 (when (and (plusp ok) (/= code 259))
364 (setf (process-%status proc) :exited
365 (process-exit-code proc) code)
366 (when (process-status-hook proc)
369 *active-processes*)))
370 ;; Can't call the hooks before all the processes have been deal
371 ;; with, as calling a hook may cause re-entry to
372 ;; GET-PROCESS-STATUS-CHANGES. That may be OK when using wait3,
373 ;; but in the Windows implementation is would be deeply bad.
374 (dolist (proc exited)
375 (let ((hook (process-status-hook proc)))
377 (funcall hook proc))))))
379 ;;;; RUN-PROGRAM and close friends
381 ;;; list of file descriptors to close when RUN-PROGRAM exits due to an error
382 (defvar *close-on-error* nil)
384 ;;; list of file descriptors to close when RUN-PROGRAM returns in the parent
385 (defvar *close-in-parent* nil)
387 ;;; list of handlers installed by RUN-PROGRAM
389 (defvar *handlers-installed* nil)
391 ;;; Find an unused pty. Return three values: the file descriptor for
392 ;;; the master side of the pty, the file descriptor for the slave side
393 ;;; of the pty, and the name of the tty device for the slave side.
396 (dolist (char '(#\p #\q))
398 (let* ((master-name (coerce (format nil "/dev/pty~C~X" char digit) 'base-string))
399 (master-fd (sb-unix:unix-open master-name
403 (let* ((slave-name (coerce (format nil "/dev/tty~C~X" char digit) 'base-string))
404 (slave-fd (sb-unix:unix-open slave-name
408 (return-from find-a-pty
412 (sb-unix:unix-close master-fd))))))
413 (error "could not find a pty"))
416 (defun open-pty (pty cookie)
421 (push master *close-on-error*)
422 (push slave *close-in-parent*)
424 (multiple-value-bind (new-fd errno) (sb-unix:unix-dup master)
426 (error "couldn't SB-UNIX:UNIX-DUP ~W: ~A" master (strerror errno)))
427 (push new-fd *close-on-error*)
428 (copy-descriptor-to-stream new-fd pty cookie)))
430 (sb-sys:make-fd-stream master :input t :output t
431 :element-type :default
432 :dual-channel-p t)))))
434 (defmacro round-bytes-to-words (n)
435 `(logand (the fixnum (+ (the fixnum ,n) 3)) (lognot 3)))
437 (defun string-list-to-c-strvec (string-list)
438 ;; Make a pass over STRING-LIST to calculate the amount of memory
439 ;; needed to hold the strvec.
440 (let ((string-bytes 0)
441 ;; We need an extra for the null, and an extra 'cause exect
442 ;; clobbers argv[-1].
443 (vec-bytes (* #.(/ sb-vm::n-machine-word-bits sb-vm::n-byte-bits)
444 (+ (length string-list) 2))))
445 (declare (fixnum string-bytes vec-bytes))
446 (dolist (s string-list)
447 (enforce-type s simple-string)
448 (incf string-bytes (round-bytes-to-words (1+ (length s)))))
449 ;; Now allocate the memory and fill it in.
450 (let* ((total-bytes (+ string-bytes vec-bytes))
451 (vec-sap (sb-sys:allocate-system-memory total-bytes))
452 (string-sap (sap+ vec-sap vec-bytes))
453 (i #.(/ sb-vm::n-machine-word-bits sb-vm::n-byte-bits)))
454 (declare (type (and unsigned-byte fixnum) total-bytes i)
455 (type sb-sys:system-area-pointer vec-sap string-sap))
456 (dolist (s string-list)
457 (declare (simple-string s))
458 (let ((n (length s)))
459 ;; Blast the string into place.
460 (sb-kernel:copy-ub8-to-system-area (the simple-base-string
462 (coerce s 'simple-base-string))
466 ;; Blast the pointer to the string into place.
467 (setf (sap-ref-sap vec-sap i) string-sap)
468 (setf string-sap (sap+ string-sap (round-bytes-to-words (1+ n))))
469 (incf i #.(/ sb-vm::n-machine-word-bits sb-vm::n-byte-bits))))
470 ;; Blast in the last null pointer.
471 (setf (sap-ref-sap vec-sap i) (int-sap 0))
472 (values vec-sap (sap+ vec-sap #.(/ sb-vm::n-machine-word-bits
476 (defmacro with-c-strvec ((var str-list) &body body)
477 (with-unique-names (sap size)
478 `(multiple-value-bind
480 (string-list-to-c-strvec ,str-list)
484 (sb-sys:deallocate-system-memory ,sap ,size)))))
487 (sb-alien:define-alien-routine spawn sb-alien:int
488 (program sb-alien:c-string)
489 (argv (* sb-alien:c-string))
490 (envp (* sb-alien:c-string))
491 (pty-name sb-alien:c-string)
493 (stdout sb-alien:int)
494 (stderr sb-alien:int))
497 (sb-alien:define-alien-routine spawn sb-win32::handle
498 (program sb-alien:c-string)
499 (argv (* sb-alien:c-string))
501 (stdout sb-alien:int)
502 (stderr sb-alien:int)
505 ;;; Is UNIX-FILENAME the name of a file that we can execute?
506 (defun unix-filename-is-executable-p (unix-filename)
507 (let ((filename (coerce unix-filename 'base-string)))
508 (values (and (eq (sb-unix:unix-file-kind filename) :file)
510 (sb-unix:unix-access filename sb-unix:x_ok)))))
512 (defun find-executable-in-search-path (pathname &optional
513 (search-path (posix-getenv "PATH")))
515 "Find the first executable file matching PATHNAME in any of the
516 colon-separated list of pathnames SEARCH-PATH"
517 (let ((program #-win32 pathname
518 #+win32 (merge-pathnames pathname (make-pathname :type "exe"))))
519 (loop for end = (position #-win32 #\: #+win32 #\; search-path
520 :start (if end (1+ end) 0))
521 and start = 0 then (and end (1+ end))
523 ;; <Krystof> the truename of a file naming a directory is the
524 ;; directory, at least until pfdietz comes along and says why
525 ;; that's noncompliant -- CSR, c. 2003-08-10
526 for truename = (probe-file (subseq search-path start end))
527 for fullpath = (when truename
528 (unix-namestring (merge-pathnames program truename)))
529 when (and fullpath (unix-filename-is-executable-p fullpath))
532 ;;; FIXME: There shouldn't be two semiredundant versions of the
533 ;;; documentation. Since this is a public extension function, the
534 ;;; documentation should be in the doc string. So all information from
535 ;;; this comment should be merged into the doc string, and then this
536 ;;; comment can go away.
538 ;;; RUN-PROGRAM uses fork() and execve() to run a different program.
539 ;;; Strange stuff happens to keep the Unix state of the world
542 ;;; The child process needs to get its input from somewhere, and send
543 ;;; its output (both standard and error) to somewhere. We have to do
544 ;;; different things depending on where these somewheres really are.
546 ;;; For input, there are five options:
547 ;;; -- T: Just leave fd 0 alone. Pretty simple.
548 ;;; -- "file": Read from the file. We need to open the file and
549 ;;; pull the descriptor out of the stream. The parent should close
550 ;;; this stream after the child is up and running to free any
551 ;;; storage used in the parent.
552 ;;; -- NIL: Same as "file", but use "/dev/null" as the file.
553 ;;; -- :STREAM: Use Unix pipe() to create two descriptors. Use
554 ;;; SB-SYS:MAKE-FD-STREAM to create the output stream on the
555 ;;; writeable descriptor, and pass the readable descriptor to
556 ;;; the child. The parent must close the readable descriptor for
557 ;;; EOF to be passed up correctly.
558 ;;; -- a stream: If it's a fd-stream, just pull the descriptor out
559 ;;; of it. Otherwise make a pipe as in :STREAM, and copy
560 ;;; everything across.
562 ;;; For output, there are five options:
563 ;;; -- T: Leave descriptor 1 alone.
564 ;;; -- "file": dump output to the file.
565 ;;; -- NIL: dump output to /dev/null.
566 ;;; -- :STREAM: return a stream that can be read from.
567 ;;; -- a stream: if it's a fd-stream, use the descriptor in it.
568 ;;; Otherwise, copy stuff from output to stream.
570 ;;; For error, there are all the same options as output plus:
571 ;;; -- :OUTPUT: redirect to the same place as output.
573 ;;; RUN-PROGRAM returns a PROCESS structure for the process if
574 ;;; the fork worked, and NIL if it did not.
577 (defun run-program (program args
580 (environment (if env-p
581 (unix-environment-sbcl-from-cmucl env)
588 if-input-does-not-exist
590 (if-output-exists :error)
592 (if-error-exists :error)
595 "RUN-PROGRAM creates a new Unix process running the Unix program
596 found in the file specified by the PROGRAM argument. ARGS are the
597 standard arguments that can be passed to a Unix program. For no
598 arguments, use NIL (which means that just the name of the program is
601 RUN-PROGRAM will return a PROCESS structure. See the CMU Common Lisp
602 Users Manual for details about the PROCESS structure.
604 Notes about Unix environments (as in the :ENVIRONMENT and :ENV args):
606 - The SBCL implementation of RUN-PROGRAM, like Perl and many other
607 programs, but unlike the original CMU CL implementation, copies
608 the Unix environment by default.
610 - Running Unix programs from a setuid process, or in any other
611 situation where the Unix environment is under the control of someone
612 else, is a mother lode of security problems. If you are contemplating
613 doing this, read about it first. (The Perl community has a lot of good
614 documentation about this and other security issues in script-like
617 The &KEY arguments have the following meanings:
620 a list of SIMPLE-BASE-STRINGs describing the new Unix environment
621 (as in \"man environ\"). The default is to copy the environment of
624 an alternative lossy representation of the new Unix environment,
625 for compatibility with CMU CL
627 Look for PROGRAM in each of the directories along the $PATH
628 environment variable. Otherwise an absolute pathname is required.
629 (See also FIND-EXECUTABLE-IN-SEARCH-PATH)
631 If non-NIL (default), wait until the created process finishes. If
632 NIL, continue running Lisp until the program finishes.
634 Either T, NIL, or a stream. Unless NIL, the subprocess is established
635 under a PTY. If :pty is a stream, all output to this pty is sent to
636 this stream, otherwise the PROCESS-PTY slot is filled in with a stream
637 connected to pty that can read output and write input.
639 Either T, NIL, a pathname, a stream, or :STREAM. If T, the standard
640 input for the current process is inherited. If NIL, /dev/null
641 is used. If a pathname, the file so specified is used. If a stream,
642 all the input is read from that stream and send to the subprocess. If
643 :STREAM, the PROCESS-INPUT slot is filled in with a stream that sends
644 its output to the process. Defaults to NIL.
645 :IF-INPUT-DOES-NOT-EXIST (when :INPUT is the name of a file)
647 :ERROR to generate an error
648 :CREATE to create an empty file
649 NIL (the default) to return NIL from RUN-PROGRAM
651 Either T, NIL, a pathname, a stream, or :STREAM. If T, the standard
652 output for the current process is inherited. If NIL, /dev/null
653 is used. If a pathname, the file so specified is used. If a stream,
654 all the output from the process is written to this stream. If
655 :STREAM, the PROCESS-OUTPUT slot is filled in with a stream that can
656 be read to get the output. Defaults to NIL.
657 :IF-OUTPUT-EXISTS (when :OUTPUT is the name of a file)
659 :ERROR (the default) to generate an error
660 :SUPERSEDE to supersede the file with output from the program
661 :APPEND to append output from the program to the file
662 NIL to return NIL from RUN-PROGRAM, without doing anything
663 :ERROR and :IF-ERROR-EXISTS
664 Same as :OUTPUT and :IF-OUTPUT-EXISTS, except that :ERROR can also be
665 specified as :OUTPUT in which case all error output is routed to the
666 same place as normal output.
668 This is a function the system calls whenever the status of the
669 process changes. The function takes the process as an argument."
670 (when (and env-p environment-p)
671 (error "can't specify :ENV and :ENVIRONMENT simultaneously"))
672 ;; Make sure that the interrupt handler is installed.
673 (sb-sys:enable-interrupt sb-unix:sigchld #'sigchld-handler)
674 ;; Prepend the program to the argument list.
675 (push (namestring program) args)
676 (let (;; Clear various specials used by GET-DESCRIPTOR-FOR to
677 ;; communicate cleanup info.
681 ;; Establish PROC at this level so that we can return it.
683 ;; It's friendly to allow the caller to pass any string
684 ;; designator, but internally we'd like SIMPLE-STRINGs.
685 (simple-args (mapcar (lambda (x) (coerce x 'simple-string)) args)))
689 (find-executable-in-search-path program)
690 (unix-namestring program)))
693 (error "no such program: ~S" program))
694 (unless (unix-filename-is-executable-p pfile)
695 (error "not executable: ~S" program))
696 (multiple-value-bind (stdin input-stream)
697 (get-descriptor-for input cookie
699 :if-does-not-exist if-input-does-not-exist)
700 (multiple-value-bind (stdout output-stream)
701 (get-descriptor-for output cookie
703 :if-exists if-output-exists)
704 (multiple-value-bind (stderr error-stream)
705 (if (eq error :output)
706 (values stdout output-stream)
707 (get-descriptor-for error cookie
709 :if-exists if-error-exists))
710 (multiple-value-bind (pty-name pty-stream)
711 (open-pty pty cookie)
712 ;; Make sure we are not notified about the child
713 ;; death before we have installed the PROCESS
714 ;; structure in *ACTIVE-PROCESSES*.
715 (with-active-processes-lock ()
716 (with-c-strvec (args-vec simple-args)
717 (with-c-strvec (environment-vec environment)
720 (spawn pfile args-vec environment-vec pty-name
721 stdin stdout stderr))))
722 (when (< child-pid 0)
723 (error "couldn't fork child process: ~A"
725 (setf proc (make-process :pid child-pid
729 :output output-stream
731 :status-hook status-hook
733 (push proc *active-processes*))))))))))
734 (dolist (fd *close-in-parent*)
735 (sb-unix:unix-close fd))
737 (dolist (fd *close-on-error*)
738 (sb-unix:unix-close fd))
739 (dolist (handler *handlers-installed*)
740 (sb-sys:remove-fd-handler handler))))
741 (when (and wait proc)
746 (defun run-program (program args
751 if-input-does-not-exist
753 (if-output-exists :error)
755 (if-error-exists :error)
757 "RUN-PROGRAM creates a new process specified by the PROGRAM
758 argument. ARGS are the standard arguments that can be passed to a
759 program. For no arguments, use NIL (which means that just the name of
760 the program is passed as arg 0).
762 RUN-PROGRAM will either return a PROCESS structure. See the CMU
763 Common Lisp Users Manual for details about the PROCESS structure.
765 The &KEY arguments have the following meanings:
767 Look for PROGRAM in each of the directories along the $PATH
768 environment variable. Otherwise an absolute pathname is required.
769 (See also FIND-EXECUTABLE-IN-SEARCH-PATH)
771 If non-NIL (default), wait until the created process finishes. If
772 NIL, continue running Lisp until the program finishes.
774 Either T, NIL, a pathname, a stream, or :STREAM. If T, the standard
775 input for the current process is inherited. If NIL, /dev/null
776 is used. If a pathname, the file so specified is used. If a stream,
777 all the input is read from that stream and send to the subprocess. If
778 :STREAM, the PROCESS-INPUT slot is filled in with a stream that sends
779 its output to the process. Defaults to NIL.
780 :IF-INPUT-DOES-NOT-EXIST (when :INPUT is the name of a file)
782 :ERROR to generate an error
783 :CREATE to create an empty file
784 NIL (the default) to return NIL from RUN-PROGRAM
786 Either T, NIL, a pathname, a stream, or :STREAM. If T, the standard
787 output for the current process is inherited. If NIL, /dev/null
788 is used. If a pathname, the file so specified is used. If a stream,
789 all the output from the process is written to this stream. If
790 :STREAM, the PROCESS-OUTPUT slot is filled in with a stream that can
791 be read to get the output. Defaults to NIL.
792 :IF-OUTPUT-EXISTS (when :OUTPUT is the name of a file)
794 :ERROR (the default) to generate an error
795 :SUPERSEDE to supersede the file with output from the program
796 :APPEND to append output from the program to the file
797 NIL to return NIL from RUN-PROGRAM, without doing anything
798 :ERROR and :IF-ERROR-EXISTS
799 Same as :OUTPUT and :IF-OUTPUT-EXISTS, except that :ERROR can also be
800 specified as :OUTPUT in which case all error output is routed to the
801 same place as normal output.
803 This is a function the system calls whenever the status of the
804 process changes. The function takes the process as an argument."
805 ;; Prepend the program to the argument list.
806 (push (namestring program) args)
807 (let (;; Clear various specials used by GET-DESCRIPTOR-FOR to
808 ;; communicate cleanup info.
811 ;; Establish PROC at this level so that we can return it.
813 ;; It's friendly to allow the caller to pass any string
814 ;; designator, but internally we'd like SIMPLE-STRINGs.
815 (simple-args (mapcar (lambda (x) (coerce x 'simple-string)) args)))
819 (find-executable-in-search-path program)
820 (unix-namestring program)))
823 (error "No such program: ~S" program))
824 (unless (unix-filename-is-executable-p pfile)
825 (error "Not an executable: ~S" program))
826 (multiple-value-bind (stdin input-stream)
827 (get-descriptor-for input cookie
829 :if-does-not-exist if-input-does-not-exist)
830 (multiple-value-bind (stdout output-stream)
831 (get-descriptor-for output cookie
833 :if-exists if-output-exists)
834 (multiple-value-bind (stderr error-stream)
835 (if (eq error :output)
836 (values stdout output-stream)
837 (get-descriptor-for error cookie
839 :if-exists if-error-exists))
840 (with-c-strvec (args-vec simple-args)
841 (let ((handle (without-gcing
842 (spawn pfile args-vec
846 (error "Couldn't spawn program: ~A" (strerror)))
849 (make-process :%status :exited
851 (make-process :pid handle
854 :output output-stream
856 :status-hook status-hook
857 :cookie cookie))))))))))
858 ;; FIXME: this should probably use PROCESS-WAIT instead instead
859 ;; of special argument to SPAWN.
861 (push proc *active-processes*))
862 (when (and wait status-hook)
863 (funcall status-hook proc))
866 ;;; Install a handler for any input that shows up on the file
867 ;;; descriptor. The handler reads the data and writes it to the
869 (defun copy-descriptor-to-stream (descriptor stream cookie)
871 (let ((string (make-string 256 :element-type 'base-char))
874 (sb-sys:add-fd-handler
877 (declare (ignore fd))
882 (result readable/errno)
883 (sb-unix:unix-select (1+ descriptor)
887 (error "~@<couldn't select on sub-process: ~
889 (strerror readable/errno)))
892 (sb-alien:with-alien ((buf (sb-alien:array
897 (sb-unix:unix-read descriptor
900 (cond (#-win32(or (and (null count)
901 (eql errno sb-unix:eio))
904 (sb-sys:remove-fd-handler handler)
907 (sb-unix:unix-close descriptor)
910 (sb-sys:remove-fd-handler handler)
914 "~@<couldn't read input from sub-process: ~
918 (sb-kernel:copy-ub8-from-system-area
922 (write-string string stream
923 :end count)))))))))))
925 ;;; Find a file descriptor to use for object given the direction.
926 ;;; Returns the descriptor. If object is :STREAM, returns the created
927 ;;; stream as the second value.
928 (defun get-descriptor-for (object
934 ;; No new descriptor is needed.
940 (sb-unix:unix-open #-win32 #.(coerce "/dev/null" 'base-string)
941 #+win32 #.(coerce "nul" 'base-string)
943 (:input sb-unix:o_rdonly)
944 (:output sb-unix:o_wronly)
948 (error "~@<couldn't open \"/dev/null\": ~2I~_~A~:>"
950 (push fd *close-in-parent*)
953 (multiple-value-bind (read-fd write-fd) (sb-unix:unix-pipe)
955 (error "couldn't create pipe: ~A" (strerror write-fd)))
958 (push read-fd *close-in-parent*)
959 (push write-fd *close-on-error*)
960 (let ((stream (sb-sys:make-fd-stream write-fd :output t
961 :element-type :default)))
962 (values read-fd stream)))
964 (push read-fd *close-on-error*)
965 (push write-fd *close-in-parent*)
966 (let ((stream (sb-sys:make-fd-stream read-fd :input t
967 :element-type :default)))
968 (values write-fd stream)))
970 (sb-unix:unix-close read-fd)
971 (sb-unix:unix-close write-fd)
972 (error "Direction must be either :INPUT or :OUTPUT, not ~S."
974 ((or (pathnamep object) (stringp object))
975 (with-open-stream (file (apply #'open object keys))
978 (sb-unix:unix-dup (sb-sys:fd-stream-fd file))
980 (push fd *close-in-parent*)
983 (error "couldn't duplicate file descriptor: ~A"
984 (strerror errno)))))))
985 ((sb-sys:fd-stream-p object)
986 (values (sb-sys:fd-stream-fd object) nil))
990 ;; FIXME: We could use a better way of setting up
991 ;; temporary files, both here and in LOAD-FOREIGN.
994 (error "could not open a temporary file in /tmp"))
995 (let* ((name (coerce (format nil "/tmp/.run-program-~D" count)
997 (fd (sb-unix:unix-open name
998 (logior sb-unix:o_rdwr
1002 (sb-unix:unix-unlink name)
1004 (let ((newline (string #\Newline)))
1006 (multiple-value-bind
1008 (read-line object nil nil)
1013 ;; FIXME: this really should be
1014 ;; (STRING-TO-OCTETS :EXTERNAL-FORMAT ...).
1015 ;; RUN-PROGRAM should take an
1016 ;; external-format argument, which should
1017 ;; be passed down to here. Something
1018 ;; similar should happen on :OUTPUT, too.
1019 (map '(vector (unsigned-byte 8)) #'char-code line)
1023 (sb-unix:unix-write fd newline 0 1)))))
1024 (sb-unix:unix-lseek fd 0 sb-unix:l_set)
1025 (push fd *close-in-parent*)
1026 (return (values fd nil))))))
1028 (multiple-value-bind (read-fd write-fd)
1031 (error "couldn't create pipe: ~S" (strerror write-fd)))
1032 (copy-descriptor-to-stream read-fd object cookie)
1033 (push read-fd *close-on-error*)
1034 (push write-fd *close-in-parent*)
1035 (values write-fd nil)))))
1037 (error "invalid option to RUN-PROGRAM: ~S" object))))