summaryrefslogtreecommitdiffstats
path: root/bin/tests/system/ifconfig.sh.in
blob: ed84fd19d78ab4b7cdca75935e21dfed9bf6e56f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
#!/bin/sh
#
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
#
# SPDX-License-Identifier: MPL-2.0
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, you can obtain one at https://mozilla.org/MPL/2.0/.
#
# See the COPYRIGHT file distributed with this work for additional
# information regarding copyright ownership.

#
# Set up interface aliases for bind9 system tests.
#
# IPv4: 10.53.0.{1..11}				RFC 1918
#       10.53.1.{1..2}
#       10.53.2.{1..2}
# IPv6: fd92:7065:b8e:ffff::{1..11}		ULA
#       fd92:7065:b8e:99ff::{1..2}
#       fd92:7065:b8e:ff::{1..2}
#
# We also set the MTU on the 1500 bytes to match the default MTU on physical
# interfaces, so we can properly test the cases with packets bigger than
# interface MTU.
#
# See also org.isc.bind.system (a version of this script for use on macOS)
# and testsock.pl (which checks the interfaces are configured)
#

top_srcdir=@abs_top_srcdir@

sys=$(@SHELL@ "$top_srcdir/config.guess")

use_ip=
case "$sys" in
        *-*-linux*)
                if type ip > /dev/null; then
                        use_ip=yes
                elif type ifconfig > /dev/null; then
                        :
                else
                        echo "$0: can't find ip or ifconfig" >&2
                        exit 1
                fi
                ;;
esac

up() {
	case "$sys" in
	    *-pc-solaris2.5.1)
		[ "$a" ] && ifconfig lo0:$int $a netmask 0xffffffff up
		;;
	    *-sun-solaris2.[6-7])
		[ "$a" ] && ifconfig lo0:$int $a netmask 0xffffffff up
		;;
	    *-*-solaris2.[8-9]|*-*-solaris2.10)
		[ "$a" ] && {
			/sbin/ifconfig lo0:$int plumb
			/sbin/ifconfig lo0:$int $a up
			/sbin/ifconfig lo0:$int mtu 1500
		}
		[ "$aaaa" ] && {
			/sbin/ifconfig lo0:$int inet6 plumb
			/sbin/ifconfig lo0:$int inet6 $aaaa up
		}
		;;
	    *-*-solaris2.1[1-9])
		[ "$a" ] && {
			/sbin/ipadm create-addr -t -T static \
				    -a $a lo0/bind9v4$int ||
			echo failed lo0/bind9v4$int
		}
		[ "$aaaa" ] && {
			/sbin/ipadm create-addr -t -T static \
				    -a $aaaa lo0/bind9v6$int ||
			echo failed lo0/bind9v6$int
		}
	       ;;
	    *-*-linux*)
		if [ "$use_ip" ]; then
			ip address add $a/24 dev lo:$int
			ip link set dev lo:$int mtu 1500
			[ "$aaaa" ] && ip address add $aaaa/64 dev lo
		else
			ifconfig lo:$int $a up netmask 255.255.255.0 mtu 1500
			[ "$aaaa" ] && ifconfig lo inet6 add $aaaa/64
		fi
		;;
	    *-unknown-freebsd*)
		[ "$a" ] && ifconfig lo0 $a alias netmask 0xffffffff mtu 1500
		[ "$aaaa" ] && ifconfig lo0 inet6 $aaaa alias
		;;
	    *-unknown-dragonfly*|*-unknown-netbsd*|*-unknown-openbsd*)
		[ "$a" ] && ifconfig lo0 $a alias netmask 255.255.255.0 mtu 1500
		[ "$aaaa" ] && ifconfig lo0 inet6 $aaaa alias
		;;
	    *-*-bsdi[3-5].*)
		[ "$a" ] && ifconfig lo0 add $a netmask 255.255.255.0
		;;
	    *-dec-osf[4-5].*)
		[ "$a" ] && ifconfig lo0 alias $a
		;;
	    *-sgi-irix6.*)
		[ "$a" ] && ifconfig lo0 alias $a
		;;
	    *-*-sysv5uw7*|*-*-sysv*UnixWare*|*-*-sysv*OpenUNIX*)
		[ "$a" ] && ifconfig lo0 $a alias netmask 0xffffffff
		;;
	    *-ibm-aix4.*|*-ibm-aix5.*)
		[ "$a" ] && ifconfig lo0 alias $a
		[ "$aaaa" ] && ifconfig lo0 inet6 alias -dad $aaaa/64
		;;
	    hpux)
		[ "$a" ] && ifconfig lo0:$int $a netmask 255.255.255.0 up
		[ "$aaaa" ] && ifconfig lo0:$int inet6 $aaaa up
		;;
	    *-sco3.2v*)
		[ "$a" ] && ifconfig lo0 alias $a
		;;
	    *-darwin*)
		[ "$a" ] && ifconfig lo0 alias $a
		[ "$aaaa" ] && ifconfig lo0 inet6 $aaaa alias
		;;
	    *)
		echo "Don't know how to set up interface.  Giving up."
		exit 1
		;;
	esac
}

