/usr/lib/python3/dist-packages/bmaptools/CLI.py is in bmap-tools 3.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# vim: ts=4 sw=4 et ai si
#
# Copyright (c) 2012-2014 Intel, Inc.
# License: GPLv2
# Author: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2,
# as published by the Free Software Foundation.
#
# 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.
"""
A tool for creating block maps (bmap) and copying disk images using bmap files.
Documentation can be found here:
source.tizen.org/documentation/reference/bmaptool
"""
# Disable the following pylint recommendations:
# * Too few public methods (R0903)
# * Too many statements (R0915)
# * Too many branches (R0912)
# pylint: disable=R0903
# pylint: disable=R0915
# pylint: disable=R0912
import argparse
import sys
import os
import stat
import time
import logging
import tempfile
import traceback
import shutil
import io
from bmaptools import BmapCreate, BmapCopy, BmapHelpers, TransRead
VERSION = "3.4"
log = logging.getLogger() # pylint: disable=C0103
class NamedFile(object):
"""
This simple class allows us to override the 'name' attribute of a file
object. The reason is that some classes use the 'name' attribute of the
file object to print file path. But, for example, 'os.fdopen()' sets the
name to "<fdopen>", which is not very user-friendly. Also, sometimes we
want to substitute the file name with something else.
"""
def __init__(self, file_obj, name):
self._file_obj = file_obj
self.name = name
def __getattr__(self, name):
return getattr(self._file_obj, name)
def open_block_device(path):
"""
This is a helper function for 'open_files()' which is called if the
destination file of the "copy" command is a block device. We handle block
devices a little bit different to regular files. Namely, we are trying to
make sure that we do not write to a mounted block device, otherwise the
user could corrupt, say, the root file system by a mistake. This is
achieved by opening the block device in exclusive mode, which guarantees
that we are the only users of the block device.
This function opens a block device specified by 'path' in exclusive mode.
Returns opened file object.
"""
try:
descriptor = os.open(path, os.O_WRONLY | os.O_EXCL)
except OSError as err:
log.error("cannot open block device '%s' in exclusive mode: %s"
% (path, err))
raise SystemExit(1)
# Turn the block device file descriptor into a file object
try:
file_obj = os.fdopen(descriptor, "wb")
except OSError as err:
os.close(descriptor)
log.error("cannot open block device '%s': %s" % (path, err))
raise SystemExit(1)
return NamedFile(file_obj, path)
def report_verification_results(context, sigs):
"""
This is a helper function which reports the GPG signature verification
results. The 'context' argument is the gpgme context object, and the 'sigs'
argument contains the results of the 'gpgme.verify()' function.
"""
for sig in sigs:
if not sig.status:
key = context.get_key(sig.fpr)
author = "%s <%s>" % (key.uids[0].name, key.uids[0].email)
log.info("successfully verified bmap file signature of %s "
"(fingerprint %s)" % (author, sig.fpr))
else:
log.error("signature verification failed (fingerprint %s): "
"%s" % (sig.fpr, sig.status[2].lower()))
log.error("either fix the problem or use --no-sig-verify"
"to disable signature verification")
raise SystemExit(1)
def verify_detached_bmap_signature(args, bmap_obj, bmap_path):
"""
This is a helper function for 'verify_bmap_signature()' which handles the
detached signature case.
"""
if args.no_sig_verify:
return None
if args.bmap_sig:
try:
sig_obj = TransRead.TransRead(args.bmap_sig)
except TransRead.Error as err:
log.error("cannot open bmap signature file '%s': %s" %
(args.bmap_sig, str(err)))
raise SystemExit(1)
sig_path = args.bmap_sig
else:
# Check if there is a stand-alone signature file
try:
sig_path = bmap_path + ".asc"
sig_obj = TransRead.TransRead(sig_path)
except TransRead.Error:
try:
sig_path = bmap_path + ".sig"
sig_obj = TransRead.TransRead(sig_path)
except TransRead.Error:
# No signatures found
return None
log.info("discovered signature file for bmap '%s'" % sig_path)
# If the stand-alone signature file is not local, make a local copy
if sig_obj.is_url:
try:
tmp_obj = tempfile.NamedTemporaryFile("w+")
except IOError as err:
log.error("cannot create a temporary file for the "
"signature: %s" % err)
raise SystemExit(1)
shutil.copyfileobj(sig_obj, tmp_obj)
tmp_obj.seek(0)
sig_obj.close()
sig_obj = tmp_obj
try:
import gpgme
except ImportError:
log.error("cannot verify the signature because the python \"gpgme\""
"module is not installed on your system")
log.error("please, either install the module or use --no-sig-verify")
raise SystemExit(1)
try:
context = gpgme.Context()
signature = io.FileIO(sig_obj.name)
signed_data = io.FileIO(bmap_obj.name)
sigs = context.verify(signature, signed_data, None)
except gpgme.GpgmeError as err:
log.error("failure when trying to verify GPG signature: %s" %
err[2].lower())
log.error("make sure file \"%s\" has proper GPG format" % sig_path)
raise SystemExit(1)
sig_obj.close()
if len(sigs) == 0:
log.warning("the \"%s\" signature file does not actually contain "
"any valid signatures" % sig_path)
else:
report_verification_results(context, sigs)
return None
def verify_clearsign_bmap_signature(args, bmap_obj):
"""
This is a helper function for 'verify_bmap_signature()' which handles the
clarsign signature case.
"""
if args.bmap_sig:
log.error("the bmap file has clearsign format and already contains "
"the signature, so --bmap-sig option should not be used")
raise SystemExit(1)
try:
import gpgme
except ImportError:
log.error("cannot verify the signature because the python \"gpgme\""
"module is not installed on your system")
log.error("cannot extract block map from the bmap file which has "
"clearsign format, please, install the module")
raise SystemExit(1)
try:
context = gpgme.Context()
signature = io.FileIO(bmap_obj.name)
plaintext = io.BytesIO()
sigs = context.verify(signature, None, plaintext)
except gpgme.GpgmeError as err:
log.error("failure when trying to verify GPG signature: %s" %
err[2].lower())
log.error("make sure the bmap file has proper GPG format ")
raise SystemExit(1)
if not args.no_sig_verify:
if len(sigs) == 0:
log.warning("the bmap file clearsign signature does not actually "
"contain any valid signatures")
else:
report_verification_results(context, sigs)
try:
tmp_obj = tempfile.TemporaryFile("w+")
except IOError as err:
log.error("cannot create a temporary file for bmap: %s" % err)
raise SystemExit(1)
tmp_obj.write(plaintext.getvalue())
tmp_obj.seek(0)
return tmp_obj
def verify_bmap_signature(args, bmap_obj, bmap_path):
"""
Verify GPG signature of the bmap file if it is present. The signature may
be in a separate file (detached) or it may be inside the bmap file itself
(clearsign signature).
If user specifies the --bmap-sig option, the signature is assumed to be
detached and is taken from the user-specified file. Otherwise, this
function verifies whether the bmap file has clearsign signature, and if
not, it tries to automatically discover the detached signature by searching
for a ".sig" or ".asc" file at the same path and with the same basename as
the bmap file. This function then verifies the signature and reports the
results.
In case of the clearsign signature, the bmap file has "invalid" format,
meaning that the proper bmap XML contents is in the GPG clearsign
container. The XML contents has to be extracted from the container before
further processing. And this is be done even if user specified the
--no-sig-verify option. This function returns an open file object with the
extracted XML bmap file contents in this case. Otherwise, this function
returns None.
"""
if not bmap_obj:
return None
clearsign_marker = "-----BEGIN PGP SIGNED MESSAGE-----"
buf = bmap_obj.read(len(clearsign_marker))
bmap_obj.seek(0)
if buf == clearsign_marker:
return verify_clearsign_bmap_signature(args, bmap_obj)
else:
return verify_detached_bmap_signature(args, bmap_obj, bmap_path)
def find_and_open_bmap(args):
"""
This is a helper function for 'open_files()' which discovers and opens the
bmap file, then returns the corresponding file object and the bmap file
path.
If the user specified the bmap file explicitly, we just open the provided
path. Otherwise, we try to discover the bmap file at the same place where
the image file is located. We search for a file with the same path and
basename, but with a ".bmap" extension.
Additionally, this function makes sure that the returned file object
corresponds to a local file, not a remote file. We do this by creating a
temporary local copy of the bmap file. The reason is that further on we may
need to check the GPG signature of the file, which requires it to be a
local file. On top of that, the BmapCopy class requires the bmap file to be
memory-mappable ('mmap()').
"""
if args.nobmap:
return (None, None)
if args.bmap:
try:
bmap_obj = TransRead.TransRead(args.bmap)
except TransRead.Error as err:
log.error("cannot open bmap file '%s': %s" % (args.bmap, str(err)))
raise SystemExit(1)
bmap_path = args.bmap
else:
# Automatically discover the bmap file
image_path = args.image
while True:
bmap_path = image_path + ".bmap"
try:
bmap_obj = TransRead.TransRead(bmap_path)
log.info("discovered bmap file '%s'" % bmap_path)
break
except TransRead.Error:
pass
image_path, ext = os.path.splitext(image_path)
if ext == '':
return (None, None)
if not bmap_obj.is_url:
return (bmap_obj, bmap_path)
try:
# Create a temporary file for the bmap
tmp_obj = tempfile.NamedTemporaryFile("w+")
except IOError as err:
log.error("cannot create a temporary file for bmap: %s" % err)
raise SystemExit(1)
shutil.copyfileobj(bmap_obj, tmp_obj)
tmp_obj.flush()
tmp_obj.seek(0)
bmap_obj.close()
return (tmp_obj, bmap_path)
def open_files(args):
"""
This is a helper function for 'copy_command()' which the image, bmap, and
the destination files. Returns a tuple of 5 elements:
1 file-like object for the image
2 file object for the destination file
3 file-like object for the bmap
4 full path to the bmap file
5 image size in bytes
6 'True' if the destination file is a block device, otherwise 'False'
"""
# Open the image file using the TransRead module, which will automatically
# recognize whether it is compressed or whether file path is an URL, etc.
try:
image_obj = TransRead.TransRead(args.image)
except TransRead.Error as err:
log.error("cannot open image: %s" % str(err))
raise SystemExit(1)
# Open the bmap file. Try to discover the bmap file automatically if it
# was not specified.
(bmap_obj, bmap_path) = find_and_open_bmap(args)
if bmap_path == args.image:
# Most probably the specified the bmap file instead of the image file
# by mistake.
log.warning("image has the same path as the bmap file, dropping bmap")
bmap_obj.close()
bmap_obj = None
bmap_path = None
args.nobmap = True
# If the destination file is under "/dev", but does not exist, print a
# warning. This is done in order to be more user-friendly, because
# sometimes users mean to write to a block device, them misspell its name.
# We just create the "/dev/misspelled" file, write the data there, and
# report success. Later on the user finds out that the image was not really
# written to the device, and gets confused. Similar confusion may happen if
# the destination file is not a special device for some reasons.
if os.path.normpath(args.dest).startswith("/dev/"):
if not os.path.exists(args.dest):
log.warning("\"%s\" does not exist, creating a regular file "
"\"%s\"" % (args.dest, args.dest))
elif stat.S_ISREG(os.stat(args.dest).st_mode):
log.warning("\"%s\" is under \"/dev\", but it is a regular file, "
"not a device node" % args.dest)
# Try to open the destination file. If it does not exist, a new regular
# file will be created. If it exists and it is a regular file - it'll be
# truncated. If this is a block device, it'll just be opened.
try:
dest_obj = open(args.dest, 'wb+')
except IOError as err:
log.error("cannot open destination file '%s': %s"
% (args.dest, err))
raise SystemExit(1)
# Check whether the destination file is a block device
dest_is_blkdev = stat.S_ISBLK(os.fstat(dest_obj.fileno()).st_mode)
if dest_is_blkdev:
dest_obj.close()
dest_obj = open_block_device(args.dest)
return (image_obj, dest_obj, bmap_obj, bmap_path, image_obj.size,
dest_is_blkdev)
def copy_command(args):
"""Copy an image to a block device or a regular file using bmap."""
if args.nobmap and args.bmap:
log.error("--nobmap and --bmap cannot be used together")
raise SystemExit(1)
if args.bmap_sig and args.no_sig_verify:
log.error("--bmap-sig and --no-sig-verify cannot be used together")
raise SystemExit(1)
image_obj, dest_obj, bmap_obj, bmap_path, image_size, dest_is_blkdev = \
open_files(args)
if args.bmap_sig and not bmap_obj:
log.error("the bmap signature file was specified, but bmap file "
"was not found")
raise SystemExit(1)
f_obj = verify_bmap_signature(args, bmap_obj, bmap_path)
if f_obj:
bmap_obj.close()
bmap_obj = f_obj
if bmap_obj:
bmap_obj = NamedFile(bmap_obj, bmap_path)
try:
if dest_is_blkdev:
dest_str = "block device '%s'" % args.dest
# For block devices, use the specialized class
writer = BmapCopy.BmapBdevCopy(image_obj, dest_obj, bmap_obj,
image_size)
else:
dest_str = "file '%s'" % os.path.basename(args.dest)
writer = BmapCopy.BmapCopy(image_obj, dest_obj, bmap_obj,
image_size)
except BmapCopy.Error as err:
log.error(str(err))
raise SystemExit(1)
# Print the progress indicator while copying
if not args.quiet and not args.debug and \
sys.stderr.isatty() and sys.stdout.isatty():
writer.set_progress_indicator(sys.stderr, "bmaptool: info: %d%% copied")
start_time = time.time()
if not bmap_obj:
if args.nobmap:
log.info("no bmap given, copy entire image to '%s'" % args.dest)
else:
log.error("bmap file not found, please, use --nobmap option to "
"flash without bmap")
raise SystemExit(1)
else:
log.info("block map format version %s" % writer.bmap_version)
log.info("%d blocks of size %d (%s), mapped %d blocks (%s or %.1f%%)"
% (writer.blocks_cnt, writer.block_size,
writer.image_size_human, writer.mapped_cnt,
writer.mapped_size_human, writer.mapped_percent))
log.info("copying image '%s' to %s using bmap file '%s'"
% (os.path.basename(args.image), dest_str,
os.path.basename(bmap_path)))
try:
try:
writer.copy(False, not args.no_verify)
except (BmapCopy.Error, TransRead.Error) as err:
log.error(str(err))
raise SystemExit(1)
# Synchronize the block device
log.info("synchronizing '%s'" % args.dest)
try:
writer.sync()
except BmapCopy.Error as err:
log.error(str(err))
raise SystemExit(1)
except KeyboardInterrupt:
log.error("the program is interrupted, exiting")
raise SystemExit(1)
copying_time = time.time() - start_time
copying_speed = writer.mapped_size // copying_time
log.info("copying time: %s, copying speed %s/sec"
% (BmapHelpers.human_time(copying_time),
BmapHelpers.human_size(copying_speed)))
dest_obj.close()
if bmap_obj:
bmap_obj.close()
image_obj.close()
def create_command(args):
"""
Generate block map (AKA bmap) for an image. The idea is that while images
files may generally be very large (e.g., 4GiB), they may nevertheless
contain only little real data, e.g., 512MiB. This data are files,
directories, file-system meta-data, partition table, etc. When copying the
image to the target device, you do not have to copy all the 4GiB of data,
you can copy only 512MiB of it, which is 4 times less, so copying should
presumably be 4 times faster.
The block map file is an XML file which contains a list of blocks which
have to be copied to the target device. The other blocks are not used and
there is no need to copy them. The XML file also contains some additional
information like block size, image size, count of mapped blocks, etc. There
are also many commentaries, so it is human-readable.
The image has to be a sparse file. Generally, this means that when you
generate this image file, you should start with a huge sparse file which
contains a single hole spanning the entire file. Then you should partition
it, write all the data (probably by means of loop-back mounting the image
or parts of it), etc. The end result should be a sparse file where mapped
areas represent useful parts of the image and holes represent useless parts
of the image, which do not have to be copied when copying the image to the
target device.
"""
# Create and setup the output stream
if args.output:
try:
output = open(args.output, "w+")
except IOError as err:
log.error("cannot open the output file '%s': %s"
% (args.output, err))
raise SystemExit(1)
else:
try:
# Create a temporary file for the bmap
output = tempfile.TemporaryFile("w+")
except IOError as err:
log.error("cannot create a temporary file: %s" % err)
raise SystemExit(1)
try:
creator = BmapCreate.BmapCreate(args.image, output, "sha256")
creator.generate(not args.no_checksum)
except BmapCreate.Error as err:
log.error(str(err))
raise SystemExit(1)
if not args.output:
output.seek(0)
sys.stdout.write(output.read())
if creator.mapped_cnt == creator.blocks_cnt:
log.warning("all %s are mapped, no holes in '%s'"
% (creator.image_size_human, args.image))
log.warning("was the image handled incorrectly and holes "
"were expanded?")
def parse_arguments():
"""A helper function which parses the input arguments."""
text = sys.modules[__name__].__doc__
parser = argparse.ArgumentParser(description=text, prog='bmaptool')
# The --version option
parser.add_argument("--version", action="version",
version="%(prog)s " + "%s" % VERSION)
# The --quiet option
text = "be quiet"
parser.add_argument("-q", "--quiet", action="store_true", help=text)
# The --debug option
text = "print debugging information"
parser.add_argument("-d", "--debug", action="store_true", help=text)
subparsers = parser.add_subparsers(title="commands")
#
# Create parser for the "create" command
#
text = "generate bmap for an image file (which should be a sparse file)"
parser_create = subparsers.add_parser("create", help=text)
parser_create.set_defaults(func=create_command)
# Mandatory command-line argument - image file
text = "the image to generate bmap for"
parser_create.add_argument("image", help=text)
# The --output option
text = "the output file name (otherwise stdout is used)"
parser_create.add_argument("-o", "--output", help=text)
# The --no-checksum option
text = "do not generate the checksum for block ranges in the bmap"
parser_create.add_argument("--no-checksum", action="store_true", help=text)
#
# Create parser for the "copy" command
#
text = "write an image to a block device using bmap"
parser_copy = subparsers.add_parser("copy", help=text)
parser_copy.set_defaults(func=copy_command)
# The first positional argument - image file
text = "the image file to copy. Supported formats: uncompressed, " + \
", ".join(TransRead.SUPPORTED_COMPRESSION_TYPES)
parser_copy.add_argument("image", help=text)
# The second positional argument - block device node
text = "the destination file or device node to copy the image to"
parser_copy.add_argument("dest", help=text)
# The --bmap option
text = "the block map file for the image"
parser_copy.add_argument("--bmap", help=text)
# The --nobmap option
text = "allow copying without a bmap file"
parser_copy.add_argument("--nobmap", action="store_true", help=text)
# The --bmap-sig option
text = "the detached GPG signature for the bmap file"
parser_copy.add_argument("--bmap-sig", help=text)
# The --no-sig-verify option
text = "do not verify bmap file GPG signatrue"
parser_copy.add_argument("--no-sig-verify", action="store_true", help=text)
# The --no-verify option
text = "do not verify the data checksum while writing"
parser_copy.add_argument("--no-verify", action="store_true", help=text)
return parser.parse_args()
def setup_logger(loglevel):
"""
A helper function which configures the root logger. The log level is
initialized to 'loglevel'.
"""
# Esc-sequences for coloured output
esc_red = '\033[91m' # pylint: disable=W1401
esc_yellow = '\033[93m' # pylint: disable=W1401
esc_green = '\033[92m' # pylint: disable=W1401
esc_end = '\033[0m' # pylint: disable=W1401
class MyFormatter(logging.Formatter):
"""
A custom formatter for logging messages. The reason we have it is to
have different format for different log levels.
"""
def __init__(self, fmt=None, datefmt=None):
"""The constructor."""
logging.Formatter.__init__(self, fmt, datefmt)
self._orig_fmt = self._fmt
# Prefix with green-colored time-stamp, as well as with module name
# and line number
self._dbg_fmt = "[" + esc_green + "%(asctime)s" + esc_end + \
"] [%(module)s,%(lineno)d] " + self._fmt
def format(self, record):
"""
The formatter which which simply prefixes all debugging messages
with a time-stamp.
"""
if record.levelno == logging.DEBUG:
self._fmt = self._dbg_fmt
result = logging.Formatter.format(self, record)
self._fmt = self._orig_fmt
return result
# Change log level names to something nicer than the default all-capital
# 'INFO' etc.
logging.addLevelName(logging.ERROR, esc_red + "ERROR" + esc_end)
logging.addLevelName(logging.WARNING, esc_yellow + "WARNING" + esc_end)
logging.addLevelName(logging.DEBUG, "debug")
logging.addLevelName(logging.INFO, "info")
log.setLevel(loglevel)
formatter = MyFormatter("bmaptool: %(levelname)s: %(message)s", "%H:%M:%S")
where = logging.StreamHandler(sys.stderr)
where.setFormatter(formatter)
log.addHandler(where)
def main():
"""Script entry point."""
args = parse_arguments()
if args.quiet:
loglevel = logging.WARNING
elif args.debug:
loglevel = logging.DEBUG
else:
loglevel = logging.INFO
setup_logger(loglevel)
if args.quiet and args.debug:
log.error("--quiet and --debug cannot be used together")
raise SystemExit(1)
try:
args.func(args)
except MemoryError:
log.error("Out of memory!")
traceback.print_exc()
log.info("The contents of /proc/meminfo:")
with open('/proc/meminfo', 'rt') as file_obj:
for line in file_obj:
print(line.strip())
log.info("The contents of /proc/self/status:")
with open('/proc/self/status', 'rt') as file_obj:
for line in file_obj:
print(line.strip())
if __name__ == "__main__":
sys.exit(main())
|