-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredo.c
1499 lines (1114 loc) · 27.1 KB
/
redo.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
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* An implementation of the redo build system
in portable C with zero dependencies
http://cr.yp.to/redo.html
https://jdebp.info/FGA/introduction-to-redo.html
https://github.com/apenwarr/redo/blob/master/README.md
http://news.dieweltistgarnichtso.net/bin/redo-sh.html
To the extent possible under law,
Leah Neukirchen <[email protected]>
has waived all copyright and related or neighboring rights to this work.
http://creativecommons.org/publicdomain/zero/1.0/
*/
/***********************************************************
This redo-c version can be found at:
https://github.com/AndreyDobrovolskyOdessa/redo-c
which is the fork of:
https://github.com/leahneukirchen/redo-c
Features:
- Optimized recipes envocations.
- Dependency loops could be detected during parallel builds.
- Build log is Lua table.
Andrey Dobrovolsky <[email protected]>
***********************************************************/
#define _GNU_SOURCE 1
#include <sys/mman.h>
#include <sys/param.h>
#include <sys/stat.h>
#include <sys/times.h>
#include <sys/wait.h>
#include <errno.h>
#include <fcntl.h>
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sysexits.h>
#include <unistd.h>
#include <time.h>
/* ------------------------------------------------------------------------- */
/* from musl/src/crypt/crypt_sha256.c */
/* public domain sha256 implementation based on fips180-3 */
struct sha256 {
uint64_t len; /* processed message length */
uint32_t h[8]; /* hash state */
uint8_t buf[64]; /* message block buffer */
};
static uint32_t ror(uint32_t n, int k) { return (n >> k) | (n << (32-k)); }
#define Ch(x,y,z) (z ^ (x & (y ^ z)))
#define Maj(x,y,z) ((x & y) | (z & (x | y)))
#define S0(x) (ror(x,2) ^ ror(x,13) ^ ror(x,22))
#define S1(x) (ror(x,6) ^ ror(x,11) ^ ror(x,25))
#define R0(x) (ror(x,7) ^ ror(x,18) ^ (x>>3))
#define R1(x) (ror(x,17) ^ ror(x,19) ^ (x>>10))
static const uint32_t K[64] = {
0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,
0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3, 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,
0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7, 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967,
0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13, 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,
0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3, 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,
0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208, 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2
};
static void processblock(struct sha256 *s, const uint8_t *buf)
{
uint32_t W[64], t1, t2, a, b, c, d, e, f, g, h;
int i;
for (i = 0; i < 16; i++) {
W[i] = (uint32_t)buf[4*i]<<24;
W[i] |= (uint32_t)buf[4*i+1]<<16;
W[i] |= (uint32_t)buf[4*i+2]<<8;
W[i] |= buf[4*i+3];
}
for (; i < 64; i++)
W[i] = R1(W[i-2]) + W[i-7] + R0(W[i-15]) + W[i-16];
a = s->h[0];
b = s->h[1];
c = s->h[2];
d = s->h[3];
e = s->h[4];
f = s->h[5];
g = s->h[6];
h = s->h[7];
for (i = 0; i < 64; i++) {
t1 = h + S1(e) + Ch(e, f, g) + K[i] + W[i];
t2 = S0(a) + Maj(a, b, c);
h = g;
g = f;
f = e;
e = d + t1;
d = c;
c = b;
b = a;
a = t1 + t2;
}
s->h[0] += a;
s->h[1] += b;
s->h[2] += c;
s->h[3] += d;
s->h[4] += e;
s->h[5] += f;
s->h[6] += g;
s->h[7] += h;
}
static void pad(struct sha256 *s)
{
unsigned r = s->len % 64;
s->buf[r++] = 0x80;
if (r > 56) {
memset(s->buf + r, 0, 64 - r);
r = 0;
processblock(s, s->buf);
}
memset(s->buf + r, 0, 56 - r);
s->len *= 8;
s->buf[56] = s->len >> 56;
s->buf[57] = s->len >> 48;
s->buf[58] = s->len >> 40;
s->buf[59] = s->len >> 32;
s->buf[60] = s->len >> 24;
s->buf[61] = s->len >> 16;
s->buf[62] = s->len >> 8;
s->buf[63] = s->len;
processblock(s, s->buf);
}
static void sha256_init(struct sha256 *s)
{
s->len = 0;
s->h[0] = 0x6a09e667;
s->h[1] = 0xbb67ae85;
s->h[2] = 0x3c6ef372;
s->h[3] = 0xa54ff53a;
s->h[4] = 0x510e527f;
s->h[5] = 0x9b05688c;
s->h[6] = 0x1f83d9ab;
s->h[7] = 0x5be0cd19;
}
static void sha256_sum(struct sha256 *s, uint8_t *md)
{
int i;
pad(s);
for (i = 0; i < 8; i++) {
md[4*i] = s->h[i] >> 24;
md[4*i+1] = s->h[i] >> 16;
md[4*i+2] = s->h[i] >> 8;
md[4*i+3] = s->h[i];
}
}
static void sha256_update(struct sha256 *s, const void *m, unsigned long len)
{
const uint8_t *p = m;
unsigned r = s->len % 64;
s->len += len;
if (r) {
if (len < 64 - r) {
memcpy(s->buf + r, p, len);
return;
}
memcpy(s->buf + r, p, 64 - r);
len -= 64 - r;
p += 64 - r;
processblock(s, s->buf);
}
for (; len >= 64; len -= 64, p += 64)
processblock(s, p);
memcpy(s->buf, p, len);
}
/* ------------------------------------------------------------------------- */
/* -------------- Globals --------------- */
static int wflag, eflag, fflag, tflag, log_fd, level;
static struct {
char *buf;
size_t size;
unsigned int used;
} track;
#define HASH_LEN 32
#define HEXHASH_LEN (2 * HASH_LEN)
#define HEXDATE_LEN 16
#define DATE_OFFSET (HEXHASH_LEN + 1)
#define NAME_OFFSET (DATE_OFFSET + HEXDATE_LEN + 1)
#define RECORD_SIZE (NAME_OFFSET + PATH_MAX + 1)
static char record_buf[RECORD_SIZE];
#define hexhash (record_buf)
#define hexdate (record_buf + DATE_OFFSET)
#define namebuf (record_buf + NAME_OFFSET)
static char build_date[HEXDATE_LEN + 1];
/* ------------- Literals --------------- */
static const char
recipe_suffix[] = ".do",
journal_prefix[] = ".do..",
draft_prefix[] = ".do...do..",
tmp_prefix[] = ".do...do...do..",
dirup[] = "../",
open_comment[] = "--[====================================================================[\n",
close_comment[] = "--]====================================================================]\n";
/* -------------------------------------- */
#define log_guard(str) if ((log_fd > 0) && (log_fd < 3)) dprintf(log_fd, str)
static void
msg(const char *name, const char *error)
{
log_guard(open_comment);
dprintf(2, "%s : %s\n", name, error);
log_guard(close_comment);
}
static void
pperror(const char *s)
{
msg(s, strerror(errno));
}
#define TRACK_DELIM ':'
static void
track_init(char *heritage)
{
track.used = heritage ? strlen(heritage) : 0;
track.size = PATH_MAX + track.used;
track.buf = malloc(track.size);
if (!track.buf) {
perror("malloc");
exit (-1);
}
strcpy(track.buf, heritage ? heritage : "");
}
static void
track_truncate(unsigned int cutoff)
{
track.used = cutoff;
track.buf[cutoff] = 0;
}
static char *
track_append(char *dep)
{
size_t track_engaged, record_len;
char *record, *dep_full, *ptr;
/* store cwd in the track.buf */
track_engaged = track.used
+ 1 /* TRACK_DELIM */
/* dep's directory */
+ 1 /* '/' */
+ strlen(dep) /* dep */
+ sizeof draft_prefix /* is to be reserved in order
to have enough free space to
construct the draft_full
later in really_update_dep() */
+ 1 ; /* terminating '\0', actually
is not necessary, because
sizeof draft_prefix already
took care of it :-) */
while (1) {
if (track.size > track_engaged) {
dep_full = getcwd(track.buf + track.used + 1,
track.size - track_engaged);
if (dep_full) /* getcwd successful */
break;
} else
errno = ERANGE;
if (errno == ERANGE) { /* track.size not sufficient */
track.size += PATH_MAX;
track.buf = realloc(track.buf, track.size);
if (!track.buf) {
pperror("realloc");
return 0;
}
} else {
pperror ("getcwd");
return 0;
}
}
/* construct the dep's record and join it with the track */
record = track.buf + track.used;
*record = TRACK_DELIM;
record_len = stpcpy(stpcpy(strchr(record, '\0'), "/"), dep) - record;
track.used += record_len;
/* search for the dep's full path inside track.buf */
ptr = track.buf;
do {
ptr = strstr(ptr, record);
if (ptr == record)
return dep_full;
ptr += record_len;
} while (*ptr != TRACK_DELIM);
return 0;
}
static char *
base_name(char *name, int uprel)
{
char *ptr = strchr(name, '\0');
do {
while ((ptr != name) && (*--ptr != '/'));
} while (uprel--);
if (*ptr == '/')
ptr++;
return ptr;
}
static int
setenvfd(const char *name, int i)
{
char buf[16];
snprintf(buf, sizeof buf, "%d", i);
return setenv(name, buf, 1);
}
static char *
hashfile(int fd)
{
static const char hex[] = {'0', '1', '2', '3', '4', '5', '6', '7',
'8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};
struct sha256 ctx;
char buf[4096];
char *a;
unsigned char hash[HASH_LEN];
int i;
ssize_t r;
sha256_init(&ctx);
while ((r = read(fd, buf, sizeof buf)) > 0) {
sha256_update(&ctx, buf, r);
}
sha256_sum(&ctx, hash);
for (i = 0, a = hexhash; i < HASH_LEN; i++) {
*a++ = hex[hash[i] / sizeof hex];
*a++ = hex[hash[i] % sizeof hex];
}
return hexhash;
}
#define stringize(s) stringyze(s)
#define stringyze(s) #s
static void
datestat(struct stat *st)
{
snprintf(hexdate, HEXDATE_LEN + 1,
"%0" stringize(HEXDATE_LEN) PRIx64, (uint64_t) st->st_ctime);
}
static void
datefile(int fd)
{
struct stat st = {0};
fstat(fd, &st);
datestat(&st);
}
static void
datefilename(const char *name)
{
struct stat st = {0};
stat(name, &st);
datestat(&st);
}
static void
datebuild(const char *s)
{
FILE *f;
if (s) {
memcpy(build_date, s, HEXDATE_LEN);
return;
}
f = tmpfile();
datefile(fileno(f));
fclose(f);
memcpy(build_date, hexdate, HEXDATE_LEN);
setenv("REDO_BUILD_DATE", build_date, 1);
}
static char *
file_chdir(int *fd, char *name)
{
int fd_new;
char *slash = strrchr(name, '/');
if (!slash)
return name;
*slash = 0;
fd_new = openat(*fd, name, O_RDONLY | O_DIRECTORY | O_CLOEXEC);
*slash = '/';
if (fd_new < 0) {
pperror("openat dir");
return 0;
}
if (fchdir(fd_new) < 0) {
pperror("chdir");
return 0;
}
*fd = fd_new;
return slash + 1;
}
#define SUFFIX_LEN (sizeof recipe_suffix - 1)
#define reserve(space) if (recipe_free < (space)) return -1;\
recipe_free -= (space)
static int
find_recipe(char *dep, char *recipe_rel, size_t recipe_free, const char *slash)
{
char *recipe = recipe_rel;
char *end = strchr(dep, '\0');
char *tail = end;
char *ext, *trickpoint;
size_t recipe_size = (end - dep) + sizeof recipe_suffix;
int uprel;
/* rewind .do tail inside dependency name */
while (1) {
ext = tail - SUFFIX_LEN;
if ((ext < dep) || strncmp(ext, recipe_suffix, SUFFIX_LEN))
break;
/* if we are still here means the dep is a recipe */
if (!eflag)
return -1;
tail = ext;
}
trickpoint = strstr(dep, ".do.");
if (trickpoint == tail)
trickpoint = 0;
reserve(recipe_size); /* initial recipe name size */
strcpy(end, recipe_suffix);
/*
The full dependency name is used for recipe search only in the
current directory. The search in the updirs omits the first name.
Omitting increases the free space for recipe_rel and is done only
once, that's why it can be done preliminarily.
*/
ext = strchr(dep, '.');
recipe_free += ext - dep;
for (uprel = 0 ; slash ; uprel++, slash = strchr(slash + 1, '/')) {
while (dep != trickpoint) {
strcpy(recipe, dep);
if (fflag)
dprintf(1, "%s\n", recipe_rel);
if (access(recipe_rel, F_OK) == 0) {
*dep = '\0';
return uprel;
}
if (dep == tail)
break;
while (*++dep != '.');
}
dep = ext; /* omit the first name */
reserve(sizeof dirup - 1);
recipe = stpcpy(recipe, dirup);
}
return -1;
}
enum errors {
OK = 0,
ERROR = 1,
BUSY = EX_TEMPFAIL
};
#define ERRORS 0xff
enum hints {
IS_SOURCE = 0x100,
UPDATED_RECENTLY = 0x200,
IMMEDIATE_DEPENDENCY = 0x400
};
#define HINTS (~ERRORS)
static int
choose(const char *old, const char *new, int err, void (*perr_f)(const char *))
{
struct stat st;
if (err) {
if ((lstat(new, &st) == 0) && remove(new)) {
(*perr_f)("remove new");
err = ERROR;
}
} else {
if ((lstat(old, &st) == 0) && remove(old)) {
(*perr_f)("remove old");
err = ERROR;
}
if ((lstat(new, &st) == 0) && rename(new, old)) {
(*perr_f)("rename");
err = ERROR;
}
}
return err;
}
static int
run_recipe(int dir_fd, int fd, char *recipe_rel, const char *target_rel,
const char *family, size_t dirprefix_len)
{
int err = ERROR;
pid_t pid;
const char *target = target_rel + dirprefix_len;
char family_rel[PATH_MAX];
char tmp_rel[PATH_MAX + sizeof tmp_prefix];
char *tmp = tmp_rel + dirprefix_len;
char dirprefix[PATH_MAX];
if (strlen(target_rel) >= PATH_MAX) {
dprintf(2, "Target relative name too long : %s\n", target_rel);
return ERROR;
}
memcpy(dirprefix, target_rel, dirprefix_len);
dirprefix[dirprefix_len] = '\0';
strcpy(stpcpy(family_rel, dirprefix), family);
strcpy(stpcpy(stpcpy(tmp_rel, dirprefix), tmp_prefix), target);
pid = fork();
if (pid < 0) {
perror("fork");
} else if (pid == 0) {
const char *recipe = file_chdir(&dir_fd, recipe_rel);
if (!recipe) {
dprintf(2, "Damn! Someone have stolen my favorite recipe %s ...\n", recipe_rel);
exit(ERROR);
}
if ((setenvfd("REDO_FD", fd) != 0) ||
(setenv("REDO_DIRPREFIX", dirprefix, 1) != 0) ||
(setenv("REDO_TRACK", track.buf, 1) != 0)) {
perror("setenv");
exit(ERROR);
}
if (access(recipe, X_OK) != 0) /* run -x files with /bin/sh */
execl("/bin/sh", "/bin/sh", tflag ? "-ex" : "-e",
recipe,
target_rel, family_rel, tmp_rel, (char *)0);
else
execl(recipe, recipe,
target_rel, family_rel, tmp_rel, (char *)0);
perror("execl");
exit(ERROR);
} else {
if (wait(&err) < 0) {
perror("wait");
} else {
if (WCOREDUMP(err)) {
dprintf(2, "Core dumped.\n");
}
if (WIFEXITED(err)) {
err = WEXITSTATUS(err);
} else if (WIFSIGNALED(err)) {
err = WTERMSIG(err);
dprintf(2, "Terminated.\n");
} else if (WIFSTOPPED(err)) {
err = WSTOPSIG(err);
dprintf(2, "Stopped.\n");
}
}
}
return choose(target, tmp, err, perror);
}
static int
valid(char *record, char *journal)
{
char *last = strchr(record, '\0') - 1;
if (((last - record) < NAME_OFFSET) || (*last != '\n')) {
msg(journal, "is truncated (warning)");
return 0;
}
*last = '\0';
return 1;
}
static int
find_record(char *target_path)
{
int err = ERROR;
char journal_path[PATH_MAX + sizeof journal_prefix];
char *target = base_name(target_path, 0);
size_t dp_len = target - target_path;
memcpy(journal_path, target_path, dp_len);
strcpy(stpcpy(journal_path + dp_len, journal_prefix), target);
FILE *f = fopen(journal_path, "r");
if (f) {
while (fgets(record_buf, RECORD_SIZE, f) &&
valid(record_buf, journal_path))
{
if (strcmp(target, namebuf) == 0) {
err = OK;
break;
}
}
fclose(f);
}
return err;
}
#define may_need_rehash(f,h) (\
(h & IS_SOURCE) || (\
(!(h & UPDATED_RECENTLY)) &&\
find_record(f)\
)\
)
static int
dep_changed(char *record, int hint)
{
char *filename = record + NAME_OFFSET;
char *filedate = record + DATE_OFFSET;
int fd;
if (may_need_rehash(filename, hint)) {
datefilename(filename);
if (strncmp(filedate, hexdate, HEXDATE_LEN) == 0)
return 0;
fd = open(filename, O_RDONLY);
hashfile(fd);
close(fd);
} else {
if (strncmp(filedate, hexdate, HEXDATE_LEN) == 0)
return 0;
}
return strncmp(record, hexhash, HEXHASH_LEN);
}
static int
write_dep(int fd, char *dep, const char *dirprefix, const char *updir, int hint)
{
const char *prefix = "";
if (may_need_rehash(dep, hint)) {
int dep_fd = open(dep, O_RDONLY);
hashfile(dep_fd);
datefile(dep_fd);
if (dep_fd > 0)
close(dep_fd);
}
if (dirprefix && *dep != '/') {
size_t dp_len = strlen(dirprefix);
if (strncmp(dep, dirprefix, dp_len) == 0)
dep += dp_len;
else
prefix = updir;
}
*(hexhash + HEXHASH_LEN) = '\0';
*(hexdate + HEXDATE_LEN) = '\0';
if (dprintf(fd, "%s %s %s%s\n", hexhash, hexdate, prefix, dep) < 0) {
pperror("dprintf");
return ERROR;
}
return OK;
}
#define INDENT 2
#define NAME_MAX 255
static int really_update_dep(int dir_fd, char *dep);
static int
update_dep(int dir_fd, char *dep_path, int *hint)
{
int dep_dir_fd = dir_fd, err = ERROR;
level += INDENT;
do {
char *dep;
unsigned int origin = track.used;
if (strchr(dep_path, TRACK_DELIM)) {
msg(dep_path, "Illegal symbol " stringize(TRACK_DELIM));
break;
}
dep = file_chdir(&dep_dir_fd, dep_path);
if (dep == 0) {
msg(dep_path, "Missing dependency directory");
break;
}
if (strlen(dep) > (NAME_MAX + 1 - sizeof tmp_prefix)) {
msg(dep, "Dependency name too long");
break;
}
err = really_update_dep(dep_dir_fd, dep);
track_truncate(origin); /* strip the fresh new record */
} while (0);
if (dir_fd != dep_dir_fd) {
if (fchdir(dir_fd) < 0) {
pperror("chdir back");
err |= ERROR;
}
close(dep_dir_fd);
}
*hint = err & HINTS;
level -= INDENT;
return err & ERRORS;
}
static long
process_times(void)
{
struct tms t;
times(&t);
return t.tms_utime + t.tms_stime + t.tms_cutime + t.tms_cstime;
}
#define log_name(name) if (log_fd > 0)\
dprintf(log_fd, "%*s\"%s\",\n", level, "", name);
#define log_err() if (log_fd > 0)\
dprintf(log_fd, "%*s{ err = %d },\n", level, "", err)
#define log_time(format) if (log_fd > 0)\
dprintf(log_fd, "%*s" format "\n", level, "", process_times())
#define log_close_level(format) if (log_fd > 0)\
dprintf(log_fd, "%*s" format "\n%*s},\n",\
level, "", process_times(), err, level, "")
static int
really_update_dep(int dir_fd, char *dep)
{
char *whole, *target_rel;
char family[NAME_MAX + 1];
char recipe_rel[PATH_MAX];
char journal[NAME_MAX + 1];
char draft[NAME_MAX + 1];
int uprel, fd, err = 0, wanted = 1, hint, is_recipe = 1;
struct stat st = {0};
FILE *f;
unsigned int whole_pos = track.used + 1,
target_rel_off,
dirprefix_len;
whole = track_append(dep);
if (whole == 0) {
msg(track.buf, "Dependency loop attempt");
return wflag ? IS_SOURCE : ERROR;
}
log_name(whole);
if (fflag)
dprintf(1, "--[[\n");
strcpy(family, dep);
uprel = find_recipe(family, recipe_rel, sizeof recipe_rel, whole);
if (fflag)
dprintf(1, "--]]\n");
if (uprel < 0)
return IS_SOURCE;
target_rel = base_name(whole, uprel);
target_rel_off = target_rel - whole;
dirprefix_len = strlen(target_rel) - strlen(dep);
strcpy(stpcpy(journal, journal_prefix), dep);
stat(journal, &st);
datestat(&st);
if (strcmp(hexdate, build_date) >= 0) {
err = (st.st_mode & S_IRUSR) ? OK : ERROR;
log_err();
return err;
}
strcpy(stpcpy(draft, draft_prefix), dep);
fd = open(draft, O_CREAT | O_WRONLY | O_EXCL, 0666);
if (fd < 0) {
if (errno == EEXIST) {
err = BUSY | IMMEDIATE_DEPENDENCY;
} else {
pperror("open exclusive");
err = ERROR;
}
log_err();
return err;
}
log_time("{ t0 = %ld,");
f = fopen(journal, "r");
if (f) {
char record[RECORD_SIZE];
char *filename = record + NAME_OFFSET;
while (fgets(record, RECORD_SIZE, f) && valid(record, journal)) {
int self = !strcmp(filename, dep);
if (is_recipe) {
if (strcmp(filename, recipe_rel))
break;
is_recipe = 0;
}
if (self)
hint = IS_SOURCE;
else
err = update_dep(dir_fd, filename, &hint);
if (err || dep_changed(record, hint))
break;