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/slab.h>
18 #include <linux/module.h>
19 #include <linux/spinlock.h>
20 #include <linux/radix-tree.h>
23 RADIX_TREE(ima_iint_store
, GFP_ATOMIC
);
24 DEFINE_SPINLOCK(ima_iint_lock
);
25 static struct kmem_cache
*iint_cache __read_mostly
;
27 int iint_initialized
= 0;
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
);
49 * ima_inode_alloc - allocate an iint associated with an inode
50 * @inode: pointer to the inode
52 int ima_inode_alloc(struct inode
*inode
)
54 struct ima_iint_cache
*iint
= NULL
;
57 iint
= kmem_cache_alloc(iint_cache
, GFP_NOFS
);
61 rc
= radix_tree_preload(GFP_NOFS
);
65 spin_lock(&ima_iint_lock
);
66 rc
= radix_tree_insert(&ima_iint_store
, (unsigned long)inode
, iint
);
67 spin_unlock(&ima_iint_lock
);
68 radix_tree_preload_end();
71 kmem_cache_free(iint_cache
, iint
);
76 /* iint_free - called when the iint refcount goes to zero */
77 void iint_free(struct kref
*kref
)
79 struct ima_iint_cache
*iint
= container_of(kref
, struct ima_iint_cache
,
83 if (iint
->readcount
!= 0) {
84 printk(KERN_INFO
"%s: readcount: %ld\n", __func__
,
88 if (iint
->writecount
!= 0) {
89 printk(KERN_INFO
"%s: writecount: %ld\n", __func__
,
93 if (iint
->opencount
!= 0) {
94 printk(KERN_INFO
"%s: opencount: %ld\n", __func__
,
98 kref_init(&iint
->refcount
);
99 kmem_cache_free(iint_cache
, iint
);
102 void iint_rcu_free(struct rcu_head
*rcu_head
)
104 struct ima_iint_cache
*iint
= container_of(rcu_head
,
105 struct ima_iint_cache
, rcu
);
106 kref_put(&iint
->refcount
, iint_free
);
110 * ima_inode_free - called on security_inode_free
111 * @inode: pointer to the inode
113 * Free the integrity information(iint) associated with an inode.
115 void ima_inode_free(struct inode
*inode
)
117 struct ima_iint_cache
*iint
;
119 spin_lock(&ima_iint_lock
);
120 iint
= radix_tree_delete(&ima_iint_store
, (unsigned long)inode
);
121 spin_unlock(&ima_iint_lock
);
123 call_rcu(&iint
->rcu
, iint_rcu_free
);
126 static void init_once(void *foo
)
128 struct ima_iint_cache
*iint
= foo
;
130 memset(iint
, 0, sizeof *iint
);
133 mutex_init(&iint
->mutex
);
135 iint
->writecount
= 0;
137 kref_init(&iint
->refcount
);
140 static int __init
ima_iintcache_init(void)
143 kmem_cache_create("iint_cache", sizeof(struct ima_iint_cache
), 0,
144 SLAB_PANIC
, init_once
);
145 iint_initialized
= 1;
148 security_initcall(ima_iintcache_init
);