Skip to content
Snippets Groups Projects
main.py 12 KiB
Newer Older
#!/usr/bin/env python

# Copyright 2012 GRNET S.A. All rights reserved.
Nikos Skalkotos's avatar
Nikos Skalkotos committed
#
# Redistribution and use in source and binary forms, with or
# without modification, are permitted provided that the following
# conditions are met:
#
#   1. Redistributions of source code must retain the above
#      copyright notice, this list of conditions and the following
#      disclaimer.
#
#   2. Redistributions in binary form must reproduce the above
#      copyright notice, this list of conditions and the following
#      disclaimer in the documentation and/or other materials
#      provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
# The views and conclusions contained in the software and
# documentation are those of the authors and should not be
# interpreted as representing official policies, either expressed
# or implied, of GRNET S.A.

from image_creator import __version__ as version
Nikos Skalkotos's avatar
Nikos Skalkotos committed
from image_creator.disk import Disk
from image_creator.util import FatalError, MD5
from image_creator.output.cli import SilentOutput, SimpleOutput, \
Nikos Skalkotos's avatar
Nikos Skalkotos committed
    OutputWthProgress
from image_creator.os_type import os_cls
from image_creator.kamaki_wrapper import Kamaki, ClientError
Nikos Skalkotos's avatar
Nikos Skalkotos committed
import sys
import os
def check_writable_dir(option, opt_str, value, parser):
    dirname = os.path.dirname(value)
    name = os.path.basename(value)
    if dirname and not os.path.isdir(dirname):
        raise FatalError("`%s' is not an existing directory" % dirname)
        raise FatalError("`%s' is not a valid file name" % dirname)

    setattr(parser.values, option.dest, value)


def parse_options(input_args):
    usage = "Usage: %prog [options] <input_media>"
    parser = optparse.OptionParser(version=version, usage=usage)

    parser.add_option("-o", "--outfile", type="string", dest="outfile",
Nikos Skalkotos's avatar
Nikos Skalkotos committed
                      default=None, action="callback",
                      callback=check_writable_dir, help="dump image to FILE",
                      metavar="FILE")
Nikos Skalkotos's avatar
Nikos Skalkotos committed
    parser.add_option("-f", "--force", dest="force", default=False,
Nikos Skalkotos's avatar
Nikos Skalkotos committed
                      action="store_true",
                      help="overwrite output files if they exist")
Nikos Skalkotos's avatar
Nikos Skalkotos committed
    parser.add_option("-s", "--silent", dest="silent", default=False,
                      help="output only errors",
Nikos Skalkotos's avatar
Nikos Skalkotos committed
                      action="store_true")
    parser.add_option("-u", "--upload", dest="upload", type="string",
Nikos Skalkotos's avatar
Nikos Skalkotos committed
                      default=False,
                      help="upload the image to pithos with name FILENAME",
                      metavar="FILENAME")
    parser.add_option("-r", "--register", dest="register", type="string",
Nikos Skalkotos's avatar
Nikos Skalkotos committed
                      default=False,
                      help="register the image with ~okeanos as IMAGENAME",
Nikos Skalkotos's avatar
Nikos Skalkotos committed
                      metavar="IMAGENAME")
    parser.add_option("-m", "--metadata", dest="metadata", default=[],
                      help="add custom KEY=VALUE metadata to the image",
Nikos Skalkotos's avatar
Nikos Skalkotos committed
                      action="append", metavar="KEY=VALUE")
Nikos Skalkotos's avatar
Nikos Skalkotos committed
    parser.add_option("-t", "--token", dest="token", type="string",
                      default=None, help="use this authentication token when "
                      "uploading/registering images")
Nikos Skalkotos's avatar
Nikos Skalkotos committed

    parser.add_option("--print-sysprep", dest="print_sysprep", default=False,
Nikos Skalkotos's avatar
Nikos Skalkotos committed
                      help="print the enabled and disabled system preparation "
                      "operations for this input media", action="store_true")
Nikos Skalkotos's avatar
Nikos Skalkotos committed

    parser.add_option("--enable-sysprep", dest="enabled_syspreps", default=[],
Nikos Skalkotos's avatar
Nikos Skalkotos committed
                      help="run SYSPREP operation on the input media",
                      action="append", metavar="SYSPREP")
