Handle imported commands that aren't in the PATH
[snf-image-creator] / image_creator / main.py
1 # Copyright 2011 GRNET S.A. All rights reserved.
2 #
3 # Redistribution and use in source and binary forms, with or
4 # without modification, are permitted provided that the following
5 # conditions are met:
6 #
7 #   1. Redistributions of source code must retain the above
8 #      copyright notice, this list of conditions and the following
9 #      disclaimer.
10 #
11 #   2. Redistributions in binary form must reproduce the above
12 #      copyright notice, this list of conditions and the following
13 #      disclaimer in the documentation and/or other materials
14 #      provided with the distribution.
15 #
16 # THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17 # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23 # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24 # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26 # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 # POSSIBILITY OF SUCH DAMAGE.
28 #
29 # The views and conclusions contained in the software and
30 # documentation are those of the authors and should not be
31 # interpreted as representing official policies, either expressed
32 # or implied, of GRNET S.A.
33
34 from image_creator import get_os_class
35 from image_creator import __version__ as version
36 from image_creator.disk import Disk
37 import sys
38 import os
39 import optparse
40 from pbs import dd
41
42
43 class FatalError(Exception):
44     pass
45
46
47 def check_writable_dir(option, opt_str, value, parser):
48     if not os.path.isdir(value):
49         raise OptionValueError("%s is not a valid directory name" % value)
50     setattr(parser.values, option.dest, value)
51
52
53 def parse_options(input_args):
54     usage = "Usage: %prog [options] <input_media> <name>"
55     parser = optparse.OptionParser(version=version, usage=usage)
56
57     parser.add_option("-o", "--outdir", type="string", dest="outdir",
58         default=".", action="callback", callback=check_writable_dir,
59         help="Output files to DIR [default: working dir]",
60         metavar="DIR")
61
62     parser.add_option("-f", "--force", dest="force", default=False,
63         action="store_true", help="Overwrite output files if they exist")
64
65     parser.add_option("--no-shrink", dest="shrink", default=True,
66         help="Don't shrink any partition before extracting the image",
67         action="store_false")
68
69     options, args = parser.parse_args(input_args)
70
71     if len(args) != 2:
72         parser.error('input media or name are missing')
73     options.source = args[0]
74     options.name = args[1]
75
76     if not os.path.exists(options.source):
77         parser.error('Input media is not accessible')
78
79     return options
80
81
82 def main():
83
84     options = parse_options(sys.argv[1:])
85
86     if os.geteuid() != 0:
87         raise FatalError("You must run %s as root" \
88                         % os.path.basename(sys.argv[0]))
89
90     if not options.force:
91         for ext in ('diskdump', 'meta'):
92             filename = "%s/%s.%s" % (options.outdir, options.name, ext)
93             if os.path.exists(filename):
94                 raise FatalError("Output file %s exists "
95                     "(use --force to overwrite it)." % filename)
96
97     disk = Disk(options.source)
98     try:
99         dev = disk.get_device()
100         dev.mount()
101         osclass = get_os_class(dev.distro, dev.ostype)
102         image_os = osclass(dev.root, dev.g)
103         metadata = image_os.get_metadata()
104         image_os.data_cleanup()
105         dev.umount()
106         size = options.shrink and dev.shrink() or dev.size()
107         metadata['size'] = str(size // 2 ** 20)
108
109         dd('if=%s' % dev.device,
110             'of=%s/%s.%s' % (options.outdir, options.name, 'diskdump'),
111             'bs=4M', 'count=%d' % ((size + 1) // 2 ** 22))
112
113         f = open('%s/%s.%s' % (options.outdir, options.name, 'meta'), 'w')
114         for key in metadata.keys():
115             f.write("%s=%s\n" % (key, metadata[key]))
116         f.close()
117     finally:
118         disk.cleanup()
119
120     return 0
121
122 COLOR_BLACK = "\033[00m"
123 COLOR_RED = "\033[1;31m"
124
125 if __name__ == '__main__':
126     try:
127         ret = main()
128         sys.exit(ret)
129     except FatalError as e:
130         print >> sys.stderr, "\n%sError: %s%s\n" % (COLOR_RED, e, COLOR_BLACK)
131         sys.exit(1)
132
133 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :