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
|
import string
import os
import isys
import iutil
import rpm
def needsEnterpriseKernel():
rc = 0
f = open("/proc/e820info", "r")
for l in f.readlines():
l = string.split(l)
if l[3] == '(reserved)': continue
regionEnd = (string.atol(l[0], 16) - 1) + string.atol(l[2], 16)
if regionEnd > 0xffffffffL:
rc = 1
return rc
class LiloConfigFile:
def __repr__ (self, tab = 0):
s = ""
for n in self.order:
if (tab):
s = s + '\t'
if n[0] == '#':
s = s + n[1:]
else:
s = s + n
if self.items[n]:
s = s + "=" + self.items[n]
s = s + '\n'
for cl in self.images:
s = s + "\n%s=%s\n" % (cl.imageType, cl.path)
s = s + cl.__repr__(1)
return s
def addEntry(self, item, val = None, replace = 1):
if not self.items.has_key(item):
self.order.append(item)
elif not replace:
return
if (val):
self.items[item] = str(val)
else:
self.items[item] = None
def getEntry(self, item):
return self.items[item]
def delEntry(self, item):
newOrder = []
for i in self.order:
if item != i: newOrder.append(i)
self.order = newOrder
del self.items[item]
def testEntry(self, item):
if self.items.has_key(item):
return 1
else:
return 0
def getImage(self, label):
for config in self.images:
if config.getEntry('label') == label:
return (config.imageType, config)
raise IndexError, "unknown image %s" % (label,)
def addImage (self, config):
# make sure the config has a valid label
config.getEntry('label')
if not config.path or not config.imageType:
raise ValueError, "subconfig missing path or image type"
self.images.append(config)
def delImage (self, label):
for config in self.images:
if config.getEntry('label') == label:
self.images.remove (config)
return
raise IndexError, "unknown image %s" % (label,)
def listImages (self):
l = []
for config in self.images:
l.append(config.getEntry('label'))
return l
def getPath (self):
return self.path
def write(self, file, perms = 0644):
f = open(file, "w")
f.write(self.__repr__())
f.close()
os.chmod(file, perms)
def read (self, file):
f = open(file, "r")
image = None
for l in f.readlines():
l = l[:-1]
orig = l
while (l and (l[0] == ' ' or l[0] == '\t')):
l = l[1:]
if not l:
continue
if l[0] == '#':
self.order.append('#' + orig)
continue
fields = string.split(l, '=', 1)
if (len(fields) == 2):
f0 = string.strip (fields [0])
f1 = string.strip (fields [1])
if (f0 == "image" or f0 == "other"):
if image: self.addImage(image)
image = LiloConfigFile(imageType = f0,
path = f1)
args = None
else:
args = (f0, f1)
else:
args = (string.strip (l),)
if (args and image):
apply(image.addEntry, args)
elif args:
apply(self.addEntry, args)
if image: self.addImage(image)
f.close()
def __init__(self, imageType = None, path = None):
self.imageType = imageType
self.path = path
self.order = []
self.images = []
self.items = {}
class LiloConfiguration:
def allowLiloLocationConfig(self, fstab):
bootDevice = fstab.getBootDevice()
if bootDevice[0:2] == "md":
self.setDevice(("raid", bootDevice))
return None
return 1
def setLiloImages(self, images):
self.liloImages = images
def getLiloImages(self, fstab):
(drives, raid) = fstab.raidList()
# rearrange the fstab so it's indexed by device
mountsByDev = {}
for (mntpoint, device, fsystem, doFormat, size) in \
fstab.mountList():
mountsByDev[device] = mntpoint
for (mntpoint, device, fstype, raidType, start, size, makeup) in raid:
mountsByDev[device] = mntpoint
drives.append(device, "", 2, 0, 0, 0, 0)
for (device, mntpoint, fsystem, makeup) in fstab.existingRaidList():
mountsByDev[device] = mntpoint
drives.append(device, "", 2, 0, 0, 0, 0)
oldImages = {}
for dev in self.liloImages.keys():
oldImages[dev] = self.liloImages[dev]
self.liloImages = {}
foundDos = 0
for (dev, devName, fsType, start, size, maxcyl, preexist) in drives:
# ext2 and raid partitions get listed if they're / -- we do
# not allow non-mounted partitions to be booted anymore as
# modules are so unlikely to work out as to be not worth
# worrying about
#
# there is a good chance we should configure them as chain
# loadable, but we don't
# only list dos and ext2 partitions
if fsType != 1 and fsType != 2:
continue
if (mountsByDev.has_key(dev)):
if mountsByDev[dev] == '/':
if oldImages.has_key(dev):
self.liloImages[dev] = oldImages[dev]
else:
self.liloImages[dev] = ("linux", 2)
if fsType == 1:
if foundDos: continue
foundDos = 1
isys.makeDevInode(dev, '/tmp/' + dev)
# this can fail for several reasons, main being
# they created a DOS partition in disk druid, but
# we haven't written new partition table out yet!
# this is because we are called from init in todo.py
# which is way too early! FIX in future
try:
bootable = isys.checkBoot('/tmp/' + dev)
except:
bootable = 0
os.unlink('/tmp/' + dev)
if bootable:
if oldImages.has_key(dev):
self.liloImages[dev] = oldImages[dev]
else:
self.liloImages[dev] = ("dos", fsType)
# if there is no default image (self.default is None, or invalid)
# set the default image to the liunx partition
if self.default:
for (label, fsType) in self.liloImages.values():
if label == self.default: break
if label != self.default:
self.default = None
if not self.default:
for (label, fsType) in self.liloImages.values():
if fsType == 2:
self.default = label
break
return (self.liloImages, self.default)
def makeInitrd (self, kernelTag, instRoot):
initrd = "/boot/initrd%s.img" % (kernelTag, )
if not self.initrdsMade.has_key(initrd):
iutil.execWithRedirect("/sbin/mkinitrd",
[ "/sbin/mkinitrd",
"--ifneeded",
initrd,
kernelTag[1:] ],
stdout = None, stderr = None, searchPath = 1,
root = instRoot)
self.initrdsMade[kernelTag] = 1
return initrd
def install(self, fstab, instRoot, hdList, upgrade):
# If self.liloDevice is None, skipping lilo doesn't work
if not self.liloDevice: return
# If the root partition is on a loopback device, lilo won't work!
if fstab.rootOnLoop():
return
if not self.liloImages:
(images, default) = self.getLiloImages(fstab)
self.setLiloImages(images)
# on upgrade read in the lilo config file
lilo = LiloConfigFile ()
perms = 0644
if os.access (instRoot + '/etc/lilo.conf', os.R_OK):
perms = os.stat(instRoot + '/etc/lilo.conf')[0] & 0777
lilo.read (instRoot + '/etc/lilo.conf')
os.rename(instRoot + '/etc/lilo.conf',
instRoot + '/etc/lilo.conf.rpmsave')
# Remove any invalid entries that are in the file; we probably
# just removed those kernels.
for label in lilo.listImages():
(fsType, sl) = lilo.getImage(label)
if fsType == "other": continue
if not os.access(instRoot + sl.getPath(), os.R_OK):
lilo.delImage(label)
bootpart = fstab.getBootDevice()
boothd = fstab.getMbrDevice()
useLBA32 = 0
if self.edd:
from log import log
maxcyl = fstab.getBootPartitionMaxCylFromDrive()
if maxcyl > 1024:
log("Maximum cylinder is %s, using lba32" % maxcyl)
useLBA32 = 1
if (self.liloDevice == "mbr"):
liloTarget = boothd
elif (type(self.liloDevice) == type((1,)) and
self.liloDevice[0] == "raid"):
liloTarget = self.liloDevice[1]
else:
liloTarget = bootpart
lilo.addEntry("boot", '/dev/' + liloTarget, replace = 0)
lilo.addEntry("map", "/boot/map", replace = 0)
lilo.addEntry("install", "/boot/boot.b", replace = 0)
lilo.addEntry("prompt", replace = 0)
lilo.addEntry("timeout", "50", replace = 0)
lilo.addEntry("message", "/boot/message", replace = 0)
# XXX edd overrides linear, lba32/linear are mutually exclusive
#
# test to see if one of these already in lilo.conf, use if so
if not lilo.testEntry('lba32') and not lilo.testEntry('linear'):
if self.edd and useLBA32:
lilo.addEntry("lba32", replace = 0)
elif self.liloLinear:
lilo.addEntry("linear", replace = 0)
smpInstalled = (hdList.has_key('kernel-smp') and
hdList['kernel-smp'].selected)
# This is a bit odd, but old versions of Red Hat could install
# SMP kernels on UP systems, but (properly) configure the UP version.
# We don't want to undo that, but we do want folks using this install
# to be able to override the kernel to use during installs. This rule
# seems to nail this.
if (upgrade and not isys.smpAvailable()):
smpInstalled = 0
rootDev = fstab.getRootDevice ()
if rootDev:
# strip off the filesystem; we don't need it
rootDev = rootDev[0]
else:
raise RuntimeError, "Installing lilo, but there is no root device"
kernelList = []
otherList = []
main = self.default
for (drive, (label, liloType)) in self.liloImages.items ():
if (drive == rootDev) and label:
main = label
elif label:
otherList.append (label, "/dev/" + drive)
lilo.addEntry("default", self.default)
mainLabelUsed = 0
if (needsEnterpriseKernel() and hdList.has_key('kernel-enterprise') and
hdList['kernel-enterprise'].selected):
mainLabelUsed = 1
kernelList.append((main,
hdList['kernel-enterprise'], "enterprise"))
if (smpInstalled):
thisLabel = main
if mainLabelUsed:
thisLabel = thisLabel + '-smp'
mainLabelUsed = 1
kernelList.append((thisLabel, hdList['kernel-smp'], "smp"))
thisLabel = main
if mainLabelUsed:
thisLabel = thisLabel + '-up'
kernelList.append((thisLabel, hdList['kernel'], ""))
for (label, kernel, tag) in kernelList:
kernelTag = "-%s-%s%s" % (kernel[rpm.RPMTAG_VERSION],
kernel[rpm.RPMTAG_RELEASE], tag)
kernelFile = "/boot/vmlinuz" + kernelTag
try:
(fsType, sl) = lilo.getImage(label)
lilo.delImage(label)
except IndexError, msg:
sl = LiloConfigFile(imageType = "image", path = kernelFile)
initrd = self.makeInitrd (kernelTag, instRoot)
sl.addEntry("label", label)
if os.access (instRoot + initrd, os.R_OK):
sl.addEntry("initrd", initrd)
sl.addEntry("read-only")
sl.addEntry("root", '/dev/' + rootDev)
if self.liloAppend:
sl.addEntry('append', '"%s"' % (self.liloAppend,))
lilo.addImage (sl)
for (label, device) in otherList:
try:
(fsType, sl) = lilo.getImage(label)
lilo.delImage(label)
except IndexError:
sl = LiloConfigFile(imageType = "other", path = 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) = 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')
lilo.write(instRoot + "/etc/lilo.conf", perms = perms)
iutil.execWithRedirect(instRoot + '/sbin/lilo' ,
[ "lilo", "-r", instRoot ],
stdout = None)
def setDevice(self, device):
if (type(device) == type((1,))):
self.liloDevice = device
elif device != "mbr" and device != "partition" and device:
raise ValueError, "device must be raid, mbr, partition, or None"
self.liloDevice = device
def setLinear(self, linear):
self.liloLinear = linear
def setAppend(self, append):
self.liloAppend = append
def setDefault(self, default):
for (label, fsType) in self.liloImages.values():
if label == default:
self.default = default
return
raise IndexError, "unknown lilo label %s" % (default,)
def getLinear(self):
return self.liloLinear
def getDevice(self):
return self.liloDevice
def getAppend(self):
return self.liloAppend
def __init__(self):
self.liloImages = {}
self.liloDevice = 'mbr'
self.liloLinear = 1
self.liloAppend = None
self.default = None
self.initrdsMade = {}
# XXX only i386 supports edd, nothing else should
# instantiate this class
if iutil.getArch() == "i386":
import edd
self.edd = edd.detect()
else:
self.edd = 0
if __name__ == "__main__":
config = LiloConfigFile ()
config.read ('/etc/lilo.conf')
print config
print "image list", config.listImages()
config.delImage ('linux')
print '----------------------------------'
config = LiloConfigFile ()
config.read ('/etc/lilo.conf')
print config
print '----------------------------------'
print config.getImage('linux')
|