Nikos Skalkotos's avatar
Nikos Skalkotos committed

    parser.add_option("--disable-sysprep", dest="disabled_syspreps",
Nikos Skalkotos's avatar
Nikos Skalkotos committed
                      help="prevent SYSPREP operation from running on the "
                      "input media", default=[], action="append",
                      metavar="SYSPREP")
Nikos Skalkotos's avatar
Nikos Skalkotos committed

    parser.add_option("--no-sysprep", dest="sysprep", default=True,
                      help="don't perform any system preparation operation",
Nikos Skalkotos's avatar
Nikos Skalkotos committed
                      action="store_false")
Nikos Skalkotos's avatar
Nikos Skalkotos committed

    parser.add_option("--no-shrink", dest="shrink", default=True,
Nikos Skalkotos's avatar
Nikos Skalkotos committed
                      help="don't shrink any partition", action="store_false")
Nikos Skalkotos's avatar
Nikos Skalkotos committed

Nikos Skalkotos's avatar
Nikos Skalkotos committed
    parser.add_option("--public", dest="public", default=False,
Nikos Skalkotos's avatar
Nikos Skalkotos committed
                      help="register image with cyclades as public",
Nikos Skalkotos's avatar
Nikos Skalkotos committed
                      action="store_true")

    parser.add_option("--tmpdir", dest="tmp", type="string", default=None,
                      help="create large temporary image files under DIR",
                      metavar="DIR")

    options, args = parser.parse_args(input_args)

    if len(args) != 1:
        parser.error('Wrong number of arguments')
    options.source = args[0]
    if not os.path.exists(options.source):
        raise FatalError("Input media `%s' is not accessible" % options.source)
Nikos Skalkotos's avatar
Nikos Skalkotos committed
    if options.register and not options.upload:
        raise FatalError("You also need to set -u when -r option is set")
Nikos Skalkotos's avatar
Nikos Skalkotos committed
    if options.upload and options.token is None:
Nikos Skalkotos's avatar
Nikos Skalkotos committed
        raise FatalError(
            "Image uploading cannot be performed. "
            "No authentication token is specified. Use -t to set a token")
Nikos Skalkotos's avatar
Nikos Skalkotos committed

    if options.tmp is not None and not os.path.isdir(options.tmp):
        raise FatalError("The directory `%s' specified with --tmpdir is not "
                         "valid" % options.tmp)
    meta = {}
    for m in options.metadata:
        try:
            key, value = m.split('=', 1)
        except ValueError:
            raise FatalError("Metadata option: `%s' is not in KEY=VALUE "
                             "format." % m)
        meta[key] = value
    options.metadata = meta

Nikos Skalkotos's avatar
Nikos Skalkotos committed

def image_creator():
    options = parse_options(sys.argv[1:])

Nikos Skalkotos's avatar
Nikos Skalkotos committed
    if options.outfile is None and not options.upload and not \
            options.print_sysprep:
        raise FatalError("At least one of `-o', `-u' or `--print-sysprep' "
                         "must be set")
        out = SilentOutput()
        out = OutputWthProgress(True) if sys.stderr.isatty() else \
Nikos Skalkotos's avatar
Nikos Skalkotos committed
            SimpleOutput(False)
    title = 'snf-image-creator %s' % version
    out.output(title)
    out.output('=' * len(title))
    if os.geteuid() != 0:
Nikos Skalkotos's avatar
Nikos Skalkotos committed
        raise FatalError("You must run %s as root"
                         % os.path.basename(sys.argv[0]))
    if not options.force and options.outfile is not None:
        for extension in ('', '.meta', '.md5sum'):
            filename = "%s%s" % (options.outfile, extension)
            if os.path.exists(filename):
                raise FatalError("Output file %s exists "
                                 "(use --force to overwrite it)" % filename)

    # Check if the authentication token is valid. The earlier the better
    if options.token is not None:
        try:
            account = Kamaki.get_account(options.token)
            if account is None:
                raise FatalError("The authentication token you provided is not"
                                 " valid!")
        except ClientError as e:
            raise FatalError("Astakos client: %d %s" % (e.status, e.message))

    disk = Disk(options.source, out, options.tmp)

    def signal_handler(signum, frame):
        disk.cleanup()

    signal.signal(signal.SIGINT, signal_handler)
    signal.signal(signal.SIGTERM, signal_handler)
