blob: 2a374b4da8f5cec172041876e7dee0c986cd45dc [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Kentaro Takedab69a54e2009-02-05 17:18:14 +09002/*
3 * security/tomoyo/file.c
4 *
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +09005 * Copyright (C) 2005-2011 NTT DATA CORPORATION
Kentaro Takedab69a54e2009-02-05 17:18:14 +09006 */
7
8#include "common.h"
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/slab.h>
Kentaro Takedab69a54e2009-02-05 17:18:14 +090010
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090011/*
12 * Mapping table from "enum tomoyo_path_acl_index" to "enum tomoyo_mac_index".
13 */
Tetsuo Handa57c25902010-06-03 20:38:44 +090014static const u8 tomoyo_p2mac[TOMOYO_MAX_PATH_OPERATION] = {
Tetsuo Handa57c25902010-06-03 20:38:44 +090015 [TOMOYO_TYPE_EXECUTE] = TOMOYO_MAC_FILE_EXECUTE,
16 [TOMOYO_TYPE_READ] = TOMOYO_MAC_FILE_OPEN,
17 [TOMOYO_TYPE_WRITE] = TOMOYO_MAC_FILE_OPEN,
Tetsuo Handa7c759642011-06-26 23:15:31 +090018 [TOMOYO_TYPE_APPEND] = TOMOYO_MAC_FILE_OPEN,
Tetsuo Handa57c25902010-06-03 20:38:44 +090019 [TOMOYO_TYPE_UNLINK] = TOMOYO_MAC_FILE_UNLINK,
Tetsuo Handa7c759642011-06-26 23:15:31 +090020 [TOMOYO_TYPE_GETATTR] = TOMOYO_MAC_FILE_GETATTR,
Tetsuo Handa57c25902010-06-03 20:38:44 +090021 [TOMOYO_TYPE_RMDIR] = TOMOYO_MAC_FILE_RMDIR,
22 [TOMOYO_TYPE_TRUNCATE] = TOMOYO_MAC_FILE_TRUNCATE,
23 [TOMOYO_TYPE_SYMLINK] = TOMOYO_MAC_FILE_SYMLINK,
Tetsuo Handa57c25902010-06-03 20:38:44 +090024 [TOMOYO_TYPE_CHROOT] = TOMOYO_MAC_FILE_CHROOT,
25 [TOMOYO_TYPE_UMOUNT] = TOMOYO_MAC_FILE_UMOUNT,
26};
27
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090028/*
29 * Mapping table from "enum tomoyo_mkdev_acl_index" to "enum tomoyo_mac_index".
30 */
Tetsuo Handa0d2171d2011-06-26 23:17:46 +090031const u8 tomoyo_pnnn2mac[TOMOYO_MAX_MKDEV_OPERATION] = {
Tetsuo Handa57c25902010-06-03 20:38:44 +090032 [TOMOYO_TYPE_MKBLOCK] = TOMOYO_MAC_FILE_MKBLOCK,
33 [TOMOYO_TYPE_MKCHAR] = TOMOYO_MAC_FILE_MKCHAR,
34};
35
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090036/*
37 * Mapping table from "enum tomoyo_path2_acl_index" to "enum tomoyo_mac_index".
38 */
Tetsuo Handa0d2171d2011-06-26 23:17:46 +090039const u8 tomoyo_pp2mac[TOMOYO_MAX_PATH2_OPERATION] = {
Tetsuo Handa57c25902010-06-03 20:38:44 +090040 [TOMOYO_TYPE_LINK] = TOMOYO_MAC_FILE_LINK,
41 [TOMOYO_TYPE_RENAME] = TOMOYO_MAC_FILE_RENAME,
42 [TOMOYO_TYPE_PIVOT_ROOT] = TOMOYO_MAC_FILE_PIVOT_ROOT,
43};
44
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090045/*
46 * Mapping table from "enum tomoyo_path_number_acl_index" to
47 * "enum tomoyo_mac_index".
48 */
Tetsuo Handa0d2171d2011-06-26 23:17:46 +090049const u8 tomoyo_pn2mac[TOMOYO_MAX_PATH_NUMBER_OPERATION] = {
Tetsuo Handa57c25902010-06-03 20:38:44 +090050 [TOMOYO_TYPE_CREATE] = TOMOYO_MAC_FILE_CREATE,
51 [TOMOYO_TYPE_MKDIR] = TOMOYO_MAC_FILE_MKDIR,
52 [TOMOYO_TYPE_MKFIFO] = TOMOYO_MAC_FILE_MKFIFO,
53 [TOMOYO_TYPE_MKSOCK] = TOMOYO_MAC_FILE_MKSOCK,
54 [TOMOYO_TYPE_IOCTL] = TOMOYO_MAC_FILE_IOCTL,
55 [TOMOYO_TYPE_CHMOD] = TOMOYO_MAC_FILE_CHMOD,
56 [TOMOYO_TYPE_CHOWN] = TOMOYO_MAC_FILE_CHOWN,
57 [TOMOYO_TYPE_CHGRP] = TOMOYO_MAC_FILE_CHGRP,
58};
59
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090060/**
61 * tomoyo_put_name_union - Drop reference on "struct tomoyo_name_union".
62 *
63 * @ptr: Pointer to "struct tomoyo_name_union".
64 *
65 * Returns nothing.
66 */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +090067void tomoyo_put_name_union(struct tomoyo_name_union *ptr)
68{
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090069 tomoyo_put_group(ptr->group);
70 tomoyo_put_name(ptr->filename);
Tetsuo Handa7762fbf2010-05-10 17:30:26 +090071}
72
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090073/**
74 * tomoyo_compare_name_union - Check whether a name matches "struct tomoyo_name_union" or not.
75 *
76 * @name: Pointer to "struct tomoyo_path_info".
77 * @ptr: Pointer to "struct tomoyo_name_union".
78 *
79 * Returns "struct tomoyo_path_info" if @name matches @ptr, NULL otherwise.
80 */
Tetsuo Handa484ca792010-07-29 14:29:55 +090081const struct tomoyo_path_info *
82tomoyo_compare_name_union(const struct tomoyo_path_info *name,
83 const struct tomoyo_name_union *ptr)
Tetsuo Handa7762fbf2010-05-10 17:30:26 +090084{
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090085 if (ptr->group)
Tetsuo Handa3f629632010-06-03 20:37:26 +090086 return tomoyo_path_matches_group(name, ptr->group);
Tetsuo Handa484ca792010-07-29 14:29:55 +090087 if (tomoyo_path_matches_pattern(name, ptr->filename))
88 return ptr->filename;
89 return NULL;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +090090}
91
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090092/**
93 * tomoyo_put_number_union - Drop reference on "struct tomoyo_number_union".
94 *
95 * @ptr: Pointer to "struct tomoyo_number_union".
96 *
97 * Returns nothing.
98 */
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +090099void tomoyo_put_number_union(struct tomoyo_number_union *ptr)
100{
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900101 tomoyo_put_group(ptr->group);
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900102}
103
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900104/**
105 * tomoyo_compare_number_union - Check whether a value matches "struct tomoyo_number_union" or not.
106 *
107 * @value: Number to check.
108 * @ptr: Pointer to "struct tomoyo_number_union".
109 *
110 * Returns true if @value matches @ptr, false otherwise.
111 */
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900112bool tomoyo_compare_number_union(const unsigned long value,
113 const struct tomoyo_number_union *ptr)
114{
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900115 if (ptr->group)
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900116 return tomoyo_number_matches_group(value, value, ptr->group);
117 return value >= ptr->values[0] && value <= ptr->values[1];
118}
119
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900120/**
121 * tomoyo_add_slash - Add trailing '/' if needed.
122 *
123 * @buf: Pointer to "struct tomoyo_path_info".
124 *
125 * Returns nothing.
126 *
127 * @buf must be generated by tomoyo_encode() because this function does not
128 * allocate memory for adding '/'.
129 */
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900130static void tomoyo_add_slash(struct tomoyo_path_info *buf)
131{
132 if (buf->is_dir)
133 return;
134 /*
135 * This is OK because tomoyo_encode() reserves space for appending "/".
136 */
137 strcat((char *) buf->name, "/");
138 tomoyo_fill_path_info(buf);
139}
140
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900141/**
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900142 * tomoyo_get_realpath - Get realpath.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900143 *
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900144 * @buf: Pointer to "struct tomoyo_path_info".
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900145 * @path: Pointer to "struct path".
146 *
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900147 * Returns true on success, false otherwise.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900148 */
Al Viro3f7036a2015-03-08 19:28:30 -0400149static bool tomoyo_get_realpath(struct tomoyo_path_info *buf, const struct path *path)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900150{
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900151 buf->name = tomoyo_realpath_from_path(path);
152 if (buf->name) {
153 tomoyo_fill_path_info(buf);
154 return true;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900155 }
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900156 return false;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900157}
158
Tetsuo Handa99a85252010-06-16 16:22:51 +0900159/**
160 * tomoyo_audit_path_log - Audit path request log.
161 *
162 * @r: Pointer to "struct tomoyo_request_info".
163 *
164 * Returns 0 on success, negative value otherwise.
165 */
166static int tomoyo_audit_path_log(struct tomoyo_request_info *r)
167{
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900168 return tomoyo_supervisor(r, "file %s %s\n", tomoyo_path_keyword
169 [r->param.path.operation],
170 r->param.path.filename->name);
Tetsuo Handa99a85252010-06-16 16:22:51 +0900171}
172
173/**
174 * tomoyo_audit_path2_log - Audit path/path request log.
175 *
176 * @r: Pointer to "struct tomoyo_request_info".
177 *
178 * Returns 0 on success, negative value otherwise.
179 */
180static int tomoyo_audit_path2_log(struct tomoyo_request_info *r)
181{
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900182 return tomoyo_supervisor(r, "file %s %s %s\n", tomoyo_mac_keywords
183 [tomoyo_pp2mac[r->param.path2.operation]],
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900184 r->param.path2.filename1->name,
185 r->param.path2.filename2->name);
Tetsuo Handa99a85252010-06-16 16:22:51 +0900186}
187
188/**
189 * tomoyo_audit_mkdev_log - Audit path/number/number/number request log.
190 *
191 * @r: Pointer to "struct tomoyo_request_info".
192 *
193 * Returns 0 on success, negative value otherwise.
194 */
195static int tomoyo_audit_mkdev_log(struct tomoyo_request_info *r)
196{
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900197 return tomoyo_supervisor(r, "file %s %s 0%o %u %u\n",
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900198 tomoyo_mac_keywords
199 [tomoyo_pnnn2mac[r->param.mkdev.operation]],
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900200 r->param.mkdev.filename->name,
201 r->param.mkdev.mode, r->param.mkdev.major,
202 r->param.mkdev.minor);
Tetsuo Handa99a85252010-06-16 16:22:51 +0900203}
204
205/**
206 * tomoyo_audit_path_number_log - Audit path/number request log.
207 *
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900208 * @r: Pointer to "struct tomoyo_request_info".
Tetsuo Handa99a85252010-06-16 16:22:51 +0900209 *
210 * Returns 0 on success, negative value otherwise.
211 */
212static int tomoyo_audit_path_number_log(struct tomoyo_request_info *r)
213{
214 const u8 type = r->param.path_number.operation;
215 u8 radix;
Tetsuo Handa99a85252010-06-16 16:22:51 +0900216 char buffer[64];
Tetsuo Handa99a85252010-06-16 16:22:51 +0900217 switch (type) {
218 case TOMOYO_TYPE_CREATE:
219 case TOMOYO_TYPE_MKDIR:
220 case TOMOYO_TYPE_MKFIFO:
221 case TOMOYO_TYPE_MKSOCK:
222 case TOMOYO_TYPE_CHMOD:
223 radix = TOMOYO_VALUE_TYPE_OCTAL;
224 break;
225 case TOMOYO_TYPE_IOCTL:
226 radix = TOMOYO_VALUE_TYPE_HEXADECIMAL;
227 break;
228 default:
229 radix = TOMOYO_VALUE_TYPE_DECIMAL;
230 break;
231 }
232 tomoyo_print_ulong(buffer, sizeof(buffer), r->param.path_number.number,
233 radix);
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900234 return tomoyo_supervisor(r, "file %s %s %s\n", tomoyo_mac_keywords
235 [tomoyo_pn2mac[type]],
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900236 r->param.path_number.filename->name, buffer);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900237}
238
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900239/**
240 * tomoyo_check_path_acl - Check permission for path operation.
241 *
242 * @r: Pointer to "struct tomoyo_request_info".
243 * @ptr: Pointer to "struct tomoyo_acl_info".
244 *
245 * Returns true if granted, false otherwise.
246 *
247 * To be able to use wildcard for domain transition, this function sets
248 * matching entry on success. Since the caller holds tomoyo_read_lock(),
249 * it is safe to set matching entry.
250 */
Tetsuo Handa484ca792010-07-29 14:29:55 +0900251static bool tomoyo_check_path_acl(struct tomoyo_request_info *r,
Tetsuo Handa99a85252010-06-16 16:22:51 +0900252 const struct tomoyo_acl_info *ptr)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900253{
Tetsuo Handa99a85252010-06-16 16:22:51 +0900254 const struct tomoyo_path_acl *acl = container_of(ptr, typeof(*acl),
255 head);
Tetsuo Handa484ca792010-07-29 14:29:55 +0900256 if (acl->perm & (1 << r->param.path.operation)) {
257 r->param.path.matched_path =
258 tomoyo_compare_name_union(r->param.path.filename,
259 &acl->name);
260 return r->param.path.matched_path != NULL;
261 }
262 return false;
Tetsuo Handa99a85252010-06-16 16:22:51 +0900263}
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900264
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900265/**
266 * tomoyo_check_path_number_acl - Check permission for path number operation.
267 *
268 * @r: Pointer to "struct tomoyo_request_info".
269 * @ptr: Pointer to "struct tomoyo_acl_info".
270 *
271 * Returns true if granted, false otherwise.
272 */
Tetsuo Handa484ca792010-07-29 14:29:55 +0900273static bool tomoyo_check_path_number_acl(struct tomoyo_request_info *r,
Tetsuo Handa99a85252010-06-16 16:22:51 +0900274 const struct tomoyo_acl_info *ptr)
275{
276 const struct tomoyo_path_number_acl *acl =
277 container_of(ptr, typeof(*acl), head);
278 return (acl->perm & (1 << r->param.path_number.operation)) &&
279 tomoyo_compare_number_union(r->param.path_number.number,
280 &acl->number) &&
281 tomoyo_compare_name_union(r->param.path_number.filename,
282 &acl->name);
283}
284
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900285/**
286 * tomoyo_check_path2_acl - Check permission for path path operation.
287 *
288 * @r: Pointer to "struct tomoyo_request_info".
289 * @ptr: Pointer to "struct tomoyo_acl_info".
290 *
291 * Returns true if granted, false otherwise.
292 */
Tetsuo Handa484ca792010-07-29 14:29:55 +0900293static bool tomoyo_check_path2_acl(struct tomoyo_request_info *r,
Tetsuo Handa99a85252010-06-16 16:22:51 +0900294 const struct tomoyo_acl_info *ptr)
295{
296 const struct tomoyo_path2_acl *acl =
297 container_of(ptr, typeof(*acl), head);
298 return (acl->perm & (1 << r->param.path2.operation)) &&
299 tomoyo_compare_name_union(r->param.path2.filename1, &acl->name1)
300 && tomoyo_compare_name_union(r->param.path2.filename2,
301 &acl->name2);
302}
303
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900304/**
305 * tomoyo_check_mkdev_acl - Check permission for path number number number operation.
306 *
307 * @r: Pointer to "struct tomoyo_request_info".
308 * @ptr: Pointer to "struct tomoyo_acl_info".
309 *
310 * Returns true if granted, false otherwise.
311 */
Tetsuo Handa484ca792010-07-29 14:29:55 +0900312static bool tomoyo_check_mkdev_acl(struct tomoyo_request_info *r,
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900313 const struct tomoyo_acl_info *ptr)
Tetsuo Handa99a85252010-06-16 16:22:51 +0900314{
Tetsuo Handa75093152010-06-16 16:23:55 +0900315 const struct tomoyo_mkdev_acl *acl =
Tetsuo Handa99a85252010-06-16 16:22:51 +0900316 container_of(ptr, typeof(*acl), head);
317 return (acl->perm & (1 << r->param.mkdev.operation)) &&
318 tomoyo_compare_number_union(r->param.mkdev.mode,
319 &acl->mode) &&
320 tomoyo_compare_number_union(r->param.mkdev.major,
321 &acl->major) &&
322 tomoyo_compare_number_union(r->param.mkdev.minor,
323 &acl->minor) &&
324 tomoyo_compare_name_union(r->param.mkdev.filename,
325 &acl->name);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900326}
327
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900328/**
329 * tomoyo_same_path_acl - Check for duplicated "struct tomoyo_path_acl" entry.
330 *
331 * @a: Pointer to "struct tomoyo_acl_info".
332 * @b: Pointer to "struct tomoyo_acl_info".
333 *
334 * Returns true if @a == @b except permission bits, false otherwise.
335 */
Tetsuo Handa237ab452010-06-12 20:46:22 +0900336static bool tomoyo_same_path_acl(const struct tomoyo_acl_info *a,
337 const struct tomoyo_acl_info *b)
338{
339 const struct tomoyo_path_acl *p1 = container_of(a, typeof(*p1), head);
340 const struct tomoyo_path_acl *p2 = container_of(b, typeof(*p2), head);
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900341 return tomoyo_same_name_union(&p1->name, &p2->name);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900342}
343
Tetsuo Handa7c759642011-06-26 23:15:31 +0900344/**
345 * tomoyo_merge_path_acl - Merge duplicated "struct tomoyo_path_acl" entry.
346 *
347 * @a: Pointer to "struct tomoyo_acl_info".
348 * @b: Pointer to "struct tomoyo_acl_info".
349 * @is_delete: True for @a &= ~@b, false for @a |= @b.
350 *
351 * Returns true if @a is empty, false otherwise.
352 */
Tetsuo Handa237ab452010-06-12 20:46:22 +0900353static bool tomoyo_merge_path_acl(struct tomoyo_acl_info *a,
354 struct tomoyo_acl_info *b,
355 const bool is_delete)
356{
357 u16 * const a_perm = &container_of(a, struct tomoyo_path_acl, head)
358 ->perm;
359 u16 perm = *a_perm;
360 const u16 b_perm = container_of(b, struct tomoyo_path_acl, head)->perm;
Tetsuo Handa7c759642011-06-26 23:15:31 +0900361 if (is_delete)
Tetsuo Handa237ab452010-06-12 20:46:22 +0900362 perm &= ~b_perm;
Tetsuo Handa7c759642011-06-26 23:15:31 +0900363 else
Tetsuo Handa237ab452010-06-12 20:46:22 +0900364 perm |= b_perm;
Tetsuo Handa237ab452010-06-12 20:46:22 +0900365 *a_perm = perm;
366 return !perm;
367}
368
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900369/**
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900370 * tomoyo_update_path_acl - Update "struct tomoyo_path_acl" list.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900371 *
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900372 * @perm: Permission.
373 * @param: Pointer to "struct tomoyo_acl_param".
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900374 *
375 * Returns 0 on success, negative value otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900376 *
377 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900378 */
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900379static int tomoyo_update_path_acl(const u16 perm,
380 struct tomoyo_acl_param *param)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900381{
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900382 struct tomoyo_path_acl e = {
383 .head.type = TOMOYO_TYPE_PATH_ACL,
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900384 .perm = perm
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900385 };
Tetsuo Handa237ab452010-06-12 20:46:22 +0900386 int error;
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900387 if (!tomoyo_parse_name_union(param, &e.name))
388 error = -EINVAL;
389 else
390 error = tomoyo_update_domain(&e.head, sizeof(e), param,
391 tomoyo_same_path_acl,
392 tomoyo_merge_path_acl);
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900393 tomoyo_put_name_union(&e.name);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900394 return error;
395}
396
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900397/**
398 * tomoyo_same_mkdev_acl - Check for duplicated "struct tomoyo_mkdev_acl" entry.
399 *
400 * @a: Pointer to "struct tomoyo_acl_info".
401 * @b: Pointer to "struct tomoyo_acl_info".
402 *
403 * Returns true if @a == @b except permission bits, false otherwise.
404 */
Tetsuo Handa75093152010-06-16 16:23:55 +0900405static bool tomoyo_same_mkdev_acl(const struct tomoyo_acl_info *a,
Tetsuo Handa237ab452010-06-12 20:46:22 +0900406 const struct tomoyo_acl_info *b)
407{
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900408 const struct tomoyo_mkdev_acl *p1 = container_of(a, typeof(*p1), head);
409 const struct tomoyo_mkdev_acl *p2 = container_of(b, typeof(*p2), head);
410 return tomoyo_same_name_union(&p1->name, &p2->name) &&
411 tomoyo_same_number_union(&p1->mode, &p2->mode) &&
412 tomoyo_same_number_union(&p1->major, &p2->major) &&
413 tomoyo_same_number_union(&p1->minor, &p2->minor);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900414}
415
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900416/**
417 * tomoyo_merge_mkdev_acl - Merge duplicated "struct tomoyo_mkdev_acl" entry.
418 *
419 * @a: Pointer to "struct tomoyo_acl_info".
420 * @b: Pointer to "struct tomoyo_acl_info".
421 * @is_delete: True for @a &= ~@b, false for @a |= @b.
422 *
423 * Returns true if @a is empty, false otherwise.
424 */
Tetsuo Handa75093152010-06-16 16:23:55 +0900425static bool tomoyo_merge_mkdev_acl(struct tomoyo_acl_info *a,
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900426 struct tomoyo_acl_info *b,
427 const bool is_delete)
Tetsuo Handa237ab452010-06-12 20:46:22 +0900428{
Tetsuo Handa75093152010-06-16 16:23:55 +0900429 u8 *const a_perm = &container_of(a, struct tomoyo_mkdev_acl,
Tetsuo Handa237ab452010-06-12 20:46:22 +0900430 head)->perm;
431 u8 perm = *a_perm;
Tetsuo Handa75093152010-06-16 16:23:55 +0900432 const u8 b_perm = container_of(b, struct tomoyo_mkdev_acl, head)
Tetsuo Handa237ab452010-06-12 20:46:22 +0900433 ->perm;
434 if (is_delete)
435 perm &= ~b_perm;
436 else
437 perm |= b_perm;
438 *a_perm = perm;
439 return !perm;
440}
441
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900442/**
Tetsuo Handa75093152010-06-16 16:23:55 +0900443 * tomoyo_update_mkdev_acl - Update "struct tomoyo_mkdev_acl" list.
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900444 *
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900445 * @perm: Permission.
446 * @param: Pointer to "struct tomoyo_acl_param".
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900447 *
448 * Returns 0 on success, negative value otherwise.
Tetsuo Handa237ab452010-06-12 20:46:22 +0900449 *
450 * Caller holds tomoyo_read_lock().
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900451 */
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900452static int tomoyo_update_mkdev_acl(const u8 perm,
453 struct tomoyo_acl_param *param)
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900454{
Tetsuo Handa75093152010-06-16 16:23:55 +0900455 struct tomoyo_mkdev_acl e = {
456 .head.type = TOMOYO_TYPE_MKDEV_ACL,
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900457 .perm = perm
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900458 };
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900459 int error;
460 if (!tomoyo_parse_name_union(param, &e.name) ||
461 !tomoyo_parse_number_union(param, &e.mode) ||
462 !tomoyo_parse_number_union(param, &e.major) ||
463 !tomoyo_parse_number_union(param, &e.minor))
464 error = -EINVAL;
465 else
466 error = tomoyo_update_domain(&e.head, sizeof(e), param,
467 tomoyo_same_mkdev_acl,
468 tomoyo_merge_mkdev_acl);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900469 tomoyo_put_name_union(&e.name);
470 tomoyo_put_number_union(&e.mode);
471 tomoyo_put_number_union(&e.major);
472 tomoyo_put_number_union(&e.minor);
473 return error;
474}
475
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900476/**
477 * tomoyo_same_path2_acl - Check for duplicated "struct tomoyo_path2_acl" entry.
478 *
479 * @a: Pointer to "struct tomoyo_acl_info".
480 * @b: Pointer to "struct tomoyo_acl_info".
481 *
482 * Returns true if @a == @b except permission bits, false otherwise.
483 */
Tetsuo Handa237ab452010-06-12 20:46:22 +0900484static bool tomoyo_same_path2_acl(const struct tomoyo_acl_info *a,
485 const struct tomoyo_acl_info *b)
486{
487 const struct tomoyo_path2_acl *p1 = container_of(a, typeof(*p1), head);
488 const struct tomoyo_path2_acl *p2 = container_of(b, typeof(*p2), head);
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900489 return tomoyo_same_name_union(&p1->name1, &p2->name1) &&
490 tomoyo_same_name_union(&p1->name2, &p2->name2);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900491}
492
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900493/**
494 * tomoyo_merge_path2_acl - Merge duplicated "struct tomoyo_path2_acl" entry.
495 *
496 * @a: Pointer to "struct tomoyo_acl_info".
497 * @b: Pointer to "struct tomoyo_acl_info".
498 * @is_delete: True for @a &= ~@b, false for @a |= @b.
499 *
500 * Returns true if @a is empty, false otherwise.
501 */
Tetsuo Handa237ab452010-06-12 20:46:22 +0900502static bool tomoyo_merge_path2_acl(struct tomoyo_acl_info *a,
503 struct tomoyo_acl_info *b,
504 const bool is_delete)
505{
506 u8 * const a_perm = &container_of(a, struct tomoyo_path2_acl, head)
507 ->perm;
508 u8 perm = *a_perm;
509 const u8 b_perm = container_of(b, struct tomoyo_path2_acl, head)->perm;
510 if (is_delete)
511 perm &= ~b_perm;
512 else
513 perm |= b_perm;
514 *a_perm = perm;
515 return !perm;
516}
517
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900518/**
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900519 * tomoyo_update_path2_acl - Update "struct tomoyo_path2_acl" list.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900520 *
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900521 * @perm: Permission.
522 * @param: Pointer to "struct tomoyo_acl_param".
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900523 *
524 * Returns 0 on success, negative value otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900525 *
526 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900527 */
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900528static int tomoyo_update_path2_acl(const u8 perm,
529 struct tomoyo_acl_param *param)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900530{
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900531 struct tomoyo_path2_acl e = {
532 .head.type = TOMOYO_TYPE_PATH2_ACL,
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900533 .perm = perm
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900534 };
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900535 int error;
536 if (!tomoyo_parse_name_union(param, &e.name1) ||
537 !tomoyo_parse_name_union(param, &e.name2))
538 error = -EINVAL;
539 else
540 error = tomoyo_update_domain(&e.head, sizeof(e), param,
541 tomoyo_same_path2_acl,
542 tomoyo_merge_path2_acl);
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900543 tomoyo_put_name_union(&e.name1);
544 tomoyo_put_name_union(&e.name2);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900545 return error;
546}
547
548/**
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900549 * tomoyo_path_permission - Check permission for single path operation.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900550 *
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900551 * @r: Pointer to "struct tomoyo_request_info".
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900552 * @operation: Type of operation.
553 * @filename: Filename to check.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900554 *
555 * Returns 0 on success, negative value otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900556 *
557 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900558 */
Tetsuo Handa778c4a42011-09-25 17:49:09 +0900559static int tomoyo_path_permission(struct tomoyo_request_info *r, u8 operation,
560 const struct tomoyo_path_info *filename)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900561{
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900562 int error;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900563
Tetsuo Handa57c25902010-06-03 20:38:44 +0900564 r->type = tomoyo_p2mac[operation];
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900565 r->mode = tomoyo_get_mode(r->domain->ns, r->profile, r->type);
Tetsuo Handa57c25902010-06-03 20:38:44 +0900566 if (r->mode == TOMOYO_CONFIG_DISABLED)
567 return 0;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900568 r->param_type = TOMOYO_TYPE_PATH_ACL;
569 r->param.path.filename = filename;
570 r->param.path.operation = operation;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900571 do {
Tetsuo Handa99a85252010-06-16 16:22:51 +0900572 tomoyo_check_acl(r, tomoyo_check_path_acl);
Tetsuo Handa99a85252010-06-16 16:22:51 +0900573 error = tomoyo_audit_path_log(r);
Tetsuo Handa6bce98e2011-09-16 22:54:25 +0900574 } while (error == TOMOYO_RETRY_REQUEST);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900575 return error;
576}
577
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900578/**
Tetsuo Handa6bce98e2011-09-16 22:54:25 +0900579 * tomoyo_execute_permission - Check permission for execute operation.
580 *
581 * @r: Pointer to "struct tomoyo_request_info".
582 * @filename: Filename to check.
583 *
584 * Returns 0 on success, negative value otherwise.
585 *
586 * Caller holds tomoyo_read_lock().
587 */
588int tomoyo_execute_permission(struct tomoyo_request_info *r,
589 const struct tomoyo_path_info *filename)
590{
591 /*
592 * Unlike other permission checks, this check is done regardless of
593 * profile mode settings in order to check for domain transition
594 * preference.
595 */
596 r->type = TOMOYO_MAC_FILE_EXECUTE;
597 r->mode = tomoyo_get_mode(r->domain->ns, r->profile, r->type);
598 r->param_type = TOMOYO_TYPE_PATH_ACL;
599 r->param.path.filename = filename;
600 r->param.path.operation = TOMOYO_TYPE_EXECUTE;
601 tomoyo_check_acl(r, tomoyo_check_path_acl);
602 r->ee->transition = r->matched_acl && r->matched_acl->cond ?
603 r->matched_acl->cond->transit : NULL;
604 if (r->mode != TOMOYO_CONFIG_DISABLED)
605 return tomoyo_audit_path_log(r);
606 return 0;
607}
608
609/**
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900610 * tomoyo_same_path_number_acl - Check for duplicated "struct tomoyo_path_number_acl" entry.
611 *
612 * @a: Pointer to "struct tomoyo_acl_info".
613 * @b: Pointer to "struct tomoyo_acl_info".
614 *
615 * Returns true if @a == @b except permission bits, false otherwise.
616 */
Tetsuo Handa237ab452010-06-12 20:46:22 +0900617static bool tomoyo_same_path_number_acl(const struct tomoyo_acl_info *a,
618 const struct tomoyo_acl_info *b)
619{
620 const struct tomoyo_path_number_acl *p1 = container_of(a, typeof(*p1),
621 head);
622 const struct tomoyo_path_number_acl *p2 = container_of(b, typeof(*p2),
623 head);
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900624 return tomoyo_same_name_union(&p1->name, &p2->name) &&
625 tomoyo_same_number_union(&p1->number, &p2->number);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900626}
627
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900628/**
629 * tomoyo_merge_path_number_acl - Merge duplicated "struct tomoyo_path_number_acl" entry.
630 *
631 * @a: Pointer to "struct tomoyo_acl_info".
632 * @b: Pointer to "struct tomoyo_acl_info".
633 * @is_delete: True for @a &= ~@b, false for @a |= @b.
634 *
635 * Returns true if @a is empty, false otherwise.
636 */
Tetsuo Handa237ab452010-06-12 20:46:22 +0900637static bool tomoyo_merge_path_number_acl(struct tomoyo_acl_info *a,
638 struct tomoyo_acl_info *b,
639 const bool is_delete)
640{
641 u8 * const a_perm = &container_of(a, struct tomoyo_path_number_acl,
642 head)->perm;
643 u8 perm = *a_perm;
644 const u8 b_perm = container_of(b, struct tomoyo_path_number_acl, head)
645 ->perm;
646 if (is_delete)
647 perm &= ~b_perm;
648 else
649 perm |= b_perm;
650 *a_perm = perm;
651 return !perm;
652}
653
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900654/**
655 * tomoyo_update_path_number_acl - Update ioctl/chmod/chown/chgrp ACL.
656 *
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900657 * @perm: Permission.
658 * @param: Pointer to "struct tomoyo_acl_param".
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900659 *
660 * Returns 0 on success, negative value otherwise.
661 */
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900662static int tomoyo_update_path_number_acl(const u8 perm,
663 struct tomoyo_acl_param *param)
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900664{
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900665 struct tomoyo_path_number_acl e = {
666 .head.type = TOMOYO_TYPE_PATH_NUMBER_ACL,
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900667 .perm = perm
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900668 };
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900669 int error;
670 if (!tomoyo_parse_name_union(param, &e.name) ||
671 !tomoyo_parse_number_union(param, &e.number))
672 error = -EINVAL;
673 else
674 error = tomoyo_update_domain(&e.head, sizeof(e), param,
675 tomoyo_same_path_number_acl,
676 tomoyo_merge_path_number_acl);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900677 tomoyo_put_name_union(&e.name);
678 tomoyo_put_number_union(&e.number);
679 return error;
680}
681
682/**
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900683 * tomoyo_path_number_perm - Check permission for "create", "mkdir", "mkfifo", "mksock", "ioctl", "chmod", "chown", "chgrp".
684 *
685 * @type: Type of operation.
686 * @path: Pointer to "struct path".
687 * @number: Number.
688 *
689 * Returns 0 on success, negative value otherwise.
690 */
Al Viroe6641ed2016-03-25 14:41:28 -0400691int tomoyo_path_number_perm(const u8 type, const struct path *path,
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900692 unsigned long number)
693{
694 struct tomoyo_request_info r;
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900695 struct tomoyo_obj_info obj = {
Kees Cook82917982017-03-29 16:52:58 -0700696 .path1 = { .mnt = path->mnt, .dentry = path->dentry },
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900697 };
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900698 int error = -ENOMEM;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900699 struct tomoyo_path_info buf;
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900700 int idx;
701
Tetsuo Handa57c25902010-06-03 20:38:44 +0900702 if (tomoyo_init_request_info(&r, NULL, tomoyo_pn2mac[type])
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900703 == TOMOYO_CONFIG_DISABLED || !path->dentry)
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900704 return 0;
705 idx = tomoyo_read_lock();
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900706 if (!tomoyo_get_realpath(&buf, path))
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900707 goto out;
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900708 r.obj = &obj;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900709 if (type == TOMOYO_TYPE_MKDIR)
710 tomoyo_add_slash(&buf);
Tetsuo Handacb917cf2010-06-16 16:28:21 +0900711 r.param_type = TOMOYO_TYPE_PATH_NUMBER_ACL;
712 r.param.path_number.operation = type;
713 r.param.path_number.filename = &buf;
714 r.param.path_number.number = number;
715 do {
716 tomoyo_check_acl(&r, tomoyo_check_path_number_acl);
717 error = tomoyo_audit_path_number_log(&r);
718 } while (error == TOMOYO_RETRY_REQUEST);
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900719 kfree(buf.name);
Tetsuo Handacb917cf2010-06-16 16:28:21 +0900720 out:
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900721 tomoyo_read_unlock(idx);
722 if (r.mode != TOMOYO_CONFIG_ENFORCING)
723 error = 0;
724 return error;
725}
726
727/**
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900728 * tomoyo_check_open_permission - Check permission for "read" and "write".
729 *
730 * @domain: Pointer to "struct tomoyo_domain_info".
731 * @path: Pointer to "struct path".
732 * @flag: Flags for open().
733 *
734 * Returns 0 on success, negative value otherwise.
735 */
736int tomoyo_check_open_permission(struct tomoyo_domain_info *domain,
Al Viroe6641ed2016-03-25 14:41:28 -0400737 const struct path *path, const int flag)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900738{
739 const u8 acc_mode = ACC_MODE(flag);
Tetsuo Handaeae61f32011-03-02 16:54:24 +0900740 int error = 0;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900741 struct tomoyo_path_info buf;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900742 struct tomoyo_request_info r;
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900743 struct tomoyo_obj_info obj = {
Kees Cook82917982017-03-29 16:52:58 -0700744 .path1 = { .mnt = path->mnt, .dentry = path->dentry },
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900745 };
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900746 int idx;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900747
Tetsuo Handa57c25902010-06-03 20:38:44 +0900748 buf.name = NULL;
749 r.mode = TOMOYO_CONFIG_DISABLED;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900750 idx = tomoyo_read_lock();
Tetsuo Handa7c759642011-06-26 23:15:31 +0900751 if (acc_mode &&
752 tomoyo_init_request_info(&r, domain, TOMOYO_MAC_FILE_OPEN)
Tetsuo Handa57c25902010-06-03 20:38:44 +0900753 != TOMOYO_CONFIG_DISABLED) {
754 if (!tomoyo_get_realpath(&buf, path)) {
755 error = -ENOMEM;
756 goto out;
757 }
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900758 r.obj = &obj;
Tetsuo Handa7c759642011-06-26 23:15:31 +0900759 if (acc_mode & MAY_READ)
760 error = tomoyo_path_permission(&r, TOMOYO_TYPE_READ,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900761 &buf);
Tetsuo Handa7c759642011-06-26 23:15:31 +0900762 if (!error && (acc_mode & MAY_WRITE))
763 error = tomoyo_path_permission(&r, (flag & O_APPEND) ?
764 TOMOYO_TYPE_APPEND :
765 TOMOYO_TYPE_WRITE,
766 &buf);
Tetsuo Handa57c25902010-06-03 20:38:44 +0900767 }
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900768 out:
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900769 kfree(buf.name);
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900770 tomoyo_read_unlock(idx);
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900771 if (r.mode != TOMOYO_CONFIG_ENFORCING)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900772 error = 0;
773 return error;
774}
775
776/**
Tetsuo Handa7c759642011-06-26 23:15:31 +0900777 * tomoyo_path_perm - Check permission for "unlink", "rmdir", "truncate", "symlink", "append", "chroot" and "unmount".
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900778 *
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900779 * @operation: Type of operation.
780 * @path: Pointer to "struct path".
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900781 * @target: Symlink's target if @operation is TOMOYO_TYPE_SYMLINK,
782 * NULL otherwise.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900783 *
784 * Returns 0 on success, negative value otherwise.
785 */
Al Viro3f7036a2015-03-08 19:28:30 -0400786int tomoyo_path_perm(const u8 operation, const struct path *path, const char *target)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900787{
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900788 struct tomoyo_request_info r;
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900789 struct tomoyo_obj_info obj = {
Kees Cook82917982017-03-29 16:52:58 -0700790 .path1 = { .mnt = path->mnt, .dentry = path->dentry },
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900791 };
Tetsuo Handa7c759642011-06-26 23:15:31 +0900792 int error;
793 struct tomoyo_path_info buf;
794 bool is_enforce;
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900795 struct tomoyo_path_info symlink_target;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900796 int idx;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900797
Tetsuo Handa57c25902010-06-03 20:38:44 +0900798 if (tomoyo_init_request_info(&r, NULL, tomoyo_p2mac[operation])
799 == TOMOYO_CONFIG_DISABLED)
800 return 0;
Tetsuo Handa7c759642011-06-26 23:15:31 +0900801 is_enforce = (r.mode == TOMOYO_CONFIG_ENFORCING);
802 error = -ENOMEM;
Tetsuo Handa57c25902010-06-03 20:38:44 +0900803 buf.name = NULL;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900804 idx = tomoyo_read_lock();
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900805 if (!tomoyo_get_realpath(&buf, path))
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900806 goto out;
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900807 r.obj = &obj;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900808 switch (operation) {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900809 case TOMOYO_TYPE_RMDIR:
810 case TOMOYO_TYPE_CHROOT:
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900811 tomoyo_add_slash(&buf);
812 break;
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900813 case TOMOYO_TYPE_SYMLINK:
814 symlink_target.name = tomoyo_encode(target);
815 if (!symlink_target.name)
816 goto out;
817 tomoyo_fill_path_info(&symlink_target);
818 obj.symlink_target = &symlink_target;
819 break;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900820 }
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900821 error = tomoyo_path_permission(&r, operation, &buf);
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900822 if (operation == TOMOYO_TYPE_SYMLINK)
823 kfree(symlink_target.name);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900824 out:
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900825 kfree(buf.name);
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900826 tomoyo_read_unlock(idx);
Tetsuo Handa7c759642011-06-26 23:15:31 +0900827 if (!is_enforce)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900828 error = 0;
829 return error;
830}
831
832/**
Tetsuo Handa75093152010-06-16 16:23:55 +0900833 * tomoyo_mkdev_perm - Check permission for "mkblock" and "mkchar".
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900834 *
835 * @operation: Type of operation. (TOMOYO_TYPE_MKCHAR or TOMOYO_TYPE_MKBLOCK)
836 * @path: Pointer to "struct path".
837 * @mode: Create mode.
838 * @dev: Device number.
839 *
840 * Returns 0 on success, negative value otherwise.
841 */
Al Viroe6641ed2016-03-25 14:41:28 -0400842int tomoyo_mkdev_perm(const u8 operation, const struct path *path,
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900843 const unsigned int mode, unsigned int dev)
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900844{
845 struct tomoyo_request_info r;
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900846 struct tomoyo_obj_info obj = {
Kees Cook82917982017-03-29 16:52:58 -0700847 .path1 = { .mnt = path->mnt, .dentry = path->dentry },
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900848 };
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900849 int error = -ENOMEM;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900850 struct tomoyo_path_info buf;
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900851 int idx;
852
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900853 if (tomoyo_init_request_info(&r, NULL, tomoyo_pnnn2mac[operation])
Tetsuo Handa57c25902010-06-03 20:38:44 +0900854 == TOMOYO_CONFIG_DISABLED)
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900855 return 0;
856 idx = tomoyo_read_lock();
857 error = -ENOMEM;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900858 if (tomoyo_get_realpath(&buf, path)) {
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900859 r.obj = &obj;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900860 dev = new_decode_dev(dev);
Tetsuo Handa75093152010-06-16 16:23:55 +0900861 r.param_type = TOMOYO_TYPE_MKDEV_ACL;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900862 r.param.mkdev.filename = &buf;
863 r.param.mkdev.operation = operation;
864 r.param.mkdev.mode = mode;
865 r.param.mkdev.major = MAJOR(dev);
866 r.param.mkdev.minor = MINOR(dev);
Tetsuo Handa99a85252010-06-16 16:22:51 +0900867 tomoyo_check_acl(&r, tomoyo_check_mkdev_acl);
868 error = tomoyo_audit_mkdev_log(&r);
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900869 kfree(buf.name);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900870 }
871 tomoyo_read_unlock(idx);
872 if (r.mode != TOMOYO_CONFIG_ENFORCING)
873 error = 0;
874 return error;
875}
876
877/**
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900878 * tomoyo_path2_perm - Check permission for "rename", "link" and "pivot_root".
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900879 *
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900880 * @operation: Type of operation.
881 * @path1: Pointer to "struct path".
882 * @path2: Pointer to "struct path".
883 *
884 * Returns 0 on success, negative value otherwise.
885 */
Al Viroe6641ed2016-03-25 14:41:28 -0400886int tomoyo_path2_perm(const u8 operation, const struct path *path1,
887 const struct path *path2)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900888{
889 int error = -ENOMEM;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900890 struct tomoyo_path_info buf1;
891 struct tomoyo_path_info buf2;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900892 struct tomoyo_request_info r;
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900893 struct tomoyo_obj_info obj = {
Kees Cook82917982017-03-29 16:52:58 -0700894 .path1 = { .mnt = path1->mnt, .dentry = path1->dentry },
895 .path2 = { .mnt = path2->mnt, .dentry = path2->dentry }
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900896 };
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900897 int idx;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900898
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900899 if (tomoyo_init_request_info(&r, NULL, tomoyo_pp2mac[operation])
Tetsuo Handa57c25902010-06-03 20:38:44 +0900900 == TOMOYO_CONFIG_DISABLED)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900901 return 0;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900902 buf1.name = NULL;
903 buf2.name = NULL;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900904 idx = tomoyo_read_lock();
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900905 if (!tomoyo_get_realpath(&buf1, path1) ||
906 !tomoyo_get_realpath(&buf2, path2))
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900907 goto out;
Tetsuo Handa57c25902010-06-03 20:38:44 +0900908 switch (operation) {
Tetsuo Handa57c25902010-06-03 20:38:44 +0900909 case TOMOYO_TYPE_RENAME:
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900910 case TOMOYO_TYPE_LINK:
David Howellse656a8e2015-01-29 12:02:32 +0000911 if (!d_is_dir(path1->dentry))
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900912 break;
913 /* fall through */
914 case TOMOYO_TYPE_PIVOT_ROOT:
915 tomoyo_add_slash(&buf1);
916 tomoyo_add_slash(&buf2);
Tetsuo Handa57c25902010-06-03 20:38:44 +0900917 break;
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900918 }
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900919 r.obj = &obj;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900920 r.param_type = TOMOYO_TYPE_PATH2_ACL;
921 r.param.path2.operation = operation;
922 r.param.path2.filename1 = &buf1;
923 r.param.path2.filename2 = &buf2;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900924 do {
Tetsuo Handa99a85252010-06-16 16:22:51 +0900925 tomoyo_check_acl(&r, tomoyo_check_path2_acl);
926 error = tomoyo_audit_path2_log(&r);
927 } while (error == TOMOYO_RETRY_REQUEST);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900928 out:
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900929 kfree(buf1.name);
930 kfree(buf2.name);
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900931 tomoyo_read_unlock(idx);
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900932 if (r.mode != TOMOYO_CONFIG_ENFORCING)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900933 error = 0;
934 return error;
935}
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900936
937/**
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900938 * tomoyo_same_mount_acl - Check for duplicated "struct tomoyo_mount_acl" entry.
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900939 *
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900940 * @a: Pointer to "struct tomoyo_acl_info".
941 * @b: Pointer to "struct tomoyo_acl_info".
942 *
943 * Returns true if @a == @b, false otherwise.
944 */
945static bool tomoyo_same_mount_acl(const struct tomoyo_acl_info *a,
946 const struct tomoyo_acl_info *b)
947{
948 const struct tomoyo_mount_acl *p1 = container_of(a, typeof(*p1), head);
949 const struct tomoyo_mount_acl *p2 = container_of(b, typeof(*p2), head);
950 return tomoyo_same_name_union(&p1->dev_name, &p2->dev_name) &&
951 tomoyo_same_name_union(&p1->dir_name, &p2->dir_name) &&
952 tomoyo_same_name_union(&p1->fs_type, &p2->fs_type) &&
953 tomoyo_same_number_union(&p1->flags, &p2->flags);
954}
955
956/**
957 * tomoyo_update_mount_acl - Write "struct tomoyo_mount_acl" list.
958 *
959 * @param: Pointer to "struct tomoyo_acl_param".
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900960 *
961 * Returns 0 on success, negative value otherwise.
962 *
963 * Caller holds tomoyo_read_lock().
964 */
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900965static int tomoyo_update_mount_acl(struct tomoyo_acl_param *param)
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900966{
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900967 struct tomoyo_mount_acl e = { .head.type = TOMOYO_TYPE_MOUNT_ACL };
968 int error;
969 if (!tomoyo_parse_name_union(param, &e.dev_name) ||
970 !tomoyo_parse_name_union(param, &e.dir_name) ||
971 !tomoyo_parse_name_union(param, &e.fs_type) ||
972 !tomoyo_parse_number_union(param, &e.flags))
973 error = -EINVAL;
974 else
975 error = tomoyo_update_domain(&e.head, sizeof(e), param,
976 tomoyo_same_mount_acl, NULL);
977 tomoyo_put_name_union(&e.dev_name);
978 tomoyo_put_name_union(&e.dir_name);
979 tomoyo_put_name_union(&e.fs_type);
980 tomoyo_put_number_union(&e.flags);
981 return error;
982}
983
984/**
985 * tomoyo_write_file - Update file related list.
986 *
987 * @param: Pointer to "struct tomoyo_acl_param".
988 *
989 * Returns 0 on success, negative value otherwise.
990 *
991 * Caller holds tomoyo_read_lock().
992 */
993int tomoyo_write_file(struct tomoyo_acl_param *param)
994{
995 u16 perm = 0;
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900996 u8 type;
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900997 const char *operation = tomoyo_read_token(param);
998 for (type = 0; type < TOMOYO_MAX_PATH_OPERATION; type++)
999 if (tomoyo_permstr(operation, tomoyo_path_keyword[type]))
1000 perm |= 1 << type;
1001 if (perm)
1002 return tomoyo_update_path_acl(perm, param);
1003 for (type = 0; type < TOMOYO_MAX_PATH2_OPERATION; type++)
Tetsuo Handa2c47ab92011-06-26 23:21:19 +09001004 if (tomoyo_permstr(operation,
1005 tomoyo_mac_keywords[tomoyo_pp2mac[type]]))
Tetsuo Handaa238cf52011-06-26 23:17:10 +09001006 perm |= 1 << type;
1007 if (perm)
1008 return tomoyo_update_path2_acl(perm, param);
1009 for (type = 0; type < TOMOYO_MAX_PATH_NUMBER_OPERATION; type++)
1010 if (tomoyo_permstr(operation,
Tetsuo Handa2c47ab92011-06-26 23:21:19 +09001011 tomoyo_mac_keywords[tomoyo_pn2mac[type]]))
Tetsuo Handaa238cf52011-06-26 23:17:10 +09001012 perm |= 1 << type;
1013 if (perm)
1014 return tomoyo_update_path_number_acl(perm, param);
1015 for (type = 0; type < TOMOYO_MAX_MKDEV_OPERATION; type++)
Tetsuo Handa2c47ab92011-06-26 23:21:19 +09001016 if (tomoyo_permstr(operation,
1017 tomoyo_mac_keywords[tomoyo_pnnn2mac[type]]))
Tetsuo Handaa238cf52011-06-26 23:17:10 +09001018 perm |= 1 << type;
1019 if (perm)
1020 return tomoyo_update_mkdev_acl(perm, param);
Tetsuo Handa2c47ab92011-06-26 23:21:19 +09001021 if (tomoyo_permstr(operation,
1022 tomoyo_mac_keywords[TOMOYO_MAC_FILE_MOUNT]))
Tetsuo Handaa238cf52011-06-26 23:17:10 +09001023 return tomoyo_update_mount_acl(param);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001024 return -EINVAL;
1025}