dump-runlisp-image.c (finish_job): Prevent fresh images from junking!
[runlisp] / dump-runlisp-image.c
CommitLineData
7b8ff279
MW
1/* -*-c-*-
2 *
3 * Dump custom Lisp images for faster script execution
4 *
5 * (c) 2020 Mark Wooding
6 */
7
8/*----- Licensing notice --------------------------------------------------*
9 *
10 * This file is part of Runlisp, a tool for invoking Common Lisp scripts.
11 *
12 * Runlisp is free software: you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 3 of the License, or (at your
15 * option) any later version.
16 *
17 * Runlisp is distributed in the hope that it will be useful, but WITHOUT
18 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with Runlisp. If not, see <https://www.gnu.org/licenses/>.
24 */
25
6c39ec6d 26/*----- Header files ------------------------------------------------------*/
7b8ff279
MW
27
28#include "config.h"
29
30#include <assert.h>
31#include <ctype.h>
32#include <errno.h>
33#include <signal.h>
34#include <stdio.h>
35#include <stdlib.h>
36#include <string.h>
37#include <time.h>
38
39#include <dirent.h>
40#include <fcntl.h>
41#include <unistd.h>
42
43#include <sys/select.h>
44#include <sys/stat.h>
45#include <sys/time.h>
46#include <sys/uio.h>
47#include <sys/wait.h>
48
49#include "common.h"
50#include "lib.h"
51#include "mdwopt.h"
6c39ec6d 52#include "sha256.h"
7b8ff279
MW
53
54/*----- Static data -------------------------------------------------------*/
55
8996f767
MW
56/* The state required to break an output stream from a subprocess into lines
57 * so we can prefix them appropriately. Once our process starts, the `buf'
58 * points to a buffer of `MAXLINE' bytes. This is arranged as a circular
59 * buffer, containing `len' bytes starting at offset `off', and wrapping
60 * around to the start of the buffer if it runs off the end.
61 *
62 * The descriptor `fd' is reset to -1 after it's seen end-of-file.
63 */
7b8ff279 64struct linebuf {
8996f767
MW
65 int fd; /* our file descriptor (or -1) */
66 char *buf; /* line buffer, or null */
67 unsigned off, len; /* offset */
7b8ff279 68};
8996f767 69#define MAXLINE 16384u /* maximum acceptable line length */
7b8ff279 70
8996f767 71/* Job-state constants. */
7b8ff279 72enum {
6c39ec6d
MW
73 JST_INTERN, /* not that kind of job */
74 JST_VERSION, /* hashing the Lisp version number */
75 JST_DUMP, /* dumping the custom image */
7b8ff279
MW
76 JST_NSTATE
77};
78
8996f767 79/* The state associated with an image-dumping job. */
7b8ff279 80struct job {
8996f767
MW
81 struct treap_node _node; /* treap intrusion */
82 struct job *next; /* next job in whichever list */
8996f767 83 unsigned st; /* job state (`JST_...') */
6c39ec6d
MW
84 struct config_section *sect; /* the system-definition section */
85 struct config_var *dumpvar; /* the `dump-image' variable */
86 struct argv av_version, av_dump; /* argument vectors to execute */
87 char *imgnew, *imghash, *imgnewlink, *imglink; /* link and final outputs */
88 char *oldimg; /* old image name */
8996f767
MW
89 FILE *log; /* log output file (`stdout'?) */
90 pid_t kid; /* process id of child (or -1) */
91 int exit; /* exit status from child */
6c39ec6d 92 struct sha256_state h; /* hash context for version */
8996f767 93 struct linebuf out, err; /* line buffers for stdout, stderr */
7b8ff279
MW
94};
95#define JOB_NAME(job) TREAP_NODE_KEY(job)
96#define JOB_NAMELEN(job) TREAP_NODE_KEYLEN(job)
97
10427eb2
MW
98static struct treap jobs = TREAP_INIT, /* Lisp systems seen so far */
99 good = TREAP_INIT; /* files ok to be in image dir */
6c39ec6d
MW
100static struct job /* lists of jobs */
101 *job_ready, **job_ready_tail = &job_ready, /* queue of jobs to start */
102 *job_delete, **job_delete_tail = &job_delete, /* queue of delete jobs */
103 *job_run; /* list of active jobs */
8996f767
MW
104static unsigned nrun, maxrun = 1; /* running and maximum job counts */
105static int rc = 0; /* code that we should return */
106static int nullfd; /* file descriptor for `/dev/null' */
107static const char *tmpdir; /* temporary directory path */
7b8ff279 108
8996f767
MW
109static int sig_pipe[2] = { -1, -1 }; /* pipe for reporting signals */
110static sigset_t caught, pending; /* signals we catch; have caught */
111static int sigloss = -1; /* signal that caused us to lose */
7b8ff279 112
8996f767
MW
113static unsigned flags = 0; /* flags for the application */
114#define AF_BOGUS 0x0001u /* invalid comand-line syntax */
115#define AF_SETCONF 0x0002u /* explicit configuration */
116#define AF_DRYRUN 0x0004u /* don't actually do it */
117#define AF_ALL 0x0008u /* dump all known Lisps */
118#define AF_FORCE 0x0010u /* dump even if images exist */
119#define AF_CHECKINST 0x0020u /* check Lisp exists before dump */
10427eb2
MW
120#define AF_REMOVE 0x0040u /* remove selected Lisp images */
121#define AF_CLEAN 0x0080u /* remove other Lisp images */
122#define AF_JUNK 0x0100u /* remove unrecognized files */
7b8ff279 123
8996f767 124/*----- Miscellany --------------------------------------------------------*/
7b8ff279 125
8996f767 126/* Report a (printf(3)-style) message MSG, and remember to fail later. */
7b8ff279 127static PRINTF_LIKE(1, 2) void bad(const char *msg, ...)
8996f767 128 { va_list ap; va_start(ap, msg); vmoan(msg, ap); va_end(ap); rc = 127; }
7b8ff279 129
6c39ec6d
MW
130/* Answer whether a string consists entirely of hex digits. */
131static int hex_digits_p(const char *p, size_t sz)
132{
133 const char *l;
134
135 for (l = p + sz; p < l; p++) if (!ISXDIGIT(*p)) return (0);
136 return (1);
137}
138
8996f767 139/*----- File utilities ----------------------------------------------------*/
7b8ff279 140
8996f767
MW
141/* Main recursive subroutine for `recursive_delete'.
142 *
143 * The string DD currently contains the pathname of a directory, without a
144 * trailing `/' (though there is /space/ for a terminating zero or whatever).
145 * Recursively delete all of the files and directories within it. Appending
146 * further text to DD is OK, but clobbering the characters which are there
147 * already isn't allowed.
148 */
7b8ff279
MW
149static void recursive_delete_(struct dstr *dd)
150{
7b8ff279
MW
151 DIR *dir;
152 struct dirent *d;
8996f767 153 size_t n = dd->len;
7b8ff279 154
8996f767
MW
155 /* Open the directory. */
156 dd->p[n] = 0; dir = opendir(dd->p);
7b8ff279
MW
157 if (!dir)
158 lose("failed to open directory `%s' for cleanup: %s",
159 dd->p, strerror(errno));
160
8996f767
MW
161 /* We'll need to build pathnames for the files inside the directory, so add
162 * the separating `/' character. Remember the length of this prefix
163 * because this is the point we'll be rewinding to for each filename we
164 * find.
165 */
7b8ff279 166 dd->p[n++] = '/';
8996f767
MW
167
168 /* Now go through each file in turn. */
7b8ff279 169 for (;;) {
8996f767
MW
170
171 /* Get a filename. If we've run out then we're done. Skip the special
172 * `.' and `..' entries.
173 */
7b8ff279
MW
174 d = readdir(dir); if (!d) break;
175 if (d->d_name[0] == '.' && (!d->d_name[1] ||
176 (d->d_name[1] == '.' && !d->d_name[2])))
177 continue;
8996f767
MW
178
179 /* Rewind the string offset and append the new filename. */
7b8ff279 180 dd->len = n; dstr_puts(dd, d->d_name);
8996f767
MW
181
182 /* Try to delete it the usual way. If it was actually a directory then
183 * recursively delete it instead. (We could lstat(2) it first, but this
184 * should be at least as quick to identify a directory, and it'll save a
185 * lstat(2) call in the (common) case that it's not a directory.
186 */
7b8ff279
MW
187 if (!unlink(dd->p));
188 else if (errno == EISDIR) recursive_delete_(dd);
189 else lose("failed to delete file `%s': %s", dd->p, strerror(errno));
190 }
8996f767
MW
191
192 /* We're done. Try to delete the directory. (It's possible that there was
193 * some problem with enumerating the directory, but we'll ignore that: if
194 * it matters then the directory won't be empty and the rmdir(2) will
195 * fail.)
196 */
7b8ff279
MW
197 closedir(dir);
198 dd->p[--n] = 0;
199 if (rmdir(dd->p))
200 lose("failed to delete directory `%s': %s", dd->p, strerror(errno));
201}
202
8996f767 203/* Recursively delete the thing named PATH. */
7b8ff279
MW
204static void recursive_delete(const char *path)
205{
206 struct dstr d = DSTR_INIT;
207 dstr_puts(&d, path); recursive_delete_(&d); dstr_release(&d);
208}
209
8996f767
MW
210/* Configure a file descriptor FD.
211 *
212 * Set its nonblocking state to NONBLOCK and close-on-exec state to CLOEXEC.
213 * In both cases, -1 means to leave it alone, zero means to turn it off, and
214 * any other nonzero value means to turn it on.
215 */
7b8ff279
MW
216static int configure_fd(const char *what, int fd, int nonblock, int cloexec)
217{
218 int fl, nfl;
219
220 if (nonblock != -1) {
221 fl = fcntl(fd, F_GETFL); if (fl < 0) goto fail;
222 if (nonblock) nfl = fl | O_NONBLOCK;
223 else nfl = fl&~O_NONBLOCK;
224 if (fl != nfl && fcntl(fd, F_SETFL, nfl)) goto fail;
225 }
226
227 if (cloexec != -1) {
228 fl = fcntl(fd, F_GETFD); if (fl < 0) goto fail;
229 if (cloexec) nfl = fl | FD_CLOEXEC;
230 else nfl = fl&~FD_CLOEXEC;
231 if (fl != nfl && fcntl(fd, F_SETFD, nfl)) goto fail;
232 }
233
234 return (0);
235
236fail:
237 bad("failed to configure %s descriptor: %s", what, strerror(errno));
238 return (-1);
239}
240
8996f767
MW
241/* Create a temporary directory and remember where we put it. */
242static void set_tmpdir(void)
243{
244 struct dstr d = DSTR_INIT;
245 size_t n;
246 unsigned i;
247
248 /* Start building the path name. Remember the length: we'll rewind to
249 * here and try again if our first attempt doesn't work.
250 */
251 dstr_putf(&d, "%s/runlisp.%d.", my_getenv("TMPDIR", "/tmp"), getpid());
252 i = 0; n = d.len;
253
254 /* Keep trying until it works. */
255 for (;;) {
256
257 /* Build a complete name. */
258 d.len = n; dstr_putf(&d, "%d", rand());
259
260 /* Try to create the directory. If it worked, we're done. If it failed
261 * with `EEXIST' then we'll try again for a while, but give up it it
262 * doesn't look like we're making any progress. If it failed for some
263 * other reason then there's probably not much hope so give up.
264 */
265 if (!mkdir(d.p, 0700)) break;
266 else if (errno != EEXIST)
267 lose("failed to create temporary directory `%s': %s",
268 d.p, strerror(errno));
269 else if (++i >= 32) {
270 d.len = n; dstr_puts(&d, "???");
271 lose("failed to create temporary directory `%s': too many attempts",
272 d.p);
273 }
274 }
275
276 /* Remember the directory name. */
277 tmpdir = xstrndup(d.p, d.len); dstr_release(&d);
278}
279
280/*----- Signal handling ---------------------------------------------------*/
281
282/* Forward reference into job management. */
283static void reap_children(void);
284
285/* Clean things up on exit.
286 *
287 * Currently this just means to delete the temporary directory if we've made
288 * one.
289 */
290static void cleanup(void)
291 { if (tmpdir) { recursive_delete(tmpdir); tmpdir = 0; } }
292
293/* Check to see whether any signals have arrived, and do the sensible thing
294 * with them.
295 */
296static void check_signals(void)
297{
298 sigset_t old, pend;
299 char buf[32];
300 ssize_t n;
301
302 /* Ensure exclusive access to the signal-handling machinery, drain the
303 * signal pipe, and take a copy of the set of caught signals.
304 */
305 sigprocmask(SIG_BLOCK, &caught, &old);
306 pend = pending; sigemptyset(&pending);
307 for (;;) {
308 n = read(sig_pipe[0], buf, sizeof(buf));
309 if (!n) lose("(internal) signal pipe closed!");
310 if (n < 0) break;
311 }
312 if (errno != EAGAIN && errno != EWOULDBLOCK)
313 lose("failed to read signal pipe: %s", strerror(errno));
314 sigprocmask(SIG_SETMASK, &old, 0);
315
316 /* Check for each signal of interest to us.
317 *
318 * Interrupty signals just set `sigloss' -- the `run_jobs' loop will know
319 * to unravel everything if this happens. If `SIGCHLD' happened, then
320 * check on job process status.
321 */
322 if (sigismember(&pend, SIGINT)) sigloss = SIGINT;
323 else if (sigismember(&pend, SIGHUP)) sigloss = SIGHUP;
324 else if (sigismember(&pend, SIGTERM)) sigloss = SIGTERM;
325 if (sigismember(&pend, SIGCHLD)) reap_children();
326}
327
328/* The actual signal handler.
329 *
330 * Set the appropriate signal bit in `pending', and a byte (of any value)
331 * down the signal pipe to wake up the select(2) loop.
332 */
7b8ff279
MW
333static void handle_signal(int sig)
334{
335 sigset_t old;
336 char x = '!';
337
8996f767 338 /* Ensure exclusive access while we fiddle with the `caught' set. */
7b8ff279
MW
339 sigprocmask(SIG_BLOCK, &caught, &old);
340 sigaddset(&pending, sig);
341 sigprocmask(SIG_SETMASK, &old, 0);
342
8996f767
MW
343 /* Wake up the select(2) loop. If this fails, there's not a lot we can do
344 * about it.
345 */
7b8ff279
MW
346 DISCARD(write(sig_pipe[1], &x, 1));
347}
348
8996f767
MW
349/* Install our signal handler to catch SIG.
350 *
351 * If `SIGF_IGNOK' is set in F then don't trap the signal if it's currently
352 * ignored. (This is used for signals like `SIGINT', which usually should
353 * interrupt us; but if the caller wants us to ignore them, we should do as
354 * it wants.)
355 *
356 * WHAT describes the signal, for use in diagnostic messages.
357 */
358#define SIGF_IGNOK 1u
359static void set_signal_handler(const char *what, int sig, unsigned f)
360{
361 struct sigaction sa, sa_old;
362
363 sigaddset(&caught, sig);
364
365 if (f&SIGF_IGNOK) {
366 if (sigaction(sig, 0, &sa_old)) goto fail;
367 if (sa_old.sa_handler == SIG_IGN) return;
368 }
369
370 sa.sa_handler = handle_signal;
371 sigemptyset(&sa.sa_mask);
372 sa.sa_flags = SA_NOCLDSTOP;
373 if (sigaction(sig, &sa, 0)) goto fail;
374
375 return;
376
377fail:
378 lose("failed to set %s signal handler: %s", what, strerror(errno));
379}
380
381/*----- Line buffering ----------------------------------------------------*/
382
383/* Find the next newline in the line buffer BUF.
384 *
385 * The search starts at `BUF->off', and potentially covers the entire buffer
386 * contents. Set *LINESZ_OUT to the length of the line, in bytes. (Callers
387 * must beware that the text of the line may wrap around the ends of the
388 * buffer.) Return zero if we found a newline, or nonzero if the search
389 * failed.
390 */
391static int find_newline(struct linebuf *buf, size_t *linesz_out)
392{
393 char *nl;
394
395 if (buf->off + buf->len <= MAXLINE) {
396 /* The buffer contents is in one piece. Just search it. */
397
398 nl = memchr(buf->buf + buf->off, '\n', buf->len);
399 if (nl) { *linesz_out = (nl - buf->buf) - buf->off; return (0); }
400
401 } else {
402 /* The buffer contents is in two pieces. We must search both of them. */
403
404 nl = memchr(buf->buf + buf->off, '\n', MAXLINE - buf->off);
405 if (nl) { *linesz_out = (nl - buf->buf) - buf->off; return (0); }
406 nl = memchr(buf->buf, '\n', buf->len - (MAXLINE - buf->off));
407 if (nl)
408 { *linesz_out = (nl - buf->buf) + (MAXLINE - buf->off); return (0); }
409 }
410
411 return (-1);
412}
413
414/* Write a completed line out to the JOB's log file.
415 *
416 * The line starts at BUF->off, and continues for N bytes, not including the
417 * newline (which, in fact, might not exist at all). Precede the actual text
418 * of the line with the JOB's name, and the MARKER character, and follow it
419 * with the TAIL text (which should include an actual newline character).
420 */
421static void write_line(struct job *job, struct linebuf *buf,
422 size_t n, char marker, const char *tail)
423{
424 fprintf(job->log, "%-13s %c ", JOB_NAME(job), marker);
425 if (buf->off + n <= MAXLINE)
426 fwrite(buf->buf + buf->off, 1, n, job->log);
427 else {
428 fwrite(buf->buf + buf->off, 1, MAXLINE - buf->off, job->log);
429 fwrite(buf->buf, 1, n - (MAXLINE - buf->off), job->log);
430 }
431 fputs(tail, job->log);
432}
433
6c39ec6d
MW
434/* Hash N bytes freshly added to the buffer BUF. */
435static void hash_input(struct linebuf *buf, size_t n, struct sha256_state *h)
436{
437 size_t start = (buf->off + buf->len)%MAXLINE;
438
439 if (start + n <= MAXLINE)
440 sha256_hash(h, buf->buf + start, n);
441 else {
442 sha256_hash(h, buf->buf + start, MAXLINE - start);
443 sha256_hash(h, buf->buf, n - (MAXLINE - start));
444 }
445}
446
8996f767
MW
447/* Collect output lines from JOB's process and write them to the log.
448 *
449 * Read data from BUF's file descriptor. Output complete (or overlong) lines
450 * usng `write_line'. On end-of-file, output any final incomplete line in
451 * the same way, close the descriptor, and set it to -1.
6c39ec6d
MW
452 *
453 * As a rather unpleasant quirk, if the hash-state pointer H is not null,
454 * then also feed all the data received into it.
8996f767 455 */
6c39ec6d
MW
456static void prefix_lines(struct job *job, struct linebuf *buf, char marker,
457 struct sha256_state *h)
8996f767
MW
458{
459 struct iovec iov[2]; int niov;
460 ssize_t n;
461 size_t linesz;
462
463 /* Read data into the buffer. This fancy dance with readv(2) is probably
464 * overkill.
465 *
466 * We can't have BUF->len = MAXLINE because we'd have flushed out a
467 * maximum-length buffer as an incomplete line last time.
468 */
469 assert(buf->len < MAXLINE);
470 if (!buf->off) {
471 iov[0].iov_base = buf->buf + buf->len;
472 iov[0].iov_len = MAXLINE - buf->len;
473 niov = 1;
474 } else if (buf->off + buf->len >= MAXLINE) {
475 iov[0].iov_base = buf->buf + buf->off + buf->len - MAXLINE;
476 iov[0].iov_len = MAXLINE - buf->len;
477 niov = 1;
478 } else {
479 iov[0].iov_base = buf->buf + buf->off + buf->len;
480 iov[0].iov_len = MAXLINE - (buf->off + buf->len);
481 iov[1].iov_base = buf->buf;
482 iov[1].iov_len = buf->off;
483 niov = 1;
484 }
485 n = readv(buf->fd, iov, niov);
486
487 if (n < 0) {
6c39ec6d
MW
488 /* An error occurred. If there's no data to read after all then just
489 * move on. Otherwise we have a problem.
8996f767 490 */
6c39ec6d 491
8996f767
MW
492 if (errno == EAGAIN || errno == EWOULDBLOCK) return;
493 lose("failed to read job `%s' output stream: %s",
494 JOB_NAME(job), strerror(errno));
6c39ec6d 495 } else if (!n) {
8996f767
MW
496 /* We've hit end-of-file. Close the stream, and write out any
497 * unterminated partial line.
498 */
6c39ec6d 499
8996f767
MW
500 close(buf->fd); buf->fd = -1;
501 if (buf->len)
502 write_line(job, buf, buf->len, marker, " [missing final newline]\n");
6c39ec6d
MW
503 } else {
504 /* We read some fresh data. Output any new complete lines. */
505
506 /* If we're supposed to hash data as it comes in then we should do that
507 * now.
508 */
509 if (h) hash_input(buf, n, h);
510
511 /* Include the new material in the buffer length, and write out any
512 * complete lines we find.
513 */
514 buf->len += n;
515 while (!find_newline(buf, &linesz)) {
516 write_line(job, buf, linesz, marker, "\n");
517 buf->len -= linesz + 1;
518 buf->off += linesz + 1; if (buf->off >= MAXLINE) buf->off -= MAXLINE;
519 }
520
521 if (!buf->len)
522 /* If there's nothing left then we might as well reset the buffer
523 * offset to the start of the buffer.
524 */
525 buf->off = 0;
526 else if (buf->len == MAXLINE) {
527 /* We've filled the buffer with stuff that's not a whole line. Flush
528 * it out anyway.
529 */
530 write_line(job, buf, MAXLINE, marker, " [...]\n");
531 buf->off = buf->len = 0;
532 }
8996f767
MW
533 }
534}
535
536/*----- Job management ----------------------------------------------------*/
537
6c39ec6d
MW
538/* Record the SZ-byte leafname at P as being legitimate, so that it doesn't
539 * get junked.
540 */
541static void notice_filename(const char *p, size_t sz)
542{
543 struct treap_node *node;
544 struct treap_path path;
545
546 node = treap_probe(&good, p, sz, &path);
547 if (!node) {
548 node = xmalloc(sizeof(*node));
549 treap_insert(&good, &path, node, p, sz);
550 }
551}
552
553/* There are basically two kinds of jobs.
554 *
555 * An `internal' job -- state `JST_INTERN' -- can be handled entirely within
556 * this process. Internal jobs have trivial lifecycles: they're created, put
557 * on a queue, executed, and thrown away. Jobs are executed when some code
558 * decides to walk the appropriate queue and do the work. As a result, they
559 * don't need to have distinctive states: `JST_INTERN' only exists to
560 * distinguish internal jobs from active ones if they somehow manage to end
561 * up in the external-job machinery.
562 *
563 * External jobs all work in basically the same way: we fork and exec a
564 * sequence of subprocess to do the work. The majority of handling external
565 * jobs is in the care and feeding of these subprocesses, so they end up on
566 * various lists primarily concerned with the state of the subprocesses, and
567 * the progress of the job through its sequence of subprocesses is recorded
568 * in the job's `st' field.
569 *
570 * External jobs have a comparatively complicated lifecycle.
571 *
572 * * Initially, the job is on the `ready' queue by `add_job'. It has no
573 * child process or log file.
574 *
575 * * At some point, `start_jobs' decides to start this job up: a log file
576 * is created (if the job doesn't have one already), a child process is
577 * forked, and pipes are set up to capture the child's output. It gets
578 * moved to the `run' list (which is not maintained in any particular
579 * order). Jobs on the `run' list participate in the main select(2)
580 * loop.
581 *
582 * * When the job's child process dies and the pipes capturing its output
583 * streams finally dry up, the job is considered finished. What happens
584 * next depends on its state: either it gets updated somehow, and pushed
585 * back onto the end of the `ready' queue so that another child can be
586 * started, or the job is finished and dies.
587 *
588 * The counter `nrun' counts the number of actually running jobs, i.e., those
589 * with living child processes. This doesn't simply count the number of jobs
590 * on the `run' list: remember that the latter also contains jobs whose child
591 * has died, but whose output has not yet been collected.
592 */
593
10427eb2 594/* Consider a Lisp system description and maybe add a job to the right queue.
8996f767 595 *
10427eb2
MW
596 * The Lisp system is described by the configuration section SECT. Most of
597 * the function is spent on inspecting this section for suitability and
598 * deciding what to do about it.
8996f767 599 *
10427eb2
MW
600 * The precise behaviour depends on F, which should be the bitwise-OR of a
601 * `JQ_...' constant and zero or more flags, as follows.
602 *
603 * * The bits covered by `JMASK_QUEUE' identify which queue the job should
604 * be added to if the section defines a cromulent Lisp system:
605 *
606 * -- `JQ_NONE' -- don't actually make a job at all;
607 * -- `JQ_READY' -- add the Lisp to the `job_ready' queue, so we'll; or
608 * -- `JQ_DELETE' -- add the Lisp to the `job_delete' queue.
609 *
610 * * `JF_PICKY': The user identified this Lisp system explicitly, so
611 * complain if the configuration section doesn't look right. This is
612 * clear if the caller is just enumerating all of the configuration
613 * sections: without this feature, we'd be checking everything twice,
614 * which (a) is inefficient, and -- more importantly -- (b) could lead to
615 * problems if the two checks are inconsistent.
616 *
617 * * `JF_CHECKINST': Ignore this Lisp if `AF_CHECKINST' is set and it's not
618 * actually installed. (This is usually set for `JQ_READY' calls, so
619 * that we don't try to dump Lisps which aren't there, but clear for
620 * `JQ_DELETE' calls so that we clear out Lisps which have gone away.)
621 *
622 * * `JF_CHECKEXIST': Ignore this Lisp if its image file already exists.
623 *
624 * * `JF_NOTICE': Record the Lisp's image basename in the `good' treap so
625 * that we can identify everything else we find in the image directory as
626 * junk.
8996f767 627 */
10427eb2
MW
628#define JMASK_QUEUE 3u /* which queue to add good Lisp to */
629#define JQ_NONE 0u /* don't add to any queue */
630#define JQ_READY 1u /* `job_ready' */
631#define JQ_DELETE 2u /* `job_delete' */
632#define JF_PICKY 4u /* lose if section isn't Lisp defn */
633#define JF_CHECKINST 8u /* maybe check Lisp is installed */
634#define JF_CHECKEXIST 16u /* skip if image already exists */
635#define JF_NOTICE 32u /* record Lisp's image basename */
636
637#define JADD_NAMED (JQ_READY | JF_PICKY | JF_CHECKINST)
638#define JADD_DEFAULT (JQ_READY | JF_CHECKINST)
639#define JADD_CLEANUP (JQ_DELETE)
640#define JADD_NOTICE (JQ_NONE)
641static void add_job(unsigned f, struct config_section *sect)
7b8ff279 642{
10427eb2
MW
643 const char *name;
644 struct job *job, ***tail;
6c39ec6d
MW
645 struct treap_path jobpath;
646 struct config_var *dumpvar, *runvar, *imgvar;
647 struct dstr d = DSTR_INIT, dd = DSTR_INIT;
648 struct argv av_version = ARGV_INIT, av_dump = ARGV_INIT;
649 struct stat st;
650 char *imgnewlink = 0, *imglink = 0, *oldimg = 0, *p;
651 unsigned jst;
10427eb2 652 size_t i, len;
6c39ec6d 653 ssize_t n;
7b8ff279
MW
654 unsigned fef;
655
10427eb2
MW
656 /* We'll want the section's name for all sorts of things. */
657 name = CONFIG_SECTION_NAME(sect);
658 len = CONFIG_SECTION_NAMELEN(sect);
659
660 /* Check to see whether this Lisp system is already queued up.
661 *
662 * We'll get around to adding the new job node to the treap right at the
663 * end, so use a separate path object to keep track of where to put it.
664 */
665 job = treap_probe(&jobs, name, len, &jobpath);
7b8ff279 666 if (job) {
10427eb2 667 if ((f&JF_PICKY) && verbose >= 1)
7b8ff279 668 moan("ignoring duplicate Lisp `%s'", JOB_NAME(job));
10427eb2 669 goto end;
7b8ff279
MW
670 }
671
10427eb2
MW
672 /* Check that the section defines a Lisp, and that it can be dumped.
673 *
674 * It's not obvious that this is right. Maybe there should be some
675 * additional flag so that we don't check dumpability if we're planning to
676 * delete the image. But it /is/ right: since the thing which tells us
677 * whether we can dump is that the section tells us the image's name, if
678 * it can't be dumped then we won't know what file to delete! So we have
679 * no choice.
8996f767 680 */
6c39ec6d
MW
681 runvar = config_find_var(&config, sect, CF_INHERIT, "run-script");
682 if (!runvar) {
10427eb2
MW
683 if (f&JF_PICKY) lose("unknown Lisp implementation `%s'", name);
684 else if (verbose >= 3) moan("skipping non-Lisp section `%s'", name);
685 goto end;
686 }
687 imgvar = config_find_var(&config, sect, CF_INHERIT, "image-file");
688 if (!imgvar) {
689 if (f&JF_PICKY)
690 lose("Lisp implementation `%s' doesn't use custom images", name);
691 else if (verbose >= 3)
692 moan("skipping Lisp `%s': no custom image support", name);
7b8ff279
MW
693 goto end;
694 }
7b8ff279 695
8996f767 696 /* Check that the other necessary variables are present. */
10427eb2
MW
697 dumpvar = config_find_var(&config, sect, CF_INHERIT, "dump-image");
698 if (!dumpvar)
699 lose("variable `dump-image' not defined for Lisp `%s'", name);
8996f767 700
6c39ec6d
MW
701 /* Build the job's command lines. */
702 config_subst_split_var(&config, sect, runvar, &av_version);
703 if (!av_version.n)
704 lose("empty `run-script' command for Lisp implementation `%s'", name);
90fec59b
MW
705 argv_append(&av_version,
706 config_subst_string_alloc
707 (&config, sect, "<internal>",
708 "?${lisp-version?(lisp-implementation-version)}"));
6c39ec6d
MW
709 config_subst_split_var(&config, sect, dumpvar, &av_dump);
710 if (!av_dump.n)
8996f767
MW
711 lose("empty `dump-image' command for Lisp implementation `%s'", name);
712
713 /* If we're supposed to check that the Lisp exists before proceeding then
714 * do that. There are /two/ commands to check: the basic Lisp command,
715 * /and/ the command to actually do the dumping, which might not be the
716 * same thing. (Be careful not to check the same command twice, though,
717 * because that would cause us to spam the user with redundant
718 * diagnostics.)
719 */
10427eb2 720 if ((f&JF_CHECKINST) && (flags&AF_CHECKINST)) {
10427eb2 721 fef = (verbose >= 3 ? FEF_VERBOSE : 0);
6c39ec6d 722 if (!found_in_path_p(av_version.v[0], fef)) {
10427eb2
MW
723 if (verbose >= 3)
724 moan("skipping Lisp `%s': can't find Lisp command `%s'",
6c39ec6d 725 name, av_version.v[0]);
10427eb2
MW
726 goto end;
727 }
6c39ec6d
MW
728 if (STRCMP(av_version.v[0], !=, av_dump.v[0]) &&
729 !found_in_path_p(av_dump.v[0], fef)) {
730 if (verbose >= 3)
10427eb2 731 moan("skipping Lisp `%s': can't find dump command `%s'",
6c39ec6d 732 av_dump.v[0], d.p);
7b8ff279
MW
733 goto end;
734 }
735 }
736
6c39ec6d
MW
737 /* Collect the output image file names. */
738 imglink =
739 config_subst_string_alloc(&config, sect, "<internal>", "${@image-link}");
740 imgnewlink =
741 config_subst_string_alloc(&config, sect,
742 "<internal>", "${@image-newlink}");
743
744 /* Determine the image link basename. If necessary, record it so that it
745 * doesn't get junked.
10427eb2 746 */
6c39ec6d
MW
747 dstr_reset(&dd); config_subst_var(&config, sect, imgvar, &dd);
748 if (f&JF_NOTICE) notice_filename(dd.p, dd.len);
10427eb2 749
6c39ec6d
MW
750 /* Fill in the directory name for the output image. */
751 dstr_reset(&d);
752 p = strrchr(imglink, '/');
753 if (p) dstr_putm(&d, imglink, p + 1 - imglink);
8996f767 754
6c39ec6d
MW
755 /* Inspect the existing image link if there is one, and record its
756 * destination.
8996f767 757 */
6c39ec6d
MW
758 for (;;) {
759
760 /* Read the link destination. The `lstat'/`readlink' two-step is
761 * suggested by the POSIX specification.
762 */
763 if (lstat(imglink, &st)) {
764 if (verbose >= (errno == ENOENT ? 3 : 1))
765 moan("failed to read metadata for Lisp `%s' image link `%s': %s",
766 name, imglink, strerror(errno));
767 break;
768 }
769 if (!S_ISLNK(st.st_mode)) {
770 if (verbose >= 1)
771 moan("Lisp `%s' image link `%s' isn't a symbolic link",
772 name, imglink);
773 break;
774 }
775 dstr_ensure(&d, st.st_size + 1);
776 n = readlink(imglink, d.p + d.len, d.sz - d.len);
777 if (n < 0) {
778 moan("failed to read Lisp `%s' image link `%s': %s",
779 name, imglink, strerror(errno));
780 break;
781 }
782 if (n == d.sz - d.len) continue;
783
784 /* Check that the link has the right form. (We don't want to delete the
785 * referent if it's not actually our image.)
786 *
787 * We expect the referent to look like ${image-file} followed by a hyphen
788 * and some hex digits.
789 */
790 if (n <= dd.len ||
791 STRNCMP(d.p + d.len, !=, dd.p, dd.len) ||
792 d.p[d.len + dd.len] != '-' ||
793 !hex_digits_p(d.p + (d.len + dd.len + 1), n - (dd.len + 1))) {
794 if (verbose >= 1)
795 moan("Lisp `%s' image link `%s' has unexpected referent `%s'",
796 name, imglink, d.p);
797 break;
7b8ff279 798 }
6c39ec6d
MW
799
800 /* OK, so it looks legit. Protect it from being junked. */
801 if (f&JF_NOTICE) notice_filename(d.p + d.len, n);
802 d.p[d.len + n] = 0; d.len += n;
803 oldimg = xstrndup(d.p, d.len);
804 break;
7b8ff279
MW
805 }
806
8996f767
MW
807 /* All preflight checks complete. Build the job and hook it onto the end
808 * of the list. (Steal the command-line vector so that we don't try to
809 * free it during cleanup.)
810 */
10427eb2 811 switch (f&JMASK_QUEUE) {
6c39ec6d
MW
812 case JQ_NONE: jst = JST_INTERN; tail = 0; break;
813 case JQ_READY: jst = JST_VERSION; tail = &job_ready_tail; break;
814 case JQ_DELETE: jst = JST_INTERN; tail = &job_delete_tail; break;
10427eb2
MW
815 default: assert(0);
816 }
7b8ff279 817 job = xmalloc(sizeof(*job));
6c39ec6d 818 job->st = jst; job->sect = sect; job->dumpvar = dumpvar;
10427eb2 819 job->kid = -1; job->log = 0;
7b8ff279
MW
820 job->out.fd = -1; job->out.buf = 0;
821 job->err.fd = -1; job->err.buf = 0;
6c39ec6d
MW
822 job->av_version = av_version; argv_init(&av_version);
823 argv_init(&job->av_dump);
824 job->imgnew = 0; job->imghash = 0;
825 job->imgnewlink = imgnewlink; imgnewlink = 0;
826 job->imglink = imglink; imglink = 0;
827 job->oldimg = oldimg; oldimg = 0;
10427eb2
MW
828 treap_insert(&jobs, &jobpath, &job->_node, name, len);
829 if (tail) { **tail = job; *tail = &job->next; }
8996f767 830
7b8ff279 831end:
8996f767 832 /* All done. Cleanup time. */
6c39ec6d
MW
833 for (i = 0; i < av_version.n; i++) free(av_version.v[i]);
834 for (i = 0; i < av_dump.n; i++) free(av_dump.v[i]);
835 free(imgnewlink); free(imglink); free(oldimg);
836 dstr_release(&d); dstr_release(&dd);
837 argv_release(&av_version); argv_release(&av_dump);
7b8ff279
MW
838}
839
10427eb2
MW
840/* As `add_job' above, but look the Lisp implementation up by name.
841 *
842 * The flags passed to `add_job' are augmented with `JF_PICKY' because this
843 * is an explicitly-named Lisp implementation.
844 */
845static void add_named_job(unsigned f, const char *name, size_t len)
846{
847 struct config_section *sect;
848
849 sect = config_find_section_n(&config, 0, name, len);
850 if (!sect) lose("unknown Lisp implementation `%.*s'", (int)len, name);
851 add_job(f | JF_PICKY, sect);
852}
853
8996f767
MW
854/* Free the JOB and all the resources it holds.
855 *
856 * Close the pipes; kill the child process. Everything must go.
857 */
7b8ff279
MW
858static void release_job(struct job *job)
859{
8996f767 860 size_t i;
10427eb2 861 struct job *j;
8996f767 862
7b8ff279
MW
863 if (job->kid > 0) kill(job->kid, SIGKILL); /* ?? */
864 if (job->log && job->log != stdout) fclose(job->log);
6c39ec6d
MW
865 free(job->imgnew); free(job->imghash);
866 free(job->imglink); free(job->imgnewlink);
867 free(job->oldimg);
868 for (i = 0; i < job->av_version.n; i++) free(job->av_version.v[i]);
869 for (i = 0; i < job->av_dump.n; i++) free(job->av_dump.v[i]);
870 argv_release(&job->av_version); argv_release(&job->av_dump);
7b8ff279
MW
871 free(job->out.buf); if (job->out.fd >= 0) close(job->out.fd);
872 free(job->err.buf); if (job->err.fd >= 0) close(job->err.fd);
10427eb2 873 j = treap_remove(&jobs, JOB_NAME(job), JOB_NAMELEN(job)); assert(j == job);
7b8ff279
MW
874 free(job);
875}
876
8996f767
MW
877/* Do all the necessary things when JOB finishes (successfully or not).
878 *
6c39ec6d
MW
879 * Eventually the job is either freed (using `release_job'), or updated and
880 * stuffed back into the `job_run' queue. The caller is expected to have
881 * already unlinked the job from its current list.
8996f767 882 */
7b8ff279
MW
883static void finish_job(struct job *job)
884{
6c39ec6d
MW
885 char buf[16483], *p;
886 unsigned char *hbuf;
887 struct dstr d = DSTR_INIT;
888 size_t i, n;
7b8ff279
MW
889 int ok = 0;
890
8996f767
MW
891 /* Start a final line to the job log describing its eventual fate.
892 *
893 * This is where we actually pick apart the exit status. Set `ok' if it
894 * actually succeeded, because that's all anything else cares about.
895 */
7b8ff279
MW
896 fprintf(job->log, "%-13s > ", JOB_NAME(job));
897 if (WIFEXITED(job->exit)) {
898 if (!WEXITSTATUS(job->exit))
899 { fputs("completed successfully\n", job->log); ok = 1; }
900 else
901 fprintf(job->log, "failed with exit status %d\n",
902 WEXITSTATUS(job->exit));
903 } else if (WIFSIGNALED(job->exit))
904 fprintf(job->log, "killed by signal %d (%s%s)", WTERMSIG(job->exit),
905#if defined(HAVE_STRSIGNAL)
906 strsignal(WTERMSIG(job->exit)),
907#elif defined(HAVE_DECL_SYS_SIGLIST)
908 sys_siglist[WTERMSIG(job->exit)],
909#else
910 "unknown signal",
911#endif
912#ifdef WCOREDUMP
913 WCOREDUMP(job->exit) ? "; core dumped" :
914#endif
915 "");
8996f767
MW
916 else
917 fprintf(job->log, "exited with incomprehensible status %06o\n",
918 job->exit);
7b8ff279 919
6c39ec6d 920 /* What happens next depends on the state of the job. This is the main
1740a58c 921 * place which advances the job state machine.
8996f767 922 */
6c39ec6d
MW
923 if (ok) switch (job->st) {
924
925 case JST_VERSION:
926 /* We've retrieved the Lisp system's version string. */
927
928 /* Complete the hashing and convert to hex. */
929 hbuf = (unsigned char *)buf + 32; sha256_done(&job->h, hbuf);
930 for (i = 0; i < 8; i++) sprintf(buf + 2*i, "%02x", hbuf[i]);
931 if (verbose >= 2)
932 moan("Lisp `%s' version hash = %s", JOB_NAME(job), buf);
933
934 /* Determine the final version-qualified name for the image. */
935 config_set_var(&config, job->sect, CF_LITERAL, "@hash", buf);
936 job->imghash =
937 config_subst_string_alloc(&config, job->sect,
938 "<internal>", "${@image-out}");
939 job->imgnew =
940 config_subst_string_alloc(&config, job->sect,
941 "<internal>", "${@image-new}");
942
943 /* Determine the basename of the final image. */
944 p = strrchr(job->imghash, '/'); if (p) p++; else p = job->imghash;
945
946 /* Inspect the current link pointer to see if we have the right
947 * version.
948 */
949 if (!(flags&AF_FORCE) &&
950 job->oldimg &&
951 STRCMP(job->oldimg, ==, job->imghash) &&
952 !access(job->oldimg, F_OK)) {
953 if (verbose >= 2)
954 moan("Lisp `%s' image `%s' already up-to-date",
955 JOB_NAME(job), job->imghash);
956 break;
957 }
958
959 /* Make sure that there's a clear space for the new image to be
960 * written.
961 */
962 if (!(flags&AF_DRYRUN) && unlink(job->imgnew) && errno != ENOENT) {
963 bad("failed to clear Lisp `%s' image staging path `%s': %s",
964 JOB_NAME(job), job->imgnew, strerror(errno));
965 break;
966 }
967
968 /* If we're still here then we've decided to dump a new image. Update
969 * the job state, and put it back on the run queue.
970 */
971 config_subst_split_var(&config, job->sect,
972 job->dumpvar, &job->av_dump);
973 assert(job->av_dump.n);
974 job->st = JST_DUMP;
975 *job_ready_tail = job; job_ready_tail = &job->next; job->next = 0;
976 job = 0;
977 break;
978
979 case JST_DUMP:
980 /* We've finished dumping a custom image. It's time to apply the
981 * finishing touches.
982 */
983
984 /* Rename the image into place. If this fails, blame it on the dump
985 * job, because the chances are good that it failed to produce the
986 * image properly.
987 */
164c2063
MW
988 if (verbose >= 3)
989 moan("rename completed Lisp `%s' image `%s' to `%s'",
990 JOB_NAME(job), job->imgnew, job->imghash);
6c39ec6d
MW
991 if (rename(job->imgnew, job->imghash)) {
992 fprintf(job->log, "%-13s > failed to rename Lisp `%s' "
993 "output image `%s' to `%s': %s",
994 JOB_NAME(job), JOB_NAME(job),
995 job->imgnew, job->imghash, strerror(errno));
996 ok = 0; break;
997 }
998
cf51f4b4
MW
999 /* Notice the image so that it doesn't get junked. */
1000 if (flags&AF_JUNK) {
1001 p = strrchr(job->imghash, '/'); if (p) p++; else p = job->imghash;
1002 notice_filename(p, strlen(p));
1003 }
1004
6c39ec6d
MW
1005 /* Determine the basename of the final image. */
1006 p = strrchr(job->imghash, '/'); if (p) p++; else p = job->imghash;
1007
1008 /* Build the symlink. Start by setting the link in the staging path,
1009 * and then rename, in order to ensure continuity.
1010 */
1011 if (unlink(job->imgnewlink) && errno != ENOENT) {
1012 bad("failed to clear Lisp `%s' link staging path `%s': %s",
1013 JOB_NAME(job), job->imgnewlink, strerror(errno));
1014 break;
1015 }
164c2063
MW
1016 if (verbose >= 3)
1017 moan("establish Lisp `%s' image link `%s' referring to `%s'",
1018 JOB_NAME(job), job->imglink, job->imghash);
6c39ec6d
MW
1019 if (symlink(p, job->imgnewlink)) {
1020 bad("failed to create Lisp `%s' image link `%s': %s",
1021 JOB_NAME(job), job->imgnewlink, strerror(errno));
1022 break;
1023 }
1024 if (rename(job->imgnewlink, job->imglink)) {
1025 bad("failed to rename Lisp `%s' image link `%s' to `%s': %s",
1026 JOB_NAME(job), job->imgnewlink, job->imglink, strerror(errno));
1027 break;
1028 }
164c2063
MW
1029 if (job->oldimg && STRCMP(job->oldimg, !=, job->imghash)) {
1030 if (verbose >= 3)
1031 moan("remove old Lisp `%s' image `%s'",
1032 JOB_NAME(job), job->oldimg);
1033 if (unlink(job->oldimg) && errno != ENOENT) {
1034 if (verbose >= 1)
1035 moan("failed to delete old Lisp `%s' image `%s': %s",
1036 JOB_NAME(job), job->oldimg, strerror(errno));
1037 }
6c39ec6d
MW
1038 }
1039
1040 /* I think we're all done. */
1041 break;
1042
1043 default:
1044 assert(0);
7b8ff279
MW
1045 }
1046
8996f767
MW
1047 /* If the job failed and we're being quiet then write out the log that we
1048 * made.
1049 */
1050 if (!ok && verbose < 2) {
1051 rewind(job->log);
1052 for (;;) {
1053 n = fread(buf, 1, sizeof(buf), job->log);
1054 if (n) fwrite(buf, 1, n, stdout);
1055 if (n < sizeof(buf)) break;
1056 }
7b8ff279 1057 }
7b8ff279 1058
8996f767
MW
1059 /* Also make a node to stderr about what happened. (Just to make sure
1060 * that we've gotten someone's attention.)
1061 */
1062 if (!ok) bad("failed to dump Lisp `%s'", JOB_NAME(job));
7b8ff279 1063
8996f767 1064 /* Finally free the job control block. */
6c39ec6d
MW
1065 if (job) release_job(job);
1066 dstr_release(&d);
7b8ff279
MW
1067}
1068
8996f767 1069/* Called after `SIGCHLD': collect exit statuses and mark jobs as dead. */
7b8ff279
MW
1070static void reap_children(void)
1071{
6c39ec6d 1072 struct job *job;
7b8ff279
MW
1073 pid_t kid;
1074 int st;
1075
1076 for (;;) {
8996f767
MW
1077
1078 /* Collect a child exit status. If there aren't any more then we're
1079 * done.
1080 */
7b8ff279
MW
1081 kid = waitpid(0, &st, WNOHANG);
1082 if (kid <= 0) break;
8996f767
MW
1083
1084 /* Try to find a matching job. If we can't, then we should just ignore
1085 * it.
1086 */
6c39ec6d 1087 for (job = job_run; job; job = job->next)
7b8ff279 1088 if (job->kid == kid) goto found;
7b8ff279 1089 continue;
8996f767 1090
7b8ff279 1091 found:
6c39ec6d
MW
1092 /* Mark the job as dead, and save its exit status. */
1093 job->exit = st; job->kid = -1; nrun--;
7b8ff279 1094 }
8996f767
MW
1095
1096 /* If there was a problem with waitpid(2) then report it. */
7b8ff279
MW
1097 if (kid < 0 && errno != ECHILD)
1098 lose("failed to collect child process exit status: %s", strerror(errno));
1099}
1100
8996f767 1101/* Execute the handler for some JOB. */
6c39ec6d 1102static NORETURN void job_child(struct job *job, struct argv *av)
7b8ff279 1103{
6c39ec6d
MW
1104 try_exec(av, 0);
1105 moan("failed to run `%s': %s", av->v[0], strerror(errno));
8996f767 1106 _exit(127);
7b8ff279
MW
1107}
1108
8996f767
MW
1109/* Start up jobs while there are (a) jobs to run and (b) slots to run them
1110 * in.
1111 */
7b8ff279
MW
1112static void start_jobs(void)
1113{
1114 struct dstr d = DSTR_INIT;
1115 int p_out[2], p_err[2];
1116 struct job *job;
6c39ec6d 1117 struct argv *av;
7b8ff279
MW
1118 pid_t kid;
1119
8996f767
MW
1120 /* Keep going until either we run out of jobs, or we've got enough running
1121 * already.
1122 */
7b8ff279 1123 while (job_ready && nrun < maxrun) {
8996f767
MW
1124
1125 /* Set things up ready. If things go wrong, we need to know what stuff
1126 * needs to be cleaned up.
1127 */
7b8ff279 1128 job = job_ready; job_ready = job->next;
6c39ec6d 1129 if (!job_ready) job_ready_tail = &job_ready;
7b8ff279 1130 p_out[0] = p_out[1] = p_err[0] = p_err[1] = -1;
8996f767 1131
6c39ec6d
MW
1132 /* Figure out what to do. */
1133 switch (job->st) {
1134 case JST_VERSION: av = &job->av_version; break;
1135 case JST_DUMP: av = &job->av_dump; break;
1136 default: assert(0);
1137 }
1138
10427eb2 1139 /* If we're not actually going to do anything, now is the time to not do
6c39ec6d 1140 * that. We should do the version-hashing step unconditionally.
10427eb2 1141 */
6c39ec6d
MW
1142 switch (job->st) {
1143 case JST_VERSION:
1144 break;
1145 case JST_DUMP:
1146 if (flags&AF_DRYRUN) {
1147 if (try_exec(av,
1148 TEF_DRYRUN |
1149 (verbose >= 2 && !(flags&AF_CHECKINST)
1150 ? TEF_VERBOSE : 0)))
1151 rc = 127;
1152 else if (verbose >= 2)
1153 printf("%-13s > not dumping `%s' (dry run)\n",
1154 JOB_NAME(job), JOB_NAME(job));
1155 release_job(job);
1156 continue;
1157 }
1158 break;
1159 default:
1160 assert(0);
10427eb2
MW
1161 }
1162
6c39ec6d
MW
1163 /* Do one-time setup for external jobs. */
1164 if (!job->log) {
8996f767 1165
6c39ec6d
MW
1166 /* Make a temporary subdirectory for this job to use. */
1167 dstr_reset(&d); dstr_putf(&d, "%s/%s", tmpdir, JOB_NAME(job));
1168 if (mkdir(d.p, 0700)) {
1169 bad("failed to create working directory for job `%s': %s",
1170 JOB_NAME(job), strerror(errno));
1171 goto fail;
1172 }
1173
1174 /* Create the job's log file. If we're being verbose then that's just
1175 * our normal standard output -- /not/ stderr: it's likely that users
1176 * will want to pipe this stuff through a pager or something, and
1177 * that'll be easier if we use stdout. Otherwise, make a file in the
1178 * temporary directory.
1179 */
1180 if (verbose >= 2)
1181 job->log = stdout;
1182 else {
1183 dstr_puts(&d, "/log"); job->log = fopen(d.p, "w+");
1184 if (!job->log)
1185 lose("failed to open log file `%s': %s", d.p, strerror(errno));
1186 }
7b8ff279 1187 }
8996f767
MW
1188
1189 /* Make the pipes to capture the child process's standard output and
1190 * error streams.
1191 */
7b8ff279
MW
1192 if (pipe(p_out) || pipe(p_err)) {
1193 bad("failed to create pipes for job `%s': %s",
1194 JOB_NAME(job), strerror(errno));
1195 goto fail;
1196 }
1197 if (configure_fd("job stdout pipe", p_out[0], 1, 1) ||
1198 configure_fd("job stdout pipe", p_out[1], 0, 1) ||
1199 configure_fd("job stderr pipe", p_err[0], 1, 1) ||
1200 configure_fd("job stderr pipe", p_err[1], 0, 1) ||
1201 configure_fd("log file", fileno(job->log), 1, 1))
1202 goto fail;
8996f767 1203
6c39ec6d
MW
1204 /* Initialize the output-processing structures ready for use. */
1205 if (job->st == JST_VERSION) sha256_init(&job->h);
7b8ff279
MW
1206 job->out.buf = xmalloc(MAXLINE); job->out.off = job->out.len = 0;
1207 job->out.fd = p_out[0]; p_out[0] = -1;
1208 job->err.buf = xmalloc(MAXLINE); job->err.off = job->err.len = 0;
1209 job->err.fd = p_err[0]; p_err[0] = -1;
8996f767
MW
1210
1211 /* Print a note to the top of the log. */
6c39ec6d 1212 dstr_reset(&d); argv_string(&d, av);
7b8ff279 1213 fprintf(job->log, "%-13s > starting %s\n", JOB_NAME(job), d.p);
8996f767
MW
1214
1215 /* Flush the standard output stream. (Otherwise the child might try to
1216 * flush it too.)
1217 */
7b8ff279 1218 fflush(stdout);
8996f767
MW
1219
1220 /* Spin up the child process. */
7b8ff279
MW
1221 kid = fork();
1222 if (kid < 0) {
1223 bad("failed to fork process for job `%s': %s",
1224 JOB_NAME(job), strerror(errno));
1225 goto fail;
1226 }
1227 if (!kid) {
1228 if (dup2(nullfd, 0) < 0 ||
1229 dup2(p_out[1], 1) < 0 ||
1230 dup2(p_err[1], 2) < 0)
1231 lose("failed to juggle job `%s' file descriptors: %s",
1232 JOB_NAME(job), strerror(errno));
6c39ec6d 1233 job_child(job, av);
7b8ff279 1234 }
8996f767
MW
1235
1236 /* Close the ends of the pipes that we don't need. Move the job into
1237 * the running list.
1238 */
7b8ff279 1239 close(p_out[1]); close(p_err[1]);
6c39ec6d 1240 job->kid = kid; job->next = job_run; job_run = job; nrun++;
7b8ff279 1241 continue;
8996f767 1242
7b8ff279 1243 fail:
8996f767 1244 /* Clean up the wreckage if it didn't work. */
7b8ff279
MW
1245 if (p_out[0] >= 0) close(p_out[0]);
1246 if (p_out[1] >= 0) close(p_out[1]);
1247 if (p_err[0] >= 0) close(p_err[0]);
1248 if (p_err[1] >= 0) close(p_err[1]);
1249 release_job(job);
1250 }
8996f767
MW
1251
1252 /* All done except for some final tidying up. */
7b8ff279
MW
1253 dstr_release(&d);
1254}
1255
8996f767
MW
1256/* Take care of all of the jobs until they're all done. */
1257static void run_jobs(void)
1258{
1259 struct job *job, *next, **link;
1260 int nfd;
1261 fd_set fd_in;
1262
1263 for (;;) {
1264
1265 /* If there are jobs still to be started and we have slots to spare then
1266 * start some more up.
1267 */
1268 start_jobs();
1269
1270 /* If the queues are now all empty then we're done. (No need to check
1271 * `job_ready' here: `start_jobs' would have started them if `job_run'
1272 * was empty.
1273 */
6c39ec6d 1274 if (!job_run) break;
8996f767
MW
1275
1276 /* Prepare for the select(2) call: watch for the signal pipe and all of
1277 * the job pipes.
1278 */
1279#define SET_FD(dir, fd) do { \
1280 int _fd = (fd); \
1281 FD_SET(_fd, &fd_##dir); \
1282 if (_fd >= nfd) nfd = _fd + 1; \
1283} while (0)
1284
1285 FD_ZERO(&fd_in); nfd = 0;
1286 SET_FD(in, sig_pipe[0]);
1287 for (job = job_run; job; job = job->next) {
1288 if (job->out.fd >= 0) SET_FD(in, job->out.fd);
1289 if (job->err.fd >= 0) SET_FD(in, job->err.fd);
1290 }
8996f767
MW
1291
1292#undef SET_FD
1293
1294 /* Find out what's going on. */
1295 if (select(nfd, &fd_in, 0, 0, 0) < 0) {
1296 if (errno == EINTR) continue;
1297 else lose("select failed: %s", strerror(errno));
1298 }
1299
1300 /* If there were any signals then handle them. */
1301 if (FD_ISSET(sig_pipe[0], &fd_in)) {
1302 check_signals();
1303 if (sigloss >= 0) {
1304 /* We hit a fatal signal. Kill off the remaining jobs and abort. */
1305 for (job = job_ready; job; job = next)
1306 { next = job->next; release_job(job); }
1307 for (job = job_run; job; job = next)
1308 { next = job->next; release_job(job); }
8996f767
MW
1309 break;
1310 }
1311 }
1312
6c39ec6d
MW
1313 /* Collect output from running jobs, and clear away any dead jobs once
1314 * we've collected all their output.
8996f767 1315 */
6c39ec6d 1316 for (link = &job_run, job = *link; job; job = next) {
10427eb2 1317 if (job->out.fd >= 0 && FD_ISSET(job->out.fd, &fd_in))
6c39ec6d
MW
1318 prefix_lines(job, &job->out, '|',
1319 job->st == JST_VERSION ? &job->h : 0);
10427eb2 1320 if (job->err.fd >= 0 && FD_ISSET(job->err.fd, &fd_in))
6c39ec6d 1321 prefix_lines(job, &job->err, '*', 0);
8996f767 1322 next = job->next;
6c39ec6d
MW
1323 if (job->kid > 0 || job->out.fd >= 0 || job->err.fd >= 0)
1324 link = &job->next;
1325 else
1326 { *link = next; finish_job(job); }
8996f767
MW
1327 }
1328 }
1329}
1330
1331/*----- Main program ------------------------------------------------------*/
1332
1333/* Help and related functions. */
7b8ff279
MW
1334static void version(FILE *fp)
1335 { fprintf(fp, "%s, runlisp version %s\n", progname, PACKAGE_VERSION); }
1336
1337static void usage(FILE *fp)
1338{
1339 fprintf(fp, "\
60db9fab 1340usage: %s [-RUafinqrv] [+RUfinr] [-c CONF] [-o [SECT:]VAR=VAL]\n\
7b8ff279
MW
1341 [-O FILE|DIR] [-j NJOBS] [LISP ...]\n",
1342 progname);
1343}
1344
1345static void help(FILE *fp)
1346{
1347 version(fp); fputc('\n', fp); usage(fp);
1348 fputs("\n\
1349Help options:\n\
1350 -h, --help Show this help text and exit successfully.\n\
1351 -V, --version Show version number and exit successfully.\n\
1352\n\
1353Diagnostics:\n\
1354 -n, --dry-run Don't run run anything (useful with `-v').\n\
1355 -q, --quiet Don't print warning messages.\n\
1356 -v, --verbose Print informational messages (repeatable).\n\
1357\n\
1358Configuration:\n\
1359 -c, --config-file=CONF Read configuration from CONF (repeatable).\n\
1360 -o, --set-option=[SECT:]VAR=VAL Set configuration variable (repeatable).\n\
1361\n\
1362Image dumping:\n\
1363 -O, --output=FILE|DIR Store image(s) in FILE or DIR.\n\
10427eb2
MW
1364 -R, --remove-other Delete image files for other Lisp systems.\n\
1365 -U, --remove-unknown Delete unrecognized files in image dir.\n\
1366 -a, --all-configured Select all configured implementations.\n\
7b8ff279 1367 -f, --force Dump images even if they already exist.\n\
10427eb2
MW
1368 -i, --check-installed Check Lisp systems exist before dumping.\n\
1369 -j, --jobs=NJOBS Run up to NJOBS jobs in parallel.\n\
1370 -r, --remove-image Delete image files, instead of creating.\n",
7b8ff279
MW
1371 fp);
1372}
1373
10427eb2
MW
1374static void show_job_list(const char *what, struct job *job)
1375{
1376 struct dstr d = DSTR_INIT;
1377 int first;
1378
1379 first = 1;
1380 for (; job; job = job->next) {
1381 if (first) first = 0;
1382 else dstr_puts(&d, ", ");
1383 dstr_putf(&d, "`%s'", JOB_NAME(job));
1384 }
1385 if (first) dstr_puts(&d, "(none)");
1386 dstr_putz(&d);
1387 moan("%s: %s", what, d.p);
1388}
1389
8996f767 1390/* Main program. */
7b8ff279
MW
1391int main(int argc, char *argv[])
1392{
1393 struct config_section_iter si;
1394 struct config_section *sect;
1395 struct config_var *var;
1396 const char *out = 0, *p, *q, *l;
10427eb2 1397 struct job *job;
7b8ff279
MW
1398 struct stat st;
1399 struct dstr d = DSTR_INIT;
10427eb2
MW
1400 DIR *dir;
1401 struct dirent *de;
1402 int i, fd;
1403 size_t n, o;
1404 unsigned f;
7b8ff279 1405
8996f767 1406 /* Command-line options. */
7b8ff279
MW
1407 static const struct option opts[] = {
1408 { "help", 0, 0, 'h' },
1409 { "version", 0, 0, 'V' },
1410 { "output", OPTF_ARGREQ, 0, 'O' },
10427eb2
MW
1411 { "remove-other", OPTF_NEGATE, 0, 'R' },
1412 { "remove-unknown", OPTF_NEGATE, 0, 'U' },
7b8ff279
MW
1413 { "all-configured", 0, 0, 'a' },
1414 { "config-file", OPTF_ARGREQ, 0, 'c' },
1415 { "force", OPTF_NEGATE, 0, 'f' },
1416 { "check-installed", OPTF_NEGATE, 0, 'i' },
1417 { "jobs", OPTF_ARGREQ, 0, 'j' },
1418 { "dry-run", OPTF_NEGATE, 0, 'n' },
1419 { "set-option", OPTF_ARGREQ, 0, 'o' },
1420 { "quiet", 0, 0, 'q' },
10427eb2 1421 { "remove-image", OPTF_NEGATE, 0, 'r' },
7b8ff279
MW
1422 { "verbose", 0, 0, 'v' },
1423 { 0, 0, 0, 0 }
1424 };
1425
8996f767 1426 /* Initial setup. */
7b8ff279
MW
1427 set_progname(argv[0]);
1428 init_config();
9ecf91d0 1429 srand(time(0));
7b8ff279 1430
8996f767 1431 /* Parse the options. */
7b8ff279 1432 optprog = (/*unconst*/ char *)progname;
10427eb2
MW
1433
1434#define FLAGOPT(ch, f) \
1435 case ch: \
1436 flags |= f; \
1437 break; \
1438 case ch | OPTF_NEGATED: \
1439 flags &= ~f; \
1440 break
1441
7b8ff279 1442 for (;;) {
60db9fab 1443 i = mdwopt(argc - 1, argv + 1, "hVO:R+U+ac:f+i+j:n+o:qr+v", opts, 0, 0,
7b8ff279
MW
1444 OPTF_NEGATION | OPTF_NOPROGNAME);
1445 if (i < 0) break;
1446 switch (i) {
1447 case 'h': help(stdout); exit(0);
1448 case 'V': version(stdout); exit(0);
1449 case 'O': out = optarg; break;
10427eb2
MW
1450 FLAGOPT('R', AF_CLEAN);
1451 FLAGOPT('U', AF_JUNK);
7b8ff279
MW
1452 case 'a': flags |= AF_ALL; break;
1453 case 'c': read_config_path(optarg, 0); flags |= AF_SETCONF; break;
10427eb2
MW
1454 FLAGOPT('f', AF_FORCE);
1455 FLAGOPT('i', AF_CHECKINST);
7b8ff279 1456 case 'j': maxrun = parse_int("number of jobs", optarg, 1, 65535); break;
10427eb2 1457 FLAGOPT('n', AF_DRYRUN);
7b8ff279
MW
1458 case 'o': if (set_config_var(optarg)) flags |= AF_BOGUS; break;
1459 case 'q': if (verbose) verbose--; break;
10427eb2 1460 FLAGOPT('r', AF_REMOVE);
7b8ff279
MW
1461 case 'v': verbose++; break;
1462 default: flags |= AF_BOGUS; break;
1463 }
1464 }
1465
10427eb2
MW
1466#undef FLAGOPT
1467
8996f767 1468 /* CHeck that everything worked. */
7b8ff279
MW
1469 optind++;
1470 if ((flags&AF_ALL) ? optind < argc : optind >= argc) flags |= AF_BOGUS;
8996f767 1471 if (flags&AF_BOGUS) { usage(stderr); exit(127); }
7b8ff279 1472
8996f767 1473 /* Load default configuration if no explicit files were requested. */
7b8ff279
MW
1474 if (!(flags&AF_SETCONF)) load_default_config();
1475
8996f767
MW
1476 /* OK, so we've probably got some work to do. Let's set things up ready.
1477 * It'll be annoying if our standard descriptors aren't actually set up
1478 * properly, so we'll make sure those slots are populated. We'll need a
1479 * `/dev/null' descriptor anyway (to be stdin for the jobs). We'll also
1480 * need a temporary directory, and it'll be less temporary if we don't
1481 * arrange to delete it when we're done. And finally we'll need to know
1482 * when a child process exits.
1483 */
1484 for (;;) {
1485 fd = open("/dev/null", O_RDWR);
1486 if (fd < 0) lose("failed to open `/dev/null': %s", strerror(errno));
1487 if (fd > 2) { nullfd = fd; break; }
7b8ff279 1488 }
8996f767 1489 configure_fd("null fd", nullfd, 0, 1);
7b8ff279
MW
1490 atexit(cleanup);
1491 if (pipe(sig_pipe))
1492 lose("failed to create signal pipe: %s", strerror(errno));
1493 configure_fd("signal pipe (read end)", sig_pipe[0], 1, 1);
1494 configure_fd("signal pipe (write end)", sig_pipe[1], 1, 1);
1495 sigemptyset(&caught); sigemptyset(&pending);
1496 set_signal_handler("SIGTERM", SIGTERM, SIGF_IGNOK);
1497 set_signal_handler("SIGINT", SIGINT, SIGF_IGNOK);
1498 set_signal_handler("SIGHUP", SIGHUP, SIGF_IGNOK);
1499 set_signal_handler("SIGCHLD", SIGCHLD, 0);
1500
8996f767 1501 /* Create the temporary directory and export it into the configuration. */
7b8ff279 1502 set_tmpdir();
8996f767 1503 config_set_var(&config, builtin, CF_LITERAL, "@%tmp-dir", tmpdir);
7b8ff279 1504 config_set_var(&config, builtin, 0,
8996f767
MW
1505 "@tmp-dir", "${@BUILTIN:@%tmp-dir}/${@name}");
1506
1507 /* Work out where the image files are going to go. If there's no `-O'
1508 * option then we use the main `image-dir'. Otherwise what happens depends
1509 * on whether this is a file or a directory.
1510 */
6c39ec6d 1511 if (!out) {
8996f767 1512 config_set_var(&config, builtin, 0,
6c39ec6d
MW
1513 "@image-link", "${@image-dir}/${image-file}");
1514 var = config_find_var(&config, builtin, CF_INHERIT, "@image-dir");
1515 assert(var); out = config_subst_var_alloc(&config, builtin, var);
1516 } else if (!stat(out, &st) && S_ISDIR(st.st_mode)) {
8996f767
MW
1517 config_set_var(&config, builtin, CF_LITERAL, "@%out-dir", out);
1518 config_set_var(&config, builtin, 0,
6c39ec6d 1519 "@image-link", "${@BUILTIN:@%out-dir}/${image-file}");
8996f767
MW
1520 } else if (argc - optind != 1)
1521 lose("can't dump multiple Lisps to a single output file");
10427eb2
MW
1522 else if (flags&AF_JUNK)
1523 lose("can't clear junk in a single output file");
1524 else if (flags&AF_CLEAN)
1525 lose("can't clean other images with a single output file");
8996f767 1526 else
6c39ec6d 1527 config_set_var(&config, builtin, CF_LITERAL, "@image-link", out);
7b8ff279 1528
6c39ec6d
MW
1529 /* Set the staging and versioned filenames. */
1530 config_set_var(&config, builtin, 0,
1531 "@image-out", "${@image-link}-${@hash}");
8996f767 1532 config_set_var(&config, builtin, 0, "@image-new", "${@image-out}.new");
6c39ec6d
MW
1533 config_set_var(&config, builtin, 0,
1534 "@image-newlink", "${@image-link}.new");
1535
1536 config_set_var(&config, builtin, 0, "@script",
1537 "${@ENV:RUNLISP_EVAL?"
1538 "${@CONFIG:eval-script?"
1539 "${@data-dir}/eval.lisp}}");
1540
1541 /* Configure an initial value for `@hash'. This is necessary so that
1542 * `add_job' can expand `dump-image' to check that the command exists.
1543 */
1544 config_set_var(&config, builtin, CF_LITERAL, "@hash", "!!!unset!!!");
8996f767
MW
1545
1546 /* Dump the final configuration if we're being very verbose. */
7b8ff279
MW
1547 if (verbose >= 5) dump_config();
1548
10427eb2
MW
1549 /* There are a number of different strategies we might employ, depending on
1550 * the exact request.
1551 *
1552 * queue queue clear
1553 * REMOVE CLEAN JUNK selected others junk?
1554 *
1555 * * nil nil ready/delete -- no
1556 * * nil t ready/delete none yes
1557 * nil t nil ready delete no
1558 * nil t t ready -- yes
1559 * t t nil -- delete no
1560 * t t t -- -- yes
1561 */
1562
1563 /* First step: if `AF_REMOVE' and `AF_CLEAN' are not both set, then scan
1564 * the selected Lisp systems and add them to the appropriate queue.
1565 *
1566 * Bit-hack: if they are not both set, then their complements are not both
1567 * clear.
1568 */
1569 if (~flags&(AF_REMOVE | AF_CLEAN)) {
1570
1571 /* Determine the flags for `add_job' when we select the Lisp systems. If
1572 * we intend to clear junk then we must notice the image names we
1573 * encounter. If we're supposed to check that Lisps exist before dumping
1574 * then do that -- but it doesn't make any sense for deletion.
1575 */
1576 f = flags&AF_REMOVE ? JQ_DELETE : JQ_READY;
1577 if (flags&AF_JUNK) f |= JF_NOTICE;
1578 if (flags&AF_CHECKINST) f |= JF_CHECKINST;
1579 if (!(flags&(AF_FORCE | AF_REMOVE))) f |= JF_CHECKEXIST;
1580
1581 /* If we have named Lisps, then process them. */
1582 if (!(flags&AF_ALL))
1583 for (i = optind; i < argc; i++)
1584 add_named_job(f, argv[i], strlen(argv[i]));
1585
1586 /* Otherwise we're supposed to dump `all' of them. If there's a `dump'
8996f767
MW
1587 * configuration setting then we need to parse that. Otherwise we just
1588 * try all of them.
1589 */
10427eb2
MW
1590 else {
1591 var = config_find_var(&config, toplevel, CF_INHERIT, "dump");
1592 if (!var) {
1593 /* No setting. Just do all of the Lisps which look available. */
1594
1595 f |= JF_CHECKINST;
1596 for (config_start_section_iter(&config, &si);
1597 (sect = config_next_section(&si)); )
1598 add_job(f, sect);
1599 } else {
1600 /* Parse the `dump' list. */
1601
1602 dstr_reset(&d); config_subst_var(&config, toplevel, var, &d);
1603 p = d.p; l = p + d.len;
1604 for (;;) {
1605 while (p < l && ISSPACE(*p)) p++;
1606 if (p >= l) break;
1607 q = p;
1608 while (p < l && !ISSPACE(*p) && *p != ',') p++;
1609 add_named_job(f, q, p - q);
1610 while (p < l && ISSPACE(*p)) p++;
1611 if (p < l && *p == ',') p++;
1612 }
7b8ff279
MW
1613 }
1614 }
1615 }
10427eb2
MW
1616
1617 /* Second step: if exactly one of `AF_CLEAN' and `AF_JUNK' is set, then we
1618 * need to scan all of the remaining Lisps and add them to the `delete'
1619 * queue.
1620 */
1621 if (!(flags&AF_CLEAN) != !(flags&AF_JUNK)) {
1622
1623 /* Determine the flag settings. If we're junking, then we're not
1624 * cleaning -- we just want to mark images belonging to other Lisps as
1625 * off-limits to the junking scan.
1626 */
1627 f = flags&AF_CLEAN ? JQ_DELETE : JQ_NONE | JF_NOTICE;
1628
1629 /* Now scan the Lisp systems. */
1630 for (config_start_section_iter(&config, &si);
1631 (sect = config_next_section(&si)); )
1632 add_job(f, sect);
1633 }
1634
1635 /* Terminate the job queues. */
1636 *job_ready_tail = 0;
1637 *job_delete_tail = 0;
7b8ff279 1638
8996f767 1639 /* Report on what it is we're about to do. */
7b8ff279 1640 if (verbose >= 3) {
10427eb2
MW
1641 show_job_list("dumping Lisp images", job_ready);
1642 show_job_list("deleting Lisp images", job_delete);
7b8ff279
MW
1643 }
1644
10427eb2
MW
1645 /* If there turns out to be nothing to do, then mention this. */
1646 if (!(flags&AF_REMOVE) && verbose >= 2 && !job_ready)
1647 moan("no Lisp images to dump");
7b8ff279 1648
10427eb2 1649 /* Run the dumping jobs. */
8996f767 1650 run_jobs();
7b8ff279 1651
10427eb2
MW
1652 /* Check for any last signals. If we hit any fatal signals then we should
1653 * kill ourselves so that the exit status will be right.
8996f767 1654 */
7b8ff279
MW
1655 check_signals();
1656 if (sigloss) { cleanup(); signal(sigloss, SIG_DFL); raise(sigloss); }
1657
10427eb2
MW
1658 /* Now delete Lisps which need deleting. */
1659 while (job_delete) {
1660 job = job_delete; job_delete = job->next;
1661 if (flags&AF_DRYRUN) {
1662 if (verbose >= 2)
6c39ec6d
MW
1663 moan("not deleting `%s' image link `%s' (dry run)",
1664 JOB_NAME(job), job->imglink);
1665 if (job->oldimg && verbose >= 2)
10427eb2 1666 moan("not deleting `%s' image `%s' (dry run)",
6c39ec6d 1667 JOB_NAME(job), job->oldimg);
10427eb2
MW
1668 } else {
1669 if (verbose >= 2)
6af30eee 1670 moan("deleting `%s' image `%s'",
6c39ec6d
MW
1671 JOB_NAME(job), job->imglink);
1672 if (unlink(job->imglink) && errno != ENOENT)
1673 bad("failed to delete `%s' image link `%s': %s",
1674 JOB_NAME(job), job->imglink, strerror(errno));
1675 if (job->oldimg && unlink(job->oldimg) && errno != ENOENT)
10427eb2 1676 bad("failed to delete `%s' image `%s': %s",
6c39ec6d 1677 JOB_NAME(job), job->oldimg, strerror(errno));
10427eb2
MW
1678 }
1679 }
1680
1681 /* Finally, maybe delete all of the junk files in the image directory. */
1682 if (flags&AF_JUNK) {
10427eb2
MW
1683 dir = opendir(out);
1684 if (!dir)
1685 lose("failed to open image directory `%s': %s", out, strerror(errno));
1686 dstr_reset(&d);
1687 dstr_puts(&d, out); dstr_putc(&d, '/'); o = d.len;
1688 if (verbose >= 2)
1689 moan("cleaning up junk in image directory `%s'", out);
1690 for (;;) {
1691 de = readdir(dir); if (!de) break;
1692 if (de->d_name[0] == '.' &&
1693 (!de->d_name[1] || (de->d_name[1] == '.' && !de->d_name[2])))
1694 continue;
1695 n = strlen(de->d_name);
1696 d.len = o; dstr_putm(&d, de->d_name, n + 1);
1697 if (!treap_lookup(&good, de->d_name, n)) {
1698 if (flags&AF_DRYRUN) {
1699 if (verbose >= 2)
1700 moan("not deleting junk file `%s' (dry run)", d.p);
1701 } else {
1702 if (verbose >= 2)
1703 moan("deleting junk file `%s'", d.p);
1704 if (unlink(d.p) && errno != ENOENT)
1705 bad("failed to delete junk file `%s': %s", d.p, strerror(errno));
1706 }
1707 }
1708 }
1709 }
1710
8996f767 1711 /* All done! */
7b8ff279
MW
1712 return (rc);
1713}
1714
1715/*----- That's all, folks -------------------------------------------------*/