blob: 5fae6cfe8d910f9234de33a5e991a8ab1aca538a [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0-only */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * Copyright (C) 2005,2006,2007,2008 IBM Corporation
4 *
5 * Authors:
6 * Reiner Sailer <sailer@watson.ibm.com>
7 * Mimi Zohar <zohar@us.ibm.com>
8 *
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00009 * File: ima.h
10 * internal Integrity Measurement Architecture (IMA) definitions
11 */
12
13#ifndef __LINUX_IMA_H
14#define __LINUX_IMA_H
15
16#include <linux/types.h>
17#include <linux/crypto.h>
18#include <linux/fs.h>
19#include <linux/security.h>
20#include <linux/hash.h>
21#include <linux/tpm.h>
22#include <linux/audit.h>
23#include <crypto/hash_info.h>
24
25#include "../integrity.h"
26
27#ifdef CONFIG_HAVE_IMA_KEXEC
28#include <asm/ima.h>
29#endif
30
31enum ima_show_type { IMA_SHOW_BINARY, IMA_SHOW_BINARY_NO_FIELD_LEN,
32 IMA_SHOW_BINARY_OLD_STRING_FMT, IMA_SHOW_ASCII };
Olivier Deprez0e641232021-09-23 10:07:05 +020033enum tpm_pcrs { TPM_PCR0 = 0, TPM_PCR8 = 8, TPM_PCR10 = 10 };
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000034
35/* digest size for IMA, fits SHA1 or MD5 */
36#define IMA_DIGEST_SIZE SHA1_DIGEST_SIZE
37#define IMA_EVENT_NAME_LEN_MAX 255
38
Olivier Deprez0e641232021-09-23 10:07:05 +020039#define IMA_HASH_BITS 10
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000040#define IMA_MEASURE_HTABLE_SIZE (1 << IMA_HASH_BITS)
41
42#define IMA_TEMPLATE_FIELD_ID_MAX_LEN 16
43#define IMA_TEMPLATE_NUM_FIELDS_MAX 15
44
45#define IMA_TEMPLATE_IMA_NAME "ima"
46#define IMA_TEMPLATE_IMA_FMT "d|n"
47
48/* current content of the policy */
49extern int ima_policy_flag;
50
51/* set during initialization */
52extern int ima_hash_algo;
53extern int ima_appraise;
54extern struct tpm_chip *ima_tpm_chip;
Olivier Deprez0e641232021-09-23 10:07:05 +020055extern const char boot_aggregate_name[];
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000056
57/* IMA event related data */
58struct ima_event_data {
59 struct integrity_iint_cache *iint;
60 struct file *file;
61 const unsigned char *filename;
62 struct evm_ima_xattr_data *xattr_value;
63 int xattr_len;
David Brazdil0f672f62019-12-10 10:32:29 +000064 const struct modsig *modsig;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000065 const char *violation;
David Brazdil0f672f62019-12-10 10:32:29 +000066 const void *buf;
67 int buf_len;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000068};
69
70/* IMA template field data definition */
71struct ima_field_data {
72 u8 *data;
73 u32 len;
74};
75
76/* IMA template field definition */
77struct ima_template_field {
78 const char field_id[IMA_TEMPLATE_FIELD_ID_MAX_LEN];
79 int (*field_init)(struct ima_event_data *event_data,
80 struct ima_field_data *field_data);
81 void (*field_show)(struct seq_file *m, enum ima_show_type show,
82 struct ima_field_data *field_data);
83};
84
85/* IMA template descriptor definition */
86struct ima_template_desc {
87 struct list_head list;
88 char *name;
89 char *fmt;
90 int num_fields;
David Brazdil0f672f62019-12-10 10:32:29 +000091 const struct ima_template_field **fields;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000092};
93
94struct ima_template_entry {
95 int pcr;
96 u8 digest[TPM_DIGEST_SIZE]; /* sha1 or md5 measurement hash */
97 struct ima_template_desc *template_desc; /* template descriptor */
98 u32 template_data_len;
99 struct ima_field_data template_data[0]; /* template related data */
100};
101
102struct ima_queue_entry {
103 struct hlist_node hnext; /* place in hash collision list */
104 struct list_head later; /* place in ima_measurements list */
105 struct ima_template_entry *entry;
106};
107extern struct list_head ima_measurements; /* list of all measurements */
108
109/* Some details preceding the binary serialized measurement list */
110struct ima_kexec_hdr {
111 u16 version;
112 u16 _reserved0;
113 u32 _reserved1;
114 u64 buffer_size;
115 u64 count;
116};
117
David Brazdil0f672f62019-12-10 10:32:29 +0000118extern const int read_idmap[];
119
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000120#ifdef CONFIG_HAVE_IMA_KEXEC
121void ima_load_kexec_buffer(void);
122#else
123static inline void ima_load_kexec_buffer(void) {}
124#endif /* CONFIG_HAVE_IMA_KEXEC */
125
126/*
127 * The default binary_runtime_measurements list format is defined as the
128 * platform native format. The canonical format is defined as little-endian.
129 */
130extern bool ima_canonical_fmt;
131
132/* Internal IMA function definitions */
133int ima_init(void);
134int ima_fs_init(void);
135int ima_add_template_entry(struct ima_template_entry *entry, int violation,
136 const char *op, struct inode *inode,
137 const unsigned char *filename);
138int ima_calc_file_hash(struct file *file, struct ima_digest_data *hash);
139int ima_calc_buffer_hash(const void *buf, loff_t len,
140 struct ima_digest_data *hash);
141int ima_calc_field_array_hash(struct ima_field_data *field_data,
142 struct ima_template_desc *desc, int num_fields,
143 struct ima_digest_data *hash);
Olivier Deprez0e641232021-09-23 10:07:05 +0200144int ima_calc_boot_aggregate(struct ima_digest_data *hash);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000145void ima_add_violation(struct file *file, const unsigned char *filename,
146 struct integrity_iint_cache *iint,
147 const char *op, const char *cause);
148int ima_init_crypto(void);
149void ima_putc(struct seq_file *m, void *data, int datalen);
150void ima_print_digest(struct seq_file *m, u8 *digest, u32 size);
David Brazdil0f672f62019-12-10 10:32:29 +0000151int template_desc_init_fields(const char *template_fmt,
152 const struct ima_template_field ***fields,
153 int *num_fields);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000154struct ima_template_desc *ima_template_desc_current(void);
David Brazdil0f672f62019-12-10 10:32:29 +0000155struct ima_template_desc *lookup_template_desc(const char *name);
156bool ima_template_has_modsig(const struct ima_template_desc *ima_template);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000157int ima_restore_measurement_entry(struct ima_template_entry *entry);
158int ima_restore_measurement_list(loff_t bufsize, void *buf);
159int ima_measurements_show(struct seq_file *m, void *v);
160unsigned long ima_get_binary_runtime_size(void);
161int ima_init_template(void);
162void ima_init_template_list(void);
David Brazdil0f672f62019-12-10 10:32:29 +0000163int __init ima_init_digests(void);
164int ima_lsm_policy_change(struct notifier_block *nb, unsigned long event,
165 void *lsm_data);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000166
167/*
168 * used to protect h_table and sha_table
169 */
170extern spinlock_t ima_queue_lock;
171
172struct ima_h_table {
173 atomic_long_t len; /* number of stored measurements in the list */
174 atomic_long_t violations;
175 struct hlist_head queue[IMA_MEASURE_HTABLE_SIZE];
176};
177extern struct ima_h_table ima_htable;
178
Olivier Deprez0e641232021-09-23 10:07:05 +0200179static inline unsigned int ima_hash_key(u8 *digest)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000180{
Olivier Deprez0e641232021-09-23 10:07:05 +0200181 /* there is no point in taking a hash of part of a digest */
182 return (digest[0] | digest[1] << 8) % IMA_MEASURE_HTABLE_SIZE;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000183}
184
185#define __ima_hooks(hook) \
186 hook(NONE) \
187 hook(FILE_CHECK) \
188 hook(MMAP_CHECK) \
189 hook(BPRM_CHECK) \
190 hook(CREDS_CHECK) \
191 hook(POST_SETATTR) \
192 hook(MODULE_CHECK) \
193 hook(FIRMWARE_CHECK) \
194 hook(KEXEC_KERNEL_CHECK) \
195 hook(KEXEC_INITRAMFS_CHECK) \
196 hook(POLICY_CHECK) \
David Brazdil0f672f62019-12-10 10:32:29 +0000197 hook(KEXEC_CMDLINE) \
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000198 hook(MAX_CHECK)
199#define __ima_hook_enumify(ENUM) ENUM,
200
201enum ima_hooks {
202 __ima_hooks(__ima_hook_enumify)
203};
204
David Brazdil0f672f62019-12-10 10:32:29 +0000205extern const char *const func_tokens[];
206
207struct modsig;
208
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000209/* LIM API function definitions */
210int ima_get_action(struct inode *inode, const struct cred *cred, u32 secid,
David Brazdil0f672f62019-12-10 10:32:29 +0000211 int mask, enum ima_hooks func, int *pcr,
212 struct ima_template_desc **template_desc);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000213int ima_must_measure(struct inode *inode, int mask, enum ima_hooks func);
214int ima_collect_measurement(struct integrity_iint_cache *iint,
215 struct file *file, void *buf, loff_t size,
David Brazdil0f672f62019-12-10 10:32:29 +0000216 enum hash_algo algo, struct modsig *modsig);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000217void ima_store_measurement(struct integrity_iint_cache *iint, struct file *file,
218 const unsigned char *filename,
219 struct evm_ima_xattr_data *xattr_value,
David Brazdil0f672f62019-12-10 10:32:29 +0000220 int xattr_len, const struct modsig *modsig, int pcr,
221 struct ima_template_desc *template_desc);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000222void ima_audit_measurement(struct integrity_iint_cache *iint,
223 const unsigned char *filename);
224int ima_alloc_init_template(struct ima_event_data *event_data,
David Brazdil0f672f62019-12-10 10:32:29 +0000225 struct ima_template_entry **entry,
226 struct ima_template_desc *template_desc);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000227int ima_store_template(struct ima_template_entry *entry, int violation,
228 struct inode *inode,
229 const unsigned char *filename, int pcr);
230void ima_free_template_entry(struct ima_template_entry *entry);
231const char *ima_d_path(const struct path *path, char **pathbuf, char *filename);
232
233/* IMA policy related functions */
234int ima_match_policy(struct inode *inode, const struct cred *cred, u32 secid,
David Brazdil0f672f62019-12-10 10:32:29 +0000235 enum ima_hooks func, int mask, int flags, int *pcr,
236 struct ima_template_desc **template_desc);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000237void ima_init_policy(void);
238void ima_update_policy(void);
239void ima_update_policy_flag(void);
240ssize_t ima_parse_add_rule(char *);
241void ima_delete_rules(void);
242int ima_check_policy(void);
243void *ima_policy_start(struct seq_file *m, loff_t *pos);
244void *ima_policy_next(struct seq_file *m, void *v, loff_t *pos);
245void ima_policy_stop(struct seq_file *m, void *v);
246int ima_policy_show(struct seq_file *m, void *v);
247
248/* Appraise integrity measurements */
249#define IMA_APPRAISE_ENFORCE 0x01
250#define IMA_APPRAISE_FIX 0x02
251#define IMA_APPRAISE_LOG 0x04
252#define IMA_APPRAISE_MODULES 0x08
253#define IMA_APPRAISE_FIRMWARE 0x10
254#define IMA_APPRAISE_POLICY 0x20
255#define IMA_APPRAISE_KEXEC 0x40
256
257#ifdef CONFIG_IMA_APPRAISE
258int ima_appraise_measurement(enum ima_hooks func,
259 struct integrity_iint_cache *iint,
260 struct file *file, const unsigned char *filename,
261 struct evm_ima_xattr_data *xattr_value,
David Brazdil0f672f62019-12-10 10:32:29 +0000262 int xattr_len, const struct modsig *modsig);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000263int ima_must_appraise(struct inode *inode, int mask, enum ima_hooks func);
264void ima_update_xattr(struct integrity_iint_cache *iint, struct file *file);
265enum integrity_status ima_get_cache_status(struct integrity_iint_cache *iint,
266 enum ima_hooks func);
267enum hash_algo ima_get_hash_algo(struct evm_ima_xattr_data *xattr_value,
268 int xattr_len);
269int ima_read_xattr(struct dentry *dentry,
270 struct evm_ima_xattr_data **xattr_value);
271
272#else
273static inline int ima_appraise_measurement(enum ima_hooks func,
274 struct integrity_iint_cache *iint,
275 struct file *file,
276 const unsigned char *filename,
277 struct evm_ima_xattr_data *xattr_value,
David Brazdil0f672f62019-12-10 10:32:29 +0000278 int xattr_len,
279 const struct modsig *modsig)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000280{
281 return INTEGRITY_UNKNOWN;
282}
283
284static inline int ima_must_appraise(struct inode *inode, int mask,
285 enum ima_hooks func)
286{
287 return 0;
288}
289
290static inline void ima_update_xattr(struct integrity_iint_cache *iint,
291 struct file *file)
292{
293}
294
295static inline enum integrity_status ima_get_cache_status(struct integrity_iint_cache
296 *iint,
297 enum ima_hooks func)
298{
299 return INTEGRITY_UNKNOWN;
300}
301
302static inline enum hash_algo
303ima_get_hash_algo(struct evm_ima_xattr_data *xattr_value, int xattr_len)
304{
305 return ima_hash_algo;
306}
307
308static inline int ima_read_xattr(struct dentry *dentry,
309 struct evm_ima_xattr_data **xattr_value)
310{
311 return 0;
312}
313
314#endif /* CONFIG_IMA_APPRAISE */
315
David Brazdil0f672f62019-12-10 10:32:29 +0000316#ifdef CONFIG_IMA_APPRAISE_MODSIG
317bool ima_hook_supports_modsig(enum ima_hooks func);
318int ima_read_modsig(enum ima_hooks func, const void *buf, loff_t buf_len,
319 struct modsig **modsig);
320void ima_collect_modsig(struct modsig *modsig, const void *buf, loff_t size);
321int ima_get_modsig_digest(const struct modsig *modsig, enum hash_algo *algo,
322 const u8 **digest, u32 *digest_size);
323int ima_get_raw_modsig(const struct modsig *modsig, const void **data,
324 u32 *data_len);
325void ima_free_modsig(struct modsig *modsig);
326#else
327static inline bool ima_hook_supports_modsig(enum ima_hooks func)
328{
329 return false;
330}
331
332static inline int ima_read_modsig(enum ima_hooks func, const void *buf,
333 loff_t buf_len, struct modsig **modsig)
334{
335 return -EOPNOTSUPP;
336}
337
338static inline void ima_collect_modsig(struct modsig *modsig, const void *buf,
339 loff_t size)
340{
341}
342
343static inline int ima_get_modsig_digest(const struct modsig *modsig,
344 enum hash_algo *algo, const u8 **digest,
345 u32 *digest_size)
346{
347 return -EOPNOTSUPP;
348}
349
350static inline int ima_get_raw_modsig(const struct modsig *modsig,
351 const void **data, u32 *data_len)
352{
353 return -EOPNOTSUPP;
354}
355
356static inline void ima_free_modsig(struct modsig *modsig)
357{
358}
359#endif /* CONFIG_IMA_APPRAISE_MODSIG */
360
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000361/* LSM based policy rules require audit */
362#ifdef CONFIG_IMA_LSM_RULES
363
364#define security_filter_rule_init security_audit_rule_init
Olivier Deprez0e641232021-09-23 10:07:05 +0200365#define security_filter_rule_free security_audit_rule_free
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000366#define security_filter_rule_match security_audit_rule_match
367
368#else
369
370static inline int security_filter_rule_init(u32 field, u32 op, char *rulestr,
371 void **lsmrule)
372{
373 return -EINVAL;
374}
375
Olivier Deprez0e641232021-09-23 10:07:05 +0200376static inline void security_filter_rule_free(void *lsmrule)
377{
378}
379
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000380static inline int security_filter_rule_match(u32 secid, u32 field, u32 op,
David Brazdil0f672f62019-12-10 10:32:29 +0000381 void *lsmrule)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000382{
383 return -EINVAL;
384}
385#endif /* CONFIG_IMA_LSM_RULES */
386
387#ifdef CONFIG_IMA_READ_POLICY
388#define POLICY_FILE_FLAGS (S_IWUSR | S_IRUSR)
389#else
390#define POLICY_FILE_FLAGS S_IWUSR
391#endif /* CONFIG_IMA_READ_POLICY */
392
393#endif /* __LINUX_IMA_H */