]> git.ozlabs.org Git - ccan/commitdiff
ccanlint: timeout, and implement -t option for quicker tests.
authorRusty Russell <rusty@rustcorp.com.au>
Fri, 9 Apr 2010 03:51:26 +0000 (13:21 +0930)
committerRusty Russell <rusty@rustcorp.com.au>
Fri, 9 Apr 2010 03:51:26 +0000 (13:21 +0930)
21 files changed:
tools/ccanlint/ccanlint.c
tools/ccanlint/ccanlint.h
tools/ccanlint/compulsory_tests/build.c
tools/ccanlint/compulsory_tests/build_objs.c
tools/ccanlint/compulsory_tests/check_build.c
tools/ccanlint/compulsory_tests/check_depends_built.c
tools/ccanlint/compulsory_tests/check_depends_exist.c
tools/ccanlint/compulsory_tests/check_includes_build.c
tools/ccanlint/compulsory_tests/compile_test_helpers.c
tools/ccanlint/compulsory_tests/compile_tests.c
tools/ccanlint/compulsory_tests/has_info.c
tools/ccanlint/compulsory_tests/has_main_header.c
tools/ccanlint/compulsory_tests/has_tests.c
tools/ccanlint/compulsory_tests/run_tests.c
tools/ccanlint/tests/has_info_documentation.c
tools/ccanlint/tests/idempotent.c
tools/ccanlint/tests/run_tests_valgrind.c
tools/ccanlint/tests/trailing_whitespace.c
tools/compile.c
tools/tools.c
tools/tools.h

index ee8c8b78634aab7e5eb3dfb9fb5374b07014e88d..a65c64106d2799fbfb7ba5deb8fffccf2acd7307 100644 (file)
@@ -37,16 +37,18 @@ static LIST_HEAD(normal_tests);
 static LIST_HEAD(finished_tests);
 bool safe_mode = false;
 static struct btree *exclude;
 static LIST_HEAD(finished_tests);
 bool safe_mode = false;
 static struct btree *exclude;
+static bool fastmode = false;
 
 static void usage(const char *name)
 {
 
 static void usage(const char *name)
 {
-       fprintf(stderr, "Usage: %s [-s] [-n] [-v] [-d <dirname>]\n"
+       fprintf(stderr, "Usage: %s [-s] [-n] [-v] [-t] [-d <dirname>]\n"
                "   -v: verbose mode\n"
                "   -s: simply give one line summary\n"
                "   -d: use this directory instead of the current one\n"
                "   -n: do not compile anything\n"
                "   -l: list tests ccanlint performs\n"
                "   -v: verbose mode\n"
                "   -s: simply give one line summary\n"
                "   -d: use this directory instead of the current one\n"
                "   -n: do not compile anything\n"
                "   -l: list tests ccanlint performs\n"
-               "   -x: exclude tests (e.g. -x trailing_whitespace,valgrind)\n",
+               "   -x: exclude tests (e.g. -x trailing_whitespace,valgrind)\n"
+               "   -t: ignore (terminate) tests that are slow\n",
                name);
        exit(1);
 }
                name);
        exit(1);
 }
