diff options
author | John Estabrook <jestabro@vyos.io> | 2024-03-19 08:56:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-19 08:56:10 -0500 |
commit | e59de1ceb25565e0a8fc9206ab71a541cd6f5f55 (patch) | |
tree | afb8db34b6d77cd8beb540a64ab71acff8faf49f /python | |
parent | f00bb9b3653069b38ed20b7040ff8fd1b6fe7691 (diff) | |
parent | d2df08856ddc5a6132544d73e1beb3074a352508 (diff) | |
download | vyos-1x-e59de1ceb25565e0a8fc9206ab71a541cd6f5f55.tar.gz vyos-1x-e59de1ceb25565e0a8fc9206ab71a541cd6f5f55.zip |
Merge pull request #3035 from jestabro/replace-backslash
T5996: selectively escape and restore single backslashes in config
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/configtree.py | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/python/vyos/configtree.py b/python/vyos/configtree.py index d048901f0..423fe01ed 100644 --- a/python/vyos/configtree.py +++ b/python/vyos/configtree.py @@ -20,10 +20,22 @@ from ctypes import cdll, c_char_p, c_void_p, c_int, c_bool LIBPATH = '/usr/lib/libvyosconfig.so.0' +def replace_backslash(s, search, replace): + """Modify quoted strings containing backslashes not of escape sequences""" + def replace_method(match): + result = match.group().replace(search, replace) + return result + p = re.compile(r'("[^"]*[\\][^"]*"\n|\'[^\']*[\\][^\']*\'\n)') + return p.sub(replace_method, s) + def escape_backslash(string: str) -> str: - """Escape single backslashes in string that are not in escape sequence""" - p = re.compile(r'(?<!\\)[\\](?!b|f|n|r|t|\\[^bfnrt])') - result = p.sub(r'\\\\', string) + """Escape single backslashes in quoted strings""" + result = replace_backslash(string, '\\', '\\\\') + return result + +def unescape_backslash(string: str) -> str: + """Unescape backslashes in quoted strings""" + result = replace_backslash(string, '\\\\', '\\') return result def extract_version(s): @@ -165,11 +177,14 @@ class ConfigTree(object): def to_string(self, ordered_values=False): config_string = self.__to_string(self.__config, ordered_values).decode() + config_string = unescape_backslash(config_string) config_string = "{0}\n{1}".format(config_string, self.__version) return config_string def to_commands(self, op="set"): - return self.__to_commands(self.__config, op.encode()).decode() + commands = self.__to_commands(self.__config, op.encode()).decode() + commands = unescape_backslash(commands) + return commands def to_json(self): return self.__to_json(self.__config).decode() @@ -362,6 +377,7 @@ def show_diff(left, right, path=[], commands=False, libpath=LIBPATH): msg = __get_error().decode() raise ConfigTreeError(msg) + res = unescape_backslash(res) return res def union(left, right, libpath=LIBPATH): |