openshift_facts.py 58 KB

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