Commit 980dfb0db340b95094732d78b55311f2c539c1af

Authored by zhangxiliang
Committed by Al Viro
1 parent 036bbf76ad

[PATCH] Fix the kernel panic of audit_filter_task when key field is set

When calling audit_filter_task(), it calls audit_filter_rules() with audit_context is NULL.
If the key field is set, the result in audit_filter_rules() will be set to 1 and
ctx->filterkey will be set to key.
But the ctx is NULL in this condition, so kernel will panic.

Signed-off-by: Zhang Xiliang <zhangxiliang@cn.fujitsu.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -610,7 +610,7 @@
610 610 if (!result)
611 611 return 0;
612 612 }
613   - if (rule->filterkey)
  613 + if (rule->filterkey && ctx)
614 614 ctx->filterkey = kstrdup(rule->filterkey, GFP_ATOMIC);
615 615 switch (rule->action) {
616 616 case AUDIT_NEVER: *state = AUDIT_DISABLED; break;