import os import subprocess import ConfigParser from base64 import b64encode from collections import OrderedDict from copy import deepcopy from charmhelpers.contrib.openstack import context, templating from charmhelpers.contrib.openstack.neutron import ( network_manager, neutron_plugin_attribute) from charmhelpers.contrib.hahelpers.cluster import eligible_leader from charmhelpers.contrib.openstack.utils import ( configure_installation_source, get_host_ip, get_hostname, get_os_codename_install_source, is_ip, os_release, save_script_rc as _save_script_rc) from charmhelpers.fetch import ( apt_upgrade, apt_update, apt_install, ) from charmhelpers.core.hookenv import ( config, log, relation_get, relation_ids, remote_unit, is_relation_made, INFO, ERROR, ) from charmhelpers.core.host import ( service_start, ) import nova_cc_context TEMPLATES = 'templates/' CLUSTER_RES = 'res_nova_vip' # removed from original: charm-helper-sh BASE_PACKAGES = [ 'apache2', 'haproxy', 'python-keystoneclient', 'python-mysqldb', 'python-psycopg2', 'uuid', ] BASE_SERVICES = [ 'nova-api-ec2', 'nova-api-os-compute', 'nova-objectstore', 'nova-cert', 'nova-scheduler', ] API_PORTS = { 'nova-api-ec2': 8773, 'nova-api-os-compute': 8774, 'nova-api-os-volume': 8776, 'nova-objectstore': 3333, 'neutron-server': 9696, 'quantum-server': 9696, } NOVA_CONF_DIR = "/etc/nova" QUANTUM_CONF_DIR = "/etc/quantum" NEUTRON_CONF_DIR = "/etc/neutron" NOVA_CONF = '%s/nova.conf' % NOVA_CONF_DIR NOVA_API_PASTE = '%s/api-paste.ini' % NOVA_CONF_DIR QUANTUM_CONF = '%s/quantum.conf' % QUANTUM_CONF_DIR QUANTUM_API_PASTE = '%s/api-paste.ini' % QUANTUM_CONF_DIR NEUTRON_CONF = '%s/neutron.conf' % NEUTRON_CONF_DIR HAPROXY_CONF = '/etc/haproxy/haproxy.cfg' APACHE_CONF = '/etc/apache2/sites-available/openstack_https_frontend' APACHE_24_CONF = '/etc/apache2/sites-available/openstack_https_frontend.conf' NEUTRON_DEFAULT = '/etc/default/neutron-server' QUANTUM_DEFAULT = '/etc/default/quantum-server' BASE_RESOURCE_MAP = OrderedDict([ (NOVA_CONF, { 'services': BASE_SERVICES, 'contexts': [context.AMQPContext(ssl_dir=NOVA_CONF_DIR), context.SharedDBContext( relation_prefix='nova', ssl_dir=NOVA_CONF_DIR), nova_cc_context.NovaPostgresqlDBContext(), context.ImageServiceContext(), context.OSConfigFlagContext(), context.SubordinateConfigContext( interface='nova-vmware', service='nova', config_file=NOVA_CONF), context.SyslogContext(), nova_cc_context.HAProxyContext(), nova_cc_context.IdentityServiceContext(), nova_cc_context.VolumeServiceContext()], }), (NOVA_API_PASTE, { 'services': [s for s in BASE_SERVICES if 'api' in s], 'contexts': [nova_cc_context.IdentityServiceContext()], }), (QUANTUM_CONF, { 'services': ['quantum-server'], 'contexts': [context.AMQPContext(ssl_dir=QUANTUM_CONF_DIR), context.SharedDBContext( user=config('neutron-database-user'), database=config('neutron-database'), relation_prefix='neutron', ssl_dir=QUANTUM_CONF_DIR), nova_cc_context.NeutronPostgresqlDBContext(), nova_cc_context.HAProxyContext(), nova_cc_context.IdentityServiceContext(), nova_cc_context.NeutronCCContext(), context.SyslogContext()], }), (QUANTUM_DEFAULT, { 'services': ['quantum-server'], 'contexts': [nova_cc_context.NeutronCCContext()], }), (QUANTUM_API_PASTE, { 'services': ['quantum-server'], 'contexts': [nova_cc_context.IdentityServiceContext()], }), (NEUTRON_CONF, { 'services': ['neutron-server'], 'contexts': [context.AMQPContext(ssl_dir=NEUTRON_CONF_DIR), context.SharedDBContext( user=config('neutron-database-user'), database=config('neutron-database'), relation_prefix='neutron', ssl_dir=NEUTRON_CONF_DIR), nova_cc_context.NeutronPostgresqlDBContext(), nova_cc_context.IdentityServiceContext(), nova_cc_context.NeutronCCContext(), nova_cc_context.HAProxyContext(), context.SyslogContext()], }), (NEUTRON_DEFAULT, { 'services': ['neutron-server'], 'contexts': [nova_cc_context.NeutronCCContext()], }), (HAPROXY_CONF, { 'contexts': [context.HAProxyContext(), nova_cc_context.HAProxyContext()], 'services': ['haproxy'], }), (APACHE_CONF, { 'contexts': [nova_cc_context.ApacheSSLContext()], 'services': ['apache2'], }), (APACHE_24_CONF, { 'contexts': [nova_cc_context.ApacheSSLContext()], 'services': ['apache2'], }), ]) CA_CERT_PATH = '/usr/local/share/ca-certificates/keystone_juju_ca_cert.crt' NOVA_SSH_DIR = '/etc/nova/compute_ssh/' CONSOLE_CONFIG = { 'spice': { 'packages': ['nova-spiceproxy', 'nova-consoleauth'], 'services': ['nova-spiceproxy', 'nova-consoleauth'], 'proxy-page': '/spice_auto.html', 'proxy-port': 6082, }, 'novnc': { 'packages': ['nova-novncproxy', 'nova-consoleauth'], 'services': ['nova-novncproxy', 'nova-consoleauth'], 'proxy-page': '/vnc_auto.html', 'proxy-port': 6080, } } def resource_map(): ''' Dynamically generate a map of resources that will be managed for a single hook execution. ''' resource_map = deepcopy(BASE_RESOURCE_MAP) if relation_ids('nova-volume-service'): # if we have a relation to a nova-volume service, we're # also managing the nova-volume API endpoint (legacy) resource_map['/etc/nova/nova.conf']['services'].append( 'nova-api-os-volume') net_manager = network_manager() if os.path.exists('/etc/apache2/conf-available'): resource_map.pop(APACHE_CONF) else: resource_map.pop(APACHE_24_CONF) if is_relation_made('neutron-api'): [resource_map.pop(k) for k in list(resource_map.iterkeys()) if 'quantum' in k or 'neutron' in k] resource_map[NOVA_CONF]['contexts'].append( nova_cc_context.NeutronAPIContext()) else: resource_map[NOVA_CONF]['contexts'].append( nova_cc_context.NeutronCCContext()) # pop out irrelevant resources from the OrderedDict (easier than adding # them late) if net_manager != 'quantum': [resource_map.pop(k) for k in list(resource_map.iterkeys()) if 'quantum' in k] if net_manager != 'neutron': [resource_map.pop(k) for k in list(resource_map.iterkeys()) if 'neutron' in k] # add neutron plugin requirements. nova-c-c only needs the # neutron-server associated with configs, not the plugin agent. if net_manager in ['quantum', 'neutron']: plugin = neutron_plugin() if plugin: conf = neutron_plugin_attribute(plugin, 'config', net_manager) ctxts = (neutron_plugin_attribute(plugin, 'contexts', net_manager) or []) services = neutron_plugin_attribute(plugin, 'server_services', net_manager) resource_map[conf] = {} resource_map[conf]['services'] = services resource_map[conf]['contexts'] = ctxts resource_map[conf]['contexts'].append( nova_cc_context.NeutronCCContext()) # update for postgres resource_map[conf]['contexts'].append( nova_cc_context.NeutronPostgresqlDBContext()) # nova-conductor for releases >= G. if os_release('nova-common') not in ['essex', 'folsom']: resource_map['/etc/nova/nova.conf']['services'] += ['nova-conductor'] if config('console-access-protocol'): resource_map['/etc/nova/nova.conf']['services'] += \ console_attributes('services') # also manage any configs that are being updated by subordinates. vmware_ctxt = context.SubordinateConfigContext(interface='nova-vmware', service='nova', config_file=NOVA_CONF) vmware_ctxt = vmware_ctxt() if vmware_ctxt and 'services' in vmware_ctxt: for s in vmware_ctxt['services']: if s not in resource_map[NOVA_CONF]['services']: resource_map[NOVA_CONF]['services'].append(s) return resource_map def register_configs(release=None): release = release or os_release('nova-common') configs = templating.OSConfigRenderer(templates_dir=TEMPLATES, openstack_release=release) for cfg, rscs in resource_map().iteritems(): configs.register(cfg, rscs['contexts']) return configs def restart_map(): return OrderedDict([(cfg, v['services']) for cfg, v in resource_map().iteritems() if v['services']]) def services(): ''' Returns a list of services associate with this charm ''' _services = [] for v in restart_map().values(): _services = _services + v return list(set(_services)) def determine_ports(): '''Assemble a list of API ports for services we are managing''' ports = [] for services in restart_map().values(): for service in services: try: ports.append(API_PORTS[service]) except KeyError: pass return list(set(ports)) def api_port(service): return API_PORTS[service] def console_attributes_protocol(): if config('console-access-protocol').lower() == "none": return None else: return config('console-access-protocol') def console_attributes(attr): console_proto = console_attributes_protocol() if attr == 'protocol': return console_proto if console_proto in CONSOLE_CONFIG: return CONSOLE_CONFIG[console_proto][attr] return None def determine_packages(): # currently all packages match service names packages = [] + BASE_PACKAGES for v in resource_map().values(): packages.extend(v['services']) if network_manager() in ['neutron', 'quantum']: pkgs = neutron_plugin_attribute(neutron_plugin(), 'server_packages', network_manager()) packages.extend(pkgs) packages.extend(console_attributes('packages')) return list(set(packages)) def save_script_rc(): env_vars = { 'OPENSTACK_PORT_MCASTPORT': config('ha-mcastport'), 'OPENSTACK_SERVICE_API_EC2': 'nova-api-ec2', 'OPENSTACK_SERVICE_API_OS_COMPUTE': 'nova-api-os-compute', 'OPENSTACK_SERVICE_CERT': 'nova-cert', 'OPENSTACK_SERVICE_CONDUCTOR': 'nova-conductor', 'OPENSTACK_SERVICE_OBJECTSTORE': 'nova-objectstore', 'OPENSTACK_SERVICE_SCHEDULER': 'nova-scheduler', } if relation_ids('nova-volume-service'): env_vars['OPENSTACK_SERVICE_API_OS_VOL'] = 'nova-api-os-volume' if network_manager() == 'quantum': env_vars['OPENSTACK_SERVICE_API_QUANTUM'] = 'quantum-server' if network_manager() == 'neutron': env_vars['OPENSTACK_SERVICE_API_NEUTRON'] = 'neutron-server' _save_script_rc(**env_vars) def get_step_upgrade_source(new_src): ''' Determine if upgrade skips a release and, if so, return source of skipped release. ''' sources = { # target_src: (cur_pocket, step_src) 'cloud:precise-icehouse': ('precise-updates/grizzly', 'cloud:precise-havana'), 'cloud:precise-icehouse/proposed': ('precise-proposed/grizzly', 'cloud:precise-havana/proposed') } with open('/etc/apt/sources.list.d/cloud-archive.list', 'r') as f: line = f.readline() for target_src, (cur_pocket, step_src) in sources.items(): if target_src != new_src: continue if cur_pocket in line: return step_src return None POLICY_RC_D = """#!/bin/bash set -e case $1 in neutron-server|quantum-server|nova-*) [ $2 = "start" ] && exit 101 ;; *) ;; esac exit 0 """ def enable_policy_rcd(): with open('/usr/sbin/policy-rc.d', 'w') as policy: policy.write(POLICY_RC_D) os.chmod('/usr/sbin/policy-rc.d', 0o755) def disable_policy_rcd(): os.unlink('/usr/sbin/policy-rc.d') QUANTUM_DB_MANAGE = "/usr/bin/quantum-db-manage" NEUTRON_DB_MANAGE = "/usr/bin/neutron-db-manage" def reset_os_release(): # Ugly hack to make os_release re-read versions import charmhelpers.contrib.openstack.utils as utils utils.os_rel = None def neutron_db_manage(actions): net_manager = network_manager() if net_manager in ['neutron', 'quantum']: plugin = neutron_plugin() conf = neutron_plugin_attribute(plugin, 'config', net_manager) if net_manager == 'quantum': cmd = QUANTUM_DB_MANAGE else: cmd = NEUTRON_DB_MANAGE subprocess.check_call([ cmd, '--config-file=/etc/{mgr}/{mgr}.conf'.format(mgr=net_manager), '--config-file={}'.format(conf)] + actions ) def get_db_connection(): config = ConfigParser.RawConfigParser() config.read('/etc/neutron/neutron.conf') try: return config.get('database', 'connection') except: return None def ml2_migration(): reset_os_release() net_manager = network_manager() if net_manager == 'neutron': plugin = neutron_plugin() if plugin == 'ovs': log('Migrating from openvswitch to ml2 plugin') cmd = [ 'python', '/usr/lib/python2.7/dist-packages/neutron' '/db/migration/migrate_to_ml2.py', '--tunnel-type', 'gre', '--release', 'icehouse', 'openvswitch', get_db_connection() ] subprocess.check_call(cmd) def _do_openstack_upgrade(new_src): enable_policy_rcd() cur_os_rel = os_release('nova-common') new_os_rel = get_os_codename_install_source(new_src) log('Performing OpenStack upgrade to %s.' % (new_os_rel)) configure_installation_source(new_src) dpkg_opts = [ '--option', 'Dpkg::Options::=--force-confnew', '--option', 'Dpkg::Options::=--force-confdef', ] # NOTE(jamespage) pre-stamp neutron database before upgrade from grizzly if cur_os_rel == 'grizzly': neutron_db_manage(['stamp', 'grizzly']) apt_update(fatal=True) apt_upgrade(options=dpkg_opts, fatal=True, dist=True) apt_install(determine_packages(), fatal=True) if cur_os_rel == 'grizzly': # NOTE(jamespage) when upgrading from grizzly->havana, config # files need to be generated prior to performing the db upgrade reset_os_release() configs = register_configs(release=new_os_rel) configs.write_all() neutron_db_manage(['upgrade', 'head']) else: # NOTE(jamespage) upgrade with existing config files as the # havana->icehouse migration enables new service_plugins which # create issues with db upgrades neutron_db_manage(['stamp', cur_os_rel]) neutron_db_manage(['upgrade', 'head']) reset_os_release() configs = register_configs(release=new_os_rel) configs.write_all() if new_os_rel == 'icehouse': # NOTE(jamespage) default plugin switch to ml2@icehouse ml2_migration() if eligible_leader(CLUSTER_RES): migrate_database() [service_start(s) for s in services()] disable_policy_rcd() return configs def do_openstack_upgrade(): new_src = config('openstack-origin') step_src = get_step_upgrade_source(new_src) if step_src is not None: _do_openstack_upgrade(step_src) return _do_openstack_upgrade(new_src) def volume_service(): '''Specifies correct volume API for specific OS release''' os_vers = os_release('nova-common') if os_vers == 'essex': return 'nova-volume' elif os_vers == 'folsom': # support both drivers in folsom. if not relation_ids('cinder-volume-service'): return 'nova-volume' return 'cinder' def migrate_database(): '''Runs nova-manage to initialize a new database or migrate existing''' log('Migrating the nova database.', level=INFO) cmd = ['nova-manage', 'db', 'sync'] subprocess.check_output(cmd) def auth_token_config(setting): """ Returns currently configured value for setting in api-paste.ini's authtoken section, or None. """ config = ConfigParser.RawConfigParser() config.read('/etc/nova/api-paste.ini') try: value = config.get('filter:authtoken', setting) except: return None if value.startswith('%'): return None return value def keystone_ca_cert_b64(): '''Returns the local Keystone-provided CA cert if it exists, or None.''' if not os.path.isfile(CA_CERT_PATH): return None with open(CA_CERT_PATH) as _in: return b64encode(_in.read()) def ssh_directory_for_unit(user=None): remote_service = remote_unit().split('/')[0] if user: remote_service = "{}_{}".format(remote_service, user) _dir = os.path.join(NOVA_SSH_DIR, remote_service) for d in [NOVA_SSH_DIR, _dir]: if not os.path.isdir(d): os.mkdir(d) for f in ['authorized_keys', 'known_hosts']: f = os.path.join(_dir, f) if not os.path.isfile(f): open(f, 'w').close() return _dir def known_hosts(user=None): return os.path.join(ssh_directory_for_unit(user), 'known_hosts') def authorized_keys(user=None): return os.path.join(ssh_directory_for_unit(user), 'authorized_keys') def ssh_known_host_key(host, user=None): cmd = ['ssh-keygen', '-f', known_hosts(user), '-H', '-F', host] try: return subprocess.check_output(cmd).strip() except subprocess.CalledProcessError: return None def remove_known_host(host, user=None): log('Removing SSH known host entry for compute host at %s' % host) cmd = ['ssh-keygen', '-f', known_hosts(user), '-R', host] subprocess.check_call(cmd) def add_known_host(host, user=None): '''Add variations of host to a known hosts file.''' cmd = ['ssh-keyscan', '-H', '-t', 'rsa', host] try: remote_key = subprocess.check_output(cmd).strip() except Exception as e: log('Could not obtain SSH host key from %s' % host, level=ERROR) raise e current_key = ssh_known_host_key(host, user) if current_key: if remote_key == current_key: log('Known host key for compute host %s up to date.' % host) return else: remove_known_host(host, user) log('Adding SSH host key to known hosts for compute node at %s.' % host) with open(known_hosts(user), 'a') as out: out.write(remote_key + '\n') def ssh_authorized_key_exists(public_key, user=None): with open(authorized_keys(user)) as keys: return (' %s ' % public_key) in keys.read() def add_authorized_key(public_key, user=None): with open(authorized_keys(user), 'a') as keys: keys.write(public_key + '\n') def ssh_compute_add(public_key, user=None): # If remote compute node hands us a hostname, ensure we have a # known hosts entry for its IP, hostname and FQDN. private_address = relation_get('private-address') hosts = [private_address] if relation_get('hostname'): hosts.append(relation_get('hostname')) if not is_ip(private_address): hosts.append(get_host_ip(private_address)) hosts.append(private_address.split('.')[0]) else: hn = get_hostname(private_address) hosts.append(hn) hosts.append(hn.split('.')[0]) for host in list(set(hosts)): if not ssh_known_host_key(host, user): add_known_host(host, user) if not ssh_authorized_key_exists(public_key, user): log('Saving SSH authorized key for compute host at %s.' % private_address) add_authorized_key(public_key, user) def ssh_known_hosts_b64(user=None): with open(known_hosts(user)) as hosts: return b64encode(hosts.read()) def ssh_authorized_keys_b64(user=None): with open(authorized_keys(user)) as keys: return b64encode(keys.read()) def ssh_compute_remove(public_key, user=None): if not (os.path.isfile(authorized_keys(user)) or os.path.isfile(known_hosts(user))): return with open(authorized_keys(user)) as _keys: keys = [k.strip() for k in _keys.readlines()] if public_key not in keys: return [keys.remove(key) for key in keys if key == public_key] with open(authorized_keys(user), 'w') as _keys: keys = '\n'.join(keys) if not keys.endswith('\n'): keys += '\n' _keys.write(keys) def determine_endpoints(url): '''Generates a dictionary containing all relevant endpoints to be passed to keystone as relation settings.''' region = config('region') os_rel = os_release('nova-common') if os_rel >= 'grizzly': nova_url = ('%s:%s/v2/$(tenant_id)s' % (url, api_port('nova-api-os-compute'))) else: nova_url = ('%s:%s/v1.1/$(tenant_id)s' % (url, api_port('nova-api-os-compute'))) ec2_url = '%s:%s/services/Cloud' % (url, api_port('nova-api-ec2')) nova_volume_url = ('%s:%s/v1/$(tenant_id)s' % (url, api_port('nova-api-os-compute'))) neutron_url = '%s:%s' % (url, api_port('neutron-server')) s3_url = '%s:%s' % (url, api_port('nova-objectstore')) # the base endpoints endpoints = { 'nova_service': 'nova', 'nova_region': region, 'nova_public_url': nova_url, 'nova_admin_url': nova_url, 'nova_internal_url': nova_url, 'ec2_service': 'ec2', 'ec2_region': region, 'ec2_public_url': ec2_url, 'ec2_admin_url': ec2_url, 'ec2_internal_url': ec2_url, 's3_service': 's3', 's3_region': region, 's3_public_url': s3_url, 's3_admin_url': s3_url, 's3_internal_url': s3_url, } if relation_ids('nova-volume-service'): endpoints.update({ 'nova-volume_service': 'nova-volume', 'nova-volume_region': region, 'nova-volume_public_url': nova_volume_url, 'nova-volume_admin_url': nova_volume_url, 'nova-volume_internal_url': nova_volume_url, }) # XXX: Keep these relations named quantum_*?? if is_relation_made('neutron-api'): endpoints.update({ 'quantum_service': None, 'quantum_region': None, 'quantum_public_url': None, 'quantum_admin_url': None, 'quantum_internal_url': None, }) elif network_manager() in ['quantum', 'neutron']: endpoints.update({ 'quantum_service': 'quantum', 'quantum_region': region, 'quantum_public_url': neutron_url, 'quantum_admin_url': neutron_url, 'quantum_internal_url': neutron_url, }) return endpoints def neutron_plugin(): # quantum-plugin config setting can be safely overriden # as we only supported OVS in G/neutron return config('neutron-plugin') or config('quantum-plugin')