-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathprocess_utils.c2
386 lines (343 loc) · 12.3 KB
/
process_utils.c2
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
/* Copyright 2022-2025 Bas van den Berg
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
module process_utils;
import ctype local;
import string local;
import stdarg local;
import stdio local;
import unistd local;
import c_errno local;
import sys_stat local;
import stdlib local;
import libc_fcntl local;
const u32 MAX_ARG_LEN = 512;
const u32 MAX_ARGS = 16;
// TEMP here since C2C doesn't support implemented functions in libs (yet)
fn bool doWIFSIGNALED(i32 state) {
return ((state & 0x7F) > 0 && (state & 0x7F) < 0x7F);
}
fn bool doWIFEXITED(i32 state) {
return ((state & 0xff) == 0);
}
fn char getWEXITSTATUS(i32 state) {
return cast<char>((state >> 8) & 0xff);
}
fn void child_error(i32 fd, const char* format @(printf_format), ...) @(noreturn) {
char[256] msg;
Va_list args;
va_start(args, format);
i32 res = vsnprintf(msg, sizeof(msg), format, args);
va_end(args);
if (res >= 0) {
usize len = cast<usize>(res);
msg[len++] = '\n';
msg[len] = '\0';
write(fd, msg, len);
fsync(fd);
fprintf(stderr, "[exec] %s\n", msg);
fflush(stderr);
}
_exit(EXIT_FAILURE); // don't call atexit functions
}
public fn i32 run_args(const char* path, const char* cmd, const char* args, const char* logfile)
{
// run a command in a child process
// - stdout and stderr are redirected together to a logfile
// flush all streams before forking to avoid duplicate output
fflush(nil);
i32[2] error_pipe; // pipe for errors from the child process
if (pipe(error_pipe)) {
fprintf(stderr, "pipe() failed: %s\n", strerror(errno));
return -1;
}
// make error_pipe[1] close on exec so it does not need to be closed
// before exec() and error message for exec failure can be passed to parent
if (fcntl(error_pipe[1], F_SETFD, FD_CLOEXEC)) {
fprintf(stderr, "fcncl(FD_CLOEXEC) failed: %s\n", strerror(errno));
close(error_pipe[0]);
close(error_pipe[1]);
return -1;
}
Pid child_pid = fork();
if (child_pid == -1) {
fprintf(stderr, "fork() failed: %s\n", strerror(errno));
close(error_pipe[0]);
close(error_pipe[1]);
return -1;
}
if (child_pid == 0) { // child
// close the reading end of the error pipe
close(error_pipe[0]);
// redirect output to logfile
char[512] filename;
snprintf(filename, elemsof(filename), "%s%s", path, logfile);
close(STDOUT_FILENO);
i32 fdout = open(filename, O_TRUNC | O_CREAT | O_WRONLY, 0644);
if (fdout == -1) {
child_error(error_pipe[1], "cannot open output '%s': %s", filename, strerror(errno));
}
// redirect stderr to stdout
while (dup2(STDOUT_FILENO, STDERR_FILENO) == -1) {
if (errno != EINTR)
child_error(error_pipe[1], "dup2(): %s", strerror(errno));
}
// change to working dir
if (path && *path) {
char *cwd = getcwd(nil, 0);
printf("current dir: %s\n", cwd);
free(cwd);
if (chdir(path) != 0) {
child_error(error_pipe[1], "cannot change to dir '%s': %s", path, strerror(errno));
}
printf("changing to dir: %s\n", path);
}
char[512] self;
if (!find_bin(self, elemsof(self), cmd)) {
child_error(error_pipe[1], "command not found: %s", cmd);
}
char*[MAX_ARGS + 2] argv;
char[MAX_ARG_LEN] argbuf;
u32 argc = 0;
argv[argc++] = self; // should be cast<char*>(cmd)
if (args && *args) {
argc += parseArgs(args, &argv[1], MAX_ARGS, argbuf, elemsof(argbuf));
}
argv[argc] = nil;
printf("running command: %s %s\n", cmd, args ? args : "");
fflush(stdout);
execv(self, argv);
i32 lasterr = errno;
fprintf(stderr, "failed to start %s: %s\n", cmd, strerror(lasterr));
child_error(error_pipe[1], "error starting %s: %s", cmd, strerror(lasterr));
_exit(-1); // to satisfy compiler
} else { // parent
// close the writing end of the error pipe
close(error_pipe[1]);
char[256] error;
memset(error, 0, sizeof(error));
isize numread = read(error_pipe[0], error, sizeof(error)-1);
if (numread < 0) {
fprintf(stderr, "Error reading pipe\n");
close(error_pipe[0]);
return -1;
}
error[numread] = 0;
close(error_pipe[0]);
if (numread != 0) {
//errorMsg = error;
// always give error
return -1;
}
// TODO handle output larger than pipe buffer length
i32 state = 0;
Pid pid = waitpid(child_pid, &state, 0);
if (pid == -1) {
fprintf(stderr, "Error waiting for pid: %s\n", strerror(errno));
return -1;
}
if (doWIFSIGNALED(state)) {
//bool termsig = WTERMSIG(state);
//bool coredump = WCOREDUMP(state);
//fprintf(stderr, "child was SIGNALED: term=%d core=%d\n", termsig, coredump);
return -1;
}
if (doWIFEXITED(state)) { // normal termination)
char exitcode = getWEXITSTATUS(state);
//fprintf(stderr, "child exited NORMALLY, exitcode=%d\n", exitcode);
if (exitcode != 0) return -1;
} else {
//fprintf(stderr, "child exited ABNORMALLY\n");
return -1;
}
}
return 0;
}
fn u32 parseArgs(const char* args, char** argv, u32 maxargs, char *tmp, usize tmp_size) {
// TODO accept quoted arguments
u32 argc = 0;
usize len = strlen(args);
if (len >= tmp_size)
len = tmp_size - 1;
memcpy(tmp, args, len);
tmp[len] = '\0';
char* token = strtok(tmp, " ");
while (argc + 1 < maxargs && token) {
argv[argc++] = token;
token = strtok(nil, " ");
}
argv[argc] = nil;
return argc;
}
/* Find file in one of the PATH directories */
fn const char* find_bin(char *dest, usize size, const char* name) {
Stat statbuf;
const char *s = getenv("PATH");
if (!s) s = "";
for (;;) {
i32 len = 0;
while (s[len] && s[len] != ':')
len++;
i32 len2 = (len > 0 && s[len - 1] != '/');
i32 len3 = snprintf(dest, size, "%.*s%.*s%s", len, s, len2, "/", name);
if (cast<usize>(len3) < size && stat(dest, &statbuf) == 0)
return dest;
s += len;
if (!*s++)
break;
}
return nil;
}
public fn i32 run2(const char* path, const char* cmd, const char* args, char* output, usize output_size)
{
// run a command in a child process
// - stdout and stderr are redirected together and captured into the `output` buffer
// TODO merge with run_args.
// flush all streams before forking to avoid duplicate output
fflush(nil);
i32[2] error_pipe; // pipe for errors from the child process
if (pipe(error_pipe)) {
fprintf(stderr, "pipe() failed: %s\n", strerror(errno));
return -1;
}
// make error_pipe[1] close on exec so it does not need to be closed
// before exec() and error message for exec failure can be passed to parent
if (fcntl(error_pipe[1], F_SETFD, FD_CLOEXEC)) {
fprintf(stderr, "fcncl(FD_CLOEXEC) failed: %s\n", strerror(errno));
close(error_pipe[0]);
close(error_pipe[1]);
return -1;
}
i32[2] output_pipe; // for command output to stdout and stderr
if (pipe(output_pipe)) {
fprintf(stderr, "pipe() failed: %s\n", strerror(errno));
close(error_pipe[0]);
close(error_pipe[1]);
return -1;
}
Pid child_pid = fork();
if (child_pid == -1) {
fprintf(stderr, "fork() failed: %s\n", strerror(errno));
close(error_pipe[0]);
close(error_pipe[1]);
close(output_pipe[0]);
close(output_pipe[1]);
return -1;
}
if (child_pid == 0) { // child
// close the reading end of both pipes
close(output_pipe[0]);
close(error_pipe[0]);
// redirect stdout to output_pipe[1]
while (dup2(output_pipe[1], STDOUT_FILENO) == -1) {
if (errno != EINTR)
child_error(error_pipe[1], "dup(): %s", strerror(errno));
}
close(output_pipe[1]);
// redirect stderr to stdout
while (dup2(STDOUT_FILENO, STDERR_FILENO) == -1) {
if (errno != EINTR)
child_error(error_pipe[1], "dup2(): %s", strerror(errno));
}
// change to working dir
if (path && *path) {
if (chdir(path) != 0) {
child_error(error_pipe[1], "cannot change to dir '%s': %s", path, strerror(errno));
}
}
char[512] self;
if (!find_bin(self, elemsof(self), cmd)) {
child_error(error_pipe[1], "command not found: %s", cmd);
}
char*[MAX_ARGS + 2] argv;
char[MAX_ARG_LEN] argbuf;
u32 argc = 0;
argv[argc++] = self; // should be cast<char*>(cmd)
if (args && *args) {
argc += parseArgs(args, &argv[1], MAX_ARGS, argbuf, elemsof(argbuf));
}
argv[argc] = nil;
execv(self, argv);
i32 lasterr = errno;
fprintf(stderr, "failed to start %s: %s\n", cmd, strerror(lasterr));
child_error(error_pipe[1], "error starting %s: %s", cmd, strerror(lasterr));
_exit(-1); // to satisfy compiler
} else { // parent
// close the writing end of both pipes
close(error_pipe[1]);
close(output_pipe[1]);
char[256] error;
memset(error, 0, sizeof(error));
isize numread = read(error_pipe[0], error, sizeof(error)-1);
if (numread < 0) {
fprintf(stderr, "Error reading pipe\n");
close(error_pipe[0]);
close(output_pipe[0]);
return -1;
}
error[numread] = 0;
close(error_pipe[0]);
if (numread != 0) {
printf("ERROR %s\n", error);
//errorMsg = error;
// always give error
close(output_pipe[0]);
return -1;
}
// TODO handle output larger than pipe buffer length
i32 state = 0;
Pid pid = waitpid(child_pid, &state, 0);
if (pid == -1) {
fprintf(stderr, "Error waiting for pid: %s\n", strerror(errno));
close(output_pipe[0]);
return -1;
}
if (doWIFSIGNALED(state)) {
//bool termsig = WTERMSIG(state);
//bool coredump = WCOREDUMP(state);
//fprintf(stderr, "child was SIGNALED: term=%d core=%d\n", termsig, coredump);
close(output_pipe[0]);
return -1;
}
if (doWIFEXITED(state)) { // normal termination)
char exitcode = getWEXITSTATUS(state);
//fprintf(stderr, "child exited NORMALLY, exitcode=%d\n", exitcode);
if (exitcode != 0) return -1;
// capture process output to output buffer
numread = read(output_pipe[0], output, output_size - 1);
if (numread < 0) {
fprintf(stderr, "error reading process output\n");
close(output_pipe[0]);
return -1;
}
output[numread] = '\0';
// strip leading and trailing whitespace
while (numread > 0 && isspace(output[numread - 1]))
output[--numread] = '\0';
usize skip = 0;
while (isspace(output[skip]))
skip++;
if (skip) {
numread -= skip;
memmove(output, output + skip, cast<u32>(numread) + 1);
}
} else {
fprintf(stderr, "child exited ABNORMALLY\n");
close(output_pipe[0]);
return -1;
}
close(output_pipe[0]);
}
return 0;
}