IMA: move read counter into struct inode
[pandora-kernel.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
26 #include "ima.h"
27
28 int ima_initialized;
29
30 char *ima_hash = "sha1";
31 static int __init hash_setup(char *str)
32 {
33         if (strncmp(str, "md5", 3) == 0)
34                 ima_hash = "md5";
35         return 1;
36 }
37 __setup("ima_hash=", hash_setup);
38
39 struct ima_imbalance {
40         struct hlist_node node;
41         unsigned long fsmagic;
42 };
43
44 /*
45  * ima_limit_imbalance - emit one imbalance message per filesystem type
46  *
47  * Maintain list of filesystem types that do not measure files properly.
48  * Return false if unknown, true if known.
49  */
50 static bool ima_limit_imbalance(struct file *file)
51 {
52         static DEFINE_SPINLOCK(ima_imbalance_lock);
53         static HLIST_HEAD(ima_imbalance_list);
54
55         struct super_block *sb = file->f_dentry->d_sb;
56         struct ima_imbalance *entry;
57         struct hlist_node *node;
58         bool found = false;
59
60         rcu_read_lock();
61         hlist_for_each_entry_rcu(entry, node, &ima_imbalance_list, node) {
62                 if (entry->fsmagic == sb->s_magic) {
63                         found = true;
64                         break;
65                 }
66         }
67         rcu_read_unlock();
68         if (found)
69                 goto out;
70
71         entry = kmalloc(sizeof(*entry), GFP_NOFS);
72         if (!entry)
73                 goto out;
74         entry->fsmagic = sb->s_magic;
75         spin_lock(&ima_imbalance_lock);
76         /*
77          * we could have raced and something else might have added this fs
78          * to the list, but we don't really care
79          */
80         hlist_add_head_rcu(&entry->node, &ima_imbalance_list);
81         spin_unlock(&ima_imbalance_lock);
82         printk(KERN_INFO "IMA: unmeasured files on fsmagic: %lX\n",
83                entry->fsmagic);
84 out:
85         return found;
86 }
87
88 /*
89  * ima_counts_get - increment file counts
90  *
91  * Maintain read/write counters for all files, but only
92  * invalidate the PCR for measured files:
93  *      - Opening a file for write when already open for read,
94  *        results in a time of measure, time of use (ToMToU) error.
95  *      - Opening a file for read when already open for write,
96  *        could result in a file measurement error.
97  *
98  */
99 void ima_counts_get(struct file *file)
100 {
101         struct dentry *dentry = file->f_path.dentry;
102         struct inode *inode = dentry->d_inode;
103         fmode_t mode = file->f_mode;
104         int rc;
105         bool send_tomtou = false, send_writers = false;
106
107         if (!S_ISREG(inode->i_mode))
108                 return;
109
110         spin_lock(&inode->i_lock);
111
112         if (!ima_initialized)
113                 goto out;
114
115         rc = ima_must_measure(NULL, inode, MAY_READ, FILE_CHECK);
116         if (rc < 0)
117                 goto out;
118
119         if (mode & FMODE_WRITE) {
120                 if (inode->i_readcount)
121                         send_tomtou = true;
122                 goto out;
123         }
124
125         if (atomic_read(&inode->i_writecount) > 0)
126                 send_writers = true;
127 out:
128         /* remember the vfs deals with i_writecount */
129         if ((mode & (FMODE_READ | FMODE_WRITE)) == FMODE_READ)
130                 inode->i_readcount++;
131         spin_unlock(&inode->i_lock);
132
133         if (send_tomtou)
134                 ima_add_violation(inode, dentry->d_name.name, "invalid_pcr",
135                                   "ToMToU");
136         if (send_writers)
137                 ima_add_violation(inode, dentry->d_name.name, "invalid_pcr",
138                                   "open_writers");
139 }
140
141 /*
142  * Decrement ima counts
143  */
144 static void ima_dec_counts(struct ima_iint_cache *iint, struct inode *inode,
145                            struct file *file)
146 {
147         mode_t mode = file->f_mode;
148         bool dump = false;
149
150         BUG_ON(!mutex_is_locked(&iint->mutex));
151         assert_spin_locked(&inode->i_lock);
152
153         if ((mode & (FMODE_READ | FMODE_WRITE)) == FMODE_READ) {
154                 if (unlikely(inode->i_readcount == 0))
155                         dump = true;
156                 inode->i_readcount--;
157         }
158         if (mode & FMODE_WRITE) {
159                 if (atomic_read(&inode->i_writecount) <= 0)
160                         dump = true;
161                 if (atomic_read(&inode->i_writecount) == 1 &&
162                     iint->version != inode->i_version)
163                         iint->flags &= ~IMA_MEASURED;
164         }
165
166         if (dump && !ima_limit_imbalance(file)) {
167                 printk(KERN_INFO "%s: open/free imbalance (r:%u)\n",
168                        __func__, inode->i_readcount);
169                 dump_stack();
170         }
171 }
172
173 /**
174  * ima_file_free - called on __fput()
175  * @file: pointer to file structure being freed
176  *
177  * Flag files that changed, based on i_version;
178  * and decrement the iint readcount/writecount.
179  */
180 void ima_file_free(struct file *file)
181 {
182         struct inode *inode = file->f_dentry->d_inode;
183         struct ima_iint_cache *iint;
184
185         if (!iint_initialized || !S_ISREG(inode->i_mode))
186                 return;
187         iint = ima_iint_find_get(inode);
188         if (!iint)
189                 return;
190
191         mutex_lock(&iint->mutex);
192         spin_lock(&inode->i_lock);
193
194         ima_dec_counts(iint, inode, file);
195
196         spin_unlock(&inode->i_lock);
197         mutex_unlock(&iint->mutex);
198         kref_put(&iint->refcount, iint_free);
199 }
200
201 static int process_measurement(struct file *file, const unsigned char *filename,
202                                int mask, int function)
203 {
204         struct inode *inode = file->f_dentry->d_inode;
205         struct ima_iint_cache *iint;
206         int rc = 0;
207
208         if (!ima_initialized || !S_ISREG(inode->i_mode))
209                 return 0;
210         iint = ima_iint_find_get(inode);
211         if (!iint)
212                 return -ENOMEM;
213
214         mutex_lock(&iint->mutex);
215         rc = ima_must_measure(iint, inode, mask, function);
216         if (rc != 0)
217                 goto out;
218
219         rc = ima_collect_measurement(iint, file);
220         if (!rc)
221                 ima_store_measurement(iint, file, filename);
222 out:
223         mutex_unlock(&iint->mutex);
224         kref_put(&iint->refcount, iint_free);
225         return rc;
226 }
227
228 /**
229  * ima_file_mmap - based on policy, collect/store measurement.
230  * @file: pointer to the file to be measured (May be NULL)
231  * @prot: contains the protection that will be applied by the kernel.
232  *
233  * Measure files being mmapped executable based on the ima_must_measure()
234  * policy decision.
235  *
236  * Return 0 on success, an error code on failure.
237  * (Based on the results of appraise_measurement().)
238  */
239 int ima_file_mmap(struct file *file, unsigned long prot)
240 {
241         int rc;
242
243         if (!file)
244                 return 0;
245         if (prot & PROT_EXEC)
246                 rc = process_measurement(file, file->f_dentry->d_name.name,
247                                          MAY_EXEC, FILE_MMAP);
248         return 0;
249 }
250
251 /**
252  * ima_bprm_check - based on policy, collect/store measurement.
253  * @bprm: contains the linux_binprm structure
254  *
255  * The OS protects against an executable file, already open for write,
256  * from being executed in deny_write_access() and an executable file,
257  * already open for execute, from being modified in get_write_access().
258  * So we can be certain that what we verify and measure here is actually
259  * what is being executed.
260  *
261  * Return 0 on success, an error code on failure.
262  * (Based on the results of appraise_measurement().)
263  */
264 int ima_bprm_check(struct linux_binprm *bprm)
265 {
266         int rc;
267
268         rc = process_measurement(bprm->file, bprm->filename,
269                                  MAY_EXEC, BPRM_CHECK);
270         return 0;
271 }
272
273 /**
274  * ima_path_check - based on policy, collect/store measurement.
275  * @file: pointer to the file to be measured
276  * @mask: contains MAY_READ, MAY_WRITE or MAY_EXECUTE
277  *
278  * Measure files based on the ima_must_measure() policy decision.
279  *
280  * Always return 0 and audit dentry_open failures.
281  * (Return code will be based upon measurement appraisal.)
282  */
283 int ima_file_check(struct file *file, int mask)
284 {
285         int rc;
286
287         rc = process_measurement(file, file->f_dentry->d_name.name,
288                                  mask & (MAY_READ | MAY_WRITE | MAY_EXEC),
289                                  FILE_CHECK);
290         return 0;
291 }
292 EXPORT_SYMBOL_GPL(ima_file_check);
293
294 static int __init init_ima(void)
295 {
296         int error;
297
298         error = ima_init();
299         ima_initialized = 1;
300         return error;
301 }
302
303 static void __exit cleanup_ima(void)
304 {
305         ima_cleanup();
306 }
307
308 late_initcall(init_ima);        /* Start IMA after the TPM is available */
309
310 MODULE_DESCRIPTION("Integrity Measurement Architecture");
311 MODULE_LICENSE("GPL");