1#!/usr/bin/env python3 2# 3# Migration Stream Analyzer 4# 5# Copyright (c) 2015 Alexander Graf <agraf@suse.de> 6# 7# This library is free software; you can redistribute it and/or 8# modify it under the terms of the GNU Lesser General Public 9# License as published by the Free Software Foundation; either 10# version 2.1 of the License, or (at your option) any later version. 11# 12# This library is distributed in the hope that it will be useful, 13# but WITHOUT ANY WARRANTY; without even the implied warranty of 14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15# Lesser General Public License for more details. 16# 17# You should have received a copy of the GNU Lesser General Public 18# License along with this library; if not, see <http://www.gnu.org/licenses/>. 19 20import json 21import os 22import argparse 23import collections 24import struct 25import sys 26 27 28def mkdir_p(path): 29 try: 30 os.makedirs(path) 31 except OSError: 32 pass 33 34 35class MigrationFile(object): 36 def __init__(self, filename): 37 self.filename = filename 38 self.file = open(self.filename, "rb") 39 40 def read64(self): 41 return int.from_bytes(self.file.read(8), byteorder='big', signed=True) 42 43 def read32(self): 44 return int.from_bytes(self.file.read(4), byteorder='big', signed=True) 45 46 def read16(self): 47 return int.from_bytes(self.file.read(2), byteorder='big', signed=True) 48 49 def read8(self): 50 return int.from_bytes(self.file.read(1), byteorder='big', signed=True) 51 52 def readstr(self, len = None): 53 return self.readvar(len).decode('utf-8') 54 55 def readvar(self, size = None): 56 if size is None: 57 size = self.read8() 58 if size == 0: 59 return "" 60 value = self.file.read(size) 61 if len(value) != size: 62 raise Exception("Unexpected end of %s at 0x%x" % (self.filename, self.file.tell())) 63 return value 64 65 def tell(self): 66 return self.file.tell() 67 68 # The VMSD description is at the end of the file, after EOF. Look for 69 # the last NULL byte, then for the beginning brace of JSON. 70 def read_migration_debug_json(self): 71 QEMU_VM_VMDESCRIPTION = 0x06 72 73 # Remember the offset in the file when we started 74 entrypos = self.file.tell() 75 76 # Read the last 10MB 77 self.file.seek(0, os.SEEK_END) 78 endpos = self.file.tell() 79 self.file.seek(max(-endpos, -10 * 1024 * 1024), os.SEEK_END) 80 datapos = self.file.tell() 81 data = self.file.read() 82 # The full file read closed the file as well, reopen it 83 self.file = open(self.filename, "rb") 84 85 # Find the last NULL byte, then the first brace after that. This should 86 # be the beginning of our JSON data. 87 nulpos = data.rfind(b'\0') 88 jsonpos = data.find(b'{', nulpos) 89 90 # Check backwards from there and see whether we guessed right 91 self.file.seek(datapos + jsonpos - 5, 0) 92 if self.read8() != QEMU_VM_VMDESCRIPTION: 93 raise Exception("No Debug Migration device found") 94 95 jsonlen = self.read32() 96 97 # Seek back to where we were at the beginning 98 self.file.seek(entrypos, 0) 99 100 # explicit decode() needed for Python 3.5 compatibility 101 return data[jsonpos:jsonpos + jsonlen].decode("utf-8") 102 103 def close(self): 104 self.file.close() 105 106class RamSection(object): 107 RAM_SAVE_FLAG_COMPRESS = 0x02 108 RAM_SAVE_FLAG_MEM_SIZE = 0x04 109 RAM_SAVE_FLAG_PAGE = 0x08 110 RAM_SAVE_FLAG_EOS = 0x10 111 RAM_SAVE_FLAG_CONTINUE = 0x20 112 RAM_SAVE_FLAG_XBZRLE = 0x40 113 RAM_SAVE_FLAG_HOOK = 0x80 114 RAM_SAVE_FLAG_COMPRESS_PAGE = 0x100 115 RAM_SAVE_FLAG_MULTIFD_FLUSH = 0x200 116 117 def __init__(self, file, version_id, ramargs, section_key): 118 if version_id != 4: 119 raise Exception("Unknown RAM version %d" % version_id) 120 121 self.file = file 122 self.section_key = section_key 123 self.TARGET_PAGE_SIZE = ramargs['page_size'] 124 self.dump_memory = ramargs['dump_memory'] 125 self.write_memory = ramargs['write_memory'] 126 self.sizeinfo = collections.OrderedDict() 127 self.data = collections.OrderedDict() 128 self.data['section sizes'] = self.sizeinfo 129 self.name = '' 130 if self.write_memory: 131 self.files = { } 132 if self.dump_memory: 133 self.memory = collections.OrderedDict() 134 self.data['memory'] = self.memory 135 136 def __repr__(self): 137 return self.data.__repr__() 138 139 def __str__(self): 140 return self.data.__str__() 141 142 def getDict(self): 143 return self.data 144 145 def read(self): 146 # Read all RAM sections 147 while True: 148 addr = self.file.read64() 149 flags = addr & (self.TARGET_PAGE_SIZE - 1) 150 addr &= ~(self.TARGET_PAGE_SIZE - 1) 151 152 if flags & self.RAM_SAVE_FLAG_MEM_SIZE: 153 while True: 154 namelen = self.file.read8() 155 # We assume that no RAM chunk is big enough to ever 156 # hit the first byte of the address, so when we see 157 # a zero here we know it has to be an address, not the 158 # length of the next block. 159 if namelen == 0: 160 self.file.file.seek(-1, 1) 161 break 162 self.name = self.file.readstr(len = namelen) 163 len = self.file.read64() 164 self.sizeinfo[self.name] = '0x%016x' % len 165 if self.write_memory: 166 print(self.name) 167 mkdir_p('./' + os.path.dirname(self.name)) 168 f = open('./' + self.name, "wb") 169 f.truncate(0) 170 f.truncate(len) 171 self.files[self.name] = f 172 flags &= ~self.RAM_SAVE_FLAG_MEM_SIZE 173 174 if flags & self.RAM_SAVE_FLAG_COMPRESS: 175 if flags & self.RAM_SAVE_FLAG_CONTINUE: 176 flags &= ~self.RAM_SAVE_FLAG_CONTINUE 177 else: 178 self.name = self.file.readstr() 179 fill_char = self.file.read8() 180 # The page in question is filled with fill_char now 181 if self.write_memory and fill_char != 0: 182 self.files[self.name].seek(addr, os.SEEK_SET) 183 self.files[self.name].write(chr(fill_char) * self.TARGET_PAGE_SIZE) 184 if self.dump_memory: 185 self.memory['%s (0x%016x)' % (self.name, addr)] = 'Filled with 0x%02x' % fill_char 186 flags &= ~self.RAM_SAVE_FLAG_COMPRESS 187 elif flags & self.RAM_SAVE_FLAG_PAGE: 188 if flags & self.RAM_SAVE_FLAG_CONTINUE: 189 flags &= ~self.RAM_SAVE_FLAG_CONTINUE 190 else: 191 self.name = self.file.readstr() 192 193 if self.write_memory or self.dump_memory: 194 data = self.file.readvar(size = self.TARGET_PAGE_SIZE) 195 else: # Just skip RAM data 196 self.file.file.seek(self.TARGET_PAGE_SIZE, 1) 197 198 if self.write_memory: 199 self.files[self.name].seek(addr, os.SEEK_SET) 200 self.files[self.name].write(data) 201 if self.dump_memory: 202 hexdata = " ".join("{0:02x}".format(ord(c)) for c in data) 203 self.memory['%s (0x%016x)' % (self.name, addr)] = hexdata 204 205 flags &= ~self.RAM_SAVE_FLAG_PAGE 206 elif flags & self.RAM_SAVE_FLAG_XBZRLE: 207 raise Exception("XBZRLE RAM compression is not supported yet") 208 elif flags & self.RAM_SAVE_FLAG_HOOK: 209 raise Exception("RAM hooks don't make sense with files") 210 if flags & self.RAM_SAVE_FLAG_MULTIFD_FLUSH: 211 continue 212 213 # End of RAM section 214 if flags & self.RAM_SAVE_FLAG_EOS: 215 break 216 217 if flags != 0: 218 raise Exception("Unknown RAM flags: %x" % flags) 219 220 def __del__(self): 221 if self.write_memory: 222 for key in self.files: 223 self.files[key].close() 224 225 226class HTABSection(object): 227 HASH_PTE_SIZE_64 = 16 228 229 def __init__(self, file, version_id, device, section_key): 230 if version_id != 1: 231 raise Exception("Unknown HTAB version %d" % version_id) 232 233 self.file = file 234 self.section_key = section_key 235 236 def read(self): 237 238 header = self.file.read32() 239 240 if (header == -1): 241 # "no HPT" encoding 242 return 243 244 if (header > 0): 245 # First section, just the hash shift 246 return 247 248 # Read until end marker 249 while True: 250 index = self.file.read32() 251 n_valid = self.file.read16() 252 n_invalid = self.file.read16() 253 254 if index == 0 and n_valid == 0 and n_invalid == 0: 255 break 256 257 self.file.readvar(n_valid * self.HASH_PTE_SIZE_64) 258 259 def getDict(self): 260 return "" 261 262 263class ConfigurationSection(object): 264 def __init__(self, file): 265 self.file = file 266 267 def read(self): 268 name_len = self.file.read32() 269 name = self.file.readstr(len = name_len) 270 271class VMSDFieldGeneric(object): 272 def __init__(self, desc, file): 273 self.file = file 274 self.desc = desc 275 self.data = "" 276 277 def __repr__(self): 278 return str(self.__str__()) 279 280 def __str__(self): 281 return " ".join("{0:02x}".format(c) for c in self.data) 282 283 def getDict(self): 284 return self.__str__() 285 286 def read(self): 287 size = int(self.desc['size']) 288 self.data = self.file.readvar(size) 289 return self.data 290 291class VMSDFieldInt(VMSDFieldGeneric): 292 def __init__(self, desc, file): 293 super(VMSDFieldInt, self).__init__(desc, file) 294 self.size = int(desc['size']) 295 self.format = '0x%%0%dx' % (self.size * 2) 296 self.sdtype = '>i%d' % self.size 297 self.udtype = '>u%d' % self.size 298 299 def __repr__(self): 300 if self.data < 0: 301 return ('%s (%d)' % ((self.format % self.udata), self.data)) 302 else: 303 return self.format % self.data 304 305 def __str__(self): 306 return self.__repr__() 307 308 def getDict(self): 309 return self.__str__() 310 311 def read(self): 312 super(VMSDFieldInt, self).read() 313 self.sdata = int.from_bytes(self.data, byteorder='big', signed=True) 314 self.udata = int.from_bytes(self.data, byteorder='big', signed=False) 315 self.data = self.sdata 316 return self.data 317 318class VMSDFieldUInt(VMSDFieldInt): 319 def __init__(self, desc, file): 320 super(VMSDFieldUInt, self).__init__(desc, file) 321 322 def read(self): 323 super(VMSDFieldUInt, self).read() 324 self.data = self.udata 325 return self.data 326 327class VMSDFieldIntLE(VMSDFieldInt): 328 def __init__(self, desc, file): 329 super(VMSDFieldIntLE, self).__init__(desc, file) 330 self.dtype = '<i%d' % self.size 331 332class VMSDFieldBool(VMSDFieldGeneric): 333 def __init__(self, desc, file): 334 super(VMSDFieldBool, self).__init__(desc, file) 335 336 def __repr__(self): 337 return self.data.__repr__() 338 339 def __str__(self): 340 return self.data.__str__() 341 342 def getDict(self): 343 return self.data 344 345 def read(self): 346 super(VMSDFieldBool, self).read() 347 if self.data[0] == 0: 348 self.data = False 349 else: 350 self.data = True 351 return self.data 352 353class VMSDFieldStruct(VMSDFieldGeneric): 354 QEMU_VM_SUBSECTION = 0x05 355 356 def __init__(self, desc, file): 357 super(VMSDFieldStruct, self).__init__(desc, file) 358 self.data = collections.OrderedDict() 359 360 # When we see compressed array elements, unfold them here 361 new_fields = [] 362 for field in self.desc['struct']['fields']: 363 if not 'array_len' in field: 364 new_fields.append(field) 365 continue 366 array_len = field.pop('array_len') 367 field['index'] = 0 368 new_fields.append(field) 369 for i in range(1, array_len): 370 c = field.copy() 371 c['index'] = i 372 new_fields.append(c) 373 374 self.desc['struct']['fields'] = new_fields 375 376 def __repr__(self): 377 return self.data.__repr__() 378 379 def __str__(self): 380 return self.data.__str__() 381 382 def read(self): 383 for field in self.desc['struct']['fields']: 384 try: 385 reader = vmsd_field_readers[field['type']] 386 except: 387 reader = VMSDFieldGeneric 388 389 field['data'] = reader(field, self.file) 390 field['data'].read() 391 392 if 'index' in field: 393 if field['name'] not in self.data: 394 self.data[field['name']] = [] 395 a = self.data[field['name']] 396 if len(a) != int(field['index']): 397 raise Exception("internal index of data field unmatched (%d/%d)" % (len(a), int(field['index']))) 398 a.append(field['data']) 399 else: 400 self.data[field['name']] = field['data'] 401 402 if 'subsections' in self.desc['struct']: 403 for subsection in self.desc['struct']['subsections']: 404 if self.file.read8() != self.QEMU_VM_SUBSECTION: 405 raise Exception("Subsection %s not found at offset %x" % ( subsection['vmsd_name'], self.file.tell())) 406 name = self.file.readstr() 407 version_id = self.file.read32() 408 self.data[name] = VMSDSection(self.file, version_id, subsection, (name, 0)) 409 self.data[name].read() 410 411 def getDictItem(self, value): 412 # Strings would fall into the array category, treat 413 # them specially 414 if value.__class__ is ''.__class__: 415 return value 416 417 try: 418 return self.getDictOrderedDict(value) 419 except: 420 try: 421 return self.getDictArray(value) 422 except: 423 try: 424 return value.getDict() 425 except: 426 return value 427 428 def getDictArray(self, array): 429 r = [] 430 for value in array: 431 r.append(self.getDictItem(value)) 432 return r 433 434 def getDictOrderedDict(self, dict): 435 r = collections.OrderedDict() 436 for (key, value) in dict.items(): 437 r[key] = self.getDictItem(value) 438 return r 439 440 def getDict(self): 441 return self.getDictOrderedDict(self.data) 442 443vmsd_field_readers = { 444 "bool" : VMSDFieldBool, 445 "int8" : VMSDFieldInt, 446 "int16" : VMSDFieldInt, 447 "int32" : VMSDFieldInt, 448 "int32 equal" : VMSDFieldInt, 449 "int32 le" : VMSDFieldIntLE, 450 "int64" : VMSDFieldInt, 451 "uint8" : VMSDFieldUInt, 452 "uint16" : VMSDFieldUInt, 453 "uint32" : VMSDFieldUInt, 454 "uint32 equal" : VMSDFieldUInt, 455 "uint64" : VMSDFieldUInt, 456 "int64 equal" : VMSDFieldInt, 457 "uint8 equal" : VMSDFieldInt, 458 "uint16 equal" : VMSDFieldInt, 459 "float64" : VMSDFieldGeneric, 460 "timer" : VMSDFieldGeneric, 461 "buffer" : VMSDFieldGeneric, 462 "unused_buffer" : VMSDFieldGeneric, 463 "bitmap" : VMSDFieldGeneric, 464 "struct" : VMSDFieldStruct, 465 "unknown" : VMSDFieldGeneric, 466} 467 468class VMSDSection(VMSDFieldStruct): 469 def __init__(self, file, version_id, device, section_key): 470 self.file = file 471 self.data = "" 472 self.vmsd_name = "" 473 self.section_key = section_key 474 desc = device 475 if 'vmsd_name' in device: 476 self.vmsd_name = device['vmsd_name'] 477 478 # A section really is nothing but a FieldStruct :) 479 super(VMSDSection, self).__init__({ 'struct' : desc }, file) 480 481############################################################################### 482 483class MigrationDump(object): 484 QEMU_VM_FILE_MAGIC = 0x5145564d 485 QEMU_VM_FILE_VERSION = 0x00000003 486 QEMU_VM_EOF = 0x00 487 QEMU_VM_SECTION_START = 0x01 488 QEMU_VM_SECTION_PART = 0x02 489 QEMU_VM_SECTION_END = 0x03 490 QEMU_VM_SECTION_FULL = 0x04 491 QEMU_VM_SUBSECTION = 0x05 492 QEMU_VM_VMDESCRIPTION = 0x06 493 QEMU_VM_CONFIGURATION = 0x07 494 QEMU_VM_SECTION_FOOTER= 0x7e 495 496 def __init__(self, filename): 497 self.section_classes = { ( 'ram', 0 ) : [ RamSection, None ], 498 ( 'spapr/htab', 0) : ( HTABSection, None ) } 499 self.filename = filename 500 self.vmsd_desc = None 501 502 def read(self, desc_only = False, dump_memory = False, write_memory = False): 503 # Read in the whole file 504 file = MigrationFile(self.filename) 505 506 # File magic 507 data = file.read32() 508 if data != self.QEMU_VM_FILE_MAGIC: 509 raise Exception("Invalid file magic %x" % data) 510 511 # Version (has to be v3) 512 data = file.read32() 513 if data != self.QEMU_VM_FILE_VERSION: 514 raise Exception("Invalid version number %d" % data) 515 516 self.load_vmsd_json(file) 517 518 # Read sections 519 self.sections = collections.OrderedDict() 520 521 if desc_only: 522 return 523 524 ramargs = {} 525 ramargs['page_size'] = self.vmsd_desc['page_size'] 526 ramargs['dump_memory'] = dump_memory 527 ramargs['write_memory'] = write_memory 528 self.section_classes[('ram',0)][1] = ramargs 529 530 while True: 531 section_type = file.read8() 532 if section_type == self.QEMU_VM_EOF: 533 break 534 elif section_type == self.QEMU_VM_CONFIGURATION: 535 section = ConfigurationSection(file) 536 section.read() 537 elif section_type == self.QEMU_VM_SECTION_START or section_type == self.QEMU_VM_SECTION_FULL: 538 section_id = file.read32() 539 name = file.readstr() 540 instance_id = file.read32() 541 version_id = file.read32() 542 section_key = (name, instance_id) 543 classdesc = self.section_classes[section_key] 544 section = classdesc[0](file, version_id, classdesc[1], section_key) 545 self.sections[section_id] = section 546 section.read() 547 elif section_type == self.QEMU_VM_SECTION_PART or section_type == self.QEMU_VM_SECTION_END: 548 section_id = file.read32() 549 self.sections[section_id].read() 550 elif section_type == self.QEMU_VM_SECTION_FOOTER: 551 read_section_id = file.read32() 552 if read_section_id != section_id: 553 raise Exception("Mismatched section footer: %x vs %x" % (read_section_id, section_id)) 554 else: 555 raise Exception("Unknown section type: %d" % section_type) 556 file.close() 557 558 def load_vmsd_json(self, file): 559 vmsd_json = file.read_migration_debug_json() 560 self.vmsd_desc = json.loads(vmsd_json, object_pairs_hook=collections.OrderedDict) 561 for device in self.vmsd_desc['devices']: 562 key = (device['name'], device['instance_id']) 563 value = ( VMSDSection, device ) 564 self.section_classes[key] = value 565 566 def getDict(self): 567 r = collections.OrderedDict() 568 for (key, value) in self.sections.items(): 569 key = "%s (%d)" % ( value.section_key[0], key ) 570 r[key] = value.getDict() 571 return r 572 573############################################################################### 574 575class JSONEncoder(json.JSONEncoder): 576 def default(self, o): 577 if isinstance(o, VMSDFieldGeneric): 578 return str(o) 579 return json.JSONEncoder.default(self, o) 580 581parser = argparse.ArgumentParser() 582parser.add_argument("-f", "--file", help='migration dump to read from', required=True) 583parser.add_argument("-m", "--memory", help='dump RAM contents as well', action='store_true') 584parser.add_argument("-d", "--dump", help='what to dump ("state" or "desc")', default='state') 585parser.add_argument("-x", "--extract", help='extract contents into individual files', action='store_true') 586args = parser.parse_args() 587 588jsonenc = JSONEncoder(indent=4, separators=(',', ': ')) 589 590if args.extract: 591 dump = MigrationDump(args.file) 592 593 dump.read(desc_only = True) 594 print("desc.json") 595 f = open("desc.json", "w") 596 f.truncate() 597 f.write(jsonenc.encode(dump.vmsd_desc)) 598 f.close() 599 600 dump.read(write_memory = True) 601 dict = dump.getDict() 602 print("state.json") 603 f = open("state.json", "w") 604 f.truncate() 605 f.write(jsonenc.encode(dict)) 606 f.close() 607elif args.dump == "state": 608 dump = MigrationDump(args.file) 609 dump.read(dump_memory = args.memory) 610 dict = dump.getDict() 611 print(jsonenc.encode(dict)) 612elif args.dump == "desc": 613 dump = MigrationDump(args.file) 614 dump.read(desc_only = True) 615 print(jsonenc.encode(dump.vmsd_desc)) 616else: 617 raise Exception("Please specify either -x, -d state or -d desc") 618