Home | History | Annotate | Line # | Download | only in postinstall
postinstall.in revision 1.1
      1  1.1  christos #!/bin/sh
      2  1.1  christos #
      3  1.1  christos # $NetBSD: postinstall.in,v 1.1 2019/06/14 01:06:33 christos Exp $
      4  1.1  christos #
      5  1.1  christos # Copyright (c) 2002-2015 The NetBSD Foundation, Inc.
      6  1.1  christos # All rights reserved.
      7  1.1  christos #
      8  1.1  christos # This code is derived from software contributed to The NetBSD Foundation
      9  1.1  christos # by Luke Mewburn.
     10  1.1  christos #
     11  1.1  christos # Redistribution and use in source and binary forms, with or without
     12  1.1  christos # modification, are permitted provided that the following conditions
     13  1.1  christos # are met:
     14  1.1  christos # 1. Redistributions of source code must retain the above copyright
     15  1.1  christos #    notice, this list of conditions and the following disclaimer.
     16  1.1  christos # 2. Redistributions in binary form must reproduce the above copyright
     17  1.1  christos #    notice, this list of conditions and the following disclaimer in the
     18  1.1  christos #    documentation and/or other materials provided with the distribution.
     19  1.1  christos #
     20  1.1  christos # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21  1.1  christos # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22  1.1  christos # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23  1.1  christos # PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24  1.1  christos # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25  1.1  christos # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26  1.1  christos # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27  1.1  christos # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28  1.1  christos # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29  1.1  christos # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30  1.1  christos # POSSIBILITY OF SUCH DAMAGE.
     31  1.1  christos #
     32  1.1  christos # postinstall
     33  1.1  christos #	Check for or fix configuration changes that occur
     34  1.1  christos #	over time as NetBSD evolves.
     35  1.1  christos #
     36  1.1  christos 
     37  1.1  christos #
     38  1.1  christos # XXX BE SURE TO USE ${DEST_DIR} PREFIX BEFORE ALL REAL FILE OPERATIONS XXX
     39  1.1  christos #
     40  1.1  christos 
     41  1.1  christos #
     42  1.1  christos # checks to add:
     43  1.1  christos #	- sysctl(8) renames (net.inet6.ip6.bindv6only -> net.inet6.ip6.v6only)
     44  1.1  christos #	- de* -> tlp* migration (/etc/ifconfig.de*, $ifconfig_de*, ...) ?
     45  1.1  christos #	- support quiet/verbose mode ?
     46  1.1  christos #	- differentiate between failures caused by missing source
     47  1.1  christos #	  and real failures
     48  1.1  christos #	- install moduli into usr/share/examples/ssh and use from there?
     49  1.1  christos #	- differentiate between "needs fix" versus "can't fix" issues
     50  1.1  christos #
     51  1.1  christos 
     52  1.1  christos # This script is executed as part of a cross build.  Allow the build
     53  1.1  christos # environment to override the locations of some tools.
     54  1.1  christos : ${AWK:=awk}
     55  1.1  christos : ${DB:=db}
     56  1.1  christos : ${GREP:=grep}
     57  1.1  christos : ${HOST_SH:=sh}
     58  1.1  christos : ${MAKE:=make}
     59  1.1  christos : ${PWD_MKDB:=/usr/sbin/pwd_mkdb}
     60  1.1  christos : ${SED:=sed}
     61  1.1  christos : ${SORT:=sort}
     62  1.1  christos : ${STAT:=stat}
     63  1.1  christos 
     64  1.1  christos #
     65  1.1  christos #	helper functions
     66  1.1  christos #
     67  1.1  christos 
     68  1.1  christos err()
     69  1.1  christos {
     70  1.1  christos 	exitval=$1
     71  1.1  christos 	shift
     72  1.1  christos 	echo 1>&2 "${PROGNAME}: $*"
     73  1.1  christos 	if [ -n "${SCRATCHDIR}" ]; then
     74  1.1  christos 	    /bin/rm -rf "${SCRATCHDIR}"
     75  1.1  christos 	fi
     76  1.1  christos 	exit ${exitval}
     77  1.1  christos }
     78  1.1  christos 
     79  1.1  christos warn()
     80  1.1  christos {
     81  1.1  christos 	echo 1>&2 "${PROGNAME}: $*"
     82  1.1  christos }
     83  1.1  christos 
     84  1.1  christos msg()
     85  1.1  christos {
     86  1.1  christos 	echo "	$*"
     87  1.1  christos }
     88  1.1  christos 
     89  1.1  christos mkdtemp()
     90  1.1  christos {
     91  1.1  christos 	# Make sure we don't loop forever if mkdir will always fail.
     92  1.1  christos 	[ -d /tmp ] || err 2 /tmp is not a directory
     93  1.1  christos 	[ -w /tmp ] || err 2 /tmp is not writable
     94  1.1  christos 
     95  1.1  christos 	_base="/tmp/_postinstall.$$"
     96  1.1  christos 	_serial=0
     97  1.1  christos 
     98  1.1  christos 	while true; do
     99  1.1  christos 		_dir="${_base}.${_serial}"
    100  1.1  christos 		mkdir -m 0700 "${_dir}" && break
    101  1.1  christos 		_serial=$((${_serial} + 1))
    102  1.1  christos 	done
    103  1.1  christos 	echo "${_dir}"
    104  1.1  christos }
    105  1.1  christos 
    106  1.1  christos # Quote args to make them safe in the shell.
    107  1.1  christos # Usage: quotedlist="$(shell_quote args...)"
    108  1.1  christos #
    109  1.1  christos # After building up a quoted list, use it by evaling it inside
    110  1.1  christos # double quotes, like this:
    111  1.1  christos #    eval "set -- $quotedlist"
    112  1.1  christos # or like this:
    113  1.1  christos #    eval "\$command $quotedlist \$filename"
    114  1.1  christos #
    115  1.1  christos shell_quote()
    116  1.1  christos {(
    117  1.1  christos 	local result=''
    118  1.1  christos 	local arg qarg
    119  1.1  christos 	LC_COLLATE=C ; export LC_COLLATE # so [a-zA-Z0-9] works in ASCII
    120  1.1  christos 	for arg in "$@" ; do
    121  1.1  christos 		case "${arg}" in
    122  1.1  christos 		'')
    123  1.1  christos 			qarg="''"
    124  1.1  christos 			;;
    125  1.1  christos 		*[!-./a-zA-Z0-9]*)
    126  1.1  christos 			# Convert each embedded ' to '\'',
    127  1.1  christos 			# then insert ' at the beginning of the first line,
    128  1.1  christos 			# and append ' at the end of the last line.
    129  1.1  christos 			# Finally, elide unnecessary '' pairs at the
    130  1.1  christos 			# beginning and end of the result and as part of
    131  1.1  christos 			# '\'''\'' sequences that result from multiple
    132  1.1  christos 			# adjacent quotes in he input.
    133  1.1  christos 			qarg="$(printf "%s\n" "$arg" | \
    134  1.1  christos 			    ${SED:-sed} -e "s/'/'\\\\''/g" \
    135  1.1  christos 				-e "1s/^/'/" -e "\$s/\$/'/" \
    136  1.1  christos 				-e "1s/^''//" -e "\$s/''\$//" \
    137  1.1  christos 				-e "s/'''/'/g"
    138  1.1  christos 				)"
    139  1.1  christos 			;;
    140  1.1  christos 		*)
    141  1.1  christos 			# Arg is not the empty string, and does not contain
    142  1.1  christos 			# any unsafe characters.  Leave it unchanged for
    143  1.1  christos 			# readability.
    144  1.1  christos 			qarg="${arg}"
    145  1.1  christos 			;;
    146  1.1  christos 		esac
    147  1.1  christos 		result="${result}${result:+ }${qarg}"
    148  1.1  christos 	done
    149  1.1  christos 	printf "%s\n" "$result"
    150  1.1  christos )}
    151  1.1  christos 
    152  1.1  christos # Convert arg $1 to a basic regular expression (as in sed)
    153  1.1  christos # that will match the arg.  This works by inserting backslashes
    154  1.1  christos # before characters that are special in basic regular expressions.
    155  1.1  christos # It also inserts backslashes before the extra characters specified
    156  1.1  christos # in $2 (which defaults to "/,").
    157  1.1  christos # XXX: Does not handle embedded newlines.
    158  1.1  christos # Usage: regex="$(bre_quote "${string}")"
    159  1.1  christos bre_quote()
    160  1.1  christos {
    161  1.1  christos 	local arg="$1"
    162  1.1  christos 	local extra="${2-/,}"
    163  1.1  christos 	printf "%s\n" "${arg}" | ${SED} -e 's/[][^$.*\\'"${extra}"']/\\&/g'
    164  1.1  christos }
    165  1.1  christos 
    166  1.1  christos # unprefix dir
    167  1.1  christos #	Remove any dir prefix from a list of paths on stdin,
    168  1.1  christos #	and write the result to stdout.  Useful for converting
    169  1.1  christos #	from ${DEST_DIR}/path to /path.
    170  1.1  christos #
    171  1.1  christos unprefix()
    172  1.1  christos {
    173  1.1  christos 	[ $# -eq 1 ] || err 3 "USAGE: unprefix dir"
    174  1.1  christos 	local prefix="${1%/}"
    175  1.1  christos 	prefix="$(bre_quote "${prefix}")"
    176  1.1  christos 
    177  1.1  christos 	${SED} -e "s,^${prefix}/,/,"
    178  1.1  christos }
    179  1.1  christos 
    180  1.1  christos # additem item description
    181  1.1  christos #	Add item to list of supported items to check/fix,
    182  1.1  christos #	which are checked/fixed by default if no item is requested by user.
    183  1.1  christos #
    184  1.1  christos additem()
    185  1.1  christos {
    186  1.1  christos 	[ $# -eq 2 ] || err 3 "USAGE: additem item description"
    187  1.1  christos 	defaultitems="${defaultitems}${defaultitems:+ }$1"
    188  1.1  christos 	eval desc_$1=\"\$2\"
    189  1.1  christos }
    190  1.1  christos 
    191  1.1  christos # adddisableditem item description
    192  1.1  christos #	Add item to list of supported items to check/fix,
    193  1.1  christos #	but execute the item only if the user asks for it explicitly.
    194  1.1  christos #
    195  1.1  christos adddisableditem()
    196  1.1  christos {
    197  1.1  christos 	[ $# -eq 2 ] || err 3 "USAGE: adddisableditem item description"
    198  1.1  christos 	otheritems="${otheritems}${otheritems:+ }$1"
    199  1.1  christos 	eval desc_$1=\"\$2\"
    200  1.1  christos }
    201  1.1  christos 
    202  1.1  christos # checkdir op dir mode
    203  1.1  christos #	Ensure dir exists, and if not, create it with the appropriate mode.
    204  1.1  christos #	Returns 0 if ok, 1 otherwise.
    205  1.1  christos #
    206  1.1  christos check_dir()
    207  1.1  christos {
    208  1.1  christos 	[ $# -eq 3 ] || err 3 "USAGE: check_dir op dir mode"
    209  1.1  christos 	_cdop="$1"
    210  1.1  christos 	_cddir="$2"
    211  1.1  christos 	_cdmode="$3"
    212  1.1  christos 	[ -d "${_cddir}" ] && return 0
    213  1.1  christos 	if [ "${_cdop}" = "check" ]; then
    214  1.1  christos 		msg "${_cddir} is not a directory"
    215  1.1  christos 		return 1
    216  1.1  christos 	elif ! mkdir -m "${_cdmode}" "${_cddir}" ; then
    217  1.1  christos 		msg "Can't create missing ${_cddir}"
    218  1.1  christos 		return 1
    219  1.1  christos 	else
    220  1.1  christos 		msg "Missing ${_cddir} created"
    221  1.1  christos 	fi
    222  1.1  christos 	return 0
    223  1.1  christos }
    224  1.1  christos 
    225  1.1  christos # check_ids op type file srcfile start id [...]
    226  1.1  christos #	Check if file of type "users" or "groups" contains the relevant IDs.
    227  1.1  christos #	Use srcfile as a reference for the expected contents.
    228  1.1  christos #	The specified "id" names should be given in numerical order,
    229  1.1  christos #	with the first name corresponding to numerical value "start",
    230  1.1  christos #	and with the special name "SKIP" being used to mark gaps in the
    231  1.1  christos #	sequence.
    232  1.1  christos #	Returns 0 if ok, 1 otherwise.
    233  1.1  christos #
    234  1.1  christos check_ids()
    235  1.1  christos {
    236  1.1  christos 	[ $# -ge 6 ] || err 3 "USAGE: checks_ids op type file start srcfile id [...]"
    237  1.1  christos 	_op="$1"
    238  1.1  christos 	_type="$2"
    239  1.1  christos 	_file="$3"
    240  1.1  christos 	_srcfile="$4"
    241  1.1  christos 	_start="$5"
    242  1.1  christos 	shift 5
    243  1.1  christos 	#_ids="$@"
    244  1.1  christos 
    245  1.1  christos 	if [ ! -f "${_file}" ]; then
    246  1.1  christos 		msg "${_file} doesn't exist; can't check for missing ${_type}"
    247  1.1  christos 		return 1
    248  1.1  christos 	fi
    249  1.1  christos 	if [ ! -r "${_file}" ]; then
    250  1.1  christos 		msg "${_file} is not readable; can't check for missing ${_type}"
    251  1.1  christos 		return 1
    252  1.1  christos 	fi
    253  1.1  christos 	_notfixed=""
    254  1.1  christos 	if [ "${_op}" = "fix" ]; then
    255  1.1  christos 		_notfixed="${NOT_FIXED}"
    256  1.1  christos 	fi
    257  1.1  christos 	_missing="$(${AWK} -v start=$_start -F: '
    258  1.1  christos 		BEGIN {
    259  1.1  christos 			for (x = 1; x < ARGC; x++) {
    260  1.1  christos 				if (ARGV[x] == "SKIP")
    261  1.1  christos 					continue;
    262  1.1  christos 				idlist[ARGV[x]]++;
    263  1.1  christos 				value[ARGV[x]] = start + x - 1;
    264  1.1  christos 			}
    265  1.1  christos 			ARGC=1
    266  1.1  christos 		}
    267  1.1  christos 		{
    268  1.1  christos 			found[$1]++
    269  1.1  christos 			number[$1] = $3
    270  1.1  christos 		}
    271  1.1  christos 		END {
    272  1.1  christos 			for (id in idlist) {
    273  1.1  christos 				if (!(id in found))
    274  1.1  christos 					printf("%s (missing)\n", id)
    275  1.1  christos 				else if (number[id] != value[id])
    276  1.1  christos 					printf("%s (%d != %d)\n", id,
    277  1.1  christos 					    number[id], value[id])
    278  1.1  christos 				start++;
    279  1.1  christos 			}
    280  1.1  christos 		}
    281  1.1  christos 	' "$@" < "${_file}")"	|| return 1
    282  1.1  christos 	if [ -n "${_missing}" ]; then
    283  1.1  christos 		msg "Error ${_type}${_notfixed}:" $(echo ${_missing})
    284  1.1  christos 		msg "Use the following as a template:"
    285  1.1  christos 		set -- ${_missing}
    286  1.1  christos 		while [ $# -gt 0 ]
    287  1.1  christos 		do
    288  1.1  christos 			${GREP} -E "^${1}:" ${_srcfile}
    289  1.1  christos 			shift 2
    290  1.1  christos 		done
    291  1.1  christos 		msg "and adjust if necessary."
    292  1.1  christos 		return 1
    293  1.1  christos 	fi
    294  1.1  christos 	return 0
    295  1.1  christos }
    296  1.1  christos 
    297  1.1  christos # populate_dir op onlynew src dest mode file [file ...]
    298  1.1  christos #	Perform op ("check" or "fix") on files in src/ against dest/
    299  1.1  christos #	If op = "check" display missing or changed files, optionally with diffs.
    300  1.1  christos #	If op != "check" copies any missing or changed files.
    301  1.1  christos #	If onlynew evaluates to true, changed files are ignored.
    302  1.1  christos #	Returns 0 if ok, 1 otherwise.
    303  1.1  christos #
    304  1.1  christos populate_dir()
    305  1.1  christos {
    306  1.1  christos 	[ $# -ge 5 ] || err 3 "USAGE: populate_dir op onlynew src dest mode file [...]"
    307  1.1  christos 	_op="$1"
    308  1.1  christos 	_onlynew="$2"
    309  1.1  christos 	_src="$3"
    310  1.1  christos 	_dest="$4"
    311  1.1  christos 	_mode="$5"
    312  1.1  christos 	shift 5
    313  1.1  christos 	#_files="$@"
    314  1.1  christos 
    315  1.1  christos 	if [ ! -d "${_src}" ]; then
    316  1.1  christos 		msg "${_src} is not a directory; skipping check"
    317  1.1  christos 		return 1
    318  1.1  christos 	fi
    319  1.1  christos 	check_dir "${_op}" "${_dest}" 755 || return 1
    320  1.1  christos 
    321  1.1  christos 	_cmpdir_rv=0
    322  1.1  christos 	for f in "$@"; do
    323  1.1  christos 		fs="${_src}/${f}"
    324  1.1  christos 		fd="${_dest}/${f}"
    325  1.1  christos 		_error=""
    326  1.1  christos 		if [ ! -f "${fd}" ]; then
    327  1.1  christos 			_error="${fd} does not exist"
    328  1.1  christos 		elif ! cmp -s "${fs}" "${fd}" ; then
    329  1.1  christos 			if $_onlynew; then	# leave existing ${fd} alone
    330  1.1  christos 				continue;
    331  1.1  christos 			fi
    332  1.1  christos 			_error="${fs} != ${fd}"
    333  1.1  christos 		else
    334  1.1  christos 			continue
    335  1.1  christos 		fi
    336  1.1  christos 		if [ "${_op}" = "check" ]; then
    337  1.1  christos 			msg "${_error}"
    338  1.1  christos 			if [ -n "${DIFF_STYLE}" -a -f "${fd}" ]; then
    339  1.1  christos 				diff -${DIFF_STYLE} ${DIFF_OPT} "${fd}" "${fs}"
    340  1.1  christos 			fi
    341  1.1  christos 			_cmpdir_rv=1
    342  1.1  christos 		elif ! rm -f "${fd}" ||
    343  1.1  christos 		     ! cp -f "${fs}" "${fd}"; then
    344  1.1  christos 			msg "Can't copy ${fs} to ${fd}"
    345  1.1  christos 			_cmpdir_rv=1
    346  1.1  christos 		elif ! chmod "${_mode}" "${fd}"; then
    347  1.1  christos 			msg "Can't change mode of ${fd} to ${_mode}"
    348  1.1  christos 			_cmpdir_rv=1
    349  1.1  christos 		else
    350  1.1  christos 			msg "Copied ${fs} to ${fd}"
    351  1.1  christos 		fi
    352  1.1  christos 	done
    353  1.1  christos 	return ${_cmpdir_rv}
    354  1.1  christos }
    355  1.1  christos 
    356  1.1  christos # compare_dir op src dest mode file [file ...]
    357  1.1  christos #	Perform op ("check" or "fix") on files in src/ against dest/
    358  1.1  christos #	If op = "check" display missing or changed files, optionally with diffs.
    359  1.1  christos #	If op != "check" copies any missing or changed files.
    360  1.1  christos #	Returns 0 if ok, 1 otherwise.
    361  1.1  christos #
    362  1.1  christos compare_dir()
    363  1.1  christos {
    364  1.1  christos 	[ $# -ge 4 ] || err 3 "USAGE: compare_dir op src dest mode file [...]"
    365  1.1  christos 	_op="$1"
    366  1.1  christos 	_src="$2"
    367  1.1  christos 	_dest="$3"
    368  1.1  christos 	_mode="$4"
    369  1.1  christos 	shift 4
    370  1.1  christos 	#_files="$@"
    371  1.1  christos 
    372  1.1  christos 	populate_dir "$_op" false "$_src" "$_dest" "$_mode" "$@"
    373  1.1  christos }
    374  1.1  christos 
    375  1.1  christos # move_file op src dest --
    376  1.1  christos #	Check (op == "check") or move (op != "check") from src to dest.
    377  1.1  christos #	Returns 0 if ok, 1 otherwise.
    378  1.1  christos #
    379  1.1  christos move_file()
    380  1.1  christos {
    381  1.1  christos 	[ $# -eq 3 ] || err 3 "USAGE: move_file op src dest"
    382  1.1  christos 	_fm_op="$1"
    383  1.1  christos 	_fm_src="$2"
    384  1.1  christos 	_fm_dest="$3"
    385  1.1  christos 
    386  1.1  christos 	if [ -f "${_fm_src}" -a ! -f "${_fm_dest}" ]; then
    387  1.1  christos 		if [ "${_fm_op}" = "check" ]; then
    388  1.1  christos 			msg "Move ${_fm_src} to ${_fm_dest}"
    389  1.1  christos 			return 1
    390  1.1  christos 		fi
    391  1.1  christos 		if ! mv "${_fm_src}" "${_fm_dest}"; then
    392  1.1  christos 			msg "Can't move ${_fm_src} to ${_fm_dest}"
    393  1.1  christos 			return 1
    394  1.1  christos 		fi
    395  1.1  christos 		msg "Moved ${_fm_src} to ${_fm_dest}"
    396  1.1  christos 	fi
    397  1.1  christos 	return 0
    398  1.1  christos }
    399  1.1  christos 
    400  1.1  christos # rcconf_is_set op name var [verbose] --
    401  1.1  christos #	Load the rcconf for name, and check if obsolete rc.conf(5) variable
    402  1.1  christos #	var is defined or not.
    403  1.1  christos #	Returns 0 if defined (even to ""), otherwise 1.
    404  1.1  christos #	If verbose != "", print an obsolete warning if the var is defined.
    405  1.1  christos #
    406  1.1  christos rcconf_is_set()
    407  1.1  christos {
    408  1.1  christos 	[ $# -ge 3 ] || err 3 "USAGE: rcconf_is_set op name var [verbose]"
    409  1.1  christos 	_rcis_op="$1"
    410  1.1  christos 	_rcis_name="$2"
    411  1.1  christos 	_rcis_var="$3"
    412  1.1  christos 	_rcis_verbose="$4"
    413  1.1  christos 	_rcis_notfixed=""
    414  1.1  christos 	if [ "${_rcis_op}" = "fix" ]; then
    415  1.1  christos 		_rcis_notfixed="${NOT_FIXED}"
    416  1.1  christos 	fi
    417  1.1  christos 	(
    418  1.1  christos 		for f in \
    419  1.1  christos 		    "${DEST_DIR}/etc/rc.conf" \
    420  1.1  christos 		    "${DEST_DIR}/etc/rc.conf.d/${_rcis_name}"; do
    421  1.1  christos 			[ -f "${f}" ] && . "${f}"
    422  1.1  christos 		done
    423  1.1  christos 		eval echo -n \"\${${_rcis_var}}\" 1>&3
    424  1.1  christos 		if eval "[ -n \"\${${_rcis_var}}\" \
    425  1.1  christos 			    -o \"\${${_rcis_var}-UNSET}\" != \"UNSET\" ]"; then
    426  1.1  christos 			if [ -n "${_rcis_verbose}" ]; then
    427  1.1  christos 				msg \
    428  1.1  christos     "Obsolete rc.conf(5) variable '\$${_rcis_var}' found.${_rcis_notfixed}"
    429  1.1  christos 			fi
    430  1.1  christos 			exit 0
    431  1.1  christos 		else
    432  1.1  christos 			exit 1
    433  1.1  christos 		fi
    434  1.1  christos 	)
    435  1.1  christos }
    436  1.1  christos 
    437  1.1  christos # rcvar_is_enabled var
    438  1.1  christos #	Check if rcvar is enabled
    439  1.1  christos #
    440  1.1  christos rcvar_is_enabled()
    441  1.1  christos {
    442  1.1  christos 	[ $# -eq 1 ] || err 3 "USAGE: rcvar_is_enabled var"
    443  1.1  christos 	_rcie_var="$1"
    444  1.1  christos 	(
    445  1.1  christos 		[ -f "${DEST_DIR}/etc/rc.conf" ] && . "${DEST_DIR}/etc/rc.conf"
    446  1.1  christos 		eval _rcie_val=\"\${${_rcie_var}}\"
    447  1.1  christos 		case $_rcie_val in
    448  1.1  christos 		#	"yes", "true", "on", or "1"
    449  1.1  christos 		[Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
    450  1.1  christos 			exit 0
    451  1.1  christos 			;;
    452  1.1  christos 
    453  1.1  christos 		*)
    454  1.1  christos 			exit 1
    455  1.1  christos 			;;
    456  1.1  christos 		esac
    457  1.1  christos 	)
    458  1.1  christos }
    459  1.1  christos 
    460  1.1  christos # find_file_in_dirlist() file message dir1 [...] --
    461  1.1  christos #	Find which directory file is in, and sets ${dir} to match.
    462  1.1  christos #	Returns 0 if matched, otherwise 1 (and sets ${dir} to "").
    463  1.1  christos #
    464  1.1  christos #	Generally, check the directory for the "checking from source" case,
    465  1.1  christos #	and then the directory for the "checking from extracted etc.tgz" case.
    466  1.1  christos #
    467  1.1  christos find_file_in_dirlist()
    468  1.1  christos {
    469  1.1  christos 	[ $# -ge 3 ] || err 3 "USAGE: find_file_in_dirlist file msg dir1 [...]"
    470  1.1  christos 
    471  1.1  christos 	_file="$1" ; shift
    472  1.1  christos 	_msg="$1" ; shift
    473  1.1  christos 	_dir1st=	# first dir in list
    474  1.1  christos 	for dir in "$@"; do
    475  1.1  christos 		: ${_dir1st:="${dir}"}
    476  1.1  christos 		if [ -f "${dir}/${_file}" ]; then
    477  1.1  christos 			if [ "${_dir1st}" != "${dir}" ]; then
    478  1.1  christos 				msg \
    479  1.1  christos     "(Checking for ${_msg} from ${dir} instead of ${_dir1st})"
    480  1.1  christos 			fi
    481  1.1  christos 			return 0
    482  1.1  christos 		fi
    483  1.1  christos 	done
    484  1.1  christos 	msg "Can't find source directory for ${_msg}"
    485  1.1  christos 	return 1
    486  1.1  christos }
    487  1.1  christos 
    488  1.1  christos # file_exists_exact path
    489  1.1  christos #	Returns true if a file exists in the ${DEST_DIR} whose name
    490  1.1  christos #	is exactly ${path}, interpreted in a case-sensitive way
    491  1.1  christos #	even if the underlying file system is case-insensitive.
    492  1.1  christos #
    493  1.1  christos #	The path must begin with '/' or './', and is interpreted as
    494  1.1  christos #	being relative to ${DEST_DIR}.
    495  1.1  christos #
    496  1.1  christos file_exists_exact()
    497  1.1  christos {
    498  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: file_exists_exact path"
    499  1.1  christos 	_path="${1#.}"
    500  1.1  christos 	[ -h "${DEST_DIR}${_path}" ] || \
    501  1.1  christos 		[ -e "${DEST_DIR}${_path}" ] || return 1
    502  1.1  christos 	while [ "${_path}" != "/" -a "${_path}" != "." ] ; do
    503  1.1  christos 		_dirname="$(dirname "${_path}" 2>/dev/null)"
    504  1.1  christos 		_basename="$(basename "${_path}" 2>/dev/null)"
    505  1.1  christos 		ls -fa "${DEST_DIR}${_dirname}" 2> /dev/null \
    506  1.1  christos 			| ${GREP} -F -x "${_basename}" >/dev/null \
    507  1.1  christos 			|| return 1
    508  1.1  christos 		_path="${_dirname}"
    509  1.1  christos 	done
    510  1.1  christos 	return 0
    511  1.1  christos }
    512  1.1  christos 
    513  1.1  christos # obsolete_paths op
    514  1.1  christos #	Obsolete the list of paths provided on stdin.
    515  1.1  christos #	Each path should start with '/' or './', and
    516  1.1  christos #	will be interpreted relative to ${DEST_DIR}.
    517  1.1  christos #
    518  1.1  christos obsolete_paths()
    519  1.1  christos {
    520  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: obsolete_paths  fix|check"
    521  1.1  christos 	op="$1"
    522  1.1  christos 
    523  1.1  christos 	failed=0
    524  1.1  christos 	while read ofile; do
    525  1.1  christos 		if ! ${file_exists_exact} "${ofile}"; then
    526  1.1  christos 			continue
    527  1.1  christos 		fi
    528  1.1  christos 		ofile="${DEST_DIR}${ofile#.}"
    529  1.1  christos 		cmd="rm"
    530  1.1  christos 		ftype="file"
    531  1.1  christos 		if [ -h "${ofile}" ]; then
    532  1.1  christos 			ftype="link"
    533  1.1  christos 		elif [ -d "${ofile}" ]; then
    534  1.1  christos 			ftype="directory"
    535  1.1  christos 			cmd="rmdir"
    536  1.1  christos 		elif [ ! -e "${ofile}" ]; then
    537  1.1  christos 			continue
    538  1.1  christos 		fi
    539  1.1  christos 		if [ "${op}" = "check" ]; then
    540  1.1  christos 			msg "Remove obsolete ${ftype} ${ofile}"
    541  1.1  christos 			failed=1
    542  1.1  christos 		elif ! eval "${cmd} \"\${ofile}\""; then
    543  1.1  christos 			msg "Can't remove obsolete ${ftype} ${ofile}"
    544  1.1  christos 			failed=1
    545  1.1  christos 		else
    546  1.1  christos 			msg "Removed obsolete ${ftype} ${ofile}"
    547  1.1  christos 		fi
    548  1.1  christos 	done
    549  1.1  christos 	return ${failed}
    550  1.1  christos }
    551  1.1  christos 
    552  1.1  christos # obsolete_libs dir
    553  1.1  christos #	Display the minor/teeny shared libraries in dir that are considered
    554  1.1  christos #	to be obsolete.
    555  1.1  christos #
    556  1.1  christos #	The implementation supports removing obsolete major libraries
    557  1.1  christos #	if the awk variable AllLibs is set, although there is no way to
    558  1.1  christos #	enable that in the enclosing shell function as this time.
    559  1.1  christos #
    560  1.1  christos obsolete_libs()
    561  1.1  christos {
    562  1.1  christos 	[ $# -eq 1 ] || err 3 "USAGE: obsolete_libs dir"
    563  1.1  christos 	dir="$1"
    564  1.1  christos 
    565  1.1  christos 	_obsolete_libs "${dir}"
    566  1.1  christos 	_obsolete_libs "/usr/libdata/debug/${dir}"
    567  1.1  christos }
    568  1.1  christos 
    569  1.1  christos _obsolete_libs()
    570  1.1  christos {
    571  1.1  christos 	dir="$1"
    572  1.1  christos 
    573  1.1  christos 	(
    574  1.1  christos 
    575  1.1  christos 	if [ ! -e "${DEST_DIR}/${dir}" ]
    576  1.1  christos 	then
    577  1.1  christos 		return 0
    578  1.1  christos 	fi
    579  1.1  christos 
    580  1.1  christos 	cd "${DEST_DIR}/${dir}" || err 2 "can't cd to ${DEST_DIR}/${dir}"
    581  1.1  christos 	echo lib*.so.* \
    582  1.1  christos 	| tr ' ' '\n' \
    583  1.1  christos 	| ${AWK} -v LibDir="${dir}/" '
    584  1.1  christos #{
    585  1.1  christos 
    586  1.1  christos function digit(v, c, n) { return (n <= c) ? v[n] : 0 }
    587  1.1  christos 
    588  1.1  christos function checklib(results, line, regex) {
    589  1.1  christos 	if (! match(line, regex))
    590  1.1  christos 		return
    591  1.1  christos 	lib = substr(line, RSTART, RLENGTH)
    592  1.1  christos 	rev = substr($0, RLENGTH+1)
    593  1.1  christos 	if (! (lib in results)) {
    594  1.1  christos 		results[lib] = rev
    595  1.1  christos 		return
    596  1.1  christos 	}
    597  1.1  christos 	orevc = split(results[lib], orev, ".")
    598  1.1  christos 	nrevc = split(rev, nrev, ".")
    599  1.1  christos 	maxc = (orevc > nrevc) ? orevc : nrevc
    600  1.1  christos 	for (i = 1; i <= maxc; i++) {
    601  1.1  christos 		res = digit(orev, orevc, i) - digit(nrev, nrevc, i)
    602  1.1  christos 		if (res < 0) {
    603  1.1  christos 			print LibDir lib results[lib]
    604  1.1  christos 			results[lib] = rev
    605  1.1  christos 			return
    606  1.1  christos 		} else if (res > 0) {
    607  1.1  christos 			print LibDir lib rev
    608  1.1  christos 			return
    609  1.1  christos 		}
    610  1.1  christos 	}
    611  1.1  christos }
    612  1.1  christos 
    613  1.1  christos /^lib.*\.so\.[0-9]+\.[0-9]+(\.[0-9]+)?(\.debug)?$/ {
    614  1.1  christos 	if (AllLibs)
    615  1.1  christos 		checklib(minor, $0, "^lib.*\\.so\\.")
    616  1.1  christos 	else
    617  1.1  christos 		checklib(found, $0, "^lib.*\\.so\\.[0-9]+\\.")
    618  1.1  christos }
    619  1.1  christos 
    620  1.1  christos /^lib.*\.so\.[0-9]+$/ {
    621  1.1  christos 	if (AllLibs)
    622  1.1  christos 		checklib(major, $0, "^lib.*\\.so\\.")
    623  1.1  christos }
    624  1.1  christos 
    625  1.1  christos #}'
    626  1.1  christos 
    627  1.1  christos 	)
    628  1.1  christos }
    629  1.1  christos 
    630  1.1  christos # obsolete_stand dir
    631  1.1  christos #	Prints the names of all obsolete files and subdirs below the
    632  1.1  christos #	provided dir.  dir should be something like /stand/${MACHINE}.
    633  1.1  christos #	The input dir and all output paths are interpreted
    634  1.1  christos #	relative to ${DEST_DIR}.
    635  1.1  christos #
    636  1.1  christos #	Assumes that the numerically largest subdir is current, and all
    637  1.1  christos #	others are obsolete.
    638  1.1  christos #
    639  1.1  christos obsolete_stand()
    640  1.1  christos {
    641  1.1  christos 	[ $# -eq 1 ] || err 3 "USAGE: obsolete_stand dir"
    642  1.1  christos 	local dir="$1"
    643  1.1  christos 	local subdir
    644  1.1  christos 
    645  1.1  christos 	if ! [ -d "${DEST_DIR}${dir}" ]; then
    646  1.1  christos 		msg "${DEST_DIR}${dir} doesn't exist; can't check for obsolete files"
    647  1.1  christos 		return 1
    648  1.1  christos 	fi
    649  1.1  christos 
    650  1.1  christos 	( cd "${DEST_DIR}${dir}" && ls -1d [0-9]*[0-9]/. ) \
    651  1.1  christos 	| ${GREP} -v '[^0-9./]' \
    652  1.1  christos 	| sort -t. -r -n -k1,1 -k2,2 -k3,3 \
    653  1.1  christos 	| tail -n +2 \
    654  1.1  christos 	| while read subdir ; do
    655  1.1  christos 		subdir="${subdir%/.}"
    656  1.1  christos 		find "${DEST_DIR}${dir}/${subdir}" -depth -print
    657  1.1  christos 	done \
    658  1.1  christos 	| unprefix "${DEST_DIR}"
    659  1.1  christos }
    660  1.1  christos 
    661  1.1  christos # modify_file op srcfile scratchfile awkprog
    662  1.1  christos #	Apply awkprog to srcfile sending output to scratchfile, and
    663  1.1  christos #	if appropriate replace srcfile with scratchfile.
    664  1.1  christos #
    665  1.1  christos modify_file()
    666  1.1  christos {
    667  1.1  christos 	[ $# -eq 4 ] || err 3 "USAGE: modify_file op file scratch awkprog"
    668  1.1  christos 
    669  1.1  christos 	_mfop="$1"
    670  1.1  christos 	_mffile="$2"
    671  1.1  christos 	_mfscratch="$3"
    672  1.1  christos 	_mfprog="$4"
    673  1.1  christos 	_mffailed=0
    674  1.1  christos 
    675  1.1  christos 	${AWK} "${_mfprog}" < "${_mffile}" > "${_mfscratch}"
    676  1.1  christos 	if ! cmp -s "${_mffile}" "${_mfscratch}"; then
    677  1.1  christos 		diff "${_mffile}" "${_mfscratch}" > "${_mfscratch}.diffs"
    678  1.1  christos 		if [ "${_mfop}" = "check" ]; then
    679  1.1  christos 			msg "${_mffile} needs the following changes:"
    680  1.1  christos 			_mffailed=1
    681  1.1  christos 		elif ! rm -f "${_mffile}" ||
    682  1.1  christos 		     ! cp -f "${_mfscratch}" "${_mffile}"; then
    683  1.1  christos 			msg "${_mffile} changes not applied:"
    684  1.1  christos 			_mffailed=1
    685  1.1  christos 		else
    686  1.1  christos 			msg "${_mffile} changes applied:"
    687  1.1  christos 		fi
    688  1.1  christos 		while read _line; do
    689  1.1  christos 			msg "	${_line}"
    690  1.1  christos 		done < "${_mfscratch}.diffs"
    691  1.1  christos 	fi
    692  1.1  christos 	return ${_mffailed}
    693  1.1  christos }
    694  1.1  christos 
    695  1.1  christos 
    696  1.1  christos # contents_owner op directory user group
    697  1.1  christos #	Make sure directory and contents are owned (and group-owned)
    698  1.1  christos #	as specified.
    699  1.1  christos #
    700  1.1  christos contents_owner()
    701  1.1  christos {
    702  1.1  christos 	[ $# -eq 4 ] || err 3 "USAGE: contents_owner op dir user group"
    703  1.1  christos 
    704  1.1  christos 	_op="$1"
    705  1.1  christos 	_dir="$2"
    706  1.1  christos 	_user="$3"
    707  1.1  christos 	_grp="$4"
    708  1.1  christos 
    709  1.1  christos 	if [ "${_op}" = "check" ]; then
    710  1.1  christos 		if [ ! -z "`find "${_dir}" \( ! -user "${_user}" \) -o \
    711  1.1  christos 		    \( ! -group "${_grp}" \)`" ]; then
    712  1.1  christos 			msg \
    713  1.1  christos     "${_dir} and contents not all owned by ${_user}:${_grp}"
    714  1.1  christos 			return 1
    715  1.1  christos 		else
    716  1.1  christos 			return 0
    717  1.1  christos 		fi
    718  1.1  christos 	elif [ "${_op}" = "fix" ]; then
    719  1.1  christos 		find "${_dir}" \( \( ! -user "${_user}" \) -o \
    720  1.1  christos 		\( ! -group "${_grp}" \) \) -a -print0 \
    721  1.1  christos 		| xargs -0 chown "${_user}:${_grp}"
    722  1.1  christos 	fi
    723  1.1  christos }
    724  1.1  christos 
    725  1.1  christos # get_makevar var [var ...]
    726  1.1  christos #	Retrieve the value of a user-settable system make variable
    727  1.1  christos get_makevar()
    728  1.1  christos {
    729  1.1  christos 	$SOURCEMODE || err 3 "get_makevar must be used in source mode"
    730  1.1  christos 	[ $# -eq 0 ] && err 3 "USAGE: get_makevar var [var ...]"
    731  1.1  christos 
    732  1.1  christos 	for _var in "$@"; do
    733  1.1  christos 		_value="$(echo '.include <bsd.own.mk>' | \
    734  1.1  christos 		    ${MAKE} -f - -V "\${${_var}}")"
    735  1.1  christos 
    736  1.1  christos 		eval ${_var}=\"\${_value}\"
    737  1.1  christos 	done
    738  1.1  christos }
    739  1.1  christos 
    740  1.1  christos # detect_x11
    741  1.1  christos #	Detect if X11 components should be analysed and set values of
    742  1.1  christos #	relevant variables.
    743  1.1  christos detect_x11()
    744  1.1  christos {
    745  1.1  christos 	if $SOURCEMODE; then
    746  1.1  christos 		get_makevar MKX11 X11ROOTDIR X11SRCDIR
    747  1.1  christos 	else
    748  1.1  christos 		if [ -f "${SRC_DIR}/etc/mtree/set.xetc" ]; then
    749  1.1  christos 			MKX11=yes
    750  1.1  christos 			X11ROOTDIR=/this/value/isnt/used/yet
    751  1.1  christos 		else
    752  1.1  christos 			MKX11=no
    753  1.1  christos 			X11ROOTDIR=
    754  1.1  christos 		fi
    755  1.1  christos 		X11SRCDIR=/nonexistent/xsrc
    756  1.1  christos 	fi
    757  1.1  christos }
    758  1.1  christos 
    759  1.1  christos #
    760  1.1  christos #	find out where MAKEDEV lives, set MAKEDEV_DIR appropriately
    761  1.1  christos #
    762  1.1  christos find_makedev()
    763  1.1  christos {
    764  1.1  christos 	if [ -e "${DEST_DIR}/dev/MAKEDEV" ]; then
    765  1.1  christos 		MAKEDEV_DIR="${DEST_DIR}/dev"
    766  1.1  christos 	elif [ -e "${DEST_DIR}/etc/MAKEDEV" ]; then
    767  1.1  christos 		MAKEDEV_DIR="${DEST_DIR}/etc"
    768  1.1  christos 	else
    769  1.1  christos 		MAKEDEV_DIR="${DEST_DIR}/dev"
    770  1.1  christos 	fi
    771  1.1  christos }
    772  1.1  christos 
    773  1.1  christos 
    774  1.1  christos #
    775  1.1  christos #	items
    776  1.1  christos #	-----
    777  1.1  christos #
    778  1.1  christos 
    779  1.1  christos #
    780  1.1  christos #	Bluetooth
    781  1.1  christos #
    782  1.1  christos 
    783  1.1  christos additem bluetooth "Bluetooth configuration is up to date"
    784  1.1  christos do_bluetooth()
    785  1.1  christos {
    786  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_bluetooth fix|check"
    787  1.1  christos 	op="$1"
    788  1.1  christos 	failed=0
    789  1.1  christos 
    790  1.1  christos 	populate_dir "${op}" true \
    791  1.1  christos 		"${SRC_DIR}/etc/bluetooth" "${DEST_DIR}/etc/bluetooth" 644 \
    792  1.1  christos 		hosts protocols btattach.conf btdevctl.conf
    793  1.1  christos 	failed=$(( ${failed} + $? ))
    794  1.1  christos 
    795  1.1  christos 	move_file "${op}" "${DEST_DIR}/var/db/btdev.xml" \
    796  1.1  christos 			"${DEST_DIR}/var/db/btdevctl.plist"
    797  1.1  christos 	failed=$(( ${failed} + $? ))
    798  1.1  christos 
    799  1.1  christos 	notfixed=""
    800  1.1  christos 	if [ "${op}" = "fix" ]; then
    801  1.1  christos 		notfixed="${NOT_FIXED}"
    802  1.1  christos 	fi
    803  1.1  christos 	for _v in btattach btconfig btdevctl; do
    804  1.1  christos 		if rcvar_is_enabled "${_v}"; then
    805  1.1  christos 			msg \
    806  1.1  christos     "${_v} is obsolete in rc.conf(5)${notfixed}: use bluetooth=YES"
    807  1.1  christos 			failed=$(( ${failed} + 1 ))
    808  1.1  christos 		fi
    809  1.1  christos 	done
    810  1.1  christos 
    811  1.1  christos 	return ${failed}
    812  1.1  christos }
    813  1.1  christos 
    814  1.1  christos #
    815  1.1  christos #	ddbonpanic
    816  1.1  christos #
    817  1.1  christos additem ddbonpanic "verify ddb.onpanic is configured in sysctl.conf"
    818  1.1  christos do_ddbonpanic()
    819  1.1  christos {
    820  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_ddbonpanic  fix|check"
    821  1.1  christos 
    822  1.1  christos 	if ${GREP} -E '^#*[[:space:]]*ddb\.onpanic[[:space:]]*\??=[[:space:]]*[[:digit:]]+' \
    823  1.1  christos 		"${DEST_DIR}/etc/sysctl.conf" >/dev/null 2>&1
    824  1.1  christos 	then
    825  1.1  christos 		result=0
    826  1.1  christos 	else
    827  1.1  christos 		if [ "$1" = check ]; then
    828  1.1  christos 			msg \
    829  1.1  christos     "The ddb.onpanic behaviour is not explicitly specified in /etc/sysctl.conf"
    830  1.1  christos 			result=1
    831  1.1  christos 		else
    832  1.1  christos 			echo >> "${DEST_DIR}/etc/sysctl.conf"
    833  1.1  christos 			${SED} < "${SRC_DIR}/etc/sysctl.conf" \
    834  1.1  christos 			   -e '/^ddb\.onpanic/q' | \
    835  1.1  christos 			       ${SED} -e '1,/^$/d' >> \
    836  1.1  christos 			    "${DEST_DIR}/etc/sysctl.conf"
    837  1.1  christos 			result=$?
    838  1.1  christos 		fi
    839  1.1  christos 	fi
    840  1.1  christos 	return ${result}
    841  1.1  christos }
    842  1.1  christos 
    843  1.1  christos #
    844  1.1  christos #	defaults
    845  1.1  christos #
    846  1.1  christos additem defaults "/etc/defaults/ being up to date"
    847  1.1  christos do_defaults()
    848  1.1  christos {
    849  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_defaults  fix|check"
    850  1.1  christos 	local op="$1"
    851  1.1  christos 	local failed=0
    852  1.1  christos 	local etcsets=$(getetcsets)
    853  1.1  christos 
    854  1.1  christos 	local rc_exclude_scripts=""
    855  1.1  christos 	if $SOURCEMODE; then
    856  1.1  christos 		# For most architectures rc.conf(5) should be the same as the
    857  1.1  christos 		# one obtained from a source directory, except for the ones
    858  1.1  christos 		# that have an append file for it.
    859  1.1  christos 		local rc_conf_app="${SRC_DIR}/etc/etc.${MACHINE}/rc.conf.append"
    860  1.1  christos 		if [ -f "${rc_conf_app}" ]; then
    861  1.1  christos 			rc_exclude_scripts="rc.conf"
    862  1.1  christos 
    863  1.1  christos 			# Generate and compare the correct rc.conf(5) file
    864  1.1  christos 			mkdir "${SCRATCHDIR}/defaults"
    865  1.1  christos 
    866  1.1  christos 			cat "${SRC_DIR}/etc/defaults/rc.conf" "${rc_conf_app}" \
    867  1.1  christos 			    > "${SCRATCHDIR}/defaults/rc.conf"
    868  1.1  christos 
    869  1.1  christos 			compare_dir "${op}" "${SCRATCHDIR}/defaults" \
    870  1.1  christos 			    "${DEST_DIR}/etc/defaults" \
    871  1.1  christos 			    444 \
    872  1.1  christos 			    "rc.conf"
    873  1.1  christos 			failed=$(( ${failed} + $? ))
    874  1.1  christos 		fi
    875  1.1  christos 	fi
    876  1.1  christos 
    877  1.1  christos 	find_file_in_dirlist pf.boot.conf "pf.boot.conf" \
    878  1.1  christos 	    "${SRC_DIR}/usr.sbin/pf/etc/defaults" "${SRC_DIR}/etc/defaults" \
    879  1.1  christos 	    || return 1
    880  1.1  christos 	# ${dir} is set by find_file_in_dirlist()
    881  1.1  christos 	compare_dir "$op" "${dir}" "${DEST_DIR}/etc/defaults" 444 pf.boot.conf
    882  1.1  christos 	failed=$(( ${failed} + $? ))
    883  1.1  christos 
    884  1.1  christos 	rc_exclude_scripts="${rc_exclude_scripts} pf.boot.conf"
    885  1.1  christos 
    886  1.1  christos 	local rc_default_conf_files="$(select_set_files /etc/defaults/ \
    887  1.1  christos 	    "/etc/defaults/\([^[:space:]]*\.conf\)" ${etcsets} | \
    888  1.1  christos 	    exclude ${rc_exclude_scripts})"
    889  1.1  christos 	compare_dir "$op" "${SRC_DIR}/etc/defaults" "${DEST_DIR}/etc/defaults" \
    890  1.1  christos 		444 \
    891  1.1  christos 		${rc_default_conf_files}
    892  1.1  christos 	failed=$(( ${failed} + $? ))
    893  1.1  christos 
    894  1.1  christos 
    895  1.1  christos 	return ${failed}
    896  1.1  christos }
    897  1.1  christos 
    898  1.1  christos #
    899  1.1  christos #	dhcpcd
    900  1.1  christos #
    901  1.1  christos additem dhcpcd "dhcpcd configuration is up to date"
    902  1.1  christos do_dhcpcd()
    903  1.1  christos {
    904  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_dhcpcd fix|check"
    905  1.1  christos 	op="$1"
    906  1.1  christos 	failed=0
    907  1.1  christos 
    908  1.1  christos 	find_file_in_dirlist dhcpcd.conf "dhcpcd.conf" \
    909  1.1  christos 	    "${SRC_DIR}/external/bsd/dhcpcd/dist/src" \
    910  1.1  christos 	    "${SRC_DIR}/etc" || return 1
    911  1.1  christos 			# ${dir} is set by find_file_in_dirlist()
    912  1.1  christos 	populate_dir "$op" true "${dir}" "${DEST_DIR}/etc" 644 dhcpcd.conf
    913  1.1  christos 	failed=$(( ${failed} + $? ))
    914  1.1  christos 
    915  1.1  christos 	check_dir "${op}" "${DEST_DIR}/var/db/dhcpcd" 755
    916  1.1  christos 	failed=$(( ${failed} + $? ))
    917  1.1  christos 
    918  1.1  christos 	move_file "${op}" \
    919  1.1  christos 		"${DEST_DIR}/etc/dhcpcd.duid" \
    920  1.1  christos 		"${DEST_DIR}/var/db/dhcpcd/duid"
    921  1.1  christos 	failed=$(( ${failed} + $? ))
    922  1.1  christos 
    923  1.1  christos 	move_file "${op}" \
    924  1.1  christos 		"${DEST_DIR}/etc/dhcpcd.secret" \
    925  1.1  christos 		"${DEST_DIR}/var/db/dhcpcd/secret"
    926  1.1  christos 	failed=$(( ${failed} + $? ))
    927  1.1  christos 
    928  1.1  christos 	move_file "${op}" \
    929  1.1  christos 		"${DEST_DIR}/var/db/dhcpcd-rdm.monotonic" \
    930  1.1  christos 		"${DEST_DIR}/var/db/dhcpcd/rdm_monotonic"
    931  1.1  christos 	failed=$(( ${failed} + $? ))
    932  1.1  christos 
    933  1.1  christos 	for lease in "${DEST_DIR}/var/db/dhcpcd-"*.lease*; do
    934  1.1  christos 		[ -f "${lease}" ] || continue
    935  1.1  christos 		new_lease=$(basename "${lease}" | ${SED} -e 's/dhcpcd-//')
    936  1.1  christos 		new_lease="${DEST_DIR}/var/db/dhcpcd/${new_lease}"
    937  1.1  christos 		move_file "${op}" "${lease}" "${new_lease}"
    938  1.1  christos 		failed=$(( ${failed} + $? ))
    939  1.1  christos 	done
    940  1.1  christos 
    941  1.1  christos 	return ${failed}
    942  1.1  christos }
    943  1.1  christos 
    944  1.1  christos #
    945  1.1  christos #	dhcpcdrundir
    946  1.1  christos #
    947  1.1  christos additem dhcpcdrundir "accidentaly created /@RUNDIR@ does not exist"
    948  1.1  christos do_dhcpcdrundir()
    949  1.1  christos {
    950  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_dhcpcdrundir fix|check"
    951  1.1  christos 	op="$1"
    952  1.1  christos 	failed=0
    953  1.1  christos 
    954  1.1  christos 	if [ -d "${DEST_DIR}/@RUNDIR@" ]; then
    955  1.1  christos 		if [ "${op}" = "check" ]; then
    956  1.1  christos 			msg "Remove eroneously created /@RUNDIR@"
    957  1.1  christos 			failed=1
    958  1.1  christos 		elif ! rm -r "${DEST_DIR}/@RUNDIR@"; then
    959  1.1  christos 			msg "Failed to remove ${DEST_DIR}/@RUNDIR@"
    960  1.1  christos 			failed=1
    961  1.1  christos 		else
    962  1.1  christos 			msg "Removed eroneously created ${DEST_DIR}/@RUNDIR@"
    963  1.1  christos 		fi
    964  1.1  christos 	fi
    965  1.1  christos 	return ${failed}
    966  1.1  christos }
    967  1.1  christos 
    968  1.1  christos #
    969  1.1  christos #	envsys
    970  1.1  christos #
    971  1.1  christos additem envsys "envsys configuration is up to date"
    972  1.1  christos do_envsys()
    973  1.1  christos {
    974  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_envsys fix|check"
    975  1.1  christos 	op="$1"
    976  1.1  christos 	failed=0
    977  1.1  christos 
    978  1.1  christos 	populate_dir "$op" true "${SRC_DIR}/etc" "${DEST_DIR}/etc" 644 \
    979  1.1  christos 		envsys.conf
    980  1.1  christos 	failed=$(( ${failed} + $? ))
    981  1.1  christos 
    982  1.1  christos 	populate_dir "$op" true "${SRC_DIR}/etc/powerd/scripts" \
    983  1.1  christos 		"${DEST_DIR}/etc/powerd/scripts" 555 sensor_battery \
    984  1.1  christos 		sensor_drive sensor_fan sensor_indicator sensor_power \
    985  1.1  christos 		sensor_resistance sensor_temperature sensor_voltage
    986  1.1  christos 	failed=$(( ${failed} + $? ))
    987  1.1  christos 
    988  1.1  christos 	return ${failed}
    989  1.1  christos }
    990  1.1  christos 
    991  1.1  christos #
    992  1.1  christos #	X11 fontconfig
    993  1.1  christos #
    994  1.1  christos additem fontconfig "X11 font configuration is up to date"
    995  1.1  christos do_fontconfig()
    996  1.1  christos {
    997  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_fontconfig fix|check"
    998  1.1  christos 	op="$1"
    999  1.1  christos 	failed=0
   1000  1.1  christos 
   1001  1.1  christos 	# First, check for updates we can handle.
   1002  1.1  christos 	if ! $SOURCEMODE; then
   1003  1.1  christos 		FONTCONFIG_DIR="${SRC_DIR}/etc/fonts/conf.avail"
   1004  1.1  christos 	else
   1005  1.1  christos 		FONTCONFIG_DIR="${XSRC_DIR}/external/mit/fontconfig/dist/conf.d"
   1006  1.1  christos 	fi
   1007  1.1  christos 
   1008  1.1  christos 	if [ ! -d "${FONTCONFIG_DIR}" ]; then
   1009  1.1  christos 		msg "${FONTCONFIG_DIR} is not a directory; skipping check"
   1010  1.1  christos 		return 0
   1011  1.1  christos 	fi
   1012  1.1  christos 
   1013  1.1  christos 	populate_dir "$op" false "${FONTCONFIG_DIR}" "${DEST_DIR}/etc/fonts/conf.avail" 444 \
   1014  1.1  christos 		10-autohint.conf \
   1015  1.1  christos 		10-no-sub-pixel.conf \
   1016  1.1  christos 		10-scale-bitmap-fonts.conf \
   1017  1.1  christos 		10-sub-pixel-bgr.conf \
   1018  1.1  christos 		10-sub-pixel-rgb.conf \
   1019  1.1  christos 		10-sub-pixel-vbgr.conf \
   1020  1.1  christos 		10-sub-pixel-vrgb.conf \
   1021  1.1  christos 		10-unhinted.conf \
   1022  1.1  christos 		11-lcdfilter-default.conf \
   1023  1.1  christos 		11-lcdfilter-legacy.conf \
   1024  1.1  christos 		11-lcdfilter-light.conf \
   1025  1.1  christos 		20-unhint-small-vera.conf \
   1026  1.1  christos 		25-unhint-nonlatin.conf \
   1027  1.1  christos 		30-metric-aliases.conf \
   1028  1.1  christos 		40-nonlatin.conf \
   1029  1.1  christos 		45-generic.conf \
   1030  1.1  christos 		45-latin.conf \
   1031  1.1  christos 		49-sansserif.conf \
   1032  1.1  christos 		50-user.conf \
   1033  1.1  christos 		51-local.conf \
   1034  1.1  christos 		60-generic.conf \
   1035  1.1  christos 		60-latin.conf \
   1036  1.1  christos 		65-fonts-persian.conf \
   1037  1.1  christos 		65-khmer.conf \
   1038  1.1  christos 		65-nonlatin.conf \
   1039  1.1  christos 		69-unifont.conf \
   1040  1.1  christos 		70-no-bitmaps.conf \
   1041  1.1  christos 		70-yes-bitmaps.conf \
   1042  1.1  christos 		80-delicious.conf \
   1043  1.1  christos 		90-synthetic.conf
   1044  1.1  christos 	failed=$(( ${failed} + $? ))
   1045  1.1  christos 
   1046  1.1  christos 	if ! $SOURCEMODE; then
   1047  1.1  christos 		FONTS_DIR="${SRC_DIR}/etc/fonts"
   1048  1.1  christos 	else
   1049  1.1  christos 		FONTS_DIR="${SRC_DIR}/external/mit/xorg/lib/fontconfig/etc"
   1050  1.1  christos 	fi
   1051  1.1  christos 
   1052  1.1  christos 	populate_dir "$op" false "${FONTS_DIR}" "${DEST_DIR}/etc/fonts" 444 \
   1053  1.1  christos 		fonts.conf
   1054  1.1  christos 	failed=$(( ${failed} + $? ))
   1055  1.1  christos 
   1056  1.1  christos 	# We can't modify conf.d easily; someone might have removed a file.
   1057  1.1  christos 
   1058  1.1  christos 	conf_d_failed=0
   1059  1.1  christos 	# Look for old files that need to be deleted.
   1060  1.1  christos 	if [ -f "${DEST_DIR}/etc/fonts/conf.d/10-unhinted.conf" -a \
   1061  1.1  christos 	     -f "${DEST_DIR}/etc/fonts/conf.d/10-autohint.conf" ]; then
   1062  1.1  christos 		conf_d_failed=1
   1063  1.1  christos 		failed=$(( ${failed} + 1 ))
   1064  1.1  christos 	fi
   1065  1.1  christos 
   1066  1.1  christos 	if [ "$conf_d_failed" = 1 ]; then
   1067  1.1  christos 		msg \
   1068  1.1  christos     "Broken fontconfig configuration found; please delete these files"
   1069  1.1  christos 		msg \
   1070  1.1  christos     "in the ${DEST_DIR}/etc/fonts/conf.d/ subdirectory:"
   1071  1.1  christos 		msg \
   1072  1.1  christos     "   10-autohint.conf 10-no-sub-pixel.conf 10-sub-pixel-bgr.conf"
   1073  1.1  christos 		msg \
   1074  1.1  christos     "   10-sub-pixel-rgb.conf 10-sub-pixel-vbgr.conf"
   1075  1.1  christos 		msg \
   1076  1.1  christos     "   10-sub-pixel-vrgb.conf 10-unhinted.conf 25-unhint-nonlatin.conf"
   1077  1.1  christos 		msg \
   1078  1.1  christos     "   65-khmer.conf 70-no-bitmaps.conf 70-yes-bitmaps.conf"
   1079  1.1  christos 		msg \
   1080  1.1  christos     "(This warning only appears if both the 10-unhinted.conf and"
   1081  1.1  christos 		msg \
   1082  1.1  christos     "10-autohint.conf files are present."
   1083  1.1  christos 	fi
   1084  1.1  christos 
   1085  1.1  christos 	return ${failed}
   1086  1.1  christos }
   1087  1.1  christos 
   1088  1.1  christos #
   1089  1.1  christos #	gid
   1090  1.1  christos #
   1091  1.1  christos additem gid "required groups in /etc/group"
   1092  1.1  christos do_gid()
   1093  1.1  christos {
   1094  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_gid  fix|check"
   1095  1.1  christos 
   1096  1.1  christos 	check_ids "$1" groups "${DEST_DIR}/etc/group" \
   1097  1.1  christos 	    "${SRC_DIR}/etc/group" 14 \
   1098  1.1  christos 	    named ntpd sshd SKIP _pflogd _rwhod staff _proxy _timedc \
   1099  1.1  christos 	    _sdpd _httpd _mdnsd _tests _tcpdump _tss _gpio _rtadvd SKIP \
   1100  1.1  christos 	    _unbound _nsd
   1101  1.1  christos }
   1102  1.1  christos 
   1103  1.1  christos #
   1104  1.1  christos #	gpio
   1105  1.1  christos #
   1106  1.1  christos additem gpio "gpio configuration is up to date"
   1107  1.1  christos do_gpio()
   1108  1.1  christos {
   1109  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_gpio fix|check"
   1110  1.1  christos 	op="$1"
   1111  1.1  christos 	failed=0
   1112  1.1  christos 
   1113  1.1  christos 	populate_dir "$op" true "${SRC_DIR}/etc" "${DEST_DIR}/etc" 644 \
   1114  1.1  christos 		gpio.conf
   1115  1.1  christos 	failed=$(( ${failed} + $? ))
   1116  1.1  christos 
   1117  1.1  christos 	return ${failed}
   1118  1.1  christos }
   1119  1.1  christos 
   1120  1.1  christos #
   1121  1.1  christos #	hosts
   1122  1.1  christos #
   1123  1.1  christos additem hosts "/etc/hosts being up to date"
   1124  1.1  christos do_hosts()
   1125  1.1  christos {
   1126  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_hosts  fix|check"
   1127  1.1  christos 
   1128  1.1  christos 	modify_file "$1" "${DEST_DIR}/etc/hosts" "${SCRATCHDIR}/hosts" '
   1129  1.1  christos 		/^(127\.0\.0\.1|::1)[ 	]+[^\.]*$/ {
   1130  1.1  christos 			print $0, "localhost."
   1131  1.1  christos 			next
   1132  1.1  christos 		}
   1133  1.1  christos 		{ print }
   1134  1.1  christos 	'
   1135  1.1  christos 	return $?
   1136  1.1  christos }
   1137  1.1  christos 
   1138  1.1  christos #
   1139  1.1  christos #	iscsi
   1140  1.1  christos #
   1141  1.1  christos additem iscsi "/etc/iscsi is populated"
   1142  1.1  christos do_iscsi()
   1143  1.1  christos {
   1144  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_iscsi  fix|check"
   1145  1.1  christos 
   1146  1.1  christos 	populate_dir "${op}" true \
   1147  1.1  christos 	    "${SRC_DIR}/etc/iscsi" "${DEST_DIR}/etc/iscsi" 600 auths
   1148  1.1  christos 	populate_dir "${op}" true \
   1149  1.1  christos 	    "${SRC_DIR}/etc/iscsi" "${DEST_DIR}/etc/iscsi" 644 targets
   1150  1.1  christos 	return $?
   1151  1.1  christos }
   1152  1.1  christos 
   1153  1.1  christos #
   1154  1.1  christos #	makedev
   1155  1.1  christos #
   1156  1.1  christos additem makedev "/dev/MAKEDEV being up to date"
   1157  1.1  christos do_makedev()
   1158  1.1  christos {
   1159  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_makedev   fix|check"
   1160  1.1  christos 	failed=0
   1161  1.1  christos 
   1162  1.1  christos 	if [ -f "${SRC_DIR}/etc/MAKEDEV.tmpl" ]; then
   1163  1.1  christos 			# generate MAKEDEV from source if source is available
   1164  1.1  christos 		env MACHINE="${MACHINE}" \
   1165  1.1  christos 		    MACHINE_ARCH="${MACHINE_ARCH}" \
   1166  1.1  christos 		    NETBSDSRCDIR="${SRC_DIR}" \
   1167  1.1  christos 		    ${AWK} -f "${SRC_DIR}/etc/MAKEDEV.awk" \
   1168  1.1  christos 		    "${SRC_DIR}/etc/MAKEDEV.tmpl" > "${SCRATCHDIR}/MAKEDEV"
   1169  1.1  christos 	fi
   1170  1.1  christos 
   1171  1.1  christos 	find_file_in_dirlist MAKEDEV "MAKEDEV" \
   1172  1.1  christos 	    "${SCRATCHDIR}" "${SRC_DIR}/dev" \
   1173  1.1  christos 	    || return 1
   1174  1.1  christos 			# ${dir} is set by find_file_in_dirlist()
   1175  1.1  christos 	find_makedev
   1176  1.1  christos 	compare_dir "$1" "${dir}" "${MAKEDEV_DIR}" 555 MAKEDEV
   1177  1.1  christos 	failed=$(( ${failed} + $? ))
   1178  1.1  christos 
   1179  1.1  christos 	find_file_in_dirlist MAKEDEV.local "MAKEDEV.local" \
   1180  1.1  christos 	    "${SRC_DIR}/etc" "${SRC_DIR}/dev" \
   1181  1.1  christos 	    || return 1
   1182  1.1  christos 			# ${dir} is set by find_file_in_dirlist()
   1183  1.1  christos 	compare_dir "$1" "${dir}" "${DEST_DIR}/dev" 555 MAKEDEV.local
   1184  1.1  christos 	failed=$(( ${failed} + $? ))
   1185  1.1  christos 
   1186  1.1  christos 	return ${failed}
   1187  1.1  christos }
   1188  1.1  christos 
   1189  1.1  christos #
   1190  1.1  christos #	motd
   1191  1.1  christos #
   1192  1.1  christos additem motd "contents of motd"
   1193  1.1  christos do_motd()
   1194  1.1  christos {
   1195  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_motd  fix|check"
   1196  1.1  christos 
   1197  1.1  christos 	if ${GREP} -i 'http://www.NetBSD.org/Misc/send-pr.html' \
   1198  1.1  christos 		"${DEST_DIR}/etc/motd" >/dev/null 2>&1 \
   1199  1.1  christos 	    || ${GREP} -i 'http://www.NetBSD.org/support/send-pr.html' \
   1200  1.1  christos 		"${DEST_DIR}/etc/motd" >/dev/null 2>&1
   1201  1.1  christos 	then
   1202  1.1  christos 		tmp1="$(mktemp /tmp/postinstall.motd.XXXXXXXX)"
   1203  1.1  christos 		tmp2="$(mktemp /tmp/postinstall.motd.XXXXXXXX)"
   1204  1.1  christos 		${SED} '1,2d' <"${SRC_DIR}/etc/motd" >"${tmp1}"
   1205  1.1  christos 		${SED} '1,2d' <"${DEST_DIR}/etc/motd" >"${tmp2}"
   1206  1.1  christos 
   1207  1.1  christos 		if [ "$1" = check ]; then
   1208  1.1  christos 			cmp -s "${tmp1}" "${tmp2}"
   1209  1.1  christos 			result=$?
   1210  1.1  christos 			if [ "${result}" -ne 0 ]; then
   1211  1.1  christos 				msg \
   1212  1.1  christos     "Bug reporting messages do not seem to match the installed release"
   1213  1.1  christos 			fi
   1214  1.1  christos 		else
   1215  1.1  christos 			head -n 2 "${DEST_DIR}/etc/motd" >"${tmp1}"
   1216  1.1  christos 			${SED} '1,2d' <"${SRC_DIR}/etc/motd" >>"${tmp1}"
   1217  1.1  christos 			cp "${tmp1}" "${DEST_DIR}/etc/motd"
   1218  1.1  christos 			result=0
   1219  1.1  christos 		fi
   1220  1.1  christos 
   1221  1.1  christos 		rm -f "${tmp1}" "${tmp2}"
   1222  1.1  christos 	else
   1223  1.1  christos 		result=0
   1224  1.1  christos 	fi
   1225  1.1  christos 
   1226  1.1  christos 	return ${result}
   1227  1.1  christos }
   1228  1.1  christos 
   1229  1.1  christos #
   1230  1.1  christos #	mtree
   1231  1.1  christos #
   1232  1.1  christos additem mtree "/etc/mtree/ being up to date"
   1233  1.1  christos do_mtree()
   1234  1.1  christos {
   1235  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_mtree  fix|check"
   1236  1.1  christos 	failed=0
   1237  1.1  christos 
   1238  1.1  christos 	compare_dir "$1" "${SRC_DIR}/etc/mtree" "${DEST_DIR}/etc/mtree" 444 special
   1239  1.1  christos 	failed=$(( ${failed} + $? ))
   1240  1.1  christos 
   1241  1.1  christos 	if ! $SOURCEMODE; then
   1242  1.1  christos 		MTREE_DIR="${SRC_DIR}/etc/mtree"
   1243  1.1  christos 	else
   1244  1.1  christos 		/bin/rm -rf "${SCRATCHDIR}/obj"
   1245  1.1  christos 		mkdir "${SCRATCHDIR}/obj"
   1246  1.1  christos 		${MAKE} -s -C "${SRC_DIR}/etc/mtree" TOOL_AWK="${AWK}" \
   1247  1.1  christos 		    MAKEOBJDIR="${SCRATCHDIR}/obj" emit_dist_file > \
   1248  1.1  christos 		    "${SCRATCHDIR}/NetBSD.dist"
   1249  1.1  christos 		MTREE_DIR="${SCRATCHDIR}"
   1250  1.1  christos 		/bin/rm -rf "${SCRATCHDIR}/obj"
   1251  1.1  christos 	fi
   1252  1.1  christos 	compare_dir "$1" "${MTREE_DIR}" "${DEST_DIR}/etc/mtree" 444 NetBSD.dist
   1253  1.1  christos 	failed=$(( ${failed} + $? ))
   1254  1.1  christos 
   1255  1.1  christos 	return ${failed}
   1256  1.1  christos }
   1257  1.1  christos 
   1258  1.1  christos #
   1259  1.1  christos #	named
   1260  1.1  christos #
   1261  1.1  christos additem named "named configuration update"
   1262  1.1  christos do_named()
   1263  1.1  christos {
   1264  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_named  fix|check"
   1265  1.1  christos 	op="$1"
   1266  1.1  christos 
   1267  1.1  christos 	move_file "${op}" \
   1268  1.1  christos 		"${DEST_DIR}/etc/namedb/named.conf" \
   1269  1.1  christos 		"${DEST_DIR}/etc/named.conf"
   1270  1.1  christos 
   1271  1.1  christos 	compare_dir "${op}" "${SRC_DIR}/etc/namedb" "${DEST_DIR}/etc/namedb" \
   1272  1.1  christos 		644 \
   1273  1.1  christos 		root.cache
   1274  1.1  christos }
   1275  1.1  christos 
   1276  1.1  christos #
   1277  1.1  christos #	pam
   1278  1.1  christos #
   1279  1.1  christos additem pam "/etc/pam.d is populated"
   1280  1.1  christos do_pam()
   1281  1.1  christos {
   1282  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_pam  fix|check"
   1283  1.1  christos 	op="$1"
   1284  1.1  christos 	failed=0
   1285  1.1  christos 
   1286  1.1  christos 	populate_dir "${op}" true "${SRC_DIR}/etc/pam.d" \
   1287  1.1  christos 		"${DEST_DIR}/etc/pam.d" 644 \
   1288  1.1  christos 		README cron display_manager ftpd gdm imap kde login other \
   1289  1.1  christos 		passwd pop3 ppp racoon rexecd rsh sshd su system telnetd \
   1290  1.1  christos 		xdm xserver
   1291  1.1  christos 
   1292  1.1  christos 	failed=$(( ${failed} + $? ))
   1293  1.1  christos 
   1294  1.1  christos 	return ${failed}
   1295  1.1  christos }
   1296  1.1  christos 
   1297  1.1  christos #
   1298  1.1  christos #	periodic
   1299  1.1  christos #
   1300  1.1  christos additem periodic "/etc/{daily,weekly,monthly,security} being up to date"
   1301  1.1  christos do_periodic()
   1302  1.1  christos {
   1303  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_periodic  fix|check"
   1304  1.1  christos 
   1305  1.1  christos 	compare_dir "$1" "${SRC_DIR}/etc" "${DEST_DIR}/etc" 644 \
   1306  1.1  christos 		daily weekly monthly security
   1307  1.1  christos }
   1308  1.1  christos 
   1309  1.1  christos #
   1310  1.1  christos #	pf
   1311  1.1  christos #
   1312  1.1  christos additem pf "pf configuration being up to date"
   1313  1.1  christos do_pf()
   1314  1.1  christos {
   1315  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_pf  fix|check"
   1316  1.1  christos 	op="$1"
   1317  1.1  christos 	failed=0
   1318  1.1  christos 
   1319  1.1  christos 	find_file_in_dirlist pf.os "pf.os" \
   1320  1.1  christos 	    "${SRC_DIR}/dist/pf/etc" "${SRC_DIR}/etc" \
   1321  1.1  christos 	    || return 1
   1322  1.1  christos 			# ${dir} is set by find_file_in_dirlist()
   1323  1.1  christos 	populate_dir "${op}" true \
   1324  1.1  christos 	    "${dir}" "${DEST_DIR}/etc" 644 \
   1325  1.1  christos 	    pf.conf
   1326  1.1  christos 	failed=$(( ${failed} + $? ))
   1327  1.1  christos 
   1328  1.1  christos 	compare_dir "${op}" "${dir}" "${DEST_DIR}/etc" 444 pf.os
   1329  1.1  christos 	failed=$(( ${failed} + $? ))
   1330  1.1  christos 
   1331  1.1  christos 	return ${failed}
   1332  1.1  christos }
   1333  1.1  christos 
   1334  1.1  christos #
   1335  1.1  christos #	pwd_mkdb
   1336  1.1  christos #
   1337  1.1  christos additem pwd_mkdb "passwd database version"
   1338  1.1  christos do_pwd_mkdb()
   1339  1.1  christos {
   1340  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_pwd_mkdb  fix|check"
   1341  1.1  christos 	op="$1"
   1342  1.1  christos 	failed=0
   1343  1.1  christos 
   1344  1.1  christos 	# XXX Ideally, we should figure out the endianness of the
   1345  1.1  christos 	# target machine, and add "-E B"/"-E L" to the db(1) flags,
   1346  1.1  christos 	# and "-B"/"-L" to the pwd_mkdb(8) flags if the target is not
   1347  1.1  christos 	# the same as the host machine.  It probably doesn't matter,
   1348  1.1  christos 	# because we don't expect "postinstall fix pwd_mkdb" to be
   1349  1.1  christos 	# invoked during a cross build.
   1350  1.1  christos 
   1351  1.1  christos 	set -- $(${DB} -q -Sb -Ub -To -N hash "${DEST_DIR}/etc/pwd.db" \
   1352  1.1  christos 		'VERSION\0')
   1353  1.1  christos 	case "$2" in
   1354  1.1  christos 	'\001\000\000\000') return 0 ;; # version 1, little-endian
   1355  1.1  christos 	'\000\000\000\001') return 0 ;; # version 1, big-endian
   1356  1.1  christos 	esac
   1357  1.1  christos 
   1358  1.1  christos 	if [ "${op}" = "check" ]; then
   1359  1.1  christos 		msg "Update format of passwd database"
   1360  1.1  christos 		failed=1
   1361  1.1  christos 	elif ! ${PWD_MKDB} -V 1 -d "${DEST_DIR:-/}" \
   1362  1.1  christos 			"${DEST_DIR}/etc/master.passwd";
   1363  1.1  christos 	then
   1364  1.1  christos 		msg "Can't update format of passwd database"
   1365  1.1  christos 		failed=1
   1366  1.1  christos 	else
   1367  1.1  christos 		msg "Updated format of passwd database"
   1368  1.1  christos 	fi
   1369  1.1  christos 
   1370  1.1  christos 	return ${failed}
   1371  1.1  christos }
   1372  1.1  christos 
   1373  1.1  christos #
   1374  1.1  christos #	rc
   1375  1.1  christos #
   1376  1.1  christos 
   1377  1.1  christos rc_obsolete_vars="
   1378  1.1  christos amd amd_master
   1379  1.1  christos btcontrol btcontrol_devices
   1380  1.1  christos critical_filesystems critical_filesystems_beforenet
   1381  1.1  christos mountcritlocal mountcritremote
   1382  1.1  christos network ip6forwarding
   1383  1.1  christos network nfsiod_flags
   1384  1.1  christos sdpd sdpd_control
   1385  1.1  christos sdpd sdpd_groupname
   1386  1.1  christos sdpd sdpd_username
   1387  1.1  christos sysctl defcorename
   1388  1.1  christos "
   1389  1.1  christos 
   1390  1.1  christos update_rc()
   1391  1.1  christos {
   1392  1.1  christos 	local op=$1
   1393  1.1  christos 	local dir=$2
   1394  1.1  christos 	local name=$3
   1395  1.1  christos 	local bindir=$4
   1396  1.1  christos 	local rcdir=$5
   1397  1.1  christos 
   1398  1.1  christos 	if [ ! -x "${DEST_DIR}/${bindir}/${name}" ]; then
   1399  1.1  christos 		return 0
   1400  1.1  christos 	fi
   1401  1.1  christos 
   1402  1.1  christos 	if ! find_file_in_dirlist "${name}" "${name}" \
   1403  1.1  christos 	    "${rcdir}" "${SRC_DIR}/etc/rc.d"; then
   1404  1.1  christos 		return 1
   1405  1.1  christos 	fi
   1406  1.1  christos 	populate_dir "${op}" false "${dir}" "${DEST_DIR}/etc/rc.d" 555 "${name}"
   1407  1.1  christos 	return $?
   1408  1.1  christos }
   1409  1.1  christos 
   1410  1.1  christos # select non-obsolete files in a sets file
   1411  1.1  christos # $1: directory pattern
   1412  1.1  christos # $2: file pattern
   1413  1.1  christos # $3: filename
   1414  1.1  christos select_set_files()
   1415  1.1  christos {
   1416  1.1  christos 	local qdir="$(echo $1 | ${SED} -e s@/@\\\\/@g -e s/\\./\\\\./g)"
   1417  1.1  christos 	${SED} -n -e /obsolete/d \
   1418  1.1  christos 	    -e "/^\.${qdir}/s@^.$2[[:space:]].*@\1@p" $3
   1419  1.1  christos }
   1420  1.1  christos 
   1421  1.1  christos exclude()
   1422  1.1  christos {
   1423  1.1  christos 	if [ -z "$*" ]; then
   1424  1.1  christos 		cat
   1425  1.1  christos 	else
   1426  1.1  christos 		eval ${GREP} -v -E "'(^$(echo $* | sed -e 's/ /|^/'g))'"
   1427  1.1  christos 	fi
   1428  1.1  christos }
   1429  1.1  christos 
   1430  1.1  christos getetcsets()
   1431  1.1  christos {
   1432  1.1  christos 	if $SOURCEMODE; then
   1433  1.1  christos 		echo "${SRC_DIR}/distrib/sets/lists/etc/mi"
   1434  1.1  christos 	else
   1435  1.1  christos 		echo "${SRC_DIR}/etc/mtree/set.etc"
   1436  1.1  christos 	fi
   1437  1.1  christos }
   1438  1.1  christos 
   1439  1.1  christos additem rc "/etc/rc* and /etc/rc.d/ being up to date"
   1440  1.1  christos do_rc()
   1441  1.1  christos {
   1442  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_rc  fix|check"
   1443  1.1  christos 	local op="$1"
   1444  1.1  christos 	local failed=0
   1445  1.1  christos 	local generated_scripts=""
   1446  1.1  christos 	local etcsets=$(getetcsets)
   1447  1.1  christos 	if [ "${MKX11}" != "no" ]; then
   1448  1.1  christos 		generated_scripts="${generated_scripts} xdm xfs"
   1449  1.1  christos 	fi
   1450  1.1  christos 
   1451  1.1  christos 	# Directories of external programs that have rc files (in bsd)
   1452  1.1  christos 	local rc_external_files="blacklist nsd unbound"
   1453  1.1  christos 
   1454  1.1  christos 	# rc* files in /etc/
   1455  1.1  christos 	local rc_444_files="$(select_set_files /etc/rc \
   1456  1.1  christos 	    "/etc/\(rc[^[:space:]/]*\)" ${etcsets})"
   1457  1.1  christos 
   1458  1.1  christos 	# no-obsolete rc files in /etc/rc.d
   1459  1.1  christos 	local rc_555_files="$(select_set_files /etc/rc.d/ \
   1460  1.1  christos 	    "/etc/rc\.d/\([^[:space:]]*\)" ${etcsets} | \
   1461  1.1  christos 	    exclude ${rc_external_files})"
   1462  1.1  christos 
   1463  1.1  christos 	# obsolete rc file in /etc/rc.d
   1464  1.1  christos 	local rc_obsolete_files="$(${SED} -n \
   1465  1.1  christos 	    -e '/obsolete/s@./etc/rc.d/\([^[:space:]]*\)[[:space:]].*@\1@p' \
   1466  1.1  christos 	    ${etcsets})"
   1467  1.1  christos 
   1468  1.1  christos 	compare_dir "${op}" "${SRC_DIR}/etc" "${DEST_DIR}/etc" 644 \
   1469  1.1  christos 		${rc_644_files}
   1470  1.1  christos 	failed=$(( ${failed} + $? ))
   1471  1.1  christos 
   1472  1.1  christos 	local extra_scripts
   1473  1.1  christos 	if ! $SOURCEMODE; then
   1474  1.1  christos 		extra_scripts="${generated_scripts}"
   1475  1.1  christos 	else
   1476  1.1  christos 		extra_scripts=""
   1477  1.1  christos 	fi
   1478  1.1  christos 
   1479  1.1  christos 	compare_dir "${op}" "${SRC_DIR}/etc/rc.d" "${DEST_DIR}/etc/rc.d" 555 \
   1480  1.1  christos 		${rc_555_files} \
   1481  1.1  christos 		${extra_scripts}
   1482  1.1  christos 	failed=$(( ${failed} + $? ))
   1483  1.1  christos 
   1484  1.1  christos 	for i in ${rc_external_files}; do
   1485  1.1  christos 	    local rc_file 
   1486  1.1  christos 	    case $i in
   1487  1.1  christos 	    *d) rc_file=${i};;
   1488  1.1  christos 	    *)	rc_file=${i}d;;
   1489  1.1  christos 	    esac
   1490  1.1  christos 		
   1491  1.1  christos 	    update_rc "${op}" "${dir}" ${rc_file} /sbin \
   1492  1.1  christos 		"${SRC_DIR}/external/bsd/$i/etc/rc.d"
   1493  1.1  christos 	    failed=$(( ${failed} + $? ))
   1494  1.1  christos 	done
   1495  1.1  christos 
   1496  1.1  christos 	if $SOURCEMODE && [ -n "${generated_scripts}" ]; then
   1497  1.1  christos 		# generate scripts
   1498  1.1  christos 		mkdir "${SCRATCHDIR}/rc"
   1499  1.1  christos 		for f in ${generated_scripts}; do
   1500  1.1  christos 			${SED} -e "s,@X11ROOTDIR@,${X11ROOTDIR},g" \
   1501  1.1  christos 			    < "${SRC_DIR}/etc/rc.d/${f}.in" \
   1502  1.1  christos 			    > "${SCRATCHDIR}/rc/${f}"
   1503  1.1  christos 		done
   1504  1.1  christos 		compare_dir "${op}" "${SCRATCHDIR}/rc" \
   1505  1.1  christos 		    "${DEST_DIR}/etc/rc.d" 555 \
   1506  1.1  christos 		    ${generated_scripts}
   1507  1.1  christos 		failed=$(( ${failed} + $? ))
   1508  1.1  christos 	fi
   1509  1.1  christos 
   1510  1.1  christos 		# check for obsolete rc.d files
   1511  1.1  christos 	for f in ${rc_obsolete_files}; do
   1512  1.1  christos 		local fd="/etc/rc.d/${f}"
   1513  1.1  christos 		[ -e "${DEST_DIR}${fd}" ] && echo "${fd}"
   1514  1.1  christos 	done | obsolete_paths "${op}"
   1515  1.1  christos 	failed=$(( ${failed} + $? ))
   1516  1.1  christos 
   1517  1.1  christos 		# check for obsolete rc.conf(5) variables
   1518  1.1  christos 	set -- ${rc_obsolete_vars}
   1519  1.1  christos 	while [ $# -gt 1 ]; do
   1520  1.1  christos 		if rcconf_is_set "${op}" "$1" "$2" 1; then
   1521  1.1  christos 			failed=1
   1522  1.1  christos 		fi
   1523  1.1  christos 		shift 2
   1524  1.1  christos 	done
   1525  1.1  christos 
   1526  1.1  christos 	return ${failed}
   1527  1.1  christos }
   1528  1.1  christos 
   1529  1.1  christos #
   1530  1.1  christos #	sendmail
   1531  1.1  christos #
   1532  1.1  christos adddisableditem sendmail "remove obsolete sendmail configuration files and scripts"
   1533  1.1  christos do_sendmail()
   1534  1.1  christos {
   1535  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_sendmail  fix|check"
   1536  1.1  christos 	op="$1"
   1537  1.1  christos 	failed=0
   1538  1.1  christos 
   1539  1.1  christos 	# Don't complain if the "sendmail" package is installed because the
   1540  1.1  christos 	# files might still be in use.
   1541  1.1  christos 	if /usr/sbin/pkg_info -qe sendmail >/dev/null 2>&1; then
   1542  1.1  christos 		return 0
   1543  1.1  christos 	fi
   1544  1.1  christos 
   1545  1.1  christos 	for f in /etc/mail/helpfile /etc/mail/local-host-names \
   1546  1.1  christos 	    /etc/mail/sendmail.cf /etc/mail/submit.cf /etc/rc.d/sendmail \
   1547  1.1  christos 	    /etc/rc.d/smmsp /usr/share/misc/sendmail.hf \
   1548  1.1  christos 	    $( ( find "${DEST_DIR}/usr/share/sendmail" -type f ; \
   1549  1.1  christos 	         find "${DEST_DIR}/usr/share/sendmail" -type d \
   1550  1.1  christos 	       ) | unprefix "${DEST_DIR}" ) \
   1551  1.1  christos 	    /var/log/sendmail.st \
   1552  1.1  christos 	    /var/spool/clientmqueue \
   1553  1.1  christos 	    /var/spool/mqueue
   1554  1.1  christos 	do
   1555  1.1  christos 		[ -e "${DEST_DIR}${f}" ] && echo "${f}"
   1556  1.1  christos 	done | obsolete_paths "${op}"
   1557  1.1  christos 	failed=$(( ${failed} + $? ))
   1558  1.1  christos 
   1559  1.1  christos 	return ${failed}
   1560  1.1  christos }
   1561  1.1  christos 
   1562  1.1  christos #
   1563  1.1  christos #	mailerconf
   1564  1.1  christos #
   1565  1.1  christos adddisableditem mailerconf "update /etc/mailer.conf after sendmail removal"
   1566  1.1  christos do_mailerconf()
   1567  1.1  christos {
   1568  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_mailterconf  fix|check"
   1569  1.1  christos 	op="$1"
   1570  1.1  christos 
   1571  1.1  christos 	failed=0
   1572  1.1  christos 	mta_path="$(${AWK} '/^sendmail[ \t]/{print$2}' \
   1573  1.1  christos 		"${DEST_DIR}/etc/mailer.conf")"
   1574  1.1  christos 	old_sendmail_path="/usr/libexec/sendmail/sendmail"
   1575  1.1  christos 	if [ "${mta_path}" = "${old_sendmail_path}" ]; then
   1576  1.1  christos 	    if [ "$op" = check ]; then
   1577  1.1  christos 		msg "mailer.conf points to obsolete ${old_sendmail_path}"
   1578  1.1  christos 		failed=1;
   1579  1.1  christos 	    else
   1580  1.1  christos 		populate_dir "${op}" false \
   1581  1.1  christos 		"${SRC_DIR}/etc" "${DEST_DIR}/etc" 644 mailer.conf
   1582  1.1  christos 		failed=$?
   1583  1.1  christos 	    fi
   1584  1.1  christos 	fi
   1585  1.1  christos 
   1586  1.1  christos 	return ${failed}
   1587  1.1  christos }
   1588  1.1  christos 
   1589  1.1  christos #
   1590  1.1  christos #	ssh
   1591  1.1  christos #
   1592  1.1  christos additem ssh "ssh configuration update"
   1593  1.1  christos do_ssh()
   1594  1.1  christos {
   1595  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_ssh  fix|check"
   1596  1.1  christos 	op="$1"
   1597  1.1  christos 
   1598  1.1  christos 	failed=0
   1599  1.1  christos 	_etcssh="${DEST_DIR}/etc/ssh"
   1600  1.1  christos 	if ! check_dir "${op}" "${_etcssh}" 755; then
   1601  1.1  christos 		failed=1
   1602  1.1  christos 	fi
   1603  1.1  christos 
   1604  1.1  christos 	if [ ${failed} -eq 0 ]; then
   1605  1.1  christos 		for f in \
   1606  1.1  christos 			    ssh_known_hosts ssh_known_hosts2 \
   1607  1.1  christos 			    ssh_host_dsa_key ssh_host_dsa_key.pub \
   1608  1.1  christos 			    ssh_host_rsa_key ssh_host_rsa_key.pub \
   1609  1.1  christos 			    ssh_host_key ssh_host_key.pub \
   1610  1.1  christos 		    ; do
   1611  1.1  christos 			if ! move_file "${op}" \
   1612  1.1  christos 			    "${DEST_DIR}/etc/${f}" "${_etcssh}/${f}" ; then
   1613  1.1  christos 				failed=1
   1614  1.1  christos 			fi
   1615  1.1  christos 		done
   1616  1.1  christos 		for f in sshd.conf ssh.conf ; do
   1617  1.1  christos 				# /etc/ssh/ssh{,d}.conf -> ssh{,d}_config
   1618  1.1  christos 				#
   1619  1.1  christos 			if ! move_file "${op}" \
   1620  1.1  christos 			    "${_etcssh}/${f}" "${_etcssh}/${f%.conf}_config" ;
   1621  1.1  christos 			then
   1622  1.1  christos 				failed=1
   1623  1.1  christos 			fi
   1624  1.1  christos 				# /etc/ssh{,d}.conf -> /etc/ssh/ssh{,d}_config
   1625  1.1  christos 				#
   1626  1.1  christos 			if ! move_file "${op}" \
   1627  1.1  christos 			    "${DEST_DIR}/etc/${f}" \
   1628  1.1  christos 			    "${_etcssh}/${f%.conf}_config" ;
   1629  1.1  christos 			then
   1630  1.1  christos 				failed=1
   1631  1.1  christos 			fi
   1632  1.1  christos 		done
   1633  1.1  christos 	fi
   1634  1.1  christos 
   1635  1.1  christos 	sshdconf=""
   1636  1.1  christos 	for f in \
   1637  1.1  christos 	    "${_etcssh}/sshd_config" \
   1638  1.1  christos 	    "${_etcssh}/sshd.conf" \
   1639  1.1  christos 	    "${DEST_DIR}/etc/sshd.conf" ; do
   1640  1.1  christos 		if [ -f "${f}" ]; then
   1641  1.1  christos 			sshdconf="${f}"
   1642  1.1  christos 			break
   1643  1.1  christos 		fi
   1644  1.1  christos 	done
   1645  1.1  christos 	if [ -n "${sshdconf}" ]; then
   1646  1.1  christos 		modify_file "${op}" "${sshdconf}" "${SCRATCHDIR}/sshdconf" '
   1647  1.1  christos 			/^[^#$]/ {
   1648  1.1  christos 				kw = tolower($1)
   1649  1.1  christos 				if (kw == "hostkey" &&
   1650  1.1  christos 				    $2 ~ /^\/etc\/+ssh_host(_[dr]sa)?_key$/ ) {
   1651  1.1  christos 					sub(/\/etc\/+/, "/etc/ssh/")
   1652  1.1  christos 				}
   1653  1.1  christos 				if (kw == "rhostsauthentication" ||
   1654  1.1  christos 				    kw == "verifyreversemapping" ||
   1655  1.1  christos 				    kw == "reversemappingcheck") {
   1656  1.1  christos 					sub(/^/, "# DEPRECATED:\t")
   1657  1.1  christos 				}
   1658  1.1  christos 			}
   1659  1.1  christos 			{ print }
   1660  1.1  christos 		'
   1661  1.1  christos 		failed=$(( ${failed} + $? ))
   1662  1.1  christos 	fi
   1663  1.1  christos 
   1664  1.1  christos 	if ! find_file_in_dirlist moduli "moduli" \
   1665  1.1  christos 	    "${SRC_DIR}/crypto/external/bsd/openssh/dist" "${SRC_DIR}/etc" ; then
   1666  1.1  christos 		failed=1
   1667  1.1  christos 			# ${dir} is set by find_file_in_dirlist()
   1668  1.1  christos 	elif ! compare_dir "${op}" "${dir}" "${DEST_DIR}/etc" 444 moduli; then
   1669  1.1  christos 		failed=1
   1670  1.1  christos 	fi
   1671  1.1  christos 
   1672  1.1  christos 	if ! check_dir "${op}" "${DEST_DIR}/var/chroot/sshd" 755 ; then
   1673  1.1  christos 		failed=1
   1674  1.1  christos 	fi
   1675  1.1  christos 
   1676  1.1  christos 	if rcconf_is_set "${op}" sshd sshd_conf_dir 1; then
   1677  1.1  christos 		failed=1
   1678  1.1  christos 	fi
   1679  1.1  christos 
   1680  1.1  christos 	return ${failed}
   1681  1.1  christos }
   1682  1.1  christos 
   1683  1.1  christos #
   1684  1.1  christos #	wscons
   1685  1.1  christos #
   1686  1.1  christos additem wscons "wscons configuration file update"
   1687  1.1  christos do_wscons()
   1688  1.1  christos {
   1689  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_wscons  fix|check"
   1690  1.1  christos 	op="$1"
   1691  1.1  christos 
   1692  1.1  christos 	[ -f "${DEST_DIR}/etc/wscons.conf" ] || return 0
   1693  1.1  christos 
   1694  1.1  christos 	failed=0
   1695  1.1  christos 	notfixed=""
   1696  1.1  christos 	if [ "${op}" = "fix" ]; then
   1697  1.1  christos 		notfixed="${NOT_FIXED}"
   1698  1.1  christos 	fi
   1699  1.1  christos 	while read _type _arg1 _rest; do
   1700  1.1  christos 		if [ "${_type}" = "mux" -a "${_arg1}" = "1" ]; then
   1701  1.1  christos 			msg \
   1702  1.1  christos     "Obsolete wscons.conf(5) entry \""${_type} ${_arg1}"\" found.${notfixed}"
   1703  1.1  christos 			failed=1
   1704  1.1  christos 		fi
   1705  1.1  christos 	done < "${DEST_DIR}/etc/wscons.conf"
   1706  1.1  christos 
   1707  1.1  christos 	return ${failed}
   1708  1.1  christos }
   1709  1.1  christos 
   1710  1.1  christos #
   1711  1.1  christos #	X11
   1712  1.1  christos #
   1713  1.1  christos additem x11 "x11 configuration update"
   1714  1.1  christos do_x11()
   1715  1.1  christos {
   1716  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_x11  fix|check"
   1717  1.1  christos 	op="$1"
   1718  1.1  christos 
   1719  1.1  christos 	failed=0
   1720  1.1  christos 	_etcx11="${DEST_DIR}/etc/X11"
   1721  1.1  christos 	if [ ! -d "${_etcx11}" ]; then
   1722  1.1  christos 		msg "${_etcx11} is not a directory; skipping check"
   1723  1.1  christos 		return 0
   1724  1.1  christos 	fi
   1725  1.1  christos 	if [ -d "${DEST_DIR}/usr/X11R6/." ]
   1726  1.1  christos 	then
   1727  1.1  christos 		_libx11="${DEST_DIR}/usr/X11R6/lib/X11"
   1728  1.1  christos 		if [ ! -d "${_libx11}" ]; then
   1729  1.1  christos 			msg "${_libx11} is not a directory; skipping check"
   1730  1.1  christos 			return 0
   1731  1.1  christos 		fi
   1732  1.1  christos 	fi
   1733  1.1  christos 
   1734  1.1  christos 	_notfixed=""
   1735  1.1  christos 	if [ "${op}" = "fix" ]; then
   1736  1.1  christos 		_notfixed="${NOT_FIXED}"
   1737  1.1  christos 	fi
   1738  1.1  christos 
   1739  1.1  christos 	for d in \
   1740  1.1  christos 		    fs lbxproxy proxymngr rstart twm xdm xinit xserver xsm \
   1741  1.1  christos 	    ; do
   1742  1.1  christos 		sd="${_libx11}/${d}"
   1743  1.1  christos 		ld="/etc/X11/${d}"
   1744  1.1  christos 		td="${DEST_DIR}${ld}"
   1745  1.1  christos 		if [ -h "${sd}" ]; then
   1746  1.1  christos 			continue
   1747  1.1  christos 		elif [ -d "${sd}" ]; then
   1748  1.1  christos 			tdfiles="$(find "${td}" \! -type d)"
   1749  1.1  christos 			if [ -n "${tdfiles}" ]; then
   1750  1.1  christos 				msg "${sd} exists yet ${td} already" \
   1751  1.1  christos 				    "contains files${_notfixed}"
   1752  1.1  christos 			else
   1753  1.1  christos 				msg "Migrate ${sd} to ${td}${_notfixed}"
   1754  1.1  christos 			fi
   1755  1.1  christos 			failed=1
   1756  1.1  christos 		elif [ -e "${sd}" ]; then
   1757  1.1  christos 			msg "Unexpected file ${sd}${_notfixed}"
   1758  1.1  christos 			continue
   1759  1.1  christos 		else
   1760  1.1  christos 			continue
   1761  1.1  christos 		fi
   1762  1.1  christos 	done
   1763  1.1  christos 
   1764  1.1  christos 	# check if xdm resources have been updated
   1765  1.1  christos 	if [ -r ${_etcx11}/xdm/Xresources ] && \
   1766  1.1  christos 	    ! ${GREP} 'inpColor:' ${_etcx11}/xdm/Xresources > /dev/null; then
   1767  1.1  christos 		msg "Update ${_etcx11}/xdm/Xresources${_notfixed}"
   1768  1.1  christos 		failed=1
   1769  1.1  christos 	fi
   1770  1.1  christos 
   1771  1.1  christos 	return ${failed}
   1772  1.1  christos }
   1773  1.1  christos 
   1774  1.1  christos #
   1775  1.1  christos #	xkb
   1776  1.1  christos #
   1777  1.1  christos # /usr/X11R7/lib/X11/xkb/symbols/pc used to be a directory, but changed
   1778  1.1  christos # to a file on 2009-06-12.  Fixing this requires removing the directory
   1779  1.1  christos # (which we can do) and re-extracting the xbase set (which we can't do),
   1780  1.1  christos # or at least adding that one file (which we may be able to do if X11SRCDIR
   1781  1.1  christos # is available).
   1782  1.1  christos #
   1783  1.1  christos additem xkb "clean up for xkbdata to xkeyboard-config upgrade"
   1784  1.1  christos do_xkb()
   1785  1.1  christos {
   1786  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_xkb  fix|check"
   1787  1.1  christos 	op="$1"
   1788  1.1  christos 	failed=0
   1789  1.1  christos 
   1790  1.1  christos 	pcpath="/usr/X11R7/lib/X11/xkb/symbols/pc"
   1791  1.1  christos 	pcsrcdir="${X11SRCDIR}/external/mit/xkeyboard-config/dist/symbols"
   1792  1.1  christos 
   1793  1.1  christos 	filemsg="\
   1794  1.1  christos ${pcpath} was a directory, should be a file.
   1795  1.1  christos     To fix, extract the xbase set again."
   1796  1.1  christos 
   1797  1.1  christos 	_notfixed=""
   1798  1.1  christos 	if [ "${op}" = "fix" ]; then
   1799  1.1  christos 		_notfixed="${NOT_FIXED}"
   1800  1.1  christos 	fi
   1801  1.1  christos 
   1802  1.1  christos 	if [ ! -d "${DEST_DIR}${pcpath}" ]; then
   1803  1.1  christos 		return 0
   1804  1.1  christos 	fi
   1805  1.1  christos 
   1806  1.1  christos 	# Delete obsolete files in the directory, and the directory
   1807  1.1  christos 	# itself.  If the directory contains unexpected extra files
   1808  1.1  christos 	# then it will not be deleted.
   1809  1.1  christos 	( [ -f "${DEST_DIR}"/var/db/obsolete/xbase ] \
   1810  1.1  christos 	    &&  ${SORT} -ru "${DEST_DIR}"/var/db/obsolete/xbase \
   1811  1.1  christos 	    | ${GREP} -E "^\\.?${pcpath}/" ;
   1812  1.1  christos 	    echo "${pcpath}" ) \
   1813  1.1  christos 	| obsolete_paths "${op}"
   1814  1.1  christos 	failed=$(( ${failed} + $? ))
   1815  1.1  christos 
   1816  1.1  christos 	# If the directory was removed above, then try to replace it with
   1817  1.1  christos 	# a file.
   1818  1.1  christos 	if [ -d "${DEST_DIR}${pcpath}" ]; then
   1819  1.1  christos 		msg "${filemsg}${_notfixed}"
   1820  1.1  christos 		failed=$(( ${failed} + 1 ))
   1821  1.1  christos 	else
   1822  1.1  christos 		if ! find_file_in_dirlist pc "${pcpath}" \
   1823  1.1  christos 			"${pcsrcdir}" "${SRC_DIR}${pcpath%/*}"
   1824  1.1  christos 		then
   1825  1.1  christos 			msg "${filemsg}${_notfixed}"
   1826  1.1  christos 			failed=$(( ${failed} + 1 ))
   1827  1.1  christos 		else
   1828  1.1  christos 			# ${dir} is set by find_file_in_dirlist()
   1829  1.1  christos 			populate_dir "${op}" true \
   1830  1.1  christos 				"${dir}" "${DEST_DIR}${pcpath%/*}" 444 \
   1831  1.1  christos 				pc
   1832  1.1  christos 			failed=$(( ${failed} + $? ))
   1833  1.1  christos 		fi
   1834  1.1  christos 	fi
   1835  1.1  christos 
   1836  1.1  christos 	return $failed
   1837  1.1  christos }
   1838  1.1  christos 
   1839  1.1  christos #
   1840  1.1  christos #	uid
   1841  1.1  christos #
   1842  1.1  christos additem uid "required users in /etc/master.passwd"
   1843  1.1  christos do_uid()
   1844  1.1  christos {
   1845  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_uid  fix|check"
   1846  1.1  christos 
   1847  1.1  christos 	check_ids "$1" users "${DEST_DIR}/etc/master.passwd" \
   1848  1.1  christos 	    "${SRC_DIR}/etc/master.passwd" 12 \
   1849  1.1  christos 	    postfix SKIP named ntpd sshd SKIP _pflogd _rwhod SKIP _proxy \
   1850  1.1  christos 	    _timedc _sdpd _httpd _mdnsd _tests _tcpdump _tss SKIP _rtadvd \
   1851  1.1  christos 	    SKIP _unbound _nsd
   1852  1.1  christos }
   1853  1.1  christos 
   1854  1.1  christos 
   1855  1.1  christos #
   1856  1.1  christos #	varrwho
   1857  1.1  christos #
   1858  1.1  christos additem varrwho "required ownership of files in /var/rwho"
   1859  1.1  christos do_varrwho()
   1860  1.1  christos {
   1861  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_varrwho  fix|check"
   1862  1.1  christos 
   1863  1.1  christos 	contents_owner "$1" "${DEST_DIR}/var/rwho" _rwhod _rwhod
   1864  1.1  christos }
   1865  1.1  christos 
   1866  1.1  christos 
   1867  1.1  christos #
   1868  1.1  christos #	tcpdumpchroot
   1869  1.1  christos #
   1870  1.1  christos additem tcpdumpchroot "remove /var/chroot/tcpdump/etc/protocols"
   1871  1.1  christos do_tcpdumpchroot()
   1872  1.1  christos {
   1873  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_tcpdumpchroot  fix|check"
   1874  1.1  christos 
   1875  1.1  christos 	failed=0;
   1876  1.1  christos 	if [ -r "${DEST_DIR}/var/chroot/tcpdump/etc/protocols" ]; then
   1877  1.1  christos 		if [ "$1" = "fix" ]; then
   1878  1.1  christos 			rm "${DEST_DIR}/var/chroot/tcpdump/etc/protocols"
   1879  1.1  christos 			failed=$(( ${failed} + $? ))
   1880  1.1  christos 			rmdir "${DEST_DIR}/var/chroot/tcpdump/etc"
   1881  1.1  christos 			failed=$(( ${failed} + $? ))
   1882  1.1  christos 		else
   1883  1.1  christos 			failed=1
   1884  1.1  christos 		fi
   1885  1.1  christos 	fi
   1886  1.1  christos 	return ${failed}
   1887  1.1  christos }
   1888  1.1  christos 
   1889  1.1  christos 
   1890  1.1  christos #
   1891  1.1  christos #	atf
   1892  1.1  christos #
   1893  1.1  christos additem atf "install missing atf configuration files and validate them"
   1894  1.1  christos do_atf()
   1895  1.1  christos {
   1896  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_atf  fix|check"
   1897  1.1  christos 	op="$1"
   1898  1.1  christos 	failed=0
   1899  1.1  christos 
   1900  1.1  christos 	# Ensure atf configuration files are in place.
   1901  1.1  christos 	if find_file_in_dirlist NetBSD.conf "NetBSD.conf" \
   1902  1.1  christos 	    "${SRC_DIR}/external/bsd/atf/etc/atf" \
   1903  1.1  christos 	    "${SRC_DIR}/etc/atf"; then
   1904  1.1  christos 			# ${dir} is set by find_file_in_dirlist()
   1905  1.1  christos 		populate_dir "${op}" true "${dir}" "${DEST_DIR}/etc/atf" 644 \
   1906  1.1  christos 		    NetBSD.conf common.conf || failed=1
   1907  1.1  christos 	else
   1908  1.1  christos 		failed=1
   1909  1.1  christos 	fi
   1910  1.1  christos 	if find_file_in_dirlist atf-run.hooks "atf-run.hooks" \
   1911  1.1  christos 	    "${SRC_DIR}/external/bsd/atf/dist/tools/sample" \
   1912  1.1  christos 	    "${SRC_DIR}/etc/atf"; then
   1913  1.1  christos 			# ${dir} is set by find_file_in_dirlist()
   1914  1.1  christos 		populate_dir "${op}" true "${dir}" "${DEST_DIR}/etc/atf" 644 \
   1915  1.1  christos 		    atf-run.hooks || failed=1
   1916  1.1  christos 	else
   1917  1.1  christos 		failed=1
   1918  1.1  christos 	fi
   1919  1.1  christos 
   1920  1.1  christos 	# Validate the _atf to _tests user/group renaming.
   1921  1.1  christos 	if [ -f "${DEST_DIR}/etc/atf/common.conf" ]; then
   1922  1.1  christos 		handle_atf_user "${op}" || failed=1
   1923  1.1  christos 	else
   1924  1.1  christos 		failed=1
   1925  1.1  christos 	fi
   1926  1.1  christos 
   1927  1.1  christos 	return ${failed}
   1928  1.1  christos }
   1929  1.1  christos 
   1930  1.1  christos handle_atf_user()
   1931  1.1  christos {
   1932  1.1  christos 	local op="$1"
   1933  1.1  christos 	local failed=0
   1934  1.1  christos 
   1935  1.1  christos 	local conf="${DEST_DIR}/etc/atf/common.conf"
   1936  1.1  christos 	if grep '[^#]*unprivileged-user[ \t]*=.*_atf' "${conf}" >/dev/null
   1937  1.1  christos 	then
   1938  1.1  christos 		if [ "$1" = "fix" ]; then
   1939  1.1  christos 			${SED} -e \
   1940  1.1  christos 			    "/[^#]*unprivileged-user[\ t]*=/s/_atf/_tests/" \
   1941  1.1  christos 			    "${conf}" >"${conf}.new"
   1942  1.1  christos 			failed=$(( ${failed} + $? ))
   1943  1.1  christos 			mv "${conf}.new" "${conf}"
   1944  1.1  christos 			failed=$(( ${failed} + $? ))
   1945  1.1  christos 			msg "Set unprivileged-user=_tests in ${conf}"
   1946  1.1  christos 		else
   1947  1.1  christos 			msg "unprivileged-user=_atf in ${conf} should be" \
   1948  1.1  christos 			    "unprivileged-user=_tests"
   1949  1.1  christos 			failed=1
   1950  1.1  christos 		fi
   1951  1.1  christos 	fi
   1952  1.1  christos 
   1953  1.1  christos 	return ${failed}
   1954  1.1  christos }
   1955  1.1  christos 
   1956  1.1  christos #
   1957  1.1  christos #	catpages
   1958  1.1  christos #
   1959  1.1  christos obsolete_catpages()
   1960  1.1  christos {
   1961  1.1  christos 	basedir="$2"
   1962  1.1  christos 	section="$3"
   1963  1.1  christos 	mandir="${basedir}/man${section}"
   1964  1.1  christos 	catdir="${basedir}/cat${section}"
   1965  1.1  christos 	test -d "$mandir" || return 0
   1966  1.1  christos 	test -d "$catdir" || return 0
   1967  1.1  christos 	(cd "$mandir" && find . -type f) | {
   1968  1.1  christos 	failed=0
   1969  1.1  christos 	while read manpage; do
   1970  1.1  christos 		manpage="${manpage#./}"
   1971  1.1  christos 		case "$manpage" in
   1972  1.1  christos 		*.Z)
   1973  1.1  christos 			catname="$catdir/${manpage%.*.Z}.0"
   1974  1.1  christos 			;;
   1975  1.1  christos 		*.gz)
   1976  1.1  christos 			catname="$catdir/${manpage%.*.gz}.0"
   1977  1.1  christos 			;;
   1978  1.1  christos 		*)
   1979  1.1  christos 			catname="$catdir/${manpage%.*}.0"
   1980  1.1  christos 			;;
   1981  1.1  christos 		esac
   1982  1.1  christos 		test -e "$catname" -a "$catname" -ot "$mandir/$manpage" || continue
   1983  1.1  christos 		if [ "$1" = "fix" ]; then
   1984  1.1  christos 			rm "$catname"
   1985  1.1  christos 			failed=$(( ${failed} + $? ))
   1986  1.1  christos 			msg "Removed obsolete cat page $catname"
   1987  1.1  christos 		else
   1988  1.1  christos 			msg "Obsolete cat page $catname"
   1989  1.1  christos 			failed=1
   1990  1.1  christos 		fi
   1991  1.1  christos 	done
   1992  1.1  christos 	exit $failed
   1993  1.1  christos 	}
   1994  1.1  christos }
   1995  1.1  christos 
   1996  1.1  christos additem catpages "remove outdated cat pages"
   1997  1.1  christos do_catpages()
   1998  1.1  christos {
   1999  1.1  christos 	failed=0
   2000  1.1  christos 	for manbase in /usr/share/man /usr/X11R6/man /usr/X11R7/man; do
   2001  1.1  christos 		for sec in 1 2 3 4 5 6 7 8 9; do
   2002  1.1  christos 			obsolete_catpages "$1" "${DEST_DIR}${manbase}" "${sec}"
   2003  1.1  christos 			failed=$(( ${failed} + $? ))
   2004  1.1  christos 			if [ "$1" = "fix" ]; then
   2005  1.1  christos 				rmdir "${DEST_DIR}${manbase}/cat${sec}"/* \
   2006  1.1  christos 					2>/dev/null
   2007  1.1  christos 				rmdir "${DEST_DIR}${manbase}/cat${sec}" \
   2008  1.1  christos 					2>/dev/null
   2009  1.1  christos 			fi
   2010  1.1  christos 		done
   2011  1.1  christos 	done
   2012  1.1  christos 	return $failed
   2013  1.1  christos }
   2014  1.1  christos 
   2015  1.1  christos #
   2016  1.1  christos #	man.conf
   2017  1.1  christos #
   2018  1.1  christos additem manconf "check for a mandoc usage in /etc/man.conf"
   2019  1.1  christos do_manconf()
   2020  1.1  christos {
   2021  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_manconf  fix|check"
   2022  1.1  christos 	op="$1"
   2023  1.1  christos 	failed=0
   2024  1.1  christos 
   2025  1.1  christos 	[ -f "${DEST_DIR}/etc/man.conf" ] || return 0
   2026  1.1  christos 	if ${GREP} -w "mandoc" "${DEST_DIR}/etc/man.conf" >/dev/null 2>&1;
   2027  1.1  christos 	then
   2028  1.1  christos 		failed=0;
   2029  1.1  christos 	else
   2030  1.1  christos 		failed=1
   2031  1.1  christos 		notfixed=""
   2032  1.1  christos 		if [ "${op}" = "fix" ]; then
   2033  1.1  christos 			notfixed="${NOT_FIXED}"
   2034  1.1  christos 		fi
   2035  1.1  christos 		msg "The file /etc/man.conf has not been adapted to mandoc usage; you"
   2036  1.1  christos 		msg "probably want to copy a new version over. ${notfixed}"
   2037  1.1  christos 	fi
   2038  1.1  christos 
   2039  1.1  christos 	return ${failed}
   2040  1.1  christos }
   2041  1.1  christos 
   2042  1.1  christos 
   2043  1.1  christos #
   2044  1.1  christos #	ptyfsoldnodes
   2045  1.1  christos #
   2046  1.1  christos additem ptyfsoldnodes "remove legacy device nodes when using ptyfs"
   2047  1.1  christos do_ptyfsoldnodes()
   2048  1.1  christos {
   2049  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_ptyfsoldnodes  fix|check"
   2050  1.1  christos 	_ptyfs_op="$1"
   2051  1.1  christos 
   2052  1.1  christos 	# Check whether ptyfs is in use
   2053  1.1  christos 	failed=0;
   2054  1.1  christos 	if ! ${GREP} -E "^ptyfs" "${DEST_DIR}/etc/fstab" > /dev/null; then
   2055  1.1  christos 		msg "ptyfs is not in use"
   2056  1.1  christos 		return 0
   2057  1.1  christos 	fi
   2058  1.1  christos 
   2059  1.1  christos 	if [ ! -e "${DEST_DIR}/dev/pts" ]; then
   2060  1.1  christos 		msg "ptyfs is not properly configured: missing /dev/pts"
   2061  1.1  christos 		return 1
   2062  1.1  christos 	fi
   2063  1.1  christos 
   2064  1.1  christos 	# Find the device major numbers for the pty master and slave
   2065  1.1  christos 	# devices, by parsing the output from "MAKEDEV -s pty0".
   2066  1.1  christos 	#
   2067  1.1  christos 	# Output from MAKEDEV looks like this:
   2068  1.1  christos 	# ./ttyp0 type=char device=netbsd,5,0 mode=666 gid=0 uid=0
   2069  1.1  christos 	# ./ptyp0 type=char device=netbsd,6,0 mode=666 gid=0 uid=0
   2070  1.1  christos 	#
   2071  1.1  christos 	# Output from awk, used in the eval statement, looks like this:
   2072  1.1  christos 	# maj_ptym=6; maj_ptys=5;
   2073  1.1  christos 	#
   2074  1.1  christos 	find_makedev
   2075  1.1  christos 	eval "$(
   2076  1.1  christos 	    ${HOST_SH} "${MAKEDEV_DIR}/MAKEDEV" -s pty0 2>/dev/null \
   2077  1.1  christos 	    | ${AWK} '\
   2078  1.1  christos 	    BEGIN { before_re = ".*device=[a-zA-Z]*,"; after_re = ",.*"; }
   2079  1.1  christos 	    /ptyp0/ { maj_ptym = gensub(before_re, "", 1, $0);
   2080  1.1  christos 		      maj_ptym = gensub(after_re, "", 1, maj_ptym); }
   2081  1.1  christos 	    /ttyp0/ { maj_ptys = gensub(before_re, "", 1, $0);
   2082  1.1  christos 		      maj_ptys = gensub(after_re, "", 1, maj_ptys); }
   2083  1.1  christos 	    END { print "maj_ptym=" maj_ptym "; maj_ptys=" maj_ptys ";"; }
   2084  1.1  christos 	    '
   2085  1.1  christos 	    )"
   2086  1.1  christos 	#msg "Major numbers are maj_ptym=${maj_ptym} maj_ptys=${maj_ptys}"
   2087  1.1  christos 	if [ -z "$maj_ptym" ] || [ -z "$maj_ptys" ]; then
   2088  1.1  christos 		msg "Cannot find device major numbers for pty master and slave"
   2089  1.1  christos 		return 1
   2090  1.1  christos 	fi
   2091  1.1  christos 
   2092  1.1  christos 	# look for /dev/[pt]ty[p-zP-T][0-9a-zA-Z], and check that they
   2093  1.1  christos 	# have the expected device major numbers.  ttyv* is typically not a
   2094  1.1  christos 	# pty device, but we check it anyway.
   2095  1.1  christos 	#
   2096  1.1  christos 	# The "for d1" loop is intended to avoid overflowing ARG_MAX;
   2097  1.1  christos 	# otherwise we could have used a single glob pattern.
   2098  1.1  christos 	#
   2099  1.1  christos 	# If there are no files that match a particular pattern,
   2100  1.1  christos 	# then stat prints something like:
   2101  1.1  christos 	#    stat: /dev/[pt]tyx?: lstat: No such file or directory
   2102  1.1  christos 	# and we ignore it.  XXX: We also ignore other error messages.
   2103  1.1  christos 	#
   2104  1.1  christos 	_ptyfs_tmp="$(mktemp /tmp/postinstall.ptyfs.XXXXXXXX)"
   2105  1.1  christos 	for d1 in p q r s t u v w x y z P Q R S T; do
   2106  1.1  christos 		${STAT} -f "%Hr %N" "${DEST_DIR}/dev/"[pt]ty${d1}? 2>&1
   2107  1.1  christos 	done \
   2108  1.1  christos 	| while read -r major node ; do
   2109  1.1  christos 		case "$major" in
   2110  1.1  christos 		${maj_ptym}|${maj_ptys}) echo "$node" ;;
   2111  1.1  christos 		esac
   2112  1.1  christos 	done >"${_ptyfs_tmp}"
   2113  1.1  christos 
   2114  1.1  christos 	_desc="legacy device node"
   2115  1.1  christos 	while read node; do
   2116  1.1  christos 		if [ "${_ptyfs_op}" = "check" ]; then
   2117  1.1  christos 			msg "Remove ${_desc} ${node}"
   2118  1.1  christos 			failed=1
   2119  1.1  christos 		else # "fix"
   2120  1.1  christos 			if rm "${node}"; then
   2121  1.1  christos 				msg "Removed ${_desc} ${node}"
   2122  1.1  christos 			else
   2123  1.1  christos 				warn "Failed to remove ${_desc} ${node}"
   2124  1.1  christos 				failed=1
   2125  1.1  christos 			fi
   2126  1.1  christos 		fi
   2127  1.1  christos 	done < "${_ptyfs_tmp}"
   2128  1.1  christos 	rm "${_ptyfs_tmp}"
   2129  1.1  christos 
   2130  1.1  christos 	return ${failed}
   2131  1.1  christos }
   2132  1.1  christos 
   2133  1.1  christos 
   2134  1.1  christos #
   2135  1.1  christos #	varshm
   2136  1.1  christos #
   2137  1.1  christos additem varshm "check for a tmpfs mounted on /var/shm"
   2138  1.1  christos do_varshm()
   2139  1.1  christos {
   2140  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_varshm  fix|check"
   2141  1.1  christos 	op="$1"
   2142  1.1  christos 	failed=0
   2143  1.1  christos 
   2144  1.1  christos 	[ -f "${DEST_DIR}/etc/fstab" ] || return 0
   2145  1.1  christos 	if ${GREP} -E "^var_shm_symlink" "${DEST_DIR}/etc/rc.conf" >/dev/null 2>&1;
   2146  1.1  christos 	then
   2147  1.1  christos 		failed=0;
   2148  1.1  christos 	elif ${GREP} -w "/var/shm" "${DEST_DIR}/etc/fstab" >/dev/null 2>&1;
   2149  1.1  christos 	then
   2150  1.1  christos 		failed=0;
   2151  1.1  christos 	else
   2152  1.1  christos 		if [ "${op}" = "check" ]; then
   2153  1.1  christos 			failed=1
   2154  1.1  christos 			msg "No /var/shm mount found in ${DEST_DIR}/etc/fstab"
   2155  1.1  christos 		elif [ "${op}" = "fix" ]; then
   2156  1.1  christos 			printf '\ntmpfs\t/var/shm\ttmpfs\trw,-m1777,-sram%%25\n' \
   2157  1.1  christos 				>> "${DEST_DIR}/etc/fstab"
   2158  1.1  christos 			msg "Added tmpfs with 25% ram limit as /var/shm"
   2159  1.1  christos 
   2160  1.1  christos 		fi
   2161  1.1  christos 	fi
   2162  1.1  christos 
   2163  1.1  christos 	return ${failed}
   2164  1.1  christos }
   2165  1.1  christos 
   2166  1.1  christos #
   2167  1.1  christos #	obsolete_stand
   2168  1.1  christos #
   2169  1.1  christos adddisableditem obsolete_stand "remove obsolete files from /stand"
   2170  1.1  christos do_obsolete_stand()
   2171  1.1  christos {
   2172  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_obsolete_stnd  fix|check"
   2173  1.1  christos 	op="$1"
   2174  1.1  christos 	failed=0
   2175  1.1  christos 
   2176  1.1  christos 	for dir in \
   2177  1.1  christos 	    /stand/${MACHINE} \
   2178  1.1  christos 	    /stand/${MACHINE}-4xx \
   2179  1.1  christos 	    /stand/${MACHINE}-booke \
   2180  1.1  christos 	    /stand/${MACHINE}-xen \
   2181  1.1  christos 	    /stand/${MACHINE}pae-xen
   2182  1.1  christos 	do
   2183  1.1  christos 		[ -d "${DESTDIR}${dir}" ] && obsolete_stand "${dir}"
   2184  1.1  christos 	done | obsolete_paths "${op}"
   2185  1.1  christos 	failed=$(( ${failed} + $? ))
   2186  1.1  christos 
   2187  1.1  christos 	return ${failed}
   2188  1.1  christos }
   2189  1.1  christos 
   2190  1.1  christos getarchsubdirs() {
   2191  1.1  christos 	if ! $SOURCEMODE; then
   2192  1.1  christos 		echo "@ARCHSUBDIRS@"
   2193  1.1  christos 		return
   2194  1.1  christos 	fi
   2195  1.1  christos 	local m
   2196  1.1  christos 	case ${MACHINE_ARCH} in
   2197  1.1  christos 	*arm*|*aarch64*)	m=arm;;
   2198  1.1  christos 	x86_64)			m=amd64;;
   2199  1.1  christos 	*)			m=${MACHINE_ARCH};;
   2200  1.1  christos 	esac
   2201  1.1  christos 
   2202  1.1  christos 	${SED} -n -e "/[=[:space:]]${m}/s@.*[=[:space:]]${m}/\(.*\)@\1@p" \
   2203  1.1  christos 	    ${SRC_DIR}/compat/archdirs.mk | ${SORT} -u
   2204  1.1  christos }
   2205  1.1  christos 
   2206  1.1  christos getcompatlibdirs() {
   2207  1.1  christos 	for i in $(getarchsubdirs); do
   2208  1.1  christos 		if [ -d /usr/lib/$i ]; then
   2209  1.1  christos 			echo /usr/lib/$i
   2210  1.1  christos 		fi
   2211  1.1  christos 	done
   2212  1.1  christos }
   2213  1.1  christos 
   2214  1.1  christos #
   2215  1.1  christos #	obsolete
   2216  1.1  christos #	(this item is last to allow other items to move obsolete files)
   2217  1.1  christos #
   2218  1.1  christos additem obsolete "remove obsolete file sets and minor libraries"
   2219  1.1  christos do_obsolete()
   2220  1.1  christos {
   2221  1.1  christos 	[ -n "$1" ] || err 3 "USAGE: do_obsolete  fix|check"
   2222  1.1  christos 	op="$1"
   2223  1.1  christos 	failed=0
   2224  1.1  christos 
   2225  1.1  christos 	${SORT} -ru "${DEST_DIR}"/var/db/obsolete/* | obsolete_paths "${op}"
   2226  1.1  christos 	failed=$(( ${failed} + $? ))
   2227  1.1  christos 
   2228  1.1  christos 	(
   2229  1.1  christos 		obsolete_libs /lib
   2230  1.1  christos 		obsolete_libs /usr/lib
   2231  1.1  christos 		obsolete_libs /usr/lib/i18n
   2232  1.1  christos 		obsolete_libs /usr/X11R6/lib
   2233  1.1  christos 		obsolete_libs /usr/X11R7/lib
   2234  1.1  christos 		for i in $(getcompatlibdirs); do
   2235  1.1  christos 			obsolete_libs $i
   2236  1.1  christos 		done
   2237  1.1  christos 	) | obsolete_paths "${op}"
   2238  1.1  christos 	failed=$(( ${failed} + $? ))
   2239  1.1  christos 
   2240  1.1  christos 	return ${failed}
   2241  1.1  christos }
   2242  1.1  christos 
   2243  1.1  christos #
   2244  1.1  christos #	end of items
   2245  1.1  christos #	------------
   2246  1.1  christos #
   2247  1.1  christos 
   2248  1.1  christos 
   2249  1.1  christos usage()
   2250  1.1  christos {
   2251  1.1  christos 	cat 1>&2 << _USAGE_
   2252  1.1  christos Usage: ${PROGNAME} [-s srcdir] [-x xsrcdir] [-d destdir] [-m mach] [-a arch] op [item [...]]
   2253  1.1  christos 	Perform post-installation checks and/or fixes on a system's
   2254  1.1  christos 	configuration files.
   2255  1.1  christos 	If no items are provided, a default set of checks or fixes is applied.
   2256  1.1  christos 
   2257  1.1  christos 	Options:
   2258  1.1  christos 	-s {srcdir|tgzfile|tempdir}
   2259  1.1  christos 			Location of the source files.  This may be any
   2260  1.1  christos 			of the following:
   2261  1.1  christos 			* A directory that contains a NetBSD source tree;
   2262  1.1  christos 			* A distribution set file such as "etc.tgz" or
   2263  1.1  christos 			  "xetc.tgz".  Pass multiple -s options to specify
   2264  1.1  christos 			  multiple such files;
   2265  1.1  christos 			* A temporary directory in which one or both of
   2266  1.1  christos 			  "etc.tgz" and "xetc.tgz" have been extracted.
   2267  1.1  christos 							[${SRC_DIR:-/usr/src}]
   2268  1.1  christos 	-x xsrcdir      Location of the X11 source files.  This must be
   2269  1.1  christos 			a directory that contains a NetBSD xsrc tree.
   2270  1.1  christos 							[${XSRC_DIR:-/usr/src/../xsrc}]
   2271  1.1  christos 	-d destdir	Destination directory to check. [${DEST_DIR:-/}]
   2272  1.1  christos 	-m mach		MACHINE.			[${MACHINE}]
   2273  1.1  christos 	-a arch		MACHINE_ARCH.			[${MACHINE_ARCH}]
   2274  1.1  christos 
   2275  1.1  christos 	Operation may be one of:
   2276  1.1  christos 		help	Display this help.
   2277  1.1  christos 		list	List available items.
   2278  1.1  christos 		check	Perform post-installation checks on items.
   2279  1.1  christos 		diff [diff(1) options ...]
   2280  1.1  christos 			Similar to 'check' but also output difference of files.
   2281  1.1  christos 		fix	Apply fixes that 'check' determines need to be applied.
   2282  1.1  christos 		usage	Display this usage.
   2283  1.1  christos _USAGE_
   2284  1.1  christos 	exit 2
   2285  1.1  christos }
   2286  1.1  christos 
   2287  1.1  christos 
   2288  1.1  christos list()
   2289  1.1  christos {
   2290  1.1  christos 	echo "Default set of items (to apply if no items are provided by user):"
   2291  1.1  christos 	echo "  Item          Description"
   2292  1.1  christos 	echo "  ----          -----------"
   2293  1.1  christos 	for i in ${defaultitems}; do
   2294  1.1  christos 		eval desc=\"\${desc_${i}}\"
   2295  1.1  christos 		printf "  %-12s  %s\n" "${i}" "${desc}"
   2296  1.1  christos 	done
   2297  1.1  christos 	echo "Items disabled by default (must be requested explicitly):"
   2298  1.1  christos 	echo "  Item          Description"
   2299  1.1  christos 	echo "  ----          -----------"
   2300  1.1  christos 	for i in ${otheritems}; do
   2301  1.1  christos 		eval desc=\"\${desc_${i}}\"
   2302  1.1  christos 		printf "  %-12s  %s\n" "${i}" "${desc}"
   2303  1.1  christos 	done
   2304  1.1  christos 
   2305  1.1  christos }
   2306  1.1  christos 
   2307  1.1  christos 
   2308  1.1  christos main()
   2309  1.1  christos {
   2310  1.1  christos 	TGZLIST=		# quoted list list of tgz files
   2311  1.1  christos 	SRC_ARGLIST=		# quoted list of one or more "-s" args
   2312  1.1  christos 	SRC_DIR="${SRC_ARG}"	# set default value for early usage()
   2313  1.1  christos 	XSRC_DIR="${SRC_ARG}/../xsrc"
   2314  1.1  christos 	N_SRC_ARGS=0		# number of "-s" args
   2315  1.1  christos 	TGZMODE=false		# true if "-s" specifies a tgz file
   2316  1.1  christos 	DIRMODE=false		# true if "-s" specified a directory
   2317  1.1  christos 	SOURCEMODE=false	# true if "-s" specified a source directory
   2318  1.1  christos 
   2319  1.1  christos 	case "$(uname -s)" in
   2320  1.1  christos 	Darwin)
   2321  1.1  christos 		# case sensitive match for case insensitive fs
   2322  1.1  christos 		file_exists_exact=file_exists_exact
   2323  1.1  christos 		;;
   2324  1.1  christos 	*)
   2325  1.1  christos 		file_exists_exact=:
   2326  1.1  christos 		;;
   2327  1.1  christos 	esac
   2328  1.1  christos 
   2329  1.1  christos 	while getopts s:x:d:m:a: ch; do
   2330  1.1  christos 		case "${ch}" in
   2331  1.1  christos 		s)
   2332  1.1  christos 			qarg="$(shell_quote "${OPTARG}")"
   2333  1.1  christos 			N_SRC_ARGS=$(( $N_SRC_ARGS + 1 ))
   2334  1.1  christos 			SRC_ARGLIST="${SRC_ARGLIST}${SRC_ARGLIST:+ }-s ${qarg}"
   2335  1.1  christos 			if [ -f "${OPTARG}" ]; then
   2336  1.1  christos 				# arg refers to a *.tgz file.
   2337  1.1  christos 				# This may happen twice, for both
   2338  1.1  christos 				# etc.tgz and xetc.tgz, so we build up a
   2339  1.1  christos 				# quoted list in TGZLIST.
   2340  1.1  christos 				TGZMODE=true
   2341  1.1  christos 				TGZLIST="${TGZLIST}${TGZLIST:+ }${qarg}"
   2342  1.1  christos 				# Note that, when TGZMODE is true,
   2343  1.1  christos 				# SRC_ARG is used only for printing
   2344  1.1  christos 				# human-readable messages.
   2345  1.1  christos 				SRC_ARG="${TGZLIST}"
   2346  1.1  christos 			elif [ -d "${OPTARG}" ]; then
   2347  1.1  christos 				# arg refers to a directory.
   2348  1.1  christos 				# It might be a source directory, or a
   2349  1.1  christos 				# directory where the sets have already
   2350  1.1  christos 				# been extracted.
   2351  1.1  christos 				DIRMODE=true
   2352  1.1  christos 				SRC_ARG="${OPTARG}"
   2353  1.1  christos 				if [ -f "${OPTARG}/etc/Makefile" ]; then
   2354  1.1  christos 					SOURCEMODE=true
   2355  1.1  christos 				fi
   2356  1.1  christos 			else
   2357  1.1  christos 				err 2 "Invalid argument for -s option"
   2358  1.1  christos 			fi
   2359  1.1  christos 			;;
   2360  1.1  christos 		x)
   2361  1.1  christos 			if [ -d "${OPTARG}" ]; then
   2362  1.1  christos 				# arg refers to a directory.
   2363  1.1  christos 				XSRC_DIR="${OPTARG}"
   2364  1.1  christos 				XSRC_DIR_FIX="-x ${OPTARG} "
   2365  1.1  christos 			else
   2366  1.1  christos 				err 2 "Not a directory for -x option"
   2367  1.1  christos 			fi
   2368  1.1  christos 			;;
   2369  1.1  christos 		d)
   2370  1.1  christos 			DEST_DIR="${OPTARG}"
   2371  1.1  christos 			;;
   2372  1.1  christos 		m)
   2373  1.1  christos 			MACHINE="${OPTARG}"
   2374  1.1  christos 			;;
   2375  1.1  christos 		a)
   2376  1.1  christos 			MACHINE_ARCH="${OPTARG}"
   2377  1.1  christos 			;;
   2378  1.1  christos 		*)
   2379  1.1  christos 			usage
   2380  1.1  christos 			;;
   2381  1.1  christos 		esac
   2382  1.1  christos 	done
   2383  1.1  christos 	shift $((${OPTIND} - 1))
   2384  1.1  christos 	[ $# -gt 0 ] || usage
   2385  1.1  christos 
   2386  1.1  christos 	if [ "$N_SRC_ARGS" -gt 1 ] && $DIRMODE; then
   2387  1.1  christos 		err 2 "Multiple -s args are allowed only with tgz files"
   2388  1.1  christos 	fi
   2389  1.1  christos 	if [ "$N_SRC_ARGS" -eq 0 ]; then
   2390  1.1  christos 		# The default SRC_ARG was set elsewhere
   2391  1.1  christos 		DIRMODE=true
   2392  1.1  christos 		SOURCEMODE=true
   2393  1.1  christos 		SRC_ARGLIST="-s $(shell_quote "${SRC_ARG}")"
   2394  1.1  christos 	fi
   2395  1.1  christos 
   2396  1.1  christos 	#
   2397  1.1  christos 	# If '-s' arg or args specified tgz files, extract them
   2398  1.1  christos 	# to a scratch directory.
   2399  1.1  christos 	#
   2400  1.1  christos 	if $TGZMODE; then
   2401  1.1  christos 		ETCTGZDIR="${SCRATCHDIR}/etc.tgz"
   2402  1.1  christos 		echo "Note: Creating temporary directory ${ETCTGZDIR}"
   2403  1.1  christos 		if ! mkdir "${ETCTGZDIR}"; then
   2404  1.1  christos 			err 2 "Can't create ${ETCTGZDIR}"
   2405  1.1  christos 		fi
   2406  1.1  christos 		( # subshell to localise changes to "$@"
   2407  1.1  christos 			eval "set -- ${TGZLIST}"
   2408  1.1  christos 			for tgz in "$@"; do
   2409  1.1  christos 				echo "Note: Extracting files from ${tgz}"
   2410  1.1  christos 				cat "${tgz}" | (
   2411  1.1  christos 					cd "${ETCTGZDIR}" &&
   2412  1.1  christos 					tar -zxf -
   2413  1.1  christos 				) || err 2 "Can't extract ${tgz}"
   2414  1.1  christos 			done
   2415  1.1  christos 		)
   2416  1.1  christos 		SRC_DIR="${ETCTGZDIR}"
   2417  1.1  christos 	else
   2418  1.1  christos 		SRC_DIR="${SRC_ARG}"
   2419  1.1  christos 	fi
   2420  1.1  christos 
   2421  1.1  christos 	[ -d "${SRC_DIR}" ]	|| err 2 "${SRC_DIR} is not a directory"
   2422  1.1  christos 	[ -d "${DEST_DIR}" ]	|| err 2 "${DEST_DIR} is not a directory"
   2423  1.1  christos 	[ -n "${MACHINE}" ]	|| err 2 "\${MACHINE} is not defined"
   2424  1.1  christos 	[ -n "${MACHINE_ARCH}" ] || err 2 "\${MACHINE_ARCH} is not defined"
   2425  1.1  christos 	if ! $SOURCEMODE && ! [ -f "${SRC_DIR}/etc/mtree/set.etc" ]; then
   2426  1.1  christos 		err 2 "Files from the etc.tgz set are missing"
   2427  1.1  christos 	fi
   2428  1.1  christos 
   2429  1.1  christos 		# If directories are /, clear them, so various messages
   2430  1.1  christos 		# don't have leading "//".   However, this requires
   2431  1.1  christos 		# the use of ${foo:-/} to display the variables.
   2432  1.1  christos 		#
   2433  1.1  christos 	[ "${SRC_DIR}" = "/" ]	&& SRC_DIR=""
   2434  1.1  christos 	[ "${DEST_DIR}" = "/" ]	&& DEST_DIR=""
   2435  1.1  christos 
   2436  1.1  christos 	detect_x11
   2437  1.1  christos 
   2438  1.1  christos 	op="$1"
   2439  1.1  christos 	shift
   2440  1.1  christos 
   2441  1.1  christos 	case "${op}" in
   2442  1.1  christos 	diff)
   2443  1.1  christos 		op=check
   2444  1.1  christos 		DIFF_STYLE=n			# default style is RCS
   2445  1.1  christos 		OPTIND=1
   2446  1.1  christos 		while getopts bcenpuw ch; do
   2447  1.1  christos 			case "${ch}" in
   2448  1.1  christos 			c|e|n|u)
   2449  1.1  christos 				if [ "${DIFF_STYLE}" != "n" -a \
   2450  1.1  christos 				    "${DIFF_STYLE}" != "${ch}" ]; then
   2451  1.1  christos 					err 2 "conflicting output style: ${ch}"
   2452  1.1  christos 				fi
   2453  1.1  christos 				DIFF_STYLE="${ch}"
   2454  1.1  christos 				;;
   2455  1.1  christos 			b|p|w)
   2456  1.1  christos 				DIFF_OPT="${DIFF_OPT} -${ch}"
   2457  1.1  christos 				;;
   2458  1.1  christos 			*)
   2459  1.1  christos 				err 2 "unknown diff option"
   2460  1.1  christos 				;;
   2461  1.1  christos 			esac
   2462  1.1  christos 		done
   2463  1.1  christos 		shift $((${OPTIND} - 1))
   2464  1.1  christos 		;;
   2465  1.1  christos 	esac
   2466  1.1  christos 
   2467  1.1  christos 	case "${op}" in
   2468  1.1  christos 
   2469  1.1  christos 	usage|help)
   2470  1.1  christos 		usage
   2471  1.1  christos 		;;
   2472  1.1  christos 
   2473  1.1  christos 	list)
   2474  1.1  christos 		echo "Source directory: ${SRC_DIR:-/}"
   2475  1.1  christos 		echo "Target directory: ${DEST_DIR:-/}"
   2476  1.1  christos 		if $TGZMODE; then
   2477  1.1  christos 			echo " (extracted from: ${SRC_ARG})"
   2478  1.1  christos 		fi
   2479  1.1  christos 		list
   2480  1.1  christos 		;;
   2481  1.1  christos 
   2482  1.1  christos 	check|fix)
   2483  1.1  christos 		todo="$*"
   2484  1.1  christos 		: ${todo:="${defaultitems}"}
   2485  1.1  christos 
   2486  1.1  christos 		# ensure that all supplied items are valid
   2487  1.1  christos 		#
   2488  1.1  christos 		for i in ${todo}; do
   2489  1.1  christos 			eval desc=\"\${desc_${i}}\"
   2490  1.1  christos 			[ -n "${desc}" ] || err 2 "Unsupported ${op} '"${i}"'"
   2491  1.1  christos 		done
   2492  1.1  christos 
   2493  1.1  christos 		# perform each check/fix
   2494  1.1  christos 		#
   2495  1.1  christos 		echo "Source directory: ${SRC_DIR:-/}"
   2496  1.1  christos 		if $TGZMODE; then
   2497  1.1  christos 			echo " (extracted from: ${SRC_ARG})"
   2498  1.1  christos 		fi
   2499  1.1  christos 		echo "Target directory: ${DEST_DIR:-/}"
   2500  1.1  christos 		items_passed=
   2501  1.1  christos 		items_failed=
   2502  1.1  christos 		for i in ${todo}; do
   2503  1.1  christos 			echo "${i} ${op}:"
   2504  1.1  christos 			( eval do_${i} ${op} )
   2505  1.1  christos 			if [ $? -eq 0 ]; then
   2506  1.1  christos 				items_passed="${items_passed} ${i}"
   2507  1.1  christos 			else
   2508  1.1  christos 				items_failed="${items_failed} ${i}"
   2509  1.1  christos 			fi
   2510  1.1  christos 		done
   2511  1.1  christos 
   2512  1.1  christos 		if [ "${op}" = "check" ]; then
   2513  1.1  christos 			plural="checks"
   2514  1.1  christos 		else
   2515  1.1  christos 			plural="fixes"
   2516  1.1  christos 		fi
   2517  1.1  christos 
   2518  1.1  christos 		echo "${PROGNAME} ${plural} passed:${items_passed}"
   2519  1.1  christos 		echo "${PROGNAME} ${plural} failed:${items_failed}"
   2520  1.1  christos 		if [ -n "${items_failed}" ]; then
   2521  1.1  christos 		    exitstatus=1;
   2522  1.1  christos 		    if [ "${op}" = "check" ]; then
   2523  1.1  christos 			[ "$MACHINE" = "$(uname -m)" ] && m= || m=" -m $MACHINE"
   2524  1.1  christos 			cat <<_Fix_me_
   2525  1.1  christos To fix, run:
   2526  1.1  christos     ${HOST_SH} ${0} ${SRC_ARGLIST} ${XSRC_DIR_FIX}-d ${DEST_DIR:-/}$m fix${items_failed}
   2527  1.1  christos Note that this may overwrite local changes.
   2528  1.1  christos _Fix_me_
   2529  1.1  christos 		    fi
   2530  1.1  christos 		fi
   2531  1.1  christos 
   2532  1.1  christos 		;;
   2533  1.1  christos 
   2534  1.1  christos 	*)
   2535  1.1  christos 		warn "Unknown operation '"${op}"'"
   2536  1.1  christos 		usage
   2537  1.1  christos 		;;
   2538  1.1  christos 
   2539  1.1  christos 	esac
   2540  1.1  christos }
   2541  1.1  christos 
   2542  1.1  christos # defaults
   2543  1.1  christos #
   2544  1.1  christos PROGNAME="${0##*/}"
   2545  1.1  christos SRC_ARG="/usr/src"
   2546  1.1  christos DEST_DIR="/"
   2547  1.1  christos : ${MACHINE:="$( uname -m )"}	# assume native build if $MACHINE is not set
   2548  1.1  christos : ${MACHINE_ARCH:="$( uname -p )"}# assume native build if not set
   2549  1.1  christos 
   2550  1.1  christos DIFF_STYLE=
   2551  1.1  christos NOT_FIXED=" (FIX MANUALLY)"
   2552  1.1  christos SCRATCHDIR="$( mkdtemp )" || err 2 "Can't create scratch directory"
   2553  1.1  christos trap "/bin/rm -rf \"\${SCRATCHDIR}\" ; exit 0" 1 2 3 15	# HUP INT QUIT TERM
   2554  1.1  christos 
   2555  1.1  christos umask 022
   2556  1.1  christos exec 3>/dev/null
   2557  1.1  christos exec 4>/dev/null
   2558  1.1  christos exitstatus=0
   2559  1.1  christos 
   2560  1.1  christos main "$@"
   2561  1.1  christos /bin/rm -rf "${SCRATCHDIR}"
   2562  1.1  christos exit $exitstatus
   2563