TOMOYO: Use callback for updating entries.
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / security / tomoyo / gc.c
blobaed7ddd0de8460daa0ebbb2c8b90bed3d36451ba
1 /*
2 * security/tomoyo/gc.c
4 * Implementation of the Domain-Based Mandatory Access Control.
6 * Copyright (C) 2005-2010 NTT DATA CORPORATION
8 */
10 #include "common.h"
11 #include <linux/kthread.h>
12 #include <linux/slab.h>
14 enum tomoyo_gc_id {
15 TOMOYO_ID_PATH_GROUP,
16 TOMOYO_ID_PATH_GROUP_MEMBER,
17 TOMOYO_ID_NUMBER_GROUP,
18 TOMOYO_ID_NUMBER_GROUP_MEMBER,
19 TOMOYO_ID_DOMAIN_INITIALIZER,
20 TOMOYO_ID_DOMAIN_KEEPER,
21 TOMOYO_ID_AGGREGATOR,
22 TOMOYO_ID_ALIAS,
23 TOMOYO_ID_GLOBALLY_READABLE,
24 TOMOYO_ID_PATTERN,
25 TOMOYO_ID_NO_REWRITE,
26 TOMOYO_ID_MANAGER,
27 TOMOYO_ID_NAME,
28 TOMOYO_ID_ACL,
29 TOMOYO_ID_DOMAIN
32 struct tomoyo_gc_entry {
33 struct list_head list;
34 int type;
35 void *element;
37 static LIST_HEAD(tomoyo_gc_queue);
38 static DEFINE_MUTEX(tomoyo_gc_mutex);
40 /* Caller holds tomoyo_policy_lock mutex. */
41 static bool tomoyo_add_to_gc(const int type, void *element)
43 struct tomoyo_gc_entry *entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
44 if (!entry)
45 return false;
46 entry->type = type;
47 entry->element = element;
48 list_add(&entry->list, &tomoyo_gc_queue);
49 return true;
52 static void tomoyo_del_allow_read
53 (struct tomoyo_globally_readable_file_entry *ptr)
55 tomoyo_put_name(ptr->filename);
58 static void tomoyo_del_file_pattern(struct tomoyo_pattern_entry *ptr)
60 tomoyo_put_name(ptr->pattern);
63 static void tomoyo_del_no_rewrite(struct tomoyo_no_rewrite_entry *ptr)
65 tomoyo_put_name(ptr->pattern);
68 static void tomoyo_del_domain_initializer
69 (struct tomoyo_domain_initializer_entry *ptr)
71 tomoyo_put_name(ptr->domainname);
72 tomoyo_put_name(ptr->program);
75 static void tomoyo_del_domain_keeper(struct tomoyo_domain_keeper_entry *ptr)
77 tomoyo_put_name(ptr->domainname);
78 tomoyo_put_name(ptr->program);
81 static void tomoyo_del_aggregator(struct tomoyo_aggregator_entry *ptr)
83 tomoyo_put_name(ptr->original_name);
84 tomoyo_put_name(ptr->aggregated_name);
87 static void tomoyo_del_alias(struct tomoyo_alias_entry *ptr)
89 tomoyo_put_name(ptr->original_name);
90 tomoyo_put_name(ptr->aliased_name);
93 static void tomoyo_del_manager(struct tomoyo_policy_manager_entry *ptr)
95 tomoyo_put_name(ptr->manager);
98 static void tomoyo_del_acl(struct tomoyo_acl_info *acl)
100 switch (acl->type) {
101 case TOMOYO_TYPE_PATH_ACL:
103 struct tomoyo_path_acl *entry
104 = container_of(acl, typeof(*entry), head);
105 tomoyo_put_name_union(&entry->name);
107 break;
108 case TOMOYO_TYPE_PATH2_ACL:
110 struct tomoyo_path2_acl *entry
111 = container_of(acl, typeof(*entry), head);
112 tomoyo_put_name_union(&entry->name1);
113 tomoyo_put_name_union(&entry->name2);
115 break;
116 case TOMOYO_TYPE_PATH_NUMBER_ACL:
118 struct tomoyo_path_number_acl *entry
119 = container_of(acl, typeof(*entry), head);
120 tomoyo_put_name_union(&entry->name);
121 tomoyo_put_number_union(&entry->number);
123 break;
124 case TOMOYO_TYPE_PATH_NUMBER3_ACL:
126 struct tomoyo_path_number3_acl *entry
127 = container_of(acl, typeof(*entry), head);
128 tomoyo_put_name_union(&entry->name);
129 tomoyo_put_number_union(&entry->mode);
130 tomoyo_put_number_union(&entry->major);
131 tomoyo_put_number_union(&entry->minor);
133 break;
134 case TOMOYO_TYPE_MOUNT_ACL:
136 struct tomoyo_mount_acl *entry
137 = container_of(acl, typeof(*entry), head);
138 tomoyo_put_name_union(&entry->dev_name);
139 tomoyo_put_name_union(&entry->dir_name);
140 tomoyo_put_name_union(&entry->fs_type);
141 tomoyo_put_number_union(&entry->flags);
143 break;
144 default:
145 printk(KERN_WARNING "Unknown type\n");
146 break;
150 static bool tomoyo_del_domain(struct tomoyo_domain_info *domain)
152 struct tomoyo_acl_info *acl;
153 struct tomoyo_acl_info *tmp;
155 * Since we don't protect whole execve() operation using SRCU,
156 * we need to recheck domain->users at this point.
158 * (1) Reader starts SRCU section upon execve().
159 * (2) Reader traverses tomoyo_domain_list and finds this domain.
160 * (3) Writer marks this domain as deleted.
161 * (4) Garbage collector removes this domain from tomoyo_domain_list
162 * because this domain is marked as deleted and used by nobody.
163 * (5) Reader saves reference to this domain into
164 * "struct linux_binprm"->cred->security .
165 * (6) Reader finishes SRCU section, although execve() operation has
166 * not finished yet.
167 * (7) Garbage collector waits for SRCU synchronization.
168 * (8) Garbage collector kfree() this domain because this domain is
169 * used by nobody.
170 * (9) Reader finishes execve() operation and restores this domain from
171 * "struct linux_binprm"->cred->security.
173 * By updating domain->users at (5), we can solve this race problem
174 * by rechecking domain->users at (8).
176 if (atomic_read(&domain->users))
177 return false;
178 list_for_each_entry_safe(acl, tmp, &domain->acl_info_list, list) {
179 tomoyo_del_acl(acl);
180 tomoyo_memory_free(acl);
182 tomoyo_put_name(domain->domainname);
183 return true;
187 static void tomoyo_del_name(const struct tomoyo_name_entry *ptr)
191 static void tomoyo_del_path_group_member(struct tomoyo_path_group_member
192 *member)
194 tomoyo_put_name(member->member_name);
197 static void tomoyo_del_path_group(struct tomoyo_path_group *group)
199 tomoyo_put_name(group->group_name);
202 static void tomoyo_del_number_group_member(struct tomoyo_number_group_member
203 *member)
207 static void tomoyo_del_number_group(struct tomoyo_number_group *group)
209 tomoyo_put_name(group->group_name);
212 static void tomoyo_collect_entry(void)
214 if (mutex_lock_interruptible(&tomoyo_policy_lock))
215 return;
217 struct tomoyo_globally_readable_file_entry *ptr;
218 list_for_each_entry_rcu(ptr, &tomoyo_globally_readable_list,
219 list) {
220 if (!ptr->is_deleted)
221 continue;
222 if (tomoyo_add_to_gc(TOMOYO_ID_GLOBALLY_READABLE, ptr))
223 list_del_rcu(&ptr->list);
224 else
225 break;
229 struct tomoyo_pattern_entry *ptr;
230 list_for_each_entry_rcu(ptr, &tomoyo_pattern_list, list) {
231 if (!ptr->is_deleted)
232 continue;
233 if (tomoyo_add_to_gc(TOMOYO_ID_PATTERN, ptr))
234 list_del_rcu(&ptr->list);
235 else
236 break;
240 struct tomoyo_no_rewrite_entry *ptr;
241 list_for_each_entry_rcu(ptr, &tomoyo_no_rewrite_list, list) {
242 if (!ptr->is_deleted)
243 continue;
244 if (tomoyo_add_to_gc(TOMOYO_ID_NO_REWRITE, ptr))
245 list_del_rcu(&ptr->list);
246 else
247 break;
251 struct tomoyo_domain_initializer_entry *ptr;
252 list_for_each_entry_rcu(ptr, &tomoyo_domain_initializer_list,
253 list) {
254 if (!ptr->is_deleted)
255 continue;
256 if (tomoyo_add_to_gc(TOMOYO_ID_DOMAIN_INITIALIZER, ptr))
257 list_del_rcu(&ptr->list);
258 else
259 break;
263 struct tomoyo_domain_keeper_entry *ptr;
264 list_for_each_entry_rcu(ptr, &tomoyo_domain_keeper_list, list) {
265 if (!ptr->is_deleted)
266 continue;
267 if (tomoyo_add_to_gc(TOMOYO_ID_DOMAIN_KEEPER, ptr))
268 list_del_rcu(&ptr->list);
269 else
270 break;
274 struct tomoyo_aggregator_entry *ptr;
275 list_for_each_entry_rcu(ptr, &tomoyo_aggregator_list, list) {
276 if (!ptr->is_deleted)
277 continue;
278 if (tomoyo_add_to_gc(TOMOYO_ID_AGGREGATOR, ptr))
279 list_del_rcu(&ptr->list);
280 else
281 break;
285 struct tomoyo_alias_entry *ptr;
286 list_for_each_entry_rcu(ptr, &tomoyo_alias_list, list) {
287 if (!ptr->is_deleted)
288 continue;
289 if (tomoyo_add_to_gc(TOMOYO_ID_ALIAS, ptr))
290 list_del_rcu(&ptr->list);
291 else
292 break;
296 struct tomoyo_policy_manager_entry *ptr;
297 list_for_each_entry_rcu(ptr, &tomoyo_policy_manager_list,
298 list) {
299 if (!ptr->is_deleted)
300 continue;
301 if (tomoyo_add_to_gc(TOMOYO_ID_MANAGER, ptr))
302 list_del_rcu(&ptr->list);
303 else
304 break;
308 struct tomoyo_domain_info *domain;
309 list_for_each_entry_rcu(domain, &tomoyo_domain_list, list) {
310 struct tomoyo_acl_info *acl;
311 list_for_each_entry_rcu(acl, &domain->acl_info_list,
312 list) {
313 if (!acl->is_deleted)
314 continue;
315 if (tomoyo_add_to_gc(TOMOYO_ID_ACL, acl))
316 list_del_rcu(&acl->list);
317 else
318 break;
320 if (!domain->is_deleted || atomic_read(&domain->users))
321 continue;
323 * Nobody is referring this domain. But somebody may
324 * refer this domain after successful execve().
325 * We recheck domain->users after SRCU synchronization.
327 if (tomoyo_add_to_gc(TOMOYO_ID_DOMAIN, domain))
328 list_del_rcu(&domain->list);
329 else
330 break;
334 int i;
335 for (i = 0; i < TOMOYO_MAX_HASH; i++) {
336 struct tomoyo_name_entry *ptr;
337 list_for_each_entry_rcu(ptr, &tomoyo_name_list[i],
338 list) {
339 if (atomic_read(&ptr->users))
340 continue;
341 if (tomoyo_add_to_gc(TOMOYO_ID_NAME, ptr))
342 list_del_rcu(&ptr->list);
343 else {
344 i = TOMOYO_MAX_HASH;
345 break;
351 struct tomoyo_path_group *group;
352 list_for_each_entry_rcu(group, &tomoyo_path_group_list, list) {
353 struct tomoyo_path_group_member *member;
354 list_for_each_entry_rcu(member, &group->member_list,
355 list) {
356 if (!member->is_deleted)
357 continue;
358 if (tomoyo_add_to_gc(TOMOYO_ID_PATH_GROUP_MEMBER,
359 member))
360 list_del_rcu(&member->list);
361 else
362 break;
364 if (!list_empty(&group->member_list) ||
365 atomic_read(&group->users))
366 continue;
367 if (tomoyo_add_to_gc(TOMOYO_ID_PATH_GROUP, group))
368 list_del_rcu(&group->list);
369 else
370 break;
374 struct tomoyo_number_group *group;
375 list_for_each_entry_rcu(group, &tomoyo_number_group_list, list) {
376 struct tomoyo_number_group_member *member;
377 list_for_each_entry_rcu(member, &group->member_list,
378 list) {
379 if (!member->is_deleted)
380 continue;
381 if (tomoyo_add_to_gc(TOMOYO_ID_NUMBER_GROUP_MEMBER,
382 member))
383 list_del_rcu(&member->list);
384 else
385 break;
387 if (!list_empty(&group->member_list) ||
388 atomic_read(&group->users))
389 continue;
390 if (tomoyo_add_to_gc(TOMOYO_ID_NUMBER_GROUP, group))
391 list_del_rcu(&group->list);
392 else
393 break;
396 mutex_unlock(&tomoyo_policy_lock);
399 static void tomoyo_kfree_entry(void)
401 struct tomoyo_gc_entry *p;
402 struct tomoyo_gc_entry *tmp;
404 list_for_each_entry_safe(p, tmp, &tomoyo_gc_queue, list) {
405 switch (p->type) {
406 case TOMOYO_ID_DOMAIN_INITIALIZER:
407 tomoyo_del_domain_initializer(p->element);
408 break;
409 case TOMOYO_ID_DOMAIN_KEEPER:
410 tomoyo_del_domain_keeper(p->element);
411 break;
412 case TOMOYO_ID_AGGREGATOR:
413 tomoyo_del_aggregator(p->element);
414 break;
415 case TOMOYO_ID_ALIAS:
416 tomoyo_del_alias(p->element);
417 break;
418 case TOMOYO_ID_GLOBALLY_READABLE:
419 tomoyo_del_allow_read(p->element);
420 break;
421 case TOMOYO_ID_PATTERN:
422 tomoyo_del_file_pattern(p->element);
423 break;
424 case TOMOYO_ID_NO_REWRITE:
425 tomoyo_del_no_rewrite(p->element);
426 break;
427 case TOMOYO_ID_MANAGER:
428 tomoyo_del_manager(p->element);
429 break;
430 case TOMOYO_ID_NAME:
431 tomoyo_del_name(p->element);
432 break;
433 case TOMOYO_ID_ACL:
434 tomoyo_del_acl(p->element);
435 break;
436 case TOMOYO_ID_DOMAIN:
437 if (!tomoyo_del_domain(p->element))
438 continue;
439 break;
440 case TOMOYO_ID_PATH_GROUP_MEMBER:
441 tomoyo_del_path_group_member(p->element);
442 break;
443 case TOMOYO_ID_PATH_GROUP:
444 tomoyo_del_path_group(p->element);
445 break;
446 case TOMOYO_ID_NUMBER_GROUP_MEMBER:
447 tomoyo_del_number_group_member(p->element);
448 break;
449 case TOMOYO_ID_NUMBER_GROUP:
450 tomoyo_del_number_group(p->element);
451 break;
452 default:
453 printk(KERN_WARNING "Unknown type\n");
454 break;
456 tomoyo_memory_free(p->element);
457 list_del(&p->list);
458 kfree(p);
462 static int tomoyo_gc_thread(void *unused)
464 daemonize("GC for TOMOYO");
465 if (mutex_trylock(&tomoyo_gc_mutex)) {
466 int i;
467 for (i = 0; i < 10; i++) {
468 tomoyo_collect_entry();
469 if (list_empty(&tomoyo_gc_queue))
470 break;
471 synchronize_srcu(&tomoyo_ss);
472 tomoyo_kfree_entry();
474 mutex_unlock(&tomoyo_gc_mutex);
476 do_exit(0);
479 void tomoyo_run_gc(void)
481 struct task_struct *task = kthread_create(tomoyo_gc_thread, NULL,
482 "GC for TOMOYO");
483 if (!IS_ERR(task))
484 wake_up_process(task);