summaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorTyler Hicks <tyhicks@canonical.com>2018-05-17 19:53:45 +0000
committerJohn Johansen <john.johansen@canonical.com>2018-06-07 01:50:48 -0700
commit52e8c38001d8ef0ca07ef428e480cd4a35e46abf (patch)
tree4673085ceb722e48303b63e0631473aa948621a2 /security
parent2ab47dae54d567bbb1ad3e96e5b2601cc13f4d2b (diff)
downloadop-kernel-dev-52e8c38001d8ef0ca07ef428e480cd4a35e46abf.zip
op-kernel-dev-52e8c38001d8ef0ca07ef428e480cd4a35e46abf.tar.gz
apparmor: Fix memory leak of rule on error exit path
Currently on the error exit path the allocated rule is not free'd causing a memory leak. Fix this by calling aa_audit_rule_free(). Detected by CoverityScan, CID#1468966 ("Resource leaks") Fixes: cb740f574c7b ("apparmor: modify audit rule support to support profile stacks") Signed-off-by: Tyler Hicks <tyhicks@canonical.com> Signed-off-by: John Johansen <john.johansen@canonical.com>
Diffstat (limited to 'security')
-rw-r--r--security/apparmor/audit.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/security/apparmor/audit.c b/security/apparmor/audit.c
index 575f3e9..eeaddfe 100644
--- a/security/apparmor/audit.c
+++ b/security/apparmor/audit.c
@@ -200,10 +200,12 @@ int aa_audit_rule_init(u32 field, u32 op, char *rulestr, void **vrule)
/* Currently rules are treated as coming from the root ns */
rule->label = aa_label_parse(&root_ns->unconfined->label, rulestr,
GFP_KERNEL, true, false);
- if (IS_ERR(rule->label))
+ if (IS_ERR(rule->label)) {
+ aa_audit_rule_free(rule);
return PTR_ERR(rule->label);
- *vrule = rule;
+ }
+ *vrule = rule;
return 0;
}
OpenPOWER on IntegriCloud