Integrity: IMA file free imbalance
[linux-2.6/linux-2.6-openrd.git] / security / integrity / ima / ima_iint.c
blob1f035e8d29c7affa6045e3ea3de29f13a5345464
1 /*
2 * Copyright (C) 2008 IBM Corporation
4 * Authors:
5 * Mimi Zohar <zohar@us.ibm.com>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation, version 2 of the
10 * License.
12 * File: ima_iint.c
13 * - implements the IMA hooks: ima_inode_alloc, ima_inode_free
14 * - cache integrity information associated with an inode
15 * using a radix tree.
17 #include <linux/module.h>
18 #include <linux/spinlock.h>
19 #include <linux/radix-tree.h>
20 #include "ima.h"
22 #define ima_iint_delete ima_inode_free
24 RADIX_TREE(ima_iint_store, GFP_ATOMIC);
25 DEFINE_SPINLOCK(ima_iint_lock);
27 static struct kmem_cache *iint_cache __read_mostly;
29 /* ima_iint_find_get - return the iint associated with an inode
31 * ima_iint_find_get gets a reference to the iint. Caller must
32 * remember to put the iint reference.
34 struct ima_iint_cache *ima_iint_find_get(struct inode *inode)
36 struct ima_iint_cache *iint;
38 rcu_read_lock();
39 iint = radix_tree_lookup(&ima_iint_store, (unsigned long)inode);
40 if (!iint)
41 goto out;
42 kref_get(&iint->refcount);
43 out:
44 rcu_read_unlock();
45 return iint;
48 /* Allocate memory for the iint associated with the inode
49 * from the iint_cache slab, initialize the iint, and
50 * insert it into the radix tree.
52 * On success return a pointer to the iint; on failure return NULL.
54 struct ima_iint_cache *ima_iint_insert(struct inode *inode)
56 struct ima_iint_cache *iint = NULL;
57 int rc = 0;
59 if (!ima_initialized)
60 return iint;
61 iint = kmem_cache_alloc(iint_cache, GFP_KERNEL);
62 if (!iint)
63 return iint;
65 rc = radix_tree_preload(GFP_KERNEL);
66 if (rc < 0)
67 goto out;
69 spin_lock(&ima_iint_lock);
70 rc = radix_tree_insert(&ima_iint_store, (unsigned long)inode, iint);
71 spin_unlock(&ima_iint_lock);
72 out:
73 if (rc < 0) {
74 kmem_cache_free(iint_cache, iint);
75 if (rc == -EEXIST) {
76 iint = radix_tree_lookup(&ima_iint_store,
77 (unsigned long)inode);
78 } else
79 iint = NULL;
81 radix_tree_preload_end();
82 return iint;
85 /**
86 * ima_inode_alloc - allocate an iint associated with an inode
87 * @inode: pointer to the inode
89 * Return 0 on success, 1 on failure.
91 int ima_inode_alloc(struct inode *inode)
93 struct ima_iint_cache *iint;
95 if (!ima_initialized)
96 return 0;
98 iint = ima_iint_insert(inode);
99 if (!iint)
100 return 1;
101 return 0;
104 /* ima_iint_find_insert_get - get the iint associated with an inode
106 * Most insertions are done at inode_alloc, except those allocated
107 * before late_initcall. When the iint does not exist, allocate it,
108 * initialize and insert it, and increment the iint refcount.
110 * (Can't initialize at security_initcall before any inodes are
111 * allocated, got to wait at least until proc_init.)
113 * Return the iint.
115 struct ima_iint_cache *ima_iint_find_insert_get(struct inode *inode)
117 struct ima_iint_cache *iint = NULL;
119 iint = ima_iint_find_get(inode);
120 if (iint)
121 return iint;
123 iint = ima_iint_insert(inode);
124 if (iint)
125 kref_get(&iint->refcount);
127 return iint;
129 EXPORT_SYMBOL_GPL(ima_iint_find_insert_get);
131 /* iint_free - called when the iint refcount goes to zero */
132 void iint_free(struct kref *kref)
134 struct ima_iint_cache *iint = container_of(kref, struct ima_iint_cache,
135 refcount);
136 iint->version = 0;
137 iint->flags = 0UL;
138 if (iint->readcount != 0) {
139 printk(KERN_INFO "%s: readcount: %ld\n", __FUNCTION__,
140 iint->readcount);
141 iint->readcount = 0;
143 if (iint->writecount != 0) {
144 printk(KERN_INFO "%s: writecount: %ld\n", __FUNCTION__,
145 iint->writecount);
146 iint->writecount = 0;
148 if (iint->opencount != 0) {
149 printk(KERN_INFO "%s: opencount: %ld\n", __FUNCTION__,
150 iint->opencount);
151 iint->opencount = 0;
153 kref_set(&iint->refcount, 1);
154 kmem_cache_free(iint_cache, iint);
157 void iint_rcu_free(struct rcu_head *rcu_head)
159 struct ima_iint_cache *iint = container_of(rcu_head,
160 struct ima_iint_cache, rcu);
161 kref_put(&iint->refcount, iint_free);
165 * ima_iint_delete - called on integrity_inode_free
166 * @inode: pointer to the inode
168 * Free the integrity information(iint) associated with an inode.
170 void ima_iint_delete(struct inode *inode)
172 struct ima_iint_cache *iint;
174 if (!ima_initialized)
175 return;
176 spin_lock(&ima_iint_lock);
177 iint = radix_tree_delete(&ima_iint_store, (unsigned long)inode);
178 spin_unlock(&ima_iint_lock);
179 if (iint)
180 call_rcu(&iint->rcu, iint_rcu_free);
183 static void init_once(void *foo)
185 struct ima_iint_cache *iint = foo;
187 memset(iint, 0, sizeof *iint);
188 iint->version = 0;
189 iint->flags = 0UL;
190 mutex_init(&iint->mutex);
191 iint->readcount = 0;
192 iint->writecount = 0;
193 iint->opencount = 0;
194 kref_set(&iint->refcount, 1);
197 void ima_iintcache_init(void)
199 iint_cache =
200 kmem_cache_create("iint_cache", sizeof(struct ima_iint_cache), 0,
201 SLAB_PANIC, init_once);