blob: 39d012823f8454f16b617f88fa6d2ed437a31d80 [file] [log] [blame]
Tetsuo Handac3ef1502010-05-17 10:12:46 +09001/*
2 * security/tomoyo/memory.c
3 *
4 * Memory management functions for TOMOYO.
5 *
6 * Copyright (C) 2005-2010 NTT DATA CORPORATION
7 */
8
9#include <linux/hash.h>
10#include <linux/slab.h>
11#include "common.h"
12
13/**
14 * tomoyo_warn_oom - Print out of memory warning message.
15 *
16 * @function: Function's name.
17 */
18void tomoyo_warn_oom(const char *function)
19{
20 /* Reduce error messages. */
21 static pid_t tomoyo_last_pid;
22 const pid_t pid = current->pid;
23 if (tomoyo_last_pid != pid) {
24 printk(KERN_WARNING "ERROR: Out of memory at %s.\n",
25 function);
26 tomoyo_last_pid = pid;
27 }
28 if (!tomoyo_policy_loaded)
29 panic("MAC Initialization failed.\n");
30}
31
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/* Memory allocated for policy. */
38static atomic_t tomoyo_policy_memory_size;
39/* Quota for holding policy. */
40static unsigned int tomoyo_quota_for_policy;
41
42/**
43 * tomoyo_memory_ok - Check memory quota.
44 *
45 * @ptr: Pointer to allocated memory.
46 *
47 * Returns true on success, false otherwise.
48 *
49 * Returns true if @ptr is not NULL and quota not exceeded, false otherwise.
50 */
51bool tomoyo_memory_ok(void *ptr)
52{
53 size_t s = ptr ? ksize(ptr) : 0;
54 atomic_add(s, &tomoyo_policy_memory_size);
55 if (ptr && (!tomoyo_quota_for_policy ||
56 atomic_read(&tomoyo_policy_memory_size)
57 <= tomoyo_quota_for_policy)) {
58 memset(ptr, 0, s);
59 return true;
60 }
61 atomic_sub(s, &tomoyo_policy_memory_size);
62 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{
94 atomic_sub(ksize(ptr), &tomoyo_policy_memory_size);
95 kfree(ptr);
96}
97
Tetsuo Handa7c2ea222010-06-17 16:55:58 +090098/**
99 * tomoyo_get_group - Allocate memory for "struct tomoyo_path_group"/"struct tomoyo_number_group".
100 *
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900101 * @param: Pointer to "struct tomoyo_acl_param".
102 * @idx: Index number.
Tetsuo Handa7c2ea222010-06-17 16:55:58 +0900103 *
104 * Returns pointer to "struct tomoyo_group" on success, NULL otherwise.
105 */
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900106struct tomoyo_group *tomoyo_get_group(struct tomoyo_acl_param *param,
107 const u8 idx)
Tetsuo Handa7c2ea222010-06-17 16:55:58 +0900108{
109 struct tomoyo_group e = { };
110 struct tomoyo_group *group = NULL;
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900111 struct list_head *list;
112 const char *group_name = tomoyo_read_token(param);
Tetsuo Handa7c2ea222010-06-17 16:55:58 +0900113 bool found = false;
114 if (!tomoyo_correct_word(group_name) || idx >= TOMOYO_MAX_GROUP)
115 return NULL;
116 e.group_name = tomoyo_get_name(group_name);
117 if (!e.group_name)
118 return NULL;
119 if (mutex_lock_interruptible(&tomoyo_policy_lock))
120 goto out;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900121 list = &param->ns->group_list[idx];
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900122 list_for_each_entry(group, list, head.list) {
Tetsuo Handa7c2ea222010-06-17 16:55:58 +0900123 if (e.group_name != group->group_name)
124 continue;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900125 atomic_inc(&group->head.users);
Tetsuo Handa7c2ea222010-06-17 16:55:58 +0900126 found = true;
127 break;
128 }
129 if (!found) {
130 struct tomoyo_group *entry = tomoyo_commit_ok(&e, sizeof(e));
131 if (entry) {
132 INIT_LIST_HEAD(&entry->member_list);
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900133 atomic_set(&entry->head.users, 1);
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900134 list_add_tail_rcu(&entry->head.list, list);
Tetsuo Handa7c2ea222010-06-17 16:55:58 +0900135 group = entry;
136 found = true;
137 }
138 }
139 mutex_unlock(&tomoyo_policy_lock);
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900140out:
Tetsuo Handa7c2ea222010-06-17 16:55:58 +0900141 tomoyo_put_name(e.group_name);
142 return found ? group : NULL;
143}
144
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900145/*
146 * tomoyo_name_list is used for holding string data used by TOMOYO.
147 * Since same string data is likely used for multiple times (e.g.
148 * "/lib/libc-2.5.so"), TOMOYO shares string data in the form of
149 * "const struct tomoyo_path_info *".
150 */
151struct list_head tomoyo_name_list[TOMOYO_MAX_HASH];
152
153/**
154 * tomoyo_get_name - Allocate permanent memory for string data.
155 *
156 * @name: The string to store into the permernent memory.
157 *
158 * Returns pointer to "struct tomoyo_path_info" on success, NULL otherwise.
159 */
160const struct tomoyo_path_info *tomoyo_get_name(const char *name)
161{
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900162 struct tomoyo_name *ptr;
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900163 unsigned int hash;
164 int len;
165 int allocated_len;
166 struct list_head *head;
167
168 if (!name)
169 return NULL;
170 len = strlen(name) + 1;
171 hash = full_name_hash((const unsigned char *) name, len - 1);
172 head = &tomoyo_name_list[hash_long(hash, TOMOYO_HASH_BITS)];
173 if (mutex_lock_interruptible(&tomoyo_policy_lock))
174 return NULL;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900175 list_for_each_entry(ptr, head, head.list) {
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900176 if (hash != ptr->entry.hash || strcmp(name, ptr->entry.name))
177 continue;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900178 atomic_inc(&ptr->head.users);
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900179 goto out;
180 }
181 ptr = kzalloc(sizeof(*ptr) + len, GFP_NOFS);
182 allocated_len = ptr ? ksize(ptr) : 0;
183 if (!ptr || (tomoyo_quota_for_policy &&
184 atomic_read(&tomoyo_policy_memory_size) + allocated_len
185 > tomoyo_quota_for_policy)) {
186 kfree(ptr);
187 ptr = NULL;
188 tomoyo_warn_oom(__func__);
189 goto out;
190 }
191 atomic_add(allocated_len, &tomoyo_policy_memory_size);
192 ptr->entry.name = ((char *) ptr) + sizeof(*ptr);
193 memmove((char *) ptr->entry.name, name, len);
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900194 atomic_set(&ptr->head.users, 1);
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900195 tomoyo_fill_path_info(&ptr->entry);
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900196 list_add_tail(&ptr->head.list, head);
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900197 out:
198 mutex_unlock(&tomoyo_policy_lock);
199 return ptr ? &ptr->entry : NULL;
200}
201
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900202/* Initial namespace.*/
203struct tomoyo_policy_namespace tomoyo_kernel_namespace;
204
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900205/**
206 * tomoyo_mm_init - Initialize mm related code.
207 */
208void __init tomoyo_mm_init(void)
209{
210 int idx;
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900211 for (idx = 0; idx < TOMOYO_MAX_HASH; idx++)
212 INIT_LIST_HEAD(&tomoyo_name_list[idx]);
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900213 tomoyo_kernel_namespace.name = "<kernel>";
214 tomoyo_init_policy_namespace(&tomoyo_kernel_namespace);
215 tomoyo_kernel_domain.ns = &tomoyo_kernel_namespace;
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900216 INIT_LIST_HEAD(&tomoyo_kernel_domain.acl_info_list);
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900217 tomoyo_kernel_domain.domainname = tomoyo_get_name("<kernel>");
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900218 list_add_tail_rcu(&tomoyo_kernel_domain.list, &tomoyo_domain_list);
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900219#if 0
220 /* Will be replaced with tomoyo_load_builtin_policy(). */
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900221 {
222 /* Load built-in policy. */
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900223 tomoyo_write_transition_control("/sbin/hotplug", false,
224 TOMOYO_TRANSITION_CONTROL_INITIALIZE);
225 tomoyo_write_transition_control("/sbin/modprobe", false,
226 TOMOYO_TRANSITION_CONTROL_INITIALIZE);
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900227 }
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900228#endif
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900229}
230
231
232/* Memory allocated for query lists. */
233unsigned int tomoyo_query_memory_size;
234/* Quota for holding query lists. */
235unsigned int tomoyo_quota_for_query;
236
237/**
238 * tomoyo_read_memory_counter - Check for memory usage in bytes.
239 *
240 * @head: Pointer to "struct tomoyo_io_buffer".
241 *
242 * Returns memory usage.
243 */
Tetsuo Handa8fbe71f2010-06-16 16:29:59 +0900244void tomoyo_read_memory_counter(struct tomoyo_io_buffer *head)
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900245{
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900246 if (!head->r.eof) {
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900247 const unsigned int policy
248 = atomic_read(&tomoyo_policy_memory_size);
249 const unsigned int query = tomoyo_query_memory_size;
250 char buffer[64];
251
252 memset(buffer, 0, sizeof(buffer));
253 if (tomoyo_quota_for_policy)
254 snprintf(buffer, sizeof(buffer) - 1,
255 " (Quota: %10u)",
256 tomoyo_quota_for_policy);
257 else
258 buffer[0] = '\0';
259 tomoyo_io_printf(head, "Policy: %10u%s\n", policy,
260 buffer);
261 if (tomoyo_quota_for_query)
262 snprintf(buffer, sizeof(buffer) - 1,
263 " (Quota: %10u)",
264 tomoyo_quota_for_query);
265 else
266 buffer[0] = '\0';
267 tomoyo_io_printf(head, "Query lists: %10u%s\n", query,
268 buffer);
269 tomoyo_io_printf(head, "Total: %10u\n", policy + query);
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900270 head->r.eof = true;
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900271 }
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900272}
273
274/**
275 * tomoyo_write_memory_quota - Set memory quota.
276 *
277 * @head: Pointer to "struct tomoyo_io_buffer".
278 *
279 * Returns 0.
280 */
281int tomoyo_write_memory_quota(struct tomoyo_io_buffer *head)
282{
283 char *data = head->write_buf;
284 unsigned int size;
285
286 if (sscanf(data, "Policy: %u", &size) == 1)
287 tomoyo_quota_for_policy = size;
288 else if (sscanf(data, "Query lists: %u", &size) == 1)
289 tomoyo_quota_for_query = size;
290 return 0;
291}