ima_iint.c 4.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Copyright (C) 2008 IBM Corporation
 *
 * Authors:
 * Mimi Zohar <zohar@us.ibm.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation, version 2 of the
 * License.
 *
 * File: ima_iint.c
 * 	- implements the IMA hooks: ima_inode_alloc, ima_inode_free
 *	- cache integrity information associated with an inode
15
 *	  using a rbtree tree.
16
 */
17
#include <linux/slab.h>
18 19
#include <linux/module.h>
#include <linux/spinlock.h>
20
#include <linux/rbtree.h>
21 22
#include "ima.h"

23 24
static struct rb_root ima_iint_tree = RB_ROOT;
static DEFINE_SPINLOCK(ima_iint_lock);
25 26
static struct kmem_cache *iint_cache __read_mostly;

M
Mimi Zohar 已提交
27 28
int iint_initialized = 0;

29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
/*
 * __ima_iint_find - return the iint associated with an inode
 */
static struct ima_iint_cache *__ima_iint_find(struct inode *inode)
{
	struct ima_iint_cache *iint;
	struct rb_node *n = ima_iint_tree.rb_node;

	assert_spin_locked(&ima_iint_lock);

	while (n) {
		iint = rb_entry(n, struct ima_iint_cache, rb_node);

		if (inode < iint->inode)
			n = n->rb_left;
		else if (inode > iint->inode)
			n = n->rb_right;
		else
			break;
	}
	if (!n)
		return NULL;

	return iint;
}

/*
 * ima_iint_find_get - return the iint associated with an inode
57 58 59 60 61 62 63 64
 *
 * ima_iint_find_get gets a reference to the iint. Caller must
 * remember to put the iint reference.
 */
struct ima_iint_cache *ima_iint_find_get(struct inode *inode)
{
	struct ima_iint_cache *iint;

65 66 67 68 69 70
	spin_lock(&ima_iint_lock);
	iint = __ima_iint_find(inode);
	if (iint)
		kref_get(&iint->refcount);
	spin_unlock(&ima_iint_lock);

71 72 73
	return iint;
}

74 75 76
/**
 * ima_inode_alloc - allocate an iint associated with an inode
 * @inode: pointer to the inode
77
 */
78
int ima_inode_alloc(struct inode *inode)
79
{
80 81 82 83
	struct rb_node **p;
	struct rb_node *new_node, *parent = NULL;
	struct ima_iint_cache *new_iint, *test_iint;
	int rc;
84

85 86
	new_iint = kmem_cache_alloc(iint_cache, GFP_NOFS);
	if (!new_iint)
87
		return -ENOMEM;
88

89 90
	new_iint->inode = inode;
	new_node = &new_iint->rb_node;
91 92

	spin_lock(&ima_iint_lock);
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110

	p = &ima_iint_tree.rb_node;
	while (*p) {
		parent = *p;
		test_iint = rb_entry(parent, struct ima_iint_cache, rb_node);

		rc = -EEXIST;
		if (inode < test_iint->inode)
			p = &(*p)->rb_left;
		else if (inode > test_iint->inode)
			p = &(*p)->rb_right;
		else
			goto out_err;
	}

	rb_link_node(new_node, parent, p);
	rb_insert_color(new_node, &ima_iint_tree);

111 112
	spin_unlock(&ima_iint_lock);

113 114 115 116
	return 0;
out_err:
	spin_unlock(&ima_iint_lock);
	kref_put(&new_iint->refcount, iint_free);
117
	return rc;
118 119 120 121 122 123 124 125 126
}

/* iint_free - called when the iint refcount goes to zero */
void iint_free(struct kref *kref)
{
	struct ima_iint_cache *iint = container_of(kref, struct ima_iint_cache,
						   refcount);
	iint->version = 0;
	iint->flags = 0UL;
M
Mimi Zohar 已提交
127
	if (iint->readcount != 0) {
128
		printk(KERN_INFO "%s: readcount: %u\n", __func__,
M
Mimi Zohar 已提交
129 130 131 132
		       iint->readcount);
		iint->readcount = 0;
	}
	if (iint->writecount != 0) {
133
		printk(KERN_INFO "%s: writecount: %u\n", __func__,
M
Mimi Zohar 已提交
134 135 136
		       iint->writecount);
		iint->writecount = 0;
	}
N
NeilBrown 已提交
137
	kref_init(&iint->refcount);
138 139 140 141
	kmem_cache_free(iint_cache, iint);
}

/**
142
 * ima_inode_free - called on security_inode_free
143 144 145 146
 * @inode: pointer to the inode
 *
 * Free the integrity information(iint) associated with an inode.
 */
147
void ima_inode_free(struct inode *inode)
148 149 150 151
{
	struct ima_iint_cache *iint;

	spin_lock(&ima_iint_lock);
152 153 154
	iint = __ima_iint_find(inode);
	if (iint)
		rb_erase(&iint->rb_node, &ima_iint_tree);
155 156
	spin_unlock(&ima_iint_lock);
	if (iint)
157
		kref_put(&iint->refcount, iint_free);
158 159 160 161 162 163 164 165 166 167 168 169
}

static void init_once(void *foo)
{
	struct ima_iint_cache *iint = foo;

	memset(iint, 0, sizeof *iint);
	iint->version = 0;
	iint->flags = 0UL;
	mutex_init(&iint->mutex);
	iint->readcount = 0;
	iint->writecount = 0;
N
NeilBrown 已提交
170
	kref_init(&iint->refcount);
171 172
}

173
static int __init ima_iintcache_init(void)
174 175 176 177
{
	iint_cache =
	    kmem_cache_create("iint_cache", sizeof(struct ima_iint_cache), 0,
			      SLAB_PANIC, init_once);
M
Mimi Zohar 已提交
178
	iint_initialized = 1;
179
	return 0;
180
}
181
security_initcall(ima_iintcache_init);