1 # $NetBSD: rc.subr,v 1.49 2002/05/21 12:31:01 lukem Exp $
2 # $FreeBSD: head/etc/rc.subr 275359 2014-12-01 12:17:42Z des $
4 # Copyright (c) 1997-2002 The NetBSD Foundation, Inc.
7 # This code is derived from software contributed to The NetBSD Foundation
10 # Redistribution and use in source and binary forms, with or without
11 # modification, are permitted provided that the following conditions
13 # 1. Redistributions of source code must retain the above copyright
14 # notice, this list of conditions and the following disclaimer.
15 # 2. Redistributions in binary form must reproduce the above copyright
16 # notice, this list of conditions and the following disclaimer in the
17 # documentation and/or other materials provided with the distribution.
18 # 3. All advertising materials mentioning features or use of this software
19 # must display the following acknowledgement:
20 # This product includes software developed by the NetBSD
21 # Foundation, Inc. and its contributors.
22 # 4. Neither the name of The NetBSD Foundation nor the names of its
23 # contributors may be used to endorse or promote products derived
24 # from this software without specific prior written permission.
26 # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 # POSSIBILITY OF SUCH DAMAGE.
39 # functions used by various rc scripts
43 # Operating System dependent/independent variables
46 if [ "X$_file" = "X" ]; then
50 provide_list=`rcorder -p $_file`
53 SYSCTL_N="${SYSCTL} -n"
54 CMD_OSTYPE="${SYSCTL_N} kern.ostype"
55 OSTYPE=`${CMD_OSTYPE}`
71 # Set the variable name enabling a specific service.
72 # FreeBSD uses ${service}_enable, while NetBSD uses
73 # just the name of the service. For example:
74 # FreeBSD: sendmail_enable="YES"
75 # NetBSD : sendmail="YES"
76 # $1 - if $name is not the base to work of off, specify
92 # $1 should be $rc_arg (start, stop, restart, reload, etc)
93 # $2 return value $RC_*
95 # Set the rcng_* variables associated with elements in provide_list
98 # Returns non-zero when early termination should occur, in which
99 # case the caller should return with a value of $? - 1
103 # Remember, plret is set to the early termination return code + 1,
104 # or 0 if we want to continue the operation.
106 for i in $provide_list; do
108 start$RC_RUNNING|restart$RC_RUNNING)
109 varsym -s rcng_$i=running
111 start$RC_FAILED|restart$RC_FAILED)
112 varsym -s rcng_$i=failed
114 start$RC_DISABLED|restart$RC_DISABLED|reload$RC_DISABLED)
115 varsym -s rcng_$i=disabled
117 start$RC_IRRELEVANT|restart$RC_IRRELEVANT|reload$RC_IRRELEVANT)
118 varsym -s rcng_$i=irrelevant
120 start$RC_CONFIGURED|restart$RC_CONFIGURED)
121 varsym -s rcng_$i=configured
124 varsym -s rcng_$i=disabled
127 varsym -s rcng_$i=irrelevant
130 varsym -s rcng_$i=stopped
139 # $1 should be $rc_arg (start, stop, restart, reload, etc)
140 # $2 return value $RC_*
141 # $3 $rc_force "" not to force, "anything" to force.
143 # The return code is 0 if early termination is not to occur, non-zero if
144 # it is to occur. When early termination is to occur the caller should
145 # return check_early_term()'s return code - 1. That is, early termination
146 # can occur with or without an error.
148 # The provide list will be adjusted when early termination occurs.
157 set_provide_list $1 $2
158 [ -z "$3" ] || return 0
162 set_provide_list $1 $2
163 [ -z "$3" ] || return 0
167 set_provide_list $1 $2
168 [ -z "$3" ] || return 0
178 set_provide_list $1 $2
179 [ -z "$3" ] || return 0
183 # adjust_return_code $1
185 # Convert the return code to an exit code of 0 (success) or 1 (failure)
189 if [ $1 = $RC_FAILED ]; then
196 # force_depend script
197 # Force a service to start. Intended for use by services
198 # to resolve dependency issues. It is assumed the caller
199 # has check to make sure this call is necessary
200 # $1 - filename of script, in /etc/rc.d, to run
206 info "${name} depends on ${_depend}, which will be forced to start."
207 if ! /etc/rc.d/${_depend} forcestart ; then
208 warn "Unable to force ${_depend}. It may already be running."
216 # Test $1 variable, and warn if not set to YES or NO.
217 # Return 0 if it's "yes" (et al), nonzero otherwise.
222 eval _value=\$${1%_enable}
226 eval _value=\$${1%_enable}_enable;
228 debug "checkyesno: $1 is set to $_value."
231 # "yes", "true", "on", or "1"
232 [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
236 # "no", "false", "off", or "0"
237 [Nn][Oo]|[Ff][Aa][Ll][Ss][Ee]|[Oo][Ff][Ff]|0)
241 warn "\$${1} is not set properly - see rc.conf(5)."
248 # print the list in reverse order
253 for _revfile in $*; do
254 _revlist="$_revfile $_revlist"
260 # mount_critical_filesystems type
261 # Go through the list of critical filesystems as provided in
262 # the rc.conf(5) variable $critical_filesystems_${type}, checking
263 # each one to see if it is mounted, and if it is not, mounting it.
265 mount_critical_filesystems()
267 eval _fslist=\$critical_filesystems_${1}
268 for _fs in $_fslist; do
271 while read what _on on _type type; do
272 if [ $on = $_fs ]; then
276 if [ $_ismounted = no ]; then
277 mount $_fs >/dev/null 2>&1
284 # check_pidfile pidfile procname [interpreter]
285 # Parses the first line of pidfile for a PID, and ensures
286 # that the process is running and matches procname.
287 # Prints the matching PID upon success, nothing otherwise.
288 # interpreter is optional; see _find_processes() for details.
295 if [ -z "$_pidfile" -o -z "$_procname" ]; then
296 err 3 'USAGE: check_pidfile pidfile procname [interpreter]'
298 if [ ! -f $_pidfile ]; then
299 debug "pid file {$_pidfile): not readable."
302 read _pid _junk < $_pidfile
303 if [ -z "$_pid" ]; then
304 debug "pid file {$_pidfile): no pid in file."
307 _find_processes $_procname ${_interpreter:-.} '-p '"$_pid"
311 # check_process procname [interpreter]
312 # Ensures that a process (or processes) named procname is running.
313 # Prints a list of matching PIDs.
314 # interpreter is optional; see _find_processes() for details.
320 if [ -z "$_procname" ]; then
321 err 3 'USAGE: check_process procname [interpreter]'
323 _find_processes $_procname ${_interpreter:-.} '-ax'
327 # _find_processes procname interpreter psargs
328 # Search for procname in the output of ps generated by psargs.
329 # Prints the PIDs of any matching processes, space separated.
331 # If interpreter == ".", check the following variations of procname
332 # against the first word of each command:
334 # `basename procname`
335 # `basename procname` + ":"
336 # "(" + `basename procname` + ")"
338 # If interpreter != ".", read the first line of procname, remove the
339 # leading #!, normalise whitespace, append procname, and attempt to
340 # match that against each command, either as is, or with extra words
345 if [ $# -ne 3 ]; then
346 err 3 'USAGE: _find_processes procname interpreter psargs'
353 if [ $_interpreter != "." ]; then # an interpreted script
354 read _interp < $_procname # read interpreter name
355 _interp=${_interp#\#!} # strip #!
357 if [ $_interpreter != $1 ]; then
358 warn "\$command_interpreter $_interpreter != $1"
360 _interp="$* $_procname" # cleanup spaces, add _procname
361 _interpbn="$1" # the interpreter binary
363 _fp_match='case "$_argv" in
364 "${_interpbn##*/}: "$_procname*|${_interp}|"${_interp} "*)'
365 else # a normal daemon
366 _procnamebn=${_procname##*/}
367 _fp_args='_arg0 _argv'
368 _fp_match='case "$_arg0" in
369 $_procname|$_procnamebn|${_procnamebn}:|"(${_procnamebn})")'
373 ps -o "pid,command" '"$_psargs"' |
374 while read _npid '"$_fp_args"'; do
378 esac ; '"$_fp_match"'
379 echo -n "$_pref$_npid" ;
385 # debug "in _find_processes: proccheck is ($_proccheck)."
390 # wait_for_pids pid [pid ...]
391 # spins until none of the pids exist
396 if [ -z "$_list" ]; then
403 if kill -0 $_j 2>/dev/null; then
404 _nlist="${_nlist}${_nlist:+ }$_j"
407 if [ -z "$_nlist" ]; then
411 echo -n ${_prefix:-"Waiting for PIDS: "}$_list
415 if [ -n "$_prefix" ]; then
421 # get_pidfile_from_conf string file
423 # Takes a string to search for in the specified file.
424 # Ignores lines with traditional comment characters.
428 # if get_pidfile_from_conf string file; then
429 # pidfile="$_pidfile_from_conf"
431 # pidfile='appropriate default'
434 get_pidfile_from_conf()
436 if [ -z "$1" -o -z "$2" ]; then
437 err 3 "USAGE: get_pidfile_from_conf string file ($name)"
440 local string file line
442 string="$1" ; file="$2"
444 if [ ! -s "$file" ]; then
445 err 3 "get_pidfile_from_conf: $file does not exist ($name)"
450 *[#\;]*${string}*) continue ;;
451 *${string}*) break ;;
455 if [ -n "$line" ]; then
457 _pidfile_from_conf="/${line%%[\"\;]*}"
465 # If rc_quiet is set (usually as a result of using faststart at
466 # boot time) check if rc_startmsgs is enabled.
470 if [ -n "$rc_quiet" ]; then
471 checkyesno rc_startmsgs
478 # run_rc_command argument
479 # Search for argument in the list of supported commands, which is:
480 # "start stop restart rcvar status poll ${extra_commands}"
481 # If there's a match, run ${argument}_cmd or the default method
484 # If argument has a given prefix, then change the operation as follows:
487 # fast Skip the pid check, and set rc_fast=yes, rc_quiet=yes
488 # force Set ${rcvar} to YES, and set rc_force=yes
489 # one Set ${rcvar} to YES
490 # quiet Don't output some diagnostics, and set rc_quiet=yes
492 # The following globals are used:
494 # Name Needed Purpose
495 # ---- ------ -------
496 # provide_list (gen) list of keywords provided by current rcng file
498 # name y Name of script.
500 # command n Full path to command.
501 # Not needed if ${rc_arg}_cmd is set for
504 # command_args n Optional args/shell directives for command.
506 # command_interpreter n If not empty, command is interpreted, so
507 # call check_{pidfile,process}() appropriately.
509 # extra_commands n List of extra commands supported.
511 # pidfile n If set, use check_pidfile $pidfile $command,
512 # otherwise use check_process $command.
513 # In either case, only check if $command is set.
515 # procname n Process name to check for instead of $command.
517 # rcvar n This is checked with checkyesno to determine
518 # if the action should be run.
520 # ${name}_chroot n Directory to chroot to before running ${command}
521 # Requires /usr to be mounted.
523 # ${name}_chdir n Directory to cd to before running ${command}
524 # (if not using ${name}_chroot).
526 # ${name}_flags n Arguments to call ${command} with.
527 # NOTE: $flags from the parent environment
528 # can be used to override this.
530 # ${name}_env n Environment variables to run ${command} with.
532 # ${name}_nice n Nice level to run ${command} at.
534 # ${name}_user n User to run ${command} as, using su(1) if not
535 # using ${name}_chroot.
536 # Requires /usr to be mounted.
538 # ${name}_group n Group to run chrooted ${command} as.
539 # Requires /usr to be mounted.
541 # ${name}_groups n Comma separated list of supplementary groups
542 # to run the chrooted ${command} with.
543 # Requires /usr to be mounted.
545 # ${name}_prepend n Command added before ${command}.
547 # ${rc_arg}_cmd n If set, use this as the method when invoked;
548 # Otherwise, use default command (see below)
550 # ${rc_arg}_precmd n If set, run just before performing the
551 # ${rc_arg}_cmd method in the default
552 # operation (i.e, after checking for required
553 # bits and process (non)existence).
554 # If this completes with a non-zero exit code,
555 # don't run ${rc_arg}_cmd.
557 # ${rc_arg}_postcmd n If set, run just after performing the
558 # ${rc_arg}_cmd method, if that method
559 # returned a zero exit code.
561 # required_dirs n If set, check for the existence of the given
562 # directories before running the default
565 # required_files n If set, check for the readability of the given
566 # files before running the default (re)start
569 # required_modules n If set, ensure the given kernel modules are
570 # loaded before running a (re)start command.
571 # The check and possible loads are actually
572 # done after start_precmd so that the modules
573 # aren't loaded in vain, should the precmd
574 # return a non-zero status to indicate a error.
575 # If a word in the list looks like "foo:bar",
576 # "foo" is the KLD file name and "bar" is the
577 # module name. If a word looks like "foo~bar",
578 # "foo" is the KLD file name and "bar" is a
579 # egrep(1) pattern matching the module name.
580 # Otherwise the module name is assumed to be
581 # the same as the KLD file name, which is most
582 # common. See load_kld().
584 # required_vars n If set, perform checkyesno on each of the
585 # listed variables before running the default
588 # Default behaviour for a given argument, if no override method is
591 # Argument Default behaviour
592 # -------- -----------------
593 # start if !running && checkyesno ${rcvar}
597 # rc_pid=$(check_pidfile $pidfile $command)
599 # rc_pid=$(check_process $command)
600 # kill $sig_stop $rc_pid
601 # wait_for_pids $rc_pid
602 # ($sig_stop defaults to TERM.)
604 # reload Similar to stop, except use $sig_reload instead,
605 # and doesn't wait_for_pids.
606 # $sig_reload defaults to HUP.
608 # restart Run `stop' then `start'.
610 # status Show if ${command} is running, etc.
612 # poll Wait for ${command} to exit.
614 # rcvar Display what rc.conf variable is used (if any).
616 # Variables available to methods, and after run_rc_command() has
621 # rc_arg Argument to command, after fast/force/one processing
624 # rc_flags Flags to start the default command with.
625 # Defaults to ${name}_flags, unless overridden
626 # by $flags from the environment.
627 # This variable may be changed by the precmd method.
629 # rc_pid PID of command (if appropriate)
631 # rc_fast Not empty if "fast" was provided (q.v.)
633 # rc_force Not empty if "force" was provided (q.v.)
635 # rc_quiet Not empty if "quiet" was provided
643 fast*) # "fast" prefix; don't check pid
644 rc_arg=${rc_arg#fast}
646 force*) # "force" prefix; always start
647 rc_arg=${rc_arg#force}
649 one*) # "one" prefix; set ${rcvar}=yes
653 set_provide_list $rc_arg $RC_CONFIGURED
661 if [ -z "$name" ]; then
662 err 3 'run_rc_command: $name is not set.'
665 # Don't repeat the first argument when passing additional command-
666 # line arguments to the command subroutines.
672 fast*) # "fast" prefix; don't check pid
673 rc_arg=${rc_arg#fast}
677 force*) # "force" prefix; always start
678 rc_arg=${rc_arg#force}
680 if [ -n "${rcvar}" ]; then
684 one*) # "one" prefix; set ${rcvar}=yes
686 if [ -n "${rcvar}" ]; then
690 quiet*) # "quiet" prefix; omit some messages
692 rc_arg=${rc_arg#${_rc_prefix}}
697 eval _override_command=\$${name}_program
698 if [ -n "$_override_command" ]; then
699 command=$_override_command
702 _keywords="start stop restart rcvar $extra_commands"
705 _procname=${procname:-${command}}
707 # setup pid check command if not fast
708 if [ -z "$rc_fast" -a -n "$_procname" ]; then
709 if [ -n "$pidfile" ]; then
710 _pidcmd='rc_pid=$(check_pidfile '"$pidfile $_procname $command_interpreter"')'
712 _pidcmd='rc_pid=$(check_process '"$_procname $command_interpreter"')'
714 if [ -n "$_pidcmd" ]; then
715 _keywords="${_keywords} status poll"
719 if [ -z "$rc_arg" ]; then
720 rc_usage "$_keywords"
723 if [ -n "$flags" ]; then # allow override from environment
726 eval rc_flags=\$${name}_flags
728 eval _chdir=\$${name}_chdir _chroot=\$${name}_chroot \
729 _nice=\$${name}_nice _user=\$${name}_user \
730 _group=\$${name}_group _groups=\$${name}_groups \
731 _env=\$${name}_env _prepend=\$${name}_prepend
733 if [ -n "$_user" ]; then # unset $_user if running as that user
734 if [ "$_user" = "$(id -un)" ]; then
739 # if ${rcvar} is set, and $1 is not
741 # checkyesno ${rcvar}
742 # and return if that failed
744 if [ -n "${rcvar}" -a "$rc_arg" != "rcvar" ]; then
745 if ! checkyesno ${rcvar}; then
746 set_provide_list $rc_arg $RC_DISABLED
751 eval $_pidcmd # determine the pid if necessary
753 for _elem in $_keywords; do
754 if [ "$_elem" != "$rc_arg" ]; then
758 # if there's a custom ${XXX_cmd},
759 # run that instead of the default
761 eval _cmd=\$${rc_arg}_cmd _precmd=\$${rc_arg}_precmd \
762 _postcmd=\$${rc_arg}_postcmd
763 if [ -n "$_cmd" ]; then
764 # if the precmd failed and force
767 if [ -n "$_precmd" ]; then
768 debug "run_rc_command: evaluating ${_precmd}()."
769 eval $_precmd $rc_extra_args
772 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
775 if [ -n "$_cmd" ]; then
776 debug "run_rc_command: evaluating ${_cmd}()."
777 eval $_cmd $rc_extra_args
779 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
782 if [ -n "$_postcmd" ]; then
783 debug "run_rc_command: evaluating ${_postcmd}()."
784 eval $_postcmd $rc_extra_args
786 check_early_term $rc_arg $_return "" || return $(($?-1))
788 set_provide_list $rc_arg $_return
789 adjust_return_code $_return
793 case "$rc_arg" in # default operations...
796 if [ -n "$rc_pid" ]; then
797 echo "${name} is running as pid $rc_pid."
799 echo "${name} is not running."
805 if [ -n "$rc_pid" ]; then
806 if [ -z "$rc_quiet" ]; then
807 echo "${name} already running? (pid=$rc_pid)."
812 if [ ! -x $command ]; then
813 info "run_rc_command: cannot run ($command)."
814 set_provide_list $rc_arg $RC_FAILED
815 adjust_return_code $RC_FAILED
819 # check for required variables,
820 # directories, and files
822 for _f in $required_vars; do
823 if ! checkyesno $_f; then
824 warn "\$${_f} is not set."
825 if [ -z "$rc_force" ]; then
826 set_provide_list $rc_arg $RC_FAILED
827 adjust_return_code $RC_FAILED
832 for _f in $required_dirs; do
833 if [ ! -d "${_f}/." ]; then
834 warn "${_f} is not a directory."
835 if [ -z "$rc_force" ]; then
836 set_provide_list $rc_arg $RC_FAILED
837 adjust_return_code $RC_FAILED
842 for _f in $required_files; do
843 if [ ! -r "${_f}" ]; then
844 warn "${_f} is not readable."
845 if [ -z "$rc_force" ]; then
846 set_provide_list $rc_arg $RC_FAILED
847 adjust_return_code $RC_FAILED
852 for _f in $required_modules; do
854 *~*) _args="-e ${_f#*~} ${_f%%~*}" ;;
855 *:*) _args="-m ${_f#*:} ${_f%%:*}" ;;
858 if ! load_kld ${_args}; then
859 if [ -z "$rc_force" ]; then
860 set_provide_list $rc_arg $RC_FAILED
861 adjust_return_code $RC_FAILED
867 # if the precmd failed and force
870 if [ -n "${_precmd}" ]; then
871 debug "run_rc_command: evaluating ${_precmd}()."
874 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
877 # setup the command to run, and run it
879 echo "Starting ${name}."
880 if [ -n "$_chroot" ]; then
882 ${_nice:+nice -n $_nice }\
884 chroot ${_user:+-u $_user }${_group:+-g $_group }${_groups:+-G $_groups }\
885 $_chroot $command $rc_flags $command_args"
888 ${_chdir:+cd $_chdir; }\
889 ${_nice:+nice -n $_nice }\
891 $command $rc_flags $command_args"
892 if [ -n "$_user" ]; then
893 _doit="su -m $_user -c 'sh -c \"$_doit\"'"
895 if [ -n "$_prepend" ]; then
896 _doit="$_prepend $_doit"
900 # if the cmd failed and force
903 debug "run_rc_command: _doit: $_doit"
906 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
907 # finally, run postcmd
909 if [ -n "${_postcmd}" ]; then
910 debug "run_rc_command: evaluating ${_postcmd}()."
916 if [ -z "$rc_pid" ]; then
917 if [ -n "$pidfile" ]; then
919 "${name} not running? (check $pidfile)."
921 echo "${name} not running?"
923 set_provide_list $rc_arg $RC_STOPPED
927 # if the precmd failed and force
930 if [ -n "$_precmd" ]; then
933 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
936 # send the signal to stop
938 echo "Stopping ${name}."
939 _doit="kill -${sig_stop:-TERM} $rc_pid"
940 if [ -n "$_user" ]; then
941 _doit="su -m $_user -c 'sh -c \"$_doit\"'"
944 # if the stop cmd failed and force
949 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
950 # wait for the command to exit,
953 wait_for_pids $rc_pid
954 if [ -n "$_postcmd" ]; then
961 if [ -z "$rc_pid" ]; then
962 if [ -n "$pidfile" ]; then
964 "${name} not running? (check $pidfile)."
966 echo "${name} not running?"
968 set_provide_list $rc_arg $RC_FAILED
971 echo "Reloading ${name} config files."
972 if [ -n "$_precmd" ]; then
975 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
977 _doit="kill -${sig_reload:-HUP} $rc_pid"
978 if [ -n "$_user" ]; then
979 _doit="su -m $_user -c 'sh -c \"$_doit\"'"
983 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
984 if [ -n "$_postcmd" ]; then
991 if [ -n "$_precmd" ]; then
992 eval $_precmd $rc_extra_args
994 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
996 # prevent restart being called more
997 # than once by any given script
999 if [ -n "$_rc_restart_done" ]; then
1002 _rc_restart_done=YES
1004 ( $0 ${rc_force:+force}stop $rc_extra_args )
1005 $0 ${rc_force:+force}start $rc_extra_args
1008 if [ -n "$_postcmd" ]; then
1009 eval $_postcmd $rc_extra_args
1010 adjust_return_code $?
1013 # Do not set_provide_list(), the start command above
1014 # will have done it for us and we do not know the
1015 # actual RC code to base a setting on here.
1021 if [ -n "$rc_pid" ]; then
1022 wait_for_pids $rc_pid
1028 if [ -n "$rcvar" ]; then
1029 if checkyesno ${rcvar}; then
1030 echo "\$${rcvar}=YES"
1032 echo "\$${rcvar}=NO"
1038 rc_usage "$_keywords"
1042 set_provide_list $rc_arg $_return
1043 adjust_return_code $_return
1047 echo 1>&2 "$0: unknown directive '$rc_arg'."
1048 rc_usage "$_keywords"
1053 # Helper functions for run_rc_command: common code.
1054 # They use such global variables besides the exported rc_* ones:
1057 # ------------------
1064 check_required_before "$rc_arg" || return 1
1066 if [ -n "$_precmd" ]; then
1067 debug "run_rc_command: ${rc_arg}_precmd: $_precmd $rc_extra_args"
1068 eval "$_precmd $rc_extra_args"
1071 # If precmd failed and force isn't set, request exit.
1072 if [ $_return -ne 0 ] && [ -z "$rc_force" ]; then
1077 check_required_after "$rc_arg" || return 1
1084 if [ -n "$_postcmd" ]; then
1085 debug "run_rc_command: ${rc_arg}_postcmd: $_postcmd $rc_extra_args"
1086 eval "$_postcmd $rc_extra_args"
1094 debug "run_rc_command: doit: $*"
1098 # If command failed and force isn't set, request exit.
1099 if [ $_return -ne 0 ] && [ -z "$rc_force" ]; then
1106 _run_rc_notrunning()
1110 if [ -n "$pidfile" ]; then
1111 _pidmsg=" (check $pidfile)."
1115 echo 1>&2 "${name} not running?${_pidmsg}"
1122 _cmd="kill -$1 $rc_pid"
1123 if [ -n "$_user" ]; then
1124 _cmd="su -m ${_user} -c 'sh -c \"${_cmd}\"'"
1130 # run_rc_script file arg
1131 # Start the script `file' with `arg', and correctly handle the
1132 # return value from the script. If `file' ends with `.sh', it's
1133 # sourced into the current environment. If `file' appears to be
1134 # a backup or scratch file, ignore it. Otherwise if it's
1135 # executable run as a child process.
1141 if [ -z "$_file" -o -z "$_arg" ]; then
1142 err 3 'USAGE: run_rc_script file arg'
1145 trap "echo 'Reboot interrupted'; exit 1" 3
1147 unset name command command_args command_interpreter \
1148 extra_commands pidfile procname \
1149 rcvar required_dirs required_files required_vars
1150 eval unset ${_arg}_cmd ${_arg}_precmd ${_arg}_postcmd
1153 *.sh) # run in current shell
1154 set $_arg ; . $_file
1156 *[~#]|*.OLD|*.orig) # scratch file; skip
1157 warn "Ignoring scratch file $_file"
1159 *) # run in subshell
1160 if [ -x $_file ]; then
1161 if [ -n "$rc_fast_and_loose" ]; then
1162 set $_arg ; . $_file
1164 ( trap "echo 'Reboot interrupted'; exit 1" 3
1165 set $_arg ; . $_file )
1172 # Code common to scripts that need to load a kernel module
1173 # if it isn't in the kernel yet. Syntax:
1174 # load_kld [-e regex] [-m module] file
1175 # where -e or -m chooses the way to check if the module
1176 # is already loaded:
1177 # regex is egrep'd in the output from `kldstat -v',
1178 # module is passed to `kldstat -m'.
1179 # The default way is as though `-m file' were specified.
1182 local _loaded _mod _opt _re
1184 while getopts "e:m:" _opt; do
1187 m) _mod="$OPTARG" ;;
1188 *) err 3 'USAGE: load_kld [-e regex] [-m module] file' ;;
1191 shift $(($OPTIND - 1))
1192 if [ $# -ne 1 ]; then
1193 err 3 'USAGE: load_kld [-e regex] [-m module] file'
1197 if [ -n "$_re" ]; then
1198 if kldstat -v | egrep -q -e "$_re"; then
1202 if kldstat -q -m "$_mod"; then
1207 if ! kldload "$1"; then
1208 warn "Unable to load kernel module $1"
1211 info "$1 kernel module loaded."
1214 debug "load_kld: $1 kernel module already loaded."
1221 # Change every $src in $str to $dst.
1222 # Useful when /usr is not yet mounted and we cannot use tr(1), sed(1) nor
1226 local _str _src _dst _out _com
1233 for _com in ${_str}; do
1234 if [ -z "${_out}" ]; then
1237 _out="${_out}${_dst}${_com}"
1245 # Source in the configuration file for a given command.
1250 if [ -z "$_command" ]; then
1251 err 3 'USAGE: load_rc_config command'
1254 if [ -z "$_rc_conf_loaded" ]; then
1255 if [ -r /etc/defaults/rc.conf ]; then
1256 debug "Sourcing /etc/defaults/rc.conf"
1257 . /etc/defaults/rc.conf
1259 elif [ -r /etc/rc.conf ]; then
1260 debug "Sourcing /etc/rc.conf (/etc/defaults/rc.conf doesn't exist)."
1265 if [ -f /etc/rc.conf.d/"$_command" ]; then
1266 debug "Sourcing /etc/rc.conf.d/${_command}"
1267 . /etc/rc.conf.d/"$_command"
1270 # XXX - Deprecated variable name support
1272 [ -n "$portmap_enable" ] && rpcbind_enable="$portmap_enable"
1273 [ -n "$portmap_program" ] && rpcbind_program="$portmap_program"
1274 [ -n "$portmap_flags" ] && rpcbind_flags="$portmap_flags"
1275 [ -n "$single_mountd_enable" ] && mountd_enable="$single_mountd_enable"
1276 [ -n "$dhcp_program" ] && dhclient_program="$dhcp_program"
1277 [ -n "$dhcp_flags" ] && dhclient_flags="$dhcp_flags"
1283 # Print a usage string for $0, with `commands' being a list of
1288 echo -n 1>&2 "Usage: $0 [fast|force|one|quiet]("
1292 echo -n 1>&2 "$_sep$_elem"
1300 # err exitval message
1301 # Display message to stderr and log to the syslog, and exit with exitval.
1308 if [ -x /usr/bin/logger ]; then
1309 logger "$0: ERROR: $*"
1311 echo 1>&2 "$0: ERROR: $*"
1317 # Display message to stderr and log to the syslog.
1321 if [ -x /usr/bin/logger ]; then
1322 logger "$0: WARNING: $*"
1324 echo 1>&2 "$0: WARNING: $*"
1329 # Display informational message to stdout and log to syslog.
1334 [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
1335 if [ -x /usr/bin/logger ]; then
1336 logger "$0: INFO: $*"
1345 # If debugging is enabled in rc.conf output message to stderr.
1346 # BEWARE that you don't call any subroutine that itself calls this
1352 [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
1353 if [ -x /usr/bin/logger ]; then
1354 logger "$0: INFO: $*"
1356 echo 1>&2 "$0: DEBUG: $*"
1362 # backup_file action file cur backup
1363 # Make a backup copy of `file' into `cur', and save the previous
1364 # version of `cur' as `backup' or use rcs for archiving.
1366 # This routine checks the value of the backup_uses_rcs variable,
1367 # which can be either YES or NO.
1369 # The `action' keyword can be one of the following:
1371 # add `file' is now being backed up (and is possibly
1372 # being reentered into the backups system). `cur'
1373 # is created and RCS files, if necessary, are
1376 # update `file' has changed and needs to be backed up.
1377 # If `cur' exists, it is copied to to `back' or
1378 # checked into RCS (if the repository file is old),
1379 # and then `file' is copied to `cur'. Another RCS
1380 # check in done here if RCS is being used.
1382 # remove `file' is no longer being tracked by the backups
1383 # system. If RCS is not being used, `cur' is moved
1384 # to `back', otherwise an empty file is checked in,
1385 # and then `cur' is removed.
1395 if checkyesno backup_uses_rcs; then
1396 _msg0="backup archive"
1399 # ensure that history file is not locked
1400 if [ -f $_cur,v ]; then
1401 rcs -q -u -U -M $_cur
1404 # ensure after switching to rcs that the
1405 # current backup is not lost
1406 if [ -f $_cur ]; then
1407 # no archive, or current newer than archive
1408 if [ ! -f $_cur,v -o $_cur -nt $_cur,v ]; then
1409 ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur
1417 cp -p $_cpfile $_cur
1418 ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur
1421 chown root:wheel $_cur $_cur,v
1425 ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur
1427 chown root:wheel $_cur $_cur,v
1434 if [ -f $_cur ]; then
1437 cp -p $_cpfile $_cur
1438 chown root:wheel $_cur
1447 # devfs_mount_jail dir
1448 # Mounts a devfs file system appropriate for jails
1449 # on the directory dir.
1450 # This function returns non-zero if an error occurs.
1456 _me="devfs_mount_jail"
1458 if ! devfs_domount "$jdev" $rs; then
1459 warn "$_me: devfs was not mounted on $jdev"
1466 # Mount devfs on dir.
1467 # Returns 0 on success.
1473 _me="devfs_domount()"
1475 if [ -z "$devdir" ]; then
1476 warn "$_me: you must specify a mount-point"
1480 debug "$_me: mount-point is ($devdir)"
1481 if ! mount -t devfs devfs "$devdir"; then
1482 warn "$_me: Unable to mount devfs on $devdir"
1489 # Find scripts in local_startup directories.
1490 find_local_scripts() {
1492 for dir in ${local_startup}; do
1493 if [ -d "${dir}" ]; then
1494 for file in `grep -l '^# PROVIDE:' ${dir}/* 2>/dev/null`; do
1497 *) if [ -x "$file" ]; then
1498 local_rc="${local_rc} ${file}"