@@ -100,7 +102,7 @@ static bool run_test(struct ccanlint *i,
                     struct manifest *m)
 {
        void *result;
                     struct manifest *m)
 {
        void *result;
-       unsigned int this_score;
+       unsigned int this_score, timeleft;
        const struct dependent *d;
        const char *skip;
 
        const struct dependent *d;
        const char *skip;
 
@@ -109,7 +111,9 @@ static bool run_test(struct ccanlint *i,
                d->dependent->num_depends--;
 
        skip = should_skip(m, i);
                d->dependent->num_depends--;
 
        skip = should_skip(m, i);
+
        if (skip) {
        if (skip) {
+       skip:
                if (verbose)
                        printf("  %s: skipped (%s)\n", i->name, skip);
 
                if (verbose)
                        printf("  %s: skipped (%s)\n", i->name, skip);
 
@@ -126,7 +130,12 @@ static bool run_test(struct ccanlint *i,
                return true;
        }
 
                return true;
        }
 
-       result = i->check(m);
+       timeleft = fastmode ? 1000 : default_timeout_ms;
+       result = i->check(m, &timeleft);
+       if (fastmode && timeleft == 0) {
+               skip = "timeout";
+               goto skip;
+       }
        if (!result) {
                if (verbose) {
                        printf("  %s: OK", i->name);
        if (!result) {
                if (verbose) {
                        printf("  %s: OK", i->name);
@@ -311,7 +320,7 @@ int main(int argc, char *argv[])
 
        /* I'd love to use long options, but that's not standard. */
        /* FIXME: getopt_long ccan package? */
 
        /* I'd love to use long options, but that's not standard. */
        /* FIXME: getopt_long ccan package? */
-       while ((c = getopt(argc, argv, "sd:vnlx:")) != -1) {
+       while ((c = getopt(argc, argv, "sd:vnlx:t")) != -1) {
                switch (c) {
                case 'd':
                        dir = optarg;
                switch (c) {
                case 'd':
                        dir = optarg;
@@ -336,6 +345,9 @@ int main(int argc, char *argv[])
                        for (i = 0; exclude_strs[i]; i++)
                                btree_insert(exclude, exclude_strs[i]);
                } break;
                        for (i = 0; exclude_strs[i]; i++)
                                btree_insert(exclude, exclude_strs[i]);
                } break;
+               case 't':
+                       fastmode = true;
+                       break;
                default:
                        usage(argv[0]);
                }
                default:
                        usage(argv[0]);
                }
index cf277393d8c05db444c1733bfd5add2a728d4d4f..2ddbf37ae89b199819ead3a62fa6d34cf91aa0e0 100644 (file)
@@ -52,8 +52,9 @@ struct ccanlint {
        /* Can we run this test?  Return string explaining why, if not. */
        const char *(*can_run)(struct manifest *m);
 
        /* Can we run this test?  Return string explaining why, if not. */
        const char *(*can_run)(struct manifest *m);
 
-       /* If this returns non-NULL, it means the check failed. */
-       void *(*check)(struct manifest *m);
+       /* If this returns non-NULL, it means the check failed.
+        * If timeleft is set to 0, means it timed out. */
+       void *(*check)(struct manifest *m, unsigned int *timeleft);
 
        /* The non-NULL return from check is passed to one of these: */
 
 
        /* The non-NULL return from check is passed to one of these: */
 
index efc0b27a44f80bf022ae8df6c3670da33a1db058..ec9e6de173aa6a8f040981f73dd051d1bbb7cf23 100644 (file)
@@ -33,7 +33,7 @@ static char *obj_list(const struct manifest *m)
        return list;
 }
 
        return list;
 }
 
-static void *do_build(struct manifest *m)
+static void *do_build(struct manifest *m, unsigned int *timeleft)
 {
        char *filename, *err;
 
 {
        char *filename, *err;
 
index 0768bc6fb70ec685b93e07430e076e582b6648b2..619c600807d2b7a29d463c0f83b3ca59864db409 100644 (file)
@@ -21,7 +21,7 @@ static const char *can_build(struct manifest *m)
        return NULL;
 }
 
        return NULL;
 }
 
-static void *check_objs_build(struct manifest *m)
+static void *check_objs_build(struct manifest *m, unsigned int *timeleft)
 {
        char *report = NULL;
        struct ccan_file *i;
 {
        char *report = NULL;
        struct ccan_file *i;
index 820cc9fec2eb53edc30ff6b97f892e2090bab66c..2098f0d2a488212f2079e40ffc45d4ca48efe49e 100644 (file)
@@ -44,7 +44,7 @@ static char *lib_list(const struct manifest *m)
        return ret;
 }
 
        return ret;
 }
 
-static void *check_use_build(struct manifest *m)
+static void *check_use_build(struct manifest *m, unsigned int *timeleft)
 {
        char *contents;
        char *tmpfile, *err;
 {
        char *contents;
        char *tmpfile, *err;
index a3e42f267e1bb076d5a889d6870501d9ba41ad53..c261315ddf47a243d425c2317d5b740134a0712c 100644 (file)
@@ -35,7 +35,7 @@ static bool expect_obj_file(const char *dir)
        return has_c_files;
 }
 
        return has_c_files;
 }
 
-static void *check_depends_built(struct manifest *m)
+static void *check_depends_built(struct manifest *m, unsigned int *timeleft)
 {
        struct ccan_file *i;
        struct stat st;
 {
        struct ccan_file *i;
        struct stat st;
index aef2a24baeb3e0a57a759cb757da79e9bd55a9f0..bb6067edcd8bb16169d73e46c4d542e3c9f9fbeb 100644 (file)
@@ -33,7 +33,7 @@ static char *add_dep(char *sofar, struct manifest *m, const char *dep)
        return sofar;
 }
 
        return sofar;
 }
 
-static void *check_depends_exist(struct manifest *m)
+static void *check_depends_exist(struct manifest *m, unsigned int *timeleft)
 {
        unsigned int i;
        char *report = NULL;
 {
        unsigned int i;
        char *report = NULL;
index 2962765a716f60f67861eca11d952ff987a8fa26..f50e54300940f7a54526ba0e7c9084de0ea05e96 100644 (file)
@@ -22,7 +22,7 @@ static const char *can_build(struct manifest *m)
        return NULL;
 }
 
        return NULL;
 }
 
-static void *check_includes_build(struct manifest *m)
+static void *check_includes_build(struct manifest *m, unsigned int *timeleft)
 {
        char *contents;
        char *tmpfile, *err;
 {
        char *contents;
        char *tmpfile, *err;
index 127d972b183cba95113c25f0c924e57309306d83..d229183a57b84558f8957a20e0a04621b4b8d7e4 100644 (file)
@@ -32,7 +32,7 @@ static char *compile(struct manifest *m, struct ccan_file *cfile)
        return err;
 }
 
        return err;
 }
 
-static void *do_compile_test_helpers(struct manifest *m)
+static void *do_compile_test_helpers(struct manifest *m, unsigned int *timeleft)
 {
        char *cmdout = NULL;
        struct ccan_file *i;
 {
        char *cmdout = NULL;
        struct ccan_file *i;
index 89ba29b9b57c8b76083cab49697154ff645002a9..1e184f2d24242201542840e006f4b3f283dc5a2d 100644 (file)
@@ -80,7 +80,7 @@ struct compile_tests_result {
        const char *output;
 };
 
        const char *output;
 };
 
-static void *do_compile_tests(struct manifest *m)
+static void *do_compile_tests(struct manifest *m, unsigned int *timeleft)
 {
        struct list_head *list = talloc(m, struct list_head);
        char *cmdout;
 {
        struct list_head *list = talloc(m, struct list_head);
        char *cmdout;
index 4b6687e45ea196c2e93de17513aa1f54ef37dec9..97cad5940a25374964ce24276a7c4f476122567c 100644 (file)
@@ -11,7 +11,7 @@
 #include <string.h>
 #include <ccan/noerr/noerr.h>
 
 #include <string.h>
 #include <ccan/noerr/noerr.h>
 
-static void *check_has_info(struct manifest *m)
+static void *check_has_info(struct manifest *m, unsigned int *timeleft)
 {
        if (m->info_file)
                return NULL;
 {
        if (m->info_file)
                return NULL;
index c2c823821b3a1e8c6ed65aa41a3c473b23ba3957..dafb41a6e8d71bcf1f6bb5a02a209f6b09b8ce9b 100644 (file)
@@ -12,7 +12,7 @@
 #include <ccan/talloc/talloc.h>
 #include <ccan/noerr/noerr.h>
 
 #include <ccan/talloc/talloc.h>
 #include <ccan/noerr/noerr.h>
 
-static void *check_has_main_header(struct manifest *m)
+static void *check_has_main_header(struct manifest *m, unsigned int *timeleft)
 {
        struct ccan_file *f;
 
 {
        struct ccan_file *f;
 
index 0fa11aaa7505eb12d8cb4d93a2c8c83f09c27272..df34a25561635c9f9352e1ed59e8fbf7015c3779 100644 (file)
@@ -12,7 +12,7 @@
 
 static char test_is_not_dir[] = "test is not a directory";
 
 
 static char test_is_not_dir[] = "test is not a directory";
 
-static void *check_has_tests(struct manifest *m)
+static void *check_has_tests(struct manifest *m, unsigned int *timeleft)
 {
        struct stat st;
        char *test_dir = talloc_asprintf(m, "%s/test", m->dir);
 {
        struct stat st;
        char *test_dir = talloc_asprintf(m, "%s/test", m->dir);
index 581654a176b7f8a1f6403b0fdc000d0368e22c39..52c5fb1041877f2e8daa4613b50bf9a14212c512 100644 (file)
@@ -27,7 +27,7 @@ struct run_tests_result {
        const char *output;
 };
 
        const char *output;
 };
 
-static void *do_run_tests(struct manifest *m)
+static void *do_run_tests(struct manifest *m, unsigned int *timeleft)
 {
        struct list_head *list = talloc(m, struct list_head);
        struct run_tests_result *res;
 {
        struct list_head *list = talloc(m, struct list_head);
        struct run_tests_result *res;
@@ -47,8 +47,7 @@ static void *do_run_tests(struct manifest *m)
 
        list_for_each(&m->run_tests, i, list) {
                run_tests.total_score++;
 
        list_for_each(&m->run_tests, i, list) {
                run_tests.total_score++;
-               /* FIXME: timeout here */
-               cmdout = run_command(m, i->compiled);
+               cmdout = run_command(m, timeleft, i->compiled);
                if (cmdout) {
                        res = talloc(list, struct run_tests_result);
                        res->file = i;
                if (cmdout) {
                        res = talloc(list, struct run_tests_result);
                        res->file = i;
@@ -59,8 +58,7 @@ static void *do_run_tests(struct manifest *m)
 
        list_for_each(&m->api_tests, i, list) {
                run_tests.total_score++;
 
        list_for_each(&m->api_tests, i, list) {
                run_tests.total_score++;
-               /* FIXME: timeout here */
-               cmdout = run_command(m, i->compiled);
+               cmdout = run_command(m, timeleft, i->compiled);
                if (cmdout) {
                        res = talloc(list, struct run_tests_result);
                        res->file = i;
                if (cmdout) {
                        res = talloc(list, struct run_tests_result);
                        res->file = i;
index 4d440e6d7cec650b91d80d86e41fd0477e299f6e..3ca844c8881d8b2c1dca7ee4fe5d860a5856d060 100644 (file)
@@ -22,7 +22,8 @@ struct info_docs
        bool example;
 };
 
        bool example;
 };
 
-static void *check_has_info_documentation(struct manifest *m)
+static void *check_has_info_documentation(struct manifest *m,
+                                         unsigned int *timeleft)
 {
        struct list_head *infodocs = get_ccan_file_docs(m->info_file);
        struct doc_section *d;
 {
        struct list_head *infodocs = get_ccan_file_docs(m->info_file);
        struct doc_section *d;
index 34b455c0a5fd5dd206b58c05a3510181ec6fe1f3..05f4c593b5724f1c8ceffbd8282c5d0ad6cb58a5 100644 (file)
@@ -112,7 +112,7 @@ static char *report_idem(struct ccan_file *f, char *sofar)
        return sofar;
 }
 
        return sofar;
 }
 
-static void *check_idempotent(struct manifest *m)
+static void *check_idempotent(struct manifest *m, unsigned int *timeleft)
 {
        struct ccan_file *f;
        char *report = NULL;
 {
        struct ccan_file *f;
        char *report = NULL;
index 5819b5eba4a5342ce6f93aba4d9941a6d3924ca9..3c6fb81cbcdd9988e9bf00e9c3b89e4a4b44b4a2 100644 (file)
@@ -17,7 +17,8 @@
 /* Note: we already test safe_mode in run_tests.c */
 static const char *can_run_vg(struct manifest *m)
 {
 /* Note: we already test safe_mode in run_tests.c */
 static const char *can_run_vg(struct manifest *m)
 {
-       char *output = run_command(m, "valgrind -q true");
+       unsigned int timeleft = default_timeout_ms;
+       char *output = run_command(m, &timeleft, "valgrind -q true");
 
        if (output)
                return talloc_asprintf(m, "No valgrind support: %s", output);
 
        if (output)
                return talloc_asprintf(m, "No valgrind support: %s", output);
@@ -30,7 +31,7 @@ struct run_tests_result {
        const char *output;
 };
 
        const char *output;
 };
 
-static void *do_run_tests_vg(struct manifest *m)
+static void *do_run_tests_vg(struct manifest *m, unsigned int *timeleft)
 {
        struct list_head *list = talloc(m, struct list_head);
        struct run_tests_result *res;
 {
        struct list_head *list = talloc(m, struct list_head);
        struct run_tests_result *res;
@@ -50,8 +51,8 @@ static void *do_run_tests_vg(struct manifest *m)
 
        list_for_each(&m->run_tests, i, list) {
                run_tests_vg.total_score++;
 
        list_for_each(&m->run_tests, i, list) {
                run_tests_vg.total_score++;
-               /* FIXME: timeout here */
-               cmdout = run_command(m, "valgrind -q %s", i->compiled);
+               cmdout = run_command(m, timeleft,
+                                    "valgrind -q %s", i->compiled);
                if (cmdout) {
                        res = talloc(list, struct run_tests_result);
                        res->file = i;
                if (cmdout) {
                        res = talloc(list, struct run_tests_result);
                        res->file = i;
@@ -62,8 +63,8 @@ static void *do_run_tests_vg(struct manifest *m)
 
        list_for_each(&m->api_tests, i, list) {
                run_tests_vg.total_score++;
 
        list_for_each(&m->api_tests, i, list) {
                run_tests_vg.total_score++;
-               /* FIXME: timeout here */
-               cmdout = run_command(m, "valgrind -q %s", i->compiled);
+               cmdout = run_command(m, timeleft,
+                                    "valgrind -q %s", i->compiled);
                if (cmdout) {
                        res = talloc(list, struct run_tests_result);
                        res->file = i;
                if (cmdout) {
                        res = talloc(list, struct run_tests_result);
                        res->file = i;
index 6b831a727550c400476727e17515403f91ecada3..0fdd0cf847fa9653617bc89df0a40e0abd039282 100644 (file)
@@ -19,7 +19,8 @@ static char *report_on_trailing_whitespace(const char *line)
        return talloc_asprintf(line, "'%s'", line);
 }
 
        return talloc_asprintf(line, "'%s'", line);
 }
 
-static void *check_trailing_whitespace(struct manifest *m)
+static void *check_trailing_whitespace(struct manifest *m,
+                                      unsigned int *timeleft)
 {
        char *report;
 
 {
        char *report;
 
index f166512eb5fe609d13c911af4c72ac0ccd99cf01..089a9ab03c3dc25760b0fdd501f78a89df95ec9f 100644 (file)
@@ -7,7 +7,7 @@ char *link_objects(const void *ctx, const char *objs, char **errmsg)
 {
        char *file = temp_file(ctx, ".o");
 
 {
        char *file = temp_file(ctx, ".o");
 
-       *errmsg = run_command(ctx, "ld -r -o %s %s", file, objs);
+       *errmsg = run_command(ctx, NULL, "ld -r -o %s %s", file, objs);
        if (*errmsg) {
                talloc_free(file);
                return NULL;
        if (*errmsg) {
                talloc_free(file);
                return NULL;
@@ -21,7 +21,7 @@ char *compile_object(const void *ctx, const char *cfile, const char *ccandir,
 {
        char *file = temp_file(ctx, ".o");
 
 {
        char *file = temp_file(ctx, ".o");
 
-       *errmsg = run_command(ctx, "cc " CFLAGS " -I%s -c -o %s %s",
+       *errmsg = run_command(ctx, NULL, "cc " CFLAGS " -I%s -c -o %s %s",
                              ccandir, file, cfile);
        if (*errmsg) {
                talloc_free(file);
                              ccandir, file, cfile);
        if (*errmsg) {
                talloc_free(file);
@@ -38,7 +38,7 @@ char *compile_and_link(const void *ctx, const char *cfile, const char *ccandir,
 {
        char *file = temp_file(ctx, "");
 
 {
        char *file = temp_file(ctx, "");
 
-       *errmsg = run_command(ctx, "cc " CFLAGS " -I%s %s -o %s %s %s %s",
+       *errmsg = run_command(ctx, NULL, "cc " CFLAGS " -I%s %s -o %s %s %s %s",
                              ccandir, extra_cflags, file, cfile, objs, libs);
        if (*errmsg) {
                talloc_free(file);
                              ccandir, extra_cflags, file, cfile, objs, libs);
        if (*errmsg) {
                talloc_free(file);
index 18cc1b84cb299fcc8c5659a05b6c6c05da701a82..6e19f96128b0eb624e2f2d8edaa85e28f24e2c43 100644 (file)
@@ -2,8 +2,11 @@
 #include <ccan/grab_file/grab_file.h>
 #include <ccan/noerr/noerr.h>
 #include <ccan/read_write_all/read_write_all.h>
 #include <ccan/grab_file/grab_file.h>
 #include <ccan/noerr/noerr.h>
 #include <ccan/read_write_all/read_write_all.h>
+#include <ccan/noerr/noerr.h>
 #include <sys/stat.h>
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <sys/types.h>
+#include <sys/time.h>
+#include <sys/wait.h>
 #include <fcntl.h>
 #include <string.h>
 #include <unistd.h>
 #include <fcntl.h>
 #include <string.h>
 #include <unistd.h>
@@ -15,6 +18,9 @@
 static char *tmpdir = NULL;
 static unsigned int count;
 
 static char *tmpdir = NULL;
 static unsigned int count;
 
+/* Ten minutes. */
+const unsigned int default_timeout_ms = 10 * 60 * 1000;
+
 char *talloc_basename(const void *ctx, const char *dir)
 {
        char *p = strrchr(dir, '/');
 char *talloc_basename(const void *ctx, const char *dir)
 {
        char *p = strrchr(dir, '/');
@@ -51,31 +57,106 @@ char *talloc_getcwd(const void *ctx)
        return cwd;
 }
 
        return cwd;
 }
 
+static char *run_with_timeout(const void *ctx,
+                             const char *cmd,
+                             bool *ok,
+                             unsigned *timeout_ms)
+{
+       pid_t pid;
+       int p[2];
+       char *ret;
+       int status, ms;
+       struct timeval start, end;
+
+       *ok = false;
+       if (pipe(p) != 0)
+               return talloc_asprintf(ctx, "Failed to create pipe: %s",
+                                      strerror(errno));
+
+       pid = fork();
+       if (pid == -1) {
+               close_noerr(p[0]);
+               close_noerr(p[1]);
+               return talloc_asprintf(ctx, "Failed to fork: %s",
+                                      strerror(errno));
+               return NULL;
+       }
+
+       if (pid == 0) {
+               struct itimerval itim;
+
+               if (dup2(p[1], STDOUT_FILENO) != STDOUT_FILENO
+                   || dup2(p[1], STDERR_FILENO) != STDERR_FILENO
+                   || close(p[0]) != 0
+                   || close(STDIN_FILENO) != 0
+                   || open("/dev/null", O_RDONLY) != STDIN_FILENO)
+                       exit(128);
+
+               itim.it_interval.tv_sec = itim.it_interval.tv_usec = 0;
+               itim.it_value.tv_sec = *timeout_ms / 1000;
+               itim.it_value.tv_usec = (*timeout_ms % 1000) * 1000;
+               setitimer(ITIMER_REAL, &itim, NULL);
+
+               status = system(cmd);
+               if (WIFEXITED(status))
+                       exit(WEXITSTATUS(status));
+               /* Here's a hint... */
+               exit(128 + WTERMSIG(status));
+       }
+
+       close(p[1]);
+       gettimeofday(&start, NULL);
+       ret = grab_fd(ctx, p[0], NULL);
+       /* This shouldn't fail... */
+       if (waitpid(pid, &status, 0) != pid)
+               err(1, "Failed to wait for child");
+
+       gettimeofday(&end, NULL);
+       if (WIFSIGNALED(status)) {
+               *timeout_ms = 0;
+               return ret;
+       }
+       if (end.tv_usec < start.tv_usec) {
+               end.tv_usec += 1000000;
+               end.tv_sec--;
+       }
+       ms = (end.tv_sec - start.tv_sec) * 1000
+               + (end.tv_usec - start.tv_usec) / 1000;
+       if (ms > *timeout_ms)
+               *timeout_ms = 0;
+       else
+               *timeout_ms -= ms;
+
+       *ok = (WEXITSTATUS(status) == 0);
+       return ret;
+}
+
 /* Returns output if command fails. */
 /* Returns output if command fails. */
-char *run_command(const void *ctx, const char *fmt, ...)
+char *run_command(const void *ctx, unsigned int *time_ms, const char *fmt, ...)
 {
        va_list ap;
        char *cmd, *contents;
 {
        va_list ap;
        char *cmd, *contents;
-       FILE *pipe;
+       bool ok;
+       unsigned int default_time = default_timeout_ms;
+
+       if (!time_ms)
+               time_ms = &default_time;
 
        va_start(ap, fmt);
        cmd = talloc_vasprintf(ctx, fmt, ap);
        va_end(ap);
 
 
        va_start(ap, fmt);
        cmd = talloc_vasprintf(ctx, fmt, ap);
        va_end(ap);
 
-       /* Ensure stderr gets to us too. */
-       cmd = talloc_asprintf_append(cmd, " 2>&1");
-
-       pipe = popen(cmd, "r");
-       if (!pipe)
-               return talloc_asprintf(ctx, "Failed to run '%s'", cmd);
-
-       contents = grab_fd(cmd, fileno(pipe), NULL);
-       if (pclose(pipe) != 0)
-               return talloc_asprintf(ctx, "Running '%s':\n%s",
-                                      cmd, contents);
+       contents = run_with_timeout(ctx, cmd, &ok, time_ms);
+       if (ok) {
+               talloc_free(contents);
+               return NULL;
+       }
 
 
-       talloc_free(cmd);
-       return NULL;
+       if (!contents)
+               err(1, "Problem running child");
+       if (*time_ms == 0)
+               talloc_asprintf_append(contents, "\n== TIMED OUT ==\n");
+       return contents;
 }
 
 static int unlink_all(char *dir)
 }
 
 static int unlink_all(char *dir)
index 34c2f99ff1253fe38a888fe697c79f9bb07fb323..9a4082db63caf35a04b218ee42b4c1812476a58c 100644 (file)
@@ -27,7 +27,7 @@ char **get_libs(const void *ctx, const char *dir,
 char *talloc_basename(const void *ctx, const char *dir);
 char *talloc_dirname(const void *ctx, const char *dir);
 char *talloc_getcwd(const void *ctx);
 char *talloc_basename(const void *ctx, const char *dir);
 char *talloc_dirname(const void *ctx, const char *dir);
 char *talloc_getcwd(const void *ctx);
-char *run_command(const void *ctx, const char *fmt, ...);
+char *run_command(const void *ctx, unsigned int *time_ms, const char *fmt, ...);
 char *temp_file(const void *ctx, const char *extension);
 bool move_file(const char *oldname, const char *newname);
 
 char *temp_file(const void *ctx, const char *extension);
 bool move_file(const char *oldname, const char *newname);
 
@@ -45,4 +45,8 @@ char *compile_object(const void *ctx, const char *cfile, const char *ccandir,
 char *compile_and_link(const void *ctx, const char *cfile, const char *ccandir,
                       const char *objs, const char *extra_cflags,
                       const char *libs, char **errmsg);
 char *compile_and_link(const void *ctx, const char *cfile, const char *ccandir,
                       const char *objs, const char *extra_cflags,
                       const char *libs, char **errmsg);
+
+/* Default wait for run_command.  Should never time out. */
+extern const unsigned int default_timeout_ms;
+
 #endif /* CCAN_TOOLS_H */
 #endif /* CCAN_TOOLS_H */