fix random_seed module

This commit is contained in:
Scott Moser 2015-02-11 01:09:34 +00:00
parent 4e9c73303c
commit a0e6b01032
3 changed files with 19 additions and 16 deletions

View File

@ -22,7 +22,7 @@
import base64
import os
from six import StringIO
from six import BytesIO
from cloudinit.settings import PER_INSTANCE
from cloudinit import log as logging
@ -34,13 +34,13 @@ LOG = logging.getLogger(__name__)
def _decode(data, encoding=None):
if not data:
return ''
return b''
if not encoding or encoding.lower() in ['raw']:
return data
return util.encode_text(data)
elif encoding.lower() in ['base64', 'b64']:
return util.b64d(data)
return base64.b64decode(data)
elif encoding.lower() in ['gzip', 'gz']:
return util.decomp_gzip(data, quiet=False)
return util.decomp_gzip(data, quiet=False, decode=None)
else:
raise IOError("Unknown random_seed encoding: %s" % (encoding))
@ -65,9 +65,9 @@ def handle_random_seed_command(command, required, env=None):
def handle(name, cfg, cloud, log, _args):
mycfg = cfg.get('random_seed', {})
seed_path = mycfg.get('file', '/dev/urandom')
seed_data = mycfg.get('data', '')
seed_data = mycfg.get('data', b'')
seed_buf = StringIO()
seed_buf = BytesIO()
if seed_data:
seed_buf.write(_decode(seed_data, encoding=mycfg.get('encoding')))
@ -75,7 +75,7 @@ def handle(name, cfg, cloud, log, _args):
# openstack meta_data.json
metadata = cloud.datasource.metadata
if metadata and 'random_seed' in metadata:
seed_buf.write(metadata['random_seed'])
seed_buf.write(util.encode_text(metadata['random_seed']))
seed_data = seed_buf.getvalue()
if len(seed_data):

View File

@ -124,7 +124,8 @@ class DataSourceAzureNet(sources.DataSource):
LOG.debug("using files cached in %s", ddir)
# azure / hyper-v provides random data here
seed = util.load_file("/sys/firmware/acpi/tables/OEM0", quiet=True)
seed = util.load_file("/sys/firmware/acpi/tables/OEM0",
quiet=True, decode=False)
if seed:
self.metadata['random_seed'] = seed

View File

@ -96,11 +96,10 @@ def b64d(source):
# Base64 decode some data, accepting bytes or unicode/str, and returning
# str/unicode if the result is utf-8 compatible, otherwise returning bytes.
decoded = b64decode(source)
if isinstance(decoded, bytes):
try:
return decoded.decode('utf-8')
except UnicodeDecodeError:
return decoded
try:
return decoded.decode('utf-8')
except UnicodeDecodeError:
return decoded
def b64e(source):
# Base64 encode some data, accepting bytes or unicode/str, and returning
@ -354,11 +353,14 @@ def clean_filename(fn):
return fn
def decomp_gzip(data, quiet=True):
def decomp_gzip(data, quiet=True, decode=True):
try:
buf = six.BytesIO(encode_text(data))
with contextlib.closing(gzip.GzipFile(None, "rb", 1, buf)) as gh:
return decode_binary(gh.read())
if decode:
return decode_binary(gh.read())
else:
return gh.read()
except Exception as e:
if quiet:
return data