]> git.ozlabs.org Git - ccan/blob - tools/ccanlint/ccanlint.c
f06f200b8daf0017ebe68fc655ac393747e7cbf6
[ccan] / tools / ccanlint / ccanlint.c
1 /*
2  * ccanlint: assorted checks and advice for a ccan package
3  * Copyright (C) 2008 Rusty Russell, Idris Soule
4  * Copyright (C) 2010 Rusty Russell, Idris Soule
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by the Free
8  * Software Foundation; either version 2 of the License, or (at your option)
9  * any later version.
10  *
11  *   This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
14  * more details.
15  *
16  * You should have received a copy of the GNU General Public License along with
17  * this program; if not, write to the Free Software Foundation, Inc., 51
18  * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19  */
20 #include "ccanlint.h"
21 #include "../tools.h"
22 #include "../read_config_header.h"
23 #include <unistd.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <err.h>
28 #include <ctype.h>
29 #include <ccan/str/str.h>
30 #include <ccan/take/take.h>
31 #include <ccan/opt/opt.h>
32 #include <ccan/foreach/foreach.h>
33 #include <ccan/cast/cast.h>
34 #include <ccan/tlist/tlist.h>
35 #include <ccan/tal/path/path.h>
36 #include <ccan/strmap/strmap.h>
37
38 typedef STRMAP(struct ccanlint *) ccanlint_map_t;
39
40 int verbose = 0;
41 static ccanlint_map_t tests;
42 bool safe_mode = false;
43 bool keep_results = false;
44 bool non_ccan_deps = false;
45 bool build_failed = false;
46 static bool targeting = false;
47 static unsigned int timeout;
48
49 const char *config_header;
50
51 const char *ccan_dir;
52
53 #if 0
54 static void indent_print(const char *string)
55 {
56         while (*string) {
57                 unsigned int line = strcspn(string, "\n");
58                 printf("\t%.*s", line, string);
59                 if (string[line] == '\n') {
60                         printf("\n");
61                         line++;
62                 }
63                 string += line;
64         }
65 }
66 #endif
67
68 bool ask(const char *question)
69 {
70         char reply[80];
71
72         printf("%s ", question);
73         fflush(stdout);
74
75         return fgets(reply, sizeof(reply), stdin) != NULL
76                 && toupper(reply[0]) == 'Y';
77 }
78
79 /* Skip, but don't remove. */
80 static bool skip_test(struct dgraph_node *node, const char *why)
81 {
82         struct ccanlint *c = container_of(node, struct ccanlint, node);
83         c->skip = why;
84         return true;
85 }
86
87 static const char *dep_failed(struct manifest *m UNNEEDED)
88 {
89         return "dependency couldn't run";
90 }
91
92 static bool cannot_run(struct dgraph_node *node, void *all UNNEEDED)
93 {
94         struct ccanlint *c = container_of(node, struct ccanlint, node);
95         c->can_run = dep_failed;
96
97         return true;
98 }
99
100 struct run_info {
101         bool noninteractive;
102         unsigned int score, total;
103         struct manifest *m;
104         const char *prefix;
105         bool pass;
106 };
107
108 static bool run_test(struct dgraph_node *n, struct run_info *run)
109 {
110         struct ccanlint *i = container_of(n, struct ccanlint, node);
111         unsigned int timeleft;
112         struct score *score;
113
114         if (i->done)
115                 return true;
116
117         score = tal(run->m, struct score);
118         list_head_init(&score->per_file_errors);
119         score->error = NULL;
120         score->pass = false;
121         score->score = 0;
122         score->total = 1;
123
124         /* We can see skipped things in two cases:
125          * (1) _info excluded them (presumably because they fail).
126          * (2) A prerequisite failed.
127          */
128         if (i->skip) {
129                 if (verbose)
130                         printf("%s%s: skipped (%s)\n",
131                                run->prefix, i->name, i->skip);
132                 /* Pass us up to the test which failed, not us. */
133                 score->pass = true;
134                 goto out;
135         }
136
137         if (i->can_run) {
138                 i->skip = i->can_run(run->m);
139                 if (i->skip) {
140                         /* Test doesn't apply, or can't run?  That's OK. */
141                         if (verbose > 1)
142                                 printf("%s%s: skipped (%s)\n",
143                                        run->prefix, i->name, i->skip);
144                         /* Mark our dependencies to skip. */
145                         dgraph_traverse_from(&i->node, cannot_run, NULL);
146                         score->pass = true;
147                         score->total = 0;
148                         goto out;
149                 }
150         }
151
152         timeleft = timeout ? timeout : default_timeout_ms;
153         i->check(run->m, &timeleft, score);
154         if (timeout && timeleft == 0) {
155                 i->skip = "timeout";
156                 if (verbose)
157                         printf("%s%s: skipped (%s)\n",
158                                run->prefix, i->name, i->skip);
159                 /* Mark our dependencies to skip. */
160                 dgraph_traverse_from(&i->node, skip_test,
161                                      "dependency timed out");
162                 score->pass = true;
163                 score->total = 0;
164                 goto out;
165         }
166
167         assert(score->score <= score->total);
168         if (!score->pass
169             || (score->score < score->total && verbose)
170             || verbose > 1) {
171                 printf("%s%s (%s): %s",
172                        run->prefix, i->name, i->key,
173                        score->pass ? "PASS" : "FAIL");
174                 if (score->total > 1)
175                         printf(" (+%u/%u)", score->score, score->total);
176                 printf("\n");
177         }
178
179         if (!score->pass || verbose) {
180                 if (score->error) {
181                         printf("%s%s", score->error,
182                                strends(score->error, "\n") ? "" : "\n");
183                 }
184         }
185         if (!run->noninteractive && score->score < score->total && i->handle)
186                 i->handle(run->m, score);
187
188         if (!score->pass) {
189                 /* Skip any tests which depend on this one. */
190                 dgraph_traverse_from(&i->node, skip_test, "dependency failed");
191         }
192
193 out:
194         run->score += score->score;
195         run->total += score->total;
196
197         /* FIXME: Free score. */
198         run->pass &= score->pass;
199         i->done = true;
200
201         if (!score->pass && i->compulsory) {
202                 warnx("%s%s failed", run->prefix, i->name);
203                 run->score = 0;
204                 return false;
205         }
206         return true;
207 }
208
209 static void register_test(struct ccanlint *test)
210 {
211         if (!strmap_add(&tests, test->key, test))
212                 err(1, "Adding test %s", test->key);
213         test->options = tal_arr(NULL, char *, 1);
214         test->options[0] = NULL;
215         dgraph_init_node(&test->node);
216 }
217
218 static bool get_test(const char *member UNNEEDED, struct ccanlint *i,
219                      struct ccanlint **ret)
220 {
221         if (tlist_empty(&i->node.edge[DGRAPH_TO])) {
222                 *ret = i;
223                 return false;
224         }
225         return true;
226 }
227
228 /**
229  * get_next_test - retrieves the next test to be processed
230  **/
231 static inline struct ccanlint *get_next_test(void)
232 {
233         struct ccanlint *i = NULL;
234
235         strmap_iterate(&tests, get_test, &i);
236         if (i)
237                 return i;
238
239         if (strmap_empty(&tests))
240                 return NULL;
241
242         errx(1, "Can't make process; test dependency cycle");
243 }
244
245 static struct ccanlint *find_test(const char *key)
246 {
247         return strmap_get(&tests, key);
248 }
249
250 bool is_excluded(const char *name)
251 {
252         return find_test(name)->skip != NULL;
253 }
254
255 static bool init_deps(const char *member UNNEEDED,
256                       struct ccanlint *c, void *unused UNNEEDED)
257 {
258         char **deps = tal_strsplit(NULL, c->needs, " ", STR_EMPTY_OK);
259         unsigned int i;
260
261         for (i = 0; deps[i]; i++) {
262                 struct ccanlint *dep;
263
264                 dep = find_test(deps[i]);
265                 if (!dep)
266                         errx(1, "BUG: unknown dep '%s' for %s",
267                              deps[i], c->key);
268                 dgraph_add_edge(&dep->node, &c->node);
269         }
270         tal_free(deps);
271         return true;
272 }
273
274 static bool check_names(const char *member UNNEEDED, struct ccanlint *c,
275                         ccanlint_map_t *names)
276 {
277         if (!strmap_add(names, c->name, c))
278                 err(1, "Duplicate name %s", c->name);
279         return true;
280 }
281
282 static void init_tests(void)
283 {
284         ccanlint_map_t names;
285         struct ccanlint **table;
286         size_t i, num;
287
288         strmap_init(&tests);
289
290         table = autodata_get(ccanlint_tests, &num);
291         for (i = 0; i < num; i++)
292                 register_test(table[i]);
293         autodata_free(table);
294
295         strmap_iterate(&tests, init_deps, NULL);
296
297         /* Check for duplicate names. */
298         strmap_init(&names);
299         strmap_iterate(&tests, check_names, &names);
300         strmap_clear(&names);
301 }
302
303 static bool reset_test(struct dgraph_node *node, void *unused UNNEEDED)
304 {
305         struct ccanlint *c = container_of(node, struct ccanlint, node);
306         c->skip = NULL;
307         c->done = false;
308         return true;
309 }
310
311 static void reset_tests(struct dgraph_node *all)
312 {
313         dgraph_traverse_to(all, reset_test, NULL);
314 }
315
316 static bool print_deps(const char *member UNNEEDED,
317                        struct ccanlint *c, void *unused UNNEEDED)
318 {
319         if (!tlist_empty(&c->node.edge[DGRAPH_FROM])) {
320                 struct dgraph_edge *e;
321
322                 printf("These depend on %s:\n", c->key);
323                 dgraph_for_each_edge(&c->node, e, DGRAPH_FROM) {
324                         struct ccanlint *to = container_of(e->n[DGRAPH_TO],
325                                                            struct ccanlint,
326                                                            node);
327                         printf("\t%s\n", to->key);
328                 }
329         }
330         return true;
331 }
332
333 static void print_test_depends(void)
334 {
335         printf("Tests:\n");
336
337         strmap_iterate(&tests, print_deps, NULL);
338 }
339
340
341 static void show_tmpdir(const char *dir)
342 {
343         printf("You can find ccanlint working files in '%s'\n", dir);
344 }
345
346 static char *keep_tests(void *unused UNNEEDED)
347 {
348         keep_results = true;
349
350         /* Don't automatically destroy temporary dir. */
351         keep_temp_dir();
352         tal_add_destructor(temp_dir(), show_tmpdir);
353         return NULL;
354 }
355
356 static bool remove_test(struct dgraph_node *node, const char *why)
357 {
358         struct ccanlint *c = container_of(node, struct ccanlint, node);
359         c->skip = why;
360         dgraph_clear_node(node);
361         return true;
362 }
363
364 static char *exclude_test(const char *testname, void *unused UNNEEDED)
365 {
366         struct ccanlint *i = find_test(testname);
367         if (!i)
368                 return tal_fmt(NULL, "No test %s to --exclude", testname);
369
370         /* Remove this, and everything which depends on it. */
371         dgraph_traverse_from(&i->node, remove_test, "excluded on command line");
372         remove_test(&i->node, "excluded on command line");
373         return NULL;
374 }
375
376 static void skip_test_and_deps(struct ccanlint *c, const char *why)
377 {
378         /* Skip this, and everything which depends on us. */
379         dgraph_traverse_from(&c->node, skip_test, why);
380         skip_test(&c->node, why);
381 }
382
383 static char *list_tests(void *arg UNNEEDED)
384 {
385         struct ccanlint *i;
386
387         printf("Tests:\n");
388         /* This makes them print in topological order. */
389         while ((i = get_next_test()) != NULL) {
390                 printf("   %-25s %s\n", i->key, i->name);
391                 dgraph_clear_node(&i->node);
392                 strmap_del(&tests, i->key, NULL);
393         }
394         exit(0);
395 }
396
397 static bool draw_test(const char *member UNNEEDED,
398                       struct ccanlint *c, const char *style)
399 {
400         /*
401          * todo: escape labels in case ccanlint test keys have
402          *       characters interpreted as GraphViz syntax.
403          */
404         printf("\t\"%p\" [label=\"%s\"%s]\n", c, c->key, style);
405         return true;
406 }
407
408 static void test_dgraph_vertices(const char *style)
409 {
410         strmap_iterate(&tests, draw_test, style);
411 }
412
413 static bool draw_edges(const char *member UNNEEDED,
414                        struct ccanlint *c, void *unused UNNEEDED)
415 {
416         struct dgraph_edge *e;
417
418         dgraph_for_each_edge(&c->node, e, DGRAPH_FROM) {
419                 struct ccanlint *to = container_of(e->n[DGRAPH_TO],
420                                                    struct ccanlint,
421                                                    node);
422                 printf("\t\"%p\" -> \"%p\"\n", c->name, to->name);
423         }
424         return true;
425 }
426
427 static void test_dgraph_edges(void)
428 {
429         strmap_iterate(&tests, draw_edges, NULL);
430 }
431
432 static char *test_dependency_graph(void *arg UNNEEDED)
433 {
434         puts("digraph G {");
435
436         test_dgraph_vertices("");
437         test_dgraph_edges();
438
439         puts("}");
440
441         exit(0);
442 }
443
444 static void add_options(struct ccanlint *test, char **options,
445                         unsigned int num_options)
446 {
447         unsigned int num;
448
449         if (!test->options)
450                 num = 0;
451         else
452                 /* -1, because last one is NULL. */
453                 num = tal_count(test->options) - 1;
454
455         tal_resize(&test->options, num + num_options + 1);
456         memcpy(&test->options[num], options, (num_options + 1)*sizeof(char *));
457 }
458
459 void add_info_options(struct manifest *m)
460 {
461         unsigned int i;
462         char **info_options = get_ccanlint(m, m->dir, get_or_compile_info);
463
464         for (i = 0; info_options[i]; i++) {
465                 char **words = tal_strsplit(m, info_options[i], " \t",
466                                             STR_NO_EMPTY);
467                 struct ccanlint *test;
468
469                 if (!words[0])
470                         continue;
471
472                 test = find_test(words[0]);
473                 if (!test) {
474                         warnx("%s: unknown ccanlint test '%s'",
475                               m->info_file->fullname, words[0]);
476                         continue;
477                 }
478
479                 if (!words[1]) {
480                         warnx("%s: no argument to test '%s'",
481                               m->info_file->fullname, words[0]);
482                         continue;
483                 }
484
485                 /* Known failure? */
486                 if (strcasecmp(words[1], "FAIL") == 0) {
487                         if (!targeting)
488                                 skip_test_and_deps(test,
489                                                    "excluded in _info"
490                                                    " file");
491                 } else {
492                         if (!test->takes_options)
493                                 warnx("%s: %s doesn't take options",
494                                       m->info_file->fullname, words[0]);
495                         add_options(test, words+1, tal_count(words)-1);
496                 }
497         }
498 }
499
500 /* If options are of form "filename:<option>" they only apply to that file */
501 char **per_file_options(const struct ccanlint *test, struct ccan_file *f)
502 {
503         char **ret;
504         unsigned int i, j = 0;
505
506         /* Fast path. */
507         if (!test->options[0])
508                 return test->options;
509
510         ret = tal_arr(f, char *, tal_count(test->options));
511         for (i = 0; test->options[i]; i++) {
512                 char *optname;
513
514                 if (!test->options[i] || !strchr(test->options[i], ':')) {
515                         optname = test->options[i];
516                 } else if (strstarts(test->options[i], f->name)
517                            && test->options[i][strlen(f->name)] == ':') {
518                         optname = test->options[i] + strlen(f->name) + 1;
519                 } else
520                         continue;
521
522                 /* FAIL overrides anything else. */
523                 if (streq(optname, "FAIL")) {
524                         ret = tal_arr(f, char *, 2);
525                         ret[0] = (char *)"FAIL";
526                         ret[1] = NULL;
527                         return ret;
528                 }
529                 ret[j++] = optname;
530         }
531         ret[j] = NULL;
532
533         /* Shrink it to size so tal_array_length() works as expected. */
534         tal_resize(&ret, j + 1);
535         return ret;
536 }
537
538 static char *opt_set_const_charp(const char *arg, const char **p)
539 {
540         return opt_set_charp(arg, cast_const2(char **, p));
541 }
542
543 static char *opt_set_target(const char *arg, struct dgraph_node *all)
544 {
545         struct ccanlint *t = find_test(arg);
546         if (!t)
547                 return tal_fmt(NULL, "unknown --target %s", arg);
548
549         targeting = true;
550         dgraph_add_edge(&t->node, all);
551         return NULL;
552 }
553
554 static bool run_tests(struct dgraph_node *all,
555                       bool summary,
556                       bool deps_fail_ignore,
557                       struct manifest *m,
558                       const char *prefix)
559 {
560         struct run_info run;
561         const char *comment = "";
562
563         run.noninteractive = summary;
564         run.m = m;
565         run.prefix = prefix;
566         run.score = run.total = 0;
567         run.pass = true;
568
569         non_ccan_deps = build_failed = false;
570
571         dgraph_traverse_to(all, run_test, &run);
572
573         /* We can completely fail if we're missing external stuff: ignore */
574         if (deps_fail_ignore && non_ccan_deps && build_failed) {
575                 comment = " (missing non-ccan dependencies?)";
576                 run.pass = true;
577         } else if (!run.pass) {
578                 comment = " FAIL!";
579         }
580         printf("%sTotal score: %u/%u%s\n",
581                prefix, run.score, run.total, comment);
582
583         return run.pass;
584 }
585
586 static bool add_to_all(const char *member UNNEEDED, struct ccanlint *c,
587                        struct dgraph_node *all)
588 {
589         /* If we're excluded on cmdline, don't add. */
590         if (!c->skip)
591                 dgraph_add_edge(&c->node, all);
592         return true;
593 }
594
595 static bool test_module(struct dgraph_node *all,
596                         const char *dir, const char *prefix, bool summary,
597                         bool deps_fail_ignore)
598 {
599         struct manifest *m = get_manifest(autofree(), dir);
600         char *testlink = path_join(NULL, temp_dir(), "test");
601
602         /* Create a symlink from temp dir back to src dir's
603          * test directory. */
604         unlink(testlink);
605         if (symlink(path_join(m, dir, "test"), testlink) != 0)
606                 err(1, "Creating test symlink in %s", temp_dir());
607
608         return run_tests(all, summary, deps_fail_ignore, m, prefix);
609 }
610
611 int main(int argc, char *argv[])
612 {
613         bool summary = false, pass = true, deps_fail_ignore = false;
614         int i;
615         const char *prefix = "";
616         char *cwd = path_cwd(NULL), *dir;
617         struct ccanlint top;  /* cannot_run may try to set ->can_run */
618         const char *override_compiler = NULL, *override_cflags = NULL;
619         
620         /* Empty graph node to which we attach everything else. */
621         dgraph_init_node(&top.node);
622
623         opt_register_early_noarg("--verbose|-v", opt_inc_intval, &verbose,
624                                  "verbose mode (up to -vvvv)");
625         opt_register_noarg("-n|--safe-mode", opt_set_bool, &safe_mode,
626                          "do not compile anything");
627         opt_register_noarg("-l|--list-tests", list_tests, NULL,
628                          "list tests ccanlint performs (and exit)");
629         opt_register_noarg("--test-dep-graph", test_dependency_graph, NULL,
630                          "print dependency graph of tests in Graphviz .dot format");
631         opt_register_noarg("-k|--keep", keep_tests, NULL,
632                          "do not delete ccanlint working files");
633         opt_register_noarg("--summary|-s", opt_set_bool, &summary,
634                            "give results only, no interactive correction");
635         opt_register_arg("-x|--exclude <testname>", exclude_test, NULL, NULL,
636                          "exclude <testname> (can be used multiple times)");
637         opt_register_arg("--timeout <milleseconds>", opt_set_uintval,
638                          NULL, &timeout,
639                          "ignore (terminate) tests that are slower than this");
640         opt_register_arg("-t|--target <testname>", opt_set_target, NULL,
641                          &top.node,
642                          "only run one test (and its prerequisites)");
643         opt_register_arg("--compiler <compiler>", opt_set_const_charp,
644                          NULL, &override_compiler, "set the compiler");
645         opt_register_arg("--cflags <flags>", opt_set_const_charp,
646                          NULL, &override_cflags, "set the compiler flags");
647         opt_register_noarg("--deps-fail-ignore", opt_set_bool,
648                            &deps_fail_ignore,
649                            "don't fail if external dependencies are missing");
650         opt_register_noarg("-?|-h|--help", opt_usage_and_exit,
651                            "\nA program for checking and guiding development"
652                            " of CCAN modules.",
653                            "This usage message");
654
655         /* Do verbose before anything else... */
656         opt_early_parse(argc, argv, opt_log_stderr_exit);
657
658         /* We move into temporary directory, so gcov dumps its files there. */
659         if (chdir(temp_dir()) != 0)
660                 err(1, "Error changing to %s temporary dir", temp_dir());
661
662         init_tests();
663
664         if (verbose >= 3) {
665                 compile_verbose = true;
666                 print_test_depends();
667         }
668         if (verbose >= 4)
669                 tools_verbose = true;
670
671         opt_parse(&argc, argv, opt_log_stderr_exit);
672
673         if (!targeting)
674                 strmap_iterate(&tests, add_to_all, &top.node);
675
676         if (argc == 1)
677                 dir = cwd;
678         else
679                 dir = path_simplify(NULL, take(path_join(NULL, cwd, argv[1])));
680
681         ccan_dir = find_ccan_dir(dir);
682         if (!ccan_dir)
683                 errx(1, "Cannot find ccan/ base directory in %s", dir);
684         config_header = read_config_header(ccan_dir, verbose > 1);
685
686         /* We do this after read_config_header has set compiler & cflags */
687         if (override_cflags)
688                 cflags = override_cflags;
689         if (override_compiler)
690                 compiler = override_compiler;
691
692         if (argc == 1)
693                 pass = test_module(&top.node, cwd, "",
694                                    summary, deps_fail_ignore);
695         else {
696                 for (i = 1; i < argc; i++) {
697                         dir = path_canon(NULL,
698                                          take(path_join(NULL, cwd, argv[i])));
699                         if (!dir)
700                                 err(1, "Cannot get canonical name of '%s'",
701                                     argv[i]);
702
703                         prefix = path_join(NULL, ccan_dir, "ccan");
704                         prefix = path_rel(NULL, take(prefix), dir);
705                         prefix = tal_strcat(NULL, take(prefix), ": ");
706
707                         pass &= test_module(&top.node, dir, prefix, summary,
708                                             deps_fail_ignore);
709                         reset_tests(&top.node);
710                 }
711         }
712         return pass ? 0 : 1;
713 }