xref: /freebsd/lib/libc/gen/popen.c (revision dc36d6f9bb1753f3808552f3afd30eda9a7b206a)
18a16b7a1SPedro F. Giffuni /*-
28a16b7a1SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
38a16b7a1SPedro F. Giffuni  *
458f0484fSRodney W. Grimes  * Copyright (c) 1988, 1993
558f0484fSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
658f0484fSRodney W. Grimes  *
758f0484fSRodney W. Grimes  * This code is derived from software written by Ken Arnold and
858f0484fSRodney W. Grimes  * published in UNIX Review, Vol. 6, No. 8.
958f0484fSRodney W. Grimes  *
1058f0484fSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
1158f0484fSRodney W. Grimes  * modification, are permitted provided that the following conditions
1258f0484fSRodney W. Grimes  * are met:
1358f0484fSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
1458f0484fSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
1558f0484fSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
1658f0484fSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
1758f0484fSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
18fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
1958f0484fSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
2058f0484fSRodney W. Grimes  *    without specific prior written permission.
2158f0484fSRodney W. Grimes  *
2258f0484fSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2358f0484fSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2458f0484fSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2558f0484fSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2658f0484fSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2758f0484fSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2858f0484fSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2958f0484fSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3058f0484fSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3158f0484fSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3258f0484fSRodney W. Grimes  * SUCH DAMAGE.
3358f0484fSRodney W. Grimes  */
3458f0484fSRodney W. Grimes 
35d201fe46SDaniel Eischen #include "namespace.h"
3658f0484fSRodney W. Grimes #include <sys/param.h>
377e7f7ca3SEd Schouten #include <sys/queue.h>
3858f0484fSRodney W. Grimes #include <sys/wait.h>
3958f0484fSRodney W. Grimes 
4058f0484fSRodney W. Grimes #include <signal.h>
4158f0484fSRodney W. Grimes #include <errno.h>
42e9dec775SJilles Tjoelker #include <fcntl.h>
4358f0484fSRodney W. Grimes #include <unistd.h>
4458f0484fSRodney W. Grimes #include <stdio.h>
4558f0484fSRodney W. Grimes #include <stdlib.h>
4658f0484fSRodney W. Grimes #include <string.h>
4758f0484fSRodney W. Grimes #include <paths.h>
4877e2381aSTim J. Robbins #include <pthread.h>
49d201fe46SDaniel Eischen #include "un-namespace.h"
5077e2381aSTim J. Robbins #include "libc_private.h"
5158f0484fSRodney W. Grimes 
527e7f7ca3SEd Schouten struct pid {
537e7f7ca3SEd Schouten 	SLIST_ENTRY(pid) next;
5458f0484fSRodney W. Grimes 	FILE *fp;
5558f0484fSRodney W. Grimes 	pid_t pid;
567e7f7ca3SEd Schouten };
577e7f7ca3SEd Schouten static SLIST_HEAD(, pid) pidlist = SLIST_HEAD_INITIALIZER(pidlist);
5877e2381aSTim J. Robbins static pthread_mutex_t pidlist_mutex = PTHREAD_MUTEX_INITIALIZER;
5977e2381aSTim J. Robbins 
6077e2381aSTim J. Robbins #define	THREAD_LOCK()	if (__isthreaded) _pthread_mutex_lock(&pidlist_mutex)
6177e2381aSTim J. Robbins #define	THREAD_UNLOCK()	if (__isthreaded) _pthread_mutex_unlock(&pidlist_mutex)
6258f0484fSRodney W. Grimes 
6358f0484fSRodney W. Grimes FILE *
popen(const char * command,const char * type)6455b6b759SCraig Rodrigues popen(const char *command, const char *type)
6558f0484fSRodney W. Grimes {
6658f0484fSRodney W. Grimes 	struct pid *cur;
6758f0484fSRodney W. Grimes 	FILE *iop;
68e9dec775SJilles Tjoelker 	int pdes[2], pid, twoway, cloexec;
693945141fSRavi Pokala 	int pdes_unused_in_parent;
700c372549SPeter Wemm 	char *argv[4];
7126c51fb4SMike Smith 	struct pid *p;
7258f0484fSRodney W. Grimes 
73e9dec775SJilles Tjoelker 	cloexec = strchr(type, 'e') != NULL;
74adf6ad9eSPeter Wemm 	/*
75d201fe46SDaniel Eischen 	 * Lite2 introduced two-way popen() pipes using _socketpair().
76adf6ad9eSPeter Wemm 	 * FreeBSD's pipe() is bidirectional, so we use that.
77adf6ad9eSPeter Wemm 	 */
78adf6ad9eSPeter Wemm 	if (strchr(type, '+')) {
79adf6ad9eSPeter Wemm 		twoway = 1;
80adf6ad9eSPeter Wemm 		type = "r+";
81adf6ad9eSPeter Wemm 	} else  {
82adf6ad9eSPeter Wemm 		twoway = 0;
83e9dec775SJilles Tjoelker 		if ((*type != 'r' && *type != 'w') ||
84e9dec775SJilles Tjoelker 		    (type[1] && (type[1] != 'e' || type[2])))
85adf6ad9eSPeter Wemm 			return (NULL);
86adf6ad9eSPeter Wemm 	}
8702804449SJilles Tjoelker 	if (pipe2(pdes, O_CLOEXEC) < 0)
8858f0484fSRodney W. Grimes 		return (NULL);
8958f0484fSRodney W. Grimes 
90035e5608SBruce Evans 	if ((cur = malloc(sizeof(struct pid))) == NULL) {
919233c4d9SJason Evans 		(void)_close(pdes[0]);
929233c4d9SJason Evans 		(void)_close(pdes[1]);
9358f0484fSRodney W. Grimes 		return (NULL);
94035e5608SBruce Evans 	}
9558f0484fSRodney W. Grimes 
963945141fSRavi Pokala 	if (*type == 'r') {
973945141fSRavi Pokala 		iop = fdopen(pdes[0], type);
983945141fSRavi Pokala 		pdes_unused_in_parent = pdes[1];
993945141fSRavi Pokala 	} else {
1003945141fSRavi Pokala 		iop = fdopen(pdes[1], type);
1013945141fSRavi Pokala 		pdes_unused_in_parent = pdes[0];
1023945141fSRavi Pokala 	}
1033945141fSRavi Pokala 	if (iop == NULL) {
1043945141fSRavi Pokala 		(void)_close(pdes[0]);
1053945141fSRavi Pokala 		(void)_close(pdes[1]);
1063945141fSRavi Pokala 		free(cur);
1073945141fSRavi Pokala 		return (NULL);
1083945141fSRavi Pokala 	}
1093945141fSRavi Pokala 
1100c372549SPeter Wemm 	argv[0] = "sh";
1110c372549SPeter Wemm 	argv[1] = "-c";
1120c372549SPeter Wemm 	argv[2] = (char *)command;
1130c372549SPeter Wemm 	argv[3] = NULL;
1140c372549SPeter Wemm 
11577e2381aSTim J. Robbins 	THREAD_LOCK();
1160c372549SPeter Wemm 	switch (pid = vfork()) {
11758f0484fSRodney W. Grimes 	case -1:			/* Error. */
11877e2381aSTim J. Robbins 		THREAD_UNLOCK();
1193945141fSRavi Pokala 		/*
1203945141fSRavi Pokala 		 * The _close() closes the unused end of pdes[], while
1213945141fSRavi Pokala 		 * the fclose() closes the used end of pdes[], *and* cleans
1223945141fSRavi Pokala 		 * up iop.
1233945141fSRavi Pokala 		 */
1243945141fSRavi Pokala 		(void)_close(pdes_unused_in_parent);
125e78bad23SJeffrey Hsu 		free(cur);
1263945141fSRavi Pokala 		(void)fclose(iop);
12758f0484fSRodney W. Grimes 		return (NULL);
12858f0484fSRodney W. Grimes 		/* NOTREACHED */
12958f0484fSRodney W. Grimes 	case 0:				/* Child. */
13058f0484fSRodney W. Grimes 		if (*type == 'r') {
1311174d9f9SJohn Dyson 			/*
132d201fe46SDaniel Eischen 			 * The _dup2() to STDIN_FILENO is repeated to avoid
1335ae9116aSJohn Dyson 			 * writing to pdes[1], which might corrupt the
1345ae9116aSJohn Dyson 			 * parent's copy.  This isn't good enough in
1355ae9116aSJohn Dyson 			 * general, since the _exit() is no return, so
1365ae9116aSJohn Dyson 			 * the compiler is free to corrupt all the local
1375ae9116aSJohn Dyson 			 * variables.
1381174d9f9SJohn Dyson 			 */
1395ae9116aSJohn Dyson 			if (pdes[1] != STDOUT_FILENO) {
140d201fe46SDaniel Eischen 				(void)_dup2(pdes[1], STDOUT_FILENO);
1412b9ac168SBruce Evans 				if (twoway)
142d201fe46SDaniel Eischen 					(void)_dup2(STDOUT_FILENO, STDIN_FILENO);
143e9dec775SJilles Tjoelker 			} else if (twoway && (pdes[1] != STDIN_FILENO)) {
144d201fe46SDaniel Eischen 				(void)_dup2(pdes[1], STDIN_FILENO);
145e9dec775SJilles Tjoelker 				(void)_fcntl(pdes[1], F_SETFD, 0);
14602804449SJilles Tjoelker 			} else
147e9dec775SJilles Tjoelker 				(void)_fcntl(pdes[1], F_SETFD, 0);
14858f0484fSRodney W. Grimes 		} else {
14958f0484fSRodney W. Grimes 			if (pdes[0] != STDIN_FILENO) {
150d201fe46SDaniel Eischen 				(void)_dup2(pdes[0], STDIN_FILENO);
15102804449SJilles Tjoelker 			} else
152e9dec775SJilles Tjoelker 				(void)_fcntl(pdes[0], F_SETFD, 0);
15358f0484fSRodney W. Grimes 		}
1547e7f7ca3SEd Schouten 		SLIST_FOREACH(p, &pidlist, next)
1559233c4d9SJason Evans 			(void)_close(fileno(p->fp));
156d201fe46SDaniel Eischen 		_execve(_PATH_BSHELL, argv, environ);
15758f0484fSRodney W. Grimes 		_exit(127);
15858f0484fSRodney W. Grimes 		/* NOTREACHED */
15958f0484fSRodney W. Grimes 	}
16077e2381aSTim J. Robbins 	THREAD_UNLOCK();
16158f0484fSRodney W. Grimes 
1623945141fSRavi Pokala 	/* Parent. */
1633945141fSRavi Pokala 	(void)_close(pdes_unused_in_parent);
16458f0484fSRodney W. Grimes 
16558f0484fSRodney W. Grimes 	/* Link into list of file descriptors. */
16658f0484fSRodney W. Grimes 	cur->fp = iop;
16758f0484fSRodney W. Grimes 	cur->pid = pid;
16877e2381aSTim J. Robbins 	THREAD_LOCK();
1697e7f7ca3SEd Schouten 	SLIST_INSERT_HEAD(&pidlist, cur, next);
17077e2381aSTim J. Robbins 	THREAD_UNLOCK();
17158f0484fSRodney W. Grimes 
17202804449SJilles Tjoelker 	/*
17302804449SJilles Tjoelker 	 * To guard against undesired fd passing with concurrent calls,
17402804449SJilles Tjoelker 	 * only clear the close-on-exec flag after linking the file into
17502804449SJilles Tjoelker 	 * the list which will cause an explicit close.
17602804449SJilles Tjoelker 	 */
17702804449SJilles Tjoelker 	if (!cloexec)
178*f123c6c4SKyle Evans 		(void)_fcntl(fileno(iop), F_SETFD, 0);
17902804449SJilles Tjoelker 
18058f0484fSRodney W. Grimes 	return (iop);
18158f0484fSRodney W. Grimes }
18258f0484fSRodney W. Grimes 
18358f0484fSRodney W. Grimes /*
18458f0484fSRodney W. Grimes  * pclose --
18558f0484fSRodney W. Grimes  *	Pclose returns -1 if stream is not associated with a `popened' command,
18658f0484fSRodney W. Grimes  *	if already `pclosed', or waitpid returns an error.
18758f0484fSRodney W. Grimes  */
18858f0484fSRodney W. Grimes int
pclose(FILE * iop)18955b6b759SCraig Rodrigues pclose(FILE *iop)
19058f0484fSRodney W. Grimes {
1917e7f7ca3SEd Schouten 	struct pid *cur, *last = NULL;
192adf6ad9eSPeter Wemm 	int pstat;
19358f0484fSRodney W. Grimes 	pid_t pid;
19458f0484fSRodney W. Grimes 
19577e2381aSTim J. Robbins 	/*
19677e2381aSTim J. Robbins 	 * Find the appropriate file pointer and remove it from the list.
19777e2381aSTim J. Robbins 	 */
19877e2381aSTim J. Robbins 	THREAD_LOCK();
1997e7f7ca3SEd Schouten 	SLIST_FOREACH(cur, &pidlist, next) {
20058f0484fSRodney W. Grimes 		if (cur->fp == iop)
20158f0484fSRodney W. Grimes 			break;
2027e7f7ca3SEd Schouten 		last = cur;
2037e7f7ca3SEd Schouten 	}
20477e2381aSTim J. Robbins 	if (cur == NULL) {
20577e2381aSTim J. Robbins 		THREAD_UNLOCK();
20658f0484fSRodney W. Grimes 		return (-1);
20777e2381aSTim J. Robbins 	}
20877e2381aSTim J. Robbins 	if (last == NULL)
2097e7f7ca3SEd Schouten 		SLIST_REMOVE_HEAD(&pidlist, next);
21077e2381aSTim J. Robbins 	else
2113d98b75bSEd Schouten 		SLIST_REMOVE_AFTER(last, next);
21277e2381aSTim J. Robbins 	THREAD_UNLOCK();
21358f0484fSRodney W. Grimes 
214adf6ad9eSPeter Wemm 	(void)fclose(iop);
215adf6ad9eSPeter Wemm 
21658f0484fSRodney W. Grimes 	do {
2179233c4d9SJason Evans 		pid = _wait4(cur->pid, &pstat, 0, (struct rusage *)0);
21858f0484fSRodney W. Grimes 	} while (pid == -1 && errno == EINTR);
21958f0484fSRodney W. Grimes 
22058f0484fSRodney W. Grimes 	free(cur);
22158f0484fSRodney W. Grimes 
222adf6ad9eSPeter Wemm 	return (pid == -1 ? -1 : pstat);
22358f0484fSRodney W. Grimes }
224