2000-03-10 14:53:23 +03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2012-10-01 22:46:43 +04:00
|
|
|
# $NetBSD: named,v 1.23 2012/10/01 18:46:43 christos Exp $
|
2000-03-10 14:53:23 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: named
|
2009-08-03 21:45:48 +04:00
|
|
|
# REQUIRE: NETWORKING mountcritremote syslogd
|
2002-03-22 07:33:57 +03:00
|
|
|
# BEFORE: DAEMON
|
2002-06-18 18:35:38 +04:00
|
|
|
# KEYWORD: chrootdir
|
2000-03-10 14:53:23 +03:00
|
|
|
|
2004-08-13 22:08:03 +04:00
|
|
|
$_rc_subr_loaded . /etc/rc.subr
|
2000-03-10 14:53:23 +03:00
|
|
|
|
|
|
|
name="named"
|
2000-09-19 17:04:38 +04:00
|
|
|
rcvar=$name
|
2000-03-10 14:53:23 +03:00
|
|
|
command="/usr/sbin/${name}"
|
2009-04-22 22:27:03 +04:00
|
|
|
pidfile="/var/run/${name}/${name}.pid"
|
2001-03-12 19:08:38 +03:00
|
|
|
start_precmd="named_precmd"
|
2000-05-13 07:46:42 +04:00
|
|
|
extra_commands="reload"
|
2001-03-12 19:08:38 +03:00
|
|
|
required_dirs="$named_chrootdir" # if it is set, it must exist
|
|
|
|
|
2005-07-18 01:28:45 +04:00
|
|
|
named_migrate()
|
|
|
|
{
|
2012-10-01 22:46:43 +04:00
|
|
|
local src="$1"
|
|
|
|
local dst="$2$1"
|
2005-07-18 01:28:45 +04:00
|
|
|
echo "Migrating $src to $dst"
|
|
|
|
(
|
|
|
|
diff=false
|
2012-10-01 22:46:43 +04:00
|
|
|
cd "$src"
|
|
|
|
mkdir -p "$dst"
|
2005-07-18 01:28:45 +04:00
|
|
|
for f in $(find . -type f)
|
|
|
|
do
|
2012-10-01 22:46:43 +04:00
|
|
|
f="${f##./}"
|
|
|
|
case "$f" in
|
2005-07-18 01:28:45 +04:00
|
|
|
*/*)
|
2012-10-01 22:46:43 +04:00
|
|
|
ds="$(dirname "$f")"
|
|
|
|
dd="$dst/$ds"
|
|
|
|
mkdir -p "$dd"
|
|
|
|
chmod "$(stat -f "%p" "$ds" |
|
|
|
|
sed -e 's/.*\([0-7][0-7][0-7][0-7]\)$/\1/g')" "$dd"
|
|
|
|
chown "$(stat -f %u:%g "$ds")" "$dd"
|
2005-07-18 01:28:45 +04:00
|
|
|
;;
|
2012-10-01 22:46:43 +04:00
|
|
|
*)
|
2005-07-18 01:28:45 +04:00
|
|
|
;;
|
|
|
|
esac
|
2005-11-30 00:07:25 +03:00
|
|
|
if [ -r "$dst/$f" ]
|
2005-07-18 01:28:45 +04:00
|
|
|
then
|
2012-10-01 22:46:43 +04:00
|
|
|
if ! cmp "$f" "$dst/$f"; then
|
2005-07-18 01:28:45 +04:00
|
|
|
diff=true
|
|
|
|
fi
|
|
|
|
else
|
2012-10-01 22:46:43 +04:00
|
|
|
cp -p "$f" "$dst/$f"
|
2005-07-18 01:28:45 +04:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
if $diff; then
|
|
|
|
echo "Cannot complete migration because files are different"
|
|
|
|
echo "Run 'diff -r $src $dst' resolve the differences"
|
|
|
|
else
|
2012-10-01 22:46:43 +04:00
|
|
|
rm -fr "$src"
|
|
|
|
ln -s "$dst" "$src"
|
2005-07-18 01:28:45 +04:00
|
|
|
fi
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2001-03-12 19:08:38 +03:00
|
|
|
named_precmd()
|
|
|
|
{
|
|
|
|
if [ -z "$named_chrootdir" ]; then
|
2012-10-01 22:46:43 +04:00
|
|
|
if [ ! -d "/etc/namedb/keys" ]; then
|
|
|
|
mkdir -m 775 "/etc/namedb/keys"
|
|
|
|
chown named:named "/etc/namedb/keys"
|
|
|
|
fi
|
2001-03-12 19:08:38 +03:00
|
|
|
return 0;
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If running in a chroot cage, ensure that the appropriate files
|
|
|
|
# exist inside the cage, as well as helper symlinks into the cage
|
|
|
|
# from outside.
|
|
|
|
#
|
|
|
|
# As this is called after the is_running and required_dir checks
|
|
|
|
# are made in run_rc_command(), we can safely assume ${named_chrootdir}
|
|
|
|
# exists and named isn't running at this point (unless forcestart
|
|
|
|
# is used).
|
|
|
|
#
|
2003-12-18 21:30:18 +03:00
|
|
|
case "$($command -v)" in
|
|
|
|
BIND*) # 9 no group, named-xfer, or ndc
|
|
|
|
;;
|
|
|
|
named*) # 4 and 8
|
|
|
|
rc_flags="-g named $rc_flags"
|
|
|
|
if [ ! -x "${named_chrootdir}/usr/libexec/named-xfer" -o \
|
|
|
|
"${named_chrootdir}/usr/libexec/named-xfer" -ot \
|
|
|
|
/usr/libexec/named-xfer ]; then
|
|
|
|
rm -f "${named_chrootdir}/usr/libexec/named-xfer"
|
|
|
|
cp -p /usr/libexec/named-xfer \
|
|
|
|
"${named_chrootdir}/usr/libexec"
|
|
|
|
fi
|
|
|
|
ln -fs "${named_chrootdir}/var/run/ndc" /var/run/ndc
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2012-10-01 22:46:43 +04:00
|
|
|
for i in null random; do
|
2004-05-21 19:40:22 +04:00
|
|
|
if [ ! -c "${named_chrootdir}/dev/$i" ]; then
|
|
|
|
rm -f "${named_chrootdir}/dev/$i"
|
|
|
|
(cd /dev &&
|
|
|
|
/bin/pax -rw -pe "$i" "${named_chrootdir}/dev")
|
|
|
|
fi
|
|
|
|
done
|
2001-03-12 19:08:38 +03:00
|
|
|
|
2005-07-18 01:28:45 +04:00
|
|
|
if [ ! -h /etc/namedb ]; then
|
|
|
|
named_migrate /etc/namedb ${named_chrootdir}
|
2005-07-17 20:30:57 +04:00
|
|
|
fi
|
2012-10-01 22:46:43 +04:00
|
|
|
|
|
|
|
for i in named.conf rndc.key; do
|
|
|
|
if [ \( -r "/etc/$i" \) -a \( ! -h "/etc/$i" \) -a \
|
|
|
|
\( ! -r "${named_chrootdir}/etc/$i" \) ]; then
|
|
|
|
mv "/etc/$i" "${named_chrootdir}/etc/$i"
|
|
|
|
ln -s "${named_chrootdir}/etc/$i" "/etc/$i"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2005-07-17 20:30:57 +04:00
|
|
|
if [ \( ! -r ${named_chrootdir}/etc/named.conf \) -a \
|
|
|
|
\( -r ${named_chrootdir}/etc/namedb/named.conf \) ]; then
|
|
|
|
ln -s namedb/named.conf ${named_chrootdir}/etc
|
|
|
|
fi
|
|
|
|
|
2001-03-12 19:08:38 +03:00
|
|
|
if [ -f /etc/localtime ]; then
|
|
|
|
cmp -s /etc/localtime "${named_chrootdir}/etc/localtime" || \
|
|
|
|
cp -p /etc/localtime "${named_chrootdir}/etc/localtime"
|
|
|
|
fi
|
2009-04-25 19:46:19 +04:00
|
|
|
|
|
|
|
local piddir="$(dirname "${pidfile}")"
|
|
|
|
mkdir -p "${named_chrootdir}${piddir}" "${piddir}"
|
|
|
|
chmod 755 "${named_chrootdir}${piddir}" "${piddir}"
|
|
|
|
chown named:named "${named_chrootdir}${piddir}" "${piddir}"
|
|
|
|
ln -fs "${named_chrootdir}${pidfile}" "${pidfile}"
|
2001-03-12 19:08:38 +03:00
|
|
|
|
|
|
|
# Change run_rc_commands()'s internal copy of $named_flags
|
|
|
|
#
|
2003-12-18 21:30:18 +03:00
|
|
|
rc_flags="-u named -t ${named_chrootdir} $rc_flags"
|
2001-03-12 19:08:38 +03:00
|
|
|
}
|
2000-03-10 14:53:23 +03:00
|
|
|
|
2000-05-13 12:45:06 +04:00
|
|
|
load_rc_config $name
|
2000-04-30 17:23:04 +04:00
|
|
|
run_rc_command "$1"
|