oo_filters.py 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. # vim: expandtab:tabstop=4:shiftwidth=4
  4. """
  5. Custom filters for use in openshift-ansible
  6. """
  7. import json
  8. import os
  9. import pdb
  10. import random
  11. import re
  12. from collections import Mapping
  13. # pylint no-name-in-module and import-error disabled here because pylint
  14. # fails to properly detect the packages when installed in a virtualenv
  15. from distutils.util import strtobool # pylint:disable=no-name-in-module,import-error
  16. from distutils.version import LooseVersion # pylint:disable=no-name-in-module,import-error
  17. from operator import itemgetter
  18. import pkg_resources
  19. import yaml
  20. from ansible import errors
  21. # pylint no-name-in-module and import-error disabled here because pylint
  22. # fails to properly detect the packages when installed in a virtualenv
  23. from ansible.compat.six import string_types # pylint:disable=no-name-in-module,import-error
  24. from ansible.compat.six.moves.urllib.parse import urlparse # pylint:disable=no-name-in-module,import-error
  25. from ansible.module_utils._text import to_text
  26. from ansible.parsing.yaml.dumper import AnsibleDumper
  27. HAS_OPENSSL = False
  28. try:
  29. import OpenSSL.crypto
  30. HAS_OPENSSL = True
  31. except ImportError:
  32. pass
  33. def oo_pdb(arg):
  34. """ This pops you into a pdb instance where arg is the data passed in
  35. from the filter.
  36. Ex: "{{ hostvars | oo_pdb }}"
  37. """
  38. pdb.set_trace()
  39. return arg
  40. def get_attr(data, attribute=None):
  41. """ This looks up dictionary attributes of the form a.b.c and returns
  42. the value.
  43. If the key isn't present, None is returned.
  44. Ex: data = {'a': {'b': {'c': 5}}}
  45. attribute = "a.b.c"
  46. returns 5
  47. """
  48. if not attribute:
  49. raise errors.AnsibleFilterError("|failed expects attribute to be set")
  50. ptr = data
  51. for attr in attribute.split('.'):
  52. if attr in ptr:
  53. ptr = ptr[attr]
  54. else:
  55. ptr = None
  56. break
  57. return ptr
  58. def oo_flatten(data):
  59. """ This filter plugin will flatten a list of lists
  60. """
  61. if not isinstance(data, list):
  62. raise errors.AnsibleFilterError("|failed expects to flatten a List")
  63. return [item for sublist in data for item in sublist]
  64. def oo_merge_dicts(first_dict, second_dict):
  65. """ Merge two dictionaries where second_dict values take precedence.
  66. Ex: first_dict={'a': 1, 'b': 2}
  67. second_dict={'b': 3, 'c': 4}
  68. returns {'a': 1, 'b': 3, 'c': 4}
  69. """
  70. if not isinstance(first_dict, dict) or not isinstance(second_dict, dict):
  71. raise errors.AnsibleFilterError("|failed expects to merge two dicts")
  72. merged = first_dict.copy()
  73. merged.update(second_dict)
  74. return merged
  75. def oo_merge_hostvars(hostvars, variables, inventory_hostname):
  76. """ Merge host and play variables.
  77. When ansible version is greater than or equal to 2.0.0,
  78. merge hostvars[inventory_hostname] with variables (ansible vars)
  79. otherwise merge hostvars with hostvars['inventory_hostname'].
  80. Ex: hostvars={'master1.example.com': {'openshift_variable': '3'},
  81. 'openshift_other_variable': '7'}
  82. variables={'openshift_other_variable': '6'}
  83. inventory_hostname='master1.example.com'
  84. returns {'openshift_variable': '3', 'openshift_other_variable': '7'}
  85. hostvars=<ansible.vars.hostvars.HostVars object> (Mapping)
  86. variables={'openshift_other_variable': '6'}
  87. inventory_hostname='master1.example.com'
  88. returns {'openshift_variable': '3', 'openshift_other_variable': '6'}
  89. """
  90. if not isinstance(hostvars, Mapping):
  91. raise errors.AnsibleFilterError("|failed expects hostvars is dictionary or object")
  92. if not isinstance(variables, dict):
  93. raise errors.AnsibleFilterError("|failed expects variables is a dictionary")
  94. if not isinstance(inventory_hostname, string_types):
  95. raise errors.AnsibleFilterError("|failed expects inventory_hostname is a string")
  96. ansible_version = pkg_resources.get_distribution("ansible").version # pylint: disable=maybe-no-member
  97. merged_hostvars = {}
  98. if LooseVersion(ansible_version) >= LooseVersion('2.0.0'):
  99. merged_hostvars = oo_merge_dicts(
  100. hostvars[inventory_hostname], variables)
  101. else:
  102. merged_hostvars = oo_merge_dicts(
  103. hostvars[inventory_hostname], hostvars)
  104. return merged_hostvars
  105. def oo_collect(data, attribute=None, filters=None):
  106. """ This takes a list of dict and collects all attributes specified into a
  107. list. If filter is specified then we will include all items that
  108. match _ALL_ of filters. If a dict entry is missing the key in a
  109. filter it will be excluded from the match.
  110. Ex: data = [ {'a':1, 'b':5, 'z': 'z'}, # True, return
  111. {'a':2, 'z': 'z'}, # True, return
  112. {'a':3, 'z': 'z'}, # True, return
  113. {'a':4, 'z': 'b'}, # FAILED, obj['z'] != obj['z']
  114. ]
  115. attribute = 'a'
  116. filters = {'z': 'z'}
  117. returns [1, 2, 3]
  118. """
  119. if not isinstance(data, list):
  120. raise errors.AnsibleFilterError("|failed expects to filter on a List")
  121. if not attribute:
  122. raise errors.AnsibleFilterError("|failed expects attribute to be set")
  123. if filters is not None:
  124. if not isinstance(filters, dict):
  125. raise errors.AnsibleFilterError("|failed expects filter to be a"
  126. " dict")
  127. retval = [get_attr(d, attribute) for d in data if (
  128. all([d.get(key, None) == filters[key] for key in filters]))]
  129. else:
  130. retval = [get_attr(d, attribute) for d in data]
  131. retval = [val for val in retval if val is not None]
  132. return retval
  133. def oo_select_keys_from_list(data, keys):
  134. """ This returns a list, which contains the value portions for the keys
  135. Ex: data = { 'a':1, 'b':2, 'c':3 }
  136. keys = ['a', 'c']
  137. returns [1, 3]
  138. """
  139. if not isinstance(data, list):
  140. raise errors.AnsibleFilterError("|failed expects to filter on a list")
  141. if not isinstance(keys, list):
  142. raise errors.AnsibleFilterError("|failed expects first param is a list")
  143. # Gather up the values for the list of keys passed in
  144. retval = [oo_select_keys(item, keys) for item in data]
  145. return oo_flatten(retval)
  146. def oo_select_keys(data, keys):
  147. """ This returns a list, which contains the value portions for the keys
  148. Ex: data = { 'a':1, 'b':2, 'c':3 }
  149. keys = ['a', 'c']
  150. returns [1, 3]
  151. """
  152. if not isinstance(data, Mapping):
  153. raise errors.AnsibleFilterError("|failed expects to filter on a dict or object")
  154. if not isinstance(keys, list):
  155. raise errors.AnsibleFilterError("|failed expects first param is a list")
  156. # Gather up the values for the list of keys passed in
  157. retval = [data[key] for key in keys if key in data]
  158. return retval
  159. def oo_prepend_strings_in_list(data, prepend):
  160. """ This takes a list of strings and prepends a string to each item in the
  161. list
  162. Ex: data = ['cart', 'tree']
  163. prepend = 'apple-'
  164. returns ['apple-cart', 'apple-tree']
  165. """
  166. if not isinstance(data, list):
  167. raise errors.AnsibleFilterError("|failed expects first param is a list")
  168. if not all(isinstance(x, string_types) for x in data):
  169. raise errors.AnsibleFilterError("|failed expects first param is a list"
  170. " of strings")
  171. retval = [prepend + s for s in data]
  172. return retval
  173. def oo_combine_key_value(data, joiner='='):
  174. """Take a list of dict in the form of { 'key': 'value'} and
  175. arrange them as a list of strings ['key=value']
  176. """
  177. if not isinstance(data, list):
  178. raise errors.AnsibleFilterError("|failed expects first param is a list")
  179. rval = []
  180. for item in data:
  181. rval.append("%s%s%s" % (item['key'], joiner, item['value']))
  182. return rval
  183. def oo_combine_dict(data, in_joiner='=', out_joiner=' '):
  184. """Take a dict in the form of { 'key': 'value', 'key': 'value' } and
  185. arrange them as a string 'key=value key=value'
  186. """
  187. if not isinstance(data, dict):
  188. # pylint: disable=line-too-long
  189. raise errors.AnsibleFilterError("|failed expects first param is a dict [oo_combine_dict]. Got %s. Type: %s" % (str(data), str(type(data))))
  190. return out_joiner.join([in_joiner.join([k, str(v)]) for k, v in data.items()])
  191. def oo_dict_to_list_of_dict(data, key_title='key', value_title='value'):
  192. """Take a dict and arrange them as a list of dicts
  193. Input data:
  194. {'region': 'infra', 'test_k': 'test_v'}
  195. Return data:
  196. [{'key': 'region', 'value': 'infra'}, {'key': 'test_k', 'value': 'test_v'}]
  197. Written for use of the oc_label module
  198. """
  199. if not isinstance(data, dict):
  200. # pylint: disable=line-too-long
  201. raise errors.AnsibleFilterError("|failed expects first param is a dict. Got %s. Type: %s" % (str(data), str(type(data))))
  202. rval = []
  203. for label in data.items():
  204. rval.append({key_title: label[0], value_title: label[1]})
  205. return rval
  206. def oo_ami_selector(data, image_name):
  207. """ This takes a list of amis and an image name and attempts to return
  208. the latest ami.
  209. """
  210. if not isinstance(data, list):
  211. raise errors.AnsibleFilterError("|failed expects first param is a list")
  212. if not data:
  213. return None
  214. else:
  215. if image_name is None or not image_name.endswith('_*'):
  216. ami = sorted(data, key=itemgetter('name'), reverse=True)[0]
  217. return ami['ami_id']
  218. else:
  219. ami_info = [(ami, ami['name'].split('_')[-1]) for ami in data]
  220. ami = sorted(ami_info, key=itemgetter(1), reverse=True)[0][0]
  221. return ami['ami_id']
  222. def oo_ec2_volume_definition(data, host_type, docker_ephemeral=False):
  223. """ This takes a dictionary of volume definitions and returns a valid ec2
  224. volume definition based on the host_type and the values in the
  225. dictionary.
  226. The dictionary should look similar to this:
  227. { 'master':
  228. { 'root':
  229. { 'volume_size': 10, 'device_type': 'gp2',
  230. 'iops': 500
  231. },
  232. 'docker':
  233. { 'volume_size': 40, 'device_type': 'gp2',
  234. 'iops': 500, 'ephemeral': 'true'
  235. }
  236. },
  237. 'node':
  238. { 'root':
  239. { 'volume_size': 10, 'device_type': 'io1',
  240. 'iops': 1000
  241. },
  242. 'docker':
  243. { 'volume_size': 40, 'device_type': 'gp2',
  244. 'iops': 500, 'ephemeral': 'true'
  245. }
  246. }
  247. }
  248. """
  249. if not isinstance(data, dict):
  250. # pylint: disable=line-too-long
  251. raise errors.AnsibleFilterError("|failed expects first param is a dict [oo_ec2_volume_def]. Got %s. Type: %s" % (str(data), str(type(data))))
  252. if host_type not in ['master', 'node', 'etcd']:
  253. raise errors.AnsibleFilterError("|failed expects etcd, master or node"
  254. " as the host type")
  255. root_vol = data[host_type]['root']
  256. root_vol['device_name'] = '/dev/sda1'
  257. root_vol['delete_on_termination'] = True
  258. if root_vol['device_type'] != 'io1':
  259. root_vol.pop('iops', None)
  260. if host_type in ['master', 'node'] and 'docker' in data[host_type]:
  261. docker_vol = data[host_type]['docker']
  262. docker_vol['device_name'] = '/dev/xvdb'
  263. docker_vol['delete_on_termination'] = True
  264. if docker_vol['device_type'] != 'io1':
  265. docker_vol.pop('iops', None)
  266. if docker_ephemeral:
  267. docker_vol.pop('device_type', None)
  268. docker_vol.pop('delete_on_termination', None)
  269. docker_vol['ephemeral'] = 'ephemeral0'
  270. return [root_vol, docker_vol]
  271. elif host_type == 'etcd' and 'etcd' in data[host_type]:
  272. etcd_vol = data[host_type]['etcd']
  273. etcd_vol['device_name'] = '/dev/xvdb'
  274. etcd_vol['delete_on_termination'] = True
  275. if etcd_vol['device_type'] != 'io1':
  276. etcd_vol.pop('iops', None)
  277. return [root_vol, etcd_vol]
  278. return [root_vol]
  279. def oo_split(string, separator=','):
  280. """ This splits the input string into a list. If the input string is
  281. already a list we will return it as is.
  282. """
  283. if isinstance(string, list):
  284. return string
  285. return string.split(separator)
  286. def oo_haproxy_backend_masters(hosts, port):
  287. """ This takes an array of dicts and returns an array of dicts
  288. to be used as a backend for the haproxy role
  289. """
  290. servers = []
  291. for idx, host_info in enumerate(hosts):
  292. server = dict(name="master%s" % idx)
  293. server_ip = host_info['openshift']['common']['ip']
  294. server['address'] = "%s:%s" % (server_ip, port)
  295. server['opts'] = 'check'
  296. servers.append(server)
  297. return servers
  298. def oo_filter_list(data, filter_attr=None):
  299. """ This returns a list, which contains all items where filter_attr
  300. evaluates to true
  301. Ex: data = [ { a: 1, b: True },
  302. { a: 3, b: False },
  303. { a: 5, b: True } ]
  304. filter_attr = 'b'
  305. returns [ { a: 1, b: True },
  306. { a: 5, b: True } ]
  307. """
  308. if not isinstance(data, list):
  309. raise errors.AnsibleFilterError("|failed expects to filter on a list")
  310. if not isinstance(filter_attr, string_types):
  311. raise errors.AnsibleFilterError("|failed expects filter_attr is a str or unicode")
  312. # Gather up the values for the list of keys passed in
  313. return [x for x in data if filter_attr in x and x[filter_attr]]
  314. def oo_nodes_with_label(nodes, label, value=None):
  315. """ Filters a list of nodes by label and value (if provided)
  316. It handles labels that are in the following variables by priority:
  317. openshift_node_labels, cli_openshift_node_labels, openshift['node']['labels']
  318. Examples:
  319. data = ['a': {'openshift_node_labels': {'color': 'blue', 'size': 'M'}},
  320. 'b': {'openshift_node_labels': {'color': 'green', 'size': 'L'}},
  321. 'c': {'openshift_node_labels': {'size': 'S'}}]
  322. label = 'color'
  323. returns = ['a': {'openshift_node_labels': {'color': 'blue', 'size': 'M'}},
  324. 'b': {'openshift_node_labels': {'color': 'green', 'size': 'L'}}]
  325. data = ['a': {'openshift_node_labels': {'color': 'blue', 'size': 'M'}},
  326. 'b': {'openshift_node_labels': {'color': 'green', 'size': 'L'}},
  327. 'c': {'openshift_node_labels': {'size': 'S'}}]
  328. label = 'color'
  329. value = 'green'
  330. returns = ['b': {'labels': {'color': 'green', 'size': 'L'}}]
  331. Args:
  332. nodes (list[dict]): list of node to node variables
  333. label (str): label to filter `nodes` by
  334. value (Optional[str]): value of `label` to filter by Defaults
  335. to None.
  336. Returns:
  337. list[dict]: nodes filtered by label and value (if provided)
  338. """
  339. if not isinstance(nodes, list):
  340. raise errors.AnsibleFilterError("failed expects to filter on a list")
  341. if not isinstance(label, string_types):
  342. raise errors.AnsibleFilterError("failed expects label to be a string")
  343. if value is not None and not isinstance(value, string_types):
  344. raise errors.AnsibleFilterError("failed expects value to be a string")
  345. def label_filter(node):
  346. """ filter function for testing if node should be returned """
  347. if not isinstance(node, dict):
  348. raise errors.AnsibleFilterError("failed expects to filter on a list of dicts")
  349. if 'openshift_node_labels' in node:
  350. labels = node['openshift_node_labels']
  351. elif 'cli_openshift_node_labels' in node:
  352. labels = node['cli_openshift_node_labels']
  353. elif 'openshift' in node and 'node' in node['openshift'] and 'labels' in node['openshift']['node']:
  354. labels = node['openshift']['node']['labels']
  355. else:
  356. return False
  357. if isinstance(labels, string_types):
  358. labels = yaml.safe_load(labels)
  359. if not isinstance(labels, dict):
  360. raise errors.AnsibleFilterError(
  361. "failed expected node labels to be a dict or serializable to a dict"
  362. )
  363. return label in labels and (value is None or labels[label] == value)
  364. return [n for n in nodes if label_filter(n)]
  365. def oo_parse_heat_stack_outputs(data):
  366. """ Formats the HEAT stack output into a usable form
  367. The goal is to transform something like this:
  368. +---------------+-------------------------------------------------+
  369. | Property | Value |
  370. +---------------+-------------------------------------------------+
  371. | capabilities | [] | |
  372. | creation_time | 2015-06-26T12:26:26Z | |
  373. | description | OpenShift cluster | |
  374. | … | … |
  375. | outputs | [ |
  376. | | { |
  377. | | "output_value": "value_A" |
  378. | | "description": "This is the value of Key_A" |
  379. | | "output_key": "Key_A" |
  380. | | }, |
  381. | | { |
  382. | | "output_value": [ |
  383. | | "value_B1", |
  384. | | "value_B2" |
  385. | | ], |
  386. | | "description": "This is the value of Key_B" |
  387. | | "output_key": "Key_B" |
  388. | | }, |
  389. | | ] |
  390. | parameters | { |
  391. | … | … |
  392. +---------------+-------------------------------------------------+
  393. into something like this:
  394. {
  395. "Key_A": "value_A",
  396. "Key_B": [
  397. "value_B1",
  398. "value_B2"
  399. ]
  400. }
  401. """
  402. # Extract the “outputs” JSON snippet from the pretty-printed array
  403. in_outputs = False
  404. outputs = ''
  405. line_regex = re.compile(r'\|\s*(.*?)\s*\|\s*(.*?)\s*\|')
  406. for line in data['stdout_lines']:
  407. match = line_regex.match(line)
  408. if match:
  409. if match.group(1) == 'outputs':
  410. in_outputs = True
  411. elif match.group(1) != '':
  412. in_outputs = False
  413. if in_outputs:
  414. outputs += match.group(2)
  415. outputs = json.loads(outputs)
  416. # Revamp the “outputs” to put it in the form of a “Key: value” map
  417. revamped_outputs = {}
  418. for output in outputs:
  419. revamped_outputs[output['output_key']] = output['output_value']
  420. return revamped_outputs
  421. # pylint: disable=too-many-branches
  422. def oo_parse_named_certificates(certificates, named_certs_dir, internal_hostnames):
  423. """ Parses names from list of certificate hashes.
  424. Ex: certificates = [{ "certfile": "/root/custom1.crt",
  425. "keyfile": "/root/custom1.key",
  426. "cafile": "/root/custom-ca1.crt" },
  427. { "certfile": "custom2.crt",
  428. "keyfile": "custom2.key",
  429. "cafile": "custom-ca2.crt" }]
  430. returns [{ "certfile": "/etc/origin/master/named_certificates/custom1.crt",
  431. "keyfile": "/etc/origin/master/named_certificates/custom1.key",
  432. "cafile": "/etc/origin/master/named_certificates/custom-ca1.crt",
  433. "names": [ "public-master-host.com",
  434. "other-master-host.com" ] },
  435. { "certfile": "/etc/origin/master/named_certificates/custom2.crt",
  436. "keyfile": "/etc/origin/master/named_certificates/custom2.key",
  437. "cafile": "/etc/origin/master/named_certificates/custom-ca-2.crt",
  438. "names": [ "some-hostname.com" ] }]
  439. """
  440. if not isinstance(named_certs_dir, string_types):
  441. raise errors.AnsibleFilterError("|failed expects named_certs_dir is str or unicode")
  442. if not isinstance(internal_hostnames, list):
  443. raise errors.AnsibleFilterError("|failed expects internal_hostnames is list")
  444. if not HAS_OPENSSL:
  445. raise errors.AnsibleFilterError("|missing OpenSSL python bindings")
  446. for certificate in certificates:
  447. if 'names' in certificate.keys():
  448. continue
  449. else:
  450. certificate['names'] = []
  451. if not os.path.isfile(certificate['certfile']) or not os.path.isfile(certificate['keyfile']):
  452. raise errors.AnsibleFilterError("|certificate and/or key does not exist '%s', '%s'" %
  453. (certificate['certfile'], certificate['keyfile']))
  454. try:
  455. st_cert = open(certificate['certfile'], 'rt').read()
  456. cert = OpenSSL.crypto.load_certificate(OpenSSL.crypto.FILETYPE_PEM, st_cert)
  457. certificate['names'].append(str(cert.get_subject().commonName.decode()))
  458. for i in range(cert.get_extension_count()):
  459. if cert.get_extension(i).get_short_name() == 'subjectAltName':
  460. for name in str(cert.get_extension(i)).replace('DNS:', '').split(', '):
  461. certificate['names'].append(name)
  462. except Exception:
  463. raise errors.AnsibleFilterError(("|failed to parse certificate '%s', " % certificate['certfile'] +
  464. "please specify certificate names in host inventory"))
  465. certificate['names'] = list(set(certificate['names']))
  466. if 'cafile' not in certificate:
  467. certificate['names'] = [name for name in certificate['names'] if name not in internal_hostnames]
  468. if not certificate['names']:
  469. raise errors.AnsibleFilterError(("|failed to parse certificate '%s' or " % certificate['certfile'] +
  470. "detected a collision with internal hostname, please specify " +
  471. "certificate names in host inventory"))
  472. for certificate in certificates:
  473. # Update paths for configuration
  474. certificate['certfile'] = os.path.join(named_certs_dir, os.path.basename(certificate['certfile']))
  475. certificate['keyfile'] = os.path.join(named_certs_dir, os.path.basename(certificate['keyfile']))
  476. if 'cafile' in certificate:
  477. certificate['cafile'] = os.path.join(named_certs_dir, os.path.basename(certificate['cafile']))
  478. return certificates
  479. def oo_pretty_print_cluster(data, prefix='tag_'):
  480. """ Read a subset of hostvars and build a summary of the cluster
  481. in the following layout:
  482. "c_id": {
  483. "master": {
  484. "default": [
  485. { "name": "c_id-master-12345", "public IP": "172.16.0.1", "private IP": "192.168.0.1" }
  486. ]
  487. "node": {
  488. "infra": [
  489. { "name": "c_id-node-infra-23456", "public IP": "172.16.0.2", "private IP": "192.168.0.2" }
  490. ],
  491. "compute": [
  492. { "name": "c_id-node-compute-23456", "public IP": "172.16.0.3", "private IP": "192.168.0.3" },
  493. ...
  494. ]
  495. }
  496. """
  497. def _get_tag_value(tags, key):
  498. """ Extract values of a map implemented as a set.
  499. Ex: tags = { 'tag_foo_value1', 'tag_bar_value2', 'tag_baz_value3' }
  500. key = 'bar'
  501. returns 'value2'
  502. """
  503. for tag in tags:
  504. if tag[:len(prefix) + len(key)] == prefix + key:
  505. return tag[len(prefix) + len(key) + 1:]
  506. raise KeyError(key)
  507. def _add_host(clusters,
  508. clusterid,
  509. host_type,
  510. sub_host_type,
  511. host):
  512. """ Add a new host in the clusters data structure """
  513. if clusterid not in clusters:
  514. clusters[clusterid] = {}
  515. if host_type not in clusters[clusterid]:
  516. clusters[clusterid][host_type] = {}
  517. if sub_host_type not in clusters[clusterid][host_type]:
  518. clusters[clusterid][host_type][sub_host_type] = []
  519. clusters[clusterid][host_type][sub_host_type].append(host)
  520. clusters = {}
  521. for host in data:
  522. try:
  523. _add_host(clusters=clusters,
  524. clusterid=_get_tag_value(host['group_names'], 'clusterid'),
  525. host_type=_get_tag_value(host['group_names'], 'host-type'),
  526. sub_host_type=_get_tag_value(host['group_names'], 'sub-host-type'),
  527. host={'name': host['inventory_hostname'],
  528. 'public IP': host['oo_public_ipv4'],
  529. 'private IP': host['oo_private_ipv4']})
  530. except KeyError:
  531. pass
  532. return clusters
  533. def oo_generate_secret(num_bytes):
  534. """ generate a session secret """
  535. if not isinstance(num_bytes, int):
  536. raise errors.AnsibleFilterError("|failed expects num_bytes is int")
  537. secret = os.urandom(num_bytes)
  538. return secret.encode('base-64').strip()
  539. def to_padded_yaml(data, level=0, indent=2, **kw):
  540. """ returns a yaml snippet padded to match the indent level you specify """
  541. if data in [None, ""]:
  542. return ""
  543. try:
  544. transformed = yaml.dump(data, indent=indent, allow_unicode=True,
  545. default_flow_style=False,
  546. Dumper=AnsibleDumper, **kw)
  547. padded = "\n".join([" " * level * indent + line for line in transformed.splitlines()])
  548. return to_text("\n{0}".format(padded))
  549. except Exception as my_e:
  550. raise errors.AnsibleFilterError('Failed to convert: %s' % my_e)
  551. def oo_openshift_env(hostvars):
  552. ''' Return facts which begin with "openshift_" and translate
  553. legacy facts to their openshift_env counterparts.
  554. Ex: hostvars = {'openshift_fact': 42,
  555. 'theyre_taking_the_hobbits_to': 'isengard'}
  556. returns = {'openshift_fact': 42}
  557. '''
  558. if not issubclass(type(hostvars), dict):
  559. raise errors.AnsibleFilterError("|failed expects hostvars is a dict")
  560. facts = {}
  561. regex = re.compile('^openshift_.*')
  562. for key in hostvars:
  563. if regex.match(key):
  564. facts[key] = hostvars[key]
  565. migrations = {'openshift_router_selector': 'openshift_hosted_router_selector',
  566. 'openshift_registry_selector': 'openshift_hosted_registry_selector'}
  567. for old_fact, new_fact in migrations.items():
  568. if old_fact in facts and new_fact not in facts:
  569. facts[new_fact] = facts[old_fact]
  570. return facts
  571. # pylint: disable=too-many-branches, too-many-nested-blocks
  572. def oo_persistent_volumes(hostvars, groups, persistent_volumes=None):
  573. """ Generate list of persistent volumes based on oo_openshift_env
  574. storage options set in host variables.
  575. """
  576. if not issubclass(type(hostvars), dict):
  577. raise errors.AnsibleFilterError("|failed expects hostvars is a dict")
  578. if not issubclass(type(groups), dict):
  579. raise errors.AnsibleFilterError("|failed expects groups is a dict")
  580. if persistent_volumes is not None and not issubclass(type(persistent_volumes), list):
  581. raise errors.AnsibleFilterError("|failed expects persistent_volumes is a list")
  582. if persistent_volumes is None:
  583. persistent_volumes = []
  584. if 'hosted' in hostvars['openshift']:
  585. for component in hostvars['openshift']['hosted']:
  586. if 'storage' in hostvars['openshift']['hosted'][component]:
  587. params = hostvars['openshift']['hosted'][component]['storage']
  588. kind = params['kind']
  589. create_pv = params['create_pv']
  590. if kind is not None and create_pv:
  591. if kind == 'nfs':
  592. host = params['host']
  593. if host is None:
  594. if 'oo_nfs_to_config' in groups and len(groups['oo_nfs_to_config']) > 0:
  595. host = groups['oo_nfs_to_config'][0]
  596. else:
  597. raise errors.AnsibleFilterError("|failed no storage host detected")
  598. directory = params['nfs']['directory']
  599. volume = params['volume']['name']
  600. path = directory + '/' + volume
  601. size = params['volume']['size']
  602. access_modes = params['access']['modes']
  603. persistent_volume = dict(
  604. name="{0}-volume".format(volume),
  605. capacity=size,
  606. access_modes=access_modes,
  607. storage=dict(
  608. nfs=dict(
  609. server=host,
  610. path=path)))
  611. persistent_volumes.append(persistent_volume)
  612. elif kind == 'openstack':
  613. volume = params['volume']['name']
  614. size = params['volume']['size']
  615. access_modes = params['access']['modes']
  616. filesystem = params['openstack']['filesystem']
  617. volume_id = params['openstack']['volumeID']
  618. persistent_volume = dict(
  619. name="{0}-volume".format(volume),
  620. capacity=size,
  621. access_modes=access_modes,
  622. storage=dict(
  623. cinder=dict(
  624. fsType=filesystem,
  625. volumeID=volume_id)))
  626. persistent_volumes.append(persistent_volume)
  627. elif not (kind == 'object' or kind == 'dynamic'):
  628. msg = "|failed invalid storage kind '{0}' for component '{1}'".format(
  629. kind,
  630. component)
  631. raise errors.AnsibleFilterError(msg)
  632. return persistent_volumes
  633. def oo_persistent_volume_claims(hostvars, persistent_volume_claims=None):
  634. """ Generate list of persistent volume claims based on oo_openshift_env
  635. storage options set in host variables.
  636. """
  637. if not issubclass(type(hostvars), dict):
  638. raise errors.AnsibleFilterError("|failed expects hostvars is a dict")
  639. if persistent_volume_claims is not None and not issubclass(type(persistent_volume_claims), list):
  640. raise errors.AnsibleFilterError("|failed expects persistent_volume_claims is a list")
  641. if persistent_volume_claims is None:
  642. persistent_volume_claims = []
  643. if 'hosted' in hostvars['openshift']:
  644. for component in hostvars['openshift']['hosted']:
  645. if 'storage' in hostvars['openshift']['hosted'][component]:
  646. params = hostvars['openshift']['hosted'][component]['storage']
  647. kind = params['kind']
  648. create_pv = params['create_pv']
  649. create_pvc = params['create_pvc']
  650. if kind not in [None, 'object'] and create_pv and create_pvc:
  651. volume = params['volume']['name']
  652. size = params['volume']['size']
  653. access_modes = params['access']['modes']
  654. persistent_volume_claim = dict(
  655. name="{0}-claim".format(volume),
  656. capacity=size,
  657. access_modes=access_modes)
  658. persistent_volume_claims.append(persistent_volume_claim)
  659. return persistent_volume_claims
  660. def oo_31_rpm_rename_conversion(rpms, openshift_version=None):
  661. """ Filters a list of 3.0 rpms and return the corresponding 3.1 rpms
  662. names with proper version (if provided)
  663. If 3.1 rpms are passed in they will only be augmented with the
  664. correct version. This is important for hosts that are running both
  665. Masters and Nodes.
  666. """
  667. if not isinstance(rpms, list):
  668. raise errors.AnsibleFilterError("failed expects to filter on a list")
  669. if openshift_version is not None and not isinstance(openshift_version, string_types):
  670. raise errors.AnsibleFilterError("failed expects openshift_version to be a string")
  671. rpms_31 = []
  672. for rpm in rpms:
  673. if 'atomic' not in rpm:
  674. rpm = rpm.replace("openshift", "atomic-openshift")
  675. if openshift_version:
  676. rpm = rpm + openshift_version
  677. rpms_31.append(rpm)
  678. return rpms_31
  679. def oo_pods_match_component(pods, deployment_type, component):
  680. """ Filters a list of Pods and returns the ones matching the deployment_type and component
  681. """
  682. if not isinstance(pods, list):
  683. raise errors.AnsibleFilterError("failed expects to filter on a list")
  684. if not isinstance(deployment_type, string_types):
  685. raise errors.AnsibleFilterError("failed expects deployment_type to be a string")
  686. if not isinstance(component, string_types):
  687. raise errors.AnsibleFilterError("failed expects component to be a string")
  688. image_prefix = 'openshift/origin-'
  689. if deployment_type in ['enterprise', 'online', 'openshift-enterprise']:
  690. image_prefix = 'openshift3/ose-'
  691. elif deployment_type == 'atomic-enterprise':
  692. image_prefix = 'aep3_beta/aep-'
  693. matching_pods = []
  694. image_regex = image_prefix + component + r'.*'
  695. for pod in pods:
  696. for container in pod['spec']['containers']:
  697. if re.search(image_regex, container['image']):
  698. matching_pods.append(pod)
  699. break # stop here, don't add a pod more than once
  700. return matching_pods
  701. def oo_get_hosts_from_hostvars(hostvars, hosts):
  702. """ Return a list of hosts from hostvars """
  703. retval = []
  704. for host in hosts:
  705. try:
  706. retval.append(hostvars[host])
  707. except errors.AnsibleError:
  708. # host does not exist
  709. pass
  710. return retval
  711. def oo_image_tag_to_rpm_version(version, include_dash=False):
  712. """ Convert an image tag string to an RPM version if necessary
  713. Empty strings and strings that are already in rpm version format
  714. are ignored. Also remove non semantic version components.
  715. Ex. v3.2.0.10 -> -3.2.0.10
  716. v1.2.0-rc1 -> -1.2.0
  717. """
  718. if not isinstance(version, string_types):
  719. raise errors.AnsibleFilterError("|failed expects a string or unicode")
  720. if version.startswith("v"):
  721. version = version[1:]
  722. # Strip release from requested version, we no longer support this.
  723. version = version.split('-')[0]
  724. if include_dash and version and not version.startswith("-"):
  725. version = "-" + version
  726. return version
  727. def oo_hostname_from_url(url):
  728. """ Returns the hostname contained in a URL
  729. Ex: https://ose3-master.example.com/v1/api -> ose3-master.example.com
  730. """
  731. if not isinstance(url, string_types):
  732. raise errors.AnsibleFilterError("|failed expects a string or unicode")
  733. parse_result = urlparse(url)
  734. if parse_result.netloc != '':
  735. return parse_result.netloc
  736. else:
  737. # netloc wasn't parsed, assume url was missing scheme and path
  738. return parse_result.path
  739. # pylint: disable=invalid-name, unused-argument
  740. def oo_openshift_loadbalancer_frontends(
  741. api_port, servers_hostvars, use_nuage=False, nuage_rest_port=None):
  742. """TODO: Document me."""
  743. loadbalancer_frontends = [{'name': 'atomic-openshift-api',
  744. 'mode': 'tcp',
  745. 'options': ['tcplog'],
  746. 'binds': ["*:{0}".format(api_port)],
  747. 'default_backend': 'atomic-openshift-api'}]
  748. if bool(strtobool(str(use_nuage))) and nuage_rest_port is not None:
  749. loadbalancer_frontends.append({'name': 'nuage-monitor',
  750. 'mode': 'tcp',
  751. 'options': ['tcplog'],
  752. 'binds': ["*:{0}".format(nuage_rest_port)],
  753. 'default_backend': 'nuage-monitor'})
  754. return loadbalancer_frontends
  755. # pylint: disable=invalid-name
  756. def oo_openshift_loadbalancer_backends(
  757. api_port, servers_hostvars, use_nuage=False, nuage_rest_port=None):
  758. """TODO: Document me."""
  759. loadbalancer_backends = [{'name': 'atomic-openshift-api',
  760. 'mode': 'tcp',
  761. 'option': 'tcplog',
  762. 'balance': 'source',
  763. 'servers': oo_haproxy_backend_masters(servers_hostvars, api_port)}]
  764. if bool(strtobool(str(use_nuage))) and nuage_rest_port is not None:
  765. # pylint: disable=line-too-long
  766. loadbalancer_backends.append({'name': 'nuage-monitor',
  767. 'mode': 'tcp',
  768. 'option': 'tcplog',
  769. 'balance': 'source',
  770. 'servers': oo_haproxy_backend_masters(servers_hostvars, nuage_rest_port)})
  771. return loadbalancer_backends
  772. def oo_chomp_commit_offset(version):
  773. """Chomp any "+git.foo" commit offset string from the given `version`
  774. and return the modified version string.
  775. Ex:
  776. - chomp_commit_offset(None) => None
  777. - chomp_commit_offset(1337) => "1337"
  778. - chomp_commit_offset("v3.4.0.15+git.derp") => "v3.4.0.15"
  779. - chomp_commit_offset("v3.4.0.15") => "v3.4.0.15"
  780. - chomp_commit_offset("v1.3.0+52492b4") => "v1.3.0"
  781. """
  782. if version is None:
  783. return version
  784. else:
  785. # Stringify, just in case it's a Number type. Split by '+' and
  786. # return the first split. No concerns about strings without a
  787. # '+', .split() returns an array of the original string.
  788. return str(version).split('+')[0]
  789. def oo_random_word(length, source='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'):
  790. """Generates a random string of given length from a set of alphanumeric characters.
  791. The default source uses [a-z][A-Z][0-9]
  792. Ex:
  793. - oo_random_word(3) => aB9
  794. - oo_random_word(4, source='012') => 0123
  795. """
  796. return ''.join(random.choice(source) for i in range(length))
  797. class FilterModule(object):
  798. """ Custom ansible filter mapping """
  799. # pylint: disable=no-self-use, too-few-public-methods
  800. def filters(self):
  801. """ returns a mapping of filters to methods """
  802. return {
  803. "oo_select_keys": oo_select_keys,
  804. "oo_select_keys_from_list": oo_select_keys_from_list,
  805. "oo_chomp_commit_offset": oo_chomp_commit_offset,
  806. "oo_collect": oo_collect,
  807. "oo_flatten": oo_flatten,
  808. "oo_pdb": oo_pdb,
  809. "oo_prepend_strings_in_list": oo_prepend_strings_in_list,
  810. "oo_ami_selector": oo_ami_selector,
  811. "oo_ec2_volume_definition": oo_ec2_volume_definition,
  812. "oo_combine_key_value": oo_combine_key_value,
  813. "oo_combine_dict": oo_combine_dict,
  814. "oo_dict_to_list_of_dict": oo_dict_to_list_of_dict,
  815. "oo_split": oo_split,
  816. "oo_filter_list": oo_filter_list,
  817. "oo_parse_heat_stack_outputs": oo_parse_heat_stack_outputs,
  818. "oo_parse_named_certificates": oo_parse_named_certificates,
  819. "oo_haproxy_backend_masters": oo_haproxy_backend_masters,
  820. "oo_pretty_print_cluster": oo_pretty_print_cluster,
  821. "oo_generate_secret": oo_generate_secret,
  822. "oo_nodes_with_label": oo_nodes_with_label,
  823. "oo_openshift_env": oo_openshift_env,
  824. "oo_persistent_volumes": oo_persistent_volumes,
  825. "oo_persistent_volume_claims": oo_persistent_volume_claims,
  826. "oo_31_rpm_rename_conversion": oo_31_rpm_rename_conversion,
  827. "oo_pods_match_component": oo_pods_match_component,
  828. "oo_get_hosts_from_hostvars": oo_get_hosts_from_hostvars,
  829. "oo_image_tag_to_rpm_version": oo_image_tag_to_rpm_version,
  830. "oo_merge_dicts": oo_merge_dicts,
  831. "oo_hostname_from_url": oo_hostname_from_url,
  832. "oo_merge_hostvars": oo_merge_hostvars,
  833. "oo_openshift_loadbalancer_frontends": oo_openshift_loadbalancer_frontends,
  834. "oo_openshift_loadbalancer_backends": oo_openshift_loadbalancer_backends,
  835. "to_padded_yaml": to_padded_yaml,
  836. "oo_random_word": oo_random_word
  837. }