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
|
#!/bin/sh
# $Id: vboxconfig.sh $
## @file
# VirtualBox Configuration Script, Solaris host.
#
#
# Copyright (C) 2009-2023 Oracle and/or its affiliates.
#
# This file is part of VirtualBox base platform packages, as
# available from https://www.virtualbox.org.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation, in version 3 of the
# License.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <https://www.gnu.org/licenses>.
#
# SPDX-License-Identifier: GPL-3.0-only
#
# Never use exit 2 or exit 20 etc., the return codes are used in
# SRv4 postinstall procedures which carry special meaning. Just use exit 1 for failure.
# LC_ALL should take precedence over LC_* and LANG but whatever...
LC_ALL=C
export LC_ALL
LANG=C
export LANG
VBOX_INSTALL_PATH="$PKG_INSTALL_ROOT/opt/VirtualBox"
CONFIG_DIR=/etc/vbox
CONFIG_FILES=filelist
DIR_CONF="$PKG_INSTALL_ROOT/platform/i86pc/kernel/drv"
DIR_MOD_32="$PKG_INSTALL_ROOT/platform/i86pc/kernel/drv"
DIR_MOD_64="$DIR_MOD_32/amd64"
# Default paths, these will be overridden by 'which' if they don't exist
BIN_ADDDRV=/usr/sbin/add_drv
BIN_REMDRV=/usr/sbin/rem_drv
BIN_MODLOAD=/usr/sbin/modload
BIN_MODUNLOAD=/usr/sbin/modunload
BIN_MODINFO=/usr/sbin/modinfo
BIN_DEVFSADM=/usr/sbin/devfsadm
BIN_BOOTADM=/sbin/bootadm
BIN_SVCADM=/usr/sbin/svcadm
BIN_SVCCFG=/usr/sbin/svccfg
BIN_SVCS=/usr/bin/svcs
BIN_IFCONFIG=/sbin/ifconfig
BIN_SVCS=/usr/bin/svcs
BIN_ID=/usr/bin/id
BIN_PKILL=/usr/bin/pkill
BIN_PGREP=/usr/bin/pgrep
BIN_IPADM=/usr/sbin/ipadm
# "vboxdrv" is also used in sed lines here (change those as well if it ever changes)
MOD_VBOXDRV=vboxdrv
DESC_VBOXDRV="Host"
MOD_VBOXNET=vboxnet
DESC_VBOXNET="NetAdapter"
MOD_VBOXNET_INST=8
MOD_VBOXFLT=vboxflt
DESC_VBOXFLT="NetFilter (STREAMS)"
MOD_VBOXBOW=vboxbow
DESC_VBOXBOW="NetFilter (Crossbow)"
MOD_VBOXUSBMON=vboxusbmon
DESC_VBOXUSBMON="USBMonitor"
MOD_VBOXUSB=vboxusb
DESC_VBOXUSB="USB"
UPDATEBOOTARCHIVE=0
REMOTEINST=0
FATALOP=fatal
NULLOP=nulloutput
SILENTOP=silent
IPSOP=ips
ISSILENT=
ISIPS=
infoprint()
{
if test "x$ISSILENT" != "x$SILENTOP"; then
echo 1>&2 "$1"
fi
}
subprint()
{
if test "x$ISSILENT" != "x$SILENTOP"; then
echo 1>&2 " - $1"
fi
}
warnprint()
{
if test "x$ISSILENT" != "x$SILENTOP"; then
echo 1>&2 " * Warning!! $1"
fi
}
errorprint()
{
echo 1>&2 "## $1"
}
helpprint()
{
echo 1>&2 "$1"
}
printusage()
{
helpprint "VirtualBox Configuration Script"
helpprint "usage: $0 <operation> [options]"
helpprint
helpprint "<operation> must be one of the following:"
helpprint " --postinstall Perform full post installation procedure"
helpprint " --preremove Perform full pre remove procedure"
helpprint " --installdrivers Only install the drivers"
helpprint " --removedrivers Only remove the drivers"
helpprint " --setupdrivers Setup drivers, reloads existing drivers"
helpprint
helpprint "[options] are one or more of the following:"
helpprint " --silent Silent mode"
helpprint " --fatal Don't continue on failure (required for postinstall)"
helpprint " --ips This is an IPS package postinstall/preremove"
helpprint " --altkerndir Use /usr/kernel/drv as the driver directory"
helpprint
}
# find_bin_path()
# !! failure is always fatal
find_bin_path()
{
if test -z "$1"; then
errorprint "missing argument to find_bin_path()"
exit 1
fi
binfilename=`basename $1`
binfilepath=`which $binfilename 2> /dev/null`
if test -x "$binfilepath"; then
echo "$binfilepath"
return 0
else
errorprint "$1 missing or is not an executable"
exit 1
fi
}
# find_bins()
# !! failure is always fatal
find_bins()
{
# Search only for binaries that might be in different locations
if test ! -x "$BIN_ID"; then
BIN_ID=`find_bin_path "$BIN_ID"`
fi
if test ! -x "$BIN_ADDDRV"; then
BIN_ADDDRV=`find_bin_path "$BIN_ADDDRV"`
fi
if test ! -x "$BIN_REMDRV"; then
BIN_REMDRV=`find_bin_path "$BIN_REMDRV"`
fi
if test ! -x "$BIN_MODLOAD"; then
BIN_MODLOAD=`check_bin_path "$BIN_MODLOAD"`
fi
if test ! -x "$BIN_MODUNLOAD"; then
BIN_MODUNLOAD=`find_bin_path "$BIN_MODUNLOAD"`
fi
if test ! -x "$BIN_MODINFO"; then
BIN_MODINFO=`find_bin_path "$BIN_MODINFO"`
fi
if test ! -x "$BIN_DEVFSADM"; then
BIN_DEVFSADM=`find_bin_path "$BIN_DEVFSADM"`
fi
if test ! -x "$BIN_BOOTADM"; then
BIN_BOOTADM=`find_bin_path "$BIN_BOOTADM"`
fi
if test ! -x "$BIN_SVCADM"; then
BIN_SVCADM=`find_bin_path "$BIN_SVCADM"`
fi
if test ! -x "$BIN_SVCCFG"; then
BIN_SVCCFG=`find_bin_path "$BIN_SVCCFG"`
fi
if test ! -x "$BIN_SVCS"; then
BIN_SVCS=`find_bin_path "$BIN_SVCS"`
fi
if test ! -x "$BIN_IFCONFIG"; then
BIN_IFCONFIG=`find_bin_path "$BIN_IFCONFIG"`
fi
if test ! -x "$BIN_PKILL"; then
BIN_PKILL=`find_bin_path "$BIN_PKILL"`
fi
if test ! -x "$BIN_PGREP"; then
BIN_PGREP=`find_bin_path "$BIN_PGREP"`
fi
if test ! -x "$BIN_IPADM"; then
BIN_IPADM=`find_bin_path "$BIN_IPADM"`
fi
}
# check_root()
# !! failure is always fatal
check_root()
{
# Don't use "-u" option as some id binaries don't support it, instead
# rely on "uid=101(username) gid=10(groupname) groups=10(staff)" output
curuid=`$BIN_ID | cut -f 2 -d '=' | cut -f 1 -d '('`
if test "$curuid" -ne 0; then
errorprint "This script must be run with administrator privileges."
exit 1
fi
}
# get_unofficial_sysinfo()
# cannot fail
get_unofficial_sysinfo()
{
HOST_OS_MAJORVERSION="11"
HOST_OS_MINORVERSION="151"
}
# get_s11_4_sysinfo()
# cannot fail
get_s11_4_sysinfo()
{
# See check in plumb_net for why this is > 174. The alternative is we declare 11.4+ as S12 with
# a more accurate minor (build) version number. For now this is sufficient to workaround the ever
# changing version numbering policy.
HOST_OS_MAJORVERSION="11"
HOST_OS_MINORVERSION="175"
}
# get_s11_5_or_newer_sysinfo()
# cannot fail
get_s11_5_or_newer_sysinfo()
{
# See check in plumb_net for why this is 176.
HOST_OS_MAJORVERSION="11"
HOST_OS_MINORVERSION="176"
}
# get_sysinfo()
# cannot fail
get_sysinfo()
{
STR_OSVER=`uname -v`
case "$STR_OSVER" in
# First check 'uname -v' and weed out the recognized, unofficial distros of Solaris
omnios*|oi_*|illumos*)
get_unofficial_sysinfo
return 0
;;
# Quick escape workaround for Solaris 11.4, changes the pkg FMRI (yet again). See BugDB #26494983.
11.4.*)
get_s11_4_sysinfo
return 0
;;
# Quick escape workaround for Solaris 11.5. See BugDB #26494983.
11.5.*)
get_s11_5_or_newer_sysinfo
return 0
esac
BIN_PKG=`which pkg 2> /dev/null`
if test -x "$BIN_PKG"; then
PKGFMRI=`$BIN_PKG $BASEDIR_PKGOPT contents -H -t set -a name=pkg.fmri -o pkg.fmri pkg:/system/kernel 2> /dev/null`
if test -z "$PKGFMRI"; then
# Perhaps this is old pkg without '-a' option and/or system/kernel is missing and it's part of 'entire'
# Try fallback.
PKGFMRI=`$BIN_PKG $BASEDIR_PKGOPT contents -H -t set -o pkg.fmri entire | head -1 2> /dev/null`
if test -z "$PKGFMRI"; then
# Perhaps entire is conflicting. Try using opensolaris/entire.
# Last fallback try.
PKGFMRI=`$BIN_PKG $BASEDIR_PKGOPT contents -H -t set -o pkg.fmri opensolaris.org/entire | head -1 2> /dev/null`
fi
fi
if test ! -z "$PKGFMRI"; then
# The format is "pkg://solaris/system/kernel@0.5.11,5.11-0.161:20110315T070332Z"
# or "pkg://solaris/system/kernel@5.12,5.11-5.12.0.0.0.4.1:20120908T030246Z"
# or "pkg://solaris/system/kernel@0.5.11,5.11-0.175.0.0.0.1.0:20111012T032837Z"
# or "pkg://solaris/system/kernel@5.12-5.12.0.0.0.9.1.3.0:20121012T032837Z" [1]
# [1]: The sed below doesn't handle this. It's instead parsed below in the PSARC/2012/240 case.
STR_KERN_MAJOR=`echo "$PKGFMRI" | sed 's/^.*\@//;s/\,.*//'`
if test ! -z "$STR_KERN_MAJOR"; then
# The format is "0.5.11" or "5.12"
# Let us just hardcode these for now, instead of trying to do things more generically. It's not
# worth trying to bring more order to chaos as it's clear that the version numbering is subject to breakage
# as it has been seen in the past.
if test "x$STR_KERN_MAJOR" = "x5.12"; then
HOST_OS_MAJORVERSION="12"
elif test "x$STR_KERN_MAJOR" = "x0.5.11" || test "x$STR_KERN_MAJOR" = "x5.11"; then
HOST_OS_MAJORVERSION="11"
else
# This could be the PSARC/2012/240 naming scheme for S12.
# The format is "pkg://solaris/system/kernel@5.12-5.12.0.0.0.9.1.3.0:20121012T032837Z"
# The "5.12" following the "@" is the nominal version which we ignore for now as it is
# not set by most pkg(5) tools...
# STR_KERN_MAJOR is now of the format "5.12-5.12.0.0.0.9.1.3.0:20121012T032837Z" with '9' representing
# the build number.
BRANCH_VERSION=$STR_KERN_MAJOR
HOST_OS_MAJORVERSION=`echo "$BRANCH_VERSION" | cut -f2 -d'-' | cut -f1,2 -d'.'`
if test "x$HOST_OS_MAJORVERSION" = "x5.12"; then
HOST_OS_MAJORVERSION="12"
HOST_OS_MINORVERSION=`echo "$BRANCH_VERSION" | cut -f2 -d'-' | cut -f6 -d'.'`
return 0
else
errorprint "Failed to parse the Solaris kernel major version."
exit 1
fi
fi
# This applies only to S11 and S12 where the transitional "@5.12," component version is
# still part of the pkg(5) package FMRI. The regular S12 will follow the PSARC/2012/240 naming scheme above.
STR_KERN_MINOR=`echo "$PKGFMRI" | sed 's/^.*\@//;s/\:.*//;s/.*,//'`
if test ! -z "$STR_KERN_MINOR"; then
# The HOST_OS_MINORVERSION is represented as follows:
# For S12 it represents the build numbers. e.g. for 4 : "5.11-5.12.0.0.0.4.1"
# For S11 as the "nevada" version numbers. e.g. for 175: "5.11-0.161" or "5.11-0.175.0.0.0.1.0"
if test "$HOST_OS_MAJORVERSION" -eq 12; then
HOST_OS_MINORVERSION=`echo "$STR_KERN_MINOR" | cut -f2 -d'-' | cut -f6 -d'.'`
elif test "$HOST_OS_MAJORVERSION" -eq 11; then
HOST_OS_MINORVERSION=`echo "$STR_KERN_MINOR" | cut -f2 -d'-' | cut -f2 -d'.'`
else
errorprint "Solaris kernel major version $HOST_OS_MAJORVERSION not supported."
exit 1
fi
else
errorprint "Failed to parse the Solaris kernel minor version."
exit 1
fi
else
errorprint "Failed to parse the Solaris kernel package version."
exit 1
fi
else
errorprint "Failed to detect the Solaris kernel package FMRI."
exit 1
fi
else
HOST_OS_MAJORVERSION=`uname -r`
if test -z "$HOST_OS_MAJORVERSION" || test "x$HOST_OS_MAJORVERSION" != "x5.10"; then
# S11 without 'pkg'?? Something's wrong... bail.
errorprint "Solaris $HOST_OS_MAJORVERSION detected without executable $BIN_PKG !? I are confused."
exit 1
fi
HOST_OS_MAJORVERSION="10"
if test "$REMOTEINST" -eq 0; then
# Use uname to verify it's S10.
# Major version is S10, Minor version is no longer relevant (or used), use uname -v so it gets something
# like "Generic_blah" for purely cosmetic purposes
HOST_OS_MINORVERSION=`uname -v`
else
# Remote installs from S10 local.
BIN_PKGCHK=`which pkgchk 2> /dev/null`
if test ! -x "$BIN_PKGCHK"; then
errorprint "Failed to find an executable pkgchk binary $BIN_PKGCHK."
errorprint "Cannot determine Solaris version on remote target $PKG_INSTALL_ROOT"
exit 1
fi
REMOTE_S10=`$BIN_PKGCHK -l -p /kernel/amd64/genunix $BASEDIR_PKGOPT 2> /dev/null | grep SUNWckr | tr -d ' \t'`
if test ! -z "$REMOTE_S10" && test "x$REMOTE_S10" = "xSUNWckr"; then
HOST_OS_MAJORVERSION="10"
HOST_OS_MINORVERSION=""
else
errorprint "Remote target $PKG_INSTALL_ROOT is not Solaris 10."
errorprint "Will not attempt to install to an unidentified remote target."
exit 1
fi
fi
fi
}
# check_zone()
# !! failure is always fatal
check_zone()
{
currentzone=`zonename`
if test "x$currentzone" != "xglobal"; then
errorprint "This script must be run from the global zone."
exit 1
fi
}
# check_isa()
# !! failure is always fatal
check_isa()
{
currentisa=`uname -i`
if test "x$currentisa" = "xi86xpv"; then
errorprint "VirtualBox cannot run under xVM Dom0! Fatal Error, Aborting installation!"
exit 1
fi
}
# check_module_arch()
# !! failure is always fatal
check_module_arch()
{
cputype=`isainfo -k`
if test "x$cputype" != "xamd64" && test "x$cputype" != "xi386"; then
errorprint "VirtualBox works only on i386/amd64 hosts, not $cputype"
exit 1
fi
}
# update_boot_archive()
# cannot fail
update_boot_archive()
{
infoprint "Updating the boot archive..."
if test "$REMOTEINST" -eq 0; then
$BIN_BOOTADM update-archive > /dev/null
else
$BIN_BOOTADM update-archive -R "$PKG_INSTALL_ROOT" > /dev/null
fi
UPDATEBOOTARCHIVE=0
}
# module_added(modname)
# returns 1 if added, 0 otherwise
module_added()
{
if test -z "$1"; then
errorprint "missing argument to module_added()"
exit 1
fi
# Add a space at end of module name to make sure we have a perfect match to avoid
# any substring matches: e.g "vboxusb" & "vboxusbmon"
loadentry=`cat "$PKG_INSTALL_ROOT/etc/name_to_major" | grep "$1 "`
if test -z "$loadentry"; then
return 1
fi
return 0
}
# module_loaded(modname)
# returns 1 if loaded, 0 otherwise
module_loaded()
{
if test -z "$1"; then
errorprint "missing argument to module_loaded()"
exit 1
fi
modname=$1
# modinfo should now work properly since we prevent module autounloading.
loadentry=`$BIN_MODINFO | grep "$modname "`
if test -z "$loadentry"; then
return 1
fi
return 0
}
# add_driver(modname, moddesc, fatal, nulloutput, [driverperm])
# failure: depends on "fatal"
add_driver()
{
if test -z "$1" || test -z "$2"; then
errorprint "missing argument to add_driver()"
exit 1
fi
modname="$1"
moddesc="$2"
fatal="$3"
nullop="$4"
modperm="$5"
if test -n "$modperm"; then
if test "x$nullop" = "x$NULLOP"; then
$BIN_ADDDRV $BASEDIR_OPT -m"$modperm" $modname >/dev/null 2>&1
else
$BIN_ADDDRV $BASEDIR_OPT -m"$modperm" $modname
fi
else
if test "x$nullop" = "x$NULLOP"; then
$BIN_ADDDRV $BASEDIR_OPT $modname >/dev/null 2>&1
else
$BIN_ADDDRV $BASEDIR_OPT $modname
fi
fi
if test "$?" -ne 0; then
subprint "Adding: $moddesc module ...FAILED!"
if test "x$fatal" = "x$FATALOP"; then
exit 1
fi
return 1
fi
subprint "Added: $moddesc driver"
return 0
}
# rem_driver(modname, moddesc, [fatal])
# failure: depends on [fatal]
rem_driver()
{
if test -z "$1" || test -z "$2"; then
errorprint "missing argument to rem_driver()"
exit 1
fi
modname=$1
moddesc=$2
fatal=$3
module_added $modname
if test "$?" -eq 0; then
UPDATEBOOTARCHIVE=1
if test "x$ISIPS" != "x$IPSOP"; then
$BIN_REMDRV $BASEDIR_OPT $modname
else
$BIN_REMDRV $BASEDIR_OPT $modname >/dev/null 2>&1
fi
# for remote installs, don't bother with return values of rem_drv
if test "$?" -eq 0 || test "$REMOTEINST" -eq 1; then
subprint "Removed: $moddesc driver"
return 0
else
subprint "Removing: $moddesc ...FAILED!"
if test "x$fatal" = "x$FATALOP"; then
exit 1
fi
return 1
fi
fi
}
# unload_module(modname, moddesc, retry, [fatal])
# failure: fatal
unload_module()
{
if test -z "$1" || test -z "$2"; then
errorprint "missing argument to unload_module()"
exit 1
fi
# No-OP for non-root installs
if test "$REMOTEINST" -eq 1; then
return 0
fi
modname=$1
moddesc=$2
retry=$3
fatal=$4
modid=`$BIN_MODINFO | grep "$modname " | cut -f 1 -d ' ' `
if test -n "$modid"; then
$BIN_MODUNLOAD -i $modid
if test "$?" -eq 0; then
subprint "Unloaded: $moddesc module"
else
#
# Hack for vboxdrv. Delayed removing when VMM thread-context hooks are used.
# Our automated tests are probably too quick... Fix properly later.
#
result="$?"
if test "$retry" -eq 1; then
cmax=15
cslept=0
while test "$result" -ne 0;
do
subprint "Unloading: $moddesc module ...FAILED! Busy? Retrying in 3 seconds..."
sleep 3
cslept=`expr $cslept + 3`
if test "$cslept" -ge "$cmax"; then
break
fi
$BIN_MODUNLOAD -i $modid
result="$?"
done
fi
if test "$result" -ne 0; then
subprint "Unloading: $moddesc module ...FAILED!"
if test "x$fatal" = "x$FATALOP"; then
exit 1
fi
else
subprint "Unloaded: $moddesc module"
fi
return 1
fi
fi
return 0
}
# load_module(modname, moddesc, [fatal])
# pass "drv/modname" or "misc/vbi" etc.
# failure: fatal
load_module()
{
if test -z "$1" || test -z "$2"; then
errorprint "missing argument to load_module()"
exit 1
fi
# No-OP for non-root installs
if test "$REMOTEINST" -eq 1; then
return 0
fi
modname=$1
moddesc=$2
fatal=$3
$BIN_MODLOAD -p $modname
if test "$?" -eq 0; then
return 0
else
subprint "Loading: $moddesc module ...FAILED!"
if test "x$fatal" = "x$FATALOP"; then
exit 1
fi
return 1
fi
}
load_vboxflt()
{
if test -f "$DIR_CONF/vboxflt.conf"; then
add_driver "$MOD_VBOXFLT" "$DESC_VBOXFLT" "$FATALOP"
load_module "drv/$MOD_VBOXFLT" "$DESC_VBOXFLT" "$FATALOP"
else
# For custom pkgs that optionally ship this module, let's not fail but just warn
warnprint "$DESC_VBOXFLT installation requested but not shipped in this package."
fi
}
load_vboxbow()
{
if test -f "$DIR_CONF/vboxbow.conf"; then
add_driver "$MOD_VBOXBOW" "$DESC_VBOXBOW" "$FATALOP"
load_module "drv/$MOD_VBOXBOW" "$DESC_VBOXBOW" "$FATALOP"
else
# For custom pkgs that optionally ship this module, let's not fail but just warn
warnprint "$DESC_VBOXBOW installation requested but not shipped in this package."
fi
}
# install_drivers()
# !! failure is always fatal
install_drivers()
{
if test -f "$DIR_CONF/vboxdrv.conf"; then
if test -n "_HARDENED_"; then
add_driver "$MOD_VBOXDRV" "$DESC_VBOXDRV" "$FATALOP" "not-$NULLOP" "'* 0600 root sys','vboxdrvu 0666 root sys'"
else
add_driver "$MOD_VBOXDRV" "$DESC_VBOXDRV" "$FATALOP" "not-$NULLOP" "'* 0666 root sys','vboxdrvu 0666 root sys'"
fi
load_module "drv/$MOD_VBOXDRV" "$DESC_VBOXDRV" "$FATALOP"
else
errorprint "Extreme error! Missing $DIR_CONF/vboxdrv.conf, aborting."
return 1
fi
# Figure out group to use for /etc/devlink.tab (before Solaris 11 SRU6
# it was always using group sys)
group=sys
if [ -f "$PKG_INSTALL_ROOT/etc/dev/reserved_devnames" ]; then
# Solaris 11 SRU6 and later use group root (check a file which isn't
# tainted by VirtualBox install scripts and allow no other group)
refgroup=`LC_ALL=C /usr/bin/ls -lL "$PKG_INSTALL_ROOT/etc/dev/reserved_devnames" | awk '{ print $4 }' 2>/dev/null`
if [ $? -eq 0 -a "x$refgroup" = "xroot" ]; then
group=root
fi
unset refgroup
fi
## Add vboxdrv to devlink.tab (KEEP TABS!)
if test -f "$PKG_INSTALL_ROOT/etc/devlink.tab"; then
sed -e '/name=vboxdrv/d' -e '/name=vboxdrvu/d' "$PKG_INSTALL_ROOT/etc/devlink.tab" > "$PKG_INSTALL_ROOT/etc/devlink.vbox"
echo "type=ddi_pseudo;name=vboxdrv;minor=vboxdrv \D" >> "$PKG_INSTALL_ROOT/etc/devlink.vbox"
echo "type=ddi_pseudo;name=vboxdrv;minor=vboxdrvu \M0" >> "$PKG_INSTALL_ROOT/etc/devlink.vbox"
chmod 0644 "$PKG_INSTALL_ROOT/etc/devlink.vbox"
chown root:$group "$PKG_INSTALL_ROOT/etc/devlink.vbox"
mv -f "$PKG_INSTALL_ROOT/etc/devlink.vbox" "$PKG_INSTALL_ROOT/etc/devlink.tab"
else
errorprint "Missing $PKG_INSTALL_ROOT/etc/devlink.tab, aborting install"
return 1
fi
# Create the device link for non-remote installs (not really relevant any more)
if test "$REMOTEINST" -eq 0; then
/usr/sbin/devfsadm -i "$MOD_VBOXDRV"
if test "$?" -ne 0 || test ! -h "/dev/vboxdrv" || test ! -h "/dev/vboxdrvu" ; then
errorprint "Failed to create device link for $MOD_VBOXDRV."
exit 1
fi
fi
# Load VBoxNetAdp
if test -f "$DIR_CONF/vboxnet.conf"; then
add_driver "$MOD_VBOXNET" "$DESC_VBOXNET" "$FATALOP"
load_module "drv/$MOD_VBOXNET" "$DESC_VBOXNET" "$FATALOP"
fi
# If both vboxinst_vboxbow and vboxinst_vboxflt exist, bail.
if test -f "$PKG_INSTALL_ROOT/etc/vboxinst_vboxflt" && test -f "$PKG_INSTALL_ROOT/etc/vboxinst_vboxbow"; then
errorprint "Force-install files '$PKG_INSTALL_ROOT/etc/vboxinst_vboxflt' and '$PKG_INSTALL_ROOT/etc/vboxinst_vboxbow' both exist."
errorprint "Cannot load $DESC_VBOXFLT and $DESC_VBOXBOW drivers at the same time."
return 1
fi
# If the force-install files exists, install blindly
if test -f "$PKG_INSTALL_ROOT/etc/vboxinst_vboxflt"; then
subprint "Detected: Force-load file $PKG_INSTALL_ROOT/etc/vboxinst_vboxflt."
load_vboxflt
elif test -f "$PKG_INSTALL_ROOT/etc/vboxinst_vboxbow"; then
subprint "Detected: Force-load file $PKG_INSTALL_ROOT/etc/vboxinst_vboxbow."
load_vboxbow
else
# If host is S10 or S11 (< snv_159) or vboxbow isn't shipped, then load vboxflt
if test "$HOST_OS_MAJORVERSION" -eq 10 \
|| (test "$HOST_OS_MAJORVERSION" -eq 11 && test "$HOST_OS_MINORVERSION" -lt 159) \
|| test ! -f "$DIR_CONF/vboxbow.conf"; then
load_vboxflt
else
# For S11 snv_159+ load vboxbow
load_vboxbow
fi
fi
# Load VBoxUSBMon, VBoxUSB
try_vboxusb="no"
if test -f "$DIR_CONF/vboxusbmon.conf"; then
if test -f "$PKG_INSTALL_ROOT/etc/vboxinst_vboxusb"; then
subprint "Detected: Force-load file $PKG_INSTALL_ROOT/etc/vboxinst_vboxusb."
try_vboxusb="yes"
else
# For VirtualBox 3.1 the new USB code requires Nevada > 123 i.e. S12+ or S11 b124+
if test "$HOST_OS_MAJORVERSION" -gt 11 \
|| (test "$HOST_OS_MAJORVERSION" -eq 11 && test "$HOST_OS_MINORVERSION" -gt 123); then
try_vboxusb="yes"
else
warnprint "Solaris 11 build 124 or higher required for USB support. Skipped installing USB support."
fi
fi
fi
if test "x$try_vboxusb" = "xyes"; then
# Add a group "vboxuser" (8-character limit) for USB access.
# All users which need host USB-passthrough support will have to be added to this group.
groupadd vboxuser >/dev/null 2>&1
add_driver "$MOD_VBOXUSBMON" "$DESC_VBOXUSBMON" "$FATALOP" "not-$NULLOP" "'* 0666 root sys'"
load_module "drv/$MOD_VBOXUSBMON" "$DESC_VBOXUSBMON" "$FATALOP"
chown root:vboxuser "/devices/pseudo/vboxusbmon@0:vboxusbmon"
# Add vboxusbmon to devlink.tab
sed -e '/name=vboxusbmon/d' "$PKG_INSTALL_ROOT/etc/devlink.tab" > "$PKG_INSTALL_ROOT/etc/devlink.vbox"
echo "type=ddi_pseudo;name=vboxusbmon \D" >> "$PKG_INSTALL_ROOT/etc/devlink.vbox"
chmod 0644 "$PKG_INSTALL_ROOT/etc/devlink.vbox"
chown root:$group "$PKG_INSTALL_ROOT/etc/devlink.vbox"
mv -f "$PKG_INSTALL_ROOT/etc/devlink.vbox" "$PKG_INSTALL_ROOT/etc/devlink.tab"
# Create the device link for non-remote installs
if test "$REMOTEINST" -eq 0; then
/usr/sbin/devfsadm -i "$MOD_VBOXUSBMON"
if test "$?" -ne 0; then
errorprint "Failed to create device link for $MOD_VBOXUSBMON."
exit 1
fi
fi
# Add vboxusb if present
# This driver is special, we need it in the boot-archive but since there is no
# USB device to attach to now (it's done at runtime) it will fail to attach so
# redirect attaching failure output to /dev/null
if test -f "$DIR_CONF/vboxusb.conf"; then
add_driver "$MOD_VBOXUSB" "$DESC_VBOXUSB" "$FATALOP" "$NULLOP"
load_module "drv/$MOD_VBOXUSB" "$DESC_VBOXUSB" "$FATALOP"
fi
fi
return $?
}
# remove_drivers([fatal])
# failure: depends on [fatal]
remove_drivers()
{
fatal=$1
# Figure out group to use for /etc/devlink.tab (before Solaris 11 SRU6
# it was always using group sys)
group=sys
if [ -f "$PKG_INSTALL_ROOT/etc/dev/reserved_devnames" ]; then
# Solaris 11 SRU6 and later use group root (check a file which isn't
# tainted by VirtualBox install scripts and allow no other group)
refgroup=`LC_ALL=C /usr/bin/ls -lL "$PKG_INSTALL_ROOT/etc/dev/reserved_devnames" | awk '{ print $4 }' 2>/dev/null`
if [ $? -eq 0 -a "x$refgroup" = "xroot" ]; then
group=root
fi
unset refgroup
fi
# Remove vboxdrv[u] from devlink.tab
if test -f "$PKG_INSTALL_ROOT/etc/devlink.tab"; then
devlinkfound=`cat "$PKG_INSTALL_ROOT/etc/devlink.tab" | grep vboxdrv`
if test -n "$devlinkfound"; then
sed -e '/name=vboxdrv/d' -e '/name=vboxdrvu/d' "$PKG_INSTALL_ROOT/etc/devlink.tab" > "$PKG_INSTALL_ROOT/etc/devlink.vbox"
chmod 0644 "$PKG_INSTALL_ROOT/etc/devlink.vbox"
chown root:$group "$PKG_INSTALL_ROOT/etc/devlink.vbox"
mv -f "$PKG_INSTALL_ROOT/etc/devlink.vbox" "$PKG_INSTALL_ROOT/etc/devlink.tab"
fi
# Remove vboxusbmon from devlink.tab
devlinkfound=`cat "$PKG_INSTALL_ROOT/etc/devlink.tab" | grep vboxusbmon`
if test -n "$devlinkfound"; then
sed -e '/name=vboxusbmon/d' "$PKG_INSTALL_ROOT/etc/devlink.tab" > "$PKG_INSTALL_ROOT/etc/devlink.vbox"
chmod 0644 "$PKG_INSTALL_ROOT/etc/devlink.vbox"
chown root:$group "$PKG_INSTALL_ROOT/etc/devlink.vbox"
mv -f "$PKG_INSTALL_ROOT/etc/devlink.vbox" "$PKG_INSTALL_ROOT/etc/devlink.tab"
fi
fi
unload_module "$MOD_VBOXUSB" "$DESC_VBOXUSB" 0 "$fatal"
rem_driver "$MOD_VBOXUSB" "$DESC_VBOXUSB" "$fatal"
unload_module "$MOD_VBOXUSBMON" "$DESC_VBOXUSBMON" 0 "$fatal"
rem_driver "$MOD_VBOXUSBMON" "$DESC_VBOXUSBMON" "$fatal"
unload_module "$MOD_VBOXFLT" "$DESC_VBOXFLT" 0 "$fatal"
rem_driver "$MOD_VBOXFLT" "$DESC_VBOXFLT" "$fatal"
unload_module "$MOD_VBOXBOW" "$DESC_VBOXBOW" 0 "$fatal"
rem_driver "$MOD_VBOXBOW" "$DESC_VBOXBOW" "$fatal"
unload_module "$MOD_VBOXNET" "$DESC_VBOXNET" 0 "$fatal"
rem_driver "$MOD_VBOXNET" "$DESC_VBOXNET" "$fatal"
unload_module "$MOD_VBOXDRV" "$DESC_VBOXDRV" 1 "$fatal"
rem_driver "$MOD_VBOXDRV" "$DESC_VBOXDRV" "$fatal"
# remove devlinks
if test -h "$PKG_INSTALL_ROOT/dev/vboxdrv" || test -f "$PKG_INSTALL_ROOT/dev/vboxdrv"; then
rm -f "$PKG_INSTALL_ROOT/dev/vboxdrv"
fi
if test -h "$PKG_INSTALL_ROOT/dev/vboxdrvu" || test -f "$PKG_INSTALL_ROOT/dev/vboxdrvu"; then
rm -f "$PKG_INSTALL_ROOT/dev/vboxdrvu"
fi
if test -h "$PKG_INSTALL_ROOT/dev/vboxusbmon" || test -f "$PKG_INSTALL_ROOT/dev/vboxusbmon"; then
rm -f "$PKG_INSTALL_ROOT/dev/vboxusbmon"
fi
# unpatch nwam/dhcpagent fix
nwamfile="$PKG_INSTALL_ROOT/etc/nwam/llp"
nwambackupfile=$nwamfile.vbox
if test -f "$nwamfile"; then
sed -e '/vboxnet/d' $nwamfile > $nwambackupfile
mv -f $nwambackupfile $nwamfile
fi
# remove netmask configuration
if test -h "$PKG_INSTALL_ROOT/etc/netmasks"; then
nmaskfile="$PKG_INSTALL_ROOT/etc/inet/netmasks"
else
nmaskfile="$PKG_INSTALL_ROOT/etc/netmasks"
fi
nmaskbackupfile=$nmaskfile.vbox
if test -f "$nmaskfile"; then
sed -e '/#VirtualBox_SectionStart/,/#VirtualBox_SectionEnd/d' $nmaskfile > $nmaskbackupfile
mv -f $nmaskbackupfile $nmaskfile
fi
if test $UPDATEBOOTARCHIVE -eq 1; then
update_boot_archive
fi
return 0
}
# install_python_bindings(pythonbin pythondesc)
# failure: non fatal
install_python_bindings()
{
pythonbin="$1"
pythondesc="$2"
# The python binary might not be there, so just exit silently
if test -z "$pythonbin"; then
return 0
fi
if test -z "$pythondesc"; then
errorprint "missing argument to install_python_bindings"
return 1
fi
infoprint "Python found: $pythonbin, installing bindings..."
# check if python has working distutils
"$pythonbin" -c "from distutils.core import setup" > /dev/null 2>&1
if test "$?" -ne 0; then
subprint "Skipped: $pythondesc install is unusable, missing package 'distutils'"
return 0
fi
# Pass install path via environment
export VBOX_INSTALL_PATH
mkdir -p "$CONFIG_DIR"
rm -f "$CONFIG_DIR/python-$CONFIG_FILES"
$SHELL -c "cd \"$VBOX_INSTALL_PATH\"/sdk/installer && \"$pythonbin\" ./vboxapisetup.py install \
--record \"$CONFIG_DIR/python-$CONFIG_FILES\"" > /dev/null 2>&1
if test "$?" -eq 0; then
cat "$CONFIG_DIR/python-$CONFIG_FILES" >> "$CONFIG_DIR/$CONFIG_FILES"
else
errorprint "Failed to install bindings for $pythondesc"
fi
rm "$CONFIG_DIR/python-$CONFIG_FILES"
# Remove files created by Python API setup.
rm -rf $VBOX_INSTALL_PATH/sdk/installer/build
return 0
}
# is_process_running(processname)
# returns 1 if the process is running, 0 otherwise
is_process_running()
{
if test -z "$1"; then
errorprint "missing argument to is_process_running()"
exit 1
fi
procname="$1"
$BIN_PGREP "$procname" > /dev/null 2>&1
if test "$?" -eq 0; then
return 1
fi
return 0
}
# stop_process(processname)
# failure: depends on [fatal]
stop_process()
{
if test -z "$1"; then
errorprint "missing argument to stop_process()"
exit 1
fi
procname="$1"
is_process_running "$procname"
if test "$?" -eq 1; then
$BIN_PKILL "$procname"
sleep 2
is_process_running "$procname"
if test "$?" -eq 1; then
subprint "Terminating: $procname ...FAILED!"
if test "x$fatal" = "x$FATALOP"; then
exit 1
fi
else
subprint "Terminated: $procname"
fi
fi
}
# start_service(servicename, shortFMRI pretty printing, full FMRI, log-file path)
# failure: non-fatal
start_service()
{
if test -z "$1" || test -z "$2" || test -z "$3" || test -z "$4"; then
errorprint "missing argument to enable_service()"
exit 1
fi
# Since S11 the way to import a manifest is via restarting manifest-import which is asynchronous and can
# take a while to complete, using disable/enable -s doesn't work either. So we restart it, and poll in
# 1 second intervals to see if our service has been successfully imported and timeout after 'cmax' seconds.
cmax=32
cslept=0
success=0
$BIN_SVCS "$3" >/dev/null 2>&1
while test "$?" -ne 0;
do
sleep 1
cslept=`expr $cslept + 1`
if test "$cslept" -eq "$cmax"; then
success=1
break
fi
$BIN_SVCS "$3" >/dev/null 2>&1
done
if test "$success" -eq 0; then
$BIN_SVCADM enable -s "$3"
if test "$?" -eq 0; then
subprint "Enabled: $1"
return 0
else
warnprint "Enabling $1 ...FAILED."
warnprint "Refer $4 for details."
fi
else
warnprint "Importing $1 ...FAILED."
warnprint "Refer /var/svc/log/system-manifest-import:default.log for details."
fi
return 1
}
# stop_service(servicename, shortFMRI-suitable for grep, full FMRI)
# failure: non fatal
stop_service()
{
if test -z "$1" || test -z "$2" || test -z "$3"; then
errorprint "missing argument to stop_service()"
exit 1
fi
servicefound=`$BIN_SVCS -H "$2" 2>/dev/null | grep '^online'`
if test ! -z "$servicefound"; then
$BIN_SVCADM disable -s "$3"
# Don't delete the manifest, this is handled by the manifest class action
# $BIN_SVCCFG delete "$3"
if test "$?" -eq 0; then
subprint "Disabled: $1"
else
subprint "Disabling: $1 ...ERROR(S)."
fi
fi
}
# plumb vboxnet0 instance
# failure: non fatal
plumb_net()
{
# S11 175a renames vboxnet0 as 'netX', undo this and rename it back (Solaris 12, Solaris 11.4 or newer)
if test "$HOST_OS_MAJORVERSION" -ge 12 || (test "$HOST_OS_MAJORVERSION" -eq 11 && test "$HOST_OS_MINORVERSION" -ge 175); then
vanityname=`dladm show-phys -po link,device | grep vboxnet0 | cut -f1 -d':'`
if test "$?" -eq 0 && test ! -z "$vanityname" && test "x$vanityname" != "xvboxnet0"; then
dladm rename-link "$vanityname" vboxnet0
if test "$?" -ne 0; then
errorprint "Failed to rename vanity interface ($vanityname) to vboxnet0"
fi
fi
fi
# use ipadm for Solaris 12, Solaris 11.5 or newer
if test "$HOST_OS_MAJORVERSION" -ge 12 || (test "$HOST_OS_MAJORVERSION" -eq 11 && test "$HOST_OS_MINORVERSION" -ge 176); then
$BIN_IPADM create-ip vboxnet0
if test "$?" -eq 0; then
$BIN_IPADM create-addr -T static -a local="192.168.56.1/24" "vboxnet0/v4addr"
if test "$?" -eq 0; then
subprint "Configured: NetAdapter 'vboxnet0'"
else
warnprint "Failed to create local address for vboxnet0!"
fi
else
warnprint "Failed to create IP instance for vboxnet0!"
fi
else
$BIN_IFCONFIG vboxnet0 plumb
$BIN_IFCONFIG vboxnet0 up
if test "$?" -eq 0; then
$BIN_IFCONFIG vboxnet0 192.168.56.1 netmask 255.255.255.0 up
# /etc/netmasks is a symlink, older installers replaced this with
# a copy of the actual file, repair that behaviour here.
recreatelink=0
if test -h "$PKG_INSTALL_ROOT/etc/netmasks"; then
nmaskfile="$PKG_INSTALL_ROOT/etc/inet/netmasks"
else
nmaskfile="$PKG_INSTALL_ROOT/etc/netmasks"
recreatelink=1
fi
# add the netmask to stay persistent across host reboots
nmaskbackupfile=$nmaskfile.vbox
if test -f $nmaskfile; then
sed -e '/#VirtualBox_SectionStart/,/#VirtualBox_SectionEnd/d' $nmaskfile > $nmaskbackupfile
if test "$recreatelink" -eq 1; then
# Check after removing our settings if /etc/netmasks is identifcal to /etc/inet/netmasks
anydiff=`diff $nmaskbackupfile "$PKG_INSTALL_ROOT/etc/inet/netmasks"`
if test ! -z "$anydiff"; then
# User may have some custom settings in /etc/netmasks, don't overwrite /etc/netmasks!
recreatelink=2
fi
fi
echo "#VirtualBox_SectionStart" >> $nmaskbackupfile
inst=0
networkn=56
while test "$inst" -ne 1; do
echo "192.168.$networkn.0 255.255.255.0" >> $nmaskbackupfile
inst=`expr $inst + 1`
networkn=`expr $networkn + 1`
done
echo "#VirtualBox_SectionEnd" >> $nmaskbackupfile
mv -f $nmaskbackupfile $nmaskfile
# Recreate /etc/netmasks as a link if necessary
if test "$recreatelink" -eq 1; then
cp -f "$PKG_INSTALL_ROOT/etc/netmasks" "$PKG_INSTALL_ROOT/etc/inet/netmasks"
ln -sf ./inet/netmasks "$PKG_INSTALL_ROOT/etc/netmasks"
elif test "$recreatelink" -eq 2; then
warnprint "/etc/netmasks is a symlink (to /etc/inet/netmasks) that older"
warnprint "VirtualBox installers incorrectly overwrote. Now the contents"
warnprint "of /etc/netmasks and /etc/inet/netmasks differ, therefore "
warnprint "VirtualBox will not attempt to overwrite /etc/netmasks as a"
warnprint "symlink to /etc/inet/netmasks. Please resolve this manually"
warnprint "by updating /etc/inet/netmasks and creating /etc/netmasks as a"
warnprint "symlink to /etc/inet/netmasks"
fi
fi
else
# Should this be fatal?
warnprint "Failed to bring up vboxnet0!"
fi
fi
}
# unplumb all vboxnet instances
# failure: fatal
unplumb_net()
{
inst=0
# use ipadm for Solaris 12, Solaris 11.5 or newer
if test "$HOST_OS_MAJORVERSION" -ge 12 || (test "$HOST_OS_MAJORVERSION" -eq 11 && test "$HOST_OS_MINORVERSION" -ge 176); then
while test "$inst" -ne $MOD_VBOXNET_INST; do
vboxnetup=`$BIN_IPADM show-addr -p -o addrobj vboxnet$inst >/dev/null 2>&1`
if test "$?" -eq 0; then
$BIN_IPADM delete-addr vboxnet$inst/v4addr
$BIN_IPADM delete-ip vboxnet$inst
if test "$?" -ne 0; then
errorprint "VirtualBox NetAdapter 'vboxnet$inst' couldn't be removed (probably in use)."
if test "x$fatal" = "x$FATALOP"; then
exit 1
fi
fi
fi
inst=`expr $inst + 1`
done
else
inst=0
while test "$inst" -ne $MOD_VBOXNET_INST; do
vboxnetup=`$BIN_IFCONFIG vboxnet$inst >/dev/null 2>&1`
if test "$?" -eq 0; then
$BIN_IFCONFIG vboxnet$inst unplumb
if test "$?" -ne 0; then
errorprint "VirtualBox NetAdapter 'vboxnet$inst' couldn't be unplumbed (probably in use)."
if test "x$fatal" = "x$FATALOP"; then
exit 1
fi
fi
fi
# unplumb vboxnet0 ipv6
vboxnetup=`$BIN_IFCONFIG vboxnet$inst inet6 >/dev/null 2>&1`
if test "$?" -eq 0; then
$BIN_IFCONFIG vboxnet$inst inet6 unplumb
if test "$?" -ne 0; then
errorprint "VirtualBox NetAdapter 'vboxnet$inst' IPv6 couldn't be unplumbed (probably in use)."
if test "x$fatal" = "x$FATALOP"; then
exit 1
fi
fi
fi
inst=`expr $inst + 1`
done
fi
}
# cleanup_install([fatal])
# failure: depends on [fatal]
cleanup_install()
{
fatal=$1
# No-Op for remote installs
if test "$REMOTEINST" -eq 1; then
return 0
fi
# stop the services
stop_service "Web service" "virtualbox/webservice" "svc:/application/virtualbox/webservice:default"
stop_service "Balloon control service" "virtualbox/balloonctrl" "svc:/application/virtualbox/balloonctrl:default"
stop_service "Autostart service" "virtualbox/autostart" "svc:/application/virtualbox/autostart:default"
stop_service "Zone access service" "virtualbox/zoneaccess" "svc:/application/virtualbox/zoneaccess:default"
# DEBUG x4600b: verify that the ZoneAccess process is really gone
is_process_running "VBoxZoneAccess"
if test "$?" -eq 1; then
warnprint "VBoxZoneAccess is alive despite its service being dead. Killing..."
stop_process "VBoxZoneAccess"
fi
# unplumb all vboxnet instances for non-remote installs
unplumb_net
# Stop our other daemons, non-fatal
stop_process "VBoxNetDHCP"
stop_process "VBoxNetNAT"
# Stop VBoxSVC quickly using SIGUSR1
procname="VBoxSVC"
procpid=`ps -eo pid,fname | grep $procname | grep -v grep | awk '{ print $1 }'`
if test ! -z "$procpid" && test "$procpid" -ge 0; then
kill -USR1 $procpid
# Sleep a while and check if VBoxSVC is still running, if so fail uninstallation.
sleep 2
is_process_running "VBoxSVC"
if test "$?" -eq 1; then
errorprint "Cannot uninstall VirtualBox while VBoxSVC (pid $procpid) is still running."
errorprint "Please shutdown all VMs and VirtualBox frontends before uninstalling VirtualBox."
exit 1
fi
# Some VMs might still be alive after VBoxSVC as they poll less frequently before killing themselves
# Just check for VBoxHeadless & VirtualBox frontends for now.
is_process_running "VBoxHeadless"
if test "$?" -eq 1; then
errorprint "Cannot uninstall VirtualBox while VBoxHeadless is still running."
errorprint "Please shutdown all VMs and VirtualBox frontends before uninstalling VirtualBox."
exit 1
fi
is_process_running "VirtualBox"
if test "$?" -eq 1; then
errorprint "Cannot uninstall VirtualBox while any VM is still running."
errorprint "Please shutdown all VMs and VirtualBox frontends before uninstalling VirtualBox."
exit 1
fi
fi
# Remove stuff installed for the Python bindings.
if [ -r "$CONFIG_DIR/$CONFIG_FILES" ]; then
rm -f `cat "$CONFIG_DIR/$CONFIG_FILES"` 2> /dev/null
rm -f "$CONFIG_DIR/$CONFIG_FILES" 2> /dev/null
rmdir "$CONFIG_DIR" 2> /dev/null
fi
}
# postinstall()
# !! failure is always fatal
postinstall()
{
infoprint "Detected Solaris $HOST_OS_MAJORVERSION Version $HOST_OS_MINORVERSION"
infoprint "Loading VirtualBox kernel modules..."
install_drivers
if test "$?" -eq 0; then
if test -f "$DIR_CONF/vboxnet.conf"; then
# nwam/dhcpagent fix
nwamfile="$PKG_INSTALL_ROOT/etc/nwam/llp"
nwambackupfile=$nwamfile.vbox
if test -f "$nwamfile"; then
sed -e '/vboxnet/d' $nwamfile > $nwambackupfile
# add all vboxnet instances as static to nwam
inst=0
networkn=56
while test "$inst" -ne 1; do
echo "vboxnet$inst static 192.168.$networkn.1" >> $nwambackupfile
inst=`expr $inst + 1`
networkn=`expr $networkn + 1`
done
mv -f $nwambackupfile $nwamfile
fi
# plumb and configure vboxnet0 for non-remote installs
if test "$REMOTEINST" -eq 0; then
plumb_net
fi
fi
if test -f "$PKG_INSTALL_ROOT/var/svc/manifest/application/virtualbox/virtualbox-webservice.xml" \
|| test -f "$PKG_INSTALL_ROOT/var/svc/manifest/application/virtualbox/virtualbox-zoneaccess.xml" \
|| test -f "$PKG_INSTALL_ROOT/var/svc/manifest/application/virtualbox/virtualbox-balloonctrl.xml"\
|| test -f "$PKG_INSTALL_ROOT/var/svc/manifest/application/virtualbox/virtualbox-autostart.xml"; then
infoprint "Configuring services..."
if test "$REMOTEINST" -eq 1; then
subprint "Skipped for targeted installs."
else
# Since S11 the way to import a manifest is via restarting manifest-import which is asynchronous and can
# take a while to complete, using disable/enable -s doesn't work either. So we restart it, and poll in
# 1 second intervals to see if our service has been successfully imported and timeout after 'cmax' seconds.
$BIN_SVCADM restart svc:system/manifest-import:default
# Start ZoneAccess service, other services are disabled by default.
start_service "Zone access service" "virtualbox/zoneaccess" "svc:/application/virtualbox/zoneaccess:default" \
"/var/svc/log/application-virtualbox-zoneaccess:default.log"
fi
fi
# Update mime and desktop databases to get the right menu entries
# and icons. There is still some delay until the GUI picks it up,
# but that cannot be helped.
if test -d "$PKG_INSTALL_ROOT/usr/share/icons"; then
infoprint "Installing MIME types and icons..."
if test "$REMOTEINST" -eq 0; then
/usr/bin/update-mime-database /usr/share/mime >/dev/null 2>&1
/usr/bin/update-desktop-database -q 2>/dev/null
else
subprint "Skipped for targeted installs."
fi
fi
if test -f "$VBOX_INSTALL_PATH/sdk/installer/vboxapisetup.py" || test -h "$VBOX_INSTALL_PATH/sdk/installer/vboxapisetup.py"; then
# Install python bindings for non-remote installs
if test "$REMOTEINST" -eq 0; then
infoprint "Installing Python bindings..."
# Loop over all usual suspect Python executable names and try
# installing the VirtualBox API bindings. Needs to prevent
# double installs which waste quite a bit of time.
PYTHONS=""
for p in python2.4 python2.5 python2.6 python2.7 python2 python3.3 python3.4 python3.5 python3.6 python3.7 python3.8 python3.9 python3.10 python3 python; do
if [ "`$p -c 'import sys
if sys.version_info >= (2, 4) and (sys.version_info < (3, 0) or sys.version_info >= (3, 3)):
print(\"test\")' 2> /dev/null`" != "test" ]; then
continue
fi
# Get python major/minor version, and skip if it was
# already covered. Uses grep -F to avoid trouble with '.'
# matching any char.
pyvers="`$p -c 'import sys
print("%s.%s" % (sys.version_info[0], sys.version_info[1]))' 2> /dev/null`"
if echo "$PYTHONS" | /usr/xpg4/bin/grep -Fq ":$pyvers:"; then
continue
fi
# Record which version will be installed. If it fails there
# is no point trying with different executable/symlink
# reporting the same version.
PYTHONS="$PYTHONS:$pyvers:"
install_python_bindings "$p" "Python $pyvers"
done
if [ -z "$PYTHONS" ]; then
warnprint "Python (2.4 to 2.7 or 3.3 and later) unavailable, skipping bindings installation."
fi
else
warnprint "Skipped installing Python bindings. Run, as root, 'vboxapisetup.py install' manually from the booted system."
fi
fi
update_boot_archive
return 0
else
errorprint "Failed to install drivers"
exit 666
fi
return 1
}
# preremove([fatal])
# failure: depends on [fatal]
preremove()
{
fatal=$1
cleanup_install "$fatal"
remove_drivers "$fatal"
if test "$?" -eq 0; then
return 0;
fi
return 1
}
# And it begins...
if test "x${PKG_INSTALL_ROOT:=/}" != "x/"; then
BASEDIR_OPT="-b $PKG_INSTALL_ROOT"
BASEDIR_PKGOPT="-R $PKG_INSTALL_ROOT"
REMOTEINST=1
fi
find_bins
check_root
check_isa
check_zone
get_sysinfo
# Get command line options
while test $# -gt 0;
do
case "$1" in
--postinstall | --preremove | --installdrivers | --removedrivers | --setupdrivers)
drvop="$1"
;;
--fatal)
fatal="$FATALOP"
;;
--silent)
ISSILENT="$SILENTOP"
;;
--ips)
ISIPS="$IPSOP"
;;
--altkerndir)
# Use alternate kernel driver config folder (dev only)
DIR_CONF="/usr/kernel/drv"
;;
--sh-trace) # forwarded pkgadd -v
set -x
;;
--help)
printusage
exit 1
;;
*)
# Take a hard line on invalid options.
errorprint "Invalid command line option: \"$1\""
exit 1;
;;
esac
shift
done
case "$drvop" in
--postinstall)
check_module_arch
postinstall
;;
--preremove)
preremove "$fatal"
;;
--installdrivers)
check_module_arch
install_drivers
;;
--removedrivers)
remove_drivers "$fatal"
;;
--setupdrivers)
remove_drivers "$fatal"
infoprint "Installing VirtualBox drivers:"
install_drivers
;;
*)
printusage
exit 1
esac
exit "$?"
|