blob: 13c5092d66947c30f0018f45326cf850923fa59b (
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
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
|
#!/bin/sh
# ugly: this variable is set during port install time
ezjail_prefix=EZJAIL_PREFIX
ezjail_jailcfgs=${ezjail_prefix}/etc/ezjail
if [ "0" != "`id -u`" ]; then
echo "Retry as root"; exit 1;
fi
if [ -f ${ezjail_prefix}/etc/ezjail.conf ]; then
. ${ezjail_prefix}/etc/ezjail.conf;
fi
# set defaults
ezjail_jaildir=${ezjail_jaildir:-"/usr/jails"}
ezjail_jailtemplate=${ezjail_jailtemplate:-"$ezjail_jaildir/newjail"}
ezjail_jailbase=${ezjail_jailbase:-"$ezjail_jaildir/basejail"}
ezjail_sourcetree=${ezjail_sourcetree:-"/usr/src"}
ezjail_mount_enable=${ezjail_mount_enable:-"YES"}
ezjail_devfs_enable=${ezjail_devfs_enable:-"YES"}
ezjail_devfs_ruleset=${ezjail_devfs_ruleset:-"devfsrules_jail"}
ezjail_procfs_enable=${ezjail_procfs_enable:-"YES"}
ezjail_fdescfs_enable=${ezjail_fdescfs_enable:-"YES"}
# check for command
if [ -z "$1" ]; then
echo "Usage: `basename $0` [create|delete|list|update] {params}";
exit 1;
fi
case "$1" in
create)
shift
args=`getopt xr: $*`
if [ $? != 0 ]; then
echo 'Usage: ezjail create [-r jailroot] [-x] jailname jailip';
exit 1;
fi
newjail_root=
newjail_softlink=
newjail_fill="YES"
set -- $args
for arg do
case $arg in
-x) newjail_fill="NO"; shift;;
-r) newjail_root="$2"; shift 2;;
--) shift; break;;
esac
done;
newjail_name=$1; newjail_ip=$2; shift 2;
# we need at least a name and an ip for new jail
if [ -z "$newjail_name" -o -z "$newjail_ip" -o $# != 0 ]; then
echo 'Usage: ezjail create [-r jailroot] [-x] jailname jailip'; exit 1;
fi
# relative paths don't make sense in rc.scripts
if [ ${ezjail_jaildir#/} = ${ezjail_jaildir} ]; then
echo Error: Need an absolute path in ezjail_jaildir, it is currently set to: $ezjail_jaildir
exit 1;
fi
# jail names must not have names that irritate file systems,
# excluding dots from this list was done intentionally to
# allow foo.com style directory names, however, the jail
# name will be foo_com in most scripts
newjail_name=`echo $newjail_name | tr /~ __`;
newjail_root=${newjail_root:-"$ezjail_jaildir/$newjail_name"}
newjail_nname=`echo $newjail_name | tr . _`;
# if jail root specified on command line is not absolute,
# make it absolute inside our jail directory
if [ ${newjail_root#/} = ${newjail_root} ]; then
newjail_root=$ezjail_jaildir/$newjail_root
fi
# if jail root specified on command line does not lie
# within our jail directory, we need to create a softlink
if [ ${newjail_root##${ezjail_jaildir}} = $newjail_root ]; then
newjail_softlink=$ezjail_jaildir/`basename $newjail_root`
if [ -e $newjail_softlink -a $newjail_fill = "YES" ]; then
echo Error: an ezjail already exists at $newjail_softlink
exit 1;
fi
fi
# now take a copy of our template jail
if [ $newjail_fill = "YES" ]; then
mkdir -p ${newjail_root} && cd ${ezjail_jailtemplate} \
&& find * | cpio -p -v ${newjail_root}
fi
# if a soft link is necessary, create it now
if [ $newjail_softlink ]; then
ln -s $newjail_root $newjail_softlink
fi
# if the automount feature is not disabled, create an
# fstab entry for new jail
echo $ezjail_jailbase $newjail_root/basejail nullfs ro 0 0 > /etc/fstab.$newjail_nname
# now, where everything seems to have gone right,
# create control file in ezjails config dir
mkdir -p $ezjail_jailcfgs
echo export jail_${newjail_nname}_hostname=\"${newjail_name}\" >> ${ezjail_jailcfgs}/${newjail_nname}
echo export jail_${newjail_nname}_ip=\"${newjail_ip}\" >> ${ezjail_jailcfgs}/${newjail_nname}
echo export jail_${newjail_nname}_rootdir=\"${newjail_root}\" >> ${ezjail_jailcfgs}/${newjail_nname}
echo export jail_${newjail_nname}_exec=\"/bin/sh /etc/rc\" >> ${ezjail_jailcfgs}/${newjail_nname}
echo export jail_${newjail_nname}_mount_enable=\"${ezjail_mount_enable}\" >> ${ezjail_jailcfgs}/${newjail_nname}
echo export jail_${newjail_nname}_devfs_enable=\"${ezjail_devfs_enable}\" >> ${ezjail_jailcfgs}/${newjail_nname}
echo export jail_${newjail_nname}_devfs_ruleset=\"devfsrules_jail\" >> ${ezjail_jailcfgs}/${newjail_nname}
echo export jail_${newjail_nname}_procfs_enable=\"${ezjail_procfs_enable}\" >> ${ezjail_jailcfgs}/${newjail_nname}
echo export jail_${newjail_nname}_fdescfs_enable=\"${ezjail_fdescfs_enable}\" >> ${ezjail_jailcfgs}/${newjail_nname}
;;
delete)
shift
args=`getopt w $*`
if [ $? != 0 ]; then
echo 'Usage: ezjail delete [-w] jailname';
exit 1;
fi
oldjail_wipe="NO"
set -- $args
for arg do
case $arg in
-w) oldjail_wipe="YES"; shift;;
--) shift; break;;
esac
done;
oldjail_name=$1; shift;
# we only need name of jail to vanish
if [ -z "$oldjail_name" -o $# != 0 ]; then
echo 'Usage: ezjail delete [-w] jailname'; exit 1;
fi
# check for existence of jail in our records
if [ ! -f ${ezjail_jailcfgs}/${oldjail_name} ]; then
echo 'Error: Nothing known about jail $oldjail_name'; exit 1
fi
. ${ezjail_jailcfgs}/${oldjail_name}
eval jail_root=\"\$jail_${jail}_root\"
;;
list)
jail_list=`ls $ezjail_jailcfgs`
for jail in $jail_list; do
. ${ezjail_jailcfgs}/$jail
eval jail_ip=\"\$jail_${jail}_ip\"; echo -n "$jail_ip "
eval jail_hostname=\"\$jail_${jail}_hostname\"; echo $jail_hostname
done
;;
update)
shift
args=`getopt is: $*`
if [ $? != 0 ]; then
echo 'Usage: ezjail update [-s sourcetree] [-i]';
exit 1;
fi
updatejail_installaction="world"
set -- $args
for arg do
case $arg in
-i) updatejail_installaction="installworld"; shift;;
-s) ezjail_sourcetree="$2"; shift 2;;
--) shift; break;;
esac
done;
if [ ! -d ${ezjail_sourcetree} ]; then
echo "Cannot find your copy of the FreeBSD source tree in $ezjail_sourcetree."; exit 1;
fi
cd ${ezjail_sourcetree}
rm -rf ${ezjail_jailfull}; mkdir -p ${ezjail_jailfull}
make ${updatejail_installaction} DESTDIR=${ezjail_jailfull}
make distribution DESTDIR=${ezjail_jailfull}
cd ${ezjail_jailfull}
mkdir -p ${ezjail_jailbase}
for a in bin sbin usr/bin usr/include usr/lib usr/libexec usr/sbin usr/src usr/share; do
find ${a} | cpio -d -p -v ${ezjail_jailbase};
chflags -R noschg ${a}; rm -r ${a}; ln -s /basejail/${a} ${a}
done
mkdir basejail
ln -s /basejail/usr/ports usr/ports
if [ -d ${ezjail_jailtemplate} ]; then
rm -rf ${ezjail_jailtemplate}_old
mv ${ezjail_jailtemplate} ${ezjail_jailtemplate}_old
fi
mv ${ezjail_jailfull} ${ezjail_jailtemplate}
;;
*)
echo "Usage: `basename $0` [create|delete|list|update] {params}"; exit;
;;
esac
|