dhclient-script revision 147086
1#!/bin/sh
2#
3# $OpenBSD: dhclient-script,v 1.6 2004/05/06 18:22:41 claudio Exp $
4# $FreeBSD: head/sbin/dhclient/dhclient-script 147086 2005-06-07 04:32:29Z brooks $
5#
6# Copyright (c) 2003 Kenneth R Westerback <krw@openbsd.org>
7#
8# Permission to use, copy, modify, and distribute this software for any
9# purpose with or without fee is hereby granted, provided that the above
10# copyright notice and this permission notice appear in all copies.
11#
12# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19#
20#
21
22NETSTAT=/usr/bin/netstat
23GREP=/usr/bin/grep
24AWK=/usr/bin/awk
25HOSTNAME=/bin/hostname
26
27LOCALHOST=127.0.0.1
28
29if [ -x /usr/bin/logger ]; then
30	LOGGER="/usr/bin/logger -s -p user.notice -t dhclient"
31else
32	LOGGER=echo
33fi
34
35#
36# Helper functions that implement common actions.
37#
38
39check_hostname() {
40	current_hostname=`$HOSTNAME`
41	if [ -z "$current_hostname" ]; then
42		$LOGGER "New Hostname ($interface): $new_host_name"
43		$HOSTNAME $new_host_name
44	elif [ "$current_hostname" = "$old_host_name" -a \
45	       "$new_host_name" != "$old_host_name" ]; then
46		$LOGGER "New Hostname ($interface): $new_host_name"
47		$HOSTNAME $new_host_name
48	fi
49}
50
51arp_flush() {
52	arp -an -i $interface | \
53		sed -n -e 's/^.*(\(.*\)) at .*$/arp -d \1/p' | \
54		sh >/dev/null 2>&1
55}
56
57delete_old_address() {
58	ifconfig $interface inet -alias $old_ip_address $medium
59}
60
61add_new_address() {
62	ifconfig $interface \
63		inet $new_ip_address \
64		netmask $new_subnet_mask \
65		broadcast $new_broadcast_address \
66		$medium
67
68	$LOGGER "New IP Address ($interface): $new_ip_address"
69	$LOGGER "New Subnet Mask ($interface): $new_subnet_mask"
70	$LOGGER "New Broadcast Address ($interface): $new_broadcast_address"
71	$LOGGER "New Routers ($interface): $new_routers"
72}
73
74delete_old_alias() {
75	if [ -n "$alias_ip_address" ]; then
76		ifconfig $interface inet -alias $alias_ip_address > /dev/null 2>&1
77		route delete $alias_ip_address $LOCALHOST > /dev/null 2>&1
78	fi
79}
80
81add_new_alias() {
82	if [ -n "$alias_ip_address" ]; then
83		ifconfig $interface inet alias $alias_ip_address netmask \
84		    $alias_subnet_mask
85		route add $alias_ip_address $LOCALHOST
86	fi
87}
88
89delete_old_routes() {
90	route delete "$old_ip_address" $LOCALHOST >/dev/null 2>&1
91	for router in $old_routers; do
92		if [ $if_defaultroute = x -o $if_defaultroute = $interface ]; then
93			route delete default $route >/dev/null 2>&1
94		fi
95	done
96
97	if [ -n "$old_static_routes" ]; then
98		set $old_static_routes
99		while [ $# -gt 1 ]; do
100			route delete "$1" "$2"
101			shift; shift
102		done
103	fi
104
105	arp_flush
106}
107
108add_new_routes() {
109	route add $new_ip_address $LOCALHOST >/dev/null 2>&1
110	for router in $new_routers; do
111		if [ "$new_ip_address" = "$router" ]; then
112			route add default -iface $router >/dev/null 2>&1
113		else
114			route add default $router >/dev/null 2>&1
115		fi
116		# 2nd and subsequent default routers error out, so explicitly
117		# stop processing the list after the first one.
118		break
119	done
120
121	if [ -n "$new_static_routes" ]; then
122		$LOGGER "New Static Routes ($interface): $new_static_routes"
123		set $new_static_routes
124		while [ $# -gt 1 ]; do
125			route add $1 $2
126			shift; shift
127		done
128	fi
129}
130
131add_new_resolv_conf() {
132	# XXX Old code did not create/update resolv.conf unless both
133	# $new_domain_name and $new_domain_name_servers were provided.  PR
134	# #3135 reported some ISP's only provide $new_domain_name_servers and
135	# thus broke the script. This code creates the resolv.conf if either
136	# are provided.
137
138	rm -f /etc/resolv.conf.std
139
140	if [ -n "$new_domain_name" ]; then
141		echo "search $new_domain_name" >>/etc/resolv.conf.std
142	fi
143
144	if [ -n "$new_domain_name_servers" ]; then
145		for nameserver in $new_domain_name_servers; do
146			echo "nameserver $nameserver" >>/etc/resolv.conf.std
147		done
148	fi
149
150	if [ -f /etc/resolv.conf.std ]; then
151		if [ -f /etc/resolv.conf.tail ]; then
152			cat /etc/resolv.conf.tail >>/etc/resolv.conf.std
153		fi
154
155		# In case (e.g. during OpenBSD installs) /etc/resolv.conf
156		# is a symbolic link, take care to preserve the link and write
157		# the new data in the correct location.
158
159		if [ -f /etc/resolv.conf ]; then
160			cat /etc/resolv.conf > /etc/resolv.conf.save
161		fi
162		cat /etc/resolv.conf.std > /etc/resolv.conf
163		rm -f /etc/resolv.conf.std
164
165		# Try to ensure correct ownership and permissions.
166		chown -RL root:wheel /etc/resolv.conf
167		chmod -RL 644 /etc/resolv.conf
168
169		return 0
170	fi
171
172	return 1
173}
174
175#
176# Start of active code.
177#
178
179if [ -x $NETSTAT ]; then
180	if_defaulroute=`$NETSTAT -rn | $GREP "^default" | $AWK '{print $6}'`
181else
182	if_defaultroute="x"
183fi
184
185case $reason in
186MEDIUM)
187	ifconfig $interface $medium
188	ifconfig $interface inet -alias 0.0.0.0 $medium >/dev/null 2>&1
189	sleep 1
190	;;
191
192PREINIT)
193	delete_old_alias
194	ifconfig $interface inet 0.0.0.0 netmask 0.0.0.0 broadcast 255.255.255.255 up
195	;;
196
197ARPCHECK|ARPSEND)
198	;;
199
200BOUND|RENEW|REBIND|REBOOT)
201	check_hostname
202	if [ -n "$old_ip_address" ]; then
203		if [ "$old_ip_address" != "$alias_ip_address" ]; then
204			delete_old_alias
205		fi
206		if [ "$old_ip_address" != "$new_ip_address" ]; then
207			delete_old_address
208			delete_old_routes
209		fi
210	fi
211	if [ "$reason" = BOUND ] || \
212	   [ "$reason" = REBOOT ] || \
213	   [ -z "$old_ip_address" ] || \
214	   [ "$old_ip_address" != "$new_ip_address" ]; then
215		add_new_address
216		add_new_routes
217	fi
218	if [ "$new_ip_address" != "$alias_ip_address" ]; then
219		add_new_alias
220	fi
221	add_new_resolv_conf
222	;;
223
224EXPIRE|FAIL)
225	delete_old_alias
226	if [ -n "$old_ip_address" ]; then
227		delete_old_address
228		delete_old_routes
229	fi
230	# XXX Why add alias we just deleted above?
231	add_new_alias
232	if [ -f /etc/resolv.conf.save ]; then
233		cat /etc/resolv.conf.save > /etc/resolv.conf
234	fi
235	;;
236
237TIMEOUT)
238	delete_old_alias
239	add_new_address
240	sleep 1
241	if [ -n "$new_routers" ]; then
242		$LOGGER "New Routers ($interface): $new_routers"
243		set "$new_routers"
244		if ping -q -c 1 -w 1 "$1"; then
245			if [ "$new_ip_address" != "$alias_ip_address" ]; then
246				add_new_alias
247			fi
248			add_new_routes
249			if add_new_resolv_conf; then
250				exit 0
251			fi
252		fi
253	fi
254	ifconfig $interface inet -alias $new_ip_address $medium
255	delete_old_routes
256	exit 1
257	;;
258esac
259
260exit 0
261