openshift_facts.py 58 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468
  1. #!/usr/bin/python
  2. # pylint: disable=too-many-lines
  3. # -*- coding: utf-8 -*-
  4. # Reason: Disable pylint too-many-lines because we don't want to split up this file.
  5. # Status: Permanently disabled to keep this module as self-contained as possible.
  6. """Ansible module for retrieving and setting openshift related facts"""
  7. # pylint: disable=no-name-in-module, import-error, wrong-import-order
  8. import copy
  9. import errno
  10. import json
  11. import re
  12. import os
  13. import yaml
  14. import struct
  15. import socket
  16. import ipaddress
  17. from distutils.util import strtobool
  18. from ansible.module_utils.six import text_type
  19. from ansible.module_utils.six import string_types
  20. from ansible.module_utils.six.moves import configparser
  21. # ignore pylint errors related to the module_utils import
  22. # pylint: disable=redefined-builtin, unused-wildcard-import, wildcard-import
  23. # import module snippets
  24. from ansible.module_utils.basic import * # noqa: F403
  25. from ansible.module_utils.facts import * # noqa: F403
  26. from ansible.module_utils.urls import * # noqa: F403
  27. from ansible.module_utils.six import iteritems, itervalues
  28. from ansible.module_utils.six.moves.urllib.parse import urlparse, urlunparse
  29. from ansible.module_utils._text import to_native
  30. HAVE_DBUS = False
  31. try:
  32. from dbus import SystemBus, Interface
  33. from dbus.exceptions import DBusException
  34. HAVE_DBUS = True
  35. except ImportError:
  36. pass
  37. DOCUMENTATION = '''
  38. ---
  39. module: openshift_facts
  40. short_description: Cluster Facts
  41. author: Jason DeTiberus
  42. requirements: [ ]
  43. '''
  44. EXAMPLES = '''
  45. '''
  46. # TODO: We should add a generic migration function that takes source and destination
  47. # paths and does the right thing rather than one function for common, one for node, etc.
  48. def migrate_common_facts(facts):
  49. """ Migrate facts from various roles into common """
  50. params = {
  51. 'node': ('portal_net'),
  52. 'master': ('portal_net')
  53. }
  54. if 'common' not in facts:
  55. facts['common'] = {}
  56. # pylint: disable=consider-iterating-dictionary
  57. for role in params.keys():
  58. if role in facts:
  59. for param in params[role]:
  60. if param in facts[role]:
  61. facts['common'][param] = facts[role].pop(param)
  62. return facts
  63. def migrate_admission_plugin_facts(facts):
  64. """ Apply migrations for admission plugin facts """
  65. if 'master' in facts:
  66. if 'kube_admission_plugin_config' in facts['master']:
  67. if 'admission_plugin_config' not in facts['master']:
  68. facts['master']['admission_plugin_config'] = dict()
  69. # Merge existing kube_admission_plugin_config with admission_plugin_config.
  70. facts['master']['admission_plugin_config'] = merge_facts(facts['master']['admission_plugin_config'],
  71. facts['master']['kube_admission_plugin_config'],
  72. additive_facts_to_overwrite=[])
  73. # Remove kube_admission_plugin_config fact
  74. facts['master'].pop('kube_admission_plugin_config', None)
  75. return facts
  76. def migrate_local_facts(facts):
  77. """ Apply migrations of local facts """
  78. migrated_facts = copy.deepcopy(facts)
  79. migrated_facts = migrate_common_facts(migrated_facts)
  80. migrated_facts = migrate_admission_plugin_facts(migrated_facts)
  81. return migrated_facts
  82. def first_ip(network):
  83. """ Return the first IPv4 address in network
  84. Args:
  85. network (str): network in CIDR format
  86. Returns:
  87. str: first IPv4 address
  88. """
  89. atoi = lambda addr: struct.unpack("!I", socket.inet_aton(addr))[0] # noqa: E731
  90. itoa = lambda addr: socket.inet_ntoa(struct.pack("!I", addr)) # noqa: E731
  91. (address, netmask) = network.split('/')
  92. netmask_i = (0xffffffff << (32 - atoi(netmask))) & 0xffffffff
  93. return itoa((atoi(address) & netmask_i) + 1)
  94. def hostname_valid(hostname):
  95. """ Test if specified hostname should be considered valid
  96. Args:
  97. hostname (str): hostname to test
  98. Returns:
  99. bool: True if valid, otherwise False
  100. """
  101. if (not hostname or
  102. hostname.startswith('localhost') or
  103. hostname.endswith('localdomain') or
  104. # OpenShift will not allow a node with more than 63 chars in name.
  105. len(hostname) > 63):
  106. return False
  107. return True
  108. def choose_hostname(hostnames=None, fallback=''):
  109. """ Choose a hostname from the provided hostnames
  110. Given a list of hostnames and a fallback value, choose a hostname to
  111. use. This function will prefer fqdns if they exist (excluding any that
  112. begin with localhost or end with localdomain) over ip addresses.
  113. Args:
  114. hostnames (list): list of hostnames
  115. fallback (str): default value to set if hostnames does not contain
  116. a valid hostname
  117. Returns:
  118. str: chosen hostname
  119. """
  120. hostname = fallback
  121. if hostnames is None:
  122. return hostname
  123. ip_regex = r'\A\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\Z'
  124. ips = [i for i in hostnames if i is not None and isinstance(i, string_types) and re.match(ip_regex, i)]
  125. hosts = [i for i in hostnames if i is not None and i != '' and i not in ips]
  126. for host_list in (hosts, ips):
  127. for host in host_list:
  128. if hostname_valid(host):
  129. return host
  130. return hostname
  131. def query_metadata(metadata_url, headers=None, expect_json=False):
  132. """ Return metadata from the provided metadata_url
  133. Args:
  134. metadata_url (str): metadata url
  135. headers (dict): headers to set for metadata request
  136. expect_json (bool): does the metadata_url return json
  137. Returns:
  138. dict or list: metadata request result
  139. """
  140. result, info = fetch_url(module, metadata_url, headers=headers) # noqa: F405
  141. if info['status'] != 200:
  142. raise OpenShiftFactsMetadataUnavailableError("Metadata unavailable")
  143. if expect_json:
  144. return module.from_json(to_native(result.read())) # noqa: F405
  145. else:
  146. return [to_native(line.strip()) for line in result.readlines()]
  147. def walk_metadata(metadata_url, headers=None, expect_json=False):
  148. """ Walk the metadata tree and return a dictionary of the entire tree
  149. Args:
  150. metadata_url (str): metadata url
  151. headers (dict): headers to set for metadata request
  152. expect_json (bool): does the metadata_url return json
  153. Returns:
  154. dict: the result of walking the metadata tree
  155. """
  156. metadata = dict()
  157. for line in query_metadata(metadata_url, headers, expect_json):
  158. if line.endswith('/') and not line == 'public-keys/':
  159. key = line[:-1]
  160. metadata[key] = walk_metadata(metadata_url + line,
  161. headers, expect_json)
  162. else:
  163. results = query_metadata(metadata_url + line, headers,
  164. expect_json)
  165. if len(results) == 1:
  166. # disable pylint maybe-no-member because overloaded use of
  167. # the module name causes pylint to not detect that results
  168. # is an array or hash
  169. # pylint: disable=maybe-no-member
  170. metadata[line] = results.pop()
  171. else:
  172. metadata[line] = results
  173. return metadata
  174. def get_provider_metadata(metadata_url, supports_recursive=False,
  175. headers=None, expect_json=False):
  176. """ Retrieve the provider metadata
  177. Args:
  178. metadata_url (str): metadata url
  179. supports_recursive (bool): does the provider metadata api support
  180. recursion
  181. headers (dict): headers to set for metadata request
  182. expect_json (bool): does the metadata_url return json
  183. Returns:
  184. dict: the provider metadata
  185. """
  186. try:
  187. if supports_recursive:
  188. metadata = query_metadata(metadata_url, headers,
  189. expect_json)
  190. else:
  191. metadata = walk_metadata(metadata_url, headers,
  192. expect_json)
  193. except OpenShiftFactsMetadataUnavailableError:
  194. metadata = None
  195. return metadata
  196. def normalize_gce_facts(metadata, facts):
  197. """ Normalize gce facts
  198. Args:
  199. metadata (dict): provider metadata
  200. facts (dict): facts to update
  201. Returns:
  202. dict: the result of adding the normalized metadata to the provided
  203. facts dict
  204. """
  205. for interface in metadata['instance']['networkInterfaces']:
  206. int_info = dict(ips=[interface['ip']], network_type='gce')
  207. int_info['public_ips'] = [ac['externalIp'] for ac
  208. in interface['accessConfigs']]
  209. int_info['public_ips'].extend(interface['forwardedIps'])
  210. _, _, network_id = interface['network'].rpartition('/')
  211. int_info['network_id'] = network_id
  212. facts['network']['interfaces'].append(int_info)
  213. _, _, zone = metadata['instance']['zone'].rpartition('/')
  214. facts['zone'] = zone
  215. # GCE currently only supports a single interface
  216. facts['network']['ip'] = facts['network']['interfaces'][0]['ips'][0]
  217. pub_ip = facts['network']['interfaces'][0]['public_ips'][0]
  218. facts['network']['public_ip'] = pub_ip
  219. # Split instance hostname from GCE metadata to use the short instance name
  220. facts['network']['hostname'] = metadata['instance']['hostname'].split('.')[0]
  221. # TODO: attempt to resolve public_hostname
  222. facts['network']['public_hostname'] = facts['network']['public_ip']
  223. return facts
  224. def normalize_aws_facts(metadata, facts):
  225. """ Normalize aws facts
  226. Args:
  227. metadata (dict): provider metadata
  228. facts (dict): facts to update
  229. Returns:
  230. dict: the result of adding the normalized metadata to the provided
  231. facts dict
  232. """
  233. for interface in sorted(
  234. metadata['network']['interfaces']['macs'].values(),
  235. key=lambda x: x['device-number']
  236. ):
  237. int_info = dict()
  238. var_map = {'ips': 'local-ipv4s', 'public_ips': 'public-ipv4s'}
  239. for ips_var, int_var in iteritems(var_map):
  240. ips = interface.get(int_var)
  241. if isinstance(ips, string_types):
  242. int_info[ips_var] = [ips]
  243. else:
  244. int_info[ips_var] = ips
  245. if 'vpc-id' in interface:
  246. int_info['network_type'] = 'vpc'
  247. else:
  248. int_info['network_type'] = 'classic'
  249. if int_info['network_type'] == 'vpc':
  250. int_info['network_id'] = interface['subnet-id']
  251. else:
  252. int_info['network_id'] = None
  253. facts['network']['interfaces'].append(int_info)
  254. facts['zone'] = metadata['placement']['availability-zone']
  255. # TODO: actually attempt to determine default local and public ips
  256. # by using the ansible default ip fact and the ipv4-associations
  257. # from the ec2 metadata
  258. facts['network']['ip'] = metadata.get('local-ipv4')
  259. facts['network']['public_ip'] = metadata.get('public-ipv4')
  260. # TODO: verify that local hostname makes sense and is resolvable
  261. facts['network']['hostname'] = metadata.get('local-hostname')
  262. # TODO: verify that public hostname makes sense and is resolvable
  263. facts['network']['public_hostname'] = metadata.get('public-hostname')
  264. return facts
  265. def normalize_openstack_facts(metadata, facts):
  266. """ Normalize openstack facts
  267. Args:
  268. metadata (dict): provider metadata
  269. facts (dict): facts to update
  270. Returns:
  271. dict: the result of adding the normalized metadata to the provided
  272. facts dict
  273. """
  274. # openstack ec2 compat api does not support network interfaces and
  275. # the version tested on did not include the info in the openstack
  276. # metadata api, should be updated if neutron exposes this.
  277. facts['zone'] = metadata['availability_zone']
  278. local_ipv4 = metadata['ec2_compat']['local-ipv4'].split(',')[0]
  279. facts['network']['ip'] = local_ipv4
  280. facts['network']['public_ip'] = metadata['ec2_compat']['public-ipv4']
  281. for f_var, h_var, ip_var in [('hostname', 'hostname', 'local-ipv4'),
  282. ('public_hostname', 'public-hostname', 'public-ipv4')]:
  283. try:
  284. if socket.gethostbyname(metadata['ec2_compat'][h_var]) == metadata['ec2_compat'][ip_var]:
  285. facts['network'][f_var] = metadata['ec2_compat'][h_var]
  286. else:
  287. facts['network'][f_var] = metadata['ec2_compat'][ip_var]
  288. except socket.gaierror:
  289. facts['network'][f_var] = metadata['ec2_compat'][ip_var]
  290. return facts
  291. def normalize_provider_facts(provider, metadata):
  292. """ Normalize provider facts
  293. Args:
  294. provider (str): host provider
  295. metadata (dict): provider metadata
  296. Returns:
  297. dict: the normalized provider facts
  298. """
  299. if provider is None or metadata is None:
  300. return {}
  301. # TODO: test for ipv6_enabled where possible (gce, aws do not support)
  302. # and configure ipv6 facts if available
  303. # TODO: add support for setting user_data if available
  304. facts = dict(name=provider, metadata=metadata,
  305. network=dict(interfaces=[], ipv6_enabled=False))
  306. if provider == 'gce':
  307. facts = normalize_gce_facts(metadata, facts)
  308. elif provider == 'aws':
  309. facts = normalize_aws_facts(metadata, facts)
  310. elif provider == 'openstack':
  311. facts = normalize_openstack_facts(metadata, facts)
  312. return facts
  313. def set_url_facts_if_unset(facts):
  314. """ Set url facts if not already present in facts dict
  315. Args:
  316. facts (dict): existing facts
  317. Returns:
  318. dict: the facts dict updated with the generated url facts if they
  319. were not already present
  320. """
  321. if 'master' in facts:
  322. hostname = facts['common']['hostname']
  323. cluster_hostname = facts['master'].get('cluster_hostname')
  324. cluster_public_hostname = facts['master'].get('cluster_public_hostname')
  325. public_hostname = facts['common']['public_hostname']
  326. api_hostname = cluster_hostname if cluster_hostname else hostname
  327. api_public_hostname = cluster_public_hostname if cluster_public_hostname else public_hostname
  328. console_path = facts['master']['console_path']
  329. use_ssl = dict(
  330. api=facts['master']['api_use_ssl'],
  331. public_api=facts['master']['api_use_ssl'],
  332. loopback_api=facts['master']['api_use_ssl'],
  333. console=facts['master']['console_use_ssl'],
  334. public_console=facts['master']['console_use_ssl'],
  335. )
  336. ports = dict(
  337. api=facts['master']['api_port'],
  338. public_api=facts['master']['api_port'],
  339. loopback_api=facts['master']['api_port'],
  340. console=facts['master']['console_port'],
  341. public_console=facts['master']['console_port'],
  342. )
  343. prefix_hosts = [('api', api_hostname),
  344. ('public_api', api_public_hostname),
  345. ('loopback_api', hostname)]
  346. for prefix, host in prefix_hosts:
  347. facts['master'].setdefault(prefix + '_url', format_url(use_ssl[prefix],
  348. host,
  349. ports[prefix]))
  350. r_lhn = "{0}:{1}".format(hostname, ports['api']).replace('.', '-')
  351. r_lhu = "system:openshift-master/{0}:{1}".format(api_hostname, ports['api']).replace('.', '-')
  352. facts['master'].setdefault('loopback_cluster_name', r_lhn)
  353. facts['master'].setdefault('loopback_context_name', "default/{0}/system:openshift-master".format(r_lhn))
  354. facts['master'].setdefault('loopback_user', r_lhu)
  355. prefix_hosts = [('console', api_hostname), ('public_console', api_public_hostname)]
  356. for prefix, host in prefix_hosts:
  357. facts['master'].setdefault(prefix + '_url', format_url(use_ssl[prefix],
  358. host,
  359. ports[prefix],
  360. console_path))
  361. return facts
  362. def set_aggregate_facts(facts):
  363. """ Set aggregate facts
  364. Args:
  365. facts (dict): existing facts
  366. Returns:
  367. dict: the facts dict updated with aggregated facts
  368. """
  369. all_hostnames = set()
  370. internal_hostnames = set()
  371. kube_svc_ip = first_ip(facts['common']['portal_net'])
  372. if 'common' in facts:
  373. all_hostnames.add(facts['common']['hostname'])
  374. all_hostnames.add(facts['common']['public_hostname'])
  375. all_hostnames.add(facts['common']['ip'])
  376. all_hostnames.add(facts['common']['public_ip'])
  377. facts['common']['kube_svc_ip'] = kube_svc_ip
  378. internal_hostnames.add(facts['common']['hostname'])
  379. internal_hostnames.add(facts['common']['ip'])
  380. cluster_domain = facts['common']['dns_domain']
  381. if 'master' in facts:
  382. if 'cluster_hostname' in facts['master']:
  383. all_hostnames.add(facts['master']['cluster_hostname'])
  384. if 'cluster_public_hostname' in facts['master']:
  385. all_hostnames.add(facts['master']['cluster_public_hostname'])
  386. svc_names = ['openshift', 'openshift.default', 'openshift.default.svc',
  387. 'openshift.default.svc.' + cluster_domain, 'kubernetes', 'kubernetes.default',
  388. 'kubernetes.default.svc', 'kubernetes.default.svc.' + cluster_domain]
  389. all_hostnames.update(svc_names)
  390. internal_hostnames.update(svc_names)
  391. all_hostnames.add(kube_svc_ip)
  392. internal_hostnames.add(kube_svc_ip)
  393. facts['common']['all_hostnames'] = list(all_hostnames)
  394. facts['common']['internal_hostnames'] = list(internal_hostnames)
  395. return facts
  396. def set_sdn_facts_if_unset(facts, system_facts):
  397. """ Set sdn facts if not already present in facts dict
  398. Args:
  399. facts (dict): existing facts
  400. system_facts (dict): ansible_facts
  401. Returns:
  402. dict: the facts dict updated with the generated sdn facts if they
  403. were not already present
  404. """
  405. if 'master' in facts:
  406. # set defaults for sdn_cluster_network_cidr and sdn_host_subnet_length
  407. # these might be overridden if they exist in the master config file
  408. sdn_cluster_network_cidr = '10.128.0.0/14'
  409. sdn_host_subnet_length = '9'
  410. master_cfg_path = os.path.join(facts['common']['config_base'],
  411. 'master/master-config.yaml')
  412. if os.path.isfile(master_cfg_path):
  413. with open(master_cfg_path, 'r') as master_cfg_f:
  414. config = yaml.safe_load(master_cfg_f.read())
  415. if 'networkConfig' in config:
  416. if 'clusterNetworkCIDR' in config['networkConfig']:
  417. sdn_cluster_network_cidr = \
  418. config['networkConfig']['clusterNetworkCIDR']
  419. if 'hostSubnetLength' in config['networkConfig']:
  420. sdn_host_subnet_length = \
  421. config['networkConfig']['hostSubnetLength']
  422. if 'sdn_cluster_network_cidr' not in facts['master']:
  423. facts['master']['sdn_cluster_network_cidr'] = sdn_cluster_network_cidr
  424. if 'sdn_host_subnet_length' not in facts['master']:
  425. facts['master']['sdn_host_subnet_length'] = sdn_host_subnet_length
  426. if 'node' in facts and 'sdn_mtu' not in facts['node']:
  427. node_ip = facts['common']['ip']
  428. # default MTU if interface MTU cannot be detected
  429. facts['node']['sdn_mtu'] = '1450'
  430. for val in itervalues(system_facts):
  431. if isinstance(val, dict) and 'mtu' in val:
  432. mtu = val['mtu']
  433. if 'ipv4' in val and val['ipv4'].get('address') == node_ip:
  434. facts['node']['sdn_mtu'] = str(mtu - 50)
  435. return facts
  436. def set_nodename(facts):
  437. """ set nodename """
  438. if 'node' in facts and 'common' in facts:
  439. if 'cloudprovider' in facts and facts['cloudprovider']['kind'] == 'gce':
  440. facts['node']['nodename'] = facts['provider']['metadata']['instance']['hostname'].split('.')[0]
  441. # TODO: The openstack cloudprovider nodename setting was too opinionaed.
  442. # It needs to be generalized before it can be enabled again.
  443. # elif 'cloudprovider' in facts and facts['cloudprovider']['kind'] == 'openstack':
  444. # facts['node']['nodename'] = facts['provider']['metadata']['hostname'].replace('.novalocal', '')
  445. else:
  446. facts['node']['nodename'] = facts['common']['hostname'].lower()
  447. return facts
  448. def format_url(use_ssl, hostname, port, path=''):
  449. """ Format url based on ssl flag, hostname, port and path
  450. Args:
  451. use_ssl (bool): is ssl enabled
  452. hostname (str): hostname
  453. port (str): port
  454. path (str): url path
  455. Returns:
  456. str: The generated url string
  457. """
  458. scheme = 'https' if use_ssl else 'http'
  459. netloc = hostname
  460. if (use_ssl and port != '443') or (not use_ssl and port != '80'):
  461. netloc += ":%s" % port
  462. try:
  463. url = urlparse.urlunparse((scheme, netloc, path, '', '', ''))
  464. except AttributeError:
  465. # pylint: disable=undefined-variable
  466. url = urlunparse((scheme, netloc, path, '', '', ''))
  467. return url
  468. def get_current_config(facts):
  469. """ Get current openshift config
  470. Args:
  471. facts (dict): existing facts
  472. Returns:
  473. dict: the facts dict updated with the current openshift config
  474. """
  475. current_config = dict()
  476. roles = [role for role in facts if role not in ['common', 'provider']]
  477. for role in roles:
  478. if 'roles' in current_config:
  479. current_config['roles'].append(role)
  480. else:
  481. current_config['roles'] = [role]
  482. # TODO: parse the /etc/sysconfig/openshift-{master,node} config to
  483. # determine the location of files.
  484. # TODO: I suspect this isn't working right now, but it doesn't prevent
  485. # anything from working properly as far as I can tell, perhaps because
  486. # we override the kubeconfig path everywhere we use it?
  487. # Query kubeconfig settings
  488. kubeconfig_dir = '/var/lib/origin/openshift.local.certificates'
  489. if role == 'node':
  490. kubeconfig_dir = os.path.join(
  491. kubeconfig_dir, "node-%s" % facts['common']['hostname']
  492. )
  493. kubeconfig_path = os.path.join(kubeconfig_dir, '.kubeconfig')
  494. if os.path.isfile('/usr/bin/openshift') and os.path.isfile(kubeconfig_path):
  495. try:
  496. _, output, _ = module.run_command( # noqa: F405
  497. ["/usr/bin/openshift", "ex", "config", "view", "-o",
  498. "json", "--kubeconfig=%s" % kubeconfig_path],
  499. check_rc=False
  500. )
  501. config = json.loads(output)
  502. cad = 'certificate-authority-data'
  503. try:
  504. for cluster in config['clusters']:
  505. config['clusters'][cluster][cad] = 'masked'
  506. except KeyError:
  507. pass
  508. try:
  509. for user in config['users']:
  510. config['users'][user][cad] = 'masked'
  511. config['users'][user]['client-key-data'] = 'masked'
  512. except KeyError:
  513. pass
  514. current_config['kubeconfig'] = config
  515. # override pylint broad-except warning, since we do not want
  516. # to bubble up any exceptions if oc config view
  517. # fails
  518. # pylint: disable=broad-except
  519. except Exception:
  520. pass
  521. return current_config
  522. def build_controller_args(facts):
  523. """ Build master controller_args """
  524. cloud_cfg_path = os.path.join(facts['common']['config_base'],
  525. 'cloudprovider')
  526. if 'master' in facts:
  527. controller_args = {}
  528. if 'cloudprovider' in facts:
  529. if 'kind' in facts['cloudprovider']:
  530. if facts['cloudprovider']['kind'] == 'aws':
  531. controller_args['cloud-provider'] = ['aws']
  532. controller_args['cloud-config'] = [cloud_cfg_path + '/aws.conf']
  533. if facts['cloudprovider']['kind'] == 'openstack':
  534. controller_args['cloud-provider'] = ['openstack']
  535. controller_args['cloud-config'] = [cloud_cfg_path + '/openstack.conf']
  536. if facts['cloudprovider']['kind'] == 'gce':
  537. controller_args['cloud-provider'] = ['gce']
  538. controller_args['cloud-config'] = [cloud_cfg_path + '/gce.conf']
  539. if controller_args != {}:
  540. facts = merge_facts({'master': {'controller_args': controller_args}}, facts, [])
  541. return facts
  542. def build_api_server_args(facts):
  543. """ Build master api_server_args """
  544. cloud_cfg_path = os.path.join(facts['common']['config_base'],
  545. 'cloudprovider')
  546. if 'master' in facts:
  547. api_server_args = {}
  548. if 'cloudprovider' in facts:
  549. if 'kind' in facts['cloudprovider']:
  550. if facts['cloudprovider']['kind'] == 'aws':
  551. api_server_args['cloud-provider'] = ['aws']
  552. api_server_args['cloud-config'] = [cloud_cfg_path + '/aws.conf']
  553. if facts['cloudprovider']['kind'] == 'openstack':
  554. api_server_args['cloud-provider'] = ['openstack']
  555. api_server_args['cloud-config'] = [cloud_cfg_path + '/openstack.conf']
  556. if facts['cloudprovider']['kind'] == 'gce':
  557. api_server_args['cloud-provider'] = ['gce']
  558. api_server_args['cloud-config'] = [cloud_cfg_path + '/gce.conf']
  559. if api_server_args != {}:
  560. facts = merge_facts({'master': {'api_server_args': api_server_args}}, facts, [])
  561. return facts
  562. def is_service_running(service):
  563. """ Queries systemd through dbus to see if the service is running """
  564. service_running = False
  565. try:
  566. bus = SystemBus()
  567. systemd = bus.get_object('org.freedesktop.systemd1', '/org/freedesktop/systemd1')
  568. manager = Interface(systemd, dbus_interface='org.freedesktop.systemd1.Manager')
  569. service_unit = service if service.endswith('.service') else manager.GetUnit('{0}.service'.format(service))
  570. service_proxy = bus.get_object('org.freedesktop.systemd1', str(service_unit))
  571. service_properties = Interface(service_proxy, dbus_interface='org.freedesktop.DBus.Properties')
  572. service_load_state = service_properties.Get('org.freedesktop.systemd1.Unit', 'LoadState')
  573. service_active_state = service_properties.Get('org.freedesktop.systemd1.Unit', 'ActiveState')
  574. if service_load_state == 'loaded' and service_active_state == 'active':
  575. service_running = True
  576. except DBusException:
  577. # TODO: do not swallow exception, as it may be hiding useful debugging
  578. # information.
  579. pass
  580. return service_running
  581. def rpm_rebuilddb():
  582. """
  583. Runs rpm --rebuilddb to ensure the db is in good shape.
  584. """
  585. module.run_command(['/usr/bin/rpm', '--rebuilddb']) # noqa: F405
  586. def get_version_output(binary, version_cmd):
  587. """ runs and returns the version output for a command """
  588. cmd = []
  589. for item in (binary, version_cmd):
  590. if isinstance(item, list):
  591. cmd.extend(item)
  592. else:
  593. cmd.append(item)
  594. if os.path.isfile(cmd[0]):
  595. _, output, _ = module.run_command(cmd) # noqa: F405
  596. return output
  597. # We may need this in the future.
  598. def get_docker_version_info():
  599. """ Parses and returns the docker version info """
  600. result = None
  601. if is_service_running('docker') or is_service_running('container-engine'):
  602. version_info = yaml.safe_load(get_version_output('/usr/bin/docker', 'version'))
  603. if 'Server' in version_info:
  604. result = {
  605. 'api_version': version_info['Server']['API version'],
  606. 'version': version_info['Server']['Version']
  607. }
  608. return result
  609. def apply_provider_facts(facts, provider_facts):
  610. """ Apply provider facts to supplied facts dict
  611. Args:
  612. facts (dict): facts dict to update
  613. provider_facts (dict): provider facts to apply
  614. roles: host roles
  615. Returns:
  616. dict: the merged facts
  617. """
  618. if not provider_facts:
  619. return facts
  620. common_vars = [('hostname', 'ip'), ('public_hostname', 'public_ip')]
  621. for h_var, ip_var in common_vars:
  622. ip_value = provider_facts['network'].get(ip_var)
  623. if ip_value:
  624. facts['common'][ip_var] = ip_value
  625. facts['common'][h_var] = choose_hostname(
  626. [provider_facts['network'].get(h_var)],
  627. facts['common'][h_var]
  628. )
  629. facts['provider'] = provider_facts
  630. return facts
  631. # Disabling pylint too many branches. This function needs refactored
  632. # but is a very core part of openshift_facts.
  633. # pylint: disable=too-many-branches, too-many-nested-blocks
  634. def merge_facts(orig, new, additive_facts_to_overwrite):
  635. """ Recursively merge facts dicts
  636. Args:
  637. orig (dict): existing facts
  638. new (dict): facts to update
  639. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  640. '.' notation ex: ['master.named_certificates']
  641. Returns:
  642. dict: the merged facts
  643. """
  644. additive_facts = ['named_certificates']
  645. # Facts we do not ever want to merge. These originate in inventory variables
  646. # and contain JSON dicts. We don't ever want to trigger a merge
  647. # here, just completely overwrite with the new if they are present there.
  648. inventory_json_facts = ['admission_plugin_config',
  649. 'kube_admission_plugin_config',
  650. 'image_policy_config',
  651. "builddefaults",
  652. "buildoverrides"]
  653. facts = dict()
  654. for key, value in iteritems(orig):
  655. # Key exists in both old and new facts.
  656. if key in new:
  657. if key in inventory_json_facts:
  658. # Watchout for JSON facts that sometimes load as strings.
  659. # (can happen if the JSON contains a boolean)
  660. if isinstance(new[key], string_types):
  661. facts[key] = yaml.safe_load(new[key])
  662. else:
  663. facts[key] = copy.deepcopy(new[key])
  664. # Continue to recurse if old and new fact is a dictionary.
  665. elif isinstance(value, dict) and isinstance(new[key], dict):
  666. # Collect the subset of additive facts to overwrite if
  667. # key matches. These will be passed to the subsequent
  668. # merge_facts call.
  669. relevant_additive_facts = []
  670. for item in additive_facts_to_overwrite:
  671. if '.' in item and item.startswith(key + '.'):
  672. relevant_additive_facts.append(item)
  673. facts[key] = merge_facts(value, new[key], relevant_additive_facts)
  674. # Key matches an additive fact and we are not overwriting
  675. # it so we will append the new value to the existing value.
  676. elif key in additive_facts and key not in [x.split('.')[-1] for x in additive_facts_to_overwrite]:
  677. if isinstance(value, list) and isinstance(new[key], list):
  678. new_fact = []
  679. for item in copy.deepcopy(value) + copy.deepcopy(new[key]):
  680. if item not in new_fact:
  681. new_fact.append(item)
  682. facts[key] = new_fact
  683. # No other condition has been met. Overwrite the old fact
  684. # with the new value.
  685. else:
  686. facts[key] = copy.deepcopy(new[key])
  687. # Key isn't in new so add it to facts to keep it.
  688. else:
  689. facts[key] = copy.deepcopy(value)
  690. new_keys = set(new.keys()) - set(orig.keys())
  691. for key in new_keys:
  692. # Watchout for JSON facts that sometimes load as strings.
  693. # (can happen if the JSON contains a boolean)
  694. if key in inventory_json_facts and isinstance(new[key], string_types):
  695. facts[key] = yaml.safe_load(new[key])
  696. else:
  697. facts[key] = copy.deepcopy(new[key])
  698. return facts
  699. def save_local_facts(filename, facts):
  700. """ Save local facts
  701. Args:
  702. filename (str): local facts file
  703. facts (dict): facts to set
  704. """
  705. try:
  706. fact_dir = os.path.dirname(filename)
  707. try:
  708. os.makedirs(fact_dir) # try to make the directory
  709. except OSError as exception:
  710. if exception.errno != errno.EEXIST: # but it is okay if it is already there
  711. raise # pass any other exceptions up the chain
  712. with open(filename, 'w') as fact_file:
  713. fact_file.write(module.jsonify(facts)) # noqa: F405
  714. os.chmod(filename, 0o600)
  715. except (IOError, OSError) as ex:
  716. raise OpenShiftFactsFileWriteError(
  717. "Could not create fact file: %s, error: %s" % (filename, ex)
  718. )
  719. def get_local_facts_from_file(filename):
  720. """ Retrieve local facts from fact file
  721. Args:
  722. filename (str): local facts file
  723. Returns:
  724. dict: the retrieved facts
  725. """
  726. local_facts = dict()
  727. try:
  728. # Handle conversion of INI style facts file to json style
  729. ini_facts = configparser.SafeConfigParser()
  730. ini_facts.read(filename)
  731. for section in ini_facts.sections():
  732. local_facts[section] = dict()
  733. for key, value in ini_facts.items(section):
  734. local_facts[section][key] = value
  735. except (configparser.MissingSectionHeaderError,
  736. configparser.ParsingError):
  737. try:
  738. with open(filename, 'r') as facts_file:
  739. local_facts = json.load(facts_file)
  740. except (ValueError, IOError):
  741. pass
  742. return local_facts
  743. def sort_unique(alist):
  744. """ Sorts and de-dupes a list
  745. Args:
  746. list: a list
  747. Returns:
  748. list: a sorted de-duped list
  749. """
  750. return sorted(list(set(alist)))
  751. def safe_get_bool(fact):
  752. """ Get a boolean fact safely.
  753. Args:
  754. facts: fact to convert
  755. Returns:
  756. bool: given fact as a bool
  757. """
  758. return bool(strtobool(str(fact)))
  759. def set_proxy_facts(facts):
  760. """ Set global proxy facts
  761. Args:
  762. facts(dict): existing facts
  763. Returns:
  764. facts(dict): Updated facts with missing values
  765. """
  766. if 'common' in facts:
  767. common = facts['common']
  768. if 'http_proxy' in common or 'https_proxy' in common or 'no_proxy' in common:
  769. if 'no_proxy' in common and isinstance(common['no_proxy'], string_types):
  770. common['no_proxy'] = common['no_proxy'].split(",")
  771. elif 'no_proxy' not in common:
  772. common['no_proxy'] = []
  773. # See https://bugzilla.redhat.com/show_bug.cgi?id=1466783
  774. # masters behind a proxy need to connect to etcd via IP
  775. if 'no_proxy_etcd_host_ips' in common:
  776. if isinstance(common['no_proxy_etcd_host_ips'], string_types):
  777. common['no_proxy'].extend(common['no_proxy_etcd_host_ips'].split(','))
  778. if 'generate_no_proxy_hosts' in common and safe_get_bool(common['generate_no_proxy_hosts']):
  779. if 'no_proxy_internal_hostnames' in common:
  780. common['no_proxy'].extend(common['no_proxy_internal_hostnames'].split(','))
  781. # We always add local dns domain and ourselves no matter what
  782. kube_svc_ip = str(ipaddress.ip_network(text_type(common['portal_net']))[1])
  783. common['no_proxy'].append(kube_svc_ip)
  784. common['no_proxy'].append('.' + common['dns_domain'])
  785. common['no_proxy'].append('.svc')
  786. common['no_proxy'].append(common['hostname'])
  787. common['no_proxy'] = ','.join(sort_unique(common['no_proxy']))
  788. facts['common'] = common
  789. return facts
  790. def set_builddefaults_facts(facts):
  791. """ Set build defaults including setting proxy values from http_proxy, https_proxy,
  792. no_proxy to the more specific builddefaults and builddefaults_git vars.
  793. 1. http_proxy, https_proxy, no_proxy
  794. 2. builddefaults_*
  795. 3. builddefaults_git_*
  796. Args:
  797. facts(dict): existing facts
  798. Returns:
  799. facts(dict): Updated facts with missing values
  800. """
  801. if 'builddefaults' in facts:
  802. builddefaults = facts['builddefaults']
  803. common = facts['common']
  804. # Copy values from common to builddefaults
  805. if 'http_proxy' not in builddefaults and 'http_proxy' in common:
  806. builddefaults['http_proxy'] = common['http_proxy']
  807. if 'https_proxy' not in builddefaults and 'https_proxy' in common:
  808. builddefaults['https_proxy'] = common['https_proxy']
  809. if 'no_proxy' not in builddefaults and 'no_proxy' in common:
  810. builddefaults['no_proxy'] = common['no_proxy']
  811. # Create git specific facts from generic values, if git specific values are
  812. # not defined.
  813. if 'git_http_proxy' not in builddefaults and 'http_proxy' in builddefaults:
  814. builddefaults['git_http_proxy'] = builddefaults['http_proxy']
  815. if 'git_https_proxy' not in builddefaults and 'https_proxy' in builddefaults:
  816. builddefaults['git_https_proxy'] = builddefaults['https_proxy']
  817. if 'git_no_proxy' not in builddefaults and 'no_proxy' in builddefaults:
  818. builddefaults['git_no_proxy'] = builddefaults['no_proxy']
  819. # If we're actually defining a builddefaults config then create admission_plugin_config
  820. # then merge builddefaults[config] structure into admission_plugin_config
  821. # 'config' is the 'openshift_builddefaults_json' inventory variable
  822. if 'config' in builddefaults:
  823. if 'admission_plugin_config' not in facts['master']:
  824. # Scaffold out the full expected datastructure
  825. facts['master']['admission_plugin_config'] = {'BuildDefaults': {'configuration': {'env': {}}}}
  826. facts['master']['admission_plugin_config'].update(builddefaults['config'])
  827. if 'env' in facts['master']['admission_plugin_config']['BuildDefaults']['configuration']:
  828. delete_empty_keys(facts['master']['admission_plugin_config']['BuildDefaults']['configuration']['env'])
  829. return facts
  830. def delete_empty_keys(keylist):
  831. """ Delete dictionary elements from keylist where "value" is empty.
  832. Args:
  833. keylist(list): A list of builddefault configuration envs.
  834. Returns:
  835. none
  836. Example:
  837. keylist = [{'name': 'HTTP_PROXY', 'value': 'http://file.rdu.redhat.com:3128'},
  838. {'name': 'HTTPS_PROXY', 'value': 'http://file.rdu.redhat.com:3128'},
  839. {'name': 'NO_PROXY', 'value': ''}]
  840. After calling delete_empty_keys the provided list is modified to become:
  841. [{'name': 'HTTP_PROXY', 'value': 'http://file.rdu.redhat.com:3128'},
  842. {'name': 'HTTPS_PROXY', 'value': 'http://file.rdu.redhat.com:3128'}]
  843. """
  844. count = 0
  845. for i in range(0, len(keylist)):
  846. if len(keylist[i - count]['value']) == 0:
  847. del keylist[i - count]
  848. count += 1
  849. def set_buildoverrides_facts(facts):
  850. """ Set build overrides
  851. Args:
  852. facts(dict): existing facts
  853. Returns:
  854. facts(dict): Updated facts with missing values
  855. """
  856. if 'buildoverrides' in facts:
  857. buildoverrides = facts['buildoverrides']
  858. # If we're actually defining a buildoverrides config then create admission_plugin_config
  859. # then merge buildoverrides[config] structure into admission_plugin_config
  860. if 'config' in buildoverrides:
  861. if 'admission_plugin_config' not in facts['master']:
  862. facts['master']['admission_plugin_config'] = dict()
  863. facts['master']['admission_plugin_config'].update(buildoverrides['config'])
  864. return facts
  865. # pylint: disable=too-many-statements
  866. def set_container_facts_if_unset(facts):
  867. """ Set containerized facts.
  868. Args:
  869. facts (dict): existing facts
  870. Returns:
  871. dict: the facts dict updated with the generated containerization
  872. facts
  873. """
  874. return facts
  875. def pop_obsolete_local_facts(local_facts):
  876. """Remove unused keys from local_facts"""
  877. keys_to_remove = {
  878. 'master': ('etcd_port', 'etcd_use_ssl', 'etcd_hosts')
  879. }
  880. for role in keys_to_remove:
  881. if role in local_facts:
  882. for key in keys_to_remove[role]:
  883. local_facts[role].pop(key, None)
  884. class OpenShiftFactsInternalError(Exception):
  885. """Origin Facts Error"""
  886. pass
  887. class OpenShiftFactsUnsupportedRoleError(Exception):
  888. """Origin Facts Unsupported Role Error"""
  889. pass
  890. class OpenShiftFactsFileWriteError(Exception):
  891. """Origin Facts File Write Error"""
  892. pass
  893. class OpenShiftFactsMetadataUnavailableError(Exception):
  894. """Origin Facts Metadata Unavailable Error"""
  895. pass
  896. class OpenShiftFacts(object):
  897. """ Origin Facts
  898. Attributes:
  899. facts (dict): facts for the host
  900. Args:
  901. module (AnsibleModule): an AnsibleModule object
  902. role (str): role for setting local facts
  903. filename (str): local facts file to use
  904. local_facts (dict): local facts to set
  905. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  906. '.' notation ex: ['master.named_certificates']
  907. Raises:
  908. OpenShiftFactsUnsupportedRoleError:
  909. """
  910. known_roles = ['builddefaults',
  911. 'buildoverrides',
  912. 'cloudprovider',
  913. 'common',
  914. 'etcd',
  915. 'master',
  916. 'node']
  917. # Disabling too-many-arguments, this should be cleaned up as a TODO item.
  918. # pylint: disable=too-many-arguments,no-value-for-parameter
  919. def __init__(self, role, filename, local_facts,
  920. additive_facts_to_overwrite=None):
  921. self.changed = False
  922. self.filename = filename
  923. if role not in self.known_roles:
  924. raise OpenShiftFactsUnsupportedRoleError(
  925. "Role %s is not supported by this module" % role
  926. )
  927. self.role = role
  928. # Collect system facts and preface each fact with 'ansible_'.
  929. try:
  930. # pylint: disable=too-many-function-args,invalid-name
  931. self.system_facts = ansible_facts(module, ['hardware', 'network', 'virtual', 'facter']) # noqa: F405
  932. additional_facts = {}
  933. for (k, v) in self.system_facts.items():
  934. additional_facts["ansible_%s" % k.replace('-', '_')] = v
  935. self.system_facts.update(additional_facts)
  936. except UnboundLocalError:
  937. # ansible-2.2,2.3
  938. self.system_facts = get_all_facts(module)['ansible_facts'] # noqa: F405
  939. self.facts = self.generate_facts(local_facts,
  940. additive_facts_to_overwrite)
  941. def generate_facts(self,
  942. local_facts,
  943. additive_facts_to_overwrite):
  944. """ Generate facts
  945. Args:
  946. local_facts (dict): local_facts for overriding generated defaults
  947. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  948. '.' notation ex: ['master.named_certificates']
  949. Returns:
  950. dict: The generated facts
  951. """
  952. local_facts = self.init_local_facts(local_facts,
  953. additive_facts_to_overwrite)
  954. roles = local_facts.keys()
  955. defaults = self.get_defaults(roles)
  956. provider_facts = self.init_provider_facts()
  957. facts = apply_provider_facts(defaults, provider_facts)
  958. facts = merge_facts(facts,
  959. local_facts,
  960. additive_facts_to_overwrite)
  961. facts['current_config'] = get_current_config(facts)
  962. facts = set_url_facts_if_unset(facts)
  963. facts = set_sdn_facts_if_unset(facts, self.system_facts)
  964. facts = set_container_facts_if_unset(facts)
  965. facts = build_controller_args(facts)
  966. facts = build_api_server_args(facts)
  967. facts = set_aggregate_facts(facts)
  968. facts = set_proxy_facts(facts)
  969. facts = set_builddefaults_facts(facts)
  970. facts = set_buildoverrides_facts(facts)
  971. facts = set_nodename(facts)
  972. return dict(openshift=facts)
  973. def get_defaults(self, roles):
  974. """ Get default fact values
  975. Args:
  976. roles (list): list of roles for this host
  977. Returns:
  978. dict: The generated default facts
  979. """
  980. defaults = {}
  981. ip_addr = self.system_facts['ansible_default_ipv4']['address']
  982. exit_code, output, _ = module.run_command(['hostname', '-f']) # noqa: F405
  983. hostname_f = output.strip() if exit_code == 0 else ''
  984. hostname_values = [hostname_f, self.system_facts['ansible_nodename'],
  985. self.system_facts['ansible_fqdn']]
  986. hostname = choose_hostname(hostname_values, ip_addr).lower()
  987. defaults['common'] = dict(ip=ip_addr,
  988. public_ip=ip_addr,
  989. hostname=hostname,
  990. public_hostname=hostname,
  991. portal_net='172.30.0.0/16',
  992. dns_domain='cluster.local',
  993. config_base='/etc/origin')
  994. if 'master' in roles:
  995. defaults['master'] = dict(api_use_ssl=True, api_port='8443',
  996. controllers_port='8444',
  997. console_use_ssl=True,
  998. console_path='/console',
  999. console_port='8443',
  1000. portal_net='172.30.0.0/16',
  1001. embedded_kube=True,
  1002. embedded_dns=True,
  1003. bind_addr='0.0.0.0',
  1004. session_max_seconds=3600,
  1005. session_name='ssn',
  1006. session_secrets_file='',
  1007. access_token_max_seconds=86400,
  1008. auth_token_max_seconds=500,
  1009. oauth_grant_method='auto',
  1010. dynamic_provisioning_enabled=True,
  1011. max_requests_inflight=500)
  1012. if 'cloudprovider' in roles:
  1013. defaults['cloudprovider'] = dict(kind=None)
  1014. return defaults
  1015. def guess_host_provider(self):
  1016. """ Guess the host provider
  1017. Returns:
  1018. dict: The generated default facts for the detected provider
  1019. """
  1020. # TODO: cloud provider facts should probably be submitted upstream
  1021. product_name = self.system_facts['ansible_product_name']
  1022. product_version = self.system_facts['ansible_product_version']
  1023. virt_type = self.system_facts['ansible_virtualization_type']
  1024. virt_role = self.system_facts['ansible_virtualization_role']
  1025. bios_vendor = self.system_facts['ansible_system_vendor']
  1026. provider = None
  1027. metadata = None
  1028. if bios_vendor == 'Google':
  1029. provider = 'gce'
  1030. metadata_url = ('http://metadata.google.internal/'
  1031. 'computeMetadata/v1/?recursive=true')
  1032. headers = {'Metadata-Flavor': 'Google'}
  1033. metadata = get_provider_metadata(metadata_url, True, headers,
  1034. True)
  1035. # Filter sshKeys and serviceAccounts from gce metadata
  1036. if metadata:
  1037. metadata['project']['attributes'].pop('sshKeys', None)
  1038. metadata['instance'].pop('serviceAccounts', None)
  1039. elif bios_vendor == 'Amazon EC2':
  1040. # Adds support for Amazon EC2 C5 instance types
  1041. provider = 'aws'
  1042. metadata_url = 'http://169.254.169.254/latest/meta-data/'
  1043. metadata = get_provider_metadata(metadata_url)
  1044. elif virt_type == 'xen' and virt_role == 'guest' and re.match(r'.*\.amazon$', product_version):
  1045. provider = 'aws'
  1046. metadata_url = 'http://169.254.169.254/latest/meta-data/'
  1047. metadata = get_provider_metadata(metadata_url)
  1048. elif re.search(r'OpenStack', product_name):
  1049. provider = 'openstack'
  1050. metadata_url = ('http://169.254.169.254/openstack/latest/'
  1051. 'meta_data.json')
  1052. metadata = get_provider_metadata(metadata_url, True, None,
  1053. True)
  1054. if metadata:
  1055. ec2_compat_url = 'http://169.254.169.254/latest/meta-data/'
  1056. metadata['ec2_compat'] = get_provider_metadata(
  1057. ec2_compat_url
  1058. )
  1059. # disable pylint maybe-no-member because overloaded use of
  1060. # the module name causes pylint to not detect that results
  1061. # is an array or hash
  1062. # pylint: disable=maybe-no-member
  1063. # Filter public_keys and random_seed from openstack metadata
  1064. metadata.pop('public_keys', None)
  1065. metadata.pop('random_seed', None)
  1066. if not metadata['ec2_compat']:
  1067. metadata = None
  1068. return dict(name=provider, metadata=metadata)
  1069. def init_provider_facts(self):
  1070. """ Initialize the provider facts
  1071. Returns:
  1072. dict: The normalized provider facts
  1073. """
  1074. provider_info = self.guess_host_provider()
  1075. provider_facts = normalize_provider_facts(
  1076. provider_info.get('name'),
  1077. provider_info.get('metadata')
  1078. )
  1079. return provider_facts
  1080. # Disabling too-many-branches and too-many-locals.
  1081. # This should be cleaned up as a TODO item.
  1082. # pylint: disable=too-many-branches, too-many-locals
  1083. def init_local_facts(self, facts=None,
  1084. additive_facts_to_overwrite=None):
  1085. """ Initialize the local facts
  1086. Args:
  1087. facts (dict): local facts to set
  1088. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  1089. '.' notation ex: ['master.named_certificates']
  1090. Returns:
  1091. dict: The result of merging the provided facts with existing
  1092. local facts
  1093. """
  1094. changed = False
  1095. facts_to_set = dict()
  1096. if facts is not None:
  1097. facts_to_set[self.role] = facts
  1098. local_facts = get_local_facts_from_file(self.filename)
  1099. migrated_facts = migrate_local_facts(local_facts)
  1100. new_local_facts = merge_facts(migrated_facts,
  1101. facts_to_set,
  1102. additive_facts_to_overwrite)
  1103. new_local_facts = self.remove_empty_facts(new_local_facts)
  1104. pop_obsolete_local_facts(new_local_facts)
  1105. if new_local_facts != local_facts:
  1106. self.validate_local_facts(new_local_facts)
  1107. changed = True
  1108. if not module.check_mode: # noqa: F405
  1109. save_local_facts(self.filename, new_local_facts)
  1110. self.changed = changed
  1111. return new_local_facts
  1112. def remove_empty_facts(self, facts=None):
  1113. """ Remove empty facts
  1114. Args:
  1115. facts (dict): facts to clean
  1116. """
  1117. facts_to_remove = []
  1118. for fact, value in iteritems(facts):
  1119. if isinstance(facts[fact], dict):
  1120. facts[fact] = self.remove_empty_facts(facts[fact])
  1121. else:
  1122. if value == "" or value == [""] or value is None:
  1123. facts_to_remove.append(fact)
  1124. for fact in facts_to_remove:
  1125. del facts[fact]
  1126. return facts
  1127. def validate_local_facts(self, facts=None):
  1128. """ Validate local facts
  1129. Args:
  1130. facts (dict): local facts to validate
  1131. """
  1132. invalid_facts = dict()
  1133. invalid_facts = self.validate_master_facts(facts, invalid_facts)
  1134. if invalid_facts:
  1135. msg = 'Invalid facts detected:\n'
  1136. # pylint: disable=consider-iterating-dictionary
  1137. for key in invalid_facts.keys():
  1138. msg += '{0}: {1}\n'.format(key, invalid_facts[key])
  1139. module.fail_json(msg=msg, changed=self.changed) # noqa: F405
  1140. # disabling pylint errors for line-too-long since we're dealing
  1141. # with best effort reduction of error messages here.
  1142. # disabling errors for too-many-branches since we require checking
  1143. # many conditions.
  1144. # pylint: disable=line-too-long, too-many-branches
  1145. @staticmethod
  1146. def validate_master_facts(facts, invalid_facts):
  1147. """ Validate master facts
  1148. Args:
  1149. facts (dict): local facts to validate
  1150. invalid_facts (dict): collected invalid_facts
  1151. Returns:
  1152. dict: Invalid facts
  1153. """
  1154. if 'master' in facts:
  1155. # openshift.master.session_auth_secrets
  1156. if 'session_auth_secrets' in facts['master']:
  1157. session_auth_secrets = facts['master']['session_auth_secrets']
  1158. if not issubclass(type(session_auth_secrets), list):
  1159. invalid_facts['session_auth_secrets'] = 'Expects session_auth_secrets is a list.'
  1160. elif 'session_encryption_secrets' not in facts['master']:
  1161. invalid_facts['session_auth_secrets'] = ('openshift_master_session_encryption secrets must be set '
  1162. 'if openshift_master_session_auth_secrets is provided.')
  1163. elif len(session_auth_secrets) != len(facts['master']['session_encryption_secrets']):
  1164. invalid_facts['session_auth_secrets'] = ('openshift_master_session_auth_secrets and '
  1165. 'openshift_master_session_encryption_secrets must be '
  1166. 'equal length.')
  1167. else:
  1168. for secret in session_auth_secrets:
  1169. if len(secret) < 32:
  1170. invalid_facts['session_auth_secrets'] = ('Invalid secret in session_auth_secrets. '
  1171. 'Secrets must be at least 32 characters in length.')
  1172. # openshift.master.session_encryption_secrets
  1173. if 'session_encryption_secrets' in facts['master']:
  1174. session_encryption_secrets = facts['master']['session_encryption_secrets']
  1175. if not issubclass(type(session_encryption_secrets), list):
  1176. invalid_facts['session_encryption_secrets'] = 'Expects session_encryption_secrets is a list.'
  1177. elif 'session_auth_secrets' not in facts['master']:
  1178. invalid_facts['session_encryption_secrets'] = ('openshift_master_session_auth_secrets must be '
  1179. 'set if openshift_master_session_encryption_secrets '
  1180. 'is provided.')
  1181. else:
  1182. for secret in session_encryption_secrets:
  1183. if len(secret) not in [16, 24, 32]:
  1184. invalid_facts['session_encryption_secrets'] = ('Invalid secret in session_encryption_secrets. '
  1185. 'Secrets must be 16, 24, or 32 characters in length.')
  1186. return invalid_facts
  1187. def main():
  1188. """ main """
  1189. # disabling pylint errors for global-variable-undefined and invalid-name
  1190. # for 'global module' usage, since it is required to use ansible_facts
  1191. # pylint: disable=global-variable-undefined, invalid-name
  1192. global module
  1193. module = AnsibleModule( # noqa: F405
  1194. argument_spec=dict(
  1195. role=dict(default='common', required=False,
  1196. choices=OpenShiftFacts.known_roles),
  1197. local_facts=dict(default=None, type='dict', required=False),
  1198. additive_facts_to_overwrite=dict(default=[], type='list', required=False),
  1199. ),
  1200. supports_check_mode=True,
  1201. add_file_common_args=True,
  1202. )
  1203. if not HAVE_DBUS:
  1204. module.fail_json(msg="This module requires dbus python bindings") # noqa: F405
  1205. module.params['gather_subset'] = ['hardware', 'network', 'virtual', 'facter'] # noqa: F405
  1206. module.params['gather_timeout'] = 10 # noqa: F405
  1207. module.params['filter'] = '*' # noqa: F405
  1208. role = module.params['role'] # noqa: F405
  1209. local_facts = module.params['local_facts'] # noqa: F405
  1210. additive_facts_to_overwrite = module.params['additive_facts_to_overwrite'] # noqa: F405
  1211. fact_file = '/etc/ansible/facts.d/openshift.fact'
  1212. openshift_facts = OpenShiftFacts(role,
  1213. fact_file,
  1214. local_facts,
  1215. additive_facts_to_overwrite)
  1216. file_params = module.params.copy() # noqa: F405
  1217. file_params['path'] = fact_file
  1218. file_args = module.load_file_common_arguments(file_params) # noqa: F405
  1219. changed = module.set_fs_attributes_if_different(file_args, # noqa: F405
  1220. openshift_facts.changed)
  1221. return module.exit_json(changed=changed, # noqa: F405
  1222. ansible_facts=openshift_facts.facts)
  1223. if __name__ == '__main__':
  1224. main()