Change the metadata file format to json
[snf-image-creator] / image_creator / main.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 #
4 # Copyright 2012 GRNET S.A. All rights reserved.
5 #
6 # Redistribution and use in source and binary forms, with or
7 # without modification, are permitted provided that the following
8 # conditions are met:
9 #
10 #   1. Redistributions of source code must retain the above
11 #      copyright notice, this list of conditions and the following
12 #      disclaimer.
13 #
14 #   2. Redistributions in binary form must reproduce the above
15 #      copyright notice, this list of conditions and the following
16 #      disclaimer in the documentation and/or other materials
17 #      provided with the distribution.
18 #
19 # THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
20 # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
23 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
26 # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
27 # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
29 # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 # POSSIBILITY OF SUCH DAMAGE.
31 #
32 # The views and conclusions contained in the software and
33 # documentation are those of the authors and should not be
34 # interpreted as representing official policies, either expressed
35 # or implied, of GRNET S.A.
36
37 """This module is the entrance point for the non-interactive version of the
38 snf-image-creator program.
39 """
40
41 from image_creator import __version__ as version
42 from image_creator.disk import Disk
43 from image_creator.util import FatalError, MD5
44 from image_creator.output.cli import SilentOutput, SimpleOutput, \
45     OutputWthProgress
46 from image_creator.kamaki_wrapper import Kamaki, ClientError
47 import sys
48 import os
49 import optparse
50 import StringIO
51 import signal
52 import json
53
54
55 def check_writable_dir(option, opt_str, value, parser):
56     dirname = os.path.dirname(value)
57     name = os.path.basename(value)
58     if dirname and not os.path.isdir(dirname):
59         raise FatalError("`%s' is not an existing directory" % dirname)
60
61     if not name:
62         raise FatalError("`%s' is not a valid file name" % dirname)
63
64     setattr(parser.values, option.dest, value)
65
66
67 def parse_options(input_args):
68     usage = "Usage: %prog [options] <input_media>"
69     parser = optparse.OptionParser(version=version, usage=usage)
70
71     parser.add_option("-o", "--outfile", type="string", dest="outfile",
72                       default=None, action="callback",
73                       callback=check_writable_dir, help="dump image to FILE",
74                       metavar="FILE")
75
76     parser.add_option("-f", "--force", dest="force", default=False,
77                       action="store_true",
78                       help="overwrite output files if they exist")
79
80     parser.add_option("-s", "--silent", dest="silent", default=False,
81                       help="output only errors",
82                       action="store_true")
83
84     parser.add_option("-u", "--upload", dest="upload", type="string",
85                       default=False,
86                       help="upload the image to pithos with name FILENAME",
87                       metavar="FILENAME")
88
89     parser.add_option("-r", "--register", dest="register", type="string",
90                       default=False,
91                       help="register the image with ~okeanos as IMAGENAME",
92                       metavar="IMAGENAME")
93
94     parser.add_option("-m", "--metadata", dest="metadata", default=[],
95                       help="add custom KEY=VALUE metadata to the image",
96                       action="append", metavar="KEY=VALUE")
97
98     parser.add_option("-t", "--token", dest="token", type="string",
99                       default=None, help="use this authentication token when "
100                       "uploading/registering images")
101
102     parser.add_option("-a", "--authentication-url", dest="url", type="string",
103                       default=None, help="use this authentication URL when "
104                       "uploading/registering images")
105
106     parser.add_option("-c", "--cloud", dest="cloud", type="string",
107                       default=None, help="use this saved cloud account to "
108                       "authenticate against a cloud when "
109                       "uploading/registering images")
110
111     parser.add_option("--print-sysprep", dest="print_sysprep", default=False,
112                       help="print the enabled and disabled system preparation "
113                       "operations for this input media", action="store_true")
114
115     parser.add_option("--enable-sysprep", dest="enabled_syspreps", default=[],
116                       help="run SYSPREP operation on the input media",
117                       action="append", metavar="SYSPREP")
118
119     parser.add_option("--disable-sysprep", dest="disabled_syspreps",
120                       help="prevent SYSPREP operation from running on the "
121                       "input media", default=[], action="append",
122                       metavar="SYSPREP")
123
124     parser.add_option("--no-sysprep", dest="sysprep", default=True,
125                       help="don't perform any system preparation operation",
126                       action="store_false")
127
128     parser.add_option("--no-shrink", dest="shrink", default=True,
129                       help="don't shrink any partition", action="store_false")
130
131     parser.add_option("--public", dest="public", default=False,
132                       help="register image with cyclades as public",
133                       action="store_true")
134
135     parser.add_option("--tmpdir", dest="tmp", type="string", default=None,
136                       help="create large temporary image files under DIR",
137                       metavar="DIR")
138
139     options, args = parser.parse_args(input_args)
140
141     if len(args) != 1:
142         parser.error('Wrong number of arguments')
143
144     options.source = args[0]
145     if not os.path.exists(options.source):
146         raise FatalError("Input media `%s' is not accessible" % options.source)
147
148     if options.register and not options.upload:
149         raise FatalError("You also need to set -u when -r option is set")
150
151     if options.upload and (options.token is None or options.url is None) and \
152             options.cloud is None:
153
154         err = "You need to either specify an authentication URL and token " \
155               "pair or an available cloud name."
156
157         raise FatalError("Image uploading cannot be performed. %s" % err)
158
159     if options.tmp is not None and not os.path.isdir(options.tmp):
160         raise FatalError("The directory `%s' specified with --tmpdir is not "
161                          "valid" % options.tmp)
162
163     meta = {}
164     for m in options.metadata:
165         try:
166             key, value = m.split('=', 1)
167         except ValueError:
168             raise FatalError("Metadata option: `%s' is not in KEY=VALUE "
169                              "format." % m)
170         meta[key] = value
171     options.metadata = meta
172
173     return options
174
175
176 def image_creator():
177     options = parse_options(sys.argv[1:])
178
179     if options.outfile is None and not options.upload and not \
180             options.print_sysprep:
181         raise FatalError("At least one of `-o', `-u' or `--print-sysprep' "
182                          "must be set")
183
184     if options.silent:
185         out = SilentOutput()
186     else:
187         out = OutputWthProgress(True) if sys.stderr.isatty() else \
188             SimpleOutput(False)
189
190     title = 'snf-image-creator %s' % version
191     out.output(title)
192     out.output('=' * len(title))
193
194     if os.geteuid() != 0:
195         raise FatalError("You must run %s as root"
196                          % os.path.basename(sys.argv[0]))
197
198     if not options.force and options.outfile is not None:
199         for extension in ('', '.meta', '.md5sum'):
200             filename = "%s%s" % (options.outfile, extension)
201             if os.path.exists(filename):
202                 raise FatalError("Output file `%s' exists "
203                                  "(use --force to overwrite it)." % filename)
204
205     # Check if the authentication info is valid. The earlier the better
206     if options.token is not None and options.url is not None:
207         try:
208             account = Kamaki.create_account(options.url, options.token)
209             if account is None:
210                 raise FatalError("The authentication token and/or URL you "
211                                  "provided is not valid!")
212             else:
213                 kamaki = Kamaki(account, out)
214         except ClientError as e:
215             raise FatalError("Astakos client: %d %s" % (e.status, e.message))
216     elif options.cloud:
217         avail_clouds = Kamaki.get_clouds()
218         if options.cloud not in avail_clouds.keys():
219             raise FatalError(
220                 "Cloud: `%s' does not exist.\n\nAvailable clouds:\n\n\t%s\n"
221                 % (options.cloud, "\n\t".join(avail_clouds.keys())))
222         try:
223             account = Kamaki.get_account(options.cloud)
224             if account is None:
225                 raise FatalError(
226                     "Cloud: `$s' exists but is not valid!" % options.cloud)
227             else:
228                 kamaki = Kamaki(account, out)
229         except ClientError as e:
230             raise FatalError("Astakos client: %d %s" % (e.status, e.message))
231
232     if options.upload and not options.force:
233         if kamaki.object_exists(options.upload):
234             raise FatalError("Remote pithos object `%s' exists "
235                              "(use --force to overwrite it)." % options.upload)
236         if kamaki.object_exists("%s.md5sum" % options.upload):
237             raise FatalError("Remote pithos object `%s.md5sum' exists "
238                              "(use --force to overwrite it)." % options.upload)
239
240     if options.register and not options.force:
241         if kamaki.object_exists("%s.meta" % options.upload):
242             raise FatalError("Remote pithos object `%s.meta' exists "
243                              "(use --force to overwrite it)." % options.upload)
244
245     disk = Disk(options.source, out, options.tmp)
246
247     def signal_handler(signum, frame):
248         disk.cleanup()
249
250     signal.signal(signal.SIGINT, signal_handler)
251     signal.signal(signal.SIGTERM, signal_handler)
252     try:
253         snapshot = disk.snapshot()
254
255         image = disk.get_image(snapshot)
256
257         for sysprep in options.disabled_syspreps:
258             image.os.disable_sysprep(image.os.get_sysprep_by_name(sysprep))
259
260         for sysprep in options.enabled_syspreps:
261             image.os.enable_sysprep(image.os.get_sysprep_by_name(sysprep))
262
263         if options.print_sysprep:
264             image.os.print_syspreps()
265             out.output()
266
267         if options.outfile is None and not options.upload:
268             return 0
269
270         if options.sysprep:
271             image.os.do_sysprep()
272
273         metadata = image.os.meta
274
275         size = options.shrink and image.shrink() or image.size
276         metadata.update(image.meta)
277
278         # Add command line metadata to the collected ones...
279         metadata.update(options.metadata)
280
281         md5 = MD5(out)
282         checksum = md5.compute(image.device, size)
283
284         metastring = unicode(json.dumps(
285             {'properties': metadata,
286              'disk-format': 'diskdump'}, ensure_ascii=False))
287
288         if options.outfile is not None:
289             image.dump(options.outfile)
290
291             out.output('Dumping metadata file ...', False)
292             with open('%s.%s' % (options.outfile, 'meta'), 'w') as f:
293                 f.write(metastring)
294             out.success('done')
295
296             out.output('Dumping md5sum file ...', False)
297             with open('%s.%s' % (options.outfile, 'md5sum'), 'w') as f:
298                 f.write('%s %s\n' % (checksum,
299                                      os.path.basename(options.outfile)))
300             out.success('done')
301
302         # Destroy the image instance. We only need the snapshot from now on
303         disk.destroy_image(image)
304
305         out.output()
306         try:
307             uploaded_obj = ""
308             if options.upload:
309                 out.output("Uploading image to pithos:")
310                 with open(snapshot, 'rb') as f:
311                     uploaded_obj = kamaki.upload(
312                         f, size, options.upload,
313                         "(1/3)  Calculating block hashes",
314                         "(2/3)  Uploading missing blocks")
315                 out.output("(3/3)  Uploading md5sum file ...", False)
316                 md5sumstr = '%s %s\n' % (checksum,
317                                          os.path.basename(options.upload))
318                 kamaki.upload(StringIO.StringIO(md5sumstr),
319                               size=len(md5sumstr),
320                               remote_path="%s.%s" % (options.upload, 'md5sum'))
321                 out.success('done')
322                 out.output()
323
324             if options.register:
325                 img_type = 'public' if options.public else 'private'
326                 out.output('Registering %s image with ~okeanos ...' % img_type,
327                            False)
328                 result = kamaki.register(options.register, uploaded_obj,
329                                          metadata, options.public)
330                 out.success('done')
331                 out.output("Uploading metadata file ...", False)
332                 metastring = unicode(json.dumps(result, ensure_ascii=False))
333                 kamaki.upload(StringIO.StringIO(metastring),
334                               size=len(metastring),
335                               remote_path="%s.%s" % (options.upload, 'meta'))
336                 out.success('done')
337                 if options.public:
338                     out.output("Sharing md5sum file ...", False)
339                     kamaki.share("%s.md5sum" % options.upload)
340                     out.success('done')
341                     out.output("Sharing metadata file ...", False)
342                     kamaki.share("%s.meta" % options.upload)
343                     out.success('done')
344
345                 out.output()
346         except ClientError as e:
347             raise FatalError("Pithos client: %d %s" % (e.status, e.message))
348
349     finally:
350         out.output('cleaning up ...')
351         disk.cleanup()
352
353     out.success("snf-image-creator exited without errors")
354
355     return 0
356
357
358 def main():
359     try:
360         ret = image_creator()
361         sys.exit(ret)
362     except FatalError as e:
363         colored = sys.stderr.isatty()
364         SimpleOutput(colored).error(e)
365         sys.exit(1)
366
367 if __name__ == '__main__':
368     main()
369
370 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :