Etienne Basset | 6e837fb | 2009-04-08 20:39:40 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Common LSM logging functions |
| 3 | * Heavily borrowed from selinux/avc.h |
| 4 | * |
| 5 | * Author : Etienne BASSET <etienne.basset@ensta.org> |
| 6 | * |
| 7 | * All credits to : Stephen Smalley, <sds@epoch.ncsc.mil> |
| 8 | * All BUGS to : Etienne BASSET <etienne.basset@ensta.org> |
| 9 | */ |
| 10 | #ifndef _LSM_COMMON_LOGGING_ |
| 11 | #define _LSM_COMMON_LOGGING_ |
| 12 | |
| 13 | #include <linux/stddef.h> |
| 14 | #include <linux/errno.h> |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/kdev_t.h> |
| 17 | #include <linux/spinlock.h> |
| 18 | #include <linux/init.h> |
| 19 | #include <linux/audit.h> |
| 20 | #include <linux/in6.h> |
| 21 | #include <linux/path.h> |
| 22 | #include <linux/key.h> |
| 23 | #include <linux/skbuff.h> |
Etienne Basset | 6e837fb | 2009-04-08 20:39:40 +0200 | [diff] [blame] | 24 | |
Eric Paris | 48c62af | 2012-04-02 13:15:44 -0400 | [diff] [blame] | 25 | struct lsm_network_audit { |
| 26 | int netif; |
| 27 | struct sock *sk; |
| 28 | u16 family; |
| 29 | __be16 dport; |
| 30 | __be16 sport; |
| 31 | union { |
| 32 | struct { |
| 33 | __be32 daddr; |
| 34 | __be32 saddr; |
| 35 | } v4; |
| 36 | struct { |
| 37 | struct in6_addr daddr; |
| 38 | struct in6_addr saddr; |
| 39 | } v6; |
| 40 | } fam; |
| 41 | }; |
Etienne Basset | 6e837fb | 2009-04-08 20:39:40 +0200 | [diff] [blame] | 42 | |
| 43 | /* Auxiliary data to use in generating the audit record. */ |
| 44 | struct common_audit_data { |
Eric Paris | dd8dbf2 | 2009-11-03 16:35:32 +1100 | [diff] [blame] | 45 | char type; |
Eric Paris | f48b739 | 2011-04-25 12:54:27 -0400 | [diff] [blame] | 46 | #define LSM_AUDIT_DATA_PATH 1 |
Eric Paris | dd8dbf2 | 2009-11-03 16:35:32 +1100 | [diff] [blame] | 47 | #define LSM_AUDIT_DATA_NET 2 |
| 48 | #define LSM_AUDIT_DATA_CAP 3 |
| 49 | #define LSM_AUDIT_DATA_IPC 4 |
| 50 | #define LSM_AUDIT_DATA_TASK 5 |
| 51 | #define LSM_AUDIT_DATA_KEY 6 |
Eric Paris | cb84aa9 | 2010-04-27 17:20:38 -0400 | [diff] [blame] | 52 | #define LSM_AUDIT_DATA_NONE 7 |
Eric Paris | dd8dbf2 | 2009-11-03 16:35:32 +1100 | [diff] [blame] | 53 | #define LSM_AUDIT_DATA_KMOD 8 |
Eric Paris | f48b739 | 2011-04-25 12:54:27 -0400 | [diff] [blame] | 54 | #define LSM_AUDIT_DATA_INODE 9 |
Eric Paris | a269434 | 2011-04-25 13:10:27 -0400 | [diff] [blame] | 55 | #define LSM_AUDIT_DATA_DENTRY 10 |
Etienne Basset | 6e837fb | 2009-04-08 20:39:40 +0200 | [diff] [blame] | 56 | struct task_struct *tsk; |
| 57 | union { |
Eric Paris | f48b739 | 2011-04-25 12:54:27 -0400 | [diff] [blame] | 58 | struct path path; |
Eric Paris | a269434 | 2011-04-25 13:10:27 -0400 | [diff] [blame] | 59 | struct dentry *dentry; |
Eric Paris | f48b739 | 2011-04-25 12:54:27 -0400 | [diff] [blame] | 60 | struct inode *inode; |
Eric Paris | 48c62af | 2012-04-02 13:15:44 -0400 | [diff] [blame] | 61 | struct lsm_network_audit *net; |
Etienne Basset | 6e837fb | 2009-04-08 20:39:40 +0200 | [diff] [blame] | 62 | int cap; |
| 63 | int ipc_id; |
| 64 | struct task_struct *tsk; |
| 65 | #ifdef CONFIG_KEYS |
| 66 | struct { |
| 67 | key_serial_t key; |
| 68 | char *key_desc; |
| 69 | } key_struct; |
| 70 | #endif |
Eric Paris | dd8dbf2 | 2009-11-03 16:35:32 +1100 | [diff] [blame] | 71 | char *kmod_name; |
Etienne Basset | 6e837fb | 2009-04-08 20:39:40 +0200 | [diff] [blame] | 72 | } u; |
Etienne Basset | 6e837fb | 2009-04-08 20:39:40 +0200 | [diff] [blame] | 73 | /* this union contains LSM specific data */ |
| 74 | union { |
Thomas Liu | 65c3f0a | 2009-07-09 10:00:31 -0400 | [diff] [blame] | 75 | #ifdef CONFIG_SECURITY_SMACK |
Eric Paris | 3b3b0e4 | 2012-04-03 09:37:02 -0700 | [diff] [blame] | 76 | struct smack_audit_data *smack_audit_data; |
Thomas Liu | 65c3f0a | 2009-07-09 10:00:31 -0400 | [diff] [blame] | 77 | #endif |
| 78 | #ifdef CONFIG_SECURITY_SELINUX |
Eric Paris | 3b3b0e4 | 2012-04-03 09:37:02 -0700 | [diff] [blame] | 79 | struct selinux_audit_data *selinux_audit_data; |
Thomas Liu | 65c3f0a | 2009-07-09 10:00:31 -0400 | [diff] [blame] | 80 | #endif |
John Johansen | 67012e8 | 2010-07-29 14:47:58 -0700 | [diff] [blame] | 81 | #ifdef CONFIG_SECURITY_APPARMOR |
Eric Paris | 3b3b0e4 | 2012-04-03 09:37:02 -0700 | [diff] [blame] | 82 | struct apparmor_audit_data *apparmor_audit_data; |
John Johansen | 67012e8 | 2010-07-29 14:47:58 -0700 | [diff] [blame] | 83 | #endif |
Eric Paris | 3b3b0e4 | 2012-04-03 09:37:02 -0700 | [diff] [blame] | 84 | }; /* per LSM data pointer union */ |
Etienne Basset | 6e837fb | 2009-04-08 20:39:40 +0200 | [diff] [blame] | 85 | }; |
| 86 | |
| 87 | #define v4info fam.v4 |
| 88 | #define v6info fam.v6 |
| 89 | |
| 90 | int ipv4_skb_to_auditdata(struct sk_buff *skb, |
| 91 | struct common_audit_data *ad, u8 *proto); |
| 92 | |
| 93 | int ipv6_skb_to_auditdata(struct sk_buff *skb, |
| 94 | struct common_audit_data *ad, u8 *proto); |
| 95 | |
| 96 | /* Initialize an LSM audit data structure. */ |
| 97 | #define COMMON_AUDIT_DATA_INIT(_d, _t) \ |
| 98 | { memset((_d), 0, sizeof(struct common_audit_data)); \ |
Thomas Liu | ed5215a | 2009-07-09 10:00:29 -0400 | [diff] [blame] | 99 | (_d)->type = LSM_AUDIT_DATA_##_t; } |
Etienne Basset | 6e837fb | 2009-04-08 20:39:40 +0200 | [diff] [blame] | 100 | |
Linus Torvalds | b61c37f | 2012-04-02 15:48:12 -0700 | [diff] [blame] | 101 | void common_lsm_audit(struct common_audit_data *a, |
| 102 | void (*pre_audit)(struct audit_buffer *, void *), |
| 103 | void (*post_audit)(struct audit_buffer *, void *)); |
Etienne Basset | 6e837fb | 2009-04-08 20:39:40 +0200 | [diff] [blame] | 104 | |
| 105 | #endif |