blob: e2a60c30df44b33526fd8ec5f7175d7f72cc2a18 [file] [log] [blame]
Mimi Zohar3323eec92009-02-04 09:06:58 -05001/*
2 * Copyright (C) 2005,2006,2007,2008 IBM Corporation
3 *
4 * Authors:
5 * Reiner Sailer <sailer@watson.ibm.com>
6 * Mimi Zohar <zohar@us.ibm.com>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation, version 2 of the
11 * License.
12 *
13 * File: ima.h
14 * internal Integrity Measurement Architecture (IMA) definitions
15 */
16
17#ifndef __LINUX_IMA_H
18#define __LINUX_IMA_H
19
20#include <linux/types.h>
21#include <linux/crypto.h>
22#include <linux/security.h>
23#include <linux/hash.h>
24#include <linux/tpm.h>
25#include <linux/audit.h>
26
Mimi Zoharf381c272011-03-09 14:13:22 -050027#include "../integrity.h"
28
Roberto Sassu3e8e5502013-11-08 19:21:40 +010029enum ima_show_type { IMA_SHOW_BINARY, IMA_SHOW_BINARY_NO_FIELD_LEN,
Roberto Sassuc019e302014-02-03 13:56:04 +010030 IMA_SHOW_BINARY_OLD_STRING_FMT, IMA_SHOW_ASCII };
Mimi Zohar3323eec92009-02-04 09:06:58 -050031enum tpm_pcrs { TPM_PCR0 = 0, TPM_PCR8 = 8 };
32
33/* digest size for IMA, fits SHA1 or MD5 */
Mimi Zoharf381c272011-03-09 14:13:22 -050034#define IMA_DIGEST_SIZE SHA1_DIGEST_SIZE
Mimi Zohar3323eec92009-02-04 09:06:58 -050035#define IMA_EVENT_NAME_LEN_MAX 255
36
37#define IMA_HASH_BITS 9
38#define IMA_MEASURE_HTABLE_SIZE (1 << IMA_HASH_BITS)
39
Roberto Sassuadf53a72013-06-07 12:16:29 +020040#define IMA_TEMPLATE_FIELD_ID_MAX_LEN 16
41#define IMA_TEMPLATE_NUM_FIELDS_MAX 15
42
Roberto Sassu3ce1217d2013-06-07 12:16:30 +020043#define IMA_TEMPLATE_IMA_NAME "ima"
44#define IMA_TEMPLATE_IMA_FMT "d|n"
45
Roberto Sassua7560242014-09-12 19:35:54 +020046/* current content of the policy */
47extern int ima_policy_flag;
48
Mimi Zohar3323eec92009-02-04 09:06:58 -050049/* set during initialization */
50extern int ima_initialized;
51extern int ima_used_chip;
Dmitry Kasatkinc7c8bb22013-04-25 10:43:56 +030052extern int ima_hash_algo;
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -050053extern int ima_appraise;
Mimi Zohar3323eec92009-02-04 09:06:58 -050054
Roberto Sassu23b57412015-04-11 17:09:50 +020055/* IMA event related data */
56struct ima_event_data {
57 struct integrity_iint_cache *iint;
58 struct file *file;
59 const unsigned char *filename;
60 struct evm_ima_xattr_data *xattr_value;
61 int xattr_len;
Roberto Sassu8d94eb92015-04-11 17:12:39 +020062 const char *violation;
Roberto Sassu23b57412015-04-11 17:09:50 +020063};
64
Roberto Sassuadf53a72013-06-07 12:16:29 +020065/* IMA template field data definition */
66struct ima_field_data {
67 u8 *data;
68 u32 len;
69};
70
71/* IMA template field definition */
72struct ima_template_field {
73 const char field_id[IMA_TEMPLATE_FIELD_ID_MAX_LEN];
Roberto Sassu23b57412015-04-11 17:09:50 +020074 int (*field_init)(struct ima_event_data *event_data,
75 struct ima_field_data *field_data);
76 void (*field_show)(struct seq_file *m, enum ima_show_type show,
77 struct ima_field_data *field_data);
Roberto Sassuadf53a72013-06-07 12:16:29 +020078};
79
80/* IMA template descriptor definition */
81struct ima_template_desc {
82 char *name;
83 char *fmt;
84 int num_fields;
85 struct ima_template_field **fields;
86};
87
Mimi Zohar3323eec92009-02-04 09:06:58 -050088struct ima_template_entry {
Mimi Zohar140d8022013-03-11 20:29:47 -040089 u8 digest[TPM_DIGEST_SIZE]; /* sha1 or md5 measurement hash */
Roberto Sassua71dc652013-06-07 12:16:33 +020090 struct ima_template_desc *template_desc; /* template descriptor */
91 u32 template_data_len;
92 struct ima_field_data template_data[0]; /* template related data */
Mimi Zohar3323eec92009-02-04 09:06:58 -050093};
94
95struct ima_queue_entry {
96 struct hlist_node hnext; /* place in hash collision list */
97 struct list_head later; /* place in ima_measurements list */
98 struct ima_template_entry *entry;
99};
100extern struct list_head ima_measurements; /* list of all measurements */
101
Mimi Zohar3323eec92009-02-04 09:06:58 -0500102/* Internal IMA function definitions */
Mimi Zohar3323eec92009-02-04 09:06:58 -0500103int ima_init(void);
Mimi Zoharbab73932009-02-04 09:06:59 -0500104int ima_fs_init(void);
Mimi Zohar3323eec92009-02-04 09:06:58 -0500105int ima_add_template_entry(struct ima_template_entry *entry, int violation,
Roberto Sassu9803d412013-06-07 12:16:27 +0200106 const char *op, struct inode *inode,
107 const unsigned char *filename);
Dmitry Kasatkinc7c8bb22013-04-25 10:43:56 +0300108int ima_calc_file_hash(struct file *file, struct ima_digest_data *hash);
Roberto Sassub6f8f162013-11-08 19:21:39 +0100109int ima_calc_field_array_hash(struct ima_field_data *field_data,
110 struct ima_template_desc *desc, int num_fields,
Roberto Sassua71dc652013-06-07 12:16:33 +0200111 struct ima_digest_data *hash);
Dmitry Kasatkin09ef5432013-06-07 12:16:25 +0200112int __init ima_calc_boot_aggregate(struct ima_digest_data *hash);
Roberto Sassu7d802a22013-06-07 12:16:26 +0200113void ima_add_violation(struct file *file, const unsigned char *filename,
Roberto Sassu8d94eb92015-04-11 17:12:39 +0200114 struct integrity_iint_cache *iint,
Mimi Zohar3323eec92009-02-04 09:06:58 -0500115 const char *op, const char *cause);
Dmitry Kasatkin76bb28f2012-06-08 10:42:30 +0300116int ima_init_crypto(void);
Roberto Sassu3ce1217d2013-06-07 12:16:30 +0200117void ima_putc(struct seq_file *m, void *data, int datalen);
Mimi Zohar45b26132015-06-11 11:54:42 -0400118void ima_print_digest(struct seq_file *m, u8 *digest, u32 size);
Roberto Sassua71dc652013-06-07 12:16:33 +0200119struct ima_template_desc *ima_template_desc_current(void);
120int ima_init_template(void);
Mimi Zohar3323eec92009-02-04 09:06:58 -0500121
122/*
123 * used to protect h_table and sha_table
124 */
125extern spinlock_t ima_queue_lock;
126
127struct ima_h_table {
128 atomic_long_t len; /* number of stored measurements in the list */
129 atomic_long_t violations;
130 struct hlist_head queue[IMA_MEASURE_HTABLE_SIZE];
131};
132extern struct ima_h_table ima_htable;
133
134static inline unsigned long ima_hash_key(u8 *digest)
135{
136 return hash_long(*digest, IMA_HASH_BITS);
137}
138
Mimi Zohar3323eec92009-02-04 09:06:58 -0500139/* LIM API function definitions */
Dmitry Kasatkind9d300c2012-06-27 11:26:14 +0300140int ima_get_action(struct inode *inode, int mask, int function);
Mimi Zohar1adace92011-02-22 10:19:43 -0500141int ima_must_measure(struct inode *inode, int mask, int function);
Mimi Zoharf381c272011-03-09 14:13:22 -0500142int ima_collect_measurement(struct integrity_iint_cache *iint,
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300143 struct file *file,
144 struct evm_ima_xattr_data **xattr_value,
145 int *xattr_len);
Mimi Zoharf381c272011-03-09 14:13:22 -0500146void ima_store_measurement(struct integrity_iint_cache *iint, struct file *file,
Mimi Zoharbcbc9b02013-07-23 11:15:00 -0400147 const unsigned char *filename,
148 struct evm_ima_xattr_data *xattr_value,
149 int xattr_len);
Peter Moodye7c568e2012-06-14 10:04:36 -0700150void ima_audit_measurement(struct integrity_iint_cache *iint,
151 const unsigned char *filename);
Roberto Sassu23b57412015-04-11 17:09:50 +0200152int ima_alloc_init_template(struct ima_event_data *event_data,
153 struct ima_template_entry **entry);
Mimi Zohar3323eec92009-02-04 09:06:58 -0500154int ima_store_template(struct ima_template_entry *entry, int violation,
Roberto Sassu9803d412013-06-07 12:16:27 +0200155 struct inode *inode, const unsigned char *filename);
Roberto Sassua7ed7c62013-12-02 19:40:34 +0100156void ima_free_template_entry(struct ima_template_entry *entry);
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300157const char *ima_d_path(struct path *path, char **pathbuf);
Mimi Zohar3323eec92009-02-04 09:06:58 -0500158
Mimi Zohar3323eec92009-02-04 09:06:58 -0500159/* IMA policy related functions */
Mimi Zohar5a9196d2014-07-22 10:39:48 -0400160enum ima_hooks { FILE_CHECK = 1, MMAP_CHECK, BPRM_CHECK, MODULE_CHECK, FIRMWARE_CHECK, POST_SETATTR };
Mimi Zohar3323eec92009-02-04 09:06:58 -0500161
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500162int ima_match_policy(struct inode *inode, enum ima_hooks func, int mask,
163 int flags);
Mimi Zohar3323eec92009-02-04 09:06:58 -0500164void ima_init_policy(void);
165void ima_update_policy(void);
Roberto Sassua7560242014-09-12 19:35:54 +0200166void ima_update_policy_flag(void);
Eric Paris6ccd0452010-04-20 10:20:54 -0400167ssize_t ima_parse_add_rule(char *);
Mimi Zohar4af46622009-02-04 09:07:00 -0500168void ima_delete_rules(void);
169
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500170/* Appraise integrity measurements */
171#define IMA_APPRAISE_ENFORCE 0x01
172#define IMA_APPRAISE_FIX 0x02
Dmitry Kasatkin2faa6ef2014-05-08 13:11:29 +0300173#define IMA_APPRAISE_LOG 0x04
174#define IMA_APPRAISE_MODULES 0x08
175#define IMA_APPRAISE_FIRMWARE 0x10
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500176
177#ifdef CONFIG_IMA_APPRAISE
Mimi Zohard79d72e2012-12-03 17:08:11 -0500178int ima_appraise_measurement(int func, struct integrity_iint_cache *iint,
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300179 struct file *file, const unsigned char *filename,
180 struct evm_ima_xattr_data *xattr_value,
Dmitry Kasatkin3034a142014-06-27 18:15:44 +0300181 int xattr_len, int opened);
Dmitry Kasatkind26e1932012-09-27 18:26:53 +0300182int ima_must_appraise(struct inode *inode, int mask, enum ima_hooks func);
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500183void ima_update_xattr(struct integrity_iint_cache *iint, struct file *file);
Mimi Zohard79d72e2012-12-03 17:08:11 -0500184enum integrity_status ima_get_cache_status(struct integrity_iint_cache *iint,
185 int func);
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300186void ima_get_hash_algo(struct evm_ima_xattr_data *xattr_value, int xattr_len,
187 struct ima_digest_data *hash);
188int ima_read_xattr(struct dentry *dentry,
189 struct evm_ima_xattr_data **xattr_value);
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500190
191#else
Mimi Zohard79d72e2012-12-03 17:08:11 -0500192static inline int ima_appraise_measurement(int func,
193 struct integrity_iint_cache *iint,
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500194 struct file *file,
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300195 const unsigned char *filename,
196 struct evm_ima_xattr_data *xattr_value,
Dmitry Kasatkin3034a142014-06-27 18:15:44 +0300197 int xattr_len, int opened)
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500198{
199 return INTEGRITY_UNKNOWN;
200}
201
Dmitry Kasatkind26e1932012-09-27 18:26:53 +0300202static inline int ima_must_appraise(struct inode *inode, int mask,
203 enum ima_hooks func)
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500204{
205 return 0;
206}
207
208static inline void ima_update_xattr(struct integrity_iint_cache *iint,
209 struct file *file)
210{
211}
Mimi Zohard79d72e2012-12-03 17:08:11 -0500212
213static inline enum integrity_status ima_get_cache_status(struct integrity_iint_cache
214 *iint, int func)
215{
216 return INTEGRITY_UNKNOWN;
217}
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300218
219static inline void ima_get_hash_algo(struct evm_ima_xattr_data *xattr_value,
220 int xattr_len,
221 struct ima_digest_data *hash)
222{
223}
224
225static inline int ima_read_xattr(struct dentry *dentry,
226 struct evm_ima_xattr_data **xattr_value)
227{
228 return 0;
229}
230
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500231#endif
232
Mimi Zohar4af46622009-02-04 09:07:00 -0500233/* LSM based policy rules require audit */
234#ifdef CONFIG_IMA_LSM_RULES
235
236#define security_filter_rule_init security_audit_rule_init
237#define security_filter_rule_match security_audit_rule_match
238
239#else
240
241static inline int security_filter_rule_init(u32 field, u32 op, char *rulestr,
242 void **lsmrule)
243{
244 return -EINVAL;
245}
246
247static inline int security_filter_rule_match(u32 secid, u32 field, u32 op,
248 void *lsmrule,
249 struct audit_context *actx)
250{
251 return -EINVAL;
252}
253#endif /* CONFIG_IMA_LSM_RULES */
Mimi Zohar7d2ce232013-08-13 08:47:43 -0400254
255#ifdef CONFIG_IMA_TRUSTED_KEYRING
256static inline int ima_init_keyring(const unsigned int id)
257{
258 return integrity_init_keyring(id);
259}
260#else
261static inline int ima_init_keyring(const unsigned int id)
262{
263 return 0;
264}
265#endif /* CONFIG_IMA_TRUSTED_KEYRING */
Mimi Zohar3323eec92009-02-04 09:06:58 -0500266#endif