blob: 30de749b81853ffb12b3633c924338aff5f698fb [file] [log] [blame]
Alex Savatieiev9b2f6512019-02-20 18:05:00 -06001import json
2import os
3import sys
4
5from copy import deepcopy
6
7from cfg_checker.common import utils, const
8from cfg_checker.common import config, logger, logger_cli, pkg_dir
9from cfg_checker.common import salt_utils
10
11node_tmpl = {
12 'role': '',
13 'node_group': '',
14 'status': const.NODE_DOWN,
15 'pillars': {},
16 'grains': {}
17}
18
19
20class SaltNodes(object):
21 def __init__(self):
Alex Savatieiev42b89fa2019-03-07 18:45:26 -060022 logger_cli.info("# Collecting nodes")
Alex Savatieiev9b2f6512019-02-20 18:05:00 -060023 # simple salt rest client
24 self.salt = salt_utils.SaltRemote()
25
26 # Keys for all nodes
27 # this is not working in scope of 2016.8.3, will overide with list
Alex Savatieiev42b89fa2019-03-07 18:45:26 -060028 logger_cli.debug("...collecting node names existing in the cloud")
Alex Savatieiev9df93a92019-02-27 17:40:16 -060029 try:
30 _keys = self.salt.list_keys()
31 _str = []
32 for _k, _v in _keys.iteritems():
33 _str.append("{}: {}".format(_k, len(_v)))
34 logger_cli.info("-> keys collected: {}".format(", ".join(_str)))
Alex Savatieiev9b2f6512019-02-20 18:05:00 -060035
Alex Savatieiev9df93a92019-02-27 17:40:16 -060036 self.node_keys = {
37 'minions': _keys['minions']
38 }
39 except Exception as e:
40 _keys = None
41 self.node_keys = None
42
43 # List of minions with grains
44 _minions = self.salt.list_minions()
45 if _minions:
46 logger_cli.info("-> api reported {} active minions".format(len(_minions)))
47 elif not self.node_keys:
48 # this is the last resort
49 _minions = config.load_nodes_list()
50 logger_cli.info("-> {} nodes loaded from list file".format(len(_minions)))
51 else:
52 _minions = self.node_keys['minions']
Alex Savatieiev9b2f6512019-02-20 18:05:00 -060053
Alex Savatieiev9df93a92019-02-27 17:40:16 -060054 # in case API not listed minions, we need all that answer ping
Alex Savatieiev9b2f6512019-02-20 18:05:00 -060055 _active = self.salt.get_active_nodes()
Alex Savatieiev9df93a92019-02-27 17:40:16 -060056 logger_cli.info("-> nodes responded: {}".format(len(_active)))
Alex Savatieiev9b2f6512019-02-20 18:05:00 -060057 # just inventory for faster interaction
58 # iterate through all accepted nodes and create a dict for it
59 self.nodes = {}
Alex Savatieievefa79c42019-03-14 19:14:04 -050060 self.skip_list = []
Alex Savatieiev9df93a92019-02-27 17:40:16 -060061 for _name in _minions:
Alex Savatieiev9b2f6512019-02-20 18:05:00 -060062 _nc = utils.get_node_code(_name)
63 _rmap = const.all_roles_map
64 _role = _rmap[_nc] if _nc in _rmap else 'unknown'
65 _status = const.NODE_UP if _name in _active else const.NODE_DOWN
Alex Savatieievefa79c42019-03-14 19:14:04 -050066 if _status == const.NODE_DOWN:
67 self.skip_list.append(_name)
68 logger_cli.info("-> '{}' is down, marked to skip".format(
69 _name
70 ))
Alex Savatieiev9b2f6512019-02-20 18:05:00 -060071 self.nodes[_name] = deepcopy(node_tmpl)
72 self.nodes[_name]['node_group'] = _nc
73 self.nodes[_name]['role'] = _role
74 self.nodes[_name]['status'] = _status
Alex Savatieievefa79c42019-03-14 19:14:04 -050075 logger_cli.info("-> {} nodes inactive".format(len(self.skip_list)))
Alex Savatieiev9b2f6512019-02-20 18:05:00 -060076 logger_cli.info("-> {} nodes collected".format(len(self.nodes)))
77
Alex Savatieiev9b2f6512019-02-20 18:05:00 -060078 # form an all nodes compound string to use in salt
Alex Savatieiev01f0d7f2019-03-07 17:53:29 -060079 self.active_nodes_compound = self.salt.compound_string_from_list(
Alex Savatieiev9b2f6512019-02-20 18:05:00 -060080 filter(
81 lambda nd: self.nodes[nd]['status'] == const.NODE_UP,
82 self.nodes
83 )
84 )
Alex Savatieiev01f0d7f2019-03-07 17:53:29 -060085
86 def get_nodes(self):
87 return self.nodes
88
89 def get_specific_pillar_for_nodes(self, pillar_path):
90 """Function gets pillars on given path for all nodes
91
92 :return: no return value, data pulished internally
93 """
Alex Savatieiev42b89fa2019-03-07 18:45:26 -060094 logger_cli.debug("...collecting node pillars for '{}'".format(pillar_path))
Alex Savatieiev01f0d7f2019-03-07 17:53:29 -060095 _result = self.salt.pillar_get(self.active_nodes_compound, pillar_path)
Alex Savatieievefa79c42019-03-14 19:14:04 -050096 self.not_responded = []
Alex Savatieiev01f0d7f2019-03-07 17:53:29 -060097 for node, data in self.nodes.iteritems():
Alex Savatieievefa79c42019-03-14 19:14:04 -050098 if node in self.skip_list:
99 logger_cli.debug(
100 "... '{}' skipped while collecting '{}'".format(
101 node,
102 pillar_path
103 )
104 )
105 continue
Alex Savatieiev01f0d7f2019-03-07 17:53:29 -0600106 _pillar_keys = pillar_path.split(':')
107 _data = data['pillars']
108 # pre-create nested dict
109 for idx in range(0, len(_pillar_keys)-1):
110 _key = _pillar_keys[idx]
111 if _key not in _data:
112 _data[_key] = {}
113 _data = _data[_key]
Alex Savatieievefa79c42019-03-14 19:14:04 -0500114 if data['status'] == const.NODE_DOWN:
115 _data[_pillar_keys[-1]] = None
116 elif not _result[node]:
117 logger_cli.debug(
118 "... '{}' not responded after '{}'".format(
119 node,
120 config.salt_timeout
121 )
122 )
123 _data[_pillar_keys[-1]] = None
124 self.not_responded.append(node)
125 else:
126 _data[_pillar_keys[-1]] = _result[node]
Alex Savatieiev01f0d7f2019-03-07 17:53:29 -0600127
128 def execute_script_on_active_nodes(self, script_filename, args=[]):
Alex Savatieiev9b2f6512019-02-20 18:05:00 -0600129 # Prepare script
130 _p = os.path.join(pkg_dir, 'scripts', script_filename)
131 with open(_p, 'rt') as fd:
132 _script = fd.read().splitlines()
133 _storage_path = os.path.join(
134 config.salt_file_root, config.salt_scripts_folder
135 )
136 logger_cli.debug(
Alex Savatieiev42b89fa2019-03-07 18:45:26 -0600137 "...Uploading script {} to master's file cache folder: '{}'".format(
Alex Savatieiev9b2f6512019-02-20 18:05:00 -0600138 script_filename,
139 _storage_path
140 )
141 )
142 _result = self.salt.mkdir("cfg01*", _storage_path)
143 # Form cache, source and target path
144 _cache_path = os.path.join(_storage_path, script_filename)
145 _source_path = os.path.join(
146 'salt://',
147 config.salt_scripts_folder,
148 script_filename
149 )
150 _target_path = os.path.join(
151 '/root',
152 config.salt_scripts_folder,
153 script_filename
154 )
155
Alex Savatieiev42b89fa2019-03-07 18:45:26 -0600156 logger_cli.debug("...creating file in cache '{}'".format(_cache_path))
Alex Savatieiev9b2f6512019-02-20 18:05:00 -0600157 _result = self.salt.f_touch_master(_cache_path)
158 _result = self.salt.f_append_master(_cache_path, _script)
159 # command salt to copy file to minions
Alex Savatieiev42b89fa2019-03-07 18:45:26 -0600160 logger_cli.debug("...creating script target folder '{}'".format(_cache_path))
Alex Savatieiev9b2f6512019-02-20 18:05:00 -0600161 _result = self.salt.mkdir(
Alex Savatieiev01f0d7f2019-03-07 17:53:29 -0600162 self.active_nodes_compound,
Alex Savatieiev9b2f6512019-02-20 18:05:00 -0600163 os.path.join(
164 '/root',
165 config.salt_scripts_folder
166 ),
167 tgt_type="compound"
168 )
169 logger_cli.info("-> Running script to all active nodes")
170 _result = self.salt.get_file(
Alex Savatieiev01f0d7f2019-03-07 17:53:29 -0600171 self.active_nodes_compound,
Alex Savatieiev9b2f6512019-02-20 18:05:00 -0600172 _source_path,
173 _target_path,
174 tgt_type="compound"
175 )
176 # execute pkg collecting script
177 logger.debug("Running script to all nodes")
178 # handle results for each node
179 _script_arguments = " ".join(args) if args else ""
Alex Savatieievefa79c42019-03-14 19:14:04 -0500180 self.not_responded = []
181 _r = self.salt.cmd(
Alex Savatieiev01f0d7f2019-03-07 17:53:29 -0600182 self.active_nodes_compound,
Alex Savatieiev9b2f6512019-02-20 18:05:00 -0600183 'cmd.run',
184 param='python {} {}'.format(_target_path, _script_arguments),
185 expr_form="compound"
186 )
187
Alex Savatieievefa79c42019-03-14 19:14:04 -0500188 # all false returns means that there is no response
189 self.not_responded = [_n for _n in _r.keys() if not _r[_n]]
190 return _r
Alex Savatieiev9b2f6512019-02-20 18:05:00 -0600191
Alex Savatieievefa79c42019-03-14 19:14:04 -0500192 def is_node_available(self, node, log=True):
193 if node in self.skip_list:
194 if log:
195 logger_cli.info("-> node '{}' not active".format(node))
196 return False
197 elif node in self.not_responded:
198 if log:
199 logger_cli.info("-> node '{}' not responded".format(node))
200 return False
201 else:
202 return True
203