summaryrefslogtreecommitdiffstats
path: root/02_exercise/builtins.c
blob: 8b23c7413d8e06f0eacd40a67a9b9a350beeb0bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <wait.h>
#include <stdlib.h>


#include "array.h"
#include "builtins.h"

void handle(int sig) {
    /* Do nothing. */
}


void builtin_wait(process p, bool bind) {
    struct sigaction handler;
    handler.sa_handler = handle;
    sigemptyset(&handler.sa_mask);
    handler.sa_flags = 0;

    pid_t *pids;
    arrayInit(pids);

    size_t i = 1;
    bool error = false;
    while (!error && p.argv[i] != NULL) {
        char *end;
        pid_t tmp = strtol(p.argv[i], &end, 10);
        if (*end != '\0') {
            fprintf(stderr, "Not a valid pid: %s", p.argv[i]);
            error = true;
            break;
        }
        arrayPush(pids) = tmp;
        ++i;
    }

    if (!error) {
        while (!arrayIsEmpty(pids)) {
            int status;
            pid_t current_pid = arrayPop(pids);
            if (bind) {
                printf("Resuming %ld...\n", (long) current_pid);
            } else {
                printf("Waiting for %ld...\n", (long) current_pid);
            }
            // install signal handler without SA_RESTART, so waitpid gets interrupted
            sigaction(SIGINT, &handler, NULL);
            if (waitpid(current_pid, &status, WUNTRACED) < 0) {
                if (EINTR == errno) {
                    // cancelled by ctrl-c
                    if (bind) {
                        kill(current_pid, SIGKILL);
                        waitpid(current_pid, &status, WUNTRACED);
                        printf("Killed [%ld]\n", (long)current_pid);
                    } else {
                        kill(current_pid, SIGCONT);
                    }
                } else {
                    perror("Could not wait for process");
                }
            } else {
		if (bind) {
			printf("[%i] ", WEXITSTATUS(status));
		} else {
                printf("[%i] TERMINATED\n", current_pid);
                if (WIFEXITED(status)) {
                    printf("[%i] exited normally with status: %i\n", current_pid,
                           WEXITSTATUS(status));
                } else if (WIFSTOPPED(status)) {
                    printf("[%i] was stopped by signal: %s\n", current_pid,
                           strsignal(WSTOPSIG(status)));
                } else if (WIFSIGNALED(status)) {
                    printf("[%i] was terminated by signal: %s\n", current_pid,
                           strsignal(WTERMSIG(status)));
                } else {
                    printf("[%i] exited (not sure why), exit status: %i\n", current_pid,
                           WEXITSTATUS(status));
                }
		}
            }
            signal(SIGINT, SIG_DFL);
        }
    }

    arrayRelease(pids);
}