[BACK]Return to netstart CVS log [TXT][DIR] Up to [local] / src / etc

Annotation of src/etc/netstart, Revision 1.165

1.1       deraadt     1: #!/bin/sh -
                      2: #
1.165   ! ajacouto    3: #      $OpenBSD: netstart,v 1.164 2015/12/17 23:19:23 ajacoutot Exp $
1.153     rpe         4:
                      5: # Turn off Strict Bourne shell mode.
                      6: set +o sh
1.101     millert     7:
1.160     rpe         8: # Strip comment lines from a file.
                      9: # Strip leading and trailing whitespace if IFS is set.
                     10: # Usage: stripcom /path/to/file
1.101     millert    11: stripcom() {
1.160     rpe        12:        local _file=$1 _line
                     13:
                     14:        [[ -f $_file ]] || return
                     15:
                     16:        while read _line; do
                     17:                [[ -n ${_line%%#*} ]] && print -r -- "$_line"
                     18:        done <$_file
1.101     millert    19: }
1.45      millert    20:
1.160     rpe        21: # Start a single interface.
                     22: # Usage: ifstart if1
1.83      miod       23: ifstart() {
1.84      deraadt    24:        if=$1
1.83      miod       25:        # Interface names must be alphanumeric only.  We check to avoid
                     26:        # configuring backup or temp files, and to catch the "*" case.
1.137     rpe        27:        [[ $if != +([[:alpha:]])+([[:digit:]]) ]] && return
1.83      miod       28:
1.119     deraadt    29:        file=/etc/hostname.$if
1.121     todd       30:        if ! [ -f $file ]; then
                     31:                echo "netstart: $file: No such file or directory"
                     32:                return
                     33:        fi
1.146     rpe        34:        # Not using stat(1), we can't rely on having /usr yet.
1.123     sthen      35:        set -A stat -- `ls -nL $file`
                     36:        if [ "${stat[0]#???????} ${stat[2]} ${stat[3]}" != "--- 0 0" ]; then
1.119     deraadt    37:                echo "WARNING: $file is insecure, fixing permissions"
1.122     sthen      38:                chmod -LR o-rwx $file
                     39:                chown -LR root.wheel $file
1.119     deraadt    40:        fi
1.136     rpe        41:        # Check for ifconfig'able interface.
                     42:        (ifconfig $if || ifconfig $if create) >/dev/null 2>&1 || return
1.83      miod       43:
1.146     rpe        44:        # Now parse the hostname.* file.
1.83      miod       45:        while :; do
                     46:                if [ "$cmd2" ]; then
                     47:                        # We are carrying over from the 'read dt dtaddr'
                     48:                        # last time.
                     49:                        set -- $cmd2
                     50:                        af="$1" name="$2" mask="$3" bcaddr="$4" ext1="$5" cmd2=
                     51:                        # Make sure and get any remaining args in ext2,
1.146     rpe        52:                        # like the read below.
1.83      miod       53:                        i=1
1.126     simon      54:                        while [ $i -lt 6 -a -n "$1" ]; do shift; let i=i+1; done
1.83      miod       55:                        ext2="$@"
                     56:                else
                     57:                        # Read the next line or exit the while loop.
                     58:                        read af name mask bcaddr ext1 ext2 || break
                     59:                fi
1.146     rpe        60:                # $af can be "dhcp", "up", "rtsol", an address family, commands,
                     61:                # or a comment.
1.83      miod       62:                case "$af" in
1.146     rpe        63:                "#"*|"") # Skip comments and empty lines.
1.83      miod       64:                        continue
                     65:                        ;;
1.146     rpe        66:                "!"*) # Parse commands.
1.83      miod       67:                        cmd="${af#*!} ${name} ${mask} ${bcaddr} ${ext1} ${ext2}"
                     68:                        ;;
                     69:                "dhcp")
                     70:                        [ "$name" = "NONE" ] && name=
                     71:                        [ "$mask" = "NONE" ] && mask=
                     72:                        [ "$bcaddr" = "NONE" ] && bcaddr=
1.143     claudio    73:                        cmd="ifconfig $if $name $mask $bcaddr $ext1 $ext2 down"
1.106     todd       74:                        cmd="$cmd;dhclient $if"
1.110     todd       75:                        dhcpif="$dhcpif $if"
1.83      miod       76:                        ;;
                     77:                "rtsol")
