2009-04-09 02:39:40 +08:00
|
|
|
/*
|
|
|
|
* Common LSM logging functions
|
|
|
|
* Heavily borrowed from selinux/avc.h
|
|
|
|
*
|
|
|
|
* Author : Etienne BASSET <etienne.basset@ensta.org>
|
|
|
|
*
|
|
|
|
* All credits to : Stephen Smalley, <sds@epoch.ncsc.mil>
|
|
|
|
* All BUGS to : Etienne BASSET <etienne.basset@ensta.org>
|
|
|
|
*/
|
|
|
|
#ifndef _LSM_COMMON_LOGGING_
|
|
|
|
#define _LSM_COMMON_LOGGING_
|
|
|
|
|
|
|
|
#include <linux/stddef.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/kdev_t.h>
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/audit.h>
|
|
|
|
#include <linux/in6.h>
|
|
|
|
#include <linux/path.h>
|
|
|
|
#include <linux/key.h>
|
|
|
|
#include <linux/skbuff.h>
|
|
|
|
|
2012-04-03 01:15:44 +08:00
|
|
|
struct lsm_network_audit {
|
|
|
|
int netif;
|
|
|
|
struct sock *sk;
|
|
|
|
u16 family;
|
|
|
|
__be16 dport;
|
|
|
|
__be16 sport;
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
__be32 daddr;
|
|
|
|
__be32 saddr;
|
|
|
|
} v4;
|
|
|
|
struct {
|
|
|
|
struct in6_addr daddr;
|
|
|
|
struct in6_addr saddr;
|
|
|
|
} v6;
|
|
|
|
} fam;
|
|
|
|
};
|
2009-04-09 02:39:40 +08:00
|
|
|
|
|
|
|
/* Auxiliary data to use in generating the audit record. */
|
|
|
|
struct common_audit_data {
|
2009-11-03 13:35:32 +08:00
|
|
|
char type;
|
2011-04-26 00:54:27 +08:00
|
|
|
#define LSM_AUDIT_DATA_PATH 1
|
2009-11-03 13:35:32 +08:00
|
|
|
#define LSM_AUDIT_DATA_NET 2
|
|
|
|
#define LSM_AUDIT_DATA_CAP 3
|
|
|
|
#define LSM_AUDIT_DATA_IPC 4
|
|
|
|
#define LSM_AUDIT_DATA_TASK 5
|
|
|
|
#define LSM_AUDIT_DATA_KEY 6
|
2010-04-28 05:20:38 +08:00
|
|
|
#define LSM_AUDIT_DATA_NONE 7
|
2009-11-03 13:35:32 +08:00
|
|
|
#define LSM_AUDIT_DATA_KMOD 8
|
2011-04-26 00:54:27 +08:00
|
|
|
#define LSM_AUDIT_DATA_INODE 9
|
2011-04-26 01:10:27 +08:00
|
|
|
#define LSM_AUDIT_DATA_DENTRY 10
|
2009-04-09 02:39:40 +08:00
|
|
|
union {
|
2011-04-26 00:54:27 +08:00
|
|
|
struct path path;
|
2011-04-26 01:10:27 +08:00
|
|
|
struct dentry *dentry;
|
2011-04-26 00:54:27 +08:00
|
|
|
struct inode *inode;
|
2012-04-03 01:15:44 +08:00
|
|
|
struct lsm_network_audit *net;
|
2009-04-09 02:39:40 +08:00
|
|
|
int cap;
|
|
|
|
int ipc_id;
|
|
|
|
struct task_struct *tsk;
|
|
|
|
#ifdef CONFIG_KEYS
|
|
|
|
struct {
|
|
|
|
key_serial_t key;
|
|
|
|
char *key_desc;
|
|
|
|
} key_struct;
|
|
|
|
#endif
|
2009-11-03 13:35:32 +08:00
|
|
|
char *kmod_name;
|
2009-04-09 02:39:40 +08:00
|
|
|
} u;
|
|
|
|
/* this union contains LSM specific data */
|
|
|
|
union {
|
2009-07-09 22:00:31 +08:00
|
|
|
#ifdef CONFIG_SECURITY_SMACK
|
2012-04-04 00:37:02 +08:00
|
|
|
struct smack_audit_data *smack_audit_data;
|
2009-07-09 22:00:31 +08:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SECURITY_SELINUX
|
2012-04-04 00:37:02 +08:00
|
|
|
struct selinux_audit_data *selinux_audit_data;
|
2010-07-30 05:47:58 +08:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SECURITY_APPARMOR
|
2012-04-04 00:37:02 +08:00
|
|
|
struct apparmor_audit_data *apparmor_audit_data;
|
2009-07-09 22:00:31 +08:00
|
|
|
#endif
|
2012-04-04 00:37:02 +08:00
|
|
|
}; /* per LSM data pointer union */
|
2009-04-09 02:39:40 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#define v4info fam.v4
|
|
|
|
#define v6info fam.v6
|
|
|
|
|
|
|
|
int ipv4_skb_to_auditdata(struct sk_buff *skb,
|
|
|
|
struct common_audit_data *ad, u8 *proto);
|
|
|
|
|
|
|
|
int ipv6_skb_to_auditdata(struct sk_buff *skb,
|
|
|
|
struct common_audit_data *ad, u8 *proto);
|
|
|
|
|
2012-04-03 06:48:12 +08:00
|
|
|
void common_lsm_audit(struct common_audit_data *a,
|
|
|
|
void (*pre_audit)(struct audit_buffer *, void *),
|
|
|
|
void (*post_audit)(struct audit_buffer *, void *));
|
2009-04-09 02:39:40 +08:00
|
|
|
|
|
|
|
#endif
|