2 * Copyright (c) 1988, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software written by Ken Arnold and
6 * published in UNIX Review, Vol. 6, No. 8.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 4. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * @(#)popen.c 8.3 (Berkeley) 5/3/95
33 * $FreeBSD: src/lib/libc/gen/popen.c,v 1.20 2008/07/29 16:29:59 ed Exp $
34 * $DragonFly: src/lib/libc/gen/popen.3,v 1.4 2006/04/08 08:17:06 swildner Exp $
37 #include "namespace.h"
38 #include <sys/param.h>
39 #include <sys/queue.h>
50 #include "un-namespace.h"
51 #include "libc_private.h"
53 extern char **environ
;
56 SLIST_ENTRY(pid
) next
;
60 static SLIST_HEAD(, pid
) pidlist
= SLIST_HEAD_INITIALIZER(pidlist
);
61 static pthread_mutex_t pidlist_mutex
= PTHREAD_MUTEX_INITIALIZER
;
63 #define THREAD_LOCK() if (__isthreaded) _pthread_mutex_lock(&pidlist_mutex)
64 #define THREAD_UNLOCK() if (__isthreaded) _pthread_mutex_unlock(&pidlist_mutex)
67 popen(const char *command
, const char *type
)
71 int pdes
[2], pid
, twoway
;
76 * Lite2 introduced two-way popen() pipes using _socketpair().
77 * FreeBSD's pipe() is bidirectional, so we use that.
79 if (strchr(type
, '+')) {
84 if ((*type
!= 'r' && *type
!= 'w') || type
[1])
90 if ((cur
= malloc(sizeof(struct pid
))) == NULL
) {
102 switch (pid
= vfork()) {
103 case -1: /* Error. */
113 * The _dup2() to STDIN_FILENO is repeated to avoid
114 * writing to pdes[1], which might corrupt the
115 * parent's copy. This isn't good enough in
116 * general, since the _exit() is no return, so
117 * the compiler is free to corrupt all the local
121 if (pdes
[1] != STDOUT_FILENO
) {
122 _dup2(pdes
[1], STDOUT_FILENO
);
125 _dup2(STDOUT_FILENO
, STDIN_FILENO
);
126 } else if (twoway
&& (pdes
[1] != STDIN_FILENO
))
127 _dup2(pdes
[1], STDIN_FILENO
);
129 if (pdes
[0] != STDIN_FILENO
) {
130 _dup2(pdes
[0], STDIN_FILENO
);
135 SLIST_FOREACH(p
, &pidlist
, next
)
136 _close(fileno(p
->fp
));
137 _execve(_PATH_BSHELL
, __DECONST(char * const *, argv
), environ
);
143 /* Parent; assume fdopen can't fail. */
145 iop
= fdopen(pdes
[0], type
);
148 iop
= fdopen(pdes
[1], type
);
152 /* Link into list of file descriptors. */
156 SLIST_INSERT_HEAD(&pidlist
, cur
, next
);
164 * Pclose returns -1 if stream is not associated with a `popened' command,
165 * if already `pclosed', or waitpid returns an error.
170 struct pid
*cur
, *last
= NULL
;
175 * Find the appropriate file pointer and remove it from the list.
178 SLIST_FOREACH(cur
, &pidlist
, next
) {
188 SLIST_REMOVE_HEAD(&pidlist
, next
);
190 SLIST_REMOVE_NEXT(&pidlist
, last
, next
);
196 pid
= _wait4(cur
->pid
, &pstat
, 0, (struct rusage
*)0);
197 } while (pid
== -1 && errno
== EINTR
);
201 return (pid
== -1 ? -1 : pstat
);