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
|
#
# packages.py: package management - mainly package installation
#
# Erik Troan <ewt@redhat.com>
# Matt Wilson <msw@redhat.com>
# Michael Fulbright <msf@redhat.com>
# Jeremy Katz <katzj@redhat.com>
#
# Copyright 2001-2003 Red Hat, Inc.
#
# This software may be freely redistributed under the terms of the GNU
# library public license.
#
# You should have received a copy of the GNU Library Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
import iutil
import isys
import rpm
import os
import timer
import time
import sys
import string
import pcmcia
import language
import fsset
import kudzu
from flags import flags
from product import *
from constants import *
from syslogd import syslog
from hdrlist import PKGTYPE_MANDATORY, PKGTYPE_DEFAULT, DependencyChecker
from installmethod import FileCopyException
from rhpl.log import log
from rhpl.translate import _
import rhpl.arch
def queryUpgradeContinue(intf, dir):
if dir == DISPATCH_FORWARD:
return
rc = intf.messageWindow(_("Proceed with upgrade?"),
_("The file systems of the Linux installation "
"you have chosen to upgrade have already been "
"mounted. You cannot go back past this point. "
"\n\n") +
_( "Would you like to continue with the upgrade?"),
type = "yesno")
if rc == 0:
sys.exit(0)
return DISPATCH_FORWARD
def doPostAction(id, instPath):
id.instClass.postAction(instPath, flags.serial)
def firstbootConfiguration(id, instPath):
if id.firstboot == FIRSTBOOT_RECONFIG:
f = open(instPath + '/etc/reconfigSys', 'w+')
f.close()
elif id.firstboot == FIRSTBOOT_SKIP:
f = open(instPath + '/etc/sysconfig/firstboot', 'w+')
f.write('RUN_FIRSTBOOT=NO')
f.close()
return
def writeConfiguration(id, instPath):
log("Writing main configuration")
if not flags.test:
id.write(instPath)
def writeKSConfiguration(id, instPath):
log("Writing autokickstart file")
if not flags.test:
fn = instPath + "/root/anaconda-ks.cfg"
else:
fn = "/tmp/anaconda-ks.cfg"
id.writeKS(fn)
def writeXConfiguration(id, instPath):
testmode = flags.test
# comment out to test
if testmode:
return
# end code to comment to test
# uncomment to test writing X config in test mode
# try:
# os.mkdir("/tmp/etc")
# except:
# pass
# try:
# os.mkdir("/tmp/etc/X11")
# except:
# pass
# instPath = '/'
# end code for test writing
if id.xsetup.skipx:
return
xserver = id.videocard.primaryCard().getXServer()
if not xserver:
return
log("Writing X configuration")
if not testmode:
fn = instPath
if os.access (instPath + "/etc/X11/X", os.R_OK):
os.rename (instPath + "/etc/X11/X",
instPath + "/etc/X11/X.rpmsave")
try:
os.unlink (instPath + "/etc/X11/X")
except OSError:
pass
os.symlink ("../../usr/X11R6/bin/" + xserver,
instPath + "/etc/X11/X")
else:
fn = "/tmp/"
id.xsetup.write(fn+"/etc/X11", id.mouse, id.keyboard)
id.desktop.write(instPath)
def readPackages(intf, method, id):
if id.grpset:
grpset = id.grpset
hdrlist = id.grpset.hdrlist
doselect = 0
else:
grpset = None
hdrlist = None
doselect = 1
while hdrlist is None:
w = intf.waitWindow(_("Reading"), _("Reading package information..."))
try:
hdrlist = method.readHeaders()
except FileCopyException:
w.pop()
method.unmountCD()
intf.messageWindow(_("Error"),
_("Unable to read header list. This may be "
"due to a missing file or bad media. "
"Press <return> to try again."))
continue
w.pop()
while grpset is None:
try:
grpset = method.readComps(hdrlist)
except FileCopyException:
method.unmountCD()
intf.messageWindow(_("Error"),
_("Unable to read comps file. This may be "
"due to a missing file or bad media. "
"Press <return> to try again."))
continue
while iutil.getArch() == "ia64":
try:
method.mergeFullHeaders(hdrlist)
break
except FileCopyException:
method.unmountCD()
intf.messageWindow(_("Error"),
_("Unable to merge header list. This may be "
"due to a missing file or bad media. "
"Press <return> to try again."))
# this is a crappy hack, but I don't want bug reports from these people
if (iutil.getArch() == "i386") and (not grpset.hdrlist.has_key("kernel")):
intf.messageWindow(_("Error"),
_("You are trying to install on a machine "
"which isn't supported by this release of "
"%s.") %(productName,),
type="custom", custom_icon="error",
custom_buttons=[_("_Exit")])
sys.exit(0)
id.grpset = grpset
if doselect:
id.instClass.setGroupSelection(grpset, intf)
id.instClass.setPackageSelection(hdrlist, intf)
def handleX11Packages(dir, intf, disp, id, instPath):
if dir == DISPATCH_BACK:
return
# skip X setup if it is not being installed
#
# uncomment this block if you want X configuration to be presented
#
# START BLOCK
# if (not id.grpset.hdrlist.has_key('XFree86') or
# not id.grpset.hdrlist['XFree86'].isSelected()):
# disp.skipStep("videocard")
# disp.skipStep("monitor")
# disp.skipStep("xcustom")
# disp.skipStep("writexconfig")
# id.xsetup.skipx = 1
# elif disp.stepInSkipList("videocard"):
# # if X is being installed, but videocard step skipped
# # need to turn it back on
# disp.skipStep("videocard", skip=0)
# disp.skipStep("monitor", skip=0)
# disp.skipStep("xcustom", skip=0)
# disp.skipStep("writexconfig", skip=0)
# id.xsetup.skipx = 0
# END BLOCK
# set default runlevel based on packages
gnomeSelected = (id.grpset.hdrlist.has_key('gnome-session')
and id.grpset.hdrlist['gnome-session'].isSelected())
kdeSelected = (id.grpset.hdrlist.has_key('kdebase')
and id.grpset.hdrlist['kdebase'].isSelected())
if gnomeSelected:
id.desktop.setDefaultDesktop("GNOME")
elif kdeSelected:
id.desktop.setDefaultDesktop("KDE")
if (gnomeSelected or kdeSelected) and (not flags.serial):
id.desktop.setDefaultRunLevel(5)
# verifies that monitor is not Unprobed, and if so we can skip monitor question
def checkMonitorOK(monitor, dispatch):
rc = 0
if monitor is not None:
if monitor.getMonitorID() != "Unprobed Monitor":
rc = 1
dispatch.skipStep("monitor", skip=rc)
# sets a reasonable default for X settings.
def setSaneXSettings(xsetup):
if xsetup is not None and xsetup.xhwstate is not None:
if not xsetup.imposed_sane_default:
# XXX HACK see if we have a user specified LCD display
import re
regx = re.compile("LCD Panel .*x.*")
monid = xsetup.xhwstate.monitor.getMonitorID()
lcdres = None
if regx.match(monid):
for testres in ["640x480", "800x600", "1024x480", "1024x768",
"1280x960", "1280x1024", "1400x1050",
"1600x1200"]:
if string.find(monid, testres) != -1:
lcdres = testres
break
if lcdres is not None:
xsetup.xhwstate.set_resolution(lcdres)
else:
xsetup.xhwstate.choose_sane_default()
xsetup.imposed_sane_default = 1
def getAnacondaTS(instPath = None):
if instPath:
ts = rpm.TransactionSet(instPath)
else:
ts = rpm.TransactionSet()
ts.setVSFlags(~(rpm.RPMVSF_NORSA|rpm.RPMVSF_NODSA))
ts.setFlags(rpm.RPMTRANS_FLAG_ANACONDA)
# set color if needed. FIXME: why isn't this the default :/
if (rhpl.arch.canonArch.startswith("ppc64") or
rhpl.arch.canonArch in ("s390x", "sparc64", "x86_64", "ia64")):
ts.setColor(3)
return ts
def checkDependencies(dir, intf, disp, id, instPath):
if dir == DISPATCH_BACK:
return
win = intf.waitWindow(_("Dependency Check"),
_("Checking dependencies in packages selected for installation..."))
# FIXME: we really don't need to build up a ts more than once
# granted, this is better than before still
if id.upgrade.get():
ts = getAnacondaTS(instPath)
how = "u"
else:
ts = getAnacondaTS()
how = "i"
# set the rpm log file to /dev/null so that we don't segfault
f = open("/dev/null", "w+")
rpm.setLogFile(f)
ts.scriptFd = f.fileno()
for p in id.grpset.hdrlist.pkgs.values():
if p.isSelected():
ts.addInstall(p.hdr, p.hdr, how)
depcheck = DependencyChecker(id.grpset, how)
id.dependencies = ts.check(depcheck.callback)
win.pop()
if depcheck.added and id.handleDeps == CHECK_DEPS:
disp.skipStep("dependencies", skip = 0)
log("FIXME: had dependency problems. resolved them without informing the user")
disp.skipStep("dependencies")
else:
disp.skipStep("dependencies")
return
# FIXME: I BROKE IT
# this is kind of hackish, but makes kickstart happy
if id.handleDeps == CHECK_DEPS:
pass
elif id.handleDeps == IGNORE_DEPS:
id.comps.selectDepCause(id.dependencies)
id.comps.unselectDeps(id.dependencies)
elif id.handleDeps == RESOLVE_DEPS:
id.comps.selectDepCause(id.dependencies)
id.comps.selectDeps(id.dependencies)
class InstallCallback:
def packageDownloadCB(self, state, amount):
self.progress.setPackageStatus(state, amount)
def cb(self, what, amount, total, h, (param)):
# first time here means we should pop the window telling
# user to wait until we get here
if not self.beenCalled:
self.beenCalled = 1
self.initWindow.pop()
if (what == rpm.RPMCALLBACK_TRANS_START):
# step 6 is the bulk of the transaction set
# processing time
if amount == 6:
self.progressWindow = \
self.progressWindowClass (_("Processing"),
_("Preparing to install..."),
total)
try:
self.incr = total / 10
except:
pass
if (what == rpm.RPMCALLBACK_TRANS_PROGRESS):
if self.progressWindow and amount > self.lastprogress + self.incr:
self.progressWindow.set (amount)
self.lastprogress = amount
if (what == rpm.RPMCALLBACK_TRANS_STOP and self.progressWindow):
self.progressWindow.pop ()
if (what == rpm.RPMCALLBACK_INST_OPEN_FILE):
# We don't want to start the timer until we get to the first
# file.
self.pkgTimer.start()
self.progress.setPackage(h)
self.progress.setPackageScale(0, 1)
self.instLog.write (self.modeText % (h[rpm.RPMTAG_NAME],
h[rpm.RPMTAG_VERSION],
h[rpm.RPMTAG_RELEASE],
h[rpm.RPMTAG_ARCH]))
self.instLog.flush ()
self.rpmFD = -1
self.size = h[rpm.RPMTAG_SIZE]
while self.rpmFD < 0:
try:
fn = self.method.getRPMFilename(h, self.pkgTimer,
callback=self.packageDownloadCB)
self.rpmFD = os.open(fn, os.O_RDONLY)
# Make sure this package seems valid
try:
hdr = self.ts.hdrFromFdno(self.rpmFD)
os.lseek(self.rpmFD, 0, 0)
# if we don't have a valid package, throw an error
if not hdr:
raise SystemError
except:
try:
os.close(self.rpmFD)
except:
pass
self.rpmFD = -1
raise FileCopyException
except:
self.method.unmountCD()
self.messageWindow(_("Error"),
_("The package %s-%s-%s cannot be opened. This is due "
"to a missing file or perhaps a corrupt package. "
"If you are installing from CD media this usually "
"means the CD media is corrupt, or the CD drive is "
"unable to read the media.\n\n"
"Press <return> to try again.") % (h['name'],
h['version'],
h['release']))
self.progress.setPackageStatus(_("Installing..."), None)
fn = self.method.unlinkFilename(fn)
return self.rpmFD
elif (what == rpm.RPMCALLBACK_INST_PROGRESS):
# RPM returns strange values sometimes
if amount > total:
amount = total
if not total or total == 0 or total == "0":
total = amount
self.progress.setPackageScale(amount, total)
elif (what == rpm.RPMCALLBACK_INST_CLOSE_FILE):
os.close (self.rpmFD)
self.progress.completePackage(h, self.pkgTimer)
self.progress.processEvents()
elif ((what == rpm.RPMCALLBACK_UNPACK_ERROR) or
(what == rpm.RPMCALLBACK_CPIO_ERROR)):
# we may want to make this error more fine-grained at some
# point
pkg = "%s-%s-%s" % (h[rpm.RPMTAG_NAME],
h[rpm.RPMTAG_VERSION],
h[rpm.RPMTAG_RELEASE])
self.messageWindow(_("Error Installing Package"),
_("There was an error installing %s. This "
"can indicate media failure, lack of disk "
"space, and/or hardware problems. This is "
"a fatal error and your install will be "
"aborted. Please verify your media and try "
"your install again.\n\n"
"Press the OK button to reboot "
"your system.") % (pkg,))
sys.exit(0)
else:
pass
self.progress.processEvents()
def __init__(self, messageWindow, progress, pkgTimer, method,
progressWindowClass, instLog, modeText, ts):
self.messageWindow = messageWindow
self.progress = progress
self.pkgTimer = pkgTimer
self.method = method
self.progressWindowClass = progressWindowClass
self.progressWindow = None
self.lastprogress = 0
self.incr = 20
self.instLog = instLog
self.modeText = modeText
self.beenCalled = 0
self.initWindow = None
self.ts = ts
def sortPackages(first, second):
# install packages in cd order (cd tag is 1000002)
one = None
two = None
if first[1000003] != None:
one = first[1000003]
if second[1000003] != None:
two = second[1000003]
if one == None or two == None:
one = 0
two = 0
if first[1000002] != None:
one = first[1000002]
if second[1000002] != None:
two = second[1000002]
if one < two:
return -1
elif one > two:
return 1
elif (string.lower(first[rpm.RPMTAG_NAME])
< string.lower(second[rpm.RPMTAG_NAME])):
return -1
elif (string.lower(first[rpm.RPMTAG_NAME])
> string.lower(second[rpm.RPMTAG_NAME])):
return 1
return 0
class rpmErrorClass:
def cb(self):
self.f.write (rpm.errorString () + "\n")
def __init__(self, f):
self.f = f
def doMigrateFilesystems(dir, thefsset, diskset, upgrade, instPath):
if dir == DISPATCH_BACK:
return DISPATCH_NOOP
if thefsset.haveMigratedFilesystems():
return DISPATCH_NOOP
thefsset.migrateFilesystems (instPath)
def turnOnFilesystems(dir, thefsset, diskset, partitions, upgrade, instPath):
if dir == DISPATCH_BACK:
log("unmounting filesystems")
thefsset.umountFilesystems(instPath)
return
if flags.setupFilesystems:
if not upgrade.get():
partitions.doMetaDeletes(diskset)
thefsset.setActive(diskset)
if not thefsset.isActive():
diskset.savePartitions ()
thefsset.checkBadblocks(instPath)
if not thefsset.volumesCreated:
thefsset.createLogicalVolumes(instPath)
thefsset.formatSwap(instPath)
thefsset.turnOnSwap(instPath)
thefsset.makeFilesystems (instPath)
thefsset.mountFilesystems (instPath)
def setupTimezone(timezone, upgrade, instPath, dir):
# we don't need this on an upgrade or going backwards
if upgrade.get() or (dir == DISPATCH_BACK):
return
# dont do this in test mode!
if flags.test:
return
os.environ["TZ"] = timezone.tz
tzfile = "/usr/share/zoneinfo/" + timezone.tz
if not os.access(tzfile, os.R_OK):
log("unable to set timezone")
else:
try:
iutil.copyFile(tzfile, "/etc/localtime")
except OSError, (errno, msg):
log("Error copying timezone (from %s): %s" %(tzfile, msg))
if iutil.getArch() == "s390":
return
args = [ "/usr/sbin/hwclock", "--hctosys" ]
if timezone.utc:
args.append("-u")
elif timezone.arc:
args.append("-a")
try:
iutil.execWithRedirect(args[0], args, stdin = None,
stdout = "/dev/tty5", stderr = "/dev/tty5")
except RuntimeError:
log("Failed to set clock")
def doPreInstall(method, id, intf, instPath, dir):
if dir == DISPATCH_BACK:
return
arch = iutil.getArch ()
# this is a crappy hack, but I don't want bug reports from these people
if (arch == "i386") and (not id.grpset.hdrlist.has_key("kernel")):
intf.messageWindow(_("Error"),
_("You are trying to install on a machine "
"which isn't supported by this release of "
"%s.") %(productName,),
type="custom", custom_icon="error",
custom_buttons=[_("_Exit")])
sys.exit(0)
# shorthand
upgrade = id.upgrade.get()
def select(hdrlist, name):
if hdrlist.has_key(name):
hdrlist[name].select(isManual = 1)
return 1
return 0
if not upgrade:
foundkernel = 0
if isys.smpAvailable() or isys.htavailable():
if select(id.grpset.hdrlist, 'kernel-smp'):
foundkernel = 1
if iutil.needsEnterpriseKernel():
if select(id.grpset.hdrlist, "kernel-bigmem"):
foundkernel = 1
if isys.summitavailable():
if select(id.grpset.hdrlist, "kernel-summit"):
foundkernel = 1
if foundkernel == 0:
# we *always* need to have some sort of kernel installed
select(id.grpset.hdrlist, 'kernel')
# if NIS is configured, install ypbind and dependencies:
if id.auth.useNIS:
select(id.grpset.hdrlist, 'ypbind')
select(id.grpset.hdrlist, 'yp-tools')
select(id.grpset.hdrlist, 'portmap')
if id.auth.useLdap:
select(id.grpset.hdrlist, 'nss_ldap')
select(id.grpset.hdrlist, 'openldap')
select(id.grpset.hdrlist, 'perl')
if id.auth.useKrb5:
select(id.grpset.hdrlist, 'pam_krb5')
select(id.grpset.hdrlist, 'krb5-workstation')
select(id.grpset.hdrlist, 'krbafs')
select(id.grpset.hdrlist, 'krb5-libs')
if id.auth.useSamba:
select(id.grpset.hdrlist, 'pam_smb')
if iutil.getArch() == "i386" and id.bootloader.useGrubVal == 0:
select(id.grpset.hdrlist, 'lilo')
elif iutil.getArch() == "i386" and id.bootloader.useGrubVal == 1:
select(id.grpset.hdrlist, 'grub')
elif iutil.getArch() == "s390":
select(id.grpset.hdrlist, 's390utils')
elif iutil.getArch() == "ppc":
select(id.grpset.hdrlist, 'yaboot')
elif iutil.getArch() == "ia64":
select(id.grpset.hdrlist, 'elilo')
if pcmcia.pcicType():
select(id.grpset.hdrlist, 'kernel-pcmcia-cs')
if flags.test:
return
# make sure that all comps that include other comps are
# selected (i.e. - recurse down the selected comps and turn
# on the children
while 1:
try:
method.mergeFullHeaders(id.grpset.hdrlist)
except FileCopyException:
method.unmountCD()
intf.messageWindow(_("Error"),
_("Unable to merge header list. This may be "
"due to a missing file or bad media. "
"Press <return> to try again."))
else:
break
if upgrade:
# An old mtab can cause confusion (esp if loop devices are
# in it)
f = open(instPath + "/etc/mtab", "w+")
f.close()
if method.systemMounted (id.fsset, instPath):
id.fsset.umountFilesystems(instPath)
return DISPATCH_BACK
for i in ( '/var', '/var/lib', '/var/lib/rpm', '/tmp', '/dev', '/etc',
'/etc/sysconfig', '/etc/sysconfig/network-scripts',
'/etc/X11', '/root', '/var/tmp', '/etc/rpm' ):
try:
os.mkdir(instPath + i)
except os.error, (errno, msg):
pass
# log("Error making directory %s: %s" % (i, msg))
if flags.setupFilesystems:
# setup /etc/rpm/platform for the post-install environment
iutil.writeRpmPlatform(instPath)
try:
# FIXME: making the /var/lib/rpm symlink here is a hack to
# workaround db->close() errors from rpm
iutil.mkdirChain("/var/lib")
for path in ("/var/tmp", "/var/lib/rpm"):
if os.path.exists(path) and not os.path.islink(path):
iutil.rmrf(path)
if not os.path.islink(path):
os.symlink("/mnt/sysimage/%s" %(path,), "%s" %(path,))
else:
log("%s already exists as a symlink to %s" %(path, os.readlink(path),))
except Exception, e:
# how this could happen isn't entirely clear; log it in case
# it does and causes problems later
log("error creating symlink, continuing anyway: %s" %(e,))
# try to copy the comps package. if it doesn't work, don't worry about it
try:
id.compspkg = method.copyFileToTemp("%s/base/comps.rpm" % (productPath,))
except:
log("Unable to copy comps package")
id.compspkg = None
# write out the fstab
if not upgrade:
id.fsset.write(instPath)
# rootpath mode doesn't have this file around
if os.access("/tmp/modules.conf", os.R_OK):
iutil.copyFile("/tmp/modules.conf",
instPath + "/etc/modules.conf")
# make a /etc/mtab so mkinitrd can handle certain hw (usb) correctly
f = open(instPath + "/etc/mtab", "w+")
f.write(id.fsset.mtab())
f.close()
# delay writing migrate adjusted fstab till later, in case
# rpm transaction set determines they don't have enough space to upgrade
# else:
# id.fsset.migratewrite(instPath)
def doInstall(method, id, intf, instPath):
if flags.test:
return
# set up dependency white outs
import whiteout
upgrade = id.upgrade.get()
ts = getAnacondaTS(instPath)
total = 0
totalSize = 0
totalFiles = 0
if upgrade:
how = "u"
else:
how = "i"
rpm.addMacro("__dbi_htconfig", "hash nofsync %{__dbi_other} %{__dbi_perms}")
l = []
for p in id.grpset.hdrlist.values():
if p.isSelected():
l.append(p)
l.sort(sortPackages)
progress = intf.progressWindow(_("Processing"),
_("Preparing RPM transaction..."),
len(l))
# this is kind of a hack, but has to be done so we can have a chance
# with broken triggers
if upgrade and len(id.upgradeRemove) > 0:
# simple rpm callback since erasure doesn't need anything
def install_callback(what, bytes, total, h, user):
pass
for pkg in id.upgradeRemove:
ts.addErase(pkg)
# if we hit problems, it's not like there's anything we can
# do about it
ts.run(install_callback, 0)
# new transaction set
ts.closeDB()
del ts
ts = getAnacondaTS(instPath)
# we don't want to try to remove things more than once (#84221)
id.upgradeRemove = []
i = 0
updcount = 0
updintv = len(l) / 25
for p in l:
ts.addInstall(p.hdr, p.hdr, how)
total = total + 1
totalSize = totalSize + (p[rpm.RPMTAG_SIZE] / 1024)
totalFiles = totalFiles + len(p[rpm.RPMTAG_FILENAMES])
i = i + 1
# HACK - dont overload progress bar with useless requests
updcount = updcount + 1
if updcount > updintv:
progress.set(i)
updcount = 0
progress.pop()
depcheck = DependencyChecker(id.grpset)
if not id.grpset.hdrlist.preordered():
log ("WARNING: not all packages in hdlist had order tag")
# have to call ts.check before ts.order() to set up the alIndex
ts.check(depcheck.callback)
ts.order()
else:
ts.check(depcheck.callback)
if upgrade:
logname = '/root/upgrade.log'
else:
logname = '/root/install.log'
instLogName = instPath + logname
try:
iutil.rmrf (instLogName)
except OSError:
pass
instLog = open(instLogName, "w+")
# dont start syslogd if we arent creating filesystems
if flags.setupFilesystems:
syslogname = "%s%s.syslog" % (instPath, logname)
try:
iutil.rmrf (syslogname)
except OSError:
pass
syslog.start (instPath, syslogname)
else:
syslogname = None
if id.compspkg is not None:
num = i + 1
else:
num = i
if upgrade:
instLog.write(_("Upgrading %s packages\n\n") % (num,))
else:
instLog.write(_("Installing %s packages\n\n") % (num,))
ts.scriptFd = instLog.fileno ()
rpm.setLogFile(instLog)
# the transaction set dup()s the file descriptor and will close the
# dup'd when we go out of scope
if upgrade:
modeText = _("Upgrading %s-%s-%s.%s.\n")
else:
modeText = _("Installing %s-%s-%s.%s.\n")
errors = rpmErrorClass(instLog)
pkgTimer = timer.Timer(start = 0)
id.instProgress.setSizes(total, totalSize, totalFiles)
id.instProgress.processEvents()
cb = InstallCallback(intf.messageWindow, id.instProgress, pkgTimer,
method, intf.progressWindow, instLog, modeText,
ts)
# write out migrate adjusted fstab so kernel RPM can get initrd right
if upgrade:
id.fsset.migratewrite(instPath)
if id.upgradeDeps:
instLog.write(_("\n\nThe following packages were automatically\n"
"selected to be installed:"
"\n"
"%s"
"\n\n") % (id.upgradeDeps,))
cb.initWindow = intf.waitWindow(_("Install Starting"),
_("Starting install process, this may take several minutes..."))
ts.setProbFilter(~rpm.RPMPROB_FILTER_DISKSPACE)
problems = ts.run(cb.cb, 0)
if problems:
# restore old fstab if we did anything for migrating
if upgrade:
id.fsset.restoreMigratedFstab(instPath)
spaceneeded = {}
nodeneeded = {}
size = 12
for (descr, (type, mount, need)) in problems:
log("(%s, (%s, %s, %s))" %(descr, type, mount, need))
if mount and mount.startswith(instPath):
mount = mount[len(instPath):]
if not mount:
mount = '/'
if type == rpm.RPMPROB_DISKSPACE:
if spaceneeded.has_key (mount) and spaceneeded[mount] < need:
spaceneeded[mount] = need
else:
spaceneeded[mount] = need
elif type == nodeprob:
if nodeneeded.has_key (mount) and nodeneeded[mount] < need:
nodeneeded[mount] = need
else:
nodeneeded[mount] = need
else:
if descr is None:
descr = "no description"
log ("WARNING: unhandled problem returned from "
"transaction set type %d (%s)",
type, descr)
probs = ""
if spaceneeded:
probs = probs + _("You don't appear to have enough disk space "
"to install the packages you've selected. "
"You need more space on the following "
"file systems:\n\n")
probs = probs + ("%-15s %s\n") % (_("Mount Point"),
_("Space Needed"))
for (mount, need) in spaceneeded.items ():
log("(%s, %s)" %(mount, need))
if need > (1024*1024):
need = (need + 1024 * 1024 - 1) / (1024 * 1024)
suffix = "M"
else:
need = (need + 1023) / 1024
suffix = "k"
prob = "%-15s %d %c\n" % (mount, need, suffix)
probs = probs + prob
if nodeneeded:
if probs:
probs = probs + '\n'
probs = probs + _("You don't appear to have enough file nodes "
"to install the packages you've selected. "
"You need more file nodes on the following "
"file systems:\n\n")
probs = probs + ("%-15s %s\n") % (_("Mount Point"),
_("Nodes Needed"))
for (mount, need) in nodeneeded.items ():
prob = "%-15s %d\n" % (mount, need)
probs = probs + prob
if len(probs) == 0:
probs = ("ERROR: NO! An unexpected problem has occurred with "
"your transaction set. Please see tty3 for more "
"information")
intf.messageWindow (_("Disk Space"), probs)
ts.closeDB()
del ts
instLog.close()
if syslogname:
syslog.stop()
method.systemUnmounted ()
return DISPATCH_BACK
# This should close the RPM database so that you can
# do RPM ops in the chroot in a %post ks script
ts.closeDB()
del ts
# make sure the window gets popped (#82862)
if not cb.beenCalled:
cb.initWindow.pop()
method.filesDone ()
# rpm environment files go bye-bye
for file in ["__db.001", "__db.002", "__db.003"]:
try:
os.unlink("%s/var/lib/rpm/%s" %(instPath, file))
except Exception, e:
log("failed to unlink /var/lib/rpm/%s: %s" %(file,e))
# FIXME: remove the /var/lib/rpm symlink that keeps us from having
# db->close error messages shown. I don't really like this though :(
try:
os.unlink("/var/lib/rpm")
except Exception, e:
log("failed to unlink /var/lib/rpm: %s" %(e,))
if id.grpset.hdrlist.has_key("rhgb") and id.grpset.hdrlist["rhgb"].isSelected():
log("rhgb installed, adding to boot loader config")
id.bootloader.args.append("rhgb")
instLog.close ()
id.instProgress = None
def doPostInstall(method, id, intf, instPath):
if flags.test:
return
w = intf.progressWindow(_("Post Install"),
_("Performing post install configuration..."), 6)
upgrade = id.upgrade.get()
arch = iutil.getArch ()
if upgrade:
logname = '/root/upgrade.log'
else:
logname = '/root/install.log'
instLogName = instPath + logname
instLog = open(instLogName, "a")
try:
if not upgrade:
w.set(1)
copyExtraModules(instPath, id.grpset, id.extraModules)
w.set(2)
# pcmcia is supported only on i386 at the moment
if arch == "i386":
pcmcia.createPcmciaConfig(
instPath + "/etc/sysconfig/pcmcia")
# we need to write out the network bits before kudzu runs
# to avoid getting devices in the wrong order (#102276)
id.network.write(instPath)
w.set(3)
# blah. If we're on a serial mouse, and we have X, we need to
# close the mouse device, then run kudzu, then open it again.
# turn it off
mousedev = None
# XXX currently Bad Things (X async reply) happen when doing
# Mouse Magic on Sparc (Mach64, specificly)
# The s390 doesn't even have a mouse!
if os.environ.get('DISPLAY') == ':1' and arch != 'sparc':
try:
import xmouse
mousedev = xmouse.get()[0]
except RuntimeError:
pass
if mousedev:
try:
os.rename (mousedev, "/dev/disablemouse")
except OSError:
pass
try:
xmouse.reopen()
except RuntimeError:
pass
if arch != "s390":
# we need to unmount usbdevfs before mounting it
usbWasMounted = iutil.isUSBDevFSMounted()
if usbWasMounted:
isys.umount('/proc/bus/usb', removeDir = 0)
# see if unmount suceeded, if not pretent it isnt mounted
# because we're screwed anywyas if system is going to
# lock up
if iutil.isUSBDevFSMounted():
usbWasMounted = 0
unmountUSB = 0
try:
isys.mount('/usbdevfs', instPath+'/proc/bus/usb', 'usbdevfs')
unmountUSB = 1
except:
log("Mount of /proc/bus/usb in chroot failed")
pass
argv = [ "/usr/sbin/kudzu", "-q" ]
if id.grpset.hdrlist.has_key("kernel"):
ver = "%s-%s" %(id.grpset.hdrlist["kernel"][rpm.RPMTAG_VERSION],
id.grpset.hdrlist["kernel"][rpm.RPMTAG_RELEASE])
argv.extend(["-k", ver])
devnull = os.open("/dev/null", os.O_RDWR)
iutil.execWithRedirect(argv[0], argv, root = instPath,
stdout = devnull)
# turn it back on
if mousedev:
try:
os.rename ("/dev/disablemouse", mousedev)
except OSError:
pass
try:
xmouse.reopen()
except RuntimeError:
pass
if unmountUSB:
try:
isys.umount(instPath + '/proc/bus/usb', removeDir = 0)
except SystemError:
# if we fail to unmount, then we should just not
# try to remount it. this protects us from random
# suckage
usbWasMounted = 0
if usbWasMounted:
isys.mount('/usbdevfs', '/proc/bus/usb', 'usbdevfs')
w.set(4)
if upgrade and id.dbpath is not None:
# remove the old rpmdb
try:
iutil.rmrf (id.dbpath)
except OSError:
pass
if upgrade:
# needed for prior systems which were not xinetd based
migrateXinetd(instPath, instLogName)
w.set(5)
# FIXME: hack to install the comps package
if (id.compspkg is not None and
os.access(id.compspkg, os.R_OK)):
log("found the comps package")
try:
# ugly hack
path = id.compspkg.split("/mnt/sysimage")[1]
args = ["/bin/rpm", "-Uvh", path]
rc = iutil.execWithRedirect(args[0], args,
stdout = "/dev/tty5",
stderr = "/dev/tty5",
root = instPath)
ts = rpm.TransactionSet()
ts.setVSFlags(~(rpm.RPMVSF_NORSA|rpm.RPMVSF_NODSA))
ts.closeDB()
fd = os.open(id.compspkg, os.O_RDONLY)
h = ts.hdrFromFdno(fd)
os.close(fd)
if upgrade:
text = _("Upgrading %s-%s-%s.%s.\n")
else:
text = _("Installing %s-%s-%s.%s.\n")
instLog.write(text % (h['name'],
h['version'],
h['release'],
h['arch']))
os.unlink(id.compspkg)
del ts
except Exception, e:
log("comps.rpm failed to install: %s" %(e,))
try:
os.unlink(id.compspkg)
except:
pass
else:
log("no comps package found")
w.set(6)
finally:
pass
if upgrade:
instLog.write(_("\n\nThe following packages were available in "
"this version but NOT upgraded:\n"))
else:
instLog.write(_("\n\nThe following packages were available in "
"this version but NOT installed:\n"))
lines = []
for p in id.grpset.hdrlist.values():
if not p.isSelected():
lines.append("%s-%s-%s.%s.rpm\n" %
(p.hdr[rpm.RPMTAG_NAME],
p.hdr[rpm.RPMTAG_VERSION],
p.hdr[rpm.RPMTAG_RELEASE],
p.hdr[rpm.RPMTAG_ARCH]))
lines.sort()
for line in lines:
instLog.write(line)
# XXX hack - we should really write a proper /etc/lvmtab. but for now
# just create the lvmtab if they have /sbin/vgscan and some VGs
if (os.access(instPath + "/sbin/vgscan", os.X_OK) and
os.access(instPath + "/proc/lvm", os.R_OK) and
len(os.listdir("/proc/lvm/VGs")) > 0):
rc = iutil.execWithRedirect("/sbin/vgscan",
["vgscan", "-v"],
stdout = "/dev/tty5",
stderr = "/dev/tty5",
root = instPath,
searchPath = 1)
# write out info on install method used
try:
if id.methodstr is not None:
if os.access (instPath + "/etc/sysconfig/installinfo", os.R_OK):
os.rename (instPath + "/etc/sysconfig/installinfo",
instPath + "/etc/sysconfig/installinfo.rpmsave")
f = open(instPath + "/etc/sysconfig/installinfo", "w+")
f.write("INSTALLMETHOD=%s\n" % (string.split(id.methodstr, ':')[0],))
try:
ii = open("/tmp/isoinfo", "r")
il = ii.readlines()
ii.close()
for line in il:
f.write(line)
except:
pass
f.close()
else:
log("methodstr not set for some reason")
except:
log("Failed to write out installinfo")
w.pop ()
sys.stdout.flush()
if flags.setupFilesystems:
syslog.stop()
def migrateXinetd(instPath, instLog):
if not os.access (instPath + "/usr/sbin/inetdconvert", os.X_OK):
return
if not os.access (instPath + "/etc/inetd.conf.rpmsave", os.R_OK):
return
argv = [ "/usr/sbin/inetdconvert", "--convertremaining",
"--inetdfile", "/etc/inetd.conf.rpmsave" ]
logfile = os.open (instLog, os.O_APPEND)
iutil.execWithRedirect(argv[0], argv, root = instPath,
stdout = logfile, stderr = logfile)
os.close(logfile)
def copyExtraModules(instPath, grpset, extraModules):
kernelVersions = grpset.kernelVersionList()
foundModule = 0
try:
f = open("/etc/arch")
arch = f.readline().strip()
del f
except IOError:
arch = os.uname()[2]
for (path, name) in extraModules:
if not path:
path = "/modules.cgz"
pattern = ""
names = ""
for (n, tag) in kernelVersions:
if tag == "up":
pkg = "kernel"
else:
pkg = "kernel-%s" %(tag,)
arch = grpset.hdrlist[pkg][rpm.RPMTAG_ARCH]
# version 1 path
pattern = pattern + " %s/%s/%s.o " % (n, arch, name)
# version 0 path
pattern = pattern + " %s/%s.o " % (n, name)
names = names + " %s.o" % (name,)
command = ("cd %s/lib/modules; gunzip < %s | "
"%s/bin/cpio --quiet -iumd %s" %
(instPath, path, instPath, pattern))
log("running: '%s'" % (command, ))
os.system(command)
for (n, tag) in kernelVersions:
if tag == "up":
pkg = "kernel"
else:
pkg = "kernel-%s" %(tag,)
toDir = "%s/lib/modules/%s/updates" % \
(instPath, n)
to = "%s/%s.o" % (toDir, name)
if (os.path.isdir("%s/lib/modules/%s" %(instPath, n)) and not
os.path.isdir("%s/lib/modules/%s/updates" %(instPath, n))):
os.mkdir("%s/lib/modules/%s/updates" %(instPath, n))
if not os.path.isdir(toDir):
continue
arch = grpset.hdrlist[pkg][rpm.RPMTAG_ARCH]
for p in ("%s/%s.o" %(arch, name), "%s.o" %(name,)):
fromFile = "%s/lib/modules/%s/%s" % (instPath, n, p)
if (os.access(fromFile, os.R_OK)):
log("moving %s to %s" % (fromFile, to))
os.rename(fromFile, to)
# the file might not have been owned by root in the cgz
os.chown(to, 0, 0)
foundModule = 1
else:
log("missing DD module %s (this may be okay)" %
fromFile)
if foundModule == 1:
for (n, tag) in kernelVersions:
recreateInitrd(n, instPath)
#Recreate initrd for use when driver disks add modules
def recreateInitrd (kernelTag, instRoot):
log("recreating initrd for %s" % (kernelTag,))
iutil.execWithRedirect("/sbin/new-kernel-pkg",
[ "/sbin/new-kernel-pkg", "--mkinitrd",
"--depmod", "--install", kernelTag ],
stdout = None, stderr = None,
searchPath = 1, root = instRoot)
# XXX Deprecated. Is this ever called anymore?
def depmodModules(comps, instPath):
kernelVersions = comps.kernelVersionList()
for (version, tag) in kernelVersions:
iutil.execWithRedirect ("/sbin/depmod",
[ "/sbin/depmod", "-a", version,
"-F", "/boot/System.map-" + version ],
root = instPath, stderr = '/dev/null')
def betaNagScreen(intf, dir):
publicBetas = { "Red Hat Linux": "Red Hat Linux Public Beta",
"Red Hat Enterprise Linux": "Red Hat Enterprise Linux Public Beta",
"Fedora Core": "Fedora Core" }
if dir == DISPATCH_BACK:
return DISPATCH_NOOP
fileagainst = None
for (key, val) in publicBetas.items():
if productName.startswith(key):
fileagainst = val
if fileagainst is None:
fileagainst = "%s Beta" %(productName,)
while 1:
rc = intf.messageWindow( _("Warning! This is pre-release software!"),
_("Thank you for downloading this "
"pre-release of %s.\n\n"
"This is not a final "
"release and is not intended for use "
"on production systems. The purpose of "
"this release is to collect feedback "
"from testers, and it is not suitable "
"for day to day usage.\n\n"
"To report feedback, please visit:\n\n"
" http://bugzilla.redhat.com/bugzilla\n\n"
"and file a report against '%s'.\n"
%(productName, fileagainst)),
type="custom", custom_icon="warning",
custom_buttons=[_("_Exit"), _("_Install anyway")])
if not rc:
rc = intf.messageWindow( _("Rebooting System"),
_("Your system will now be rebooted..."),
type="custom", custom_icon="warning",
custom_buttons=[_("_Back"), _("_Reboot")])
if rc:
sys.exit(0)
else:
break
# FIXME: this is a kind of poor way to do this, but it will work for now
def selectLanguageSupportGroups(grpset, langSupport):
sup = langSupport.supported
if len(sup) == 0:
sup = langSupport.getAllSupported()
for group in grpset.groups.values():
xmlgrp = grpset.compsxml.groups[group.basename]
langs = []
for name in sup:
try:
lang = langSupport.langInfoByName[name][0]
langs.extend(language.expandLangs(lang))
except:
continue
if group.langonly is not None and group.langonly in langs:
group.select()
for package in xmlgrp.pkgConditionals.keys():
req = xmlgrp.pkgConditionals[package]
if not grpset.hdrlist.has_key(package):
log("Missing %s which is in a langsupport conditional" %(package,))
continue
# add to the deps in the dependencies structure for the
# package. this should take care of whenever we're
# selected
grpset.hdrlist[req].addDeps([package], main = 0)
if grpset.hdrlist[req].isSelected():
grpset.hdrlist[package].select()
sys.stdout.flush()
grpset.hdrlist[package].usecount += grpset.hdrlist[req].usecount - 1
group.selectDeps([package], uses = grpset.hdrlist[req].usecount)
|