]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - etc/network.subr
Merge ^/head r285924 through r286421.
[FreeBSD/FreeBSD.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 IFCONFIG_CMD="/sbin/ifconfig"
28 : ${netif_ipexpand_max:=2048}
29
30 #
31 # Subroutines commonly used from network startup scripts.
32 # Requires that rc.conf be loaded first.
33 #
34
35 # ifn_start ifn
36 #       Bring up and configure an interface.  If some configuration is
37 #       applied, print the interface configuration.
38 #
39 ifn_start()
40 {
41         local ifn cfg
42         ifn="$1"
43         cfg=1
44
45         [ -z "$ifn" ] && err 1 "ifn_start called without an interface"
46
47         ifscript_up ${ifn} && cfg=0
48         ifconfig_up ${ifn} && cfg=0
49         if ! noafif $ifn; then
50                 afexists inet && ipv4_up ${ifn} && cfg=0
51                 afexists inet6 && ipv6_up ${ifn} && cfg=0
52         fi
53         childif_create ${ifn} && cfg=0
54
55         return $cfg
56 }
57
58 # ifn_stop ifn
59 #       Shutdown and de-configure an interface.  If action is taken,
60 #       print the interface name.
61 #
62 ifn_stop()
63 {
64         local ifn cfg
65         ifn="$1"
66         cfg=1
67
68         [ -z "$ifn" ] && err 1 "ifn_stop called without an interface"
69
70         if ! noafif $ifn; then
71                 afexists inet6 && ipv6_down ${ifn} && cfg=0
72                 afexists inet && ipv4_down ${ifn} && cfg=0
73         fi
74         ifconfig_down ${ifn} && cfg=0
75         ifscript_down ${ifn} && cfg=0
76         childif_destroy ${ifn} && cfg=0
77
78         return $cfg
79 }
80
81 # ifn_vnetup ifn
82 #       Move ifn to the specified vnet jail.
83 #
84 ifn_vnetup()
85 {
86
87         ifn_vnet0 $1 vnet
88 }
89
90 # ifn_vnetdown ifn
91 #       Reclaim ifn from the specified vnet jail.
92 #
93 ifn_vnetdown()
94 {
95
96         ifn_vnet0 $1 -vnet
97 }
98
99 # ifn_vnet0 ifn action
100 #       Helper function for ifn_vnetup and ifn_vnetdown.
101 #
102 ifn_vnet0()
103 {
104         local _ifn _cfg _action _vnet
105         _ifn="$1"
106         _action="$2"
107         _cfg=1
108
109         if _vnet=$(vnetif $_ifn); then
110                 ${IFCONFIG_CMD} $_ifn $_action $_vnet && _cfg=0
111         fi
112
113         return $_cfg
114 }
115
116 # ifconfig_up if
117 #       Evaluate ifconfig(8) arguments for interface $if and
118 #       run ifconfig(8) with those arguments. It returns 0 if
119 #       arguments were found and executed or 1 if the interface
120 #       had no arguments.  Pseudo arguments DHCP and WPA are handled
121 #       here.
122 #
123 ifconfig_up()
124 {
125         local _cfg _ipv6_opts ifconfig_args
126         _cfg=1
127
128         # Make sure lo0 always comes up.
129         if [ "$1" = "lo0" ]; then
130                 _cfg=0
131         fi
132
133         # inet6 specific
134         if ! noafif $1 && afexists inet6; then
135                 if checkyesno ipv6_activate_all_interfaces; then
136                         _ipv6_opts="-ifdisabled"
137                 elif [ "$1" != "lo0" ]; then
138                         _ipv6_opts="ifdisabled"
139                 fi
140
141                 # backward compatibility: $ipv6_enable
142                 case $ipv6_enable in
143                 [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
144                         case $1 in
145                         bridge[0-9]*)
146                                 # No accept_rtadv by default on if_bridge(4)
147                                 # to avoid a conflict with the member
148                                 # interfaces.
149                         ;;
150                         *)
151                                 if ! checkyesno ipv6_gateway_enable; then
152                                         _ipv6_opts="${_ipv6_opts} accept_rtadv"
153                                 fi
154                         ;;
155                         esac
156                 ;;
157                 esac
158
159                 case $ipv6_cpe_wanif in
160                 $1)
161                         _ipv6_opts="${_ipv6_opts} -no_radr accept_rtadv"
162                 ;;
163                 esac
164
165                 if [ -n "${_ipv6_opts}" ]; then
166                         ${IFCONFIG_CMD} $1 inet6 ${_ipv6_opts}
167                 fi
168         fi
169
170         # ifconfig_IF
171         ifconfig_args=`ifconfig_getargs $1`
172         if [ -n "${ifconfig_args}" ]; then
173                 eval ${IFCONFIG_CMD} $1 ${ifconfig_args}
174                 _cfg=0
175         fi
176
177         # inet6 specific
178         if ! noafif $1 && afexists inet6; then
179                 # ifconfig_IF_ipv6
180                 ifconfig_args=`ifconfig_getargs $1 ipv6`
181                 if [ -n "${ifconfig_args}" ]; then
182                         # backward compatibility: inet6 keyword
183                         case "${ifconfig_args}" in
184                         :*|[0-9a-fA-F]*:*)
185                                 warn "\$ifconfig_$1_ipv6 needs leading" \
186                                     "\"inet6\" keyword for an IPv6 address."
187                                 ifconfig_args="inet6 ${ifconfig_args}"
188                         ;;
189                         esac
190                         ${IFCONFIG_CMD} $1 inet6 -ifdisabled
191                         eval ${IFCONFIG_CMD} $1 ${ifconfig_args}
192                         _cfg=0
193                 fi
194
195                 # $ipv6_prefix_IF will be handled in
196                 # ipv6_prefix_hostid_addr_common().
197                 ifconfig_args=`get_if_var $1 ipv6_prefix_IF`
198                 if [ -n "${ifconfig_args}" ]; then
199                         ${IFCONFIG_CMD} $1 inet6 -ifdisabled
200                         _cfg=0
201                 fi
202
203                 # backward compatibility: $ipv6_ifconfig_IF
204                 ifconfig_args=`get_if_var $1 ipv6_ifconfig_IF`
205                 if [ -n "${ifconfig_args}" ]; then
206                         warn "\$ipv6_ifconfig_$1 is obsolete." \
207                             "  Use ifconfig_$1_ipv6 instead."
208                         ${IFCONFIG_CMD} $1 inet6 -ifdisabled
209                         eval ${IFCONFIG_CMD} $1 inet6 ${ifconfig_args}
210                         _cfg=0
211                 fi
212         fi
213
214         ifalias $1 link alias
215         ifalias $1 ether alias
216
217         if [ ${_cfg} -eq 0 ]; then
218                 ${IFCONFIG_CMD} $1 up
219         fi
220
221         if wpaif $1; then
222                 /etc/rc.d/wpa_supplicant start $1
223                 _cfg=0          # XXX: not sure this should count
224         elif hostapif $1; then
225                 /etc/rc.d/hostapd start $1
226                 _cfg=0
227         fi
228
229         if dhcpif $1; then
230                 if [ $_cfg -ne 0 ] ; then
231                         ${IFCONFIG_CMD} $1 up
232                 fi
233                 if syncdhcpif $1; then
234                         /etc/rc.d/dhclient start $1
235                 fi
236                 _cfg=0
237         fi
238
239         return $_cfg
240 }
241
242 # ifconfig_down if
243 #       returns 1 if wpa_supplicant or dhclient was stopped or
244 #       the interface exists.
245 #
246 ifconfig_down()
247 {
248         local _cfg
249         _cfg=1
250
251         if wpaif $1; then
252                 /etc/rc.d/wpa_supplicant stop $1
253                 _cfg=0
254         elif hostapif $1; then
255                 /etc/rc.d/hostapd stop $1
256                 _cfg=0
257         fi
258
259         if dhcpif $1; then
260                 /etc/rc.d/dhclient stop $1
261                 _cfg=0
262         fi
263
264         if ifexists $1; then
265                 ${IFCONFIG_CMD} $1 down
266                 _cfg=0
267         fi
268
269         return $_cfg
270 }
271
272 # get_if_var if var [default]
273 #       Return the value of the pseudo-hash corresponding to $if where
274 #       $var is a string containg the sub-string "IF" which will be
275 #       replaced with $if after the characters defined in _punct are
276 #       replaced with '_'. If the variable is unset, replace it with
277 #       $default if given.
278 get_if_var()
279 {
280         local _if _punct _punct_c _var _default prefix suffix
281
282         if [ $# -ne 2 -a $# -ne 3 ]; then
283                 err 3 'USAGE: get_if_var name var [default]'
284         fi
285
286         _if=$1
287         _punct=".-/+"
288         ltr ${_if} "${_punct}" '_' _if
289         _var=$2
290         _default=$3
291
292         prefix=${_var%%IF*}
293         suffix=${_var##*IF}
294         eval echo \${${prefix}${_if}${suffix}-${_default}}
295 }
296
297 # _ifconfig_getargs if [af]
298 #       Prints the arguments for the supplied interface to stdout.
299 #       Returns 1 if empty.  In general, ifconfig_getargs should be used
300 #       outside this file.
301 _ifconfig_getargs()
302 {
303         local _ifn _af
304         _ifn=$1
305         _af=${2+_$2}
306
307         if [ -z "$_ifn" ]; then
308                 return 1
309         fi
310
311         get_if_var $_ifn ifconfig_IF$_af "$ifconfig_DEFAULT"
312 }
313
314 # ifconfig_getargs if [af]
315 #       Takes the result from _ifconfig_getargs and removes pseudo
316 #       args such as DHCP and WPA.
317 ifconfig_getargs()
318 {
319         local _tmpargs _arg _args _vnet
320         _tmpargs=`_ifconfig_getargs $1 $2`
321         if [ $? -eq 1 ]; then
322                 return 1
323         fi
324         _args=
325         _vnet=0
326
327         for _arg in $_tmpargs; do
328                 case $_arg:$_vnet in
329                 [Dd][Hh][Cc][Pp]:0) ;;
330                 [Nn][Oo][Aa][Uu][Tt][Oo]:0) ;;
331                 [Nn][Oo][Ss][Yy][Nn][Cc][Dd][Hh][Cc][Pp]:0) ;;
332                 [Ss][Yy][Nn][Cc][Dd][Hh][Cc][Pp]:0) ;;
333                 [Ww][Pp][Aa]:0) ;;
334                 [Hh][Oo][Ss][Tt][Aa][Pp]:0) ;;
335                 vnet:0) _vnet=1 ;;
336                 *:1)    _vnet=0 ;;
337                 *:0)
338                         _args="$_args $_arg"
339                 ;;
340                 esac
341         done
342
343         echo $_args
344 }
345
346 # autoif
347 #       Returns 0 if the interface should be automatically configured at
348 #       boot time and 1 otherwise.
349 autoif()
350 {
351         local _tmpargs _arg
352         _tmpargs=`_ifconfig_getargs $1`
353
354         for _arg in $_tmpargs; do
355                 case $_arg in
356                 [Nn][Oo][Aa][Uu][Tt][Oo])
357                         return 1
358                         ;;
359                 esac
360         done
361
362         return 0
363 }
364
365 # dhcpif if
366 #       Returns 0 if the interface is a DHCP interface and 1 otherwise.
367 dhcpif()
368 {
369         local _tmpargs _arg
370         _tmpargs=`_ifconfig_getargs $1`
371
372         case $1 in
373         lo[0-9]*|\
374         stf[0-9]*|\
375         lp[0-9]*|\
376         sl[0-9]*)
377                 return 1
378                 ;;
379         esac
380         if noafif $1; then
381                 return 1
382         fi
383
384         for _arg in $_tmpargs; do
385                 case $_arg in
386                 [Dd][Hh][Cc][Pp])
387                         return 0
388                         ;;
389                 [Nn][Oo][Ss][Yy][Nn][Cc][Dd][Hh][Cc][Pp])
390                         return 0
391                         ;;
392                 [Ss][Yy][Nn][Cc][Dd][Hh][Cc][Pp])
393                         return 0
394                         ;;
395                 esac
396         done
397
398         return 1
399 }
400
401 # syncdhcpif
402 #       Returns 0 if the interface should be configured synchronously and
403 #       1 otherwise.
404 syncdhcpif()
405 {
406         local _tmpargs _arg
407         _tmpargs=`_ifconfig_getargs $1`
408
409         if noafif $1; then
410                 return 1
411         fi
412
413         for _arg in $_tmpargs; do
414                 case $_arg in
415                 [Nn][Oo][Ss][Yy][Nn][Cc][Dd][Hh][Cc][Pp])
416                         return 1
417                         ;;
418                 [Ss][Yy][Nn][Cc][Dd][Hh][Cc][Pp])
419                         return 0
420                         ;;
421                 esac
422         done
423
424         checkyesno synchronous_dhclient
425 }
426
427 # wpaif if
428 #       Returns 0 if the interface is a WPA interface and 1 otherwise.
429 wpaif()
430 {
431         local _tmpargs _arg
432         _tmpargs=`_ifconfig_getargs $1`
433
434         for _arg in $_tmpargs; do
435                 case $_arg in
436                 [Ww][Pp][Aa])
437                         return 0
438                         ;;
439                 esac
440         done
441
442         return 1
443 }
444
445 # hostapif if
446 #       Returns 0 if the interface is a HOSTAP interface and 1 otherwise.
447 hostapif()
448 {
449         local _tmpargs _arg
450         _tmpargs=`_ifconfig_getargs $1`
451
452         for _arg in $_tmpargs; do
453                 case $_arg in
454                 [Hh][Oo][Ss][Tt][Aa][Pp])
455                         return 0
456                         ;;
457                 esac
458         done
459
460         return 1
461 }
462
463 # vnetif if
464 #       Returns 0 and echo jail if "vnet" keyword is specified on the
465 #       interface, and 1 otherwise.
466 vnetif()
467 {
468         local _tmpargs _arg _vnet
469         _tmpargs=`_ifconfig_getargs $1`
470
471         _vnet=0
472         for _arg in $_tmpargs; do
473                 case $_arg:$_vnet in
474                 vnet:0) _vnet=1 ;;
475                 *:1)    echo $_arg; return 0 ;;
476                 esac
477         done
478
479         return 1
480 }
481
482 # afexists af
483 #       Returns 0 if the address family is enabled in the kernel
484 #       1 otherwise.
485 afexists()
486 {
487         local _af
488         _af=$1
489
490         case ${_af} in
491         inet|inet6)
492                 check_kern_features ${_af}
493                 ;;
494         atm)
495                 if [ -x /sbin/atmconfig ]; then
496                         /sbin/atmconfig diag list > /dev/null 2>&1
497                 else
498                         return 1
499                 fi
500                 ;;
501         link|ether)
502                 return 0
503                 ;;
504         *)
505                 err 1 "afexists(): Unsupported address family: $_af"
506                 ;;
507         esac
508 }
509
510 # noafif if
511 #       Returns 0 if the interface has no af configuration and 1 otherwise.
512 noafif()
513 {
514         local _if
515         _if=$1
516
517         case $_if in
518         pflog[0-9]*|\
519         pfsync[0-9]*|\
520         usbus[0-9]*|\
521         an[0-9]*|\
522         ath[0-9]*|\
523         ipw[0-9]*|\
524         ipfw[0-9]*|\
525         iwi[0-9]*|\
526         iwn[0-9]*|\
527         ral[0-9]*|\
528         wi[0-9]*|\
529         wl[0-9]*|\
530         wpi[0-9]*)
531                 return 0
532                 ;;
533         esac
534
535         return 1
536 }
537
538 # ipv6if if
539 #       Returns 0 if the interface should be configured for IPv6 and
540 #       1 otherwise.
541 ipv6if()
542 {
543         local _if _tmpargs i
544         _if=$1
545
546         if ! afexists inet6; then
547                 return 1
548         fi
549
550         # lo0 is always IPv6-enabled
551         case $_if in
552         lo0)
553                 return 0
554                 ;;
555         esac
556
557         case "${ipv6_network_interfaces}" in
558         $_if|"$_if "*|*" $_if"|*" $_if "*|[Aa][Uu][Tt][Oo])
559                 # True if $ifconfig_IF_ipv6 is defined.
560                 _tmpargs=`_ifconfig_getargs $_if ipv6`
561                 if [ -n "${_tmpargs}" ]; then
562                         return 0
563                 fi
564
565                 # True if $ipv6_prefix_IF is defined.
566                 _tmpargs=`get_if_var $_if ipv6_prefix_IF`
567                 if [ -n "${_tmpargs}" ]; then
568                         return 0
569                 fi
570
571                 # backward compatibility: True if $ipv6_ifconfig_IF is defined.
572                 _tmpargs=`get_if_var $_if ipv6_ifconfig_IF`
573                 if [ -n "${_tmpargs}" ]; then
574                         return 0
575                 fi
576                 ;;
577         esac
578
579         return 1
580 }
581
582 # ipv6_autoconfif if
583 #       Returns 0 if the interface should be configured for IPv6 with
584 #       Stateless Address Configuration; 1 otherwise.
585 ipv6_autoconfif()
586 {
587         local _if _tmpargs _arg
588         _if=$1
589
590         case $_if in
591         lo[0-9]*|\
592         stf[0-9]*|\
593         lp[0-9]*|\
594         sl[0-9]*)
595                 return 1
596                 ;;
597         esac
598         if noafif $_if; then
599                 return 1
600         fi
601         if ! ipv6if $_if; then
602                 return 1
603         fi
604         if checkyesno ipv6_gateway_enable; then
605                 return 1
606         fi
607         _tmpargs=`get_if_var $_if ipv6_prefix_IF`
608         if [ -n "${_tmpargs}" ]; then
609                 return 1
610         fi
611         # backward compatibility: $ipv6_enable
612         case $ipv6_enable in
613         [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
614                 if checkyesno ipv6_gateway_enable; then
615                         return 1
616                 fi
617                 case $1 in
618                 bridge[0-9]*)
619                         # No accept_rtadv by default on if_bridge(4)
620                         # to avoid a conflict with the member
621                         # interfaces.
622                         return 1
623                 ;;
624                 *)
625                         return 0
626                 ;;
627                 esac
628         ;;
629         esac
630
631         _tmpargs=`_ifconfig_getargs $_if ipv6`
632         for _arg in $_tmpargs; do
633                 case $_arg in
634                 accept_rtadv)
635                         return 0
636                         ;;
637                 esac
638         done
639
640         # backward compatibility: $ipv6_ifconfig_IF
641         _tmpargs=`get_if_var $_if ipv6_ifconfig_IF`
642         for _arg in $_tmpargs; do
643                 case $_arg in
644                 accept_rtadv)
645                         return 0
646                         ;;
647                 esac
648         done
649
650         return 1
651 }
652
653 # ifexists if
654 #       Returns 0 if the interface exists and 1 otherwise.
655 ifexists()
656 {
657         [ -z "$1" ] && return 1
658         ${IFCONFIG_CMD} -n $1 > /dev/null 2>&1
659 }
660
661 # ipv4_up if
662 #       add IPv4 addresses to the interface $if
663 ipv4_up()
664 {
665         local _if _ret
666         _if=$1
667         _ret=1
668
669         # Add 127.0.0.1/8 to lo0 unless otherwise specified.
670         if [ "${_if}" = "lo0" ]; then
671                 ifconfig_args=`get_if_var ${_if} ifconfig_IF`
672                 if [ -z "${ifconfig_args}" ]; then
673                         ${IFCONFIG_CMD} ${_if} inet 127.0.0.1/8 alias
674                 fi
675         fi
676         ifalias ${_if} inet alias && _ret=0
677
678         return $_ret
679 }
680
681 # ipv6_up if
682 #       add IPv6 addresses to the interface $if
683 ipv6_up()
684 {
685         local _if _ret
686         _if=$1
687         _ret=1
688
689         if ! ipv6if $_if; then
690                 return 0
691         fi
692
693         ifalias ${_if} inet6 alias && _ret=0
694         ipv6_prefix_hostid_addr_common ${_if} alias && _ret=0
695         ipv6_accept_rtadv_up ${_if} && _ret=0
696
697         return $_ret
698 }
699
700 # ipv4_down if
701 #       remove IPv4 addresses from the interface $if
702 ipv4_down()
703 {
704         local _if _ifs _ret inetList oldifs _inet
705         _if=$1
706         _ifs="^"
707         _ret=1
708
709         ifalias ${_if} inet -alias && _ret=0
710
711         inetList="`${IFCONFIG_CMD} ${_if} | grep 'inet ' | tr "\n\t" "$_ifs"`"
712
713         oldifs="$IFS"
714         IFS="$_ifs"
715         for _inet in $inetList ; do
716                 # get rid of extraneous line
717                 case $_inet in
718                 inet\ *)        ;;
719                 *)              continue ;;
720                 esac
721
722                 _inet=`expr "$_inet" : '.*\(inet \([0-9]\{1,3\}\.\)\{3\}[0-9]\{1,3\}\).*'`
723
724                 IFS="$oldifs"
725                 ${IFCONFIG_CMD} ${_if} ${_inet} delete
726                 IFS="$_ifs"
727                 _ret=0
728         done
729         IFS="$oldifs"
730
731         return $_ret
732 }
733
734 # ipv6_down if
735 #       remove IPv6 addresses from the interface $if
736 ipv6_down()
737 {
738         local _if _ifs _ret inetList oldifs _inet6
739         _if=$1
740         _ifs="^"
741         _ret=1
742
743         if ! ipv6if $_if; then
744                 return 0
745         fi
746
747         ipv6_accept_rtadv_down ${_if} && _ret=0
748         ipv6_prefix_hostid_addr_common ${_if} -alias && _ret=0
749         ifalias ${_if} inet6 -alias && _ret=0
750
751         inetList="`${IFCONFIG_CMD} ${_if} | grep 'inet6 ' | tr "\n\t" "$_ifs"`"
752
753         oldifs="$IFS"
754         IFS="$_ifs"
755         for _inet6 in $inetList ; do
756                 # get rid of extraneous line
757                 case $_inet6 in
758                 inet6\ *)       ;;
759                 *)              continue ;;
760                 esac
761
762                 _inet6=`expr "$_inet6" : '.*\(inet6 \([0-9a-f:]*\)\).*'`
763
764                 IFS="$oldifs"
765                 ${IFCONFIG_CMD} ${_if} ${_inet6} -alias
766                 IFS="$_ifs"
767                 _ret=0
768         done
769         IFS="$oldifs"
770
771         return $_ret
772 }
773
774 # ifalias if af action
775 #       Configure or remove aliases for network interface $if.
776 #       It returns 0 if at least one alias was configured or
777 #       removed, or 1 if there were none.
778 #
779 ifalias()
780 {
781         local _ret
782         _ret=1
783
784         afexists $2 || return $_ret
785
786         case "$2" in
787         inet|inet6|link|ether)
788                 ifalias_af_common $1 $2 $3 && _ret=0
789                 ;;
790         esac
791
792         return $_ret
793 }
794
795 # ifalias_expand_addr af action addr
796 #       Expand address range ("N-M") specification in addr.
797 #       "addr" must not include an address-family keyword.
798 #       The results will include an address-family keyword.
799 #
800 ifalias_expand_addr()
801 {
802         local _af _action
803
804         _af=$1
805         _action=$2
806         shift 2
807
808         afexists $_af || return
809         ifalias_expand_addr_$_af $_action $*
810 }
811
812 # ifalias_expand_addr_inet action addr
813 #       Helper function for ifalias_expand_addr().  Handles IPv4.
814 #
815 ifalias_expand_addr_inet()
816 {
817         local _action _arg _cidr _cidr_addr _exargs
818         local _ipaddr _plen _range _iphead _iptail _iplow _iphigh _ipcount
819         local _retstr _c
820         _action=$1
821         _arg=$2
822         shift 2
823         _exargs=$*
824         _retstr=
825
826         case $_action:$_arg:$_exargs in
827         *:*--*)         return ;;       # invalid
828         tmp:*[0-9]-[0-9]*:*)            # to be expanded
829                 _action="alias"
830         ;;
831         *:*[0-9]-[0-9]*:*)              # to be expanded
832         ;;
833         tmp:*:*netmask*)                # already expanded w/ netmask option
834                 echo ${_arg%/[0-9]*} $_exargs && return
835         ;;
836         tmp:*:*)                        # already expanded w/o netmask option
837                 echo $_arg $_exargs && return
838         ;;
839         *:*:*netmask*)                  # already expanded w/ netmask option
840                 echo inet ${_arg%/[0-9]*} $_exargs && return
841         ;;
842         *:*:*)                          # already expanded w/o netmask option
843                 echo inet $_arg $_exargs && return
844         ;;
845         esac
846
847         for _cidr in $_arg; do
848                 _ipaddr=${_cidr%%/*}
849                 _plen=${_cidr##*/}
850                 # When subnet prefix length is not specified, use /32.
851                 case $_plen in
852                 $_ipaddr)       _plen=32 ;;     # "/" character not found
853                 esac
854
855                 OIFS=$IFS
856                 IFS=. set -- $_ipaddr
857                 _range=
858                 _iphead=
859                 _iptail=
860                 for _c in $@; do
861                         case $_range:$_c in
862                         :[0-9]*-[0-9]*)
863                                 _range=$_c
864                         ;;
865                         :*)
866                                 _iphead="${_iphead}${_iphead:+.}${_c}"
867                         ;;
868                         *:*)
869                                 _iptail="${_iptail}${_iptail:+.}${_c}"
870                         ;;
871                         esac
872                 done
873                 IFS=$OIFS
874                 _iplow=${_range%-*}
875                 _iphigh=${_range#*-}
876
877                 # clear netmask when removing aliases
878                 if [ "$_action" = "-alias" ]; then
879                         _plen=""
880                 fi
881
882                 _ipcount=$_iplow
883                 while [ "$_ipcount" -le "$_iphigh" ]; do
884                         _retstr="${_retstr} ${_iphead}${_iphead:+.}${_ipcount}${_iptail:+.}${_iptail}${_plen:+/}${_plen}"
885                         if [ $_ipcount -gt $(($_iplow + $netif_ipexpand_max)) ]; then
886                                 warn "Range specification is too large (${_iphead}${_iphead:+.}${_iplow}${_iptail:+.}${_iptail}-${_iphead}${_iphead:+.}${_iphigh}${_iptail:+.}${_iptail}).  ${_iphead}${_iphead:+.}${_iplow}${_iptail:+.}${_iptail}-${_iphead}${_iphead:+.}${_ipcount}${_iptail:+.}${_iptail} was processed.  Increase \$netif_ipexpand_max in rc.conf."
887                                 break
888                         else
889                                 _ipcount=$(($_ipcount + 1))
890                         fi
891                         # Forcibly set /32 for remaining aliases.
892                         _plen=32
893                 done
894         done
895
896         for _c in $_retstr; do
897                 ifalias_expand_addr_inet $_action $_c $_exargs
898         done
899 }
900
901 # ifalias_expand_addr_inet6 action addr
902 #       Helper function for ifalias_expand_addr().  Handles IPv6.
903 #
904 ifalias_expand_addr_inet6()
905 {
906         local _action _arg _cidr _cidr_addr _exargs
907         local _ipaddr _plen _ipleft _ipright _iplow _iphigh _ipcount
908         local _ipv4part
909         local _retstr _c
910         _action=$1
911         _arg=$2
912         shift 2
913         _exargs=$*
914         _retstr=
915
916         case $_action:$_arg:$_exargs in
917         *:*--*:*)       return ;;       # invalid
918         tmp:*[0-9a-zA-Z]-[0-9a-zA-Z]*:*)# to be expanded
919                 _action="alias"
920         ;;
921         *:*[0-9a-zA-Z]-[0-9a-zA-Z]*:*)  # to be expanded
922         ;;
923         tmp:*:*prefixlen*)      # already expanded w/ prefixlen option
924                 echo ${_arg%/[0-9]*} $_exargs && return
925         ;;
926         tmp:*:*)                # already expanded w/o prefixlen option
927                 echo $_arg $_exargs && return
928         ;;
929         *:*:*prefixlen*)        # already expanded w/ prefixlen option
930                 echo inet6 ${_arg%/[0-9]*} $_exargs && return
931         ;;
932         *:*:*)                  # already expanded w/o prefixlen option
933                 echo inet6 $_arg $_exargs && return
934         ;;
935         esac
936
937         for _cidr in $_arg; do
938                 _ipaddr="${_cidr%%/*}"
939                 _plen="${_cidr##*/}"
940
941                 case $_action:$_ipaddr:$_cidr in
942                 -alias:*:*)             unset _plen ;;
943                 *:$_cidr:$_ipaddr)      unset _plen ;;
944                 esac
945
946                 if [ "${_ipaddr%:*.*.*.*}" = "$_ipaddr" ]; then
947                         # Handle !v4mapped && !v4compat addresses.
948
949                         # The default prefix length is 64.
950                         case $_ipaddr:$_cidr in
951                         $_cidr:$_ipaddr)        _plen="64" ;;
952                         esac
953                         _ipleft=${_ipaddr%-*}
954                         _ipright=${_ipaddr#*-}
955                         _iplow=${_ipleft##*:}
956                         _iphigh=${_ipright%%:*}
957                         _ipleft=${_ipleft%:*}
958                         _ipright=${_ipright#*:}
959
960                         if [ "$_iphigh" = "$_ipright" ]; then
961                                 unset _ipright
962                         else
963                                 _ipright=:$_ipright
964                         fi
965
966                         if [ -n "$_iplow" -a -n "$_iphigh" ]; then
967                                 _iplow=$((0x$_iplow))
968                                 _iphigh=$((0x$_iphigh))
969                                 _ipcount=$_iplow
970                                 while [ $_ipcount -le $_iphigh ]; do
971                                         _r=`printf "%s:%04x%s%s" \
972                                             $_ipleft $_ipcount $_ipright \
973                                             ${_plen:+/}$_plen`
974                                         _retstr="$_retstr $_r"
975                                         if [ $_ipcount -gt $(($_iplow + $netif_ipexpand_max)) ]
976                                         then
977                                                 warn "Range specification is too large $(printf '(%s:%x%s-%s:%x%s)' "$_ipleft" "$_iplow" "$_ipright" "$_ipleft" "$_iphigh" "$_ipright"). $(printf '%s:%x%s-%s:%x%s' "$_ipleft" "$_iplow" "$_ipright" "$_ipleft" "$_ipcount" "$_ipright") was processed.  Increase \$netif_ipexpand_max in rc.conf."
978                                                 break
979                                         else
980                                                 _ipcount=$(($_ipcount + 1))
981                                         fi
982                                 done
983                         else
984                                 _retstr="${_ipaddr}${_plen:+/}${_plen}"
985                         fi
986
987                         for _c in $_retstr; do
988                                 ifalias_expand_addr_inet6 $_action $_c $_exargs
989                         done
990                 else
991                         # v4mapped/v4compat should handle as an IPv4 alias
992                         _ipv4part=${_ipaddr##*:}
993
994                         # Adjust prefix length if any.  If not, set the
995                         # default prefix length as 32.
996                         case $_ipaddr:$_cidr in
997                         $_cidr:$_ipaddr)        _plen=32 ;;
998                         *)                      _plen=$(($_plen - 96)) ;;
999                         esac
1000
1001                         _retstr=`ifalias_expand_addr_inet \
1002                             tmp ${_ipv4part}${_plen:+/}${_plen}`
1003                         for _c in $_retstr; do
1004                                 ifalias_expand_addr_inet $_action $_c $_exargs
1005                         done
1006                 fi
1007         done
1008 }
1009
1010 # ifalias_af_common_handler if af action args
1011 #       Helper function for ifalias_af_common().
1012 #
1013 ifalias_af_common_handler()
1014 {
1015         local _ret _if _af _action _args _c _tmpargs
1016
1017         _ret=1
1018         _if=$1
1019         _af=$2
1020         _action=$3
1021         shift 3
1022         _args=$*
1023
1024         case $_args in
1025         ${_af}\ *)      ;;
1026         *)      return  ;;
1027         esac
1028
1029         # link(ether) does not support address removal.
1030         case $_af:$_action in
1031         link:-alias|ether:-alias)       return ;;
1032         esac
1033
1034         _tmpargs=
1035         for _c in $_args; do
1036                 case $_c in
1037                 ${_af})
1038                         case $_tmpargs in
1039                         ${_af}\ *[0-9a-fA-F]-*)
1040                                 ifalias_af_common_handler $_if $_af $_action \
1041                                 `ifalias_expand_addr $_af $_action ${_tmpargs#${_af}\ }`
1042                         ;;
1043                         ${_af}\ *)
1044                                 ${IFCONFIG_CMD} $_if $_tmpargs $_action && _ret=0
1045                         ;;
1046                         esac
1047                         _tmpargs=$_af
1048                 ;;
1049                 *)
1050                         _tmpargs="$_tmpargs $_c"
1051                 ;;
1052                 esac
1053         done
1054         # Process the last component if any.
1055         if [ -n "$_tmpargs}" ]; then
1056                 case $_tmpargs in
1057                 ${_af}\ *[0-9a-fA-F]-*)
1058                         ifalias_af_common_handler $_if $_af $_action \
1059                         `ifalias_expand_addr $_af $_action ${_tmpargs#${_af}\ }`
1060                 ;;
1061                 ${_af}\ *)
1062                         ${IFCONFIG_CMD} $_if $_tmpargs $_action && _ret=0
1063                 ;;
1064                 esac
1065         fi
1066
1067         return $_ret
1068 }
1069
1070 # ifalias_af_common if af action
1071 #       Helper function for ifalias().
1072 #
1073 ifalias_af_common()
1074 {
1075         local _ret _if _af _action alias ifconfig_args _aliasn _c _tmpargs _iaf
1076         local _vif _punct=".-/+"
1077
1078         _ret=1
1079         _aliasn=
1080         _if=$1
1081         _af=$2
1082         _action=$3
1083
1084         # Normalize $_if before using it in a pattern to list_vars()
1085         ltr "$_if" "$_punct" "_" _vif
1086
1087         # ifconfig_IF_aliasN which starts with $_af
1088         for alias in `list_vars ifconfig_${_vif}_alias[0-9]\* |
1089                 sort_lite -nk1.$((9+${#_vif}+7))`
1090         do
1091                 eval ifconfig_args=\"\$$alias\"
1092                 _iaf=
1093                 case $ifconfig_args in
1094                 inet\ *)        _iaf=inet ;;
1095                 inet6\ *)       _iaf=inet6 ;;
1096                 link\ *)        _iaf=link ;;
1097                 ether\ *)       _iaf=ether ;;
1098                 esac
1099
1100                 case ${_af}:${_action}:${_iaf}:"${ifconfig_args}" in
1101                 ${_af}:*:${_af}:*)
1102                         _aliasn="$_aliasn $ifconfig_args"
1103                         ;;
1104                 ${_af}:*:"":"")
1105                         break
1106                         ;;
1107                 inet:alias:"":*)
1108                         _aliasn="$_aliasn inet $ifconfig_args"
1109                         warn "\$${alias} needs leading" \
1110                             "\"inet\" keyword for an IPv4 address."
1111                 esac
1112         done
1113
1114         # backward compatibility: ipv6_ifconfig_IF_aliasN.
1115         case $_af in
1116         inet6)
1117                 for alias in `list_vars ipv6_ifconfig_${_vif}_alias[0-9]\* |
1118                         sort_lite -nk1.$((14+${#_vif}+7))`
1119                 do
1120                         eval ifconfig_args=\"\$$alias\"
1121                         case ${_action}:"${ifconfig_args}" in
1122                         *:"")
1123                                 break
1124                         ;;
1125                         alias:*)
1126                                 _aliasn="${_aliasn} inet6 ${ifconfig_args}"
1127                                 warn "\$${alias} is obsolete. " \
1128                                     "Use ifconfig_${_vif}_aliasN instead."
1129                         ;;
1130                         esac
1131                 done
1132         esac
1133
1134         # backward compatibility: ipv4_addrs_IF.
1135         for _tmpargs in `get_if_var $_if ipv4_addrs_IF`; do
1136                 _aliasn="$_aliasn inet $_tmpargs"
1137         done
1138
1139         # Handle ifconfig_IF_aliases, ifconfig_IF_aliasN, and the others.
1140         _tmpargs=
1141         for _c in `get_if_var $_if ifconfig_IF_aliases` $_aliasn; do
1142                 case $_c in
1143                 inet|inet6|link|ether)
1144                         case $_tmpargs in
1145                         ${_af}\ *)
1146                                 eval ifalias_af_common_handler $_if $_af $_action $_tmpargs && _ret=0
1147                         ;;
1148                         esac
1149                         _tmpargs=$_c
1150                 ;;
1151                 *)
1152                         _tmpargs="$_tmpargs $_c"
1153                 esac
1154         done
1155         # Process the last component
1156         case $_tmpargs in
1157         ${_af}\ *)
1158                 ifalias_af_common_handler $_if $_af $_action $_tmpargs && _ret=0
1159         ;;
1160         esac
1161
1162         return $_ret
1163 }
1164
1165 # ipv6_prefix_hostid_addr_common if action
1166 #       Add or remove IPv6 prefix + hostid addr on the interface $if
1167 #
1168 ipv6_prefix_hostid_addr_common()
1169 {
1170         local _if _action prefix j
1171         _if=$1
1172         _action=$2
1173         prefix=`get_if_var ${_if} ipv6_prefix_IF`
1174
1175         if [ -n "${prefix}" ]; then
1176                 for j in ${prefix}; do
1177                         # The default prefixlen is 64.
1178                         plen=${j#*/}
1179                         case $j:$plen in
1180                         $plen:$j)       plen=64 ;;
1181                         *)              j=${j%/*} ;;
1182                         esac
1183
1184                         # Normalize the last part by removing ":"
1185                         j=${j%::*}
1186                         j=${j%:}
1187                         ${IFCONFIG_CMD} ${_if} inet6 $j:: \
1188                                 prefixlen $plen eui64 ${_action}
1189
1190                         # if I am a router, add subnet router
1191                         # anycast address (RFC 2373).
1192                         if checkyesno ipv6_gateway_enable; then
1193                                 ${IFCONFIG_CMD} ${_if} inet6 $j:: \
1194                                         prefixlen $plen ${_action} anycast
1195                         fi
1196                 done
1197         fi
1198 }
1199
1200 # ipv6_accept_rtadv_up if
1201 #       Enable accepting Router Advertisement and send Router
1202 #       Solicitation message
1203 ipv6_accept_rtadv_up()
1204 {
1205         if ipv6_autoconfif $1; then
1206                 ${IFCONFIG_CMD} $1 inet6 accept_rtadv up
1207                 if ! checkyesno rtsold_enable; then
1208                         rtsol ${rtsol_flags} $1
1209                 fi
1210         fi
1211 }
1212
1213 # ipv6_accept_rtadv_down if
1214 #       Disable accepting Router Advertisement
1215 ipv6_accept_rtadv_down()
1216 {
1217         if ipv6_autoconfif $1; then
1218                 ${IFCONFIG_CMD} $1 inet6 -accept_rtadv
1219         fi
1220 }
1221
1222 # ifscript_up if
1223 #       Evaluate a startup script for the $if interface.
1224 #       It returns 0 if a script was found and processed or
1225 #       1 if no script was found.
1226 #
1227 ifscript_up()
1228 {
1229         if [ -r /etc/start_if.$1 ]; then
1230                 . /etc/start_if.$1
1231                 return 0
1232         else
1233                 return 1
1234         fi
1235 }
1236
1237 # ifscript_down if
1238 #       Evaluate a shutdown script for the $if interface.
1239 #       It returns 0 if a script was found and processed or
1240 #       1 if no script was found.
1241 #
1242 ifscript_down()
1243 {
1244         if [ -r /etc/stop_if.$1 ]; then
1245                 . /etc/stop_if.$1
1246                 return 0
1247         else
1248                 return 1
1249         fi
1250 }
1251
1252 # wlan_up
1253 #       Create IEEE802.3 interfaces.
1254 #
1255 wlan_up()
1256 {
1257         local _list _iflist wlan parent ifn
1258         _list=
1259         _iflist=$*
1260
1261         for wlan in `set | egrep ^wlans_[a-z]+[0-9]+=[a-z]+[0-9]+`; do
1262                 # Parse wlans_$parent=$ifn
1263                 wlan=`echo $wlan | sed -E 's/wlans_([a-z]+[0-9]+)=([a-z]+[0-9]+)/\1:\2/'`
1264                 OIFS=$IFS; IFS=:; set -- $wlan; parent=$1; ifn=$2; IFS=$OIFS
1265                 case $_iflist in
1266                 ""|$ifn|$ifn\ *|*\ $ifn\ *|*\ $ifn)     ;;
1267                 *)      continue ;;
1268                 esac
1269                 # Skip if ${ifn} already exists.
1270                 if ${IFCONFIG_CMD} $ifn > /dev/null 2>&1; then
1271                         continue
1272                 fi
1273                 ${IFCONFIG_CMD} ${ifn} create wlandev ${parent}
1274                 if [ $? -eq 0 ]; then
1275                         _list="$_list $ifn"
1276                 fi
1277         done
1278         if [ -n "${_list# }" ]; then
1279                 echo "Created wlan(4) interfaces: ${_list# }."
1280         fi
1281         debug "Created wlan(4)s: ${_list# }"
1282 }
1283
1284 # wlan_down
1285 #       Destroy IEEE802.3 interfaces.
1286 #
1287 wlan_down()
1288 {
1289         local _list _iflist wlan parent ifn
1290         _list=
1291         _iflist=$*
1292
1293         for wlan in `set | egrep ^wlans_[a-z]+[0-9]+=[a-z]+[0-9]+`; do
1294                 # Parse wlans_$parent=$ifn
1295                 wlan=`echo $wlan | sed -E 's/wlans_([a-z]+[0-9]+)=([a-z]+[0-9]+)/\1:\2/'`
1296                 OIFS=$IFS; IFS=:; set -- $wlan; parent=$1; ifn=$2; IFS=$OIFS
1297                 case $_iflist in
1298                 ""|$ifn|$ifn\ *|*\ $ifn\ *|*\ $ifn)     ;;
1299                 *)      continue ;;
1300                 esac
1301                 # Skip if ${ifn} doesn't exists.
1302                 if ! ${IFCONFIG_CMD} $ifn > /dev/null 2>&1; then
1303                         continue
1304                 fi
1305                 ${IFCONFIG_CMD} -n ${ifn} destroy
1306                 if [ $? -eq 0 ]; then
1307                         _list="$_list $ifn"
1308                 fi
1309         done
1310         if [ -n "${_list# }" ]; then
1311                 echo "Destroyed wlan(4) interfaces: ${_list# }."
1312         fi
1313         debug "Destroyed wlan(4)s: ${_list# }"
1314 }
1315
1316 # clone_up
1317 #       Create cloneable interfaces.
1318 #
1319 clone_up()
1320 {
1321         local _list ifn ifopt _iflist _n tmpargs
1322         _list=
1323         _iflist=$*
1324
1325         # create_args_IF
1326         for ifn in ${cloned_interfaces}; do
1327                 # Parse ifn:ifopt.
1328                 OIFS=$IFS; IFS=:; set -- $ifn; ifn=$1; ifopt=$2; IFS=$OIFS
1329                 case $_iflist in
1330                 ""|$ifn|$ifn\ *|*\ $ifn\ *|*\ $ifn)     ;;
1331                 *)      continue ;;
1332                 esac
1333                 case $ifn in
1334                 epair[0-9]*)
1335                         # epair(4) uses epair[0-9] for creation and
1336                         # epair[0-9][ab] for configuration.
1337                         #
1338                         # Skip if ${ifn}a or ${ifn}b already exist.
1339                         if ${IFCONFIG_CMD} ${ifn}a > /dev/null 2>&1; then
1340                                 continue
1341                         elif ${IFCONFIG_CMD} ${ifn}b > /dev/null 2>&1; then
1342                                 continue
1343                         fi
1344                         ${IFCONFIG_CMD} ${ifn} create \
1345                             `get_if_var ${ifn} create_args_IF`
1346                         if [ $? -eq 0 ]; then
1347                                 _list="$_list ${ifn}a ${ifn}b"
1348                         fi
1349                 ;;
1350                 *)
1351                         # Skip if ${ifn} already exists.
1352                         if ${IFCONFIG_CMD} $ifn > /dev/null 2>&1; then
1353                                 continue
1354                         fi
1355                         ${IFCONFIG_CMD} ${ifn} create \
1356                             `get_if_var ${ifn} create_args_IF`
1357                         if [ $? -eq 0 ]; then
1358                                 _list="$_list $ifn"
1359                         fi
1360                 esac
1361         done
1362         if [ -n "$gif_interfaces" ]; then
1363                 warn "\$gif_interfaces is obsolete.  Use \$cloned_interfaces instead."
1364         fi
1365         for ifn in ${gif_interfaces}; do
1366                 # Parse ifn:ifopt.
1367                 OIFS=$IFS; IFS=:; set -- $ifn; ifn=$1; ifopt=$2; IFS=$OIFS
1368                 case $_iflist in
1369                 ""|$ifn|$ifn\ *|*\ $ifn\ *|*\ $ifn)     ;;
1370                 *)      continue ;;
1371                 esac
1372                 # Skip if ifn already exists.
1373                 if ${IFCONFIG_CMD} $ifn > /dev/null 2>&1; then
1374                         continue
1375                 fi
1376                 case $ifn in
1377                 gif[0-9]*)
1378                         ${IFCONFIG_CMD} $ifn create
1379                 ;;
1380                 *)
1381                         _n=$(${IFCONFIG_CMD} gif create)
1382                         ${IFCONFIG_CMD} $_n name $ifn
1383                 ;;
1384                 esac
1385                 if [ $? -eq 0 ]; then
1386                         _list="$_list $ifn"
1387                 fi
1388                 tmpargs=$(get_if_var $ifn gifconfig_IF)
1389                 eval ifconfig_${ifn}=\"tunnel \$tmpargs\"
1390         done
1391         if [ -n "${_list# }" ]; then
1392                 echo "Created clone interfaces: ${_list# }."
1393         fi
1394         debug "Cloned: ${_list# }"
1395 }
1396
1397 # clone_down
1398 #       Destroy cloned interfaces. Destroyed interfaces are echoed to
1399 #       standard output.
1400 #
1401 clone_down()
1402 {
1403         local _list ifn _difn ifopt _iflist _sticky
1404         _list=
1405         _iflist=$*
1406
1407         : ${cloned_interfaces_sticky:=NO}
1408         if checkyesno cloned_interfaces_sticky; then
1409                 _sticky=1
1410         else
1411                 _sticky=0
1412         fi
1413         for ifn in ${cloned_interfaces} ${gif_interfaces}; do
1414                 # Parse ifn:ifopt.
1415                 OIFS=$IFS; IFS=:; set -- $ifn; ifn=$1; ifopt=$2; IFS=$OIFS
1416                 case $ifopt:$_sticky in
1417                 sticky:*)       continue ;;     # :sticky => not destroy
1418                 nosticky:*)     ;;              # :nosticky => destroy
1419                 *:1)            continue ;;     # global sticky knob == 1
1420                 esac
1421                 case $_iflist in
1422                 ""|$ifn|$ifn\ *|*\ $ifn\ *|*\ $ifn)     ;;
1423                 *)      continue ;;
1424                 esac
1425                 case $ifn in
1426                 epair[0-9]*)
1427                         # Note: epair(4) uses epair[0-9] for removal and
1428                         # epair[0-9][ab] for configuration.
1429                         #
1430                         # Skip if both of ${ifn}a and ${ifn}b do not exist.
1431                         if ${IFCONFIG_CMD} ${ifn}a > /dev/null 2>&1; then
1432                                 _difn=${ifn}a
1433                         elif ${IFCONFIG_CMD} ${ifn}b > /dev/null 2>&1; then
1434                                 _difn=${ifn}b
1435                         else
1436                                 continue
1437                         fi
1438                         ${IFCONFIG_CMD} -n $_difn destroy
1439                         if [ $? -eq 0 ]; then
1440                                 _list="$_list ${ifn}a ${ifn}b"
1441                         fi
1442                 ;;
1443                 *)
1444                         # Skip if ifn does not exist.
1445                         if ! ${IFCONFIG_CMD} $ifn > /dev/null 2>&1; then
1446                                 continue
1447                         fi
1448                         ${IFCONFIG_CMD} -n ${ifn} destroy
1449                         if [ $? -eq 0 ]; then
1450                                 _list="$_list $ifn"
1451                         fi
1452                 ;;
1453                 esac
1454         done
1455         if [ -n "${_list# }" ]; then
1456                 echo "Destroyed clone interfaces: ${_list# }."
1457         fi
1458         debug "Destroyed clones: ${_list# }"
1459 }
1460
1461 # childif_create
1462 #       Create and configure child interfaces.  Return 0 if child
1463 #       interfaces are created.
1464 #
1465 #       XXXGL: the wlan code in this functions is superseded by wlan_up(),
1466 #       and will go away soon.
1467 #
1468 childif_create()
1469 {
1470         local cfg child child_vlans child_wlans create_args debug_flags ifn i
1471         cfg=1
1472         ifn=$1
1473
1474         # Create wireless interfaces
1475         child_wlans=`get_if_var $ifn wlans_IF`
1476
1477         for child in ${child_wlans}; do
1478                 create_args="wlandev $ifn `get_if_var $child create_args_IF`"
1479                 debug_flags="`get_if_var $child wlandebug_IF`"
1480
1481                 if expr $child : 'wlan[0-9][0-9]*$' >/dev/null 2>&1; then
1482                         ${IFCONFIG_CMD} $child create ${create_args} && cfg=0
1483                         if [ -n "${debug_flags}" ]; then
1484                                 wlandebug -i $child ${debug_flags}
1485                         fi
1486                 else
1487                         i=`${IFCONFIG_CMD} wlan create ${create_args}`
1488                         if [ -n "${debug_flags}" ]; then
1489                                 wlandebug -i $i ${debug_flags}
1490                         fi
1491                         ${IFCONFIG_CMD} $i name $child && cfg=0
1492                 fi
1493                 if autoif $child; then
1494                         ifn_start $child
1495                 fi
1496         done
1497
1498         # Create vlan interfaces
1499         child_vlans=`get_if_var $ifn vlans_IF`
1500
1501         if [ -n "${child_vlans}" ]; then
1502                 load_kld if_vlan
1503         fi
1504
1505         for child in ${child_vlans}; do
1506                 if expr $child : '[1-9][0-9]*$' >/dev/null 2>&1; then
1507                         child="${ifn}.${child}"
1508                         create_args=`get_if_var $child create_args_IF`
1509                         ${IFCONFIG_CMD} $child create ${create_args} && cfg=0
1510                 else
1511                         create_args="vlandev $ifn `get_if_var $child create_args_IF`"
1512                         if expr $child : 'vlan[0-9][0-9]*$' >/dev/null 2>&1; then
1513                                 ${IFCONFIG_CMD} $child create ${create_args} && cfg=0
1514                         else
1515                                 i=`${IFCONFIG_CMD} vlan create ${create_args}`
1516                                 ${IFCONFIG_CMD} $i name $child && cfg=0
1517                         fi
1518                 fi
1519                 if autoif $child; then
1520                         ifn_start $child
1521                 fi
1522         done
1523
1524         return ${cfg}
1525 }
1526
1527 # childif_destroy
1528 #       Destroy child interfaces.
1529 #
1530 childif_destroy()
1531 {
1532         local cfg child child_vlans child_wlans ifn
1533         cfg=1
1534
1535         child_wlans=`get_if_var $ifn wlans_IF`
1536         for child in ${child_wlans}; do
1537                 if ! ifexists $child; then
1538                         continue
1539                 fi
1540                 ${IFCONFIG_CMD} -n $child destroy && cfg=0
1541         done
1542
1543         child_vlans=`get_if_var $ifn vlans_IF`
1544         for child in ${child_vlans}; do
1545                 if expr $child : '[1-9][0-9]*$' >/dev/null 2>&1; then
1546                         child="${ifn}.${child}"
1547                 fi
1548                 if ! ifexists $child; then
1549                         continue
1550                 fi
1551                 ${IFCONFIG_CMD} -n $child destroy && cfg=0
1552         done
1553
1554         return ${cfg}
1555 }
1556
1557 # ng_mkpeer
1558 #       Create netgraph nodes.
1559 #
1560 ng_mkpeer()
1561 {
1562         ngctl -f - 2> /dev/null <<EOF
1563 mkpeer $*
1564 msg dummy nodeinfo
1565 EOF
1566 }
1567
1568 # ng_create_one
1569 #       Create netgraph nodes.
1570 #
1571 ng_create_one()
1572 {
1573         local t
1574
1575         ng_mkpeer $* | while read line; do
1576                 t=`expr "${line}" : '.* name="\([a-z]*[0-9]*\)" .*'`
1577                 if [ -n "${t}" ]; then
1578                         echo ${t}
1579                         return
1580                 fi
1581         done
1582 }
1583
1584 # ifnet_rename [ifname]
1585 #       Rename interfaces if ifconfig_IF_name is defined.
1586 #
1587 ifnet_rename()
1588 {
1589         local _if _ifname
1590
1591         # ifconfig_IF_name
1592         for _if in ${*:-$(${IFCONFIG_CMD} -l)}; do
1593                 _ifname=`get_if_var $_if ifconfig_IF_name`
1594                 if [ ! -z "$_ifname" ]; then
1595                         ${IFCONFIG_CMD} $_if name $_ifname
1596                 fi
1597         done
1598
1599         return 0
1600 }
1601
1602 # list_net_interfaces type
1603 #       List all network interfaces. The type of interface returned
1604 #       can be controlled by the type argument. The type
1605 #       argument can be any of the following:
1606 #               nodhcp  - all interfaces, excluding DHCP configured interfaces
1607 #               dhcp    - list only DHCP configured interfaces
1608 #               noautoconf      - all interfaces, excluding IPv6 Stateless
1609 #                                 Address Autoconf configured interfaces
1610 #               autoconf        - list only IPv6 Stateless Address Autoconf
1611 #                                 configured interfaces
1612 #       If no argument is specified all network interfaces are output.
1613 #       Note that the list will include cloned interfaces if applicable.
1614 #       Cloned interfaces must already exist to have a chance to appear
1615 #       in the list if ${network_interfaces} is set to `auto'.
1616 #
1617 list_net_interfaces()
1618 {
1619         local type _tmplist _list _autolist _lo _if
1620         type=$1
1621
1622         # Get a list of ALL the interfaces and make lo0 first if it's there.
1623         #
1624         _tmplist=
1625         case ${network_interfaces} in
1626         [Aa][Uu][Tt][Oo])
1627                 _autolist="`${IFCONFIG_CMD} -l`"
1628                 _lo=
1629                 for _if in ${_autolist} ; do
1630                         if autoif $_if; then
1631                                 if [ "$_if" = "lo0" ]; then
1632                                         _lo="lo0 "
1633                                 else
1634                                         _tmplist="${_tmplist} ${_if}"
1635                                 fi
1636                         fi
1637                 done
1638                 _tmplist="${_lo}${_tmplist# }"
1639         ;;
1640         *)
1641                 for _if in ${network_interfaces} ${cloned_interfaces}; do
1642                         # epair(4) uses epair[0-9] for creation and
1643                         # epair[0-9][ab] for configuration.
1644                         case $_if in
1645                         epair[0-9]*)
1646                                 _tmplist="$_tmplist ${_if}a ${_if}b"
1647                         ;;
1648                         *)
1649                                 _tmplist="$_tmplist $_if"
1650                         ;;
1651                         esac
1652                 done
1653                 #
1654                 # lo0 is effectively mandatory, so help prevent foot-shooting
1655                 #
1656                 case "$_tmplist" in
1657                 lo0|'lo0 '*|*' lo0'|*' lo0 '*)
1658                         # This is fine, do nothing
1659                         _tmplist="${_tmplist# }"
1660                 ;;
1661                 *)
1662                         _tmplist="lo0 ${_tmplist# }"
1663                 ;;
1664                 esac
1665         ;;
1666         esac
1667
1668         _list=
1669         case "$type" in
1670         nodhcp)
1671                 for _if in ${_tmplist} ; do
1672                         if ! dhcpif $_if && \
1673                            [ -n "`_ifconfig_getargs $_if`" ]; then
1674                                 _list="${_list# } ${_if}"
1675                         fi
1676                 done
1677         ;;
1678         dhcp)
1679                 for _if in ${_tmplist} ; do
1680                         if dhcpif $_if; then
1681                                 _list="${_list# } ${_if}"
1682                         fi
1683                 done
1684         ;;
1685         noautoconf)
1686                 for _if in ${_tmplist} ; do
1687                         if ! ipv6_autoconfif $_if && \
1688                            [ -n "`_ifconfig_getargs $_if ipv6`" ]; then
1689                                 _list="${_list# } ${_if}"
1690                         fi
1691                 done
1692         ;;
1693         autoconf)
1694                 for _if in ${_tmplist} ; do
1695                         if ipv6_autoconfif $_if; then
1696                                 _list="${_list# } ${_if}"
1697                         fi
1698                 done
1699         ;;
1700         *)
1701                 _list=${_tmplist}
1702         ;;
1703         esac
1704
1705         echo $_list
1706
1707         return 0
1708 }
1709
1710 # get_default_if -address_family
1711 #       Get the interface of the default route for the given address family.
1712 #       The -address_family argument must be suitable passing to route(8).
1713 #
1714 get_default_if()
1715 {
1716         local routeget oldifs defif line
1717         defif=
1718         oldifs="$IFS"
1719         IFS="
1720 "
1721         for line in `route -n get $1 default 2>/dev/null`; do
1722                 case $line in
1723                 *interface:*)
1724                         defif=${line##*: }
1725                         ;;
1726                 esac
1727         done
1728         IFS=${oldifs}
1729
1730         echo $defif
1731 }
1732
1733 # hexdigit arg
1734 #       Echo decimal number $arg (single digit) in hexadecimal format.
1735 hexdigit()
1736 {
1737         printf '%x\n' "$1"
1738 }
1739
1740 # hexprint arg
1741 #       Echo decimal number $arg (multiple digits) in hexadecimal format.
1742 hexprint()
1743 {
1744         printf '%x\n' "$1"
1745 }
1746
1747 is_wired_interface()
1748 {
1749         local media
1750
1751         case `${IFCONFIG_CMD} $1 2>/dev/null` in
1752         *media:?Ethernet*) media=Ethernet ;;
1753         esac
1754
1755         test "$media" = "Ethernet"
1756 }
1757
1758 # network6_getladdr if [flag]
1759 #       Echo link-local address from $if if any.
1760 #       If flag is defined, tentative ones will be excluded.
1761 network6_getladdr()
1762 {
1763         local _if _flag proto addr rest
1764         _if=$1
1765         _flag=$2
1766
1767         ${IFCONFIG_CMD} $_if 2>/dev/null | while read proto addr rest; do
1768                 case "${proto}/${addr}/${_flag}/${rest}" in
1769                 inet6/fe80::*//*)
1770                         echo ${addr}
1771                 ;;
1772                 inet6/fe80:://*tentative*)      # w/o flag
1773                         sleep `${SYSCTL_N} net.inet6.ip6.dad_count`
1774                         network6_getladdr $_if $_flags
1775                 ;;
1776                 inet6/fe80::/*/*tentative*)     # w/ flag
1777                         echo ${addr}
1778                 ;;
1779                 *)
1780                         continue
1781                 ;;
1782                 esac
1783
1784                 return
1785         done
1786 }