blob: 277b9ade44081e85edc1ac8f1650e22e3def6b79 [file] [log] [blame]
Tetsuo Handac3ef1502010-05-17 10:12:46 +09001/*
2 * security/tomoyo/memory.c
3 *
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +09004 * Copyright (C) 2005-2011 NTT DATA CORPORATION
Tetsuo Handac3ef1502010-05-17 10:12:46 +09005 */
6
7#include <linux/hash.h>
8#include <linux/slab.h>
9#include "common.h"
10
11/**
12 * tomoyo_warn_oom - Print out of memory warning message.
13 *
14 * @function: Function's name.
15 */
16void tomoyo_warn_oom(const char *function)
17{
18 /* Reduce error messages. */
19 static pid_t tomoyo_last_pid;
20 const pid_t pid = current->pid;
21 if (tomoyo_last_pid != pid) {
22 printk(KERN_WARNING "ERROR: Out of memory at %s.\n",
23 function);
24 tomoyo_last_pid = pid;
25 }
26 if (!tomoyo_policy_loaded)
27 panic("MAC Initialization failed.\n");
28}
29
Tetsuo Handab22b8b92011-06-26 23:21:50 +090030/* Lock for protecting tomoyo_memory_used. */
31static DEFINE_SPINLOCK(tomoyo_policy_memory_lock);
Tetsuo Handaeadd99c2011-06-26 23:18:58 +090032/* Memoy currently used by policy/audit log/query. */
33unsigned int tomoyo_memory_used[TOMOYO_MAX_MEMORY_STAT];
34/* Memory quota for "policy"/"audit log"/"query". */
35unsigned int tomoyo_memory_quota[TOMOYO_MAX_MEMORY_STAT];
36
Tetsuo Handac3ef1502010-05-17 10:12:46 +090037/**
38 * tomoyo_memory_ok - Check memory quota.
39 *
40 * @ptr: Pointer to allocated memory.
41 *
42 * Returns true on success, false otherwise.
43 *
44 * Returns true if @ptr is not NULL and quota not exceeded, false otherwise.
45 */
46bool tomoyo_memory_ok(void *ptr)
47{
Tetsuo Handab22b8b92011-06-26 23:21:50 +090048 if (ptr) {
49 const size_t s = ksize(ptr);
50 bool result;
51 spin_lock(&tomoyo_policy_memory_lock);
52 tomoyo_memory_used[TOMOYO_MEMORY_POLICY] += s;
53 result = !tomoyo_memory_quota[TOMOYO_MEMORY_POLICY] ||
54 tomoyo_memory_used[TOMOYO_MEMORY_POLICY] <=
55 tomoyo_memory_quota[TOMOYO_MEMORY_POLICY];
56 if (!result)
57 tomoyo_memory_used[TOMOYO_MEMORY_POLICY] -= s;
58 spin_unlock(&tomoyo_policy_memory_lock);
59 if (result)
60 return true;
Tetsuo Handac3ef1502010-05-17 10:12:46 +090061 }
Tetsuo Handac3ef1502010-05-17 10:12:46 +090062 tomoyo_warn_oom(__func__);
63 return false;
64}
65
66/**
67 * tomoyo_commit_ok - Check memory quota.
68 *
69 * @data: Data to copy from.
70 * @size: Size in byte.
71 *
72 * Returns pointer to allocated memory on success, NULL otherwise.
73 * @data is zero-cleared on success.
74 */
75void *tomoyo_commit_ok(void *data, const unsigned int size)
76{
77 void *ptr = kzalloc(size, GFP_NOFS);
78 if (tomoyo_memory_ok(ptr)) {
79 memmove(ptr, data, size);
80 memset(data, 0, size);
81 return ptr;
82 }
Xiaochen Wangcfc64fd2011-03-31 00:27:32 +090083 kfree(ptr);
Tetsuo Handac3ef1502010-05-17 10:12:46 +090084 return NULL;
85}
86
87/**
88 * tomoyo_memory_free - Free memory for elements.
89 *
90 * @ptr: Pointer to allocated memory.
91 */
92void tomoyo_memory_free(void *ptr)
93{
Tetsuo Handab22b8b92011-06-26 23:21:50 +090094 size_t s = ksize(ptr);
95 spin_lock(&tomoyo_policy_memory_lock);
96 tomoyo_memory_used[TOMOYO_MEMORY_POLICY] -= s;
97 spin_unlock(&tomoyo_policy_memory_lock);
Tetsuo Handac3ef1502010-05-17 10:12:46 +090098 kfree(ptr);
99}
100
Tetsuo Handa7c2ea222010-06-17 16:55:58 +0900101/**
102 * tomoyo_get_group - Allocate memory for "struct tomoyo_path_group"/"struct tomoyo_number_group".
103 *
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900104 * @param: Pointer to "struct tomoyo_acl_param".
105 * @idx: Index number.
Tetsuo Handa7c2ea222010-06-17 16:55:58 +0900106 *
107 * Returns pointer to "struct tomoyo_group" on success, NULL otherwise.
108 */
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900109struct tomoyo_group *tomoyo_get_group(struct tomoyo_acl_param *param,
110 const u8 idx)
Tetsuo Handa7c2ea222010-06-17 16:55:58 +0900111{
112 struct tomoyo_group e = { };
113 struct tomoyo_group *group = NULL;
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900114 struct list_head *list;
115 const char *group_name = tomoyo_read_token(param);
Tetsuo Handa7c2ea222010-06-17 16:55:58 +0900116 bool found = false;
117 if (!tomoyo_correct_word(group_name) || idx >= TOMOYO_MAX_GROUP)
118 return NULL;
119 e.group_name = tomoyo_get_name(group_name);
120 if (!e.group_name)
121 return NULL;
122 if (mutex_lock_interruptible(&tomoyo_policy_lock))
123 goto out;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900124 list = &param->ns->group_list[idx];
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900125 list_for_each_entry(group, list, head.list) {
Tetsuo Handaf9732ea2011-09-25 17:50:23 +0900126 if (e.group_name != group->group_name ||
127 atomic_read(&group->head.users) == TOMOYO_GC_IN_PROGRESS)
Tetsuo Handa7c2ea222010-06-17 16:55:58 +0900128 continue;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900129 atomic_inc(&group->head.users);
Tetsuo Handa7c2ea222010-06-17 16:55:58 +0900130 found = true;
131 break;
132 }
133 if (!found) {
134 struct tomoyo_group *entry = tomoyo_commit_ok(&e, sizeof(e));
135 if (entry) {
136 INIT_LIST_HEAD(&entry->member_list);
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900137 atomic_set(&entry->head.users, 1);
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900138 list_add_tail_rcu(&entry->head.list, list);
Tetsuo Handa7c2ea222010-06-17 16:55:58 +0900139 group = entry;
140 found = true;
141 }
142 }
143 mutex_unlock(&tomoyo_policy_lock);
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900144out:
Tetsuo Handa7c2ea222010-06-17 16:55:58 +0900145 tomoyo_put_name(e.group_name);
146 return found ? group : NULL;
147}
148
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900149/*
150 * tomoyo_name_list is used for holding string data used by TOMOYO.
151 * Since same string data is likely used for multiple times (e.g.
152 * "/lib/libc-2.5.so"), TOMOYO shares string data in the form of
153 * "const struct tomoyo_path_info *".
154 */
155struct list_head tomoyo_name_list[TOMOYO_MAX_HASH];
156
157/**
158 * tomoyo_get_name - Allocate permanent memory for string data.
159 *
160 * @name: The string to store into the permernent memory.
161 *
162 * Returns pointer to "struct tomoyo_path_info" on success, NULL otherwise.
163 */
164const struct tomoyo_path_info *tomoyo_get_name(const char *name)
165{
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900166 struct tomoyo_name *ptr;
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900167 unsigned int hash;
168 int len;
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900169 struct list_head *head;
170
171 if (!name)
172 return NULL;
173 len = strlen(name) + 1;
174 hash = full_name_hash((const unsigned char *) name, len - 1);
175 head = &tomoyo_name_list[hash_long(hash, TOMOYO_HASH_BITS)];
176 if (mutex_lock_interruptible(&tomoyo_policy_lock))
177 return NULL;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900178 list_for_each_entry(ptr, head, head.list) {
Tetsuo Handaf9732ea2011-09-25 17:50:23 +0900179 if (hash != ptr->entry.hash || strcmp(name, ptr->entry.name) ||
180 atomic_read(&ptr->head.users) == TOMOYO_GC_IN_PROGRESS)
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900181 continue;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900182 atomic_inc(&ptr->head.users);
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900183 goto out;
184 }
185 ptr = kzalloc(sizeof(*ptr) + len, GFP_NOFS);
Tetsuo Handab22b8b92011-06-26 23:21:50 +0900186 if (tomoyo_memory_ok(ptr)) {
187 ptr->entry.name = ((char *) ptr) + sizeof(*ptr);
188 memmove((char *) ptr->entry.name, name, len);
189 atomic_set(&ptr->head.users, 1);
190 tomoyo_fill_path_info(&ptr->entry);
191 list_add_tail(&ptr->head.list, head);
192 } else {
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900193 kfree(ptr);
194 ptr = NULL;
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900195 }
Tetsuo Handab22b8b92011-06-26 23:21:50 +0900196out:
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900197 mutex_unlock(&tomoyo_policy_lock);
198 return ptr ? &ptr->entry : NULL;
199}
200
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900201/* Initial namespace.*/
202struct tomoyo_policy_namespace tomoyo_kernel_namespace;
203
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900204/**
205 * tomoyo_mm_init - Initialize mm related code.
206 */
207void __init tomoyo_mm_init(void)
208{
209 int idx;
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900210 for (idx = 0; idx < TOMOYO_MAX_HASH; idx++)
211 INIT_LIST_HEAD(&tomoyo_name_list[idx]);
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900212 tomoyo_kernel_namespace.name = "<kernel>";
213 tomoyo_init_policy_namespace(&tomoyo_kernel_namespace);
214 tomoyo_kernel_domain.ns = &tomoyo_kernel_namespace;
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900215 INIT_LIST_HEAD(&tomoyo_kernel_domain.acl_info_list);
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900216 tomoyo_kernel_domain.domainname = tomoyo_get_name("<kernel>");
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900217 list_add_tail_rcu(&tomoyo_kernel_domain.list, &tomoyo_domain_list);
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900218}