openshift_facts.py 58 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474
  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. if 'bootstrapped' in facts['node'] and facts['node']['bootstrapped']:
  447. facts['node']['nodename'] = facts['common']['raw_hostname'].lower()
  448. else:
  449. facts['node']['nodename'] = facts['common']['hostname'].lower()
  450. return facts
  451. def format_url(use_ssl, hostname, port, path=''):
  452. """ Format url based on ssl flag, hostname, port and path
  453. Args:
  454. use_ssl (bool): is ssl enabled
  455. hostname (str): hostname
  456. port (str): port
  457. path (str): url path
  458. Returns:
  459. str: The generated url string
  460. """
  461. scheme = 'https' if use_ssl else 'http'
  462. netloc = hostname
  463. if (use_ssl and port != '443') or (not use_ssl and port != '80'):
  464. netloc += ":%s" % port
  465. try:
  466. url = urlparse.urlunparse((scheme, netloc, path, '', '', ''))
  467. except AttributeError:
  468. # pylint: disable=undefined-variable
  469. url = urlunparse((scheme, netloc, path, '', '', ''))
  470. return url
  471. def get_current_config(facts):
  472. """ Get current openshift config
  473. Args:
  474. facts (dict): existing facts
  475. Returns:
  476. dict: the facts dict updated with the current openshift config
  477. """
  478. current_config = dict()
  479. roles = [role for role in facts if role not in ['common', 'provider']]
  480. for role in roles:
  481. if 'roles' in current_config:
  482. current_config['roles'].append(role)
  483. else:
  484. current_config['roles'] = [role]
  485. # TODO: parse the /etc/sysconfig/openshift-{master,node} config to
  486. # determine the location of files.
  487. # TODO: I suspect this isn't working right now, but it doesn't prevent
  488. # anything from working properly as far as I can tell, perhaps because
  489. # we override the kubeconfig path everywhere we use it?
  490. # Query kubeconfig settings
  491. kubeconfig_dir = '/var/lib/origin/openshift.local.certificates'
  492. if role == 'node':
  493. kubeconfig_dir = os.path.join(
  494. kubeconfig_dir, "node-%s" % facts['common']['hostname']
  495. )
  496. kubeconfig_path = os.path.join(kubeconfig_dir, '.kubeconfig')
  497. if os.path.isfile('/usr/bin/openshift') and os.path.isfile(kubeconfig_path):
  498. try:
  499. _, output, _ = module.run_command( # noqa: F405
  500. ["/usr/bin/openshift", "ex", "config", "view", "-o",
  501. "json", "--kubeconfig=%s" % kubeconfig_path],
  502. check_rc=False
  503. )
  504. config = json.loads(output)
  505. cad = 'certificate-authority-data'
  506. try:
  507. for cluster in config['clusters']:
  508. config['clusters'][cluster][cad] = 'masked'
  509. except KeyError:
  510. pass
  511. try:
  512. for user in config['users']:
  513. config['users'][user][cad] = 'masked'
  514. config['users'][user]['client-key-data'] = 'masked'
  515. except KeyError:
  516. pass
  517. current_config['kubeconfig'] = config
  518. # override pylint broad-except warning, since we do not want
  519. # to bubble up any exceptions if oc config view
  520. # fails
  521. # pylint: disable=broad-except
  522. except Exception:
  523. pass
  524. return current_config
  525. def build_controller_args(facts):
  526. """ Build master controller_args """
  527. cloud_cfg_path = os.path.join(facts['common']['config_base'],
  528. 'cloudprovider')
  529. if 'master' in facts:
  530. controller_args = {}
  531. if 'cloudprovider' in facts:
  532. if 'kind' in facts['cloudprovider']:
  533. if facts['cloudprovider']['kind'] == 'aws':
  534. controller_args['cloud-provider'] = ['aws']
  535. controller_args['cloud-config'] = [cloud_cfg_path + '/aws.conf']
  536. if facts['cloudprovider']['kind'] == 'openstack':
  537. controller_args['cloud-provider'] = ['openstack']
  538. controller_args['cloud-config'] = [cloud_cfg_path + '/openstack.conf']
  539. if facts['cloudprovider']['kind'] == 'gce':
  540. controller_args['cloud-provider'] = ['gce']
  541. controller_args['cloud-config'] = [cloud_cfg_path + '/gce.conf']
  542. if controller_args != {}:
  543. facts = merge_facts({'master': {'controller_args': controller_args}}, facts, [])
  544. return facts
  545. def build_api_server_args(facts):
  546. """ Build master api_server_args """
  547. cloud_cfg_path = os.path.join(facts['common']['config_base'],
  548. 'cloudprovider')
  549. if 'master' in facts:
  550. api_server_args = {}
  551. if 'cloudprovider' in facts:
  552. if 'kind' in facts['cloudprovider']:
  553. if facts['cloudprovider']['kind'] == 'aws':
  554. api_server_args['cloud-provider'] = ['aws']
  555. api_server_args['cloud-config'] = [cloud_cfg_path + '/aws.conf']
  556. if facts['cloudprovider']['kind'] == 'openstack':
  557. api_server_args['cloud-provider'] = ['openstack']
  558. api_server_args['cloud-config'] = [cloud_cfg_path + '/openstack.conf']
  559. if facts['cloudprovider']['kind'] == 'gce':
  560. api_server_args['cloud-provider'] = ['gce']
  561. api_server_args['cloud-config'] = [cloud_cfg_path + '/gce.conf']
  562. if api_server_args != {}:
  563. facts = merge_facts({'master': {'api_server_args': api_server_args}}, facts, [])
  564. return facts
  565. def is_service_running(service):
  566. """ Queries systemd through dbus to see if the service is running """
  567. service_running = False
  568. try:
  569. bus = SystemBus()
  570. systemd = bus.get_object('org.freedesktop.systemd1', '/org/freedesktop/systemd1')
  571. manager = Interface(systemd, dbus_interface='org.freedesktop.systemd1.Manager')
  572. service_unit = service if service.endswith('.service') else manager.GetUnit('{0}.service'.format(service))
  573. service_proxy = bus.get_object('org.freedesktop.systemd1', str(service_unit))
  574. service_properties = Interface(service_proxy, dbus_interface='org.freedesktop.DBus.Properties')
  575. service_load_state = service_properties.Get('org.freedesktop.systemd1.Unit', 'LoadState')
  576. service_active_state = service_properties.Get('org.freedesktop.systemd1.Unit', 'ActiveState')
  577. if service_load_state == 'loaded' and service_active_state == 'active':
  578. service_running = True
  579. except DBusException:
  580. # TODO: do not swallow exception, as it may be hiding useful debugging
  581. # information.
  582. pass
  583. return service_running
  584. def rpm_rebuilddb():
  585. """
  586. Runs rpm --rebuilddb to ensure the db is in good shape.
  587. """
  588. module.run_command(['/usr/bin/rpm', '--rebuilddb']) # noqa: F405
  589. def get_version_output(binary, version_cmd):
  590. """ runs and returns the version output for a command """
  591. cmd = []
  592. for item in (binary, version_cmd):
  593. if isinstance(item, list):
  594. cmd.extend(item)
  595. else:
  596. cmd.append(item)
  597. if os.path.isfile(cmd[0]):
  598. _, output, _ = module.run_command(cmd) # noqa: F405
  599. return output
  600. # We may need this in the future.
  601. def get_docker_version_info():
  602. """ Parses and returns the docker version info """
  603. result = None
  604. if is_service_running('docker') or is_service_running('container-engine'):
  605. version_info = yaml.safe_load(get_version_output('/usr/bin/docker', 'version'))
  606. if 'Server' in version_info:
  607. result = {
  608. 'api_version': version_info['Server']['API version'],
  609. 'version': version_info['Server']['Version']
  610. }
  611. return result
  612. def apply_provider_facts(facts, provider_facts):
  613. """ Apply provider facts to supplied facts dict
  614. Args:
  615. facts (dict): facts dict to update
  616. provider_facts (dict): provider facts to apply
  617. roles: host roles
  618. Returns:
  619. dict: the merged facts
  620. """
  621. if not provider_facts:
  622. return facts
  623. common_vars = [('hostname', 'ip'), ('public_hostname', 'public_ip')]
  624. for h_var, ip_var in common_vars:
  625. ip_value = provider_facts['network'].get(ip_var)
  626. if ip_value:
  627. facts['common'][ip_var] = ip_value
  628. facts['common'][h_var] = choose_hostname(
  629. [provider_facts['network'].get(h_var)],
  630. facts['common'][h_var]
  631. )
  632. facts['provider'] = provider_facts
  633. return facts
  634. # Disabling pylint too many branches. This function needs refactored
  635. # but is a very core part of openshift_facts.
  636. # pylint: disable=too-many-branches, too-many-nested-blocks
  637. def merge_facts(orig, new, additive_facts_to_overwrite):
  638. """ Recursively merge facts dicts
  639. Args:
  640. orig (dict): existing facts
  641. new (dict): facts to update
  642. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  643. '.' notation ex: ['master.named_certificates']
  644. Returns:
  645. dict: the merged facts
  646. """
  647. additive_facts = ['named_certificates']
  648. # Facts we do not ever want to merge. These originate in inventory variables
  649. # and contain JSON dicts. We don't ever want to trigger a merge
  650. # here, just completely overwrite with the new if they are present there.
  651. inventory_json_facts = ['admission_plugin_config',
  652. 'kube_admission_plugin_config',
  653. 'image_policy_config',
  654. "builddefaults",
  655. "buildoverrides"]
  656. facts = dict()
  657. for key, value in iteritems(orig):
  658. # Key exists in both old and new facts.
  659. if key in new:
  660. if key in inventory_json_facts:
  661. # Watchout for JSON facts that sometimes load as strings.
  662. # (can happen if the JSON contains a boolean)
  663. if isinstance(new[key], string_types):
  664. facts[key] = yaml.safe_load(new[key])
  665. else:
  666. facts[key] = copy.deepcopy(new[key])
  667. # Continue to recurse if old and new fact is a dictionary.
  668. elif isinstance(value, dict) and isinstance(new[key], dict):
  669. # Collect the subset of additive facts to overwrite if
  670. # key matches. These will be passed to the subsequent
  671. # merge_facts call.
  672. relevant_additive_facts = []
  673. for item in additive_facts_to_overwrite:
  674. if '.' in item and item.startswith(key + '.'):
  675. relevant_additive_facts.append(item)
  676. facts[key] = merge_facts(value, new[key], relevant_additive_facts)
  677. # Key matches an additive fact and we are not overwriting
  678. # it so we will append the new value to the existing value.
  679. elif key in additive_facts and key not in [x.split('.')[-1] for x in additive_facts_to_overwrite]:
  680. if isinstance(value, list) and isinstance(new[key], list):
  681. new_fact = []
  682. for item in copy.deepcopy(value) + copy.deepcopy(new[key]):
  683. if item not in new_fact:
  684. new_fact.append(item)
  685. facts[key] = new_fact
  686. # No other condition has been met. Overwrite the old fact
  687. # with the new value.
  688. else:
  689. facts[key] = copy.deepcopy(new[key])
  690. # Key isn't in new so add it to facts to keep it.
  691. else:
  692. facts[key] = copy.deepcopy(value)
  693. new_keys = set(new.keys()) - set(orig.keys())
  694. for key in new_keys:
  695. # Watchout for JSON facts that sometimes load as strings.
  696. # (can happen if the JSON contains a boolean)
  697. if key in inventory_json_facts and isinstance(new[key], string_types):
  698. facts[key] = yaml.safe_load(new[key])
  699. else:
  700. facts[key] = copy.deepcopy(new[key])
  701. return facts
  702. def save_local_facts(filename, facts):
  703. """ Save local facts
  704. Args:
  705. filename (str): local facts file
  706. facts (dict): facts to set
  707. """
  708. try:
  709. fact_dir = os.path.dirname(filename)
  710. try:
  711. os.makedirs(fact_dir) # try to make the directory
  712. except OSError as exception:
  713. if exception.errno != errno.EEXIST: # but it is okay if it is already there
  714. raise # pass any other exceptions up the chain
  715. with open(filename, 'w') as fact_file:
  716. fact_file.write(module.jsonify(facts)) # noqa: F405
  717. os.chmod(filename, 0o600)
  718. except (IOError, OSError) as ex:
  719. raise OpenShiftFactsFileWriteError(
  720. "Could not create fact file: %s, error: %s" % (filename, ex)
  721. )
  722. def get_local_facts_from_file(filename):
  723. """ Retrieve local facts from fact file
  724. Args:
  725. filename (str): local facts file
  726. Returns:
  727. dict: the retrieved facts
  728. """
  729. local_facts = dict()
  730. try:
  731. # Handle conversion of INI style facts file to json style
  732. ini_facts = configparser.SafeConfigParser()
  733. ini_facts.read(filename)
  734. for section in ini_facts.sections():
  735. local_facts[section] = dict()
  736. for key, value in ini_facts.items(section):
  737. local_facts[section][key] = value
  738. except (configparser.MissingSectionHeaderError,
  739. configparser.ParsingError):
  740. try:
  741. with open(filename, 'r') as facts_file:
  742. local_facts = json.load(facts_file)
  743. except (ValueError, IOError):
  744. pass
  745. return local_facts
  746. def sort_unique(alist):
  747. """ Sorts and de-dupes a list
  748. Args:
  749. list: a list
  750. Returns:
  751. list: a sorted de-duped list
  752. """
  753. return sorted(list(set(alist)))
  754. def safe_get_bool(fact):
  755. """ Get a boolean fact safely.
  756. Args:
  757. facts: fact to convert
  758. Returns:
  759. bool: given fact as a bool
  760. """
  761. return bool(strtobool(str(fact)))
  762. def set_proxy_facts(facts):
  763. """ Set global proxy facts
  764. Args:
  765. facts(dict): existing facts
  766. Returns:
  767. facts(dict): Updated facts with missing values
  768. """
  769. if 'common' in facts:
  770. common = facts['common']
  771. if 'http_proxy' in common or 'https_proxy' in common or 'no_proxy' in common:
  772. if 'no_proxy' in common and isinstance(common['no_proxy'], string_types):
  773. common['no_proxy'] = common['no_proxy'].split(",")
  774. elif 'no_proxy' not in common:
  775. common['no_proxy'] = []
  776. # See https://bugzilla.redhat.com/show_bug.cgi?id=1466783
  777. # masters behind a proxy need to connect to etcd via IP
  778. if 'no_proxy_etcd_host_ips' in common:
  779. if isinstance(common['no_proxy_etcd_host_ips'], string_types):
  780. common['no_proxy'].extend(common['no_proxy_etcd_host_ips'].split(','))
  781. if 'generate_no_proxy_hosts' in common and safe_get_bool(common['generate_no_proxy_hosts']):
  782. if 'no_proxy_internal_hostnames' in common:
  783. common['no_proxy'].extend(common['no_proxy_internal_hostnames'].split(','))
  784. # We always add local dns domain and ourselves no matter what
  785. kube_svc_ip = str(ipaddress.ip_network(text_type(common['portal_net']))[1])
  786. common['no_proxy'].append(kube_svc_ip)
  787. common['no_proxy'].append('.' + common['dns_domain'])
  788. common['no_proxy'].append('.svc')
  789. common['no_proxy'].append(common['hostname'])
  790. common['no_proxy'] = ','.join(sort_unique(common['no_proxy']))
  791. facts['common'] = common
  792. return facts
  793. def set_builddefaults_facts(facts):
  794. """ Set build defaults including setting proxy values from http_proxy, https_proxy,
  795. no_proxy to the more specific builddefaults and builddefaults_git vars.
  796. 1. http_proxy, https_proxy, no_proxy
  797. 2. builddefaults_*
  798. 3. builddefaults_git_*
  799. Args:
  800. facts(dict): existing facts
  801. Returns:
  802. facts(dict): Updated facts with missing values
  803. """
  804. if 'builddefaults' in facts:
  805. builddefaults = facts['builddefaults']
  806. common = facts['common']
  807. # Copy values from common to builddefaults
  808. if 'http_proxy' not in builddefaults and 'http_proxy' in common:
  809. builddefaults['http_proxy'] = common['http_proxy']
  810. if 'https_proxy' not in builddefaults and 'https_proxy' in common:
  811. builddefaults['https_proxy'] = common['https_proxy']
  812. if 'no_proxy' not in builddefaults and 'no_proxy' in common:
  813. builddefaults['no_proxy'] = common['no_proxy']
  814. # Create git specific facts from generic values, if git specific values are
  815. # not defined.
  816. if 'git_http_proxy' not in builddefaults and 'http_proxy' in builddefaults:
  817. builddefaults['git_http_proxy'] = builddefaults['http_proxy']
  818. if 'git_https_proxy' not in builddefaults and 'https_proxy' in builddefaults:
  819. builddefaults['git_https_proxy'] = builddefaults['https_proxy']
  820. if 'git_no_proxy' not in builddefaults and 'no_proxy' in builddefaults:
  821. builddefaults['git_no_proxy'] = builddefaults['no_proxy']
  822. # If we're actually defining a builddefaults config then create admission_plugin_config
  823. # then merge builddefaults[config] structure into admission_plugin_config
  824. # 'config' is the 'openshift_builddefaults_json' inventory variable
  825. if 'config' in builddefaults:
  826. if 'admission_plugin_config' not in facts['master']:
  827. # Scaffold out the full expected datastructure
  828. facts['master']['admission_plugin_config'] = {'BuildDefaults': {'configuration': {'env': {}}}}
  829. facts['master']['admission_plugin_config'].update(builddefaults['config'])
  830. if 'env' in facts['master']['admission_plugin_config']['BuildDefaults']['configuration']:
  831. delete_empty_keys(facts['master']['admission_plugin_config']['BuildDefaults']['configuration']['env'])
  832. return facts
  833. def delete_empty_keys(keylist):
  834. """ Delete dictionary elements from keylist where "value" is empty.
  835. Args:
  836. keylist(list): A list of builddefault configuration envs.
  837. Returns:
  838. none
  839. Example:
  840. keylist = [{'name': 'HTTP_PROXY', 'value': 'http://file.rdu.redhat.com:3128'},
  841. {'name': 'HTTPS_PROXY', 'value': 'http://file.rdu.redhat.com:3128'},
  842. {'name': 'NO_PROXY', 'value': ''}]
  843. After calling delete_empty_keys the provided list is modified to become:
  844. [{'name': 'HTTP_PROXY', 'value': 'http://file.rdu.redhat.com:3128'},
  845. {'name': 'HTTPS_PROXY', 'value': 'http://file.rdu.redhat.com:3128'}]
  846. """
  847. count = 0
  848. for i in range(0, len(keylist)):
  849. if len(keylist[i - count]['value']) == 0:
  850. del keylist[i - count]
  851. count += 1
  852. def set_buildoverrides_facts(facts):
  853. """ Set build overrides
  854. Args:
  855. facts(dict): existing facts
  856. Returns:
  857. facts(dict): Updated facts with missing values
  858. """
  859. if 'buildoverrides' in facts:
  860. buildoverrides = facts['buildoverrides']
  861. # If we're actually defining a buildoverrides config then create admission_plugin_config
  862. # then merge buildoverrides[config] structure into admission_plugin_config
  863. if 'config' in buildoverrides:
  864. if 'admission_plugin_config' not in facts['master']:
  865. facts['master']['admission_plugin_config'] = dict()
  866. facts['master']['admission_plugin_config'].update(buildoverrides['config'])
  867. return facts
  868. # pylint: disable=too-many-statements
  869. def set_container_facts_if_unset(facts):
  870. """ Set containerized facts.
  871. Args:
  872. facts (dict): existing facts
  873. Returns:
  874. dict: the facts dict updated with the generated containerization
  875. facts
  876. """
  877. return facts
  878. def pop_obsolete_local_facts(local_facts):
  879. """Remove unused keys from local_facts"""
  880. keys_to_remove = {
  881. 'master': ('etcd_port', 'etcd_use_ssl', 'etcd_hosts')
  882. }
  883. for role in keys_to_remove:
  884. if role in local_facts:
  885. for key in keys_to_remove[role]:
  886. local_facts[role].pop(key, None)
  887. class OpenShiftFactsInternalError(Exception):
  888. """Origin Facts Error"""
  889. pass
  890. class OpenShiftFactsUnsupportedRoleError(Exception):
  891. """Origin Facts Unsupported Role Error"""
  892. pass
  893. class OpenShiftFactsFileWriteError(Exception):
  894. """Origin Facts File Write Error"""
  895. pass
  896. class OpenShiftFactsMetadataUnavailableError(Exception):
  897. """Origin Facts Metadata Unavailable Error"""
  898. pass
  899. class OpenShiftFacts(object):
  900. """ Origin Facts
  901. Attributes:
  902. facts (dict): facts for the host
  903. Args:
  904. module (AnsibleModule): an AnsibleModule object
  905. role (str): role for setting local facts
  906. filename (str): local facts file to use
  907. local_facts (dict): local facts to set
  908. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  909. '.' notation ex: ['master.named_certificates']
  910. Raises:
  911. OpenShiftFactsUnsupportedRoleError:
  912. """
  913. known_roles = ['builddefaults',
  914. 'buildoverrides',
  915. 'cloudprovider',
  916. 'common',
  917. 'etcd',
  918. 'master',
  919. 'node']
  920. # Disabling too-many-arguments, this should be cleaned up as a TODO item.
  921. # pylint: disable=too-many-arguments,no-value-for-parameter
  922. def __init__(self, role, filename, local_facts,
  923. additive_facts_to_overwrite=None):
  924. self.changed = False
  925. self.filename = filename
  926. if role not in self.known_roles:
  927. raise OpenShiftFactsUnsupportedRoleError(
  928. "Role %s is not supported by this module" % role
  929. )
  930. self.role = role
  931. # Collect system facts and preface each fact with 'ansible_'.
  932. try:
  933. # pylint: disable=too-many-function-args,invalid-name
  934. self.system_facts = ansible_facts(module, ['hardware', 'network', 'virtual', 'facter']) # noqa: F405
  935. additional_facts = {}
  936. for (k, v) in self.system_facts.items():
  937. additional_facts["ansible_%s" % k.replace('-', '_')] = v
  938. self.system_facts.update(additional_facts)
  939. except UnboundLocalError:
  940. # ansible-2.2,2.3
  941. self.system_facts = get_all_facts(module)['ansible_facts'] # noqa: F405
  942. self.facts = self.generate_facts(local_facts,
  943. additive_facts_to_overwrite)
  944. def generate_facts(self,
  945. local_facts,
  946. additive_facts_to_overwrite):
  947. """ Generate facts
  948. Args:
  949. local_facts (dict): local_facts for overriding generated defaults
  950. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  951. '.' notation ex: ['master.named_certificates']
  952. Returns:
  953. dict: The generated facts
  954. """
  955. local_facts = self.init_local_facts(local_facts,
  956. additive_facts_to_overwrite)
  957. roles = local_facts.keys()
  958. defaults = self.get_defaults(roles)
  959. provider_facts = self.init_provider_facts()
  960. facts = apply_provider_facts(defaults, provider_facts)
  961. facts = merge_facts(facts,
  962. local_facts,
  963. additive_facts_to_overwrite)
  964. facts['current_config'] = get_current_config(facts)
  965. facts = set_url_facts_if_unset(facts)
  966. facts = set_sdn_facts_if_unset(facts, self.system_facts)
  967. facts = set_container_facts_if_unset(facts)
  968. facts = build_controller_args(facts)
  969. facts = build_api_server_args(facts)
  970. facts = set_aggregate_facts(facts)
  971. facts = set_proxy_facts(facts)
  972. facts = set_builddefaults_facts(facts)
  973. facts = set_buildoverrides_facts(facts)
  974. facts = set_nodename(facts)
  975. return dict(openshift=facts)
  976. def get_defaults(self, roles):
  977. """ Get default fact values
  978. Args:
  979. roles (list): list of roles for this host
  980. Returns:
  981. dict: The generated default facts
  982. """
  983. defaults = {}
  984. ip_addr = self.system_facts['ansible_default_ipv4']['address']
  985. exit_code, output, _ = module.run_command(['hostname', '-f']) # noqa: F405
  986. hostname_f = output.strip() if exit_code == 0 else ''
  987. hostname_values = [hostname_f, self.system_facts['ansible_nodename'],
  988. self.system_facts['ansible_fqdn']]
  989. hostname = choose_hostname(hostname_values, ip_addr).lower()
  990. exit_code, output, _ = module.run_command(['hostname']) # noqa: F405
  991. raw_hostname = output.strip() if exit_code == 0 else hostname
  992. defaults['common'] = dict(ip=ip_addr,
  993. public_ip=ip_addr,
  994. raw_hostname=raw_hostname,
  995. hostname=hostname,
  996. public_hostname=hostname,
  997. portal_net='172.30.0.0/16',
  998. dns_domain='cluster.local',
  999. config_base='/etc/origin')
  1000. if 'master' in roles:
  1001. defaults['master'] = dict(api_use_ssl=True, api_port='8443',
  1002. controllers_port='8444',
  1003. console_use_ssl=True,
  1004. console_path='/console',
  1005. console_port='8443',
  1006. portal_net='172.30.0.0/16',
  1007. embedded_kube=True,
  1008. embedded_dns=True,
  1009. bind_addr='0.0.0.0',
  1010. session_max_seconds=3600,
  1011. session_name='ssn',
  1012. session_secrets_file='',
  1013. access_token_max_seconds=86400,
  1014. auth_token_max_seconds=500,
  1015. oauth_grant_method='auto',
  1016. dynamic_provisioning_enabled=True,
  1017. max_requests_inflight=500)
  1018. if 'cloudprovider' in roles:
  1019. defaults['cloudprovider'] = dict(kind=None)
  1020. return defaults
  1021. def guess_host_provider(self):
  1022. """ Guess the host provider
  1023. Returns:
  1024. dict: The generated default facts for the detected provider
  1025. """
  1026. # TODO: cloud provider facts should probably be submitted upstream
  1027. product_name = self.system_facts['ansible_product_name']
  1028. product_version = self.system_facts['ansible_product_version']
  1029. virt_type = self.system_facts['ansible_virtualization_type']
  1030. virt_role = self.system_facts['ansible_virtualization_role']
  1031. bios_vendor = self.system_facts['ansible_system_vendor']
  1032. provider = None
  1033. metadata = None
  1034. if bios_vendor == 'Google':
  1035. provider = 'gce'
  1036. metadata_url = ('http://metadata.google.internal/'
  1037. 'computeMetadata/v1/?recursive=true')
  1038. headers = {'Metadata-Flavor': 'Google'}
  1039. metadata = get_provider_metadata(metadata_url, True, headers,
  1040. True)
  1041. # Filter sshKeys and serviceAccounts from gce metadata
  1042. if metadata:
  1043. metadata['project']['attributes'].pop('sshKeys', None)
  1044. metadata['instance'].pop('serviceAccounts', None)
  1045. elif bios_vendor == 'Amazon EC2':
  1046. # Adds support for Amazon EC2 C5 instance types
  1047. provider = 'aws'
  1048. metadata_url = 'http://169.254.169.254/latest/meta-data/'
  1049. metadata = get_provider_metadata(metadata_url)
  1050. elif virt_type == 'xen' and virt_role == 'guest' and re.match(r'.*\.amazon$', product_version):
  1051. provider = 'aws'
  1052. metadata_url = 'http://169.254.169.254/latest/meta-data/'
  1053. metadata = get_provider_metadata(metadata_url)
  1054. elif re.search(r'OpenStack', product_name):
  1055. provider = 'openstack'
  1056. metadata_url = ('http://169.254.169.254/openstack/latest/'
  1057. 'meta_data.json')
  1058. metadata = get_provider_metadata(metadata_url, True, None,
  1059. True)
  1060. if metadata:
  1061. ec2_compat_url = 'http://169.254.169.254/latest/meta-data/'
  1062. metadata['ec2_compat'] = get_provider_metadata(
  1063. ec2_compat_url
  1064. )
  1065. # disable pylint maybe-no-member because overloaded use of
  1066. # the module name causes pylint to not detect that results
  1067. # is an array or hash
  1068. # pylint: disable=maybe-no-member
  1069. # Filter public_keys and random_seed from openstack metadata
  1070. metadata.pop('public_keys', None)
  1071. metadata.pop('random_seed', None)
  1072. if not metadata['ec2_compat']:
  1073. metadata = None
  1074. return dict(name=provider, metadata=metadata)
  1075. def init_provider_facts(self):
  1076. """ Initialize the provider facts
  1077. Returns:
  1078. dict: The normalized provider facts
  1079. """
  1080. provider_info = self.guess_host_provider()
  1081. provider_facts = normalize_provider_facts(
  1082. provider_info.get('name'),
  1083. provider_info.get('metadata')
  1084. )
  1085. return provider_facts
  1086. # Disabling too-many-branches and too-many-locals.
  1087. # This should be cleaned up as a TODO item.
  1088. # pylint: disable=too-many-branches, too-many-locals
  1089. def init_local_facts(self, facts=None,
  1090. additive_facts_to_overwrite=None):
  1091. """ Initialize the local facts
  1092. Args:
  1093. facts (dict): local facts to set
  1094. additive_facts_to_overwrite (list): additive facts to overwrite in jinja
  1095. '.' notation ex: ['master.named_certificates']
  1096. Returns:
  1097. dict: The result of merging the provided facts with existing
  1098. local facts
  1099. """
  1100. changed = False
  1101. facts_to_set = dict()
  1102. if facts is not None:
  1103. facts_to_set[self.role] = facts
  1104. local_facts = get_local_facts_from_file(self.filename)
  1105. migrated_facts = migrate_local_facts(local_facts)
  1106. new_local_facts = merge_facts(migrated_facts,
  1107. facts_to_set,
  1108. additive_facts_to_overwrite)
  1109. new_local_facts = self.remove_empty_facts(new_local_facts)
  1110. pop_obsolete_local_facts(new_local_facts)
  1111. if new_local_facts != local_facts:
  1112. self.validate_local_facts(new_local_facts)
  1113. changed = True
  1114. if not module.check_mode: # noqa: F405
  1115. save_local_facts(self.filename, new_local_facts)
  1116. self.changed = changed
  1117. return new_local_facts
  1118. def remove_empty_facts(self, facts=None):
  1119. """ Remove empty facts
  1120. Args:
  1121. facts (dict): facts to clean
  1122. """
  1123. facts_to_remove = []
  1124. for fact, value in iteritems(facts):
  1125. if isinstance(facts[fact], dict):
  1126. facts[fact] = self.remove_empty_facts(facts[fact])
  1127. else:
  1128. if value == "" or value == [""] or value is None:
  1129. facts_to_remove.append(fact)
  1130. for fact in facts_to_remove:
  1131. del facts[fact]
  1132. return facts
  1133. def validate_local_facts(self, facts=None):
  1134. """ Validate local facts
  1135. Args:
  1136. facts (dict): local facts to validate
  1137. """
  1138. invalid_facts = dict()
  1139. invalid_facts = self.validate_master_facts(facts, invalid_facts)
  1140. if invalid_facts:
  1141. msg = 'Invalid facts detected:\n'
  1142. # pylint: disable=consider-iterating-dictionary
  1143. for key in invalid_facts.keys():
  1144. msg += '{0}: {1}\n'.format(key, invalid_facts[key])
  1145. module.fail_json(msg=msg, changed=self.changed) # noqa: F405
  1146. # disabling pylint errors for line-too-long since we're dealing
  1147. # with best effort reduction of error messages here.
  1148. # disabling errors for too-many-branches since we require checking
  1149. # many conditions.
  1150. # pylint: disable=line-too-long, too-many-branches
  1151. @staticmethod
  1152. def validate_master_facts(facts, invalid_facts):
  1153. """ Validate master facts
  1154. Args:
  1155. facts (dict): local facts to validate
  1156. invalid_facts (dict): collected invalid_facts
  1157. Returns:
  1158. dict: Invalid facts
  1159. """
  1160. if 'master' in facts:
  1161. # openshift.master.session_auth_secrets
  1162. if 'session_auth_secrets' in facts['master']:
  1163. session_auth_secrets = facts['master']['session_auth_secrets']
  1164. if not issubclass(type(session_auth_secrets), list):
  1165. invalid_facts['session_auth_secrets'] = 'Expects session_auth_secrets is a list.'
  1166. elif 'session_encryption_secrets' not in facts['master']:
  1167. invalid_facts['session_auth_secrets'] = ('openshift_master_session_encryption secrets must be set '
  1168. 'if openshift_master_session_auth_secrets is provided.')
  1169. elif len(session_auth_secrets) != len(facts['master']['session_encryption_secrets']):
  1170. invalid_facts['session_auth_secrets'] = ('openshift_master_session_auth_secrets and '
  1171. 'openshift_master_session_encryption_secrets must be '
  1172. 'equal length.')
  1173. else:
  1174. for secret in session_auth_secrets:
  1175. if len(secret) < 32:
  1176. invalid_facts['session_auth_secrets'] = ('Invalid secret in session_auth_secrets. '
  1177. 'Secrets must be at least 32 characters in length.')
  1178. # openshift.master.session_encryption_secrets
  1179. if 'session_encryption_secrets' in facts['master']:
  1180. session_encryption_secrets = facts['master']['session_encryption_secrets']
  1181. if not issubclass(type(session_encryption_secrets), list):
  1182. invalid_facts['session_encryption_secrets'] = 'Expects session_encryption_secrets is a list.'
  1183. elif 'session_auth_secrets' not in facts['master']:
  1184. invalid_facts['session_encryption_secrets'] = ('openshift_master_session_auth_secrets must be '
  1185. 'set if openshift_master_session_encryption_secrets '
  1186. 'is provided.')
  1187. else:
  1188. for secret in session_encryption_secrets:
  1189. if len(secret) not in [16, 24, 32]:
  1190. invalid_facts['session_encryption_secrets'] = ('Invalid secret in session_encryption_secrets. '
  1191. 'Secrets must be 16, 24, or 32 characters in length.')
  1192. return invalid_facts
  1193. def main():
  1194. """ main """
  1195. # disabling pylint errors for global-variable-undefined and invalid-name
  1196. # for 'global module' usage, since it is required to use ansible_facts
  1197. # pylint: disable=global-variable-undefined, invalid-name
  1198. global module
  1199. module = AnsibleModule( # noqa: F405
  1200. argument_spec=dict(
  1201. role=dict(default='common', required=False,
  1202. choices=OpenShiftFacts.known_roles),
  1203. local_facts=dict(default=None, type='dict', required=False),
  1204. additive_facts_to_overwrite=dict(default=[], type='list', required=False),
  1205. ),
  1206. supports_check_mode=True,
  1207. add_file_common_args=True,
  1208. )
  1209. if not HAVE_DBUS:
  1210. module.fail_json(msg="This module requires dbus python bindings") # noqa: F405
  1211. module.params['gather_subset'] = ['hardware', 'network', 'virtual', 'facter'] # noqa: F405
  1212. module.params['gather_timeout'] = 10 # noqa: F405
  1213. module.params['filter'] = '*' # noqa: F405
  1214. role = module.params['role'] # noqa: F405
  1215. local_facts = module.params['local_facts'] # noqa: F405
  1216. additive_facts_to_overwrite = module.params['additive_facts_to_overwrite'] # noqa: F405
  1217. fact_file = '/etc/ansible/facts.d/openshift.fact'
  1218. openshift_facts = OpenShiftFacts(role,
  1219. fact_file,
  1220. local_facts,
  1221. additive_facts_to_overwrite)
  1222. file_params = module.params.copy() # noqa: F405
  1223. file_params['path'] = fact_file
  1224. file_args = module.load_file_common_arguments(file_params) # noqa: F405
  1225. changed = module.set_fs_attributes_if_different(file_args, # noqa: F405
  1226. openshift_facts.changed)
  1227. return module.exit_json(changed=changed, # noqa: F405
  1228. ansible_facts=openshift_facts.facts)
  1229. if __name__ == '__main__':
  1230. main()