forked from michaelforney/samurai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.c
584 lines (546 loc) · 12.8 KB
/
build.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
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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
#define _POSIX_C_SOURCE 200809L
#include <errno.h>
#include <fcntl.h>
#include <inttypes.h>
#include <poll.h>
#include <signal.h>
#include <spawn.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <time.h>
#include <unistd.h>
#include "build.h"
#include "deps.h"
#include "env.h"
#include "graph.h"
#include "log.h"
#include "util.h"
struct job {
struct string *cmd;
struct edge *edge;
struct buffer buf;
size_t next;
pid_t pid;
int fd;
bool failed;
};
struct buildoptions buildopts = {.maxfail = 1};
static struct edge *work;
static size_t nstarted, nfinished, ntotal;
static bool consoleused;
static struct timespec starttime;
void
buildreset(void)
{
struct edge *e;
for (e = alledges; e; e = e->allnext)
e->flags &= ~FLAG_WORK;
}
/* returns whether n1 is newer than n2, or false if n1 is NULL */
static bool
isnewer(struct node *n1, struct node *n2)
{
return n1 && n1->mtime > n2->mtime;
}
/* returns whether this output node is dirty in relation to the newest input */
static bool
isdirty(struct node *n, struct node *newest, bool generator, bool restat)
{
struct edge *e;
e = n->gen;
if (e->rule == &phonyrule) {
if (e->nin > 0 || n->mtime != MTIME_MISSING)
return false;
if (buildopts.explain)
warn("explain %s: phony and no inputs", n->path->s);
return true;
}
if (n->mtime == MTIME_MISSING) {
if (buildopts.explain)
warn("explain %s: missing", n->path->s);
return true;
}
if (isnewer(newest, n) && (!restat || n->logmtime == MTIME_MISSING)) {
if (buildopts.explain) {
warn("explain %s: older than input '%s': %" PRId64 " vs %" PRId64,
n->path->s, newest->path->s, n->mtime, newest->mtime);
}
return true;
}
if (n->logmtime == MTIME_MISSING) {
if (!generator) {
if (buildopts.explain)
warn("explain %s: no record in .ninja_log", n->path->s);
return true;
}
} else if (newest && n->logmtime < newest->mtime) {
if (buildopts.explain) {
warn("explain %s: recorded mtime is older than input '%s': %" PRId64 " vs %" PRId64,
n->path->s, newest->path->s, n->logmtime, newest->mtime);
}
return true;
}
if (generator)
return false;
edgehash(e);
if (e->hash == n->hash)
return false;
if (buildopts.explain)
warn("explain %s: command line changed", n->path->s);
return true;
}
/* add an edge to the work queue */
static void
queue(struct edge *e)
{
struct edge **front = &work;
if (e->pool && e->rule != &phonyrule) {
if (e->pool->numjobs == e->pool->maxjobs)
front = &e->pool->work;
else
++e->pool->numjobs;
}
e->worknext = *front;
*front = e;
}
void
buildadd(struct node *n)
{
struct edge *e;
struct node *newest;
size_t i;
bool generator, restat;
e = n->gen;
if (!e) {
if (n->mtime == MTIME_UNKNOWN)
nodestat(n);
if (n->mtime == MTIME_MISSING)
fatal("file is missing and not created by any action: '%s'", n->path->s);
n->dirty = false;
return;
}
if (e->flags & FLAG_CYCLE)
fatal("dependency cycle involving '%s'", n->path->s);
if (e->flags & FLAG_WORK)
return;
e->flags |= FLAG_CYCLE | FLAG_WORK;
for (i = 0; i < e->nout; ++i) {
n = e->out[i];
n->dirty = false;
if (n->mtime == MTIME_UNKNOWN)
nodestat(n);
}
depsload(e);
e->nblock = 0;
newest = NULL;
for (i = 0; i < e->nin; ++i) {
n = e->in[i];
buildadd(n);
if (i < e->inorderidx) {
if (n->dirty)
e->flags |= FLAG_DIRTY_IN;
if (n->mtime != MTIME_MISSING && !isnewer(newest, n))
newest = n;
}
if (n->dirty || (n->gen && n->gen->nblock > 0))
++e->nblock;
}
/* all outputs are dirty if any are older than the newest input */
generator = edgevar(e, "generator", true);
restat = edgevar(e, "restat", true);
for (i = 0; i < e->nout && !(e->flags & FLAG_DIRTY_OUT); ++i) {
n = e->out[i];
if (isdirty(n, newest, generator, restat)) {
n->dirty = true;
e->flags |= FLAG_DIRTY_OUT;
}
}
if (e->flags & FLAG_DIRTY) {
for (i = 0; i < e->nout; ++i) {
n = e->out[i];
if (buildopts.explain && !n->dirty) {
if (e->flags & FLAG_DIRTY_IN)
warn("explain %s: input is dirty", n->path->s);
else if (e->flags & FLAG_DIRTY_OUT)
warn("explain %s: output of generating action is dirty", n->path->s);
}
n->dirty = true;
}
}
if (!(e->flags & FLAG_DIRTY_OUT))
e->nprune = e->nblock;
if (e->flags & FLAG_DIRTY) {
if (e->nblock == 0)
queue(e);
if (e->rule != &phonyrule)
++ntotal;
}
e->flags &= ~FLAG_CYCLE;
}
static size_t
formatstatus(char *buf, size_t len)
{
const char *fmt;
size_t ret = 0;
int n;
struct timespec endtime;
for (fmt = buildopts.statusfmt; *fmt; ++fmt) {
if (*fmt != '%' || *++fmt == '%') {
if (len > 1) {
*buf++ = *fmt;
--len;
}
++ret;
continue;
}
switch (*fmt) {
case 's':
n = snprintf(buf, len, "%zu", nstarted);
break;
case 'f':
n = snprintf(buf, len, "%zu", nfinished);
break;
case 't':
n = snprintf(buf, len, "%zu", ntotal);
break;
case 'r':
n = snprintf(buf, len, "%zu", nstarted - nfinished);
break;
case 'u':
n = snprintf(buf, len, "%zu", ntotal - nstarted);
break;
case 'p':
n = snprintf(buf, len, "%3zu%%", 100 * nfinished / ntotal);
break;
case 'e':
if (clock_gettime(CLOCK_MONOTONIC, &endtime) != 0) {
warn("clock_gettime:");
endtime = starttime;
}
n = snprintf(buf, len, "%.3f", (endtime.tv_sec - starttime.tv_sec) + 0.000000001 * (endtime.tv_nsec - starttime.tv_nsec));
break;
default:
fatal("unknown placeholder '%%%c' in $NINJA_STATUS", *fmt);
continue; /* unreachable, but avoids warning */
}
if (n < 0)
fatal("snprintf:");
ret += n;
if ((size_t)n > len)
n = len;
buf += n;
len -= n;
}
if (len > 0)
*buf = '\0';
return ret;
}
static int
jobstart(struct job *j, struct edge *e)
{
extern char **environ;
size_t i;
struct node *n;
struct string *rspfile, *content, *description;
int fd[2];
posix_spawn_file_actions_t actions;
char *argv[] = {"/bin/sh", "-c", NULL, NULL}, status[256];
++nstarted;
for (i = 0; i < e->nout; ++i) {
n = e->out[i];
if (n->mtime == MTIME_MISSING) {
if (makedirs(n->path, true) < 0)
goto err0;
}
}
rspfile = edgevar(e, "rspfile", false);
if (rspfile) {
content = edgevar(e, "rspfile_content", true);
if (writefile(rspfile->s, content) < 0)
goto err0;
}
if (pipe(fd) < 0) {
warn("pipe:");
goto err1;
}
j->edge = e;
j->cmd = edgevar(e, "command", true);
j->fd = fd[0];
argv[2] = j->cmd->s;
if (!consoleused) {
description = buildopts.verbose ? NULL : edgevar(e, "description", true);
if (!description || description->n == 0)
description = j->cmd;
formatstatus(status, sizeof(status));
fputs(status, stdout);
puts(description->s);
}
if ((errno = posix_spawn_file_actions_init(&actions))) {
warn("posix_spawn_file_actions_init:");
goto err2;
}
if ((errno = posix_spawn_file_actions_addclose(&actions, fd[0]))) {
warn("posix_spawn_file_actions_addclose:");
goto err3;
}
if (e->pool != &consolepool) {
if ((errno = posix_spawn_file_actions_addopen(&actions, 0, "/dev/null", O_RDONLY, 0))) {
warn("posix_spawn_file_actions_addopen:");
goto err3;
}
if ((errno = posix_spawn_file_actions_adddup2(&actions, fd[1], 1))) {
warn("posix_spawn_file_actions_adddup2:");
goto err3;
}
if ((errno = posix_spawn_file_actions_adddup2(&actions, fd[1], 2))) {
warn("posix_spawn_file_actions_adddup2:");
goto err3;
}
if ((errno = posix_spawn_file_actions_addclose(&actions, fd[1]))) {
warn("posix_spawn_file_actions_addclose:");
goto err3;
}
}
if ((errno = posix_spawn(&j->pid, argv[0], &actions, NULL, argv, environ))) {
warn("posix_spawn %s:", j->cmd->s);
goto err3;
}
posix_spawn_file_actions_destroy(&actions);
close(fd[1]);
j->failed = false;
if (e->pool == &consolepool)
consoleused = true;
return j->fd;
err3:
posix_spawn_file_actions_destroy(&actions);
err2:
close(fd[0]);
close(fd[1]);
err1:
if (rspfile && !buildopts.keeprsp)
remove(rspfile->s);
err0:
return -1;
}
static void
nodedone(struct node *n, bool prune)
{
struct edge *e;
size_t i, j;
for (i = 0; i < n->nuse; ++i) {
e = n->use[i];
/* skip edges not used in this build */
if (!(e->flags & FLAG_WORK))
continue;
if (!(e->flags & (prune ? FLAG_DIRTY_OUT : FLAG_DIRTY)) && --e->nprune == 0) {
/* either edge was clean (possible with order-only
* inputs), or all its blocking inputs were pruned, so
* its outputs can be pruned as well */
for (j = 0; j < e->nout; ++j)
nodedone(e->out[j], true);
if (e->flags & FLAG_DIRTY && e->rule != &phonyrule)
--ntotal;
} else if (--e->nblock == 0) {
queue(e);
}
}
}
static bool
shouldprune(struct edge *e, struct node *n, int64_t old)
{
struct node *in, *newest;
size_t i;
if (old != n->mtime)
return false;
newest = NULL;
for (i = 0; i < e->inorderidx; ++i) {
in = e->in[i];
nodestat(in);
if (in->mtime != MTIME_MISSING && !isnewer(newest, in))
newest = in;
}
if (newest)
n->logmtime = newest->mtime;
return true;
}
static void
edgedone(struct edge *e)
{
struct node *n;
size_t i;
struct string *rspfile;
bool restat;
int64_t old;
restat = edgevar(e, "restat", true);
for (i = 0; i < e->nout; ++i) {
n = e->out[i];
old = n->mtime;
nodestat(n);
n->logmtime = n->mtime == MTIME_MISSING ? 0 : n->mtime;
nodedone(n, restat && shouldprune(e, n, old));
}
rspfile = edgevar(e, "rspfile", false);
if (rspfile && !buildopts.keeprsp)
remove(rspfile->s);
edgehash(e);
depsrecord(e);
for (i = 0; i < e->nout; ++i) {
n = e->out[i];
n->hash = e->hash;
logrecord(n);
}
}
static void
jobdone(struct job *j)
{
int status;
struct edge *e, *new;
struct pool *p;
++nfinished;
if (waitpid(j->pid, &status, 0) < 0) {
warn("waitpid %d:", j->pid);
j->failed = true;
} else if (WIFEXITED(status)) {
if (WEXITSTATUS(status) != 0) {
warn("job failed: %s", j->cmd->s);
j->failed = true;
}
} else if (WIFSIGNALED(status)) {
warn("job terminated due to signal %d: %s", WTERMSIG(status), j->cmd->s);
j->failed = true;
} else {
/* cannot happen according to POSIX */
warn("job status unknown: %s", j->cmd->s);
j->failed = true;
}
close(j->fd);
if (j->buf.len && (!consoleused || j->failed))
fwrite(j->buf.data, 1, j->buf.len, stdout);
j->buf.len = 0;
e = j->edge;
if (e->pool) {
p = e->pool;
if (p == &consolepool)
consoleused = false;
/* move edge from pool queue to main work queue */
if (p->work) {
new = p->work;
p->work = p->work->worknext;
new->worknext = work;
work = new;
} else {
--p->numjobs;
}
}
if (!j->failed)
edgedone(e);
}
/* returns whether a job still has work to do. if not, sets j->failed */
static bool
jobwork(struct job *j)
{
char *newdata;
size_t newcap;
ssize_t n;
if (j->buf.cap - j->buf.len < BUFSIZ / 2) {
newcap = j->buf.cap + BUFSIZ;
newdata = realloc(j->buf.data, newcap);
if (!newdata) {
warn("realloc:");
goto kill;
}
j->buf.cap = newcap;
j->buf.data = newdata;
}
n = read(j->fd, j->buf.data + j->buf.len, j->buf.cap - j->buf.len);
if (n > 0) {
j->buf.len += n;
return true;
}
if (n == 0)
goto done;
warn("read:");
kill:
kill(j->pid, SIGTERM);
j->failed = true;
done:
jobdone(j);
return false;
}
void
build(void)
{
struct job *jobs = NULL;
struct pollfd *fds = NULL;
size_t i, next = 0, jobslen = 0, numjobs = 0, numfail = 0;
struct edge *e;
clock_gettime(CLOCK_MONOTONIC, &starttime);
formatstatus(NULL, 0);
if (!work)
warn("nothing to do");
nstarted = 0;
for (;;) {
/* start ready edges */
while (work && numjobs < buildopts.maxjobs && numfail < buildopts.maxfail) {
e = work;
work = work->worknext;
if (e->rule == &phonyrule) {
for (i = 0; i < e->nout; ++i)
nodedone(e->out[i], false);
continue;
}
if (next == jobslen) {
jobslen = jobslen ? jobslen * 2 : 8;
if (jobslen > buildopts.maxjobs)
jobslen = buildopts.maxjobs;
jobs = xreallocarray(jobs, jobslen, sizeof(jobs[0]));
fds = xreallocarray(fds, jobslen, sizeof(fds[0]));
for (i = next; i < jobslen; ++i) {
jobs[i].buf.data = NULL;
jobs[i].buf.len = 0;
jobs[i].buf.cap = 0;
jobs[i].next = i + 1;
fds[i].fd = -1;
fds[i].events = POLLIN;
}
}
fds[next].fd = jobstart(&jobs[next], e);
if (fds[next].fd < 0) {
warn("job failed to start");
++numfail;
} else {
next = jobs[next].next;
++numjobs;
}
}
if (numjobs == 0)
break;
if (poll(fds, jobslen, -1) < 0)
fatal("poll:");
for (i = 0; i < jobslen; ++i) {
if (!fds[i].revents || jobwork(&jobs[i]))
continue;
--numjobs;
jobs[i].next = next;
fds[i].fd = -1;
next = i;
if (jobs[i].failed)
++numfail;
}
}
for (i = 0; i < jobslen; ++i)
free(jobs[i].buf.data);
free(jobs);
free(fds);
if (numfail > 0) {
if (numfail < buildopts.maxfail)
fatal("cannot make progress due to previous errors");
else if (numfail > 1)
fatal("subcommands failed");
else
fatal("subcommand failed");
}
ntotal = 0; /* reset in case we just rebuilt the manifest */
}