2 * Copyright (c) 1988, 1993, 1994
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 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 __RCSID("$Heimdal: popen.c 10900 2002-04-02 11:57:39Z joda $"
44 #include <sys/types.h>
45 #ifdef TIME_WITH_SYS_TIME
48 #elif defined(HAVE_SYS_TIME_H)
53 #ifdef HAVE_SYS_RESOURCE_H
54 #include <sys/resource.h>
70 * Special version of popen which avoids call to shell. This ensures
71 * no one may create a pipe to a hidden program as a side effect of a
72 * list or dir command.
79 /* return path prepended with ~ftp if that file exists, otherwise
80 * return path unchanged
84 ftp_rooted(const char *path
)
86 static char home
[MaxPathLen
] = "";
87 static char newpath
[MaxPathLen
];
91 if((pwd
= k_getpwnam("ftp")))
92 strlcpy(home
, pwd
->pw_dir
, sizeof(home
));
93 snprintf(newpath
, sizeof(newpath
), "%s/%s", home
, path
);
94 if(access(newpath
, X_OK
))
95 strlcpy(newpath
, path
, sizeof(newpath
));
101 #define MAXGLOBS 1000
104 ftpd_popen(char *program
, char *type
, int do_stderr
, int no_glob
)
108 int argc
, gargc
, pdes
[2], pid
;
109 char **pop
, *argv
[MAXARGS
], *gargv
[MAXGLOBS
];
112 if (strcmp(type
, "r") && strcmp(type
, "w"))
117 /* This function is ugly and should be rewritten, in
118 * modern unices there is no such thing as a maximum
122 fds
= getdtablesize();
123 pids
= (int*)calloc(fds
, sizeof(int));
130 /* break up string into pieces */
132 for (argc
= 0, cp
= program
; argc
< MAXARGS
- 1; cp
= NULL
) {
133 if (!(argv
[argc
++] = strtok_r(cp
, " \t\n", &foo
)))
136 argv
[MAXARGS
- 1] = NULL
;
138 gargv
[0] = (char*)ftp_rooted(argv
[0]);
139 /* glob each piece */
140 for (gargc
= argc
= 1; argv
[argc
] && gargc
< MAXGLOBS
- 1; argc
++) {
142 int flags
= GLOB_BRACE
|GLOB_NOCHECK
|GLOB_QUOTE
|GLOB_TILDE
151 memset(&gl
, 0, sizeof(gl
));
153 glob(argv
[argc
], flags
, NULL
, &gl
) ||
155 gargv
[gargc
++] = strdup(argv
[argc
]);
157 for (pop
= gl
.gl_pathv
;
158 *pop
&& gargc
< MAXGLOBS
- 1;
160 gargv
[gargc
++] = strdup(*pop
);
166 switch(pid
= fork()) {
174 if (pdes
[1] != STDOUT_FILENO
) {
175 dup2(pdes
[1], STDOUT_FILENO
);
179 dup2(STDOUT_FILENO
, STDERR_FILENO
);
182 if (pdes
[0] != STDIN_FILENO
) {
183 dup2(pdes
[0], STDIN_FILENO
);
188 execv(gargv
[0], gargv
);
190 execv(gargv
[0], gargv
);
193 /* parent; assume fdopen can't fail... */
195 iop
= fdopen(pdes
[0], type
);
198 iop
= fdopen(pdes
[1], type
);
201 pids
[fileno(iop
)] = pid
;
204 for (argc
= 1; gargv
[argc
] != NULL
; argc
++)
212 ftpd_pclose(FILE *iop
)
216 sigset_t sigset
, osigset
;
219 * pclose returns -1 if stream is not associated with a
220 * `popened' command, or, if already `pclosed'.
222 if (pids
== 0 || pids
[fdes
= fileno(iop
)] == 0)
225 sigemptyset(&sigset
);
226 sigaddset(&sigset
, SIGINT
);
227 sigaddset(&sigset
, SIGQUIT
);
228 sigaddset(&sigset
, SIGHUP
);
229 sigprocmask(SIG_BLOCK
, &sigset
, &osigset
);
230 while ((pid
= waitpid(pids
[fdes
], &status
, 0)) < 0 && errno
== EINTR
)
232 sigprocmask(SIG_SETMASK
, &osigset
, NULL
);
236 if (WIFEXITED(status
))
237 return (WEXITSTATUS(status
));