]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - etc/network.subr
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / etc / network.subr
1 #
2 # Copyright (c) 2003 The FreeBSD Project. All rights reserved.
3 #
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions
6 # are met:
7 # 1. Redistributions of source code must retain the above copyright
8 #    notice, this list of conditions and the following disclaimer.
9 # 2. Redistributions in binary form must reproduce the above copyright
10 #    notice, this list of conditions and the following disclaimer in the
11 #    documentation and/or other materials provided with the distribution.
12 #
13 # THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
14 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 # ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
17 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 # SUCH DAMAGE.
24 #
25 # $FreeBSD$
26 #
27
28 #
29 # Subroutines commonly used from network startup scripts.
30 # Requires that rc.conf be loaded first.
31 #
32
33 # ifconfig_up if
34 #       Evaluate ifconfig(8) arguments for interface $if and
35 #       run ifconfig(8) with those arguments. It returns 0 if
36 #       arguments were found and executed or 1 if the interface
37 #       had no arguments.  Pseudo arguments DHCP and WPA are handled
38 #       here.
39 #
40 ifconfig_up()
41 {
42         _cfg=1
43
44         ifconfig_args=`ifconfig_getargs $1`
45         if [ -n "${ifconfig_args}" ]; then
46                 ifconfig $1 up
47                 ifconfig $1 ${ifconfig_args}
48                 _cfg=0
49         fi
50
51         if wpaif $1; then
52                 /etc/rc.d/wpa_supplicant start $1
53                 _cfg=0          # XXX: not sure this should count
54         fi
55
56         if dhcpif $1; then
57                 if [ $_cfg -ne 0 ] ; then
58                         ifconfig $1 up
59                 fi
60                 if syncdhcpif $1; then
61                         /etc/rc.d/dhclient start $1
62                 fi
63                 _cfg=0
64         fi
65
66         return $_cfg
67 }
68
69 # ifconfig_down if
70 #       returns 1 if wpa_supplicant or dhclient was stopped or
71 #       the interface exists.
72 #
73 ifconfig_down()
74 {
75         [ -z "$1" ] && return 1
76         _cfg=1
77
78         if wpaif $1; then
79                 /etc/rc.d/wpa_supplicant stop $1
80                 _cfg=0
81         fi
82
83         if dhcpif $1; then
84                 /etc/rc.d/dhclient stop $1
85                 _cfg=0
86         fi
87
88         if ifexists $1; then
89                 ifconfig $1 down
90                 _cfg=0
91         fi
92
93         return $_cfg
94 }
95
96 # get_if_var if var [default]
97 #       Return the value of the pseudo-hash corresponding to $if where
98 #       $var is a string containg the sub-string "IF" which will be
99 #       replaced with $if after the characters defined in _punct are
100 #       replaced with '_'. If the variable is unset, replace it with
101 #       $default if given.
102 get_if_var()
103 {
104         if [ $# -ne 2 -a $# -ne 3 ]; then
105                 err 3 'USAGE: get_if_var name var [default]'
106         fi
107
108         _if=$1
109         _punct=". - / +"
110         for _punct_c in $_punct; do
111                 _if=`ltr ${_if} ${_punct_c} '_'`
112         done
113         _var=$2
114         _default=$3
115
116         prefix=${_var%%IF*}
117         suffix=${_var##*IF}
118         eval echo \${${prefix}${_if}${suffix}-${_default}}
119 }
120
121 # _ifconfig_getargs if
122 #       Echos the arguments for the supplied interface to stdout.
123 #       returns 1 if empty.  In general, ifconfig_getargs should be used
124 #       outside this file.
125 _ifconfig_getargs()
126 {
127         _ifn=$1
128         if [ -z "$_ifn" ]; then
129                 return 1
130         fi
131
132         get_if_var $_ifn ifconfig_IF "$ifconfig_DEFAULT"
133 }
134
135 # ifconfig_getargs if
136 #       Takes the result from _ifconfig_getargs and removes pseudo
137 #       args such as DHCP and WPA.
138 ifconfig_getargs()
139 {
140         _tmpargs=`_ifconfig_getargs $1`
141         if [ $? -eq 1 ]; then
142                 return 1
143         fi
144         _args=
145
146         for _arg in $_tmpargs; do
147                 case $_arg in
148                 [Dd][Hh][Cc][Pp]) ;;
149                 [Nn][Oo][Aa][Uu][Tt][Oo]) ;;
150                 [Nn][Oo][Ss][Yy][Nn][Cc][Dd][Hh][Cc][Pp]) ;;
151                 [Ss][Yy][Nn][Cc][Dd][Hh][Cc][Pp]) ;;
152                 [Ww][Pp][Aa]) ;;
153                 *)
154                         _args="$_args $_arg"
155                         ;;
156                 esac
157         done
158
159         echo $_args
160 }
161
162 # autoif
163 #       Returns 0 if the interface should be automaticly configured at
164 #       boot time and 1 otherwise.
165 autoif()
166 {
167         _tmpargs=`_ifconfig_getargs $1`
168         for _arg in $_tmpargs; do
169                 case $_arg in
170                 [Nn][Oo][Aa][Uu][Tt][Oo])
171                         return 1
172                         ;;
173                 esac
174         done
175         return 0
176 }
177
178 # dhcpif if
179 #       Returns 0 if the interface is a DHCP interface and 1 otherwise.
180 dhcpif()
181 {
182         _tmpargs=`_ifconfig_getargs $1`
183         for _arg in $_tmpargs; do
184                 case $_arg in
185                 [Dd][Hh][Cc][Pp])
186                         return 0
187                         ;;
188                 [Nn][Oo][Ss][Yy][Nn][Cc][Dd][Hh][Cc][Pp])
189                         return 0
190                         ;;
191                 [Ss][Yy][Nn][Cc][Dd][Hh][Cc][Pp])
192                         return 0
193                         ;;
194                 esac
195         done
196         return 1
197 }
198
199 # syncdhcpif
200 #       Returns 0 if the interface should be configured synchronously and
201 #       1 otherwise.
202 syncdhcpif()
203 {
204         _tmpargs=`_ifconfig_getargs $1`
205         for _arg in $_tmpargs; do
206                 case $_arg in
207                 [Nn][Oo][Ss][Yy][Nn][Cc][Dd][Hh][Cc][Pp])
208                         return 1
209                         ;;
210                 [Ss][Yy][Nn][Cc][Dd][Hh][Cc][Pp])
211                         return 0
212                         ;;
213                 esac
214         done
215         if checkyesno synchronous_dhclient; then
216                 return 0
217         else
218                 return 1
219         fi
220 }
221
222 # wpaif if
223 #       Returns 0 if the interface is a WPA interface and 1 otherwise.
224 wpaif()
225 {
226         _tmpargs=`_ifconfig_getargs $1`
227         for _arg in $_tmpargs; do
228                 case $_arg in
229                 [Ww][Pp][Aa])
230                         return 0
231                         ;;
232                 esac
233         done
234         return 1
235 }
236
237 # ipv6if if
238 #       Returns 0 if the interface should be configured for IPv6 and
239 #       1 otherwise.
240 ipv6if()
241 {
242         if ! checkyesno ipv6_enable; then
243                 return 1
244         fi
245         case "${ipv6_network_interfaces}" in
246         [Aa][Uu][Tt][Oo])
247                 return 0
248                 ;;
249         ''|[Nn][Oo][Nn][Ee])
250                 return 1
251                 ;;
252         esac
253         for v6if in ${ipv6_network_interfaces}; do
254                 if [ "${v6if}" = "${1}" ]; then
255                         return 0
256                 fi
257         done
258         return 1
259 }
260
261 # ifexists if
262 #       Returns 0 if the interface exists and 1 otherwise.
263 ifexists()
264 {
265         ifconfig -n $1 > /dev/null 2>&1
266 }
267
268 # ipv4_up if
269 #  add IPv4 addresses to the interface $if 
270 ipv4_up()
271 {
272         _if=$1
273         ifalias_up ${_if}
274         ipv4_addrs_common ${_if} alias
275 }
276
277 # ipv4_down if
278 #  remove IPv4 addresses from the interface $if
279 ipv4_down()
280 {
281         _if=$1
282         _ifs="^"
283         _ret=1
284
285         ifexists ${_if} || return 1
286
287         inetList="`ifconfig ${_if} | grep 'inet ' | tr "\n" "$_ifs"`"
288
289         oldifs="$IFS"
290         IFS="$_ifs"
291         for _inet in $inetList ; do
292                 # get rid of extraneous line
293                 [ -z "$_inet" ] && break
294
295                 _inet=`expr "$_inet" : '.*\(inet \([0-9]\{1,3\}\.\)\{3\}[0-9]\{1,3\}\).*'`
296
297                 IFS="$oldifs"
298                 ifconfig ${_if} ${_inet} delete
299                 IFS="$_ifs"
300                 _ret=0
301         done
302         IFS="$oldifs"
303
304         ifalias_down ${_if} && _ret=0
305         ipv4_addrs_common ${_if} -alias && _ret=0
306
307         return $_ret
308 }
309
310 # ipv4_addrs_common if action
311 #   Evaluate the ifconfig_if_ipv4 arguments for interface $if
312 #   and use $action to add or remove IPv4 addresses from $if.
313 ipv4_addrs_common()
314 {  
315         _ret=1
316         _if=$1
317         _action=$2
318     
319         # get ipv4-addresses
320         cidr_addr=`get_if_var $_if ipv4_addrs_IF`
321     
322         for _cidr in ${cidr_addr}; do
323                 _ipaddr=${_cidr%%/*}
324                 _netmask="/"${_cidr##*/}
325                 _range=${_ipaddr##*.}
326                 _ipnet=${_ipaddr%.*}
327                 _iplow=${_range%-*}
328                 _iphigh=${_range#*-}
329
330                 # clear netmask when removing aliases
331                 if [ "${_action}" = "-alias" ]; then
332                         _netmask=""
333                 fi
334         
335                 _ipcount=${_iplow}
336                 while [ "${_ipcount}" -le "${_iphigh}" ]; do
337                         eval "ifconfig ${_if} ${_action} ${_ipnet}.${_ipcount}${_netmask}"
338                         _ipcount=$((${_ipcount}+1))
339                         _ret=0
340
341                         # only the first ipaddr in a subnet need the real netmask
342                         if [ "${_action}" != "-alias" ]; then
343                                 _netmask="/32"
344                         fi
345                 done
346         done
347         return $_ret
348 }
349
350 # ifalias_up if
351 #       Configure aliases for network interface $if.
352 #       It returns 0 if at least one alias was configured or
353 #       1 if there were none.
354 #
355 ifalias_up()
356 {
357         _ret=1
358         alias=0
359         while : ; do
360                 ifconfig_args=`get_if_var $1 ifconfig_IF_alias${alias}`
361                 if [ -n "${ifconfig_args}" ]; then
362                         ifconfig $1 ${ifconfig_args} alias
363                         alias=$((${alias} + 1))
364                         _ret=0
365                 else
366                         break
367                 fi
368         done
369         return $_ret
370 }
371
372 #ifalias_down if
373 #       Remove aliases for network interface $if.
374 #       It returns 0 if at least one alias was removed or
375 #       1 if there were none.
376 #
377 ifalias_down()
378 {
379         _ret=1
380         alias=0
381         while : ; do
382                 ifconfig_args=`get_if_var $1 ifconfig_IF_alias${alias}`
383                 if [ -n "${ifconfig_args}" ]; then
384                         ifconfig $1 ${ifconfig_args} -alias
385                         alias=$((${alias} + 1))
386                         _ret=0
387                 else
388                         break
389                 fi
390         done
391         return $_ret
392 }
393
394 # ifscript_up if
395 #       Evaluate a startup script for the $if interface.
396 #       It returns 0 if a script was found and processed or
397 #       1 if no script was found.
398 #
399 ifscript_up()
400 {
401         if [ -r /etc/start_if.$1 ]; then
402                 . /etc/start_if.$1
403                 return 0
404         fi
405         return 1
406 }
407
408 # ifscript_down if
409 #       Evaluate a shutdown script for the $if interface.
410 #       It returns 0 if a script was found and processed or
411 #       1 if no script was found.
412 #
413 ifscript_down()
414 {
415         if [ -r /etc/stop_if.$1 ]; then
416                 . /etc/stop_if.$1
417                 return 0
418         fi
419         return 1
420 }
421
422 # Create cloneable interfaces.
423 #
424 clone_up()
425 {
426         _prefix=
427         _list=
428         for ifn in ${cloned_interfaces}; do
429                 ifconfig ${ifn} create
430                 if [ $? -eq 0 ]; then
431                         _list="${_list}${_prefix}${ifn}"
432                         [ -z "$_prefix" ] && _prefix=' '
433                 fi
434         done
435         debug "Cloned: ${_list}"
436 }
437
438 # Destroy cloned interfaces. Destroyed interfaces are echoed
439 # to standard output.
440 #
441 clone_down()
442 {
443         _prefix=
444         _list=
445         for ifn in ${cloned_interfaces}; do
446                 ifconfig ${ifn} destroy
447                 if [ $? -eq 0 ]; then
448                         _list="${_list}${_prefix}${ifn}"
449                         [ -z "$_prefix" ] && _prefix=' '
450                 fi
451         done
452         debug "Destroyed clones: ${_list}"
453 }
454
455 # Create netgraph nodes.
456 #
457 ng_mkpeer() {
458         ngctl -f - 2> /dev/null <<EOF
459 mkpeer $*
460 msg dummy nodeinfo
461 EOF
462 }
463
464 ng_create_one() {
465         ng_mkpeer $* | while read line; do
466                 t=`expr "${line}" : '.* name="\([a-z]*[0-9]*\)" .*'`
467                 if [ -n "${t}" ]; then
468                         echo ${t}
469                         return
470                 fi
471         done
472 }
473
474 gif_up() {
475         # The following must be removed once RELENG_7 is branched.
476         case ${gif_interfaces} in
477         [Nn][Oo])
478                 warn "gif_interfaces=\"NO\" is deprecated, use gif_interfaces=\"\" instead."
479                 gif_interfaces=""
480                 ;;
481         esac
482
483         for i in ${gif_interfaces}; do
484                 peers=`get_if_var $i gifconfig_IF`
485                 case ${peers} in
486                 '')
487                         continue
488                         ;;
489                 *)
490                         ifconfig $i create >/dev/null 2>&1
491                         ifconfig $i tunnel ${peers}
492                         ifconfig $i up
493                         ;;
494                 esac
495         done
496 }
497
498 # ng_fec_create ifn
499 # Configure Fast EtherChannel for interface $ifn. Returns 0 if FEC
500 # arguments were found and configured; returns !0 otherwise.
501 ng_fec_create() {
502          local req_iface iface bogus
503          req_iface="$1"
504
505          ngctl shutdown ${req_iface}: > /dev/null 2>&1
506
507          bogus=""
508          while true; do
509                  iface=`ng_create_one fec dummy fec`
510                  if [ -z "${iface}" ]; then
511                          exit 2
512                  fi
513                  if [ "${iface}" = "${req_iface}" ]; then
514                          break
515                  fi
516                  bogus="${bogus} ${iface}"
517          done
518
519          for iface in ${bogus}; do
520                  ngctl shutdown ${iface}:
521          done
522 }
523
524 fec_up() {
525         for i in ${fec_interfaces}; do
526                 ng_fec_create $i
527                 for j in `get_if_var $i fecconfig_IF`; do
528                         case ${j} in
529                         '')
530                                 continue
531                                 ;;
532                         *)
533                                 ngctl msg ${i}: add_iface "\"${j}\""
534                                 ;;
535                         esac
536                 done
537         done
538 }
539
540 #
541 # ipx_up ifn
542 # Configure any IPX addresses for interface $ifn. Returns 0 if IPX
543 # arguments were found and configured; returns 1 otherwise.
544 #
545 ipx_up()
546 {
547         ifn="$1"
548         ifconfig_args=`get_if_var $ifn ifconfig_IF_ipx`
549         if [ -n "${ifconfig_args}" ]; then
550                 ifconfig ${ifn} ${ifconfig_args}
551                 return 0
552         fi
553         return 1
554 }
555
556 # ipx_down ifn
557 #       Remove IPX addresses for interface $ifn. Returns 0 if IPX
558 #       addresses were found and unconfigured. It returns 1, otherwise.
559 #
560 ipx_down()
561 {
562         [ -z "$1" ] && return 1
563         _ifs="^"
564         _ret=1
565
566         ifexists $1 || return 1
567
568         ipxList="`ifconfig $1 | grep 'ipx ' | tr "\n" "$_ifs"`"
569
570         oldifs="$IFS"
571         IFS="$_ifs"
572         for _ipx in $ipxList ; do
573                 # get rid of extraneous line
574                 [ -z "$_ipx" ] && break
575
576                 _ipx=`expr "$_ipx" : '.*\(ipx [0-9a-h]\{1,8\}H*\.[0-9a-h]\{1,12\}\).*'`
577
578                 IFS="$oldifs"
579                 ifconfig $1 ${_ipx} delete
580                 IFS="$_ifs"
581                 _ret=0
582         done
583         IFS="$oldifs"
584
585         return $_ret
586 }
587
588 # ifnet_rename
589 #       Rename all requested interfaces.
590 #
591 ifnet_rename()
592 {
593
594         _ifn_list="`ifconfig -l`"
595         [ -z "$_ifn_list" ] && return 0
596         for _if in ${_ifn_list} ; do
597                 _ifname=`get_if_var $_if ifconfig_IF_name`
598                 if [ ! -z "$_ifname" ]; then
599                         ifconfig $_if name $_ifname
600                 fi
601         done
602         return 0
603 }
604
605 #
606 # list_net_interfaces type
607 #       List all network interfaces. The type of interface returned
608 #       can be controlled by the type argument. The type
609 #       argument can be any of the following:
610 #               nodhcp - all interfaces, excluding DHCP configured interfaces
611 #               dhcp   - list only DHCP configured interfaces
612 #       If no argument is specified all network interfaces are output.
613 #       Note that the list will include cloned interfaces if applicable.
614 #       Cloned interfaces must already exist to have a chance to appear
615 #       in the list if ${network_interfaces} is set to `auto'.
616 #
617 list_net_interfaces()
618 {
619         type=$1
620
621         # Get a list of ALL the interfaces and make lo0 first if it's there.
622         #
623         case ${network_interfaces} in
624         [Aa][Uu][Tt][Oo])
625                 _prefix=''
626                 _autolist="`ifconfig -l`"
627                 _lo=
628                 for _if in ${_autolist} ; do
629                         if autoif $_if; then
630                                 if [ "$_if" = "lo0" ]; then
631                                         _lo="lo0 "
632                                 else
633                                         _tmplist="${_tmplist}${_prefix}${_if}"
634                                         [ -z "$_prefix" ] && _prefix=' '
635                                 fi
636                         fi
637                 done
638                 _tmplist="${_lo}${_tmplist}"
639                 ;;
640         *)
641                 if [ -z "$type" ]; then
642                         warn "Values of network_interfaces other than" \
643                             "AUTO are deprecated"
644                 fi
645                 _tmplist="${network_interfaces} ${cloned_interfaces}"
646                 ;;
647         esac
648
649         if [ -z "$type" ]; then
650                 echo $_tmplist
651                 return 0
652         fi
653
654         # Separate out dhcp and non-dhcp interfaces
655         #
656         _aprefix=
657         _bprefix=
658         for _if in ${_tmplist} ; do
659                 if dhcpif $_if; then
660                         _dhcplist="${_dhcplist}${_aprefix}${_if}"
661                         [ -z "$_aprefix" ] && _aprefix=' '
662                 elif [ -n "`_ifconfig_getargs $_if`" ]; then
663                         _nodhcplist="${_nodhcplist}${_bprefix}${_if}"
664                         [ -z "$_bprefix" ] && _bprefix=' '
665                 fi
666         done
667
668         case "$type" in
669         nodhcp)
670                 echo $_nodhcplist
671                 ;;
672         dhcp)
673                 echo $_dhcplist
674                 ;;
675         esac
676         return 0
677 }
678
679 hexdigit()
680 {
681         if [ $1 -lt 10 ]; then
682                 echo $1
683         else
684                 case $1 in
685                 10)     echo a ;;
686                 11)     echo b ;;
687                 12)     echo c ;;
688                 13)     echo d ;;
689                 14)     echo e ;;
690                 15)     echo f ;;
691                 esac
692         fi
693 }
694
695 hexprint()
696 {
697         val=$1
698         str=''
699
700         dig=`hexdigit $((${val} & 15))`
701         str=${dig}${str}
702         val=$((${val} >> 4))
703         while [ ${val} -gt 0 ]; do
704                 dig=`hexdigit $((${val} & 15))`
705                 str=${dig}${str}
706                 val=$((${val} >> 4))
707         done
708
709         echo ${str}
710 }
711
712 # Setup the interfaces for IPv6
713 network6_interface_setup()
714 {
715         interfaces=$*
716         rtsol_interfaces=''
717         case ${ipv6_gateway_enable} in
718         [Yy][Ee][Ss])
719                 rtsol_available=no
720                 ;;
721         *)
722                 rtsol_available=yes
723                 ;;
724         esac
725         for i in $interfaces; do
726                 rtsol_interface=yes
727                 prefix=`get_if_var $i ipv6_prefix_IF`
728                 if [ -n "${prefix}" ]; then
729                         rtsol_available=no
730                         rtsol_interface=no
731                         laddr=`network6_getladdr $i`
732                         hostid=`expr "${laddr}" : 'fe80::\(.*\)%\(.*\)'`
733                         for j in ${prefix}; do
734                                 address=$j\:${hostid}
735                                 ifconfig $i inet6 ${address} prefixlen 64 alias
736
737                                 case ${ipv6_gateway_enable} in
738                                 [Yy][Ee][Ss])
739                                         # subnet-router anycast address
740                                         # (rfc2373)
741                                         ifconfig $i inet6 $j:: prefixlen 64 \
742                                                 alias anycast
743                                         ;;
744                                 esac
745                         done
746                 fi
747                 ipv6_ifconfig=`get_if_var $i ipv6_ifconfig_IF`
748                 if [ -n "${ipv6_ifconfig}" ]; then
749                         rtsol_available=no
750                         rtsol_interface=no
751                         ifconfig $i inet6 ${ipv6_ifconfig} alias
752                 fi
753
754                 if [ ${rtsol_available} = yes -a ${rtsol_interface} = yes ]
755                 then
756                         case ${i} in
757                         lo0|gif[0-9]*|stf[0-9]*|faith[0-9]*|lp[0-9]*|sl[0-9]*|tun[0-9]*|pflog[0-9]*|pfsync[0-9]*)
758                                 ;;
759                         *)
760                                 rtsol_interfaces="${rtsol_interfaces} ${i}"
761                                 ;;
762                         esac
763                 else
764                         ifconfig $i inet6
765                 fi
766         done
767
768         if [ ${rtsol_available} = yes -a -n "${rtsol_interfaces}" ]; then
769                 # Act as endhost - automatically configured.
770                 # You can configure only single interface, as
771                 # specification assumes that autoconfigured host has
772                 # single interface only.
773                 sysctl net.inet6.ip6.accept_rtadv=1
774                 set ${rtsol_interfaces}
775                 ifconfig $1 up
776                 rtsol ${rtsol_flags} $1
777         fi
778
779         for i in $interfaces; do
780                 alias=0
781                 while : ; do
782                         ipv6_ifconfig=`get_if_var $i ipv6_ifconfig_IF_alias${alias}`
783                         if [ -z "${ipv6_ifconfig}" ]; then
784                                 break;
785                         fi
786                         ifconfig $i inet6 ${ipv6_ifconfig} alias
787                         alias=$((${alias} + 1))
788                 done
789         done
790 }
791
792 # Setup IPv6 to IPv4 mapping
793 network6_stf_setup()
794 {
795         case ${stf_interface_ipv4addr} in
796         [Nn][Oo] | '')
797                 ;;
798         *)
799                 # assign IPv6 addr and interface route for 6to4 interface
800                 stf_prefixlen=$((16+${stf_interface_ipv4plen:-0}))
801                 OIFS="$IFS"
802                 IFS=".$IFS"
803                 set ${stf_interface_ipv4addr}
804                 IFS="$OIFS"
805                 hexfrag1=`hexprint $(($1*256 + $2))`
806                 hexfrag2=`hexprint $(($3*256 + $4))`
807                 ipv4_in_hexformat="${hexfrag1}:${hexfrag2}"
808                 case ${stf_interface_ipv6_ifid} in
809                 [Aa][Uu][Tt][Oo] | '')
810                         for i in ${ipv6_network_interfaces}; do
811                                 laddr=`network6_getladdr ${i}`
812                                 case ${laddr} in
813                                 '')
814                                         ;;
815                                 *)
816                                         break
817                                         ;;
818                                 esac
819                         done
820                         stf_interface_ipv6_ifid=`expr "${laddr}" : \
821                                                       'fe80::\(.*\)%\(.*\)'`
822                         case ${stf_interface_ipv6_ifid} in
823                         '')
824                                 stf_interface_ipv6_ifid=0:0:0:1
825                                 ;;
826                         esac
827                         ;;
828                 esac
829                 ifconfig stf0 create >/dev/null 2>&1
830                 ifconfig stf0 inet6 2002:${ipv4_in_hexformat}:${stf_interface_ipv6_slaid:-0}:${stf_interface_ipv6_ifid} \
831                         prefixlen ${stf_prefixlen}
832                 # disallow packets to malicious 6to4 prefix
833                 route add -inet6 2002:e000:: -prefixlen 20 ::1 -reject
834                 route add -inet6 2002:7f00:: -prefixlen 24 ::1 -reject
835                 route add -inet6 2002:0000:: -prefixlen 24 ::1 -reject
836                 route add -inet6 2002:ff00:: -prefixlen 24 ::1 -reject
837                 ;;
838         esac
839 }
840
841 # Setup static routes
842 network6_static_routes_setup()
843 {
844         # Set up any static routes.
845         case ${ipv6_defaultrouter} in
846         [Nn][Oo] | '')
847                 ;;
848         *)
849                 ipv6_static_routes="default ${ipv6_static_routes}"
850                 ipv6_route_default="default ${ipv6_defaultrouter}"
851                 ;;
852         esac
853         case ${ipv6_static_routes} in
854         [Nn][Oo] | '')
855                 ;;
856         *)
857                 for i in ${ipv6_static_routes}; do
858                         ipv6_route_args=`get_if_var $i ipv6_route_IF`
859                         route add -inet6 ${ipv6_route_args}
860                 done
861                 ;;
862         esac
863 }
864
865 # Setup faith
866 network6_faith_setup()
867 {
868         case ${ipv6_faith_prefix} in
869         [Nn][Oo] | '')
870                 ;;
871         *)
872                 sysctl net.inet6.ip6.keepfaith=1
873                 ifconfig faith0 create >/dev/null 2>&1
874                 ifconfig faith0 up
875                 for prefix in ${ipv6_faith_prefix}; do
876                         prefixlen=`expr "${prefix}" : ".*/\(.*\)"`
877                         case ${prefixlen} in
878                         '')
879                                 prefixlen=96
880                                 ;;
881                         *)
882                                 prefix=`expr "${prefix}" : \
883                                              "\(.*\)/${prefixlen}"`
884                                 ;;
885                         esac
886                         route add -inet6 ${prefix} -prefixlen ${prefixlen} ::1
887                         route change -inet6 ${prefix} -prefixlen ${prefixlen} \
888                                 -ifp faith0
889                 done
890                 ;;
891         esac
892 }
893
894 # Install the "default interface" to kernel, which will be used
895 # as the default route when there's no router.
896 network6_default_interface_setup()
897 {
898         # Choose IPv6 default interface if it is not clearly specified.
899         case ${ipv6_default_interface} in
900         '')
901                 for i in ${ipv6_network_interfaces}; do
902                         case $i in
903                         lo0|faith[0-9]*)
904                                 continue
905                                 ;;
906                         esac
907                         laddr=`network6_getladdr $i exclude_tentative`
908                         case ${laddr} in
909                         '')
910                                 ;;
911                         *)
912                                 ipv6_default_interface=$i
913                                 break
914                                 ;;
915                         esac
916                 done
917                 ;;
918         esac
919
920         # Disallow unicast packets without outgoing scope identifiers,
921         # or route such packets to a "default" interface, if it is specified.
922         route add -inet6 fe80:: -prefixlen 10 ::1 -reject
923         case ${ipv6_default_interface} in
924         [Nn][Oo] | '')
925                 route add -inet6 ff02:: -prefixlen 16 ::1 -reject
926                 ;;
927         *)
928                 laddr=`network6_getladdr ${ipv6_default_interface}`
929                 route add -inet6 ff02:: ${laddr} -prefixlen 16 -interface \
930                         -cloning
931
932                 # Disable installing the default interface with the
933                 # case net.inet6.ip6.forwarding=0 and
934                 # net.inet6.ip6.accept_rtadv=0, due to avoid conflict
935                 # between the default router list and the manual
936                 # configured default route.
937                 case ${ipv6_gateway_enable} in
938                 [Yy][Ee][Ss])
939                         ;;
940                 *)
941                         if [ `sysctl -n net.inet6.ip6.accept_rtadv` -eq 1 ]
942                         then
943                                 ndp -I ${ipv6_default_interface}
944                         fi
945                         ;;
946                 esac
947                 ;;
948         esac
949 }
950
951 network6_getladdr()
952 {
953         ifconfig $1 2>/dev/null | while read proto addr rest; do
954                 case ${proto} in
955                 inet6)
956                         case ${addr} in
957                         fe80::*)
958                                 if [ -z "$2" ]; then
959                                         echo ${addr}
960                                         return
961                                 fi
962                                 case ${rest} in
963                                 *tentative*)
964                                         continue
965                                         ;;
966                                 *)
967                                         echo ${addr}
968                                         return
969                                 esac
970                         esac
971                 esac
972         done
973 }