From 9c12a23a997418700b4dac1a44d193e6a837f3a3 Mon Sep 17 00:00:00 2001 From: Peter Rajnoha Date: Thu, 27 Jun 2013 14:01:22 +0200 Subject: 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. --- lib/config/config.c | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) 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; } -- cgit v1.2.3