hammer(8) - Fix snapshot count in info directive.
[dragonfly.git] / etc / rc.d / netif
blobb37882b7267a7277c6205960e46c8b2bd394c7ab
1 #!/bin/sh
3 # Copyright (c) 2003 The FreeBSD Project. All rights reserved.
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions
7 # are met:
8 # 1. Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer.
10 # 2. Redistributions in binary form must reproduce the above copyright
11 # notice, this list of conditions and the following disclaimer in the
12 # documentation and/or other materials provided with the distribution.
14 # THIS SOFTWARE IS PROVIDED BY THE PROJECT ``AS IS'' AND ANY EXPRESS OR
15 # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 # IN NO EVENT SHALL THE PROJECT BE LIABLE FOR ANY DIRECT, INDIRECT,
18 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 # $FreeBSD: src/etc/rc.d/netif,v 1.2 2003/06/29 05:34:41 mtm Exp $
28 # PROVIDE: netif
29 # REQUIRE: atm1 mountcritlocal serial sppp sysctl tty
31 . /etc/rc.subr
32 . /etc/network.subr
34 name="network"
35 start_cmd="network_start"
36 stop_cmd="network_stop"
37 cloneup_cmd="clone_up"
38 clonedown_cmd="clone_down"
39 extra_commands="cloneup clonedown"
40 _cmdifn=
42 network_start()
44 # Set the list of interfaces to work on.
46 _cmdifn=$*
48 if [ -z "$_cmdifn" ]; then
50 # We're operating as a general network start routine.
53 # Create cloned interfaces
54 clone_up
56 # Create IPv6<-->IPv4 tunnels
57 gif_up
59 # Rename interfaces.
60 ifnet_rename
63 # Configure the interface(s).
64 network_common ifn_start verbose
66 # Give our interfaces a little time to come up
67 # before we start pounding them. In particular, dhclient
68 # and named can get mightily confused.
69 sleep 2
72 network_stop()
74 # Set the list of interfaces to work on.
76 _cmdifn=$*
78 echo -n "Stopping network:"
80 # Deconfigure the interface(s)
81 network_common ifn_stop
82 echo '.'
85 # network_common routine verbose
86 # Common configuration subroutine for network interfaces. This
87 # routine takes all the preparatory steps needed for configuring
88 # an interface and then calls $routine. If $verbose is specified,
89 # it will call ifconfig(8) to show, in long format, the configured
90 # interfaces. If $verbose is not given, it will simply output the
91 # configured interface(s).
92 network_common()
94 _func=
95 _verbose=
97 if [ -z "$1" ]; then
98 err 1 "network_common(): No function name specified."
99 else
100 _func="$1"
102 [ -n "$2" ] && _verbose=yes
104 # Get a list of network interfaces.
105 _ifn_list="`list_net_interfaces`"
107 # Set the scope of the command (all interfaces or just one).
109 _cooked_list=
110 if [ -n "$_cmdifn" ]; then
111 for i in $_cmdifn ; do
112 eval _if=\"`expr "$_ifn_list" : ".*\(${i}\).*"`\"
113 if [ -z "$_if" ]; then
114 err 1 "No such network interface: $i"
116 _cooked_list="$_cooked_list $_if"
117 done
118 else
119 _cooked_list="$_ifn_list"
122 for ifn in ${_cooked_list}; do
123 if ${_func} ${ifn} ; then
124 eval showstat_$ifn=1
125 else
126 _fail="$_fail $ifn"
128 done
130 # Display interfaces configured by this script
132 for ifn in ${_cooked_list}; do
133 eval showstat=\$showstat_${ifn}
134 if [ ! -z ${showstat} ]; then
135 if [ -n "$_verbose" ]; then
136 ifconfig ${ifn}
137 else
138 echo -n " ${ifn}"
141 done
142 debug "The following interfaces were not configured: $_fail"
145 ifn_start()
147 local ifn cfg
148 ifn="$1"
149 cfg=1
151 [ -z "$ifn" ] && return 1
153 ifscript_up ${ifn} && cfg=0
154 ifconfig_up ${ifn} && cfg=0
155 ifalias_up ${ifn} && cfg=0
156 ipx_up ${ifn} && cfg=0
157 childif_create ${ifn} && cfg=0
159 return $cfg
162 ifn_stop()
164 local ifn cfg
165 ifn="$1"
166 cfg=1
168 [ -z "$ifn" ] && return 1
170 ipx_down ${ifn} && cfg=0
171 ifalias_down ${ifn} && cfg=0
172 ifconfig_down ${ifn} && cfg=0
173 ifscript_down ${ifn} && cfg=0
174 childif_destroy ${ifn} && cfg=0
176 return $cfg
179 # get_if_var if var [default]
180 # Return the value of the pseudo-hash corresponding to $if where
181 # $var is a string containg the sub-string "IF" which will be
182 # replaced with $if after the characters defined in _punct are
183 # replaced with '_'. If the variable is unset, replace it with
184 # $default if given.
185 get_if_var()
187 local _if _punct _var _default prefix suffix
189 if [ $# -ne 2 -a $# -ne 3 ]; then
190 err 3 'USAGE: get_if_var name var [default]'
193 _if=$1
194 _punct=". - / +"
195 for _punct_c in $_punct; do
196 _if=`ltr ${_if} ${_punct_c} '_'`
197 done
198 _var=$2
199 _default=$3
201 prefix=${_var%%IF*}
202 suffix=${_var##*IF}
203 eval echo \${${prefix}${_if}${suffix}-${_default}}
206 # childif_create
207 # Create and configure child interfaces. Return 0 if child
208 # interfaces are created.
210 childif_create()
212 local cfg child child_vlans child_wlans create_args debug_flags ifn i
213 cfg=1
214 ifn=$1
216 # Create wireless interfaces
217 child_wlans=`get_if_var $ifn wlans_IF`
219 for child in ${child_wlans}; do
220 create_args="wlandev $ifn `get_if_var $child create_args_IF`"
221 debug_flags="`get_if_var $child wlandebug_IF`"
223 if expr $child : 'wlan[0-9][0-9]*$' >/dev/null 2>&1; then
224 ifconfig $child create ${create_args} && cfg=0
225 if [ -n "${debug_flags}" ]; then
226 wlandebug -i $child ${debug_flags}
228 else
229 i=`ifconfig wlan create ${create_args}`
230 if [ -n "${debug_flags}" ]; then
231 wlandebug -i $i ${debug_flags}
233 ifconfig $i name $child && cfg=0
235 ifn_start $child
236 done
238 return ${cfg}
241 # childif_destroy
242 # Destroy child interfaces.
244 childif_destroy()
246 local cfg child child_vlans child_wlans ifn
247 cfg=1
249 child_wlans=`get_if_var $ifn wlans_IF`
250 for child in ${child_wlans}; do
251 if ! `ifconfig -n $child > /dev/null 2>&1`; then
252 continue
254 ifn_stop $child
255 ifconfig $child destroy && cfg=0
256 done
258 return ${cfg}
261 load_rc_config $name
262 run_rc_command $*