Nikos Skalkotos's avatar
Nikos Skalkotos committed
    try:
        snapshot = disk.snapshot()

        dev = disk.get_device(snapshot)

        # If no customization is to be applied, the image should be mounted ro
        readonly = (not (options.sysprep or options.shrink) or
                    options.print_sysprep)
        dev.mount(readonly)
        cls = os_cls(dev.distro, dev.ostype)
        image_os = cls(dev.root, dev.g, out)
        for sysprep in options.disabled_syspreps:
            image_os.disable_sysprep(image_os.get_sysprep_by_name(sysprep))

        for sysprep in options.enabled_syspreps:
            image_os.enable_sysprep(image_os.get_sysprep_by_name(sysprep))
        if options.print_sysprep:
            image_os.print_syspreps()

        if options.outfile is None and not options.upload:
            return 0

        if options.sysprep:
            image_os.do_sysprep()
        metadata = image_os.meta
Nikos Skalkotos's avatar
Nikos Skalkotos committed
        dev.umount()
        size = options.shrink and dev.shrink() or dev.size
        metadata.update(dev.meta)
        # Add command line metadata to the collected ones...
        metadata.update(options.metadata)

        md5 = MD5(out)
        checksum = md5.compute(snapshot, size)
        metastring = '\n'.join(
Nikos Skalkotos's avatar
Nikos Skalkotos committed
            ['%s=%s' % (key, value) for (key, value) in metadata.items()])
        metastring += '\n'
        if options.outfile is not None:
            dev.dump(options.outfile)
Nikos Skalkotos's avatar
Nikos Skalkotos committed

            out.output('Dumping metadata file ...', False)
            with open('%s.%s' % (options.outfile, 'meta'), 'w') as f:
                f.write(metastring)
            out.output('Dumping md5sum file ...', False)
            with open('%s.%s' % (options.outfile, 'md5sum'), 'w') as f:
Nikos Skalkotos's avatar
Nikos Skalkotos committed
                f.write('%s %s\n' % (checksum,
                                     os.path.basename(options.outfile)))
        # Destroy the device. We only need the snapshot from now on
        disk.destroy_device(dev)

        try:
            uploaded_obj = ""
            if options.upload:
                out.output("Uploading image to pithos:")
                kamaki = Kamaki(account, out)
                with open(snapshot, 'rb') as f:
Nikos Skalkotos's avatar
Nikos Skalkotos committed
                    uploaded_obj = kamaki.upload(
                        f, size, options.upload,
                        "(1/4)  Calculating block hashes",
                        "(2/4)  Uploading missing blocks")
Nikos Skalkotos's avatar
Nikos Skalkotos committed
                out.output("(3/4)  Uploading metadata file ...", False)
                kamaki.upload(StringIO.StringIO(metastring),
                              size=len(metastring),
                              remote_path="%s.%s" % (options.upload, 'meta'))
                out.success('done')
                out.output("(4/4)  Uploading md5sum file ...", False)
Nikos Skalkotos's avatar
Nikos Skalkotos committed
                md5sumstr = '%s %s\n' % (checksum,
                                         os.path.basename(options.upload))
                kamaki.upload(StringIO.StringIO(md5sumstr),
                              size=len(md5sumstr),
                              remote_path="%s.%s" % (options.upload, 'md5sum'))
                out.success('done')
                out.output()

            if options.register:
Nikos Skalkotos's avatar
Nikos Skalkotos committed
                img_type = 'public' if options.public else 'private'
                out.output('Registering %s image with ~okeanos ...' % img_type,
                           False)
                kamaki.register(options.register, uploaded_obj, metadata,
                                options.public)
                out.success('done')
                out.output()
        except ClientError as e:
            raise FatalError("Pithos client: %d %s" % (e.status, e.message))
Nikos Skalkotos's avatar
Nikos Skalkotos committed

Nikos Skalkotos's avatar
Nikos Skalkotos committed
    finally:
Nikos Skalkotos's avatar
Nikos Skalkotos committed
        out.output('cleaning up ...')
Nikos Skalkotos's avatar
Nikos Skalkotos committed
        disk.cleanup()

    out.success("snf-image-creator exited without errors")
        ret = image_creator()
        sys.exit(ret)
    except FatalError as e:
        colored = sys.stderr.isatty()
        SimpleOutput(colored).error(e)
Nikos Skalkotos's avatar
Nikos Skalkotos committed

if __name__ == '__main__':
    main()
Nikos Skalkotos's avatar
Nikos Skalkotos committed
# vim: set sta sts=4 shiftwidth=4 sw=4 et ai :