2 * Copyright (C) 2008 IBM Corporation
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
13 * - implements the IMA hooks: ima_inode_alloc, ima_inode_free
14 * - cache integrity information associated with an inode
17 #include <linux/module.h>
18 #include <linux/spinlock.h>
19 #include <linux/radix-tree.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
;
39 iint
= radix_tree_lookup(&ima_iint_store
, (unsigned long)inode
);
42 kref_get(&iint
->refcount
);
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
;
61 iint
= kmem_cache_alloc(iint_cache
, GFP_KERNEL
);
65 rc
= radix_tree_preload(GFP_KERNEL
);
69 spin_lock(&ima_iint_lock
);
70 rc
= radix_tree_insert(&ima_iint_store
, (unsigned long)inode
, iint
);
71 spin_unlock(&ima_iint_lock
);
74 kmem_cache_free(iint_cache
, iint
);
76 spin_lock(&ima_iint_lock
);
77 iint
= radix_tree_lookup(&ima_iint_store
,
78 (unsigned long)inode
);
79 spin_unlock(&ima_iint_lock
);
83 radix_tree_preload_end();
88 * ima_inode_alloc - allocate an iint associated with an inode
89 * @inode: pointer to the inode
91 * Return 0 on success, 1 on failure.
93 int ima_inode_alloc(struct inode
*inode
)
95 struct ima_iint_cache
*iint
;
100 iint
= ima_iint_insert(inode
);
106 /* ima_iint_find_insert_get - get the iint associated with an inode
108 * Most insertions are done at inode_alloc, except those allocated
109 * before late_initcall. When the iint does not exist, allocate it,
110 * initialize and insert it, and increment the iint refcount.
112 * (Can't initialize at security_initcall before any inodes are
113 * allocated, got to wait at least until proc_init.)
117 struct ima_iint_cache
*ima_iint_find_insert_get(struct inode
*inode
)
119 struct ima_iint_cache
*iint
= NULL
;
121 iint
= ima_iint_find_get(inode
);
125 iint
= ima_iint_insert(inode
);
127 kref_get(&iint
->refcount
);
131 EXPORT_SYMBOL_GPL(ima_iint_find_insert_get
);
133 /* iint_free - called when the iint refcount goes to zero */
134 void iint_free(struct kref
*kref
)
136 struct ima_iint_cache
*iint
= container_of(kref
, struct ima_iint_cache
,
140 if (iint
->readcount
!= 0) {
141 printk(KERN_INFO
"%s: readcount: %ld\n", __FUNCTION__
,
145 if (iint
->writecount
!= 0) {
146 printk(KERN_INFO
"%s: writecount: %ld\n", __FUNCTION__
,
148 iint
->writecount
= 0;
150 if (iint
->opencount
!= 0) {
151 printk(KERN_INFO
"%s: opencount: %ld\n", __FUNCTION__
,
155 kref_set(&iint
->refcount
, 1);
156 kmem_cache_free(iint_cache
, iint
);
159 void iint_rcu_free(struct rcu_head
*rcu_head
)
161 struct ima_iint_cache
*iint
= container_of(rcu_head
,
162 struct ima_iint_cache
, rcu
);
163 kref_put(&iint
->refcount
, iint_free
);
167 * ima_iint_delete - called on integrity_inode_free
168 * @inode: pointer to the inode
170 * Free the integrity information(iint) associated with an inode.
172 void ima_iint_delete(struct inode
*inode
)
174 struct ima_iint_cache
*iint
;
176 if (!ima_initialized
)
178 spin_lock(&ima_iint_lock
);
179 iint
= radix_tree_delete(&ima_iint_store
, (unsigned long)inode
);
180 spin_unlock(&ima_iint_lock
);
182 call_rcu(&iint
->rcu
, iint_rcu_free
);
185 static void init_once(void *foo
)
187 struct ima_iint_cache
*iint
= foo
;
189 memset(iint
, 0, sizeof *iint
);
192 mutex_init(&iint
->mutex
);
194 iint
->writecount
= 0;
196 kref_set(&iint
->refcount
, 1);
199 void __init
ima_iintcache_init(void)
202 kmem_cache_create("iint_cache", sizeof(struct ima_iint_cache
), 0,
203 SLAB_PANIC
, init_once
);