1.84      deraadt    78:                        rtsolif="$rtsolif $if"
1.106     todd       79:                        cmd="ifconfig $if $name $mask $bcaddr $ext1 $ext2 up"
1.83      miod       80:                        ;;
                     81:                *)
                     82:                        read dt dtaddr
                     83:                        if [ "$name"  = "alias" ]; then
1.146     rpe        84:                                # Perform a 'shift' of sorts.
1.83      miod       85:                                alias=$name
                     86:                                name=$mask
                     87:                                mask=$bcaddr
                     88:                                bcaddr=$ext1
                     89:                                ext1=$ext2
                     90:                                ext2=
                     91:                        else
                     92:                                alias=
                     93:                        fi
1.114     todd       94:                        cmd="ifconfig $if $af $alias $name"
1.83      miod       95:                        case "$dt" in
                     96:                        dest)
                     97:                                cmd="$cmd $dtaddr"
                     98:                                ;;
1.130     todd       99:                        *)
1.83      miod      100:                                cmd2="$dt $dtaddr"
                    101:                                ;;
                    102:                        esac
                    103:                        case $af in
                    104:                        inet)
1.128     todd      105:                                if [ ! -n "$name" ]; then
                    106:                                        echo "/etc/hostname.$if: inet alone is invalid"
                    107:                                        return
                    108:                                fi
1.83      miod      109:                                [ "$mask" ] && cmd="$cmd netmask $mask"
                    110:                                if [ "$bcaddr" -a "X$bcaddr" != "XNONE" ]; then
                    111:                                        cmd="$cmd broadcast $bcaddr"
                    112:                                fi
                    113:                                ;;
1.128     todd      114:                        inet6)
                    115:                                if [ ! -n "$name" ]; then
                    116:                                        echo "/etc/hostname.$if: inet6 alone is invalid"
                    117:                                        return
                    118:                                fi
                    119:                                [ "$mask" ] && cmd="$cmd prefixlen $mask"
1.83      miod      120:                                cmd="$cmd $bcaddr"
                    121:                                ;;
                    122:                        *)
                    123:                                cmd="$cmd $mask $bcaddr"
                    124:                                ;;
                    125:                        esac
1.139     mpi       126:                        cmd="$cmd $ext1 $ext2"
1.83      miod      127:                        ;;
                    128:                esac
                    129:                eval "$cmd"
1.147     rpe       130:        done </etc/hostname.$if
1.83      miod      131: }
                    132:
1.161     rpe       133: # Start multiple interfaces by driver name.
                    134: # Usage: ifmstart "em iwm" "trunk vlan"
