123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445 |
- /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to
- * deal in the Software without restriction, including without limitation the
- * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
- * sell copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- * IN THE SOFTWARE.
- */
- #include "runner-unix.h"
- #include "runner.h"
- #include <limits.h>
- #include <stdint.h> /* uintptr_t */
- #include <errno.h>
- #include <unistd.h> /* usleep */
- #include <string.h> /* strdup */
- #include <stdio.h>
- #include <stdlib.h>
- #include <sys/types.h>
- #include <signal.h>
- #include <sys/wait.h>
- #include <sys/stat.h>
- #include <assert.h>
- #include <sys/select.h>
- #include <sys/time.h>
- #include <pthread.h>
- extern char** environ;
- static void closefd(int fd) {
- if (close(fd) == 0 || errno == EINTR || errno == EINPROGRESS)
- return;
- perror("close");
- abort();
- }
- void notify_parent_process(void) {
- char* arg;
- int fd;
- arg = getenv("UV_TEST_RUNNER_FD");
- if (arg == NULL)
- return;
- fd = atoi(arg);
- assert(fd > STDERR_FILENO);
- unsetenv("UV_TEST_RUNNER_FD");
- closefd(fd);
- }
- /* Do platform-specific initialization. */
- void platform_init(int argc, char **argv) {
- /* Disable stdio output buffering. */
- setvbuf(stdout, NULL, _IONBF, 0);
- setvbuf(stderr, NULL, _IONBF, 0);
- signal(SIGPIPE, SIG_IGN);
- snprintf(executable_path, sizeof(executable_path), "%s", argv[0]);
- }
- /* Invoke "argv[0] test-name [test-part]". Store process info in *p. Make sure
- * that all stdio output of the processes is buffered up. */
- int process_start(char* name, char* part, process_info_t* p, int is_helper) {
- FILE* stdout_file;
- int stdout_fd;
- const char* arg;
- char* args[16];
- int pipefd[2];
- char fdstr[8];
- ssize_t rc;
- int n;
- pid_t pid;
- arg = getenv("UV_USE_VALGRIND");
- n = 0;
- /* Disable valgrind for helpers, it complains about helpers leaking memory.
- * They're killed after the test and as such never get a chance to clean up.
- */
- if (is_helper == 0 && arg != NULL && atoi(arg) != 0) {
- args[n++] = "valgrind";
- args[n++] = "--quiet";
- args[n++] = "--leak-check=full";
- args[n++] = "--show-reachable=yes";
- args[n++] = "--error-exitcode=125";
- }
- args[n++] = executable_path;
- args[n++] = name;
- args[n++] = part;
- args[n++] = NULL;
- stdout_file = tmpfile();
- stdout_fd = fileno(stdout_file);
- if (!stdout_file) {
- perror("tmpfile");
- return -1;
- }
- if (is_helper) {
- if (pipe(pipefd)) {
- perror("pipe");
- return -1;
- }
- snprintf(fdstr, sizeof(fdstr), "%d", pipefd[1]);
- if (setenv("UV_TEST_RUNNER_FD", fdstr, /* overwrite */ 1)) {
- perror("setenv");
- return -1;
- }
- }
- p->terminated = 0;
- p->status = 0;
- pid = fork();
- if (pid < 0) {
- perror("fork");
- return -1;
- }
- if (pid == 0) {
- /* child */
- if (is_helper)
- closefd(pipefd[0]);
- dup2(stdout_fd, STDOUT_FILENO);
- dup2(stdout_fd, STDERR_FILENO);
- execve(args[0], args, environ);
- perror("execve()");
- _exit(127);
- }
- /* parent */
- p->pid = pid;
- p->name = strdup(name);
- p->stdout_file = stdout_file;
- if (!is_helper)
- return 0;
- closefd(pipefd[1]);
- unsetenv("UV_TEST_RUNNER_FD");
- do
- rc = read(pipefd[0], &n, 1);
- while (rc == -1 && errno == EINTR);
- closefd(pipefd[0]);
- if (rc == -1) {
- perror("read");
- return -1;
- }
- if (rc > 0) {
- fprintf(stderr, "EOF expected but got data.\n");
- return -1;
- }
- return 0;
- }
- typedef struct {
- int pipe[2];
- process_info_t* vec;
- int n;
- } dowait_args;
- /* This function is run inside a pthread. We do this so that we can possibly
- * timeout.
- */
- static void* dowait(void* data) {
- dowait_args* args = data;
- int i, r;
- process_info_t* p;
- for (i = 0; i < args->n; i++) {
- p = (process_info_t*)(args->vec + i * sizeof(process_info_t));
- if (p->terminated) continue;
- r = waitpid(p->pid, &p->status, 0);
- if (r < 0) {
- perror("waitpid");
- return NULL;
- }
- p->terminated = 1;
- }
- if (args->pipe[1] >= 0) {
- /* Write a character to the main thread to notify it about this. */
- ssize_t r;
- do
- r = write(args->pipe[1], "", 1);
- while (r == -1 && errno == EINTR);
- }
- return NULL;
- }
- /* Wait for all `n` processes in `vec` to terminate. Time out after `timeout`
- * msec, or never if timeout == -1. Return 0 if all processes are terminated,
- * -1 on error, -2 on timeout. */
- int process_wait(process_info_t* vec, int n, int timeout) {
- int i;
- int r;
- int retval;
- process_info_t* p;
- dowait_args args;
- pthread_t tid;
- pthread_attr_t attr;
- unsigned int elapsed_ms;
- struct timeval timebase;
- struct timeval tv;
- fd_set fds;
- args.vec = vec;
- args.n = n;
- args.pipe[0] = -1;
- args.pipe[1] = -1;
- /* The simple case is where there is no timeout */
- if (timeout == -1) {
- dowait(&args);
- return 0;
- }
- /* Hard case. Do the wait with a timeout.
- *
- * Assumption: we are the only ones making this call right now. Otherwise
- * we'd need to lock vec.
- */
- r = pipe((int*)&(args.pipe));
- if (r) {
- perror("pipe()");
- return -1;
- }
- if (pthread_attr_init(&attr))
- abort();
- #if defined(__MVS__)
- if (pthread_attr_setstacksize(&attr, 1024 * 1024))
- #else
- if (pthread_attr_setstacksize(&attr, 256 * 1024))
- #endif
- abort();
- r = pthread_create(&tid, &attr, dowait, &args);
- if (pthread_attr_destroy(&attr))
- abort();
- if (r) {
- perror("pthread_create()");
- retval = -1;
- goto terminate;
- }
- if (gettimeofday(&timebase, NULL))
- abort();
- tv = timebase;
- for (;;) {
- /* Check that gettimeofday() doesn't jump back in time. */
- assert(tv.tv_sec > timebase.tv_sec ||
- (tv.tv_sec == timebase.tv_sec && tv.tv_usec >= timebase.tv_usec));
- elapsed_ms =
- (tv.tv_sec - timebase.tv_sec) * 1000 +
- (tv.tv_usec / 1000) -
- (timebase.tv_usec / 1000);
- r = 0; /* Timeout. */
- if (elapsed_ms >= (unsigned) timeout)
- break;
- tv.tv_sec = (timeout - elapsed_ms) / 1000;
- tv.tv_usec = (timeout - elapsed_ms) % 1000 * 1000;
- FD_ZERO(&fds);
- FD_SET(args.pipe[0], &fds);
- r = select(args.pipe[0] + 1, &fds, NULL, NULL, &tv);
- if (!(r == -1 && errno == EINTR))
- break;
- if (gettimeofday(&tv, NULL))
- abort();
- }
- if (r == -1) {
- perror("select()");
- retval = -1;
- } else if (r) {
- /* The thread completed successfully. */
- retval = 0;
- } else {
- /* Timeout. Kill all the children. */
- for (i = 0; i < n; i++) {
- p = (process_info_t*)(vec + i * sizeof(process_info_t));
- kill(p->pid, SIGTERM);
- }
- retval = -2;
- }
- if (pthread_join(tid, NULL))
- abort();
- terminate:
- close(args.pipe[0]);
- close(args.pipe[1]);
- return retval;
- }
- /* Returns the number of bytes in the stdio output buffer for process `p`. */
- long int process_output_size(process_info_t *p) {
- /* Size of the p->stdout_file */
- struct stat buf;
- int r = fstat(fileno(p->stdout_file), &buf);
- if (r < 0) {
- return -1;
- }
- return (long)buf.st_size;
- }
- /* Copy the contents of the stdio output buffer to `fd`. */
- int process_copy_output(process_info_t* p, FILE* stream) {
- char buf[1024];
- int r;
- r = fseek(p->stdout_file, 0, SEEK_SET);
- if (r < 0) {
- perror("fseek");
- return -1;
- }
- /* TODO: what if the line is longer than buf */
- while ((r = fread(buf, 1, sizeof(buf), p->stdout_file)) != 0)
- print_lines(buf, r, stream);
- if (ferror(p->stdout_file)) {
- perror("read");
- return -1;
- }
- return 0;
- }
- /* Copy the last line of the stdio output buffer to `buffer` */
- int process_read_last_line(process_info_t *p,
- char* buffer,
- size_t buffer_len) {
- char* ptr;
- int r = fseek(p->stdout_file, 0, SEEK_SET);
- if (r < 0) {
- perror("fseek");
- return -1;
- }
- buffer[0] = '\0';
- while (fgets(buffer, buffer_len, p->stdout_file) != NULL) {
- for (ptr = buffer; *ptr && *ptr != '\r' && *ptr != '\n'; ptr++)
- ;
- *ptr = '\0';
- }
- if (ferror(p->stdout_file)) {
- perror("read");
- buffer[0] = '\0';
- return -1;
- }
- return 0;
- }
- /* Return the name that was specified when `p` was started by process_start */
- char* process_get_name(process_info_t *p) {
- return p->name;
- }
- /* Terminate process `p`. */
- int process_terminate(process_info_t *p) {
- return kill(p->pid, SIGTERM);
- }
- /* Return the exit code of process p. On error, return -1. */
- int process_reap(process_info_t *p) {
- if (WIFEXITED(p->status)) {
- return WEXITSTATUS(p->status);
- } else {
- return p->status; /* ? */
- }
- }
- /* Clean up after terminating process `p` (e.g. free the output buffer etc.). */
- void process_cleanup(process_info_t *p) {
- fclose(p->stdout_file);
- free(p->name);
- }
- /* Move the console cursor one line up and back to the first column. */
- void rewind_cursor(void) {
- #if defined(__MVS__)
- fprintf(stderr, "\047[2K\r");
- #else
- fprintf(stderr, "\033[2K\r");
- #endif
- }
|