aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJeff Vander Stoep <jeffv@google.com>2015-04-04 16:15:54 -0700
committerZiyan <jaraidaniel@gmail.com>2016-01-17 20:28:15 +0100
commitd2512f9a3c4d812267817ff62ee094af6f7c5a83 (patch)
tree8138107c6cc0710d0a0876e29bb76d5e7e1ef40d /include
parent0965ce76040f6f06a7a0ae2d0735dfb340fa9c45 (diff)
downloadkernel_samsung_tuna-d2512f9a3c4d812267817ff62ee094af6f7c5a83.zip
kernel_samsung_tuna-d2512f9a3c4d812267817ff62ee094af6f7c5a83.tar.gz
kernel_samsung_tuna-d2512f9a3c4d812267817ff62ee094af6f7c5a83.tar.bz2
security: lsm_audit: add ioctl specific auditing
Add information about ioctl calls to the LSM audit data. Log the file path and command number. Bug: 18087110 Change-Id: Idbbd106db6226683cb30022d9e8f6f3b8fab7f84 Signed-off-by: Jeff Vander Stoep <jeffv@google.com>
Diffstat (limited to 'include')
-rw-r--r--include/linux/lsm_audit.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/lsm_audit.h b/include/linux/lsm_audit.h
index 88e78de..65e2962 100644
--- a/include/linux/lsm_audit.h
+++ b/include/linux/lsm_audit.h
@@ -24,6 +24,11 @@
#include <asm/system.h>
+struct lsm_ioctlop_audit {
+ struct path path;
+ u16 cmd;
+};
+
/* Auxiliary data to use in generating the audit record. */
struct common_audit_data {
char type;
@@ -37,6 +42,7 @@ struct common_audit_data {
#define LSM_AUDIT_DATA_KMOD 8
#define LSM_AUDIT_DATA_INODE 9
#define LSM_AUDIT_DATA_DENTRY 10
+#define LSM_AUDIT_DATA_IOCTL_OP 11
struct task_struct *tsk;
union {
struct path path;
@@ -69,6 +75,7 @@ struct common_audit_data {
} key_struct;
#endif
char *kmod_name;
+ struct lsm_ioctlop_audit *op;
} u;
/* this union contains LSM specific data */
union {