xref: /freebsd/libexec/ftpd/popen.c (revision a6fe717c2a876105123214c05176cd74106fb94b)
1*8a16b7a1SPedro F. Giffuni /*-
2*8a16b7a1SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
3*8a16b7a1SPedro F. Giffuni  *
4ea022d16SRodney W. Grimes  * Copyright (c) 1988, 1993, 1994
5ea022d16SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
6ea022d16SRodney W. Grimes  *
7ea022d16SRodney W. Grimes  * This code is derived from software written by Ken Arnold and
8ea022d16SRodney W. Grimes  * published in UNIX Review, Vol. 6, No. 8.
9ea022d16SRodney W. Grimes  *
10ea022d16SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
11ea022d16SRodney W. Grimes  * modification, are permitted provided that the following conditions
12ea022d16SRodney W. Grimes  * are met:
13ea022d16SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
14ea022d16SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
15ea022d16SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
16ea022d16SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
17ea022d16SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
185efaea4cSChristian Brueffer  * 3. Neither the name of the University nor the names of its contributors
19ea022d16SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
20ea022d16SRodney W. Grimes  *    without specific prior written permission.
21ea022d16SRodney W. Grimes  *
22ea022d16SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23ea022d16SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24ea022d16SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25ea022d16SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26ea022d16SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27ea022d16SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28ea022d16SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29ea022d16SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30ea022d16SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31ea022d16SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32ea022d16SRodney W. Grimes  * SUCH DAMAGE.
33ea022d16SRodney W. Grimes  */
34148531efSWolfram Schneider 
35ea022d16SRodney W. Grimes #include <sys/types.h>
36ea022d16SRodney W. Grimes #include <sys/wait.h>
374dd8b5abSYoshinobu Inoue #include <netinet/in.h>
38ea022d16SRodney W. Grimes 
39ea022d16SRodney W. Grimes #include <errno.h>
40ea022d16SRodney W. Grimes #include <glob.h>
41ea022d16SRodney W. Grimes #include <signal.h>
42ea022d16SRodney W. Grimes #include <stdio.h>
43ea022d16SRodney W. Grimes #include <stdlib.h>
44ea022d16SRodney W. Grimes #include <string.h>
45ea022d16SRodney W. Grimes #include <unistd.h>
46ea022d16SRodney W. Grimes 
47ea022d16SRodney W. Grimes #include "extern.h"
48af85d782SDavid Nugent #include "pathnames.h"
4920d2e1eeSDaniel O'Callaghan #include <syslog.h>
5023ea9f7eSAndrey A. Chernov #include <time.h>
51ea022d16SRodney W. Grimes 
52312c86cfSPaul Traina #define	MAXUSRARGS	100
53312c86cfSPaul Traina #define	MAXGLOBARGS	1000
54312c86cfSPaul Traina 
55ea022d16SRodney W. Grimes /*
56ea022d16SRodney W. Grimes  * Special version of popen which avoids call to shell.  This ensures no one
57ea022d16SRodney W. Grimes  * may create a pipe to a hidden program as a side effect of a list or dir
58ea022d16SRodney W. Grimes  * command.
59ea022d16SRodney W. Grimes  */
60ea022d16SRodney W. Grimes static int *pids;
61ea022d16SRodney W. Grimes static int fds;
62ea022d16SRodney W. Grimes 
63ea022d16SRodney W. Grimes FILE *
ftpd_popen(char * program,char * type)64e4bc453cSWarner Losh ftpd_popen(char *program, char *type)
65ea022d16SRodney W. Grimes {
66ea022d16SRodney W. Grimes 	char *cp;
67ea022d16SRodney W. Grimes 	FILE *iop;
68ea022d16SRodney W. Grimes 	int argc, gargc, pdes[2], pid;
69312c86cfSPaul Traina 	char **pop, *argv[MAXUSRARGS], *gargv[MAXGLOBARGS];
70ea022d16SRodney W. Grimes 
7139ea627dSPaul Traina 	if (((*type != 'r') && (*type != 'w')) || type[1])
72ea022d16SRodney W. Grimes 		return (NULL);
73ea022d16SRodney W. Grimes 
74ea022d16SRodney W. Grimes 	if (!pids) {
75ea022d16SRodney W. Grimes 		if ((fds = getdtablesize()) <= 0)
76ea022d16SRodney W. Grimes 			return (NULL);
776e4fcca0SPedro F. Giffuni 		if ((pids = calloc(fds, sizeof(int))) == NULL)
78ea022d16SRodney W. Grimes 			return (NULL);
79ea022d16SRodney W. Grimes 	}
80ea022d16SRodney W. Grimes 	if (pipe(pdes) < 0)
81ea022d16SRodney W. Grimes 		return (NULL);
82ea022d16SRodney W. Grimes 
83ea022d16SRodney W. Grimes 	/* break up string into pieces */
84b81d7e37SDavid Greenman 	for (argc = 0, cp = program; argc < MAXUSRARGS; cp = NULL) {
85ea022d16SRodney W. Grimes 		if (!(argv[argc++] = strtok(cp, " \t\n")))
86ea022d16SRodney W. Grimes 			break;
87b81d7e37SDavid Greenman 	}
88b81d7e37SDavid Greenman 	argv[argc - 1] = NULL;
89ea022d16SRodney W. Grimes 
90ea022d16SRodney W. Grimes 	/* glob each piece */
91ea022d16SRodney W. Grimes 	gargv[0] = argv[0];
92312c86cfSPaul Traina 	for (gargc = argc = 1; argv[argc] && gargc < (MAXGLOBARGS-1); argc++) {
93ea022d16SRodney W. Grimes 		glob_t gl;
9412da320bSMike Heffner 		int flags = GLOB_BRACE|GLOB_NOCHECK|GLOB_TILDE;
95ea022d16SRodney W. Grimes 
96ea022d16SRodney W. Grimes 		memset(&gl, 0, sizeof(gl));
976d10cb2fSJonathan Lemon 		gl.gl_matchc = MAXGLOBARGS;
9875dc5f1aSMike Heffner 		flags |= GLOB_LIMIT;
99ea022d16SRodney W. Grimes 		if (glob(argv[argc], flags, NULL, &gl))
100ea022d16SRodney W. Grimes 			gargv[gargc++] = strdup(argv[argc]);
101d56cc559SXin LI 		else if (gl.gl_pathc > 0) {
102312c86cfSPaul Traina 			for (pop = gl.gl_pathv; *pop && gargc < (MAXGLOBARGS-1);
103312c86cfSPaul Traina 			     pop++)
104ea022d16SRodney W. Grimes 				gargv[gargc++] = strdup(*pop);
105d56cc559SXin LI 		}
106ea022d16SRodney W. Grimes 		globfree(&gl);
107ea022d16SRodney W. Grimes 	}
108ea022d16SRodney W. Grimes 	gargv[gargc] = NULL;
109ea022d16SRodney W. Grimes 
110ea022d16SRodney W. Grimes 	iop = NULL;
111af85d782SDavid Nugent 	fflush(NULL);
112f3503617SAndrey A. Chernov 	pid = (strcmp(gargv[0], _PATH_LS) == 0) ? fork() : vfork();
113af85d782SDavid Nugent 	switch(pid) {
114ea022d16SRodney W. Grimes 	case -1:			/* error */
115ea022d16SRodney W. Grimes 		(void)close(pdes[0]);
116ea022d16SRodney W. Grimes 		(void)close(pdes[1]);
117ea022d16SRodney W. Grimes 		goto pfree;
118ea022d16SRodney W. Grimes 		/* NOTREACHED */
119ea022d16SRodney W. Grimes 	case 0:				/* child */
120ea022d16SRodney W. Grimes 		if (*type == 'r') {
121ea022d16SRodney W. Grimes 			if (pdes[1] != STDOUT_FILENO) {
122ea022d16SRodney W. Grimes 				dup2(pdes[1], STDOUT_FILENO);
123ea022d16SRodney W. Grimes 				(void)close(pdes[1]);
124ea022d16SRodney W. Grimes 			}
125ea022d16SRodney W. Grimes 			dup2(STDOUT_FILENO, STDERR_FILENO); /* stderr too! */
126ea022d16SRodney W. Grimes 			(void)close(pdes[0]);
127ea022d16SRodney W. Grimes 		} else {
128ea022d16SRodney W. Grimes 			if (pdes[0] != STDIN_FILENO) {
129ea022d16SRodney W. Grimes 				dup2(pdes[0], STDIN_FILENO);
130ea022d16SRodney W. Grimes 				(void)close(pdes[0]);
131ea022d16SRodney W. Grimes 			}
132ea022d16SRodney W. Grimes 			(void)close(pdes[1]);
133ea022d16SRodney W. Grimes 		}
1343e65b9c6SColin Percival 		/* Drop privileges before proceeding */
1353e65b9c6SColin Percival 		if (getuid() != geteuid() && setuid(geteuid()) < 0)
1363e65b9c6SColin Percival 			_exit(1);
137af85d782SDavid Nugent 		if (strcmp(gargv[0], _PATH_LS) == 0) {
138af85d782SDavid Nugent 			/* Reset getopt for ls_main() */
139af85d782SDavid Nugent 			optreset = optind = optopt = 1;
14020d2e1eeSDaniel O'Callaghan 			/* Close syslogging to remove pwd.db missing msgs */
14120d2e1eeSDaniel O'Callaghan 			closelog();
14223ea9f7eSAndrey A. Chernov 			/* Trigger to sense new /etc/localtime after chroot */
14323ea9f7eSAndrey A. Chernov 			if (getenv("TZ") == NULL) {
14423ea9f7eSAndrey A. Chernov 				setenv("TZ", "", 0);
14523ea9f7eSAndrey A. Chernov 				tzset();
14623ea9f7eSAndrey A. Chernov 				unsetenv("TZ");
14723ea9f7eSAndrey A. Chernov 				tzset();
14823ea9f7eSAndrey A. Chernov 			}
149af85d782SDavid Nugent 			exit(ls_main(gargc, gargv));
150af85d782SDavid Nugent 		}
15123ea9f7eSAndrey A. Chernov 		execv(gargv[0], gargv);
152ea022d16SRodney W. Grimes 		_exit(1);
153ea022d16SRodney W. Grimes 	}
154ea022d16SRodney W. Grimes 	/* parent; assume fdopen can't fail...  */
155ea022d16SRodney W. Grimes 	if (*type == 'r') {
156ea022d16SRodney W. Grimes 		iop = fdopen(pdes[0], type);
157ea022d16SRodney W. Grimes 		(void)close(pdes[1]);
158ea022d16SRodney W. Grimes 	} else {
159ea022d16SRodney W. Grimes 		iop = fdopen(pdes[1], type);
160ea022d16SRodney W. Grimes 		(void)close(pdes[0]);
161ea022d16SRodney W. Grimes 	}
162ea022d16SRodney W. Grimes 	pids[fileno(iop)] = pid;
163ea022d16SRodney W. Grimes 
164ea022d16SRodney W. Grimes pfree:	for (argc = 1; gargv[argc] != NULL; argc++)
165ea022d16SRodney W. Grimes 		free(gargv[argc]);
166ea022d16SRodney W. Grimes 
167ea022d16SRodney W. Grimes 	return (iop);
168ea022d16SRodney W. Grimes }
169ea022d16SRodney W. Grimes 
170ea022d16SRodney W. Grimes int
ftpd_pclose(FILE * iop)171e4bc453cSWarner Losh ftpd_pclose(FILE *iop)
172ea022d16SRodney W. Grimes {
173ea022d16SRodney W. Grimes 	int fdes, omask, status;
174ea022d16SRodney W. Grimes 	pid_t pid;
175ea022d16SRodney W. Grimes 
176ea022d16SRodney W. Grimes 	/*
177ea022d16SRodney W. Grimes 	 * pclose returns -1 if stream is not associated with a
178ea022d16SRodney W. Grimes 	 * `popened' command, or, if already `pclosed'.
179ea022d16SRodney W. Grimes 	 */
1806e4fcca0SPedro F. Giffuni 	if (pids == NULL || pids[fdes = fileno(iop)] == 0)
181ea022d16SRodney W. Grimes 		return (-1);
182ea022d16SRodney W. Grimes 	(void)fclose(iop);
183ea022d16SRodney W. Grimes 	omask = sigblock(sigmask(SIGINT)|sigmask(SIGQUIT)|sigmask(SIGHUP));
184ea022d16SRodney W. Grimes 	while ((pid = waitpid(pids[fdes], &status, 0)) < 0 && errno == EINTR)
185ea022d16SRodney W. Grimes 		continue;
186ea022d16SRodney W. Grimes 	(void)sigsetmask(omask);
187ea022d16SRodney W. Grimes 	pids[fdes] = 0;
188ea022d16SRodney W. Grimes 	if (pid < 0)
189ea022d16SRodney W. Grimes 		return (pid);
190ea022d16SRodney W. Grimes 	if (WIFEXITED(status))
191ea022d16SRodney W. Grimes 		return (WEXITSTATUS(status));
192ea022d16SRodney W. Grimes 	return (1);
193ea022d16SRodney W. Grimes }
194