~ubuntu-branches/ubuntu/saucy/cloud-init/saucy

« back to all changes in this revision

Viewing changes to cloudinit/config/cc_seed_random.py

  • Committer: Scott Moser
  • Date: 2013-09-11 21:04:19 UTC
  • mfrom: (1.4.5)
  • Revision ID: smoser@ubuntu.com-20130911210419-3vt5ze6ph3hu8dz1
* New upstream snapshot.
  * Add OpenNebula datasource.
  * Support reading 'random_seed' from metadata and writing to /dev/urandom
  * fix for bug in log_time.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# vi: ts=4 expandtab
 
2
#
 
3
#    Copyright (C) 2013 Yahoo! Inc.
 
4
#
 
5
#    Author: Joshua Harlow <harlowja@yahoo-inc.com>
 
6
#
 
7
#    This program is free software: you can redistribute it and/or modify
 
8
#    it under the terms of the GNU General Public License version 3, as
 
9
#    published by the Free Software Foundation.
 
10
#
 
11
#    This program is distributed in the hope that it will be useful,
 
12
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
#    GNU General Public License for more details.
 
15
#
 
16
#    You should have received a copy of the GNU General Public License
 
17
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 
 
19
import base64
 
20
from StringIO import StringIO
 
21
 
 
22
from cloudinit.settings import PER_INSTANCE
 
23
from cloudinit import util
 
24
 
 
25
frequency = PER_INSTANCE
 
26
 
 
27
 
 
28
def _decode(data, encoding=None):
 
29
    if not data:
 
30
        return ''
 
31
    if not encoding or encoding.lower() in ['raw']:
 
32
        return data
 
33
    elif encoding.lower() in ['base64', 'b64']:
 
34
        return base64.b64decode(data)
 
35
    elif encoding.lower() in ['gzip', 'gz']:
 
36
        return util.decomp_gzip(data, quiet=False)
 
37
    else:
 
38
        raise IOError("Unknown random_seed encoding: %s" % (encoding))
 
39
 
 
40
 
 
41
def handle(name, cfg, cloud, log, _args):
 
42
    if not cfg or "random_seed" not in cfg:
 
43
        log.debug(("Skipping module named %s, "
 
44
                   "no 'random_seed' configuration found"), name)
 
45
        return
 
46
 
 
47
    my_cfg = cfg['random_seed']
 
48
    seed_path = my_cfg.get('file', '/dev/urandom')
 
49
    seed_buf = StringIO()
 
50
    seed_buf.write(_decode(my_cfg.get('data', ''),
 
51
                           encoding=my_cfg.get('encoding')))
 
52
 
 
53
    metadata = cloud.datasource.metadata
 
54
    if metadata and 'random_seed' in metadata:
 
55
        seed_buf.write(metadata['random_seed'])
 
56
 
 
57
    seed_data = seed_buf.getvalue()
 
58
    if len(seed_data):
 
59
        log.debug("%s: adding %s bytes of random seed entrophy to %s", name,
 
60
                  len(seed_data), seed_path)
 
61
        util.append_file(seed_path, seed_data)