oc_adm_ca_server_cert.py 57 KB

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