1.146     rpe       135: #   Start "$1" interfaces in order or all interfaces if empty.
1.161     rpe       136: #   Don't start "$2" interfaces. "$2" is optional.
1.105     todd      137: ifmstart() {
1.161     rpe       138:        local _sifs=$1 _xifs=$2 _hn _if _sif _xif
                    139:
                    140:        for _sif in ${_sifs:-ALL}; do
                    141:                for _hn in /etc/hostname.*; do
                    142:                        _if=${_hn#/etc/hostname.}
                    143:                        [[ $_if == '*' ]] && continue
1.113     david     144:
1.146     rpe       145:                        # Skip unwanted ifs.
1.161     rpe       146:                        for _xif in $_xifs; do
                    147:                                [[ $_xif == ${_if%%[0-9]*} ]] && continue 2
1.105     todd      148:                        done
                    149:
1.146     rpe       150:                        # Start wanted ifs.
1.161     rpe       151:                        [[ $_sif == @(ALL|${_if%%[0-9]*}) ]] && ifstart $_if
1.105     todd      152:                done
                    153:        done
                    154: }
                    155:
1.162     rpe       156: # IPv6 autoconf the interfaces in the $rtsolif list.
                    157: # Usage: ifv6autoconf
                    158: ifv6autoconf() {
                    159:        local _if
                    160:
1.156     sthen     161:        # $ip6kernel will not have been set if we were invoked with a
                    162:        # list of interface names
1.162     rpe       163:        ifconfig lo0 inet6 >/dev/null 2>&1 || return 0
                    164:
                    165:        for _if in $rtsolif; do
                    166:                ifconfig $_if inet6 autoconf
                    167:        done
1.154     sthen     168: }
                    169:
1.151     rpe       170: # Get network related vars from rc.conf using the parsing routine from rc.subr.
                    171: FUNCS_ONLY=1 . /etc/rc.d/rc.subr
1.150     ajacouto  172: _rc_parse_conf
1.1       deraadt   173:
1.83      miod      174: # If we were invoked with a list of interface names, just reconfigure these
                    175: # interfaces (or bridges) and return.
1.159     rpe       176: if (($# > 0)); then
                    177:        for _if; do ifstart $_if; done
1.162     rpe       178:        ifv6autoconf
1.83      miod      179:        return
                    180: fi
                    181:
                    182: # Otherwise, process with the complete network initialization.
                    183:
1.146     rpe       184: # /etc/myname contains my symbolic name.
1.159     rpe       185: [[ -f /etc/myname ]] && hostname "$(stripcom /etc/myname)"
1.4       dm        186:
1.131     sobrado   187: # Set the address for the loopback interface.  Bringing the interface up,
                    188: # automatically invokes the IPv6 address ::1.
1.129     henning   189: ifconfig lo0 inet 127.0.0.1/8
1.24      kstailey  190:
1.54      itojun    191: if ifconfig lo0 inet6 >/dev/null 2>&1; then
                    192:        # IPv6 configurations.
                    193:        ip6kernel=YES
                    194:
1.83      miod      195:        # Disallow link-local unicast dest without outgoing scope identifiers.
1.147     rpe       196:        route -qn add -inet6 fe80:: -prefixlen 10 ::1 -reject >/dev/null
1.66      itojun    197:
1.83      miod      198:        # Disallow site-local unicast dest without outgoing scope identifiers.
1.66      itojun    199:        # If you configure site-locals without scope id (it is permissible
                    200:        # config for routers that are not on scope boundary), you may want
                    201:        # to comment the line out.
1.147     rpe       202:        route -qn add -inet6 fec0:: -prefixlen 10 ::1 -reject >/dev/null
1.66      itojun    203:
1.83      miod      204:        # Disallow "internal" addresses to appear on the wire.
1.147     rpe       205:        route -qn add -inet6 ::ffff:0.0.0.0 -prefixlen 96 ::1 -reject >/dev/null
1.66      itojun    206:
1.83      miod      207:        # Disallow packets to malicious IPv4 compatible prefix.
1.147     rpe       208:        route -qn add -inet6 ::224.0.0.0 -prefixlen 100 ::1 -reject >/dev/null
                    209:        route -qn add -inet6 ::127.0.0.0 -prefixlen 104 ::1 -reject >/dev/null
                    210:        route -qn add -inet6 ::0.0.0.0 -prefixlen 104 ::1 -reject >/dev/null
                    211:        route -qn add -inet6 ::255.0.0.0 -prefixlen 104 ::1 -reject >/dev/null
1.66      itojun    212:
1.83      miod      213:        # Disallow packets to malicious 6to4 prefix.
1.147     rpe       214:        route -qn add -inet6 2002:e000:: -prefixlen 20 ::1 -reject >/dev/null
                    215:        route -qn add -inet6 2002:7f00:: -prefixlen 24 ::1 -reject >/dev/null
                    216:        route -qn add -inet6 2002:0000:: -prefixlen 24 ::1 -reject >/dev/null
                    217:        route -qn add -inet6 2002:ff00:: -prefixlen 24 ::1 -reject >/dev/null
1.115     itojun    218:
                    219:        # Disallow packets without scope identifier.
1.147     rpe       220:        route -qn add -inet6 ff01:: -prefixlen 16 ::1 -reject >/dev/null
                    221:        route -qn add -inet6 ff02:: -prefixlen 16 ::1 -reject >/dev/null
1.66      itojun    222:
                    223:        # Completely disallow packets to IPv4 compatible prefix.
1.146     rpe       224:        #
1.66      itojun    225:        # This may conflict with RFC1933 under following circumstances:
                    226:        # (1) An IPv6-only KAME node tries to originate packets to IPv4
1.77      deraadt   227:        #     compatible destination.  The KAME node has no IPv4 compatible
1.66      itojun    228:        #     support.  Under RFC1933, it should transmit native IPv6
                    229:        #     packets toward IPv4 compatible destination, hoping it would
                    230:        #     reach a router that forwards the packet toward auto-tunnel
                    231:        #     interface.
1.77      deraadt   232:        # (2) An IPv6-only node originates a packet to an IPv4 compatible
1.66      itojun    233:        #     destination.  A KAME node is acting as an IPv6 router, and
                    234:        #     asked to forward it.
1.146     rpe       235:        #
1.77      deraadt   236:        # Due to rare use of IPv4 compatible addresses, and security issues
1.66      itojun    237:        # with it, we disable it by default.
1.147     rpe       238:        route -qn add -inet6 ::0.0.0.0 -prefixlen 96 ::1 -reject >/dev/null
1.56      itojun    239:
                    240:        rtsolif=""
1.54      itojun    241: else
                    242:        ip6kernel=NO
                    243: fi
                    244:
1.105     todd      245:
                    246: # Configure all the non-loopback interfaces which we know about, but
1.127     deraadt   247: # do not start interfaces which must be delayed. Refer to hostname.if(5)
1.157     claudio   248: ifmstart "" "trunk svlan vlan carp gif gre pfsync pppoe tun tap bridge pflow"
1.56      itojun    249:
1.118     brad      250: # The trunk interfaces need to come up first in this list.
1.132     mpf       251: # The (s)vlan interfaces need to come up after trunk.
1.118     brad      252: # Configure all the carp interfaces which we know about before default route.
1.132     mpf       253: ifmstart "trunk svlan vlan carp"
1.118     brad      254:
1.154     sthen     255: # Now that $rtsolif has been populated, IPv6 autoconf those interfaces
1.162     rpe       256: ifv6autoconf
1.102     mcbride   257:
1.138     todd      258: # Look for default routes in /etc/mygate.
1.110     todd      259: [[ -z $dhcpif ]] && stripcom /etc/mygate | while read gw; do
                    260:                [[ $gw == @(*:*) ]] && continue
1.147     rpe       261:                route -qn delete default >/dev/null 2>&1
1.110     todd      262:                route -qn add -host default $gw && break
                    263: done
                    264: [[ -z $rtsolif ]] && stripcom /etc/mygate | while read gw; do
                    265:                [[ $gw == !(*:*) ]] && continue
1.147     rpe       266:                route -qn delete -inet6 default >/dev/null 2>&1
1.110     todd      267:                route -qn add -host -inet6 default $gw && break
                    268: done
1.44      deraadt   269:
1.48      niklas    270: # Multicast routing.
1.147     rpe       271: route -qn delete 224.0.0.0/4 >/dev/null 2>&1
1.164     ajacouto  272: [[ $multicast != YES ]] && \
1.147     rpe       273:        route -qn add -net 224.0.0.0/4 -interface 127.0.0.1 -reject >/dev/null
1.105     todd      274:
1.152     florian   275: # Configure PPPoE, GIF, GRE, TUN and PFLOW interfaces, delayed because they
                    276: # require routes to be set. TUN might depend on PPPoE, and GIF or GRE may
                    277: # depend on either of them. PFLOW might bind to ip addresses configured
                    278: # on either of them.
1.157     claudio   279: ifmstart "pppoe tun tap gif gre bridge pflow"
1.92      deraadt   280:
1.146     rpe       281: # Reject 127/8 other than 127.0.0.1.
1.147     rpe       282: route -qn add -net 127 127.0.0.1 -reject >/dev/null
1.116     david     283:
1.159     rpe       284: if [[ $ip6kernel == YES ]]; then
1.146     rpe       285:        # This is to make sure DAD is completed before going further.
1.124     markus    286:        count=0
1.159     rpe       287:        while ((count++ < 10 && $(sysctl -n net.inet6.ip6.dad_pending) != 0)); do
1.124     markus    288:                sleep 1
                    289:        done
1.116     david     290: fi