-
Notifications
You must be signed in to change notification settings - Fork 24
/
execute.c
executable file
·298 lines (263 loc) · 8.41 KB
/
execute.c
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
298
/*
Task Spooler - a task queue system for the unix user
Copyright (C) 2007-2009 Lluís Batlle i Rossell
Please find the license in the provided COPYING file.
*/
#include <unistd.h>
#include <stdio.h>
#include <signal.h>
#include <string.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <stdlib.h>
#include <signal.h>
#include <time.h>
#include <sys/times.h>
#include <sys/time.h>
#include <sys/types.h>
#include <fcntl.h>
#include <assert.h>
#include "main.h"
/* from signals.c */
extern int signals_child_pid; /* 0, not set. otherwise, set. */
/* Returns errorlevel */
static void run_parent(int fd_read_filename, int pid, struct Result *result) {
int status;
char *ofname = 0;
int namesize;
int res;
char *command;
struct timeval starttv;
struct timeval endtv;
struct tms cpu_times;
/* Read the filename */
/* This is linked with the write() in this same file, in run_child() */
if (command_line.store_output) {
res = read(fd_read_filename, &namesize, sizeof(namesize));
if (res == -1)
error("read the filename from %i", fd_read_filename);
if (res != sizeof(namesize))
error("Reading the size of the name");
ofname = (char *) malloc(namesize);
res = read(fd_read_filename, ofname, namesize);
if (res != namesize)
error("Reading the out file name");
}
res = read(fd_read_filename, &starttv, sizeof(starttv));
if (res != sizeof(starttv))
error("Reading the the struct timeval");
close(fd_read_filename);
/* All went fine - prepare the SIGINT and send runjob_ok */
signals_child_pid = pid;
unblock_sigint_and_install_handler();
c_send_runjob_ok(ofname, pid);
wait(&status);
/* Set the errorlevel */
if (WIFEXITED(status)) {
/* We force the proper cast */
signed char tmp;
tmp = WEXITSTATUS(status);
result->errorlevel = tmp;
result->died_by_signal = 0;
} else if (WIFSIGNALED(status)) {
signed char tmp;
tmp = WTERMSIG(status);
result->signal = tmp;
result->errorlevel = -1;
result->died_by_signal = 1;
} else {
result->died_by_signal = 0;
result->errorlevel = -1;
}
command = build_command_string();
if (command_line.send_output_by_mail) {
send_mail(command_line.jobid, result->errorlevel, ofname, command);
}
hook_on_finish(command_line.jobid, result->errorlevel, ofname, command);
free(command);
free(ofname);
/* Calculate times */
gettimeofday(&endtv, NULL);
result->real_ms = endtv.tv_sec - starttv.tv_sec +
((float) (endtv.tv_usec - starttv.tv_usec) / 1000000.);
times(&cpu_times);
/* The times are given in clock ticks. The number of clock ticks per second
* is obtained in POSIX using sysconf(). */
result->user_ms = (float) cpu_times.tms_cutime /
(float) sysconf(_SC_CLK_TCK);
result->system_ms = (float) cpu_times.tms_cstime /
(float) sysconf(_SC_CLK_TCK);
}
void create_closed_read_on(int dest) {
int p[2];
/* Closing input */
pipe(p);
close(p[1]); /* closing the write handle */
dup2(p[0], dest); /* the pipe reading goes to dest */
if (p[0] != dest)
close(p[0]);
}
/* This will close fd_out and fd_in in the parent */
static void run_gzip(int fd_out, int fd_in) {
int pid;
pid = fork();
switch (pid) {
case 0: /* child */
restore_sigmask();
dup2(fd_in, 0); /* stdout */
dup2(fd_out, 1); /* stdout */
close(fd_in);
close(fd_out);
/* Without stderr */
close(2);
execlp("gzip", "gzip", NULL);
exit(-1);
/* Won't return */
case -1:
exit(-1); /* Fork error */
default:
close(fd_in);
close(fd_out);
}
}
static void run_child(int fd_send_filename, char* tmpdir) {
char *outfname;
char errfname[sizeof outfname + 2]; /* .e */
int namesize;
int outfd;
int err;
struct timeval starttv;
char *cmd = build_command_string();
if (command_line.logfile) {
outfname = malloc(1 + strlen(command_line.logfile) + strlen(".XXXXXX") + 1);
sprintf(outfname, "/%s.XXXXXX", command_line.logfile);
} else
outfname = "/ts-out.XXXXXX";
if (command_line.store_output) {
/* Prepare path */
int lname;
char *outfname_full;
char *outdir = tmpdir == NULL ? "/tmp" : tmpdir;
lname = strlen(outdir) + strlen(outfname) + 1 /* \0 */;
outfname_full = (char *) malloc(lname);
strcpy(outfname_full, outdir);
strcat(outfname_full, outfname);
/* Prepare the filename */
outfd = mkstemp(outfname_full); /* stdout */
assert(outfd != -1);
write(outfd, cmd, strlen(cmd));
write(outfd, "\n", 2);
free(cmd);
free(tmpdir);
if (command_line.gzip) {
int p[2];
/* We assume that all handles are closed*/
err = pipe(p);
assert(err == 0);
/* Program stdout and stderr */
/* which go to pipe write handle */
err = dup2(p[1], 1);
assert(err != -1);
if (command_line.stderr_apart) {
int errfd;
strncpy(errfname, outfname_full, sizeof errfname);
strncat(errfname, ".e", 2 + 1);
errfd = open(errfname, O_CREAT | O_WRONLY | O_TRUNC, 0600);
assert(err == 0);
err = dup2(errfd, 2);
assert(err == 0);
err = close(errfd);
assert(err == 0);
} else {
err = dup2(p[1], 2);
assert(err != -1);
}
err = close(p[1]);
assert(err == 0);
/* run gzip.
* This wants p[0] in 0, so gzip will read
* from it */
run_gzip(outfd, p[0]);
} else {
dup2(outfd, 1); /* stdout */
if (command_line.stderr_apart) {
int errfd;
strncpy(errfname, outfname_full, sizeof errfname);
strncat(errfname, ".e", 2 + 1);
errfd = open(errfname, O_CREAT | O_WRONLY | O_TRUNC, 0600);
dup2(errfd, 2);
close(errfd);
} else
dup2(outfd, 2);
close(outfd);
}
/* Send the filename */
namesize = strlen(outfname_full) + 1;
write(fd_send_filename, (char *) &namesize, sizeof(namesize));
write(fd_send_filename, outfname_full, namesize);
free(outfname_full);
}
/* Times */
gettimeofday(&starttv, NULL);
write(fd_send_filename, &starttv, sizeof(starttv));
close(fd_send_filename);
/* Closing input */
if (command_line.should_go_background)
create_closed_read_on(0);
/* We create a new session, so we can kill process groups as:
kill -- -`ts -p` */
setsid();
putenv("PYTHONUNBUFFERED=1");
execvp(command_line.command.array[0], command_line.command.array);
}
int run_job(struct Result *res) {
int pid;
int errorlevel;
int p[2];
char *tmpdir = get_logdir();
/* For the parent */
/*program_signal(); Still not needed*/
block_sigint();
/* Prepare the output filename sending */
pipe(p);
pid = fork();
switch (pid) {
case 0:
restore_sigmask();
close(server_socket);
close(p[0]);
run_child(p[1], tmpdir);
/* Not reachable, if the 'exec' of the command
* works. Thus, command exists, etc. */
fprintf(stderr, "ts could not run the command\n");
exit(-1);
/* To avoid a compiler warning */
errorlevel = 0;
break;
case -1:
/* To avoid a compiler warning */
errorlevel = 0;
error("forking");
default:
close(p[1]);
run_parent(p[0], pid, res);
break;
}
free((char*) tmpdir);
return errorlevel;
}
#if 0
Not needed
static void sigchld_handler(int val)
{
}
static void program_signal()
{
struct sigaction act;
act.sa_handler = sigchld_handler;
/* Reset the mask */
memset(&act.sa_mask,0,sizeof(act.sa_mask));
act.sa_flags = SA_NOCLDSTOP;
sigaction(SIGCHLD, &act, NULL);
}
#endif