blob: 0df5639a4ff430a8974ef0aa02bfd35c804d74d6 [file] [log] [blame]
Etienne Basset6e837fb2009-04-08 20:39:40 +02001/*
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 Basset6e837fb2009-04-08 20:39:40 +020024
Eric Paris48c62af2012-04-02 13:15:44 -040025struct 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 Basset6e837fb2009-04-08 20:39:40 +020042
Jeff Vander Stoep671a2782015-07-10 17:19:55 -040043struct lsm_ioctlop_audit {
44 struct path path;
45 u16 cmd;
46};
47
Daniel Jurgenscfc4d882017-05-19 15:48:57 +030048struct lsm_ibpkey_audit {
49 u64 subnet_prefix;
50 u16 pkey;
51};
52
Etienne Basset6e837fb2009-04-08 20:39:40 +020053/* Auxiliary data to use in generating the audit record. */
54struct common_audit_data {
Eric Parisdd8dbf22009-11-03 16:35:32 +110055 char type;
Eric Parisf48b7392011-04-25 12:54:27 -040056#define LSM_AUDIT_DATA_PATH 1
Eric Parisdd8dbf22009-11-03 16:35:32 +110057#define LSM_AUDIT_DATA_NET 2
58#define LSM_AUDIT_DATA_CAP 3
59#define LSM_AUDIT_DATA_IPC 4
60#define LSM_AUDIT_DATA_TASK 5
61#define LSM_AUDIT_DATA_KEY 6
Eric Pariscb84aa92010-04-27 17:20:38 -040062#define LSM_AUDIT_DATA_NONE 7
Eric Parisdd8dbf22009-11-03 16:35:32 +110063#define LSM_AUDIT_DATA_KMOD 8
Eric Parisf48b7392011-04-25 12:54:27 -040064#define LSM_AUDIT_DATA_INODE 9
Eric Parisa2694342011-04-25 13:10:27 -040065#define LSM_AUDIT_DATA_DENTRY 10
Jeff Vander Stoep671a2782015-07-10 17:19:55 -040066#define LSM_AUDIT_DATA_IOCTL_OP 11
Vivek Goyal43af5de2016-09-09 11:37:49 -040067#define LSM_AUDIT_DATA_FILE 12
Daniel Jurgenscfc4d882017-05-19 15:48:57 +030068#define LSM_AUDIT_DATA_IBPKEY 13
Etienne Basset6e837fb2009-04-08 20:39:40 +020069 union {
Eric Parisf48b7392011-04-25 12:54:27 -040070 struct path path;
Eric Parisa2694342011-04-25 13:10:27 -040071 struct dentry *dentry;
Eric Parisf48b7392011-04-25 12:54:27 -040072 struct inode *inode;
Eric Paris48c62af2012-04-02 13:15:44 -040073 struct lsm_network_audit *net;
Etienne Basset6e837fb2009-04-08 20:39:40 +020074 int cap;
75 int ipc_id;
76 struct task_struct *tsk;
77#ifdef CONFIG_KEYS
78 struct {
79 key_serial_t key;
80 char *key_desc;
81 } key_struct;
82#endif
Eric Parisdd8dbf22009-11-03 16:35:32 +110083 char *kmod_name;
Jeff Vander Stoep671a2782015-07-10 17:19:55 -040084 struct lsm_ioctlop_audit *op;
Vivek Goyal43af5de2016-09-09 11:37:49 -040085 struct file *file;
Daniel Jurgenscfc4d882017-05-19 15:48:57 +030086 struct lsm_ibpkey_audit *ibpkey;
Etienne Basset6e837fb2009-04-08 20:39:40 +020087 } u;
Etienne Basset6e837fb2009-04-08 20:39:40 +020088 /* this union contains LSM specific data */
89 union {
Thomas Liu65c3f0a2009-07-09 10:00:31 -040090#ifdef CONFIG_SECURITY_SMACK
Eric Paris3b3b0e42012-04-03 09:37:02 -070091 struct smack_audit_data *smack_audit_data;
Thomas Liu65c3f0a2009-07-09 10:00:31 -040092#endif
93#ifdef CONFIG_SECURITY_SELINUX
Eric Paris3b3b0e42012-04-03 09:37:02 -070094 struct selinux_audit_data *selinux_audit_data;
Thomas Liu65c3f0a2009-07-09 10:00:31 -040095#endif
John Johansen67012e82010-07-29 14:47:58 -070096#ifdef CONFIG_SECURITY_APPARMOR
Eric Paris3b3b0e42012-04-03 09:37:02 -070097 struct apparmor_audit_data *apparmor_audit_data;
John Johansen67012e82010-07-29 14:47:58 -070098#endif
Eric Paris3b3b0e42012-04-03 09:37:02 -070099 }; /* per LSM data pointer union */
Etienne Basset6e837fb2009-04-08 20:39:40 +0200100};
101
102#define v4info fam.v4
103#define v6info fam.v6
104
105int ipv4_skb_to_auditdata(struct sk_buff *skb,
106 struct common_audit_data *ad, u8 *proto);
107
108int ipv6_skb_to_auditdata(struct sk_buff *skb,
109 struct common_audit_data *ad, u8 *proto);
110
Linus Torvaldsb61c37f2012-04-02 15:48:12 -0700111void common_lsm_audit(struct common_audit_data *a,
112 void (*pre_audit)(struct audit_buffer *, void *),
113 void (*post_audit)(struct audit_buffer *, void *));
Etienne Basset6e837fb2009-04-08 20:39:40 +0200114
115#endif