oc_adm_csr.py 56 KB

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