oc_adm_ca_server_cert.py 52 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555
  1. #!/usr/bin/env python
  2. # pylint: disable=missing-docstring
  3. # flake8: noqa: T001
  4. # ___ ___ _ _ ___ ___ _ _____ ___ ___
  5. # / __| __| \| | __| _ \ /_\_ _| __| \
  6. # | (_ | _|| .` | _|| / / _ \| | | _|| |) |
  7. # \___|___|_|\_|___|_|_\/_/_\_\_|_|___|___/_ _____
  8. # | \ / _ \ | \| |/ _ \_ _| | __| \_ _|_ _|
  9. # | |) | (_) | | .` | (_) || | | _|| |) | | | |
  10. # |___/ \___/ |_|\_|\___/ |_| |___|___/___| |_|
  11. #
  12. # Copyright 2016 Red Hat, Inc. and/or its affiliates
  13. # and other contributors as indicated by the @author tags.
  14. #
  15. # Licensed under the Apache License, Version 2.0 (the "License");
  16. # you may not use this file except in compliance with the License.
  17. # You may obtain a copy of the License at
  18. #
  19. # http://www.apache.org/licenses/LICENSE-2.0
  20. #
  21. # Unless required by applicable law or agreed to in writing, software
  22. # distributed under the License is distributed on an "AS IS" BASIS,
  23. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  24. # See the License for the specific language governing permissions and
  25. # limitations under the License.
  26. #
  27. # -*- -*- -*- Begin included fragment: lib/import.py -*- -*- -*-
  28. '''
  29. OpenShiftCLI class that wraps the oc commands in a subprocess
  30. '''
  31. # pylint: disable=too-many-lines
  32. from __future__ import print_function
  33. import atexit
  34. import copy
  35. import json
  36. import os
  37. import re
  38. import shutil
  39. import subprocess
  40. import tempfile
  41. # pylint: disable=import-error
  42. try:
  43. import ruamel.yaml as yaml
  44. except ImportError:
  45. import yaml
  46. from ansible.module_utils.basic import AnsibleModule
  47. # -*- -*- -*- End included fragment: lib/import.py -*- -*- -*-
  48. # -*- -*- -*- Begin included fragment: doc/ca_server_cert -*- -*- -*-
  49. DOCUMENTATION = '''
  50. ---
  51. module: oc_adm_ca_server_cert
  52. short_description: Module to run openshift oc adm ca create-server-cert
  53. description:
  54. - Wrapper around the openshift `oc adm ca create-server-cert` command.
  55. options:
  56. state:
  57. description:
  58. - Present is the only supported state. The state present means that `oc adm ca` will generate a certificate
  59. - and verify if the hostnames and the ClusterIP exists in the certificate.
  60. - When create-server-cert is desired then the following parameters are passed.
  61. - ['cert', 'key', 'signer_cert', 'signer_key', 'signer_serial']
  62. required: false
  63. default: present
  64. choices:
  65. - present
  66. aliases: []
  67. kubeconfig:
  68. description:
  69. - The path for the kubeconfig file to use for authentication
  70. required: false
  71. default: /etc/origin/master/admin.kubeconfig
  72. aliases: []
  73. debug:
  74. description:
  75. - Turn on debug output.
  76. required: false
  77. default: False
  78. aliases: []
  79. cert:
  80. description:
  81. - The certificate file. Choose a name that indicates what the service is.
  82. required: false
  83. default: None
  84. aliases: []
  85. key:
  86. description:
  87. - The key file. Choose a name that indicates what the service is.
  88. required: false
  89. default: None
  90. aliases: []
  91. force:
  92. description:
  93. - Force updating of the existing cert and key files
  94. required: false
  95. default: False
  96. aliases: []
  97. signer_cert:
  98. description:
  99. - The signer certificate file.
  100. required: false
  101. default: /etc/origin/master/ca.crt
  102. aliases: []
  103. signer_key:
  104. description:
  105. - The signer key file.
  106. required: false
  107. default: /etc/origin/master/ca.key
  108. aliases: []
  109. signer_serial:
  110. description:
  111. - The signer serial file.
  112. required: false
  113. default: /etc/origin/master/ca.serial.txt
  114. aliases: []
  115. hostnames:
  116. description:
  117. - Every hostname or IP that server certs should be valid for
  118. required: false
  119. default: []
  120. aliases: []
  121. backup:
  122. description:
  123. - Whether to backup the cert and key files before writing them.
  124. required: false
  125. default: True
  126. aliases: []
  127. author:
  128. - "Kenny Woodson <kwoodson@redhat.com>"
  129. extends_documentation_fragment: []
  130. '''
  131. EXAMPLES = '''
  132. - name: Create a self-signed cert
  133. oc_adm_ca_server_cert:
  134. signer_cert: /etc/origin/master/ca.crt
  135. signer_key: /etc/origin/master/ca.key
  136. signer_serial: /etc/origin/master/ca.serial.txt
  137. hostnames: "registry.test.openshift.com,127.0.0.1,docker-registry.default.svc.cluster.local"
  138. cert: /etc/origin/master/registry.crt
  139. key: /etc/origin/master/registry.key
  140. '''
  141. # -*- -*- -*- End included fragment: doc/ca_server_cert -*- -*- -*-
  142. # -*- -*- -*- Begin included fragment: ../../lib_utils/src/class/yedit.py -*- -*- -*-
  143. # pylint: disable=undefined-variable,missing-docstring
  144. # noqa: E301,E302
  145. class YeditException(Exception):
  146. ''' Exception class for Yedit '''
  147. pass
  148. # pylint: disable=too-many-public-methods
  149. class Yedit(object):
  150. ''' Class to modify yaml files '''
  151. re_valid_key = r"(((\[-?\d+\])|([0-9a-zA-Z%s/_-]+)).?)+$"
  152. re_key = r"(?:\[(-?\d+)\])|([0-9a-zA-Z%s/_-]+)"
  153. com_sep = set(['.', '#', '|', ':'])
  154. # pylint: disable=too-many-arguments
  155. def __init__(self,
  156. filename=None,
  157. content=None,
  158. content_type='yaml',
  159. separator='.',
  160. backup=False):
  161. self.content = content
  162. self._separator = separator
  163. self.filename = filename
  164. self.__yaml_dict = content
  165. self.content_type = content_type
  166. self.backup = backup
  167. self.load(content_type=self.content_type)
  168. if self.__yaml_dict is None:
  169. self.__yaml_dict = {}
  170. @property
  171. def separator(self):
  172. ''' getter method for yaml_dict '''
  173. return self._separator
  174. @separator.setter
  175. def separator(self):
  176. ''' getter method for yaml_dict '''
  177. return self._separator
  178. @property
  179. def yaml_dict(self):
  180. ''' getter method for yaml_dict '''
  181. return self.__yaml_dict
  182. @yaml_dict.setter
  183. def yaml_dict(self, value):
  184. ''' setter method for yaml_dict '''
  185. self.__yaml_dict = value
  186. @staticmethod
  187. def parse_key(key, sep='.'):
  188. '''parse the key allowing the appropriate separator'''
  189. common_separators = list(Yedit.com_sep - set([sep]))
  190. return re.findall(Yedit.re_key % ''.join(common_separators), key)
  191. @staticmethod
  192. def valid_key(key, sep='.'):
  193. '''validate the incoming key'''
  194. common_separators = list(Yedit.com_sep - set([sep]))
  195. if not re.match(Yedit.re_valid_key % ''.join(common_separators), key):
  196. return False
  197. return True
  198. @staticmethod
  199. def remove_entry(data, key, sep='.'):
  200. ''' remove data at location key '''
  201. if key == '' and isinstance(data, dict):
  202. data.clear()
  203. return True
  204. elif key == '' and isinstance(data, list):
  205. del data[:]
  206. return True
  207. if not (key and Yedit.valid_key(key, sep)) and \
  208. isinstance(data, (list, dict)):
  209. return None
  210. key_indexes = Yedit.parse_key(key, sep)
  211. for arr_ind, dict_key in key_indexes[:-1]:
  212. if dict_key and isinstance(data, dict):
  213. data = data.get(dict_key, None)
  214. elif (arr_ind and isinstance(data, list) and
  215. int(arr_ind) <= len(data) - 1):
  216. data = data[int(arr_ind)]
  217. else:
  218. return None
  219. # process last index for remove
  220. # expected list entry
  221. if key_indexes[-1][0]:
  222. if isinstance(data, list) and int(key_indexes[-1][0]) <= len(data) - 1: # noqa: E501
  223. del data[int(key_indexes[-1][0])]
  224. return True
  225. # expected dict entry
  226. elif key_indexes[-1][1]:
  227. if isinstance(data, dict):
  228. del data[key_indexes[-1][1]]
  229. return True
  230. @staticmethod
  231. def add_entry(data, key, item=None, sep='.'):
  232. ''' Get an item from a dictionary with key notation a.b.c
  233. d = {'a': {'b': 'c'}}}
  234. key = a#b
  235. return c
  236. '''
  237. if key == '':
  238. pass
  239. elif (not (key and Yedit.valid_key(key, sep)) and
  240. isinstance(data, (list, dict))):
  241. return None
  242. key_indexes = Yedit.parse_key(key, sep)
  243. for arr_ind, dict_key in key_indexes[:-1]:
  244. if dict_key:
  245. if isinstance(data, dict) and dict_key in data and data[dict_key]: # noqa: E501
  246. data = data[dict_key]
  247. continue
  248. elif data and not isinstance(data, dict):
  249. raise YeditException("Unexpected item type found while going through key " +
  250. "path: {} (at key: {})".format(key, dict_key))
  251. data[dict_key] = {}
  252. data = data[dict_key]
  253. elif (arr_ind and isinstance(data, list) and
  254. int(arr_ind) <= len(data) - 1):
  255. data = data[int(arr_ind)]
  256. else:
  257. raise YeditException("Unexpected item type found while going through key path: {}".format(key))
  258. if key == '':
  259. data = item
  260. # process last index for add
  261. # expected list entry
  262. elif key_indexes[-1][0] and isinstance(data, list) and int(key_indexes[-1][0]) <= len(data) - 1: # noqa: E501
  263. data[int(key_indexes[-1][0])] = item
  264. # expected dict entry
  265. elif key_indexes[-1][1] and isinstance(data, dict):
  266. data[key_indexes[-1][1]] = item
  267. # didn't add/update to an existing list, nor add/update key to a dict
  268. # so we must have been provided some syntax like a.b.c[<int>] = "data" for a
  269. # non-existent array
  270. else:
  271. raise YeditException("Error adding to object at path: {}".format(key))
  272. return data
  273. @staticmethod
  274. def get_entry(data, key, sep='.'):
  275. ''' Get an item from a dictionary with key notation a.b.c
  276. d = {'a': {'b': 'c'}}}
  277. key = a.b
  278. return c
  279. '''
  280. if key == '':
  281. pass
  282. elif (not (key and Yedit.valid_key(key, sep)) and
  283. isinstance(data, (list, dict))):
  284. return None
  285. key_indexes = Yedit.parse_key(key, sep)
  286. for arr_ind, dict_key in key_indexes:
  287. if dict_key and isinstance(data, dict):
  288. data = data.get(dict_key, None)
  289. elif (arr_ind and isinstance(data, list) and
  290. int(arr_ind) <= len(data) - 1):
  291. data = data[int(arr_ind)]
  292. else:
  293. return None
  294. return data
  295. @staticmethod
  296. def _write(filename, contents):
  297. ''' Actually write the file contents to disk. This helps with mocking. '''
  298. tmp_filename = filename + '.yedit'
  299. with open(tmp_filename, 'w') as yfd:
  300. yfd.write(contents)
  301. os.rename(tmp_filename, filename)
  302. def write(self):
  303. ''' write to file '''
  304. if not self.filename:
  305. raise YeditException('Please specify a filename.')
  306. if self.backup and self.file_exists():
  307. shutil.copy(self.filename, self.filename + '.orig')
  308. # Try to set format attributes if supported
  309. try:
  310. self.yaml_dict.fa.set_block_style()
  311. except AttributeError:
  312. pass
  313. # Try to use RoundTripDumper if supported.
  314. try:
  315. Yedit._write(self.filename, yaml.dump(self.yaml_dict, Dumper=yaml.RoundTripDumper))
  316. except AttributeError:
  317. Yedit._write(self.filename, yaml.safe_dump(self.yaml_dict, default_flow_style=False))
  318. return (True, self.yaml_dict)
  319. def read(self):
  320. ''' read from file '''
  321. # check if it exists
  322. if self.filename is None or not self.file_exists():
  323. return None
  324. contents = None
  325. with open(self.filename) as yfd:
  326. contents = yfd.read()
  327. return contents
  328. def file_exists(self):
  329. ''' return whether file exists '''
  330. if os.path.exists(self.filename):
  331. return True
  332. return False
  333. def load(self, content_type='yaml'):
  334. ''' return yaml file '''
  335. contents = self.read()
  336. if not contents and not self.content:
  337. return None
  338. if self.content:
  339. if isinstance(self.content, dict):
  340. self.yaml_dict = self.content
  341. return self.yaml_dict
  342. elif isinstance(self.content, str):
  343. contents = self.content
  344. # check if it is yaml
  345. try:
  346. if content_type == 'yaml' and contents:
  347. # Try to set format attributes if supported
  348. try:
  349. self.yaml_dict.fa.set_block_style()
  350. except AttributeError:
  351. pass
  352. # Try to use RoundTripLoader if supported.
  353. try:
  354. self.yaml_dict = yaml.safe_load(contents, yaml.RoundTripLoader)
  355. except AttributeError:
  356. self.yaml_dict = yaml.safe_load(contents)
  357. # Try to set format attributes if supported
  358. try:
  359. self.yaml_dict.fa.set_block_style()
  360. except AttributeError:
  361. pass
  362. elif content_type == 'json' and contents:
  363. self.yaml_dict = json.loads(contents)
  364. except yaml.YAMLError as err:
  365. # Error loading yaml or json
  366. raise YeditException('Problem with loading yaml file. %s' % err)
  367. return self.yaml_dict
  368. def get(self, key):
  369. ''' get a specified key'''
  370. try:
  371. entry = Yedit.get_entry(self.yaml_dict, key, self.separator)
  372. except KeyError:
  373. entry = None
  374. return entry
  375. def pop(self, path, key_or_item):
  376. ''' remove a key, value pair from a dict or an item for a list'''
  377. try:
  378. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  379. except KeyError:
  380. entry = None
  381. if entry is None:
  382. return (False, self.yaml_dict)
  383. if isinstance(entry, dict):
  384. # AUDIT:maybe-no-member makes sense due to fuzzy types
  385. # pylint: disable=maybe-no-member
  386. if key_or_item in entry:
  387. entry.pop(key_or_item)
  388. return (True, self.yaml_dict)
  389. return (False, self.yaml_dict)
  390. elif isinstance(entry, list):
  391. # AUDIT:maybe-no-member makes sense due to fuzzy types
  392. # pylint: disable=maybe-no-member
  393. ind = None
  394. try:
  395. ind = entry.index(key_or_item)
  396. except ValueError:
  397. return (False, self.yaml_dict)
  398. entry.pop(ind)
  399. return (True, self.yaml_dict)
  400. return (False, self.yaml_dict)
  401. def delete(self, path):
  402. ''' remove path from a dict'''
  403. try:
  404. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  405. except KeyError:
  406. entry = None
  407. if entry is None:
  408. return (False, self.yaml_dict)
  409. result = Yedit.remove_entry(self.yaml_dict, path, self.separator)
  410. if not result:
  411. return (False, self.yaml_dict)
  412. return (True, self.yaml_dict)
  413. def exists(self, path, value):
  414. ''' check if value exists at path'''
  415. try:
  416. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  417. except KeyError:
  418. entry = None
  419. if isinstance(entry, list):
  420. if value in entry:
  421. return True
  422. return False
  423. elif isinstance(entry, dict):
  424. if isinstance(value, dict):
  425. rval = False
  426. for key, val in value.items():
  427. if entry[key] != val:
  428. rval = False
  429. break
  430. else:
  431. rval = True
  432. return rval
  433. return value in entry
  434. return entry == value
  435. def append(self, path, value):
  436. '''append value to a list'''
  437. try:
  438. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  439. except KeyError:
  440. entry = None
  441. if entry is None:
  442. self.put(path, [])
  443. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  444. if not isinstance(entry, list):
  445. return (False, self.yaml_dict)
  446. # AUDIT:maybe-no-member makes sense due to loading data from
  447. # a serialized format.
  448. # pylint: disable=maybe-no-member
  449. entry.append(value)
  450. return (True, self.yaml_dict)
  451. # pylint: disable=too-many-arguments
  452. def update(self, path, value, index=None, curr_value=None):
  453. ''' put path, value into a dict '''
  454. try:
  455. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  456. except KeyError:
  457. entry = None
  458. if isinstance(entry, dict):
  459. # AUDIT:maybe-no-member makes sense due to fuzzy types
  460. # pylint: disable=maybe-no-member
  461. if not isinstance(value, dict):
  462. raise YeditException('Cannot replace key, value entry in ' +
  463. 'dict with non-dict type. value=[%s] [%s]' % (value, type(value))) # noqa: E501
  464. entry.update(value)
  465. return (True, self.yaml_dict)
  466. elif isinstance(entry, list):
  467. # AUDIT:maybe-no-member makes sense due to fuzzy types
  468. # pylint: disable=maybe-no-member
  469. ind = None
  470. if curr_value:
  471. try:
  472. ind = entry.index(curr_value)
  473. except ValueError:
  474. return (False, self.yaml_dict)
  475. elif index is not None:
  476. ind = index
  477. if ind is not None and entry[ind] != value:
  478. entry[ind] = value
  479. return (True, self.yaml_dict)
  480. # see if it exists in the list
  481. try:
  482. ind = entry.index(value)
  483. except ValueError:
  484. # doesn't exist, append it
  485. entry.append(value)
  486. return (True, self.yaml_dict)
  487. # already exists, return
  488. if ind is not None:
  489. return (False, self.yaml_dict)
  490. return (False, self.yaml_dict)
  491. def put(self, path, value):
  492. ''' put path, value into a dict '''
  493. try:
  494. entry = Yedit.get_entry(self.yaml_dict, path, self.separator)
  495. except KeyError:
  496. entry = None
  497. if entry == value:
  498. return (False, self.yaml_dict)
  499. # deepcopy didn't work
  500. # Try to use ruamel.yaml and fallback to pyyaml
  501. try:
  502. tmp_copy = yaml.load(yaml.round_trip_dump(self.yaml_dict,
  503. default_flow_style=False),
  504. yaml.RoundTripLoader)
  505. except AttributeError:
  506. tmp_copy = copy.deepcopy(self.yaml_dict)
  507. # set the format attributes if available
  508. try:
  509. tmp_copy.fa.set_block_style()
  510. except AttributeError:
  511. pass
  512. result = Yedit.add_entry(tmp_copy, path, value, self.separator)
  513. if not result:
  514. return (False, self.yaml_dict)
  515. self.yaml_dict = tmp_copy
  516. return (True, self.yaml_dict)
  517. def create(self, path, value):
  518. ''' create a yaml file '''
  519. if not self.file_exists():
  520. # deepcopy didn't work
  521. # Try to use ruamel.yaml and fallback to pyyaml
  522. try:
  523. tmp_copy = yaml.load(yaml.round_trip_dump(self.yaml_dict,
  524. default_flow_style=False),
  525. yaml.RoundTripLoader)
  526. except AttributeError:
  527. tmp_copy = copy.deepcopy(self.yaml_dict)
  528. # set the format attributes if available
  529. try:
  530. tmp_copy.fa.set_block_style()
  531. except AttributeError:
  532. pass
  533. result = Yedit.add_entry(tmp_copy, path, value, self.separator)
  534. if result:
  535. self.yaml_dict = tmp_copy
  536. return (True, self.yaml_dict)
  537. return (False, self.yaml_dict)
  538. @staticmethod
  539. def get_curr_value(invalue, val_type):
  540. '''return the current value'''
  541. if invalue is None:
  542. return None
  543. curr_value = invalue
  544. if val_type == 'yaml':
  545. curr_value = yaml.load(invalue)
  546. elif val_type == 'json':
  547. curr_value = json.loads(invalue)
  548. return curr_value
  549. @staticmethod
  550. def parse_value(inc_value, vtype=''):
  551. '''determine value type passed'''
  552. true_bools = ['y', 'Y', 'yes', 'Yes', 'YES', 'true', 'True', 'TRUE',
  553. 'on', 'On', 'ON', ]
  554. false_bools = ['n', 'N', 'no', 'No', 'NO', 'false', 'False', 'FALSE',
  555. 'off', 'Off', 'OFF']
  556. # It came in as a string but you didn't specify value_type as string
  557. # we will convert to bool if it matches any of the above cases
  558. if isinstance(inc_value, str) and 'bool' in vtype:
  559. if inc_value not in true_bools and inc_value not in false_bools:
  560. raise YeditException('Not a boolean type. str=[%s] vtype=[%s]'
  561. % (inc_value, vtype))
  562. elif isinstance(inc_value, bool) and 'str' in vtype:
  563. inc_value = str(inc_value)
  564. # If vtype is not str then go ahead and attempt to yaml load it.
  565. if isinstance(inc_value, str) and 'str' not in vtype:
  566. try:
  567. inc_value = yaml.load(inc_value)
  568. except Exception:
  569. raise YeditException('Could not determine type of incoming ' +
  570. 'value. value=[%s] vtype=[%s]'
  571. % (type(inc_value), vtype))
  572. return inc_value
  573. # pylint: disable=too-many-return-statements,too-many-branches
  574. @staticmethod
  575. def run_ansible(module):
  576. '''perform the idempotent crud operations'''
  577. yamlfile = Yedit(filename=module.params['src'],
  578. backup=module.params['backup'],
  579. separator=module.params['separator'])
  580. if module.params['src']:
  581. rval = yamlfile.load()
  582. if yamlfile.yaml_dict is None and \
  583. module.params['state'] != 'present':
  584. return {'failed': True,
  585. 'msg': 'Error opening file [%s]. Verify that the ' +
  586. 'file exists, that it is has correct' +
  587. ' permissions, and is valid yaml.'}
  588. if module.params['state'] == 'list':
  589. if module.params['content']:
  590. content = Yedit.parse_value(module.params['content'],
  591. module.params['content_type'])
  592. yamlfile.yaml_dict = content
  593. if module.params['key']:
  594. rval = yamlfile.get(module.params['key']) or {}
  595. return {'changed': False, 'result': rval, 'state': "list"}
  596. elif module.params['state'] == 'absent':
  597. if module.params['content']:
  598. content = Yedit.parse_value(module.params['content'],
  599. module.params['content_type'])
  600. yamlfile.yaml_dict = content
  601. if module.params['update']:
  602. rval = yamlfile.pop(module.params['key'],
  603. module.params['value'])
  604. else:
  605. rval = yamlfile.delete(module.params['key'])
  606. if rval[0] and module.params['src']:
  607. yamlfile.write()
  608. return {'changed': rval[0], 'result': rval[1], 'state': "absent"}
  609. elif module.params['state'] == 'present':
  610. # check if content is different than what is in the file
  611. if module.params['content']:
  612. content = Yedit.parse_value(module.params['content'],
  613. module.params['content_type'])
  614. # We had no edits to make and the contents are the same
  615. if yamlfile.yaml_dict == content and \
  616. module.params['value'] is None:
  617. return {'changed': False,
  618. 'result': yamlfile.yaml_dict,
  619. 'state': "present"}
  620. yamlfile.yaml_dict = content
  621. # we were passed a value; parse it
  622. if module.params['value']:
  623. value = Yedit.parse_value(module.params['value'],
  624. module.params['value_type'])
  625. key = module.params['key']
  626. if module.params['update']:
  627. # pylint: disable=line-too-long
  628. curr_value = Yedit.get_curr_value(Yedit.parse_value(module.params['curr_value']), # noqa: E501
  629. module.params['curr_value_format']) # noqa: E501
  630. rval = yamlfile.update(key, value, module.params['index'], curr_value) # noqa: E501
  631. elif module.params['append']:
  632. rval = yamlfile.append(key, value)
  633. else:
  634. rval = yamlfile.put(key, value)
  635. if rval[0] and module.params['src']:
  636. yamlfile.write()
  637. return {'changed': rval[0],
  638. 'result': rval[1], 'state': "present"}
  639. # no edits to make
  640. if module.params['src']:
  641. # pylint: disable=redefined-variable-type
  642. rval = yamlfile.write()
  643. return {'changed': rval[0],
  644. 'result': rval[1],
  645. 'state': "present"}
  646. return {'failed': True, 'msg': 'Unkown state passed'}
  647. # -*- -*- -*- End included fragment: ../../lib_utils/src/class/yedit.py -*- -*- -*-
  648. # -*- -*- -*- Begin included fragment: lib/base.py -*- -*- -*-
  649. # pylint: disable=too-many-lines
  650. # noqa: E301,E302,E303,T001
  651. class OpenShiftCLIError(Exception):
  652. '''Exception class for openshiftcli'''
  653. pass
  654. ADDITIONAL_PATH_LOOKUPS = ['/usr/local/bin', os.path.expanduser('~/bin')]
  655. def locate_oc_binary():
  656. ''' Find and return oc binary file '''
  657. # https://github.com/openshift/openshift-ansible/issues/3410
  658. # oc can be in /usr/local/bin in some cases, but that may not
  659. # be in $PATH due to ansible/sudo
  660. paths = os.environ.get("PATH", os.defpath).split(os.pathsep) + ADDITIONAL_PATH_LOOKUPS
  661. oc_binary = 'oc'
  662. # Use shutil.which if it is available, otherwise fallback to a naive path search
  663. try:
  664. which_result = shutil.which(oc_binary, path=os.pathsep.join(paths))
  665. if which_result is not None:
  666. oc_binary = which_result
  667. except AttributeError:
  668. for path in paths:
  669. if os.path.exists(os.path.join(path, oc_binary)):
  670. oc_binary = os.path.join(path, oc_binary)
  671. break
  672. return oc_binary
  673. # pylint: disable=too-few-public-methods
  674. class OpenShiftCLI(object):
  675. ''' Class to wrap the command line tools '''
  676. def __init__(self,
  677. namespace,
  678. kubeconfig='/etc/origin/master/admin.kubeconfig',
  679. verbose=False,
  680. all_namespaces=False):
  681. ''' Constructor for OpenshiftCLI '''
  682. self.namespace = namespace
  683. self.verbose = verbose
  684. self.kubeconfig = Utils.create_tmpfile_copy(kubeconfig)
  685. self.all_namespaces = all_namespaces
  686. self.oc_binary = locate_oc_binary()
  687. # Pylint allows only 5 arguments to be passed.
  688. # pylint: disable=too-many-arguments
  689. def _replace_content(self, resource, rname, content, force=False, sep='.'):
  690. ''' replace the current object with the content '''
  691. res = self._get(resource, rname)
  692. if not res['results']:
  693. return res
  694. fname = Utils.create_tmpfile(rname + '-')
  695. yed = Yedit(fname, res['results'][0], separator=sep)
  696. changes = []
  697. for key, value in content.items():
  698. changes.append(yed.put(key, value))
  699. if any([change[0] for change in changes]):
  700. yed.write()
  701. atexit.register(Utils.cleanup, [fname])
  702. return self._replace(fname, force)
  703. return {'returncode': 0, 'updated': False}
  704. def _replace(self, fname, force=False):
  705. '''replace the current object with oc replace'''
  706. cmd = ['replace', '-f', fname]
  707. if force:
  708. cmd.append('--force')
  709. return self.openshift_cmd(cmd)
  710. def _create_from_content(self, rname, content):
  711. '''create a temporary file and then call oc create on it'''
  712. fname = Utils.create_tmpfile(rname + '-')
  713. yed = Yedit(fname, content=content)
  714. yed.write()
  715. atexit.register(Utils.cleanup, [fname])
  716. return self._create(fname)
  717. def _create(self, fname):
  718. '''call oc create on a filename'''
  719. return self.openshift_cmd(['create', '-f', fname])
  720. def _delete(self, resource, rname, selector=None):
  721. '''call oc delete on a resource'''
  722. cmd = ['delete', resource, rname]
  723. if selector:
  724. cmd.append('--selector=%s' % selector)
  725. return self.openshift_cmd(cmd)
  726. def _process(self, template_name, create=False, params=None, template_data=None): # noqa: E501
  727. '''process a template
  728. template_name: the name of the template to process
  729. create: whether to send to oc create after processing
  730. params: the parameters for the template
  731. template_data: the incoming template's data; instead of a file
  732. '''
  733. cmd = ['process']
  734. if template_data:
  735. cmd.extend(['-f', '-'])
  736. else:
  737. cmd.append(template_name)
  738. if params:
  739. param_str = ["%s=%s" % (key, value) for key, value in params.items()]
  740. cmd.append('-v')
  741. cmd.extend(param_str)
  742. results = self.openshift_cmd(cmd, output=True, input_data=template_data)
  743. if results['returncode'] != 0 or not create:
  744. return results
  745. fname = Utils.create_tmpfile(template_name + '-')
  746. yed = Yedit(fname, results['results'])
  747. yed.write()
  748. atexit.register(Utils.cleanup, [fname])
  749. return self.openshift_cmd(['create', '-f', fname])
  750. def _get(self, resource, rname=None, selector=None):
  751. '''return a resource by name '''
  752. cmd = ['get', resource]
  753. if selector:
  754. cmd.append('--selector=%s' % selector)
  755. elif rname:
  756. cmd.append(rname)
  757. cmd.extend(['-o', 'json'])
  758. rval = self.openshift_cmd(cmd, output=True)
  759. # Ensure results are retuned in an array
  760. if 'items' in rval:
  761. rval['results'] = rval['items']
  762. elif not isinstance(rval['results'], list):
  763. rval['results'] = [rval['results']]
  764. return rval
  765. def _schedulable(self, node=None, selector=None, schedulable=True):
  766. ''' perform oadm manage-node scheduable '''
  767. cmd = ['manage-node']
  768. if node:
  769. cmd.extend(node)
  770. else:
  771. cmd.append('--selector=%s' % selector)
  772. cmd.append('--schedulable=%s' % schedulable)
  773. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw') # noqa: E501
  774. def _list_pods(self, node=None, selector=None, pod_selector=None):
  775. ''' perform oadm list pods
  776. node: the node in which to list pods
  777. selector: the label selector filter if provided
  778. pod_selector: the pod selector filter if provided
  779. '''
  780. cmd = ['manage-node']
  781. if node:
  782. cmd.extend(node)
  783. else:
  784. cmd.append('--selector=%s' % selector)
  785. if pod_selector:
  786. cmd.append('--pod-selector=%s' % pod_selector)
  787. cmd.extend(['--list-pods', '-o', 'json'])
  788. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  789. # pylint: disable=too-many-arguments
  790. def _evacuate(self, node=None, selector=None, pod_selector=None, dry_run=False, grace_period=None, force=False):
  791. ''' perform oadm manage-node evacuate '''
  792. cmd = ['manage-node']
  793. if node:
  794. cmd.extend(node)
  795. else:
  796. cmd.append('--selector=%s' % selector)
  797. if dry_run:
  798. cmd.append('--dry-run')
  799. if pod_selector:
  800. cmd.append('--pod-selector=%s' % pod_selector)
  801. if grace_period:
  802. cmd.append('--grace-period=%s' % int(grace_period))
  803. if force:
  804. cmd.append('--force')
  805. cmd.append('--evacuate')
  806. return self.openshift_cmd(cmd, oadm=True, output=True, output_type='raw')
  807. def _version(self):
  808. ''' return the openshift version'''
  809. return self.openshift_cmd(['version'], output=True, output_type='raw')
  810. def _import_image(self, url=None, name=None, tag=None):
  811. ''' perform image import '''
  812. cmd = ['import-image']
  813. image = '{0}'.format(name)
  814. if tag:
  815. image += ':{0}'.format(tag)
  816. cmd.append(image)
  817. if url:
  818. cmd.append('--from={0}/{1}'.format(url, image))
  819. cmd.append('-n{0}'.format(self.namespace))
  820. cmd.append('--confirm')
  821. return self.openshift_cmd(cmd)
  822. def _run(self, cmds, input_data):
  823. ''' Actually executes the command. This makes mocking easier. '''
  824. curr_env = os.environ.copy()
  825. curr_env.update({'KUBECONFIG': self.kubeconfig})
  826. proc = subprocess.Popen(cmds,
  827. stdin=subprocess.PIPE,
  828. stdout=subprocess.PIPE,
  829. stderr=subprocess.PIPE,
  830. env=curr_env)
  831. stdout, stderr = proc.communicate(input_data)
  832. return proc.returncode, stdout.decode(), stderr.decode()
  833. # pylint: disable=too-many-arguments,too-many-branches
  834. def openshift_cmd(self, cmd, oadm=False, output=False, output_type='json', input_data=None):
  835. '''Base command for oc '''
  836. cmds = [self.oc_binary]
  837. if oadm:
  838. cmds.append('adm')
  839. cmds.extend(cmd)
  840. if self.all_namespaces:
  841. cmds.extend(['--all-namespaces'])
  842. elif self.namespace is not None and self.namespace.lower() not in ['none', 'emtpy']: # E501
  843. cmds.extend(['-n', self.namespace])
  844. rval = {}
  845. results = ''
  846. err = None
  847. if self.verbose:
  848. print(' '.join(cmds))
  849. try:
  850. returncode, stdout, stderr = self._run(cmds, input_data)
  851. except OSError as ex:
  852. returncode, stdout, stderr = 1, '', 'Failed to execute {}: {}'.format(subprocess.list2cmdline(cmds), ex)
  853. rval = {"returncode": returncode,
  854. "results": results,
  855. "cmd": ' '.join(cmds)}
  856. if returncode == 0:
  857. if output:
  858. if output_type == 'json':
  859. try:
  860. rval['results'] = json.loads(stdout)
  861. except ValueError as err:
  862. if "No JSON object could be decoded" in err.args:
  863. err = err.args
  864. elif output_type == 'raw':
  865. rval['results'] = stdout
  866. if self.verbose:
  867. print("STDOUT: {0}".format(stdout))
  868. print("STDERR: {0}".format(stderr))
  869. if err:
  870. rval.update({"err": err,
  871. "stderr": stderr,
  872. "stdout": stdout,
  873. "cmd": cmds})
  874. else:
  875. rval.update({"stderr": stderr,
  876. "stdout": stdout,
  877. "results": {}})
  878. return rval
  879. class Utils(object):
  880. ''' utilities for openshiftcli modules '''
  881. @staticmethod
  882. def _write(filename, contents):
  883. ''' Actually write the file contents to disk. This helps with mocking. '''
  884. with open(filename, 'w') as sfd:
  885. sfd.write(contents)
  886. @staticmethod
  887. def create_tmp_file_from_contents(rname, data, ftype='yaml'):
  888. ''' create a file in tmp with name and contents'''
  889. tmp = Utils.create_tmpfile(prefix=rname)
  890. if ftype == 'yaml':
  891. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  892. # pylint: disable=no-member
  893. if hasattr(yaml, 'RoundTripDumper'):
  894. Utils._write(tmp, yaml.dump(data, Dumper=yaml.RoundTripDumper))
  895. else:
  896. Utils._write(tmp, yaml.safe_dump(data, default_flow_style=False))
  897. elif ftype == 'json':
  898. Utils._write(tmp, json.dumps(data))
  899. else:
  900. Utils._write(tmp, data)
  901. # Register cleanup when module is done
  902. atexit.register(Utils.cleanup, [tmp])
  903. return tmp
  904. @staticmethod
  905. def create_tmpfile_copy(inc_file):
  906. '''create a temporary copy of a file'''
  907. tmpfile = Utils.create_tmpfile('lib_openshift-')
  908. Utils._write(tmpfile, open(inc_file).read())
  909. # Cleanup the tmpfile
  910. atexit.register(Utils.cleanup, [tmpfile])
  911. return tmpfile
  912. @staticmethod
  913. def create_tmpfile(prefix='tmp'):
  914. ''' Generates and returns a temporary file name '''
  915. with tempfile.NamedTemporaryFile(prefix=prefix, delete=False) as tmp:
  916. return tmp.name
  917. @staticmethod
  918. def create_tmp_files_from_contents(content, content_type=None):
  919. '''Turn an array of dict: filename, content into a files array'''
  920. if not isinstance(content, list):
  921. content = [content]
  922. files = []
  923. for item in content:
  924. path = Utils.create_tmp_file_from_contents(item['path'] + '-',
  925. item['data'],
  926. ftype=content_type)
  927. files.append({'name': os.path.basename(item['path']),
  928. 'path': path})
  929. return files
  930. @staticmethod
  931. def cleanup(files):
  932. '''Clean up on exit '''
  933. for sfile in files:
  934. if os.path.exists(sfile):
  935. if os.path.isdir(sfile):
  936. shutil.rmtree(sfile)
  937. elif os.path.isfile(sfile):
  938. os.remove(sfile)
  939. @staticmethod
  940. def exists(results, _name):
  941. ''' Check to see if the results include the name '''
  942. if not results:
  943. return False
  944. if Utils.find_result(results, _name):
  945. return True
  946. return False
  947. @staticmethod
  948. def find_result(results, _name):
  949. ''' Find the specified result by name'''
  950. rval = None
  951. for result in results:
  952. if 'metadata' in result and result['metadata']['name'] == _name:
  953. rval = result
  954. break
  955. return rval
  956. @staticmethod
  957. def get_resource_file(sfile, sfile_type='yaml'):
  958. ''' return the service file '''
  959. contents = None
  960. with open(sfile) as sfd:
  961. contents = sfd.read()
  962. if sfile_type == 'yaml':
  963. # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
  964. # pylint: disable=no-member
  965. if hasattr(yaml, 'RoundTripLoader'):
  966. contents = yaml.load(contents, yaml.RoundTripLoader)
  967. else:
  968. contents = yaml.safe_load(contents)
  969. elif sfile_type == 'json':
  970. contents = json.loads(contents)
  971. return contents
  972. @staticmethod
  973. def filter_versions(stdout):
  974. ''' filter the oc version output '''
  975. version_dict = {}
  976. version_search = ['oc', 'openshift', 'kubernetes']
  977. for line in stdout.strip().split('\n'):
  978. for term in version_search:
  979. if not line:
  980. continue
  981. if line.startswith(term):
  982. version_dict[term] = line.split()[-1]
  983. # horrible hack to get openshift version in Openshift 3.2
  984. # By default "oc version in 3.2 does not return an "openshift" version
  985. if "openshift" not in version_dict:
  986. version_dict["openshift"] = version_dict["oc"]
  987. return version_dict
  988. @staticmethod
  989. def add_custom_versions(versions):
  990. ''' create custom versions strings '''
  991. versions_dict = {}
  992. for tech, version in versions.items():
  993. # clean up "-" from version
  994. if "-" in version:
  995. version = version.split("-")[0]
  996. if version.startswith('v'):
  997. versions_dict[tech + '_numeric'] = version[1:].split('+')[0]
  998. # "v3.3.0.33" is what we have, we want "3.3"
  999. versions_dict[tech + '_short'] = version[1:4]
  1000. return versions_dict
  1001. @staticmethod
  1002. def openshift_installed():
  1003. ''' check if openshift is installed '''
  1004. import yum
  1005. yum_base = yum.YumBase()
  1006. if yum_base.rpmdb.searchNevra(name='atomic-openshift'):
  1007. return True
  1008. return False
  1009. # Disabling too-many-branches. This is a yaml dictionary comparison function
  1010. # pylint: disable=too-many-branches,too-many-return-statements,too-many-statements
  1011. @staticmethod
  1012. def check_def_equal(user_def, result_def, skip_keys=None, debug=False):
  1013. ''' Given a user defined definition, compare it with the results given back by our query. '''
  1014. # Currently these values are autogenerated and we do not need to check them
  1015. skip = ['metadata', 'status']
  1016. if skip_keys:
  1017. skip.extend(skip_keys)
  1018. for key, value in result_def.items():
  1019. if key in skip:
  1020. continue
  1021. # Both are lists
  1022. if isinstance(value, list):
  1023. if key not in user_def:
  1024. if debug:
  1025. print('User data does not have key [%s]' % key)
  1026. print('User data: %s' % user_def)
  1027. return False
  1028. if not isinstance(user_def[key], list):
  1029. if debug:
  1030. print('user_def[key] is not a list key=[%s] user_def[key]=%s' % (key, user_def[key]))
  1031. return False
  1032. if len(user_def[key]) != len(value):
  1033. if debug:
  1034. print("List lengths are not equal.")
  1035. print("key=[%s]: user_def[%s] != value[%s]" % (key, len(user_def[key]), len(value)))
  1036. print("user_def: %s" % user_def[key])
  1037. print("value: %s" % value)
  1038. return False
  1039. for values in zip(user_def[key], value):
  1040. if isinstance(values[0], dict) and isinstance(values[1], dict):
  1041. if debug:
  1042. print('sending list - list')
  1043. print(type(values[0]))
  1044. print(type(values[1]))
  1045. result = Utils.check_def_equal(values[0], values[1], skip_keys=skip_keys, debug=debug)
  1046. if not result:
  1047. print('list compare returned false')
  1048. return False
  1049. elif value != user_def[key]:
  1050. if debug:
  1051. print('value should be identical')
  1052. print(user_def[key])
  1053. print(value)
  1054. return False
  1055. # recurse on a dictionary
  1056. elif isinstance(value, dict):
  1057. if key not in user_def:
  1058. if debug:
  1059. print("user_def does not have key [%s]" % key)
  1060. return False
  1061. if not isinstance(user_def[key], dict):
  1062. if debug:
  1063. print("dict returned false: not instance of dict")
  1064. return False
  1065. # before passing ensure keys match
  1066. api_values = set(value.keys()) - set(skip)
  1067. user_values = set(user_def[key].keys()) - set(skip)
  1068. if api_values != user_values:
  1069. if debug:
  1070. print("keys are not equal in dict")
  1071. print(user_values)
  1072. print(api_values)
  1073. return False
  1074. result = Utils.check_def_equal(user_def[key], value, skip_keys=skip_keys, debug=debug)
  1075. if not result:
  1076. if debug:
  1077. print("dict returned false")
  1078. print(result)
  1079. return False
  1080. # Verify each key, value pair is the same
  1081. else:
  1082. if key not in user_def or value != user_def[key]:
  1083. if debug:
  1084. print("value not equal; user_def does not have key")
  1085. print(key)
  1086. print(value)
  1087. if key in user_def:
  1088. print(user_def[key])
  1089. return False
  1090. if debug:
  1091. print('returning true')
  1092. return True
  1093. class OpenShiftCLIConfig(object):
  1094. '''Generic Config'''
  1095. def __init__(self, rname, namespace, kubeconfig, options):
  1096. self.kubeconfig = kubeconfig
  1097. self.name = rname
  1098. self.namespace = namespace
  1099. self._options = options
  1100. @property
  1101. def config_options(self):
  1102. ''' return config options '''
  1103. return self._options
  1104. def to_option_list(self):
  1105. '''return all options as a string'''
  1106. return self.stringify()
  1107. def stringify(self):
  1108. ''' return the options hash as cli params in a string '''
  1109. rval = []
  1110. for key in sorted(self.config_options.keys()):
  1111. data = self.config_options[key]
  1112. if data['include'] \
  1113. and (data['value'] or isinstance(data['value'], int)):
  1114. rval.append('--{}={}'.format(key.replace('_', '-'), data['value']))
  1115. return rval
  1116. # -*- -*- -*- End included fragment: lib/base.py -*- -*- -*-
  1117. # -*- -*- -*- Begin included fragment: class/oc_adm_ca_server_cert.py -*- -*- -*-
  1118. class CAServerCertConfig(OpenShiftCLIConfig):
  1119. ''' CAServerCertConfig is a DTO for the oc adm ca command '''
  1120. def __init__(self, kubeconfig, verbose, ca_options):
  1121. super(CAServerCertConfig, self).__init__('ca', None, kubeconfig, ca_options)
  1122. self.kubeconfig = kubeconfig
  1123. self.verbose = verbose
  1124. self._ca = ca_options
  1125. class CAServerCert(OpenShiftCLI):
  1126. ''' Class to wrap the oc adm ca create-server-cert command line'''
  1127. def __init__(self,
  1128. config,
  1129. verbose=False):
  1130. ''' Constructor for oadm ca '''
  1131. super(CAServerCert, self).__init__(None, config.kubeconfig, verbose)
  1132. self.config = config
  1133. self.verbose = verbose
  1134. def get(self):
  1135. '''get the current cert file
  1136. If a file exists by the same name in the specified location then the cert exists
  1137. '''
  1138. cert = self.config.config_options['cert']['value']
  1139. if cert and os.path.exists(cert):
  1140. return open(cert).read()
  1141. return None
  1142. def create(self):
  1143. '''run openshift oc adm ca create-server-cert cmd'''
  1144. # Added this here as a safegaurd for stomping on the
  1145. # cert and key files if they exist
  1146. if self.config.config_options['backup']['value']:
  1147. import time
  1148. ext = time.strftime("%Y-%m-%d@%H:%M:%S", time.localtime(time.time()))
  1149. date_str = "%s_" + "%s" % ext
  1150. if os.path.exists(self.config.config_options['key']['value']):
  1151. shutil.copy(self.config.config_options['key']['value'],
  1152. date_str % self.config.config_options['key']['value'])
  1153. if os.path.exists(self.config.config_options['cert']['value']):
  1154. shutil.copy(self.config.config_options['cert']['value'],
  1155. date_str % self.config.config_options['cert']['value'])
  1156. options = self.config.to_option_list()
  1157. cmd = ['ca', 'create-server-cert']
  1158. cmd.extend(options)
  1159. return self.openshift_cmd(cmd, oadm=True)
  1160. def exists(self):
  1161. ''' check whether the certificate exists and has the clusterIP '''
  1162. cert_path = self.config.config_options['cert']['value']
  1163. if not os.path.exists(cert_path):
  1164. return False
  1165. # Would prefer pyopenssl but is not installed.
  1166. # When we verify it is, switch this code
  1167. # Here is the code to get the subject and the SAN
  1168. # openssl x509 -text -noout -certopt \
  1169. # no_header,no_version,no_serial,no_signame,no_validity,no_issuer,no_pubkey,no_sigdump,no_aux \
  1170. # -in /etc/origin/master/registry.crt
  1171. # Instead of this solution we will use a regex.
  1172. cert_names = []
  1173. hostnames = self.config.config_options['hostnames']['value'].split(',')
  1174. proc = subprocess.Popen(['openssl', 'x509', '-noout', '-text', '-in', cert_path],
  1175. stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  1176. x509output, _ = proc.communicate()
  1177. if proc.returncode == 0:
  1178. regex = re.compile(r"^\s*X509v3 Subject Alternative Name:\s*?\n\s*(.*)\s*\n", re.MULTILINE)
  1179. match = regex.search(x509output) # E501
  1180. for entry in re.split(r", *", match.group(1)):
  1181. if entry.startswith('DNS') or entry.startswith('IP Address'):
  1182. cert_names.append(entry.split(':')[1])
  1183. # now that we have cert names let's compare
  1184. cert_set = set(cert_names)
  1185. hname_set = set(hostnames)
  1186. if cert_set.issubset(hname_set) and hname_set.issubset(cert_set):
  1187. return True
  1188. return False
  1189. @staticmethod
  1190. def run_ansible(params, check_mode):
  1191. '''run the idempotent ansible code'''
  1192. config = CAServerCertConfig(params['kubeconfig'],
  1193. params['debug'],
  1194. {'cert': {'value': params['cert'], 'include': True},
  1195. 'hostnames': {'value': ','.join(params['hostnames']), 'include': True},
  1196. 'overwrite': {'value': True, 'include': True},
  1197. 'key': {'value': params['key'], 'include': True},
  1198. 'signer_cert': {'value': params['signer_cert'], 'include': True},
  1199. 'signer_key': {'value': params['signer_key'], 'include': True},
  1200. 'signer_serial': {'value': params['signer_serial'], 'include': True},
  1201. 'backup': {'value': params['backup'], 'include': False},
  1202. })
  1203. server_cert = CAServerCert(config)
  1204. state = params['state']
  1205. if state == 'present':
  1206. ########
  1207. # Create
  1208. ########
  1209. if not server_cert.exists() or params['force']:
  1210. if check_mode:
  1211. return {'changed': True,
  1212. 'msg': "CHECK_MODE: Would have created the certificate.",
  1213. 'state': state}
  1214. api_rval = server_cert.create()
  1215. if api_rval['returncode'] != 0:
  1216. return {'Failed': True, 'msg': api_rval}
  1217. return {'changed': True, 'results': api_rval, 'state': state}
  1218. ########
  1219. # Exists
  1220. ########
  1221. api_rval = server_cert.get()
  1222. return {'changed': False, 'results': api_rval, 'state': state}
  1223. return {'failed': True,
  1224. 'msg': 'Unknown state passed. %s' % state}
  1225. # -*- -*- -*- End included fragment: class/oc_adm_ca_server_cert.py -*- -*- -*-
  1226. # -*- -*- -*- Begin included fragment: ansible/oc_adm_ca_server_cert.py -*- -*- -*-
  1227. def main():
  1228. '''
  1229. ansible oc adm module for ca create-server-cert
  1230. '''
  1231. module = AnsibleModule(
  1232. argument_spec=dict(
  1233. state=dict(default='present', type='str', choices=['present']),
  1234. debug=dict(default=False, type='bool'),
  1235. kubeconfig=dict(default='/etc/origin/master/admin.kubeconfig', type='str'),
  1236. backup=dict(default=True, type='bool'),
  1237. force=dict(default=False, type='bool'),
  1238. # oc adm ca create-server-cert [options]
  1239. cert=dict(default=None, type='str'),
  1240. key=dict(default=None, type='str'),
  1241. signer_cert=dict(default='/etc/origin/master/ca.crt', type='str'),
  1242. signer_key=dict(default='/etc/origin/master/ca.key', type='str'),
  1243. signer_serial=dict(default='/etc/origin/master/ca.serial.txt', type='str'),
  1244. hostnames=dict(default=[], type='list'),
  1245. ),
  1246. supports_check_mode=True,
  1247. )
  1248. results = CAServerCert.run_ansible(module.params, module.check_mode)
  1249. if 'failed' in results:
  1250. return module.fail_json(**results)
  1251. return module.exit_json(**results)
  1252. if __name__ == '__main__':
  1253. main()
  1254. # -*- -*- -*- End included fragment: ansible/oc_adm_ca_server_cert.py -*- -*- -*-