aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/auditsc.c
diff options
context:
space:
mode:
authorRichard Guy Briggs <rgb@redhat.com>2020-04-22 17:39:29 -0400
committerPaul Moore <paul@paul-moore.com>2020-04-28 18:11:36 -0400
commita45d88530b2552ad5ea0da18861600b4ecc9d0c7 (patch)
tree1e0dbafc94be20e60529eb878ed288a72c13bbbd /kernel/auditsc.c
parentaudit: tidy and extend netfilter_cfg x_tables (diff)
downloadlinux-dev-a45d88530b2552ad5ea0da18861600b4ecc9d0c7.tar.xz
linux-dev-a45d88530b2552ad5ea0da18861600b4ecc9d0c7.zip
netfilter: add audit table unregister actions
Audit the action of unregistering ebtables and x_tables. See: https://github.com/linux-audit/audit-kernel/issues/44 Signed-off-by: Richard Guy Briggs <rgb@redhat.com> Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'kernel/auditsc.c')
-rw-r--r--kernel/auditsc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/kernel/auditsc.c b/kernel/auditsc.c
index 705beac0ce29..d281c18d1771 100644
--- a/kernel/auditsc.c
+++ b/kernel/auditsc.c
@@ -136,8 +136,9 @@ struct audit_nfcfgop_tab {
};
const struct audit_nfcfgop_tab audit_nfcfgs[] = {
- { AUDIT_XT_OP_REGISTER, "register" },
- { AUDIT_XT_OP_REPLACE, "replace" },
+ { AUDIT_XT_OP_REGISTER, "register" },
+ { AUDIT_XT_OP_REPLACE, "replace" },
+ { AUDIT_XT_OP_UNREGISTER, "unregister" },
};
static int audit_match_perm(struct audit_context *ctx, int mask)