xref: /freebsd/contrib/blocklist/port/popenve.c (revision 5f4c09dd85bff675e0ca63c55ea3c517e0fddfcc)
1*5f4c09ddSEd Maste /*	$NetBSD: popenve.c,v 1.2 2015/01/22 03:10:50 christos Exp $	*/
2*5f4c09ddSEd Maste 
3*5f4c09ddSEd Maste /*
4*5f4c09ddSEd Maste  * Copyright (c) 1988, 1993
5*5f4c09ddSEd Maste  *	The Regents of the University of California.  All rights reserved.
6*5f4c09ddSEd Maste  *
7*5f4c09ddSEd Maste  * This code is derived from software written by Ken Arnold and
8*5f4c09ddSEd Maste  * published in UNIX Review, Vol. 6, No. 8.
9*5f4c09ddSEd Maste  *
10*5f4c09ddSEd Maste  * Redistribution and use in source and binary forms, with or without
11*5f4c09ddSEd Maste  * modification, are permitted provided that the following conditions
12*5f4c09ddSEd Maste  * are met:
13*5f4c09ddSEd Maste  * 1. Redistributions of source code must retain the above copyright
14*5f4c09ddSEd Maste  *    notice, this list of conditions and the following disclaimer.
15*5f4c09ddSEd Maste  * 2. Redistributions in binary form must reproduce the above copyright
16*5f4c09ddSEd Maste  *    notice, this list of conditions and the following disclaimer in the
17*5f4c09ddSEd Maste  *    documentation and/or other materials provided with the distribution.
18*5f4c09ddSEd Maste  * 3. Neither the name of the University nor the names of its contributors
19*5f4c09ddSEd Maste  *    may be used to endorse or promote products derived from this software
20*5f4c09ddSEd Maste  *    without specific prior written permission.
21*5f4c09ddSEd Maste  *
22*5f4c09ddSEd Maste  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23*5f4c09ddSEd Maste  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24*5f4c09ddSEd Maste  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25*5f4c09ddSEd Maste  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26*5f4c09ddSEd Maste  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27*5f4c09ddSEd Maste  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28*5f4c09ddSEd Maste  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29*5f4c09ddSEd Maste  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30*5f4c09ddSEd Maste  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31*5f4c09ddSEd Maste  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32*5f4c09ddSEd Maste  * SUCH DAMAGE.
33*5f4c09ddSEd Maste  */
34*5f4c09ddSEd Maste 
35*5f4c09ddSEd Maste #ifdef HAVE_CONFIG_H
36*5f4c09ddSEd Maste #include "config.h"
37*5f4c09ddSEd Maste #endif
38*5f4c09ddSEd Maste 
39*5f4c09ddSEd Maste #include <sys/cdefs.h>
40*5f4c09ddSEd Maste #if defined(LIBC_SCCS) && !defined(lint)
41*5f4c09ddSEd Maste #if 0
42*5f4c09ddSEd Maste static char sccsid[] = "@(#)popen.c	8.3 (Berkeley) 5/3/95";
43*5f4c09ddSEd Maste #else
44*5f4c09ddSEd Maste __RCSID("$NetBSD: popenve.c,v 1.2 2015/01/22 03:10:50 christos Exp $");
45*5f4c09ddSEd Maste #endif
46*5f4c09ddSEd Maste #endif /* LIBC_SCCS and not lint */
47*5f4c09ddSEd Maste 
48*5f4c09ddSEd Maste #include <sys/param.h>
49*5f4c09ddSEd Maste #include <sys/wait.h>
50*5f4c09ddSEd Maste #include <sys/socket.h>
51*5f4c09ddSEd Maste 
52*5f4c09ddSEd Maste #include <assert.h>
53*5f4c09ddSEd Maste #include <errno.h>
54*5f4c09ddSEd Maste #include <paths.h>
55*5f4c09ddSEd Maste #include <signal.h>
56*5f4c09ddSEd Maste #include <stdio.h>
57*5f4c09ddSEd Maste #include <stdlib.h>
58*5f4c09ddSEd Maste #include <string.h>
59*5f4c09ddSEd Maste #include <unistd.h>
60*5f4c09ddSEd Maste #include <fcntl.h>
61*5f4c09ddSEd Maste 
62*5f4c09ddSEd Maste #ifdef __weak_alias
63*5f4c09ddSEd Maste __weak_alias(popen,_popen)
64*5f4c09ddSEd Maste __weak_alias(pclose,_pclose)
65*5f4c09ddSEd Maste #endif
66*5f4c09ddSEd Maste 
67*5f4c09ddSEd Maste static struct pid {
68*5f4c09ddSEd Maste 	struct pid *next;
69*5f4c09ddSEd Maste 	FILE *fp;
70*5f4c09ddSEd Maste #ifdef _REENTRANT
71*5f4c09ddSEd Maste 	int fd;
72*5f4c09ddSEd Maste #endif
73*5f4c09ddSEd Maste 	pid_t pid;
74*5f4c09ddSEd Maste } *pidlist;
75*5f4c09ddSEd Maste 
76*5f4c09ddSEd Maste #ifdef _REENTRANT
77*5f4c09ddSEd Maste static rwlock_t pidlist_lock = RWLOCK_INITIALIZER;
78*5f4c09ddSEd Maste #endif
79*5f4c09ddSEd Maste 
80*5f4c09ddSEd Maste static struct pid *
pdes_get(int * pdes,const char ** type)81*5f4c09ddSEd Maste pdes_get(int *pdes, const char **type)
82*5f4c09ddSEd Maste {
83*5f4c09ddSEd Maste 	struct pid *cur;
84*5f4c09ddSEd Maste 	int flags = strchr(*type, 'e') ? O_CLOEXEC : 0;
85*5f4c09ddSEd Maste 	int serrno;
86*5f4c09ddSEd Maste 
87*5f4c09ddSEd Maste 	if (strchr(*type, '+')) {
88*5f4c09ddSEd Maste #ifndef SOCK_CLOEXEC
89*5f4c09ddSEd Maste #define SOCK_CLOEXEC 0
90*5f4c09ddSEd Maste #endif
91*5f4c09ddSEd Maste 		int stype = flags ? (SOCK_STREAM | SOCK_CLOEXEC) : SOCK_STREAM;
92*5f4c09ddSEd Maste 		*type = "r+";
93*5f4c09ddSEd Maste 		if (socketpair(AF_LOCAL, stype, 0, pdes) < 0)
94*5f4c09ddSEd Maste 			return NULL;
95*5f4c09ddSEd Maste #if SOCK_CLOEXEC == 0
96*5f4c09ddSEd Maste 		fcntl(pdes[0], F_SETFD, FD_CLOEXEC);
97*5f4c09ddSEd Maste 		fcntl(pdes[1], F_SETFD, FD_CLOEXEC);
98*5f4c09ddSEd Maste #endif
99*5f4c09ddSEd Maste 	} else  {
100*5f4c09ddSEd Maste 		*type = strrchr(*type, 'r') ? "r" : "w";
101*5f4c09ddSEd Maste #if SOCK_CLOEXEC != 0
102*5f4c09ddSEd Maste 		if (pipe2(pdes, flags) == -1)
103*5f4c09ddSEd Maste 			return NULL;
104*5f4c09ddSEd Maste #else
105*5f4c09ddSEd Maste 		if (pipe(pdes) == -1)
106*5f4c09ddSEd Maste 			return NULL;
107*5f4c09ddSEd Maste 		fcntl(pdes[0], F_SETFL, fcntl(pdes[0], F_GETFL) | flags);
108*5f4c09ddSEd Maste 		fcntl(pdes[1], F_SETFL, fcntl(pdes[1], F_GETFL) | flags);
109*5f4c09ddSEd Maste #endif
110*5f4c09ddSEd Maste 	}
111*5f4c09ddSEd Maste 
112*5f4c09ddSEd Maste 	if ((cur = malloc(sizeof(*cur))) != NULL)
113*5f4c09ddSEd Maste 		return cur;
114*5f4c09ddSEd Maste 	serrno = errno;
115*5f4c09ddSEd Maste 	(void)close(pdes[0]);
116*5f4c09ddSEd Maste 	(void)close(pdes[1]);
117*5f4c09ddSEd Maste 	errno = serrno;
118*5f4c09ddSEd Maste 	return NULL;
119*5f4c09ddSEd Maste }
120*5f4c09ddSEd Maste 
121*5f4c09ddSEd Maste static void
pdes_child(int * pdes,const char * type)122*5f4c09ddSEd Maste pdes_child(int *pdes, const char *type)
123*5f4c09ddSEd Maste {
124*5f4c09ddSEd Maste 	struct pid *old;
125*5f4c09ddSEd Maste 
126*5f4c09ddSEd Maste 	/* POSIX.2 B.3.2.2 "popen() shall ensure that any streams
127*5f4c09ddSEd Maste 	   from previous popen() calls that remain open in the
128*5f4c09ddSEd Maste 	   parent process are closed in the new child process. */
129*5f4c09ddSEd Maste 	for (old = pidlist; old; old = old->next)
130*5f4c09ddSEd Maste #ifdef _REENTRANT
131*5f4c09ddSEd Maste 		(void)close(old->fd); /* don't allow a flush */
132*5f4c09ddSEd Maste #else
133*5f4c09ddSEd Maste 		(void)close(fileno(old->fp)); /* don't allow a flush */
134*5f4c09ddSEd Maste #endif
135*5f4c09ddSEd Maste 
136*5f4c09ddSEd Maste 	if (type[0] == 'r') {
137*5f4c09ddSEd Maste 		(void)close(pdes[0]);
138*5f4c09ddSEd Maste 		if (pdes[1] != STDOUT_FILENO) {
139*5f4c09ddSEd Maste 			(void)dup2(pdes[1], STDOUT_FILENO);
140*5f4c09ddSEd Maste 			(void)close(pdes[1]);
141*5f4c09ddSEd Maste 		}
142*5f4c09ddSEd Maste 		if (type[1] == '+')
143*5f4c09ddSEd Maste 			(void)dup2(STDOUT_FILENO, STDIN_FILENO);
144*5f4c09ddSEd Maste 	} else {
145*5f4c09ddSEd Maste 		(void)close(pdes[1]);
146*5f4c09ddSEd Maste 		if (pdes[0] != STDIN_FILENO) {
147*5f4c09ddSEd Maste 			(void)dup2(pdes[0], STDIN_FILENO);
148*5f4c09ddSEd Maste 			(void)close(pdes[0]);
149*5f4c09ddSEd Maste 		}
150*5f4c09ddSEd Maste 	}
151*5f4c09ddSEd Maste }
152*5f4c09ddSEd Maste 
153*5f4c09ddSEd Maste static void
pdes_parent(int * pdes,struct pid * cur,pid_t pid,const char * type)154*5f4c09ddSEd Maste pdes_parent(int *pdes, struct pid *cur, pid_t pid, const char *type)
155*5f4c09ddSEd Maste {
156*5f4c09ddSEd Maste 	FILE *iop;
157*5f4c09ddSEd Maste 
158*5f4c09ddSEd Maste 	/* Parent; assume fdopen can't fail. */
159*5f4c09ddSEd Maste 	if (*type == 'r') {
160*5f4c09ddSEd Maste 		iop = fdopen(pdes[0], type);
161*5f4c09ddSEd Maste #ifdef _REENTRANT
162*5f4c09ddSEd Maste 		cur->fd = pdes[0];
163*5f4c09ddSEd Maste #endif
164*5f4c09ddSEd Maste 		(void)close(pdes[1]);
165*5f4c09ddSEd Maste 	} else {
166*5f4c09ddSEd Maste 		iop = fdopen(pdes[1], type);
167*5f4c09ddSEd Maste #ifdef _REENTRANT
168*5f4c09ddSEd Maste 		cur->fd = pdes[1];
169*5f4c09ddSEd Maste #endif
170*5f4c09ddSEd Maste 		(void)close(pdes[0]);
171*5f4c09ddSEd Maste 	}
172*5f4c09ddSEd Maste 
173*5f4c09ddSEd Maste 	/* Link into list of file descriptors. */
174*5f4c09ddSEd Maste 	cur->fp = iop;
175*5f4c09ddSEd Maste 	cur->pid =  pid;
176*5f4c09ddSEd Maste 	cur->next = pidlist;
177*5f4c09ddSEd Maste 	pidlist = cur;
178*5f4c09ddSEd Maste }
179*5f4c09ddSEd Maste 
180*5f4c09ddSEd Maste static void
pdes_error(int * pdes,struct pid * cur)181*5f4c09ddSEd Maste pdes_error(int *pdes, struct pid *cur)
182*5f4c09ddSEd Maste {
183*5f4c09ddSEd Maste 	free(cur);
184*5f4c09ddSEd Maste 	(void)close(pdes[0]);
185*5f4c09ddSEd Maste 	(void)close(pdes[1]);
186*5f4c09ddSEd Maste }
187*5f4c09ddSEd Maste 
188*5f4c09ddSEd Maste FILE *
popenve(const char * cmd,char * const * argv,char * const * envp,const char * type)189*5f4c09ddSEd Maste popenve(const char *cmd, char *const *argv, char *const *envp, const char *type)
190*5f4c09ddSEd Maste {
191*5f4c09ddSEd Maste 	struct pid *cur;
192*5f4c09ddSEd Maste 	int pdes[2], serrno;
193*5f4c09ddSEd Maste 	pid_t pid;
194*5f4c09ddSEd Maste 
195*5f4c09ddSEd Maste 	if ((cur = pdes_get(pdes, &type)) == NULL)
196*5f4c09ddSEd Maste 		return NULL;
197*5f4c09ddSEd Maste 
198*5f4c09ddSEd Maste #ifdef _REENTRANT
199*5f4c09ddSEd Maste 	(void)rwlock_rdlock(&pidlist_lock);
200*5f4c09ddSEd Maste #endif
201*5f4c09ddSEd Maste 	switch (pid = vfork()) {
202*5f4c09ddSEd Maste 	case -1:			/* Error. */
203*5f4c09ddSEd Maste 		serrno = errno;
204*5f4c09ddSEd Maste #ifdef _REENTRANT
205*5f4c09ddSEd Maste 		(void)rwlock_unlock(&pidlist_lock);
206*5f4c09ddSEd Maste #endif
207*5f4c09ddSEd Maste 		pdes_error(pdes, cur);
208*5f4c09ddSEd Maste 		errno = serrno;
209*5f4c09ddSEd Maste 		return NULL;
210*5f4c09ddSEd Maste 		/* NOTREACHED */
211*5f4c09ddSEd Maste 	case 0:				/* Child. */
212*5f4c09ddSEd Maste 		pdes_child(pdes, type);
213*5f4c09ddSEd Maste 		execve(cmd, argv, envp);
214*5f4c09ddSEd Maste 		_exit(127);
215*5f4c09ddSEd Maste 		/* NOTREACHED */
216*5f4c09ddSEd Maste 	}
217*5f4c09ddSEd Maste 
218*5f4c09ddSEd Maste 	pdes_parent(pdes, cur, pid, type);
219*5f4c09ddSEd Maste 
220*5f4c09ddSEd Maste #ifdef _REENTRANT
221*5f4c09ddSEd Maste 	(void)rwlock_unlock(&pidlist_lock);
222*5f4c09ddSEd Maste #endif
223*5f4c09ddSEd Maste 
224*5f4c09ddSEd Maste 	return cur->fp;
225*5f4c09ddSEd Maste }
226*5f4c09ddSEd Maste 
227*5f4c09ddSEd Maste /*
228*5f4c09ddSEd Maste  * pclose --
229*5f4c09ddSEd Maste  *	Pclose returns -1 if stream is not associated with a `popened' command,
230*5f4c09ddSEd Maste  *	if already `pclosed', or waitpid returns an error.
231*5f4c09ddSEd Maste  */
232*5f4c09ddSEd Maste int
pcloseve(FILE * iop)233*5f4c09ddSEd Maste pcloseve(FILE *iop)
234*5f4c09ddSEd Maste {
235*5f4c09ddSEd Maste 	struct pid *cur, *last;
236*5f4c09ddSEd Maste 	int pstat;
237*5f4c09ddSEd Maste 	pid_t pid;
238*5f4c09ddSEd Maste 
239*5f4c09ddSEd Maste #ifdef _REENTRANT
240*5f4c09ddSEd Maste 	rwlock_wrlock(&pidlist_lock);
241*5f4c09ddSEd Maste #endif
242*5f4c09ddSEd Maste 
243*5f4c09ddSEd Maste 	/* Find the appropriate file pointer. */
244*5f4c09ddSEd Maste 	for (last = NULL, cur = pidlist; cur; last = cur, cur = cur->next)
245*5f4c09ddSEd Maste 		if (cur->fp == iop)
246*5f4c09ddSEd Maste 			break;
247*5f4c09ddSEd Maste 	if (cur == NULL) {
248*5f4c09ddSEd Maste #ifdef _REENTRANT
249*5f4c09ddSEd Maste 		(void)rwlock_unlock(&pidlist_lock);
250*5f4c09ddSEd Maste #endif
251*5f4c09ddSEd Maste 		errno = ESRCH;
252*5f4c09ddSEd Maste 		return -1;
253*5f4c09ddSEd Maste 	}
254*5f4c09ddSEd Maste 
255*5f4c09ddSEd Maste 	(void)fclose(iop);
256*5f4c09ddSEd Maste 
257*5f4c09ddSEd Maste 	/* Remove the entry from the linked list. */
258*5f4c09ddSEd Maste 	if (last == NULL)
259*5f4c09ddSEd Maste 		pidlist = cur->next;
260*5f4c09ddSEd Maste 	else
261*5f4c09ddSEd Maste 		last->next = cur->next;
262*5f4c09ddSEd Maste 
263*5f4c09ddSEd Maste #ifdef _REENTRANT
264*5f4c09ddSEd Maste 	(void)rwlock_unlock(&pidlist_lock);
265*5f4c09ddSEd Maste #endif
266*5f4c09ddSEd Maste 
267*5f4c09ddSEd Maste 	do {
268*5f4c09ddSEd Maste 		pid = waitpid(cur->pid, &pstat, 0);
269*5f4c09ddSEd Maste 	} while (pid == -1 && errno == EINTR);
270*5f4c09ddSEd Maste 
271*5f4c09ddSEd Maste 	free(cur);
272*5f4c09ddSEd Maste 
273*5f4c09ddSEd Maste 	return pid == -1 ? -1 : pstat;
274*5f4c09ddSEd Maste }
275