File: jailer.pl

package info (click to toggle)
jailer 0.4-8
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 364 kB
  • ctags: 6
  • sloc: sh: 2,595; perl: 207; makefile: 48
file content (269 lines) | stat: -rwxr-xr-x 6,581 bytes parent folder | download | duplicates (3)
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
#!/usr/bin/perl
#
# Copyright (c) 2001 BalaBit IT Ltd.
#
# 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., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# $Id: jailer.pl,v 1.13 2001/08/10 13:46:08 marci Exp $
#
# Simple perl script to generate and maintain chrooted enviroments(jails).

use strict;

sub get_config {
	my ($conffile) = @_;
	my %co;
	my @jails;
	my @config;
	my $block = 0;
	my $block_id;
	my $lineno = 0;
	my %gen = {};

	open(F,"<$conffile") || die "No config file by the name $conffile\n";
	while (<F>) {
		chomp;
		if (/^#/) {
			next;
		}
		elsif (!$block && /<([\w]+)>/) {
			$block = 1;
			$block_id = $1;
			%co = {};
			$co{"jail"} = $block_id, if($block_id ne "general");
		}
		elsif ($block && /<\/?([\w]+)>/) {
			push(@config, {%co}), if($block_id ne "general");
			%gen = %co, if($block_id eq "general");
			$block = 0;
			$block_id = '';
		}
		elsif ($block) {
			# process a line

			if (/^Root:\s*(.+)/i) {
				$co{"root"} = $1;
			} 
			elsif (/^Debs:\s*(.+)/i) {
				$co{"debs"} = $1;
			}
			elsif (/^Junk:\s*(.+)/i) {
				$co{"junk"} = $1;
			}
			elsif (/^Junk-Debs:\s*(.+)/i) {
				$co{"junk-debs"} = $1;
			}
			elsif (/^Extra:\s*(.+)/i) {
				$co{"extra"} = $1;
			}
			elsif (/^Links:\s*(.+)/i) {
				$co{"links"} = $1;
			}
			elsif (/^Conf:\s*(.+)/i) {
				$co{"conf"} = $1;
			}
		}
		elsif (!/\s*/) {
			print "junk at line $lineno\n";
			exit 1;
		}
		$lineno++;
	}
	close(F);

	if (%gen) {
		foreach (@config) {
			my $key;
			#Adding general rules
			if ($_->{"jail"} ne "general") {
				foreach $key (keys %gen) {
					$_->{$key} .= " " . $gen{$key};
				}
			}
		}
	}
	return (@config);
}

sub get_deps {
        my (@debs) = @_;
        my %deps;
        my ($br, $i, @b);
        undef $/;
        open(F, "</var/lib/dpkg/available") || die "Unable to open: /var/lib/dpkg/available\n";
        my $available = <F>;
        close(F);
        foreach (@debs) {
                s/\+/\\\+/g;
                s/\./\\\./g;
                if ($available =~ m/(Package: $_\n(.+\n)+)/) {
                        my $tmp = $1;
                        if ($tmp =~ /Depends/g) {
                                $tmp =~ /Depends: (.*)/;
                                my @b = split(", ", $1);
                                foreach $br (@b) {
                                        if ($br =~ /\|/g) {
                                                foreach $i (split(' \| ', $br)) {
                                                        $i =~ /^([a-z\d\-\+\.]+).*$/;
                                                        $deps{"$1"} = 1;
                                                }
                                        } else {
                                                $br =~ /^([a-z\d\-\+\.]+).*$/;
                                                $deps{"$1"} = 1;
                                        }
                                }
                        }
                }
        }
        return (keys %deps);
}

sub get_all_deps {
	my (%debs) = @_;
	my $num;

	while ((keys %debs) > $num) {
		$num = keys %debs;
		foreach (get_deps(keys %debs)) {
			$debs{"$_"} = 1;
		}
	}
	return (%debs);
}

sub get_files {
	my (%debs) = @_;
	my $deb;
	my %files;
	foreach $deb (keys %debs) {
		print "Using deb: $deb\n";
		open(F,"</var/lib/dpkg/info/$deb.list") || warn "Unable to open: /var/lib/dpkg/info/$deb.list!\n";
		foreach (split("\n",<F>)) {
			$files{"$_"} = 1;
		}
		close(F);
	}
	return (%files);
}

### START ###

my @config;
my $conf;

#Prase arguments and the config file
if ($#ARGV ge 0) {
	print "Using config file: $ARGV[0]\n";
	@config = get_config($ARGV[0]);
} else {
	print STDERR "No config file is given!\n";
	print "Usage:\njailer.pl conffile [jail]: Config file, jail to (re)build\n";
	exit 1;
}

#Do the jails one by one
foreach $conf (@config) {
	if (length($ARGV[1])) {
		next, if ($conf->{"jail"} ne $ARGV[1]);
	}

	my $junk;
	my $tmp;
	my %files;
	my %debs;

	print "Generating \"$conf->{jail}\" jail in \"$conf->{root}\" with \"$conf->{debs}\" debs.\n";

	#Get the base debs
	foreach $tmp (split(" ", $conf->{"debs"})) {
		$debs{"$tmp"} = 1;
	}

	#Get all the needed debs
	%debs = get_all_deps(%debs);
	#Throw out the junk
	foreach $tmp (split(" ", $conf->{"junk-debs"})) {
		delete $debs{"$tmp"};
	}

	#Get the files
	%files = get_files(%debs);

	#Throw out the junk
	foreach $junk (split(" ", $conf->{"junk"})) {
		print "Droping junk: $junk\n";
		$junk =~ s/\//\\\//g;
		$junk =~ s/\+/\\\+/g;
		$junk =~ s/\./\\\./g;
		$junk =~ s/\*/\.\*/g;
		foreach (keys %files) {
			delete $files{$_}, if (/^$junk$/);
		}
	}

	#Prepare extra plus conf-files
	my @conffile;
	my @extrafile;
	foreach (split(" ", $conf->{"extra"})) {
		my $tmp_dir;
		chop($tmp_dir = `dirname '$_'`);
		my @tmpfile = `find $tmp_dir -path '$_'`;
		push (@extrafile, $tmp_dir, @tmpfile);
	}
	foreach (split(" ", $conf->{"conf"})) {
		my $tmp_dir;
		chop($tmp_dir = `dirname '$_'`);
		my @tmpfile = `find $tmp_dir -path '$_'`;
		push (@conffile, $tmp_dir, @tmpfile);
	}

	#Start cpio in pass mode
	open(CPIO, "|cpio -pd --quiet $conf->{root} 2> /dev/null");

	#Add the normal files
	foreach (sort(keys %files)) {
		print CPIO "$_\n";
	}
	#Add the extra files
	foreach (@extrafile) {
		print CPIO "$_\n";
		print "Adding extra: $_\n";
	}
	#Add conf files
	foreach (@conffile) {
		print CPIO "$_\n", if ( ! -e "$conf->{root}" . "$_");
		print "Adding config files: $_\n";
	}
	close(CPIO);

	#Generate links
	foreach (split(" ", $conf->{"links"})) {
		my ($base, $link) = split("<=>", $_);
		if (-l ($conf->{"root"} . $link)) {
			unlink ($conf->{"root"} . $link);
			print "Deleting old link: $link\n";
			symlink($base, $conf->{"root"} . $link);
			print "Creating link $link to $base\n";
		} elsif (-e ($conf->{"root"} . $link)) {
			print "$link can't be deleted!\n";
		} else {
			symlink($base, $conf->{"root"} . $link);
			print "Creating link $link to $base\n";
		}
	}
	
	#Finished with this jail
	print "Finished!\n";
}