mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-09-05 08:25:16 +00:00
moved exception catching around a bit, so the set does not get completed if one of its steps fails
181 lines
8.4 KiB
Python
Executable File
181 lines
8.4 KiB
Python
Executable File
#!@PYTHON@
|
|
|
|
# Copyright (C) 2009 Internet Systems Consortium.
|
|
#
|
|
# Permission to use, copy, modify, and distribute this software for any
|
|
# purpose with or without fee is hereby granted, provided that the above
|
|
# copyright notice and this permission notice appear in all copies.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SYSTEMS CONSORTIUM
|
|
# DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
|
|
# INTERNET SYSTEMS CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
|
|
# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
|
|
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
|
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
"""This is the main calling class for the bindctl configuration and
|
|
command tool. It sets up a command interpreter and runs that."""
|
|
|
|
import sys; sys.path.append ('@@PYTHONPATH@@')
|
|
|
|
from bindctl.moduleinfo import *
|
|
from bindctl.bindcmd import *
|
|
import pprint
|
|
from optparse import OptionParser, OptionValueError
|
|
import isc.util.process
|
|
|
|
isc.util.process.rename()
|
|
|
|
# This is the version that gets displayed to the user.
|
|
# The VERSION string consists of the module name, the module version
|
|
# number, and the overall BIND 10 version number (set in configure.ac).
|
|
VERSION = "bindctl 20110217 (BIND 10 @PACKAGE_VERSION@)"
|
|
|
|
DEFAULT_IDENTIFIER_DESC = "The identifier specifies the config item. Child elements are separated with the '/' character. List indices can be specified with '[i]', where i is an integer specifying the index, starting with 0. Examples: 'Boss/start_auth', 'Recurse/listen_on[0]/address'. If no identifier is given, shows the item at the current location."
|
|
|
|
def prepare_config_commands(tool):
|
|
'''Prepare fixed commands for local configuration editing'''
|
|
module = ModuleInfo(name = CONFIG_MODULE_NAME, desc = "Configuration commands.")
|
|
cmd = CommandInfo(name = "show", desc = "Show configuration.")
|
|
param = ParamInfo(name = "argument", type = "string", optional=True, desc = "If you specify the argument 'all' (before the identifier), recursively show all child elements for the given identifier.")
|
|
cmd.add_param(param)
|
|
param = ParamInfo(name = "identifier", type = "string", optional=True, desc = DEFAULT_IDENTIFIER_DESC)
|
|
cmd.add_param(param)
|
|
module.add_command(cmd)
|
|
|
|
cmd = CommandInfo(name = "show_json", desc = "Show full configuration in JSON format.")
|
|
param = ParamInfo(name = "identifier", type = "string", optional=True, desc = DEFAULT_IDENTIFIER_DESC)
|
|
cmd.add_param(param)
|
|
module.add_command(cmd)
|
|
|
|
cmd = CommandInfo(name = "add", desc =
|
|
"Add an entry to configuration list or a named set. "
|
|
"When adding to a list, the command has one optional argument, "
|
|
"a value to add to the list. The value must be in correct JSON "
|
|
"and complete. When adding to a named set, it has one "
|
|
"mandatory parameter (the name to add), and an optional "
|
|
"parameter value, similar to when adding to a list. "
|
|
"In either case, when no value is given, an entry will be "
|
|
"constructed with default values.")
|
|
param = ParamInfo(name = "identifier", type = "string", optional=True, desc = DEFAULT_IDENTIFIER_DESC)
|
|
cmd.add_param(param)
|
|
param = ParamInfo(name = "value_or_name", type = "string", optional=True, desc = "Specifies a value to add to the list, or the name when adding to a named set. It must be in correct JSON format and complete.")
|
|
cmd.add_param(param)
|
|
module.add_command(cmd)
|
|
param = ParamInfo(name = "value_for_set", type = "string", optional=True, desc = "Specifies an optional value to add to the named map. It must be in correct JSON format and complete.")
|
|
cmd.add_param(param)
|
|
module.add_command(cmd)
|
|
|
|
cmd = CommandInfo(name = "remove", desc = "Remove entry from configuration list or named set.")
|
|
param = ParamInfo(name = "identifier", type = "string", optional=True, desc = DEFAULT_IDENTIFIER_DESC)
|
|
cmd.add_param(param)
|
|
param = ParamInfo(name = "value", type = "string", optional=True, desc = "When identifier is a list, specifies a value to remove from the list. It must be in correct JSON format and complete. When it is a named set, specifies the name to remove.")
|
|
cmd.add_param(param)
|
|
module.add_command(cmd)
|
|
|
|
cmd = CommandInfo(name = "set", desc = "Set a configuration value.")
|
|
param = ParamInfo(name = "identifier", type = "string", optional=True, desc = DEFAULT_IDENTIFIER_DESC)
|
|
cmd.add_param(param)
|
|
param = ParamInfo(name = "value", type = "string", optional=False, desc = "Specifies a value to set. It must be in correct JSON format and complete.")
|
|
cmd.add_param(param)
|
|
module.add_command(cmd)
|
|
|
|
cmd = CommandInfo(name = "unset", desc = "Unset a configuration value (i.e. revert to the default, if any).")
|
|
param = ParamInfo(name = "identifier", type = "string", optional=False, desc = DEFAULT_IDENTIFIER_DESC)
|
|
cmd.add_param(param)
|
|
module.add_command(cmd)
|
|
|
|
cmd = CommandInfo(name = "diff", desc = "Show all local changes that have not been committed.")
|
|
module.add_command(cmd)
|
|
|
|
cmd = CommandInfo(name = "revert", desc = "Revert all local changes.")
|
|
module.add_command(cmd)
|
|
|
|
cmd = CommandInfo(name = "commit", desc = "Commit all local changes.")
|
|
module.add_command(cmd)
|
|
|
|
cmd = CommandInfo(name = "go", desc = "Go to a specific configuration part.")
|
|
param = ParamInfo(name = "identifier", type="string", optional=False, desc = DEFAULT_IDENTIFIER_DESC)
|
|
cmd.add_param(param)
|
|
module.add_command(cmd)
|
|
|
|
tool.add_module_info(module)
|
|
|
|
def prepare_execute_commands(tool):
|
|
# common parameter
|
|
param_show = ParamInfo(name="show", type="string", optional=True,
|
|
desc="Show the list of commands without executing them")
|
|
|
|
# The command module
|
|
module = ModuleInfo(name=EXECUTE_MODULE_NAME,
|
|
desc="Execute a given set of commands")
|
|
|
|
# Command to execute a file
|
|
cmd = CommandInfo(name="file", desc="Read commands from file")
|
|
param = ParamInfo(name="filename", type="string", optional=False,
|
|
desc="File to read the set of commands from.")
|
|
cmd.add_param(param)
|
|
cmd.add_param(param_show)
|
|
module.add_command(cmd)
|
|
|
|
cmd = CommandInfo(name="init_authoritative_server", desc=
|
|
"Configure and run a basic Authoritative server, with default "
|
|
"SQLite3 backend, and xfrin and xfrout functionality")
|
|
cmd.add_param(param_show)
|
|
cmd.add_param(ParamInfo(name="show", type="string", optional=True,
|
|
desc="Show the list of commands without executing them"))
|
|
module.add_command(cmd)
|
|
|
|
|
|
|
|
tool.add_module_info(module)
|
|
|
|
def check_port(option, opt_str, value, parser):
|
|
if (value < 0) or (value > 65535):
|
|
raise OptionValueError('%s requires a port number (0-65535)' % opt_str)
|
|
parser.values.port = value
|
|
|
|
def check_addr(option, opt_str, value, parser):
|
|
ipstr = value
|
|
ip_family = socket.AF_INET
|
|
if (ipstr.find(':') != -1):
|
|
ip_family = socket.AF_INET6
|
|
|
|
try:
|
|
socket.inet_pton(ip_family, ipstr)
|
|
except:
|
|
raise OptionValueError("%s invalid ip address" % ipstr)
|
|
|
|
parser.values.addr = value
|
|
|
|
def set_bindctl_options(parser):
|
|
parser.add_option('-p', '--port', dest='port', type='int',
|
|
action='callback', callback=check_port,
|
|
default='8080', help='port for cmdctl of bind10')
|
|
|
|
parser.add_option('-a', '--address', dest='addr', type='string',
|
|
action='callback', callback=check_addr,
|
|
default='127.0.0.1', help='IP address for cmdctl of bind10')
|
|
|
|
parser.add_option('-c', '--certificate-chain', dest='cert_chain',
|
|
type='string', action='store',
|
|
help='PEM formatted server certificate validation chain file')
|
|
|
|
parser.add_option('--csv-file-dir', dest='csv_file_dir', type='string',
|
|
default=None, action='store',
|
|
help='Directory to store the password CSV file')
|
|
|
|
if __name__ == '__main__':
|
|
parser = OptionParser(version = VERSION)
|
|
set_bindctl_options(parser)
|
|
(options, args) = parser.parse_args()
|
|
server_addr = options.addr + ':' + str(options.port)
|
|
tool = BindCmdInterpreter(server_addr, pem_file=options.cert_chain,
|
|
csv_file_dir=options.csv_file_dir)
|
|
prepare_config_commands(tool)
|
|
prepare_execute_commands(tool)
|
|
result = tool.run()
|
|
sys.exit(result)
|