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
|
#
# bootloaderInfo.py - bootloader config object used in creation of new
# bootloader configs. Originally from anaconda
#
# Jeremy Katz <katzj@redhat.com>
# Erik Troan <ewt@redhat.com>
# Peter Jones <pjones@redhat.com>
#
# Copyright 2005-2008 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 os, sys
import crypt
import random
import shutil
import string
import struct
from copy import copy
from lilo import LiloConfigFile
import rhpl
from rhpl.translate import _, N_
from flags import flags
import iutil
import isys
from product import *
import booty
import checkbootloader
from util import getDiskPart
if rhpl.getArch() not in ("s390", "s390x"):
import block
dosFilesystems = ('FAT', 'fat16', 'fat32', 'ntfs', 'hpfs')
def doesDualBoot():
if rhpl.getArch() == "i386" or rhpl.getArch() == "x86_64":
return 1
return 0
def checkForBootBlock(device):
fd = os.open(device, os.O_RDONLY)
buf = os.read(fd, 512)
os.close(fd)
if len(buf) >= 512 and \
struct.unpack("H", buf[0x1fe: 0x200]) == (0xaa55,):
return True
return False
# hack and a half
# there's no guarantee that data is written to the disk and grub
# reads both the filesystem and the disk. suck.
def syncDataToDisk(dev, mntpt, instRoot = "/"):
isys.sync()
isys.sync()
isys.sync()
# and xfs is even more "special" (#117968)
if isys.readFSType(dev) == "xfs":
iutil.execWithRedirect("/usr/sbin/xfs_freeze",
["-f", mntpt],
stdout = "/dev/tty5",
stderr = "/dev/tty5",
root = instRoot)
iutil.execWithRedirect("/usr/sbin/xfs_freeze",
["-u", mntpt],
stdout = "/dev/tty5",
stderr = "/dev/tty5",
root = instRoot)
def rootIsDevice(dev):
if dev.startswith("LABEL=") or dev.startswith("UUID="):
return False
return True
class KernelArguments:
def get(self):
return self.args
def set(self, args):
self.args = args
def chandevget(self):
return self.cargs
def chandevset(self, args):
self.cargs = args
def append(self, args):
if self.args:
# don't duplicate the addition of an argument (#128492)
if self.args.find(args) != -1:
return
self.args = self.args + " "
self.args = self.args + "%s" % (args,)
def __init__(self):
newArgs = []
cfgFilename = "/tmp/install.cfg"
if rhpl.getArch() == "s390":
self.cargs = []
f = open(cfgFilename)
for line in f:
try:
(vname,vparm) = line.split('=', 1)
vname = vname.strip()
vparm = vparm.replace('"','')
vparm = vparm.strip()
if vname == "DASD":
newArgs.append("dasd=" + vparm)
if vname == "CHANDEV":
self.cargs.append(vparm)
if vname == "QETHPARM":
self.cargs.append(vparm)
except Exception, e:
pass
f.close()
# look for kernel arguments we know should be preserved and add them
ourargs = ["speakup_synth", "apic", "noapic", "apm", "ide", "noht",
"acpi", "video", "pci", "nodmraid", "nompath", "nomodeset"]
for arg in ourargs:
if not flags.cmdline.has_key(arg):
continue
val = flags.cmdline.get(arg, "")
if val:
newArgs.append("%s=%s" % (arg, val))
else:
newArgs.append(arg)
self.args = " ".join(newArgs)
class BootImages:
"""A collection to keep track of boot images available on the system.
Examples would be:
('linux', 'Red Hat Linux', 'ext2'),
('Other', 'Other', 'fat32'), ...
"""
def __init__(self):
self.default = None
self.images = {}
def getImages(self):
"""returns dictionary of (label, longlabel, devtype) pairs
indexed by device"""
# return a copy so users can modify it w/o affecting us
return copy(self.images)
def setDefault(self, default):
# default is a device
self.default = default
def getDefault(self):
return self.default
# Construct a dictionary mapping device names to (OS, product, type)
# tuples.
def setup(self, storage):
devices = {}
bootDevs = self.availableBootDevices(storage)
for (dev, type) in bootDevs:
devices[dev.name] = 1
# These partitions have disappeared
for dev in self.images.keys():
if not devices.has_key(dev):
del self.images[dev]
# These have appeared
for (dev, type) in bootDevs:
if not self.images.has_key(dev.name):
if type in dosFilesystems and doesDualBoot():
self.images[dev.name] = ("Other", "Other", type)
elif type in ("hfs", "hfs+") and rhpl.getPPCMachine() == "PMac":
self.images[dev.name] = ("Other", "Other", type)
else:
self.images[dev.name] = (None, None, type)
if not self.images.has_key(self.default):
self.default = storage.fsset.rootDevice.name
(label, longlabel, type) = self.images[self.default]
if not label:
self.images[self.default] = ("linux", productName, type)
# Return a list of (storage.Device, string) tuples that are bootable
# devices. The string is the type of the device, which is just a string
# like "vfat" or "swap" or "lvm".
def availableBootDevices(self, storage):
import parted
retval = []
foundDos = False
for part in [p for p in storage.partitions if p.exists]:
# Skip extended, metadata, freespace, etc.
if part.partType not in (parted.PARTITION_NORMAL, parted.PARTITION_LOGICAL) or not part.format:
continue
type = part.format.type
if type in dosFilesystems and not foundDos and doesDualBoot():
try:
bootable = checkForBootBlock(part.path)
retval.append((part, type))
foundDos = True
except:
pass
elif type in ["ntfs", "hpfs"] and not foundDos and doesDualBoot():
retval.append((part, type))
# maybe questionable, but the first ntfs or fat is likely to
# be the correct one to boot with XP using ntfs
foundDos = True
elif type in ["hfs", "hfs+"] and rhpl.getPPCMachine() == "PMac":
if part.bootable:
retval.append((part, type))
rootDevice = storage.fsset.rootDevice
if not rootDevice or not rootDevice.format:
raise ValueError, ("Trying to pick boot devices but do not have a "
"sane root partition. Aborting install.")
retval.append((rootDevice, rootDevice.format.type))
retval.sort()
return retval
class bootloaderInfo:
def getConfigFileName(self):
if not self._configname:
raise NotImplementedError
return self._configname
configname = property(getConfigFileName, None, None, \
"bootloader config file name")
def getConfigFileDir(self):
if not self._configdir:
raise NotImplementedError
return self._configdir
configdir = property(getConfigFileDir, None, None, \
"bootloader config file directory")
def getConfigFilePath(self):
return "%s/%s" % (self.configdir, self.configname)
configfile = property(getConfigFilePath, None, None, \
"full path and name of the real config file")
def setUseGrub(self, val):
pass
def useGrub(self):
return self.useGrubVal
def setForceLBA(self, val):
pass
def setPassword(self, val, isCrypted = 1):
pass
def getPassword(self):
pass
def getDevice(self):
return self.device
def setDevice(self, device):
self.device = device
(dev, part) = getDiskPart(device, self.storage)
if part is None:
self.defaultDevice = "mbr"
else:
self.defaultDevice = "partition"
def makeInitrd(self, kernelTag):
return "/boot/initrd%s.img" % kernelTag
def getBootloaderConfig(self, instRoot, bl, kernelList,
chainList, defaultDev):
images = bl.images.getImages()
confFile = instRoot + self.configfile
# on upgrade read in the lilo config file
lilo = LiloConfigFile ()
self.perms = 0600
if os.access (confFile, os.R_OK):
self.perms = os.stat(confFile)[0] & 0777
lilo.read(confFile)
os.rename(confFile, confFile + ".rpmsave")
# if it's an absolute symlink, just get it out of our way
elif (os.path.islink(confFile) and os.readlink(confFile)[0] == '/'):
os.rename(confFile, confFile + ".rpmsave")
# Remove any invalid entries that are in the file; we probably
# just removed those kernels.
for label in lilo.listImages():
(fsType, sl, path, other) = lilo.getImage(label)
if fsType == "other": continue
if not os.access(instRoot + sl.getPath(), os.R_OK):
lilo.delImage(label)
lilo.addEntry("prompt", replace = 0)
lilo.addEntry("timeout", self.timeout or "20", replace = 0)
rootDev = self.storage.fsset.rootDevice
if rootDev.name == defaultDev.name:
lilo.addEntry("default", kernelList[0][0])
else:
lilo.addEntry("default", chainList[0][0])
for (label, longlabel, version) in kernelList:
kernelTag = "-" + version
kernelFile = self.kernelLocation + "vmlinuz" + kernelTag
try:
lilo.delImage(label)
except IndexError, msg:
pass
sl = LiloConfigFile(imageType = "image", path = kernelFile)
initrd = self.makeInitrd(kernelTag)
sl.addEntry("label", label)
if os.access (instRoot + initrd, os.R_OK):
sl.addEntry("initrd", "%sinitrd%s.img" %(self.kernelLocation,
kernelTag))
sl.addEntry("read-only")
append = "%s" %(self.args.get(),)
realroot = rootDev.fstabSpec
if rootIsDevice(realroot):
sl.addEntry("root", rootDev.path)
else:
if len(append) > 0:
append = "%s root=%s" %(append,realroot)
else:
append = "root=%s" %(realroot,)
if len(append) > 0:
sl.addEntry('append', '"%s"' % (append,))
lilo.addImage (sl)
for (label, longlabel, device) in chainList:
if ((not label) or (label == "")):
continue
try:
(fsType, sl, path, other) = lilo.getImage(label)
lilo.delImage(label)
except IndexError:
sl = LiloConfigFile(imageType = "other",
path = "/dev/%s" %(device))
sl.addEntry("optional")
sl.addEntry("label", label)
lilo.addImage (sl)
# Sanity check #1. There could be aliases in sections which conflict
# with the new images we just created. If so, erase those aliases
imageNames = {}
for label in lilo.listImages():
imageNames[label] = 1
for label in lilo.listImages():
(fsType, sl, path, other) = lilo.getImage(label)
if sl.testEntry('alias'):
alias = sl.getEntry('alias')
if imageNames.has_key(alias):
sl.delEntry('alias')
imageNames[alias] = 1
# Sanity check #2. If single-key is turned on, go through all of
# the image names (including aliases) (we just built the list) and
# see if single-key will still work.
if lilo.testEntry('single-key'):
singleKeys = {}
turnOff = 0
for label in imageNames.keys():
l = label[0]
if singleKeys.has_key(l):
turnOff = 1
singleKeys[l] = 1
if turnOff:
lilo.delEntry('single-key')
return lilo
def write(self, instRoot, bl, kernelList, chainList,
defaultDev, justConfig):
if len(kernelList) >= 1:
config = self.getBootloaderConfig(instRoot, bl,
kernelList, chainList,
defaultDev)
config.write(instRoot + self.configfile, perms = self.perms)
else:
raise booty.BootyNoKernelWarning
return ""
def getArgList(self):
args = []
if self.defaultDevice is None:
args.append("--location=none")
return args
args.append("--location=%s" % (self.defaultDevice,))
args.append("--driveorder=%s" % (",".join(self.drivelist)))
if self.args.get():
args.append("--append=\"%s\"" %(self.args.get()))
return args
def writeKS(self, f):
f.write("bootloader")
for arg in self.getArgList():
f.write(" " + arg)
f.write("\n")
def updateDriveList(self, sortedList=[]):
self._drivelist = map(lambda x: x.name, self.storage.disks)
self._drivelist.sort(isys.compareDrives)
# If we're given a sort order, make sure the drives listed in it
# are put at the head of the drivelist in that order. All other
# drives follow behind in whatever order they're found.
if sortedList != []:
revSortedList = sortedList
revSortedList.reverse()
for i in revSortedList:
try:
ele = self._drivelist.pop(self._drivelist.index(i))
self._drivelist.insert(0, ele)
except:
pass
def _getDriveList(self):
if self._drivelist is not None:
return self._drivelist
self.updateDriveList()
return self._drivelist
def _setDriveList(self, val):
self._drivelist = val
drivelist = property(_getDriveList, _setDriveList)
def __init__(self, storage):
self.args = KernelArguments()
self.images = BootImages()
self.device = None
self.defaultDevice = None # XXX hack, used by kickstart
self.useGrubVal = 0 # only used on x86
self._configdir = None
self._configname = None
self.kernelLocation = "/boot/"
self.forceLBA32 = 0
self.password = None
self.pure = None
self.above1024 = 0
self.timeout = None
self.storage = storage
# this has somewhat strange semantics. if 0, act like a normal
# "install" case. if 1, update lilo.conf (since grubby won't do that)
# and then run lilo or grub only.
# XXX THIS IS A HACK. implementation details are only there for x86
self.doUpgradeOnly = 0
self.kickstart = 0
self._drivelist = None
if flags.serial != 0:
options = ""
device = ""
console = flags.cmdline.get("console", "")
# the options are everything after the comma
comma = console.find(",")
if comma != -1:
options = console[comma:]
device = console[:comma]
else:
device = console
if not device and rhpl.getArch() != "ia64":
self.serialDevice = "ttyS0"
self.serialOptions = ""
else:
self.serialDevice = device
# don't keep the comma in the options
self.serialOptions = options[1:]
if self.serialDevice:
self.args.append("console=%s%s" %(self.serialDevice, options))
self.serial = 1
self.timeout = 5
else:
self.serial = 0
self.serialDevice = None
self.serialOptions = None
if flags.virtpconsole is not None:
if flags.virtpconsole.startswith("/dev/"):
con = flags.virtpconsole[5:]
else:
con = flags.virtpconsole
self.args.append("console=%s" %(con,))
class efiBootloaderInfo(bootloaderInfo):
def getBootloaderName(self):
return self._bootloader
bootloader = property(getBootloaderName, None, None, \
"name of the bootloader to install")
# XXX wouldn't it be nice to have a real interface to use efibootmgr from?
def removeOldEfiEntries(self, instRoot):
p = os.pipe()
iutil.execWithRedirect('/usr/sbin/efibootmgr', [],
root = instRoot, stdout = p[1])
os.close(p[1])
c = os.read(p[0], 1)
buf = c
while (c):
c = os.read(p[0], 1)
buf = buf + c
os.close(p[0])
lines = string.split(buf, '\n')
for line in lines:
fields = string.split(line)
if len(fields) < 2:
continue
if string.join(fields[1:], " ") == productName:
entry = fields[0][4:8]
iutil.execWithRedirect('/usr/sbin/efibootmgr',
["-b", entry, "-B"],
root = instRoot,
stdout="/dev/tty5", stderr="/dev/tty5")
def addNewEfiEntry(self, instRoot):
try:
bootdev = self.storage.fsset.mountpoints["/boot/efi"].name
except:
bootdev = "sda1"
link = "%s%s/%s" % (instRoot, "/etc/", self.configname)
if not os.access(link, os.R_OK):
os.symlink("../%s" % (self.configfile), link)
ind = len(bootdev)
try:
while (bootdev[ind-1] in string.digits):
ind = ind - 1
except IndexError:
ind = len(bootdev) - 1
bootdisk = bootdev[:ind]
bootpart = bootdev[ind:]
if (bootdisk.startswith('ida/') or bootdisk.startswith('cciss/') or
bootdisk.startswith('rd/') or bootdisk.startswith('sx8/')):
bootdisk = bootdisk[:-1]
argv = [ "/usr/sbin/efibootmgr", "-c" , "-w", "-L",
productName, "-d", "/dev/%s" % bootdisk,
"-p", bootpart, "-l", "\\EFI\\redhat\\" + self.bootloader ]
iutil.execWithRedirect(argv[0], argv[1:], root = instRoot,
stdout = "/dev/tty5",
stderr = "/dev/tty5")
def installGrub(self, instRoot, bootDevs, grubTarget, grubPath,
target, cfPath):
if not iutil.isEfi():
raise EnvironmentError
self.removeOldEfiEntries(instRoot)
self.addNewEfiEntry(instRoot)
def __init__(self, storage, initialize = True):
if initialize:
bootloaderInfo.__init__(self, storage)
else:
self.storage = storage
if iutil.isEfi():
self._configdir = "/boot/efi/EFI/redhat"
self._configname = "grub.conf"
self._bootloader = "grub.efi"
self.useGrubVal = 1
self.kernelLocation = ""
|