1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
|
# The ZeekControl interactive shell.
from __future__ import print_function
import os
import sys
import logging
from ZeekControl import lock
from ZeekControl import config
from ZeekControl import cmdresult
from ZeekControl import execute
from ZeekControl import control
from ZeekControl import version
from ZeekControl import pluginreg
from ZeekControl import node as node_mod
from ZeekControl.exceptions import *
class TermUI:
def info(self, txt):
print(txt)
def error(self, txt):
print(txt, file=sys.stderr)
warn = error
class NullHandler(logging.Handler):
def emit(self, record):
pass
def expose(func):
func.api_exposed = True
return func
def lock_required(func):
def wrapper(self, *args, **kwargs):
self.lock()
try:
return func(self, *args, **kwargs)
finally:
self.unlock()
wrapper.lock_required = True
return wrapper
def lock_required_silent(func):
def wrapper(self, *args, **kwargs):
self.lock(showwait=False)
try:
return func(self, *args, **kwargs)
finally:
self.unlock()
wrapper.lock_required = True
return wrapper
def check_config(func):
def wrapper(self, *args, **kwargs):
if config.Config.is_cfg_changed():
self.ui.warn('Configuration has changed. Run the "deploy" command.')
return func(self, *args, **kwargs)
return wrapper
class ZeekCtl(object):
def __init__(self, basedir=version.ZEEKBASE, cfgfile=version.CFGFILE, zeekscriptdir=version.ZEEKSCRIPTDIR, ui=TermUI(), state=None):
self.ui = ui
self.zeekbase = basedir
self.config = config.Configuration(self.zeekbase, cfgfile, zeekscriptdir, self.ui, state)
# Remove all log handlers (set by any previous calls to logging.*)
logging.getLogger().handlers = []
if self.config.debug:
# Add a log handler that logs to a file.
try:
logging.basicConfig(filename=self.config.debuglog,
format="%(asctime)s [%(module)s] %(message)s",
datefmt=self.config.timefmt,
level=logging.DEBUG)
except IOError as err:
raise RuntimeEnvironmentError("%s\nCheck if the user running ZeekControl has write access to the debug log file." % err)
else:
# Add a log handler that does nothing.
h = NullHandler()
logging.getLogger().addHandler(h)
self.executor = execute.Executor(self.config)
self.plugins = pluginreg.PluginRegistry()
self.setup()
self.controller = control.Controller(self.config, self.ui, self.executor, self.plugins)
def setup(self):
plugindirs = self.config.sitepluginpath.split(":")
plugindirs.append(self.config.plugindir)
plugindirs.append(self.config.pluginzeekdir)
for pdir in plugindirs:
if pdir:
self.plugins.addDir(pdir)
self.plugins.loadPlugins(self.ui, self.executor)
self.plugins.initPluginOptions()
self.plugins.addNodeKeys()
self.config.initPostPlugins()
self.plugins.initPlugins(self.ui)
self.plugins.initPluginCmds()
os.chdir(self.config.zeekbase)
if self.config.get_state("cronenabled") is None:
self.config.set_state("cronenabled", True)
def reload_cfg(self):
self.config.reload_cfg()
if self.config.debug:
if isinstance(logging.getLogger().handlers[0], NullHandler):
# Remove the null handler and configure logging to a file.
logging.getLogger().handlers = []
logging.basicConfig(filename=self.config.debuglog,
format="%(asctime)s [%(module)s] %(message)s",
datefmt=self.config.timefmt,
level=logging.DEBUG)
# Re-enable all log levels.
logging.disable(logging.NOTSET)
else:
# Disable logging to all log levels that we use.
logging.disable(logging.CRITICAL)
self.executor.finish()
self.plugins.initPluginOptions()
self.config.initPostPlugins()
self.plugins.initPlugins(self.ui)
self.plugins.initPluginCmds()
def finish(self):
self.executor.finish()
self.plugins.finishPlugins()
def warn_zeekctl_install(self):
self.config.warn_zeekctl_install()
# Turns node name arguments into a list of nodes. If "get_hosts" is True,
# then only one node per host is chosen. If "get_types" is True, then
# only one node per node type (manager, proxy, etc.) is chosen.
def node_args(self, args=None, get_hosts=False, get_types=False):
nodes = []
if args:
for arg in args.split():
nodelist = self.config.nodes(arg)
if not nodelist:
raise InvalidNodeError("unknown node '%s'" % arg)
nodes += nodelist
# Remove duplicate nodes
newlist = list(set(nodes))
if len(newlist) != len(nodes):
nodes = newlist
else:
# Get all nodes.
nodes = self.config.nodes()
# Sort the list so that it doesn't depend on initial order of arguments
nodes.sort(key=node_mod.sortnode)
if get_hosts:
hosts = {}
hostnodes = []
for node in nodes:
if node.host not in hosts:
hosts[node.host] = 1
hostnodes.append(node)
nodes = hostnodes
if get_types:
types = {}
typenodes = []
for node in nodes:
if node.type not in types:
types[node.type] = 1
typenodes.append(node)
nodes = typenodes
return nodes
def lock(self, showwait=True):
lockstatus = lock.lock(self.ui, showwait)
if not lockstatus:
raise LockError("Unable to get lock")
self.config.read_state()
def unlock(self):
lock.unlock(self.ui)
def node_names(self):
return [ n.name for n in self.config.nodes() ]
def node_groups(self):
return node_mod.node_groups()
@expose
@check_config
def nodes(self):
results = cmdresult.CmdResult()
if self.plugins.cmdPre("nodes"):
for n in self.config.nodes():
results.set_node_data(n, True, n.to_dict())
else:
results.ok = False
self.plugins.cmdPost("nodes")
return results
@expose
@check_config
def get_config(self):
results = cmdresult.CmdResult()
if self.plugins.cmdPre("config"):
results.keyval = self.config.options()
else:
results.ok = False
self.plugins.cmdPost("config")
return results
@expose
@check_config
@lock_required
def install(self, local=False):
if self.plugins.cmdPre("install"):
results = self.controller.install(local)
else:
results = cmdresult.CmdResult(ok=False)
self.plugins.cmdPost("install")
return results
@expose
@check_config
@lock_required
def start(self, node_list=None):
nodes = self.node_args(node_list)
nodes = self.plugins.cmdPreWithNodes("start", nodes)
results = self.controller.start(nodes)
self.plugins.cmdPostWithResults("start", results.get_node_data())
return results
@expose
@check_config
@lock_required
def stop(self, node_list=None):
nodes = self.node_args(node_list)
nodes = self.plugins.cmdPreWithNodes("stop", nodes)
results = self.controller.stop(nodes)
self.plugins.cmdPostWithResults("stop", results.get_node_data())
return results
@expose
@check_config
@lock_required
def restart(self, clean=False, node_list=None):
nodes = self.node_args(node_list)
nodes = self.plugins.cmdPreWithNodes("restart", nodes, clean)
self.ui.info("stopping ...")
results = self.stop(node_list)
if not results.ok:
return results
if clean:
self.ui.info("cleaning up ...")
results = self.cleanup(node_list=node_list)
if not results.ok:
return results
self.ui.info("checking configurations ...")
results = self.check(node_list)
if not results.ok:
return results
self.ui.info("installing ...")
results = self.install()
if not results.ok:
return results
self.ui.info("starting ...")
results = self.start(node_list)
self.plugins.cmdPostWithNodes("restart", nodes)
return results
@expose
@lock_required
def deploy(self):
if not self.plugins.cmdPre("deploy"):
results = cmdresult.CmdResult(ok=False)
return results
if self.config.is_cfg_changed():
self.ui.info("Reloading zeekctl configuration ...")
self.reload_cfg()
self.ui.info("checking configurations ...")
results = self.check(check_node_types=True)
if not results.ok:
for (node, success, output) in results.get_node_output():
if not success:
self.ui.info("%s scripts failed." % node)
self.ui.info(output)
return results
self.ui.info("installing ...")
results = self.install()
if not results.ok:
return results
self.ui.info("stopping ...")
results = self.stop()
if not results.ok:
return results
self.ui.info("starting ...")
results = self.start()
self.plugins.cmdPost("deploy")
return results
@expose
@check_config
@lock_required
def status(self, node_list=None):
nodes = self.node_args(node_list)
nodes = self.plugins.cmdPreWithNodes("status", nodes)
results = self.controller.status(nodes)
self.plugins.cmdPostWithNodes("status", nodes)
return results
@expose
@lock_required
def top(self, node_list=None):
nodes = self.node_args(node_list)
nodes = self.plugins.cmdPreWithNodes("top", nodes)
results = self.controller.top(nodes)
self.plugins.cmdPostWithNodes("top", nodes)
return results
@expose
@check_config
@lock_required
def diag(self, node_list=None):
nodes = self.node_args(node_list)
nodes = self.plugins.cmdPreWithNodes("diag", nodes)
results = self.controller.diag(nodes)
self.plugins.cmdPostWithNodes("diag", nodes)
return results
@expose
@lock_required_silent
def cron(self, watch=True):
if self.plugins.cmdPre("cron", "", watch):
self.controller.cron(watch)
self.plugins.cmdPost("cron", "", watch)
return True
@expose
@check_config
@lock_required
def cronenabled(self):
results = False
if self.plugins.cmdPre("cron", "?", False):
results = self.config.cronenabled
self.plugins.cmdPost("cron", "?", False)
return results
@expose
@check_config
@lock_required
def setcronenabled(self, enable=True):
if enable:
if self.plugins.cmdPre("cron", "enable", False):
self.config.set_state("cronenabled", True)
self.ui.info("cron enabled")
self.plugins.cmdPost("cron", "enable", False)
else:
if self.plugins.cmdPre("cron", "disable", False):
self.config.set_state("cronenabled", False)
self.ui.info("cron disabled")
self.plugins.cmdPost("cron", "disable", False)
return True
@expose
@check_config
@lock_required
def check(self, node_list=None, check_node_types=False):
nodes = self.node_args(node_list, get_types=check_node_types)
nodes = self.plugins.cmdPreWithNodes("check", nodes)
results = self.controller.check(nodes)
self.plugins.cmdPostWithResults("check", results.get_node_data())
return results
@expose
@check_config
@lock_required
def cleanup(self, cleantmp=False, node_list=None):
nodes = self.node_args(node_list)
nodes = self.plugins.cmdPreWithNodes("cleanup", nodes, cleantmp)
results = self.controller.cleanup(nodes, cleantmp)
self.plugins.cmdPostWithNodes("cleanup", nodes, cleantmp)
return results
@expose
@check_config
@lock_required
def capstats(self, interval=10, node_list=None):
nodes = self.node_args(node_list)
nodes = self.plugins.cmdPreWithNodes("capstats", nodes, interval)
results = self.controller.capstats(nodes, interval)
self.plugins.cmdPostWithNodes("capstats", nodes, interval)
return results
@expose
@check_config
@lock_required
def df(self, node_list=None):
nodes = self.node_args(node_list, get_hosts=True)
nodes = self.plugins.cmdPreWithNodes("df", nodes)
results = self.controller.df(nodes)
self.plugins.cmdPostWithNodes("df", nodes)
return results
@expose
@check_config
@lock_required
def print_id(self, id, node_list=None):
nodes = self.node_args(node_list)
nodes = self.plugins.cmdPreWithNodes("print", nodes, id)
results = self.controller.print_id(nodes, id)
self.plugins.cmdPostWithNodes("print", nodes, id)
return results
@expose
@check_config
@lock_required
def peerstatus(self, node_list=None):
nodes = self.node_args(node_list)
nodes = self.plugins.cmdPreWithNodes("peerstatus", nodes)
results = self.controller.peerstatus(nodes)
self.plugins.cmdPostWithNodes("peerstatus", nodes)
return results
@expose
@check_config
@lock_required
def netstats(self, node_list=None):
if not node_list:
node_list = None
if not self.config.standalone:
node_list = node_mod.worker_group()
nodes = self.node_args(node_list)
nodes = self.plugins.cmdPreWithNodes("netstats", nodes)
results = self.controller.netstats(nodes)
self.plugins.cmdPostWithNodes("netstats", nodes)
return results
@expose
@check_config
def execute(self, cmd):
nodes = self.node_args(get_hosts=True)
if self.plugins.cmdPre("exec", cmd):
results = self.controller.execute_cmd(nodes, cmd)
else:
results = cmdresult.CmdResult(ok=False)
self.plugins.cmdPost("exec", cmd)
return results
@expose
@check_config
@lock_required
def scripts(self, check=False, node_list=None):
nodes = self.node_args(node_list)
nodes = self.plugins.cmdPreWithNodes("scripts", nodes, check)
results = self.controller.scripts(nodes, check)
self.plugins.cmdPostWithNodes("scripts", nodes, check)
return results
@expose
@check_config
@lock_required
def process(self, trace, options, scripts):
if self.plugins.cmdPre("process", trace, options, scripts):
results = self.controller.process(trace, options, scripts)
else:
results = cmdresult.CmdResult(ok=False)
self.plugins.cmdPost("process", trace, options, scripts, results.ok)
return results
@expose
@check_config
@lock_required
def plugincmd(self, cmd, args):
return self.plugins.runCustomCommand(cmd, args, self.ui)
|