diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 12:15:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 12:15:43 +0000 |
commit | f5f56e1a1c4d9e9496fcb9d81131066a964ccd23 (patch) | |
tree | 49e44c6f87febed37efb953ab5485aa49f6481a7 /src/lib/process/redact_config.h | |
parent | Initial commit. (diff) | |
download | isc-kea-upstream.tar.xz isc-kea-upstream.zip |
Adding upstream version 2.4.1.upstream/2.4.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/lib/process/redact_config.h')
-rw-r--r-- | src/lib/process/redact_config.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/lib/process/redact_config.h b/src/lib/process/redact_config.h new file mode 100644 index 0000000..a0d1d0a --- /dev/null +++ b/src/lib/process/redact_config.h @@ -0,0 +1,37 @@ +// Copyright (C) 2021 Internet Systems Consortium, Inc. ("ISC") +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. + +#ifndef REDACT_CONFIG_H +#define REDACT_CONFIG_H + +#include <cc/data.h> +#include <list> + +namespace isc { +namespace process { + +/// @brief Redact a configuration. +/// +/// This method walks on the configuration tree: +/// - it copies only subtrees where a change was done. +/// - it replaces passwords and secrets by asterisks. +/// - it skips user context. +/// - if a not empty list of keywords is given it follows only them. +/// +/// @param element initially the Element tree structure that describe the +/// configuration and smaller subtrees in recursive calls. +/// @param json_path JSON path to redact +/// +/// @return a copy of the config where passwords and secrets were replaced by +/// asterisks so it can be safely logged to an unprivileged place. +isc::data::ConstElementPtr +redactConfig(isc::data::ConstElementPtr const& element, + std::list<std::string> const& json_path = {"*"}); + +} // namespace process +} // namespace isc + +#endif // REDACT_CONFIG_H |