Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2005,2006,2007,2008 IBM Corporation |
| 3 | * |
| 4 | * Authors: |
| 5 | * Reiner Sailer <sailer@watson.ibm.com> |
| 6 | * Serge Hallyn <serue@us.ibm.com> |
| 7 | * Kylene Hall <kylene@us.ibm.com> |
| 8 | * Mimi Zohar <zohar@us.ibm.com> |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License as |
| 12 | * published by the Free Software Foundation, version 2 of the |
| 13 | * License. |
| 14 | * |
| 15 | * File: ima_main.c |
Eric Paris | e0d5bd2 | 2009-12-04 15:48:00 -0500 | [diff] [blame] | 16 | * implements the IMA hooks: ima_bprm_check, ima_file_mmap, |
Mimi Zohar | 9bbb6ca | 2010-01-26 17:02:40 -0500 | [diff] [blame] | 17 | * and ima_file_check. |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 18 | */ |
Petr Vorel | ab60368 | 2018-03-23 14:41:08 +0100 | [diff] [blame] | 19 | |
| 20 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 21 | |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 22 | #include <linux/module.h> |
| 23 | #include <linux/file.h> |
| 24 | #include <linux/binfmts.h> |
| 25 | #include <linux/mount.h> |
| 26 | #include <linux/mman.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 27 | #include <linux/slab.h> |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 28 | #include <linux/xattr.h> |
James Morris | d5813a5 | 2011-08-30 10:19:50 +1000 | [diff] [blame] | 29 | #include <linux/ima.h> |
Jeff Layton | 3b370b2 | 2017-12-11 06:35:21 -0500 | [diff] [blame] | 30 | #include <linux/iversion.h> |
Mimi Zohar | d77ccdc | 2018-02-21 11:35:20 -0500 | [diff] [blame] | 31 | #include <linux/fs.h> |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 32 | |
| 33 | #include "ima.h" |
| 34 | |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 35 | #ifdef CONFIG_IMA_APPRAISE |
| 36 | int ima_appraise = IMA_APPRAISE_ENFORCE; |
| 37 | #else |
| 38 | int ima_appraise; |
| 39 | #endif |
| 40 | |
Dmitry Kasatkin | c7c8bb2 | 2013-04-25 10:43:56 +0300 | [diff] [blame] | 41 | int ima_hash_algo = HASH_ALGO_SHA1; |
Mimi Zohar | e7a2ad7 | 2013-06-07 12:16:37 +0200 | [diff] [blame] | 42 | static int hash_setup_done; |
Dmitry Kasatkin | c7c8bb2 | 2013-04-25 10:43:56 +0300 | [diff] [blame] | 43 | |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 44 | static int __init hash_setup(char *str) |
| 45 | { |
Mimi Zohar | e7a2ad7 | 2013-06-07 12:16:37 +0200 | [diff] [blame] | 46 | struct ima_template_desc *template_desc = ima_template_desc_current(); |
| 47 | int i; |
| 48 | |
| 49 | if (hash_setup_done) |
| 50 | return 1; |
| 51 | |
| 52 | if (strcmp(template_desc->name, IMA_TEMPLATE_IMA_NAME) == 0) { |
| 53 | if (strncmp(str, "sha1", 4) == 0) |
| 54 | ima_hash_algo = HASH_ALGO_SHA1; |
| 55 | else if (strncmp(str, "md5", 3) == 0) |
| 56 | ima_hash_algo = HASH_ALGO_MD5; |
Boshi Wang | ebe7c0a | 2017-10-20 16:01:03 +0800 | [diff] [blame] | 57 | else |
| 58 | return 1; |
Mimi Zohar | e7a2ad7 | 2013-06-07 12:16:37 +0200 | [diff] [blame] | 59 | goto out; |
| 60 | } |
| 61 | |
Yisheng Xie | b4df860 | 2018-05-21 19:58:02 +0800 | [diff] [blame] | 62 | i = match_string(hash_algo_name, HASH_ALGO__LAST, str); |
| 63 | if (i < 0) |
Boshi Wang | ebe7c0a | 2017-10-20 16:01:03 +0800 | [diff] [blame] | 64 | return 1; |
Yisheng Xie | b4df860 | 2018-05-21 19:58:02 +0800 | [diff] [blame] | 65 | |
| 66 | ima_hash_algo = i; |
Mimi Zohar | e7a2ad7 | 2013-06-07 12:16:37 +0200 | [diff] [blame] | 67 | out: |
| 68 | hash_setup_done = 1; |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 69 | return 1; |
| 70 | } |
| 71 | __setup("ima_hash=", hash_setup); |
| 72 | |
Eric Paris | e0d5bd2 | 2009-12-04 15:48:00 -0500 | [diff] [blame] | 73 | /* |
Mimi Zohar | 890275b5 | 2010-11-02 10:13:07 -0400 | [diff] [blame] | 74 | * ima_rdwr_violation_check |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 75 | * |
Mimi Zohar | 890275b5 | 2010-11-02 10:13:07 -0400 | [diff] [blame] | 76 | * Only invalidate the PCR for measured files: |
Dmitry Kasatkin | 2bb930a | 2014-03-04 18:04:20 +0200 | [diff] [blame] | 77 | * - Opening a file for write when already open for read, |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 78 | * results in a time of measure, time of use (ToMToU) error. |
| 79 | * - Opening a file for read when already open for write, |
Dmitry Kasatkin | 2bb930a | 2014-03-04 18:04:20 +0200 | [diff] [blame] | 80 | * could result in a file measurement error. |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 81 | * |
| 82 | */ |
Roberto Sassu | f7a859f | 2014-09-12 19:35:55 +0200 | [diff] [blame] | 83 | static void ima_rdwr_violation_check(struct file *file, |
| 84 | struct integrity_iint_cache *iint, |
Roberto Sassu | 1b68bdf | 2014-09-12 19:35:56 +0200 | [diff] [blame] | 85 | int must_measure, |
Roberto Sassu | f7a859f | 2014-09-12 19:35:55 +0200 | [diff] [blame] | 86 | char **pathbuf, |
Roberto Sassu | 4e8581e | 2017-11-30 11:56:02 +0100 | [diff] [blame] | 87 | const char **pathname, |
| 88 | char *filename) |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 89 | { |
David Howells | c77cece | 2013-06-13 23:37:49 +0100 | [diff] [blame] | 90 | struct inode *inode = file_inode(file); |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 91 | fmode_t mode = file->f_mode; |
Eric Paris | ad16ad0 | 2010-10-25 14:41:45 -0400 | [diff] [blame] | 92 | bool send_tomtou = false, send_writers = false; |
Eric Paris | a178d20 | 2010-10-25 14:41:59 -0400 | [diff] [blame] | 93 | |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 94 | if (mode & FMODE_WRITE) { |
Dmitry Kasatkin | 14503eb | 2014-03-27 10:29:28 +0200 | [diff] [blame] | 95 | if (atomic_read(&inode->i_readcount) && IS_IMA(inode)) { |
Roberto Sassu | f7a859f | 2014-09-12 19:35:55 +0200 | [diff] [blame] | 96 | if (!iint) |
| 97 | iint = integrity_iint_find(inode); |
Dmitry Kasatkin | 14503eb | 2014-03-27 10:29:28 +0200 | [diff] [blame] | 98 | /* IMA_MEASURE is set from reader side */ |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 99 | if (iint && test_bit(IMA_MUST_MEASURE, |
| 100 | &iint->atomic_flags)) |
Dmitry Kasatkin | 14503eb | 2014-03-27 10:29:28 +0200 | [diff] [blame] | 101 | send_tomtou = true; |
| 102 | } |
Dmitry Kasatkin | b882fae | 2014-03-27 10:54:11 +0200 | [diff] [blame] | 103 | } else { |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 104 | if (must_measure) |
| 105 | set_bit(IMA_MUST_MEASURE, &iint->atomic_flags); |
Roberto Sassu | 1b68bdf | 2014-09-12 19:35:56 +0200 | [diff] [blame] | 106 | if ((atomic_read(&inode->i_writecount) > 0) && must_measure) |
Dmitry Kasatkin | b882fae | 2014-03-27 10:54:11 +0200 | [diff] [blame] | 107 | send_writers = true; |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 108 | } |
Eric Paris | ad16ad0 | 2010-10-25 14:41:45 -0400 | [diff] [blame] | 109 | |
Mimi Zohar | 08e1b76 | 2012-06-20 09:32:55 -0400 | [diff] [blame] | 110 | if (!send_tomtou && !send_writers) |
| 111 | return; |
| 112 | |
Mimi Zohar | bc15ed6 | 2017-01-17 06:45:41 -0500 | [diff] [blame] | 113 | *pathname = ima_d_path(&file->f_path, pathbuf, filename); |
Dmitry Kasatkin | ea1046d | 2012-09-04 00:40:17 +0300 | [diff] [blame] | 114 | |
Eric Paris | ad16ad0 | 2010-10-25 14:41:45 -0400 | [diff] [blame] | 115 | if (send_tomtou) |
Roberto Sassu | 8d94eb9 | 2015-04-11 17:12:39 +0200 | [diff] [blame] | 116 | ima_add_violation(file, *pathname, iint, |
| 117 | "invalid_pcr", "ToMToU"); |
Eric Paris | ad16ad0 | 2010-10-25 14:41:45 -0400 | [diff] [blame] | 118 | if (send_writers) |
Roberto Sassu | 8d94eb9 | 2015-04-11 17:12:39 +0200 | [diff] [blame] | 119 | ima_add_violation(file, *pathname, iint, |
Mimi Zohar | 08e1b76 | 2012-06-20 09:32:55 -0400 | [diff] [blame] | 120 | "invalid_pcr", "open_writers"); |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 121 | } |
| 122 | |
Mimi Zohar | f381c27 | 2011-03-09 14:13:22 -0500 | [diff] [blame] | 123 | static void ima_check_last_writer(struct integrity_iint_cache *iint, |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 124 | struct inode *inode, struct file *file) |
Eric Paris | bc7d2a3 | 2010-10-25 14:42:05 -0400 | [diff] [blame] | 125 | { |
Al Viro | 4b2a2c6 | 2011-07-26 04:30:35 -0400 | [diff] [blame] | 126 | fmode_t mode = file->f_mode; |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 127 | bool update; |
Eric Paris | 497f323 | 2010-10-25 14:41:32 -0400 | [diff] [blame] | 128 | |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 129 | if (!(mode & FMODE_WRITE)) |
| 130 | return; |
| 131 | |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 132 | mutex_lock(&iint->mutex); |
Dmitry Kasatkin | b151d6b | 2014-06-27 18:04:27 +0300 | [diff] [blame] | 133 | if (atomic_read(&inode->i_writecount) == 1) { |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 134 | update = test_and_clear_bit(IMA_UPDATE_XATTR, |
| 135 | &iint->atomic_flags); |
Sascha Hauer | ac0bf02 | 2017-12-11 06:35:20 -0500 | [diff] [blame] | 136 | if (!IS_I_VERSION(inode) || |
Goffredo Baroncelli | c472c07 | 2018-02-01 08:15:25 -0500 | [diff] [blame] | 137 | !inode_eq_iversion(inode, iint->version) || |
Dmitry Kasatkin | b151d6b | 2014-06-27 18:04:27 +0300 | [diff] [blame] | 138 | (iint->flags & IMA_NEW_FILE)) { |
| 139 | iint->flags &= ~(IMA_DONE_MASK | IMA_NEW_FILE); |
Eric Richter | a422638 | 2016-06-01 13:14:06 -0500 | [diff] [blame] | 140 | iint->measured_pcrs = 0; |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 141 | if (update) |
Dmitry Kasatkin | b151d6b | 2014-06-27 18:04:27 +0300 | [diff] [blame] | 142 | ima_update_xattr(iint, file); |
| 143 | } |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 144 | } |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 145 | mutex_unlock(&iint->mutex); |
Eric Paris | bc7d2a3 | 2010-10-25 14:42:05 -0400 | [diff] [blame] | 146 | } |
| 147 | |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 148 | /** |
| 149 | * ima_file_free - called on __fput() |
| 150 | * @file: pointer to file structure being freed |
| 151 | * |
Mimi Zohar | 890275b5 | 2010-11-02 10:13:07 -0400 | [diff] [blame] | 152 | * Flag files that changed, based on i_version |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 153 | */ |
| 154 | void ima_file_free(struct file *file) |
| 155 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 156 | struct inode *inode = file_inode(file); |
Mimi Zohar | f381c27 | 2011-03-09 14:13:22 -0500 | [diff] [blame] | 157 | struct integrity_iint_cache *iint; |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 158 | |
Dmitry Kasatkin | 0f34a00 | 2014-09-24 11:05:10 +0300 | [diff] [blame] | 159 | if (!ima_policy_flag || !S_ISREG(inode->i_mode)) |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 160 | return; |
Eric Paris | 196f518 | 2010-10-25 14:42:19 -0400 | [diff] [blame] | 161 | |
Mimi Zohar | f381c27 | 2011-03-09 14:13:22 -0500 | [diff] [blame] | 162 | iint = integrity_iint_find(inode); |
Mimi Zohar | 854fdd5 | 2010-11-02 10:14:22 -0400 | [diff] [blame] | 163 | if (!iint) |
| 164 | return; |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 165 | |
Mimi Zohar | 854fdd5 | 2010-11-02 10:14:22 -0400 | [diff] [blame] | 166 | ima_check_last_writer(iint, inode, file); |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 167 | } |
| 168 | |
Matthew Garrett | d906c10 | 2018-01-08 13:36:20 -0800 | [diff] [blame] | 169 | static int process_measurement(struct file *file, const struct cred *cred, |
| 170 | u32 secid, char *buf, loff_t size, int mask, |
Al Viro | 6035a27 | 2018-06-08 13:40:10 -0400 | [diff] [blame^] | 171 | enum ima_hooks func) |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 172 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 173 | struct inode *inode = file_inode(file); |
Roberto Sassu | f7a859f | 2014-09-12 19:35:55 +0200 | [diff] [blame] | 174 | struct integrity_iint_cache *iint = NULL; |
Dmitry Kasatkin | 209b43c | 2014-06-13 18:55:48 +0300 | [diff] [blame] | 175 | struct ima_template_desc *template_desc; |
Dmitry Kasatkin | ea1046d | 2012-09-04 00:40:17 +0300 | [diff] [blame] | 176 | char *pathbuf = NULL; |
Mimi Zohar | bc15ed6 | 2017-01-17 06:45:41 -0500 | [diff] [blame] | 177 | char filename[NAME_MAX]; |
Dmitry Kasatkin | ea1046d | 2012-09-04 00:40:17 +0300 | [diff] [blame] | 178 | const char *pathname = NULL; |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 179 | int rc = 0, action, must_appraise = 0; |
Eric Richter | 725de7f | 2016-06-01 13:14:02 -0500 | [diff] [blame] | 180 | int pcr = CONFIG_IMA_MEASURE_PCR_IDX; |
Dmitry Kasatkin | 1525b06 | 2014-10-30 12:39:39 +0200 | [diff] [blame] | 181 | struct evm_ima_xattr_data *xattr_value = NULL; |
Dmitry Kasatkin | d3634d0 | 2013-04-25 10:44:04 +0300 | [diff] [blame] | 182 | int xattr_len = 0; |
Roberto Sassu | f7a859f | 2014-09-12 19:35:55 +0200 | [diff] [blame] | 183 | bool violation_check; |
Dmitry Kasatkin | 1525b06 | 2014-10-30 12:39:39 +0200 | [diff] [blame] | 184 | enum hash_algo hash_algo; |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 185 | |
Roberto Sassu | a756024 | 2014-09-12 19:35:54 +0200 | [diff] [blame] | 186 | if (!ima_policy_flag || !S_ISREG(inode->i_mode)) |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 187 | return 0; |
Eric Paris | bc7d2a3 | 2010-10-25 14:42:05 -0400 | [diff] [blame] | 188 | |
Mimi Zohar | d79d72e | 2012-12-03 17:08:11 -0500 | [diff] [blame] | 189 | /* Return an IMA_MEASURE, IMA_APPRAISE, IMA_AUDIT action |
| 190 | * bitmask based on the appraise/audit/measurement policy. |
| 191 | * Included is the appraise submask. |
| 192 | */ |
Matthew Garrett | d906c10 | 2018-01-08 13:36:20 -0800 | [diff] [blame] | 193 | action = ima_get_action(inode, cred, secid, mask, func, &pcr); |
Mimi Zohar | 4ad87a3 | 2016-01-14 20:59:14 -0500 | [diff] [blame] | 194 | violation_check = ((func == FILE_CHECK || func == MMAP_CHECK) && |
Roberto Sassu | f7a859f | 2014-09-12 19:35:55 +0200 | [diff] [blame] | 195 | (ima_policy_flag & IMA_MEASURE)); |
| 196 | if (!action && !violation_check) |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 197 | return 0; |
| 198 | |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 199 | must_appraise = action & IMA_APPRAISE; |
Eric Paris | bc7d2a3 | 2010-10-25 14:42:05 -0400 | [diff] [blame] | 200 | |
Mimi Zohar | 5a73fcf | 2012-12-05 15:14:38 -0500 | [diff] [blame] | 201 | /* Is the appraise rule hook specific? */ |
Dmitry Kasatkin | 3a8a2ea | 2014-09-03 10:19:57 +0300 | [diff] [blame] | 202 | if (action & IMA_FILE_APPRAISE) |
Mimi Zohar | 4ad87a3 | 2016-01-14 20:59:14 -0500 | [diff] [blame] | 203 | func = FILE_CHECK; |
Mimi Zohar | 5a73fcf | 2012-12-05 15:14:38 -0500 | [diff] [blame] | 204 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 205 | inode_lock(inode); |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 206 | |
Roberto Sassu | f7a859f | 2014-09-12 19:35:55 +0200 | [diff] [blame] | 207 | if (action) { |
| 208 | iint = integrity_inode_get(inode); |
| 209 | if (!iint) |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 210 | rc = -ENOMEM; |
Roberto Sassu | f7a859f | 2014-09-12 19:35:55 +0200 | [diff] [blame] | 211 | } |
| 212 | |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 213 | if (!rc && violation_check) |
Roberto Sassu | 1b68bdf | 2014-09-12 19:35:56 +0200 | [diff] [blame] | 214 | ima_rdwr_violation_check(file, iint, action & IMA_MEASURE, |
Roberto Sassu | 4e8581e | 2017-11-30 11:56:02 +0100 | [diff] [blame] | 215 | &pathbuf, &pathname, filename); |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 216 | |
| 217 | inode_unlock(inode); |
| 218 | |
| 219 | if (rc) |
| 220 | goto out; |
| 221 | if (!action) |
| 222 | goto out; |
| 223 | |
| 224 | mutex_lock(&iint->mutex); |
| 225 | |
| 226 | if (test_and_clear_bit(IMA_CHANGE_ATTR, &iint->atomic_flags)) |
| 227 | /* reset appraisal flags if ima_inode_post_setattr was called */ |
| 228 | iint->flags &= ~(IMA_APPRAISE | IMA_APPRAISED | |
| 229 | IMA_APPRAISE_SUBMASK | IMA_APPRAISED_SUBMASK | |
| 230 | IMA_ACTION_FLAGS); |
| 231 | |
Mimi Zohar | d77ccdc | 2018-02-21 11:35:20 -0500 | [diff] [blame] | 232 | /* |
| 233 | * Re-evaulate the file if either the xattr has changed or the |
| 234 | * kernel has no way of detecting file change on the filesystem. |
| 235 | * (Limited to privileged mounted filesystems.) |
| 236 | */ |
| 237 | if (test_and_clear_bit(IMA_CHANGE_XATTR, &iint->atomic_flags) || |
| 238 | ((inode->i_sb->s_iflags & SB_I_IMA_UNVERIFIABLE_SIGNATURE) && |
Mimi Zohar | 9e67028 | 2018-02-21 11:36:32 -0500 | [diff] [blame] | 239 | !(inode->i_sb->s_iflags & SB_I_UNTRUSTED_MOUNTER) && |
| 240 | !(action & IMA_FAIL_UNVERIFIABLE_SIGS))) { |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 241 | iint->flags &= ~IMA_DONE_MASK; |
Mimi Zohar | d77ccdc | 2018-02-21 11:35:20 -0500 | [diff] [blame] | 242 | iint->measured_pcrs = 0; |
| 243 | } |
Dmitry Kasatkin | bf2276d | 2011-10-19 12:04:40 +0300 | [diff] [blame] | 244 | |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 245 | /* Determine if already appraised/measured based on bitmask |
Mimi Zohar | d79d72e | 2012-12-03 17:08:11 -0500 | [diff] [blame] | 246 | * (IMA_MEASURE, IMA_MEASURED, IMA_XXXX_APPRAISE, IMA_XXXX_APPRAISED, |
| 247 | * IMA_AUDIT, IMA_AUDITED) |
| 248 | */ |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 249 | iint->flags |= action; |
Dmitry Kasatkin | 0e5a247 | 2012-06-08 13:58:49 +0300 | [diff] [blame] | 250 | action &= IMA_DO_MASK; |
Eric Richter | a422638 | 2016-06-01 13:14:06 -0500 | [diff] [blame] | 251 | action &= ~((iint->flags & (IMA_DONE_MASK ^ IMA_MEASURED)) >> 1); |
| 252 | |
| 253 | /* If target pcr is already measured, unset IMA_MEASURE action */ |
| 254 | if ((action & IMA_MEASURE) && (iint->measured_pcrs & (0x1 << pcr))) |
| 255 | action ^= IMA_MEASURE; |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 256 | |
Mimi Zohar | da1b002 | 2016-09-29 10:04:52 -0400 | [diff] [blame] | 257 | /* HASH sets the digital signature and update flags, nothing else */ |
| 258 | if ((action & IMA_HASH) && |
| 259 | !(test_bit(IMA_DIGSIG, &iint->atomic_flags))) { |
| 260 | xattr_len = ima_read_xattr(file_dentry(file), &xattr_value); |
| 261 | if ((xattr_value && xattr_len > 2) && |
| 262 | (xattr_value->type == EVM_IMA_XATTR_DIGSIG)) |
| 263 | set_bit(IMA_DIGSIG, &iint->atomic_flags); |
| 264 | iint->flags |= IMA_HASHED; |
| 265 | action ^= IMA_HASH; |
| 266 | set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags); |
| 267 | } |
| 268 | |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 269 | /* Nothing to do, just return existing appraised status */ |
| 270 | if (!action) { |
Mimi Zohar | d79d72e | 2012-12-03 17:08:11 -0500 | [diff] [blame] | 271 | if (must_appraise) |
Mimi Zohar | 4ad87a3 | 2016-01-14 20:59:14 -0500 | [diff] [blame] | 272 | rc = ima_get_cache_status(iint, func); |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 273 | goto out_locked; |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 274 | } |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 275 | |
Dmitry Kasatkin | 209b43c | 2014-06-13 18:55:48 +0300 | [diff] [blame] | 276 | template_desc = ima_template_desc_current(); |
Dmitry Kasatkin | f68c05f | 2014-08-22 09:43:55 +0300 | [diff] [blame] | 277 | if ((action & IMA_APPRAISE_SUBMASK) || |
| 278 | strcmp(template_desc->name, IMA_TEMPLATE_IMA_NAME) != 0) |
Dmitry Kasatkin | 1525b06 | 2014-10-30 12:39:39 +0200 | [diff] [blame] | 279 | /* read 'security.ima' */ |
Miklos Szeredi | e71b9df | 2016-09-16 12:44:20 +0200 | [diff] [blame] | 280 | xattr_len = ima_read_xattr(file_dentry(file), &xattr_value); |
Dmitry Kasatkin | d3634d0 | 2013-04-25 10:44:04 +0300 | [diff] [blame] | 281 | |
Dmitry Kasatkin | 1525b06 | 2014-10-30 12:39:39 +0200 | [diff] [blame] | 282 | hash_algo = ima_get_hash_algo(xattr_value, xattr_len); |
| 283 | |
Mimi Zohar | cf22221 | 2016-01-14 17:57:47 -0500 | [diff] [blame] | 284 | rc = ima_collect_measurement(iint, file, buf, size, hash_algo); |
Mimi Zohar | f3cc6b2 | 2017-06-17 23:56:23 -0400 | [diff] [blame] | 285 | if (rc != 0 && rc != -EBADF && rc != -EINVAL) |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 286 | goto out_locked; |
Mimi Zohar | 08e1b76 | 2012-06-20 09:32:55 -0400 | [diff] [blame] | 287 | |
Mimi Zohar | bc15ed6 | 2017-01-17 06:45:41 -0500 | [diff] [blame] | 288 | if (!pathbuf) /* ima_rdwr_violation possibly pre-fetched */ |
| 289 | pathname = ima_d_path(&file->f_path, &pathbuf, filename); |
Dmitry Kasatkin | ea1046d | 2012-09-04 00:40:17 +0300 | [diff] [blame] | 290 | |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 291 | if (action & IMA_MEASURE) |
Mimi Zohar | bcbc9b0c | 2013-07-23 11:15:00 -0400 | [diff] [blame] | 292 | ima_store_measurement(iint, file, pathname, |
Eric Richter | 14b1da8 | 2016-06-01 13:14:03 -0500 | [diff] [blame] | 293 | xattr_value, xattr_len, pcr); |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 294 | if (rc == 0 && (action & IMA_APPRAISE_SUBMASK)) { |
| 295 | inode_lock(inode); |
Mimi Zohar | 4ad87a3 | 2016-01-14 20:59:14 -0500 | [diff] [blame] | 296 | rc = ima_appraise_measurement(func, iint, file, pathname, |
Al Viro | 6035a27 | 2018-06-08 13:40:10 -0400 | [diff] [blame^] | 297 | xattr_value, xattr_len); |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 298 | inode_unlock(inode); |
| 299 | } |
Peter Moody | e7c568e | 2012-06-14 10:04:36 -0700 | [diff] [blame] | 300 | if (action & IMA_AUDIT) |
Dmitry Kasatkin | ea1046d | 2012-09-04 00:40:17 +0300 | [diff] [blame] | 301 | ima_audit_measurement(iint, pathname); |
Roberto Sassu | f7a859f | 2014-09-12 19:35:55 +0200 | [diff] [blame] | 302 | |
Mimi Zohar | f3cc6b2 | 2017-06-17 23:56:23 -0400 | [diff] [blame] | 303 | if ((file->f_flags & O_DIRECT) && (iint->flags & IMA_PERMIT_DIRECTIO)) |
| 304 | rc = 0; |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 305 | out_locked: |
| 306 | if ((mask & MAY_WRITE) && test_bit(IMA_DIGSIG, &iint->atomic_flags) && |
Mimi Zohar | 05d1a71 | 2016-02-29 19:52:05 -0500 | [diff] [blame] | 307 | !(iint->flags & IMA_NEW_FILE)) |
Dmitry Kasatkin | a175b8b | 2012-09-27 15:06:28 +0300 | [diff] [blame] | 308 | rc = -EACCES; |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 309 | mutex_unlock(&iint->mutex); |
Roberto Sassu | f7a859f | 2014-09-12 19:35:55 +0200 | [diff] [blame] | 310 | kfree(xattr_value); |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 311 | out: |
Dmitry Kasatkin | 456f5fd | 2014-10-01 21:43:10 +0300 | [diff] [blame] | 312 | if (pathbuf) |
| 313 | __putname(pathbuf); |
Dmitry Kasatkin | 0d73a55 | 2017-12-05 21:06:34 +0200 | [diff] [blame] | 314 | if (must_appraise) { |
| 315 | if (rc && (ima_appraise & IMA_APPRAISE_ENFORCE)) |
| 316 | return -EACCES; |
| 317 | if (file->f_mode & FMODE_WRITE) |
| 318 | set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags); |
| 319 | } |
Dmitry Kasatkin | 750943a | 2012-09-27 15:57:10 +0300 | [diff] [blame] | 320 | return 0; |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 321 | } |
| 322 | |
| 323 | /** |
| 324 | * ima_file_mmap - based on policy, collect/store measurement. |
| 325 | * @file: pointer to the file to be measured (May be NULL) |
| 326 | * @prot: contains the protection that will be applied by the kernel. |
| 327 | * |
| 328 | * Measure files being mmapped executable based on the ima_must_measure() |
| 329 | * policy decision. |
| 330 | * |
Dmitry Kasatkin | 750943a | 2012-09-27 15:57:10 +0300 | [diff] [blame] | 331 | * On success return 0. On integrity appraisal error, assuming the file |
| 332 | * is in policy and IMA-appraisal is in enforcing mode, return -EACCES. |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 333 | */ |
| 334 | int ima_file_mmap(struct file *file, unsigned long prot) |
| 335 | { |
Matthew Garrett | d906c10 | 2018-01-08 13:36:20 -0800 | [diff] [blame] | 336 | u32 secid; |
| 337 | |
| 338 | if (file && (prot & PROT_EXEC)) { |
| 339 | security_task_getsecid(current, &secid); |
| 340 | return process_measurement(file, current_cred(), secid, NULL, |
Al Viro | 6035a27 | 2018-06-08 13:40:10 -0400 | [diff] [blame^] | 341 | 0, MAY_EXEC, MMAP_CHECK); |
Matthew Garrett | d906c10 | 2018-01-08 13:36:20 -0800 | [diff] [blame] | 342 | } |
| 343 | |
Dmitry Kasatkin | 750943a | 2012-09-27 15:57:10 +0300 | [diff] [blame] | 344 | return 0; |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 345 | } |
| 346 | |
| 347 | /** |
| 348 | * ima_bprm_check - based on policy, collect/store measurement. |
| 349 | * @bprm: contains the linux_binprm structure |
| 350 | * |
| 351 | * The OS protects against an executable file, already open for write, |
| 352 | * from being executed in deny_write_access() and an executable file, |
| 353 | * already open for execute, from being modified in get_write_access(). |
| 354 | * So we can be certain that what we verify and measure here is actually |
| 355 | * what is being executed. |
| 356 | * |
Dmitry Kasatkin | 750943a | 2012-09-27 15:57:10 +0300 | [diff] [blame] | 357 | * On success return 0. On integrity appraisal error, assuming the file |
| 358 | * is in policy and IMA-appraisal is in enforcing mode, return -EACCES. |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 359 | */ |
| 360 | int ima_bprm_check(struct linux_binprm *bprm) |
| 361 | { |
Matthew Garrett | d906c10 | 2018-01-08 13:36:20 -0800 | [diff] [blame] | 362 | int ret; |
| 363 | u32 secid; |
| 364 | |
| 365 | security_task_getsecid(current, &secid); |
| 366 | ret = process_measurement(bprm->file, current_cred(), secid, NULL, 0, |
Al Viro | 6035a27 | 2018-06-08 13:40:10 -0400 | [diff] [blame^] | 367 | MAY_EXEC, BPRM_CHECK); |
Matthew Garrett | d906c10 | 2018-01-08 13:36:20 -0800 | [diff] [blame] | 368 | if (ret) |
| 369 | return ret; |
| 370 | |
| 371 | security_cred_getsecid(bprm->cred, &secid); |
| 372 | return process_measurement(bprm->file, bprm->cred, secid, NULL, 0, |
Al Viro | 6035a27 | 2018-06-08 13:40:10 -0400 | [diff] [blame^] | 373 | MAY_EXEC, CREDS_CHECK); |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 374 | } |
| 375 | |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 376 | /** |
| 377 | * ima_path_check - based on policy, collect/store measurement. |
| 378 | * @file: pointer to the file to be measured |
Lans Zhang | 20f482a | 2017-01-06 12:38:11 +0800 | [diff] [blame] | 379 | * @mask: contains MAY_READ, MAY_WRITE, MAY_EXEC or MAY_APPEND |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 380 | * |
| 381 | * Measure files based on the ima_must_measure() policy decision. |
| 382 | * |
Dmitry Kasatkin | 750943a | 2012-09-27 15:57:10 +0300 | [diff] [blame] | 383 | * On success return 0. On integrity appraisal error, assuming the file |
| 384 | * is in policy and IMA-appraisal is in enforcing mode, return -EACCES. |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 385 | */ |
Al Viro | 6035a27 | 2018-06-08 13:40:10 -0400 | [diff] [blame^] | 386 | int ima_file_check(struct file *file, int mask) |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 387 | { |
Matthew Garrett | d906c10 | 2018-01-08 13:36:20 -0800 | [diff] [blame] | 388 | u32 secid; |
| 389 | |
| 390 | security_task_getsecid(current, &secid); |
| 391 | return process_measurement(file, current_cred(), secid, NULL, 0, |
Lans Zhang | 20f482a | 2017-01-06 12:38:11 +0800 | [diff] [blame] | 392 | mask & (MAY_READ | MAY_WRITE | MAY_EXEC | |
Al Viro | 6035a27 | 2018-06-08 13:40:10 -0400 | [diff] [blame^] | 393 | MAY_APPEND), FILE_CHECK); |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 394 | } |
Mimi Zohar | 9bbb6ca | 2010-01-26 17:02:40 -0500 | [diff] [blame] | 395 | EXPORT_SYMBOL_GPL(ima_file_check); |
Mimi Zohar | 8eb988c | 2010-01-20 15:35:41 -0500 | [diff] [blame] | 396 | |
Mimi Zohar | fdf9072 | 2012-10-16 12:40:08 +1030 | [diff] [blame] | 397 | /** |
Mimi Zohar | 05d1a71 | 2016-02-29 19:52:05 -0500 | [diff] [blame] | 398 | * ima_post_path_mknod - mark as a new inode |
| 399 | * @dentry: newly created dentry |
| 400 | * |
| 401 | * Mark files created via the mknodat syscall as new, so that the |
| 402 | * file data can be written later. |
| 403 | */ |
| 404 | void ima_post_path_mknod(struct dentry *dentry) |
| 405 | { |
| 406 | struct integrity_iint_cache *iint; |
| 407 | struct inode *inode = dentry->d_inode; |
| 408 | int must_appraise; |
| 409 | |
| 410 | must_appraise = ima_must_appraise(inode, MAY_ACCESS, FILE_CHECK); |
| 411 | if (!must_appraise) |
| 412 | return; |
| 413 | |
| 414 | iint = integrity_inode_get(inode); |
| 415 | if (iint) |
| 416 | iint->flags |= IMA_NEW_FILE; |
| 417 | } |
| 418 | |
| 419 | /** |
Mimi Zohar | 39eeb4f | 2016-01-30 22:23:26 -0500 | [diff] [blame] | 420 | * ima_read_file - pre-measure/appraise hook decision based on policy |
| 421 | * @file: pointer to the file to be measured/appraised/audit |
| 422 | * @read_id: caller identifier |
| 423 | * |
| 424 | * Permit reading a file based on policy. The policy rules are written |
| 425 | * in terms of the policy identifier. Appraising the integrity of |
| 426 | * a file requires a file descriptor. |
| 427 | * |
| 428 | * For permission return 0, otherwise return -EACCES. |
| 429 | */ |
| 430 | int ima_read_file(struct file *file, enum kernel_read_file_id read_id) |
| 431 | { |
Bruno E. O. Meneguele | 7c9bc09 | 2017-10-24 15:37:01 -0200 | [diff] [blame] | 432 | bool sig_enforce = is_module_sig_enforced(); |
| 433 | |
Mimi Zohar | a1db742 | 2015-12-30 07:35:30 -0500 | [diff] [blame] | 434 | if (!file && read_id == READING_MODULE) { |
Bruno E. O. Meneguele | 7c9bc09 | 2017-10-24 15:37:01 -0200 | [diff] [blame] | 435 | if (!sig_enforce && (ima_appraise & IMA_APPRAISE_MODULES) && |
Bruno E. O. Meneguele | 9c655be | 2017-12-05 11:35:32 -0200 | [diff] [blame] | 436 | (ima_appraise & IMA_APPRAISE_ENFORCE)) { |
| 437 | pr_err("impossible to appraise a module without a file descriptor. sig_enforce kernel parameter might help\n"); |
Mimi Zohar | a1db742 | 2015-12-30 07:35:30 -0500 | [diff] [blame] | 438 | return -EACCES; /* INTEGRITY_UNKNOWN */ |
Bruno E. O. Meneguele | 9c655be | 2017-12-05 11:35:32 -0200 | [diff] [blame] | 439 | } |
Mimi Zohar | a1db742 | 2015-12-30 07:35:30 -0500 | [diff] [blame] | 440 | return 0; /* We rely on module signature checking */ |
| 441 | } |
Mimi Zohar | 39eeb4f | 2016-01-30 22:23:26 -0500 | [diff] [blame] | 442 | return 0; |
| 443 | } |
| 444 | |
Mimi Zohar | d9ddf07 | 2016-01-14 20:59:14 -0500 | [diff] [blame] | 445 | static int read_idmap[READING_MAX_ID] = { |
| 446 | [READING_FIRMWARE] = FIRMWARE_CHECK, |
Mimi Zohar | fd90bc5 | 2018-04-27 14:31:40 -0400 | [diff] [blame] | 447 | [READING_FIRMWARE_PREALLOC_BUFFER] = FIRMWARE_CHECK, |
Mimi Zohar | d9ddf07 | 2016-01-14 20:59:14 -0500 | [diff] [blame] | 448 | [READING_MODULE] = MODULE_CHECK, |
| 449 | [READING_KEXEC_IMAGE] = KEXEC_KERNEL_CHECK, |
| 450 | [READING_KEXEC_INITRAMFS] = KEXEC_INITRAMFS_CHECK, |
Mimi Zohar | 19f8a84 | 2016-01-15 10:17:12 -0500 | [diff] [blame] | 451 | [READING_POLICY] = POLICY_CHECK |
Mimi Zohar | d9ddf07 | 2016-01-14 20:59:14 -0500 | [diff] [blame] | 452 | }; |
| 453 | |
Mimi Zohar | 39eeb4f | 2016-01-30 22:23:26 -0500 | [diff] [blame] | 454 | /** |
Mimi Zohar | cf22221 | 2016-01-14 17:57:47 -0500 | [diff] [blame] | 455 | * ima_post_read_file - in memory collect/appraise/audit measurement |
| 456 | * @file: pointer to the file to be measured/appraised/audit |
| 457 | * @buf: pointer to in memory file contents |
| 458 | * @size: size of in memory file contents |
| 459 | * @read_id: caller identifier |
| 460 | * |
| 461 | * Measure/appraise/audit in memory file based on policy. Policy rules |
| 462 | * are written in terms of a policy identifier. |
| 463 | * |
| 464 | * On success return 0. On integrity appraisal error, assuming the file |
| 465 | * is in policy and IMA-appraisal is in enforcing mode, return -EACCES. |
| 466 | */ |
| 467 | int ima_post_read_file(struct file *file, void *buf, loff_t size, |
| 468 | enum kernel_read_file_id read_id) |
| 469 | { |
Mimi Zohar | d9ddf07 | 2016-01-14 20:59:14 -0500 | [diff] [blame] | 470 | enum ima_hooks func; |
Matthew Garrett | d906c10 | 2018-01-08 13:36:20 -0800 | [diff] [blame] | 471 | u32 secid; |
Mimi Zohar | cf22221 | 2016-01-14 17:57:47 -0500 | [diff] [blame] | 472 | |
Mimi Zohar | e40ba6d | 2015-11-19 12:39:22 -0500 | [diff] [blame] | 473 | if (!file && read_id == READING_FIRMWARE) { |
| 474 | if ((ima_appraise & IMA_APPRAISE_FIRMWARE) && |
| 475 | (ima_appraise & IMA_APPRAISE_ENFORCE)) |
| 476 | return -EACCES; /* INTEGRITY_UNKNOWN */ |
| 477 | return 0; |
| 478 | } |
| 479 | |
Mimi Zohar | a1db742 | 2015-12-30 07:35:30 -0500 | [diff] [blame] | 480 | if (!file && read_id == READING_MODULE) /* MODULE_SIG_FORCE enabled */ |
| 481 | return 0; |
| 482 | |
Christoph Hellwig | a7d3d03 | 2017-09-10 09:49:45 +0200 | [diff] [blame] | 483 | /* permit signed certs */ |
| 484 | if (!file && read_id == READING_X509_CERTIFICATE) |
| 485 | return 0; |
| 486 | |
Mimi Zohar | cf22221 | 2016-01-14 17:57:47 -0500 | [diff] [blame] | 487 | if (!file || !buf || size == 0) { /* should never happen */ |
| 488 | if (ima_appraise & IMA_APPRAISE_ENFORCE) |
| 489 | return -EACCES; |
| 490 | return 0; |
| 491 | } |
| 492 | |
Mimi Zohar | d9ddf07 | 2016-01-14 20:59:14 -0500 | [diff] [blame] | 493 | func = read_idmap[read_id] ?: FILE_CHECK; |
Matthew Garrett | d906c10 | 2018-01-08 13:36:20 -0800 | [diff] [blame] | 494 | security_task_getsecid(current, &secid); |
| 495 | return process_measurement(file, current_cred(), secid, buf, size, |
Al Viro | 6035a27 | 2018-06-08 13:40:10 -0400 | [diff] [blame^] | 496 | MAY_READ, func); |
Mimi Zohar | 5a9196d | 2014-07-22 10:39:48 -0400 | [diff] [blame] | 497 | } |
| 498 | |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 499 | static int __init init_ima(void) |
| 500 | { |
| 501 | int error; |
| 502 | |
Mimi Zohar | 3f23d62 | 2016-12-19 16:22:51 -0800 | [diff] [blame] | 503 | ima_init_template_list(); |
Mimi Zohar | e7a2ad7 | 2013-06-07 12:16:37 +0200 | [diff] [blame] | 504 | hash_setup(CONFIG_IMA_DEFAULT_HASH); |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 505 | error = ima_init(); |
Petr Vorel | ab60368 | 2018-03-23 14:41:08 +0100 | [diff] [blame] | 506 | |
| 507 | if (error && strcmp(hash_algo_name[ima_hash_algo], |
| 508 | CONFIG_IMA_DEFAULT_HASH) != 0) { |
| 509 | pr_info("Allocating %s failed, going to use default hash algorithm %s\n", |
| 510 | hash_algo_name[ima_hash_algo], CONFIG_IMA_DEFAULT_HASH); |
| 511 | hash_setup_done = 0; |
| 512 | hash_setup(CONFIG_IMA_DEFAULT_HASH); |
| 513 | error = ima_init(); |
| 514 | } |
| 515 | |
Petr Vorel | 4ecd993 | 2018-05-10 17:15:48 +0200 | [diff] [blame] | 516 | if (!error) |
Roberto Sassu | a756024 | 2014-09-12 19:35:54 +0200 | [diff] [blame] | 517 | ima_update_policy_flag(); |
Petr Vorel | 4ecd993 | 2018-05-10 17:15:48 +0200 | [diff] [blame] | 518 | |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 519 | return error; |
| 520 | } |
| 521 | |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 522 | late_initcall(init_ima); /* Start IMA after the TPM is available */ |
| 523 | |
| 524 | MODULE_DESCRIPTION("Integrity Measurement Architecture"); |
| 525 | MODULE_LICENSE("GPL"); |