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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
|
# $OpenBSD: install.sub,v 1.219 2002/05/08 23:01:46 krw Exp $
# $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $
#
# Copyright (c) 1997-2002 Todd Miller, Theo de Raadt, Ken Westerback
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. All advertising materials mentioning features or use of this software
# must display the following acknowledgement:
# This product includes software developed by Todd Miller and
# Theo de Raadt
# 4. The name of the author may not be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# Copyright (c) 1996 The NetBSD Foundation, Inc.
# All rights reserved.
#
# This code is derived from software contributed to The NetBSD Foundation
# by Jason R. Thorpe.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. All advertising materials mentioning features or use of this software
# must display the following acknowledgement:
# This product includes software developed by the NetBSD
# Foundation, Inc. and its contributors.
# 4. Neither the name of The NetBSD Foundation nor the names of its
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
# OpenBSD install/upgrade script common subroutines and initialization code
# Include machine-dependent functions and definitions.
#
# The following functions must be provided:
# md_congrats() - display friendly message
# md_get_cddevs() - return available CD-ROM devices
# md_get_diskdevs() - return available disk devices
# md_installboot() - install boot-blocks on disk
# md_native_fsopts() - native filesystem options for disk installs
# md_native_fstype() - native filesystem type for disk installs
# md_not_going_to_install() - display friendly message
# md_prep_disklabel() - label the root disk
# md_set_term() - set up terminal
# md_welcome_banner() - display friendly message
#
# The following variables can be provided if required:
# MDTERM - 'vt220' assumed if not provided
. install.md
set_term() {
[ "$TERM" ] && return
ask "Specify terminal type:" ${MDTERM:-vt220}
TERM=$resp
export TERM
md_set_term
}
# Ask for a password, saving the input in $resp.
# Display $1 as the prompt.
# *Don't* allow the '!' options that ask does.
# *Don't* echo input.
askpass() {
set -o noglob
stty -echo
read resp?"$1 "
stty echo
set +o noglob
echo
}
# Ask for user input.
#
# $1 = the question to ask the user
# $2 = the default answer
#
# Save the user input (or the default) in $resp.
#
# Allow the user to escape to shells ('!') or execute commands
# ('!foo') before entering the input.
ask() {
echo -n "$1 "
[ $# -lt 2 ] || echo -n "[$2] "
set -o noglob
while : ; do
read resp
case $resp in
!) echo "Type 'exit' to return to install."
sh
;;
!*) eval ${resp#?}
;;
*) : ${resp:=$2}
break
;;
esac
done
set +o noglob
}
# test the first argument against the remaining ones, return success on a match
isin() {
local _a=$1 _b
shift
for _b; do
[ "$_a" = "$_b" ] && return 0
done
return 1
}
# add first argument to list formed by the remaining arguments
# adds to the tail if the element does not already exist
addel() {
local _a=$1 _b _seen=false
shift
for _b; do
echo "$_b"
[ "$_a" = "$_b" ] && _seen=true
done
$_seen || echo "$_a"
}
# remove all occurrences of first argument from list formed by
# the remaining arguments
rmel() {
local _a=$1 _b
shift
for _b; do
[ "$_a" != "$_b" ] && echo "$_b"
done
}
# read lines on stdin, return Nth element of each line, like cut(1)
cutword () {
local _a _n _oifs=$IFS
# optional field separator
case $1 in
-t?*) IFS=${1#-t}; shift;;
esac
_n=$1
while read _a; do
set -- $_a
[ "$1" ] || break
eval echo \$$_n
done
IFS=$_oifs
}
# read a line of data, return last element. Equiv. of awk '{print $NF}'.
cutlast () {
read _a; set -- $_a
[ $# -gt 0 ] || return
eval echo \$\{$#\}
}
# return available network devices
get_ifdevs() {
/sbin/ifconfig -a | egrep -v '^([[:space:]]|(lo|enc|gre|ppp|sl|tun|bridge)[[:digit:]])' | cutword -t: 1
}
bsort() {
local _l _a=$1 _b
case $# in
0) return;;
1) echo $1; return;;
esac
shift
for _b; do
if [[ "$_a" != "$_b" ]] ; then
if [[ "$_a" > "$_b" ]] ; then
_l="$_a $_l"; _a=$_b
else
_l="$_b $_l"
fi
fi
done
echo -n $_a
# Prevent a trailing blank on the output, and thus a bad value
# for cutlast or cutword, by outputting blanks only when $_l
# has values to sort.
if [[ -n "$_l" ]] ; then
echo -n " "
bsort $_l
fi
}
# return true when the list $1 contains a set also in one of $2 ... $n
list_has_sets() {
local _list=$1 _f
shift
for _f; do
if isin ${_f}${VERSION}.tar.gz $_list; then
return 0
fi
# Try for stupid msdos convention
if isin ${_f}${VERSION}.tgz $_list; then
return 0
fi
# Special check for kernel
if [ "$_f" = "kernel" ] && isin bsd $_list; then
return 0
fi
done
return 1
}
# log in via ftp to host $1 as user $2 with password $3
# and return a list of all files in the directory $4 on stdout
ftp_list_files() {
ftp ${_ftp_active} -V -n "$1" << __EOT
user "$2" "$3"
cd "$4"
ls
quit
__EOT
}
# $1 is relative mountpoint
get_localdir() {
local _mp=$1 _dir=
while : ; do
ask "Enter the pathname where the sets are stored:" "$_dir"
_dir=$resp
# Allow break-out with empty response
if [ -z "$_dir" ]; then
ask "Are you sure you don't want to set the pathname?" n
case $resp in
y*|Y*) break
;;
*) continue
;;
esac
fi
if list_has_sets "`ls -l ${_mp}/${_dir}`" $THESETS
then
local_sets_dir=$_mp/$_dir
break
fi
cat << __EOT
The directory "${_mp}/${_dir}" does not exist, or does not hold any
OpenBSD ${VERSION_MAJOR}.${VERSION_MINOR} ${MODE} sets.
__EOT
ask "Re-enter pathname?" y
case $resp in
y*|Y*) ;;
*) local_sets_dir=
break
;;
esac
done
}
makedev() {
local _d=$1
if [ ! -c /dev/r${_d}c ]; then
if [ -r /dev/MAKEDEV ]; then
(cd /dev; sh MAKEDEV $_d)
else
echo "Device nodes for $_d are missing, and MAKEDEV"
echo "does not exist to create them with. Sorry."
false
fi
fi
}
getanotherdisk() {
cat << __EOT
Now you can select another disk to initialize. (Do not re-select a disk
you have already entered information for). Available disks are:
$_DKDEVS
__EOT
ask "Which one?" done
if [ "$resp" = "done" ]; then
DISK=done
elif isin $resp $_DKDEVS ; then
DISK=$resp
makedev $resp || DISK=
else
echo "\nThe disk $resp does not exist."
DISK=
fi
}
getrootdisk() {
local _defdsk
_defdsk=`echo $_DKDEVS | cutlast`
if [ "$_defdsk" != "$_DKDEVS" ]; then
_defdsk=
fi
cat << __EOT
The installation program needs to know which disk to consider the root disk.
Note the unit number may be different than the unit number you used in the
boot program (especially on a PC with multiple disk controllers).
Available disks are:
$_DKDEVS
__EOT
ask "Which disk is the root disk?" "$_defdsk"
if isin $resp $_DKDEVS ; then
ROOTDISK=$resp
makedev $resp || ROOTDISK=
else
echo "\nThe disk '$resp' does not exist."
ROOTDISK=
fi
}
# Create an entry in the hosts file. If an entry with the
# same symbolic name already exists, delete it.
# $1 - IP address
# $2 - symbolic name
addhostent() {
sed "/ $2\$/d" /tmp/hosts > /tmp/hosts.new
mv /tmp/hosts.new /tmp/hosts
echo "$1 $2" >> /tmp/hosts
}
# Create a hostname.* file for the interface.
# $1 - interface name
# $2 - interface symbolic name
# $3 - interface IP address
# $4 - interface netmask
# $5 - (optional) interface media directives
addifconfig() {
if [ "$3" = "dhcp" ]; then
echo "dhcp NONE NONE NONE $5" > /tmp/hostname.$1
addhostent 127.0.0.1 $2
else
echo "inet $3 $4 NONE $5" > /tmp/hostname.$1
addhostent $3 $2
fi
}
configure_all_interfaces() {
local _ifsdone _ifs _ouranswer
_IFS=`get_ifdevs`
while : ; do
cat << __EOT
You may configure the following network interfaces (the interfaces
marked with [X] have been successfully configured):
__EOT
_ouranswer=
for _ifs in $_IFS; do
if isin $_ifs $_ifsdone ; then
echo -n " [X] "
else
echo -n " [ ] "
: ${_ouranswer:=$_ifs}
fi
echo $_ifs
done
: ${_ouranswer:=done}
ask "\nConfigure which interface? (or 'done')" "$_ouranswer"
case $resp in
"done") break
;;
*) _ifs=$resp
if isin $_ifs $_IFS ; then
if configure_ifs $_ifs ; then
_ifsdone="$_ifs $_ifsdone"
fi
else
echo "Invalid response: '$resp' is not in list"
fi
;;
esac
done
}
configure_ifs() {
local _up _if_name=$1 _if_ip _if_mask
local _if_symname _if_extra _hostname
local _dhcp_prompt
set -- `ifconfig $_if_name | sed -n '
1s/.*<UP,.*$/UP/p
1s/.*<.*>*$/DOWN/p
/media:/s/^.*$//
/status:/s/^.*$//
/inet/s/--> [0-9.][0-9.]*//
/inet/s/netmask//
/inet/s/broadcast//
/inet/s/inet// p'`
_up=$1
_if_ip=$2
_if_mask=$3
if [ $_up = "UP" ]; then
ifconfig $_if_name delete down
fi
if [ ! -x /sbin/dhclient ]; then
echo "DHCP install not supported\n"
else
_dhcp_prompt=" (or 'dhcp')"
fi
# Get IP address
resp=
while [ -z "$resp" ] ; do
ask "IP address${_dhcp_prompt}?" "$_if_ip"
if [ ! -x /sbin/dhclient -a "$resp" == "dhcp" ]; then
resp=
fi
_if_ip=$resp
done
# Get symbolic name
_hostname=`hostname`
resp=
while [ -z "$resp" ] ; do
ask "Symbolic (host) name?" "$_hostname"
_if_symname=$resp
done
# Get netmask
if [ "$_if_ip" != "dhcp" ]; then
resp=
: ${_if_mask:=255.255.255.0}
while [ -z "$resp" ]; do
ask "Netmask?" "$_if_mask"
_if_mask=$resp
done
fi
if [ "`ifconfig -m ${_if_name} | sed -n '/media/p'`" ]; then
cat << __EOT
Your use of the network interface may require non-default
media directives. The default media is:
__EOT
ifconfig -m ${_if_name} | sed -n '
/supported/D
/media:/p'
echo "This is a list of supported media:"
ifconfig -m ${_if_name} | sed -n '
/media:/D
s/^ //
/media/p'
cat << __EOT
If the default is not satisfactory, and you wish to use another
media, copy that line from above (e.g. "media 100baseTX")
__EOT
ask "Media directives?" "$_if_extra"
if [ "$resp" ]; then
_if_extra=$resp
fi
fi
# Configure the interface. If it
# succeeds, add it to the permanent
# network configuration info.
if [ "$_if_ip" = "dhcp" ]; then
ifconfig ${_if_name} down ${_if_extra}
cat > /etc/dhclient.conf << __EOT
initial-interval 1;
send host-name "$_hostname";
request subnet-mask, broadcast-address, routers,
domain-name, domain-name-servers, host-name;
__EOT
dhclient -1 ${_if_name}
set -- `ifconfig $_if_name | sed -n '
1s/.*<UP,.*$/UP/p
1s/.*<.*>*$/DOWN/p
/media:/s/^.*$//
/status:/s/^.*$//
/inet/s/--> [0-9.][0-9.]*//
/inet/s/netmask//
/inet/s/broadcast//
/inet/s/inet// p'`
if [ $1 = "UP" -a $2 = "0.0.0.0" ]; then
echo "hostname-associated DHCP attempt for $_if_name failed..."
ifconfig $_if_name delete down
cat > /etc/dhclient.conf << __EOT
initial-interval 1;
request subnet-mask, broadcast-address, routers,
domain-name, domain-name-servers, host-name;
__EOT
dhclient -1 ${_if_name}
set -- `ifconfig $_if_name | sed -n '
1s/.*<UP,.*$/UP/p
1s/.*<.*>*$/DOWN/p
/media:/s/^.*$//
/status:/s/^.*$//
/inet/s/--> [0-9.][0-9.]*//
/inet/s/netmask//
/inet/s/broadcast//
/inet/s/inet// p'`
if [ $1 = "UP" -a $2 = "0.0.0.0" ]; then
echo "free-roaming DHCP attempt for $_if_name failed."
ifconfig $_if_name delete down
return 1
else
echo "DHCP attempt for $_if_name successful."
addifconfig ${_if_name} ${_if_symname} ${_if_ip}
return 0
fi
else
echo "DHCP configuration of $_if_name successful."
addifconfig ${_if_name} ${_if_symname} ${_if_ip}
return 0
fi
else
ifconfig ${_if_name} down
if ifconfig ${_if_name} inet \
${_if_ip} \
netmask ${_if_mask} ${_if_extra} up
then
addifconfig ${_if_name} ${_if_symname} ${_if_ip} ${_if_mask} "$_if_extra"
return 0
fi
fi
return 1
}
# Returns true if $1 contains only alphanumerics
isalphanumeric() {
local _n
_n=$1
while [ ${#_n} != 0 ]; do
case $_n in
[A-Za-z0-9]*) ;;
*) return 1;;
esac
_n=${_n#?}
done
return 0
}
# Much of this is gratuitously stolen from /etc/netstart.
enable_network() {
# Check for required network related files
for _netfile in hosts myname; do
if [ ! -f /mnt/etc/${_netfile} ]; then
echo "ERROR: no /mnt/etc/${_netfile}!"
return 1
fi
done
# Copy any required or optional files found
for _netfile in hosts myname dhclient.conf resolv.conf resolv.conf.tail protocols services; do
if [ -f /mnt/etc/${_netfile} ]; then
cp /mnt/etc/${_netfile} /etc/${_netfile}
fi
done
hostname=`cat /etc/myname`
hostname $hostname
_didnet=1
# set the address for the loopback interface
ifconfig lo0 inet localhost
# use loopback, not the wire
route -n add -host $hostname localhost > /dev/null
route -n add -net 127 127.0.0.1 -reject > /dev/null
# configure all of the non-loopback interfaces which we know about.
# refer to hostname.if(5)
for hn in /mnt/etc/hostname.*; do
# Strip off /mnt/etc/hostname. prefix
if=${hn#/mnt/etc/hostname.}
# Interface names must be alphanumeric only. We check to avoid
# configuring backup or temp files, and to catch the "*" case.
if ! isalphanumeric "$if"; then
continue
fi
ifconfig $if > /dev/null 2>&1
if [ $? -ne 0 ]; then
continue
fi
# Now parse the hostname.* file
while :; do
if [ "$cmd2" ]; then
# we are carrying over from the 'read dt dtaddr' last time
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
i=1; while [ i -lt 6 -a -n "$1" ]; do shift; let i=i+1; done
ext2="$@"
else
# 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.
case $af in
"#"*|"!"*|"bridge"|""|"rtsol")
# skip comments, user commands, bridges,
# IPv6 rtsol and empty lines
continue
;;
"dhcp") [ "$name" = "NONE" ] && name=
[ "$mask" = "NONE" ] && mask=
[ "$bcaddr" = "NONE" ] && bcaddr=
ifconfig $if $name $mask $bcaddr $ext1 $ext2 down
cmd="dhclient $if"
;;
"up")
# The only one of these guaranteed to be set is $if
# the remaining ones exist so that media controls work
cmd="ifconfig $if $name $mask $bcaddr $ext1 $ext2 up"
;;
*) read dt dtaddr
if [ "$name" = "alias" ]; then
# perform a 'shift' of sorts
alias=$name
name=$mask
mask=$bcaddr
bcaddr=$ext1
ext1=$ext2
ext2=
else
alias=
fi
cmd="ifconfig $if $af $alias $name "
case $dt in
dest) cmd="$cmd $dtaddr"
;;
[a-z!]*)
cmd2="$dt $dtaddr"
;;
esac
if [ ! -n "$name" ]; then
echo "/mnt/etc/hostname.$if: invalid network configuration file"
return
fi
case $af in
inet) [ "$mask" ] && cmd="$cmd netmask $mask"
if [ "$bcaddr" -a "$bcaddr" != "NONE" ]; then
cmd="$cmd broadcast $bcaddr"
fi
[ "$alias" ] && rtcmd="; route -n add -host $name 127.0.0.1"
;;
inet6)
# Ignore IPv6 setup
continue
;;
*) cmd="$cmd $mask $bcaddr"
esac
cmd="$cmd $ext1 $ext2$rtcmd" rtcmd=
;;
esac
eval "$cmd"
done < /mnt/etc/hostname.$if
done
# /mnt/etc/mygate, if it exists, contains the name of my gateway host
# that name must be in /etc/hosts.
if [ -f /mnt/etc/mygate ]; then
route delete default > /dev/null 2>&1
route -n add -host default `cat /mnt/etc/mygate`
fi
# Get FQDN after any DHCP manipulation of resolv.conf is done
get_fqdn /etc/resolv.conf
# Display results...
echo "Network interface configuration:"
ifconfig -am
# enable the resolver if resolv.conf is available
if [ -f /etc/resolv.conf ]; then
route show
echo "\nResolver enabled."
else
route -n show
echo "\nResolver not enabled."
fi
return 0
}
# Print the selector and get a response
# The list of sets is passed in as $1, sets $resp
get_selection() {
local _next=done _f _sets=$1
for _f in $_sets ; do
if isin $_f $_setsdone ; then
echo -n " [X] "
else
echo -n " [ ] "
if [ "$_next" = "done" ]; then
_next=$_f
fi
fi
echo $_f
done
# Get the name of the file.
ask "File name?" "$_next"
# Ignore a bare '-' or '+'
case $resp in
+|-) resp=
esac
}
# Do globbing on the selection and parse +/-, sets the global
# _get_files and _setsdone appropriately.
glob_selection() {
local _selection=$1 _src=$2 _sets=$3
local _action _nomatch _f
# Change +/- into add/remove
_action=addel
case $_selection in
"") return
;;
+*) _selection=${_selection#?}
;;
-*) _selection=${_selection#?}
_action=rmel
;;
esac
[ "$_selection" = "all" ] && _selection=*
set -o noglob
for _f in $_sets; do
eval "case $_f in
$_selection)
_get_files=\`$_action $_f \$_get_files\`
_setsdone=\`$_action $_f \$_setsdone\`
_nomatch=false
;;
esac"
done
set +o noglob
if $_nomatch; then
cat << __EOT
The file
'${_src}/${_selection}'
does not exist. Check to make sure you entered the name properly.
__EOT
fi
}
display_failure_msg() {
cat << __EOT
The following files failed to extract correctly.
Choose which one(s) to retry or 'done' to exit selector.
You may de-select a file by prepending a '-' to its name.
__EOT
}
display_selection_msg() {
cat << __EOT
The following sets are available. Enter a filename, 'all' to select
all the sets, or 'done'. You may de-select a set by prepending a '-'
to its name.
__EOT
}
display_extract_msg() {
cat << __EOT
You will now be asked which sets to ${MODE}. Some of these sets are required
for your ${MODE} and some are optional. You will want at least the
base and bsd sets. Consult the installation notes if you are not sure
which sets are required!
__EOT
}
# Set global _sets to either
# 1) a list of sets found in both $1 and $THESETS, where
# $2 is the location that generated the list of files in $1.
# or
# 2) a list of .tgz or .tar.gz files found in $2
get_sets_list () {
local _f _file_list=$1 _src=$2
_sets=
for _f in $THESETS ; do
if [ "$_f" = "kernel" ]; then
if isin bsd $_file_list; then
_sets="$_sets bsd"
fi
elif isin ${_f}${VERSION}.tar.gz $_file_list; then
_sets="$_sets ${_f}${VERSION}.tar.gz"
elif isin ${_f}${VERSION}.tgz $_file_list; then
_sets="$_sets ${_f}${VERSION}.tgz"
fi
done
if [ -z "$_sets" ]; then
cat << __EOT
The directory
'${_src}'
contains no OpenBSD ${VERSION_MAJOR}.${VERSION_MINOR} ${MODE} sets.
__EOT
ask "Search for other *.tar.gz and *.tgz files?" y
case $resp in
n*|N*) return ;;
esac
# *.tar.gz and *.tgz are possible sets
for _f in $_file_list ; do
case $_f in
*.tar.gz|*.tgz) _sets="$_sets ${_f}"
esac
done
fi
if [ -z "$_sets" ]; then
ask "There are no *.tar.gz or *.tgz files in ${_src}.\nSee a directory listing?" y
case $resp in
n*|N*) return ;;
esac
echo "\n${_file_list}\n"
return
fi
}
# Set global _get_files to the list of sets requested by the user
# from $1. Add this list to _setsdone after saving current value
# of _setsdone.
get_get_files_list () {
local _src=$1
_get_files=
_osetsdone=$_setsdone
# Set the default list of files
for _f in $_sets ; do
# $_sets contains only .tgz and .tar.gz file names and 'bsd'.
case $_f in
base*|bsd|comp*|etc*|game*|man*|misc*)
if ! isin ${_f} ${_setsdone}; then
_get_files=`addel ${_f} ${_get_files}`
_setsdone=`addel ${_f} ${_setsdone}`
fi
;;
esac
done
# Allow the user to select/de-select additional sets
while : ; do
display_selection_msg
get_selection "$_sets"
if [ "$resp" = "done" ]; then
break
fi
glob_selection "$resp" "$_src" "$_sets"
done
}
# Install the list of files in the global _get_files from the source
# in $1, aka $2. For mounted file system installs $1==file:$2. For URL
# installs $1 == $_url_base and $2 == $1 w/o passwords, etc.
#
# Return 0 if install was attempted, 1 if user aborted before install
# was tried.
install_get_files_list () {
local _f _failed_files _src=$1 _public_src=$2
ask "Ready to ${MODE} sets?" y
case $resp in
y*|Y*) ;;
*) _setsdone=$_osetsdone
return 1
;;
esac
# Install/Upgrade the sets one at a time. Keep track of which
# ones fail.
while [ "$_get_files" ] ; do
_failed_files=
echo
for _f in $_get_files ; do
echo "Getting ${_f} ..."
case $_f in
*.tar.gz|*.tgz)
ftp ${_ftp_active} -o - -V -m "${_src}/${_f}" | tar zxpf - -C /mnt
;;
*)
ftp ${_ftp_active} -o "/mnt/${_f}" -V -m "${_src}/${_f}"
;;
esac
if [ $? -ne 0 ]; then
# Mark xfer as having failed,.
_setsdone=`rmel $_f $_setsdone`
_failed_files="${_failed_files} ${_f}"
fi
done
# Offer the option of re-fetching failed files.
_get_files=
while [ "$_failed_files" ] ; do
display_failure_msg
get_selection "$_failed_files"
if [ "$resp" = "done" ]; then
break
fi
glob_selection "$resp" "$_public_src" "$_failed_files"
done
done
}
# Encode $1 as specified for usercodes and passwords in RFC 1738
# section 3.1, and now supported by our in-tree ftp:
#
# ':' -> '%3a'
# '@' -> '%40'
# '/' -> '%2f'
#
# *NOTE* quotes around $1 are required to preserve trailing or
# embeddded blanks in usercodes and passwords!
encode_for_url() {
echo "$1" | sed -e 's/:/%3a/g' -e 's/@/%40/g' -e 's/\//%2f/g'
}
# Get several parameters from the user, and xfer
# files from the server.
# Note: _ftp_server_ip, _ftp_server_dir, _ftp_server_login,
# _ftp_server_password, and _ftp_active must be global.
install_url() {
local _f _file_list _url_type _url_base _url_login _url_pass _oifs
# Parse arguments, shell style
case $1 in
-ftp) _url_type=ftp ;;
-http) _url_type=http ;;
esac
cat << __EOT
This is an automated ${_url_type}-based installation process. You will be asked
questions and then the files will be retrieved iteratively via ${_url_type}.
__EOT
# Proxy the connections?
[ "$_proxy_host" ] || _proxy_host=none
ask "HTTP/FTP proxy URL? (e.g. 'http://proxy:8080', or 'none')" "$_proxy_host"
if [ "$resp" = "none" ]; then
unset _proxy_host ftp_proxy http_proxy
else
_proxy_host=$resp
export ftp_proxy=${_proxy_host}
export http_proxy=${_proxy_host}
fi
if [ "$_url_type" = "ftp" -a -z "$ftp_proxy" ]; then
# Use active mode ftp? (irrelevant if using a proxy)
case $_ftp_active in
-A) resp=y ;;
*) resp=n ;;
esac
cat << __EOT
By default, ftp will attempt a passive connection and fall back to a normal
(active) connection if that does not work. However, there are some very
old ftp servers that claim to support passive mode, but really do not.
In this case, you should explicitly request an active session.
__EOT
ask "Do you want to use active ftp?" "$resp"
case $resp in
y*|Y*) _ftp_active=-A ;;
*) unset _ftp_active ;;
esac
fi
# Provide a list of possible servers
[ "$_ftp_getlist" ] || _ftp_getlist=y
ask "Do you want a list of potential ${_url_type} servers?" "$_ftp_getlist"
case $resp in
n*|N*) _ftp_getlist=n
;;
*)
_ftp_getlist=y
# ftp.openbsd.org == 129.128.5.191 and will remain at
# that address for the forseeable future.
ftp ${_ftp_active} -V -a -o /tmp/ftplist ftp://129.128.5.191/pub/OpenBSD/${VERSION_MAJOR}.${VERSION_MINOR}/ftplist > /dev/null
grep "^${_url_type}:" /tmp/ftplist | cat -n | less -XE
;;
esac
# Get server IP address or hostname
resp=
while [ -z "$resp" ] ; do
if [ ! -f /tmp/ftplist ]; then
eval ask \"Server IP address, or hostname?\" \"\$_${_url_type}_server_ip\"
continue;
fi
eval ask \"Server IP address, hostname, or list#?\" \"\$_${_url_type}_server_ip\"
case $resp in
"?")
grep "^${_url_type}:" /tmp/ftplist | cat -n | less -XE
resp=
;;
+([0-9]))
maxlines=`grep "^${_url_type}:" /tmp/ftplist | sed -ne '$='`
if [ $maxlines -lt $resp -o $resp -lt 1 ]; then
echo "There is no ${resp}th line in the list."
else
tline=`grep "^${_url_type}:" /tmp/ftplist | sed -ne "${resp}p"`
url=`echo $tline | sed -e "s/^${_url_type}:\/\///" |
cutword -t' ' 1 | cutword -t' ' 1`
host=`echo $url | cutword -t/ 1`
path=`echo $url | sed -e "s/^${host}\///"`
path=${path}/${VERSION_MAJOR}.${VERSION_MINOR}/${ARCH}
eval _${_url_type}_server_ip=$host
eval _${_url_type}_server_dir=$path
echo "Using $tline"
fi
# Always do it again, just to double check
resp=
;;
*)
;;
esac
done
eval _${_url_type}_server_ip=$resp
# Get server directory
if [ "$_url_type" = "ftp" -a -z "$_ftp_server_dir" ] ; then
# Default ftp dir
_ftp_server_dir=pub/OpenBSD/${VERSION_MAJOR}.${VERSION_MINOR}/${ARCH}
fi
resp=
while [ -z "$resp" ] ; do
eval ask \"Server directory?\" \"\$_${_url_type}_server_dir\"
eval _${_url_type}_server_dir=$resp
done
if [ "$_url_type" = "ftp" ]; then
# Need default values even if we proxy ftp...
[ "$_ftp_server_login" ] || _ftp_server_login=anonymous
[ "$_ftp_server_password" ] || _ftp_server_password=root@`hostname`.${FQDN}
# Get login name, setting IFS to nothing so trailing or
# embedded blanks are preserved!
_oifs=$IFS
IFS=
resp=
while [ -z "$resp" ] ; do
ask "Login?" "$_ftp_server_login"
_ftp_server_login=$resp
done
# Get password unless anonymous
if [ "$_ftp_server_login" != "anonymous" ]; then
resp=
while [ -z "$resp" ] ; do
askpass "Password (will not echo):"
_ftp_server_password=$resp
done
else
# only used by ftp_list_files()
_ftp_server_password=root@`hostname`.${FQDN}
fi
IFS=$_oifs
fi
# Build up the base url since it is so nasty...
if [ "$_url_type" = "ftp" -a "$_ftp_server_login" != "anonymous" ]; then
_url_login=`encode_for_url "$_ftp_server_login"`
_url_pass=`encode_for_url "$_ftp_server_password"`
_url_base=ftp://${_url_login}:${_url_pass}@${_ftp_server_ip}/${_ftp_server_dir}
else
eval _url_base=${_url_type}://\$_${_url_type}_server_ip/\$_${_url_type}_server_dir
fi
# Get list of files from the server.
# XXX - check for nil $_file_list and deal
if [ "$_url_type" = "ftp" -a -z "$ftp_proxy" ] ; then
_file_list=`ftp_list_files "$_ftp_server_ip" "$_ftp_server_login" "$_ftp_server_password" "$_ftp_server_dir"`
else
# Assumes index file is "index.txt" for http (or proxy)
# We can't use index.html since the format is server-dependent
_file_list=`ftp -o - -V "${_url_base}/index.txt" | sed 's/
//'`
fi
get_sets_list "$_file_list" "`eval echo \\$_${_url_type}_server_dir`"
[ "$_sets" ] || return
display_extract_msg
get_get_files_list "`eval echo \\$_${_url_type}_server_dir`"
# User may have selected no files
[ "$_get_files" ] || return
cat << __EOT
Fetching files via ${_url_type} may take a long time, especially over a slow
network connection.
__EOT
install_get_files_list "$_url_base" "`eval echo \$_${_url_type}_server_dir`"
if [ $? -eq 0 ] ; then
# Stash the fact that we configured and downloaded via this url method
eval _installed_via_${_url_type}=1
fi
}
# $1 - directory containing installation sets
install_from_mounted_fs() {
local _f _get_files _file_list
if [ ! -d "$1" ]; then
echo "No such directory: '$1'"
return
fi
_file_list=`ls -l ${1}`
get_sets_list "$_file_list" "$1"
[ "$_sets" ] || return
display_extract_msg
get_get_files_list "$1"
# User may have selected no files
[ "$_get_files" ] || return
install_get_files_list "file:$1" "$1"
}
install_cdrom() {
local _drive _part _fstype _directory _n
# Get the cdrom device info
if [ -z "$_CDDEVS" ]; then
echo "No CD-ROM devices were found. Aborting."
return
fi
cat << __EOT
The following CD-ROM devices are installed on your system.
Please make sure the CD is in the CD-ROM drive and select
the device containing the CD with the installation sets:
$_CDDEVS
__EOT
_drive=`echo $_CDDEVS | cutword 1`
ask "Which CD-ROM contains the installation media?" "$_drive"
case $resp in
abort) echo "Aborting."
return
;;
*) if isin $resp $_CDDEVS ; then
_drive=$resp
else
echo "\nThe CD-ROM $resp does not exist.\nAborting."
return
fi
;;
esac
# If it is an ISO9660 CD-ROM, we don't need to ask any other questions
_n=0
until disklabel $_drive >/tmp/label.$_drive 2>&1; do
# Try up to 6 times to access the CD
if egrep -q '(Input/output error)|(sector size 0)' /tmp/label.$_drive; then
_n=$(( $_n + 1 ))
if [ _n -le 5 ]; then
echo "I/O error accessing $_drive; retrying"
sleep 10
else
echo "Cannot access $_drive. Aborting."
return
fi
else
break
fi
done
echo
if grep -q '^ *c: .*ISO9660' /tmp/label.$_drive; then
_fstype=cd9660
_part=c
else
# Get partition from user
resp=
while [ -z "$resp" ] ; do
ask "CD-ROM partition to mount? (normally 'c')" c
case $resp in
[a-p])
_part=$resp
;;
*) echo "Invalid response: $resp"
# force loop to repeat
resp=
;;
esac
done
# Ask for filesystem type
cat << __EOT
There are two CD-ROM filesystem types currently supported by this program:
cd9660 ISO-9660
ffs Berkeley Fast Filesystem
__EOT
resp=
while [ -z "$resp" ] ; do
ask "Which filesystem type?" cd9660
case $resp in
cd9660|ffs)
_fstype=$resp
;;
*) echo "Invalid response: '$resp'"
# force loop to repeat
resp=
;;
esac
done
fi
rm -f /tmp/label.$_drive
# Mount the CD-ROM
if ! mount -t ${_fstype} -o ro /dev/${_drive}${_part} /mnt2 ; then
echo "Cannot mount CD-ROM drive. Aborting."
return
fi
# Get the directory where the file lives
resp=
_directory=${VERSION_MAJOR}.${VERSION_MINOR}/${ARCH}
echo "Enter the directory relative to the mount point that contains"
ask "the file:" "$_directory"
install_from_mounted_fs "/mnt2/${resp}"
umount -f /mnt2 > /dev/null 2>&1
}
mount_a_disk() {
# Mount a disk on /mnt2. The set of disk devices to choose from
# is $_DKDEVS.
# returns 0 on failure.
local _drive _def_partition _partition_range _partition _fstype
local _fsopts _md_fstype _md_fsopts
cat << __EOT
The following disk devices are installed on your system; please select
the disk device containing the partition with the installation sets:
$_DKDEVS
__EOT
ask "Which is the disk with the installation sets?" abort
case $resp in
abort) echo "Aborting."
return 0
;;
*) if isin $resp $_DKDEVS ; then
_drive=$resp
else
echo "\nThe disk $resp does not exist.\nAborting."
return 0
fi
;;
esac
# Get partition
cat << __EOT
The following partitions have been found on $_drive:
__EOT
disklabel $_drive 2>/dev/null | grep '^ .:'
echo
_likely_partition_range=`disklabel $_drive 2>/dev/null | \
sed -n -e '/swap/s/.*//' -e '/unused/s/.*//' \
-e '/^ .:/{s/^ \(.\).*/\1/;H;}' \
-e '${g;s/\n//g;s/^/[/;s/$/]/p;}'`
_partition_range=`disklabel $_drive 2>/dev/null | \
sed -n -e '/^ .:/{s/^ \(.\).*/\1/;H;}' \
-e '${g;s/\n//g;s/^/[/;s/$/]/p;}'`
_def_partition=`echo $_likely_partition_range | \
sed -n 's/^\[\(.\).*\]/\1/p'`
if [ -z "$_def_partition" ]; then
_def_partition=`echo $_partition_range | \
sed -n 's/^\[\(.\).*\]/\1/p'`
if [ -z "$_def_partition" ]; then
echo "There are no usable partitions on that disk"
return 0
fi
fi
resp=
while [ -z "$resp" ]; do
ask "Partition?" "$_def_partition"
case $resp in
$_partition_range)
_partition=$resp
;;
*) echo "Invalid response: $resp"
# force loop to repeat
resp=
;;
esac
done
# Ask for filesystem type
cat << __EOT
The following filesystem types are supported:
default (deduced from the disklabel)
ffs
__EOT
_md_fstype=`md_native_fstype`
_md_fsopts=`md_native_fsopts`
if [ "$_md_fstype" ]; then
echo " $_md_fstype"
else
_md_fstype=_undefined_
fi
resp=
while [ -z "$resp" ]; do
ask "Which filesystem type?" default
case $resp in
default)
_fstype=
_fsopts=ro
;;
ffs) _fstype="-t $resp"
_fsopts=async,ro
;;
$_md_fstype)
_fstype="-t $resp"
_fsopts=$_md_fsopts
;;
*) echo "Invalid response: $resp"
# force loop to repeat
resp=
;;
esac
done
# Mount the disk
if ! mount $_fstype -o $_fsopts /dev/${_drive}${_partition} /mnt2; then
echo "Cannot mount disk. Aborting."
return 0
fi
return 1
}
install_disk() {
if mount_a_disk ; then
return
fi
# Get the directory where the file lives
echo "Enter the directory relative to the mount point that"
ask "contains the file:" .
install_from_mounted_fs "/mnt2/${resp}"
umount -f /mnt2 > /dev/null 2>&1
}
install_nfs() {
# Get the IP address of the server
resp=
while [ -z "$resp" ] ; do
ask "Server IP address or hostname?" "$_nfs_server_ip"
done
_nfs_server_ip=$resp
# Get server path to mount
resp=
while [ -z "$resp" ]; do
ask "Filesystem on server to mount?" "$_nfs_server_path"
done
_nfs_server_path=$resp
# Determine use of TCP
ask "Use TCP transport? (only works with capable NFS server)" n
case $resp in
y*|Y*) _nfs_tcp=-T
;;
*) _nfs_tcp=
;;
esac
# Mount the server
mkdir /mnt2 > /dev/null 2>&1
if ! mount_nfs $_nfs_tcp ${_nfs_server_ip}:${_nfs_server_path} /mnt2 ; then
echo "Cannot mount NFS server. Aborting."
return
fi
# Get the directory where the file lives
resp=
while [ -z "$resp" ]; do
echo "Enter the directory relative to the mount point that"
ask "contains the file:" .
done
install_from_mounted_fs "/mnt2/${resp}"
umount -f /mnt2 > /dev/null 2>&1
}
install_tape() {
local _xcmd
# Get the name of the tape from the user.
cat << __EOT
The installation program needs to know which tape device to use. Make
sure you use a "no rewind on close" device.
__EOT
resp=
while [ -z "$resp" ]; do
ask "Name of tape device?" "${TAPE##*/}"
done
TAPE=/dev/${resp##*/}
if [ ! -c $TAPE ]; then
echo "$TAPE does not exist or is not a character special file."
echo "Aborting."
return
fi
export TAPE
# Rewind the tape device
echo -n "Rewinding tape..."
if ! mt rewind ; then
echo "$TAPE may not be attached to the system or may not be"
echo "a tape device. Aborting."
return
fi
echo "done."
# Get the file number
resp=
while [ -z "$resp" ]; do
ask "File number?"
case $resp in
[1-9]*) _nskip=$(( $resp - 1 ))
;;
*) echo "Invalid file number ${resp}."
# force loop to repeat
resp=
;;
esac
done
# Skip to correct file.
echo -n "Skipping to source file..."
if [ $_nskip -ne 0 ]; then
if ! mt fsf $_nskip ; then
echo "Could not skip $_nskip files. Aborting."
return
fi
fi
echo "done."
cat << __EOT
There are 2 different ways the file can be stored on tape:
1) an image of a gzipped tar file
2) a standard tar image
__EOT
resp=
while [ -z "$resp" ]; do
ask "Which way is it?" 1
case $resp in
1) _xcmd="tar -zxvpf -"
;;
2) _xcmd="tar -xvpf -"
;;
*) echo "Invalid response: $resp."
# force loop to repeat
resp=
;;
esac
( cd /mnt; dd if=$TAPE | $_xcmd )
done
echo "Extraction complete."
}
get_timezone() {
local _zoneroot=/mnt/usr/share/zoneinfo/ _zonepath
# If the timezone directory structure is not
# available, return immediately.
[ ! -d $_zoneroot ] && return
cat << __EOT
Select a time zone for your location. Timezones are represented on the system
by a directory structure rooted in "/usr/share/timezone". Most timezones can
be selected by entering a token like "CET" or "GMT-6". Other zones are
grouped by continent or country, with detailed zone information separated by
a slash ("/"), e.g. "US/Pacific" or "Canada/Mountain".
__EOT
if [ -L /mnt/etc/localtime ]; then
TZ=`ls -l /mnt/etc/localtime 2>/dev/null | cutlast`
TZ=${TZ#${_zoneroot#/mnt}}
fi
[ "$TZ" ] || TZ=GMT
while : ; do
_zonepath=$_zoneroot
ask "What timezone are you in? ('?' for list)" "$TZ"
if [ "$resp" = "?" ]; then
ls -F ${_zonepath}
continue;
fi
_zonepath=${_zonepath}${resp}
while [ -d "$_zonepath" ]; do
echo -n "Select a sub-timezone of "
ask "'${_zonepath#$_zoneroot}' ('?' for list):"
if [ "$resp" = "?" ]; then
ls -F ${_zonepath}
else
_zonepath=${_zonepath}/${resp}
fi
done
if [ -f "$_zonepath" ]; then
TZ=${_zonepath#$_zoneroot}
echo "You have selected timezone '$TZ'".
ln -sf /usr/share/zoneinfo/$TZ /mnt/etc/localtime
return
fi
echo -n "'${_zonepath#$_zoneroot}'"
echo " is not a valid timezone on this system."
done
}
sane_install() {
if [ ! -s /mnt/bsd ]; then
cat << __EOT
Warning, no kernel (/mnt/bsd) installed! You did not unpack a file set
containing a kernel -- this is needed to boot. Please note that the install
kernel is *not* suitable for general use.
__EOT
elif [ ! -f /mnt/bin/cat ]; then
cat << __EOT
You still do not have a /bin/cat in your filesystem (i.e. a sample random file
which you probably want). This seems to indicate that you are still missing
important distribution files.
__EOT
elif [ ! -x /mnt/dev/MAKEDEV ]; then
cat << __EOT
No /dev/MAKEDEV has been installed yet.
__EOT
elif [ ! -d /mnt/etc -o ! -d /mnt/usr/share/zoneinfo -o ! -d /mnt/dev ]; then
cat << __EOT
One or more of /etc, /usr/share/zoneinfo or /dev is missing. Did you
forget to extract a required set?
__EOT
else
return 0
fi
cat << __EOT
You will now be given the chance to install the missing set(s). You can
enter '!' at the prompt to escape to a shell and fix things by hand if you wish.
__EOT
return 1
}
install_sets() {
local _yup=FALSE _have_nfs
# Can we do an NFS install?
[ -f /sbin/mount_nfs ] && _have_nfs=true
# Ask the user which media to load the distribution from.
cat << __EOT
You must now specify where the ${MODE} sets you want to use are. They
must either be on a local device (disk, tape, or CD-ROM), an
accessible NFS filesystem or an accessible ftp or http network
server. You will have the chance to repeat this step or to extract
sets from several places, so you do not have to try to load all the
sets in one try and can recover from some errors.
__EOT
if [ "$local_sets_dir" ]; then
install_from_mounted_fs "$local_sets_dir"
[ "$_setsdone" ] && _yup=TRUE
fi
# Go on prodding for alternate locations
resp=
while [ -z "$resp" ]; do
# If _yup is not FALSE, it means that we extracted sets above.
# If that's the case, bypass the menu the first time.
if [ "$_yup" = "FALSE" ]; then
echo -n "Install from (f)tp, (h)ttp, (t)ape, (C)D-ROM"
[ "$_have_nfs" ] && echo -n ", (N)FS"
ask " or local (d)isk?"
case $resp in
d*|D*) install_disk
resp=d
;;
f*|F*) [ "$_didnet" ] || donetconfig
install_url -ftp
resp=f
;;
h*|H*) [ "$_didnet" ] || donetconfig
install_url -http
resp=h
;;
t*|T*) install_tape
resp=t
;;
c*|C*) install_cdrom
resp=c
;;
n*|N*) [ "$_didnet" ] || donetconfig
if [ "$_have_nfs" ]; then
install_nfs
resp=n
else
echo "Invalid response: $resp"
resp=
fi
;;
*) echo "Invalid response: $resp"
resp=
;;
esac
else
# So we'll ask next time
_yup=FALSE
fi
# Perform sanity checks...
if sane_install; then
# Give the user the opportunity to extract more sets. They
# don't necessarily have to come from the same media.
ask "\nExtract more sets?" n
case $resp in
y*|Y*)
# Force loop to repeat
resp=
;;
esac
else
# Not sane, don't exit loop.
resp=
fi
done
}
# Create a fstab to use for fsck'ing, mounting and unmounting all
# of the target filesystems relative to /mnt.
munge_fstab() {
local _dev _mp _fstype _opt _rest
while read _dev _mp _fstype _opt _rest; do
# Skip comment lines, non-ffs filesystems and
# 'noauto' filesystems.
case $_dev in
\#*) continue ;;
esac
case $_fstype in
ffs) ;;
*) continue ;;
esac
case $_opt in
*noauto*)
continue ;;
esac
# Don't use soft updates
_opt="$(echo ${_opt} | sed 's/,softdep,/,/; s/,softdep//; s/softdep,//')"
if [ "$_mp" = "/" ]; then
_mp=
fi
echo $_dev /mnt$_mp $_fstype $_opt $_rest
done > /etc/fstab
}
# Must mount filesystems manually, one at a time, so we can make
# sure the mount points exist.
mount_fs() {
local _async=$1 _dev _mp _fstype _opt _rest
while read _dev _mp _fstype _opt _rest; do
# If not the root filesystem, make sure the mount
# point is present.
if [ "$_mp" != "/mnt" ]; then
mkdir -p $_mp
fi
# Mount the filesystem. If the mount fails, exit.
if ! mount -v -t $_fstype $_async -o $_opt $_dev $_mp ; then
# In addition to the error message displayed by mount ...
cat << __EOT
FATAL ERROR: Cannot mount filesystems. Double-check your configuration
and restart the ${MODE}.
__EOT
exit
fi
done < /etc/fstab
}
# Script is exiting. Clean up as much as possible.
cleanup_on_exit() {
local _bad_devs
echo "\nCleaning up..."
# Kill any running dhclient, so a restart will not
# find /dev/bpf0 busy. Do this first so a user who
# interrupts out of any fsck'ing will not be stuck
# with an active dhclient.
if [ -f /var/run/dhclient.pid ]; then
echo "Stopping dhclient"
kill -HUP `sed -ne "1p" /var/run/dhclient.pid` > /dev/null 2>&1
rm -f /var/run/dhclient.pid
fi
if [ -f /etc/fstab ]; then
umount -av
elif [ ! "`df /`" = "`df /mnt`" ]; then
umount -v /mnt
fi
echo "Done."
}
# Remount all filesystems in /etc/fstab with the options from
# /etc/fstab, i.e. without any options such as async which
# may have been used in the first mount.
remount_fs() {
local _dev _mp _fstype _opt _rest
while read _dev _mp _fstype _opt _rest; do
if ! mount -u -o $_opt $_dev $_mp ; then
# error message displayed by mount
exit 1
fi
done < /etc/fstab
}
# Preen all filesystems in /etc/fstab, showing individual results,
# but skipping the root filesystem device given in $1. This was
# already fsck'ed successfully.
check_fs() {
local _dev _rest _badfsck=0 _root=$1
while read _dev _rest; do
[ "$_dev" = "$_root" ] && continue
echo -n "fsck -p ${_dev}..."
if ! fsck -fp ${_dev} > /dev/null 2>&1; then
echo "FAILED. You must fsck this device manually."
_badfsck=1
else
echo "OK."
fi
done < /etc/fstab
return $_badfsck
}
# Find LAST instance of DOMAIN or SEARCH and extract first domain name
# on that line as FQDN. Then ask user, just to be sure.
# $1 = resolv.conf file to search for FQDN
# $2 = hosts file to add FQDN information to
get_fqdn() {
if [ -f "$1" ]; then
FQDN=`sed -n \
-e '/^domain[[:space:]][[:space:]]*/{s///;s/\([^[:space:]]*\).*$/\1/;h;}' \
-e '/^search[[:space:]][[:space:]]*/{s///;s/\([^[:space:]]*\).*$/\1/;h;}' \
-e '${g;p;}' $1`
fi
if [ -f "$2" -a -n "$FQDN" ]; then
# Add FQDN to hosts file entries created by addhostent, changing
# lines like
# 1.2.3.4 hostname
# to
# 1.2.3.4 hostname.$FQDN hostname
sed "s/\\(.*\\)[[:space:]]\\(.*\\)\$/\\1 \\2.$FQDN \\2/" $2 > $2.new
mv $2.new $2
else
ask "Enter DNS domain name (e.g. 'bar.com'):" "$FQDN"
FQDN=$resp
fi
}
donetconfig() {
_didnet=1
_nam=
if [ -f /tmp/myname ]; then
_nam=`cat /tmp/myname`
fi
resp=
while [ -z "$resp" ] ; do
ask "Enter system hostname (short form, e.g. 'foo'):" "$_nam"
done
hostname $resp
echo $resp > /tmp/myname
# Always create new hosts file. If install.sh has been
# restarted, an existing one may contain information which
# will conflict with the information about to be entered.
# Also ensures logic to put FQDN in hosts file will create
# hosts file lines in correct format.
echo "::1 localhost\n127.0.0.1 localhost" > /tmp/hosts
# Remove any existing hostname.* files. If install.sh has
# been restarted, this ensures a correct list of configured
# interfaces is displayed, and gives the user a chance to
# change which interfaces are to be configured.
rm -f /tmp/hostname.*
# Revoke any previous decision on whether or not to use
# a nameserver during installation.
rm -f /tmp/resolv.conf.shadow
cat << __EOT
If any interfaces will be configured using a DHCP server
it is recommended that you do not enter a DNS domain name,
a default route, or any name servers.
__EOT
FQDN=
get_fqdn /tmp/resolv.conf
configure_all_interfaces
# As dhclient will populate /etc/resolv.conf, a symbolic link to
# /tmp/resolv.conf.shadow, mv any such file to /tmp/resolv.conf
# so it will eventually be copied to /mnt/etc/resolv.conf and will
# not in the meantime remove the user's ability to choose to use it
# or not, during the rest of the install.
if [ -f /tmp/resolv.conf.shadow ]; then
mv /tmp/resolv.conf.shadow /tmp/resolv.conf
fi
# Get any DHCP supplied FQDN, and in any case apply FQDN to
# the host names in /tmp/hosts, all without asking for any more
# user confirmation. This means DHCP supplied information will
# override a user supplied (or previous DHCP supplied) FQDN.
get_fqdn /tmp/resolv.conf /tmp/hosts
resp=`route -n show | sed -ne '/^default */{
s///
s/ .*//
p
}'`
if [ -z "$resp" ] ; then
resp=none
if [ -f /tmp/mygate ]; then
resp=`cat /etc/mygate`
[ "$resp" ] || resp=none
fi
fi
ask "Enter IP address of default route:" "$resp"
if [ "$resp" != "none" ]; then
route delete default > /dev/null 2>&1
if route add default $resp > /dev/null ; then
echo $resp > /tmp/mygate
fi
fi
resp=none
if [ -f /tmp/resolv.conf ]; then
resp=
for n in `sed -ne '/^nameserver /s///p' /tmp/resolv.conf`
do
if [ -z "$resp" ] ; then
resp=$n
else
resp="$resp $n"
fi
done
fi
ask "Enter IP address of primary nameserver:" "$resp"
if [ "$resp" != "none" ]; then
echo "search $FQDN" > /tmp/resolv.conf
for n in `echo ${resp}`; do
echo "nameserver $n" >> /tmp/resolv.conf
done
echo "lookup file bind" >> /tmp/resolv.conf
ask "Would you like to use the nameserver now?" y
case $resp in
y*|Y*) cp /tmp/resolv.conf /tmp/resolv.conf.shadow
;;
esac
fi
if [ ! -f /tmp/resolv.conf.shadow ]; then
echo "\nThe host table is as follows:\n"
cat /tmp/hosts
cat << __EOT
You may want to edit the host table in the event that you are doing an
NFS installation or an FTP installation without a name server and want
to refer to the server by name rather than by its numeric ip address.
__EOT
ask "Would you like to edit the host table with ${EDITOR}?" n
case $resp in
y*|Y*) ${EDITOR} /tmp/hosts
;;
esac
fi
cat << __EOT
You will now be given the opportunity to escape to the command shell to do
any additional network configuration you may need. This may include adding
additional routes, if needed. In addition, you might take this opportunity
to redo the default route in the event that it failed above.
__EOT
ask "Escape to shell?" n
case $resp in
y*|Y*) echo "Type 'exit' to return to install."
sh
;;
esac
}
populateusrlocal() {
if [ -f /mnt/etc/mtree/BSD.local.dist ]; then
/mnt/usr/sbin/chroot /mnt /usr/sbin/mtree -Uedqn -p /usr/local -f /etc/mtree/BSD.local.dist >/dev/null
fi
}
finish_up() {
# Get timezone info
get_timezone
echo -n "Making all device nodes (by running /dev/MAKEDEV all) ..."
cd /mnt/dev
sh MAKEDEV all
echo "... done."
cd /
md_installboot ${ROOTDISK}
populateusrlocal
# XXXXX - what is this for?
[ -x /mnt/${MODE}.site ] && /mnt/usr/sbin/chroot /mnt /${MODE}.site
# Unmount filesystems, etc. Disable trap that would do same on exit.
# Do this manually rather than through the trap so md_congrats is
# the last message printed.
trap - HUP INT QUIT TERM EXIT
cleanup_on_exit
# Pat on the back.
md_congrats
exit 0
}
# #######################################################################
#
# Initial actions common to both installs and upgrades.
#
# Some may require machine dependent routines, which may
# call functions defined above, so it's safest to put this
# code here rather than at the top of the file.
#
# #######################################################################
ROOTDISK=
VERSION=31
VERSION_MAJOR=$(( $VERSION / 10 ))
VERSION_MINOR=$(( $VERSION % 10 ))
export VERSION VERSION_MAJOR VERSION_MINOR
# Use install.md routines to get lists of devices on system
_DKDEVS=`md_get_diskdevs`
_CDDEVS=`md_get_cddevs`
# extra "site" set can be provided by person doing install or
# upgrade.
THESETS="base etc misc comp man game xbase xshare xfont xserv site $MDSETS"
# Global variable using during sets installation
local_sets_dir=
_sets=
_setsdone=
_osetsdone=
_get_files=
# decide upon an editor
if [ -z "$EDITOR" ] ; then
EDITOR=ed
if [ -x /usr/bin/vi ]; then
EDITOR=vi
fi
export EDITOR
fi
# Cleanup when the script exits.
trap 'cleanup_on_exit' EXIT
trap 'exit 2' HUP INT QUIT TERM
# Good {morning,afternoon,evening,night}.
echo
md_welcome_banner
if [ -f /etc/fstab -a "$MODE" = "install" ]; then
cat << __EOT
You seem to be trying to restart an interrupted installation!
You can skip the disk preparation steps and continue,
or you can reboot and start over.
__EOT
echo -n "Skip disk initialization and p"
else
echo -n "P"
fi
ask "roceed with ${MODE}?" n
case $resp in
y*|Y*) echo "\nCool! Let's get to it...\n"
;;
*) md_not_going_to_install
exit
;;
esac
# Deal with terminal issues
set_term
cat << __EOT
At any prompt except password prompts you can run a shell command by
typing '!foo', or escape to a shell by typing '!'.
__EOT
|