ed7d9fa4f53645832f02e3837070e12bc16ee588
[firefly-linux-kernel-4.4.55.git] / security / integrity / ima / ima_main.c
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
16  *      implements the IMA hooks: ima_bprm_check, ima_file_mmap,
17  *      and ima_file_check.
18  */
19 #include <linux/module.h>
20 #include <linux/file.h>
21 #include <linux/binfmts.h>
22 #include <linux/mount.h>
23 #include <linux/mman.h>
24 #include <linux/slab.h>
25 #include <linux/xattr.h>
26 #include <linux/ima.h>
27 #include <crypto/hash_info.h>
28
29 #include "ima.h"
30
31 int ima_initialized;
32
33 #ifdef CONFIG_IMA_APPRAISE
34 int ima_appraise = IMA_APPRAISE_ENFORCE;
35 #else
36 int ima_appraise;
37 #endif
38
39 int ima_hash_algo = HASH_ALGO_SHA1;
40 static int hash_setup_done;
41
42 static int __init hash_setup(char *str)
43 {
44         struct ima_template_desc *template_desc = ima_template_desc_current();
45         int i;
46
47         if (hash_setup_done)
48                 return 1;
49
50         if (strcmp(template_desc->name, IMA_TEMPLATE_IMA_NAME) == 0) {
51                 if (strncmp(str, "sha1", 4) == 0)
52                         ima_hash_algo = HASH_ALGO_SHA1;
53                 else if (strncmp(str, "md5", 3) == 0)
54                         ima_hash_algo = HASH_ALGO_MD5;
55                 goto out;
56         }
57
58         for (i = 0; i < HASH_ALGO__LAST; i++) {
59                 if (strcmp(str, hash_algo_name[i]) == 0) {
60                         ima_hash_algo = i;
61                         break;
62                 }
63         }
64 out:
65         hash_setup_done = 1;
66         return 1;
67 }
68 __setup("ima_hash=", hash_setup);
69
70 /*
71  * ima_rdwr_violation_check
72  *
73  * Only invalidate the PCR for measured files:
74  *      - Opening a file for write when already open for read,
75  *        results in a time of measure, time of use (ToMToU) error.
76  *      - Opening a file for read when already open for write,
77  *        could result in a file measurement error.
78  *
79  */
80 static void ima_rdwr_violation_check(struct file *file)
81 {
82         struct inode *inode = file_inode(file);
83         fmode_t mode = file->f_mode;
84         bool send_tomtou = false, send_writers = false;
85         char *pathbuf = NULL;
86         const char *pathname;
87
88         if (!S_ISREG(inode->i_mode) || !ima_initialized)
89                 return;
90
91         if (mode & FMODE_WRITE) {
92                 if (atomic_read(&inode->i_readcount) && IS_IMA(inode)) {
93                         struct integrity_iint_cache *iint;
94                         iint = integrity_iint_find(inode);
95                         /* IMA_MEASURE is set from reader side */
96                         if (iint && (iint->flags & IMA_MEASURE))
97                                 send_tomtou = true;
98                 }
99         } else {
100                 if ((atomic_read(&inode->i_writecount) > 0) &&
101                     ima_must_measure(inode, MAY_READ, FILE_CHECK))
102                         send_writers = true;
103         }
104
105         if (!send_tomtou && !send_writers)
106                 return;
107
108         pathname = ima_d_path(&file->f_path, &pathbuf);
109
110         if (send_tomtou)
111                 ima_add_violation(file, pathname, "invalid_pcr", "ToMToU");
112         if (send_writers)
113                 ima_add_violation(file, pathname,
114                                   "invalid_pcr", "open_writers");
115         kfree(pathbuf);
116 }
117
118 static void ima_check_last_writer(struct integrity_iint_cache *iint,
119                                   struct inode *inode, struct file *file)
120 {
121         fmode_t mode = file->f_mode;
122
123         if (!(mode & FMODE_WRITE))
124                 return;
125
126         mutex_lock(&inode->i_mutex);
127         if (atomic_read(&inode->i_writecount) == 1) {
128                 if ((iint->version != inode->i_version) ||
129                     (iint->flags & IMA_NEW_FILE)) {
130                         iint->flags &= ~(IMA_DONE_MASK | IMA_NEW_FILE);
131                         if (iint->flags & IMA_APPRAISE)
132                                 ima_update_xattr(iint, file);
133                 }
134         }
135         mutex_unlock(&inode->i_mutex);
136 }
137
138 /**
139  * ima_file_free - called on __fput()
140  * @file: pointer to file structure being freed
141  *
142  * Flag files that changed, based on i_version
143  */
144 void ima_file_free(struct file *file)
145 {
146         struct inode *inode = file_inode(file);
147         struct integrity_iint_cache *iint;
148
149         if (!iint_initialized || !S_ISREG(inode->i_mode))
150                 return;
151
152         iint = integrity_iint_find(inode);
153         if (!iint)
154                 return;
155
156         ima_check_last_writer(iint, inode, file);
157 }
158
159 static int process_measurement(struct file *file, int mask, int function,
160                                int opened)
161 {
162         struct inode *inode = file_inode(file);
163         struct integrity_iint_cache *iint;
164         struct ima_template_desc *template_desc;
165         char *pathbuf = NULL;
166         const char *pathname = NULL;
167         int rc = -ENOMEM, action, must_appraise;
168         struct evm_ima_xattr_data *xattr_value = NULL, **xattr_ptr = NULL;
169         int xattr_len = 0;
170
171         if (!ima_initialized || !S_ISREG(inode->i_mode))
172                 return 0;
173
174         /* Return an IMA_MEASURE, IMA_APPRAISE, IMA_AUDIT action
175          * bitmask based on the appraise/audit/measurement policy.
176          * Included is the appraise submask.
177          */
178         action = ima_get_action(inode, mask, function);
179         if (!action)
180                 return 0;
181
182         must_appraise = action & IMA_APPRAISE;
183
184         /*  Is the appraise rule hook specific?  */
185         if (action & IMA_FILE_APPRAISE)
186                 function = FILE_CHECK;
187
188         mutex_lock(&inode->i_mutex);
189
190         iint = integrity_inode_get(inode);
191         if (!iint)
192                 goto out;
193
194         /* Determine if already appraised/measured based on bitmask
195          * (IMA_MEASURE, IMA_MEASURED, IMA_XXXX_APPRAISE, IMA_XXXX_APPRAISED,
196          *  IMA_AUDIT, IMA_AUDITED)
197          */
198         iint->flags |= action;
199         action &= IMA_DO_MASK;
200         action &= ~((iint->flags & IMA_DONE_MASK) >> 1);
201
202         /* Nothing to do, just return existing appraised status */
203         if (!action) {
204                 if (must_appraise)
205                         rc = ima_get_cache_status(iint, function);
206                 goto out_digsig;
207         }
208
209         template_desc = ima_template_desc_current();
210         if ((action & IMA_APPRAISE_SUBMASK) ||
211                     strcmp(template_desc->name, IMA_TEMPLATE_IMA_NAME) != 0)
212                 xattr_ptr = &xattr_value;
213
214         rc = ima_collect_measurement(iint, file, xattr_ptr, &xattr_len);
215         if (rc != 0) {
216                 if (file->f_flags & O_DIRECT)
217                         rc = (iint->flags & IMA_PERMIT_DIRECTIO) ? 0 : -EACCES;
218                 goto out_digsig;
219         }
220
221         pathname = ima_d_path(&file->f_path, &pathbuf);
222
223         if (action & IMA_MEASURE)
224                 ima_store_measurement(iint, file, pathname,
225                                       xattr_value, xattr_len);
226         if (action & IMA_APPRAISE_SUBMASK)
227                 rc = ima_appraise_measurement(function, iint, file, pathname,
228                                               xattr_value, xattr_len, opened);
229         if (action & IMA_AUDIT)
230                 ima_audit_measurement(iint, pathname);
231         kfree(pathbuf);
232 out_digsig:
233         if ((mask & MAY_WRITE) && (iint->flags & IMA_DIGSIG))
234                 rc = -EACCES;
235 out:
236         mutex_unlock(&inode->i_mutex);
237         kfree(xattr_value);
238         if ((rc && must_appraise) && (ima_appraise & IMA_APPRAISE_ENFORCE))
239                 return -EACCES;
240         return 0;
241 }
242
243 /**
244  * ima_file_mmap - based on policy, collect/store measurement.
245  * @file: pointer to the file to be measured (May be NULL)
246  * @prot: contains the protection that will be applied by the kernel.
247  *
248  * Measure files being mmapped executable based on the ima_must_measure()
249  * policy decision.
250  *
251  * On success return 0.  On integrity appraisal error, assuming the file
252  * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
253  */
254 int ima_file_mmap(struct file *file, unsigned long prot)
255 {
256         if (file && (prot & PROT_EXEC))
257                 return process_measurement(file, MAY_EXEC, MMAP_CHECK, 0);
258         return 0;
259 }
260
261 /**
262  * ima_bprm_check - based on policy, collect/store measurement.
263  * @bprm: contains the linux_binprm structure
264  *
265  * The OS protects against an executable file, already open for write,
266  * from being executed in deny_write_access() and an executable file,
267  * already open for execute, from being modified in get_write_access().
268  * So we can be certain that what we verify and measure here is actually
269  * what is being executed.
270  *
271  * On success return 0.  On integrity appraisal error, assuming the file
272  * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
273  */
274 int ima_bprm_check(struct linux_binprm *bprm)
275 {
276         return process_measurement(bprm->file, MAY_EXEC, BPRM_CHECK, 0);
277 }
278
279 /**
280  * ima_path_check - based on policy, collect/store measurement.
281  * @file: pointer to the file to be measured
282  * @mask: contains MAY_READ, MAY_WRITE or MAY_EXECUTE
283  *
284  * Measure files based on the ima_must_measure() policy decision.
285  *
286  * On success return 0.  On integrity appraisal error, assuming the file
287  * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
288  */
289 int ima_file_check(struct file *file, int mask, int opened)
290 {
291         ima_rdwr_violation_check(file);
292         return process_measurement(file,
293                                    mask & (MAY_READ | MAY_WRITE | MAY_EXEC),
294                                    FILE_CHECK, opened);
295 }
296 EXPORT_SYMBOL_GPL(ima_file_check);
297
298 /**
299  * ima_module_check - based on policy, collect/store/appraise measurement.
300  * @file: pointer to the file to be measured/appraised
301  *
302  * Measure/appraise kernel modules based on policy.
303  *
304  * On success return 0.  On integrity appraisal error, assuming the file
305  * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
306  */
307 int ima_module_check(struct file *file)
308 {
309         if (!file) {
310 #ifndef CONFIG_MODULE_SIG_FORCE
311                 if ((ima_appraise & IMA_APPRAISE_MODULES) &&
312                     (ima_appraise & IMA_APPRAISE_ENFORCE))
313                         return -EACCES; /* INTEGRITY_UNKNOWN */
314 #endif
315                 return 0;       /* We rely on module signature checking */
316         }
317         return process_measurement(file, MAY_EXEC, MODULE_CHECK, 0);
318 }
319
320 int ima_fw_from_file(struct file *file, char *buf, size_t size)
321 {
322         if (!file) {
323                 if ((ima_appraise & IMA_APPRAISE_FIRMWARE) &&
324                     (ima_appraise & IMA_APPRAISE_ENFORCE))
325                         return -EACCES; /* INTEGRITY_UNKNOWN */
326                 return 0;
327         }
328         return process_measurement(file, MAY_EXEC, FIRMWARE_CHECK, 0);
329 }
330
331 static int __init init_ima(void)
332 {
333         int error;
334
335         hash_setup(CONFIG_IMA_DEFAULT_HASH);
336         error = ima_init();
337         if (!error)
338                 ima_initialized = 1;
339         return error;
340 }
341
342 late_initcall(init_ima);        /* Start IMA after the TPM is available */
343
344 MODULE_DESCRIPTION("Integrity Measurement Architecture");
345 MODULE_LICENSE("GPL");