2 * security/tomoyo/memory.c
4 * Copyright (C) 2005-2011 NTT DATA CORPORATION
7 #include <linux/hash.h>
8 #include <linux/slab.h>
12 * tomoyo_warn_oom - Print out of memory warning message.
14 * @function: Function's name.
16 void tomoyo_warn_oom(const char *function
)
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",
24 tomoyo_last_pid
= pid
;
26 if (!tomoyo_policy_loaded
)
27 panic("MAC Initialization failed.\n");
30 /* Memoy currently used by policy/audit log/query. */
31 unsigned int tomoyo_memory_used
[TOMOYO_MAX_MEMORY_STAT
];
32 /* Memory quota for "policy"/"audit log"/"query". */
33 unsigned int tomoyo_memory_quota
[TOMOYO_MAX_MEMORY_STAT
];
36 * tomoyo_memory_ok - Check memory quota.
38 * @ptr: Pointer to allocated memory.
40 * Returns true on success, false otherwise.
42 * Returns true if @ptr is not NULL and quota not exceeded, false otherwise.
44 * Caller holds tomoyo_policy_lock mutex.
46 bool tomoyo_memory_ok(void *ptr
)
49 const size_t s
= ksize(ptr
);
50 tomoyo_memory_used
[TOMOYO_MEMORY_POLICY
] += s
;
51 if (!tomoyo_memory_quota
[TOMOYO_MEMORY_POLICY
] ||
52 tomoyo_memory_used
[TOMOYO_MEMORY_POLICY
] <=
53 tomoyo_memory_quota
[TOMOYO_MEMORY_POLICY
])
55 tomoyo_memory_used
[TOMOYO_MEMORY_POLICY
] -= s
;
57 tomoyo_warn_oom(__func__
);
62 * tomoyo_commit_ok - Check memory quota.
64 * @data: Data to copy from.
65 * @size: Size in byte.
67 * Returns pointer to allocated memory on success, NULL otherwise.
68 * @data is zero-cleared on success.
70 * Caller holds tomoyo_policy_lock mutex.
72 void *tomoyo_commit_ok(void *data
, const unsigned int size
)
74 void *ptr
= kzalloc(size
, GFP_NOFS
);
75 if (tomoyo_memory_ok(ptr
)) {
76 memmove(ptr
, data
, size
);
77 memset(data
, 0, size
);
85 * tomoyo_get_group - Allocate memory for "struct tomoyo_path_group"/"struct tomoyo_number_group".
87 * @param: Pointer to "struct tomoyo_acl_param".
90 * Returns pointer to "struct tomoyo_group" on success, NULL otherwise.
92 struct tomoyo_group
*tomoyo_get_group(struct tomoyo_acl_param
*param
,
95 struct tomoyo_group e
= { };
96 struct tomoyo_group
*group
= NULL
;
97 struct list_head
*list
;
98 const char *group_name
= tomoyo_read_token(param
);
100 if (!tomoyo_correct_word(group_name
) || idx
>= TOMOYO_MAX_GROUP
)
102 e
.group_name
= tomoyo_get_name(group_name
);
105 if (mutex_lock_interruptible(&tomoyo_policy_lock
))
107 list
= ¶m
->ns
->group_list
[idx
];
108 list_for_each_entry(group
, list
, head
.list
) {
109 if (e
.group_name
!= group
->group_name
||
110 atomic_read(&group
->head
.users
) == TOMOYO_GC_IN_PROGRESS
)
112 atomic_inc(&group
->head
.users
);
117 struct tomoyo_group
*entry
= tomoyo_commit_ok(&e
, sizeof(e
));
119 INIT_LIST_HEAD(&entry
->member_list
);
120 atomic_set(&entry
->head
.users
, 1);
121 list_add_tail_rcu(&entry
->head
.list
, list
);
126 mutex_unlock(&tomoyo_policy_lock
);
128 tomoyo_put_name(e
.group_name
);
129 return found
? group
: NULL
;
133 * tomoyo_name_list is used for holding string data used by TOMOYO.
134 * Since same string data is likely used for multiple times (e.g.
135 * "/lib/libc-2.5.so"), TOMOYO shares string data in the form of
136 * "const struct tomoyo_path_info *".
138 struct list_head tomoyo_name_list
[TOMOYO_MAX_HASH
];
141 * tomoyo_get_name - Allocate permanent memory for string data.
143 * @name: The string to store into the permernent memory.
145 * Returns pointer to "struct tomoyo_path_info" on success, NULL otherwise.
147 const struct tomoyo_path_info
*tomoyo_get_name(const char *name
)
149 struct tomoyo_name
*ptr
;
152 struct list_head
*head
;
156 len
= strlen(name
) + 1;
157 hash
= full_name_hash(NULL
, (const unsigned char *) name
, len
- 1);
158 head
= &tomoyo_name_list
[hash_long(hash
, TOMOYO_HASH_BITS
)];
159 if (mutex_lock_interruptible(&tomoyo_policy_lock
))
161 list_for_each_entry(ptr
, head
, head
.list
) {
162 if (hash
!= ptr
->entry
.hash
|| strcmp(name
, ptr
->entry
.name
) ||
163 atomic_read(&ptr
->head
.users
) == TOMOYO_GC_IN_PROGRESS
)
165 atomic_inc(&ptr
->head
.users
);
168 ptr
= kzalloc(sizeof(*ptr
) + len
, GFP_NOFS
);
169 if (tomoyo_memory_ok(ptr
)) {
170 ptr
->entry
.name
= ((char *) ptr
) + sizeof(*ptr
);
171 memmove((char *) ptr
->entry
.name
, name
, len
);
172 atomic_set(&ptr
->head
.users
, 1);
173 tomoyo_fill_path_info(&ptr
->entry
);
174 list_add_tail(&ptr
->head
.list
, head
);
180 mutex_unlock(&tomoyo_policy_lock
);
181 return ptr
? &ptr
->entry
: NULL
;
184 /* Initial namespace.*/
185 struct tomoyo_policy_namespace tomoyo_kernel_namespace
;
188 * tomoyo_mm_init - Initialize mm related code.
190 void __init
tomoyo_mm_init(void)
193 for (idx
= 0; idx
< TOMOYO_MAX_HASH
; idx
++)
194 INIT_LIST_HEAD(&tomoyo_name_list
[idx
]);
195 tomoyo_kernel_namespace
.name
= "<kernel>";
196 tomoyo_init_policy_namespace(&tomoyo_kernel_namespace
);
197 tomoyo_kernel_domain
.ns
= &tomoyo_kernel_namespace
;
198 INIT_LIST_HEAD(&tomoyo_kernel_domain
.acl_info_list
);
199 tomoyo_kernel_domain
.domainname
= tomoyo_get_name("<kernel>");
200 list_add_tail_rcu(&tomoyo_kernel_domain
.list
, &tomoyo_domain_list
);