openshift_facts.py 67 KB

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