Thomas Gleixner | b886d83c | 2019-06-01 10:08:55 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 2 | /* |
Paul Gortmaker | 4f83d5e | 2018-12-09 15:36:33 -0500 | [diff] [blame] | 3 | * Integrity Measurement Architecture |
| 4 | * |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 5 | * Copyright (C) 2005,2006,2007,2008 IBM Corporation |
| 6 | * |
| 7 | * Authors: |
| 8 | * Reiner Sailer <sailer@watson.ibm.com> |
| 9 | * Serge Hallyn <serue@us.ibm.com> |
| 10 | * Kylene Hall <kylene@us.ibm.com> |
| 11 | * Mimi Zohar <zohar@us.ibm.com> |
| 12 | * |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 13 | * File: ima_main.c |
Eric Paris | e0d5bd2 | 2009-12-04 15:48:00 -0500 | [diff] [blame] | 14 | * implements the IMA hooks: ima_bprm_check, ima_file_mmap, |
Mimi Zohar | 9bbb6ca | 2010-01-26 17:02:40 -0500 | [diff] [blame] | 15 | * and ima_file_check. |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 16 | */ |
Petr Vorel | ab60368 | 2018-03-23 14:41:08 +0100 | [diff] [blame] | 17 | |
Paul Gortmaker | b49d564 | 2018-12-14 16:48:07 -0500 | [diff] [blame] | 18 | #include <linux/module.h> |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 19 | #include <linux/file.h> |
| 20 | #include <linux/binfmts.h> |
Scott Branden | b89999d0 | 2020-10-02 10:38:15 -0700 | [diff] [blame] | 21 | #include <linux/kernel_read_file.h> |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 22 | #include <linux/mount.h> |
| 23 | #include <linux/mman.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 24 | #include <linux/slab.h> |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 25 | #include <linux/xattr.h> |
James Morris | d5813a5 | 2011-08-30 10:19:50 +1000 | [diff] [blame] | 26 | #include <linux/ima.h> |
Jeff Layton | 3b370b2 | 2017-12-11 06:35:21 -0500 | [diff] [blame] | 27 | #include <linux/iversion.h> |
Mimi Zohar | d77ccdc | 2018-02-21 11:35:20 -0500 | [diff] [blame] | 28 | #include <linux/fs.h> |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 29 | |
| 30 | #include "ima.h" |
| 31 | |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 32 | #ifdef CONFIG_IMA_APPRAISE |
| 33 | int ima_appraise = IMA_APPRAISE_ENFORCE; |
| 34 | #else |
| 35 | int ima_appraise; |
| 36 | #endif |
| 37 | |
Roberto Sassu | 5d1ef2c | 2021-07-23 10:53:02 +0200 | [diff] [blame^] | 38 | int __ro_after_init ima_hash_algo = HASH_ALGO_SHA1; |
Mimi Zohar | e7a2ad7 | 2013-06-07 12:16:37 +0200 | [diff] [blame] | 39 | static int hash_setup_done; |
Dmitry Kasatkin | c7c8bb2 | 2013-04-25 10:43:56 +0300 | [diff] [blame] | 40 | |
Janne Karhunen | b169424 | 2019-06-14 15:20:15 +0300 | [diff] [blame] | 41 | static struct notifier_block ima_lsm_policy_notifier = { |
| 42 | .notifier_call = ima_lsm_policy_change, |
| 43 | }; |
| 44 | |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 45 | static int __init hash_setup(char *str) |
| 46 | { |
Mimi Zohar | e7a2ad7 | 2013-06-07 12:16:37 +0200 | [diff] [blame] | 47 | struct ima_template_desc *template_desc = ima_template_desc_current(); |
| 48 | int i; |
| 49 | |
| 50 | if (hash_setup_done) |
| 51 | return 1; |
| 52 | |
| 53 | if (strcmp(template_desc->name, IMA_TEMPLATE_IMA_NAME) == 0) { |
Bruno Meneguele | 7fe2bb7 | 2020-09-04 16:40:58 -0300 | [diff] [blame] | 54 | if (strncmp(str, "sha1", 4) == 0) { |
Mimi Zohar | e7a2ad7 | 2013-06-07 12:16:37 +0200 | [diff] [blame] | 55 | ima_hash_algo = HASH_ALGO_SHA1; |
Bruno Meneguele | 7fe2bb7 | 2020-09-04 16:40:58 -0300 | [diff] [blame] | 56 | } else if (strncmp(str, "md5", 3) == 0) { |
Mimi Zohar | e7a2ad7 | 2013-06-07 12:16:37 +0200 | [diff] [blame] | 57 | ima_hash_algo = HASH_ALGO_MD5; |
Bruno Meneguele | 7fe2bb7 | 2020-09-04 16:40:58 -0300 | [diff] [blame] | 58 | } else { |
| 59 | pr_err("invalid hash algorithm \"%s\" for template \"%s\"", |
| 60 | str, IMA_TEMPLATE_IMA_NAME); |
Boshi Wang | ebe7c0a | 2017-10-20 16:01:03 +0800 | [diff] [blame] | 61 | return 1; |
Bruno Meneguele | 7fe2bb7 | 2020-09-04 16:40:58 -0300 | [diff] [blame] | 62 | } |
Mimi Zohar | e7a2ad7 | 2013-06-07 12:16:37 +0200 | [diff] [blame] | 63 | goto out; |
| 64 | } |
| 65 | |
Yisheng Xie | b4df860 | 2018-05-21 19:58:02 +0800 | [diff] [blame] | 66 | i = match_string(hash_algo_name, HASH_ALGO__LAST, str); |
Bruno Meneguele | 7fe2bb7 | 2020-09-04 16:40:58 -0300 | [diff] [blame] | 67 | if (i < 0) { |
| 68 | pr_err("invalid hash algorithm \"%s\"", str); |
Boshi Wang | ebe7c0a | 2017-10-20 16:01:03 +0800 | [diff] [blame] | 69 | return 1; |
Bruno Meneguele | 7fe2bb7 | 2020-09-04 16:40:58 -0300 | [diff] [blame] | 70 | } |
Yisheng Xie | b4df860 | 2018-05-21 19:58:02 +0800 | [diff] [blame] | 71 | |
| 72 | ima_hash_algo = i; |
Mimi Zohar | e7a2ad7 | 2013-06-07 12:16:37 +0200 | [diff] [blame] | 73 | out: |
| 74 | hash_setup_done = 1; |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 75 | return 1; |
| 76 | } |
| 77 | __setup("ima_hash=", hash_setup); |
| 78 | |
Roberto Sassu | 5d1ef2c | 2021-07-23 10:53:02 +0200 | [diff] [blame^] | 79 | enum hash_algo ima_get_current_hash_algo(void) |
| 80 | { |
| 81 | return ima_hash_algo; |
| 82 | } |
| 83 | |
Mimi Zohar | 2cd4737 | 2019-04-30 08:34:44 -0400 | [diff] [blame] | 84 | /* Prevent mmap'ing a file execute that is already mmap'ed write */ |
| 85 | static int mmap_violation_check(enum ima_hooks func, struct file *file, |
| 86 | char **pathbuf, const char **pathname, |
| 87 | char *filename) |
| 88 | { |
| 89 | struct inode *inode; |
| 90 | int rc = 0; |
| 91 | |
| 92 | if ((func == MMAP_CHECK) && mapping_writably_mapped(file->f_mapping)) { |
| 93 | rc = -ETXTBSY; |
| 94 | inode = file_inode(file); |
| 95 | |
| 96 | if (!*pathbuf) /* ima_rdwr_violation possibly pre-fetched */ |
| 97 | *pathname = ima_d_path(&file->f_path, pathbuf, |
| 98 | filename); |
| 99 | integrity_audit_msg(AUDIT_INTEGRITY_DATA, inode, *pathname, |
| 100 | "mmap_file", "mmapped_writers", rc, 0); |
| 101 | } |
| 102 | return rc; |
| 103 | } |
| 104 | |
Eric Paris | e0d5bd2 | 2009-12-04 15:48:00 -0500 | [diff] [blame] | 105 | /* |
Mimi Zohar | 890275b5 | 2010-11-02 10:13:07 -0400 | [diff] [blame] | 106 | * ima_rdwr_violation_check |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 107 | * |
Mimi Zohar | 890275b5 | 2010-11-02 10:13:07 -0400 | [diff] [blame] | 108 | * Only invalidate the PCR for measured files: |
Dmitry Kasatkin | 2bb930a | 2014-03-04 18:04:20 +0200 | [diff] [blame] | 109 | * - Opening a file for write when already open for read, |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 110 | * results in a time of measure, time of use (ToMToU) error. |
| 111 | * - Opening a file for read when already open for write, |
Dmitry Kasatkin | 2bb930a | 2014-03-04 18:04:20 +0200 | [diff] [blame] | 112 | * could result in a file measurement error. |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 113 | * |
| 114 | */ |
Roberto Sassu | f7a859f | 2014-09-12 19:35:55 +0200 | [diff] [blame] | 115 | static void ima_rdwr_violation_check(struct file *file, |
| 116 | struct integrity_iint_cache *iint, |
Roberto Sassu | 1b68bdf | 2014-09-12 19:35:56 +0200 | [diff] [blame] | 117 | int must_measure, |
Roberto Sassu | f7a859f | 2014-09-12 19:35:55 +0200 | [diff] [blame] | 118 | char **pathbuf, |
Roberto Sassu | 4e8581e | 2017-11-30 11:56:02 +0100 | [diff] [blame] | 119 | const char **pathname, |
| 120 | char *filename) |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 121 | { |
David Howells | c77cece | 2013-06-13 23:37:49 +0100 | [diff] [blame] | 122 | struct inode *inode = file_inode(file); |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 123 | fmode_t mode = file->f_mode; |
Eric Paris | ad16ad0 | 2010-10-25 14:41:45 -0400 | [diff] [blame] | 124 | bool send_tomtou = false, send_writers = false; |
Eric Paris | a178d20 | 2010-10-25 14:41:59 -0400 | [diff] [blame] | 125 | |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 126 | if (mode & FMODE_WRITE) { |
Dmitry Kasatkin | 14503eb | 2014-03-27 10:29:28 +0200 | [diff] [blame] | 127 | if (atomic_read(&inode->i_readcount) && IS_IMA(inode)) { |
Roberto Sassu | f7a859f | 2014-09-12 19:35:55 +0200 | [diff] [blame] | 128 | if (!iint) |
| 129 | iint = integrity_iint_find(inode); |
Dmitry Kasatkin | 14503eb | 2014-03-27 10:29:28 +0200 | [diff] [blame] | 130 | /* IMA_MEASURE is set from reader side */ |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 131 | if (iint && test_bit(IMA_MUST_MEASURE, |
| 132 | &iint->atomic_flags)) |
Dmitry Kasatkin | 14503eb | 2014-03-27 10:29:28 +0200 | [diff] [blame] | 133 | send_tomtou = true; |
| 134 | } |
Dmitry Kasatkin | b882fae | 2014-03-27 10:54:11 +0200 | [diff] [blame] | 135 | } else { |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 136 | if (must_measure) |
| 137 | set_bit(IMA_MUST_MEASURE, &iint->atomic_flags); |
Nikolay Borisov | eed9de3 | 2018-12-11 10:31:40 +0200 | [diff] [blame] | 138 | if (inode_is_open_for_write(inode) && must_measure) |
Dmitry Kasatkin | b882fae | 2014-03-27 10:54:11 +0200 | [diff] [blame] | 139 | send_writers = true; |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 140 | } |
Eric Paris | ad16ad0 | 2010-10-25 14:41:45 -0400 | [diff] [blame] | 141 | |
Mimi Zohar | 08e1b76 | 2012-06-20 09:32:55 -0400 | [diff] [blame] | 142 | if (!send_tomtou && !send_writers) |
| 143 | return; |
| 144 | |
Mimi Zohar | bc15ed6 | 2017-01-17 06:45:41 -0500 | [diff] [blame] | 145 | *pathname = ima_d_path(&file->f_path, pathbuf, filename); |
Dmitry Kasatkin | ea1046d | 2012-09-04 00:40:17 +0300 | [diff] [blame] | 146 | |
Eric Paris | ad16ad0 | 2010-10-25 14:41:45 -0400 | [diff] [blame] | 147 | if (send_tomtou) |
Roberto Sassu | 8d94eb9 | 2015-04-11 17:12:39 +0200 | [diff] [blame] | 148 | ima_add_violation(file, *pathname, iint, |
| 149 | "invalid_pcr", "ToMToU"); |
Eric Paris | ad16ad0 | 2010-10-25 14:41:45 -0400 | [diff] [blame] | 150 | if (send_writers) |
Roberto Sassu | 8d94eb9 | 2015-04-11 17:12:39 +0200 | [diff] [blame] | 151 | ima_add_violation(file, *pathname, iint, |
Mimi Zohar | 08e1b76 | 2012-06-20 09:32:55 -0400 | [diff] [blame] | 152 | "invalid_pcr", "open_writers"); |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 153 | } |
| 154 | |
Mimi Zohar | f381c27 | 2011-03-09 14:13:22 -0500 | [diff] [blame] | 155 | static void ima_check_last_writer(struct integrity_iint_cache *iint, |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 156 | struct inode *inode, struct file *file) |
Eric Paris | bc7d2a3 | 2010-10-25 14:42:05 -0400 | [diff] [blame] | 157 | { |
Al Viro | 4b2a2c6 | 2011-07-26 04:30:35 -0400 | [diff] [blame] | 158 | fmode_t mode = file->f_mode; |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 159 | bool update; |
Eric Paris | 497f323 | 2010-10-25 14:41:32 -0400 | [diff] [blame] | 160 | |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 161 | if (!(mode & FMODE_WRITE)) |
| 162 | return; |
| 163 | |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 164 | mutex_lock(&iint->mutex); |
Dmitry Kasatkin | b151d6b | 2014-06-27 18:04:27 +0300 | [diff] [blame] | 165 | if (atomic_read(&inode->i_writecount) == 1) { |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 166 | update = test_and_clear_bit(IMA_UPDATE_XATTR, |
| 167 | &iint->atomic_flags); |
Sascha Hauer | ac0bf02 | 2017-12-11 06:35:20 -0500 | [diff] [blame] | 168 | if (!IS_I_VERSION(inode) || |
Goffredo Baroncelli | c472c07 | 2018-02-01 08:15:25 -0500 | [diff] [blame] | 169 | !inode_eq_iversion(inode, iint->version) || |
Dmitry Kasatkin | b151d6b | 2014-06-27 18:04:27 +0300 | [diff] [blame] | 170 | (iint->flags & IMA_NEW_FILE)) { |
| 171 | iint->flags &= ~(IMA_DONE_MASK | IMA_NEW_FILE); |
Eric Richter | a422638 | 2016-06-01 13:14:06 -0500 | [diff] [blame] | 172 | iint->measured_pcrs = 0; |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 173 | if (update) |
Dmitry Kasatkin | b151d6b | 2014-06-27 18:04:27 +0300 | [diff] [blame] | 174 | ima_update_xattr(iint, file); |
| 175 | } |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 176 | } |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 177 | mutex_unlock(&iint->mutex); |
Eric Paris | bc7d2a3 | 2010-10-25 14:42:05 -0400 | [diff] [blame] | 178 | } |
| 179 | |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 180 | /** |
| 181 | * ima_file_free - called on __fput() |
| 182 | * @file: pointer to file structure being freed |
| 183 | * |
Mimi Zohar | 890275b5 | 2010-11-02 10:13:07 -0400 | [diff] [blame] | 184 | * Flag files that changed, based on i_version |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 185 | */ |
| 186 | void ima_file_free(struct file *file) |
| 187 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 188 | struct inode *inode = file_inode(file); |
Mimi Zohar | f381c27 | 2011-03-09 14:13:22 -0500 | [diff] [blame] | 189 | struct integrity_iint_cache *iint; |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 190 | |
Dmitry Kasatkin | 0f34a00 | 2014-09-24 11:05:10 +0300 | [diff] [blame] | 191 | if (!ima_policy_flag || !S_ISREG(inode->i_mode)) |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 192 | return; |
Eric Paris | 196f518 | 2010-10-25 14:42:19 -0400 | [diff] [blame] | 193 | |
Mimi Zohar | f381c27 | 2011-03-09 14:13:22 -0500 | [diff] [blame] | 194 | iint = integrity_iint_find(inode); |
Mimi Zohar | 854fdd5 | 2010-11-02 10:14:22 -0400 | [diff] [blame] | 195 | if (!iint) |
| 196 | return; |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 197 | |
Mimi Zohar | 854fdd5 | 2010-11-02 10:14:22 -0400 | [diff] [blame] | 198 | ima_check_last_writer(iint, inode, file); |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 199 | } |
| 200 | |
Matthew Garrett | d906c10 | 2018-01-08 13:36:20 -0800 | [diff] [blame] | 201 | static int process_measurement(struct file *file, const struct cred *cred, |
| 202 | u32 secid, char *buf, loff_t size, int mask, |
Al Viro | 6035a27 | 2018-06-08 13:40:10 -0400 | [diff] [blame] | 203 | enum ima_hooks func) |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 204 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 205 | struct inode *inode = file_inode(file); |
Roberto Sassu | f7a859f | 2014-09-12 19:35:55 +0200 | [diff] [blame] | 206 | struct integrity_iint_cache *iint = NULL; |
Matthew Garrett | 19453ce0 | 2019-06-19 15:46:11 -0700 | [diff] [blame] | 207 | struct ima_template_desc *template_desc = NULL; |
Dmitry Kasatkin | ea1046d | 2012-09-04 00:40:17 +0300 | [diff] [blame] | 208 | char *pathbuf = NULL; |
Mimi Zohar | bc15ed6 | 2017-01-17 06:45:41 -0500 | [diff] [blame] | 209 | char filename[NAME_MAX]; |
Dmitry Kasatkin | ea1046d | 2012-09-04 00:40:17 +0300 | [diff] [blame] | 210 | const char *pathname = NULL; |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 211 | int rc = 0, action, must_appraise = 0; |
Eric Richter | 725de7f | 2016-06-01 13:14:02 -0500 | [diff] [blame] | 212 | int pcr = CONFIG_IMA_MEASURE_PCR_IDX; |
Dmitry Kasatkin | 1525b06 | 2014-10-30 12:39:39 +0200 | [diff] [blame] | 213 | struct evm_ima_xattr_data *xattr_value = NULL; |
Thiago Jung Bauermann | 39b0709 | 2019-06-27 23:19:30 -0300 | [diff] [blame] | 214 | struct modsig *modsig = NULL; |
Dmitry Kasatkin | d3634d0 | 2013-04-25 10:44:04 +0300 | [diff] [blame] | 215 | int xattr_len = 0; |
Roberto Sassu | f7a859f | 2014-09-12 19:35:55 +0200 | [diff] [blame] | 216 | bool violation_check; |
Dmitry Kasatkin | 1525b06 | 2014-10-30 12:39:39 +0200 | [diff] [blame] | 217 | enum hash_algo hash_algo; |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 218 | |
Roberto Sassu | a756024 | 2014-09-12 19:35:54 +0200 | [diff] [blame] | 219 | if (!ima_policy_flag || !S_ISREG(inode->i_mode)) |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 220 | return 0; |
Eric Paris | bc7d2a3 | 2010-10-25 14:42:05 -0400 | [diff] [blame] | 221 | |
Mimi Zohar | d79d72e | 2012-12-03 17:08:11 -0500 | [diff] [blame] | 222 | /* Return an IMA_MEASURE, IMA_APPRAISE, IMA_AUDIT action |
| 223 | * bitmask based on the appraise/audit/measurement policy. |
| 224 | * Included is the appraise submask. |
| 225 | */ |
Christian Brauner | a2d2329 | 2021-01-21 14:19:45 +0100 | [diff] [blame] | 226 | action = ima_get_action(file_mnt_user_ns(file), inode, cred, secid, |
| 227 | mask, func, &pcr, &template_desc, NULL); |
Mimi Zohar | 4ad87a3 | 2016-01-14 20:59:14 -0500 | [diff] [blame] | 228 | violation_check = ((func == FILE_CHECK || func == MMAP_CHECK) && |
Roberto Sassu | f7a859f | 2014-09-12 19:35:55 +0200 | [diff] [blame] | 229 | (ima_policy_flag & IMA_MEASURE)); |
| 230 | if (!action && !violation_check) |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 231 | return 0; |
| 232 | |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 233 | must_appraise = action & IMA_APPRAISE; |
Eric Paris | bc7d2a3 | 2010-10-25 14:42:05 -0400 | [diff] [blame] | 234 | |
Mimi Zohar | 5a73fcf | 2012-12-05 15:14:38 -0500 | [diff] [blame] | 235 | /* Is the appraise rule hook specific? */ |
Dmitry Kasatkin | 3a8a2ea | 2014-09-03 10:19:57 +0300 | [diff] [blame] | 236 | if (action & IMA_FILE_APPRAISE) |
Mimi Zohar | 4ad87a3 | 2016-01-14 20:59:14 -0500 | [diff] [blame] | 237 | func = FILE_CHECK; |
Mimi Zohar | 5a73fcf | 2012-12-05 15:14:38 -0500 | [diff] [blame] | 238 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 239 | inode_lock(inode); |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 240 | |
Roberto Sassu | f7a859f | 2014-09-12 19:35:55 +0200 | [diff] [blame] | 241 | if (action) { |
| 242 | iint = integrity_inode_get(inode); |
| 243 | if (!iint) |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 244 | rc = -ENOMEM; |
Roberto Sassu | f7a859f | 2014-09-12 19:35:55 +0200 | [diff] [blame] | 245 | } |
| 246 | |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 247 | if (!rc && violation_check) |
Roberto Sassu | 1b68bdf | 2014-09-12 19:35:56 +0200 | [diff] [blame] | 248 | ima_rdwr_violation_check(file, iint, action & IMA_MEASURE, |
Roberto Sassu | 4e8581e | 2017-11-30 11:56:02 +0100 | [diff] [blame] | 249 | &pathbuf, &pathname, filename); |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 250 | |
| 251 | inode_unlock(inode); |
| 252 | |
| 253 | if (rc) |
| 254 | goto out; |
| 255 | if (!action) |
| 256 | goto out; |
| 257 | |
| 258 | mutex_lock(&iint->mutex); |
| 259 | |
| 260 | if (test_and_clear_bit(IMA_CHANGE_ATTR, &iint->atomic_flags)) |
| 261 | /* reset appraisal flags if ima_inode_post_setattr was called */ |
| 262 | iint->flags &= ~(IMA_APPRAISE | IMA_APPRAISED | |
| 263 | IMA_APPRAISE_SUBMASK | IMA_APPRAISED_SUBMASK | |
| 264 | IMA_ACTION_FLAGS); |
| 265 | |
Mimi Zohar | d77ccdc | 2018-02-21 11:35:20 -0500 | [diff] [blame] | 266 | /* |
| 267 | * Re-evaulate the file if either the xattr has changed or the |
| 268 | * kernel has no way of detecting file change on the filesystem. |
| 269 | * (Limited to privileged mounted filesystems.) |
| 270 | */ |
| 271 | if (test_and_clear_bit(IMA_CHANGE_XATTR, &iint->atomic_flags) || |
| 272 | ((inode->i_sb->s_iflags & SB_I_IMA_UNVERIFIABLE_SIGNATURE) && |
Mimi Zohar | 9e67028 | 2018-02-21 11:36:32 -0500 | [diff] [blame] | 273 | !(inode->i_sb->s_iflags & SB_I_UNTRUSTED_MOUNTER) && |
| 274 | !(action & IMA_FAIL_UNVERIFIABLE_SIGS))) { |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 275 | iint->flags &= ~IMA_DONE_MASK; |
Mimi Zohar | d77ccdc | 2018-02-21 11:35:20 -0500 | [diff] [blame] | 276 | iint->measured_pcrs = 0; |
| 277 | } |
Dmitry Kasatkin | bf2276d | 2011-10-19 12:04:40 +0300 | [diff] [blame] | 278 | |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 279 | /* Determine if already appraised/measured based on bitmask |
Mimi Zohar | d79d72e | 2012-12-03 17:08:11 -0500 | [diff] [blame] | 280 | * (IMA_MEASURE, IMA_MEASURED, IMA_XXXX_APPRAISE, IMA_XXXX_APPRAISED, |
| 281 | * IMA_AUDIT, IMA_AUDITED) |
| 282 | */ |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 283 | iint->flags |= action; |
Dmitry Kasatkin | 0e5a247 | 2012-06-08 13:58:49 +0300 | [diff] [blame] | 284 | action &= IMA_DO_MASK; |
Eric Richter | a422638 | 2016-06-01 13:14:06 -0500 | [diff] [blame] | 285 | action &= ~((iint->flags & (IMA_DONE_MASK ^ IMA_MEASURED)) >> 1); |
| 286 | |
| 287 | /* If target pcr is already measured, unset IMA_MEASURE action */ |
| 288 | if ((action & IMA_MEASURE) && (iint->measured_pcrs & (0x1 << pcr))) |
| 289 | action ^= IMA_MEASURE; |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 290 | |
Mimi Zohar | da1b002 | 2016-09-29 10:04:52 -0400 | [diff] [blame] | 291 | /* HASH sets the digital signature and update flags, nothing else */ |
| 292 | if ((action & IMA_HASH) && |
| 293 | !(test_bit(IMA_DIGSIG, &iint->atomic_flags))) { |
| 294 | xattr_len = ima_read_xattr(file_dentry(file), &xattr_value); |
| 295 | if ((xattr_value && xattr_len > 2) && |
| 296 | (xattr_value->type == EVM_IMA_XATTR_DIGSIG)) |
| 297 | set_bit(IMA_DIGSIG, &iint->atomic_flags); |
| 298 | iint->flags |= IMA_HASHED; |
| 299 | action ^= IMA_HASH; |
| 300 | set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags); |
| 301 | } |
| 302 | |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 303 | /* Nothing to do, just return existing appraised status */ |
| 304 | if (!action) { |
Mimi Zohar | 2cd4737 | 2019-04-30 08:34:44 -0400 | [diff] [blame] | 305 | if (must_appraise) { |
| 306 | rc = mmap_violation_check(func, file, &pathbuf, |
| 307 | &pathname, filename); |
| 308 | if (!rc) |
| 309 | rc = ima_get_cache_status(iint, func); |
| 310 | } |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 311 | goto out_locked; |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 312 | } |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 313 | |
Dmitry Kasatkin | f68c05f | 2014-08-22 09:43:55 +0300 | [diff] [blame] | 314 | if ((action & IMA_APPRAISE_SUBMASK) || |
Thiago Jung Bauermann | 39b0709 | 2019-06-27 23:19:30 -0300 | [diff] [blame] | 315 | strcmp(template_desc->name, IMA_TEMPLATE_IMA_NAME) != 0) { |
Dmitry Kasatkin | 1525b06 | 2014-10-30 12:39:39 +0200 | [diff] [blame] | 316 | /* read 'security.ima' */ |
Miklos Szeredi | e71b9df | 2016-09-16 12:44:20 +0200 | [diff] [blame] | 317 | xattr_len = ima_read_xattr(file_dentry(file), &xattr_value); |
Dmitry Kasatkin | d3634d0 | 2013-04-25 10:44:04 +0300 | [diff] [blame] | 318 | |
Thiago Jung Bauermann | e509225 | 2019-06-27 23:19:33 -0300 | [diff] [blame] | 319 | /* |
| 320 | * Read the appended modsig if allowed by the policy, and allow |
| 321 | * an additional measurement list entry, if needed, based on the |
| 322 | * template format and whether the file was already measured. |
| 323 | */ |
| 324 | if (iint->flags & IMA_MODSIG_ALLOWED) { |
| 325 | rc = ima_read_modsig(func, buf, size, &modsig); |
| 326 | |
| 327 | if (!rc && ima_template_has_modsig(template_desc) && |
| 328 | iint->flags & IMA_MEASURED) |
| 329 | action |= IMA_MEASURE; |
| 330 | } |
Thiago Jung Bauermann | 39b0709 | 2019-06-27 23:19:30 -0300 | [diff] [blame] | 331 | } |
| 332 | |
Dmitry Kasatkin | 1525b06 | 2014-10-30 12:39:39 +0200 | [diff] [blame] | 333 | hash_algo = ima_get_hash_algo(xattr_value, xattr_len); |
| 334 | |
Thiago Jung Bauermann | 1558822 | 2019-06-27 23:19:31 -0300 | [diff] [blame] | 335 | rc = ima_collect_measurement(iint, file, buf, size, hash_algo, modsig); |
Mimi Zohar | f3cc6b2 | 2017-06-17 23:56:23 -0400 | [diff] [blame] | 336 | if (rc != 0 && rc != -EBADF && rc != -EINVAL) |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 337 | goto out_locked; |
Mimi Zohar | 08e1b76 | 2012-06-20 09:32:55 -0400 | [diff] [blame] | 338 | |
Mimi Zohar | bc15ed6 | 2017-01-17 06:45:41 -0500 | [diff] [blame] | 339 | if (!pathbuf) /* ima_rdwr_violation possibly pre-fetched */ |
| 340 | pathname = ima_d_path(&file->f_path, &pathbuf, filename); |
Dmitry Kasatkin | ea1046d | 2012-09-04 00:40:17 +0300 | [diff] [blame] | 341 | |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 342 | if (action & IMA_MEASURE) |
Mimi Zohar | bcbc9b0c | 2013-07-23 11:15:00 -0400 | [diff] [blame] | 343 | ima_store_measurement(iint, file, pathname, |
Thiago Jung Bauermann | 3878d50 | 2019-06-27 23:19:32 -0300 | [diff] [blame] | 344 | xattr_value, xattr_len, modsig, pcr, |
Matthew Garrett | 19453ce0 | 2019-06-19 15:46:11 -0700 | [diff] [blame] | 345 | template_desc); |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 346 | if (rc == 0 && (action & IMA_APPRAISE_SUBMASK)) { |
Nayna Jain | 273df86 | 2019-10-30 23:31:32 -0400 | [diff] [blame] | 347 | rc = ima_check_blacklist(iint, modsig, pcr); |
| 348 | if (rc != -EPERM) { |
| 349 | inode_lock(inode); |
| 350 | rc = ima_appraise_measurement(func, iint, file, |
| 351 | pathname, xattr_value, |
| 352 | xattr_len, modsig); |
| 353 | inode_unlock(inode); |
| 354 | } |
Mimi Zohar | 2cd4737 | 2019-04-30 08:34:44 -0400 | [diff] [blame] | 355 | if (!rc) |
| 356 | rc = mmap_violation_check(func, file, &pathbuf, |
| 357 | &pathname, filename); |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 358 | } |
Peter Moody | e7c568e | 2012-06-14 10:04:36 -0700 | [diff] [blame] | 359 | if (action & IMA_AUDIT) |
Dmitry Kasatkin | ea1046d | 2012-09-04 00:40:17 +0300 | [diff] [blame] | 360 | ima_audit_measurement(iint, pathname); |
Roberto Sassu | f7a859f | 2014-09-12 19:35:55 +0200 | [diff] [blame] | 361 | |
Mimi Zohar | f3cc6b2 | 2017-06-17 23:56:23 -0400 | [diff] [blame] | 362 | if ((file->f_flags & O_DIRECT) && (iint->flags & IMA_PERMIT_DIRECTIO)) |
| 363 | rc = 0; |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 364 | out_locked: |
| 365 | if ((mask & MAY_WRITE) && test_bit(IMA_DIGSIG, &iint->atomic_flags) && |
Mimi Zohar | 05d1a71 | 2016-02-29 19:52:05 -0500 | [diff] [blame] | 366 | !(iint->flags & IMA_NEW_FILE)) |
Dmitry Kasatkin | a175b8b | 2012-09-27 15:06:28 +0300 | [diff] [blame] | 367 | rc = -EACCES; |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 368 | mutex_unlock(&iint->mutex); |
Roberto Sassu | f7a859f | 2014-09-12 19:35:55 +0200 | [diff] [blame] | 369 | kfree(xattr_value); |
Thiago Jung Bauermann | 39b0709 | 2019-06-27 23:19:30 -0300 | [diff] [blame] | 370 | ima_free_modsig(modsig); |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 371 | out: |
Dmitry Kasatkin | 456f5fd | 2014-10-01 21:43:10 +0300 | [diff] [blame] | 372 | if (pathbuf) |
| 373 | __putname(pathbuf); |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 374 | if (must_appraise) { |
| 375 | if (rc && (ima_appraise & IMA_APPRAISE_ENFORCE)) |
| 376 | return -EACCES; |
| 377 | if (file->f_mode & FMODE_WRITE) |
| 378 | set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags); |
| 379 | } |
Dmitry Kasatkin | 750943a | 2012-09-27 15:57:10 +0300 | [diff] [blame] | 380 | return 0; |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 381 | } |
| 382 | |
| 383 | /** |
| 384 | * ima_file_mmap - based on policy, collect/store measurement. |
| 385 | * @file: pointer to the file to be measured (May be NULL) |
| 386 | * @prot: contains the protection that will be applied by the kernel. |
| 387 | * |
| 388 | * Measure files being mmapped executable based on the ima_must_measure() |
| 389 | * policy decision. |
| 390 | * |
Dmitry Kasatkin | 750943a | 2012-09-27 15:57:10 +0300 | [diff] [blame] | 391 | * On success return 0. On integrity appraisal error, assuming the file |
| 392 | * is in policy and IMA-appraisal is in enforcing mode, return -EACCES. |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 393 | */ |
| 394 | int ima_file_mmap(struct file *file, unsigned long prot) |
| 395 | { |
Matthew Garrett | d906c10 | 2018-01-08 13:36:20 -0800 | [diff] [blame] | 396 | u32 secid; |
| 397 | |
| 398 | if (file && (prot & PROT_EXEC)) { |
Paul Moore | 4ebd765 | 2021-02-19 14:26:21 -0500 | [diff] [blame] | 399 | security_task_getsecid_subj(current, &secid); |
Matthew Garrett | d906c10 | 2018-01-08 13:36:20 -0800 | [diff] [blame] | 400 | return process_measurement(file, current_cred(), secid, NULL, |
Al Viro | 6035a27 | 2018-06-08 13:40:10 -0400 | [diff] [blame] | 401 | 0, MAY_EXEC, MMAP_CHECK); |
Matthew Garrett | d906c10 | 2018-01-08 13:36:20 -0800 | [diff] [blame] | 402 | } |
| 403 | |
Dmitry Kasatkin | 750943a | 2012-09-27 15:57:10 +0300 | [diff] [blame] | 404 | return 0; |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 405 | } |
| 406 | |
| 407 | /** |
Mimi Zohar | 8eb613c | 2020-05-03 01:00:02 -0400 | [diff] [blame] | 408 | * ima_file_mprotect - based on policy, limit mprotect change |
| 409 | * @prot: contains the protection that will be applied by the kernel. |
| 410 | * |
| 411 | * Files can be mmap'ed read/write and later changed to execute to circumvent |
| 412 | * IMA's mmap appraisal policy rules. Due to locking issues (mmap semaphore |
| 413 | * would be taken before i_mutex), files can not be measured or appraised at |
| 414 | * this point. Eliminate this integrity gap by denying the mprotect |
| 415 | * PROT_EXECUTE change, if an mmap appraise policy rule exists. |
| 416 | * |
| 417 | * On mprotect change success, return 0. On failure, return -EACESS. |
| 418 | */ |
| 419 | int ima_file_mprotect(struct vm_area_struct *vma, unsigned long prot) |
| 420 | { |
Lakshmi Ramasubramanian | dea87d0 | 2020-11-12 12:39:59 -0800 | [diff] [blame] | 421 | struct ima_template_desc *template = NULL; |
Mimi Zohar | 8eb613c | 2020-05-03 01:00:02 -0400 | [diff] [blame] | 422 | struct file *file = vma->vm_file; |
| 423 | char filename[NAME_MAX]; |
| 424 | char *pathbuf = NULL; |
| 425 | const char *pathname = NULL; |
| 426 | struct inode *inode; |
| 427 | int result = 0; |
| 428 | int action; |
| 429 | u32 secid; |
| 430 | int pcr; |
| 431 | |
| 432 | /* Is mprotect making an mmap'ed file executable? */ |
Mimi Zohar | 4235b1a | 2020-06-10 09:18:26 -0400 | [diff] [blame] | 433 | if (!(ima_policy_flag & IMA_APPRAISE) || !vma->vm_file || |
| 434 | !(prot & PROT_EXEC) || (vma->vm_flags & VM_EXEC)) |
Mimi Zohar | 8eb613c | 2020-05-03 01:00:02 -0400 | [diff] [blame] | 435 | return 0; |
| 436 | |
Paul Moore | 4ebd765 | 2021-02-19 14:26:21 -0500 | [diff] [blame] | 437 | security_task_getsecid_subj(current, &secid); |
Mimi Zohar | 8eb613c | 2020-05-03 01:00:02 -0400 | [diff] [blame] | 438 | inode = file_inode(vma->vm_file); |
Christian Brauner | a2d2329 | 2021-01-21 14:19:45 +0100 | [diff] [blame] | 439 | action = ima_get_action(file_mnt_user_ns(vma->vm_file), inode, |
| 440 | current_cred(), secid, MAY_EXEC, MMAP_CHECK, |
Roberto Sassu | 531bf6a | 2021-06-08 14:31:24 +0200 | [diff] [blame] | 441 | &pcr, &template, NULL); |
Mimi Zohar | 8eb613c | 2020-05-03 01:00:02 -0400 | [diff] [blame] | 442 | |
| 443 | /* Is the mmap'ed file in policy? */ |
| 444 | if (!(action & (IMA_MEASURE | IMA_APPRAISE_SUBMASK))) |
| 445 | return 0; |
| 446 | |
| 447 | if (action & IMA_APPRAISE_SUBMASK) |
| 448 | result = -EPERM; |
| 449 | |
| 450 | file = vma->vm_file; |
| 451 | pathname = ima_d_path(&file->f_path, &pathbuf, filename); |
| 452 | integrity_audit_msg(AUDIT_INTEGRITY_DATA, inode, pathname, |
| 453 | "collect_data", "failed-mprotect", result, 0); |
| 454 | if (pathbuf) |
| 455 | __putname(pathbuf); |
| 456 | |
| 457 | return result; |
| 458 | } |
| 459 | |
| 460 | /** |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 461 | * ima_bprm_check - based on policy, collect/store measurement. |
| 462 | * @bprm: contains the linux_binprm structure |
| 463 | * |
| 464 | * The OS protects against an executable file, already open for write, |
| 465 | * from being executed in deny_write_access() and an executable file, |
| 466 | * already open for execute, from being modified in get_write_access(). |
| 467 | * So we can be certain that what we verify and measure here is actually |
| 468 | * what is being executed. |
| 469 | * |
Dmitry Kasatkin | 750943a | 2012-09-27 15:57:10 +0300 | [diff] [blame] | 470 | * On success return 0. On integrity appraisal error, assuming the file |
| 471 | * is in policy and IMA-appraisal is in enforcing mode, return -EACCES. |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 472 | */ |
| 473 | int ima_bprm_check(struct linux_binprm *bprm) |
| 474 | { |
Matthew Garrett | d906c10 | 2018-01-08 13:36:20 -0800 | [diff] [blame] | 475 | int ret; |
| 476 | u32 secid; |
| 477 | |
Paul Moore | 4ebd765 | 2021-02-19 14:26:21 -0500 | [diff] [blame] | 478 | security_task_getsecid_subj(current, &secid); |
Matthew Garrett | d906c10 | 2018-01-08 13:36:20 -0800 | [diff] [blame] | 479 | ret = process_measurement(bprm->file, current_cred(), secid, NULL, 0, |
Al Viro | 6035a27 | 2018-06-08 13:40:10 -0400 | [diff] [blame] | 480 | MAY_EXEC, BPRM_CHECK); |
Matthew Garrett | d906c10 | 2018-01-08 13:36:20 -0800 | [diff] [blame] | 481 | if (ret) |
| 482 | return ret; |
| 483 | |
| 484 | security_cred_getsecid(bprm->cred, &secid); |
| 485 | return process_measurement(bprm->file, bprm->cred, secid, NULL, 0, |
Al Viro | 6035a27 | 2018-06-08 13:40:10 -0400 | [diff] [blame] | 486 | MAY_EXEC, CREDS_CHECK); |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 487 | } |
| 488 | |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 489 | /** |
Jiele Zhao | 41d75dd | 2021-04-06 02:12:10 +0000 | [diff] [blame] | 490 | * ima_file_check - based on policy, collect/store measurement. |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 491 | * @file: pointer to the file to be measured |
Lans Zhang | 20f482a | 2017-01-06 12:38:11 +0800 | [diff] [blame] | 492 | * @mask: contains MAY_READ, MAY_WRITE, MAY_EXEC or MAY_APPEND |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 493 | * |
| 494 | * Measure files based on the ima_must_measure() policy decision. |
| 495 | * |
Dmitry Kasatkin | 750943a | 2012-09-27 15:57:10 +0300 | [diff] [blame] | 496 | * On success return 0. On integrity appraisal error, assuming the file |
| 497 | * is in policy and IMA-appraisal is in enforcing mode, return -EACCES. |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 498 | */ |
Al Viro | 6035a27 | 2018-06-08 13:40:10 -0400 | [diff] [blame] | 499 | int ima_file_check(struct file *file, int mask) |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 500 | { |
Matthew Garrett | d906c10 | 2018-01-08 13:36:20 -0800 | [diff] [blame] | 501 | u32 secid; |
| 502 | |
Paul Moore | 4ebd765 | 2021-02-19 14:26:21 -0500 | [diff] [blame] | 503 | security_task_getsecid_subj(current, &secid); |
Matthew Garrett | d906c10 | 2018-01-08 13:36:20 -0800 | [diff] [blame] | 504 | return process_measurement(file, current_cred(), secid, NULL, 0, |
Lans Zhang | 20f482a | 2017-01-06 12:38:11 +0800 | [diff] [blame] | 505 | mask & (MAY_READ | MAY_WRITE | MAY_EXEC | |
Al Viro | 6035a27 | 2018-06-08 13:40:10 -0400 | [diff] [blame] | 506 | MAY_APPEND), FILE_CHECK); |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 507 | } |
Mimi Zohar | 9bbb6ca | 2010-01-26 17:02:40 -0500 | [diff] [blame] | 508 | EXPORT_SYMBOL_GPL(ima_file_check); |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 509 | |
KP Singh | 403319b | 2020-11-24 15:12:08 +0000 | [diff] [blame] | 510 | static int __ima_inode_hash(struct inode *inode, char *buf, size_t buf_size) |
Florent Revest | 6beea7a | 2020-01-13 10:42:44 +0100 | [diff] [blame] | 511 | { |
Florent Revest | 6beea7a | 2020-01-13 10:42:44 +0100 | [diff] [blame] | 512 | struct integrity_iint_cache *iint; |
| 513 | int hash_algo; |
| 514 | |
Florent Revest | 6beea7a | 2020-01-13 10:42:44 +0100 | [diff] [blame] | 515 | if (!ima_policy_flag) |
| 516 | return -EOPNOTSUPP; |
| 517 | |
Florent Revest | 6beea7a | 2020-01-13 10:42:44 +0100 | [diff] [blame] | 518 | iint = integrity_iint_find(inode); |
| 519 | if (!iint) |
| 520 | return -EOPNOTSUPP; |
| 521 | |
| 522 | mutex_lock(&iint->mutex); |
KP Singh | aa662fc | 2020-09-16 18:02:42 +0000 | [diff] [blame] | 523 | |
| 524 | /* |
| 525 | * ima_file_hash can be called when ima_collect_measurement has still |
| 526 | * not been called, we might not always have a hash. |
| 527 | */ |
| 528 | if (!iint->ima_hash) { |
| 529 | mutex_unlock(&iint->mutex); |
| 530 | return -EOPNOTSUPP; |
| 531 | } |
| 532 | |
Florent Revest | 6beea7a | 2020-01-13 10:42:44 +0100 | [diff] [blame] | 533 | if (buf) { |
| 534 | size_t copied_size; |
| 535 | |
| 536 | copied_size = min_t(size_t, iint->ima_hash->length, buf_size); |
| 537 | memcpy(buf, iint->ima_hash->digest, copied_size); |
| 538 | } |
| 539 | hash_algo = iint->ima_hash->algo; |
| 540 | mutex_unlock(&iint->mutex); |
| 541 | |
| 542 | return hash_algo; |
| 543 | } |
KP Singh | 403319b | 2020-11-24 15:12:08 +0000 | [diff] [blame] | 544 | |
| 545 | /** |
| 546 | * ima_file_hash - return the stored measurement if a file has been hashed and |
| 547 | * is in the iint cache. |
| 548 | * @file: pointer to the file |
| 549 | * @buf: buffer in which to store the hash |
| 550 | * @buf_size: length of the buffer |
| 551 | * |
| 552 | * On success, return the hash algorithm (as defined in the enum hash_algo). |
| 553 | * If buf is not NULL, this function also outputs the hash into buf. |
| 554 | * If the hash is larger than buf_size, then only buf_size bytes will be copied. |
| 555 | * It generally just makes sense to pass a buffer capable of holding the largest |
| 556 | * possible hash: IMA_MAX_DIGEST_SIZE. |
| 557 | * The file hash returned is based on the entire file, including the appended |
| 558 | * signature. |
| 559 | * |
| 560 | * If IMA is disabled or if no measurement is available, return -EOPNOTSUPP. |
| 561 | * If the parameters are incorrect, return -EINVAL. |
| 562 | */ |
| 563 | int ima_file_hash(struct file *file, char *buf, size_t buf_size) |
| 564 | { |
| 565 | if (!file) |
| 566 | return -EINVAL; |
| 567 | |
| 568 | return __ima_inode_hash(file_inode(file), buf, buf_size); |
| 569 | } |
Florent Revest | 6beea7a | 2020-01-13 10:42:44 +0100 | [diff] [blame] | 570 | EXPORT_SYMBOL_GPL(ima_file_hash); |
| 571 | |
| 572 | /** |
KP Singh | 403319b | 2020-11-24 15:12:08 +0000 | [diff] [blame] | 573 | * ima_inode_hash - return the stored measurement if the inode has been hashed |
| 574 | * and is in the iint cache. |
| 575 | * @inode: pointer to the inode |
| 576 | * @buf: buffer in which to store the hash |
| 577 | * @buf_size: length of the buffer |
| 578 | * |
| 579 | * On success, return the hash algorithm (as defined in the enum hash_algo). |
| 580 | * If buf is not NULL, this function also outputs the hash into buf. |
| 581 | * If the hash is larger than buf_size, then only buf_size bytes will be copied. |
| 582 | * It generally just makes sense to pass a buffer capable of holding the largest |
| 583 | * possible hash: IMA_MAX_DIGEST_SIZE. |
| 584 | * The hash returned is based on the entire contents, including the appended |
| 585 | * signature. |
| 586 | * |
| 587 | * If IMA is disabled or if no measurement is available, return -EOPNOTSUPP. |
| 588 | * If the parameters are incorrect, return -EINVAL. |
| 589 | */ |
| 590 | int ima_inode_hash(struct inode *inode, char *buf, size_t buf_size) |
| 591 | { |
| 592 | if (!inode) |
| 593 | return -EINVAL; |
| 594 | |
| 595 | return __ima_inode_hash(inode, buf, buf_size); |
| 596 | } |
| 597 | EXPORT_SYMBOL_GPL(ima_inode_hash); |
| 598 | |
| 599 | /** |
Mimi Zohar | fdb2410 | 2019-01-22 14:06:49 -0600 | [diff] [blame] | 600 | * ima_post_create_tmpfile - mark newly created tmpfile as new |
Christian Brauner | a2d2329 | 2021-01-21 14:19:45 +0100 | [diff] [blame] | 601 | * @mnt_userns: user namespace of the mount the inode was found from |
Mimi Zohar | fdb2410 | 2019-01-22 14:06:49 -0600 | [diff] [blame] | 602 | * @file : newly created tmpfile |
| 603 | * |
| 604 | * No measuring, appraising or auditing of newly created tmpfiles is needed. |
| 605 | * Skip calling process_measurement(), but indicate which newly, created |
| 606 | * tmpfiles are in policy. |
| 607 | */ |
Christian Brauner | a2d2329 | 2021-01-21 14:19:45 +0100 | [diff] [blame] | 608 | void ima_post_create_tmpfile(struct user_namespace *mnt_userns, |
| 609 | struct inode *inode) |
Mimi Zohar | fdb2410 | 2019-01-22 14:06:49 -0600 | [diff] [blame] | 610 | { |
| 611 | struct integrity_iint_cache *iint; |
| 612 | int must_appraise; |
| 613 | |
Mimi Zohar | f873b28 | 2021-03-19 11:14:25 -0400 | [diff] [blame] | 614 | if (!ima_policy_flag || !S_ISREG(inode->i_mode)) |
| 615 | return; |
| 616 | |
Christian Brauner | a2d2329 | 2021-01-21 14:19:45 +0100 | [diff] [blame] | 617 | must_appraise = ima_must_appraise(mnt_userns, inode, MAY_ACCESS, |
| 618 | FILE_CHECK); |
Mimi Zohar | fdb2410 | 2019-01-22 14:06:49 -0600 | [diff] [blame] | 619 | if (!must_appraise) |
| 620 | return; |
| 621 | |
| 622 | /* Nothing to do if we can't allocate memory */ |
| 623 | iint = integrity_inode_get(inode); |
| 624 | if (!iint) |
| 625 | return; |
| 626 | |
| 627 | /* needed for writing the security xattrs */ |
| 628 | set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags); |
| 629 | iint->ima_file_status = INTEGRITY_PASS; |
| 630 | } |
| 631 | |
| 632 | /** |
Mimi Zohar | 05d1a71 | 2016-02-29 19:52:05 -0500 | [diff] [blame] | 633 | * ima_post_path_mknod - mark as a new inode |
Christian Brauner | a2d2329 | 2021-01-21 14:19:45 +0100 | [diff] [blame] | 634 | * @mnt_userns: user namespace of the mount the inode was found from |
Mimi Zohar | 05d1a71 | 2016-02-29 19:52:05 -0500 | [diff] [blame] | 635 | * @dentry: newly created dentry |
| 636 | * |
| 637 | * Mark files created via the mknodat syscall as new, so that the |
| 638 | * file data can be written later. |
| 639 | */ |
Christian Brauner | a2d2329 | 2021-01-21 14:19:45 +0100 | [diff] [blame] | 640 | void ima_post_path_mknod(struct user_namespace *mnt_userns, |
| 641 | struct dentry *dentry) |
Mimi Zohar | 05d1a71 | 2016-02-29 19:52:05 -0500 | [diff] [blame] | 642 | { |
| 643 | struct integrity_iint_cache *iint; |
| 644 | struct inode *inode = dentry->d_inode; |
| 645 | int must_appraise; |
| 646 | |
Mimi Zohar | f873b28 | 2021-03-19 11:14:25 -0400 | [diff] [blame] | 647 | if (!ima_policy_flag || !S_ISREG(inode->i_mode)) |
| 648 | return; |
| 649 | |
Christian Brauner | a2d2329 | 2021-01-21 14:19:45 +0100 | [diff] [blame] | 650 | must_appraise = ima_must_appraise(mnt_userns, inode, MAY_ACCESS, |
| 651 | FILE_CHECK); |
Mimi Zohar | 05d1a71 | 2016-02-29 19:52:05 -0500 | [diff] [blame] | 652 | if (!must_appraise) |
| 653 | return; |
| 654 | |
Mimi Zohar | fdb2410 | 2019-01-22 14:06:49 -0600 | [diff] [blame] | 655 | /* Nothing to do if we can't allocate memory */ |
Mimi Zohar | 05d1a71 | 2016-02-29 19:52:05 -0500 | [diff] [blame] | 656 | iint = integrity_inode_get(inode); |
Mimi Zohar | fdb2410 | 2019-01-22 14:06:49 -0600 | [diff] [blame] | 657 | if (!iint) |
| 658 | return; |
| 659 | |
| 660 | /* needed for re-opening empty files */ |
| 661 | iint->flags |= IMA_NEW_FILE; |
Mimi Zohar | 05d1a71 | 2016-02-29 19:52:05 -0500 | [diff] [blame] | 662 | } |
| 663 | |
| 664 | /** |
Mimi Zohar | 39eeb4f | 2016-01-30 22:23:26 -0500 | [diff] [blame] | 665 | * ima_read_file - pre-measure/appraise hook decision based on policy |
| 666 | * @file: pointer to the file to be measured/appraised/audit |
| 667 | * @read_id: caller identifier |
Kees Cook | 2039bda | 2020-10-02 10:38:23 -0700 | [diff] [blame] | 668 | * @contents: whether a subsequent call will be made to ima_post_read_file() |
Mimi Zohar | 39eeb4f | 2016-01-30 22:23:26 -0500 | [diff] [blame] | 669 | * |
| 670 | * Permit reading a file based on policy. The policy rules are written |
| 671 | * in terms of the policy identifier. Appraising the integrity of |
| 672 | * a file requires a file descriptor. |
| 673 | * |
| 674 | * For permission return 0, otherwise return -EACCES. |
| 675 | */ |
Kees Cook | 2039bda | 2020-10-02 10:38:23 -0700 | [diff] [blame] | 676 | int ima_read_file(struct file *file, enum kernel_read_file_id read_id, |
| 677 | bool contents) |
Mimi Zohar | 39eeb4f | 2016-01-30 22:23:26 -0500 | [diff] [blame] | 678 | { |
Scott Branden | 34736da | 2020-10-02 10:38:24 -0700 | [diff] [blame] | 679 | enum ima_hooks func; |
| 680 | u32 secid; |
Kees Cook | 2039bda | 2020-10-02 10:38:23 -0700 | [diff] [blame] | 681 | |
Mimi Zohar | 4f0496d | 2018-07-13 14:06:03 -0400 | [diff] [blame] | 682 | /* |
Mimi Zohar | 4f0496d | 2018-07-13 14:06:03 -0400 | [diff] [blame] | 683 | * Do devices using pre-allocated memory run the risk of the |
| 684 | * firmware being accessible to the device prior to the completion |
| 685 | * of IMA's signature verification any more than when using two |
Kees Cook | c307459 | 2020-10-02 10:38:13 -0700 | [diff] [blame] | 686 | * buffers? It may be desirable to include the buffer address |
| 687 | * in this API and walk all the dma_map_single() mappings to check. |
Mimi Zohar | 4f0496d | 2018-07-13 14:06:03 -0400 | [diff] [blame] | 688 | */ |
Scott Branden | 34736da | 2020-10-02 10:38:24 -0700 | [diff] [blame] | 689 | |
| 690 | /* |
| 691 | * There will be a call made to ima_post_read_file() with |
| 692 | * a filled buffer, so we don't need to perform an extra |
| 693 | * read early here. |
| 694 | */ |
| 695 | if (contents) |
| 696 | return 0; |
| 697 | |
| 698 | /* Read entire file for all partial reads. */ |
| 699 | func = read_idmap[read_id] ?: FILE_CHECK; |
Paul Moore | 4ebd765 | 2021-02-19 14:26:21 -0500 | [diff] [blame] | 700 | security_task_getsecid_subj(current, &secid); |
Scott Branden | 34736da | 2020-10-02 10:38:24 -0700 | [diff] [blame] | 701 | return process_measurement(file, current_cred(), secid, NULL, |
| 702 | 0, MAY_READ, func); |
Mimi Zohar | 39eeb4f | 2016-01-30 22:23:26 -0500 | [diff] [blame] | 703 | } |
| 704 | |
Matthew Garrett | 29d3c1c | 2019-08-19 17:18:01 -0700 | [diff] [blame] | 705 | const int read_idmap[READING_MAX_ID] = { |
Mimi Zohar | d9ddf07 | 2016-01-14 20:59:14 -0500 | [diff] [blame] | 706 | [READING_FIRMWARE] = FIRMWARE_CHECK, |
| 707 | [READING_MODULE] = MODULE_CHECK, |
| 708 | [READING_KEXEC_IMAGE] = KEXEC_KERNEL_CHECK, |
| 709 | [READING_KEXEC_INITRAMFS] = KEXEC_INITRAMFS_CHECK, |
Mimi Zohar | 19f8a84 | 2016-01-15 10:17:12 -0500 | [diff] [blame] | 710 | [READING_POLICY] = POLICY_CHECK |
Mimi Zohar | d9ddf07 | 2016-01-14 20:59:14 -0500 | [diff] [blame] | 711 | }; |
| 712 | |
Mimi Zohar | 39eeb4f | 2016-01-30 22:23:26 -0500 | [diff] [blame] | 713 | /** |
Mimi Zohar | cf22221 | 2016-01-14 17:57:47 -0500 | [diff] [blame] | 714 | * ima_post_read_file - in memory collect/appraise/audit measurement |
| 715 | * @file: pointer to the file to be measured/appraised/audit |
| 716 | * @buf: pointer to in memory file contents |
| 717 | * @size: size of in memory file contents |
| 718 | * @read_id: caller identifier |
| 719 | * |
| 720 | * Measure/appraise/audit in memory file based on policy. Policy rules |
| 721 | * are written in terms of a policy identifier. |
| 722 | * |
| 723 | * On success return 0. On integrity appraisal error, assuming the file |
| 724 | * is in policy and IMA-appraisal is in enforcing mode, return -EACCES. |
| 725 | */ |
| 726 | int ima_post_read_file(struct file *file, void *buf, loff_t size, |
| 727 | enum kernel_read_file_id read_id) |
| 728 | { |
Mimi Zohar | d9ddf07 | 2016-01-14 20:59:14 -0500 | [diff] [blame] | 729 | enum ima_hooks func; |
Matthew Garrett | d906c10 | 2018-01-08 13:36:20 -0800 | [diff] [blame] | 730 | u32 secid; |
Mimi Zohar | cf22221 | 2016-01-14 17:57:47 -0500 | [diff] [blame] | 731 | |
Christoph Hellwig | a7d3d03 | 2017-09-10 09:49:45 +0200 | [diff] [blame] | 732 | /* permit signed certs */ |
| 733 | if (!file && read_id == READING_X509_CERTIFICATE) |
| 734 | return 0; |
| 735 | |
Mimi Zohar | cf22221 | 2016-01-14 17:57:47 -0500 | [diff] [blame] | 736 | if (!file || !buf || size == 0) { /* should never happen */ |
| 737 | if (ima_appraise & IMA_APPRAISE_ENFORCE) |
| 738 | return -EACCES; |
| 739 | return 0; |
| 740 | } |
| 741 | |
Mimi Zohar | d9ddf07 | 2016-01-14 20:59:14 -0500 | [diff] [blame] | 742 | func = read_idmap[read_id] ?: FILE_CHECK; |
Paul Moore | 4ebd765 | 2021-02-19 14:26:21 -0500 | [diff] [blame] | 743 | security_task_getsecid_subj(current, &secid); |
Matthew Garrett | d906c10 | 2018-01-08 13:36:20 -0800 | [diff] [blame] | 744 | return process_measurement(file, current_cred(), secid, buf, size, |
Al Viro | 6035a27 | 2018-06-08 13:40:10 -0400 | [diff] [blame] | 745 | MAY_READ, func); |
Mimi Zohar | 5a9196d | 2014-07-22 10:39:48 -0400 | [diff] [blame] | 746 | } |
| 747 | |
Mimi Zohar | 16c267a | 2018-07-13 14:05:58 -0400 | [diff] [blame] | 748 | /** |
| 749 | * ima_load_data - appraise decision based on policy |
| 750 | * @id: kernel load data caller identifier |
Kees Cook | b64fcae | 2020-10-02 10:38:20 -0700 | [diff] [blame] | 751 | * @contents: whether the full contents will be available in a later |
| 752 | * call to ima_post_load_data(). |
Mimi Zohar | 16c267a | 2018-07-13 14:05:58 -0400 | [diff] [blame] | 753 | * |
| 754 | * Callers of this LSM hook can not measure, appraise, or audit the |
| 755 | * data provided by userspace. Enforce policy rules requring a file |
| 756 | * signature (eg. kexec'ed kernel image). |
| 757 | * |
| 758 | * For permission return 0, otherwise return -EACCES. |
| 759 | */ |
Kees Cook | b64fcae | 2020-10-02 10:38:20 -0700 | [diff] [blame] | 760 | int ima_load_data(enum kernel_load_data_id id, bool contents) |
Mimi Zohar | 16c267a | 2018-07-13 14:05:58 -0400 | [diff] [blame] | 761 | { |
Nayna Jain | b5ca117 | 2018-10-09 23:00:34 +0530 | [diff] [blame] | 762 | bool ima_enforce, sig_enforce; |
Mimi Zohar | c77b8cd | 2018-07-13 14:06:02 -0400 | [diff] [blame] | 763 | |
Nayna Jain | b5ca117 | 2018-10-09 23:00:34 +0530 | [diff] [blame] | 764 | ima_enforce = |
| 765 | (ima_appraise & IMA_APPRAISE_ENFORCE) == IMA_APPRAISE_ENFORCE; |
Mimi Zohar | 16c267a | 2018-07-13 14:05:58 -0400 | [diff] [blame] | 766 | |
| 767 | switch (id) { |
| 768 | case LOADING_KEXEC_IMAGE: |
Jiri Bohac | 99d5cadf | 2019-08-19 17:17:44 -0700 | [diff] [blame] | 769 | if (IS_ENABLED(CONFIG_KEXEC_SIG) |
Nayna Jain | b5ca117 | 2018-10-09 23:00:34 +0530 | [diff] [blame] | 770 | && arch_ima_get_secureboot()) { |
| 771 | pr_err("impossible to appraise a kernel image without a file descriptor; try using kexec_file_load syscall.\n"); |
| 772 | return -EACCES; |
| 773 | } |
| 774 | |
| 775 | if (ima_enforce && (ima_appraise & IMA_APPRAISE_KEXEC)) { |
Mimi Zohar | 16c267a | 2018-07-13 14:05:58 -0400 | [diff] [blame] | 776 | pr_err("impossible to appraise a kernel image without a file descriptor; try using kexec_file_load syscall.\n"); |
| 777 | return -EACCES; /* INTEGRITY_UNKNOWN */ |
| 778 | } |
Mimi Zohar | fed2512 | 2018-07-13 14:06:00 -0400 | [diff] [blame] | 779 | break; |
| 780 | case LOADING_FIRMWARE: |
Kees Cook | 4f2d99b | 2020-10-02 10:38:21 -0700 | [diff] [blame] | 781 | if (ima_enforce && (ima_appraise & IMA_APPRAISE_FIRMWARE) && !contents) { |
Mimi Zohar | fed2512 | 2018-07-13 14:06:00 -0400 | [diff] [blame] | 782 | pr_err("Prevent firmware sysfs fallback loading.\n"); |
| 783 | return -EACCES; /* INTEGRITY_UNKNOWN */ |
| 784 | } |
Mimi Zohar | c77b8cd | 2018-07-13 14:06:02 -0400 | [diff] [blame] | 785 | break; |
| 786 | case LOADING_MODULE: |
| 787 | sig_enforce = is_module_sig_enforced(); |
| 788 | |
Nayna Jain | b5ca117 | 2018-10-09 23:00:34 +0530 | [diff] [blame] | 789 | if (ima_enforce && (!sig_enforce |
| 790 | && (ima_appraise & IMA_APPRAISE_MODULES))) { |
Mimi Zohar | c77b8cd | 2018-07-13 14:06:02 -0400 | [diff] [blame] | 791 | pr_err("impossible to appraise a module without a file descriptor. sig_enforce kernel parameter might help\n"); |
| 792 | return -EACCES; /* INTEGRITY_UNKNOWN */ |
| 793 | } |
Gustavo A. R. Silva | 28073eb | 2020-11-20 12:25:46 -0600 | [diff] [blame] | 794 | break; |
Mimi Zohar | 16c267a | 2018-07-13 14:05:58 -0400 | [diff] [blame] | 795 | default: |
| 796 | break; |
| 797 | } |
| 798 | return 0; |
| 799 | } |
| 800 | |
Kees Cook | b64fcae | 2020-10-02 10:38:20 -0700 | [diff] [blame] | 801 | /** |
| 802 | * ima_post_load_data - appraise decision based on policy |
| 803 | * @buf: pointer to in memory file contents |
| 804 | * @size: size of in memory file contents |
| 805 | * @id: kernel load data caller identifier |
| 806 | * @description: @id-specific description of contents |
| 807 | * |
| 808 | * Measure/appraise/audit in memory buffer based on policy. Policy rules |
| 809 | * are written in terms of a policy identifier. |
| 810 | * |
| 811 | * On success return 0. On integrity appraisal error, assuming the file |
| 812 | * is in policy and IMA-appraisal is in enforcing mode, return -EACCES. |
| 813 | */ |
| 814 | int ima_post_load_data(char *buf, loff_t size, |
| 815 | enum kernel_load_data_id load_id, |
| 816 | char *description) |
| 817 | { |
Kees Cook | 4f2d99b | 2020-10-02 10:38:21 -0700 | [diff] [blame] | 818 | if (load_id == LOADING_FIRMWARE) { |
| 819 | if ((ima_appraise & IMA_APPRAISE_FIRMWARE) && |
| 820 | (ima_appraise & IMA_APPRAISE_ENFORCE)) { |
| 821 | pr_err("Prevent firmware loading_store.\n"); |
| 822 | return -EACCES; /* INTEGRITY_UNKNOWN */ |
| 823 | } |
| 824 | return 0; |
| 825 | } |
| 826 | |
Kees Cook | b64fcae | 2020-10-02 10:38:20 -0700 | [diff] [blame] | 827 | return 0; |
| 828 | } |
| 829 | |
Prakhar Srivastava | b093512 | 2019-06-23 23:23:29 -0700 | [diff] [blame] | 830 | /* |
Tushar Sugandhi | 291af65 | 2021-01-07 20:07:02 -0800 | [diff] [blame] | 831 | * process_buffer_measurement - Measure the buffer or the buffer data hash |
Christian Brauner | a2d2329 | 2021-01-21 14:19:45 +0100 | [diff] [blame] | 832 | * @mnt_userns: user namespace of the mount the inode was found from |
Tyler Hicks | 4834177 | 2020-07-09 01:19:11 -0500 | [diff] [blame] | 833 | * @inode: inode associated with the object being measured (NULL for KEY_CHECK) |
Prakhar Srivastava | b093512 | 2019-06-23 23:23:29 -0700 | [diff] [blame] | 834 | * @buf: pointer to the buffer that needs to be added to the log. |
| 835 | * @size: size of buffer(in bytes). |
| 836 | * @eventname: event name to be used for the buffer entry. |
Nayna Jain | e14555e | 2019-10-30 23:31:30 -0400 | [diff] [blame] | 837 | * @func: IMA hook |
| 838 | * @pcr: pcr to extend the measurement |
Tushar Sugandhi | 2b4a247 | 2021-01-07 20:07:01 -0800 | [diff] [blame] | 839 | * @func_data: func specific data, may be NULL |
Tushar Sugandhi | 291af65 | 2021-01-07 20:07:02 -0800 | [diff] [blame] | 840 | * @buf_hash: measure buffer data hash |
Prakhar Srivastava | b093512 | 2019-06-23 23:23:29 -0700 | [diff] [blame] | 841 | * |
Tushar Sugandhi | 291af65 | 2021-01-07 20:07:02 -0800 | [diff] [blame] | 842 | * Based on policy, either the buffer data or buffer data hash is measured |
Prakhar Srivastava | b093512 | 2019-06-23 23:23:29 -0700 | [diff] [blame] | 843 | */ |
Christian Brauner | a2d2329 | 2021-01-21 14:19:45 +0100 | [diff] [blame] | 844 | void process_buffer_measurement(struct user_namespace *mnt_userns, |
| 845 | struct inode *inode, const void *buf, int size, |
Nayna Jain | e14555e | 2019-10-30 23:31:30 -0400 | [diff] [blame] | 846 | const char *eventname, enum ima_hooks func, |
Tushar Sugandhi | 291af65 | 2021-01-07 20:07:02 -0800 | [diff] [blame] | 847 | int pcr, const char *func_data, |
| 848 | bool buf_hash) |
Prakhar Srivastava | b093512 | 2019-06-23 23:23:29 -0700 | [diff] [blame] | 849 | { |
| 850 | int ret = 0; |
Lakshmi Ramasubramanian | 34e980b | 2020-06-18 14:10:12 -0700 | [diff] [blame] | 851 | const char *audit_cause = "ENOMEM"; |
Prakhar Srivastava | b093512 | 2019-06-23 23:23:29 -0700 | [diff] [blame] | 852 | struct ima_template_entry *entry = NULL; |
| 853 | struct integrity_iint_cache iint = {}; |
| 854 | struct ima_event_data event_data = {.iint = &iint, |
Prakhar Srivastava | 86b4da8 | 2019-06-23 23:23:30 -0700 | [diff] [blame] | 855 | .filename = eventname, |
| 856 | .buf = buf, |
| 857 | .buf_len = size}; |
Lakshmi Ramasubramanian | dea87d0 | 2020-11-12 12:39:59 -0800 | [diff] [blame] | 858 | struct ima_template_desc *template; |
Prakhar Srivastava | b093512 | 2019-06-23 23:23:29 -0700 | [diff] [blame] | 859 | struct { |
| 860 | struct ima_digest_data hdr; |
| 861 | char digest[IMA_MAX_DIGEST_SIZE]; |
| 862 | } hash = {}; |
Tushar Sugandhi | 291af65 | 2021-01-07 20:07:02 -0800 | [diff] [blame] | 863 | char digest_hash[IMA_MAX_DIGEST_SIZE]; |
| 864 | int digest_hash_len = hash_digest_size[ima_hash_algo]; |
Prakhar Srivastava | b093512 | 2019-06-23 23:23:29 -0700 | [diff] [blame] | 865 | int violation = 0; |
Prakhar Srivastava | b093512 | 2019-06-23 23:23:29 -0700 | [diff] [blame] | 866 | int action = 0; |
Nayna Jain | e14555e | 2019-10-30 23:31:30 -0400 | [diff] [blame] | 867 | u32 secid; |
Prakhar Srivastava | b093512 | 2019-06-23 23:23:29 -0700 | [diff] [blame] | 868 | |
Lakshmi Ramasubramanian | c5563ba | 2019-12-11 08:47:02 -0800 | [diff] [blame] | 869 | if (!ima_policy_flag) |
| 870 | return; |
| 871 | |
Lakshmi Ramasubramanian | dea87d0 | 2020-11-12 12:39:59 -0800 | [diff] [blame] | 872 | template = ima_template_desc_buf(); |
| 873 | if (!template) { |
| 874 | ret = -EINVAL; |
| 875 | audit_cause = "ima_template_desc_buf"; |
| 876 | goto out; |
| 877 | } |
| 878 | |
Nayna Jain | e14555e | 2019-10-30 23:31:30 -0400 | [diff] [blame] | 879 | /* |
| 880 | * Both LSM hooks and auxilary based buffer measurements are |
| 881 | * based on policy. To avoid code duplication, differentiate |
| 882 | * between the LSM hooks and auxilary buffer measurements, |
| 883 | * retrieving the policy rule information only for the LSM hook |
| 884 | * buffer measurements. |
| 885 | */ |
| 886 | if (func) { |
Paul Moore | 4ebd765 | 2021-02-19 14:26:21 -0500 | [diff] [blame] | 887 | security_task_getsecid_subj(current, &secid); |
Christian Brauner | a2d2329 | 2021-01-21 14:19:45 +0100 | [diff] [blame] | 888 | action = ima_get_action(mnt_userns, inode, current_cred(), |
| 889 | secid, 0, func, &pcr, &template, |
Linus Torvalds | 7d6beb7 | 2021-02-23 13:39:45 -0800 | [diff] [blame] | 890 | func_data); |
Nayna Jain | e14555e | 2019-10-30 23:31:30 -0400 | [diff] [blame] | 891 | if (!(action & IMA_MEASURE)) |
| 892 | return; |
| 893 | } |
| 894 | |
| 895 | if (!pcr) |
| 896 | pcr = CONFIG_IMA_MEASURE_PCR_IDX; |
| 897 | |
Prakhar Srivastava | b093512 | 2019-06-23 23:23:29 -0700 | [diff] [blame] | 898 | iint.ima_hash = &hash.hdr; |
| 899 | iint.ima_hash->algo = ima_hash_algo; |
| 900 | iint.ima_hash->length = hash_digest_size[ima_hash_algo]; |
| 901 | |
| 902 | ret = ima_calc_buffer_hash(buf, size, iint.ima_hash); |
Lakshmi Ramasubramanian | 34e980b | 2020-06-18 14:10:12 -0700 | [diff] [blame] | 903 | if (ret < 0) { |
| 904 | audit_cause = "hashing_error"; |
Prakhar Srivastava | b093512 | 2019-06-23 23:23:29 -0700 | [diff] [blame] | 905 | goto out; |
Lakshmi Ramasubramanian | 34e980b | 2020-06-18 14:10:12 -0700 | [diff] [blame] | 906 | } |
Prakhar Srivastava | b093512 | 2019-06-23 23:23:29 -0700 | [diff] [blame] | 907 | |
Tushar Sugandhi | 291af65 | 2021-01-07 20:07:02 -0800 | [diff] [blame] | 908 | if (buf_hash) { |
| 909 | memcpy(digest_hash, hash.hdr.digest, digest_hash_len); |
| 910 | |
| 911 | ret = ima_calc_buffer_hash(digest_hash, digest_hash_len, |
| 912 | iint.ima_hash); |
| 913 | if (ret < 0) { |
| 914 | audit_cause = "hashing_error"; |
| 915 | goto out; |
| 916 | } |
| 917 | |
| 918 | event_data.buf = digest_hash; |
| 919 | event_data.buf_len = digest_hash_len; |
| 920 | } |
| 921 | |
Nayna Jain | e14555e | 2019-10-30 23:31:30 -0400 | [diff] [blame] | 922 | ret = ima_alloc_init_template(&event_data, &entry, template); |
Lakshmi Ramasubramanian | 34e980b | 2020-06-18 14:10:12 -0700 | [diff] [blame] | 923 | if (ret < 0) { |
| 924 | audit_cause = "alloc_entry"; |
Prakhar Srivastava | b093512 | 2019-06-23 23:23:29 -0700 | [diff] [blame] | 925 | goto out; |
Lakshmi Ramasubramanian | 34e980b | 2020-06-18 14:10:12 -0700 | [diff] [blame] | 926 | } |
Prakhar Srivastava | b093512 | 2019-06-23 23:23:29 -0700 | [diff] [blame] | 927 | |
Tushar Sugandhi | 291af65 | 2021-01-07 20:07:02 -0800 | [diff] [blame] | 928 | ret = ima_store_template(entry, violation, NULL, event_data.buf, pcr); |
Lakshmi Ramasubramanian | 34e980b | 2020-06-18 14:10:12 -0700 | [diff] [blame] | 929 | if (ret < 0) { |
| 930 | audit_cause = "store_entry"; |
Prakhar Srivastava | b093512 | 2019-06-23 23:23:29 -0700 | [diff] [blame] | 931 | ima_free_template_entry(entry); |
Lakshmi Ramasubramanian | 34e980b | 2020-06-18 14:10:12 -0700 | [diff] [blame] | 932 | } |
Prakhar Srivastava | b093512 | 2019-06-23 23:23:29 -0700 | [diff] [blame] | 933 | |
| 934 | out: |
Tushar Sugandhi | 72ec611 | 2020-02-18 16:06:10 -0800 | [diff] [blame] | 935 | if (ret < 0) |
Lakshmi Ramasubramanian | 34e980b | 2020-06-18 14:10:12 -0700 | [diff] [blame] | 936 | integrity_audit_message(AUDIT_INTEGRITY_PCR, NULL, eventname, |
| 937 | func_measure_str(func), |
| 938 | audit_cause, ret, 0, ret); |
Tushar Sugandhi | 72ec611 | 2020-02-18 16:06:10 -0800 | [diff] [blame] | 939 | |
Prakhar Srivastava | b093512 | 2019-06-23 23:23:29 -0700 | [diff] [blame] | 940 | return; |
| 941 | } |
| 942 | |
| 943 | /** |
| 944 | * ima_kexec_cmdline - measure kexec cmdline boot args |
Tyler Hicks | 4834177 | 2020-07-09 01:19:11 -0500 | [diff] [blame] | 945 | * @kernel_fd: file descriptor of the kexec kernel being loaded |
Prakhar Srivastava | b093512 | 2019-06-23 23:23:29 -0700 | [diff] [blame] | 946 | * @buf: pointer to buffer |
| 947 | * @size: size of buffer |
| 948 | * |
| 949 | * Buffers can only be measured, not appraised. |
| 950 | */ |
Tyler Hicks | 4834177 | 2020-07-09 01:19:11 -0500 | [diff] [blame] | 951 | void ima_kexec_cmdline(int kernel_fd, const void *buf, int size) |
Prakhar Srivastava | b093512 | 2019-06-23 23:23:29 -0700 | [diff] [blame] | 952 | { |
Tyler Hicks | 4834177 | 2020-07-09 01:19:11 -0500 | [diff] [blame] | 953 | struct fd f; |
| 954 | |
| 955 | if (!buf || !size) |
| 956 | return; |
| 957 | |
| 958 | f = fdget(kernel_fd); |
| 959 | if (!f.file) |
| 960 | return; |
| 961 | |
Christian Brauner | a2d2329 | 2021-01-21 14:19:45 +0100 | [diff] [blame] | 962 | process_buffer_measurement(file_mnt_user_ns(f.file), file_inode(f.file), |
| 963 | buf, size, "kexec-cmdline", KEXEC_CMDLINE, 0, |
Linus Torvalds | 7d6beb7 | 2021-02-23 13:39:45 -0800 | [diff] [blame] | 964 | NULL, false); |
Tyler Hicks | 4834177 | 2020-07-09 01:19:11 -0500 | [diff] [blame] | 965 | fdput(f); |
Prakhar Srivastava | b093512 | 2019-06-23 23:23:29 -0700 | [diff] [blame] | 966 | } |
| 967 | |
Tushar Sugandhi | d6e6450 | 2021-01-07 20:07:03 -0800 | [diff] [blame] | 968 | /** |
| 969 | * ima_measure_critical_data - measure kernel integrity critical data |
Tushar Sugandhi | 9f5d7d2 | 2021-01-07 20:07:06 -0800 | [diff] [blame] | 970 | * @event_label: unique event label for grouping and limiting critical data |
Tushar Sugandhi | d6e6450 | 2021-01-07 20:07:03 -0800 | [diff] [blame] | 971 | * @event_name: event name for the record in the IMA measurement list |
| 972 | * @buf: pointer to buffer data |
| 973 | * @buf_len: length of buffer data (in bytes) |
| 974 | * @hash: measure buffer data hash |
| 975 | * |
| 976 | * Measure data critical to the integrity of the kernel into the IMA log |
| 977 | * and extend the pcr. Examples of critical data could be various data |
| 978 | * structures, policies, and states stored in kernel memory that can |
| 979 | * impact the integrity of the system. |
| 980 | */ |
Tushar Sugandhi | 9f5d7d2 | 2021-01-07 20:07:06 -0800 | [diff] [blame] | 981 | void ima_measure_critical_data(const char *event_label, |
| 982 | const char *event_name, |
Tushar Sugandhi | d6e6450 | 2021-01-07 20:07:03 -0800 | [diff] [blame] | 983 | const void *buf, size_t buf_len, |
| 984 | bool hash) |
| 985 | { |
Tushar Sugandhi | 9f5d7d2 | 2021-01-07 20:07:06 -0800 | [diff] [blame] | 986 | if (!event_name || !event_label || !buf || !buf_len) |
Tushar Sugandhi | d6e6450 | 2021-01-07 20:07:03 -0800 | [diff] [blame] | 987 | return; |
| 988 | |
Linus Torvalds | 7d6beb7 | 2021-02-23 13:39:45 -0800 | [diff] [blame] | 989 | process_buffer_measurement(&init_user_ns, NULL, buf, buf_len, event_name, |
Tushar Sugandhi | 9f5d7d2 | 2021-01-07 20:07:06 -0800 | [diff] [blame] | 990 | CRITICAL_DATA, 0, event_label, |
Tushar Sugandhi | d6e6450 | 2021-01-07 20:07:03 -0800 | [diff] [blame] | 991 | hash); |
| 992 | } |
| 993 | |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 994 | static int __init init_ima(void) |
| 995 | { |
| 996 | int error; |
| 997 | |
Ard Biesheuvel | b000d5c | 2020-10-13 10:18:04 +0200 | [diff] [blame] | 998 | ima_appraise_parse_cmdline(); |
Mimi Zohar | 3f23d62 | 2016-12-19 16:22:51 -0800 | [diff] [blame] | 999 | ima_init_template_list(); |
Mimi Zohar | e7a2ad7 | 2013-06-07 12:16:37 +0200 | [diff] [blame] | 1000 | hash_setup(CONFIG_IMA_DEFAULT_HASH); |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 1001 | error = ima_init(); |
Petr Vorel | ab60368 | 2018-03-23 14:41:08 +0100 | [diff] [blame] | 1002 | |
| 1003 | if (error && strcmp(hash_algo_name[ima_hash_algo], |
| 1004 | CONFIG_IMA_DEFAULT_HASH) != 0) { |
| 1005 | pr_info("Allocating %s failed, going to use default hash algorithm %s\n", |
| 1006 | hash_algo_name[ima_hash_algo], CONFIG_IMA_DEFAULT_HASH); |
| 1007 | hash_setup_done = 0; |
| 1008 | hash_setup(CONFIG_IMA_DEFAULT_HASH); |
| 1009 | error = ima_init(); |
| 1010 | } |
| 1011 | |
Roberto Sassu | e144d6b | 2020-03-25 11:47:07 +0100 | [diff] [blame] | 1012 | if (error) |
| 1013 | return error; |
| 1014 | |
Janne Karhunen | b169424 | 2019-06-14 15:20:15 +0300 | [diff] [blame] | 1015 | error = register_blocking_lsm_notifier(&ima_lsm_policy_notifier); |
| 1016 | if (error) |
| 1017 | pr_warn("Couldn't register LSM notifier, error %d\n", error); |
| 1018 | |
Petr Vorel | 4ecd993 | 2018-05-10 17:15:48 +0200 | [diff] [blame] | 1019 | if (!error) |
Roberto Sassu | a756024 | 2014-09-12 19:35:54 +0200 | [diff] [blame] | 1020 | ima_update_policy_flag(); |
Petr Vorel | 4ecd993 | 2018-05-10 17:15:48 +0200 | [diff] [blame] | 1021 | |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 1022 | return error; |
| 1023 | } |
| 1024 | |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 1025 | late_initcall(init_ima); /* Start IMA after the TPM is available */ |