down() {
	case "$sys" in
	    *-pc-solaris2.5.1)
		[ "$a" ] && ifconfig lo0:$int 0.0.0.0 down
		;;
	    *-sun-solaris2.[6-7])
		[ "$a" ] && ifconfig lo0:$int $a down
		;;
	    *-*-solaris2.[8-9]|*-*-solaris2.10)
		[ "$a" ] && {
			ifconfig lo0:$int $a down
			ifconfig lo0:$int $a unplumb
		}
		[ "$aaaa" ] && {
			ifconfig lo0:$int inet6 down
			ifconfig lo0:$int inet6 unplumb
		}
		;;
	    *-*-solaris2.1[1-9])
		[ "$a" ] && {
			ipadm delete-addr lo0/bind9v4$int ||
			echo failed lo0/bind9v4$int
		}
		[ "$aaaa" ] && {
			ipadm delete-addr lo0/bind9v6$int ||
			echo failed lo0/bind9v6$int
		}
		;;

	    *-*-linux*)
		if [ "$use_ip" ]; then
			[ "$a" ] && ip address del $a/24 dev lo:$int
			[ "$aaaa" ] && ip address del $aaaa/64 dev lo
		else
			[ "$a" ] && ifconfig lo:$int $a down
			[ "$aaaa" ] && ifconfig lo inet6 del $aaaa/64
		fi
		;;
	    *-unknown-freebsd*)
		[ "$a" ] && ifconfig lo0 $a delete
		[ "$aaaa" ] && ifconfig lo0 inet6 $aaaa delete
		;;
	    *-unknown-netbsd*)
		[ "$a" ] && ifconfig lo0 $a delete
		[ "$aaaa" ] && ifconfig lo0 inet6 $aaaa delete
		;;
	    *-unknown-openbsd*)
		[ "$a" ] && ifconfig lo0 $a delete
		[ "$aaaa" ] && ifconfig lo0 inet6 $aaaa delete
		;;
	    *-*-bsdi[3-5].*)
		[ "$a" ] && ifconfig lo0 remove $a
		;;
	    *-dec-osf[4-5].*)
		[ "$a" ] && ifconfig lo0 -alias $a
		;;
	    *-sgi-irix6.*)
		[ "$a" ] && ifconfig lo0 -alias $a
		;;
	    *-*-sysv5uw7*|*-*-sysv*UnixWare*|*-*-sysv*OpenUNIX*)
		[ "$a" ] && ifconfig lo0 -alias $a
		;;
	    *-ibm-aix4.*|*-ibm-aix5.*)
		[ "$a" ] && ifconfig lo0 delete $a
		[ "$aaaa" ] && ifconfig lo0 delete inet6 $aaaa/64
		;;
	    hpux)
		[ "$a" ] && ifconfig lo0:$int 0.0.0.0
		[ "$aaaa" ] && ifconfig lo0:$int inet6 ::
		;;
	    *-sco3.2v*)
		[ "$a" ] && ifconfig lo0 -alias $a
		;;
	    *darwin*)
		[ "$a" ] && ifconfig lo0 -alias $a
		[ "$aaaa" ] && ifconfig lo0 inet6 $aaaa delete
		;;
	    *)
		echo "Don't know how to destroy interface.  Giving up."
		exit 1
		;;
	esac
}

sequence() (
	awk -v s=$1 -v e=$2 '
		BEGIN {
			for (i = s ; i <= e; i++) { print i; }
			exit;
		}'
)

#
# 'max', 'i' and 'ns' are used to compute the interface identifier for
# systems that need it and must be unique for each interface (e.g. lo:$int).
#
#	int=$((i * max + ns))
#
# 'max' is the number of nameservers configured in the inner loop.
# 'i' is the outer loop counter.
# 'ns' in the namserver being configured.
# 'int' interface identifier.
#
# See also `org.isc.bind.system`.
#
# This `max` setting is grepped out for use by testsock.pl
#
max=11
case $1 in
    start|up|stop|down)
	for i in $(sequence 0 2)
	do
		case $i in
		  0) ipv6="ff" ;;
		  1) ipv6="99" ;;
		  2) ipv6="00" ;;
		  *) ipv6="" ;;
		esac
		for ns in $(sequence 1 $max)
		do
			[ $i -gt 0 -a $ns -gt 2 ] && break
			int=$((i * max + ns))
			a=10.53.$i.$ns
			aaaa=fd92:7065:b8e:${ipv6}ff::$ns
			case "$1" in
			    start|up) up;;
			    stop|down) down;;
			esac
		done
	done
	;;
    *)
	echo "Usage: $0 { up | down }"
	exit 1
	;;
esac