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
|
import kudzu
import _balkan
import _isys
import string
import os
import os.path
mountCount = {}
raidCount = {}
MIN_RAM = _isys.MIN_RAM
MIN_GUI_RAM = _isys.MIN_GUI_RAM
EARLY_SWAP_RAM = _isys.EARLY_SWAP_RAM
def pathSpaceAvailable(path, fsystem = "ext2"):
return _isys.devSpaceFree(path)
def spaceAvailable(device, fsystem = "ext2"):
mount(device, "/mnt/space", fstype = fsystem)
space = _isys.devSpaceFree("/mnt/space/.")
umount("/mnt/space")
return space
def fsSpaceAvailable(fsystem):
return _isys.devSpaceFree(fsystem)
def raidstop(mdDevice):
if raidCount.has_key (mdDevice):
if raidCount[mdDevice] > 1:
raidCount[mdDevice] = raidCount[mdDevice] - 1
return
del raidCount[mdDevice]
makeDevInode(mdDevice, "/tmp/md")
fd = os.open("/tmp/md", os.O_RDONLY)
os.remove("/tmp/md")
_isys.raidstop(fd)
os.close(fd)
def raidstart(mdDevice, aMember):
if raidCount.has_key(mdDevice) and raidCount[mdDevice]:
raidCount[mdDevice] = raidCount[mdDevice] + 1
return
raidCount[mdDevice] = 1
makeDevInode(mdDevice, "/tmp/md")
makeDevInode(aMember, "/tmp/member")
fd = os.open("/tmp/md", os.O_RDONLY)
os.remove("/tmp/md")
_isys.raidstart(fd, "/tmp/member")
os.close(fd)
os.remove("/tmp/member")
def raidsb(mdDevice):
makeDevInode(mdDevice, "/tmp/md")
fd = os.open("/tmp/md", os.O_RDONLY)
rc = _isys.getraidsb(fd)
os.close(fd)
return rc
def losetup(device, file, readOnly = 0):
if readOnly:
mode = os.O_RDONLY
else:
mode = os.O_RDWR
targ = os.open(file, mode)
loop = os.open(device, mode)
_isys.losetup(loop, targ, file)
os.close(loop)
os.close(targ)
def lochangefd(device, file):
loop = os.open(device, os.O_RDONLY)
targ = os.open(file, os.O_RDONLY)
_isys.lochangefd(loop, targ)
os.close(loop)
os.close(targ)
def unlosetup(device):
loop = os.open(device, os.O_RDONLY)
_isys.unlosetup(loop)
os.close(loop)
def ddfile(file, megs, pw = None):
fd = os.open("/dev/zero", os.O_RDONLY);
buf = os.read(fd, 1024 * 256)
os.close(fd)
fd = os.open(file, os.O_RDWR | os.O_CREAT)
total = megs * 4 # we write out 1/4 of a meg each time through
if pw:
(fn, title, text) = pw
win = fn(title, text, total - 1)
for n in range(total):
os.write(fd, buf)
if pw:
win.set(n)
if pw:
win.pop()
os.close(fd)
def mount(device, location, fstype = "ext2", readOnly = 0):
location = os.path.normpath(location)
if device[0] != "/":
devName = "/tmp/%s" % device
makeDevInode(device, devName)
device = devName
if mountCount.has_key(location) and mountCount[location] > 0:
mountCount[location] = mountCount[location] + 1
return
rc = _isys.mount(fstype, device, location, readOnly)
if not rc:
mountCount[location] = 1
if device != "/proc" and device != "/usbdevfs":
os.unlink(device)
return rc
def umount(what, removeDir = 1):
what = os.path.normpath(what)
if not os.path.isdir(what):
raise ValueError, "isys.umount() can only umount by mount point"
if mountCount.has_key(what) and mountCount[what] > 1:
mountCount[what] = mountCount[what] - 1
return
rc = _isys.umount(what)
if removeDir and os.path.isdir(what):
os.rmdir(what)
if not rc and mountCount.has_key(what):
del mountCount[what]
return rc
def smpAvailable():
return _isys.smpavailable()
def chroot (path):
return _isys.chroot (path)
def checkBoot (path):
return _isys.checkBoot (path)
def swapoff (path):
return _isys.swapoff (path)
def swapon (path):
return _isys.swapon (path)
def fbconProbe(path):
return _isys.fbconprobe (path)
def loadFont(font):
return _isys.loadFont (font)
def loadKeymap(keymap):
return _isys.loadKeymap (keymap)
def driveDict(klassArg):
p = _isys.ProbedList()
p.updateIde()
p.updateScsi()
p.updateDasd()
dict = {}
for (klass, dev, descr) in p:
if (klass == klassArg):
dict[dev] = descr
return dict
def hardDriveDict():
return driveDict("disk")
def floppyDriveDict():
return driveDict("floppy")
def cdromList():
list = driveDict("cdrom").keys()
list.sort()
return list
def moduleListByType(type):
return _isys.modulelist(type)
def makeDevInode(name, fn):
return _isys.mkdevinode(name, fn)
def inet_ntoa (addr):
return "%d.%d.%d.%d" % ((addr >> 24) & 0x000000ff,
(addr >> 16) & 0x000000ff,
(addr >> 8) & 0x000000ff,
addr & 0x000000ff)
def inet_aton (addr):
quad = string.splitfields (addr, ".")
try:
rc = ((string.atoi (quad[0]) << 24) +
(string.atoi (quad[1]) << 16) +
(string.atoi (quad[2]) << 8) +
string.atoi (quad[3]))
except IndexError:
raise ValueError
return rc
def inet_calcNetmask (ip):
if isinstance (ip, type (0)):
addr = inet_ntoa (ip)
else:
addr = ip
quad = string.splitfields (addr, ".")
if len (quad) > 0:
klass = string.atoi (quad[0])
if klass <= 127:
mask = "255.0.0.0";
elif klass <= 191:
mask = "255.255.0.0";
else:
mask = "255.255.255.0";
return mask
def inet_calcNetBroad (ip, nm):
if isinstance (ip, type ("")):
ipaddr = inet_aton (ip)
else:
ipaddr = ip
if isinstance (nm, type ("")):
nmaddr = inet_aton (nm)
else:
nmaddr = nm
netaddr = ipaddr & nmaddr
bcaddr = netaddr | (~nmaddr);
return (inet_ntoa (netaddr), inet_ntoa (bcaddr))
def inet_calcGateway (bc):
if isinstance (bc, type ("")):
bcaddr = inet_aton (bc)
else:
bcaddr = ip
return inet_ntoa (bcaddr - 1)
def inet_calcNS (net):
if isinstance (net, type ("")):
netaddr = inet_aton (net)
else:
netaddr = net
return inet_ntoa (netaddr + 1)
def parseArgv(str):
return _isys.poptParseArgv(str)
def getopt(*args):
return apply(_isys.getopt, args)
def compareDrives(first, second):
type1 = first[0:3]
type2 = second[0:3]
if type1 == "hda":
type1 = 0
elif type1 == "sda":
type1 = 1
else:
type1 = 2
if type2 == "hda":
type2 = 0
elif type2 == "sda":
type2 = 1
else:
type2 = 2
if (type1 < type2):
return -1
elif (type1 > type2):
return 1
elif first < second:
return -1
elif first > second:
return 1
return 0
def configNetDevice(device, ip, netmask, gw):
return _isys.confignetdevice(device, ip, netmask, gw)
def resetResolv():
return _isys.resetresolv()
def setResolvRetry(count):
return _isys.setresretry(count)
def pumpNetDevice(device):
# returns None on failure, "" if no nameserver is found, nameserver IP
# otherwise
return _isys.pumpnetdevice(device)
def readExt2Label(device):
makeDevInode(device, "/tmp/disk")
label = _isys.e2fslabel("/tmp/disk");
os.unlink("/tmp/disk")
return label
def ext2IsDirty(device):
makeDevInode(device, "/tmp/disk")
label = _isys.e2dirty("/tmp/disk");
os.unlink("/tmp/disk")
return label
def ejectCdrom(device):
makeDevInode(device, "/tmp/cdrom")
fd = os.open("/tmp/cdrom", os.O_RDONLY)
# this is a best effort
try:
_isys.ejectcdrom(fd)
except SystemError:
pass
os.close(fd)
os.unlink("/tmp/cdrom")
def driveIsRemovable(device):
# assume ide if starts with 'hd', and we don't have to create
# device beforehand since it just reads /proc/ide
from log import log
if device[:2] == "hd":
rc = (_isys.isIdeRemovable("/dev/"+device) == 1)
else:
makeDevInode(device, "/tmp/disk")
rc = (_isys.isScsiRemovable("/tmp/disk") == 1)
os.unlink("/tmp/disk")
return rc
def vtActivate (num):
_isys.vtActivate (num)
def isPsudoTTY (fd):
return _isys.isPsudoTTY (fd)
def sync ():
return _isys.sync ()
def isIsoImage(file):
return _isys.isisoimage(file)
def getGeometry(device):
makeDevInode(device, "/tmp/disk")
rc = _isys.getGeometry("/tmp/disk")
os.unlink("/tmp/disk")
return rc
def fbinfo():
return _isys.fbinfo()
def cdRwList():
if not os.access("/proc/sys/dev/cdrom/info", os.R_OK): return []
f = open("/proc/sys/dev/cdrom/info", "r")
lines = f.readlines()
f.close()
driveList = []
finalDict = {}
for line in lines:
line = string.split(line, ':', 1)
if (line and line[0] == "drive name"):
line = string.split(line[1])
# no CDROM drives
if not line: return []
for device in line:
if device[0:2] == 'sr':
device = "scd" + device[2:]
driveList.append(device)
elif ((line and line[0] == "Can write CD-R") or
(line and line[0] == "Can write CD-RW")):
line = string.split(line[1])
field = 0
for ability in line:
if ability == "1":
finalDict[driveList[field]] = 1
field = field + 1
l = finalDict.keys()
l.sort()
return l
def ideCdRwList():
newList = []
for dev in cdRwList():
if dev[0:2] == 'hd': newList.append(dev)
return newList
|