summaryrefslogtreecommitdiffstats
path: root/core/modules/run-virt/fwtool/main.c
blob: f7d5b1204e8786bbfdc93310c2969ec3418a9d37 (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
#define _GNU_SOURCE
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <unistd.h>

#define MAXARGS 10

int main(int argc, char **argv)
{
	if (argc < 2) {
		puts("Nee\n");
		return 1;
	}
	char* vnargv[MAXARGS] = {
		"bash",
		"/opt/openslx/vmchooser/scripts/set-firewall",
	};
	for (int i = 1; i < MAXARGS - 2; ++i) {
		vnargv[i+1] = argv[i];
		if (argv[i] == 0)
			break;
	}
	vnargv[MAXARGS - 1] = 0;
	char * const * nargv = vnargv;
	char * const nenv[] = {
		"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/opt/openslx/sbin:/opt/openslx/bin",
		"HOME=/root",
		"LC_ALL=C.UTF-8",
		"LANG=C.UTF-8",
		0
	};

	setresuid(0, 0, 0);
	setregid(0, 0);

	execve("/bin/bash", nargv, nenv);
}