blob: 00d223e9fb37ca2392b98938b2734e14d9e60227 [file] [log] [blame]
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +09001/*
2 * security/tomoyo/domain.c
3 *
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +09004 * Copyright (C) 2005-2011 NTT DATA CORPORATION
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +09005 */
6
7#include "common.h"
Ingo Molnarb2d09102017-02-04 01:27:20 +01008
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +09009#include <linux/binfmts.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Ingo Molnarb2d09102017-02-04 01:27:20 +010011#include <linux/rculist.h>
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +090012
13/* Variables definitions.*/
14
15/* The initial domain. */
16struct tomoyo_domain_info tomoyo_kernel_domain;
17
Tetsuo Handa237ab452010-06-12 20:46:22 +090018/**
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +090019 * tomoyo_update_policy - Update an entry for exception policy.
20 *
21 * @new_entry: Pointer to "struct tomoyo_acl_info".
22 * @size: Size of @new_entry in bytes.
Tetsuo Handaa238cf52011-06-26 23:17:10 +090023 * @param: Pointer to "struct tomoyo_acl_param".
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +090024 * @check_duplicate: Callback function to find duplicated entry.
25 *
26 * Returns 0 on success, negative value otherwise.
27 *
28 * Caller holds tomoyo_read_lock().
29 */
30int tomoyo_update_policy(struct tomoyo_acl_head *new_entry, const int size,
Tetsuo Handaa238cf52011-06-26 23:17:10 +090031 struct tomoyo_acl_param *param,
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +090032 bool (*check_duplicate) (const struct tomoyo_acl_head
33 *,
34 const struct tomoyo_acl_head
35 *))
36{
Tetsuo Handaa238cf52011-06-26 23:17:10 +090037 int error = param->is_delete ? -ENOENT : -ENOMEM;
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +090038 struct tomoyo_acl_head *entry;
Tetsuo Handaa238cf52011-06-26 23:17:10 +090039 struct list_head *list = param->list;
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +090040
41 if (mutex_lock_interruptible(&tomoyo_policy_lock))
42 return -ENOMEM;
43 list_for_each_entry_rcu(entry, list, list) {
Tetsuo Handaf9732ea2011-09-25 17:50:23 +090044 if (entry->is_deleted == TOMOYO_GC_IN_PROGRESS)
45 continue;
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +090046 if (!check_duplicate(entry, new_entry))
47 continue;
Tetsuo Handaa238cf52011-06-26 23:17:10 +090048 entry->is_deleted = param->is_delete;
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +090049 error = 0;
50 break;
51 }
Tetsuo Handaa238cf52011-06-26 23:17:10 +090052 if (error && !param->is_delete) {
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +090053 entry = tomoyo_commit_ok(new_entry, size);
54 if (entry) {
55 list_add_tail_rcu(&entry->list, list);
56 error = 0;
57 }
58 }
59 mutex_unlock(&tomoyo_policy_lock);
60 return error;
61}
62
63/**
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090064 * tomoyo_same_acl_head - Check for duplicated "struct tomoyo_acl_info" entry.
65 *
66 * @a: Pointer to "struct tomoyo_acl_info".
67 * @b: Pointer to "struct tomoyo_acl_info".
68 *
69 * Returns true if @a == @b, false otherwise.
70 */
71static inline bool tomoyo_same_acl_head(const struct tomoyo_acl_info *a,
72 const struct tomoyo_acl_info *b)
73{
Tetsuo Handa2066a362011-07-08 13:21:37 +090074 return a->type == b->type && a->cond == b->cond;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090075}
76
77/**
Tetsuo Handa237ab452010-06-12 20:46:22 +090078 * tomoyo_update_domain - Update an entry for domain policy.
79 *
80 * @new_entry: Pointer to "struct tomoyo_acl_info".
81 * @size: Size of @new_entry in bytes.
Tetsuo Handaa238cf52011-06-26 23:17:10 +090082 * @param: Pointer to "struct tomoyo_acl_param".
Tetsuo Handa237ab452010-06-12 20:46:22 +090083 * @check_duplicate: Callback function to find duplicated entry.
84 * @merge_duplicate: Callback function to merge duplicated entry.
85 *
86 * Returns 0 on success, negative value otherwise.
87 *
88 * Caller holds tomoyo_read_lock().
89 */
90int tomoyo_update_domain(struct tomoyo_acl_info *new_entry, const int size,
Tetsuo Handaa238cf52011-06-26 23:17:10 +090091 struct tomoyo_acl_param *param,
Tetsuo Handa237ab452010-06-12 20:46:22 +090092 bool (*check_duplicate) (const struct tomoyo_acl_info
93 *,
94 const struct tomoyo_acl_info
95 *),
96 bool (*merge_duplicate) (struct tomoyo_acl_info *,
97 struct tomoyo_acl_info *,
98 const bool))
99{
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900100 const bool is_delete = param->is_delete;
Tetsuo Handa237ab452010-06-12 20:46:22 +0900101 int error = is_delete ? -ENOENT : -ENOMEM;
102 struct tomoyo_acl_info *entry;
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900103 struct list_head * const list = param->list;
Tetsuo Handa237ab452010-06-12 20:46:22 +0900104
Tetsuo Handa2066a362011-07-08 13:21:37 +0900105 if (param->data[0]) {
106 new_entry->cond = tomoyo_get_condition(param);
107 if (!new_entry->cond)
108 return -EINVAL;
Tetsuo Handa6bce98e2011-09-16 22:54:25 +0900109 /*
110 * Domain transition preference is allowed for only
111 * "file execute" entries.
112 */
113 if (new_entry->cond->transit &&
114 !(new_entry->type == TOMOYO_TYPE_PATH_ACL &&
115 container_of(new_entry, struct tomoyo_path_acl, head)
116 ->perm == 1 << TOMOYO_TYPE_EXECUTE))
117 goto out;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900118 }
Tetsuo Handa237ab452010-06-12 20:46:22 +0900119 if (mutex_lock_interruptible(&tomoyo_policy_lock))
Tetsuo Handa2066a362011-07-08 13:21:37 +0900120 goto out;
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900121 list_for_each_entry_rcu(entry, list, list) {
Tetsuo Handaf9732ea2011-09-25 17:50:23 +0900122 if (entry->is_deleted == TOMOYO_GC_IN_PROGRESS)
123 continue;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900124 if (!tomoyo_same_acl_head(entry, new_entry) ||
125 !check_duplicate(entry, new_entry))
Tetsuo Handa237ab452010-06-12 20:46:22 +0900126 continue;
127 if (merge_duplicate)
128 entry->is_deleted = merge_duplicate(entry, new_entry,
129 is_delete);
130 else
131 entry->is_deleted = is_delete;
132 error = 0;
133 break;
134 }
135 if (error && !is_delete) {
136 entry = tomoyo_commit_ok(new_entry, size);
137 if (entry) {
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900138 list_add_tail_rcu(&entry->list, list);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900139 error = 0;
140 }
141 }
142 mutex_unlock(&tomoyo_policy_lock);
Tetsuo Handa2066a362011-07-08 13:21:37 +0900143out:
144 tomoyo_put_condition(new_entry->cond);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900145 return error;
146}
147
Tetsuo Handa32997142011-06-26 23:19:28 +0900148/**
149 * tomoyo_check_acl - Do permission check.
150 *
151 * @r: Pointer to "struct tomoyo_request_info".
152 * @check_entry: Callback function to check type specific parameters.
153 *
154 * Returns 0 on success, negative value otherwise.
155 *
156 * Caller holds tomoyo_read_lock().
157 */
Tetsuo Handa99a85252010-06-16 16:22:51 +0900158void tomoyo_check_acl(struct tomoyo_request_info *r,
Tetsuo Handa484ca792010-07-29 14:29:55 +0900159 bool (*check_entry) (struct tomoyo_request_info *,
Tetsuo Handa99a85252010-06-16 16:22:51 +0900160 const struct tomoyo_acl_info *))
161{
162 const struct tomoyo_domain_info *domain = r->domain;
163 struct tomoyo_acl_info *ptr;
Tetsuo Handa32997142011-06-26 23:19:28 +0900164 bool retried = false;
165 const struct list_head *list = &domain->acl_info_list;
Tetsuo Handa99a85252010-06-16 16:22:51 +0900166
Tetsuo Handa32997142011-06-26 23:19:28 +0900167retry:
168 list_for_each_entry_rcu(ptr, list, list) {
Tetsuo Handa99a85252010-06-16 16:22:51 +0900169 if (ptr->is_deleted || ptr->type != r->param_type)
170 continue;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900171 if (!check_entry(r, ptr))
172 continue;
173 if (!tomoyo_condition(r, ptr->cond))
174 continue;
Tetsuo Handa1f067a62011-09-10 15:24:56 +0900175 r->matched_acl = ptr;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900176 r->granted = true;
177 return;
Tetsuo Handa99a85252010-06-16 16:22:51 +0900178 }
Tetsuo Handa32997142011-06-26 23:19:28 +0900179 if (!retried) {
180 retried = true;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900181 list = &domain->ns->acl_group[domain->group];
Tetsuo Handa32997142011-06-26 23:19:28 +0900182 goto retry;
183 }
Tetsuo Handa99a85252010-06-16 16:22:51 +0900184 r->granted = false;
185}
186
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900187/* The list for "struct tomoyo_domain_info". */
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900188LIST_HEAD(tomoyo_domain_list);
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900189
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900190/**
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900191 * tomoyo_last_word - Get last component of a domainname.
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900192 *
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900193 * @name: Domainname to check.
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900194 *
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900195 * Returns the last word of @domainname.
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900196 */
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900197static const char *tomoyo_last_word(const char *name)
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900198{
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900199 const char *cp = strrchr(name, ' ');
200 if (cp)
201 return cp + 1;
202 return name;
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900203}
204
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900205/**
206 * tomoyo_same_transition_control - Check for duplicated "struct tomoyo_transition_control" entry.
207 *
208 * @a: Pointer to "struct tomoyo_acl_head".
209 * @b: Pointer to "struct tomoyo_acl_head".
210 *
211 * Returns true if @a == @b, false otherwise.
212 */
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900213static bool tomoyo_same_transition_control(const struct tomoyo_acl_head *a,
214 const struct tomoyo_acl_head *b)
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +0900215{
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900216 const struct tomoyo_transition_control *p1 = container_of(a,
217 typeof(*p1),
218 head);
219 const struct tomoyo_transition_control *p2 = container_of(b,
220 typeof(*p2),
221 head);
222 return p1->type == p2->type && p1->is_last_name == p2->is_last_name
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +0900223 && p1->domainname == p2->domainname
224 && p1->program == p2->program;
225}
226
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900227/**
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900228 * tomoyo_write_transition_control - Write "struct tomoyo_transition_control" list.
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900229 *
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900230 * @param: Pointer to "struct tomoyo_acl_param".
231 * @type: Type of this entry.
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900232 *
233 * Returns 0 on success, negative value otherwise.
234 */
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900235int tomoyo_write_transition_control(struct tomoyo_acl_param *param,
236 const u8 type)
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900237{
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900238 struct tomoyo_transition_control e = { .type = type };
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900239 int error = param->is_delete ? -ENOENT : -ENOMEM;
240 char *program = param->data;
241 char *domainname = strstr(program, " from ");
242 if (domainname) {
243 *domainname = '\0';
244 domainname += 6;
245 } else if (type == TOMOYO_TRANSITION_CONTROL_NO_KEEP ||
246 type == TOMOYO_TRANSITION_CONTROL_KEEP) {
247 domainname = program;
248 program = NULL;
249 }
Tetsuo Handa0d2171d2011-06-26 23:17:46 +0900250 if (program && strcmp(program, "any")) {
Tetsuo Handa75093152010-06-16 16:23:55 +0900251 if (!tomoyo_correct_path(program))
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900252 return -EINVAL;
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900253 e.program = tomoyo_get_name(program);
254 if (!e.program)
Tetsuo Handaca0b7df2010-02-07 20:23:59 +0900255 goto out;
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900256 }
Tetsuo Handa0d2171d2011-06-26 23:17:46 +0900257 if (domainname && strcmp(domainname, "any")) {
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900258 if (!tomoyo_correct_domain(domainname)) {
259 if (!tomoyo_correct_path(domainname))
260 goto out;
261 e.is_last_name = true;
262 }
263 e.domainname = tomoyo_get_name(domainname);
264 if (!e.domainname)
265 goto out;
266 }
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900267 param->list = &param->ns->policy_list[TOMOYO_ID_TRANSITION_CONTROL];
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900268 error = tomoyo_update_policy(&e.head, sizeof(e), param,
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900269 tomoyo_same_transition_control);
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900270out:
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900271 tomoyo_put_name(e.domainname);
272 tomoyo_put_name(e.program);
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900273 return error;
274}
275
276/**
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900277 * tomoyo_scan_transition - Try to find specific domain transition type.
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900278 *
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900279 * @list: Pointer to "struct list_head".
280 * @domainname: The name of current domain.
281 * @program: The name of requested program.
282 * @last_name: The last component of @domainname.
283 * @type: One of values in "enum tomoyo_transition_type".
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900284 *
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900285 * Returns true if found one, false otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900286 *
287 * Caller holds tomoyo_read_lock().
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900288 */
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900289static inline bool tomoyo_scan_transition
290(const struct list_head *list, const struct tomoyo_path_info *domainname,
291 const struct tomoyo_path_info *program, const char *last_name,
292 const enum tomoyo_transition_type type)
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900293{
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900294 const struct tomoyo_transition_control *ptr;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900295 list_for_each_entry_rcu(ptr, list, head.list) {
296 if (ptr->head.is_deleted || ptr->type != type)
297 continue;
298 if (ptr->domainname) {
299 if (!ptr->is_last_name) {
300 if (ptr->domainname != domainname)
301 continue;
302 } else {
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900303 /*
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900304 * Use direct strcmp() since this is
305 * unlikely used.
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900306 */
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900307 if (strcmp(ptr->domainname->name, last_name))
308 continue;
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900309 }
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900310 }
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900311 if (ptr->program && tomoyo_pathcmp(ptr->program, program))
312 continue;
313 return true;
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900314 }
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900315 return false;
316}
317
318/**
319 * tomoyo_transition_type - Get domain transition type.
320 *
321 * @ns: Pointer to "struct tomoyo_policy_namespace".
322 * @domainname: The name of current domain.
323 * @program: The name of requested program.
324 *
325 * Returns TOMOYO_TRANSITION_CONTROL_TRANSIT if executing @program causes
326 * domain transition across namespaces, TOMOYO_TRANSITION_CONTROL_INITIALIZE if
327 * executing @program reinitializes domain transition within that namespace,
328 * TOMOYO_TRANSITION_CONTROL_KEEP if executing @program stays at @domainname ,
329 * others otherwise.
330 *
331 * Caller holds tomoyo_read_lock().
332 */
333static enum tomoyo_transition_type tomoyo_transition_type
334(const struct tomoyo_policy_namespace *ns,
335 const struct tomoyo_path_info *domainname,
336 const struct tomoyo_path_info *program)
337{
338 const char *last_name = tomoyo_last_word(domainname->name);
339 enum tomoyo_transition_type type = TOMOYO_TRANSITION_CONTROL_NO_RESET;
340 while (type < TOMOYO_MAX_TRANSITION_TYPE) {
341 const struct list_head * const list =
342 &ns->policy_list[TOMOYO_ID_TRANSITION_CONTROL];
343 if (!tomoyo_scan_transition(list, domainname, program,
344 last_name, type)) {
345 type++;
346 continue;
347 }
348 if (type != TOMOYO_TRANSITION_CONTROL_NO_RESET &&
349 type != TOMOYO_TRANSITION_CONTROL_NO_INITIALIZE)
350 break;
351 /*
352 * Do not check for reset_domain if no_reset_domain matched.
353 * Do not check for initialize_domain if no_initialize_domain
354 * matched.
355 */
356 type++;
357 type++;
358 }
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900359 return type;
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900360}
361
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900362/**
363 * tomoyo_same_aggregator - Check for duplicated "struct tomoyo_aggregator" entry.
364 *
365 * @a: Pointer to "struct tomoyo_acl_head".
366 * @b: Pointer to "struct tomoyo_acl_head".
367 *
368 * Returns true if @a == @b, false otherwise.
369 */
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900370static bool tomoyo_same_aggregator(const struct tomoyo_acl_head *a,
371 const struct tomoyo_acl_head *b)
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +0900372{
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900373 const struct tomoyo_aggregator *p1 = container_of(a, typeof(*p1),
374 head);
375 const struct tomoyo_aggregator *p2 = container_of(b, typeof(*p2),
376 head);
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +0900377 return p1->original_name == p2->original_name &&
378 p1->aggregated_name == p2->aggregated_name;
379}
380
Tetsuo Handa10843072010-06-03 20:38:03 +0900381/**
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900382 * tomoyo_write_aggregator - Write "struct tomoyo_aggregator" list.
Tetsuo Handa10843072010-06-03 20:38:03 +0900383 *
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900384 * @param: Pointer to "struct tomoyo_acl_param".
Tetsuo Handa10843072010-06-03 20:38:03 +0900385 *
386 * Returns 0 on success, negative value otherwise.
387 *
388 * Caller holds tomoyo_read_lock().
389 */
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900390int tomoyo_write_aggregator(struct tomoyo_acl_param *param)
Tetsuo Handa10843072010-06-03 20:38:03 +0900391{
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900392 struct tomoyo_aggregator e = { };
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900393 int error = param->is_delete ? -ENOENT : -ENOMEM;
394 const char *original_name = tomoyo_read_token(param);
395 const char *aggregated_name = tomoyo_read_token(param);
396 if (!tomoyo_correct_word(original_name) ||
Tetsuo Handa75093152010-06-16 16:23:55 +0900397 !tomoyo_correct_path(aggregated_name))
Tetsuo Handa10843072010-06-03 20:38:03 +0900398 return -EINVAL;
399 e.original_name = tomoyo_get_name(original_name);
400 e.aggregated_name = tomoyo_get_name(aggregated_name);
401 if (!e.original_name || !e.aggregated_name ||
402 e.aggregated_name->is_patterned) /* No patterns allowed. */
403 goto out;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900404 param->list = &param->ns->policy_list[TOMOYO_ID_AGGREGATOR];
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900405 error = tomoyo_update_policy(&e.head, sizeof(e), param,
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900406 tomoyo_same_aggregator);
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900407out:
Tetsuo Handa10843072010-06-03 20:38:03 +0900408 tomoyo_put_name(e.original_name);
409 tomoyo_put_name(e.aggregated_name);
410 return error;
411}
412
413/**
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900414 * tomoyo_find_namespace - Find specified namespace.
415 *
416 * @name: Name of namespace to find.
417 * @len: Length of @name.
418 *
419 * Returns pointer to "struct tomoyo_policy_namespace" if found,
420 * NULL otherwise.
421 *
422 * Caller holds tomoyo_read_lock().
423 */
424static struct tomoyo_policy_namespace *tomoyo_find_namespace
425(const char *name, const unsigned int len)
426{
427 struct tomoyo_policy_namespace *ns;
428 list_for_each_entry(ns, &tomoyo_namespace_list, namespace_list) {
429 if (strncmp(name, ns->name, len) ||
430 (name[len] && name[len] != ' '))
431 continue;
432 return ns;
433 }
434 return NULL;
435}
436
437/**
438 * tomoyo_assign_namespace - Create a new namespace.
439 *
440 * @domainname: Name of namespace to create.
441 *
442 * Returns pointer to "struct tomoyo_policy_namespace" on success,
443 * NULL otherwise.
444 *
445 * Caller holds tomoyo_read_lock().
446 */
447struct tomoyo_policy_namespace *tomoyo_assign_namespace(const char *domainname)
448{
449 struct tomoyo_policy_namespace *ptr;
450 struct tomoyo_policy_namespace *entry;
451 const char *cp = domainname;
452 unsigned int len = 0;
453 while (*cp && *cp++ != ' ')
454 len++;
455 ptr = tomoyo_find_namespace(domainname, len);
456 if (ptr)
457 return ptr;
458 if (len >= TOMOYO_EXEC_TMPSIZE - 10 || !tomoyo_domain_def(domainname))
459 return NULL;
460 entry = kzalloc(sizeof(*entry) + len + 1, GFP_NOFS);
461 if (!entry)
462 return NULL;
463 if (mutex_lock_interruptible(&tomoyo_policy_lock))
464 goto out;
465 ptr = tomoyo_find_namespace(domainname, len);
466 if (!ptr && tomoyo_memory_ok(entry)) {
467 char *name = (char *) (entry + 1);
468 ptr = entry;
469 memmove(name, domainname, len);
470 name[len] = '\0';
471 entry->name = name;
472 tomoyo_init_policy_namespace(entry);
473 entry = NULL;
474 }
475 mutex_unlock(&tomoyo_policy_lock);
476out:
477 kfree(entry);
478 return ptr;
479}
480
481/**
482 * tomoyo_namespace_jump - Check for namespace jump.
483 *
484 * @domainname: Name of domain.
485 *
486 * Returns true if namespace differs, false otherwise.
487 */
488static bool tomoyo_namespace_jump(const char *domainname)
489{
490 const char *namespace = tomoyo_current_namespace()->name;
491 const int len = strlen(namespace);
492 return strncmp(domainname, namespace, len) ||
493 (domainname[len] && domainname[len] != ' ');
494}
495
496/**
497 * tomoyo_assign_domain - Create a domain or a namespace.
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900498 *
499 * @domainname: The name of domain.
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900500 * @transit: True if transit to domain found or created.
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900501 *
502 * Returns pointer to "struct tomoyo_domain_info" on success, NULL otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900503 *
504 * Caller holds tomoyo_read_lock().
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900505 */
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900506struct tomoyo_domain_info *tomoyo_assign_domain(const char *domainname,
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900507 const bool transit)
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900508{
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900509 struct tomoyo_domain_info e = { };
510 struct tomoyo_domain_info *entry = tomoyo_find_domain(domainname);
511 bool created = false;
512 if (entry) {
513 if (transit) {
514 /*
515 * Since namespace is created at runtime, profiles may
516 * not be created by the moment the process transits to
517 * that domain. Do not perform domain transition if
518 * profile for that domain is not yet created.
519 */
Tetsuo Handae00fb3f2011-09-27 11:48:53 +0900520 if (tomoyo_policy_loaded &&
521 !entry->ns->profile_ptr[entry->profile])
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900522 return NULL;
523 }
524 return entry;
525 }
526 /* Requested domain does not exist. */
527 /* Don't create requested domain if domainname is invalid. */
528 if (strlen(domainname) >= TOMOYO_EXEC_TMPSIZE - 10 ||
529 !tomoyo_correct_domain(domainname))
Tetsuo Handaca0b7df2010-02-07 20:23:59 +0900530 return NULL;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900531 /*
532 * Since definition of profiles and acl_groups may differ across
533 * namespaces, do not inherit "use_profile" and "use_group" settings
534 * by automatically creating requested domain upon domain transition.
535 */
536 if (transit && tomoyo_namespace_jump(domainname))
Tetsuo Handaca0b7df2010-02-07 20:23:59 +0900537 return NULL;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900538 e.ns = tomoyo_assign_namespace(domainname);
539 if (!e.ns)
540 return NULL;
541 /*
542 * "use_profile" and "use_group" settings for automatically created
543 * domains are inherited from current domain. These are 0 for manually
544 * created domains.
545 */
546 if (transit) {
547 const struct tomoyo_domain_info *domain = tomoyo_domain();
548 e.profile = domain->profile;
549 e.group = domain->group;
550 }
551 e.domainname = tomoyo_get_name(domainname);
552 if (!e.domainname)
553 return NULL;
Tetsuo Handa29282382010-05-06 00:18:15 +0900554 if (mutex_lock_interruptible(&tomoyo_policy_lock))
555 goto out;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900556 entry = tomoyo_find_domain(domainname);
557 if (!entry) {
558 entry = tomoyo_commit_ok(&e, sizeof(e));
559 if (entry) {
560 INIT_LIST_HEAD(&entry->acl_info_list);
561 list_add_tail_rcu(&entry->list, &tomoyo_domain_list);
562 created = true;
563 }
Tetsuo Handaca0b7df2010-02-07 20:23:59 +0900564 }
Tetsuo Handaf737d952010-01-03 21:16:32 +0900565 mutex_unlock(&tomoyo_policy_lock);
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900566out:
567 tomoyo_put_name(e.domainname);
568 if (entry && transit) {
569 if (created) {
570 struct tomoyo_request_info r;
571 tomoyo_init_request_info(&r, entry,
572 TOMOYO_MAC_FILE_EXECUTE);
573 r.granted = false;
574 tomoyo_write_log(&r, "use_profile %u\n",
575 entry->profile);
576 tomoyo_write_log(&r, "use_group %u\n", entry->group);
Tetsuo Handa778c4a42011-09-25 17:49:09 +0900577 tomoyo_update_stat(TOMOYO_STAT_POLICY_UPDATES);
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900578 }
579 }
580 return entry;
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900581}
582
583/**
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900584 * tomoyo_environ - Check permission for environment variable names.
585 *
586 * @ee: Pointer to "struct tomoyo_execve".
587 *
588 * Returns 0 on success, negative value otherwise.
589 */
590static int tomoyo_environ(struct tomoyo_execve *ee)
591{
592 struct tomoyo_request_info *r = &ee->r;
593 struct linux_binprm *bprm = ee->bprm;
594 /* env_page.data is allocated by tomoyo_dump_page(). */
595 struct tomoyo_page_dump env_page = { };
596 char *arg_ptr; /* Size is TOMOYO_EXEC_TMPSIZE bytes */
597 int arg_len = 0;
598 unsigned long pos = bprm->p;
599 int offset = pos % PAGE_SIZE;
600 int argv_count = bprm->argc;
601 int envp_count = bprm->envc;
602 int error = -ENOMEM;
603
604 ee->r.type = TOMOYO_MAC_ENVIRON;
605 ee->r.profile = r->domain->profile;
606 ee->r.mode = tomoyo_get_mode(r->domain->ns, ee->r.profile,
607 TOMOYO_MAC_ENVIRON);
608 if (!r->mode || !envp_count)
609 return 0;
610 arg_ptr = kzalloc(TOMOYO_EXEC_TMPSIZE, GFP_NOFS);
611 if (!arg_ptr)
612 goto out;
613 while (error == -ENOMEM) {
614 if (!tomoyo_dump_page(bprm, pos, &env_page))
615 goto out;
616 pos += PAGE_SIZE - offset;
617 /* Read. */
618 while (argv_count && offset < PAGE_SIZE) {
619 if (!env_page.data[offset++])
620 argv_count--;
621 }
622 if (argv_count) {
623 offset = 0;
624 continue;
625 }
626 while (offset < PAGE_SIZE) {
627 const unsigned char c = env_page.data[offset++];
628
629 if (c && arg_len < TOMOYO_EXEC_TMPSIZE - 10) {
630 if (c == '=') {
631 arg_ptr[arg_len++] = '\0';
632 } else if (c == '\\') {
633 arg_ptr[arg_len++] = '\\';
634 arg_ptr[arg_len++] = '\\';
635 } else if (c > ' ' && c < 127) {
636 arg_ptr[arg_len++] = c;
637 } else {
638 arg_ptr[arg_len++] = '\\';
639 arg_ptr[arg_len++] = (c >> 6) + '0';
640 arg_ptr[arg_len++]
641 = ((c >> 3) & 7) + '0';
642 arg_ptr[arg_len++] = (c & 7) + '0';
643 }
644 } else {
645 arg_ptr[arg_len] = '\0';
646 }
647 if (c)
648 continue;
649 if (tomoyo_env_perm(r, arg_ptr)) {
650 error = -EPERM;
651 break;
652 }
653 if (!--envp_count) {
654 error = 0;
655 break;
656 }
657 arg_len = 0;
658 }
659 offset = 0;
660 }
661out:
662 if (r->mode != TOMOYO_CONFIG_ENFORCING)
663 error = 0;
664 kfree(env_page.data);
665 kfree(arg_ptr);
666 return error;
667}
668
669/**
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900670 * tomoyo_find_next_domain - Find a domain.
671 *
Tetsuo Handa56f8c9bc2009-06-19 14:13:27 +0900672 * @bprm: Pointer to "struct linux_binprm".
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900673 *
674 * Returns 0 on success, negative value otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900675 *
676 * Caller holds tomoyo_read_lock().
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900677 */
Tetsuo Handa56f8c9bc2009-06-19 14:13:27 +0900678int tomoyo_find_next_domain(struct linux_binprm *bprm)
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900679{
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900680 struct tomoyo_domain_info *old_domain = tomoyo_domain();
681 struct tomoyo_domain_info *domain = NULL;
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900682 const char *original_name = bprm->filename;
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900683 int retval = -ENOMEM;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900684 bool reject_on_transition_failure = false;
Tetsuo Handaa8f76402011-09-10 15:27:12 +0900685 const struct tomoyo_path_info *candidate;
686 struct tomoyo_path_info exename;
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900687 struct tomoyo_execve *ee = kzalloc(sizeof(*ee), GFP_NOFS);
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900688
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900689 if (!ee)
690 return -ENOMEM;
691 ee->tmp = kzalloc(TOMOYO_EXEC_TMPSIZE, GFP_NOFS);
692 if (!ee->tmp) {
693 kfree(ee);
694 return -ENOMEM;
695 }
696 /* ee->dump->data is allocated by tomoyo_dump_page(). */
697 tomoyo_init_request_info(&ee->r, NULL, TOMOYO_MAC_FILE_EXECUTE);
698 ee->r.ee = ee;
699 ee->bprm = bprm;
700 ee->r.obj = &ee->obj;
701 ee->obj.path1 = bprm->file->f_path;
Tetsuo Handa0617c7f2010-06-21 09:58:53 +0900702 /* Get symlink's pathname of program. */
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900703 retval = -ENOENT;
Tetsuo Handaa8f76402011-09-10 15:27:12 +0900704 exename.name = tomoyo_realpath_nofollow(original_name);
705 if (!exename.name)
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900706 goto out;
Tetsuo Handaa8f76402011-09-10 15:27:12 +0900707 tomoyo_fill_path_info(&exename);
708retry:
Tetsuo Handa10843072010-06-03 20:38:03 +0900709 /* Check 'aggregator' directive. */
710 {
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900711 struct tomoyo_aggregator *ptr;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900712 struct list_head *list =
713 &old_domain->ns->policy_list[TOMOYO_ID_AGGREGATOR];
714 /* Check 'aggregator' directive. */
Tetsuo Handaa8f76402011-09-10 15:27:12 +0900715 candidate = &exename;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900716 list_for_each_entry_rcu(ptr, list, head.list) {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900717 if (ptr->head.is_deleted ||
Tetsuo Handaa8f76402011-09-10 15:27:12 +0900718 !tomoyo_path_matches_pattern(&exename,
Tetsuo Handa10843072010-06-03 20:38:03 +0900719 ptr->original_name))
720 continue;
Tetsuo Handaa8f76402011-09-10 15:27:12 +0900721 candidate = ptr->aggregated_name;
Tetsuo Handa10843072010-06-03 20:38:03 +0900722 break;
723 }
724 }
725
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900726 /* Check execute permission. */
Tetsuo Handa6bce98e2011-09-16 22:54:25 +0900727 retval = tomoyo_execute_permission(&ee->r, candidate);
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900728 if (retval == TOMOYO_RETRY_REQUEST)
729 goto retry;
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900730 if (retval < 0)
731 goto out;
Tetsuo Handa484ca792010-07-29 14:29:55 +0900732 /*
733 * To be able to specify domainnames with wildcards, use the
734 * pathname specified in the policy (which may contain
735 * wildcard) rather than the pathname passed to execve()
736 * (which never contains wildcard).
737 */
Tetsuo Handaa8f76402011-09-10 15:27:12 +0900738 if (ee->r.param.path.matched_path)
739 candidate = ee->r.param.path.matched_path;
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900740
Tetsuo Handa6bce98e2011-09-16 22:54:25 +0900741 /*
742 * Check for domain transition preference if "file execute" matched.
743 * If preference is given, make do_execve() fail if domain transition
744 * has failed, for domain transition preference should be used with
745 * destination domain defined.
746 */
747 if (ee->transition) {
748 const char *domainname = ee->transition->name;
749 reject_on_transition_failure = true;
750 if (!strcmp(domainname, "keep"))
751 goto force_keep_domain;
752 if (!strcmp(domainname, "child"))
753 goto force_child_domain;
754 if (!strcmp(domainname, "reset"))
755 goto force_reset_domain;
756 if (!strcmp(domainname, "initialize"))
757 goto force_initialize_domain;
758 if (!strcmp(domainname, "parent")) {
759 char *cp;
760 strncpy(ee->tmp, old_domain->domainname->name,
761 TOMOYO_EXEC_TMPSIZE - 1);
762 cp = strrchr(ee->tmp, ' ');
763 if (cp)
764 *cp = '\0';
765 } else if (*domainname == '<')
766 strncpy(ee->tmp, domainname, TOMOYO_EXEC_TMPSIZE - 1);
767 else
768 snprintf(ee->tmp, TOMOYO_EXEC_TMPSIZE - 1, "%s %s",
769 old_domain->domainname->name, domainname);
770 goto force_jump_domain;
771 }
772 /*
773 * No domain transition preference specified.
774 * Calculate domain to transit to.
775 */
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900776 switch (tomoyo_transition_type(old_domain->ns, old_domain->domainname,
Tetsuo Handaa8f76402011-09-10 15:27:12 +0900777 candidate)) {
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900778 case TOMOYO_TRANSITION_CONTROL_RESET:
Tetsuo Handa6bce98e2011-09-16 22:54:25 +0900779force_reset_domain:
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900780 /* Transit to the root of specified namespace. */
Tetsuo Handaa8f76402011-09-10 15:27:12 +0900781 snprintf(ee->tmp, TOMOYO_EXEC_TMPSIZE - 1, "<%s>",
782 candidate->name);
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900783 /*
784 * Make do_execve() fail if domain transition across namespaces
785 * has failed.
786 */
787 reject_on_transition_failure = true;
788 break;
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900789 case TOMOYO_TRANSITION_CONTROL_INITIALIZE:
Tetsuo Handa6bce98e2011-09-16 22:54:25 +0900790force_initialize_domain:
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900791 /* Transit to the child of current namespace's root. */
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900792 snprintf(ee->tmp, TOMOYO_EXEC_TMPSIZE - 1, "%s %s",
Tetsuo Handaa8f76402011-09-10 15:27:12 +0900793 old_domain->ns->name, candidate->name);
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900794 break;
795 case TOMOYO_TRANSITION_CONTROL_KEEP:
Tetsuo Handa6bce98e2011-09-16 22:54:25 +0900796force_keep_domain:
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900797 /* Keep current domain. */
798 domain = old_domain;
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900799 break;
800 default:
801 if (old_domain == &tomoyo_kernel_domain &&
802 !tomoyo_policy_loaded) {
803 /*
804 * Needn't to transit from kernel domain before
805 * starting /sbin/init. But transit from kernel domain
806 * if executing initializers because they might start
807 * before /sbin/init.
808 */
809 domain = old_domain;
Tetsuo Handaa8f76402011-09-10 15:27:12 +0900810 break;
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900811 }
Tetsuo Handa6bce98e2011-09-16 22:54:25 +0900812force_child_domain:
Tetsuo Handaa8f76402011-09-10 15:27:12 +0900813 /* Normal domain transition. */
814 snprintf(ee->tmp, TOMOYO_EXEC_TMPSIZE - 1, "%s %s",
815 old_domain->domainname->name, candidate->name);
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900816 break;
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900817 }
Tetsuo Handa6bce98e2011-09-16 22:54:25 +0900818force_jump_domain:
Tetsuo Handa7c759642011-06-26 23:15:31 +0900819 if (!domain)
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900820 domain = tomoyo_assign_domain(ee->tmp, true);
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900821 if (domain)
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900822 retval = 0;
823 else if (reject_on_transition_failure) {
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900824 printk(KERN_WARNING "ERROR: Domain '%s' not ready.\n",
825 ee->tmp);
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900826 retval = -ENOMEM;
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900827 } else if (ee->r.mode == TOMOYO_CONFIG_ENFORCING)
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900828 retval = -ENOMEM;
829 else {
830 retval = 0;
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900831 if (!old_domain->flags[TOMOYO_DIF_TRANSITION_FAILED]) {
832 old_domain->flags[TOMOYO_DIF_TRANSITION_FAILED] = true;
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900833 ee->r.granted = false;
834 tomoyo_write_log(&ee->r, "%s", tomoyo_dif
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900835 [TOMOYO_DIF_TRANSITION_FAILED]);
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900836 printk(KERN_WARNING
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900837 "ERROR: Domain '%s' not defined.\n", ee->tmp);
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900838 }
839 }
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900840 out:
Tetsuo Handa56f8c9bc2009-06-19 14:13:27 +0900841 if (!domain)
842 domain = old_domain;
Tetsuo Handaec8e6a42010-02-11 09:43:20 +0900843 /* Update reference count on "struct tomoyo_domain_info". */
844 atomic_inc(&domain->users);
Tetsuo Handa56f8c9bc2009-06-19 14:13:27 +0900845 bprm->cred->security = domain;
Tetsuo Handaa8f76402011-09-10 15:27:12 +0900846 kfree(exename.name);
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900847 if (!retval) {
848 ee->r.domain = domain;
849 retval = tomoyo_environ(ee);
850 }
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900851 kfree(ee->tmp);
852 kfree(ee->dump.data);
853 kfree(ee);
Kentaro Takeda26a2a1c2009-02-05 17:18:15 +0900854 return retval;
855}
Tetsuo Handa5b636852011-07-08 13:24:54 +0900856
857/**
858 * tomoyo_dump_page - Dump a page to buffer.
859 *
860 * @bprm: Pointer to "struct linux_binprm".
861 * @pos: Location to dump.
862 * @dump: Poiner to "struct tomoyo_page_dump".
863 *
864 * Returns true on success, false otherwise.
865 */
866bool tomoyo_dump_page(struct linux_binprm *bprm, unsigned long pos,
867 struct tomoyo_page_dump *dump)
868{
869 struct page *page;
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900870
871 /* dump->data is released by tomoyo_find_next_domain(). */
Tetsuo Handa5b636852011-07-08 13:24:54 +0900872 if (!dump->data) {
873 dump->data = kzalloc(PAGE_SIZE, GFP_NOFS);
874 if (!dump->data)
875 return false;
876 }
877 /* Same with get_arg_page(bprm, pos, 0) in fs/exec.c */
878#ifdef CONFIG_MMU
Dave Hansen1e987792016-02-12 13:01:54 -0800879 /*
880 * This is called at execve() time in order to dig around
881 * in the argv/environment of the new proceess
882 * (represented by bprm). 'current' is the process doing
883 * the execve().
884 */
885 if (get_user_pages_remote(current, bprm->mm, pos, 1,
Lorenzo Stoakes5b56d492016-12-14 15:06:52 -0800886 FOLL_FORCE, &page, NULL, NULL) <= 0)
Tetsuo Handa5b636852011-07-08 13:24:54 +0900887 return false;
888#else
889 page = bprm->page[pos / PAGE_SIZE];
890#endif
891 if (page != dump->page) {
892 const unsigned int offset = pos % PAGE_SIZE;
893 /*
894 * Maybe kmap()/kunmap() should be used here.
895 * But remove_arg_zero() uses kmap_atomic()/kunmap_atomic().
896 * So do I.
897 */
Cong Wangc58e0372011-11-25 23:26:35 +0800898 char *kaddr = kmap_atomic(page);
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900899
Tetsuo Handa5b636852011-07-08 13:24:54 +0900900 dump->page = page;
901 memcpy(dump->data + offset, kaddr + offset,
902 PAGE_SIZE - offset);
Cong Wangc58e0372011-11-25 23:26:35 +0800903 kunmap_atomic(kaddr);
Tetsuo Handa5b636852011-07-08 13:24:54 +0900904 }
905 /* Same with put_arg_page(page) in fs/exec.c */
906#ifdef CONFIG_MMU
907 put_page(page);
908#endif
909 return true;
910}