cdist/cdist/scan/commandline.py

118 lines
3.6 KiB
Python
Raw Normal View History

2020-10-29 22:16:08 +00:00
# -*- coding: utf-8 -*-
#
# 2020 Nico Schottelius (nico-cdist at schottelius.org)
#
# This file is part of cdist.
#
# cdist is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# cdist is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
#
#
import logging
import sys
2021-04-22 08:20:49 +00:00
from datetime import datetime
2020-10-29 22:16:08 +00:00
log = logging.getLogger("scan")
2021-05-26 08:17:48 +00:00
2021-04-22 08:20:49 +00:00
def run(scan, args):
# We run each component in a separate process since they
# must not block on each other.
processes = []
2020-10-29 22:16:08 +00:00
if 'trigger' in args.mode:
t = scan.Trigger(interfaces=args.interface,
2021-05-26 08:17:48 +00:00
sleeptime=args.trigger_delay)
2020-10-29 22:16:08 +00:00
t.start()
processes.append(t)
log.debug("Trigger started")
if 'scan' in args.mode:
s = scan.Scanner(
autoconfigure='config' in args.mode,
interfaces=args.interface,
name_mapper=args.name_mapper)
2020-10-29 22:16:08 +00:00
s.start()
processes.append(s)
log.debug("Scanner started")
for process in processes:
process.join()
2021-04-22 08:20:49 +00:00
2021-05-26 08:17:48 +00:00
2021-04-22 08:20:49 +00:00
def list(scan, args):
s = scan.Scanner(interfaces=args.interface, name_mapper=args.name_mapper)
2021-04-22 08:20:49 +00:00
hosts = s.list()
# A full IPv6 addresses id composed of 8 blocks of 4 hexa chars +
# 6 colons.
ipv6_max_size = 8 * 4 + 10
date_max_size = len(datetime.now().strftime(scan.datetime_format))
name_max_size = 25
2021-04-22 08:20:49 +00:00
print("{} | {} | {} | {}".format(
'name'.ljust(name_max_size),
'address'.ljust(ipv6_max_size),
'last seen'.ljust(date_max_size),
'last configured'.ljust(date_max_size)))
print('=' * (name_max_size + 3 + ipv6_max_size + 2 * (3 + date_max_size)))
for host in hosts:
last_seen = host.last_seen()
2021-05-26 08:17:48 +00:00
if last_seen:
last_seen = last_seen.strftime(scan.datetime_format)
else:
last_seen = '-'
last_configured = host.last_configured()
if last_configured is not None:
2021-05-26 08:17:48 +00:00
last_configured = last_configured.strftime(scan.datetime_format)
else:
last_configured = '-'
print("{} | {} | {} | {}".format(
host.name(default='-').ljust(name_max_size),
host.address().ljust(ipv6_max_size),
last_seen.ljust(date_max_size),
last_configured.ljust(date_max_size)))
2021-04-22 08:20:49 +00:00
2021-05-26 08:17:48 +00:00
2021-04-22 08:20:49 +00:00
# CLI processing is defined outside of the main scan class to handle
# non-available optional scapy dependency (instead of crashing mid-flight).
def commandline(args):
log.debug(args)
# Check if we have the optional scapy dependency available.
try:
import cdist.scan.scan as scan
except ModuleNotFoundError:
log.error('cdist scan requires scapy to be installed. Exiting.')
sys.exit(1)
# Set default operation mode.
if not args.mode:
# By default scan and trigger, but do not call any action.
args.mode = ['scan', 'trigger', ]
2021-05-26 08:17:48 +00:00
if 'config' in args.mode and args.name_mapper is None:
print('--name-mapper must be specified for scanner config mode.',
2021-05-26 08:17:48 +00:00
file=sys.stderr)
sys.exit(1)
2021-04-22 08:20:49 +00:00
# Print known hosts and exit is --list is specified - do not start
# the scanner.
if args.list:
list(scan, args)
else:
run(scan, args)