Why on earth was I creating the data file with x permission? Silly
[sgt/agedu] / agedu.c
1 /*
2 * Main program for agedu.
3 */
4
5 #include "agedu.h"
6
7 #include "du.h"
8 #include "trie.h"
9 #include "index.h"
10 #include "alloc.h"
11 #include "html.h"
12 #include "httpd.h"
13 #include "fgetline.h"
14
15 /*
16 * Path separator. This global variable affects the behaviour of
17 * various parts of the code when they need to deal with path
18 * separators. The path separator appropriate to a particular data
19 * set is encoded in the index file storing that data set; data
20 * sets generated on Unix will of course have the default '/', but
21 * foreign data sets are conceivable and must be handled correctly.
22 */
23 char pathsep = '/';
24
25 void fatal(const char *fmt, ...)
26 {
27 va_list ap;
28 fprintf(stderr, "%s: ", PNAME);
29 va_start(ap, fmt);
30 vfprintf(stderr, fmt, ap);
31 va_end(ap);
32 fprintf(stderr, "\n");
33 exit(1);
34 }
35
36 struct inclusion_exclusion {
37 int type;
38 const char *wildcard;
39 int path;
40 };
41
42 struct ctx {
43 triebuild *tb;
44 dev_t datafile_dev, filesystem_dev;
45 ino_t datafile_ino;
46 time_t last_output_update;
47 int progress, progwidth;
48 int straight_to_dump;
49 struct inclusion_exclusion *inex;
50 int ninex;
51 int crossfs;
52 int usemtime;
53 int fakeatimes;
54 };
55
56 static void dump_line(const char *pathname, const struct trie_file *tf)
57 {
58 const char *p;
59 printf("%llu %llu ", tf->size, tf->atime);
60 for (p = pathname; *p; p++) {
61 if (*p >= ' ' && *p < 127 && *p != '%')
62 putchar(*p);
63 else
64 printf("%%%02x", (unsigned char)*p);
65 }
66 putchar('\n');
67 }
68
69 static int gotdata(void *vctx, const char *pathname, const STRUCT_STAT *st)
70 {
71 struct ctx *ctx = (struct ctx *)vctx;
72 struct trie_file file;
73 time_t t;
74 int i, include;
75 const char *filename;
76
77 /*
78 * Filter out our own data file.
79 */
80 if (st->st_dev == ctx->datafile_dev && st->st_ino == ctx->datafile_ino)
81 return 0;
82
83 /*
84 * Don't cross the streams^W^Wany file system boundary.
85 */
86 if (!ctx->crossfs && st->st_dev != ctx->filesystem_dev)
87 return 0;
88
89 file.size = (unsigned long long)512 * st->st_blocks;
90 if (ctx->usemtime || (ctx->fakeatimes && S_ISDIR(st->st_mode)))
91 file.atime = st->st_mtime;
92 else
93 file.atime = st->st_atime;
94
95 /*
96 * Filter based on wildcards.
97 */
98 include = 1;
99 filename = strrchr(pathname, pathsep);
100 if (!filename)
101 filename = pathname;
102 else
103 filename++;
104 for (i = 0; i < ctx->ninex; i++) {
105 if (fnmatch(ctx->inex[i].wildcard,
106 ctx->inex[i].path ? pathname : filename, 0) == 0)
107 include = ctx->inex[i].type;
108 }
109 if (include == -1)
110 return 0; /* ignore this entry and any subdirs */
111 if (include == 0) {
112 /*
113 * Here we are supposed to be filtering an entry out, but
114 * still recursing into it if it's a directory. However,
115 * we can't actually leave out any directory whose
116 * subdirectories we then look at. So we cheat, in that
117 * case, by setting the size to zero.
118 */
119 if (!S_ISDIR(st->st_mode))
120 return 0; /* just ignore */
121 else
122 file.size = 0;
123 }
124
125 if (ctx->straight_to_dump)
126 dump_line(pathname, &file);
127 else
128 triebuild_add(ctx->tb, pathname, &file);
129
130 if (ctx->progress) {
131 t = time(NULL);
132 if (t != ctx->last_output_update) {
133 fprintf(stderr, "%-*.*s\r", ctx->progwidth, ctx->progwidth,
134 pathname);
135 fflush(stderr);
136 ctx->last_output_update = t;
137 }
138 }
139
140 return 1;
141 }
142
143 static void text_query(const void *mappedfile, const char *querydir,
144 time_t t, int depth)
145 {
146 size_t maxpathlen;
147 char *pathbuf;
148 unsigned long xi1, xi2;
149 unsigned long long s1, s2;
150
151 maxpathlen = trie_maxpathlen(mappedfile);
152 pathbuf = snewn(maxpathlen + 1, char);
153
154 /*
155 * We want to query everything between the supplied filename
156 * (inclusive) and that filename with a ^A on the end
157 * (exclusive). So find the x indices for each.
158 */
159 strcpy(pathbuf, querydir);
160 make_successor(pathbuf);
161 xi1 = trie_before(mappedfile, querydir);
162 xi2 = trie_before(mappedfile, pathbuf);
163
164 if (xi2 - xi1 == 1)
165 return; /* file, or empty dir => no display */
166
167 /*
168 * Now do the lookups in the age index.
169 */
170 s1 = index_query(mappedfile, xi1, t);
171 s2 = index_query(mappedfile, xi2, t);
172
173 if (s1 == s2)
174 return; /* no space taken up => no display */
175
176 if (depth > 0) {
177 /*
178 * Now scan for first-level subdirectories and report
179 * those too.
180 */
181 xi1++;
182 while (xi1 < xi2) {
183 trie_getpath(mappedfile, xi1, pathbuf);
184 text_query(mappedfile, pathbuf, t, depth-1);
185 make_successor(pathbuf);
186 xi1 = trie_before(mappedfile, pathbuf);
187 }
188 }
189
190 /* Display in units of 1Kb */
191 printf("%-11llu %s\n", (s2 - s1) / 1024, querydir);
192 }
193
194 /*
195 * Largely frivolous way to define all my command-line options. I
196 * present here a parametric macro which declares a series of
197 * _logical_ option identifiers, and for each one declares zero or
198 * more short option characters and zero or more long option
199 * words. Then I repeatedly invoke that macro with its arguments
200 * defined to be various other macros, which allows me to
201 * variously:
202 *
203 * - define an enum allocating a distinct integer value to each
204 * logical option id
205 * - define a string consisting of precisely all the short option
206 * characters
207 * - define a string array consisting of all the long option
208 * strings
209 * - define (with help from auxiliary enums) integer arrays
210 * parallel to both of the above giving the logical option id
211 * for each physical short and long option
212 * - define an array indexed by logical option id indicating
213 * whether the option in question takes a value
214 * - define a function which prints out brief online help for all
215 * the options.
216 *
217 * It's not at all clear to me that this trickery is actually
218 * particularly _efficient_ - it still, after all, requires going
219 * linearly through the option list at run time and doing a
220 * strcmp, whereas in an ideal world I'd have liked the lists of
221 * long and short options to be pre-sorted so that a binary search
222 * or some other more efficient lookup was possible. (Not that
223 * asymptotic algorithmic complexity is remotely vital in option
224 * parsing, but if I were doing this in, say, Lisp or something
225 * with an equivalently powerful preprocessor then once I'd had
226 * the idea of preparing the option-parsing data structures at
227 * compile time I would probably have made the effort to prepare
228 * them _properly_. I could have Perl generate me a source file
229 * from some sort of description, I suppose, but that would seem
230 * like overkill. And in any case, it's more of a challenge to
231 * achieve as much as possible by cunning use of cpp and enum than
232 * to just write some sensible and logical code in a Turing-
233 * complete language. I said it was largely frivolous :-)
234 *
235 * This approach does have the virtue that it brings together the
236 * option ids, option spellings and help text into a single
237 * combined list and defines them all in exactly one place. If I
238 * want to add a new option, or a new spelling for an option, I
239 * only have to modify the main OPTHELP macro below and then add
240 * code to process the new logical id.
241 *
242 * (Though, really, even that isn't ideal, since it still involves
243 * modifying the source file in more than one place. In a
244 * _properly_ ideal world, I'd be able to interleave the option
245 * definitions with the code fragments that process them. And then
246 * not bother defining logical identifiers for them at all - those
247 * would be automatically generated, since I wouldn't have any
248 * need to specify them manually in another part of the code.)
249 *
250 * One other helpful consequence of the enum-based structure here
251 * is that it causes a compiler error if I accidentally try to
252 * define the same option (short or long) twice.
253 */
254
255 #define OPTHELP(NOVAL, VAL, SHORT, LONG, HELPPFX, HELPARG, HELPLINE, HELPOPT) \
256 HELPPFX("usage") HELPLINE(PNAME " [options] action [action...]") \
257 HELPPFX("actions") \
258 VAL(SCAN) SHORT(s) LONG(scan) \
259 HELPARG("directory") HELPOPT("scan and index a directory") \
260 NOVAL(HTTPD) SHORT(w) LONG(web) LONG(server) LONG(httpd) \
261 HELPOPT("serve HTML reports from a temporary web server") \
262 VAL(TEXT) SHORT(t) LONG(text) \
263 HELPARG("subdir") HELPOPT("print a plain text report on a subdirectory") \
264 NOVAL(REMOVE) SHORT(R) LONG(remove) LONG(delete) LONG(unlink) \
265 HELPOPT("remove the index file") \
266 NOVAL(DUMP) SHORT(D) LONG(dump) HELPOPT("dump the index file on stdout") \
267 NOVAL(LOAD) SHORT(L) LONG(load) \
268 HELPOPT("load and index a dump file") \
269 VAL(SCANDUMP) SHORT(S) LONG(scan_dump) \
270 HELPARG("directory") HELPOPT("scan only, generating a dump") \
271 VAL(HTML) SHORT(H) LONG(html) \
272 HELPARG("subdir") HELPOPT("print an HTML report on a subdirectory") \
273 HELPPFX("options") \
274 VAL(DATAFILE) SHORT(f) LONG(file) \
275 HELPARG("filename") HELPOPT("[most modes] specify index file") \
276 NOVAL(CROSSFS) LONG(cross_fs) \
277 HELPOPT("[--scan] cross filesystem boundaries") \
278 NOVAL(NOCROSSFS) LONG(no_cross_fs) \
279 HELPOPT("[--scan] stick to one filesystem") \
280 VAL(PRUNE) LONG(prune) \
281 HELPARG("wildcard") HELPOPT("[--scan] prune files matching pattern") \
282 VAL(PRUNEPATH) LONG(prune_path) \
283 HELPARG("wildcard") HELPOPT("[--scan] prune pathnames matching pattern") \
284 VAL(EXCLUDE) LONG(exclude) \
285 HELPARG("wildcard") HELPOPT("[--scan] exclude files matching pattern") \
286 VAL(EXCLUDEPATH) LONG(exclude_path) \
287 HELPARG("wildcard") HELPOPT("[--scan] exclude pathnames matching pattern") \
288 VAL(INCLUDE) LONG(include) \
289 HELPARG("wildcard") HELPOPT("[--scan] include files matching pattern") \
290 VAL(INCLUDEPATH) LONG(include_path) \
291 HELPARG("wildcard") HELPOPT("[--scan] include pathnames matching pattern") \
292 NOVAL(PROGRESS) LONG(progress) LONG(scan_progress) \
293 HELPOPT("[--scan] report progress on stderr") \
294 NOVAL(NOPROGRESS) LONG(no_progress) LONG(no_scan_progress) \
295 HELPOPT("[--scan] do not report progress") \
296 NOVAL(TTYPROGRESS) LONG(tty_progress) LONG(tty_scan_progress) \
297 LONG(progress_tty) LONG(scan_progress_tty) \
298 HELPOPT("[--scan] report progress if stderr is a tty") \
299 NOVAL(DIRATIME) LONG(dir_atime) LONG(dir_atimes) \
300 HELPOPT("[--scan,--load] keep real atimes on directories") \
301 NOVAL(NODIRATIME) LONG(no_dir_atime) LONG(no_dir_atimes) \
302 HELPOPT("[--scan,--load] fake atimes on directories") \
303 NOVAL(MTIME) LONG(mtime) \
304 HELPOPT("[--scan] use mtime instead of atime") \
305 VAL(AGERANGE) SHORT(r) LONG(age_range) LONG(range) LONG(ages) \
306 HELPARG("age[-age]") HELPOPT("[--web,--html] set limits of colour coding") \
307 VAL(SERVERADDR) LONG(address) LONG(addr) LONG(server_address) \
308 LONG(server_addr) \
309 HELPARG("addr[:port]") HELPOPT("[--web] specify HTTP server address") \
310 VAL(AUTH) LONG(auth) LONG(http_auth) LONG(httpd_auth) \
311 LONG(server_auth) LONG(web_auth) \
312 HELPARG("type") HELPOPT("[--web] specify HTTP authentication method") \
313 VAL(AUTHFILE) LONG(auth_file) \
314 HELPARG("filename") HELPOPT("[--web] read HTTP Basic user/pass from file") \
315 VAL(AUTHFD) LONG(auth_fd) \
316 HELPARG("fd") HELPOPT("[--web] read HTTP Basic user/pass from fd") \
317 VAL(TQDEPTH) SHORT(d) LONG(depth) LONG(max_depth) LONG(maximum_depth) \
318 HELPARG("levels") HELPOPT("[--text] recurse to this many levels") \
319 VAL(MINAGE) SHORT(a) LONG(age) LONG(min_age) LONG(minimum_age) \
320 HELPARG("age") HELPOPT("[--text] include only files older than this") \
321 HELPPFX("also") \
322 NOVAL(HELP) SHORT(h) LONG(help) HELPOPT("display this help text") \
323 NOVAL(VERSION) SHORT(V) LONG(version) HELPOPT("report version number") \
324 NOVAL(LICENCE) LONG(licence) LONG(license) \
325 HELPOPT("display (MIT) licence text") \
326
327 #define IGNORE(x)
328 #define DEFENUM(x) OPT_ ## x,
329 #define ZERO(x) 0,
330 #define ONE(x) 1,
331 #define STRING(x) #x ,
332 #define STRINGNOCOMMA(x) #x
333 #define SHORTNEWOPT(x) SHORTtmp_ ## x = OPT_ ## x,
334 #define SHORTTHISOPT(x) SHORTtmp2_ ## x, SHORTVAL_ ## x = SHORTtmp2_ ## x - 1,
335 #define SHORTOPTVAL(x) SHORTVAL_ ## x,
336 #define SHORTTMP(x) SHORTtmp3_ ## x,
337 #define LONGNEWOPT(x) LONGtmp_ ## x = OPT_ ## x,
338 #define LONGTHISOPT(x) LONGtmp2_ ## x, LONGVAL_ ## x = LONGtmp2_ ## x - 1,
339 #define LONGOPTVAL(x) LONGVAL_ ## x,
340 #define LONGTMP(x) SHORTtmp3_ ## x,
341
342 #define OPTIONS(NOVAL, VAL, SHORT, LONG) \
343 OPTHELP(NOVAL, VAL, SHORT, LONG, IGNORE, IGNORE, IGNORE, IGNORE)
344
345 enum { OPTIONS(DEFENUM,DEFENUM,IGNORE,IGNORE) NOPTIONS };
346 enum { OPTIONS(IGNORE,IGNORE,SHORTTMP,IGNORE) NSHORTOPTS };
347 enum { OPTIONS(IGNORE,IGNORE,IGNORE,LONGTMP) NLONGOPTS };
348 static const int opthasval[NOPTIONS] = {OPTIONS(ZERO,ONE,IGNORE,IGNORE)};
349 static const char shortopts[] = {OPTIONS(IGNORE,IGNORE,STRINGNOCOMMA,IGNORE)};
350 static const char *const longopts[] = {OPTIONS(IGNORE,IGNORE,IGNORE,STRING)};
351 enum { OPTIONS(SHORTNEWOPT,SHORTNEWOPT,SHORTTHISOPT,IGNORE) };
352 enum { OPTIONS(LONGNEWOPT,LONGNEWOPT,IGNORE,LONGTHISOPT) };
353 static const int shortvals[] = {OPTIONS(IGNORE,IGNORE,SHORTOPTVAL,IGNORE)};
354 static const int longvals[] = {OPTIONS(IGNORE,IGNORE,IGNORE,LONGOPTVAL)};
355
356 static void usage(FILE *fp)
357 {
358 char longbuf[80];
359 const char *prefix, *shortopt, *longopt, *optarg;
360 int i, optex;
361
362 #define HELPRESET prefix = shortopt = longopt = optarg = NULL, optex = -1
363 #define HELPNOVAL(s) optex = 0;
364 #define HELPVAL(s) optex = 1;
365 #define HELPSHORT(s) if (!shortopt) shortopt = "-" #s;
366 #define HELPLONG(s) if (!longopt) { \
367 strcpy(longbuf, "--" #s); longopt = longbuf; \
368 for (i = 0; longbuf[i]; i++) if (longbuf[i] == '_') longbuf[i] = '-'; }
369 #define HELPPFX(s) prefix = s;
370 #define HELPARG(s) optarg = s;
371 #define HELPLINE(s) assert(optex == -1); \
372 fprintf(fp, "%7s%c %s\n", prefix?prefix:"", prefix?':':' ', s); \
373 HELPRESET;
374 #define HELPOPT(s) assert((optex == 1 && optarg) || (optex == 0 && !optarg)); \
375 assert(shortopt || longopt); \
376 i = fprintf(fp, "%7s%c %s%s%s%s%s", prefix?prefix:"", prefix?':':' ', \
377 shortopt?shortopt:"", shortopt&&longopt?", ":"", longopt?longopt:"", \
378 optarg?" ":"", optarg?optarg:""); \
379 fprintf(fp, "%*s %s\n", i<32?32-i:0,"",s); HELPRESET;
380
381 HELPRESET;
382 OPTHELP(HELPNOVAL, HELPVAL, HELPSHORT, HELPLONG,
383 HELPPFX, HELPARG, HELPLINE, HELPOPT);
384
385 #undef HELPRESET
386 #undef HELPNOVAL
387 #undef HELPVAL
388 #undef HELPSHORT
389 #undef HELPLONG
390 #undef HELPPFX
391 #undef HELPARG
392 #undef HELPLINE
393 #undef HELPOPT
394 }
395
396 static time_t parse_age(time_t now, const char *agestr)
397 {
398 time_t t;
399 struct tm tm;
400 int nunits;
401 char unit[2];
402
403 t = now;
404
405 if (2 != sscanf(agestr, "%d%1[DdWwMmYy]", &nunits, unit)) {
406 fprintf(stderr, "%s: age specification should be a number followed by"
407 " one of d,w,m,y\n", PNAME);
408 exit(1);
409 }
410
411 if (unit[0] == 'd') {
412 t -= 86400 * nunits;
413 } else if (unit[0] == 'w') {
414 t -= 86400 * 7 * nunits;
415 } else {
416 int ym;
417
418 tm = *localtime(&t);
419 ym = tm.tm_year * 12 + tm.tm_mon;
420
421 if (unit[0] == 'm')
422 ym -= nunits;
423 else
424 ym -= 12 * nunits;
425
426 tm.tm_year = ym / 12;
427 tm.tm_mon = ym % 12;
428
429 t = mktime(&tm);
430 }
431
432 return t;
433 }
434
435 int main(int argc, char **argv)
436 {
437 int fd, count;
438 struct ctx actx, *ctx = &actx;
439 struct stat st;
440 off_t totalsize, realsize;
441 void *mappedfile;
442 triewalk *tw;
443 indexbuild *ib;
444 const struct trie_file *tf;
445 char *filename = PNAME ".dat";
446 int doing_opts = 1;
447 enum { TEXT, HTML, SCAN, DUMP, SCANDUMP, LOAD, HTTPD, REMOVE };
448 struct action {
449 int mode;
450 char *arg;
451 } *actions = NULL;
452 int nactions = 0, actionsize = 0, action;
453 time_t now = time(NULL);
454 time_t textcutoff = now, htmlnewest = now, htmloldest = now;
455 int htmlautoagerange = 1;
456 const char *httpserveraddr = NULL;
457 int httpserverport = 0;
458 const char *httpauthdata = NULL;
459 int auth = HTTPD_AUTH_MAGIC | HTTPD_AUTH_BASIC;
460 int progress = 1;
461 struct inclusion_exclusion *inex = NULL;
462 int ninex = 0, inexsize = 0;
463 int crossfs = 0;
464 int tqdepth = 1;
465 int fakediratimes = 1;
466 int mtime = 0;
467
468 #ifdef DEBUG_MAD_OPTION_PARSING_MACROS
469 {
470 static const char *const optnames[NOPTIONS] = {
471 OPTIONS(STRING,STRING,IGNORE,IGNORE)
472 };
473 int i;
474 for (i = 0; i < NSHORTOPTS; i++)
475 printf("-%c == %s [%s]\n", shortopts[i], optnames[shortvals[i]],
476 opthasval[shortvals[i]] ? "value" : "no value");
477 for (i = 0; i < NLONGOPTS; i++)
478 printf("--%s == %s [%s]\n", longopts[i], optnames[longvals[i]],
479 opthasval[longvals[i]] ? "value" : "no value");
480 }
481 #endif
482
483 while (--argc > 0) {
484 char *p = *++argv;
485
486 if (doing_opts && *p == '-') {
487 int wordstart = 1;
488
489 if (!strcmp(p, "--")) {
490 doing_opts = 0;
491 continue;
492 }
493
494 p++;
495 while (*p) {
496 int optid = -1;
497 int i;
498 char *optval;
499
500 if (wordstart && *p == '-') {
501 /*
502 * GNU-style long option.
503 */
504 p++;
505 optval = strchr(p, '=');
506 if (optval)
507 *optval++ = '\0';
508
509 for (i = 0; i < NLONGOPTS; i++) {
510 const char *opt = longopts[i], *s = p;
511 int match = 1;
512 /*
513 * The underscores in the option names
514 * defined above may be given by the user
515 * as underscores or dashes, or omitted
516 * entirely.
517 */
518 while (*opt) {
519 if (*opt == '_') {
520 if (*s == '-' || *s == '_')
521 s++;
522 } else {
523 if (*opt != *s) {
524 match = 0;
525 break;
526 }
527 s++;
528 }
529 opt++;
530 }
531 if (match && !*s) {
532 optid = longvals[i];
533 break;
534 }
535 }
536
537 if (optid < 0) {
538 fprintf(stderr, "%s: unrecognised option '--%s'\n",
539 PNAME, p);
540 return 1;
541 }
542
543 if (!opthasval[optid]) {
544 if (optval) {
545 fprintf(stderr, "%s: unexpected argument to option"
546 " '--%s'\n", PNAME, p);
547 return 1;
548 }
549 } else {
550 if (!optval) {
551 if (--argc > 0) {
552 optval = *++argv;
553 } else {
554 fprintf(stderr, "%s: option '--%s' expects"
555 " an argument\n", PNAME, p);
556 return 1;
557 }
558 }
559 }
560
561 p += strlen(p); /* finished with this argument word */
562 } else {
563 /*
564 * Short option.
565 */
566 char c = *p++;
567
568 for (i = 0; i < NSHORTOPTS; i++)
569 if (c == shortopts[i]) {
570 optid = shortvals[i];
571 break;
572 }
573
574 if (optid < 0) {
575 fprintf(stderr, "%s: unrecognised option '-%c'\n",
576 PNAME, c);
577 return 1;
578 }
579
580 if (opthasval[optid]) {
581 if (*p) {
582 optval = p;
583 p += strlen(p);
584 } else if (--argc > 0) {
585 optval = *++argv;
586 } else {
587 fprintf(stderr, "%s: option '-%c' expects"
588 " an argument\n", PNAME, c);
589 return 1;
590 }
591 } else {
592 optval = NULL;
593 }
594 }
595
596 wordstart = 0;
597
598 /*
599 * Now actually process the option.
600 */
601 switch (optid) {
602 case OPT_HELP:
603 usage(stdout);
604 return 0;
605 case OPT_VERSION:
606 #ifdef PACKAGE_VERSION
607 printf("%s, revision %s\n", PNAME, PACKAGE_VERSION);
608 #else
609 printf("%s: version number not available when not built"
610 " via automake\n", PNAME);
611 #endif
612 return 0;
613 case OPT_LICENCE:
614 {
615 extern const char *const licence[];
616 int i;
617
618 for (i = 0; licence[i]; i++)
619 fputs(licence[i], stdout);
620
621 return 0;
622 }
623 return 0;
624 case OPT_SCAN:
625 if (nactions >= actionsize) {
626 actionsize = nactions * 3 / 2 + 16;
627 actions = sresize(actions, actionsize, struct action);
628 }
629 actions[nactions].mode = SCAN;
630 actions[nactions].arg = optval;
631 nactions++;
632 break;
633 case OPT_SCANDUMP:
634 if (nactions >= actionsize) {
635 actionsize = nactions * 3 / 2 + 16;
636 actions = sresize(actions, actionsize, struct action);
637 }
638 actions[nactions].mode = SCANDUMP;
639 actions[nactions].arg = optval;
640 nactions++;
641 break;
642 case OPT_DUMP:
643 if (nactions >= actionsize) {
644 actionsize = nactions * 3 / 2 + 16;
645 actions = sresize(actions, actionsize, struct action);
646 }
647 actions[nactions].mode = DUMP;
648 actions[nactions].arg = NULL;
649 nactions++;
650 break;
651 case OPT_LOAD:
652 if (nactions >= actionsize) {
653 actionsize = nactions * 3 / 2 + 16;
654 actions = sresize(actions, actionsize, struct action);
655 }
656 actions[nactions].mode = LOAD;
657 actions[nactions].arg = NULL;
658 nactions++;
659 break;
660 case OPT_TEXT:
661 if (nactions >= actionsize) {
662 actionsize = nactions * 3 / 2 + 16;
663 actions = sresize(actions, actionsize, struct action);
664 }
665 actions[nactions].mode = TEXT;
666 actions[nactions].arg = optval;
667 nactions++;
668 break;
669 case OPT_HTML:
670 if (nactions >= actionsize) {
671 actionsize = nactions * 3 / 2 + 16;
672 actions = sresize(actions, actionsize, struct action);
673 }
674 actions[nactions].mode = HTML;
675 actions[nactions].arg = optval;
676 nactions++;
677 break;
678 case OPT_HTTPD:
679 if (nactions >= actionsize) {
680 actionsize = nactions * 3 / 2 + 16;
681 actions = sresize(actions, actionsize, struct action);
682 }
683 actions[nactions].mode = HTTPD;
684 actions[nactions].arg = NULL;
685 nactions++;
686 break;
687 case OPT_REMOVE:
688 if (nactions >= actionsize) {
689 actionsize = nactions * 3 / 2 + 16;
690 actions = sresize(actions, actionsize, struct action);
691 }
692 actions[nactions].mode = REMOVE;
693 actions[nactions].arg = NULL;
694 nactions++;
695 break;
696 case OPT_PROGRESS:
697 progress = 2;
698 break;
699 case OPT_NOPROGRESS:
700 progress = 0;
701 break;
702 case OPT_TTYPROGRESS:
703 progress = 1;
704 break;
705 case OPT_CROSSFS:
706 crossfs = 1;
707 break;
708 case OPT_NOCROSSFS:
709 crossfs = 0;
710 break;
711 case OPT_DIRATIME:
712 fakediratimes = 0;
713 break;
714 case OPT_NODIRATIME:
715 fakediratimes = 1;
716 break;
717 case OPT_MTIME:
718 mtime = 1;
719 break;
720 case OPT_DATAFILE:
721 filename = optval;
722 break;
723 case OPT_TQDEPTH:
724 tqdepth = atoi(optval);
725 break;
726 case OPT_MINAGE:
727 textcutoff = parse_age(now, optval);
728 break;
729 case OPT_AGERANGE:
730 if (!strcmp(optval, "auto")) {
731 htmlautoagerange = 1;
732 } else {
733 char *q = optval + strcspn(optval, "-:");
734 if (*q)
735 *q++ = '\0';
736 htmloldest = parse_age(now, optval);
737 htmlnewest = *q ? parse_age(now, q) : now;
738 htmlautoagerange = 0;
739 }
740 break;
741 case OPT_SERVERADDR:
742 {
743 char *port;
744 if (optval[0] == '[' &&
745 (port = strchr(optval, ']')) != NULL)
746 port++;
747 else
748 port = optval;
749 port += strcspn(port, ":");
750 if (port)
751 *port++ = '\0';
752 httpserveraddr = optval;
753 httpserverport = atoi(port);
754 }
755 break;
756 case OPT_AUTH:
757 if (!strcmp(optval, "magic"))
758 auth = HTTPD_AUTH_MAGIC;
759 else if (!strcmp(optval, "basic"))
760 auth = HTTPD_AUTH_BASIC;
761 else if (!strcmp(optval, "none"))
762 auth = HTTPD_AUTH_NONE;
763 else if (!strcmp(optval, "default"))
764 auth = HTTPD_AUTH_MAGIC | HTTPD_AUTH_BASIC;
765 else if (!strcmp(optval, "help") ||
766 !strcmp(optval, "list")) {
767 printf(PNAME ": supported HTTP authentication types"
768 " are:\n"
769 " magic use Linux /proc/net/tcp to"
770 " determine owner of peer socket\n"
771 " basic HTTP Basic username and"
772 " password authentication\n"
773 " default use 'magic' if possible, "
774 " otherwise fall back to 'basic'\n"
775 " none unauthenticated HTTP (if"
776 " the data file is non-confidential)\n");
777 return 0;
778 } else {
779 fprintf(stderr, "%s: unrecognised authentication"
780 " type '%s'\n%*s options are 'magic',"
781 " 'basic', 'none', 'default'\n",
782 PNAME, optval, (int)strlen(PNAME), "");
783 return 1;
784 }
785 break;
786 case OPT_AUTHFILE:
787 case OPT_AUTHFD:
788 {
789 int fd;
790 char namebuf[40];
791 const char *name;
792 char *authbuf;
793 int authlen, authsize;
794 int ret;
795
796 if (optid == OPT_AUTHFILE) {
797 fd = open(optval, O_RDONLY);
798 if (fd < 0) {
799 fprintf(stderr, "%s: %s: open: %s\n", PNAME,
800 optval, strerror(errno));
801 return 1;
802 }
803 name = optval;
804 } else {
805 fd = atoi(optval);
806 name = namebuf;
807 sprintf(namebuf, "fd %d", fd);
808 }
809
810 authlen = 0;
811 authsize = 256;
812 authbuf = snewn(authsize, char);
813 while ((ret = read(fd, authbuf+authlen,
814 authsize-authlen)) > 0) {
815 authlen += ret;
816 if ((authsize - authlen) < (authsize / 16)) {
817 authsize = authlen * 3 / 2 + 4096;
818 authbuf = sresize(authbuf, authsize, char);
819 }
820 }
821 if (ret < 0) {
822 fprintf(stderr, "%s: %s: read: %s\n", PNAME,
823 name, strerror(errno));
824 return 1;
825 }
826 if (optid == OPT_AUTHFILE)
827 close(fd);
828 httpauthdata = authbuf;
829 }
830 break;
831 case OPT_INCLUDE:
832 case OPT_INCLUDEPATH:
833 case OPT_EXCLUDE:
834 case OPT_EXCLUDEPATH:
835 case OPT_PRUNE:
836 case OPT_PRUNEPATH:
837 if (ninex >= inexsize) {
838 inexsize = ninex * 3 / 2 + 16;
839 inex = sresize(inex, inexsize,
840 struct inclusion_exclusion);
841 }
842 inex[ninex].path = (optid == OPT_INCLUDEPATH ||
843 optid == OPT_EXCLUDEPATH ||
844 optid == OPT_PRUNEPATH);
845 inex[ninex].type = (optid == OPT_INCLUDE ? 1 :
846 optid == OPT_INCLUDEPATH ? 1 :
847 optid == OPT_EXCLUDE ? 0 :
848 optid == OPT_EXCLUDEPATH ? 0 :
849 optid == OPT_PRUNE ? -1 :
850 /* optid == OPT_PRUNEPATH ? */ -1);
851 inex[ninex].wildcard = optval;
852 ninex++;
853 break;
854 }
855 }
856 } else {
857 fprintf(stderr, "%s: unexpected argument '%s'\n", PNAME, p);
858 return 1;
859 }
860 }
861
862 if (nactions == 0) {
863 usage(stderr);
864 return 1;
865 }
866
867 for (action = 0; action < nactions; action++) {
868 int mode = actions[action].mode;
869
870 if (mode == SCAN || mode == SCANDUMP || mode == LOAD) {
871 const char *scandir = actions[action].arg;
872 if (mode == LOAD) {
873 char *buf = fgetline(stdin);
874 unsigned newpathsep;
875 buf[strcspn(buf, "\r\n")] = '\0';
876 if (1 != sscanf(buf, DUMPHDR "%x",
877 &newpathsep)) {
878 fprintf(stderr, "%s: header in dump file not recognised\n",
879 PNAME);
880 return 1;
881 }
882 pathsep = (char)newpathsep;
883 sfree(buf);
884 }
885
886 if (mode == SCAN || mode == LOAD) {
887 /*
888 * Prepare to write out the index file.
889 */
890 fd = open(filename, O_RDWR | O_TRUNC | O_CREAT,
891 S_IRUSR | S_IWUSR);
892 if (fd < 0) {
893 fprintf(stderr, "%s: %s: open: %s\n", PNAME, filename,
894 strerror(errno));
895 return 1;
896 }
897 if (fstat(fd, &st) < 0) {
898 perror(PNAME ": fstat");
899 return 1;
900 }
901 ctx->datafile_dev = st.st_dev;
902 ctx->datafile_ino = st.st_ino;
903 ctx->straight_to_dump = 0;
904 } else {
905 ctx->datafile_dev = -1;
906 ctx->datafile_ino = -1;
907 ctx->straight_to_dump = 1;
908 }
909
910 if (mode == SCAN || mode == SCANDUMP) {
911 if (stat(scandir, &st) < 0) {
912 fprintf(stderr, "%s: %s: stat: %s\n", PNAME, scandir,
913 strerror(errno));
914 return 1;
915 }
916 ctx->filesystem_dev = crossfs ? 0 : st.st_dev;
917 }
918
919 ctx->inex = inex;
920 ctx->ninex = ninex;
921 ctx->crossfs = crossfs;
922 ctx->fakeatimes = fakediratimes;
923 ctx->usemtime = mtime;
924
925 ctx->last_output_update = time(NULL);
926
927 /* progress==1 means report progress only if stderr is a tty */
928 if (progress == 1)
929 progress = isatty(2) ? 2 : 0;
930 ctx->progress = progress;
931 {
932 struct winsize ws;
933 if (progress && ioctl(2, TIOCGWINSZ, &ws) == 0)
934 ctx->progwidth = ws.ws_col - 1;
935 else
936 ctx->progwidth = 79;
937 }
938
939 if (mode == SCANDUMP)
940 printf(DUMPHDR "%02x\n", (unsigned char)pathsep);
941
942 /*
943 * Scan the directory tree, and write out the trie component
944 * of the data file.
945 */
946 if (mode != SCANDUMP) {
947 ctx->tb = triebuild_new(fd);
948 }
949 if (mode == LOAD) {
950 char *buf;
951 int line = 2;
952 while ((buf = fgetline(stdin)) != NULL) {
953 struct trie_file tf;
954 char *p, *q;
955
956 buf[strcspn(buf, "\r\n")] = '\0';
957
958 p = buf;
959 q = p;
960 while (*p && *p != ' ') p++;
961 if (!*p) {
962 fprintf(stderr, "%s: dump file line %d: expected at least"
963 " three fields\n", PNAME, line);
964 return 1;
965 }
966 *p++ = '\0';
967 tf.size = strtoull(q, NULL, 10);
968 q = p;
969 while (*p && *p != ' ') p++;
970 if (!*p) {
971 fprintf(stderr, "%s: dump file line %d: expected at least"
972 " three fields\n", PNAME, line);
973 return 1;
974 }
975 *p++ = '\0';
976 tf.atime = strtoull(q, NULL, 10);
977 q = buf;
978 while (*p) {
979 int c = *p;
980 if (*p == '%') {
981 int i;
982 p++;
983 c = 0;
984 for (i = 0; i < 2; i++) {
985 c *= 16;
986 if (*p >= '0' && *p <= '9')
987 c += *p - '0';
988 else if (*p >= 'A' && *p <= 'F')
989 c += *p - ('A' - 10);
990 else if (*p >= 'a' && *p <= 'f')
991 c += *p - ('a' - 10);
992 else {
993 fprintf(stderr, "%s: dump file line %d: unable"
994 " to parse hex escape\n", PNAME, line);
995 }
996 p++;
997 }
998 }
999 *q++ = c;
1000 p++;
1001 }
1002 *q = '\0';
1003 triebuild_add(ctx->tb, buf, &tf);
1004 sfree(buf);
1005 line++;
1006 }
1007 } else {
1008 du(scandir, gotdata, ctx);
1009 }
1010 if (mode != SCANDUMP) {
1011 count = triebuild_finish(ctx->tb);
1012 triebuild_free(ctx->tb);
1013
1014 if (ctx->progress) {
1015 fprintf(stderr, "%-*s\r", ctx->progwidth, "");
1016 fflush(stderr);
1017 }
1018
1019 /*
1020 * Work out how much space the cumulative index trees
1021 * will take; enlarge the file, and memory-map it.
1022 */
1023 if (fstat(fd, &st) < 0) {
1024 perror(PNAME ": fstat");
1025 return 1;
1026 }
1027
1028 printf("Built pathname index, %d entries, %llu bytes\n", count,
1029 (unsigned long long)st.st_size);
1030
1031 totalsize = index_compute_size(st.st_size, count);
1032
1033 if (lseek(fd, totalsize-1, SEEK_SET) < 0) {
1034 perror(PNAME ": lseek");
1035 return 1;
1036 }
1037 if (write(fd, "\0", 1) < 1) {
1038 perror(PNAME ": write");
1039 return 1;
1040 }
1041
1042 printf("Upper bound on index file size = %llu bytes\n",
1043 (unsigned long long)totalsize);
1044
1045 mappedfile = mmap(NULL, totalsize, PROT_READ|PROT_WRITE,MAP_SHARED, fd, 0);
1046 if (!mappedfile) {
1047 perror(PNAME ": mmap");
1048 return 1;
1049 }
1050
1051 if (fakediratimes) {
1052 printf("Faking directory atimes\n");
1053 trie_fake_dir_atimes(mappedfile);
1054 }
1055
1056 printf("Building index\n");
1057 ib = indexbuild_new(mappedfile, st.st_size, count);
1058 tw = triewalk_new(mappedfile);
1059 while ((tf = triewalk_next(tw, NULL)) != NULL)
1060 indexbuild_add(ib, tf);
1061 triewalk_free(tw);
1062 realsize = indexbuild_realsize(ib);
1063 indexbuild_free(ib);
1064
1065 munmap(mappedfile, totalsize);
1066 ftruncate(fd, realsize);
1067 close(fd);
1068 printf("Actual index file size = %llu bytes\n",
1069 (unsigned long long)realsize);
1070 }
1071 } else if (mode == TEXT) {
1072 char *querydir = actions[action].arg;
1073 size_t pathlen;
1074
1075 fd = open(filename, O_RDONLY);
1076 if (fd < 0) {
1077 fprintf(stderr, "%s: %s: open: %s\n", PNAME, filename,
1078 strerror(errno));
1079 return 1;
1080 }
1081 if (fstat(fd, &st) < 0) {
1082 perror(PNAME ": fstat");
1083 return 1;
1084 }
1085 totalsize = st.st_size;
1086 mappedfile = mmap(NULL, totalsize, PROT_READ, MAP_SHARED, fd, 0);
1087 if (!mappedfile) {
1088 perror(PNAME ": mmap");
1089 return 1;
1090 }
1091 pathsep = trie_pathsep(mappedfile);
1092
1093 /*
1094 * Trim trailing slash, just in case.
1095 */
1096 pathlen = strlen(querydir);
1097 if (pathlen > 0 && querydir[pathlen-1] == pathsep)
1098 querydir[--pathlen] = '\0';
1099
1100 text_query(mappedfile, querydir, textcutoff, tqdepth);
1101
1102 munmap(mappedfile, totalsize);
1103 } else if (mode == HTML) {
1104 char *querydir = actions[action].arg;
1105 size_t pathlen;
1106 struct html_config cfg;
1107 unsigned long xi;
1108 char *html;
1109
1110 fd = open(filename, O_RDONLY);
1111 if (fd < 0) {
1112 fprintf(stderr, "%s: %s: open: %s\n", PNAME, filename,
1113 strerror(errno));
1114 return 1;
1115 }
1116 if (fstat(fd, &st) < 0) {
1117 perror(PNAME ": fstat");
1118 return 1;
1119 }
1120 totalsize = st.st_size;
1121 mappedfile = mmap(NULL, totalsize, PROT_READ, MAP_SHARED, fd, 0);
1122 if (!mappedfile) {
1123 perror(PNAME ": mmap");
1124 return 1;
1125 }
1126 pathsep = trie_pathsep(mappedfile);
1127
1128 /*
1129 * Trim trailing slash, just in case.
1130 */
1131 pathlen = strlen(querydir);
1132 if (pathlen > 0 && querydir[pathlen-1] == pathsep)
1133 querydir[--pathlen] = '\0';
1134
1135 xi = trie_before(mappedfile, querydir);
1136 cfg.format = NULL;
1137 cfg.autoage = htmlautoagerange;
1138 cfg.oldest = htmloldest;
1139 cfg.newest = htmlnewest;
1140 html = html_query(mappedfile, xi, &cfg);
1141 fputs(html, stdout);
1142
1143 munmap(mappedfile, totalsize);
1144 } else if (mode == DUMP) {
1145 size_t maxpathlen;
1146 char *buf;
1147
1148 fd = open(filename, O_RDONLY);
1149 if (fd < 0) {
1150 fprintf(stderr, "%s: %s: open: %s\n", PNAME, filename,
1151 strerror(errno));
1152 return 1;
1153 }
1154 if (fstat(fd, &st) < 0) {
1155 perror(PNAME ": fstat");
1156 return 1;
1157 }
1158 totalsize = st.st_size;
1159 mappedfile = mmap(NULL, totalsize, PROT_READ, MAP_SHARED, fd, 0);
1160 if (!mappedfile) {
1161 perror(PNAME ": mmap");
1162 return 1;
1163 }
1164 pathsep = trie_pathsep(mappedfile);
1165
1166 maxpathlen = trie_maxpathlen(mappedfile);
1167 buf = snewn(maxpathlen, char);
1168
1169 printf(DUMPHDR "%02x\n", (unsigned char)pathsep);
1170 tw = triewalk_new(mappedfile);
1171 while ((tf = triewalk_next(tw, buf)) != NULL)
1172 dump_line(buf, tf);
1173 triewalk_free(tw);
1174
1175 munmap(mappedfile, totalsize);
1176 } else if (mode == HTTPD) {
1177 struct html_config pcfg;
1178 struct httpd_config dcfg;
1179
1180 fd = open(filename, O_RDONLY);
1181 if (fd < 0) {
1182 fprintf(stderr, "%s: %s: open: %s\n", PNAME, filename,
1183 strerror(errno));
1184 return 1;
1185 }
1186 if (fstat(fd, &st) < 0) {
1187 perror(PNAME ": fstat");
1188 return 1;
1189 }
1190 totalsize = st.st_size;
1191 mappedfile = mmap(NULL, totalsize, PROT_READ, MAP_SHARED, fd, 0);
1192 if (!mappedfile) {
1193 perror(PNAME ": mmap");
1194 return 1;
1195 }
1196 pathsep = trie_pathsep(mappedfile);
1197
1198 dcfg.address = httpserveraddr;
1199 dcfg.port = httpserverport;
1200 dcfg.basicauthdata = httpauthdata;
1201 pcfg.format = NULL;
1202 pcfg.autoage = htmlautoagerange;
1203 pcfg.oldest = htmloldest;
1204 pcfg.newest = htmlnewest;
1205 run_httpd(mappedfile, auth, &dcfg, &pcfg);
1206 munmap(mappedfile, totalsize);
1207 } else if (mode == REMOVE) {
1208 if (remove(filename) < 0) {
1209 fprintf(stderr, "%s: %s: remove: %s\n", PNAME, filename,
1210 strerror(errno));
1211 return 1;
1212 }
1213 }
1214 }
1215
1216 return 0;
1217 }