aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Rajnoha <prajnoha@redhat.com>2013-06-27 14:01:22 +0200
committerPeter Rajnoha <prajnoha@redhat.com>2013-07-02 15:22:11 +0200
commit9c12a23a997418700b4dac1a44d193e6a837f3a3 (patch)
treed2d55b4a44ec030c119888c1dd64c09a1133a3ef
parent24a84549a88a6c937091b894d1f0babe10aed17d (diff)
downloadlvm2-9c12a23a997418700b4dac1a44d193e6a837f3a3.tar.gz
profile: strictly require profiles to be valid
We must ensure that the profile is valid and contains only items that are profilable - the check is forced for profiles.
-rw-r--r--lib/config/config.c16
1 files changed, 15 insertions, 1 deletions
diff --git a/lib/config/config.c b/lib/config/config.c
index 59f9bb017..2994111c3 100644
--- a/lib/config/config.c
+++ b/lib/config/config.c
@@ -1500,7 +1500,21 @@ int load_profile(struct cmd_context *cmd, struct profile *profile) {
dm_list_move(&cmd->profile_params->profiles, &profile->list);
- (void) _check_profile(cmd, profile);
+ /*
+ * *Profile must be valid* otherwise we'd end up with incorrect config!
+ * If there were config items present that are not supposed to be
+ * customized by a profile, we could end up with non-deterministic
+ * behaviour. Therefore, this check is *strictly forced* even if
+ * config/checks=0. The config/checks=0 will only cause the warning
+ * messages to be suppressed, but the check itself is always done
+ * for profiles!
+ */
+ if (!_check_profile(cmd, profile)) {
+ log_error("Ignoring invalid configuration profile %s.", profile->name);
+ /* if invalid, cut the whole tree and leave it empty */
+ dm_pool_free(profile->cft->mem, profile->cft->root);
+ profile->cft->root = NULL;
+ }
return 1;
}