popen.c revision 1.12.2.1 1 /* $NetBSD: popen.c,v 1.12.2.1 1996/09/19 20:03:27 jtc Exp $ */
2
3 /*
4 * Copyright (c) 1988, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software written by Ken Arnold and
8 * published in UNIX Review, Vol. 6, No. 8.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 */
38
39 #if defined(LIBC_SCCS) && !defined(lint)
40 #if 0
41 static char sccsid[] = "@(#)popen.c 8.1 (Berkeley) 6/4/93";
42 #else
43 static char rcsid[] = "$NetBSD: popen.c,v 1.12.2.1 1996/09/19 20:03:27 jtc Exp $";
44 #endif
45 #endif /* LIBC_SCCS and not lint */
46
47 #include "namespace.h"
48 #include <sys/param.h>
49 #include <sys/wait.h>
50
51 #include <signal.h>
52 #include <errno.h>
53 #include <unistd.h>
54 #include <stdio.h>
55 #include <stdlib.h>
56 #include <string.h>
57 #include <paths.h>
58
59 #ifdef __weak_alias
60 __weak_alias(popen,_popen);
61 __weak_alias(pclose,_pclose);
62 #endif
63
64 static struct pid {
65 struct pid *next;
66 FILE *fp;
67 pid_t pid;
68 } *pidlist;
69
70 FILE *
71 popen(program, type)
72 const char *program;
73 const char *type;
74 {
75 struct pid *cur;
76 FILE *iop;
77 int pdes[2], pid;
78
79 if (*type != 'r' && *type != 'w' || type[1]) {
80 errno = EINVAL;
81 return (NULL);
82 }
83
84 if ((cur = malloc(sizeof(struct pid))) == NULL)
85 return (NULL);
86
87 if (pipe(pdes) < 0) {
88 free(cur);
89 return (NULL);
90 }
91
92 switch (pid = vfork()) {
93 case -1: /* Error. */
94 (void)close(pdes[0]);
95 (void)close(pdes[1]);
96 free(cur);
97 return (NULL);
98 /* NOTREACHED */
99 case 0: /* Child. */
100 if (*type == 'r') {
101 if (pdes[1] != STDOUT_FILENO) {
102 (void)dup2(pdes[1], STDOUT_FILENO);
103 (void)close(pdes[1]);
104 }
105 (void) close(pdes[0]);
106 } else {
107 if (pdes[0] != STDIN_FILENO) {
108 (void)dup2(pdes[0], STDIN_FILENO);
109 (void)close(pdes[0]);
110 }
111 (void)close(pdes[1]);
112 }
113
114 /* POSIX.2 B.3.2.2 "popen() shall ensure that any streams
115 from previous popen() calls that remain open in the
116 parent process are closed in the new child process. */
117 for (cur = pidlist; cur; cur = cur->next)
118 close(fileno(cur->fp));
119
120 execl(_PATH_BSHELL, "sh", "-c", program, NULL);
121 _exit(127);
122 /* NOTREACHED */
123 }
124
125 /* Parent; assume fdopen can't fail. */
126 if (*type == 'r') {
127 iop = fdopen(pdes[0], type);
128 (void)close(pdes[1]);
129 } else {
130 iop = fdopen(pdes[1], type);
131 (void)close(pdes[0]);
132 }
133
134 /* Link into list of file descriptors. */
135 cur->fp = iop;
136 cur->pid = pid;
137 cur->next = pidlist;
138 pidlist = cur;
139
140 return (iop);
141 }
142
143 /*
144 * pclose --
145 * Pclose returns -1 if stream is not associated with a `popened' command,
146 * if already `pclosed', or waitpid returns an error.
147 */
148 int
149 pclose(iop)
150 FILE *iop;
151 {
152 register struct pid *cur, *last;
153 int pstat;
154 pid_t pid;
155
156 (void)fclose(iop);
157
158 /* Find the appropriate file pointer. */
159 for (last = NULL, cur = pidlist; cur; last = cur, cur = cur->next)
160 if (cur->fp == iop)
161 break;
162 if (cur == NULL)
163 return (-1);
164
165 do {
166 pid = waitpid(cur->pid, &pstat, 0);
167 } while (pid == -1 && errno == EINTR);
168
169 /* Remove the entry from the linked list. */
170 if (last == NULL)
171 pidlist = cur->next;
172 else
173 last->next = cur->next;
174 free(cur);
175
176 return (pid == -1 ? -1 : pstat);
177 }
178