1.0.12.37: RUN-PROGRAM now uses execvp(3) to search for executables
[sbcl/simd.git] / src / code / run-program.lisp
blobb1331dea3f31261ba7c87116b03d0a7e85a27794
1 ;;;; RUN-PROGRAM and friends, a facility for running Unix programs
2 ;;;; from inside SBCL
4 ;;;; This software is part of the SBCL system. See the README file for
5 ;;;; more information.
6 ;;;;
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
16 ;;;;
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.
38 ;;;;
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.
48 #-win32
49 (progn
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.
59 ;;;
60 ;;; * (UNIX-ENVIRONMENT-CMUCL-FROM-SBCL '("Bletch=fub" "Noggin" "YES=No!"))
61 ;;; WARNING:
62 ;;; smashing case of "Bletch=fub" in conversion to CMU-CL-style
63 ;;; environment alist
64 ;;; WARNING:
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)
68 (mapcan
69 (lambda (string)
70 (declare (string string))
71 (let ((=-pos (position #\= string :test #'equal)))
72 (if =-pos
73 (list
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 ~
80 environment alist"
81 string))
82 (cons key val)))
83 (warn "no #\\= in ~S, eliding it in CMU-CL-style environment alist"
84 string))))
85 sbcl))
87 ;;; Convert from a CMU CL representation of a Unix environment to a
88 ;;; SBCL representation.
89 (defun unix-environment-sbcl-from-cmucl (cmucl)
90 (mapcar
91 (lambda (cons)
92 (destructuring-bind (key . val) cons
93 (declare (type keyword key) (string val))
94 (concatenate 'simple-string (symbol-name key) "=" val)))
95 cmucl))
97 ;;;; Import wait3(2) from Unix.
99 #-win32
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))
105 #-win32
106 (defun wait3 (&optional do-not-hang check-for-stopped)
107 #+sb-doc
108 "Return any available status information on child process. "
109 (multiple-value-bind (pid status)
110 (c-wait3 (logior (if do-not-hang
111 sb-unix:wnohang
113 (if check-for-stopped
114 sb-unix:wuntraced
117 (cond ((or (minusp pid)
118 (zerop pid))
119 nil)
120 ((eql (ldb (byte 8 0) status)
121 sb-unix:wstopped)
122 (values pid
123 :stopped
124 (ldb (byte 8 8) status)))
125 ((zerop (ldb (byte 7 0) status))
126 (values pid
127 :exited
128 (ldb (byte 8 8) status)))
130 (let ((signal (ldb (byte 7 0) status)))
131 (values pid
132 (if (position signal
133 #.(vector
134 sb-unix:sigstop
135 sb-unix:sigtstp
136 sb-unix:sigttin
137 sb-unix:sigttou))
138 :stopped
139 :signaled)
140 signal
141 (not (zerop (ldb (byte 1 7) status)))))))))
143 ;;;; process control stuff
144 (defvar *active-processes* nil
145 #+sb-doc
146 "List of process structures for all active processes.")
148 #-win32
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)
156 #-win32
157 `(sb-thread::call-with-system-mutex (lambda () ,@body) *active-processes-lock*)
158 #+win32
159 `(progn ,@body))
161 (defstruct (process (:copier nil))
162 pid ; PID of child process
163 %status ; either :RUNNING, :STOPPED, :EXITED, or :SIGNALED
164 exit-code ; either exit code or signal
165 core-dumped ; T if a core image was dumped
166 #-win32 pty ; stream to child's pty, or NIL
167 input ; stream to child's input, or NIL
168 output ; stream from child's output, or NIL
169 error ; stream from child's error output, or NIL
170 status-hook ; closure to call when PROC changes status
171 plist ; a place for clients to stash things
172 cookie) ; list of the number of pipes from the subproc
174 (defmethod print-object ((process process) stream)
175 (print-unreadable-object (process stream :type t)
176 (let ((status (process-status process)))
177 (if (eq :exited status)
178 (format stream "~S ~S" status (process-exit-code process))
179 (format stream "~S ~S" (process-pid process) status)))
180 process))
182 #+sb-doc
183 (setf (documentation 'process-p 'function)
184 "T if OBJECT is a PROCESS, NIL otherwise.")
186 #+sb-doc
187 (setf (documentation 'process-pid 'function) "The pid of the child process.")
189 #+win32
190 (define-alien-routine ("GetExitCodeProcess@8" get-exit-code-process)
192 (handle unsigned) (exit-code unsigned :out))
194 (defun process-status (process)
195 #+sb-doc
196 "Return the current status of PROCESS. The result is one of :RUNNING,
197 :STOPPED, :EXITED, or :SIGNALED."
198 (get-processes-status-changes)
199 (process-%status process))
201 #+sb-doc
202 (setf (documentation 'process-exit-code 'function)
203 "The exit code or the signal of a stopped process.")
205 #+sb-doc
206 (setf (documentation 'process-core-dumped 'function)
207 "T if a core image was dumped by the process.")
209 #+sb-doc
210 (setf (documentation 'process-pty 'function)
211 "The pty stream of the process or NIL.")
213 #+sb-doc
214 (setf (documentation 'process-input 'function)
215 "The input stream of the process or NIL.")
217 #+sb-doc
218 (setf (documentation 'process-output 'function)
219 "The output stream of the process or NIL.")
221 #+sb-doc
222 (setf (documentation 'process-error 'function)
223 "The error stream of the process or NIL.")
225 #+sb-doc
226 (setf (documentation 'process-status-hook 'function)
227 "A function that is called when PROCESS changes its status.
228 The function is called with PROCESS as its only argument.")
230 #+sb-doc
231 (setf (documentation 'process-plist 'function)
232 "A place for clients to stash things.")
234 (defun process-wait (process &optional check-for-stopped)
235 #+sb-doc
236 "Wait for PROCESS to quit running for some reason. When
237 CHECK-FOR-STOPPED is T, also returns when PROCESS is stopped. Returns
238 PROCESS."
239 (loop
240 (case (process-status process)
241 (:running)
242 (:stopped
243 (when check-for-stopped
244 (return)))
246 (when (zerop (car (process-cookie process)))
247 (return))))
248 (sb-sys:serve-all-events 1))
249 process)
251 #-(or hpux win32)
252 ;;; Find the current foreground process group id.
253 (defun find-current-foreground-process (proc)
254 (with-alien ((result sb-alien:int))
255 (multiple-value-bind
256 (wonp error)
257 (sb-unix:unix-ioctl (sb-sys:fd-stream-fd (process-pty proc))
258 sb-unix:TIOCGPGRP
259 (alien-sap (sb-alien:addr result)))
260 (unless wonp
261 (error "TIOCPGRP ioctl failed: ~S" (strerror error)))
262 result))
263 (process-pid proc))
265 #-win32
266 (defun process-kill (process signal &optional (whom :pid))
267 #+sb-doc
268 "Hand SIGNAL to PROCESS. If WHOM is :PID, use the kill Unix system call. If
269 WHOM is :PROCESS-GROUP, use the killpg Unix system call. If WHOM is
270 :PTY-PROCESS-GROUP deliver the signal to whichever process group is
271 currently in the foreground."
272 (let ((pid (ecase whom
273 ((:pid :process-group)
274 (process-pid process))
275 (:pty-process-group
276 #-hpux
277 (find-current-foreground-process process)))))
278 (multiple-value-bind
279 (okay errno)
280 (case whom
281 #+hpux
282 (:pty-process-group
283 (sb-unix:unix-ioctl (sb-sys:fd-stream-fd (process-pty process))
284 sb-unix:TIOCSIGSEND
285 (sb-sys:int-sap
286 signal)))
287 ((:process-group #-hpux :pty-process-group)
288 (sb-unix:unix-killpg pid signal))
290 (sb-unix:unix-kill pid signal)))
291 (cond ((not okay)
292 (values nil errno))
293 ((and (eql pid (process-pid process))
294 (= signal sb-unix:sigcont))
295 (setf (process-%status process) :running)
296 (setf (process-exit-code process) nil)
297 (when (process-status-hook process)
298 (funcall (process-status-hook process) process))
301 t)))))
303 (defun process-alive-p (process)
304 #+sb-doc
305 "Return T if PROCESS is still alive, NIL otherwise."
306 (let ((status (process-status process)))
307 (if (or (eq status :running)
308 (eq status :stopped))
310 nil)))
312 (defun process-close (process)
313 #+sb-doc
314 "Close all streams connected to PROCESS and stop maintaining the
315 status slot."
316 (macrolet ((frob (stream abort)
317 `(when ,stream (close ,stream :abort ,abort))))
318 #-win32
319 (frob (process-pty process) t) ; Don't FLUSH-OUTPUT to dead process,
320 (frob (process-input process) t) ; .. 'cause it will generate SIGPIPE.
321 (frob (process-output process) nil)
322 (frob (process-error process) nil))
323 ;; FIXME: Given that the status-slot is no longer updated,
324 ;; maybe it should be set to :CLOSED, or similar?
325 (with-active-processes-lock ()
326 (setf *active-processes* (delete process *active-processes*)))
327 process)
329 ;;; the handler for SIGCHLD signals that RUN-PROGRAM establishes
330 #-win32
331 (defun sigchld-handler (ignore1 ignore2 ignore3)
332 (declare (ignore ignore1 ignore2 ignore3))
333 (get-processes-status-changes))
335 (defun get-processes-status-changes ()
336 #-win32
337 (loop
338 (multiple-value-bind (pid what code core)
339 (wait3 t t)
340 (unless pid
341 (return))
342 (let ((proc (with-active-processes-lock ()
343 (find pid *active-processes* :key #'process-pid))))
344 (when proc
345 (setf (process-%status proc) what)
346 (setf (process-exit-code proc) code)
347 (setf (process-core-dumped proc) core)
348 (when (process-status-hook proc)
349 (funcall (process-status-hook proc) proc))
350 (when (position what #(:exited :signaled))
351 (with-active-processes-lock ()
352 (setf *active-processes*
353 (delete proc *active-processes*))))))))
354 #+win32
355 (let (exited)
356 (with-active-processes-lock ()
357 (setf *active-processes*
358 (delete-if (lambda (proc)
359 (multiple-value-bind (ok code)
360 (get-exit-code-process (process-pid proc))
361 (when (and (plusp ok) (/= code 259))
362 (setf (process-%status proc) :exited
363 (process-exit-code proc) code)
364 (when (process-status-hook proc)
365 (push proc exited))
366 t)))
367 *active-processes*)))
368 ;; Can't call the hooks before all the processes have been deal
369 ;; with, as calling a hook may cause re-entry to
370 ;; GET-PROCESS-STATUS-CHANGES. That may be OK when using wait3,
371 ;; but in the Windows implementation is would be deeply bad.
372 (dolist (proc exited)
373 (let ((hook (process-status-hook proc)))
374 (when hook
375 (funcall hook proc))))))
377 ;;;; RUN-PROGRAM and close friends
379 ;;; list of file descriptors to close when RUN-PROGRAM exits due to an error
380 (defvar *close-on-error* nil)
382 ;;; list of file descriptors to close when RUN-PROGRAM returns in the parent
383 (defvar *close-in-parent* nil)
385 ;;; list of handlers installed by RUN-PROGRAM. FIXME: nothing seems
386 ;;; to set this.
387 #-win32
388 (defvar *handlers-installed* nil)
390 ;;; Find an unused pty. Return three values: the file descriptor for
391 ;;; the master side of the pty, the file descriptor for the slave side
392 ;;; of the pty, and the name of the tty device for the slave side.
393 #-win32
394 (progn
395 (define-alien-routine ptsname c-string (fd int))
396 (define-alien-routine grantpt boolean (fd int))
397 (define-alien-routine unlockpt boolean (fd int))
399 (defun find-a-pty ()
400 ;; First try to use the Unix98 pty api.
401 (let* ((master-name (coerce (format nil "/dev/ptmx") 'base-string))
402 (master-fd (sb-unix:unix-open master-name
403 sb-unix:o_rdwr
404 #o666)))
405 (when master-fd
406 (grantpt master-fd)
407 (unlockpt master-fd)
408 (let* ((slave-name (ptsname master-fd))
409 (slave-fd (sb-unix:unix-open slave-name
410 sb-unix:o_rdwr
411 #o666)))
412 (when slave-fd
413 (return-from find-a-pty
414 (values master-fd
415 slave-fd
416 slave-name)))
417 (sb-unix:unix-close master-fd))
418 (error "could not find a pty")))
419 ;; No dice, try using the old-school method.
420 (dolist (char '(#\p #\q))
421 (dotimes (digit 16)
422 (let* ((master-name (coerce (format nil "/dev/pty~C~X" char digit)
423 'base-string))
424 (master-fd (sb-unix:unix-open master-name
425 sb-unix:o_rdwr
426 #o666)))
427 (when master-fd
428 (let* ((slave-name (coerce (format nil "/dev/tty~C~X" char digit)
429 'base-string))
430 (slave-fd (sb-unix:unix-open slave-name
431 sb-unix:o_rdwr
432 #o666)))
433 (when slave-fd
434 (return-from find-a-pty
435 (values master-fd
436 slave-fd
437 slave-name)))
438 (sb-unix:unix-close master-fd))))))
439 (error "could not find a pty")))
441 #-win32
442 (defun open-pty (pty cookie)
443 (when pty
444 (multiple-value-bind
445 (master slave name)
446 (find-a-pty)
447 (push master *close-on-error*)
448 (push slave *close-in-parent*)
449 (when (streamp pty)
450 (multiple-value-bind (new-fd errno) (sb-unix:unix-dup master)
451 (unless new-fd
452 (error "couldn't SB-UNIX:UNIX-DUP ~W: ~A" master (strerror errno)))
453 (push new-fd *close-on-error*)
454 (copy-descriptor-to-stream new-fd pty cookie)))
455 (values name
456 (sb-sys:make-fd-stream master :input t :output t
457 :element-type :default
458 :dual-channel-p t)))))
460 (defmacro round-bytes-to-words (n)
461 (let ((bytes-per-word (/ sb-vm:n-machine-word-bits sb-vm:n-byte-bits)))
462 `(logandc2 (the fixnum (+ (the fixnum ,n)
463 (1- ,bytes-per-word))) (1- ,bytes-per-word))))
465 (defun string-list-to-c-strvec (string-list)
466 (let* ((bytes-per-word (/ sb-vm:n-machine-word-bits sb-vm:n-byte-bits))
467 ;; We need an extra for the null, and an extra 'cause exect
468 ;; clobbers argv[-1].
469 (vec-bytes (* bytes-per-word (+ (length string-list) 2)))
470 (octet-vector-list (mapcar (lambda (s)
471 (string-to-octets s :null-terminate t))
472 string-list))
473 (string-bytes (reduce #'+ octet-vector-list
474 :key (lambda (s)
475 (round-bytes-to-words (length s)))))
476 (total-bytes (+ string-bytes vec-bytes))
477 ;; Memory to hold the vector of pointers and all the strings.
478 (vec-sap (sb-sys:allocate-system-memory total-bytes))
479 (string-sap (sap+ vec-sap vec-bytes))
480 ;; Index starts from [1]!
481 (vec-index-offset bytes-per-word))
482 (declare (index string-bytes vec-bytes total-bytes)
483 (sb-sys:system-area-pointer vec-sap string-sap))
484 (dolist (octets octet-vector-list)
485 (declare (type (simple-array (unsigned-byte 8) (*)) octets))
486 (let ((size (length octets)))
487 ;; Copy string.
488 (sb-kernel:copy-ub8-to-system-area octets 0 string-sap 0 size)
489 ;; Put the pointer in the vector.
490 (setf (sap-ref-sap vec-sap vec-index-offset) string-sap)
491 ;; Advance string-sap for the next string.
492 (setf string-sap (sap+ string-sap (round-bytes-to-words (1+ size))))
493 (incf vec-index-offset bytes-per-word)))
494 ;; Final null pointer.
495 (setf (sap-ref-sap vec-sap vec-index-offset) (int-sap 0))
496 (values vec-sap (sap+ vec-sap bytes-per-word) total-bytes)))
498 (defmacro with-c-strvec ((var str-list) &body body)
499 (with-unique-names (sap size)
500 `(multiple-value-bind (,sap ,var ,size)
501 (string-list-to-c-strvec ,str-list)
502 (unwind-protect
503 (progn
504 ,@body)
505 (sb-sys:deallocate-system-memory ,sap ,size)))))
507 (sb-alien:define-alien-routine spawn
508 #-win32 sb-alien:int
509 #+win32 sb-win32::handle
510 (program sb-alien:c-string)
511 (argv (* sb-alien:c-string))
512 (stdin sb-alien:int)
513 (stdout sb-alien:int)
514 (stderr sb-alien:int)
515 (search sb-alien:int)
516 (envp (* sb-alien:c-string))
517 (pty-name sb-alien:c-string)
518 (wait sb-alien:int))
520 ;;; FIXME: There shouldn't be two semiredundant versions of the
521 ;;; documentation. Since this is a public extension function, the
522 ;;; documentation should be in the doc string. So all information from
523 ;;; this comment should be merged into the doc string, and then this
524 ;;; comment can go away.
526 ;;; RUN-PROGRAM uses fork() and execve() to run a different program.
527 ;;; Strange stuff happens to keep the Unix state of the world
528 ;;; coherent.
530 ;;; The child process needs to get its input from somewhere, and send
531 ;;; its output (both standard and error) to somewhere. We have to do
532 ;;; different things depending on where these somewheres really are.
534 ;;; For input, there are five options:
535 ;;; -- T: Just leave fd 0 alone. Pretty simple.
536 ;;; -- "file": Read from the file. We need to open the file and
537 ;;; pull the descriptor out of the stream. The parent should close
538 ;;; this stream after the child is up and running to free any
539 ;;; storage used in the parent.
540 ;;; -- NIL: Same as "file", but use "/dev/null" as the file.
541 ;;; -- :STREAM: Use Unix pipe() to create two descriptors. Use
542 ;;; SB-SYS:MAKE-FD-STREAM to create the output stream on the
543 ;;; writeable descriptor, and pass the readable descriptor to
544 ;;; the child. The parent must close the readable descriptor for
545 ;;; EOF to be passed up correctly.
546 ;;; -- a stream: If it's a fd-stream, just pull the descriptor out
547 ;;; of it. Otherwise make a pipe as in :STREAM, and copy
548 ;;; everything across.
550 ;;; For output, there are five options:
551 ;;; -- T: Leave descriptor 1 alone.
552 ;;; -- "file": dump output to the file.
553 ;;; -- NIL: dump output to /dev/null.
554 ;;; -- :STREAM: return a stream that can be read from.
555 ;;; -- a stream: if it's a fd-stream, use the descriptor in it.
556 ;;; Otherwise, copy stuff from output to stream.
558 ;;; For error, there are all the same options as output plus:
559 ;;; -- :OUTPUT: redirect to the same place as output.
561 ;;; RUN-PROGRAM returns a PROCESS structure for the process if
562 ;;; the fork worked, and NIL if it did not.
563 (defun run-program (program args
564 &key
565 #-win32 (env nil env-p)
566 #-win32 (environment
567 (if env-p
568 (unix-environment-sbcl-from-cmucl env)
569 (posix-environ))
570 environment-p)
571 (wait t)
572 search
573 #-win32 pty
574 input
575 if-input-does-not-exist
576 output
577 (if-output-exists :error)
578 (error :output)
579 (if-error-exists :error)
580 status-hook)
581 #+sb-doc
582 #.(concatenate
583 'string
584 ;; The Texinfoizer is sensitive to whitespace, so mind the
585 ;; placement of the #-win32 pseudosplicings.
586 "RUN-PROGRAM creates a new process specified by the PROGRAM
587 argument. ARGS are the standard arguments that can be passed to a
588 program. For no arguments, use NIL (which means that just the
589 name of the program is passed as arg 0).
591 The program arguments and the environment are encoded using the
592 default external format for streams.
594 RUN-PROGRAM will return a PROCESS structure. See the CMU Common Lisp
595 Users Manual for details about the PROCESS structure."#-win32"
597 Notes about Unix environments (as in the :ENVIRONMENT and :ENV args):
599 - The SBCL implementation of RUN-PROGRAM, like Perl and many other
600 programs, but unlike the original CMU CL implementation, copies
601 the Unix environment by default.
603 - Running Unix programs from a setuid process, or in any other
604 situation where the Unix environment is under the control of someone
605 else, is a mother lode of security problems. If you are contemplating
606 doing this, read about it first. (The Perl community has a lot of good
607 documentation about this and other security issues in script-like
608 programs.)""
610 The &KEY arguments have the following meanings:
611 "#-win32"
612 :ENVIRONMENT
613 a list of STRINGs describing the new Unix environment
614 (as in \"man environ\"). The default is to copy the environment of
615 the current process.
616 :ENV
617 an alternative lossy representation of the new Unix environment,
618 for compatibility with CMU CL""
619 :SEARCH
620 Look for PROGRAM in each of the directories in the child's $PATH
621 environment variable. Otherwise an absolute pathname is required.
622 :WAIT
623 If non-NIL (default), wait until the created process finishes. If
624 NIL, continue running Lisp until the program finishes."#-win32"
625 :PTY
626 Either T, NIL, or a stream. Unless NIL, the subprocess is established
627 under a PTY. If :pty is a stream, all output to this pty is sent to
628 this stream, otherwise the PROCESS-PTY slot is filled in with a stream
629 connected to pty that can read output and write input.""
630 :INPUT
631 Either T, NIL, a pathname, a stream, or :STREAM. If T, the standard
632 input for the current process is inherited. If NIL, "
633 #-win32"/dev/null"#+win32"nul""
634 is used. If a pathname, the file so specified is used. If a stream,
635 all the input is read from that stream and sent to the subprocess. If
636 :STREAM, the PROCESS-INPUT slot is filled in with a stream that sends
637 its output to the process. Defaults to NIL.
638 :IF-INPUT-DOES-NOT-EXIST (when :INPUT is the name of a file)
639 can be one of:
640 :ERROR to generate an error
641 :CREATE to create an empty file
642 NIL (the default) to return NIL from RUN-PROGRAM
643 :OUTPUT
644 Either T, NIL, a pathname, a stream, or :STREAM. If T, the standard
645 output for the current process is inherited. If NIL, "
646 #-win32"/dev/null"#+win32"nul""
647 is used. If a pathname, the file so specified is used. If a stream,
648 all the output from the process is written to this stream. If
649 :STREAM, the PROCESS-OUTPUT slot is filled in with a stream that can
650 be read to get the output. Defaults to NIL.
651 :IF-OUTPUT-EXISTS (when :OUTPUT is the name of a file)
652 can be one of:
653 :ERROR (the default) to generate an error
654 :SUPERSEDE to supersede the file with output from the program
655 :APPEND to append output from the program to the file
656 NIL to return NIL from RUN-PROGRAM, without doing anything
657 :ERROR and :IF-ERROR-EXISTS
658 Same as :OUTPUT and :IF-OUTPUT-EXISTS, except that :ERROR can also be
659 specified as :OUTPUT in which case all error output is routed to the
660 same place as normal output.
661 :STATUS-HOOK
662 This is a function the system calls whenever the status of the
663 process changes. The function takes the process as an argument.")
664 #-win32
665 (when (and env-p environment-p)
666 (error "can't specify :ENV and :ENVIRONMENT simultaneously"))
667 ;; Make sure that the interrupt handler is installed.
668 #-win32
669 (sb-sys:enable-interrupt sb-unix:sigchld #'sigchld-handler)
670 ;; Prepend the program to the argument list.
671 (push (namestring program) args)
672 (labels (;; It's friendly to allow the caller to pass any string
673 ;; designator, but internally we'd like SIMPLE-STRINGs.
675 ;; Huh? We let users pass in symbols and characters for
676 ;; the arguments, but call NAMESTRING on the program
677 ;; name... -- RMK
678 (simplify-args (args)
679 (loop for arg in args
680 as escaped-arg = (escape-arg arg)
681 collect (coerce escaped-arg 'simple-string)))
682 (escape-arg (arg)
683 #-win32 arg
684 ;; Apparently any spaces or double quotes in the arguments
685 ;; need to be escaped on win32.
686 #+win32 (if (position-if
687 (lambda (c) (find c '(#\" #\Space))) arg)
688 (write-to-string arg)
689 arg)))
690 (let (;; Clear various specials used by GET-DESCRIPTOR-FOR to
691 ;; communicate cleanup info.
692 *close-on-error*
693 *close-in-parent*
694 ;; Some other binding used only on non-Win32. FIXME:
695 ;; nothing seems to set this.
696 #-win32 *handlers-installed*
697 ;; Establish PROC at this level so that we can return it.
698 proc
699 (simple-args (simplify-args args))
700 (progname (native-namestring program))
701 ;; Gag.
702 (cookie (list 0)))
703 (unwind-protect
704 ;; Note: despite the WITH-* names, these macros don't
705 ;; expand into UNWIND-PROTECT forms. They're just
706 ;; syntactic sugar to make the rest of the routine slightly
707 ;; easier to read.
708 (macrolet ((with-fd-and-stream-for (((fd stream) which &rest args)
709 &body body)
710 `(multiple-value-bind (,fd ,stream)
711 ,(ecase which
712 ((:input :output)
713 `(get-descriptor-for ,@args))
714 (:error
715 `(if (eq ,(first args) :output)
716 ;; kludge: we expand into
717 ;; hard-coded symbols here.
718 (values stdout output-stream)
719 (get-descriptor-for ,@args))))
720 ,@body))
721 (with-open-pty (((pty-name pty-stream) (pty cookie)) &body body)
722 #+win32 `(declare (ignore ,pty ,cookie))
723 #+win32 `(let (,pty-name ,pty-stream) ,@body)
724 #-win32 `(multiple-value-bind (,pty-name ,pty-stream)
725 (open-pty ,pty ,cookie)
726 ,@body))
727 (with-args-vec ((vec args) &body body)
728 `(with-c-strvec (,vec ,args)
729 ,@body))
730 (with-environment-vec ((vec env) &body body)
731 #+win32 `(let (,vec) ,@body)
732 #-win32 `(with-c-strvec (,vec ,env) ,@body)))
733 (with-fd-and-stream-for ((stdin input-stream) :input
734 input cookie
735 :direction :input
736 :if-does-not-exist if-input-does-not-exist
737 :external-format :default
738 :wait wait)
739 (with-fd-and-stream-for ((stdout output-stream) :output
740 output cookie
741 :direction :output
742 :if-exists if-output-exists
743 :external-format :default)
744 (with-fd-and-stream-for ((stderr error-stream) :error
745 error cookie
746 :direction :output
747 :if-exists if-error-exists
748 :external-format :default)
749 (with-open-pty ((pty-name pty-stream) (pty cookie))
750 ;; Make sure we are not notified about the child
751 ;; death before we have installed the PROCESS
752 ;; structure in *ACTIVE-PROCESSES*.
753 (with-active-processes-lock ()
754 (with-args-vec (args-vec simple-args)
755 (with-environment-vec (environment-vec environment)
756 (let ((child
757 (without-gcing
758 (spawn progname args-vec
759 stdin stdout stderr
760 (if search 1 0)
761 environment-vec pty-name
762 (if wait 1 0)))))
763 (when (minusp child)
764 (error "couldn't fork child process: ~A"
765 (strerror)))
766 (setf proc (apply
767 #'make-process
768 :pid child
769 :input input-stream
770 :output output-stream
771 :error error-stream
772 :status-hook status-hook
773 :cookie cookie
774 #-win32 (list :pty pty-stream
775 :%status :running)
776 #+win32 (if wait
777 (list :%status :exited
778 :exit-code child)
779 (list :%status :running))))
780 (push proc *active-processes*))))))))))
781 (dolist (fd *close-in-parent*)
782 (sb-unix:unix-close fd))
783 (unless proc
784 (dolist (fd *close-on-error*)
785 (sb-unix:unix-close fd))
786 ;; FIXME: nothing seems to set this.
787 #-win32
788 (dolist (handler *handlers-installed*)
789 (sb-sys:remove-fd-handler handler))))
790 (when (and wait proc)
791 (process-wait proc))
792 proc)))
794 ;;; Install a handler for any input that shows up on the file
795 ;;; descriptor. The handler reads the data and writes it to the
796 ;;; stream.
797 (defun copy-descriptor-to-stream (descriptor stream cookie external-format)
798 (incf (car cookie))
799 (let* (handler
800 (buf (make-array 256 :element-type '(unsigned-byte 8)))
801 (read-end 0))
802 (setf handler
803 (sb-sys:add-fd-handler
804 descriptor
805 :input
806 (lambda (fd)
807 (declare (ignore fd))
808 (loop
809 (unless handler
810 (return))
811 (multiple-value-bind
812 (result readable/errno)
813 (sb-unix:unix-select (1+ descriptor)
814 (ash 1 descriptor)
815 0 0 0)
816 (cond ((null result)
817 (error "~@<couldn't select on sub-process: ~
818 ~2I~_~A~:>"
819 (strerror readable/errno)))
820 ((zerop result)
821 (return))))
822 (multiple-value-bind (count errno)
823 (with-pinned-objects (buf)
824 (sb-unix:unix-read descriptor
825 (sap+ (vector-sap buf) read-end)
826 (- (length buf) read-end)))
827 (cond
828 ((and #-win32 (or (and (null count)
829 (eql errno sb-unix:eio))
830 (eql count 0))
831 #+win32 (<= count 0))
832 (sb-sys:remove-fd-handler handler)
833 (setf handler nil)
834 (decf (car cookie))
835 (sb-unix:unix-close descriptor)
836 (unless (zerop read-end)
837 ;; Should this be an END-OF-FILE?
838 (error "~@<non-empty buffer when EOF reached ~
839 while reading from child: ~S~:>" buf))
840 (return))
841 ((null count)
842 (sb-sys:remove-fd-handler handler)
843 (setf handler nil)
844 (decf (car cookie))
845 (error
846 "~@<couldn't read input from sub-process: ~
847 ~2I~_~A~:>"
848 (strerror errno)))
850 (incf read-end count)
851 (let* ((decode-end read-end)
852 (string (handler-case
853 (octets-to-string
854 buf :end read-end
855 :external-format external-format)
856 (end-of-input-in-character (e)
857 (setf decode-end
858 (octet-decoding-error-start e))
859 (octets-to-string
860 buf :end decode-end
861 :external-format external-format)))))
862 (unless (zerop (length string))
863 (write-string string stream)
864 (when (/= decode-end (length buf))
865 (replace buf buf :start2 decode-end :end2 read-end))
866 (decf read-end decode-end))))))))))))
868 ;;; FIXME: something very like this is done in SB-POSIX to treat
869 ;;; streams as file descriptor designators; maybe we can combine these
870 ;;; two? Additionally, as we have a couple of user-defined streams
871 ;;; libraries, maybe we should have a generic function for doing this,
872 ;;; so user-defined streams can play nicely with RUN-PROGRAM (and
873 ;;; maybe also with SB-POSIX)?
874 (defun get-stream-fd-and-external-format (stream direction)
875 (typecase stream
876 (sb-sys:fd-stream
877 (values (sb-sys:fd-stream-fd stream) nil (stream-external-format stream)))
878 (synonym-stream
879 (get-stream-fd-and-external-format
880 (symbol-value (synonym-stream-symbol stream)) direction))
881 (two-way-stream
882 (ecase direction
883 (:input
884 (get-stream-fd-and-external-format
885 (two-way-stream-input-stream stream) direction))
886 (:output
887 (get-stream-fd-and-external-format
888 (two-way-stream-output-stream stream) direction))))))
891 ;;; Find a file descriptor to use for object given the direction.
892 ;;; Returns the descriptor. If object is :STREAM, returns the created
893 ;;; stream as the second value.
894 (defun get-descriptor-for (object
895 cookie
896 &rest keys
897 &key direction (external-format :default) wait
898 &allow-other-keys)
899 (declare (ignore wait)) ;This is explained below.
900 ;; Our use of a temporary file dates back to very old CMUCLs, and
901 ;; was probably only ever intended for use with STRING-STREAMs,
902 ;; which are ordinarily smallish. However, as we've got
903 ;; user-defined stream classes, we can end up trying to copy
904 ;; arbitrarily much data into the temp file, and so are liable to
905 ;; run afoul of disk quotas or to choke on small /tmp file systems.
906 (flet ((make-temp-fd ()
907 (multiple-value-bind (fd name/errno)
908 (sb-unix:unix-mkstemp "/tmp/.run-program-XXXXXX")
909 (unless fd
910 (error "could not open a temporary file: ~A"
911 (strerror name/errno)))
912 #-win32 #|FIXME: should say (logior s_irusr s_iwusr)|#
913 (unless (sb-unix:unix-chmod name/errno #o600)
914 (sb-unix:unix-close fd)
915 (error "failed to chmod the temporary file?!"))
916 (unless (sb-unix:unix-unlink name/errno)
917 (sb-unix:unix-close fd)
918 (error "failed to unlink ~A" name/errno))
919 fd)))
920 (cond ((eq object t)
921 ;; No new descriptor is needed.
922 (values -1 nil))
923 ((eq object nil)
924 ;; Use /dev/null.
925 (multiple-value-bind
926 (fd errno)
927 (sb-unix:unix-open #-win32 #.(coerce "/dev/null" 'base-string)
928 #+win32 #.(coerce "nul" 'base-string)
929 (case direction
930 (:input sb-unix:o_rdonly)
931 (:output sb-unix:o_wronly)
932 (t sb-unix:o_rdwr))
933 #o666)
934 (unless fd
935 (error #-win32 "~@<couldn't open \"/dev/null\": ~2I~_~A~:>"
936 #+win32 "~@<couldn't open \"nul\" device: ~2I~_~A~:>"
937 (strerror errno)))
938 (push fd *close-in-parent*)
939 (values fd nil)))
940 ((eq object :stream)
941 (multiple-value-bind (read-fd write-fd) (sb-unix:unix-pipe)
942 (unless read-fd
943 (error "couldn't create pipe: ~A" (strerror write-fd)))
944 (case direction
945 (:input
946 (push read-fd *close-in-parent*)
947 (push write-fd *close-on-error*)
948 (let ((stream (sb-sys:make-fd-stream write-fd :output t
949 :element-type :default
950 :external-format
951 external-format)))
952 (values read-fd stream)))
953 (:output
954 (push read-fd *close-on-error*)
955 (push write-fd *close-in-parent*)
956 (let ((stream (sb-sys:make-fd-stream read-fd :input t
957 :element-type :default
958 :external-format
959 external-format)))
960 (values write-fd stream)))
962 (sb-unix:unix-close read-fd)
963 (sb-unix:unix-close write-fd)
964 (error "Direction must be either :INPUT or :OUTPUT, not ~S."
965 direction)))))
966 ((or (pathnamep object) (stringp object))
967 (with-open-stream (file (apply #'open object keys))
968 (multiple-value-bind
969 (fd errno)
970 (sb-unix:unix-dup (sb-sys:fd-stream-fd file))
971 (cond (fd
972 (push fd *close-in-parent*)
973 (values fd nil))
975 (error "couldn't duplicate file descriptor: ~A"
976 (strerror errno)))))))
977 ((streamp object)
978 (ecase direction
979 (:input
980 (block nil
981 ;; If we can get an fd for the stream, let the child
982 ;; process use the fd for its descriptor. Otherwise,
983 ;; we copy data from the stream into a temp file, and
984 ;; give the temp file's descriptor to the
985 ;; child.
986 (multiple-value-bind (fd stream format)
987 (get-stream-fd-and-external-format object :input)
988 (declare (ignore format))
989 (when fd
990 (return (values fd stream))))
991 ;; FIXME: if we can't get the file descriptor, since
992 ;; the stream might be interactive or otherwise
993 ;; block-y, we can't know whether we can copy the
994 ;; stream's data to a temp file, so if RUN-PROGRAM was
995 ;; called with :WAIT NIL, we should probably error.
996 ;; However, STRING-STREAMs aren't fd-streams, but
997 ;; they're not prone to blocking; any user-defined
998 ;; streams that "read" from some in-memory data will
999 ;; probably be similar to STRING-STREAMs. So maybe we
1000 ;; should add a STREAM-INTERACTIVE-P generic function
1001 ;; for problems like this? Anyway, the machinery is
1002 ;; here, if you feel like filling in the details.
1004 (when (and (null wait) #<some undetermined criterion>)
1005 (error "~@<don't know how to get an fd for ~A, and so ~
1006 can't ensure that copying its data to the ~
1007 child process won't hang~:>" object))
1009 (let ((fd (make-temp-fd))
1010 (newline (string #\Newline)))
1011 (loop
1012 (multiple-value-bind
1013 (line no-cr)
1014 (read-line object nil nil)
1015 (unless line
1016 (return))
1017 (let ((vector (string-to-octets line)))
1018 (sb-unix:unix-write
1019 fd vector 0 (length vector)))
1020 (if no-cr
1021 (return)
1022 (sb-unix:unix-write fd newline 0 1))))
1023 (sb-unix:unix-lseek fd 0 sb-unix:l_set)
1024 (push fd *close-in-parent*)
1025 (return (values fd nil)))))
1026 (:output
1027 (block nil
1028 ;; Similar to the :input trick above, except we
1029 ;; arrange to copy data from the stream. This is
1030 ;; slightly saner than the input case, since we don't
1031 ;; buffer to a file, but I think we may still lose if
1032 ;; there's unflushed data in the stream buffer and we
1033 ;; give the file descriptor to the child.
1034 (multiple-value-bind (fd stream format)
1035 (get-stream-fd-and-external-format object :output)
1036 (declare (ignore format))
1037 (when fd
1038 (return (values fd stream))))
1039 (multiple-value-bind (read-fd write-fd)
1040 (sb-unix:unix-pipe)
1041 (unless read-fd
1042 (error "couldn't create pipe: ~S" (strerror write-fd)))
1043 (copy-descriptor-to-stream read-fd object cookie
1044 external-format)
1045 (push read-fd *close-on-error*)
1046 (push write-fd *close-in-parent*)
1047 (return (values write-fd nil)))))))
1049 (error "invalid option to RUN-PROGRAM: ~S" object)))))