From patchwork Thu Dec 1 17:00:43 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: qed: add qed-tool.py image manipulation utility Date: Thu, 01 Dec 2011 07:00:43 -0000 From: Stefan Hajnoczi X-Patchwork-Id: 128730 Message-Id: <1322758843-19809-1-git-send-email-stefanha@linux.vnet.ibm.com> To: Cc: Kevin Wolf , Stefan Hajnoczi The qed-tool.py utility can inspect and manipulate QED image files. It can be used for testing to see the state of image metadata and also to inject corruptions into the image file. It also has a scrubbing feature to copy just the metadata out of an image file, allowing users to share broken image files without revealing data in bug reports. This has lived in my local repo for a long time but could be useful to others. Signed-off-by: Stefan Hajnoczi --- scripts/qed-tool.py | 250 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 250 insertions(+), 0 deletions(-) create mode 100755 scripts/qed-tool.py diff --git a/scripts/qed-tool.py b/scripts/qed-tool.py new file mode 100755 index 0000000..90cc375 --- /dev/null +++ b/scripts/qed-tool.py @@ -0,0 +1,250 @@ +#!/usr/bin/env python +# +# Tool to manipulate QED image files +# +# Copyright (C) 2010 IBM, Corp. +# +# Authors: +# Stefan Hajnoczi +# +# This work is licensed under the terms of the GNU GPL, version 2. See +# the COPYING file in the top-level directory. + +import sys +import struct +import random +import optparse + +QED_F_NEED_CHECK = 0x02 + +header_fmt = ' [] - Zero data clusters''' + pos, n = int(pos), 1 + if args: + if len(args) != 1: + err('expected one argument') + n = int(args[0]) + + for i in xrange(n): + l1_index = pos / qed.header['cluster_size'] / len(qed.l1_table) + if qed.l1_table[l1_index] == 0: + err('no l2 table allocated') + + l2_offset = qed.l1_table[l1_index] + l2_table = qed.read_table(l2_offset) + + l2_index = (pos / qed.header['cluster_size']) % len(qed.l1_table) + l2_table[l2_index] = 1 # zero the data cluster + qed.write_table(l2_offset, l2_table) + pos += qed.header['cluster_size'] + +def cmd_copy_metadata(qed, outfile): + '''copy_metadata - Copy metadata only (for scrubbing corrupted images)''' + out = open(outfile, 'wb') + + # Match file size + out.seek(qed.filesize - 1) + out.write('\0') + + # Copy header clusters + out.seek(0) + header_size_bytes = qed.header['header_size'] * qed.header['cluster_size'] + out.write(qed.raw_pread(0, header_size_bytes)) + + # Copy L1 table + out.seek(qed.header['l1_table_offset']) + s = ''.join(pack_table_elem(x) for x in qed.l1_table) + out.write(s) + + # Copy L2 tables + for l2_offset in qed.l1_table: + if l2_offset == 0: + continue + l2_table = qed.read_table(l2_offset) + out.seek(l2_offset) + s = ''.join(pack_table_elem(x) for x in l2_table) + out.write(s) + + out.close() + +def usage(): + sys.stderr.write('usage: %s []\n\n' % sys.argv[0]) + for cmd in sorted(x for x in globals() if x.startswith('cmd_')): + sys.stderr.write(globals()[cmd].__doc__ + '\n') + sys.exit(1) + +if len(sys.argv) < 3: + usage() +filename, cmd = sys.argv[1:3] + +cmd = 'cmd_' + cmd +if cmd not in globals(): + usage() + +qed = QED(open(filename, 'r+b')) +try: + globals()[cmd](qed, *sys.argv[3:]) +except TypeError: + sys.stderr.write(globals()[cmd].__doc__ + '\n') + sys.exit(1)