oo_filters.py 42 KB

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