1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
|
/* $NetBSD: run.c,v 1.12 2003/10/16 06:26:06 itojun Exp $ */
/*
* Copyright (c) 1991 Carnegie Mellon University
* All Rights Reserved.
*
* Permission to use, copy, modify and distribute this software and its
* documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
* Carnegie Mellon requests users of this software to return to
*
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
* any improvements or extensions that they make and grant Carnegie the rights
* to redistribute these changes.
*/
/* run, runv, runp, runvp -- execute process and wait for it to exit
*
* Usage:
* i = run (file, arg1, arg2, ..., argn, 0);
* i = runv (file, arglist);
* i = runp (file, arg1, arg2, ..., argn, 0);
* i = runvp (file, arglist);
* i = runio (argv, in, out, err);
*
* Run, runv, runp and runvp have argument lists exactly like the
* corresponding routines, execl, execv, execlp, execvp. The run
* routines perform a fork, then:
* IN THE NEW PROCESS, an execl[p] or execv[p] is performed with the
* specified arguments. The process returns with a -1 code if the
* exec was not successful.
* IN THE PARENT PROCESS, the signals SIGQUIT and SIGINT are disabled,
* the process waits until the newly forked process exits, the
* signals are restored to their original status, and the return
* status of the process is analyzed.
* All run routines return: -1 if the exec failed or if the child was
* terminated abnormally; otherwise, the exit code of the child is
* returned.
*
**********************************************************************
* HISTORY
* Revision 1.1 89/10/14 19:53:39 rvb
* Initial revision
*
* Revision 1.2 89/08/03 14:36:46 mja
* Update run() and runp() to use <varargs.h>.
* [89/04/19 mja]
*
* 23-Sep-86 Glenn Marcy (gm0w) at Carnegie-Mellon University
* Merged old runv and runvp modules.
*
* 22-Nov-85 Glenn Marcy (gm0w) at Carnegie-Mellon University
* Added check and kill if child process was stopped.
*
* 30-Apr-85 Steven Shafer (sas) at Carnegie-Mellon University
* Adapted for 4.2 BSD UNIX: Conforms to new signals and wait.
*
* 15-July-82 Mike Accetta (mja) and Neal Friedman (naf)
* at Carnegie-Mellon University
* Added a return(-1) if vfork fails. This should only happen
* if there are no more processes available.
*
* 28-Jan-80 Steven Shafer (sas) at Carnegie-Mellon University
* Added setuid and setgid for system programs' use.
*
* 21-Jan-80 Steven Shafer (sas) at Carnegie-Mellon University
* Changed fork to vfork.
*
* 20-Nov-79 Steven Shafer (sas) at Carnegie-Mellon University
* Created for VAX. The proper way to fork-and-execute a system
* program is now by "runvp" or "runp", with the program name
* (rather than an absolute pathname) as the first argument;
* that way, the "PATH" variable in the environment does the right
* thing. Too bad execvp and execlp (hence runvp and runp) don't
* accept a pathlist as an explicit argument.
*
**********************************************************************
*/
#include <stdio.h>
#include <signal.h>
#include <fcntl.h>
#include <sys/wait.h>
#include "supcdefs.h"
#include "supextern.h"
static int dorun(char *, char **, int);
static char **makearglist(va_list);
static char **
makearglist(va_list ap)
{
static size_t ns = 0;
static char **np = NULL;
char **nnp;
int i = 0;
do {
if (i >= ns) {
nnp = realloc(np, ns + 20);
if (nnp == NULL) {
free(np);
return NULL;
}
np = nnp;
ns += 20;
}
np[i] = va_arg(ap, char *);
}
while (np[i++] != NULL);
return np;
}
int
run(char *name, ...)
{
int val;
va_list ap;
char **argv;
va_start(ap, name);
if ((argv = makearglist(ap)) == NULL) {
va_end(ap);
return -1;
}
val = runv(name, argv);
va_end(ap);
return (val);
}
int
runv(char *name, char **argv)
{
return (dorun(name, argv, 0));
}
int
runp(char *name, ...)
{
int val;
va_list ap;
char **argv;
va_start(ap, name);
if ((argv = makearglist(ap)) == NULL) {
va_end(ap);
return -1;
}
val = runvp(name, argv);
va_end(ap);
return (val);
}
int
runvp(char *name, char **argv)
{
return (dorun(name, argv, 1));
}
static int
dorun(char *name, char **argv, int usepath)
{
int wpid;
int pid;
struct sigaction ignoresig, intsig, quitsig;
int status;
if ((pid = vfork()) == -1)
return (-1); /* no more processes, so exit with error */
if (pid == 0) { /* child process */
setgid(getgid());
setuid(getuid());
if (usepath)
execvp(name, argv);
else
execv(name, argv);
fprintf(stderr, "run: can't exec %s (%s)\n", name,
strerror(errno));
_exit(0377);
}
ignoresig.sa_handler = SIG_IGN; /* ignore INT and QUIT signals */
sigemptyset(&ignoresig.sa_mask);
ignoresig.sa_flags = 0;
sigaction(SIGINT, &ignoresig, &intsig);
sigaction(SIGQUIT, &ignoresig, &quitsig);
do {
wpid = wait3(&status, WUNTRACED, 0);
if (WIFSTOPPED(status)) {
kill(0, SIGTSTP);
wpid = 0;
}
} while (wpid != pid && wpid != -1);
sigaction(SIGINT, &intsig, 0); /* restore signals */
sigaction(SIGQUIT, &quitsig, 0);
if (WIFSIGNALED(status) || WEXITSTATUS(status) == 0377)
return (-1);
return (WEXITSTATUS(status));
}
/*
* Like system(3), but with an argument list and explicit redirections
* that does not use the shell
*/
int
runio(char *const * argv, const char *infile, const char *outfile,
const char *errfile)
{
int fd;
pid_t pid;
int status;
switch ((pid = fork())) {
case -1:
return -1;
case 0:
if (infile) {
(void) close(0);
if ((fd = open(infile, O_RDONLY)) == -1)
exit(1);
if (fd != 0)
(void) dup2(fd, 0);
}
if (outfile) {
(void) close(1);
if ((fd = open(outfile, O_RDWR | O_CREAT | O_TRUNC,
0666)) == -1)
exit(1);
if (fd != 1)
(void) dup2(fd, 1);
}
if (errfile) {
(void) close(2);
if ((fd = open(errfile, O_RDWR | O_CREAT | O_TRUNC,
0666)) == -1)
exit(1);
if (fd != 2)
(void) dup2(fd, 2);
}
execvp(argv[0], argv);
exit(1);
/* NOTREACHED */
return 0;
default:
if (waitpid(pid, &status, 0) == -1)
return -1;
return status;
}
}
/*
* Like runio, but works with filedescriptors instead of filenames
*/
int
runiofd(char *const * argv, const int infile, const int outfile,
const int errfile)
{
pid_t pid;
int status;
switch ((pid = fork())) {
case -1:
return -1;
case 0:
if (infile != 0)
dup2(infile, 0);
if (outfile != 1)
dup2(outfile, 1);
if (errfile != 2)
dup2(errfile, 2);
execvp(argv[0], argv);
exit(1);
/* NOTREACHED */
return 0;
default:
if (waitpid(pid, &status, 0) == -1)
return -1;
return status;
}
}
|