-
Notifications
You must be signed in to change notification settings - Fork 17
/
XSConsoleDataUtils.py
484 lines (397 loc) · 18.4 KB
/
XSConsoleDataUtils.py
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
# Copyright (c) 2007-2009 Citrix Systems Inc.
#
# 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; version 2 only.
#
# 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, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
import os, subprocess, re, tempfile, errno
from XSConsoleBases import *
from XSConsoleData import *
from XSConsoleHotData import *
from XSConsoleLang import *
from XSConsoleLog import *
from XSConsoleTask import *
# Utils that do not need to access XSConsoleData should go in XSConsoleUtils,
# so that XSConsoleData can use them without creating circular import problems
#Exception classes
class USBNotFormatted(Exception):
pass
class USBNotMountable(Exception):
pass
class FileUtils:
@classmethod
def DeviceList(cls, inWritableOnly):
retVal = []
# Device lists can change as, e.g. USB keys are plugged. Out-of-date device lists are
# problematic so always update here
Data.Inst().Update()
for pbd in Data.Inst().host.PBDs([]):
sr = pbd.get('SR', {})
contentType = sr.get('content_type', '')
if sr.get('type', '') == 'udev' and contentType in [ 'disk', 'iso' ]:
# Scan only SRs with type 'udev' and content type 'disk' or 'iso'
for vdi in sr.get('VDIs', []):
nameLabel = vdi.get('name_label', Lang('Unknown'))
readOnly = vdi.get('read_only', False)
if inWritableOnly and readOnly:
pass # Skip this VDI because we can't write to it (but need to)
else:
match = True
while match:
match = re.match(r'(.*):0$', nameLabel)
if match:
# Remove multiple trailing :0
nameLabel = match.group(1)
nameDesc = vdi.get('name_description', Lang('Unknown device'))
match = re.match(r'(.*)\srev\b', nameDesc)
if match:
# Remove revision information
nameDesc = match.group(1)
deviceSize = int(vdi.get('physical_utilisation', 0))
if deviceSize < 0:
deviceSize = int(vdi.get('virtual_size', 0))
nameSize = cls.SizeString(deviceSize)
name = "%-50s%10.10s%10.10s" % (nameDesc[:50], nameLabel[:10], nameSize[:10])
retVal.append(Struct(name = name, vdi = vdi))
retVal.sort(key=lambda data: data.vdi['name_label'])
return retVal
@classmethod
def SRDeviceList(self):
retVal= []
status, output = getstatusoutput("/opt/xensource/libexec/list_local_disks")
if status == 0:
regExp = re.compile(r"\s*\(\s*'([^']*)'\s*,\s*'([^']*)'\s*,\s*'([^']*)'\s*,\s*'([^']*)'\s*,\s*'([^']*)'\s*\)")
for line in output.split("\n"):
match = regExp.match(line)
if match:
retVal.append(Struct(
device = match.group(1),
bus = match.group(2),
empty = match.group(3),
size = int(match.group(4)),
name = match.group(5)
))
return retVal
@classmethod
def AssertSafePath(cls, inPath):
if not re.match(r'[-A-Za-z0-9/._~ ]*$', inPath):
raise Exception("Invalid characters in path '"+inPath+"'")
@classmethod
def AssertSafeLeafname(cls, inPath):
cls.AssertSafePath(inPath)
if re.match(r'\.\.', inPath) or re.search(r'/\.\.', inPath):
raise Exception(Lang("Filenames containing .. are not allowed"))
if re.match(r'\s*/', inPath):
raise Exception(Lang("Absolute paths are not allowed"))
@classmethod
def SizeString(cls, inSizeOrFilename, inDefault = None):
try:
if isinstance(inSizeOrFilename, str):
fileSize = os.path.getsize(inSizeOrFilename)
else:
fileSize = inSizeOrFilename
# Using these values gives the expected values for USB sticks
if fileSize >= 1000000000: # 1GB
if fileSize < 10000000000: # 10GB
retVal = ('%.1f' % (int(fileSize / 100000000) / 10.0)) + Lang('GB') # e.g. 2.3GB
else:
retVal = str(int(fileSize / 1000000000))+Lang('GB')
elif fileSize >= 2000000:
retVal = str(int(fileSize / 1000000))+Lang('MB')
elif fileSize >= 2000:
retVal = str(int(fileSize / 1000))+Lang('KB')
else:
retVal = str(int(fileSize))
except Exception as e:
retVal = FirstValue(inDefault, '')
return retVal
@classmethod
def DeviceFromVDI(self, inVDI):
retVal = inVDI['location']
if os.path.islink(retVal):
link = os.readlink(retVal)
if os.path.isabs(link):
retVal = link
else:
retVal = os.path.abspath(os.path.join(os.path.dirname(retVal), link))
return retVal
@classmethod
def USBFormat(self, inVDI):
realDevice = self.DeviceFromVDI(inVDI)
partitionName = realDevice+'1'
# Write the partition table with one FAT32 partition filling the disk
popenObj = subprocess.Popen("/sbin/sfdisk --DOS --quiet '"+realDevice+"'", stdin=subprocess.PIPE, stdout=subprocess.PIPE)
popenObj.stdin.write(",,0C\n") # First partition, 0x0C => Windows LBA partition type
popenObj.stdin.write(";\n")
popenObj.stdin.write(";\n")
popenObj.stdin.write(";\n")
popenObj.stdin.close() # Send EOF
while True:
try:
popenObj.wait() # Must wait for completion before mkfs
break
except IOError as e:
if e.errno != errno.EINTR: # Loop if EINTR
raise
status, output = getstatusoutput('/bin/sync')
if status != 0:
raise Exception(output)
# Format the new partition with VFAT
status, output = getstatusoutput("/sbin/mkfs.vfat -n 'XenServer Backup' -F 32 '" +partitionName + "' 2>&1")
if status != 0:
raise Exception(output)
status, output = getstatusoutput('/bin/sync')
if status != 0:
raise Exception(output)
XSLog('Formatted USB device')
@classmethod
def BugReportFilename(cls):
return Data.Inst().host.hostname('bugreport')+'-'+time.strftime("%Y%m%d%H%M%S", time.gmtime())+'Z.bugrpt'
class MountVDI:
def __init__(self, inVDI, inMode = None):
self.vdi = inVDI
self.mountPoint = None
self.vbd = None
self.mode = FirstValue(inMode, 'ro')
# Keep records of whether we created and plugged the VBD, for undoing it later
self.createdVBD = False
self.pluggedVBD = False
self.mountedVBD = False
data = Data.Inst()
data.Update() # Get current device list
try:
vbdFound = None
allowedVBDs = data.derived.dom0_vm.allowed_VBD_devices([])
if len(allowedVBDs) == 0:
data.PurgeVBDs()
raise Exception("VBDs exhausted - please retry")
for vbd in inVDI.get('VBDs', []):
if vbd['userdevice'] in allowedVBDs:
# Already mounted in userspace, so reuse. This case is probably never triggered
vbdFound = vbd
break
if vbdFound is not None:
self.vbd = vbdFound
else:
deviceNum = data.derived.dom0_vm.allowed_VBD_devices([])[-1] # Highest allowed device number
self.vbd = data.CreateVBD(data.derived.dom0_vm(), inVDI, deviceNum, self.mode)
self.createdVBD = True
if not self.vbd['currently_attached']:
self.vbd = data.PlugVBD(self.vbd)
self.pluggedVBD = True
self.mountDev = '/dev/'+self.vbd['device']
time.sleep(1) # Wait a moment for xapi to create the nodes in /dev
if os.path.exists(self.mountDev+'1'): # First partition
self.mountDev += '1'
FileUtils.AssertSafePath(self.mountDev)
self.mountPoint = tempfile.mkdtemp(".xsconsole")
status, output = getstatusoutput("/bin/mount -t auto -o " + self.mode + ' ' +self.mountDev+" "+self.mountPoint + " 2>&1")
if status != 0:
try:
self.Unmount()
except Exception as e:
XSLogFailure('Device failed to unmount', e)
output += '\n'+self.mountDev
self.HandleMountFailure(output.split("\n"))
self.mountedVBD = True
except Exception as e:
XSLogFailure('Device failed to mount', e)
try:
self.Unmount()
except Exception as vdi_unmount_exception:
XSLogFailure('Device failed to unmount', vdi_unmount_exception)
# Report the VDI mount exception
raise e
def HandleMountFailure(self, inOutput):
# Entered after self.Unmount has run
if self.vdi['SR']['type'] != 'udev' or self.vdi['SR']['content_type'] != 'disk':
# Take special action for USB devices only, i.e. don't reformat SCSI disks, etc.
raise Exception(inOutput)
if self.mode != 'rw':
# Don't reformat media unless we're planning to write to it
raise Exception(Lang('This media is not readable.'))
needsType = False
for line in inOutput:
if re.search(r'you must specify the filesystem type', line, re.IGNORECASE):
needsType = True
if not needsType:
# Unrecognised failure
raise Exception(inOutput)
realDevice = FileUtils.DeviceFromVDI(self.vdi)
status, output = getstatusoutput("/sbin/fdisk -l '" +realDevice+"'")
if status != 0:
raise Exception(output)
unformatted = False
for line in output.split("\n"):
if re.search(r"doesn't contain a valid partition table", line, re.IGNORECASE):
unformatted = True
if re.match(r'/dev/\w+\s+\*', line, re.IGNORECASE):
# Bootable partition - leave this media alone
raise Exception("This USB media is not mountable but has a bootable partition. Please reformat it before use.")
if unformatted:
# Not formatted
raise USBNotFormatted("USB media not formatted")
else:
# Formatted but doesn't mount
raise USBNotMountable("USB media not mountable")
def Scan(self, inRegExp = None, inNumToReturn = None):
retVal = []
numToReturn = FirstValue(inNumToReturn, 10)
regExp = re.compile(FirstValue(inRegExp, r'.*'), re.IGNORECASE)
for root, dirs, files in os.walk(self.mountPoint):
if len(retVal) >= numToReturn:
break
for filename in files:
if regExp.match(filename):
retVal.append(os.path.join(root, filename)[len(self.mountPoint)+1:])
if len(retVal) >= numToReturn:
break
return retVal
def Unmount(self):
status = 0
if self.mountedVBD:
status, output = getstatusoutput("/bin/umount '"+self.mountPoint + "' 2>&1")
os.rmdir(self.mountPoint)
self.mountedVBD = False
if self.pluggedVBD:
try:
self.vbd = Data.Inst().UnplugVBD(self.vbd)
except Exception:
# Assume umount needs more time to complete so wait and try again
time.sleep(5)
try:
self.vbd = Data.Inst().UnplugVBD(self.vbd)
except Exception as e:
XSLogFailure('Device failed to unmount', e)
self.pluggedVBD = False
if self.createdVBD:
Data.Inst().DestroyVBD(self.vbd)
self.createdVBD = False
if status != 0:
raise Exception(output)
def MountedPath(self, inLeafname):
return self.mountPoint + '/' + inLeafname
def SizeString(self, inFilename, inDefault = None):
return FileUtils.SizeString(self.MountedPath(inFilename), inDefault)
class MountVDIDirectly:
def __init__(self, inVDI, inMode = None):
self.vdi = inVDI
self.mountPoint = None
self.mode = FirstValue(inMode, 'ro')
self.mountedVDI = False
data = Data.Inst()
data.Update() # Get current device list
try:
self.mountDev = FileUtils.DeviceFromVDI(self.vdi)
if os.path.exists(self.mountDev+'1'): # First partition
self.mountDev += '1'
FileUtils.AssertSafePath(self.mountDev)
self.mountPoint = tempfile.mkdtemp(".xsconsole")
status, output = getstatusoutput("/bin/mount -t auto -o " + self.mode + ' ' +self.mountDev+" "+self.mountPoint + " 2>&1")
if status != 0:
try:
self.Unmount()
except Exception as e:
XSLogFailure('Device failed to unmount', e)
output += '\n'+self.mountDev
self.HandleMountFailure(status, output.split("\n"))
self.mountedVDI = True
XSLog('Mounted '+self.mountDev + ' on ' + self.mountPoint + ' mode ' + self.mode)
except Exception as e:
XSLogFailure('Device failed to mount', e)
try:
self.Unmount()
except Exception as vdi_unmount_exception:
XSLogFailure('Device failed to unmount', vdi_unmount_exception)
# Report the VDI direct mount exception
raise e
def HandleMountFailure(self, inStatus, inOutput):
# Entered after self.Unmount has run
if self.vdi['SR']['type'] != 'udev' or self.vdi['SR']['content_type'] != 'disk':
# Take special action for USB devices only, i.e. don't reformat SCSI disks, etc.
if inStatus == 32: # 32 is the mount(8) return code for mount failure, assuming empty CD drive
raise Exception(Lang("Drive is empty"))
raise Exception(inOutput)
if self.mode != 'rw':
# Don't reformat media unless we're planning to write to it
raise Exception(Lang('This media is not readable.'))
needsType = False
for line in inOutput:
if re.search(r'you must specify the filesystem type', line, re.IGNORECASE):
needsType = True
if not needsType:
# Unrecognised failure
raise Exception(inOutput)
realDevice = FileUtils.DeviceFromVDI(self.vdi)
status, output = getstatusoutput("/sbin/fdisk -l '" +realDevice+"'")
if status != 0:
raise Exception(output)
unformatted = False
for line in output.split("\n"):
if re.search(r"doesn't contain a valid partition table", line, re.IGNORECASE):
unformatted = True
if re.match(r'/dev/\w+\s+\*', line, re.IGNORECASE):
# Bootable partition - leave this media alone
raise Exception("This USB media is not mountable but has a bootable partition. Please reformat it before use.")
if unformatted:
# Not formatted
raise USBNotFormatted("USB media not formatted")
else:
# Formatted but doesn't mount
raise USBNotMountable("USB media not mountable")
def Scan(self, inRegExp = None, inNumToReturn = None):
retVal = []
numToReturn = FirstValue(inNumToReturn, 10)
regExp = re.compile(FirstValue(inRegExp, r'.*'), re.IGNORECASE)
for root, dirs, files in os.walk(self.mountPoint):
if len(retVal) >= numToReturn:
break
for filename in files:
if regExp.match(filename):
retVal.append(os.path.join(root, filename)[len(self.mountPoint)+1:])
if len(retVal) >= numToReturn:
break
return retVal
def Unmount(self):
status = 0
if self.mountedVDI:
status, output = getstatusoutput("/bin/umount '"+self.mountPoint + "' 2>&1")
os.rmdir(self.mountPoint)
self.mountedVDI = False
XSLog('Unmounted '+self.mountPoint)
if status != 0:
raise Exception(output)
def MountedPath(self, inLeafname):
return self.mountPoint + '/' + inLeafname
def SizeString(self, inFilename, inDefault = None):
return FileUtils.SizeString(self.MountedPath(inFilename), inDefault)
class SRDataUtils:
@classmethod
def SRList(cls, inMode = None, inCapabilities = None):
retVal = []
for sr in HotAccessor().visible_sr:
name = sr.name_label(Lang('<Unknown>'))
if inMode != 'rw' or sr.content_type('') not in ['iso']:
if inCapabilities is None or inCapabilities in sr.allowed_operations([]):
# Generate a Data-style record from the HotData one (backwards compatibility)
dataSR = copy.copy(sr()) # Shallow copy
dataSR['opaqueref'] = sr.HotOpaqueRef().OpaqueRef()
retVal.append( Struct(name = name, sr = dataSR) )
retVal.sort(key=lambda data: data.name)
return retVal
class VMUtils:
@staticmethod
def numLocalResidentVMs():
"""Returns the number of VMs resident on the local host."""
query = ('field "is_a_template" = "false" and'
'field "is_control_domain" = "false" and '
'field "resident_on" = "%s"' % HotAccessor().local_host_ref().opaqueRef)
return len(Task.Sync(lambda x: x.xenapi.VM.get_all_records_where(query)))