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
|
static char rcsid[] = "$Id: system.c,v 1.22 1995/02/04 01:37:57 hardy Exp $";
/*
* system.c - system(3) routines for Essence system.
*
* Darren Hardy, hardy@cs.colorado.edu, February 1994
*
* ----------------------------------------------------------------------
* Copyright (c) 1994, 1995. All rights reserved.
*
* Mic Bowman of Transarc Corporation.
* Peter Danzig of the University of Southern California.
* Darren R. Hardy of the University of Colorado at Boulder.
* Udi Manber of the University of Arizona.
* Michael F. Schwartz of the University of Colorado at Boulder.
*
* This copyright notice applies to all code in Harvest other than
* subsystems developed elsewhere, which contain other copyright notices
* in their source text.
*
* The Harvest software was developed by the Internet Research Task
* Force Research Group on Resource Discovery (IRTF-RD). The Harvest
* software may be used for academic, research, government, and internal
* business purposes without charge. If you wish to sell or distribute
* the Harvest software to commercial clients or partners, you must
* license the software. See
* http://harvest.cs.colorado.edu/harvest/copyright,licensing.html#licensing.
*
* The Harvest software is provided ``as is'', without express or
* implied warranty, and with no support nor obligation to assist in its
* use, correction, modification or enhancement. We assume no liability
* with respect to the infringement of copyrights, trade secrets, or any
* patents, and are not responsible for consequential damages. Proper
* use of the Harvest software is entirely the responsibility of the user.
*
* For those who are using Harvest for non-commercial purposes, you may
* make derivative works, subject to the following constraints:
*
* - You must include the above copyright notice and these accompanying
* paragraphs in all forms of derivative works, and any documentation
* and other materials related to such distribution and use acknowledge
* that the software was developed at the above institutions.
*
* - You must notify IRTF-RD regarding your distribution of the
* derivative work.
*
* - You must clearly notify users that your are distributing a modified
* version and not the original Harvest software.
*
* - Any derivative product is also subject to the restrictions of the
* copyright, including distribution and use limitations.
*/
#include <stdlib.h>
#include <unistd.h>
#include <sys/wait.h>
#include <signal.h>
#include <fcntl.h>
#include "util.h"
#ifdef HAVE_SETRLIMIT
#include <sys/time.h>
#include <sys/resource.h>
#endif
static void redirect_stdout();
/*
* do_system() - calls system(3).
*/
int do_system(cmd)
char *cmd;
{
#ifdef DEBUG
log("RUNNING as shell: %s\n", cmd);
#endif
return (system(cmd));
}
/*
* run_cmd() - simplified system(3). Parses the command, will redirect
* stdout and then fork/exec() to save a sh process.
*/
int run_cmd(cmd)
char *cmd;
{
int pid, status = 0;
#ifdef DEBUG
log("RUNNING: %s\n", cmd);
#endif
/*
** PURFIY:
** use fork() here instead of vfork(). With vfork parent and child
** share memory space. In the child we strdup a bunch of argv's
** which would otherwise never get free'd causing a memory leak in
** the parent.
*/
if ((pid = fork()) < 0) {
log_errno("run_cmd: fork");
return (1);
}
if (pid == 0) { /* child */
char *argv[64], buf[BUFSIZ];
int i;
memset(argv, '\0', sizeof(char *) * 64);
parse_argv(argv, cmd);
for (i = 0; argv[i] != NULL; i++) {
if (argv[i][0] == '>' && argv[i + 1] != NULL) {
argv[i] = NULL;
redirect_stdout(argv[++i]);
break;
}
}
execvp(argv[0], argv);
sprintf(buf, "execvp: %s", argv[0]);
log_errno(buf);
_exit(1);
}
/* parent */
(void) waitpid(pid, &status, (int) NULL);
return (WEXITSTATUS(status));
}
static void redirect_stdout(filename)
char *filename;
{
int fd;
if (filename == NULL)
return;
if ((fd = open(filename, O_RDWR | O_CREAT | O_TRUNC, 0644)) < 0) {
log_errno(filename);
return;
}
close(1);
dup2(fd, 1); /* make stdout */
}
static int dsl_pid = -1;
static void alarm_handler()
{
#ifdef DEBUG
log("do_system_lifetime: Caught signal. Killing %d.\n", dsl_pid);
#endif
(void) kill(dsl_pid, SIGTERM);
sleep(1);
(void) kill(dsl_pid, SIGKILL);
}
/*
* do_system_lifetime() - calls system(3). Only lives for lifetime seconds.
*/
void do_system_lifetime(cmd, lifetime)
char *cmd;
int lifetime;
{
#ifdef DEBUG
log("RUNNING: %s\n", cmd);
log("do_system_lifetime: Lifetime is %d seconds.\n", lifetime);
#endif
signal(SIGALRM, alarm_handler);
alarm(lifetime);
/*
** PURFIY:
** use fork() here instead of vfork(). With vfork parent and child
** share memory space. In the child we strdup a bunch of argv's
** which would otherwise never get free'd causing a memory leak in
** the parent.
*/
if ((dsl_pid = fork()) < 0) {
log_errno("fork");
return;
}
if (dsl_pid) { /* parent */
(void) waitpid(dsl_pid, (int *) NULL, (int) NULL);
alarm(0);
return;
} else { /* child */
char *argv[64];
char buf[BUFSIZ], i;
alarm(0);
memset(argv, '\0', sizeof(char *) * 64);
parse_argv(argv, cmd);
for (i = 0; argv[i] != NULL; i++) {
if (argv[i][0] == '>' && argv[i + 1] != NULL) {
argv[i] = NULL;
redirect_stdout(argv[++i]);
break;
}
}
#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_CPU)
{
struct rlimit rlp;
rlp.rlim_cur = rlp.rlim_max = lifetime;
(void) setrlimit(RLIMIT_CPU, &rlp);
}
#endif
execvp(argv[0], argv);
sprintf(buf, "execvp: %s", argv[0]);
log_errno(buf);
_exit(1);
}
}
/*
* close_all_fds() - closes all of the file descriptors starting with start.
*/
void close_all_fds(start)
int start;
{
int i;
#if defined(HAVE_GETDTABLESIZE)
for (i = start; i < getdtablesize(); i++) {
#elif defined(HAVE_SYSCONF) && defined(_SC_OPEN_MAX)
for (i = start; i < sysconf(_SC_OPEN_MAX); i++) {
#elif defined(OPEN_MAX)
for (i = start; i < OPEN_MAX; i++) {
#else
for (i = start; i < 64; i++) {
#endif
(void) close(i);
}
}
|