oo_filters.py 41 KB

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