blob: 743c35f5084a1125c63e04043bdfb71bb8128651 [file] [log] [blame]
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001/*
2 * security/tomoyo/file.c
3 *
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +09004 * Copyright (C) 2005-2011 NTT DATA CORPORATION
Kentaro Takedab69a54e2009-02-05 17:18:14 +09005 */
6
7#include "common.h"
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09008#include <linux/slab.h>
Kentaro Takedab69a54e2009-02-05 17:18:14 +09009
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090010/*
11 * Mapping table from "enum tomoyo_path_acl_index" to "enum tomoyo_mac_index".
12 */
Tetsuo Handa57c25902010-06-03 20:38:44 +090013static const u8 tomoyo_p2mac[TOMOYO_MAX_PATH_OPERATION] = {
Tetsuo Handa57c25902010-06-03 20:38:44 +090014 [TOMOYO_TYPE_EXECUTE] = TOMOYO_MAC_FILE_EXECUTE,
15 [TOMOYO_TYPE_READ] = TOMOYO_MAC_FILE_OPEN,
16 [TOMOYO_TYPE_WRITE] = TOMOYO_MAC_FILE_OPEN,
Tetsuo Handa7c759642011-06-26 23:15:31 +090017 [TOMOYO_TYPE_APPEND] = TOMOYO_MAC_FILE_OPEN,
Tetsuo Handa57c25902010-06-03 20:38:44 +090018 [TOMOYO_TYPE_UNLINK] = TOMOYO_MAC_FILE_UNLINK,
Tetsuo Handa7c759642011-06-26 23:15:31 +090019 [TOMOYO_TYPE_GETATTR] = TOMOYO_MAC_FILE_GETATTR,
Tetsuo Handa57c25902010-06-03 20:38:44 +090020 [TOMOYO_TYPE_RMDIR] = TOMOYO_MAC_FILE_RMDIR,
21 [TOMOYO_TYPE_TRUNCATE] = TOMOYO_MAC_FILE_TRUNCATE,
22 [TOMOYO_TYPE_SYMLINK] = TOMOYO_MAC_FILE_SYMLINK,
Tetsuo Handa57c25902010-06-03 20:38:44 +090023 [TOMOYO_TYPE_CHROOT] = TOMOYO_MAC_FILE_CHROOT,
24 [TOMOYO_TYPE_UMOUNT] = TOMOYO_MAC_FILE_UMOUNT,
25};
26
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090027/*
28 * Mapping table from "enum tomoyo_mkdev_acl_index" to "enum tomoyo_mac_index".
29 */
Tetsuo Handa0d2171d2011-06-26 23:17:46 +090030const u8 tomoyo_pnnn2mac[TOMOYO_MAX_MKDEV_OPERATION] = {
Tetsuo Handa57c25902010-06-03 20:38:44 +090031 [TOMOYO_TYPE_MKBLOCK] = TOMOYO_MAC_FILE_MKBLOCK,
32 [TOMOYO_TYPE_MKCHAR] = TOMOYO_MAC_FILE_MKCHAR,
33};
34
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090035/*
36 * Mapping table from "enum tomoyo_path2_acl_index" to "enum tomoyo_mac_index".
37 */
Tetsuo Handa0d2171d2011-06-26 23:17:46 +090038const u8 tomoyo_pp2mac[TOMOYO_MAX_PATH2_OPERATION] = {
Tetsuo Handa57c25902010-06-03 20:38:44 +090039 [TOMOYO_TYPE_LINK] = TOMOYO_MAC_FILE_LINK,
40 [TOMOYO_TYPE_RENAME] = TOMOYO_MAC_FILE_RENAME,
41 [TOMOYO_TYPE_PIVOT_ROOT] = TOMOYO_MAC_FILE_PIVOT_ROOT,
42};
43
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090044/*
45 * Mapping table from "enum tomoyo_path_number_acl_index" to
46 * "enum tomoyo_mac_index".
47 */
Tetsuo Handa0d2171d2011-06-26 23:17:46 +090048const u8 tomoyo_pn2mac[TOMOYO_MAX_PATH_NUMBER_OPERATION] = {
Tetsuo Handa57c25902010-06-03 20:38:44 +090049 [TOMOYO_TYPE_CREATE] = TOMOYO_MAC_FILE_CREATE,
50 [TOMOYO_TYPE_MKDIR] = TOMOYO_MAC_FILE_MKDIR,
51 [TOMOYO_TYPE_MKFIFO] = TOMOYO_MAC_FILE_MKFIFO,
52 [TOMOYO_TYPE_MKSOCK] = TOMOYO_MAC_FILE_MKSOCK,
53 [TOMOYO_TYPE_IOCTL] = TOMOYO_MAC_FILE_IOCTL,
54 [TOMOYO_TYPE_CHMOD] = TOMOYO_MAC_FILE_CHMOD,
55 [TOMOYO_TYPE_CHOWN] = TOMOYO_MAC_FILE_CHOWN,
56 [TOMOYO_TYPE_CHGRP] = TOMOYO_MAC_FILE_CHGRP,
57};
58
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090059/**
60 * tomoyo_put_name_union - Drop reference on "struct tomoyo_name_union".
61 *
62 * @ptr: Pointer to "struct tomoyo_name_union".
63 *
64 * Returns nothing.
65 */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +090066void tomoyo_put_name_union(struct tomoyo_name_union *ptr)
67{
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090068 tomoyo_put_group(ptr->group);
69 tomoyo_put_name(ptr->filename);
Tetsuo Handa7762fbf2010-05-10 17:30:26 +090070}
71
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090072/**
73 * tomoyo_compare_name_union - Check whether a name matches "struct tomoyo_name_union" or not.
74 *
75 * @name: Pointer to "struct tomoyo_path_info".
76 * @ptr: Pointer to "struct tomoyo_name_union".
77 *
78 * Returns "struct tomoyo_path_info" if @name matches @ptr, NULL otherwise.
79 */
Tetsuo Handa484ca792010-07-29 14:29:55 +090080const struct tomoyo_path_info *
81tomoyo_compare_name_union(const struct tomoyo_path_info *name,
82 const struct tomoyo_name_union *ptr)
Tetsuo Handa7762fbf2010-05-10 17:30:26 +090083{
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090084 if (ptr->group)
Tetsuo Handa3f629632010-06-03 20:37:26 +090085 return tomoyo_path_matches_group(name, ptr->group);
Tetsuo Handa484ca792010-07-29 14:29:55 +090086 if (tomoyo_path_matches_pattern(name, ptr->filename))
87 return ptr->filename;
88 return NULL;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +090089}
90
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090091/**
92 * tomoyo_put_number_union - Drop reference on "struct tomoyo_number_union".
93 *
94 * @ptr: Pointer to "struct tomoyo_number_union".
95 *
96 * Returns nothing.
97 */
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +090098void tomoyo_put_number_union(struct tomoyo_number_union *ptr)
99{
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900100 tomoyo_put_group(ptr->group);
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900101}
102
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900103/**
104 * tomoyo_compare_number_union - Check whether a value matches "struct tomoyo_number_union" or not.
105 *
106 * @value: Number to check.
107 * @ptr: Pointer to "struct tomoyo_number_union".
108 *
109 * Returns true if @value matches @ptr, false otherwise.
110 */
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900111bool tomoyo_compare_number_union(const unsigned long value,
112 const struct tomoyo_number_union *ptr)
113{
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900114 if (ptr->group)
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900115 return tomoyo_number_matches_group(value, value, ptr->group);
116 return value >= ptr->values[0] && value <= ptr->values[1];
117}
118
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900119/**
120 * tomoyo_add_slash - Add trailing '/' if needed.
121 *
122 * @buf: Pointer to "struct tomoyo_path_info".
123 *
124 * Returns nothing.
125 *
126 * @buf must be generated by tomoyo_encode() because this function does not
127 * allocate memory for adding '/'.
128 */
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900129static void tomoyo_add_slash(struct tomoyo_path_info *buf)
130{
131 if (buf->is_dir)
132 return;
133 /*
134 * This is OK because tomoyo_encode() reserves space for appending "/".
135 */
136 strcat((char *) buf->name, "/");
137 tomoyo_fill_path_info(buf);
138}
139
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900140/**
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900141 * tomoyo_get_realpath - Get realpath.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900142 *
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900143 * @buf: Pointer to "struct tomoyo_path_info".
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900144 * @path: Pointer to "struct path".
145 *
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900146 * Returns true on success, false otherwise.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900147 */
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900148static bool tomoyo_get_realpath(struct tomoyo_path_info *buf, struct path *path)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900149{
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900150 buf->name = tomoyo_realpath_from_path(path);
151 if (buf->name) {
152 tomoyo_fill_path_info(buf);
153 return true;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900154 }
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900155 return false;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900156}
157
Tetsuo Handa99a85252010-06-16 16:22:51 +0900158/**
159 * tomoyo_audit_path_log - Audit path request log.
160 *
161 * @r: Pointer to "struct tomoyo_request_info".
162 *
163 * Returns 0 on success, negative value otherwise.
164 */
165static int tomoyo_audit_path_log(struct tomoyo_request_info *r)
166{
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900167 return tomoyo_supervisor(r, "file %s %s\n", tomoyo_path_keyword
168 [r->param.path.operation],
169 r->param.path.filename->name);
Tetsuo Handa99a85252010-06-16 16:22:51 +0900170}
171
172/**
173 * tomoyo_audit_path2_log - Audit path/path request log.
174 *
175 * @r: Pointer to "struct tomoyo_request_info".
176 *
177 * Returns 0 on success, negative value otherwise.
178 */
179static int tomoyo_audit_path2_log(struct tomoyo_request_info *r)
180{
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900181 return tomoyo_supervisor(r, "file %s %s %s\n", tomoyo_mac_keywords
182 [tomoyo_pp2mac[r->param.path2.operation]],
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900183 r->param.path2.filename1->name,
184 r->param.path2.filename2->name);
Tetsuo Handa99a85252010-06-16 16:22:51 +0900185}
186
187/**
188 * tomoyo_audit_mkdev_log - Audit path/number/number/number request log.
189 *
190 * @r: Pointer to "struct tomoyo_request_info".
191 *
192 * Returns 0 on success, negative value otherwise.
193 */
194static int tomoyo_audit_mkdev_log(struct tomoyo_request_info *r)
195{
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900196 return tomoyo_supervisor(r, "file %s %s 0%o %u %u\n",
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900197 tomoyo_mac_keywords
198 [tomoyo_pnnn2mac[r->param.mkdev.operation]],
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900199 r->param.mkdev.filename->name,
200 r->param.mkdev.mode, r->param.mkdev.major,
201 r->param.mkdev.minor);
Tetsuo Handa99a85252010-06-16 16:22:51 +0900202}
203
204/**
205 * tomoyo_audit_path_number_log - Audit path/number request log.
206 *
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900207 * @r: Pointer to "struct tomoyo_request_info".
Tetsuo Handa99a85252010-06-16 16:22:51 +0900208 *
209 * Returns 0 on success, negative value otherwise.
210 */
211static int tomoyo_audit_path_number_log(struct tomoyo_request_info *r)
212{
213 const u8 type = r->param.path_number.operation;
214 u8 radix;
Tetsuo Handa99a85252010-06-16 16:22:51 +0900215 char buffer[64];
Tetsuo Handa99a85252010-06-16 16:22:51 +0900216 switch (type) {
217 case TOMOYO_TYPE_CREATE:
218 case TOMOYO_TYPE_MKDIR:
219 case TOMOYO_TYPE_MKFIFO:
220 case TOMOYO_TYPE_MKSOCK:
221 case TOMOYO_TYPE_CHMOD:
222 radix = TOMOYO_VALUE_TYPE_OCTAL;
223 break;
224 case TOMOYO_TYPE_IOCTL:
225 radix = TOMOYO_VALUE_TYPE_HEXADECIMAL;
226 break;
227 default:
228 radix = TOMOYO_VALUE_TYPE_DECIMAL;
229 break;
230 }
231 tomoyo_print_ulong(buffer, sizeof(buffer), r->param.path_number.number,
232 radix);
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900233 return tomoyo_supervisor(r, "file %s %s %s\n", tomoyo_mac_keywords
234 [tomoyo_pn2mac[type]],
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900235 r->param.path_number.filename->name, buffer);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900236}
237
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900238/**
239 * tomoyo_check_path_acl - Check permission for path operation.
240 *
241 * @r: Pointer to "struct tomoyo_request_info".
242 * @ptr: Pointer to "struct tomoyo_acl_info".
243 *
244 * Returns true if granted, false otherwise.
245 *
246 * To be able to use wildcard for domain transition, this function sets
247 * matching entry on success. Since the caller holds tomoyo_read_lock(),
248 * it is safe to set matching entry.
249 */
Tetsuo Handa484ca792010-07-29 14:29:55 +0900250static bool tomoyo_check_path_acl(struct tomoyo_request_info *r,
Tetsuo Handa99a85252010-06-16 16:22:51 +0900251 const struct tomoyo_acl_info *ptr)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900252{
Tetsuo Handa99a85252010-06-16 16:22:51 +0900253 const struct tomoyo_path_acl *acl = container_of(ptr, typeof(*acl),
254 head);
Tetsuo Handa484ca792010-07-29 14:29:55 +0900255 if (acl->perm & (1 << r->param.path.operation)) {
256 r->param.path.matched_path =
257 tomoyo_compare_name_union(r->param.path.filename,
258 &acl->name);
259 return r->param.path.matched_path != NULL;
260 }
261 return false;
Tetsuo Handa99a85252010-06-16 16:22:51 +0900262}
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900263
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900264/**
265 * tomoyo_check_path_number_acl - Check permission for path number operation.
266 *
267 * @r: Pointer to "struct tomoyo_request_info".
268 * @ptr: Pointer to "struct tomoyo_acl_info".
269 *
270 * Returns true if granted, false otherwise.
271 */
Tetsuo Handa484ca792010-07-29 14:29:55 +0900272static bool tomoyo_check_path_number_acl(struct tomoyo_request_info *r,
Tetsuo Handa99a85252010-06-16 16:22:51 +0900273 const struct tomoyo_acl_info *ptr)
274{
275 const struct tomoyo_path_number_acl *acl =
276 container_of(ptr, typeof(*acl), head);
277 return (acl->perm & (1 << r->param.path_number.operation)) &&
278 tomoyo_compare_number_union(r->param.path_number.number,
279 &acl->number) &&
280 tomoyo_compare_name_union(r->param.path_number.filename,
281 &acl->name);
282}
283
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900284/**
285 * tomoyo_check_path2_acl - Check permission for path path operation.
286 *
287 * @r: Pointer to "struct tomoyo_request_info".
288 * @ptr: Pointer to "struct tomoyo_acl_info".
289 *
290 * Returns true if granted, false otherwise.
291 */
Tetsuo Handa484ca792010-07-29 14:29:55 +0900292static bool tomoyo_check_path2_acl(struct tomoyo_request_info *r,
Tetsuo Handa99a85252010-06-16 16:22:51 +0900293 const struct tomoyo_acl_info *ptr)
294{
295 const struct tomoyo_path2_acl *acl =
296 container_of(ptr, typeof(*acl), head);
297 return (acl->perm & (1 << r->param.path2.operation)) &&
298 tomoyo_compare_name_union(r->param.path2.filename1, &acl->name1)
299 && tomoyo_compare_name_union(r->param.path2.filename2,
300 &acl->name2);
301}
302
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900303/**
304 * tomoyo_check_mkdev_acl - Check permission for path number number number operation.
305 *
306 * @r: Pointer to "struct tomoyo_request_info".
307 * @ptr: Pointer to "struct tomoyo_acl_info".
308 *
309 * Returns true if granted, false otherwise.
310 */
Tetsuo Handa484ca792010-07-29 14:29:55 +0900311static bool tomoyo_check_mkdev_acl(struct tomoyo_request_info *r,
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900312 const struct tomoyo_acl_info *ptr)
Tetsuo Handa99a85252010-06-16 16:22:51 +0900313{
Tetsuo Handa75093152010-06-16 16:23:55 +0900314 const struct tomoyo_mkdev_acl *acl =
Tetsuo Handa99a85252010-06-16 16:22:51 +0900315 container_of(ptr, typeof(*acl), head);
316 return (acl->perm & (1 << r->param.mkdev.operation)) &&
317 tomoyo_compare_number_union(r->param.mkdev.mode,
318 &acl->mode) &&
319 tomoyo_compare_number_union(r->param.mkdev.major,
320 &acl->major) &&
321 tomoyo_compare_number_union(r->param.mkdev.minor,
322 &acl->minor) &&
323 tomoyo_compare_name_union(r->param.mkdev.filename,
324 &acl->name);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900325}
326
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900327/**
328 * tomoyo_same_path_acl - Check for duplicated "struct tomoyo_path_acl" entry.
329 *
330 * @a: Pointer to "struct tomoyo_acl_info".
331 * @b: Pointer to "struct tomoyo_acl_info".
332 *
333 * Returns true if @a == @b except permission bits, false otherwise.
334 */
Tetsuo Handa237ab452010-06-12 20:46:22 +0900335static bool tomoyo_same_path_acl(const struct tomoyo_acl_info *a,
336 const struct tomoyo_acl_info *b)
337{
338 const struct tomoyo_path_acl *p1 = container_of(a, typeof(*p1), head);
339 const struct tomoyo_path_acl *p2 = container_of(b, typeof(*p2), head);
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900340 return tomoyo_same_name_union(&p1->name, &p2->name);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900341}
342
Tetsuo Handa7c759642011-06-26 23:15:31 +0900343/**
344 * tomoyo_merge_path_acl - Merge duplicated "struct tomoyo_path_acl" entry.
345 *
346 * @a: Pointer to "struct tomoyo_acl_info".
347 * @b: Pointer to "struct tomoyo_acl_info".
348 * @is_delete: True for @a &= ~@b, false for @a |= @b.
349 *
350 * Returns true if @a is empty, false otherwise.
351 */
Tetsuo Handa237ab452010-06-12 20:46:22 +0900352static bool tomoyo_merge_path_acl(struct tomoyo_acl_info *a,
353 struct tomoyo_acl_info *b,
354 const bool is_delete)
355{
356 u16 * const a_perm = &container_of(a, struct tomoyo_path_acl, head)
357 ->perm;
358 u16 perm = *a_perm;
359 const u16 b_perm = container_of(b, struct tomoyo_path_acl, head)->perm;
Tetsuo Handa7c759642011-06-26 23:15:31 +0900360 if (is_delete)
Tetsuo Handa237ab452010-06-12 20:46:22 +0900361 perm &= ~b_perm;
Tetsuo Handa7c759642011-06-26 23:15:31 +0900362 else
Tetsuo Handa237ab452010-06-12 20:46:22 +0900363 perm |= b_perm;
Tetsuo Handa237ab452010-06-12 20:46:22 +0900364 *a_perm = perm;
365 return !perm;
366}
367
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900368/**
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900369 * tomoyo_update_path_acl - Update "struct tomoyo_path_acl" list.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900370 *
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900371 * @perm: Permission.
372 * @param: Pointer to "struct tomoyo_acl_param".
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900373 *
374 * Returns 0 on success, negative value otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900375 *
376 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900377 */
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900378static int tomoyo_update_path_acl(const u16 perm,
379 struct tomoyo_acl_param *param)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900380{
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900381 struct tomoyo_path_acl e = {
382 .head.type = TOMOYO_TYPE_PATH_ACL,
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900383 .perm = perm
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900384 };
Tetsuo Handa237ab452010-06-12 20:46:22 +0900385 int error;
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900386 if (!tomoyo_parse_name_union(param, &e.name))
387 error = -EINVAL;
388 else
389 error = tomoyo_update_domain(&e.head, sizeof(e), param,
390 tomoyo_same_path_acl,
391 tomoyo_merge_path_acl);
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900392 tomoyo_put_name_union(&e.name);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900393 return error;
394}
395
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900396/**
397 * tomoyo_same_mkdev_acl - Check for duplicated "struct tomoyo_mkdev_acl" entry.
398 *
399 * @a: Pointer to "struct tomoyo_acl_info".
400 * @b: Pointer to "struct tomoyo_acl_info".
401 *
402 * Returns true if @a == @b except permission bits, false otherwise.
403 */
Tetsuo Handa75093152010-06-16 16:23:55 +0900404static bool tomoyo_same_mkdev_acl(const struct tomoyo_acl_info *a,
Tetsuo Handa237ab452010-06-12 20:46:22 +0900405 const struct tomoyo_acl_info *b)
406{
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900407 const struct tomoyo_mkdev_acl *p1 = container_of(a, typeof(*p1), head);
408 const struct tomoyo_mkdev_acl *p2 = container_of(b, typeof(*p2), head);
409 return tomoyo_same_name_union(&p1->name, &p2->name) &&
410 tomoyo_same_number_union(&p1->mode, &p2->mode) &&
411 tomoyo_same_number_union(&p1->major, &p2->major) &&
412 tomoyo_same_number_union(&p1->minor, &p2->minor);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900413}
414
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900415/**
416 * tomoyo_merge_mkdev_acl - Merge duplicated "struct tomoyo_mkdev_acl" entry.
417 *
418 * @a: Pointer to "struct tomoyo_acl_info".
419 * @b: Pointer to "struct tomoyo_acl_info".
420 * @is_delete: True for @a &= ~@b, false for @a |= @b.
421 *
422 * Returns true if @a is empty, false otherwise.
423 */
Tetsuo Handa75093152010-06-16 16:23:55 +0900424static bool tomoyo_merge_mkdev_acl(struct tomoyo_acl_info *a,
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900425 struct tomoyo_acl_info *b,
426 const bool is_delete)
Tetsuo Handa237ab452010-06-12 20:46:22 +0900427{
Tetsuo Handa75093152010-06-16 16:23:55 +0900428 u8 *const a_perm = &container_of(a, struct tomoyo_mkdev_acl,
Tetsuo Handa237ab452010-06-12 20:46:22 +0900429 head)->perm;
430 u8 perm = *a_perm;
Tetsuo Handa75093152010-06-16 16:23:55 +0900431 const u8 b_perm = container_of(b, struct tomoyo_mkdev_acl, head)
Tetsuo Handa237ab452010-06-12 20:46:22 +0900432 ->perm;
433 if (is_delete)
434 perm &= ~b_perm;
435 else
436 perm |= b_perm;
437 *a_perm = perm;
438 return !perm;
439}
440
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900441/**
Tetsuo Handa75093152010-06-16 16:23:55 +0900442 * tomoyo_update_mkdev_acl - Update "struct tomoyo_mkdev_acl" list.
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900443 *
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900444 * @perm: Permission.
445 * @param: Pointer to "struct tomoyo_acl_param".
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900446 *
447 * Returns 0 on success, negative value otherwise.
Tetsuo Handa237ab452010-06-12 20:46:22 +0900448 *
449 * Caller holds tomoyo_read_lock().
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900450 */
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900451static int tomoyo_update_mkdev_acl(const u8 perm,
452 struct tomoyo_acl_param *param)
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900453{
Tetsuo Handa75093152010-06-16 16:23:55 +0900454 struct tomoyo_mkdev_acl e = {
455 .head.type = TOMOYO_TYPE_MKDEV_ACL,
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900456 .perm = perm
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900457 };
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900458 int error;
459 if (!tomoyo_parse_name_union(param, &e.name) ||
460 !tomoyo_parse_number_union(param, &e.mode) ||
461 !tomoyo_parse_number_union(param, &e.major) ||
462 !tomoyo_parse_number_union(param, &e.minor))
463 error = -EINVAL;
464 else
465 error = tomoyo_update_domain(&e.head, sizeof(e), param,
466 tomoyo_same_mkdev_acl,
467 tomoyo_merge_mkdev_acl);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900468 tomoyo_put_name_union(&e.name);
469 tomoyo_put_number_union(&e.mode);
470 tomoyo_put_number_union(&e.major);
471 tomoyo_put_number_union(&e.minor);
472 return error;
473}
474
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900475/**
476 * tomoyo_same_path2_acl - Check for duplicated "struct tomoyo_path2_acl" entry.
477 *
478 * @a: Pointer to "struct tomoyo_acl_info".
479 * @b: Pointer to "struct tomoyo_acl_info".
480 *
481 * Returns true if @a == @b except permission bits, false otherwise.
482 */
Tetsuo Handa237ab452010-06-12 20:46:22 +0900483static bool tomoyo_same_path2_acl(const struct tomoyo_acl_info *a,
484 const struct tomoyo_acl_info *b)
485{
486 const struct tomoyo_path2_acl *p1 = container_of(a, typeof(*p1), head);
487 const struct tomoyo_path2_acl *p2 = container_of(b, typeof(*p2), head);
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900488 return tomoyo_same_name_union(&p1->name1, &p2->name1) &&
489 tomoyo_same_name_union(&p1->name2, &p2->name2);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900490}
491
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900492/**
493 * tomoyo_merge_path2_acl - Merge duplicated "struct tomoyo_path2_acl" entry.
494 *
495 * @a: Pointer to "struct tomoyo_acl_info".
496 * @b: Pointer to "struct tomoyo_acl_info".
497 * @is_delete: True for @a &= ~@b, false for @a |= @b.
498 *
499 * Returns true if @a is empty, false otherwise.
500 */
Tetsuo Handa237ab452010-06-12 20:46:22 +0900501static bool tomoyo_merge_path2_acl(struct tomoyo_acl_info *a,
502 struct tomoyo_acl_info *b,
503 const bool is_delete)
504{
505 u8 * const a_perm = &container_of(a, struct tomoyo_path2_acl, head)
506 ->perm;
507 u8 perm = *a_perm;
508 const u8 b_perm = container_of(b, struct tomoyo_path2_acl, head)->perm;
509 if (is_delete)
510 perm &= ~b_perm;
511 else
512 perm |= b_perm;
513 *a_perm = perm;
514 return !perm;
515}
516
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900517/**
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900518 * tomoyo_update_path2_acl - Update "struct tomoyo_path2_acl" list.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900519 *
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900520 * @perm: Permission.
521 * @param: Pointer to "struct tomoyo_acl_param".
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900522 *
523 * Returns 0 on success, negative value otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900524 *
525 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900526 */
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900527static int tomoyo_update_path2_acl(const u8 perm,
528 struct tomoyo_acl_param *param)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900529{
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900530 struct tomoyo_path2_acl e = {
531 .head.type = TOMOYO_TYPE_PATH2_ACL,
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900532 .perm = perm
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900533 };
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900534 int error;
535 if (!tomoyo_parse_name_union(param, &e.name1) ||
536 !tomoyo_parse_name_union(param, &e.name2))
537 error = -EINVAL;
538 else
539 error = tomoyo_update_domain(&e.head, sizeof(e), param,
540 tomoyo_same_path2_acl,
541 tomoyo_merge_path2_acl);
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900542 tomoyo_put_name_union(&e.name1);
543 tomoyo_put_name_union(&e.name2);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900544 return error;
545}
546
547/**
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900548 * tomoyo_path_permission - Check permission for single path operation.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900549 *
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900550 * @r: Pointer to "struct tomoyo_request_info".
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900551 * @operation: Type of operation.
552 * @filename: Filename to check.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900553 *
554 * Returns 0 on success, negative value otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900555 *
556 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900557 */
Tetsuo Handa05336de2010-06-16 16:20:24 +0900558int tomoyo_path_permission(struct tomoyo_request_info *r, u8 operation,
559 const struct tomoyo_path_info *filename)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900560{
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900561 int error;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900562
Tetsuo Handa57c25902010-06-03 20:38:44 +0900563 r->type = tomoyo_p2mac[operation];
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900564 r->mode = tomoyo_get_mode(r->domain->ns, r->profile, r->type);
Tetsuo Handa57c25902010-06-03 20:38:44 +0900565 if (r->mode == TOMOYO_CONFIG_DISABLED)
566 return 0;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900567 r->param_type = TOMOYO_TYPE_PATH_ACL;
568 r->param.path.filename = filename;
569 r->param.path.operation = operation;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900570 do {
Tetsuo Handa99a85252010-06-16 16:22:51 +0900571 tomoyo_check_acl(r, tomoyo_check_path_acl);
Tetsuo Handa99a85252010-06-16 16:22:51 +0900572 error = tomoyo_audit_path_log(r);
Tetsuo Handa05336de2010-06-16 16:20:24 +0900573 /*
574 * Do not retry for execute request, for alias may have
575 * changed.
576 */
577 } while (error == TOMOYO_RETRY_REQUEST &&
578 operation != TOMOYO_TYPE_EXECUTE);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900579 return error;
580}
581
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900582/**
583 * tomoyo_same_path_number_acl - Check for duplicated "struct tomoyo_path_number_acl" entry.
584 *
585 * @a: Pointer to "struct tomoyo_acl_info".
586 * @b: Pointer to "struct tomoyo_acl_info".
587 *
588 * Returns true if @a == @b except permission bits, false otherwise.
589 */
Tetsuo Handa237ab452010-06-12 20:46:22 +0900590static bool tomoyo_same_path_number_acl(const struct tomoyo_acl_info *a,
591 const struct tomoyo_acl_info *b)
592{
593 const struct tomoyo_path_number_acl *p1 = container_of(a, typeof(*p1),
594 head);
595 const struct tomoyo_path_number_acl *p2 = container_of(b, typeof(*p2),
596 head);
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900597 return tomoyo_same_name_union(&p1->name, &p2->name) &&
598 tomoyo_same_number_union(&p1->number, &p2->number);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900599}
600
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900601/**
602 * tomoyo_merge_path_number_acl - Merge duplicated "struct tomoyo_path_number_acl" entry.
603 *
604 * @a: Pointer to "struct tomoyo_acl_info".
605 * @b: Pointer to "struct tomoyo_acl_info".
606 * @is_delete: True for @a &= ~@b, false for @a |= @b.
607 *
608 * Returns true if @a is empty, false otherwise.
609 */
Tetsuo Handa237ab452010-06-12 20:46:22 +0900610static bool tomoyo_merge_path_number_acl(struct tomoyo_acl_info *a,
611 struct tomoyo_acl_info *b,
612 const bool is_delete)
613{
614 u8 * const a_perm = &container_of(a, struct tomoyo_path_number_acl,
615 head)->perm;
616 u8 perm = *a_perm;
617 const u8 b_perm = container_of(b, struct tomoyo_path_number_acl, head)
618 ->perm;
619 if (is_delete)
620 perm &= ~b_perm;
621 else
622 perm |= b_perm;
623 *a_perm = perm;
624 return !perm;
625}
626
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900627/**
628 * tomoyo_update_path_number_acl - Update ioctl/chmod/chown/chgrp ACL.
629 *
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900630 * @perm: Permission.
631 * @param: Pointer to "struct tomoyo_acl_param".
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900632 *
633 * Returns 0 on success, negative value otherwise.
634 */
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900635static int tomoyo_update_path_number_acl(const u8 perm,
636 struct tomoyo_acl_param *param)
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900637{
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900638 struct tomoyo_path_number_acl e = {
639 .head.type = TOMOYO_TYPE_PATH_NUMBER_ACL,
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900640 .perm = perm
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900641 };
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900642 int error;
643 if (!tomoyo_parse_name_union(param, &e.name) ||
644 !tomoyo_parse_number_union(param, &e.number))
645 error = -EINVAL;
646 else
647 error = tomoyo_update_domain(&e.head, sizeof(e), param,
648 tomoyo_same_path_number_acl,
649 tomoyo_merge_path_number_acl);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900650 tomoyo_put_name_union(&e.name);
651 tomoyo_put_number_union(&e.number);
652 return error;
653}
654
655/**
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900656 * tomoyo_path_number_perm - Check permission for "create", "mkdir", "mkfifo", "mksock", "ioctl", "chmod", "chown", "chgrp".
657 *
658 * @type: Type of operation.
659 * @path: Pointer to "struct path".
660 * @number: Number.
661 *
662 * Returns 0 on success, negative value otherwise.
663 */
664int tomoyo_path_number_perm(const u8 type, struct path *path,
665 unsigned long number)
666{
667 struct tomoyo_request_info r;
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900668 struct tomoyo_obj_info obj = {
669 .path1 = *path,
670 };
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900671 int error = -ENOMEM;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900672 struct tomoyo_path_info buf;
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900673 int idx;
674
Tetsuo Handa57c25902010-06-03 20:38:44 +0900675 if (tomoyo_init_request_info(&r, NULL, tomoyo_pn2mac[type])
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900676 == TOMOYO_CONFIG_DISABLED || !path->dentry)
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900677 return 0;
678 idx = tomoyo_read_lock();
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900679 if (!tomoyo_get_realpath(&buf, path))
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900680 goto out;
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900681 r.obj = &obj;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900682 if (type == TOMOYO_TYPE_MKDIR)
683 tomoyo_add_slash(&buf);
Tetsuo Handacb917cf2010-06-16 16:28:21 +0900684 r.param_type = TOMOYO_TYPE_PATH_NUMBER_ACL;
685 r.param.path_number.operation = type;
686 r.param.path_number.filename = &buf;
687 r.param.path_number.number = number;
688 do {
689 tomoyo_check_acl(&r, tomoyo_check_path_number_acl);
690 error = tomoyo_audit_path_number_log(&r);
691 } while (error == TOMOYO_RETRY_REQUEST);
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900692 kfree(buf.name);
Tetsuo Handacb917cf2010-06-16 16:28:21 +0900693 out:
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900694 tomoyo_read_unlock(idx);
695 if (r.mode != TOMOYO_CONFIG_ENFORCING)
696 error = 0;
697 return error;
698}
699
700/**
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900701 * tomoyo_check_open_permission - Check permission for "read" and "write".
702 *
703 * @domain: Pointer to "struct tomoyo_domain_info".
704 * @path: Pointer to "struct path".
705 * @flag: Flags for open().
706 *
707 * Returns 0 on success, negative value otherwise.
708 */
709int tomoyo_check_open_permission(struct tomoyo_domain_info *domain,
710 struct path *path, const int flag)
711{
712 const u8 acc_mode = ACC_MODE(flag);
Tetsuo Handaeae61f32011-03-02 16:54:24 +0900713 int error = 0;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900714 struct tomoyo_path_info buf;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900715 struct tomoyo_request_info r;
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900716 struct tomoyo_obj_info obj = {
717 .path1 = *path,
718 };
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900719 int idx;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900720
Tetsuo Handa57c25902010-06-03 20:38:44 +0900721 buf.name = NULL;
722 r.mode = TOMOYO_CONFIG_DISABLED;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900723 idx = tomoyo_read_lock();
Tetsuo Handa7c759642011-06-26 23:15:31 +0900724 if (acc_mode &&
725 tomoyo_init_request_info(&r, domain, TOMOYO_MAC_FILE_OPEN)
Tetsuo Handa57c25902010-06-03 20:38:44 +0900726 != TOMOYO_CONFIG_DISABLED) {
727 if (!tomoyo_get_realpath(&buf, path)) {
728 error = -ENOMEM;
729 goto out;
730 }
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900731 r.obj = &obj;
Tetsuo Handa7c759642011-06-26 23:15:31 +0900732 if (acc_mode & MAY_READ)
733 error = tomoyo_path_permission(&r, TOMOYO_TYPE_READ,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900734 &buf);
Tetsuo Handa7c759642011-06-26 23:15:31 +0900735 if (!error && (acc_mode & MAY_WRITE))
736 error = tomoyo_path_permission(&r, (flag & O_APPEND) ?
737 TOMOYO_TYPE_APPEND :
738 TOMOYO_TYPE_WRITE,
739 &buf);
Tetsuo Handa57c25902010-06-03 20:38:44 +0900740 }
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900741 out:
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900742 kfree(buf.name);
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900743 tomoyo_read_unlock(idx);
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900744 if (r.mode != TOMOYO_CONFIG_ENFORCING)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900745 error = 0;
746 return error;
747}
748
749/**
Tetsuo Handa7c759642011-06-26 23:15:31 +0900750 * tomoyo_path_perm - Check permission for "unlink", "rmdir", "truncate", "symlink", "append", "chroot" and "unmount".
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900751 *
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900752 * @operation: Type of operation.
753 * @path: Pointer to "struct path".
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900754 * @target: Symlink's target if @operation is TOMOYO_TYPE_SYMLINK,
755 * NULL otherwise.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900756 *
757 * Returns 0 on success, negative value otherwise.
758 */
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900759int tomoyo_path_perm(const u8 operation, struct path *path, const char *target)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900760{
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900761 struct tomoyo_request_info r;
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900762 struct tomoyo_obj_info obj = {
763 .path1 = *path,
764 };
Tetsuo Handa7c759642011-06-26 23:15:31 +0900765 int error;
766 struct tomoyo_path_info buf;
767 bool is_enforce;
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900768 struct tomoyo_path_info symlink_target;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900769 int idx;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900770
Tetsuo Handa57c25902010-06-03 20:38:44 +0900771 if (tomoyo_init_request_info(&r, NULL, tomoyo_p2mac[operation])
772 == TOMOYO_CONFIG_DISABLED)
773 return 0;
Tetsuo Handa7c759642011-06-26 23:15:31 +0900774 is_enforce = (r.mode == TOMOYO_CONFIG_ENFORCING);
775 error = -ENOMEM;
Tetsuo Handa57c25902010-06-03 20:38:44 +0900776 buf.name = NULL;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900777 idx = tomoyo_read_lock();
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900778 if (!tomoyo_get_realpath(&buf, path))
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900779 goto out;
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900780 r.obj = &obj;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900781 switch (operation) {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900782 case TOMOYO_TYPE_RMDIR:
783 case TOMOYO_TYPE_CHROOT:
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900784 tomoyo_add_slash(&buf);
785 break;
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900786 case TOMOYO_TYPE_SYMLINK:
787 symlink_target.name = tomoyo_encode(target);
788 if (!symlink_target.name)
789 goto out;
790 tomoyo_fill_path_info(&symlink_target);
791 obj.symlink_target = &symlink_target;
792 break;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900793 }
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900794 error = tomoyo_path_permission(&r, operation, &buf);
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900795 if (operation == TOMOYO_TYPE_SYMLINK)
796 kfree(symlink_target.name);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900797 out:
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900798 kfree(buf.name);
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900799 tomoyo_read_unlock(idx);
Tetsuo Handa7c759642011-06-26 23:15:31 +0900800 if (!is_enforce)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900801 error = 0;
802 return error;
803}
804
805/**
Tetsuo Handa75093152010-06-16 16:23:55 +0900806 * tomoyo_mkdev_perm - Check permission for "mkblock" and "mkchar".
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900807 *
808 * @operation: Type of operation. (TOMOYO_TYPE_MKCHAR or TOMOYO_TYPE_MKBLOCK)
809 * @path: Pointer to "struct path".
810 * @mode: Create mode.
811 * @dev: Device number.
812 *
813 * Returns 0 on success, negative value otherwise.
814 */
Tetsuo Handa75093152010-06-16 16:23:55 +0900815int tomoyo_mkdev_perm(const u8 operation, struct path *path,
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900816 const unsigned int mode, unsigned int dev)
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900817{
818 struct tomoyo_request_info r;
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900819 struct tomoyo_obj_info obj = {
820 .path1 = *path,
821 };
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900822 int error = -ENOMEM;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900823 struct tomoyo_path_info buf;
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900824 int idx;
825
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900826 if (tomoyo_init_request_info(&r, NULL, tomoyo_pnnn2mac[operation])
Tetsuo Handa57c25902010-06-03 20:38:44 +0900827 == TOMOYO_CONFIG_DISABLED)
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900828 return 0;
829 idx = tomoyo_read_lock();
830 error = -ENOMEM;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900831 if (tomoyo_get_realpath(&buf, path)) {
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900832 r.obj = &obj;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900833 dev = new_decode_dev(dev);
Tetsuo Handa75093152010-06-16 16:23:55 +0900834 r.param_type = TOMOYO_TYPE_MKDEV_ACL;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900835 r.param.mkdev.filename = &buf;
836 r.param.mkdev.operation = operation;
837 r.param.mkdev.mode = mode;
838 r.param.mkdev.major = MAJOR(dev);
839 r.param.mkdev.minor = MINOR(dev);
Tetsuo Handa99a85252010-06-16 16:22:51 +0900840 tomoyo_check_acl(&r, tomoyo_check_mkdev_acl);
841 error = tomoyo_audit_mkdev_log(&r);
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900842 kfree(buf.name);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900843 }
844 tomoyo_read_unlock(idx);
845 if (r.mode != TOMOYO_CONFIG_ENFORCING)
846 error = 0;
847 return error;
848}
849
850/**
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900851 * tomoyo_path2_perm - Check permission for "rename", "link" and "pivot_root".
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900852 *
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900853 * @operation: Type of operation.
854 * @path1: Pointer to "struct path".
855 * @path2: Pointer to "struct path".
856 *
857 * Returns 0 on success, negative value otherwise.
858 */
Tetsuo Handa97d69312010-02-16 09:46:15 +0900859int tomoyo_path2_perm(const u8 operation, struct path *path1,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900860 struct path *path2)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900861{
862 int error = -ENOMEM;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900863 struct tomoyo_path_info buf1;
864 struct tomoyo_path_info buf2;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900865 struct tomoyo_request_info r;
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900866 struct tomoyo_obj_info obj = {
867 .path1 = *path1,
868 .path2 = *path2,
869 };
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900870 int idx;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900871
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900872 if (tomoyo_init_request_info(&r, NULL, tomoyo_pp2mac[operation])
Tetsuo Handa57c25902010-06-03 20:38:44 +0900873 == TOMOYO_CONFIG_DISABLED)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900874 return 0;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900875 buf1.name = NULL;
876 buf2.name = NULL;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900877 idx = tomoyo_read_lock();
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900878 if (!tomoyo_get_realpath(&buf1, path1) ||
879 !tomoyo_get_realpath(&buf2, path2))
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900880 goto out;
Tetsuo Handa57c25902010-06-03 20:38:44 +0900881 switch (operation) {
882 struct dentry *dentry;
883 case TOMOYO_TYPE_RENAME:
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900884 case TOMOYO_TYPE_LINK:
Tetsuo Handa57c25902010-06-03 20:38:44 +0900885 dentry = path1->dentry;
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900886 if (!dentry->d_inode || !S_ISDIR(dentry->d_inode->i_mode))
887 break;
888 /* fall through */
889 case TOMOYO_TYPE_PIVOT_ROOT:
890 tomoyo_add_slash(&buf1);
891 tomoyo_add_slash(&buf2);
Tetsuo Handa57c25902010-06-03 20:38:44 +0900892 break;
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900893 }
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900894 r.obj = &obj;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900895 r.param_type = TOMOYO_TYPE_PATH2_ACL;
896 r.param.path2.operation = operation;
897 r.param.path2.filename1 = &buf1;
898 r.param.path2.filename2 = &buf2;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900899 do {
Tetsuo Handa99a85252010-06-16 16:22:51 +0900900 tomoyo_check_acl(&r, tomoyo_check_path2_acl);
901 error = tomoyo_audit_path2_log(&r);
902 } while (error == TOMOYO_RETRY_REQUEST);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900903 out:
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900904 kfree(buf1.name);
905 kfree(buf2.name);
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900906 tomoyo_read_unlock(idx);
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900907 if (r.mode != TOMOYO_CONFIG_ENFORCING)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900908 error = 0;
909 return error;
910}
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900911
912/**
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900913 * tomoyo_same_mount_acl - Check for duplicated "struct tomoyo_mount_acl" entry.
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900914 *
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900915 * @a: Pointer to "struct tomoyo_acl_info".
916 * @b: Pointer to "struct tomoyo_acl_info".
917 *
918 * Returns true if @a == @b, false otherwise.
919 */
920static bool tomoyo_same_mount_acl(const struct tomoyo_acl_info *a,
921 const struct tomoyo_acl_info *b)
922{
923 const struct tomoyo_mount_acl *p1 = container_of(a, typeof(*p1), head);
924 const struct tomoyo_mount_acl *p2 = container_of(b, typeof(*p2), head);
925 return tomoyo_same_name_union(&p1->dev_name, &p2->dev_name) &&
926 tomoyo_same_name_union(&p1->dir_name, &p2->dir_name) &&
927 tomoyo_same_name_union(&p1->fs_type, &p2->fs_type) &&
928 tomoyo_same_number_union(&p1->flags, &p2->flags);
929}
930
931/**
932 * tomoyo_update_mount_acl - Write "struct tomoyo_mount_acl" list.
933 *
934 * @param: Pointer to "struct tomoyo_acl_param".
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900935 *
936 * Returns 0 on success, negative value otherwise.
937 *
938 * Caller holds tomoyo_read_lock().
939 */
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900940static int tomoyo_update_mount_acl(struct tomoyo_acl_param *param)
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900941{
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900942 struct tomoyo_mount_acl e = { .head.type = TOMOYO_TYPE_MOUNT_ACL };
943 int error;
944 if (!tomoyo_parse_name_union(param, &e.dev_name) ||
945 !tomoyo_parse_name_union(param, &e.dir_name) ||
946 !tomoyo_parse_name_union(param, &e.fs_type) ||
947 !tomoyo_parse_number_union(param, &e.flags))
948 error = -EINVAL;
949 else
950 error = tomoyo_update_domain(&e.head, sizeof(e), param,
951 tomoyo_same_mount_acl, NULL);
952 tomoyo_put_name_union(&e.dev_name);
953 tomoyo_put_name_union(&e.dir_name);
954 tomoyo_put_name_union(&e.fs_type);
955 tomoyo_put_number_union(&e.flags);
956 return error;
957}
958
959/**
960 * tomoyo_write_file - Update file related list.
961 *
962 * @param: Pointer to "struct tomoyo_acl_param".
963 *
964 * Returns 0 on success, negative value otherwise.
965 *
966 * Caller holds tomoyo_read_lock().
967 */
968int tomoyo_write_file(struct tomoyo_acl_param *param)
969{
970 u16 perm = 0;
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900971 u8 type;
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900972 const char *operation = tomoyo_read_token(param);
973 for (type = 0; type < TOMOYO_MAX_PATH_OPERATION; type++)
974 if (tomoyo_permstr(operation, tomoyo_path_keyword[type]))
975 perm |= 1 << type;
976 if (perm)
977 return tomoyo_update_path_acl(perm, param);
978 for (type = 0; type < TOMOYO_MAX_PATH2_OPERATION; type++)
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900979 if (tomoyo_permstr(operation,
980 tomoyo_mac_keywords[tomoyo_pp2mac[type]]))
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900981 perm |= 1 << type;
982 if (perm)
983 return tomoyo_update_path2_acl(perm, param);
984 for (type = 0; type < TOMOYO_MAX_PATH_NUMBER_OPERATION; type++)
985 if (tomoyo_permstr(operation,
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900986 tomoyo_mac_keywords[tomoyo_pn2mac[type]]))
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900987 perm |= 1 << type;
988 if (perm)
989 return tomoyo_update_path_number_acl(perm, param);
990 for (type = 0; type < TOMOYO_MAX_MKDEV_OPERATION; type++)
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900991 if (tomoyo_permstr(operation,
992 tomoyo_mac_keywords[tomoyo_pnnn2mac[type]]))
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900993 perm |= 1 << type;
994 if (perm)
995 return tomoyo_update_mkdev_acl(perm, param);
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900996 if (tomoyo_permstr(operation,
997 tomoyo_mac_keywords[TOMOYO_MAC_FILE_MOUNT]))
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900998 return tomoyo_update_mount_acl(param);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900999 return -EINVAL;
1000}