d0739460579e5ba38a73d64a787b686854ba9acc
[snf-image-creator] / image_creator / main.py
1 #!/usr/bin/env python
2
3 # Copyright 2011 GRNET S.A. All rights reserved.
4 #
5 # Redistribution and use in source and binary forms, with or
6 # without modification, are permitted provided that the following
7 # conditions are met:
8 #
9 #   1. Redistributions of source code must retain the above
10 #      copyright notice, this list of conditions and the following
11 #      disclaimer.
12 #
13 #   2. Redistributions in binary form must reproduce the above
14 #      copyright notice, this list of conditions and the following
15 #      disclaimer in the documentation and/or other materials
16 #      provided with the distribution.
17 #
18 # THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
19 # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
22 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
25 # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
26 # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
28 # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 # POSSIBILITY OF SUCH DAMAGE.
30 #
31 # The views and conclusions contained in the software and
32 # documentation are those of the authors and should not be
33 # interpreted as representing official policies, either expressed
34 # or implied, of GRNET S.A.
35
36 from image_creator import get_os_class
37 from image_creator import __version__ as version
38 from image_creator import util
39 from image_creator.disk import Disk
40 from image_creator.util import get_command, error, success, output, FatalError
41 from image_creator.kamaki_wrapper import Kamaki
42 import sys
43 import os
44 import optparse
45
46 dd = get_command('dd')
47
48
49 def check_writable_dir(option, opt_str, value, parser):
50     dirname = os.path.dirname(value)
51     name = os.path.basename(value)
52     if dirname and not os.path.isdir(dirname):
53         raise FatalError("`%s' is not an existing directory" % dirname)
54
55     if not name:
56         raise FatalError("`%s' is not a valid file name" % dirname)
57
58     setattr(parser.values, option.dest, value)
59
60
61 def parse_options(input_args):
62     usage = "Usage: %prog [options] <input_media>"
63     parser = optparse.OptionParser(version=version, usage=usage)
64
65     account = os.environ["OKEANOS_USER"] if "OKEANOS_USER" in os.environ \
66         else None
67     token = os.environ["OKEANOS_TOKEN"] if "OKEANOS_TOKEN" in os.environ \
68         else None
69
70     parser.add_option("-o", "--outfile", type="string", dest="outfile",
71         default=None, action="callback", callback=check_writable_dir,
72         help="dump image to FILE", metavar="FILE")
73
74     parser.add_option("-f", "--force", dest="force", default=False,
75         action="store_true", help="overwrite output files if they exist")
76
77     parser.add_option("-s", "--silent", dest="silent", default=False,
78         help="silent mode, only output errors", action="store_true")
79
80     parser.add_option("-u", "--upload", dest="upload", type="string",
81         default=False, help="upload the image to pithos with name FILENAME",
82         metavar="FILENAME")
83
84     parser.add_option("-r", "--register", dest="register", type="string",
85         default=False, help="register the image to ~okeanos as IMAGENAME",
86         metavar="IMAGENAME")
87
88     parser.add_option("-a", "--account", dest="account", type="string",
89         default=account,
90         help="Use this ACCOUNT when uploading/registring images [Default: %s]"\
91         % account)
92
93     parser.add_option("-t", "--token", dest="token", type="string",
94         default=token,
95         help="Use this token when uploading/registring images [Default: %s]"\
96         % token)
97
98     parser.add_option("--print-sysprep", dest="print_sysprep", default=False,
99         help="print the enabled and disabled system preparation operations "
100         "for this input media", action="store_true")
101
102     parser.add_option("--enable-sysprep", dest="enabled_syspreps", default=[],
103         help="run SYSPREP operation on the input media",
104         action="append", metavar="SYSPREP")
105
106     parser.add_option("--disable-sysprep", dest="disabled_syspreps",
107         help="prevent SYSPREP operation from running on the input media",
108         default=[], action="append", metavar="SYSPREP")
109
110     parser.add_option("--no-sysprep", dest="sysprep", default=True,
111         help="don't perform system preperation", action="store_false")
112
113     parser.add_option("--no-shrink", dest="shrink", default=True,
114         help="don't shrink any partition", action="store_false")
115
116     options, args = parser.parse_args(input_args)
117
118     if len(args) != 1:
119         parser.error('Wrong number of arguments')
120     options.source = args[0]
121     if not os.path.exists(options.source):
122         raise FatalError("Input media `%s' is not accessible" % options.source)
123
124     if options.register and options.upload == False:
125         raise FatalError("You also need to set -u when -r option is set")
126
127     if options.upload and options.account is None:
128         raise FatalError("Image uploading cannot be performed. No ~okeanos "
129         "account name is specified. Use -a to set an account name.")
130
131     if options.upload and options.token is None:
132         raise FatalError("Image uploading cannot be performed. No ~okeanos "
133         "token is specified. User -t to set a token.")
134
135     return options
136
137
138 def image_creator():
139     options = parse_options(sys.argv[1:])
140
141     if options.silent:
142         util.silent = True
143
144     if options.outfile is None and not options.upload \
145                                             and not options.print_sysprep:
146         raise FatalError("At least one of `-o', `-u' or" \
147                             "`--print-sysprep' must be set")
148
149     output('snf-image-creator %s\n' % version)
150
151     if os.geteuid() != 0:
152         raise FatalError("You must run %s as root" \
153                         % os.path.basename(sys.argv[0]))
154
155     if not options.force and options.outfile is not None:
156         for extension in ('', '.meta'):
157             filename = "%s%s" % (options.outfile, extension)
158             if os.path.exists(filename):
159                 raise FatalError("Output file %s exists "
160                     "(use --force to overwrite it)." % filename)
161
162     disk = Disk(options.source)
163     try:
164         snapshot = disk.snapshot()
165
166         dev = disk.get_device(snapshot)
167         dev.mount()
168
169         osclass = get_os_class(dev.distro, dev.ostype)
170         image_os = osclass(dev.root, dev.g)
171         metadata = image_os.get_metadata()
172
173         output()
174
175         for sysprep in options.disabled_syspreps:
176             image_os.disable_sysprep(sysprep)
177
178         for sysprep in options.enabled_syspreps:
179             image_os.enable_sysprep(sysprep)
180
181         if options.print_sysprep:
182             image_os.print_syspreps()
183             output()
184
185         if options.outfile is None and not options.upload:
186             return 0
187
188         if options.sysprep:
189             image_os.do_sysprep()
190
191         dev.umount()
192
193         size = options.shrink and dev.shrink() or dev.size()
194         metadata['SIZE'] = str(size // 2 ** 20)
195
196         if options.outfile is not None:
197             f = open('%s.%s' % (options.outfile, 'meta'), 'w')
198             try:
199                 for key in metadata.keys():
200                     f.write("%s=%s\n" % (key, metadata[key]))
201             finally:
202                 f.close()
203
204             dev.dump(options.outfile)
205
206         # Destroy the device. We only need the snapshot from now on
207         disk.destroy_device(dev)
208
209         if options.upload:
210             output("Uploading image to pithos...", False)
211             kamaki = Kamaki(options.account, options.token)
212             kamaki.upload(snapshot, size, options.upload)
213             output("done")
214
215     finally:
216         output('cleaning up...')
217         disk.cleanup()
218
219     return 0
220
221
222 def main():
223     try:
224         ret = image_creator()
225         sys.exit(ret)
226     except FatalError as e:
227         error(e)
228         sys.exit(1)
229
230
231 if __name__ == '__main__':
232     main()
233
234 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :