oo_filters.py 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. # vim: expandtab:tabstop=4:shiftwidth=4
  4. '''
  5. Custom filters for use in openshift-ansible
  6. '''
  7. from ansible import errors
  8. from operator import itemgetter
  9. import OpenSSL.crypto
  10. import os.path
  11. import pdb
  12. import re
  13. import json
  14. class FilterModule(object):
  15. ''' Custom ansible filters '''
  16. @staticmethod
  17. def oo_pdb(arg):
  18. ''' This pops you into a pdb instance where arg is the data passed in
  19. from the filter.
  20. Ex: "{{ hostvars | oo_pdb }}"
  21. '''
  22. pdb.set_trace()
  23. return arg
  24. @staticmethod
  25. def get_attr(data, attribute=None):
  26. ''' This looks up dictionary attributes of the form a.b.c and returns
  27. the value.
  28. Ex: data = {'a': {'b': {'c': 5}}}
  29. attribute = "a.b.c"
  30. returns 5
  31. '''
  32. if not attribute:
  33. raise errors.AnsibleFilterError("|failed expects attribute to be set")
  34. ptr = data
  35. for attr in attribute.split('.'):
  36. ptr = ptr[attr]
  37. return ptr
  38. @staticmethod
  39. def oo_flatten(data):
  40. ''' This filter plugin will flatten a list of lists
  41. '''
  42. if not issubclass(type(data), list):
  43. raise errors.AnsibleFilterError("|failed expects to flatten a List")
  44. return [item for sublist in data for item in sublist]
  45. @staticmethod
  46. def oo_collect(data, attribute=None, filters=None):
  47. ''' This takes a list of dict and collects all attributes specified into a
  48. list. If filter is specified then we will include all items that
  49. match _ALL_ of filters. If a dict entry is missing the key in a
  50. filter it will be excluded from the match.
  51. Ex: data = [ {'a':1, 'b':5, 'z': 'z'}, # True, return
  52. {'a':2, 'z': 'z'}, # True, return
  53. {'a':3, 'z': 'z'}, # True, return
  54. {'a':4, 'z': 'b'}, # FAILED, obj['z'] != obj['z']
  55. ]
  56. attribute = 'a'
  57. filters = {'z': 'z'}
  58. returns [1, 2, 3]
  59. '''
  60. if not issubclass(type(data), list):
  61. raise errors.AnsibleFilterError("|failed expects to filter on a List")
  62. if not attribute:
  63. raise errors.AnsibleFilterError("|failed expects attribute to be set")
  64. if filters is not None:
  65. if not issubclass(type(filters), dict):
  66. raise errors.AnsibleFilterError("|failed expects filter to be a"
  67. " dict")
  68. retval = [FilterModule.get_attr(d, attribute) for d in data if (
  69. all([d.get(key, None) == filters[key] for key in filters]))]
  70. else:
  71. retval = [FilterModule.get_attr(d, attribute) for d in data]
  72. return retval
  73. @staticmethod
  74. def oo_select_keys_from_list(data, keys):
  75. ''' This returns a list, which contains the value portions for the keys
  76. Ex: data = { 'a':1, 'b':2, 'c':3 }
  77. keys = ['a', 'c']
  78. returns [1, 3]
  79. '''
  80. if not issubclass(type(data), list):
  81. raise errors.AnsibleFilterError("|failed expects to filter on a list")
  82. if not issubclass(type(keys), list):
  83. raise errors.AnsibleFilterError("|failed expects first param is a list")
  84. # Gather up the values for the list of keys passed in
  85. retval = [FilterModule.oo_select_keys(item, keys) for item in data]
  86. return FilterModule.oo_flatten(retval)
  87. @staticmethod
  88. def oo_select_keys(data, keys):
  89. ''' This returns a list, which contains the value portions for the keys
  90. Ex: data = { 'a':1, 'b':2, 'c':3 }
  91. keys = ['a', 'c']
  92. returns [1, 3]
  93. '''
  94. if not issubclass(type(data), dict):
  95. raise errors.AnsibleFilterError("|failed expects to filter on a dict")
  96. if not issubclass(type(keys), list):
  97. raise errors.AnsibleFilterError("|failed expects first param is a list")
  98. # Gather up the values for the list of keys passed in
  99. retval = [data[key] for key in keys if data.has_key(key)]
  100. return retval
  101. @staticmethod
  102. def oo_prepend_strings_in_list(data, prepend):
  103. ''' This takes a list of strings and prepends a string to each item in the
  104. list
  105. Ex: data = ['cart', 'tree']
  106. prepend = 'apple-'
  107. returns ['apple-cart', 'apple-tree']
  108. '''
  109. if not issubclass(type(data), list):
  110. raise errors.AnsibleFilterError("|failed expects first param is a list")
  111. if not all(isinstance(x, basestring) for x in data):
  112. raise errors.AnsibleFilterError("|failed expects first param is a list"
  113. " of strings")
  114. retval = [prepend + s for s in data]
  115. return retval
  116. @staticmethod
  117. def oo_combine_key_value(data, joiner='='):
  118. '''Take a list of dict in the form of { 'key': 'value'} and
  119. arrange them as a list of strings ['key=value']
  120. '''
  121. if not issubclass(type(data), list):
  122. raise errors.AnsibleFilterError("|failed expects first param is a list")
  123. rval = []
  124. for item in data:
  125. rval.append("%s%s%s" % (item['key'], joiner, item['value']))
  126. return rval
  127. @staticmethod
  128. def oo_combine_dict(data, in_joiner='=', out_joiner=' '):
  129. '''Take a dict in the form of { 'key': 'value', 'key': 'value' } and
  130. arrange them as a string 'key=value key=value'
  131. '''
  132. if not issubclass(type(data), dict):
  133. raise errors.AnsibleFilterError("|failed expects first param is a dict")
  134. return out_joiner.join([in_joiner.join([k, v]) for k, v in data.items()])
  135. @staticmethod
  136. def oo_ami_selector(data, image_name):
  137. ''' This takes a list of amis and an image name and attempts to return
  138. the latest ami.
  139. '''
  140. if not issubclass(type(data), list):
  141. raise errors.AnsibleFilterError("|failed expects first param is a list")
  142. if not data:
  143. return None
  144. else:
  145. if image_name is None or not image_name.endswith('_*'):
  146. ami = sorted(data, key=itemgetter('name'), reverse=True)[0]
  147. return ami['ami_id']
  148. else:
  149. ami_info = [(ami, ami['name'].split('_')[-1]) for ami in data]
  150. ami = sorted(ami_info, key=itemgetter(1), reverse=True)[0][0]
  151. return ami['ami_id']
  152. @staticmethod
  153. def oo_ec2_volume_definition(data, host_type, docker_ephemeral=False):
  154. ''' This takes a dictionary of volume definitions and returns a valid ec2
  155. volume definition based on the host_type and the values in the
  156. dictionary.
  157. The dictionary should look similar to this:
  158. { 'master':
  159. { 'root':
  160. { 'volume_size': 10, 'device_type': 'gp2',
  161. 'iops': 500
  162. },
  163. 'docker':
  164. { 'volume_size': 40, 'device_type': 'gp2',
  165. 'iops': 500, 'ephemeral': 'true'
  166. }
  167. },
  168. 'node':
  169. { 'root':
  170. { 'volume_size': 10, 'device_type': 'io1',
  171. 'iops': 1000
  172. },
  173. 'docker':
  174. { 'volume_size': 40, 'device_type': 'gp2',
  175. 'iops': 500, 'ephemeral': 'true'
  176. }
  177. }
  178. }
  179. '''
  180. if not issubclass(type(data), dict):
  181. raise errors.AnsibleFilterError("|failed expects first param is a dict")
  182. if host_type not in ['master', 'node', 'etcd']:
  183. raise errors.AnsibleFilterError("|failed expects etcd, master or node"
  184. " as the host type")
  185. root_vol = data[host_type]['root']
  186. root_vol['device_name'] = '/dev/sda1'
  187. root_vol['delete_on_termination'] = True
  188. if root_vol['device_type'] != 'io1':
  189. root_vol.pop('iops', None)
  190. if host_type in ['master', 'node'] and 'docker' in data[host_type]:
  191. docker_vol = data[host_type]['docker']
  192. docker_vol['device_name'] = '/dev/xvdb'
  193. docker_vol['delete_on_termination'] = True
  194. if docker_vol['device_type'] != 'io1':
  195. docker_vol.pop('iops', None)
  196. if docker_ephemeral:
  197. docker_vol.pop('device_type', None)
  198. docker_vol.pop('delete_on_termination', None)
  199. docker_vol['ephemeral'] = 'ephemeral0'
  200. return [root_vol, docker_vol]
  201. elif host_type == 'etcd' and 'etcd' in data[host_type]:
  202. etcd_vol = data[host_type]['etcd']
  203. etcd_vol['device_name'] = '/dev/xvdb'
  204. etcd_vol['delete_on_termination'] = True
  205. if etcd_vol['device_type'] != 'io1':
  206. etcd_vol.pop('iops', None)
  207. return [root_vol, etcd_vol]
  208. return [root_vol]
  209. @staticmethod
  210. def oo_split(string, separator=','):
  211. ''' This splits the input string into a list
  212. '''
  213. return string.split(separator)
  214. @staticmethod
  215. def oo_haproxy_backend_masters(hosts):
  216. ''' This takes an array of dicts and returns an array of dicts
  217. to be used as a backend for the haproxy role
  218. '''
  219. servers = []
  220. for idx, host_info in enumerate(hosts):
  221. server = dict(name="master%s" % idx)
  222. server_ip = host_info['openshift']['common']['ip']
  223. server_port = host_info['openshift']['master']['api_port']
  224. server['address'] = "%s:%s" % (server_ip, server_port)
  225. server['opts'] = 'check'
  226. servers.append(server)
  227. return servers
  228. @staticmethod
  229. def oo_filter_list(data, filter_attr=None):
  230. ''' This returns a list, which contains all items where filter_attr
  231. evaluates to true
  232. Ex: data = [ { a: 1, b: True },
  233. { a: 3, b: False },
  234. { a: 5, b: True } ]
  235. filter_attr = 'b'
  236. returns [ { a: 1, b: True },
  237. { a: 5, b: True } ]
  238. '''
  239. if not issubclass(type(data), list):
  240. raise errors.AnsibleFilterError("|failed expects to filter on a list")
  241. if not issubclass(type(filter_attr), str):
  242. raise errors.AnsibleFilterError("|failed expects filter_attr is a str")
  243. # Gather up the values for the list of keys passed in
  244. return [x for x in data if x.has_key(filter_attr) and x[filter_attr]]
  245. @staticmethod
  246. def oo_parse_heat_stack_outputs(data):
  247. ''' Formats the HEAT stack output into a usable form
  248. The goal is to transform something like this:
  249. +---------------+-------------------------------------------------+
  250. | Property | Value |
  251. +---------------+-------------------------------------------------+
  252. | capabilities | [] | |
  253. | creation_time | 2015-06-26T12:26:26Z | |
  254. | description | OpenShift cluster | |
  255. | … | … |
  256. | outputs | [ |
  257. | | { |
  258. | | "output_value": "value_A" |
  259. | | "description": "This is the value of Key_A" |
  260. | | "output_key": "Key_A" |
  261. | | }, |
  262. | | { |
  263. | | "output_value": [ |
  264. | | "value_B1", |
  265. | | "value_B2" |
  266. | | ], |
  267. | | "description": "This is the value of Key_B" |
  268. | | "output_key": "Key_B" |
  269. | | }, |
  270. | | ] |
  271. | parameters | { |
  272. | … | … |
  273. +---------------+-------------------------------------------------+
  274. into something like this:
  275. {
  276. "Key_A": "value_A",
  277. "Key_B": [
  278. "value_B1",
  279. "value_B2"
  280. ]
  281. }
  282. '''
  283. # Extract the “outputs” JSON snippet from the pretty-printed array
  284. in_outputs = False
  285. outputs = ''
  286. line_regex = re.compile(r'\|\s*(.*?)\s*\|\s*(.*?)\s*\|')
  287. for line in data['stdout_lines']:
  288. match = line_regex.match(line)
  289. if match:
  290. if match.group(1) == 'outputs':
  291. in_outputs = True
  292. elif match.group(1) != '':
  293. in_outputs = False
  294. if in_outputs:
  295. outputs += match.group(2)
  296. outputs = json.loads(outputs)
  297. # Revamp the “outputs” to put it in the form of a “Key: value” map
  298. revamped_outputs = {}
  299. for output in outputs:
  300. revamped_outputs[output['output_key']] = output['output_value']
  301. return revamped_outputs
  302. @staticmethod
  303. # pylint: disable=too-many-branches
  304. def oo_parse_named_certificates(certificates, named_certs_dir, internal_hostnames):
  305. ''' Parses names from list of certificate hashes.
  306. Ex: certificates = [{ "certfile": "/root/custom1.crt",
  307. "keyfile": "/root/custom1.key" },
  308. { "certfile": "custom2.crt",
  309. "keyfile": "custom2.key" }]
  310. returns [{ "certfile": "/etc/origin/master/named_certificates/custom1.crt",
  311. "keyfile": "/etc/origin/master/named_certificates/custom1.key",
  312. "names": [ "public-master-host.com",
  313. "other-master-host.com" ] },
  314. { "certfile": "/etc/origin/master/named_certificates/custom2.crt",
  315. "keyfile": "/etc/origin/master/named_certificates/custom2.key",
  316. "names": [ "some-hostname.com" ] }]
  317. '''
  318. if not issubclass(type(certificates), list):
  319. raise errors.AnsibleFilterError("|failed expects certificates is a list")
  320. if not issubclass(type(named_certs_dir), unicode):
  321. raise errors.AnsibleFilterError("|failed expects named_certs_dir is unicode")
  322. if not issubclass(type(internal_hostnames), list):
  323. raise errors.AnsibleFilterError("|failed expects internal_hostnames is list")
  324. for certificate in certificates:
  325. if 'names' in certificate.keys():
  326. continue
  327. else:
  328. certificate['names'] = []
  329. if not os.path.isfile(certificate['certfile']) or not os.path.isfile(certificate['keyfile']):
  330. raise errors.AnsibleFilterError("|certificate and/or key does not exist '%s', '%s'" %
  331. (certificate['certfile'], certificate['keyfile']))
  332. try:
  333. st_cert = open(certificate['certfile'], 'rt').read()
  334. cert = OpenSSL.crypto.load_certificate(OpenSSL.crypto.FILETYPE_PEM, st_cert)
  335. certificate['names'].append(str(cert.get_subject().commonName.decode()))
  336. for i in range(cert.get_extension_count()):
  337. if cert.get_extension(i).get_short_name() == 'subjectAltName':
  338. for name in str(cert.get_extension(i)).replace('DNS:', '').split(', '):
  339. certificate['names'].append(name)
  340. except:
  341. raise errors.AnsibleFilterError(("|failed to parse certificate '%s', " % certificate['certfile'] +
  342. "please specify certificate names in host inventory"))
  343. certificate['names'] = [name for name in certificate['names'] if name not in internal_hostnames]
  344. certificate['names'] = list(set(certificate['names']))
  345. if not certificate['names']:
  346. raise errors.AnsibleFilterError(("|failed to parse certificate '%s' or " % certificate['certfile'] +
  347. "detected a collision with internal hostname, please specify " +
  348. "certificate names in host inventory"))
  349. for certificate in certificates:
  350. # Update paths for configuration
  351. certificate['certfile'] = os.path.join(named_certs_dir, os.path.basename(certificate['certfile']))
  352. certificate['keyfile'] = os.path.join(named_certs_dir, os.path.basename(certificate['keyfile']))
  353. return certificates
  354. @staticmethod
  355. def oo_pretty_print_cluster(data):
  356. ''' Read a subset of hostvars and build a summary of the cluster
  357. in the following layout:
  358. "c_id": {
  359. "master": [
  360. { "name": "c_id-master-12345", "public IP": "172.16.0.1", "private IP": "192.168.0.1", "subtype": "default" }]
  361. "node": [
  362. { "name": "c_id-node-infra-23456", "public IP": "172.16.0.2", "private IP": "192.168.0.2", "subtype": "infra" },
  363. { "name": "c_id-node-compute-23456", "public IP": "172.16.0.3", "private IP": "192.168.0.3", "subtype": "compute" },
  364. ...
  365. ]}
  366. '''
  367. def _get_tag_value(tags, key):
  368. ''' Extract values of a map implemented as a set.
  369. Ex: tags = { 'tag_foo_value1', 'tag_bar_value2', 'tag_baz_value3' }
  370. key = 'bar'
  371. returns 'value2'
  372. '''
  373. for tag in tags:
  374. # Skip tag_env-host-type to avoid ambiguity with tag_env
  375. if tag[:17] == 'tag_env-host-type':
  376. continue
  377. if tag[:len(key)+4] == 'tag_' + key:
  378. return tag[len(key)+5:]
  379. raise KeyError(key)
  380. def _add_host(clusters,
  381. env,
  382. host_type,
  383. sub_host_type,
  384. host):
  385. ''' Add a new host in the clusters data structure '''
  386. if env not in clusters:
  387. clusters[env] = {}
  388. if host_type not in clusters[env]:
  389. clusters[env][host_type] = {}
  390. if sub_host_type not in clusters[env][host_type]:
  391. clusters[env][host_type][sub_host_type] = []
  392. clusters[env][host_type][sub_host_type].append(host)
  393. clusters = {}
  394. for host in data:
  395. try:
  396. _add_host(clusters=clusters,
  397. env=_get_tag_value(host['group_names'], 'env'),
  398. host_type=_get_tag_value(host['group_names'], 'host-type'),
  399. sub_host_type=_get_tag_value(host['group_names'], 'sub-host-type'),
  400. host={'name': host['inventory_hostname'],
  401. 'public IP': host['ansible_ssh_host'],
  402. 'private IP': host['ansible_default_ipv4']['address']})
  403. except KeyError:
  404. pass
  405. return clusters
  406. def filters(self):
  407. ''' returns a mapping of filters to methods '''
  408. return {
  409. "oo_select_keys": self.oo_select_keys,
  410. "oo_select_keys_from_list": self.oo_select_keys_from_list,
  411. "oo_collect": self.oo_collect,
  412. "oo_flatten": self.oo_flatten,
  413. "oo_pdb": self.oo_pdb,
  414. "oo_prepend_strings_in_list": self.oo_prepend_strings_in_list,
  415. "oo_ami_selector": self.oo_ami_selector,
  416. "oo_ec2_volume_definition": self.oo_ec2_volume_definition,
  417. "oo_combine_key_value": self.oo_combine_key_value,
  418. "oo_combine_dict": self.oo_combine_dict,
  419. "oo_split": self.oo_split,
  420. "oo_filter_list": self.oo_filter_list,
  421. "oo_parse_heat_stack_outputs": self.oo_parse_heat_stack_outputs,
  422. "oo_parse_named_certificates": self.oo_parse_named_certificates,
  423. "oo_haproxy_backend_masters": self.oo_haproxy_backend_masters,
  424. "oo_pretty_print_cluster": self.oo_pretty_print_cluster
  425. }