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}_nice n Nice level to run ${command} at.
532 # ${name}_user n User to run ${command} as, using su(1) if not
533 # using ${name}_chroot.
534 # Requires /usr to be mounted.
536 # ${name}_group n Group to run chrooted ${command} as.
537 # Requires /usr to be mounted.
539 # ${name}_groups n Comma separated list of supplementary groups
540 # to run the chrooted ${command} with.
541 # Requires /usr to be mounted.
543 # ${rc_arg}_cmd n If set, use this as the method when invoked;
544 # Otherwise, use default command (see below)
546 # ${rc_arg}_precmd n If set, run just before performing the
547 # ${rc_arg}_cmd method in the default
548 # operation (i.e, after checking for required
549 # bits and process (non)existence).
550 # If this completes with a non-zero exit code,
551 # don't run ${rc_arg}_cmd.
553 # ${rc_arg}_postcmd n If set, run just after performing the
554 # ${rc_arg}_cmd method, if that method
555 # returned a zero exit code.
557 # required_dirs n If set, check for the existence of the given
558 # directories before running the default
561 # required_files n If set, check for the readability of the given
562 # files before running the default (re)start
565 # required_modules n If set, ensure the given kernel modules are
566 # loaded before running a (re)start command.
567 # The check and possible loads are actually
568 # done after start_precmd so that the modules
569 # aren't loaded in vain, should the precmd
570 # return a non-zero status to indicate a error.
571 # If a word in the list looks like "foo:bar",
572 # "foo" is the KLD file name and "bar" is the
573 # module name. If a word looks like "foo~bar",
574 # "foo" is the KLD file name and "bar" is a
575 # egrep(1) pattern matching the module name.
576 # Otherwise the module name is assumed to be
577 # the same as the KLD file name, which is most
578 # common. See load_kld().
580 # required_vars n If set, perform checkyesno on each of the
581 # listed variables before running the default
584 # Default behaviour for a given argument, if no override method is
587 # Argument Default behaviour
588 # -------- -----------------
589 # start if !running && checkyesno ${rcvar}
593 # rc_pid=$(check_pidfile $pidfile $command)
595 # rc_pid=$(check_process $command)
596 # kill $sig_stop $rc_pid
597 # wait_for_pids $rc_pid
598 # ($sig_stop defaults to TERM.)
600 # reload Similar to stop, except use $sig_reload instead,
601 # and doesn't wait_for_pids.
602 # $sig_reload defaults to HUP.
604 # restart Run `stop' then `start'.
606 # status Show if ${command} is running, etc.
608 # poll Wait for ${command} to exit.
610 # rcvar Display what rc.conf variable is used (if any).
612 # Variables available to methods, and after run_rc_command() has
617 # rc_arg Argument to command, after fast/force/one processing
620 # rc_flags Flags to start the default command with.
621 # Defaults to ${name}_flags, unless overridden
622 # by $flags from the environment.
623 # This variable may be changed by the precmd method.
625 # rc_pid PID of command (if appropriate)
627 # rc_fast Not empty if "fast" was provided (q.v.)
629 # rc_force Not empty if "force" was provided (q.v.)
631 # rc_quiet Not empty if "quiet" was provided
639 fast*) # "fast" prefix; don't check pid
640 rc_arg=${rc_arg#fast}
642 force*) # "force" prefix; always start
643 rc_arg=${rc_arg#force}
645 one*) # "one" prefix; set ${rcvar}=yes
649 set_provide_list $rc_arg $RC_CONFIGURED
657 if [ -z "$name" ]; then
658 err 3 'run_rc_command: $name is not set.'
661 # Don't repeat the first argument when passing additional command-
662 # line arguments to the command subroutines.
668 fast*) # "fast" prefix; don't check pid
669 rc_arg=${rc_arg#fast}
673 force*) # "force" prefix; always start
674 rc_arg=${rc_arg#force}
676 if [ -n "${rcvar}" ]; then
680 one*) # "one" prefix; set ${rcvar}=yes
682 if [ -n "${rcvar}" ]; then
686 quiet*) # "quiet" prefix; omit some messages
688 rc_arg=${rc_arg#${_rc_prefix}}
693 eval _override_command=\$${name}_program
694 if [ -n "$_override_command" ]; then
695 command=$_override_command
698 _keywords="start stop restart rcvar $extra_commands"
701 _procname=${procname:-${command}}
703 # setup pid check command if not fast
704 if [ -z "$rc_fast" -a -n "$_procname" ]; then
705 if [ -n "$pidfile" ]; then
706 _pidcmd='rc_pid=$(check_pidfile '"$pidfile $_procname $command_interpreter"')'
708 _pidcmd='rc_pid=$(check_process '"$_procname $command_interpreter"')'
710 if [ -n "$_pidcmd" ]; then
711 _keywords="${_keywords} status poll"
715 if [ -z "$rc_arg" ]; then
716 rc_usage "$_keywords"
719 if [ -n "$flags" ]; then # allow override from environment
722 eval rc_flags=\$${name}_flags
724 eval _chdir=\$${name}_chdir _chroot=\$${name}_chroot \
725 _nice=\$${name}_nice _user=\$${name}_user \
726 _group=\$${name}_group _groups=\$${name}_groups
728 if [ -n "$_user" ]; then # unset $_user if running as that user
729 if [ "$_user" = "$(id -un)" ]; then
734 # if ${rcvar} is set, and $1 is not
736 # checkyesno ${rcvar}
737 # and return if that failed
739 if [ -n "${rcvar}" -a "$rc_arg" != "rcvar" ]; then
740 if ! checkyesno ${rcvar}; then
741 set_provide_list $rc_arg $RC_DISABLED
746 eval $_pidcmd # determine the pid if necessary
748 for _elem in $_keywords; do
749 if [ "$_elem" != "$rc_arg" ]; then
753 # if there's a custom ${XXX_cmd},
754 # run that instead of the default
756 eval _cmd=\$${rc_arg}_cmd _precmd=\$${rc_arg}_precmd \
757 _postcmd=\$${rc_arg}_postcmd
758 if [ -n "$_cmd" ]; then
759 # if the precmd failed and force
762 if [ -n "$_precmd" ]; then
763 debug "run_rc_command: evaluating ${_precmd}()."
764 eval $_precmd $rc_extra_args
767 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
770 if [ -n "$_cmd" ]; then
771 debug "run_rc_command: evaluating ${_cmd}()."
772 eval $_cmd $rc_extra_args
774 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
777 if [ -n "$_postcmd" ]; then
778 debug "run_rc_command: evaluating ${_postcmd}()."
779 eval $_postcmd $rc_extra_args
781 check_early_term $rc_arg $_return "" || return $(($?-1))
783 set_provide_list $rc_arg $_return
784 adjust_return_code $_return
788 case "$rc_arg" in # default operations...
791 if [ -n "$rc_pid" ]; then
792 echo "${name} is running as pid $rc_pid."
794 echo "${name} is not running."
800 if [ -n "$rc_pid" ]; then
801 if [ -z "$rc_quiet" ]; then
802 echo "${name} already running? (pid=$rc_pid)."
807 if [ ! -x $command ]; then
808 info "run_rc_command: cannot run ($command)."
809 set_provide_list $rc_arg $RC_FAILED
810 adjust_return_code $RC_FAILED
814 # check for required variables,
815 # directories, and files
817 for _f in $required_vars; do
818 if ! checkyesno $_f; then
819 warn "\$${_f} is not set."
820 if [ -z "$rc_force" ]; then
821 set_provide_list $rc_arg $RC_FAILED
822 adjust_return_code $RC_FAILED
827 for _f in $required_dirs; do
828 if [ ! -d "${_f}/." ]; then
829 warn "${_f} is not a directory."
830 if [ -z "$rc_force" ]; then
831 set_provide_list $rc_arg $RC_FAILED
832 adjust_return_code $RC_FAILED
837 for _f in $required_files; do
838 if [ ! -r "${_f}" ]; then
839 warn "${_f} is not readable."
840 if [ -z "$rc_force" ]; then
841 set_provide_list $rc_arg $RC_FAILED
842 adjust_return_code $RC_FAILED
847 for _f in $required_modules; do
849 *~*) _args="-e ${_f#*~} ${_f%%~*}" ;;
850 *:*) _args="-m ${_f#*:} ${_f%%:*}" ;;
853 if ! load_kld ${_args}; then
854 if [ -z "$rc_force" ]; then
855 set_provide_list $rc_arg $RC_FAILED
856 adjust_return_code $RC_FAILED
862 # if the precmd failed and force
865 if [ -n "${_precmd}" ]; then
866 debug "run_rc_command: evaluating ${_precmd}()."
869 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
872 # setup the command to run, and run it
874 echo "Starting ${name}."
875 if [ -n "$_chroot" ]; then
877 ${_nice:+nice -n $_nice }\
878 chroot ${_user:+-u $_user }${_group:+-g $_group }${_groups:+-G $_groups }\
879 $_chroot $command $rc_flags $command_args"
882 ${_chdir:+cd $_chdir; }\
883 ${_nice:+nice -n $_nice }\
884 $command $rc_flags $command_args"
885 if [ -n "$_user" ]; then
886 _doit="su -m $_user -c 'sh -c \"$_doit\"'"
890 # if the cmd failed and force
893 debug "run_rc_command: _doit: $_doit"
896 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
897 # finally, run postcmd
899 if [ -n "${_postcmd}" ]; then
900 debug "run_rc_command: evaluating ${_postcmd}()."
906 if [ -z "$rc_pid" ]; then
907 if [ -n "$pidfile" ]; then
909 "${name} not running? (check $pidfile)."
911 echo "${name} not running?"
913 set_provide_list $rc_arg $RC_STOPPED
917 # if the precmd failed and force
920 if [ -n "$_precmd" ]; then
923 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
926 # send the signal to stop
928 echo "Stopping ${name}."
929 _doit="kill -${sig_stop:-TERM} $rc_pid"
930 if [ -n "$_user" ]; then
931 _doit="su -m $_user -c 'sh -c \"$_doit\"'"
934 # if the stop cmd failed and force
939 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
940 # wait for the command to exit,
943 wait_for_pids $rc_pid
944 if [ -n "$_postcmd" ]; then
951 if [ -z "$rc_pid" ]; then
952 if [ -n "$pidfile" ]; then
954 "${name} not running? (check $pidfile)."
956 echo "${name} not running?"
958 set_provide_list $rc_arg $RC_FAILED
961 echo "Reloading ${name} config files."
962 if [ -n "$_precmd" ]; then
965 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
967 _doit="kill -${sig_reload:-HUP} $rc_pid"
968 if [ -n "$_user" ]; then
969 _doit="su -m $_user -c 'sh -c \"$_doit\"'"
973 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
974 if [ -n "$_postcmd" ]; then
981 if [ -n "$_precmd" ]; then
982 eval $_precmd $rc_extra_args
984 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
986 # prevent restart being called more
987 # than once by any given script
989 if [ -n "$_rc_restart_done" ]; then
994 ( $0 ${rc_force:+force}stop $rc_extra_args )
995 $0 ${rc_force:+force}start $rc_extra_args
998 if [ -n "$_postcmd" ]; then
999 eval $_postcmd $rc_extra_args
1000 adjust_return_code $?
1003 # Do not set_provide_list(), the start command above
1004 # will have done it for us and we do not know the
1005 # actual RC code to base a setting on here.
1011 if [ -n "$rc_pid" ]; then
1012 wait_for_pids $rc_pid
1018 if [ -n "$rcvar" ]; then
1019 if checkyesno ${rcvar}; then
1020 echo "\$${rcvar}=YES"
1022 echo "\$${rcvar}=NO"
1028 rc_usage "$_keywords"
1032 set_provide_list $rc_arg $_return
1033 adjust_return_code $_return
1037 echo 1>&2 "$0: unknown directive '$rc_arg'."
1038 rc_usage "$_keywords"
1043 # Helper functions for run_rc_command: common code.
1044 # They use such global variables besides the exported rc_* ones:
1047 # ------------------
1054 check_required_before "$rc_arg" || return 1
1056 if [ -n "$_precmd" ]; then
1057 debug "run_rc_command: ${rc_arg}_precmd: $_precmd $rc_extra_args"
1058 eval "$_precmd $rc_extra_args"
1061 # If precmd failed and force isn't set, request exit.
1062 if [ $_return -ne 0 ] && [ -z "$rc_force" ]; then
1067 check_required_after "$rc_arg" || return 1
1074 if [ -n "$_postcmd" ]; then
1075 debug "run_rc_command: ${rc_arg}_postcmd: $_postcmd $rc_extra_args"
1076 eval "$_postcmd $rc_extra_args"
1084 debug "run_rc_command: doit: $*"
1088 # If command failed and force isn't set, request exit.
1089 if [ $_return -ne 0 ] && [ -z "$rc_force" ]; then
1096 _run_rc_notrunning()
1100 if [ -n "$pidfile" ]; then
1101 _pidmsg=" (check $pidfile)."
1105 echo 1>&2 "${name} not running?${_pidmsg}"
1112 _cmd="kill -$1 $rc_pid"
1113 if [ -n "$_user" ]; then
1114 _cmd="su -m ${_user} -c 'sh -c \"${_cmd}\"'"
1120 # run_rc_script file arg
1121 # Start the script `file' with `arg', and correctly handle the
1122 # return value from the script. If `file' ends with `.sh', it's
1123 # sourced into the current environment. If `file' appears to be
1124 # a backup or scratch file, ignore it. Otherwise if it's
1125 # executable run as a child process.
1131 if [ -z "$_file" -o -z "$_arg" ]; then
1132 err 3 'USAGE: run_rc_script file arg'
1135 trap "echo 'Reboot interrupted'; exit 1" 3
1137 unset name command command_args command_interpreter \
1138 extra_commands pidfile procname \
1139 rcvar required_dirs required_files required_vars
1140 eval unset ${_arg}_cmd ${_arg}_precmd ${_arg}_postcmd
1143 *.sh) # run in current shell
1144 set $_arg ; . $_file
1146 *[~#]|*.OLD|*.orig) # scratch file; skip
1147 warn "Ignoring scratch file $_file"
1149 *) # run in subshell
1150 if [ -x $_file ]; then
1151 if [ -n "$rc_fast_and_loose" ]; then
1152 set $_arg ; . $_file
1154 ( trap "echo 'Reboot interrupted'; exit 1" 3
1155 set $_arg ; . $_file )
1162 # Code common to scripts that need to load a kernel module
1163 # if it isn't in the kernel yet. Syntax:
1164 # load_kld [-e regex] [-m module] file
1165 # where -e or -m chooses the way to check if the module
1166 # is already loaded:
1167 # regex is egrep'd in the output from `kldstat -v',
1168 # module is passed to `kldstat -m'.
1169 # The default way is as though `-m file' were specified.
1172 local _loaded _mod _opt _re
1174 while getopts "e:m:" _opt; do
1177 m) _mod="$OPTARG" ;;
1178 *) err 3 'USAGE: load_kld [-e regex] [-m module] file' ;;
1181 shift $(($OPTIND - 1))
1182 if [ $# -ne 1 ]; then
1183 err 3 'USAGE: load_kld [-e regex] [-m module] file'
1187 if [ -n "$_re" ]; then
1188 if kldstat -v | egrep -q -e "$_re"; then
1192 if kldstat -q -m "$_mod"; then
1197 if ! kldload "$1"; then
1198 warn "Unable to load kernel module $1"
1201 info "$1 kernel module loaded."
1204 debug "load_kld: $1 kernel module already loaded."
1211 # Change every $src in $str to $dst.
1212 # Useful when /usr is not yet mounted and we cannot use tr(1), sed(1) nor
1216 local _str _src _dst _out _com
1223 for _com in ${_str}; do
1224 if [ -z "${_out}" ]; then
1227 _out="${_out}${_dst}${_com}"
1235 # Source in the configuration file for a given command.
1240 if [ -z "$_command" ]; then
1241 err 3 'USAGE: load_rc_config command'
1244 if [ -z "$_rc_conf_loaded" ]; then
1245 if [ -r /etc/defaults/rc.conf ]; then
1246 debug "Sourcing /etc/defaults/rc.conf"
1247 . /etc/defaults/rc.conf
1249 elif [ -r /etc/rc.conf ]; then
1250 debug "Sourcing /etc/rc.conf (/etc/defaults/rc.conf doesn't exist)."
1255 if [ -f /etc/rc.conf.d/"$_command" ]; then
1256 debug "Sourcing /etc/rc.conf.d/${_command}"
1257 . /etc/rc.conf.d/"$_command"
1260 # XXX - Deprecated variable name support
1262 [ -n "$portmap_enable" ] && rpcbind_enable="$portmap_enable"
1263 [ -n "$portmap_program" ] && rpcbind_program="$portmap_program"
1264 [ -n "$portmap_flags" ] && rpcbind_flags="$portmap_flags"
1265 [ -n "$single_mountd_enable" ] && mountd_enable="$single_mountd_enable"
1266 [ -n "$dhcp_program" ] && dhclient_program="$dhcp_program"
1267 [ -n "$dhcp_flags" ] && dhclient_flags="$dhcp_flags"
1273 # Print a usage string for $0, with `commands' being a list of
1278 echo -n 1>&2 "Usage: $0 [fast|force|one|quiet]("
1282 echo -n 1>&2 "$_sep$_elem"
1290 # err exitval message
1291 # Display message to stderr and log to the syslog, and exit with exitval.
1298 if [ -x /usr/bin/logger ]; then
1299 logger "$0: ERROR: $*"
1301 echo 1>&2 "$0: ERROR: $*"
1307 # Display message to stderr and log to the syslog.
1311 if [ -x /usr/bin/logger ]; then
1312 logger "$0: WARNING: $*"
1314 echo 1>&2 "$0: WARNING: $*"
1319 # Display informational message to stdout and log to syslog.
1324 [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
1325 if [ -x /usr/bin/logger ]; then
1326 logger "$0: INFO: $*"
1335 # If debugging is enabled in rc.conf output message to stderr.
1336 # BEWARE that you don't call any subroutine that itself calls this
1342 [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
1343 if [ -x /usr/bin/logger ]; then
1344 logger "$0: INFO: $*"
1346 echo 1>&2 "$0: DEBUG: $*"
1352 # backup_file action file cur backup
1353 # Make a backup copy of `file' into `cur', and save the previous
1354 # version of `cur' as `backup' or use rcs for archiving.
1356 # This routine checks the value of the backup_uses_rcs variable,
1357 # which can be either YES or NO.
1359 # The `action' keyword can be one of the following:
1361 # add `file' is now being backed up (and is possibly
1362 # being reentered into the backups system). `cur'
1363 # is created and RCS files, if necessary, are
1366 # update `file' has changed and needs to be backed up.
1367 # If `cur' exists, it is copied to to `back' or
1368 # checked into RCS (if the repository file is old),
1369 # and then `file' is copied to `cur'. Another RCS
1370 # check in done here if RCS is being used.
1372 # remove `file' is no longer being tracked by the backups
1373 # system. If RCS is not being used, `cur' is moved
1374 # to `back', otherwise an empty file is checked in,
1375 # and then `cur' is removed.
1385 if checkyesno backup_uses_rcs; then
1386 _msg0="backup archive"
1389 # ensure that history file is not locked
1390 if [ -f $_cur,v ]; then
1391 rcs -q -u -U -M $_cur
1394 # ensure after switching to rcs that the
1395 # current backup is not lost
1396 if [ -f $_cur ]; then
1397 # no archive, or current newer than archive
1398 if [ ! -f $_cur,v -o $_cur -nt $_cur,v ]; then
1399 ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur
1407 cp -p $_cpfile $_cur
1408 ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur
1411 chown root:wheel $_cur $_cur,v
1415 ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur
1417 chown root:wheel $_cur $_cur,v
1424 if [ -f $_cur ]; then
1427 cp -p $_cpfile $_cur
1428 chown root:wheel $_cur
1437 # devfs_mount_jail dir
1438 # Mounts a devfs file system appropriate for jails
1439 # on the directory dir.
1440 # This function returns non-zero if an error occurs.
1446 _me="devfs_mount_jail"
1448 if ! devfs_domount "$jdev" $rs; then
1449 warn "$_me: devfs was not mounted on $jdev"
1456 # Mount devfs on dir.
1457 # Returns 0 on success.
1463 _me="devfs_domount()"
1465 if [ -z "$devdir" ]; then
1466 warn "$_me: you must specify a mount-point"
1470 debug "$_me: mount-point is ($devdir)"
1471 if ! mount -t devfs devfs "$devdir"; then
1472 warn "$_me: Unable to mount devfs on $devdir"
1479 # Find scripts in local_startup directories.
1480 find_local_scripts() {
1482 for dir in ${local_startup}; do
1483 if [ -d "${dir}" ]; then
1484 for file in `grep -l '^# PROVIDE:' ${dir}/* 2>/dev/null`; do
1487 *) if [ -x "$file" ]; then
1488 local_rc="${local_rc} ${file}"