Browse Source

Improve comments

- Add comments for functions
- Start comments with capital letters
- End comments with a full stop
- Allow comments to extend up to column 80
OK krw@
OPENBSD_5_8
rpe 8 years ago
parent
commit
6cc979ddd8
2 changed files with 74 additions and 59 deletions
  1. +24
    -21
      src/etc/netstart
  2. +50
    -38
      src/etc/rc

+ 24
- 21
src/etc/netstart View File

@ -1,9 +1,9 @@
#!/bin/sh -
#
# $OpenBSD: netstart,v 1.145 2015/06/06 13:13:07 florian Exp $
# $OpenBSD: netstart,v 1.146 2015/07/18 00:03:34 rpe Exp $
# Strip comments (and leading/trailing whitespace if IFS is set)
# from a file and spew to stdout
# Strip comments (and leading/trailing whitespace if IFS is set) from a file
# and spew to stdout.
stripcom() {
local _l
[[ -f $1 ]] || return
@ -12,7 +12,7 @@ stripcom() {
done<$1
}
# Start the $1 interface
# Start the $1 interface.
ifstart() {
if=$1
# Interface names must be alphanumeric only. We check to avoid
@ -24,7 +24,7 @@ ifstart() {
echo "netstart: $file: No such file or directory"
return
fi
# Not using stat(1), we can't rely on having /usr yet
# Not using stat(1), we can't rely on having /usr yet.
set -A stat -- `ls -nL $file`
if [ "${stat[0]#???????} ${stat[2]} ${stat[3]}" != "--- 0 0" ]; then
echo "WARNING: $file is insecure, fixing permissions"
@ -34,7 +34,7 @@ ifstart() {
# Check for ifconfig'able interface.
(ifconfig $if || ifconfig $if create) >/dev/null 2>&1 || return
# Now parse the hostname.* file
# Now parse the hostname.* file.
while :; do
if [ "$cmd2" ]; then
# We are carrying over from the 'read dt dtaddr'
@ -42,7 +42,7 @@ ifstart() {
set -- $cmd2
af="$1" name="$2" mask="$3" bcaddr="$4" ext1="$5" cmd2=
# Make sure and get any remaining args in ext2,
# like the read below
# like the read below.
i=1
while [ $i -lt 6 -a -n "$1" ]; do shift; let i=i+1; done
ext2="$@"
@ -50,13 +50,13 @@ ifstart() {
# Read the next line or exit the while loop.
read af name mask bcaddr ext1 ext2 || break
fi
# $af can be "dhcp", "up", "rtsol", an address family,
# commands, or a comment.
# $af can be "dhcp", "up", "rtsol", an address family, commands,
# or a comment.
case "$af" in
"#"*|"") # skip comments and empty lines
"#"*|"") # Skip comments and empty lines.
continue
;;
"!"*) # parse commands
"!"*) # Parse commands.
cmd="${af#*!} ${name} ${mask} ${bcaddr} ${ext1} ${ext2}"
;;
"dhcp")
@ -74,7 +74,7 @@ ifstart() {
*)
read dt dtaddr
if [ "$name" = "alias" ]; then
# perform a 'shift' of sorts
# Perform a 'shift' of sorts.
alias=$name
name=$mask
mask=$bcaddr
@ -124,23 +124,24 @@ ifstart() {
}
# Start multiple:
# start "$1" interfaces in order or all interfaces if empty
# don't start "$2" interfaces
# Usage: ifmstart "if1 if2" "if3 if4"
# Start "$1" interfaces in order or all interfaces if empty.
# Don't start "$2" interfaces.
ifmstart() {
for sif in ${1:-ALL}; do
for hn in /etc/hostname.*; do
# Strip off /etc/hostname. prefix
# Strip off /etc/hostname. prefix.
if=${hn#/etc/hostname.}
test "$if" = "*" && continue
# Skip unwanted ifs
# Skip unwanted ifs.
s=""
for xf in $2; do
test "$xf" = "${if%%[0-9]*}" && s="1" && break
done
test "$s" = "1" && continue
# Start wanted ifs
# Start wanted ifs.
test "$sif" = "ALL" -o \
"$sif" = "${if%%[0-9]*}" \
&& ifstart $if
@ -148,7 +149,7 @@ ifmstart() {
done
}
# re-read rc.subr if we are not inside /etc/rc
# Re-read rc.subr if we are not inside /etc/rc.
[ -n ${INRC} ] && FUNCS_ONLY=1 . /etc/rc.d/rc.subr
_rc_parse_conf
@ -167,7 +168,7 @@ fi
# Otherwise, process with the complete network initialization.
# /etc/myname contains my symbolic name
# /etc/myname contains my symbolic name.
if [ -f /etc/myname ]; then
hostname=`stripcom /etc/myname`
hostname $hostname
@ -212,6 +213,7 @@ if ifconfig lo0 inet6 >/dev/null 2>&1; then
route -qn add -inet6 ff02:: -prefixlen 16 ::1 -reject > /dev/null
# Completely disallow packets to IPv4 compatible prefix.
#
# This may conflict with RFC1933 under following circumstances:
# (1) An IPv6-only KAME node tries to originate packets to IPv4
# compatible destination. The KAME node has no IPv4 compatible
@ -222,6 +224,7 @@ if ifconfig lo0 inet6 >/dev/null 2>&1; then
# (2) An IPv6-only node originates a packet to an IPv4 compatible
# destination. A KAME node is acting as an IPv6 router, and
# asked to forward it.
#
# Due to rare use of IPv4 compatible addresses, and security issues
# with it, we disable it by default.
route -qn add -inet6 ::0.0.0.0 -prefixlen 96 ::1 -reject > /dev/null
@ -303,11 +306,11 @@ esac
# either of them.
ifmstart "pppoe tun gif gre bridge"
# reject 127/8 other than 127.0.0.1
# Reject 127/8 other than 127.0.0.1.
route -qn add -net 127 127.0.0.1 -reject > /dev/null
if [ "$ip6kernel" = "YES" ]; then
# this is to make sure DAD is completed before going further.
# This is to make sure DAD is completed before going further.
count=0
while [ $((count++)) -lt 10 -a "x"`sysctl -n net.inet6.ip6.dad_pending` != "x0" ]; do
sleep 1


+ 50
- 38
src/etc/rc View File

@ -1,14 +1,14 @@
# $OpenBSD: rc,v 1.449 2015/05/02 09:35:44 ajacoutot Exp $
# $OpenBSD: rc,v 1.450 2015/07/18 00:03:34 rpe Exp $
# System startup script run by init on autoboot
# or after single-user.
# Output and error are redirected to console by init,
# and the console is the controlling terminal.
# System startup script run by init on autoboot or after single-user.
# Output and error are redirected to console by init, and the console is the
# controlling terminal.
# Subroutines (have to come first).
# Strip comments (and leading/trailing whitespace if IFS is set)
# from a file and spew to stdout
# Strip comments (and leading/trailing whitespace if IFS is set) from a file
# and spew to stdout.
stripcom() {
local _file="$1"
local _line
@ -22,7 +22,7 @@ stripcom() {
} < $_file
}
# Update resource limits when sysctl changes
# Update resource limits when sysctl changes.
# Usage: update_limit -X loginconf_name
update_limit() {
local _fl="$1" # ulimit flag
@ -51,6 +51,7 @@ update_limit() {
done
}
# Apply sysctl(8) settings.
sysctl_conf() {
test -s /etc/sysctl.conf || return
@ -71,6 +72,7 @@ sysctl_conf() {
done
}
# Apply mixerctl(1) settings.
mixerctl_conf()
{
test -s /etc/mixerctl.conf || return
@ -83,6 +85,7 @@ mixerctl_conf()
done
}
# Apply wscons system driver settings using wsconsctl(8).
wsconsctl_conf()
{
local save_IFS="$IFS"
@ -111,6 +114,9 @@ random_seed()
chmod 600 /etc/random.seed
}
# Populate net.inet.(tcp|udp).baddynamic with the contents of /etc/services so
# as to avoid randomly allocating source ports that correspond to well-known
# services.
fill_baddynamic()
{
local _service=$1
@ -131,6 +137,8 @@ fill_baddynamic()
}
}
# Start daemon using the rc.d daemon control scripts.
# Usage: start_daemon daemon1 daemon2 daemon3
start_daemon()
{
local _n
@ -142,6 +150,7 @@ start_daemon()
done
}
# Generate keys for isakmpd, iked and sshd if the don't exist yet.
make_keys()
{
if [ ! -f /etc/isakmpd/private/local.key ]; then
@ -168,8 +177,8 @@ make_keys()
ssh-keygen -A
}
# create Unix sockets directories for X if needed and make sure they have
# correct permissions
# Create Unix sockets directories for X if needed and make sure they have
# correct permissions.
setup_X_sockets()
{
if [ -d /usr/X11R6/lib ]; then
@ -192,6 +201,7 @@ setup_X_sockets()
fi
}
# Check filesystems, optionally by using a flag for fsck(8) passed as $1.
do_fsck()
{
local _flags=$1
@ -218,7 +228,7 @@ do_fsck()
exit 1
;;
130)
# interrupt before catcher installed
# Interrupt before catcher installed.
exit 1
;;
*)
@ -228,29 +238,29 @@ do_fsck()
esac
}
# End subroutines
# End subroutines.
stty status '^T'
# Set shell to ignore SIGINT (2), but not children;
# shell catches SIGQUIT (3) and returns to single user after fsck.
# Set shell to ignore SIGINT (2), but not children; shell catches SIGQUIT (3)
# and returns to single user after fsck.
trap : 2
trap : 3 # shouldn't be needed
trap : 3 # Shouldn't be needed.
HOME=/; export HOME
INRC=1; export INRC
PATH=/sbin:/bin:/usr/sbin:/usr/bin
export PATH
# must set the domainname before rc.conf, so YP startup choices can be made
# Must set the domainname before rc.conf, so YP startup choices can be made.
if [ -f /etc/defaultdomain ]; then
domainname `stripcom /etc/defaultdomain`
fi
# need to get local functions from rc.subr
# Need to get local functions from rc.subr.
FUNCS_ONLY=1 . /etc/rc.d/rc.subr
# load rc.conf into scope
# Load rc.conf into scope.
_rc_parse_conf
if [ X"$1" = X"shutdown" ]; then
@ -279,7 +289,7 @@ if [ X"$1" = X"shutdown" ]; then
echo single user: not running shutdown scripts
fi
# bring carp interfaces down gracefully
# Bring carp interfaces down gracefully.
ifconfig | while read a b; do
case $a in
carp+([0-9]):) ifconfig ${a%:} down ;;
@ -302,10 +312,10 @@ trap "echo 'Boot interrupted.'; exit 1" 3
umount -a >/dev/null 2>&1
mount -a -t nonfs,vnd
mount -uw / # root on nfs requires this, others aren't hurt
mount -uw / # root on nfs requires this, others aren't hurt.
rm -f /fastboot # XXX (root now writeable)
# set flags on ttys. (do early, in case they use tty for SLIP in netstart)
# Set flags on ttys. (Do early, in case they use tty for SLIP in netstart.)
echo 'setting tty flags'
ttyflags -a
@ -335,7 +345,7 @@ if [ X"${pf}" != X"NO" ]; then
RULES="$RULES\npass out proto carp !received-on any keep state (no-sync)"
case `sysctl vfs.mounts.nfs 2>/dev/null` in
*[1-9]*)
# don't kill NFS
# Don't kill NFS.
RULES="set reassemble yes no-df\n$RULES"
RULES="$RULES\npass in proto { tcp, udp } from any port { sunrpc, nfsd } to any"
RULES="$RULES\npass out proto { tcp, udp } from any to any port { sunrpc, nfsd } !received-on any"
@ -345,13 +355,13 @@ if [ X"${pf}" != X"NO" ]; then
pfctl -e
fi
# Fill net.inet.(tcp|udp).baddynamic lists from /etc/services
# Fill net.inet.(tcp|udp).baddynamic lists from /etc/services.
fill_baddynamic udp
fill_baddynamic tcp
sysctl_conf
# set hostname, turn on network
# Set hostname, turn on network.
echo 'starting network'
ifconfig -g carp carpdemote 128
if [ -f /etc/resolv.conf.save ]; then
@ -359,13 +369,14 @@ if [ -f /etc/resolv.conf.save ]; then
touch /etc/resolv.conf
fi
sh /etc/netstart
dmesg > /dev/random # any write triggers a rekey
dmesg > /dev/random # Any write triggers a rekey.
# Load pf rules and bring up pfsync interface.
if [ X"${pf}" != X"NO" ]; then
if [ -f /etc/pf.conf ]; then
pfctl -f /etc/pf.conf
fi
# bring up pfsync after the working ruleset has been loaded
# Bring up pfsync after the working ruleset has been loaded.
if [ -f /etc/hostname.pfsync0 ]; then
sh /etc/netstart pfsync0
fi
@ -376,12 +387,12 @@ mount -s /var >/dev/null 2>&1
random_seed
# clean up left-over files
# Clean up left-over files.
rm -f /etc/nologin /var/spool/lock/LCK.* /var/spool/uucp/STST/*
(cd /var/run && { rm -rf -- *; install -c -m 664 -g utmp /dev/null utmp; })
(cd /var/authpf && rm -rf -- *)
# save a copy of the boot messages
# Save a copy of the boot messages.
dmesg >/var/run/dmesg.boot
make_keys
@ -391,6 +402,7 @@ start_daemon syslogd ldattach pflogd nsd unbound ntpd
start_daemon iscsid isakmpd iked sasyncd ldapd npppd
echo '.'
# Load IPsec rules.
if [ X"${ipsec}" != X"NO" ]; then
if [ -f /etc/ipsec.conf ]; then
ipsecctl -f /etc/ipsec.conf
@ -408,12 +420,12 @@ echo '.'
mount -a
swapctl -A -t noblk
# check and mount networked filesystems
# Check and mount networked filesystems.
do_fsck -N
mount -a -N
# /var/crash should be a directory or a symbolic link
# to the crash directory if core dumps are to be saved.
# /var/crash should be a directory or a symbolic link to the crash directory
# if core dumps are to be saved.
if [ -d /var/crash ]; then
savecore ${savecore_flags} /var/crash
fi
@ -430,7 +442,7 @@ dev_mkdb
chmod 666 /dev/tty[pqrstuvwxyzPQRST]*
chown root:wheel /dev/tty[pqrstuvwxyzPQRST]*
# check the password temp/lock file
# Check the password temp/lock file.
if [ -f /etc/ptmp ]; then
logger -s -p auth.err \
'password file may be incorrect -- /etc/ptmp exists'
@ -438,8 +450,8 @@ fi
echo clearing /tmp
# prune quickly with one rm, then use find to clean up /tmp/[lqv]*
# (not needed with mfs /tmp, but doesn't hurt there...)
# Prune quickly with one rm, then use find to clean up /tmp/[lqv]*
# (not needed with mfs /tmp, but doesn't hurt there...).
(cd /tmp && rm -rf [a-km-pr-uw-zA-Z]*)
(cd /tmp &&
find . -maxdepth 1 ! -name . ! -name lost+found ! -name quota.user \
@ -448,12 +460,12 @@ echo clearing /tmp
setup_X_sockets
[ -f /etc/rc.securelevel ] && sh /etc/rc.securelevel
# rc.securelevel did not specifically set -1 or 2, so select the default: 1
# rc.securelevel did not specifically set -1 or 2, so select the default: 1.
if [ `sysctl -n kern.securelevel` -eq 0 ]; then
sysctl kern.securelevel=1
fi
# patch /etc/motd
# Patch /etc/motd.
if [ ! -f /etc/motd ]; then
install -c -o root -g wheel -m 664 /dev/null /etc/motd
fi
@ -501,7 +513,7 @@ start_daemon ftpproxy tftpd tftpproxy identd inetd rarpd bootparamd
start_daemon rbootd mopd spamd spamlogd sndiod
echo '.'
# If rc.firsttime exists, run it just once, and make sure it is deleted
# If rc.firsttime exists, run it just once, and make sure it is deleted.
if [ -f /etc/rc.firsttime ]; then
mv /etc/rc.firsttime /etc/rc.firsttime.run
. /etc/rc.firsttime.run 2>&1 | tee /dev/tty |
@ -509,7 +521,7 @@ if [ -f /etc/rc.firsttime ]; then
fi
rm -f /etc/rc.firsttime.run
# Run rc.d(8) scripts from packages
# Run rc.d(8) scripts from packages.
if [ -n "${pkg_scripts}" ]; then
echo -n 'starting package daemons:'
for _r in $pkg_scripts; do


Loading…
Cancel
Save