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
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
|
#!/bin/sh
# $OpenBSD: install.sub,v 1.140 1999/10/16 19:01:22 deraadt Exp $
# $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $
#
# Copyright (c) 1997,1998 Todd Miller, Theo de Raadt
# 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 installation/upgrade script - common subroutines.
ROOTDISK= # filled in below
VERSION=26
VERSION_MAJOR=$(( $VERSION / 10 ))
VERSION_MINOR=$(( $VERSION % 10 ))
export VERSION VERSION_MAJOR VERSION_MINOR
ALLSETS="base etc misc comp man game xbase xshare xfont xserv" # install
UPGRSETS="base misc comp man game xbase xshare xfont xserv" # upgrade
SNAPSETS="bin dev etc games man misc sbin \
usr.bin usr.binutils usr.games usr.include \
usr.lib usr.libexec usr.misc usr.sbin usr.share var"
THESETS= # one of the above
# Path searched for sets by install_sets on the local filesystems
local_sets_dir=
# decide upon an editor
if [ X$EDITOR = X ]; then
if [ -x /usr/bin/vi ]; then
EDITOR=vi
else
EDITOR=ed
fi
export EDITOR
fi
# Please don't use the 1 of n form below, good idea, wrong implementation!
# get a reponse with default[s]
getresp() {
local _shell_aware=0
# -s option means exit after a shell (caller is shell-aware)
if [ "$1" = "-s" ]; then
_shell_aware=1
shift
fi
set -o noglob
valid="false"
while [ "X$valid" = "Xfalse" ]; do
read resp
case "$resp" in
"") resp=$1
;;
!) echo "Type 'exit' to return to install."
sh
test $_shell_aware -eq 0 && continue
;;
!*)
eval ${resp#?}
test $_shell_aware -eq 0 && continue
;;
esac
if [ $# -gt 1 ]; then
for i in $@; do
if [ "X$resp" = "X$i" ]; then
valid="true"
fi
done
else
valid="true"
fi
if [ "X$valid" = "Xfalse" ]; then
echo "Try again: Enter one of [$@]"
fi
done
set +o noglob
}
isin() {
# test the first argument against the remaining ones, return succes on a match
local _a=$1
shift
while [ $# != 0 ]; do
if [ "$_a" = "$1" ]; then return 0; fi
shift
done
return 1
}
addel() {
# add first argument to list formed by the remaining arguments
# adds to the tail if the element does not already exist
local _a=$1 _seen=
shift
while [ $# != 0 ]; do
echo "$1"
if [ "$_a" = "$1" ]; then
_seen="yes"
fi
shift
done
if [ "X$_seen" = "X" ]; then
echo "$_a"
fi
}
rmel() {
# remove first argument from list formed by the remaining arguments
local _a=$1
shift
while [ $# != 0 ]; do
if [ "$_a" != "$1" ]; then
echo "$1"
fi
shift
done
}
cutword () {
# read lines on stdin, return Nth element of each line, like cut(1)
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
test "$1" = "" && break
eval echo \$$_n
done
IFS="$_oifs"
}
cutlast () {
# read a line of data, return last element. Equiv. of awk '{print $NF}'.
local _a _oifs="$IFS"
# optional field separator
case "$1" in
-t?*) IFS=${1#-t}; shift;;
esac
read _a; set -- $_a
IFS="$_oifs"
if [ "$1" = "" ]; then return; fi
while [ "$#" -gt 10 ]; do shift 10; done
eval echo \$$#
}
firstchar () {
# return first character of argument
local _a=$1
while [ ${#_a} != 1 ]; do
_a=${_a%?}
done
echo $_a
}
basename () {
local _oifs
if [ "$1" = "" ]; then return; fi
_oifs="$IFS"
IFS="/"
set -- $1
IFS="$_oifs"
while [ "$#" -gt 10 ]; do shift 10; done
eval echo \$$#
}
isnumeric() {
local _a=$1
while [ ${#_a} != 0 ]; do
case $_a in
[0-9]*) ;;
*) echo 0; return;;
esac
_a=${_a#?}
done
echo 1; return
}
get_ifdevs() {
# return available network devices
/sbin/ifconfig -a | egrep -v '^([[:space:]]|(lo|enc|ppp|sl|tun|bridge)[[:digit:]])' | cutword -t: 1
}
dir_has_sets() {
# return true when the directory $1 contains a set for $2...$n
local _dir=$1 _file
shift
for _file in $*
do
if [ -f $_dir/${_file}${VERSION}.tar.gz ]; then
return 0
fi
# Try for stupid msdos convention
if [ -f $_dir/${_file}${VERSION}.tgz ]; then
return 0
fi
# Special check for kernel
if [ $_file = "kernel" -a -f $_dir/bsd ]; then
return 0
fi
done
return 1
}
list_has_sets() {
# return true when the list $1 contains a set, given dir $2 for $3...$n
local _list=$1 _file
shift
for _file in $*
do
if isin ${_file}${VERSION}.tar.gz $_list; then
return 0
fi
# Try for stupid msdos convention
if isin ${_file}${VERSION}.tgz $_list; then
return 0
fi
# Special check for kernel
if test $_file = "kernel" && isin bsd $_list; then
return 0
fi
done
return 1
}
ftp_list_files() {
# 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
local _host=$1 _user=$2 _pass=$3 _dir=$4
shift; shift; shift; shift
ftp ${_ftp_active} -V -n $_host << __ptf
user $_user $_pass
cd $_dir
ls
quit
__ptf
}
get_localdir() {
# $1 is relative mountpoint
local _mp=$1 _dir=
while : ; do
echo -n "Enter the pathname where the sets are stored [$_dir] "
getresp "$_dir"
_dir=$resp
# Allow break-out with empty response
if [ -z "$_dir" ]; then
echo -n "Are you sure you don't want to set the pathname? [n] "
getresp "n"
case "$resp" in
y*|Y*)
break
;;
*)
continue
;;
esac
fi
if dir_has_sets "$_mp/$_dir" $THESETS
then
local_sets_dir="$_mp/$_dir"
break
else
cat << __EOT
The directory \"$local_sets_dir\" does not exist, or does not hold any of the
upgrade sets.
__EOT
echo -n "Re-enter pathname? [y] "
getresp "y"
case "$resp" in
y*|Y*)
;;
*)
local_sets_dir=
break
;;
esac
fi
done
}
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:
__EOT
_DKDEVS=`md_get_diskdevs`
echo "$_DKDEVS"
echo
echo -n "Which one? [done] "
getresp ""
if [ "X${resp}" = "X" ]; then
DISK=done
elif [ "X${resp}" = "Xdone" ]; then
DISK=done
elif isin $resp $_DKDEVS ; then
DISK="$resp"
else
echo
echo "The disk $resp does not exist."
DISK=
fi
}
getrootdisk() {
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:
__EOT
local _defdsk;
_DKDEVS=`md_get_diskdevs`
_defdsk=`echo $_DKDEVS | cutlast`
if [ "${_defdsk}" != "${_DKDEVS}" ]; then
_defdsk=
fi
echo "$_DKDEVS"
echo
echo -n "Which disk is the root disk? [${_defdsk}] "
getresp "${_defdsk}"
if isin $resp $_DKDEVS ; then
ROOTDISK="$resp"
else
echo
echo "The disk $resp does not exist."
ROOTDISK=
fi
}
addhostent() {
# $1 - IP address
# $2 - symbolic name
# Create an entry in the hosts table. If no host table
# exists, create one. If the symbolic name already exists,
# replace its entry.
if [ ! -f /tmp/hosts ]; then
echo "127.0.0.1 localhost" > /tmp/hosts
fi
sed "/ $2.$FQDN $2\$/d" < /tmp/hosts > /tmp/hosts.new
mv /tmp/hosts.new /tmp/hosts
echo "$1 $2.$FQDN $2" >> /tmp/hosts
}
addifconfig() {
# $1 - interface name
# $2 - interface symbolic name
# $3 - interface IP address
# $4 - interface netmask
# $5 - (optional) interface media directives
# Create a hostname.* file for the interface.
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
}
configurenetwork() {
local _ifsdone= _ifs _ouranswer= _reprompt=1
_IFS=`get_ifdevs`
resp= # force at least one iteration
while [ "X${resp}" != X"done" ]; do
if [ $_reprompt = 1 ]; then
cat << __EOT
You may configure the following network interfaces (the interfaces
marked with [X] have been succesfully configured):
__EOT
for _ifs in $_IFS; do
if [ "X${_ouranswer}" = "X" ]; then
_ouranswer=$_ifs
fi
if isin $_ifs $_ifsdone ; then
echo -n " [X] "
else
echo -n " [ ] "
fi
echo $_ifs
done
echo
fi
echo -n "Configure which interface? (or, enter 'done') [$_ouranswer] "
getresp "$_ouranswer"
case "$resp" in
"done")
;;
"")
_reprompt=0
;;
*)
_ifs=$resp
_ouranswer="done"
if isin $_ifs $_IFS ; then
if configure_ifs $_ifs ; then
_ifsdone="$_ifs $_ifsdone"
else
_ouranswer=
fi
else
echo "Invalid response: \"$resp\" is not in list"
fi
_reprompt=1
;;
esac
done
}
configure_ifs() {
local _up _if_name=$1 _if_ip _if_mask
local _if_symname _if_extra _hostname
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
# Get IP address
resp= # force one iteration
while [ "X${resp}" = X"" ]; do
echo -n "IP address (or 'dhcp') ? [$_if_ip] "
getresp "$_if_ip"
_if_ip=$resp
done
# Get symbolic name
_hostname=`hostname`
resp= # force one iteration
while [ "X${resp}" = X"" ]; do
echo -n "Symbolic (host) name? [$_hostname] "
getresp "$_hostname"
_if_symname=$resp
done
# Get netmask
if [ "$_if_ip" != "dhcp" ]; then
resp=
if [ "X${_if_mask}" = X"" ]; then
_if_mask=255.255.255.0
fi
while [ "X${resp}" = X"" ]; do
echo -n "Netmask ? [$_if_mask] "
getresp "$_if_mask"
_if_mask=$resp
done
fi
if [ -n "`ifconfig -m ${_if_name} | sed -n '/media/p'`" ]; then
echo "Your use of the network interface may require non-default"
echo "media directives. The default media is:"
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'
echo "If the default is not satisfactory, and you wish to use another"
echo "media, copy that line from above (ie. \"media 100baseTX\")"
echo -n "Media directives? [$_if_extra] "
getresp "$_if_extra"
if [ "X${resp}" != X"" ]; 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
}
# Much of this is gratuitously stolen from /etc/netstart.
enable_network() {
# Set up the hostname.
if [ ! -f /mnt/etc/myname ]; then
echo "ERROR: no /etc/myname!"
return 1
fi
hostname=`cat /mnt/etc/myname`
hostname $hostname
# configure all the interfaces which we know about.
(
tmp="$IFS"
IFS="$IFS."
set -- `echo /mnt/etc/hostname*`
IFS=$tmp
unset tmp
while [ $# -ge 2 ] ; do
shift # get rid of "hostname"
(
read af name mask bcaddr extras
read dt dtaddr
if [ ! -n "$name" ]; then
echo "/etc/hostname.$1: invalid network configuration file"
exit
fi
cmd="ifconfig $1 $af $name "
if [ "${dt}" = "dest" ]; then cmd="$cmd $dtaddr"; fi
if [ -n "$mask" ]; then cmd="$cmd netmask $mask"; fi
if [ -n "$bcaddr" -a "X$bcaddr" != "XNONE" ]; then
cmd="$cmd broadcast $bcaddr";
fi
cmd="$cmd $extras"
$cmd
) < /mnt/etc/hostname.$1
shift
done
)
# set the address for the loopback interface
ifconfig lo0 inet localhost
# use loopback, not the wire
route add $hostname localhost
# /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 add default `cat /mnt/etc/mygate`
fi
# enable the resolver, if appropriate.
if [ -f /mnt/etc/resolv.conf ]; then
_resolver_enabled="TRUE"
cp /mnt/etc/resolv.conf /tmp/resolv.conf.shadow
fi
# Display results...
echo "Network interface configuration:"
ifconfig -am
echo
if [ "X${_resolver_enabled}" = X"TRUE" ]; then
route show
echo
echo "Resolver enabled."
else
route -n show
echo
echo "Resolver 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= _f _sets=$1
for _f in $_sets ; do
if isin $_f $_setsdone ; then
echo -n " [X] "
_next=
else
echo -n " [ ] "
if [ -z "$_next" ]; then
_next=$_f
fi
fi
echo $_f
done
# Get the name of the file.
echo -n "File name? [$_next] "
getresp "$_next"
}
# Do globbing on the selection and parse +/-, sets _get_files and _setsdone
# (which must exist in the local namespace) as side effects.
glob_selection() {
local _selection="$1" _parent_dir="$2" _sets="$3"
local _action _matched _tfile _f
if [ "X${_selection}" = X"" ]; then
return
fi
# Change +/- into add/remove
_action=add
case "$_selection" in
+*) _selection="${_selection#?}"
;;
-*) _selection="${_selection#?}"
_action=remove
;;
esac
# Major hack to allow the user to select globbing patterns
set -o noglob
if [ X"$_selection" = X"all" ]; then
_selection=*
fi
_tfile=/tmp/install_case.$$ # safe in single user mode
cat >$_tfile << OOF
case \$_f in
$_selection) # Add/remove file to extraction list
if [ "\$_action" = "add" ]; then
_get_files=\`addel \${_f} \${_get_files}\`
_setsdone=\`addel \${_f} \${_setsdone}\`
elif [ "\$_action" = "remove" ]; then
_get_files=\`rmel \${_f} \${_get_files}\`
_setsdone=\`rmel \${_f} \${_setsdone}\`
else
echo "Unknown action: \$_action"
fi
_matched=\$(( \$_matched + 1 ))
;;
esac
OOF
set +o noglob
# Eww.
_matched=0
for _f in $_sets; do
. $_tfile
done
rm -f $_tfile
if [ $_matched -eq 0 ]; then
echo "File $_parent_dir/$_selection does not exist. Check to make"
echo "sure you entered the information properly or enter 'list' for a file list."
fi
}
install_url() {
# 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.
local _sets _kernel _f _file_list _get_files _failed_files _osetsdone
local _url_type _url_base _reuse _minpat
# Parse arguments, shell style
while test $# != 0; do
case "$1" in
-ftp) _url_type=ftp ;;
-html) _url_type=html ;;
-reuse) _reuse=1 ;;
-minpat) shift; _minpat="$1" ;;
esac
shift
done
if [ X"${_minpat}" = X ]; then
_minpat='base*.tar.gz|base*.tgz|man*.tar.gz|man*.tgz|etc*.tar.gz|etc*.tgz|bsd'
fi
echo
echo "This is an automated ${_url_type}-based installation process. You will be asked"
echo "questions and then the files will be retrieved iteratively via ftp(1)."
echo
# Reuse old values w/o prompting for anything?
if [ X"$_reuse" = X"1" ]; then
_reuse=
if eval test X"\$_installed_via_${_url_type}" = X"1"; then
echo -n "Use values from previous ${_url_type} install? "
getresp y
case "$resp" in
y*|Y*)
_reuse=1;;
esac
fi
fi
if [ X"$_reuse" = X ]; then
# Proxy the connections?
if [ "X${_proxy_host}" = X"" ]; then
_proxy_host=none
fi
echo -n "HTTP/FTP proxy URL? (ie. \"http://proxy:8080\", or \"none\") [${_proxy_host}] "
getresp "${_proxy_host}"
if [ "X${resp}" = X"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 "X$ftp_proxy" = "X" ]; then
# Use active mode ftp? (irrelevant if using a proxy)
case "${_ftp_active}" in
-A) resp=y ;;
*) resp=n ;;
esac
echo "By default, ftp will attempt a passive connection and fall back to a normal"
echo "(active) connection if that doesn't work. However, there are some very"
echo "old ftp servers that claim to support passive mode, but really do not."
echo "In this case, you should explicitly request an active session."
echo -n "Do you want to use active ftp? [${resp}] "
getresp "${resp}"
case "$resp" in
y*|Y*) _ftp_active=-A ;;
*) unset _ftp_active ;;
esac
fi
# Provide a list of possible servers
test -z "$_ftp_getlist" && _ftp_getlist=y
echo -n "Do you want a list of potential ${_url_type} servers? [${_ftp_getlist}] "
getresp $_ftp_getlist
case "$resp" in
n*|N*) _ftp_getlist=n
;;
*)
_ftp_getlist=y
ftphost=129.128.5.191
if [ "X${_resolver_enabled}" = X"TRUE" ]; then
ftphost=ftp.openbsd.org
fi
ftp ${_ftp_active} -V -a -o /tmp/ftplist ftp://${ftphost}/pub/OpenBSD/${VERSION_MAJOR}.${VERSION_MINOR}/ftplist > /dev/null
cat /tmp/ftplist | grep "^${_url_type}:" | cat -n | less -XE
;;
esac
# Get server IP address
resp= # force one iteration
while [ "X${resp}" = X"" ]; do
if [ -f /tmp/ftplist ]; then
eval echo -n "Server IP address, hostname, or list#? [\$_${_url_type}_server_ip]\ "
else
eval echo -n "Server IP address, or hostname? [\$_${_url_type}_server_ip]\ "
fi
eval getresp "\$_${_url_type}_server_ip"
if [ "X$resp" = "X?" -a -f /tmp/ftplist ]; then
cat /tmp/ftplist | grep "^${_url_type}:" | cat -n | less -XE
resp=
elif [ -n "$resp" -a `isnumeric $resp` -eq 1 -a ${resp:-0} -ge 1 \
-a -f /tmp/ftplist ]; then
maxlines=`grep "^${_url_type}:" /tmp/ftplist | cat -n |
sed -n -e '$p' | cutword 1`
if [ $maxlines -lt $resp ]; then
echo "There is no ${resp}th line in the list."
resp=
continue
fi
tline=`grep "^${_url_type}:" /tmp/ftplist | sed -n -e "${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
resp= # do it again, just to double check
echo "Using $tline"
else
eval _${_url_type}_server_ip="$resp"
fi
done
# Get server directory
if [ "${_url_type}" = "ftp" -a "X${_ftp_server_dir}" = X"" ]; then
# Default ftp dir
_ftp_server_dir="pub/OpenBSD/${VERSION_MAJOR}.${VERSION_MINOR}/${ARCH}"
fi
resp= # force one iteration
while [ "X${resp}" = X"" ]; do
eval echo -n "Server directory? [\$_${_url_type}_server_dir]\ "
eval getresp "\$_${_url_type}_server_dir"
eval _${_url_type}_server_dir=$resp
done
if [ "${_url_type}" = "ftp" ]; then
# Need default values even if we proxy ftp...
if [ "X${_ftp_server_login}" = X"" ]; then
_ftp_server_login=anonymous
fi
if [ "X${_ftp_server_password}" = X"" ]; then
_ftp_server_password=root@`hostname`.${FQDN}
fi
# Get login name
resp= # force one iteration
while [ "X${resp}" = X"" ]; do
echo -n "Login? [${_ftp_server_login}] "
getresp "${_ftp_server_login}"
_ftp_server_login=$resp
done
# Get password unless anonymous
if [ ${_ftp_server_login} != "anonymous" ]; then
resp= # force one iteration
while [ "X${resp}" = X"" ]; do
echo -n "Password (will not echo): "
stty -echo
getresp "${_ftp_server_password}"
stty echo
echo
_ftp_server_password=$resp
done
else
# only used by ftp_list_files()
_ftp_server_password=root@`hostname`.${FQDN}
fi
fi
fi
# Build up the base url since it is so nasty...
if [ "${_url_type}" = "ftp" -a "${_ftp_server_login}" != "anonymous" ]; then
eval _url_base=${_url_type}://${_ftp_server_login}:${_ftp_server_password}@\$_${_url_type}_server_ip/\$_${_url_type}_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 "X${ftp_proxy}" = X"" ]; 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
_sets=
if list_has_sets "$_file_list" $THESETS; then
for _f in $THESETS ; do
if [ "X${_f}" = "Xkernel" ]; then
if isin bsd $_file_list; then
_kernel=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
else
eval echo "There are no OpenBSD install sets available in \"\$_${_url_type}_server_dir\"."
echo -n "Search for *.tar.gz and *.tgz files? [y] "
getresp "y"
case "$resp" in
n*|N*) return ;;
*) ;;
esac
# *.tar.gz and *.tgz are possible sets
_sets=
_kernel=
for _f in ${_file_list} ; do
case "$_f" in
*.tar.gz|*.tgz) _sets="$_sets ${_f}"
esac
done
if [ "X${_sets}" = X"" ]; then
echo "There are no *.tar.gz or *.tgz files in that dir."
echo -n "See a directory listing? [y] "
getresp "y"
case "$resp" in
n*|N*) return ;;
*) ;;
esac
echo
echo "${_file_list}"
echo
return
else
echo "Adding *.tar.gz and *.tgz files to selector."
fi
fi
# Yes, all those blackslashes really are necesary...
eval echo "\\\\n"\
"You will now be asked for files to extract. In addition to the files listed,\\\\n"\
"you may select any file located at\\\\n"\
" \$_${_url_type}_server_ip:\$_${_url_type}_server_dir\\\\n"\
"You can also enter \'all\' to install all the standard sets, or \'list\' to list\\\\n"\
"the files available. When you are done selecting files, enter \'done\'. Some of\\\\n"\
"these sets are required for your ${MODE} and some are optional -- you will want\\\\n"\
"at least the base and bsd sets. Consult the installation notes if you are not\\\\n"\
"sure which sets are required!"
_osetsdone="$_setsdone"
# Set the minimal default
for _f in $_sets $_kernel; do
eval "case $_f in \
${_minpat}) \
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
echo
echo "The following sets are available for extraction."
echo "Enter filename, \`list', \`all', or \`done'."
echo "You may de-select a set by prepending a '-' to its name."
echo
get_selection "$_sets $_kernel"
if [ "X${resp}" = X"done" ]; then
break
elif [ "X${resp}" = X"list" ]; then
echo
eval echo "\$_${_url_type}_server_dir:"
echo "${_file_list}"
continue
fi
eval glob_selection \"$resp\" \$_${_url_type}_server_dir \"$_sets $_kernel\"
done
# User may have said "done" without selecting any files
if [ "X${_get_files}" = X"" ]; then
return
fi
# Stash the fact that we configured and downloaded via this url method
eval _installed_via_${_url_type}=1
echo
echo "Fetching files via ${_url_type} may take a long time, especially over a slow network"
echo -n "connection. Ready to download files? [y] "
getresp "y"
case "$resp" in
y*|Y*)
;;
*)
_setsdone="$_osetsdone"
return
;;
esac
# Download the files one at a time and keep track of which ones failed
while test -n "${_get_files}" ; do
_failed_files=
echo
for _f in $_get_files ; do
echo "Getting ${_f} ..."
if [ "X${_f}" = "Xssl${VERSION}.tar.gz" ]; then
( cd /mnt ; ftp ${_ftp_active} -o - -V -m ${_url_base}/${_f} | /mnt/usr/sbin/chroot /mnt /usr/sbin/pkg_add -I -)
elif [ "X${_f}" = "X${_kernel}" ]; then
( cd /mnt ; ftp ${_ftp_active} -V -m ${_url_base}/${_f} )
else
( cd /mnt ; ftp ${_ftp_active} -o - -V -m ${_url_base}/${_f} | tar zxpf - )
fi
if [ $? -ne 0 ]; then
# Mark xfer as having failed,.
_setsdone=`rmel $_f $_setsdone`
_failed_files="${_failed_files} ${_f}"
elif [ "X${_f}" = "Xssl${VERSION}.tar.gz" ]; then
ssl=1
fi
done
# Give them the option of refetching failed files.
_get_files=
while test -n "${_failed_files}" ; do
echo
echo "The following files failed to transfer and extract correctly:"
echo "Choose which one(s) to refetch or 'done' to exit selector."
echo "You may de-select a file by prepending a '-' to its name."
echo
get_selection "$_failed_files"
if [ "X${resp}" = X"done" ]; then
break
elif [ "X${resp}" = X"list" ]; then
echo
eval echo "\$_${_url_type}_server_dir:"
echo "${_file_list}"
echo
continue
fi
eval glob_selection \"$resp\" \$_${_url_type}_server_dir \"$_failed_files\"
done
done
}
install_from_mounted_fs() {
# $1 - directory containing installation sets
local _sets= _kernel _f _get_files _failed_files _osetsdone
if [ ! -d $1 ]; then
echo "No such directory: $1"
return
fi
if dir_has_sets $1 $THESETS; then
for _f in $THESETS ; do
if [ "X${_f}" = "Xkernel" ]; then
if [ -f $1/bsd ]; then
_kernel=bsd
fi
elif [ -f $1/${_f}${VERSION}.tar.gz ]; then
_sets="$_sets ${_f}${VERSION}.tar.gz"
elif [ -f $1/${_f}${VERSION}.tgz ]; then
_sets="$_sets ${_f}${VERSION}.tgz"
fi
done
else
echo "There are no OpenBSD install sets available in \"$1\"."
echo -n "Search for *.tar.gz and *.tgz files? [y] "
getresp "y"
case "$resp" in
n*|N*) return ;;
*) ;;
esac
# *.tar.gz and *.tgz are possible sets
_sets=
_kernel=
_sets=`cd $1 ; echo *.tar.gz *.tgz`
if [ "X${_sets}" = X'*.tar.gz *.tgz' ]; then
echo "There are no *.tar.gz or *.tgz files in that dir."
echo -n "See a directory listing? [y] "
getresp "y"
case "$resp" in
n*|N*) return ;;
*) ;;
esac
echo
( cd $1 && ls )
echo
return
else
echo "Adding *.tar.gz and *.tgz files to selector."
fi
fi
echo "\n"\
"You will now be asked for files to extract. In addition to the\n"\
"files listed in the selector you may enter any file located in\n"\
"$1. You can also enter 'all' to install all the standard\n"\
"sets, or 'list' to list the files avilable in $1.\n"\
"When you are done selecting files, enter 'done'.\n"\
"Some of these sets are required for your ${MODE} and some are optional --\n"\
"You will want at least the base and bsd sets.\n"\
"Consult the installation notes if you are not sure which sets are required!"
_osetsdone="$_setsdone"
# Set a minimal default
for _f in $_sets $_kernel; do
case "$_f" in
base*.tar.gz|base*.tgz|etc*.tar.gz|etc*.tgz|bsd)
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
echo
echo "The following sets are available for extraction."
echo "Enter filename, \`list', \`all', or \`done'."
echo "You may de-select a set by prepending a '-' to its name."
echo
get_selection "$_sets $_kernel"
if [ "X${resp}" = X"done" ]; then
break
elif [ "X${resp}" = X"list" ]; then
echo
echo "${1}:"
( cd $1 && ls )
continue
fi
glob_selection "$resp" "$1" "$_sets $_kernel"
done
# User may have said "done" without selecting any files
if [ "X${_get_files}" = X"" ]; then
return
fi
echo
echo -n "Ready to extract selected file sets? [y] "
getresp "y"
case "$resp" in
y*|Y*)
;;
*)
_setsdone="$_osetsdone"
return
;;
esac
# Extract the files one at a time and keep track of which ones failed
while test -n "${_get_files}" ; do
_failed_files=
echo
for _f in $_get_files ; do
echo "$1/${_f}:"
if [ "X${_f}" = "Xssl${VERSION}.tar.gz" ]; then
( cd /mnt ; ftp -o - -V -m file:$1/${_f} | /mnt/usr/sbin/chroot /mnt /usr/sbin/pkg_add -I -)
elif [ "X${_f}" = "X${_kernel}" ]; then
ftp -V -m -o /mnt/$_f file:$1/$_f
else
ftp -V -m -o - file:$1/$_f | (cd /mnt; tar -zxpf -)
fi
if [ $? -ne 0 ]; then
# Mark xfer as having failed,.
_setsdone=`rmel $_f $_setsdone`
_failed_files="${_failed_files} ${_f}"
elif [ "X${_f}" = "Xssl${VERSION}.tar.gz" ]; then
ssl=1
fi
done
# Give them the option of retrying failed files.
_get_files=
while test -n "${_failed_files}" ; do
echo
echo "The following files failed to extract correctly:"
echo "Choose which one(s) to retry or 'done' to exit selector."
echo "You may de-select a file by prepending a '-' to its name."
echo
get_selection "$_failed_files"
if [ "X${resp}" = X"done" ]; then
break
elif [ "X${resp}" = X"list" ]; then
echo
echo "${1}:"
( cd $1 && ls )
echo
continue
fi
glob_selection "$resp" "$1" "$_failed_files"
done
done
}
install_cdrom() {
local _drive _partition_range _partition _fstype _directory
# Get the cdrom device info
cat << __EOT
The following CD-ROM devices are installed on your system; please select
the CD-ROM device containing the partition with the installation sets:
__EOT
_CDDEVS=`md_get_cddevs`
echo "$_CDDEVS"
echo
echo -n "Which is the CD-ROM with the installation media? [abort] "
getresp "abort"
case "$resp" in
abort)
echo "Aborting."
return
;;
*)
if isin $resp $_CDDEVS ; then
_drive=$resp
else
echo
echo "The CD-ROM $resp does not exist."
echo "Aborting."
return
fi
;;
esac
# Get partition
_partition_range=`md_get_partition_range`
resp= # force one iteration
while [ "X${resp}" = X"" ]; do
echo -n "CD-ROM partition to mount (normally \"c\")? [c] "
getresp "c"
case "$resp" in
$_partition_range)
_partition=$resp
;;
*)
echo "Invalid response: $resp"
resp= # force loop to repeat
;;
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= # force one iteration
while [ "X${resp}" = X"" ]; do
echo -n "Which filesystem type (Official OpenBSD CD-ROM is cd9660)? [cd9660] "
getresp "cd9660"
case "$resp" in
cd9660|ffs)
_fstype=$resp
;;
*)
echo "Invalid response: $resp"
resp= # force loop to repeat
;;
esac
done
# Mount the CD-ROM
if ! mount -t ${_fstype} -o ro \
/dev/${_drive}${_partition} /mnt2 ; then
echo "Cannot mount CD-ROM drive. Aborting."
return
fi
# Get the directory where the file lives
if [ "X${_directory}" = X"" ]; then
_directory="/${VERSION_MAJOR}.${VERSION_MINOR}/${ARCH}"
fi
resp= # force one iteration
while [ "X${resp}" = X"" ]; do
echo "Enter the directory relative to the mount point that"
echo -n "contains the file. [${_directory}] "
getresp "${_directory}"
done
_directory=$resp
install_from_mounted_fs /mnt2/${_directory}
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 _directory _md_fstype _md_fsopts
getresp "abort"
case "$resp" in
abort)
echo "Aborting."
return 0
;;
*)
if isin $resp $_DKDEVS ; then
_drive=$resp
else
echo
echo "The disk $resp does not exist."
echo "Aborting."
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= # force one iteration
while [ "X${resp}" = X"" ]; do
echo -n "Partition? [$_def_partition] "
getresp "$_def_partition"
case "$resp" in
$_partition_range)
_partition=$resp
;;
*)
echo "Invalid response: $resp"
resp= # force loop to repeat
;;
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 [ ! -z "$_md_fstype" ]; then
echo " $_md_fstype"
else
_md_fstype="_undefined_"
fi
resp= # force one iteration
while [ "X${resp}" = X"" ]; do
echo -n "Which filesystem type? [default] "
getresp "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"
resp= # force loop to repeat
;;
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() {
local _directory
cat << __EOT
The following disk devices are installed on your system; please select
the disk device containing the partition with the installation sets:
__EOT
_DKDEVS=`md_get_diskdevs`
echo "$_DKDEVS"
echo
echo -n "Which is the disk with the installation sets? [abort] "
if mount_a_disk ; then
return
fi
# Get the directory where the file lives
resp= # force one iteration
while [ "X${resp}" = X"" ]; do
echo "Enter the directory relative to the mount point that"
echo -n "contains the file. [${_directory}] "
getresp "${_directory}"
done
_directory=$resp
install_from_mounted_fs /mnt2/${_directory}
umount -f /mnt2 > /dev/null 2>&1
}
install_nfs() {
# Get the IP address of the server
resp= # force one iteration
while [ "X${resp}" = X"" ]; do
echo -n "Server IP address or hostname? [${_nfs_server_ip}] "
getresp "${_nfs_server_ip}"
done
_nfs_server_ip=$resp
# Get server path to mount
resp= # force one iteration
while [ "X${resp}" = X"" ]; do
echo -n "Filesystem on server to mount? [${_nfs_server_path}] "
getresp "${_nfs_server_path}"
done
_nfs_server_path=$resp
# Determine use of TCP
echo -n "Use TCP transport (only works with capable NFS server)? [n] "
getresp "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= # force one iteration
while [ "X${resp}" = X"" ]; do
echo "Enter the directory relative to the mount point that"
echo -n "contains the file. [${_nfs_directory}] "
getresp "${_nfs_directory}"
done
_nfs_directory=$resp
install_from_mounted_fs /mnt2/${_nfs_directory}
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
_tape=`basename $TAPE`
resp= # force one iteration
while [ "X${resp}" = X"" ]; do
echo -n "Name of tape device? [${_tape}]"
getresp "${_tape}"
done
_tape=`basename $resp`
TAPE="/dev/${_tape}"
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= # force one iteration
while [ "X${resp}" = X"" ]; do
echo -n "File number? "
getresp ""
case "$resp" in
[1-9]*)
_nskip=$(( $resp - 1 ))
;;
*)
echo "Invalid file number ${resp}."
resp= # force loop to repeat
;;
esac
done
# Skip to correct file.
echo -n "Skipping to source file..."
if [ "X${_nskip}" != X"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= # force one iteration
while [ "X${resp}" = X"" ]; do
echo -n "Which way is it? [1] "
getresp "1"
case "$resp" in
1)
_xcmd="tar -zxvpf -"
;;
2)
_xcmd="tar -xvpf -"
;;
*)
echo "Invalid response: $resp."
resp= # force loop to repeat
;;
esac
( cd /mnt; dd if=$TAPE | $_xcmd )
done
echo "Extraction complete."
}
get_timezone() {
local _a _zonepath
#
# If the zoneinfo is not on the installation medium or on the
# installed filesystem, set TZ to GMT and return immediatly.
#
if [ ! -e /usr/share/zoneinfo -a ! -e /mnt/usr/share/zoneinfo ]; then
TZ=GMT
return
fi
if [ ! -d /usr/share/zoneinfo ]; then
_zonepath=/mnt
else
_zonepath=
fi
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 "MET" 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".
To get a listing of what's available in /usr/share/zoneinfo, enter "?"
at the prompts below.
__EOT
if [ X$TZ = X ]; then
TZ=`ls -l /mnt/etc/localtime 2>/dev/null | cutlast`
TZ=${TZ#/usr/share/zoneinfo/}
fi
while : ; do
echo -n "What timezone are you in? [\`?' for list] [$TZ] "
getresp "$TZ"
case "$resp" in
"")
echo "Timezone defaults to GMT"
TZ="GMT"
break;
;;
"?")
ls -F ${_zonepath}/usr/share/zoneinfo
;;
*)
_a=$resp
while [ -d ${_zonepath}/usr/share/zoneinfo/$_a ]; do
echo -n "There are several timezones available"
echo " within zone '$_a'"
echo -n "Select a sub-timezone [\`?' for list]: "
getresp ""
case "$resp" in
"?") ls -F ${_zonepath}/usr/share/zoneinfo/$_a ;;
*) _a=${_a}/${resp}
if [ -f ${_zonepath}/usr/share/zoneinfo/$_a ]; then
break;
fi
;;
esac
done
if [ -f ${_zonepath}/usr/share/zoneinfo/$_a ]; then
TZ="$_a"
echo "You have selected timezone \"$_a\"".
return
fi
echo "'/usr/share/zoneinfo/$_a' is not a valid timezone on this system."
;;
esac
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 (ie. a sample random file
which you probably want). This seems to indicate that you are still missing
important distribution files.
__EOT
elif [ ! -d /mnt/etc -o ! -d /mnt/usr/share/zoneinfo -o ! -d /mnt/dev ]; then
cat << __EOT
Something needed to complete the installation seems to be 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?
test -f /sbin/mount_nfs && _have_nfs=true
# Ask the user which media to load the distribution from.
cat << __EOT
It is now time to extract the installation sets onto the hard disk. Make sure
the sets are either on a local device (i.e. tape, CD-ROM) or on a network
server. You will have the chance to repeat this step or to extract sets from
several places, so you don't have to try to load all the sets in one try and
can recover from some errors.
__EOT
if [ "X$local_sets_dir" != "X" ]; then
install_from_mounted_fs ${local_sets_dir}
if [ X"$_setsdone" != X ]; then
_yup="TRUE"
fi
fi
# Go on prodding for alternate locations
resp= # force at least one iteration
while [ X"${resp}" = X ]; 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 [ X"$_yup" = X"FALSE" ]; then
echo -n "Install from (f)tp, (h)ttp, (t)ape, (C)D-ROM"
test -n "$_have_nfs" && echo -n ", (N)FS"
echo -n " or local (d)isk? "
getresp ""
case "$resp" in
d*|D*)
install_disk
resp=d
;;
f*|F*)
test -n "$_didnet" || donetconfig
install_url -ftp
resp=f
;;
h*|H*)
test -n "$_didnet" || donetconfig
install_url -http
resp=h
;;
t*|T*)
install_tape
resp=t
;;
c*|C*)
install_cdrom
resp=c
;;
n*|N*)
test -n "$_didnet" || donetconfig
if [ -n "$_have_nfs" ]; then
install_nfs
resp=n
else
echo "Invalid response: $resp"
resp=
fi
;;
*)
echo "Invalid response: $resp"
resp=
;;
esac
else
_yup="FALSE" # So we'll ask next time
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.
echo
echo -n "Extract more sets? [n] "
getresp "n"
case "$resp" in
y*|Y*)
# Force loop to repeat
resp=
;;
*)
;;
esac
else
# Not sane, don't exit loop.
resp=
fi
done
}
munge_fstab() {
local _fstab _fstab_shadow _dev _mp _fstype _rest
# Now that the 'real' fstab is configured, we munge it into a 'shadow'
# fstab which we'll use for mounting and unmounting all of the target
# filesystems relative to /mnt. Mount all filesystems.
_fstab=$1
_fstab_shadow=$2
( while read _dev _mp _fstype _rest; do
# Skip comment lines
case "$_dev" in
\#*) continue;;
*) ;;
esac
# and some filesystem types (like there are swap,kernfs,...)
case "$_fstype" in
ffs|ufs|nfs) ;;
*) continue;;
esac
if [ "$_mp" = "/" ]; then
echo $_dev /mnt $_fstype $_rest
else
echo $_dev /mnt$_mp $_fstype $_rest
fi
done ) < $_fstab > $_fstab_shadow
}
mount_fs() {
# Must mount filesystems manually, one at a time, so we can make
# sure the mount points exist.
# $1 is a file in fstab format
local _fstab=$1
local _async=$2
( while read line; do
set -- $line
_dev=$1
_mp=$2
_fstype=$3
_opt=$4
# If not the root filesystem, make sure the mount
# point is present.
if [ "X{$_mp}" != X"/mnt" ]; then
mkdir -p $_mp
fi
# Mount the filesystem. If the mount fails, exit
# with an error condition to tell the outer
# later to bail.
if ! mount -v -t $_fstype $_async -o $_opt $_dev $_mp ; then
# error message displayed by mount
exit 1
fi
done ) < $_fstab
if [ "X${?}" != X"0" ]; then
cat << __EOT
FATAL ERROR: Cannot mount filesystems. Double-check your configuration
and restart the installation process.
__EOT
exit
fi
}
unmount_fs() {
# Unmount all filesystems and check their integrity.
# Usage: [-check] <fstab file>
local _check _fstab _pid
if [ "$1" = "-check" ]; then
_check=1
_fstab=$2
else
_check=0
_fstab=$1
fi
if [ ! \( -f $_fstab -a -s $_fstab \) ]; then
echo "fstab empty" > /dev/tty
return
fi
(
_devs=
_mps=
# maintain reverse order
while read line; do
set -- $line
_devs="$1 ${_devs}"
_mps="$2 ${_mps}"
done
echo -n "Unmounting filesystems... "
for _mp in ${_mps}; do
echo -n "${_mp} "
umount ${_mp}
done
echo "... Done."
if [ $_check = 1 ]; then
echo "Checking filesystem integrity..."
for _dev in ${_devs}; do
echo "${_dev}"
fsck -f ${_dev}
done
fi
echo "Done."
) < $_fstab
}
remount_fs() {
( while read line; do
set -- $line
_dev=$1
_mp=$2
_fstype=$3
_opt=$4
if ! mount -u -o $_opt $_dev $_mp ; then
# error message displayed by mount
exit 1
fi
done ) < $1
}
check_fs() {
# Check filesystem integrity.
# $1 is a file in fstab format
local _fstab=$1
(
_devs=
_mps=
while read line; do
set -- $line
_devs="$1 ${_devs}"
_mps="$2 ${_mps}"
done
echo "Checking filesystem integrity..."
for _dev in ${_devs}; do
echo "${_dev}"
fsck -f ${_dev}
done
echo "Done."
) < $_fstab
}
donetconfig() {
_didnet=1
resp= # force at least one iteration
_nam=
if [ -f /tmp/myname ]; then
_nam=`cat /tmp/myname`
fi
while [ "X${resp}" = X"" ]; do
echo -n "Enter system hostname (short form, ie. \"foo\"): [$_nam] "
getresp "$_nam"
done
hostname $resp
echo $resp > /tmp/myname
resp= # force at least one iteration
if [ -f /tmp/resolv.conf ]; then
FQDN=`grep '^domain ' /tmp/resolv.conf | \
sed -e 's/^domain //'`
fi
while [ "X${resp}" = X"" ]; do
echo -n "Enter DNS domain name (ie. \"bar.com\"): [$FQDN] "
getresp "$FQDN"
done
FQDN=$resp
echo
echo "If you have any devices being configured by a DHCP server"
echo "it is recommended that you do not enter a default route or"
echo "any name servers."
echo
configurenetwork
resp=`route -n show |
grep '^default' |
sed -e 's/^default //' -e 's/ .*//'`
if [ "X${resp}" = "X" ]; then
resp=none
if [ -f /tmp/mygate ]; then
resp=`cat /etc/mygate`
if [ "X${resp}" = "X" ]; then
resp="none";
fi
fi
fi
echo -n "Enter IP address of default route: [$resp] "
getresp "$resp"
if [ "X${resp}" != X"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 /etc/resolv.conf ]; then
resp=
for n in `grep '^nameserver ' /etc/resolv.conf | \
sed -e 's/^nameserver //'`; do
if [ "X${resp}" = "X" ]; then
resp="$n"
else
resp="$resp $n"
fi
done
elif [ -f /tmp/resolv.conf ]; then
resp=
for n in `grep '^nameserver ' /tmp/resolv.conf | \
sed -e 's/^nameserver //'`; do
if [ "X${resp}" = "X" ]; then
resp="$n"
else
resp="$resp $n"
fi
done
fi
echo -n "Enter IP address of primary nameserver: [$resp] "
getresp "$resp"
if [ "X${resp}" != X"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
echo -n "Would you like to use the nameserver now? [y] "
getresp "y"
case "$resp" in
y*|Y*)
cp /tmp/resolv.conf \
/tmp/resolv.conf.shadow
;;
*)
;;
esac
fi
if [ ! -f /tmp/resolv.conf.shadow ]; then
echo
echo "The host table is as follows:"
echo
cat /tmp/hosts
cat << __hosts_table_1
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.
__hosts_table_1
echo -n "Would you like to edit the host table with ${EDITOR}? [n] "
getresp "n"
case "$resp" in
y*|Y*)
${EDITOR} /tmp/hosts
;;
*)
;;
esac
fi
cat << \__network_config_2
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.
__network_config_2
echo -n "Escape to shell? [n] "
getresp "n"
case "$resp" in
y*|Y*)
echo "Type 'exit' to return to install."
sh
;;
*)
;;
esac
}
|