summaryrefslogtreecommitdiffstats
path: root/usr.sbin/jail/jail.c
blob: dded501658d58977fe3698dfacfd8b4170080668 (plain)
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
/*
 * ----------------------------------------------------------------------------
 * "THE BEER-WARE LICENSE" (Revision 42):
 * <phk@FreeBSD.ORG> wrote this file.  As long as you retain this notice you
 * can do whatever you want with this stuff. If we meet some day, and you think
 * this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp
 * ----------------------------------------------------------------------------
 * 
 * $FreeBSD$
 * 
 */

#include <sys/types.h>
#include <sys/jail.h>

#include <netinet/in.h>
#include <arpa/inet.h>

#include <err.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

int
main(int argc, char **argv)
{
	struct jail j;
	int i;
	struct in_addr in;

	if (argc < 5) 
		errx(1, "usage: %s path hostname ip-number command ...\n",
		    argv[0]);
	i = chdir(argv[1]);
	if (i)
		err(1, "chdir %s", argv[1]);
	memset(&j, 0, sizeof(j));
	j.version = 0;
	j.path = argv[1];
	j.hostname = argv[2];
	i = inet_aton(argv[3], &in);
	if (!i)
		errx(1, "Couldn't make sense of ip-number\n");
	j.ip_number = ntohl(in.s_addr);
	i = jail(&j);
	if (i)
		err(1, "Imprisonment failed");
	i = execv(argv[4], argv + 4);
	if (i)
		err(1, "execv(%s)", argv[4]);
	exit (0);
}
OpenPOWER on IntegriCloud