3 # $FreeBSD: src/etc/rc.d/jail,v 1.23.2.9 2007/01/11 18:16:58 simon Exp $
4 # $DragonFly: src/etc/rc.d/jail,v 1.5 2007/08/10 21:01:05 swildner Exp $
15 start_cmd
="jail_start"
19 # Initialize the various jail variables for jail _j.
26 warn
"init_variables: you must specify a jail"
30 eval _rootdir
=\"\
$jail_${_j}_rootdir
\"
31 _fdescdir
="${_rootdir}/dev/fd"
32 _procdir
="${_rootdir}/proc"
33 eval _hostname
=\"\
$jail_${_j}_hostname
\"
34 eval _ip
=\"\
$jail_${_j}_ip
\"
35 eval _interface
=\"\
${jail_${_j}_interface:-${jail_interface}}\"
36 eval _exec
=\"\
$jail_${_j}_exec
\"
37 eval _exec_start
=\"\
${jail_${_j}_exec_start:-${jail_exec_start}}\"
38 eval _exec_stop
=\"\
${jail_${_j}_exec_stop:-${jail_exec_stop}}\"
39 if [ -n "${_exec}" ]; then
40 # simple/backward-compatible execution
41 _exec_start
="${_exec}"
45 if [ -z "${_exec_start}" ]; then
46 _exec_start
="/bin/sh /etc/rc"
47 if [ -z "${_exec_stop}" ]; then
48 _exec_stop
="/bin/sh /etc/rc.shutdown"
53 eval _fdesc
=\"\
${jail_${_j}_fdesc_enable:-${jail_fdesc_enable}}\"
54 [ -z "${_fdesc}" ] && _fdesc
="NO"
55 eval _procfs
=\"\
${jail_${_j}_procfs_enable:-${jail_procfs_enable}}\"
56 [ -z "${_procfs}" ] && _procfs
="NO"
58 eval _mount
=\"\
${jail_${_j}_mount_enable:-${jail_mount_enable}}\"
59 [ -z "${_mount}" ] && _mount
="NO"
60 # "/etc/fstab.${_j}" will be used for {,u}mount(8) if none is specified.
61 eval _fstab
=\"\
${jail_${_j}_fstab:-${jail_fstab}}\"
62 [ -z "${_fstab}" ] && _fstab
="/etc/fstab.${_j}"
63 eval _flags
=\"\
${jail_${_j}_flags:-${jail_flags}}\"
64 [ -z "${_flags}" ] && _flags
="-l -U root"
65 eval _consolelog
=\"\
${jail_${_j}_consolelog:-${jail_consolelog}}\"
66 [ -z "${_consolelog}" ] && _consolelog
="/var/log/jail_${_j}_console.log"
70 debug
"$_j fdesc enable: $_fdesc"
71 debug
"$_j procfs enable: $_procfs"
72 debug
"$_j mount enable: $_mount"
73 debug
"$_j hostname: $_hostname"
75 debug
"$_j interface: $_interface"
76 debug
"$_j root: $_rootdir"
77 debug
"$_j fdescdir: $_fdescdir"
78 debug
"$_j procdir: $_procdir"
79 debug
"$_j fstab: $_fstab"
80 debug
"$_j exec start: $_exec_start"
81 debug
"$_j exec stop: $_exec_stop"
82 debug
"$_j flags: $_flags"
83 debug
"$_j consolelog: $_consolelog"
85 if [ -z "${_hostname}" ]; then
86 err
3 "$name: No hostname has been defined for ${_j}"
88 if [ -z "${_rootdir}" ]; then
89 err
3 "$name: No root directory has been defined for ${_j}"
91 if [ -z "${_ip}" ]; then
92 err
3 "$name: No IP address has been defined for ${_j}"
97 # set_sysctl rc_knob mib msg
98 # If the mib sysctl is set according to what rc_knob
99 # specifies, this function does nothing. However if
100 # rc_knob is set differently than mib, then the mib
101 # is set accordingly and msg is displayed followed by
102 # an '=" sign and the word 'YES' or 'NO'.
110 _current
=`${SYSCTL} -n $_mib 2>/dev/null`
111 if checkyesno
$_knob ; then
112 if [ "$_current" -ne 1 ]; then
113 echo -n " ${_msg}=YES"
114 ${SYSCTL_W} 1>/dev
/null
${_mib}=1
117 if [ "$_current" -ne 0 ]; then
118 echo -n " ${_msg}=NO"
119 ${SYSCTL_W} 1>/dev
/null
${_mib}=0
124 # is_current_mountpoint()
125 # Is the directory mount point for a currently mounted file
128 is_current_mountpoint
()
134 _dir
=`echo $_dir | sed -Ee 's#//+#/#g' -e 's#/$##'`
135 [ ! -d "${_dir}" ] && return 1
136 _dir2
=`df ${_dir} | tail +2 | awk '{ print $6 }'`
137 [ "${_dir}" = "${_dir2}" ]
141 # is_symlinked_mountpoint()
142 # Is a mount point, or any of its parent directories, a symlink?
144 is_symlinked_mountpoint
()
150 [ -L "$_dir" ] && return 0
151 [ "$_dir" = "/" ] && return 1
152 is_symlinked_mountpoint
`dirname $_dir`
157 # Try to unmount a mount point without being vulnerable to
166 if is_current_mountpoint
${_dir}; then
167 umount
-f ${_dir} >/dev
/null
2>&1
169 debug
"Nothing mounted on ${_dir} - not unmounting"
175 # This function unmounts certain special filesystems in the
176 # currently selected jail. The caller must call the init_variables()
177 # routine before calling this one.
181 local _device _mountpt _rest
183 if checkyesno _fdesc
; then
184 if [ -d "${_fdescdir}" ] ; then
185 secure_umount
${_fdescdir}
188 if checkyesno _procfs
; then
189 if [ -d "${_procdir}" ] ; then
190 secure_umount
${_procdir}
193 if checkyesno _mount
; then
194 [ -f "${_fstab}" ] || warn
"${_fstab} does not exist"
195 tail -r ${_fstab} |
while read _device _mountpt _rest
; do
196 case ":${_device}" in
201 secure_umount
${_mountpt}
207 # Mount file systems from a per jail fstab while trying to
208 # secure against symlink attacks at the mount points.
210 # If we are certain we cannot secure against symlink attacks we
211 # do not mount all of the file systems (since we cannot just not
212 # mount the file system with the problematic mount point).
214 # The caller must call the init_variables() routine before
219 local _device _mountpt _rest
221 while read _device _mountpt _rest
; do
222 case ":${_device}" in
227 if is_symlinked_mountpoint
${_mountpt}; then
228 warn
"${_mountpt} has symlink as parent - not mounting from ${_fstab}"
232 mount
-a -F "${_fstab}"
237 echo -n 'Configuring jails:'
238 set_sysctl jail_set_hostname_allow jail.set_hostname_allowed \
240 set_sysctl jail_socket_unixiproute_only \
241 jail.socket_unixiproute_only unixiproute_only
242 set_sysctl jail_sysvipc_allow jail.sysvipc_allowed \
246 echo -n 'Starting jails:'
247 _tmp_dir
=`mktemp -d /tmp/jail.XXXXXXXX` || \
248 err
3 "$name: Can't create temp dir, exiting..."
249 for _jail
in ${jail_list}
251 init_variables
$_jail
252 if [ -f /var
/run
/jail_
${_jail}.id
]; then
253 echo -n " [${_hostname} already running (/var/run/jail_${_jail}.id exists)]"
256 if [ -n "${_interface}" ]; then
257 ifconfig
${_interface} alias ${_ip} netmask
255.255.255.255
259 if checkyesno _mount
; then
260 info
"Mounting fstab for jail ${_jail} (${_fstab})"
261 if [ ! -f "${_fstab}" ]; then
262 err
3 "$name: ${_fstab} does not exist"
266 if checkyesno _fdesc
; then
267 if is_symlinked_mountpoint
${_fdescdir}; then
268 warn
"${_fdescdir} has symlink as parent, not mounting"
270 info
"Mounting fdesc on ${_fdescdir}"
271 mount
-t fdesc fdesc
"${_fdescdir}"
274 if checkyesno _procfs
; then
275 if is_symlinked_mountpoint
${_procdir}; then
276 warn
"${_procdir} has symlink as parent, not mounting"
278 info
"Mounting procfs onto ${_procdir}"
279 if [ -d "${_procdir}" ] ; then
280 mount
-t procfs proc
"${_procdir}"
284 _tmp_jail
=${_tmp_dir}/jail.$$
285 eval jail
${_flags} -i ${_rootdir} ${_hostname} \
286 ${_ip} ${_exec_start} > ${_tmp_jail} 2>&1
287 if [ "$?" -eq 0 ] ; then
288 echo -n " $_hostname"
289 _jail_id
=$
(head -1 ${_tmp_jail})
290 tail +2 ${_tmp_jail} >${_consolelog}
291 echo ${_jail_id} > /var
/run
/jail_
${_jail}.id
294 if [ -n "${_interface}" ]; then
295 ifconfig
${_interface} -alias ${_ip}
297 echo " cannot start jail \"${_jail}\": "
308 echo -n 'Stopping jails:'
309 for _jail
in ${jail_list}
311 if [ -f "/var/run/jail_${_jail}.id" ]; then
312 _jail_id
=$
(cat /var
/run
/jail_
${_jail}.id
)
313 if [ ! -z "${_jail_id}" ]; then
314 init_variables
$_jail
315 if [ -n "${_exec_stop}" ]; then
316 eval env
-i /usr
/sbin
/jexec
${_jail_id} ${_exec_stop} \
317 >> ${_consolelog} 2>&1
319 killall
-j ${_jail_id} -TERM > /dev
/null
2>&1
321 killall
-j ${_jail_id} -KILL > /dev
/null
2>&1
323 echo -n " $_hostname"
325 if [ -n "${_interface}" ]; then
326 ifconfig
${_interface} -alias ${_ip}
328 rm /var
/run
/jail_
${_jail}.id
330 echo " cannot stop jail ${_jail}. No jail id in /var/run"
338 if [ $# -gt 0 ]; then
344 run_rc_command
"${cmd}"