oo_filters.py 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993
  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("|oo_select_keys_from_list failed expects to filter on a list")
  164. if not isinstance(keys, list):
  165. raise errors.AnsibleFilterError("|oo_select_keys_from_list 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("|oo_select_keys failed expects to filter on a dict or object")
  177. if not isinstance(keys, list):
  178. raise errors.AnsibleFilterError("|oo_select_keys 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_31_rpm_rename_conversion(rpms, openshift_version=None):
  574. """ Filters a list of 3.0 rpms and return the corresponding 3.1 rpms
  575. names with proper version (if provided)
  576. If 3.1 rpms are passed in they will only be augmented with the
  577. correct version. This is important for hosts that are running both
  578. Masters and Nodes.
  579. """
  580. if not isinstance(rpms, list):
  581. raise errors.AnsibleFilterError("failed expects to filter on a list")
  582. if openshift_version is not None and not isinstance(openshift_version, string_types):
  583. raise errors.AnsibleFilterError("failed expects openshift_version to be a string")
  584. rpms_31 = []
  585. for rpm in rpms:
  586. if 'atomic' not in rpm:
  587. rpm = rpm.replace("openshift", "atomic-openshift")
  588. if openshift_version:
  589. rpm = rpm + openshift_version
  590. rpms_31.append(rpm)
  591. return rpms_31
  592. def oo_pods_match_component(pods, deployment_type, component):
  593. """ Filters a list of Pods and returns the ones matching the deployment_type and component
  594. """
  595. if not isinstance(pods, list):
  596. raise errors.AnsibleFilterError("failed expects to filter on a list")
  597. if not isinstance(deployment_type, string_types):
  598. raise errors.AnsibleFilterError("failed expects deployment_type to be a string")
  599. if not isinstance(component, string_types):
  600. raise errors.AnsibleFilterError("failed expects component to be a string")
  601. image_prefix = 'openshift/origin-'
  602. if deployment_type == 'openshift-enterprise':
  603. image_prefix = 'openshift3/ose-'
  604. matching_pods = []
  605. image_regex = image_prefix + component + r'.*'
  606. for pod in pods:
  607. for container in pod['spec']['containers']:
  608. if re.search(image_regex, container['image']):
  609. matching_pods.append(pod)
  610. break # stop here, don't add a pod more than once
  611. return matching_pods
  612. def oo_get_hosts_from_hostvars(hostvars, hosts):
  613. """ Return a list of hosts from hostvars """
  614. retval = []
  615. for host in hosts:
  616. try:
  617. retval.append(hostvars[host])
  618. except errors.AnsibleError:
  619. # host does not exist
  620. pass
  621. return retval
  622. def oo_image_tag_to_rpm_version(version, include_dash=False):
  623. """ Convert an image tag string to an RPM version if necessary
  624. Empty strings and strings that are already in rpm version format
  625. are ignored. Also remove non semantic version components.
  626. Ex. v3.2.0.10 -> -3.2.0.10
  627. v1.2.0-rc1 -> -1.2.0
  628. """
  629. if not isinstance(version, string_types):
  630. raise errors.AnsibleFilterError("|failed expects a string or unicode")
  631. if version.startswith("v"):
  632. version = version[1:]
  633. # Strip release from requested version, we no longer support this.
  634. version = version.split('-')[0]
  635. if include_dash and version and not version.startswith("-"):
  636. version = "-" + version
  637. return version
  638. def oo_hostname_from_url(url):
  639. """ Returns the hostname contained in a URL
  640. Ex: https://ose3-master.example.com/v1/api -> ose3-master.example.com
  641. """
  642. if not isinstance(url, string_types):
  643. raise errors.AnsibleFilterError("|failed expects a string or unicode")
  644. parse_result = urlparse(url)
  645. if parse_result.netloc != '':
  646. return parse_result.netloc
  647. else:
  648. # netloc wasn't parsed, assume url was missing scheme and path
  649. return parse_result.path
  650. # pylint: disable=invalid-name, unused-argument
  651. def oo_openshift_loadbalancer_frontends(
  652. api_port, servers_hostvars, use_nuage=False, nuage_rest_port=None):
  653. """TODO: Document me."""
  654. loadbalancer_frontends = [{'name': 'atomic-openshift-api',
  655. 'mode': 'tcp',
  656. 'options': ['tcplog'],
  657. 'binds': ["*:{0}".format(api_port)],
  658. 'default_backend': 'atomic-openshift-api'}]
  659. if bool(strtobool(str(use_nuage))) and nuage_rest_port is not None:
  660. loadbalancer_frontends.append({'name': 'nuage-monitor',
  661. 'mode': 'tcp',
  662. 'options': ['tcplog'],
  663. 'binds': ["*:{0}".format(nuage_rest_port)],
  664. 'default_backend': 'nuage-monitor'})
  665. return loadbalancer_frontends
  666. # pylint: disable=invalid-name
  667. def oo_openshift_loadbalancer_backends(
  668. api_port, servers_hostvars, use_nuage=False, nuage_rest_port=None):
  669. """TODO: Document me."""
  670. loadbalancer_backends = [{'name': 'atomic-openshift-api',
  671. 'mode': 'tcp',
  672. 'option': 'tcplog',
  673. 'balance': 'source',
  674. 'servers': oo_haproxy_backend_masters(servers_hostvars, api_port)}]
  675. if bool(strtobool(str(use_nuage))) and nuage_rest_port is not None:
  676. # pylint: disable=line-too-long
  677. loadbalancer_backends.append({'name': 'nuage-monitor',
  678. 'mode': 'tcp',
  679. 'option': 'tcplog',
  680. 'balance': 'source',
  681. 'servers': oo_haproxy_backend_masters(servers_hostvars, nuage_rest_port)})
  682. return loadbalancer_backends
  683. def oo_chomp_commit_offset(version):
  684. """Chomp any "+git.foo" commit offset string from the given `version`
  685. and return the modified version string.
  686. Ex:
  687. - chomp_commit_offset(None) => None
  688. - chomp_commit_offset(1337) => "1337"
  689. - chomp_commit_offset("v3.4.0.15+git.derp") => "v3.4.0.15"
  690. - chomp_commit_offset("v3.4.0.15") => "v3.4.0.15"
  691. - chomp_commit_offset("v1.3.0+52492b4") => "v1.3.0"
  692. """
  693. if version is None:
  694. return version
  695. else:
  696. # Stringify, just in case it's a Number type. Split by '+' and
  697. # return the first split. No concerns about strings without a
  698. # '+', .split() returns an array of the original string.
  699. return str(version).split('+')[0]
  700. def oo_random_word(length, source='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'):
  701. """Generates a random string of given length from a set of alphanumeric characters.
  702. The default source uses [a-z][A-Z][0-9]
  703. Ex:
  704. - oo_random_word(3) => aB9
  705. - oo_random_word(4, source='012') => 0123
  706. """
  707. return ''.join(random.choice(source) for i in range(length))
  708. def oo_contains_rule(source, apiGroups, resources, verbs):
  709. '''Return true if the specified rule is contained within the provided source'''
  710. rules = source['rules']
  711. if rules:
  712. for rule in rules:
  713. if set(rule['apiGroups']) == set(apiGroups):
  714. if set(rule['resources']) == set(resources):
  715. if set(rule['verbs']) == set(verbs):
  716. return True
  717. return False
  718. def oo_selector_to_string_list(user_dict):
  719. """Convert a dict of selectors to a key=value list of strings
  720. Given input of {'region': 'infra', 'zone': 'primary'} returns a list
  721. of items as ['region=infra', 'zone=primary']
  722. """
  723. selectors = []
  724. for key in user_dict:
  725. selectors.append("{}={}".format(key, user_dict[key]))
  726. return selectors
  727. def oo_filter_sa_secrets(sa_secrets, secret_hint='-token-'):
  728. """Parse the Service Account Secrets list, `sa_secrets`, (as from
  729. oc_serviceaccount_secret:state=list) and return the name of the secret
  730. containing the `secret_hint` string. For example, by default this will
  731. return the name of the secret holding the SA bearer token.
  732. Only provide the 'results' object to this filter. This filter expects
  733. to receive a list like this:
  734. [
  735. {
  736. "name": "management-admin-dockercfg-p31s2"
  737. },
  738. {
  739. "name": "management-admin-token-bnqsh"
  740. }
  741. ]
  742. Returns:
  743. * `secret_name` [string] - The name of the secret matching the
  744. `secret_hint` parameter. By default this is the secret holding the
  745. SA's bearer token.
  746. Example playbook usage:
  747. Register a return value from oc_serviceaccount_secret with and pass
  748. that result to this filter plugin.
  749. - name: Get all SA Secrets
  750. oc_serviceaccount_secret:
  751. state: list
  752. service_account: management-admin
  753. namespace: management-infra
  754. register: sa
  755. - name: Save the SA bearer token secret name
  756. set_fact:
  757. management_token: "{{ sa.results | oo_filter_sa_secrets }}"
  758. - name: Get the SA bearer token value
  759. oc_secret:
  760. state: list
  761. name: "{{ management_token }}"
  762. namespace: management-infra
  763. decode: true
  764. register: sa_secret
  765. - name: Print the bearer token value
  766. debug:
  767. var: sa_secret.results.decoded.token
  768. """
  769. secret_name = None
  770. for secret in sa_secrets:
  771. # each secret is a hash
  772. if secret['name'].find(secret_hint) == -1:
  773. continue
  774. else:
  775. secret_name = secret['name']
  776. break
  777. return secret_name
  778. class FilterModule(object):
  779. """ Custom ansible filter mapping """
  780. # pylint: disable=no-self-use, too-few-public-methods
  781. def filters(self):
  782. """ returns a mapping of filters to methods """
  783. return {
  784. "oo_select_keys": oo_select_keys,
  785. "oo_select_keys_from_list": oo_select_keys_from_list,
  786. "oo_chomp_commit_offset": oo_chomp_commit_offset,
  787. "oo_collect": oo_collect,
  788. "oo_flatten": oo_flatten,
  789. "oo_pdb": oo_pdb,
  790. "oo_prepend_strings_in_list": oo_prepend_strings_in_list,
  791. "oo_ami_selector": oo_ami_selector,
  792. "oo_ec2_volume_definition": oo_ec2_volume_definition,
  793. "oo_combine_key_value": oo_combine_key_value,
  794. "oo_combine_dict": oo_combine_dict,
  795. "oo_dict_to_list_of_dict": oo_dict_to_list_of_dict,
  796. "oo_split": oo_split,
  797. "oo_filter_list": oo_filter_list,
  798. "oo_parse_heat_stack_outputs": oo_parse_heat_stack_outputs,
  799. "oo_parse_named_certificates": oo_parse_named_certificates,
  800. "oo_haproxy_backend_masters": oo_haproxy_backend_masters,
  801. "oo_pretty_print_cluster": oo_pretty_print_cluster,
  802. "oo_generate_secret": oo_generate_secret,
  803. "oo_nodes_with_label": oo_nodes_with_label,
  804. "oo_31_rpm_rename_conversion": oo_31_rpm_rename_conversion,
  805. "oo_pods_match_component": oo_pods_match_component,
  806. "oo_get_hosts_from_hostvars": oo_get_hosts_from_hostvars,
  807. "oo_image_tag_to_rpm_version": oo_image_tag_to_rpm_version,
  808. "oo_merge_dicts": oo_merge_dicts,
  809. "oo_hostname_from_url": oo_hostname_from_url,
  810. "oo_merge_hostvars": oo_merge_hostvars,
  811. "oo_openshift_loadbalancer_frontends": oo_openshift_loadbalancer_frontends,
  812. "oo_openshift_loadbalancer_backends": oo_openshift_loadbalancer_backends,
  813. "to_padded_yaml": to_padded_yaml,
  814. "oo_random_word": oo_random_word,
  815. "oo_contains_rule": oo_contains_rule,
  816. "oo_selector_to_string_list": oo_selector_to_string_list,
  817. "oo_filter_sa_secrets": oo_filter_sa_secrets,
  818. }