Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 1 | /* |
| 2 | * security/tomoyo/gc.c |
| 3 | * |
| 4 | * Implementation of the Domain-Based Mandatory Access Control. |
| 5 | * |
| 6 | * Copyright (C) 2005-2010 NTT DATA CORPORATION |
| 7 | * |
| 8 | */ |
| 9 | |
| 10 | #include "common.h" |
| 11 | #include <linux/kthread.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 12 | #include <linux/slab.h> |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 13 | |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 14 | struct tomoyo_gc_entry { |
| 15 | struct list_head list; |
| 16 | int type; |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 17 | struct list_head *element; |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 18 | }; |
| 19 | static LIST_HEAD(tomoyo_gc_queue); |
| 20 | static DEFINE_MUTEX(tomoyo_gc_mutex); |
| 21 | |
| 22 | /* Caller holds tomoyo_policy_lock mutex. */ |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 23 | static bool tomoyo_add_to_gc(const int type, struct list_head *element) |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 24 | { |
| 25 | struct tomoyo_gc_entry *entry = kzalloc(sizeof(*entry), GFP_ATOMIC); |
| 26 | if (!entry) |
| 27 | return false; |
| 28 | entry->type = type; |
| 29 | entry->element = element; |
| 30 | list_add(&entry->list, &tomoyo_gc_queue); |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 31 | list_del_rcu(element); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 32 | return true; |
| 33 | } |
| 34 | |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 35 | static void tomoyo_del_allow_read(struct list_head *element) |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 36 | { |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 37 | struct tomoyo_globally_readable_file_entry *ptr = |
| 38 | container_of(element, typeof(*ptr), head.list); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 39 | tomoyo_put_name(ptr->filename); |
| 40 | } |
| 41 | |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 42 | static void tomoyo_del_file_pattern(struct list_head *element) |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 43 | { |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 44 | struct tomoyo_pattern_entry *ptr = |
| 45 | container_of(element, typeof(*ptr), head.list); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 46 | tomoyo_put_name(ptr->pattern); |
| 47 | } |
| 48 | |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 49 | static void tomoyo_del_no_rewrite(struct list_head *element) |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 50 | { |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 51 | struct tomoyo_no_rewrite_entry *ptr = |
| 52 | container_of(element, typeof(*ptr), head.list); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 53 | tomoyo_put_name(ptr->pattern); |
| 54 | } |
| 55 | |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 56 | static void tomoyo_del_domain_initializer(struct list_head *element) |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 57 | { |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 58 | struct tomoyo_domain_initializer_entry *ptr = |
| 59 | container_of(element, typeof(*ptr), head.list); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 60 | tomoyo_put_name(ptr->domainname); |
| 61 | tomoyo_put_name(ptr->program); |
| 62 | } |
| 63 | |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 64 | static void tomoyo_del_domain_keeper(struct list_head *element) |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 65 | { |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 66 | struct tomoyo_domain_keeper_entry *ptr = |
| 67 | container_of(element, typeof(*ptr), head.list); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 68 | tomoyo_put_name(ptr->domainname); |
| 69 | tomoyo_put_name(ptr->program); |
| 70 | } |
| 71 | |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 72 | static void tomoyo_del_aggregator(struct list_head *element) |
Tetsuo Handa | 1084307 | 2010-06-03 20:38:03 +0900 | [diff] [blame] | 73 | { |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 74 | struct tomoyo_aggregator_entry *ptr = |
| 75 | container_of(element, typeof(*ptr), head.list); |
Tetsuo Handa | 1084307 | 2010-06-03 20:38:03 +0900 | [diff] [blame] | 76 | tomoyo_put_name(ptr->original_name); |
| 77 | tomoyo_put_name(ptr->aggregated_name); |
| 78 | } |
| 79 | |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 80 | static void tomoyo_del_manager(struct list_head *element) |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 81 | { |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 82 | struct tomoyo_policy_manager_entry *ptr = |
| 83 | container_of(element, typeof(*ptr), head.list); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 84 | tomoyo_put_name(ptr->manager); |
| 85 | } |
| 86 | |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 87 | static void tomoyo_del_acl(struct list_head *element) |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 88 | { |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 89 | struct tomoyo_acl_info *acl = |
| 90 | container_of(element, typeof(*acl), list); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 91 | switch (acl->type) { |
Tetsuo Handa | 7ef6123 | 2010-02-16 08:03:30 +0900 | [diff] [blame] | 92 | case TOMOYO_TYPE_PATH_ACL: |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 93 | { |
Tetsuo Handa | 7ef6123 | 2010-02-16 08:03:30 +0900 | [diff] [blame] | 94 | struct tomoyo_path_acl *entry |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 95 | = container_of(acl, typeof(*entry), head); |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 96 | tomoyo_put_name_union(&entry->name); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 97 | } |
| 98 | break; |
Tetsuo Handa | 7ef6123 | 2010-02-16 08:03:30 +0900 | [diff] [blame] | 99 | case TOMOYO_TYPE_PATH2_ACL: |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 100 | { |
Tetsuo Handa | 7ef6123 | 2010-02-16 08:03:30 +0900 | [diff] [blame] | 101 | struct tomoyo_path2_acl *entry |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 102 | = container_of(acl, typeof(*entry), head); |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 103 | tomoyo_put_name_union(&entry->name1); |
| 104 | tomoyo_put_name_union(&entry->name2); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 105 | } |
| 106 | break; |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 107 | case TOMOYO_TYPE_PATH_NUMBER_ACL: |
| 108 | { |
| 109 | struct tomoyo_path_number_acl *entry |
| 110 | = container_of(acl, typeof(*entry), head); |
| 111 | tomoyo_put_name_union(&entry->name); |
| 112 | tomoyo_put_number_union(&entry->number); |
| 113 | } |
| 114 | break; |
Tetsuo Handa | 7509315 | 2010-06-16 16:23:55 +0900 | [diff] [blame] | 115 | case TOMOYO_TYPE_MKDEV_ACL: |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 116 | { |
Tetsuo Handa | 7509315 | 2010-06-16 16:23:55 +0900 | [diff] [blame] | 117 | struct tomoyo_mkdev_acl *entry |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 118 | = container_of(acl, typeof(*entry), head); |
| 119 | tomoyo_put_name_union(&entry->name); |
| 120 | tomoyo_put_number_union(&entry->mode); |
| 121 | tomoyo_put_number_union(&entry->major); |
| 122 | tomoyo_put_number_union(&entry->minor); |
| 123 | } |
| 124 | break; |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 125 | case TOMOYO_TYPE_MOUNT_ACL: |
| 126 | { |
| 127 | struct tomoyo_mount_acl *entry |
| 128 | = container_of(acl, typeof(*entry), head); |
| 129 | tomoyo_put_name_union(&entry->dev_name); |
| 130 | tomoyo_put_name_union(&entry->dir_name); |
| 131 | tomoyo_put_name_union(&entry->fs_type); |
| 132 | tomoyo_put_number_union(&entry->flags); |
| 133 | } |
| 134 | break; |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 135 | } |
| 136 | } |
| 137 | |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 138 | static bool tomoyo_del_domain(struct list_head *element) |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 139 | { |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 140 | struct tomoyo_domain_info *domain = |
| 141 | container_of(element, typeof(*domain), list); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 142 | struct tomoyo_acl_info *acl; |
| 143 | struct tomoyo_acl_info *tmp; |
| 144 | /* |
| 145 | * Since we don't protect whole execve() operation using SRCU, |
| 146 | * we need to recheck domain->users at this point. |
| 147 | * |
| 148 | * (1) Reader starts SRCU section upon execve(). |
| 149 | * (2) Reader traverses tomoyo_domain_list and finds this domain. |
| 150 | * (3) Writer marks this domain as deleted. |
| 151 | * (4) Garbage collector removes this domain from tomoyo_domain_list |
| 152 | * because this domain is marked as deleted and used by nobody. |
| 153 | * (5) Reader saves reference to this domain into |
| 154 | * "struct linux_binprm"->cred->security . |
| 155 | * (6) Reader finishes SRCU section, although execve() operation has |
| 156 | * not finished yet. |
| 157 | * (7) Garbage collector waits for SRCU synchronization. |
| 158 | * (8) Garbage collector kfree() this domain because this domain is |
| 159 | * used by nobody. |
| 160 | * (9) Reader finishes execve() operation and restores this domain from |
| 161 | * "struct linux_binprm"->cred->security. |
| 162 | * |
| 163 | * By updating domain->users at (5), we can solve this race problem |
| 164 | * by rechecking domain->users at (8). |
| 165 | */ |
| 166 | if (atomic_read(&domain->users)) |
| 167 | return false; |
| 168 | list_for_each_entry_safe(acl, tmp, &domain->acl_info_list, list) { |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 169 | tomoyo_del_acl(&acl->list); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 170 | tomoyo_memory_free(acl); |
| 171 | } |
| 172 | tomoyo_put_name(domain->domainname); |
| 173 | return true; |
| 174 | } |
| 175 | |
| 176 | |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 177 | static void tomoyo_del_name(struct list_head *element) |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 178 | { |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 179 | const struct tomoyo_name_entry *ptr = |
| 180 | container_of(element, typeof(*ptr), list); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 181 | } |
| 182 | |
Tetsuo Handa | a98aa4d | 2010-06-17 16:52:29 +0900 | [diff] [blame] | 183 | static void tomoyo_del_path_group(struct list_head *element) |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 184 | { |
Tetsuo Handa | a98aa4d | 2010-06-17 16:52:29 +0900 | [diff] [blame] | 185 | struct tomoyo_path_group *member = |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 186 | container_of(element, typeof(*member), head.list); |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 187 | tomoyo_put_name(member->member_name); |
| 188 | } |
| 189 | |
Tetsuo Handa | a98aa4d | 2010-06-17 16:52:29 +0900 | [diff] [blame] | 190 | static void tomoyo_del_group(struct list_head *element) |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 191 | { |
Tetsuo Handa | a98aa4d | 2010-06-17 16:52:29 +0900 | [diff] [blame] | 192 | struct tomoyo_group *group = |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 193 | container_of(element, typeof(*group), list); |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 194 | tomoyo_put_name(group->group_name); |
| 195 | } |
| 196 | |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 197 | static void tomoyo_del_number_group(struct list_head *element) |
Tetsuo Handa | 4c3e9e2 | 2010-05-17 10:06:58 +0900 | [diff] [blame] | 198 | { |
Tetsuo Handa | a98aa4d | 2010-06-17 16:52:29 +0900 | [diff] [blame] | 199 | struct tomoyo_number_group *member = |
| 200 | container_of(element, typeof(*member), head.list); |
Tetsuo Handa | 4c3e9e2 | 2010-05-17 10:06:58 +0900 | [diff] [blame] | 201 | } |
| 202 | |
Tetsuo Handa | d2f8b23 | 2010-06-15 10:10:37 +0900 | [diff] [blame] | 203 | static bool tomoyo_collect_member(struct list_head *member_list, int id) |
| 204 | { |
| 205 | struct tomoyo_acl_head *member; |
| 206 | list_for_each_entry(member, member_list, list) { |
| 207 | if (!member->is_deleted) |
| 208 | continue; |
| 209 | if (!tomoyo_add_to_gc(id, &member->list)) |
| 210 | return false; |
Tetsuo Handa | d2f8b23 | 2010-06-15 10:10:37 +0900 | [diff] [blame] | 211 | } |
| 212 | return true; |
| 213 | } |
| 214 | |
| 215 | static bool tomoyo_collect_acl(struct tomoyo_domain_info *domain) |
| 216 | { |
| 217 | struct tomoyo_acl_info *acl; |
| 218 | list_for_each_entry(acl, &domain->acl_info_list, list) { |
| 219 | if (!acl->is_deleted) |
| 220 | continue; |
| 221 | if (!tomoyo_add_to_gc(TOMOYO_ID_ACL, &acl->list)) |
| 222 | return false; |
Tetsuo Handa | d2f8b23 | 2010-06-15 10:10:37 +0900 | [diff] [blame] | 223 | } |
| 224 | return true; |
| 225 | } |
| 226 | |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 227 | static void tomoyo_collect_entry(void) |
| 228 | { |
Tetsuo Handa | d2f8b23 | 2010-06-15 10:10:37 +0900 | [diff] [blame] | 229 | int i; |
Tetsuo Handa | 2928238 | 2010-05-06 00:18:15 +0900 | [diff] [blame] | 230 | if (mutex_lock_interruptible(&tomoyo_policy_lock)) |
| 231 | return; |
Tetsuo Handa | d2f8b23 | 2010-06-15 10:10:37 +0900 | [diff] [blame] | 232 | for (i = 0; i < TOMOYO_MAX_POLICY; i++) { |
Tetsuo Handa | a230f9e | 2010-06-17 16:53:24 +0900 | [diff] [blame] | 233 | if (!tomoyo_collect_member(&tomoyo_policy_list[i], i)) |
| 234 | goto unlock; |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 235 | } |
| 236 | { |
| 237 | struct tomoyo_domain_info *domain; |
| 238 | list_for_each_entry_rcu(domain, &tomoyo_domain_list, list) { |
Tetsuo Handa | d2f8b23 | 2010-06-15 10:10:37 +0900 | [diff] [blame] | 239 | if (!tomoyo_collect_acl(domain)) |
| 240 | goto unlock; |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 241 | if (!domain->is_deleted || atomic_read(&domain->users)) |
| 242 | continue; |
| 243 | /* |
| 244 | * Nobody is referring this domain. But somebody may |
| 245 | * refer this domain after successful execve(). |
| 246 | * We recheck domain->users after SRCU synchronization. |
| 247 | */ |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 248 | if (!tomoyo_add_to_gc(TOMOYO_ID_DOMAIN, &domain->list)) |
Tetsuo Handa | d2f8b23 | 2010-06-15 10:10:37 +0900 | [diff] [blame] | 249 | goto unlock; |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 250 | } |
| 251 | } |
Tetsuo Handa | d2f8b23 | 2010-06-15 10:10:37 +0900 | [diff] [blame] | 252 | for (i = 0; i < TOMOYO_MAX_HASH; i++) { |
| 253 | struct tomoyo_name_entry *ptr; |
| 254 | list_for_each_entry_rcu(ptr, &tomoyo_name_list[i], list) { |
| 255 | if (atomic_read(&ptr->users)) |
| 256 | continue; |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 257 | if (!tomoyo_add_to_gc(TOMOYO_ID_NAME, &ptr->list)) |
Tetsuo Handa | d2f8b23 | 2010-06-15 10:10:37 +0900 | [diff] [blame] | 258 | goto unlock; |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 259 | } |
| 260 | } |
Tetsuo Handa | 7c2ea22 | 2010-06-17 16:55:58 +0900 | [diff] [blame] | 261 | for (i = 0; i < TOMOYO_MAX_GROUP; i++) { |
| 262 | struct list_head *list = &tomoyo_group_list[i]; |
| 263 | int id; |
Tetsuo Handa | a98aa4d | 2010-06-17 16:52:29 +0900 | [diff] [blame] | 264 | struct tomoyo_group *group; |
Tetsuo Handa | 7c2ea22 | 2010-06-17 16:55:58 +0900 | [diff] [blame] | 265 | switch (i) { |
| 266 | case 0: |
| 267 | id = TOMOYO_ID_PATH_GROUP; |
| 268 | break; |
| 269 | default: |
| 270 | id = TOMOYO_ID_NUMBER_GROUP; |
| 271 | break; |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 272 | } |
Tetsuo Handa | 7c2ea22 | 2010-06-17 16:55:58 +0900 | [diff] [blame] | 273 | list_for_each_entry(group, list, list) { |
| 274 | if (!tomoyo_collect_member(&group->member_list, id)) |
| 275 | goto unlock; |
Tetsuo Handa | 4c3e9e2 | 2010-05-17 10:06:58 +0900 | [diff] [blame] | 276 | if (!list_empty(&group->member_list) || |
| 277 | atomic_read(&group->users)) |
| 278 | continue; |
Tetsuo Handa | 7c2ea22 | 2010-06-17 16:55:58 +0900 | [diff] [blame] | 279 | if (!tomoyo_add_to_gc(TOMOYO_ID_GROUP, &group->list)) |
Tetsuo Handa | d2f8b23 | 2010-06-15 10:10:37 +0900 | [diff] [blame] | 280 | goto unlock; |
Tetsuo Handa | 4c3e9e2 | 2010-05-17 10:06:58 +0900 | [diff] [blame] | 281 | } |
| 282 | } |
Tetsuo Handa | d2f8b23 | 2010-06-15 10:10:37 +0900 | [diff] [blame] | 283 | unlock: |
Tetsuo Handa | 2928238 | 2010-05-06 00:18:15 +0900 | [diff] [blame] | 284 | mutex_unlock(&tomoyo_policy_lock); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 285 | } |
| 286 | |
| 287 | static void tomoyo_kfree_entry(void) |
| 288 | { |
| 289 | struct tomoyo_gc_entry *p; |
| 290 | struct tomoyo_gc_entry *tmp; |
| 291 | |
| 292 | list_for_each_entry_safe(p, tmp, &tomoyo_gc_queue, list) { |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 293 | struct list_head *element = p->element; |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 294 | switch (p->type) { |
| 295 | case TOMOYO_ID_DOMAIN_INITIALIZER: |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 296 | tomoyo_del_domain_initializer(element); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 297 | break; |
| 298 | case TOMOYO_ID_DOMAIN_KEEPER: |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 299 | tomoyo_del_domain_keeper(element); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 300 | break; |
Tetsuo Handa | 1084307 | 2010-06-03 20:38:03 +0900 | [diff] [blame] | 301 | case TOMOYO_ID_AGGREGATOR: |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 302 | tomoyo_del_aggregator(element); |
Tetsuo Handa | 1084307 | 2010-06-03 20:38:03 +0900 | [diff] [blame] | 303 | break; |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 304 | case TOMOYO_ID_GLOBALLY_READABLE: |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 305 | tomoyo_del_allow_read(element); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 306 | break; |
| 307 | case TOMOYO_ID_PATTERN: |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 308 | tomoyo_del_file_pattern(element); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 309 | break; |
| 310 | case TOMOYO_ID_NO_REWRITE: |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 311 | tomoyo_del_no_rewrite(element); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 312 | break; |
| 313 | case TOMOYO_ID_MANAGER: |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 314 | tomoyo_del_manager(element); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 315 | break; |
| 316 | case TOMOYO_ID_NAME: |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 317 | tomoyo_del_name(element); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 318 | break; |
| 319 | case TOMOYO_ID_ACL: |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 320 | tomoyo_del_acl(element); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 321 | break; |
| 322 | case TOMOYO_ID_DOMAIN: |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 323 | if (!tomoyo_del_domain(element)) |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 324 | continue; |
| 325 | break; |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 326 | case TOMOYO_ID_PATH_GROUP: |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 327 | tomoyo_del_path_group(element); |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 328 | break; |
Tetsuo Handa | a98aa4d | 2010-06-17 16:52:29 +0900 | [diff] [blame] | 329 | case TOMOYO_ID_GROUP: |
| 330 | tomoyo_del_group(element); |
Tetsuo Handa | 4c3e9e2 | 2010-05-17 10:06:58 +0900 | [diff] [blame] | 331 | break; |
| 332 | case TOMOYO_ID_NUMBER_GROUP: |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 333 | tomoyo_del_number_group(element); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 334 | break; |
| 335 | } |
Tetsuo Handa | e79acf0 | 2010-06-16 16:31:50 +0900 | [diff] [blame] | 336 | tomoyo_memory_free(element); |
Tetsuo Handa | 847b173 | 2010-02-11 09:43:54 +0900 | [diff] [blame] | 337 | list_del(&p->list); |
| 338 | kfree(p); |
| 339 | } |
| 340 | } |
| 341 | |
| 342 | static int tomoyo_gc_thread(void *unused) |
| 343 | { |
| 344 | daemonize("GC for TOMOYO"); |
| 345 | if (mutex_trylock(&tomoyo_gc_mutex)) { |
| 346 | int i; |
| 347 | for (i = 0; i < 10; i++) { |
| 348 | tomoyo_collect_entry(); |
| 349 | if (list_empty(&tomoyo_gc_queue)) |
| 350 | break; |
| 351 | synchronize_srcu(&tomoyo_ss); |
| 352 | tomoyo_kfree_entry(); |
| 353 | } |
| 354 | mutex_unlock(&tomoyo_gc_mutex); |
| 355 | } |
| 356 | do_exit(0); |
| 357 | } |
| 358 | |
| 359 | void tomoyo_run_gc(void) |
| 360 | { |
| 361 | struct task_struct *task = kthread_create(tomoyo_gc_thread, NULL, |
| 362 | "GC for TOMOYO"); |
| 363 | if (!IS_ERR(task)) |
| 364 | wake_up_process(task); |
| 365 | } |