# Copyright 2021-2023 VyOS maintainers and contributors # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library 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 # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with this library. If not, see . ''' A small library that allows querying existence or value(s) of config settings from op mode, and execution of arbitrary op mode commands. ''' import os from vyos.utils.process import STDOUT from vyos.utils.process import popen from vyos.utils.boot import boot_configuration_complete from vyos.config import Config from vyos.configsource import ConfigSourceSession, ConfigSourceString from vyos.defaults import directories config_file = os.path.join(directories['config'], 'config.boot') class ConfigQueryError(Exception): pass class GenericConfigQuery: def __init__(self): pass def exists(self, path: list): raise NotImplementedError def value(self, path: list): raise NotImplementedError def values(self, path: list): raise NotImplementedError class GenericOpRun: def __init__(self): pass def run(self, path: list, **kwargs): raise NotImplementedError class CliShellApiConfigQuery(GenericConfigQuery): def __init__(self): super().__init__() def exists(self, path: list): cmd = ' '.join(path) (_, err) = popen(f'cli-shell-api existsActive {cmd}') if err: return False return True def value(self, path: list): cmd = ' '.join(path) (out, err) = popen(f'cli-shell-api returnActiveValue {cmd}') if err: raise ConfigQueryError('No value for given path') return out def values(self, path: list): cmd = ' '.join(path) (out, err) = popen(f'cli-shell-api returnActiveValues {cmd}') if err: raise ConfigQueryError('No values for given path') return out class ConfigTreeQuery(GenericConfigQuery): def __init__(self): super().__init__() if boot_configuration_complete(): config_source = ConfigSourceSession() self.config = Config(config_source=config_source) else: try: with open(config_file) as f: config_string = f.read() except OSError as err: config_string = '' config_source = ConfigSourceString(running_config_text=config_string, session_config_text=config_string) self.config = Config(config_source=config_source) def exists(self, path: list): return self.config.exists(path) def value(self, path: list): return self.config.return_value(path) def values(self, path: list): return self.config.return_values(path) def list_nodes(self, path: list): return self.config.list_nodes(path) def get_config_dict(self, path=[], effective=False, key_mangling=None, get_first_key=False, no_multi_convert=False, no_tag_node_value_mangle=False): return self.config.get_config_dict(path, effective=effective, key_mangling=key_mangling, get_first_key=get_first_key, no_multi_convert=no_multi_convert, no_tag_node_value_mangle=no_tag_node_value_mangle) class VbashOpRun(GenericOpRun): def __init__(self): super().__init__() def run(self, path: list, **kwargs): cmd = ' '.join(path) (out, err) = popen(f'/opt/vyatta/bin/vyatta-op-cmd-wrapper {cmd}', stderr=STDOUT, **kwargs) if err: raise ConfigQueryError(out) return out def query_context(config_query_class=CliShellApiConfigQuery, op_run_class=VbashOpRun): query = config_query_class() run = op_run_class() return query, run