cloud-init-dev team mailing list archive
-
cloud-init-dev team
-
Mailing list archive
-
Message #05350
Re: [Merge] ~smoser/cloud-init:feature/oracle-datasource into cloud-init:master
Diff comments:
> diff --git a/cloudinit/settings.py b/cloudinit/settings.py
> index dde5749..ea367cb 100644
> --- a/cloudinit/settings.py
> +++ b/cloudinit/settings.py
> @@ -38,6 +38,7 @@ CFG_BUILTIN = {
> 'Scaleway',
> 'Hetzner',
> 'IBMCloud',
> + 'Oracle',
Default ordering of OracleDetection after OpenStack will potentially mean a false positive in DataSourceOpenStack.detect_openstack in some cases. We might need to figure a way to prevent OpenStackDataSource from detecting OracleCloud.com now that we have a different datasource. As you mentioned in IRC, we also don't want to deal with transitioning pets from OpenStack ds -> Oracle ds, so I'm not quite sure what we should do here.
> # At the end to act as a 'catch' when none of the above work...
> 'None',
> ],
> diff --git a/cloudinit/sources/DataSourceIBMCloud.py b/cloudinit/sources/DataSourceIBMCloud.py
> index 01106ec..a535814 100644
> --- a/cloudinit/sources/DataSourceIBMCloud.py
> +++ b/cloudinit/sources/DataSourceIBMCloud.py
> @@ -304,10 +304,6 @@ def read_md():
> return ret
>
>
> -class BrokenMetadata(IOError):
Thanks for consolidating duplication to a common module.
> - pass
> -
> -
> def metadata_from_dir(source_dir):
> """Walk source_dir extracting standardized metadata.
>
> diff --git a/cloudinit/sources/DataSourceOracle.py b/cloudinit/sources/DataSourceOracle.py
> new file mode 100644
> index 0000000..8870b28
> --- /dev/null
> +++ b/cloudinit/sources/DataSourceOracle.py
> @@ -0,0 +1,230 @@
> +# This file is part of cloud-init. See LICENSE file for license information.
> +"""Datasource for Oracle (OCI/Oracle Cloud Infrastructure)
> +
> +OCI provdes a OpenStack like metadata service which provides only
provides
> +'2013-10-17' and 'latest' versions..
> +
> +Notes:
> + * This datasource does not support the OCI-Classic. OCI-Classic
> + provides an EC2 lookalike metadata service.
> + * The uuid provided in DMI data is not the same as the meta-data provided
> + instance-id, but has an equivalent lifespan.
> + * We do need to support upgrade from an instance that cloud-init
> + identified as OpenStack.
> + * Both bare-metal and vms use iscsi root
> + * Both bare-metal and vms provide chassis-asset-tag of OracleCloud.com
> +"""
> +
> +from cloudinit.url_helper import combine_url, readurl, UrlError
> +from cloudinit.net import dhcp
> +from cloudinit import net
> +from cloudinit import sources
> +from cloudinit import util
> +from cloudinit.net import cmdline
> +from cloudinit import log as logging
> +
> +import json
> +import re
> +
> +LOG = logging.getLogger(__name__)
> +
> +CHASSIS_ASSET_TAG = "OracleCloud.com"
duplication of this static var in both DataSourceOpenStack and DataSourceOracle is a smell representing the ds detection collision we now have. Not sure whether it makes sense though to pull this up into sources/__init__.py and import it in both datasources.
> +METADATA_ENDPOINT = "http://169.254.169.254/openstack/2013-10-17/"
> +
> +
> +class DataSourceOracle(sources.DataSource):
> +
> + dsname = 'Oracle'
> + system_uuid = None
> + vendordata_pure = None
> + _network_config = sources.UNSET
> +
> + def _is_platform_viable(self):
> + """Check platform environment to report if this datasource may run."""
> + return _is_platform_viable()
> +
> + def _get_data(self):
> + if not self._is_platform_viable():
> + return False
> +
> + # network may be configured if iscsi root. If that is the case
> + # then read_kernel_cmdline_config will return non-None.
> + if _is_iscsi_root():
> + data = self.crawl_metadata()
> + else:
> + with dhcp.EphemeralDHCPv4(net.find_fallback_nic()):
> + data = self.crawl_metadata()
> +
> + self._crawled_metadata = data
> +
> + self.userdata_raw = data.get('user_data')
> + self.system_uuid = data['system_uuid']
Is it probably worth persisting 'system_uuid' in instance-data.json since it is once component of the metadata that the datasource looks at to determine behavior. We could do this with a hasattr check in sources/__init___.py:get_data line 192... But now that we are adding to these checks, it feels like we might need to have a simple helper function or something iterate list of known instance_data_attrs to persist to avoid all the duplicate code like the following:
if hasattr(self, 'ec2_metadata'):
ec2_metadata = getattr(self, 'ec2_metadata')
if ec2_metadata != UNSET:
instance_data['ds']['ec2_metadata'] = ec2_metadata
It feels unmanageable to keep adding special cases in the parent class, but also bloats all subclasses by making them define yet another method or class attr to note which attributes need to be persisted to instance-data.json. thoughts?
> +
> + vd = data.get('vendor_data')
> + if vd:
> + self.vendordata_pure = vd
> + try:
> + self.vendordata_raw = sources.convert_vendordata(vd)
> + except ValueError as e:
> + LOG.warning("Invalid content in vendor-data: %s", e)
> + self.vendordata_raw = None
> +
> + mdcopies = ('public_keys',)
> + md = dict([(k, data['meta_data'].get(k))
> + for k in mdcopies if k in data['meta_data']])
> +
> + mdtrans = (
> + # oracle meta_data.json name, cloudinit.datasource.metadata name
> + ('availability_zone', 'availability-zone'),
> + ('hostname', 'local-hostname'),
> + ('launch_index', 'launch-index'),
> + ('uuid', 'instance-id'),
> + )
> + for dsname, ciname in mdtrans:
> + if dsname in data['meta_data']:
> + md[ciname] = data['meta_data'][dsname]
> +
> + self.metadata = md
> + return True
> +
> + def crawl_metadata(self):
> + return read_metadata()
> +
> + def check_instance_id(self, sys_cfg):
> + """quickly check (local only) if self.instance_id is still valid
> +
> + On Oracle, the dmi-provided system uuid differs from the instance-id
> + but has the same life-span."""
> + return sources.instance_id_matches_system_uuid(self.system_uuid)
> +
> + def get_public_ssh_keys(self):
> + return sources.normalize_pubkey_data(self.metadata.get('public_keys'))
> +
> + @property
> + def network_config(self):
> + """Network config is read from initramfs provided files
> + If none is present, then we fall back to fallback configuration.
> +
> + One thing to note here is that this method is not currently
> + considered at all if there is is kernel/initramfs provided
> + data. In that case, stages considers that the cmdline data
> + overrides datasource provided data and does not consult here.
> +
> + We nonetheless return cmdline provided config if present
> + and fallback to generate fallback."""
> + if self._network_config == sources.UNSET:
> + cmdline_cfg = cmdline.read_kernel_cmdline_config()
> + if cmdline_cfg:
> + self._network_config = cmdline_cfg
> + else:
> + self._network_config = self.distro.generate_fallback_config()
> + return self._network_config
> +
> +
> +def _read_system_uuid():
> + sys_uuid = util.read_dmi_data('system-uuid')
> + return None if sys_uuid is None else sys_uuid.lower()
> +
> +
> +def _is_platform_viable():
> + asset_tag = util.read_dmi_data('chassis-asset-tag')
> + return asset_tag == CHASSIS_ASSET_TAG
> +
> +
> +def _is_iscsi_root():
> + return bool(cmdline.read_kernel_cmdline_config())
hrm, is there a case of observing kernel_cmdline_config where we aren't iscsi_root?
> +
> +
> +def _load_index(content):
> + """Return a list entries parsed from content.
> +
> + OpenStack's metadata service returns a newline delimited list
> + of items. Oracle's implementation has html formatted list of links.
> + The parser here just grabs targets from <a href="target">
> + and throws away "../".
> +
> + Oracle has accepted that to be buggy and may fix in the future
> + to instead return a '\n' delimited plain text list. This function
> + will continue to work if that change is made."""
> + if not content.lower().startswith("<html>"):
> + return content.splitlines()
> + items = re.findall(
> + r'href="(?P<target>[^"]*)"', content, re.MULTILINE | re.IGNORECASE)
> + return [i for i in items if not i.startswith(".")]
> +
> +
> +def read_metadata(endpoint=METADATA_ENDPOINT, sys_uuid=None):
> + """Read metadata, return a dictionary.
> +
> + Each path listed in the index will be represented in the dictionary.
> + If the path ends in .json, then the content will be decoded and
> + populated into the dictionary.
> +
> + The system uuid (/sys/class/dmi/id/product_uuid) is also populated.
> + Example: given paths = ('user_data', 'meta_data.json')
> + This would return:
> + {'user_data': b'blob', 'meta_data': json.loads(blob.decode())
> + 'system_uuid': '3b54f2e0-3ab2-458d-b770-af9926eee3b2'}
> + """
> + if sys_uuid is None:
> + sys_uuid = _read_system_uuid()
> + if not sys_uuid:
> + raise sources.BrokenMetadata("Failed to read system uuid.")
> +
> + try:
> + resp = readurl(endpoint)
> + if not resp.ok():
> + raise sources.BrokenMetadata(
> + "Bad response from %s: %s" % (endpoint, resp.code))
> + except UrlError as e:
> + raise sources.BrokenMetadata(
> + "Failed to read index at %s: %s" % (endpoint, e))
> +
> + entries = _load_index(resp.contents.decode('utf-8'))
> + LOG.debug("index url %s contained: %s", endpoint, entries)
> +
> + # meta_data.json is required.
> + mdj = 'meta_data.json'
> + if mdj not in entries:
> + raise sources.BrokenMetadata(
> + "Required field '%s' missing in index at %s" % (mdj, endpoint))
> +
> + ret = {'system_uuid': sys_uuid}
> + for path in entries:
> + response = readurl(combine_url(endpoint, path))
> + if path.endswith(".json"):
> + ret[path.rpartition(".")[0]] = (
> + json.loads(response.contents.decode('utf-8')))
> + else:
> + ret[path] = response.contents
> +
> + return ret
> +
> +
> +# Used to match classes to dependencies
> +datasources = [
> + (DataSourceOracle, (sources.DEP_FILESYSTEM,)),
> +]
> +
> +
> +# Return a list of data sources that match this set of dependencies
> +def get_datasource_list(depends):
> + return sources.list_from_depends(depends, datasources)
> +
> +
> +if __name__ == "__main__":
> + import argparse
> + import os
> +
> + parser = argparse.ArgumentParser(description='Query Oracle Cloud Metadata')
> + parser.add_argument("--endpoint", metavar="URL",
> + help="The url of the metadata service.",
> + default=METADATA_ENDPOINT)
> + args = parser.parse_args()
> + sys_uuid = "uuid-not-available-not-root" if os.geteuid() != 0 else None
> +
> + data = read_metadata(endpoint=args.endpoint, sys_uuid=sys_uuid)
> + data['is_platform_viable'] = _is_platform_viable()
> + print(util.json_dumps(data))
> +
> +# vi: ts=4 expandtab
--
https://code.launchpad.net/~smoser/cloud-init/+git/cloud-init/+merge/352921
Your team cloud-init commiters is requested to review the proposed merge of ~smoser/cloud-init:feature/oracle-datasource into cloud-init:master.
References