blob: 67e65c7dde706aa3261f24d9302ca2769d9e4f41 [file] [log] [blame]
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001/*
2 * security/tomoyo/file.c
3 *
Tetsuo Handac3ef1502010-05-17 10:12:46 +09004 * Pathname restriction functions.
Kentaro Takedab69a54e2009-02-05 17:18:14 +09005 *
Tetsuo Handac3ef1502010-05-17 10:12:46 +09006 * Copyright (C) 2005-2010 NTT DATA CORPORATION
Kentaro Takedab69a54e2009-02-05 17:18:14 +09007 */
8
9#include "common.h"
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Kentaro Takedab69a54e2009-02-05 17:18:14 +090011
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +090012/* Keyword array for operations with one pathname. */
Tetsuo Handa71c28232010-06-16 16:26:38 +090013const char *tomoyo_path_keyword[TOMOYO_MAX_PATH_OPERATION] = {
Tetsuo Handa7ef61232010-02-16 08:03:30 +090014 [TOMOYO_TYPE_READ_WRITE] = "read/write",
15 [TOMOYO_TYPE_EXECUTE] = "execute",
16 [TOMOYO_TYPE_READ] = "read",
17 [TOMOYO_TYPE_WRITE] = "write",
Tetsuo Handa7ef61232010-02-16 08:03:30 +090018 [TOMOYO_TYPE_UNLINK] = "unlink",
Tetsuo Handa7ef61232010-02-16 08:03:30 +090019 [TOMOYO_TYPE_RMDIR] = "rmdir",
Tetsuo Handa7ef61232010-02-16 08:03:30 +090020 [TOMOYO_TYPE_TRUNCATE] = "truncate",
21 [TOMOYO_TYPE_SYMLINK] = "symlink",
22 [TOMOYO_TYPE_REWRITE] = "rewrite",
Tetsuo Handa7ef61232010-02-16 08:03:30 +090023 [TOMOYO_TYPE_CHROOT] = "chroot",
Tetsuo Handa7ef61232010-02-16 08:03:30 +090024 [TOMOYO_TYPE_UMOUNT] = "unmount",
Kentaro Takedab69a54e2009-02-05 17:18:14 +090025};
26
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +090027/* Keyword array for operations with one pathname and three numbers. */
Tetsuo Handa71c28232010-06-16 16:26:38 +090028const char *tomoyo_mkdev_keyword[TOMOYO_MAX_MKDEV_OPERATION] = {
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +090029 [TOMOYO_TYPE_MKBLOCK] = "mkblock",
30 [TOMOYO_TYPE_MKCHAR] = "mkchar",
31};
32
33/* Keyword array for operations with two pathnames. */
Tetsuo Handa71c28232010-06-16 16:26:38 +090034const char *tomoyo_path2_keyword[TOMOYO_MAX_PATH2_OPERATION] = {
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +090035 [TOMOYO_TYPE_LINK] = "link",
36 [TOMOYO_TYPE_RENAME] = "rename",
Tetsuo Handa7ef61232010-02-16 08:03:30 +090037 [TOMOYO_TYPE_PIVOT_ROOT] = "pivot_root",
Kentaro Takedab69a54e2009-02-05 17:18:14 +090038};
39
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +090040/* Keyword array for operations with one pathname and one number. */
Tetsuo Handa71c28232010-06-16 16:26:38 +090041const char *tomoyo_path_number_keyword[TOMOYO_MAX_PATH_NUMBER_OPERATION] = {
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +090042 [TOMOYO_TYPE_CREATE] = "create",
43 [TOMOYO_TYPE_MKDIR] = "mkdir",
44 [TOMOYO_TYPE_MKFIFO] = "mkfifo",
45 [TOMOYO_TYPE_MKSOCK] = "mksock",
46 [TOMOYO_TYPE_IOCTL] = "ioctl",
47 [TOMOYO_TYPE_CHMOD] = "chmod",
48 [TOMOYO_TYPE_CHOWN] = "chown",
49 [TOMOYO_TYPE_CHGRP] = "chgrp",
50};
51
Tetsuo Handa57c25902010-06-03 20:38:44 +090052static const u8 tomoyo_p2mac[TOMOYO_MAX_PATH_OPERATION] = {
53 [TOMOYO_TYPE_READ_WRITE] = TOMOYO_MAC_FILE_OPEN,
54 [TOMOYO_TYPE_EXECUTE] = TOMOYO_MAC_FILE_EXECUTE,
55 [TOMOYO_TYPE_READ] = TOMOYO_MAC_FILE_OPEN,
56 [TOMOYO_TYPE_WRITE] = TOMOYO_MAC_FILE_OPEN,
57 [TOMOYO_TYPE_UNLINK] = TOMOYO_MAC_FILE_UNLINK,
58 [TOMOYO_TYPE_RMDIR] = TOMOYO_MAC_FILE_RMDIR,
59 [TOMOYO_TYPE_TRUNCATE] = TOMOYO_MAC_FILE_TRUNCATE,
60 [TOMOYO_TYPE_SYMLINK] = TOMOYO_MAC_FILE_SYMLINK,
61 [TOMOYO_TYPE_REWRITE] = TOMOYO_MAC_FILE_REWRITE,
62 [TOMOYO_TYPE_CHROOT] = TOMOYO_MAC_FILE_CHROOT,
63 [TOMOYO_TYPE_UMOUNT] = TOMOYO_MAC_FILE_UMOUNT,
64};
65
Tetsuo Handa75093152010-06-16 16:23:55 +090066static const u8 tomoyo_pnnn2mac[TOMOYO_MAX_MKDEV_OPERATION] = {
Tetsuo Handa57c25902010-06-03 20:38:44 +090067 [TOMOYO_TYPE_MKBLOCK] = TOMOYO_MAC_FILE_MKBLOCK,
68 [TOMOYO_TYPE_MKCHAR] = TOMOYO_MAC_FILE_MKCHAR,
69};
70
71static const u8 tomoyo_pp2mac[TOMOYO_MAX_PATH2_OPERATION] = {
72 [TOMOYO_TYPE_LINK] = TOMOYO_MAC_FILE_LINK,
73 [TOMOYO_TYPE_RENAME] = TOMOYO_MAC_FILE_RENAME,
74 [TOMOYO_TYPE_PIVOT_ROOT] = TOMOYO_MAC_FILE_PIVOT_ROOT,
75};
76
77static const u8 tomoyo_pn2mac[TOMOYO_MAX_PATH_NUMBER_OPERATION] = {
78 [TOMOYO_TYPE_CREATE] = TOMOYO_MAC_FILE_CREATE,
79 [TOMOYO_TYPE_MKDIR] = TOMOYO_MAC_FILE_MKDIR,
80 [TOMOYO_TYPE_MKFIFO] = TOMOYO_MAC_FILE_MKFIFO,
81 [TOMOYO_TYPE_MKSOCK] = TOMOYO_MAC_FILE_MKSOCK,
82 [TOMOYO_TYPE_IOCTL] = TOMOYO_MAC_FILE_IOCTL,
83 [TOMOYO_TYPE_CHMOD] = TOMOYO_MAC_FILE_CHMOD,
84 [TOMOYO_TYPE_CHOWN] = TOMOYO_MAC_FILE_CHOWN,
85 [TOMOYO_TYPE_CHGRP] = TOMOYO_MAC_FILE_CHGRP,
86};
87
Tetsuo Handa7762fbf2010-05-10 17:30:26 +090088void tomoyo_put_name_union(struct tomoyo_name_union *ptr)
89{
90 if (!ptr)
91 return;
92 if (ptr->is_group)
93 tomoyo_put_path_group(ptr->group);
94 else
95 tomoyo_put_name(ptr->filename);
96}
97
98bool tomoyo_compare_name_union(const struct tomoyo_path_info *name,
99 const struct tomoyo_name_union *ptr)
100{
101 if (ptr->is_group)
Tetsuo Handa3f629632010-06-03 20:37:26 +0900102 return tomoyo_path_matches_group(name, ptr->group);
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900103 return tomoyo_path_matches_pattern(name, ptr->filename);
104}
105
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900106void tomoyo_put_number_union(struct tomoyo_number_union *ptr)
107{
108 if (ptr && ptr->is_group)
109 tomoyo_put_number_group(ptr->group);
110}
111
112bool tomoyo_compare_number_union(const unsigned long value,
113 const struct tomoyo_number_union *ptr)
114{
115 if (ptr->is_group)
116 return tomoyo_number_matches_group(value, value, ptr->group);
117 return value >= ptr->values[0] && value <= ptr->values[1];
118}
119
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900120static void tomoyo_add_slash(struct tomoyo_path_info *buf)
121{
122 if (buf->is_dir)
123 return;
124 /*
125 * This is OK because tomoyo_encode() reserves space for appending "/".
126 */
127 strcat((char *) buf->name, "/");
128 tomoyo_fill_path_info(buf);
129}
130
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900131/**
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900132 * tomoyo_strendswith - Check whether the token ends with the given token.
133 *
134 * @name: The token to check.
135 * @tail: The token to find.
136 *
137 * Returns true if @name ends with @tail, false otherwise.
138 */
139static bool tomoyo_strendswith(const char *name, const char *tail)
140{
141 int len;
142
143 if (!name || !tail)
144 return false;
145 len = strlen(name) - strlen(tail);
146 return len >= 0 && !strcmp(name + len, tail);
147}
148
149/**
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900150 * tomoyo_get_realpath - Get realpath.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900151 *
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900152 * @buf: Pointer to "struct tomoyo_path_info".
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900153 * @path: Pointer to "struct path".
154 *
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900155 * Returns true on success, false otherwise.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900156 */
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900157static bool tomoyo_get_realpath(struct tomoyo_path_info *buf, struct path *path)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900158{
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900159 buf->name = tomoyo_realpath_from_path(path);
160 if (buf->name) {
161 tomoyo_fill_path_info(buf);
162 return true;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900163 }
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900164 return false;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900165}
166
Tetsuo Handa99a85252010-06-16 16:22:51 +0900167/**
168 * tomoyo_audit_path_log - Audit path request log.
169 *
170 * @r: Pointer to "struct tomoyo_request_info".
171 *
172 * Returns 0 on success, negative value otherwise.
173 */
174static int tomoyo_audit_path_log(struct tomoyo_request_info *r)
175{
176 const char *operation = tomoyo_path_keyword[r->param.path.operation];
177 const struct tomoyo_path_info *filename = r->param.path.filename;
178 if (r->granted)
179 return 0;
180 tomoyo_warn_log(r, "%s %s", operation, filename->name);
181 return tomoyo_supervisor(r, "allow_%s %s\n", operation,
182 tomoyo_file_pattern(filename));
183}
184
185/**
186 * tomoyo_audit_path2_log - Audit path/path request log.
187 *
188 * @r: Pointer to "struct tomoyo_request_info".
189 *
190 * Returns 0 on success, negative value otherwise.
191 */
192static int tomoyo_audit_path2_log(struct tomoyo_request_info *r)
193{
194 const char *operation = tomoyo_path2_keyword[r->param.path2.operation];
195 const struct tomoyo_path_info *filename1 = r->param.path2.filename1;
196 const struct tomoyo_path_info *filename2 = r->param.path2.filename2;
197 if (r->granted)
198 return 0;
199 tomoyo_warn_log(r, "%s %s %s", operation, filename1->name,
200 filename2->name);
201 return tomoyo_supervisor(r, "allow_%s %s %s\n", operation,
202 tomoyo_file_pattern(filename1),
203 tomoyo_file_pattern(filename2));
204}
205
206/**
207 * tomoyo_audit_mkdev_log - Audit path/number/number/number request log.
208 *
209 * @r: Pointer to "struct tomoyo_request_info".
210 *
211 * Returns 0 on success, negative value otherwise.
212 */
213static int tomoyo_audit_mkdev_log(struct tomoyo_request_info *r)
214{
Tetsuo Handa71c28232010-06-16 16:26:38 +0900215 const char *operation = tomoyo_mkdev_keyword[r->param.mkdev.operation];
Tetsuo Handa99a85252010-06-16 16:22:51 +0900216 const struct tomoyo_path_info *filename = r->param.mkdev.filename;
217 const unsigned int major = r->param.mkdev.major;
218 const unsigned int minor = r->param.mkdev.minor;
219 const unsigned int mode = r->param.mkdev.mode;
220 if (r->granted)
221 return 0;
222 tomoyo_warn_log(r, "%s %s 0%o %u %u", operation, filename->name, mode,
223 major, minor);
224 return tomoyo_supervisor(r, "allow_%s %s 0%o %u %u\n", operation,
225 tomoyo_file_pattern(filename), mode, major,
226 minor);
227}
228
229/**
230 * tomoyo_audit_path_number_log - Audit path/number request log.
231 *
232 * @r: Pointer to "struct tomoyo_request_info".
233 * @error: Error code.
234 *
235 * Returns 0 on success, negative value otherwise.
236 */
237static int tomoyo_audit_path_number_log(struct tomoyo_request_info *r)
238{
239 const u8 type = r->param.path_number.operation;
240 u8 radix;
241 const struct tomoyo_path_info *filename = r->param.path_number.filename;
242 const char *operation = tomoyo_path_number_keyword[type];
243 char buffer[64];
244 if (r->granted)
245 return 0;
246 switch (type) {
247 case TOMOYO_TYPE_CREATE:
248 case TOMOYO_TYPE_MKDIR:
249 case TOMOYO_TYPE_MKFIFO:
250 case TOMOYO_TYPE_MKSOCK:
251 case TOMOYO_TYPE_CHMOD:
252 radix = TOMOYO_VALUE_TYPE_OCTAL;
253 break;
254 case TOMOYO_TYPE_IOCTL:
255 radix = TOMOYO_VALUE_TYPE_HEXADECIMAL;
256 break;
257 default:
258 radix = TOMOYO_VALUE_TYPE_DECIMAL;
259 break;
260 }
261 tomoyo_print_ulong(buffer, sizeof(buffer), r->param.path_number.number,
262 radix);
263 tomoyo_warn_log(r, "%s %s %s", operation, filename->name, buffer);
264 return tomoyo_supervisor(r, "allow_%s %s %s\n", operation,
265 tomoyo_file_pattern(filename), buffer);
266}
267
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900268static int tomoyo_update_path2_acl(const u8 type, const char *filename1,
269 const char *filename2,
270 struct tomoyo_domain_info *const domain,
271 const bool is_delete);
272static int tomoyo_update_path_acl(const u8 type, const char *filename,
273 struct tomoyo_domain_info *const domain,
274 const bool is_delete);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900275
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900276/*
277 * tomoyo_globally_readable_list is used for holding list of pathnames which
278 * are by default allowed to be open()ed for reading by any process.
279 *
280 * An entry is added by
281 *
282 * # echo 'allow_read /lib/libc-2.5.so' > \
283 * /sys/kernel/security/tomoyo/exception_policy
284 *
285 * and is deleted by
286 *
287 * # echo 'delete allow_read /lib/libc-2.5.so' > \
288 * /sys/kernel/security/tomoyo/exception_policy
289 *
290 * and all entries are retrieved by
291 *
292 * # grep ^allow_read /sys/kernel/security/tomoyo/exception_policy
293 *
294 * In the example above, any process is allowed to
295 * open("/lib/libc-2.5.so", O_RDONLY).
296 * One exception is, if the domain which current process belongs to is marked
297 * as "ignore_global_allow_read", current process can't do so unless explicitly
298 * given "allow_read /lib/libc-2.5.so" to the domain which current process
299 * belongs to.
300 */
Tetsuo Handa847b1732010-02-11 09:43:54 +0900301LIST_HEAD(tomoyo_globally_readable_list);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900302
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +0900303static bool tomoyo_same_globally_readable(const struct tomoyo_acl_head *a,
304 const struct tomoyo_acl_head *b)
305{
306 return container_of(a, struct tomoyo_globally_readable_file_entry,
307 head)->filename ==
308 container_of(b, struct tomoyo_globally_readable_file_entry,
309 head)->filename;
310}
311
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900312/**
313 * tomoyo_update_globally_readable_entry - Update "struct tomoyo_globally_readable_file_entry" list.
314 *
315 * @filename: Filename unconditionally permitted to open() for reading.
316 * @is_delete: True if it is a delete request.
317 *
318 * Returns 0 on success, negative value otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900319 *
320 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900321 */
322static int tomoyo_update_globally_readable_entry(const char *filename,
323 const bool is_delete)
324{
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900325 struct tomoyo_globally_readable_file_entry e = { };
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +0900326 int error;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900327
Tetsuo Handa75093152010-06-16 16:23:55 +0900328 if (!tomoyo_correct_word(filename))
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900329 return -EINVAL;
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900330 e.filename = tomoyo_get_name(filename);
331 if (!e.filename)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900332 return -ENOMEM;
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +0900333 error = tomoyo_update_policy(&e.head, sizeof(e), is_delete,
334 &tomoyo_globally_readable_list,
335 tomoyo_same_globally_readable);
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900336 tomoyo_put_name(e.filename);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900337 return error;
338}
339
340/**
Tetsuo Handa75093152010-06-16 16:23:55 +0900341 * tomoyo_globally_readable_file - Check if the file is unconditionnaly permitted to be open()ed for reading.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900342 *
343 * @filename: The filename to check.
344 *
345 * Returns true if any domain can open @filename for reading, false otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900346 *
347 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900348 */
Tetsuo Handa75093152010-06-16 16:23:55 +0900349static bool tomoyo_globally_readable_file(const struct tomoyo_path_info *
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900350 filename)
351{
352 struct tomoyo_globally_readable_file_entry *ptr;
353 bool found = false;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900354
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900355 list_for_each_entry_rcu(ptr, &tomoyo_globally_readable_list,
356 head.list) {
357 if (!ptr->head.is_deleted &&
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900358 tomoyo_path_matches_pattern(filename, ptr->filename)) {
359 found = true;
360 break;
361 }
362 }
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900363 return found;
364}
365
366/**
367 * tomoyo_write_globally_readable_policy - Write "struct tomoyo_globally_readable_file_entry" list.
368 *
369 * @data: String to parse.
370 * @is_delete: True if it is a delete request.
371 *
372 * Returns 0 on success, negative value otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900373 *
374 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900375 */
376int tomoyo_write_globally_readable_policy(char *data, const bool is_delete)
377{
378 return tomoyo_update_globally_readable_entry(data, is_delete);
379}
380
381/**
382 * tomoyo_read_globally_readable_policy - Read "struct tomoyo_globally_readable_file_entry" list.
383 *
384 * @head: Pointer to "struct tomoyo_io_buffer".
385 *
386 * Returns true on success, false otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900387 *
388 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900389 */
390bool tomoyo_read_globally_readable_policy(struct tomoyo_io_buffer *head)
391{
392 struct list_head *pos;
393 bool done = true;
394
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900395 list_for_each_cookie(pos, head->read_var2,
396 &tomoyo_globally_readable_list) {
397 struct tomoyo_globally_readable_file_entry *ptr;
398 ptr = list_entry(pos,
399 struct tomoyo_globally_readable_file_entry,
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900400 head.list);
401 if (ptr->head.is_deleted)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900402 continue;
Tetsuo Handa7d2948b2009-06-02 20:42:24 +0900403 done = tomoyo_io_printf(head, TOMOYO_KEYWORD_ALLOW_READ "%s\n",
404 ptr->filename->name);
405 if (!done)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900406 break;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900407 }
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900408 return done;
409}
410
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900411/* tomoyo_pattern_list is used for holding list of pathnames which are used for
412 * converting pathnames to pathname patterns during learning mode.
413 *
414 * An entry is added by
415 *
416 * # echo 'file_pattern /proc/\$/mounts' > \
417 * /sys/kernel/security/tomoyo/exception_policy
418 *
419 * and is deleted by
420 *
421 * # echo 'delete file_pattern /proc/\$/mounts' > \
422 * /sys/kernel/security/tomoyo/exception_policy
423 *
424 * and all entries are retrieved by
425 *
426 * # grep ^file_pattern /sys/kernel/security/tomoyo/exception_policy
427 *
428 * In the example above, if a process which belongs to a domain which is in
429 * learning mode requested open("/proc/1/mounts", O_RDONLY),
430 * "allow_read /proc/\$/mounts" is automatically added to the domain which that
431 * process belongs to.
432 *
433 * It is not a desirable behavior that we have to use /proc/\$/ instead of
434 * /proc/self/ when current process needs to access only current process's
435 * information. As of now, LSM version of TOMOYO is using __d_path() for
436 * calculating pathname. Non LSM version of TOMOYO is using its own function
437 * which pretends as if /proc/self/ is not a symlink; so that we can forbid
438 * current process from accessing other process's information.
439 */
Tetsuo Handa847b1732010-02-11 09:43:54 +0900440LIST_HEAD(tomoyo_pattern_list);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900441
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +0900442static bool tomoyo_same_pattern(const struct tomoyo_acl_head *a,
443 const struct tomoyo_acl_head *b)
444{
445 return container_of(a, struct tomoyo_pattern_entry, head)->pattern ==
446 container_of(b, struct tomoyo_pattern_entry, head)->pattern;
447}
448
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900449/**
450 * tomoyo_update_file_pattern_entry - Update "struct tomoyo_pattern_entry" list.
451 *
452 * @pattern: Pathname pattern.
453 * @is_delete: True if it is a delete request.
454 *
455 * Returns 0 on success, negative value otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900456 *
457 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900458 */
459static int tomoyo_update_file_pattern_entry(const char *pattern,
460 const bool is_delete)
461{
Tetsuo Handa3f629632010-06-03 20:37:26 +0900462 struct tomoyo_pattern_entry e = { };
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +0900463 int error;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900464
Tetsuo Handa75093152010-06-16 16:23:55 +0900465 if (!tomoyo_correct_word(pattern))
Tetsuo Handa3f629632010-06-03 20:37:26 +0900466 return -EINVAL;
467 e.pattern = tomoyo_get_name(pattern);
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900468 if (!e.pattern)
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +0900469 return -ENOMEM;
470 error = tomoyo_update_policy(&e.head, sizeof(e), is_delete,
471 &tomoyo_pattern_list,
472 tomoyo_same_pattern);
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900473 tomoyo_put_name(e.pattern);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900474 return error;
475}
476
477/**
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900478 * tomoyo_file_pattern - Get patterned pathname.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900479 *
480 * @filename: The filename to find patterned pathname.
481 *
482 * Returns pointer to pathname pattern if matched, @filename otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900483 *
484 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900485 */
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900486const char *tomoyo_file_pattern(const struct tomoyo_path_info *filename)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900487{
488 struct tomoyo_pattern_entry *ptr;
489 const struct tomoyo_path_info *pattern = NULL;
490
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900491 list_for_each_entry_rcu(ptr, &tomoyo_pattern_list, head.list) {
492 if (ptr->head.is_deleted)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900493 continue;
494 if (!tomoyo_path_matches_pattern(filename, ptr->pattern))
495 continue;
496 pattern = ptr->pattern;
497 if (tomoyo_strendswith(pattern->name, "/\\*")) {
498 /* Do nothing. Try to find the better match. */
499 } else {
500 /* This would be the better match. Use this. */
501 break;
502 }
503 }
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900504 if (pattern)
505 filename = pattern;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900506 return filename->name;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900507}
508
509/**
510 * tomoyo_write_pattern_policy - Write "struct tomoyo_pattern_entry" list.
511 *
512 * @data: String to parse.
513 * @is_delete: True if it is a delete request.
514 *
515 * Returns 0 on success, negative value otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900516 *
517 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900518 */
519int tomoyo_write_pattern_policy(char *data, const bool is_delete)
520{
521 return tomoyo_update_file_pattern_entry(data, is_delete);
522}
523
524/**
525 * tomoyo_read_file_pattern - Read "struct tomoyo_pattern_entry" list.
526 *
527 * @head: Pointer to "struct tomoyo_io_buffer".
528 *
529 * Returns true on success, false otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900530 *
531 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900532 */
533bool tomoyo_read_file_pattern(struct tomoyo_io_buffer *head)
534{
535 struct list_head *pos;
536 bool done = true;
537
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900538 list_for_each_cookie(pos, head->read_var2, &tomoyo_pattern_list) {
539 struct tomoyo_pattern_entry *ptr;
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900540 ptr = list_entry(pos, struct tomoyo_pattern_entry, head.list);
541 if (ptr->head.is_deleted)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900542 continue;
Tetsuo Handa7d2948b2009-06-02 20:42:24 +0900543 done = tomoyo_io_printf(head, TOMOYO_KEYWORD_FILE_PATTERN
544 "%s\n", ptr->pattern->name);
545 if (!done)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900546 break;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900547 }
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900548 return done;
549}
550
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900551/*
552 * tomoyo_no_rewrite_list is used for holding list of pathnames which are by
553 * default forbidden to modify already written content of a file.
554 *
555 * An entry is added by
556 *
557 * # echo 'deny_rewrite /var/log/messages' > \
558 * /sys/kernel/security/tomoyo/exception_policy
559 *
560 * and is deleted by
561 *
562 * # echo 'delete deny_rewrite /var/log/messages' > \
563 * /sys/kernel/security/tomoyo/exception_policy
564 *
565 * and all entries are retrieved by
566 *
567 * # grep ^deny_rewrite /sys/kernel/security/tomoyo/exception_policy
568 *
569 * In the example above, if a process requested to rewrite /var/log/messages ,
570 * the process can't rewrite unless the domain which that process belongs to
571 * has "allow_rewrite /var/log/messages" entry.
572 *
573 * It is not a desirable behavior that we have to add "\040(deleted)" suffix
574 * when we want to allow rewriting already unlink()ed file. As of now,
575 * LSM version of TOMOYO is using __d_path() for calculating pathname.
576 * Non LSM version of TOMOYO is using its own function which doesn't append
577 * " (deleted)" suffix if the file is already unlink()ed; so that we don't
578 * need to worry whether the file is already unlink()ed or not.
579 */
Tetsuo Handa847b1732010-02-11 09:43:54 +0900580LIST_HEAD(tomoyo_no_rewrite_list);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900581
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +0900582static bool tomoyo_same_no_rewrite(const struct tomoyo_acl_head *a,
583 const struct tomoyo_acl_head *b)
584{
585 return container_of(a, struct tomoyo_no_rewrite_entry, head)->pattern
586 == container_of(b, struct tomoyo_no_rewrite_entry, head)
587 ->pattern;
588}
589
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900590/**
591 * tomoyo_update_no_rewrite_entry - Update "struct tomoyo_no_rewrite_entry" list.
592 *
593 * @pattern: Pathname pattern that are not rewritable by default.
594 * @is_delete: True if it is a delete request.
595 *
596 * Returns 0 on success, negative value otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900597 *
598 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900599 */
600static int tomoyo_update_no_rewrite_entry(const char *pattern,
601 const bool is_delete)
602{
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900603 struct tomoyo_no_rewrite_entry e = { };
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +0900604 int error;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900605
Tetsuo Handa75093152010-06-16 16:23:55 +0900606 if (!tomoyo_correct_word(pattern))
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900607 return -EINVAL;
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900608 e.pattern = tomoyo_get_name(pattern);
609 if (!e.pattern)
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +0900610 return -ENOMEM;
611 error = tomoyo_update_policy(&e.head, sizeof(e), is_delete,
612 &tomoyo_no_rewrite_list,
613 tomoyo_same_no_rewrite);
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900614 tomoyo_put_name(e.pattern);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900615 return error;
616}
617
618/**
Tetsuo Handa75093152010-06-16 16:23:55 +0900619 * tomoyo_no_rewrite_file - Check if the given pathname is not permitted to be rewrited.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900620 *
621 * @filename: Filename to check.
622 *
623 * Returns true if @filename is specified by "deny_rewrite" directive,
624 * false otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900625 *
626 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900627 */
Tetsuo Handa75093152010-06-16 16:23:55 +0900628static bool tomoyo_no_rewrite_file(const struct tomoyo_path_info *filename)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900629{
630 struct tomoyo_no_rewrite_entry *ptr;
631 bool found = false;
632
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900633 list_for_each_entry_rcu(ptr, &tomoyo_no_rewrite_list, head.list) {
634 if (ptr->head.is_deleted)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900635 continue;
636 if (!tomoyo_path_matches_pattern(filename, ptr->pattern))
637 continue;
638 found = true;
639 break;
640 }
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900641 return found;
642}
643
644/**
645 * tomoyo_write_no_rewrite_policy - Write "struct tomoyo_no_rewrite_entry" list.
646 *
647 * @data: String to parse.
648 * @is_delete: True if it is a delete request.
649 *
650 * Returns 0 on success, negative value otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900651 *
652 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900653 */
654int tomoyo_write_no_rewrite_policy(char *data, const bool is_delete)
655{
656 return tomoyo_update_no_rewrite_entry(data, is_delete);
657}
658
659/**
660 * tomoyo_read_no_rewrite_policy - Read "struct tomoyo_no_rewrite_entry" list.
661 *
662 * @head: Pointer to "struct tomoyo_io_buffer".
663 *
664 * Returns true on success, false otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900665 *
666 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900667 */
668bool tomoyo_read_no_rewrite_policy(struct tomoyo_io_buffer *head)
669{
670 struct list_head *pos;
671 bool done = true;
672
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900673 list_for_each_cookie(pos, head->read_var2, &tomoyo_no_rewrite_list) {
674 struct tomoyo_no_rewrite_entry *ptr;
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900675 ptr = list_entry(pos, struct tomoyo_no_rewrite_entry,
676 head.list);
677 if (ptr->head.is_deleted)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900678 continue;
Tetsuo Handa7d2948b2009-06-02 20:42:24 +0900679 done = tomoyo_io_printf(head, TOMOYO_KEYWORD_DENY_REWRITE
680 "%s\n", ptr->pattern->name);
681 if (!done)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900682 break;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900683 }
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900684 return done;
685}
686
Tetsuo Handa99a85252010-06-16 16:22:51 +0900687static bool tomoyo_check_path_acl(const struct tomoyo_request_info *r,
688 const struct tomoyo_acl_info *ptr)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900689{
Tetsuo Handa99a85252010-06-16 16:22:51 +0900690 const struct tomoyo_path_acl *acl = container_of(ptr, typeof(*acl),
691 head);
692 return (acl->perm & (1 << r->param.path.operation)) &&
693 tomoyo_compare_name_union(r->param.path.filename, &acl->name);
694}
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900695
Tetsuo Handa99a85252010-06-16 16:22:51 +0900696static bool tomoyo_check_path_number_acl(const struct tomoyo_request_info *r,
697 const struct tomoyo_acl_info *ptr)
698{
699 const struct tomoyo_path_number_acl *acl =
700 container_of(ptr, typeof(*acl), head);
701 return (acl->perm & (1 << r->param.path_number.operation)) &&
702 tomoyo_compare_number_union(r->param.path_number.number,
703 &acl->number) &&
704 tomoyo_compare_name_union(r->param.path_number.filename,
705 &acl->name);
706}
707
708static bool tomoyo_check_path2_acl(const struct tomoyo_request_info *r,
709 const struct tomoyo_acl_info *ptr)
710{
711 const struct tomoyo_path2_acl *acl =
712 container_of(ptr, typeof(*acl), head);
713 return (acl->perm & (1 << r->param.path2.operation)) &&
714 tomoyo_compare_name_union(r->param.path2.filename1, &acl->name1)
715 && tomoyo_compare_name_union(r->param.path2.filename2,
716 &acl->name2);
717}
718
719static bool tomoyo_check_mkdev_acl(const struct tomoyo_request_info *r,
720 const struct tomoyo_acl_info *ptr)
721{
Tetsuo Handa75093152010-06-16 16:23:55 +0900722 const struct tomoyo_mkdev_acl *acl =
Tetsuo Handa99a85252010-06-16 16:22:51 +0900723 container_of(ptr, typeof(*acl), head);
724 return (acl->perm & (1 << r->param.mkdev.operation)) &&
725 tomoyo_compare_number_union(r->param.mkdev.mode,
726 &acl->mode) &&
727 tomoyo_compare_number_union(r->param.mkdev.major,
728 &acl->major) &&
729 tomoyo_compare_number_union(r->param.mkdev.minor,
730 &acl->minor) &&
731 tomoyo_compare_name_union(r->param.mkdev.filename,
732 &acl->name);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900733}
734
Tetsuo Handa237ab452010-06-12 20:46:22 +0900735static bool tomoyo_same_path_acl(const struct tomoyo_acl_info *a,
736 const struct tomoyo_acl_info *b)
737{
738 const struct tomoyo_path_acl *p1 = container_of(a, typeof(*p1), head);
739 const struct tomoyo_path_acl *p2 = container_of(b, typeof(*p2), head);
Tetsuo Handa75093152010-06-16 16:23:55 +0900740 return tomoyo_same_acl_head(&p1->head, &p2->head) &&
741 tomoyo_same_name_union(&p1->name, &p2->name);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900742}
743
744static bool tomoyo_merge_path_acl(struct tomoyo_acl_info *a,
745 struct tomoyo_acl_info *b,
746 const bool is_delete)
747{
748 u16 * const a_perm = &container_of(a, struct tomoyo_path_acl, head)
749 ->perm;
750 u16 perm = *a_perm;
751 const u16 b_perm = container_of(b, struct tomoyo_path_acl, head)->perm;
752 if (is_delete) {
753 perm &= ~b_perm;
754 if ((perm & TOMOYO_RW_MASK) != TOMOYO_RW_MASK)
755 perm &= ~(1 << TOMOYO_TYPE_READ_WRITE);
756 else if (!(perm & (1 << TOMOYO_TYPE_READ_WRITE)))
757 perm &= ~TOMOYO_RW_MASK;
758 } else {
759 perm |= b_perm;
760 if ((perm & TOMOYO_RW_MASK) == TOMOYO_RW_MASK)
761 perm |= (1 << TOMOYO_TYPE_READ_WRITE);
762 else if (perm & (1 << TOMOYO_TYPE_READ_WRITE))
763 perm |= TOMOYO_RW_MASK;
764 }
765 *a_perm = perm;
766 return !perm;
767}
768
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900769/**
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900770 * tomoyo_update_path_acl - Update "struct tomoyo_path_acl" list.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900771 *
772 * @type: Type of operation.
773 * @filename: Filename.
774 * @domain: Pointer to "struct tomoyo_domain_info".
775 * @is_delete: True if it is a delete request.
776 *
777 * Returns 0 on success, negative value otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900778 *
779 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900780 */
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900781static int tomoyo_update_path_acl(const u8 type, const char *filename,
Tetsuo Handa237ab452010-06-12 20:46:22 +0900782 struct tomoyo_domain_info * const domain,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900783 const bool is_delete)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900784{
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900785 struct tomoyo_path_acl e = {
786 .head.type = TOMOYO_TYPE_PATH_ACL,
Tetsuo Handa237ab452010-06-12 20:46:22 +0900787 .perm = 1 << type
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900788 };
Tetsuo Handa237ab452010-06-12 20:46:22 +0900789 int error;
790 if (e.perm == (1 << TOMOYO_TYPE_READ_WRITE))
791 e.perm |= TOMOYO_RW_MASK;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900792 if (!tomoyo_parse_name_union(filename, &e.name))
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900793 return -EINVAL;
Tetsuo Handa237ab452010-06-12 20:46:22 +0900794 error = tomoyo_update_domain(&e.head, sizeof(e), is_delete, domain,
795 tomoyo_same_path_acl,
796 tomoyo_merge_path_acl);
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900797 tomoyo_put_name_union(&e.name);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900798 return error;
799}
800
Tetsuo Handa75093152010-06-16 16:23:55 +0900801static bool tomoyo_same_mkdev_acl(const struct tomoyo_acl_info *a,
Tetsuo Handa237ab452010-06-12 20:46:22 +0900802 const struct tomoyo_acl_info *b)
803{
Tetsuo Handa75093152010-06-16 16:23:55 +0900804 const struct tomoyo_mkdev_acl *p1 = container_of(a, typeof(*p1),
Tetsuo Handa237ab452010-06-12 20:46:22 +0900805 head);
Tetsuo Handa75093152010-06-16 16:23:55 +0900806 const struct tomoyo_mkdev_acl *p2 = container_of(b, typeof(*p2),
Tetsuo Handa237ab452010-06-12 20:46:22 +0900807 head);
Tetsuo Handa75093152010-06-16 16:23:55 +0900808 return tomoyo_same_acl_head(&p1->head, &p2->head)
809 && tomoyo_same_name_union(&p1->name, &p2->name)
810 && tomoyo_same_number_union(&p1->mode, &p2->mode)
811 && tomoyo_same_number_union(&p1->major, &p2->major)
812 && tomoyo_same_number_union(&p1->minor, &p2->minor);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900813}
814
Tetsuo Handa75093152010-06-16 16:23:55 +0900815static bool tomoyo_merge_mkdev_acl(struct tomoyo_acl_info *a,
Tetsuo Handa237ab452010-06-12 20:46:22 +0900816 struct tomoyo_acl_info *b,
817 const bool is_delete)
818{
Tetsuo Handa75093152010-06-16 16:23:55 +0900819 u8 *const a_perm = &container_of(a, struct tomoyo_mkdev_acl,
Tetsuo Handa237ab452010-06-12 20:46:22 +0900820 head)->perm;
821 u8 perm = *a_perm;
Tetsuo Handa75093152010-06-16 16:23:55 +0900822 const u8 b_perm = container_of(b, struct tomoyo_mkdev_acl, head)
Tetsuo Handa237ab452010-06-12 20:46:22 +0900823 ->perm;
824 if (is_delete)
825 perm &= ~b_perm;
826 else
827 perm |= b_perm;
828 *a_perm = perm;
829 return !perm;
830}
831
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900832/**
Tetsuo Handa75093152010-06-16 16:23:55 +0900833 * tomoyo_update_mkdev_acl - Update "struct tomoyo_mkdev_acl" list.
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900834 *
835 * @type: Type of operation.
836 * @filename: Filename.
837 * @mode: Create mode.
838 * @major: Device major number.
839 * @minor: Device minor number.
840 * @domain: Pointer to "struct tomoyo_domain_info".
841 * @is_delete: True if it is a delete request.
842 *
843 * Returns 0 on success, negative value otherwise.
Tetsuo Handa237ab452010-06-12 20:46:22 +0900844 *
845 * Caller holds tomoyo_read_lock().
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900846 */
Tetsuo Handa75093152010-06-16 16:23:55 +0900847static int tomoyo_update_mkdev_acl(const u8 type, const char *filename,
Tetsuo Handa237ab452010-06-12 20:46:22 +0900848 char *mode, char *major, char *minor,
849 struct tomoyo_domain_info * const
850 domain, const bool is_delete)
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900851{
Tetsuo Handa75093152010-06-16 16:23:55 +0900852 struct tomoyo_mkdev_acl e = {
853 .head.type = TOMOYO_TYPE_MKDEV_ACL,
Tetsuo Handa237ab452010-06-12 20:46:22 +0900854 .perm = 1 << type
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900855 };
856 int error = is_delete ? -ENOENT : -ENOMEM;
857 if (!tomoyo_parse_name_union(filename, &e.name) ||
858 !tomoyo_parse_number_union(mode, &e.mode) ||
859 !tomoyo_parse_number_union(major, &e.major) ||
860 !tomoyo_parse_number_union(minor, &e.minor))
861 goto out;
Tetsuo Handa237ab452010-06-12 20:46:22 +0900862 error = tomoyo_update_domain(&e.head, sizeof(e), is_delete, domain,
Tetsuo Handa75093152010-06-16 16:23:55 +0900863 tomoyo_same_mkdev_acl,
864 tomoyo_merge_mkdev_acl);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900865 out:
866 tomoyo_put_name_union(&e.name);
867 tomoyo_put_number_union(&e.mode);
868 tomoyo_put_number_union(&e.major);
869 tomoyo_put_number_union(&e.minor);
870 return error;
871}
872
Tetsuo Handa237ab452010-06-12 20:46:22 +0900873static bool tomoyo_same_path2_acl(const struct tomoyo_acl_info *a,
874 const struct tomoyo_acl_info *b)
875{
876 const struct tomoyo_path2_acl *p1 = container_of(a, typeof(*p1), head);
877 const struct tomoyo_path2_acl *p2 = container_of(b, typeof(*p2), head);
Tetsuo Handa75093152010-06-16 16:23:55 +0900878 return tomoyo_same_acl_head(&p1->head, &p2->head)
879 && tomoyo_same_name_union(&p1->name1, &p2->name1)
880 && tomoyo_same_name_union(&p1->name2, &p2->name2);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900881}
882
883static bool tomoyo_merge_path2_acl(struct tomoyo_acl_info *a,
884 struct tomoyo_acl_info *b,
885 const bool is_delete)
886{
887 u8 * const a_perm = &container_of(a, struct tomoyo_path2_acl, head)
888 ->perm;
889 u8 perm = *a_perm;
890 const u8 b_perm = container_of(b, struct tomoyo_path2_acl, head)->perm;
891 if (is_delete)
892 perm &= ~b_perm;
893 else
894 perm |= b_perm;
895 *a_perm = perm;
896 return !perm;
897}
898
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900899/**
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900900 * tomoyo_update_path2_acl - Update "struct tomoyo_path2_acl" list.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900901 *
902 * @type: Type of operation.
903 * @filename1: First filename.
904 * @filename2: Second filename.
905 * @domain: Pointer to "struct tomoyo_domain_info".
906 * @is_delete: True if it is a delete request.
907 *
908 * Returns 0 on success, negative value otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900909 *
910 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900911 */
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900912static int tomoyo_update_path2_acl(const u8 type, const char *filename1,
913 const char *filename2,
Tetsuo Handa237ab452010-06-12 20:46:22 +0900914 struct tomoyo_domain_info * const domain,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900915 const bool is_delete)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900916{
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900917 struct tomoyo_path2_acl e = {
918 .head.type = TOMOYO_TYPE_PATH2_ACL,
Tetsuo Handa237ab452010-06-12 20:46:22 +0900919 .perm = 1 << type
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900920 };
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900921 int error = is_delete ? -ENOENT : -ENOMEM;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900922 if (!tomoyo_parse_name_union(filename1, &e.name1) ||
923 !tomoyo_parse_name_union(filename2, &e.name2))
Tetsuo Handaca0b7df2010-02-07 20:23:59 +0900924 goto out;
Tetsuo Handa237ab452010-06-12 20:46:22 +0900925 error = tomoyo_update_domain(&e.head, sizeof(e), is_delete, domain,
926 tomoyo_same_path2_acl,
927 tomoyo_merge_path2_acl);
Tetsuo Handaca0b7df2010-02-07 20:23:59 +0900928 out:
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900929 tomoyo_put_name_union(&e.name1);
930 tomoyo_put_name_union(&e.name2);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900931 return error;
932}
933
934/**
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900935 * tomoyo_path_permission - Check permission for single path operation.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900936 *
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900937 * @r: Pointer to "struct tomoyo_request_info".
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900938 * @operation: Type of operation.
939 * @filename: Filename to check.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900940 *
941 * Returns 0 on success, negative value otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900942 *
943 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900944 */
Tetsuo Handa05336de2010-06-16 16:20:24 +0900945int tomoyo_path_permission(struct tomoyo_request_info *r, u8 operation,
946 const struct tomoyo_path_info *filename)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900947{
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900948 int error;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900949
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900950 next:
Tetsuo Handa57c25902010-06-03 20:38:44 +0900951 r->type = tomoyo_p2mac[operation];
952 r->mode = tomoyo_get_mode(r->profile, r->type);
953 if (r->mode == TOMOYO_CONFIG_DISABLED)
954 return 0;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900955 r->param_type = TOMOYO_TYPE_PATH_ACL;
956 r->param.path.filename = filename;
957 r->param.path.operation = operation;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900958 do {
Tetsuo Handa99a85252010-06-16 16:22:51 +0900959 tomoyo_check_acl(r, tomoyo_check_path_acl);
960 if (!r->granted && operation == TOMOYO_TYPE_READ &&
Tetsuo Handa05336de2010-06-16 16:20:24 +0900961 !r->domain->ignore_global_allow_read &&
Tetsuo Handa75093152010-06-16 16:23:55 +0900962 tomoyo_globally_readable_file(filename))
Tetsuo Handa99a85252010-06-16 16:22:51 +0900963 r->granted = true;
964 error = tomoyo_audit_path_log(r);
Tetsuo Handa05336de2010-06-16 16:20:24 +0900965 /*
966 * Do not retry for execute request, for alias may have
967 * changed.
968 */
969 } while (error == TOMOYO_RETRY_REQUEST &&
970 operation != TOMOYO_TYPE_EXECUTE);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900971 /*
972 * Since "allow_truncate" doesn't imply "allow_rewrite" permission,
973 * we need to check "allow_rewrite" permission if the filename is
974 * specified by "deny_rewrite" keyword.
975 */
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900976 if (!error && operation == TOMOYO_TYPE_TRUNCATE &&
Tetsuo Handa75093152010-06-16 16:23:55 +0900977 tomoyo_no_rewrite_file(filename)) {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900978 operation = TOMOYO_TYPE_REWRITE;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900979 goto next;
980 }
981 return error;
982}
983
Tetsuo Handa237ab452010-06-12 20:46:22 +0900984static bool tomoyo_same_path_number_acl(const struct tomoyo_acl_info *a,
985 const struct tomoyo_acl_info *b)
986{
987 const struct tomoyo_path_number_acl *p1 = container_of(a, typeof(*p1),
988 head);
989 const struct tomoyo_path_number_acl *p2 = container_of(b, typeof(*p2),
990 head);
Tetsuo Handa75093152010-06-16 16:23:55 +0900991 return tomoyo_same_acl_head(&p1->head, &p2->head)
992 && tomoyo_same_name_union(&p1->name, &p2->name)
993 && tomoyo_same_number_union(&p1->number, &p2->number);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900994}
995
996static bool tomoyo_merge_path_number_acl(struct tomoyo_acl_info *a,
997 struct tomoyo_acl_info *b,
998 const bool is_delete)
999{
1000 u8 * const a_perm = &container_of(a, struct tomoyo_path_number_acl,
1001 head)->perm;
1002 u8 perm = *a_perm;
1003 const u8 b_perm = container_of(b, struct tomoyo_path_number_acl, head)
1004 ->perm;
1005 if (is_delete)
1006 perm &= ~b_perm;
1007 else
1008 perm |= b_perm;
1009 *a_perm = perm;
1010 return !perm;
1011}
1012
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001013/**
1014 * tomoyo_update_path_number_acl - Update ioctl/chmod/chown/chgrp ACL.
1015 *
1016 * @type: Type of operation.
1017 * @filename: Filename.
1018 * @number: Number.
1019 * @domain: Pointer to "struct tomoyo_domain_info".
1020 * @is_delete: True if it is a delete request.
1021 *
1022 * Returns 0 on success, negative value otherwise.
1023 */
Tetsuo Handa237ab452010-06-12 20:46:22 +09001024static int tomoyo_update_path_number_acl(const u8 type, const char *filename,
1025 char *number,
1026 struct tomoyo_domain_info * const
1027 domain,
1028 const bool is_delete)
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001029{
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001030 struct tomoyo_path_number_acl e = {
1031 .head.type = TOMOYO_TYPE_PATH_NUMBER_ACL,
Tetsuo Handa237ab452010-06-12 20:46:22 +09001032 .perm = 1 << type
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001033 };
1034 int error = is_delete ? -ENOENT : -ENOMEM;
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001035 if (!tomoyo_parse_name_union(filename, &e.name))
1036 return -EINVAL;
1037 if (!tomoyo_parse_number_union(number, &e.number))
1038 goto out;
Tetsuo Handa237ab452010-06-12 20:46:22 +09001039 error = tomoyo_update_domain(&e.head, sizeof(e), is_delete, domain,
1040 tomoyo_same_path_number_acl,
1041 tomoyo_merge_path_number_acl);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001042 out:
1043 tomoyo_put_name_union(&e.name);
1044 tomoyo_put_number_union(&e.number);
1045 return error;
1046}
1047
1048/**
1049 * tomoyo_path_number_perm2 - Check permission for "create", "mkdir", "mkfifo", "mksock", "ioctl", "chmod", "chown", "chgrp".
1050 *
1051 * @r: Pointer to "strct tomoyo_request_info".
1052 * @filename: Filename to check.
1053 * @number: Number.
1054 *
1055 * Returns 0 on success, negative value otherwise.
1056 *
1057 * Caller holds tomoyo_read_lock().
1058 */
1059static int tomoyo_path_number_perm2(struct tomoyo_request_info *r,
1060 const u8 type,
1061 const struct tomoyo_path_info *filename,
1062 const unsigned long number)
1063{
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001064 int error;
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001065
1066 if (!filename)
1067 return 0;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +09001068 r->param_type = TOMOYO_TYPE_PATH_NUMBER_ACL;
1069 r->param.path_number.operation = type;
1070 r->param.path_number.filename = filename;
1071 r->param.path_number.number = number;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +09001072 do {
Tetsuo Handa99a85252010-06-16 16:22:51 +09001073 tomoyo_check_acl(r, tomoyo_check_path_number_acl);
1074 error = tomoyo_audit_path_number_log(r);
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +09001075 } while (error == TOMOYO_RETRY_REQUEST);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001076 return error;
1077}
1078
1079/**
1080 * tomoyo_path_number_perm - Check permission for "create", "mkdir", "mkfifo", "mksock", "ioctl", "chmod", "chown", "chgrp".
1081 *
1082 * @type: Type of operation.
1083 * @path: Pointer to "struct path".
1084 * @number: Number.
1085 *
1086 * Returns 0 on success, negative value otherwise.
1087 */
1088int tomoyo_path_number_perm(const u8 type, struct path *path,
1089 unsigned long number)
1090{
1091 struct tomoyo_request_info r;
1092 int error = -ENOMEM;
Tetsuo Handac8c57e82010-06-03 20:36:43 +09001093 struct tomoyo_path_info buf;
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001094 int idx;
1095
Tetsuo Handa57c25902010-06-03 20:38:44 +09001096 if (tomoyo_init_request_info(&r, NULL, tomoyo_pn2mac[type])
1097 == TOMOYO_CONFIG_DISABLED || !path->mnt || !path->dentry)
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001098 return 0;
1099 idx = tomoyo_read_lock();
Tetsuo Handac8c57e82010-06-03 20:36:43 +09001100 if (!tomoyo_get_realpath(&buf, path))
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001101 goto out;
Tetsuo Handac8c57e82010-06-03 20:36:43 +09001102 if (type == TOMOYO_TYPE_MKDIR)
1103 tomoyo_add_slash(&buf);
1104 error = tomoyo_path_number_perm2(&r, type, &buf, number);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001105 out:
Tetsuo Handac8c57e82010-06-03 20:36:43 +09001106 kfree(buf.name);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001107 tomoyo_read_unlock(idx);
1108 if (r.mode != TOMOYO_CONFIG_ENFORCING)
1109 error = 0;
1110 return error;
1111}
1112
1113/**
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001114 * tomoyo_check_open_permission - Check permission for "read" and "write".
1115 *
1116 * @domain: Pointer to "struct tomoyo_domain_info".
1117 * @path: Pointer to "struct path".
1118 * @flag: Flags for open().
1119 *
1120 * Returns 0 on success, negative value otherwise.
1121 */
1122int tomoyo_check_open_permission(struct tomoyo_domain_info *domain,
1123 struct path *path, const int flag)
1124{
1125 const u8 acc_mode = ACC_MODE(flag);
1126 int error = -ENOMEM;
Tetsuo Handac8c57e82010-06-03 20:36:43 +09001127 struct tomoyo_path_info buf;
Tetsuo Handacb0abe62010-05-17 10:08:05 +09001128 struct tomoyo_request_info r;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +09001129 int idx;
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001130
Tetsuo Handa57c25902010-06-03 20:38:44 +09001131 if (!path->mnt ||
1132 (path->dentry->d_inode && S_ISDIR(path->dentry->d_inode->i_mode)))
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001133 return 0;
Tetsuo Handa57c25902010-06-03 20:38:44 +09001134 buf.name = NULL;
1135 r.mode = TOMOYO_CONFIG_DISABLED;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +09001136 idx = tomoyo_read_lock();
Tetsuo Handac8c57e82010-06-03 20:36:43 +09001137 if (!tomoyo_get_realpath(&buf, path))
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001138 goto out;
1139 error = 0;
1140 /*
1141 * If the filename is specified by "deny_rewrite" keyword,
1142 * we need to check "allow_rewrite" permission when the filename is not
1143 * opened for append mode or the filename is truncated at open time.
1144 */
Tetsuo Handa57c25902010-06-03 20:38:44 +09001145 if ((acc_mode & MAY_WRITE) && !(flag & O_APPEND)
1146 && tomoyo_init_request_info(&r, domain, TOMOYO_MAC_FILE_REWRITE)
1147 != TOMOYO_CONFIG_DISABLED) {
1148 if (!tomoyo_get_realpath(&buf, path)) {
1149 error = -ENOMEM;
1150 goto out;
1151 }
Tetsuo Handa75093152010-06-16 16:23:55 +09001152 if (tomoyo_no_rewrite_file(&buf))
Tetsuo Handa57c25902010-06-03 20:38:44 +09001153 error = tomoyo_path_permission(&r, TOMOYO_TYPE_REWRITE,
1154 &buf);
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001155 }
Tetsuo Handa57c25902010-06-03 20:38:44 +09001156 if (!error && acc_mode &&
1157 tomoyo_init_request_info(&r, domain, TOMOYO_MAC_FILE_OPEN)
1158 != TOMOYO_CONFIG_DISABLED) {
Tetsuo Handa05336de2010-06-16 16:20:24 +09001159 u8 operation;
Tetsuo Handa57c25902010-06-03 20:38:44 +09001160 if (!buf.name && !tomoyo_get_realpath(&buf, path)) {
1161 error = -ENOMEM;
1162 goto out;
1163 }
Tetsuo Handa05336de2010-06-16 16:20:24 +09001164 if (acc_mode == (MAY_READ | MAY_WRITE))
1165 operation = TOMOYO_TYPE_READ_WRITE;
1166 else if (acc_mode == MAY_READ)
1167 operation = TOMOYO_TYPE_READ;
1168 else
1169 operation = TOMOYO_TYPE_WRITE;
1170 error = tomoyo_path_permission(&r, operation, &buf);
Tetsuo Handa57c25902010-06-03 20:38:44 +09001171 }
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001172 out:
Tetsuo Handac8c57e82010-06-03 20:36:43 +09001173 kfree(buf.name);
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +09001174 tomoyo_read_unlock(idx);
Tetsuo Handacb0abe62010-05-17 10:08:05 +09001175 if (r.mode != TOMOYO_CONFIG_ENFORCING)
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001176 error = 0;
1177 return error;
1178}
1179
1180/**
Tetsuo Handa2106ccd2010-05-17 10:10:31 +09001181 * tomoyo_path_perm - Check permission for "unlink", "rmdir", "truncate", "symlink", "rewrite", "chroot" and "unmount".
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001182 *
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001183 * @operation: Type of operation.
1184 * @path: Pointer to "struct path".
1185 *
1186 * Returns 0 on success, negative value otherwise.
1187 */
Tetsuo Handa97d69312010-02-16 09:46:15 +09001188int tomoyo_path_perm(const u8 operation, struct path *path)
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001189{
1190 int error = -ENOMEM;
Tetsuo Handac8c57e82010-06-03 20:36:43 +09001191 struct tomoyo_path_info buf;
Tetsuo Handacb0abe62010-05-17 10:08:05 +09001192 struct tomoyo_request_info r;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +09001193 int idx;
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001194
Tetsuo Handa57c25902010-06-03 20:38:44 +09001195 if (!path->mnt)
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001196 return 0;
Tetsuo Handa57c25902010-06-03 20:38:44 +09001197 if (tomoyo_init_request_info(&r, NULL, tomoyo_p2mac[operation])
1198 == TOMOYO_CONFIG_DISABLED)
1199 return 0;
1200 buf.name = NULL;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +09001201 idx = tomoyo_read_lock();
Tetsuo Handac8c57e82010-06-03 20:36:43 +09001202 if (!tomoyo_get_realpath(&buf, path))
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001203 goto out;
1204 switch (operation) {
Tetsuo Handacb0abe62010-05-17 10:08:05 +09001205 case TOMOYO_TYPE_REWRITE:
Tetsuo Handa75093152010-06-16 16:23:55 +09001206 if (!tomoyo_no_rewrite_file(&buf)) {
Tetsuo Handacb0abe62010-05-17 10:08:05 +09001207 error = 0;
1208 goto out;
1209 }
1210 break;
Tetsuo Handa7ef61232010-02-16 08:03:30 +09001211 case TOMOYO_TYPE_RMDIR:
1212 case TOMOYO_TYPE_CHROOT:
Tetsuo Handa57c25902010-06-03 20:38:44 +09001213 case TOMOYO_TYPE_UMOUNT:
Tetsuo Handac8c57e82010-06-03 20:36:43 +09001214 tomoyo_add_slash(&buf);
1215 break;
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001216 }
Tetsuo Handac8c57e82010-06-03 20:36:43 +09001217 error = tomoyo_path_permission(&r, operation, &buf);
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001218 out:
Tetsuo Handac8c57e82010-06-03 20:36:43 +09001219 kfree(buf.name);
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +09001220 tomoyo_read_unlock(idx);
Tetsuo Handacb0abe62010-05-17 10:08:05 +09001221 if (r.mode != TOMOYO_CONFIG_ENFORCING)
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001222 error = 0;
1223 return error;
1224}
1225
1226/**
Tetsuo Handa75093152010-06-16 16:23:55 +09001227 * tomoyo_mkdev_perm - Check permission for "mkblock" and "mkchar".
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001228 *
1229 * @operation: Type of operation. (TOMOYO_TYPE_MKCHAR or TOMOYO_TYPE_MKBLOCK)
1230 * @path: Pointer to "struct path".
1231 * @mode: Create mode.
1232 * @dev: Device number.
1233 *
1234 * Returns 0 on success, negative value otherwise.
1235 */
Tetsuo Handa75093152010-06-16 16:23:55 +09001236int tomoyo_mkdev_perm(const u8 operation, struct path *path,
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001237 const unsigned int mode, unsigned int dev)
1238{
1239 struct tomoyo_request_info r;
1240 int error = -ENOMEM;
Tetsuo Handac8c57e82010-06-03 20:36:43 +09001241 struct tomoyo_path_info buf;
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001242 int idx;
1243
Tetsuo Handa57c25902010-06-03 20:38:44 +09001244 if (!path->mnt ||
1245 tomoyo_init_request_info(&r, NULL, tomoyo_pnnn2mac[operation])
1246 == TOMOYO_CONFIG_DISABLED)
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001247 return 0;
1248 idx = tomoyo_read_lock();
1249 error = -ENOMEM;
Tetsuo Handac8c57e82010-06-03 20:36:43 +09001250 if (tomoyo_get_realpath(&buf, path)) {
Tetsuo Handacf6e9a62010-06-16 16:21:36 +09001251 dev = new_decode_dev(dev);
Tetsuo Handa75093152010-06-16 16:23:55 +09001252 r.param_type = TOMOYO_TYPE_MKDEV_ACL;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +09001253 r.param.mkdev.filename = &buf;
1254 r.param.mkdev.operation = operation;
1255 r.param.mkdev.mode = mode;
1256 r.param.mkdev.major = MAJOR(dev);
1257 r.param.mkdev.minor = MINOR(dev);
Tetsuo Handa99a85252010-06-16 16:22:51 +09001258 tomoyo_check_acl(&r, tomoyo_check_mkdev_acl);
1259 error = tomoyo_audit_mkdev_log(&r);
Tetsuo Handac8c57e82010-06-03 20:36:43 +09001260 kfree(buf.name);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001261 }
1262 tomoyo_read_unlock(idx);
1263 if (r.mode != TOMOYO_CONFIG_ENFORCING)
1264 error = 0;
1265 return error;
1266}
1267
1268/**
Tetsuo Handa7ef61232010-02-16 08:03:30 +09001269 * tomoyo_path2_perm - Check permission for "rename", "link" and "pivot_root".
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001270 *
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001271 * @operation: Type of operation.
1272 * @path1: Pointer to "struct path".
1273 * @path2: Pointer to "struct path".
1274 *
1275 * Returns 0 on success, negative value otherwise.
1276 */
Tetsuo Handa97d69312010-02-16 09:46:15 +09001277int tomoyo_path2_perm(const u8 operation, struct path *path1,
Tetsuo Handa7ef61232010-02-16 08:03:30 +09001278 struct path *path2)
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001279{
1280 int error = -ENOMEM;
Tetsuo Handac8c57e82010-06-03 20:36:43 +09001281 struct tomoyo_path_info buf1;
1282 struct tomoyo_path_info buf2;
Tetsuo Handacb0abe62010-05-17 10:08:05 +09001283 struct tomoyo_request_info r;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +09001284 int idx;
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001285
Tetsuo Handa57c25902010-06-03 20:38:44 +09001286 if (!path1->mnt || !path2->mnt ||
1287 tomoyo_init_request_info(&r, NULL, tomoyo_pp2mac[operation])
1288 == TOMOYO_CONFIG_DISABLED)
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001289 return 0;
Tetsuo Handac8c57e82010-06-03 20:36:43 +09001290 buf1.name = NULL;
1291 buf2.name = NULL;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +09001292 idx = tomoyo_read_lock();
Tetsuo Handac8c57e82010-06-03 20:36:43 +09001293 if (!tomoyo_get_realpath(&buf1, path1) ||
1294 !tomoyo_get_realpath(&buf2, path2))
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001295 goto out;
Tetsuo Handa57c25902010-06-03 20:38:44 +09001296 switch (operation) {
1297 struct dentry *dentry;
1298 case TOMOYO_TYPE_RENAME:
1299 case TOMOYO_TYPE_LINK:
1300 dentry = path1->dentry;
1301 if (!dentry->d_inode || !S_ISDIR(dentry->d_inode->i_mode))
1302 break;
1303 /* fall through */
1304 case TOMOYO_TYPE_PIVOT_ROOT:
1305 tomoyo_add_slash(&buf1);
1306 tomoyo_add_slash(&buf2);
1307 break;
1308 }
Tetsuo Handacf6e9a62010-06-16 16:21:36 +09001309 r.param_type = TOMOYO_TYPE_PATH2_ACL;
1310 r.param.path2.operation = operation;
1311 r.param.path2.filename1 = &buf1;
1312 r.param.path2.filename2 = &buf2;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +09001313 do {
Tetsuo Handa99a85252010-06-16 16:22:51 +09001314 tomoyo_check_acl(&r, tomoyo_check_path2_acl);
1315 error = tomoyo_audit_path2_log(&r);
1316 } while (error == TOMOYO_RETRY_REQUEST);
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001317 out:
Tetsuo Handac8c57e82010-06-03 20:36:43 +09001318 kfree(buf1.name);
1319 kfree(buf2.name);
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +09001320 tomoyo_read_unlock(idx);
Tetsuo Handacb0abe62010-05-17 10:08:05 +09001321 if (r.mode != TOMOYO_CONFIG_ENFORCING)
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001322 error = 0;
1323 return error;
1324}
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001325
1326/**
1327 * tomoyo_write_file_policy - Update file related list.
1328 *
1329 * @data: String to parse.
1330 * @domain: Pointer to "struct tomoyo_domain_info".
1331 * @is_delete: True if it is a delete request.
1332 *
1333 * Returns 0 on success, negative value otherwise.
1334 *
1335 * Caller holds tomoyo_read_lock().
1336 */
1337int tomoyo_write_file_policy(char *data, struct tomoyo_domain_info *domain,
1338 const bool is_delete)
1339{
1340 char *w[5];
1341 u8 type;
1342 if (!tomoyo_tokenize(data, w, sizeof(w)) || !w[1][0])
1343 return -EINVAL;
Tetsuo Handa237ab452010-06-12 20:46:22 +09001344 if (strncmp(w[0], "allow_", 6))
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001345 goto out;
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001346 w[0] += 6;
1347 for (type = 0; type < TOMOYO_MAX_PATH_OPERATION; type++) {
1348 if (strcmp(w[0], tomoyo_path_keyword[type]))
1349 continue;
1350 return tomoyo_update_path_acl(type, w[1], domain, is_delete);
1351 }
1352 if (!w[2][0])
1353 goto out;
1354 for (type = 0; type < TOMOYO_MAX_PATH2_OPERATION; type++) {
1355 if (strcmp(w[0], tomoyo_path2_keyword[type]))
1356 continue;
1357 return tomoyo_update_path2_acl(type, w[1], w[2], domain,
1358 is_delete);
1359 }
1360 for (type = 0; type < TOMOYO_MAX_PATH_NUMBER_OPERATION; type++) {
1361 if (strcmp(w[0], tomoyo_path_number_keyword[type]))
1362 continue;
1363 return tomoyo_update_path_number_acl(type, w[1], w[2], domain,
1364 is_delete);
1365 }
1366 if (!w[3][0] || !w[4][0])
1367 goto out;
Tetsuo Handa75093152010-06-16 16:23:55 +09001368 for (type = 0; type < TOMOYO_MAX_MKDEV_OPERATION; type++) {
1369 if (strcmp(w[0], tomoyo_mkdev_keyword[type]))
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001370 continue;
Tetsuo Handa75093152010-06-16 16:23:55 +09001371 return tomoyo_update_mkdev_acl(type, w[1], w[2], w[3],
1372 w[4], domain, is_delete);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001373 }
1374 out:
1375 return -EINVAL;
1376}