aboutsummaryrefslogtreecommitdiffstats
path: root/src/tools/rvtest.c
blob: 95050e67101607312b64b9a3aa500f52a93b8b7e (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/*
 * Copyright (C) 2014, 2015 netblue30 (netblue30@yahoo.com)
 *
 * This file is part of firejail project
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

// run it as "rvtest 2>/dev/null | grep TESTING"

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#include <signal.h>

#define MAXBUF 1024	// line buffer
#define TIMEOUT 30	// timeout time in seconds

static pid_t pid;
static void catch_alarm(int sig) {
	kill(pid, SIGTERM);
	sleep(1);
	kill(pid, SIGKILL);
	printf("TESTING ERROR: SIGALARM triggered\n");
	exit(1);
}

static void usage(void) {
	printf("Usage: rvtest testfile\n");
	printf("\n");
	printf("Testfile format:\n");
	printf("\tretval command\n");
	printf("\n");
	printf("Testfile example:\n");
	printf("\n");
	printf("0 firejail --net=none exit\n");
	printf("1 firejail --private=/etc sleep 1\n");
	printf("1 firejail --blablabla\n");
}

int main(int argc, char **argv) {
	if (argc != 2) {
		fprintf(stderr, "Error: test file missing\n");
		usage();
		return 1;
	}

	signal (SIGALRM, catch_alarm);

	// open test file
	char *fname = argv[1];
	FILE *fp = fopen(fname, "r");
	
	// read test file
	char buf[MAXBUF];
	int line = 0;
	while (fgets(buf, MAXBUF, fp)) {
		line++;
		// skip blanks
		char *start = buf;
		while (*start == ' ' || *start == '\t')
			start++;
		// remove '\n'
		char *ptr = strchr(start, '\n');
		if (ptr)
			*ptr ='\0';
		if (*start == '\0')
			continue;
		
		// skip comments
		if (*start == '#')
			continue;
		ptr = strchr(start, '#');
		if (ptr)
			*ptr = '\0';
					
		// extract exit status		
		int status;
		int rv = sscanf(start, "%d\n", &status);
		if (rv != 1) {
			fprintf(stderr, "Error: invalid line %d in %s\n", line, fname);
			exit(1);
		}
		
		// extract command
		char *cmd = strchr(start, ' ');
		if (!cmd) {
			fprintf(stderr, "Error: invalid line %d in %s\n", line, fname);
			exit(1);
		}

		// execute command
		printf("TESTING %s\n", cmd);
		fflush(0);
		pid = fork();
		if (pid == -1) {
			perror("fork");
			exit(1);
		}

		// child
		if (pid == 0) {
			char *earg[50];
			earg[0] = "/bin/bash";
			earg[1] = "-c";
			earg[2] = cmd;
			earg[3] = NULL;
			execvp(earg[0], earg);
		}
		// parent
		else {
			int exit_status;
			
			alarm(TIMEOUT);
			pid = waitpid(pid, &exit_status, 0);
			if (pid == -1) {
				perror("waitpid");
				exit(1);
			}
			
			if (WEXITSTATUS(exit_status) != status)
				printf("ERROR TESTING: %s\n", cmd);
		}
		
		fflush(0);
	}
	fclose(fp);
	
	return 0;
}