blob: 8410f28a35e00eadb8b5edc5814a273804d945af [file] [log] [blame]
Kentaro Takedab69a54e2009-02-05 17:18:14 +09001/*
2 * security/tomoyo/file.c
3 *
Tetsuo Handac3ef1502010-05-17 10:12:46 +09004 * Pathname restriction functions.
Kentaro Takedab69a54e2009-02-05 17:18:14 +09005 *
Tetsuo Handac3ef1502010-05-17 10:12:46 +09006 * Copyright (C) 2005-2010 NTT DATA CORPORATION
Kentaro Takedab69a54e2009-02-05 17:18:14 +09007 */
8
9#include "common.h"
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Kentaro Takedab69a54e2009-02-05 17:18:14 +090011
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +090012/* Keyword array for operations with one pathname. */
Tetsuo Handa71c28232010-06-16 16:26:38 +090013const char *tomoyo_path_keyword[TOMOYO_MAX_PATH_OPERATION] = {
Tetsuo Handa7ef61232010-02-16 08:03:30 +090014 [TOMOYO_TYPE_EXECUTE] = "execute",
15 [TOMOYO_TYPE_READ] = "read",
16 [TOMOYO_TYPE_WRITE] = "write",
Tetsuo Handa7c759642011-06-26 23:15:31 +090017 [TOMOYO_TYPE_APPEND] = "append",
Tetsuo Handa7ef61232010-02-16 08:03:30 +090018 [TOMOYO_TYPE_UNLINK] = "unlink",
Tetsuo Handa7c759642011-06-26 23:15:31 +090019 [TOMOYO_TYPE_GETATTR] = "getattr",
Tetsuo Handa7ef61232010-02-16 08:03:30 +090020 [TOMOYO_TYPE_RMDIR] = "rmdir",
Tetsuo Handa7ef61232010-02-16 08:03:30 +090021 [TOMOYO_TYPE_TRUNCATE] = "truncate",
22 [TOMOYO_TYPE_SYMLINK] = "symlink",
Tetsuo Handa7ef61232010-02-16 08:03:30 +090023 [TOMOYO_TYPE_CHROOT] = "chroot",
Tetsuo Handa7ef61232010-02-16 08:03:30 +090024 [TOMOYO_TYPE_UMOUNT] = "unmount",
Kentaro Takedab69a54e2009-02-05 17:18:14 +090025};
26
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +090027/* Keyword array for operations with one pathname and three numbers. */
Tetsuo Handa71c28232010-06-16 16:26:38 +090028const char *tomoyo_mkdev_keyword[TOMOYO_MAX_MKDEV_OPERATION] = {
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +090029 [TOMOYO_TYPE_MKBLOCK] = "mkblock",
30 [TOMOYO_TYPE_MKCHAR] = "mkchar",
31};
32
33/* Keyword array for operations with two pathnames. */
Tetsuo Handa71c28232010-06-16 16:26:38 +090034const char *tomoyo_path2_keyword[TOMOYO_MAX_PATH2_OPERATION] = {
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +090035 [TOMOYO_TYPE_LINK] = "link",
36 [TOMOYO_TYPE_RENAME] = "rename",
Tetsuo Handa7ef61232010-02-16 08:03:30 +090037 [TOMOYO_TYPE_PIVOT_ROOT] = "pivot_root",
Kentaro Takedab69a54e2009-02-05 17:18:14 +090038};
39
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +090040/* Keyword array for operations with one pathname and one number. */
Tetsuo Handa71c28232010-06-16 16:26:38 +090041const char *tomoyo_path_number_keyword[TOMOYO_MAX_PATH_NUMBER_OPERATION] = {
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +090042 [TOMOYO_TYPE_CREATE] = "create",
43 [TOMOYO_TYPE_MKDIR] = "mkdir",
44 [TOMOYO_TYPE_MKFIFO] = "mkfifo",
45 [TOMOYO_TYPE_MKSOCK] = "mksock",
46 [TOMOYO_TYPE_IOCTL] = "ioctl",
47 [TOMOYO_TYPE_CHMOD] = "chmod",
48 [TOMOYO_TYPE_CHOWN] = "chown",
49 [TOMOYO_TYPE_CHGRP] = "chgrp",
50};
51
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090052/*
53 * Mapping table from "enum tomoyo_path_acl_index" to "enum tomoyo_mac_index".
54 */
Tetsuo Handa57c25902010-06-03 20:38:44 +090055static const u8 tomoyo_p2mac[TOMOYO_MAX_PATH_OPERATION] = {
Tetsuo Handa57c25902010-06-03 20:38:44 +090056 [TOMOYO_TYPE_EXECUTE] = TOMOYO_MAC_FILE_EXECUTE,
57 [TOMOYO_TYPE_READ] = TOMOYO_MAC_FILE_OPEN,
58 [TOMOYO_TYPE_WRITE] = TOMOYO_MAC_FILE_OPEN,
Tetsuo Handa7c759642011-06-26 23:15:31 +090059 [TOMOYO_TYPE_APPEND] = TOMOYO_MAC_FILE_OPEN,
Tetsuo Handa57c25902010-06-03 20:38:44 +090060 [TOMOYO_TYPE_UNLINK] = TOMOYO_MAC_FILE_UNLINK,
Tetsuo Handa7c759642011-06-26 23:15:31 +090061 [TOMOYO_TYPE_GETATTR] = TOMOYO_MAC_FILE_GETATTR,
Tetsuo Handa57c25902010-06-03 20:38:44 +090062 [TOMOYO_TYPE_RMDIR] = TOMOYO_MAC_FILE_RMDIR,
63 [TOMOYO_TYPE_TRUNCATE] = TOMOYO_MAC_FILE_TRUNCATE,
64 [TOMOYO_TYPE_SYMLINK] = TOMOYO_MAC_FILE_SYMLINK,
Tetsuo Handa57c25902010-06-03 20:38:44 +090065 [TOMOYO_TYPE_CHROOT] = TOMOYO_MAC_FILE_CHROOT,
66 [TOMOYO_TYPE_UMOUNT] = TOMOYO_MAC_FILE_UMOUNT,
67};
68
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090069/*
70 * Mapping table from "enum tomoyo_mkdev_acl_index" to "enum tomoyo_mac_index".
71 */
Tetsuo Handa0d2171d2011-06-26 23:17:46 +090072const u8 tomoyo_pnnn2mac[TOMOYO_MAX_MKDEV_OPERATION] = {
Tetsuo Handa57c25902010-06-03 20:38:44 +090073 [TOMOYO_TYPE_MKBLOCK] = TOMOYO_MAC_FILE_MKBLOCK,
74 [TOMOYO_TYPE_MKCHAR] = TOMOYO_MAC_FILE_MKCHAR,
75};
76
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090077/*
78 * Mapping table from "enum tomoyo_path2_acl_index" to "enum tomoyo_mac_index".
79 */
Tetsuo Handa0d2171d2011-06-26 23:17:46 +090080const u8 tomoyo_pp2mac[TOMOYO_MAX_PATH2_OPERATION] = {
Tetsuo Handa57c25902010-06-03 20:38:44 +090081 [TOMOYO_TYPE_LINK] = TOMOYO_MAC_FILE_LINK,
82 [TOMOYO_TYPE_RENAME] = TOMOYO_MAC_FILE_RENAME,
83 [TOMOYO_TYPE_PIVOT_ROOT] = TOMOYO_MAC_FILE_PIVOT_ROOT,
84};
85
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090086/*
87 * Mapping table from "enum tomoyo_path_number_acl_index" to
88 * "enum tomoyo_mac_index".
89 */
Tetsuo Handa0d2171d2011-06-26 23:17:46 +090090const u8 tomoyo_pn2mac[TOMOYO_MAX_PATH_NUMBER_OPERATION] = {
Tetsuo Handa57c25902010-06-03 20:38:44 +090091 [TOMOYO_TYPE_CREATE] = TOMOYO_MAC_FILE_CREATE,
92 [TOMOYO_TYPE_MKDIR] = TOMOYO_MAC_FILE_MKDIR,
93 [TOMOYO_TYPE_MKFIFO] = TOMOYO_MAC_FILE_MKFIFO,
94 [TOMOYO_TYPE_MKSOCK] = TOMOYO_MAC_FILE_MKSOCK,
95 [TOMOYO_TYPE_IOCTL] = TOMOYO_MAC_FILE_IOCTL,
96 [TOMOYO_TYPE_CHMOD] = TOMOYO_MAC_FILE_CHMOD,
97 [TOMOYO_TYPE_CHOWN] = TOMOYO_MAC_FILE_CHOWN,
98 [TOMOYO_TYPE_CHGRP] = TOMOYO_MAC_FILE_CHGRP,
99};
100
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900101/**
102 * tomoyo_put_name_union - Drop reference on "struct tomoyo_name_union".
103 *
104 * @ptr: Pointer to "struct tomoyo_name_union".
105 *
106 * Returns nothing.
107 */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900108void tomoyo_put_name_union(struct tomoyo_name_union *ptr)
109{
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900110 tomoyo_put_group(ptr->group);
111 tomoyo_put_name(ptr->filename);
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900112}
113
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900114/**
115 * tomoyo_compare_name_union - Check whether a name matches "struct tomoyo_name_union" or not.
116 *
117 * @name: Pointer to "struct tomoyo_path_info".
118 * @ptr: Pointer to "struct tomoyo_name_union".
119 *
120 * Returns "struct tomoyo_path_info" if @name matches @ptr, NULL otherwise.
121 */
Tetsuo Handa484ca792010-07-29 14:29:55 +0900122const struct tomoyo_path_info *
123tomoyo_compare_name_union(const struct tomoyo_path_info *name,
124 const struct tomoyo_name_union *ptr)
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900125{
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900126 if (ptr->group)
Tetsuo Handa3f629632010-06-03 20:37:26 +0900127 return tomoyo_path_matches_group(name, ptr->group);
Tetsuo Handa484ca792010-07-29 14:29:55 +0900128 if (tomoyo_path_matches_pattern(name, ptr->filename))
129 return ptr->filename;
130 return NULL;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900131}
132
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900133/**
134 * tomoyo_put_number_union - Drop reference on "struct tomoyo_number_union".
135 *
136 * @ptr: Pointer to "struct tomoyo_number_union".
137 *
138 * Returns nothing.
139 */
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900140void tomoyo_put_number_union(struct tomoyo_number_union *ptr)
141{
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900142 tomoyo_put_group(ptr->group);
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900143}
144
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900145/**
146 * tomoyo_compare_number_union - Check whether a value matches "struct tomoyo_number_union" or not.
147 *
148 * @value: Number to check.
149 * @ptr: Pointer to "struct tomoyo_number_union".
150 *
151 * Returns true if @value matches @ptr, false otherwise.
152 */
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900153bool tomoyo_compare_number_union(const unsigned long value,
154 const struct tomoyo_number_union *ptr)
155{
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900156 if (ptr->group)
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900157 return tomoyo_number_matches_group(value, value, ptr->group);
158 return value >= ptr->values[0] && value <= ptr->values[1];
159}
160
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900161/**
162 * tomoyo_add_slash - Add trailing '/' if needed.
163 *
164 * @buf: Pointer to "struct tomoyo_path_info".
165 *
166 * Returns nothing.
167 *
168 * @buf must be generated by tomoyo_encode() because this function does not
169 * allocate memory for adding '/'.
170 */
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900171static void tomoyo_add_slash(struct tomoyo_path_info *buf)
172{
173 if (buf->is_dir)
174 return;
175 /*
176 * This is OK because tomoyo_encode() reserves space for appending "/".
177 */
178 strcat((char *) buf->name, "/");
179 tomoyo_fill_path_info(buf);
180}
181
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900182/**
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900183 * tomoyo_get_realpath - Get realpath.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900184 *
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900185 * @buf: Pointer to "struct tomoyo_path_info".
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900186 * @path: Pointer to "struct path".
187 *
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900188 * Returns true on success, false otherwise.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900189 */
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900190static bool tomoyo_get_realpath(struct tomoyo_path_info *buf, struct path *path)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900191{
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900192 buf->name = tomoyo_realpath_from_path(path);
193 if (buf->name) {
194 tomoyo_fill_path_info(buf);
195 return true;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900196 }
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900197 return false;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900198}
199
Tetsuo Handa99a85252010-06-16 16:22:51 +0900200/**
201 * tomoyo_audit_path_log - Audit path request log.
202 *
203 * @r: Pointer to "struct tomoyo_request_info".
204 *
205 * Returns 0 on success, negative value otherwise.
206 */
207static int tomoyo_audit_path_log(struct tomoyo_request_info *r)
208{
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900209 return tomoyo_supervisor(r, "file %s %s\n", tomoyo_path_keyword
210 [r->param.path.operation],
211 r->param.path.filename->name);
Tetsuo Handa99a85252010-06-16 16:22:51 +0900212}
213
214/**
215 * tomoyo_audit_path2_log - Audit path/path request log.
216 *
217 * @r: Pointer to "struct tomoyo_request_info".
218 *
219 * Returns 0 on success, negative value otherwise.
220 */
221static int tomoyo_audit_path2_log(struct tomoyo_request_info *r)
222{
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900223 return tomoyo_supervisor(r, "file %s %s %s\n", tomoyo_path2_keyword
224 [r->param.path2.operation],
225 r->param.path2.filename1->name,
226 r->param.path2.filename2->name);
Tetsuo Handa99a85252010-06-16 16:22:51 +0900227}
228
229/**
230 * tomoyo_audit_mkdev_log - Audit path/number/number/number request log.
231 *
232 * @r: Pointer to "struct tomoyo_request_info".
233 *
234 * Returns 0 on success, negative value otherwise.
235 */
236static int tomoyo_audit_mkdev_log(struct tomoyo_request_info *r)
237{
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900238 return tomoyo_supervisor(r, "file %s %s 0%o %u %u\n",
239 tomoyo_mkdev_keyword
240 [r->param.mkdev.operation],
241 r->param.mkdev.filename->name,
242 r->param.mkdev.mode, r->param.mkdev.major,
243 r->param.mkdev.minor);
Tetsuo Handa99a85252010-06-16 16:22:51 +0900244}
245
246/**
247 * tomoyo_audit_path_number_log - Audit path/number request log.
248 *
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900249 * @r: Pointer to "struct tomoyo_request_info".
Tetsuo Handa99a85252010-06-16 16:22:51 +0900250 *
251 * Returns 0 on success, negative value otherwise.
252 */
253static int tomoyo_audit_path_number_log(struct tomoyo_request_info *r)
254{
255 const u8 type = r->param.path_number.operation;
256 u8 radix;
Tetsuo Handa99a85252010-06-16 16:22:51 +0900257 char buffer[64];
Tetsuo Handa99a85252010-06-16 16:22:51 +0900258 switch (type) {
259 case TOMOYO_TYPE_CREATE:
260 case TOMOYO_TYPE_MKDIR:
261 case TOMOYO_TYPE_MKFIFO:
262 case TOMOYO_TYPE_MKSOCK:
263 case TOMOYO_TYPE_CHMOD:
264 radix = TOMOYO_VALUE_TYPE_OCTAL;
265 break;
266 case TOMOYO_TYPE_IOCTL:
267 radix = TOMOYO_VALUE_TYPE_HEXADECIMAL;
268 break;
269 default:
270 radix = TOMOYO_VALUE_TYPE_DECIMAL;
271 break;
272 }
273 tomoyo_print_ulong(buffer, sizeof(buffer), r->param.path_number.number,
274 radix);
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900275 return tomoyo_supervisor(r, "file %s %s %s\n",
276 tomoyo_path_number_keyword[type],
277 r->param.path_number.filename->name, buffer);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900278}
279
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900280/**
281 * tomoyo_check_path_acl - Check permission for path operation.
282 *
283 * @r: Pointer to "struct tomoyo_request_info".
284 * @ptr: Pointer to "struct tomoyo_acl_info".
285 *
286 * Returns true if granted, false otherwise.
287 *
288 * To be able to use wildcard for domain transition, this function sets
289 * matching entry on success. Since the caller holds tomoyo_read_lock(),
290 * it is safe to set matching entry.
291 */
Tetsuo Handa484ca792010-07-29 14:29:55 +0900292static bool tomoyo_check_path_acl(struct tomoyo_request_info *r,
Tetsuo Handa99a85252010-06-16 16:22:51 +0900293 const struct tomoyo_acl_info *ptr)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900294{
Tetsuo Handa99a85252010-06-16 16:22:51 +0900295 const struct tomoyo_path_acl *acl = container_of(ptr, typeof(*acl),
296 head);
Tetsuo Handa484ca792010-07-29 14:29:55 +0900297 if (acl->perm & (1 << r->param.path.operation)) {
298 r->param.path.matched_path =
299 tomoyo_compare_name_union(r->param.path.filename,
300 &acl->name);
301 return r->param.path.matched_path != NULL;
302 }
303 return false;
Tetsuo Handa99a85252010-06-16 16:22:51 +0900304}
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900305
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900306/**
307 * tomoyo_check_path_number_acl - Check permission for path number operation.
308 *
309 * @r: Pointer to "struct tomoyo_request_info".
310 * @ptr: Pointer to "struct tomoyo_acl_info".
311 *
312 * Returns true if granted, false otherwise.
313 */
Tetsuo Handa484ca792010-07-29 14:29:55 +0900314static bool tomoyo_check_path_number_acl(struct tomoyo_request_info *r,
Tetsuo Handa99a85252010-06-16 16:22:51 +0900315 const struct tomoyo_acl_info *ptr)
316{
317 const struct tomoyo_path_number_acl *acl =
318 container_of(ptr, typeof(*acl), head);
319 return (acl->perm & (1 << r->param.path_number.operation)) &&
320 tomoyo_compare_number_union(r->param.path_number.number,
321 &acl->number) &&
322 tomoyo_compare_name_union(r->param.path_number.filename,
323 &acl->name);
324}
325
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900326/**
327 * tomoyo_check_path2_acl - Check permission for path path operation.
328 *
329 * @r: Pointer to "struct tomoyo_request_info".
330 * @ptr: Pointer to "struct tomoyo_acl_info".
331 *
332 * Returns true if granted, false otherwise.
333 */
Tetsuo Handa484ca792010-07-29 14:29:55 +0900334static bool tomoyo_check_path2_acl(struct tomoyo_request_info *r,
Tetsuo Handa99a85252010-06-16 16:22:51 +0900335 const struct tomoyo_acl_info *ptr)
336{
337 const struct tomoyo_path2_acl *acl =
338 container_of(ptr, typeof(*acl), head);
339 return (acl->perm & (1 << r->param.path2.operation)) &&
340 tomoyo_compare_name_union(r->param.path2.filename1, &acl->name1)
341 && tomoyo_compare_name_union(r->param.path2.filename2,
342 &acl->name2);
343}
344
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900345/**
346 * tomoyo_check_mkdev_acl - Check permission for path number number number operation.
347 *
348 * @r: Pointer to "struct tomoyo_request_info".
349 * @ptr: Pointer to "struct tomoyo_acl_info".
350 *
351 * Returns true if granted, false otherwise.
352 */
Tetsuo Handa484ca792010-07-29 14:29:55 +0900353static bool tomoyo_check_mkdev_acl(struct tomoyo_request_info *r,
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900354 const struct tomoyo_acl_info *ptr)
Tetsuo Handa99a85252010-06-16 16:22:51 +0900355{
Tetsuo Handa75093152010-06-16 16:23:55 +0900356 const struct tomoyo_mkdev_acl *acl =
Tetsuo Handa99a85252010-06-16 16:22:51 +0900357 container_of(ptr, typeof(*acl), head);
358 return (acl->perm & (1 << r->param.mkdev.operation)) &&
359 tomoyo_compare_number_union(r->param.mkdev.mode,
360 &acl->mode) &&
361 tomoyo_compare_number_union(r->param.mkdev.major,
362 &acl->major) &&
363 tomoyo_compare_number_union(r->param.mkdev.minor,
364 &acl->minor) &&
365 tomoyo_compare_name_union(r->param.mkdev.filename,
366 &acl->name);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900367}
368
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900369/**
370 * tomoyo_same_path_acl - Check for duplicated "struct tomoyo_path_acl" entry.
371 *
372 * @a: Pointer to "struct tomoyo_acl_info".
373 * @b: Pointer to "struct tomoyo_acl_info".
374 *
375 * Returns true if @a == @b except permission bits, false otherwise.
376 */
Tetsuo Handa237ab452010-06-12 20:46:22 +0900377static bool tomoyo_same_path_acl(const struct tomoyo_acl_info *a,
378 const struct tomoyo_acl_info *b)
379{
380 const struct tomoyo_path_acl *p1 = container_of(a, typeof(*p1), head);
381 const struct tomoyo_path_acl *p2 = container_of(b, typeof(*p2), head);
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900382 return tomoyo_same_name_union(&p1->name, &p2->name);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900383}
384
Tetsuo Handa7c759642011-06-26 23:15:31 +0900385/**
386 * tomoyo_merge_path_acl - Merge duplicated "struct tomoyo_path_acl" entry.
387 *
388 * @a: Pointer to "struct tomoyo_acl_info".
389 * @b: Pointer to "struct tomoyo_acl_info".
390 * @is_delete: True for @a &= ~@b, false for @a |= @b.
391 *
392 * Returns true if @a is empty, false otherwise.
393 */
Tetsuo Handa237ab452010-06-12 20:46:22 +0900394static bool tomoyo_merge_path_acl(struct tomoyo_acl_info *a,
395 struct tomoyo_acl_info *b,
396 const bool is_delete)
397{
398 u16 * const a_perm = &container_of(a, struct tomoyo_path_acl, head)
399 ->perm;
400 u16 perm = *a_perm;
401 const u16 b_perm = container_of(b, struct tomoyo_path_acl, head)->perm;
Tetsuo Handa7c759642011-06-26 23:15:31 +0900402 if (is_delete)
Tetsuo Handa237ab452010-06-12 20:46:22 +0900403 perm &= ~b_perm;
Tetsuo Handa7c759642011-06-26 23:15:31 +0900404 else
Tetsuo Handa237ab452010-06-12 20:46:22 +0900405 perm |= b_perm;
Tetsuo Handa237ab452010-06-12 20:46:22 +0900406 *a_perm = perm;
407 return !perm;
408}
409
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900410/**
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900411 * tomoyo_update_path_acl - Update "struct tomoyo_path_acl" list.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900412 *
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900413 * @perm: Permission.
414 * @param: Pointer to "struct tomoyo_acl_param".
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900415 *
416 * Returns 0 on success, negative value otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900417 *
418 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900419 */
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900420static int tomoyo_update_path_acl(const u16 perm,
421 struct tomoyo_acl_param *param)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900422{
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900423 struct tomoyo_path_acl e = {
424 .head.type = TOMOYO_TYPE_PATH_ACL,
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900425 .perm = perm
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900426 };
Tetsuo Handa237ab452010-06-12 20:46:22 +0900427 int error;
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900428 if (!tomoyo_parse_name_union(param, &e.name))
429 error = -EINVAL;
430 else
431 error = tomoyo_update_domain(&e.head, sizeof(e), param,
432 tomoyo_same_path_acl,
433 tomoyo_merge_path_acl);
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900434 tomoyo_put_name_union(&e.name);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900435 return error;
436}
437
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900438/**
439 * tomoyo_same_mkdev_acl - Check for duplicated "struct tomoyo_mkdev_acl" entry.
440 *
441 * @a: Pointer to "struct tomoyo_acl_info".
442 * @b: Pointer to "struct tomoyo_acl_info".
443 *
444 * Returns true if @a == @b except permission bits, false otherwise.
445 */
Tetsuo Handa75093152010-06-16 16:23:55 +0900446static bool tomoyo_same_mkdev_acl(const struct tomoyo_acl_info *a,
Tetsuo Handa237ab452010-06-12 20:46:22 +0900447 const struct tomoyo_acl_info *b)
448{
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900449 const struct tomoyo_mkdev_acl *p1 = container_of(a, typeof(*p1), head);
450 const struct tomoyo_mkdev_acl *p2 = container_of(b, typeof(*p2), head);
451 return tomoyo_same_name_union(&p1->name, &p2->name) &&
452 tomoyo_same_number_union(&p1->mode, &p2->mode) &&
453 tomoyo_same_number_union(&p1->major, &p2->major) &&
454 tomoyo_same_number_union(&p1->minor, &p2->minor);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900455}
456
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900457/**
458 * tomoyo_merge_mkdev_acl - Merge duplicated "struct tomoyo_mkdev_acl" entry.
459 *
460 * @a: Pointer to "struct tomoyo_acl_info".
461 * @b: Pointer to "struct tomoyo_acl_info".
462 * @is_delete: True for @a &= ~@b, false for @a |= @b.
463 *
464 * Returns true if @a is empty, false otherwise.
465 */
Tetsuo Handa75093152010-06-16 16:23:55 +0900466static bool tomoyo_merge_mkdev_acl(struct tomoyo_acl_info *a,
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900467 struct tomoyo_acl_info *b,
468 const bool is_delete)
Tetsuo Handa237ab452010-06-12 20:46:22 +0900469{
Tetsuo Handa75093152010-06-16 16:23:55 +0900470 u8 *const a_perm = &container_of(a, struct tomoyo_mkdev_acl,
Tetsuo Handa237ab452010-06-12 20:46:22 +0900471 head)->perm;
472 u8 perm = *a_perm;
Tetsuo Handa75093152010-06-16 16:23:55 +0900473 const u8 b_perm = container_of(b, struct tomoyo_mkdev_acl, head)
Tetsuo Handa237ab452010-06-12 20:46:22 +0900474 ->perm;
475 if (is_delete)
476 perm &= ~b_perm;
477 else
478 perm |= b_perm;
479 *a_perm = perm;
480 return !perm;
481}
482
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900483/**
Tetsuo Handa75093152010-06-16 16:23:55 +0900484 * tomoyo_update_mkdev_acl - Update "struct tomoyo_mkdev_acl" list.
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900485 *
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900486 * @perm: Permission.
487 * @param: Pointer to "struct tomoyo_acl_param".
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900488 *
489 * Returns 0 on success, negative value otherwise.
Tetsuo Handa237ab452010-06-12 20:46:22 +0900490 *
491 * Caller holds tomoyo_read_lock().
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900492 */
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900493static int tomoyo_update_mkdev_acl(const u8 perm,
494 struct tomoyo_acl_param *param)
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900495{
Tetsuo Handa75093152010-06-16 16:23:55 +0900496 struct tomoyo_mkdev_acl e = {
497 .head.type = TOMOYO_TYPE_MKDEV_ACL,
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900498 .perm = perm
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900499 };
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900500 int error;
501 if (!tomoyo_parse_name_union(param, &e.name) ||
502 !tomoyo_parse_number_union(param, &e.mode) ||
503 !tomoyo_parse_number_union(param, &e.major) ||
504 !tomoyo_parse_number_union(param, &e.minor))
505 error = -EINVAL;
506 else
507 error = tomoyo_update_domain(&e.head, sizeof(e), param,
508 tomoyo_same_mkdev_acl,
509 tomoyo_merge_mkdev_acl);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900510 tomoyo_put_name_union(&e.name);
511 tomoyo_put_number_union(&e.mode);
512 tomoyo_put_number_union(&e.major);
513 tomoyo_put_number_union(&e.minor);
514 return error;
515}
516
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900517/**
518 * tomoyo_same_path2_acl - Check for duplicated "struct tomoyo_path2_acl" entry.
519 *
520 * @a: Pointer to "struct tomoyo_acl_info".
521 * @b: Pointer to "struct tomoyo_acl_info".
522 *
523 * Returns true if @a == @b except permission bits, false otherwise.
524 */
Tetsuo Handa237ab452010-06-12 20:46:22 +0900525static bool tomoyo_same_path2_acl(const struct tomoyo_acl_info *a,
526 const struct tomoyo_acl_info *b)
527{
528 const struct tomoyo_path2_acl *p1 = container_of(a, typeof(*p1), head);
529 const struct tomoyo_path2_acl *p2 = container_of(b, typeof(*p2), head);
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900530 return tomoyo_same_name_union(&p1->name1, &p2->name1) &&
531 tomoyo_same_name_union(&p1->name2, &p2->name2);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900532}
533
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900534/**
535 * tomoyo_merge_path2_acl - Merge duplicated "struct tomoyo_path2_acl" entry.
536 *
537 * @a: Pointer to "struct tomoyo_acl_info".
538 * @b: Pointer to "struct tomoyo_acl_info".
539 * @is_delete: True for @a &= ~@b, false for @a |= @b.
540 *
541 * Returns true if @a is empty, false otherwise.
542 */
Tetsuo Handa237ab452010-06-12 20:46:22 +0900543static bool tomoyo_merge_path2_acl(struct tomoyo_acl_info *a,
544 struct tomoyo_acl_info *b,
545 const bool is_delete)
546{
547 u8 * const a_perm = &container_of(a, struct tomoyo_path2_acl, head)
548 ->perm;
549 u8 perm = *a_perm;
550 const u8 b_perm = container_of(b, struct tomoyo_path2_acl, head)->perm;
551 if (is_delete)
552 perm &= ~b_perm;
553 else
554 perm |= b_perm;
555 *a_perm = perm;
556 return !perm;
557}
558
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900559/**
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900560 * tomoyo_update_path2_acl - Update "struct tomoyo_path2_acl" list.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900561 *
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900562 * @perm: Permission.
563 * @param: Pointer to "struct tomoyo_acl_param".
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900564 *
565 * Returns 0 on success, negative value otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900566 *
567 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900568 */
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900569static int tomoyo_update_path2_acl(const u8 perm,
570 struct tomoyo_acl_param *param)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900571{
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900572 struct tomoyo_path2_acl e = {
573 .head.type = TOMOYO_TYPE_PATH2_ACL,
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900574 .perm = perm
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900575 };
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900576 int error;
577 if (!tomoyo_parse_name_union(param, &e.name1) ||
578 !tomoyo_parse_name_union(param, &e.name2))
579 error = -EINVAL;
580 else
581 error = tomoyo_update_domain(&e.head, sizeof(e), param,
582 tomoyo_same_path2_acl,
583 tomoyo_merge_path2_acl);
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900584 tomoyo_put_name_union(&e.name1);
585 tomoyo_put_name_union(&e.name2);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900586 return error;
587}
588
589/**
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900590 * tomoyo_path_permission - Check permission for single path operation.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900591 *
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900592 * @r: Pointer to "struct tomoyo_request_info".
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900593 * @operation: Type of operation.
594 * @filename: Filename to check.
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900595 *
596 * Returns 0 on success, negative value otherwise.
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900597 *
598 * Caller holds tomoyo_read_lock().
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900599 */
Tetsuo Handa05336de2010-06-16 16:20:24 +0900600int tomoyo_path_permission(struct tomoyo_request_info *r, u8 operation,
601 const struct tomoyo_path_info *filename)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900602{
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900603 int error;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900604
Tetsuo Handa57c25902010-06-03 20:38:44 +0900605 r->type = tomoyo_p2mac[operation];
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900606 r->mode = tomoyo_get_mode(r->domain->ns, r->profile, r->type);
Tetsuo Handa57c25902010-06-03 20:38:44 +0900607 if (r->mode == TOMOYO_CONFIG_DISABLED)
608 return 0;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900609 r->param_type = TOMOYO_TYPE_PATH_ACL;
610 r->param.path.filename = filename;
611 r->param.path.operation = operation;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900612 do {
Tetsuo Handa99a85252010-06-16 16:22:51 +0900613 tomoyo_check_acl(r, tomoyo_check_path_acl);
Tetsuo Handa99a85252010-06-16 16:22:51 +0900614 error = tomoyo_audit_path_log(r);
Tetsuo Handa05336de2010-06-16 16:20:24 +0900615 /*
616 * Do not retry for execute request, for alias may have
617 * changed.
618 */
619 } while (error == TOMOYO_RETRY_REQUEST &&
620 operation != TOMOYO_TYPE_EXECUTE);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900621 return error;
622}
623
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900624/**
625 * tomoyo_same_path_number_acl - Check for duplicated "struct tomoyo_path_number_acl" entry.
626 *
627 * @a: Pointer to "struct tomoyo_acl_info".
628 * @b: Pointer to "struct tomoyo_acl_info".
629 *
630 * Returns true if @a == @b except permission bits, false otherwise.
631 */
Tetsuo Handa237ab452010-06-12 20:46:22 +0900632static bool tomoyo_same_path_number_acl(const struct tomoyo_acl_info *a,
633 const struct tomoyo_acl_info *b)
634{
635 const struct tomoyo_path_number_acl *p1 = container_of(a, typeof(*p1),
636 head);
637 const struct tomoyo_path_number_acl *p2 = container_of(b, typeof(*p2),
638 head);
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900639 return tomoyo_same_name_union(&p1->name, &p2->name) &&
640 tomoyo_same_number_union(&p1->number, &p2->number);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900641}
642
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900643/**
644 * tomoyo_merge_path_number_acl - Merge duplicated "struct tomoyo_path_number_acl" entry.
645 *
646 * @a: Pointer to "struct tomoyo_acl_info".
647 * @b: Pointer to "struct tomoyo_acl_info".
648 * @is_delete: True for @a &= ~@b, false for @a |= @b.
649 *
650 * Returns true if @a is empty, false otherwise.
651 */
Tetsuo Handa237ab452010-06-12 20:46:22 +0900652static bool tomoyo_merge_path_number_acl(struct tomoyo_acl_info *a,
653 struct tomoyo_acl_info *b,
654 const bool is_delete)
655{
656 u8 * const a_perm = &container_of(a, struct tomoyo_path_number_acl,
657 head)->perm;
658 u8 perm = *a_perm;
659 const u8 b_perm = container_of(b, struct tomoyo_path_number_acl, head)
660 ->perm;
661 if (is_delete)
662 perm &= ~b_perm;
663 else
664 perm |= b_perm;
665 *a_perm = perm;
666 return !perm;
667}
668
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900669/**
670 * tomoyo_update_path_number_acl - Update ioctl/chmod/chown/chgrp ACL.
671 *
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900672 * @perm: Permission.
673 * @param: Pointer to "struct tomoyo_acl_param".
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900674 *
675 * Returns 0 on success, negative value otherwise.
676 */
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900677static int tomoyo_update_path_number_acl(const u8 perm,
678 struct tomoyo_acl_param *param)
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900679{
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900680 struct tomoyo_path_number_acl e = {
681 .head.type = TOMOYO_TYPE_PATH_NUMBER_ACL,
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900682 .perm = perm
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900683 };
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900684 int error;
685 if (!tomoyo_parse_name_union(param, &e.name) ||
686 !tomoyo_parse_number_union(param, &e.number))
687 error = -EINVAL;
688 else
689 error = tomoyo_update_domain(&e.head, sizeof(e), param,
690 tomoyo_same_path_number_acl,
691 tomoyo_merge_path_number_acl);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900692 tomoyo_put_name_union(&e.name);
693 tomoyo_put_number_union(&e.number);
694 return error;
695}
696
697/**
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900698 * tomoyo_path_number_perm - Check permission for "create", "mkdir", "mkfifo", "mksock", "ioctl", "chmod", "chown", "chgrp".
699 *
700 * @type: Type of operation.
701 * @path: Pointer to "struct path".
702 * @number: Number.
703 *
704 * Returns 0 on success, negative value otherwise.
705 */
706int tomoyo_path_number_perm(const u8 type, struct path *path,
707 unsigned long number)
708{
709 struct tomoyo_request_info r;
710 int error = -ENOMEM;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900711 struct tomoyo_path_info buf;
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900712 int idx;
713
Tetsuo Handa57c25902010-06-03 20:38:44 +0900714 if (tomoyo_init_request_info(&r, NULL, tomoyo_pn2mac[type])
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900715 == TOMOYO_CONFIG_DISABLED || !path->dentry)
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900716 return 0;
717 idx = tomoyo_read_lock();
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900718 if (!tomoyo_get_realpath(&buf, path))
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900719 goto out;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900720 if (type == TOMOYO_TYPE_MKDIR)
721 tomoyo_add_slash(&buf);
Tetsuo Handacb917cf2010-06-16 16:28:21 +0900722 r.param_type = TOMOYO_TYPE_PATH_NUMBER_ACL;
723 r.param.path_number.operation = type;
724 r.param.path_number.filename = &buf;
725 r.param.path_number.number = number;
726 do {
727 tomoyo_check_acl(&r, tomoyo_check_path_number_acl);
728 error = tomoyo_audit_path_number_log(&r);
729 } while (error == TOMOYO_RETRY_REQUEST);
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900730 kfree(buf.name);
Tetsuo Handacb917cf2010-06-16 16:28:21 +0900731 out:
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900732 tomoyo_read_unlock(idx);
733 if (r.mode != TOMOYO_CONFIG_ENFORCING)
734 error = 0;
735 return error;
736}
737
738/**
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900739 * tomoyo_check_open_permission - Check permission for "read" and "write".
740 *
741 * @domain: Pointer to "struct tomoyo_domain_info".
742 * @path: Pointer to "struct path".
743 * @flag: Flags for open().
744 *
745 * Returns 0 on success, negative value otherwise.
746 */
747int tomoyo_check_open_permission(struct tomoyo_domain_info *domain,
748 struct path *path, const int flag)
749{
750 const u8 acc_mode = ACC_MODE(flag);
Tetsuo Handaeae61f32011-03-02 16:54:24 +0900751 int error = 0;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900752 struct tomoyo_path_info buf;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900753 struct tomoyo_request_info r;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900754 int idx;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900755
Tetsuo Handa57c25902010-06-03 20:38:44 +0900756 buf.name = NULL;
757 r.mode = TOMOYO_CONFIG_DISABLED;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900758 idx = tomoyo_read_lock();
Tetsuo Handa7c759642011-06-26 23:15:31 +0900759 if (acc_mode &&
760 tomoyo_init_request_info(&r, domain, TOMOYO_MAC_FILE_OPEN)
Tetsuo Handa57c25902010-06-03 20:38:44 +0900761 != TOMOYO_CONFIG_DISABLED) {
762 if (!tomoyo_get_realpath(&buf, path)) {
763 error = -ENOMEM;
764 goto out;
765 }
Tetsuo Handa7c759642011-06-26 23:15:31 +0900766 if (acc_mode & MAY_READ)
767 error = tomoyo_path_permission(&r, TOMOYO_TYPE_READ,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900768 &buf);
Tetsuo Handa7c759642011-06-26 23:15:31 +0900769 if (!error && (acc_mode & MAY_WRITE))
770 error = tomoyo_path_permission(&r, (flag & O_APPEND) ?
771 TOMOYO_TYPE_APPEND :
772 TOMOYO_TYPE_WRITE,
773 &buf);
Tetsuo Handa57c25902010-06-03 20:38:44 +0900774 }
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900775 out:
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900776 kfree(buf.name);
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900777 tomoyo_read_unlock(idx);
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900778 if (r.mode != TOMOYO_CONFIG_ENFORCING)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900779 error = 0;
780 return error;
781}
782
783/**
Tetsuo Handa7c759642011-06-26 23:15:31 +0900784 * tomoyo_path_perm - Check permission for "unlink", "rmdir", "truncate", "symlink", "append", "chroot" and "unmount".
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900785 *
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900786 * @operation: Type of operation.
787 * @path: Pointer to "struct path".
788 *
789 * Returns 0 on success, negative value otherwise.
790 */
Tetsuo Handa97d69312010-02-16 09:46:15 +0900791int tomoyo_path_perm(const u8 operation, struct path *path)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900792{
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900793 struct tomoyo_request_info r;
Tetsuo Handa7c759642011-06-26 23:15:31 +0900794 int error;
795 struct tomoyo_path_info buf;
796 bool is_enforce;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900797 int idx;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900798
Tetsuo Handa57c25902010-06-03 20:38:44 +0900799 if (tomoyo_init_request_info(&r, NULL, tomoyo_p2mac[operation])
800 == TOMOYO_CONFIG_DISABLED)
801 return 0;
Tetsuo Handa7c759642011-06-26 23:15:31 +0900802 is_enforce = (r.mode == TOMOYO_CONFIG_ENFORCING);
803 error = -ENOMEM;
Tetsuo Handa57c25902010-06-03 20:38:44 +0900804 buf.name = NULL;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900805 idx = tomoyo_read_lock();
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900806 if (!tomoyo_get_realpath(&buf, path))
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900807 goto out;
808 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;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900813 }
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900814 error = tomoyo_path_permission(&r, operation, &buf);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900815 out:
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900816 kfree(buf.name);
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900817 tomoyo_read_unlock(idx);
Tetsuo Handa7c759642011-06-26 23:15:31 +0900818 if (!is_enforce)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900819 error = 0;
820 return error;
821}
822
823/**
Tetsuo Handa75093152010-06-16 16:23:55 +0900824 * tomoyo_mkdev_perm - Check permission for "mkblock" and "mkchar".
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900825 *
826 * @operation: Type of operation. (TOMOYO_TYPE_MKCHAR or TOMOYO_TYPE_MKBLOCK)
827 * @path: Pointer to "struct path".
828 * @mode: Create mode.
829 * @dev: Device number.
830 *
831 * Returns 0 on success, negative value otherwise.
832 */
Tetsuo Handa75093152010-06-16 16:23:55 +0900833int tomoyo_mkdev_perm(const u8 operation, struct path *path,
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900834 const unsigned int mode, unsigned int dev)
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900835{
836 struct tomoyo_request_info r;
837 int error = -ENOMEM;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900838 struct tomoyo_path_info buf;
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900839 int idx;
840
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900841 if (tomoyo_init_request_info(&r, NULL, tomoyo_pnnn2mac[operation])
Tetsuo Handa57c25902010-06-03 20:38:44 +0900842 == TOMOYO_CONFIG_DISABLED)
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900843 return 0;
844 idx = tomoyo_read_lock();
845 error = -ENOMEM;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900846 if (tomoyo_get_realpath(&buf, path)) {
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900847 dev = new_decode_dev(dev);
Tetsuo Handa75093152010-06-16 16:23:55 +0900848 r.param_type = TOMOYO_TYPE_MKDEV_ACL;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900849 r.param.mkdev.filename = &buf;
850 r.param.mkdev.operation = operation;
851 r.param.mkdev.mode = mode;
852 r.param.mkdev.major = MAJOR(dev);
853 r.param.mkdev.minor = MINOR(dev);
Tetsuo Handa99a85252010-06-16 16:22:51 +0900854 tomoyo_check_acl(&r, tomoyo_check_mkdev_acl);
855 error = tomoyo_audit_mkdev_log(&r);
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900856 kfree(buf.name);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900857 }
858 tomoyo_read_unlock(idx);
859 if (r.mode != TOMOYO_CONFIG_ENFORCING)
860 error = 0;
861 return error;
862}
863
864/**
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900865 * tomoyo_path2_perm - Check permission for "rename", "link" and "pivot_root".
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900866 *
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900867 * @operation: Type of operation.
868 * @path1: Pointer to "struct path".
869 * @path2: Pointer to "struct path".
870 *
871 * Returns 0 on success, negative value otherwise.
872 */
Tetsuo Handa97d69312010-02-16 09:46:15 +0900873int tomoyo_path2_perm(const u8 operation, struct path *path1,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900874 struct path *path2)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900875{
876 int error = -ENOMEM;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900877 struct tomoyo_path_info buf1;
878 struct tomoyo_path_info buf2;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900879 struct tomoyo_request_info r;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900880 int idx;
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900881
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900882 if (tomoyo_init_request_info(&r, NULL, tomoyo_pp2mac[operation])
Tetsuo Handa57c25902010-06-03 20:38:44 +0900883 == TOMOYO_CONFIG_DISABLED)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900884 return 0;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900885 buf1.name = NULL;
886 buf2.name = NULL;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900887 idx = tomoyo_read_lock();
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900888 if (!tomoyo_get_realpath(&buf1, path1) ||
889 !tomoyo_get_realpath(&buf2, path2))
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900890 goto out;
Tetsuo Handa57c25902010-06-03 20:38:44 +0900891 switch (operation) {
892 struct dentry *dentry;
893 case TOMOYO_TYPE_RENAME:
894 case TOMOYO_TYPE_LINK:
895 dentry = path1->dentry;
896 if (!dentry->d_inode || !S_ISDIR(dentry->d_inode->i_mode))
897 break;
898 /* fall through */
899 case TOMOYO_TYPE_PIVOT_ROOT:
900 tomoyo_add_slash(&buf1);
901 tomoyo_add_slash(&buf2);
902 break;
903 }
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900904 r.param_type = TOMOYO_TYPE_PATH2_ACL;
905 r.param.path2.operation = operation;
906 r.param.path2.filename1 = &buf1;
907 r.param.path2.filename2 = &buf2;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900908 do {
Tetsuo Handa99a85252010-06-16 16:22:51 +0900909 tomoyo_check_acl(&r, tomoyo_check_path2_acl);
910 error = tomoyo_audit_path2_log(&r);
911 } while (error == TOMOYO_RETRY_REQUEST);
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900912 out:
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900913 kfree(buf1.name);
914 kfree(buf2.name);
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900915 tomoyo_read_unlock(idx);
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900916 if (r.mode != TOMOYO_CONFIG_ENFORCING)
Kentaro Takedab69a54e2009-02-05 17:18:14 +0900917 error = 0;
918 return error;
919}
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900920
921/**
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900922 * tomoyo_same_mount_acl - Check for duplicated "struct tomoyo_mount_acl" entry.
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900923 *
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900924 * @a: Pointer to "struct tomoyo_acl_info".
925 * @b: Pointer to "struct tomoyo_acl_info".
926 *
927 * Returns true if @a == @b, false otherwise.
928 */
929static bool tomoyo_same_mount_acl(const struct tomoyo_acl_info *a,
930 const struct tomoyo_acl_info *b)
931{
932 const struct tomoyo_mount_acl *p1 = container_of(a, typeof(*p1), head);
933 const struct tomoyo_mount_acl *p2 = container_of(b, typeof(*p2), head);
934 return tomoyo_same_name_union(&p1->dev_name, &p2->dev_name) &&
935 tomoyo_same_name_union(&p1->dir_name, &p2->dir_name) &&
936 tomoyo_same_name_union(&p1->fs_type, &p2->fs_type) &&
937 tomoyo_same_number_union(&p1->flags, &p2->flags);
938}
939
940/**
941 * tomoyo_update_mount_acl - Write "struct tomoyo_mount_acl" list.
942 *
943 * @param: Pointer to "struct tomoyo_acl_param".
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900944 *
945 * Returns 0 on success, negative value otherwise.
946 *
947 * Caller holds tomoyo_read_lock().
948 */
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900949static int tomoyo_update_mount_acl(struct tomoyo_acl_param *param)
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900950{
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900951 struct tomoyo_mount_acl e = { .head.type = TOMOYO_TYPE_MOUNT_ACL };
952 int error;
953 if (!tomoyo_parse_name_union(param, &e.dev_name) ||
954 !tomoyo_parse_name_union(param, &e.dir_name) ||
955 !tomoyo_parse_name_union(param, &e.fs_type) ||
956 !tomoyo_parse_number_union(param, &e.flags))
957 error = -EINVAL;
958 else
959 error = tomoyo_update_domain(&e.head, sizeof(e), param,
960 tomoyo_same_mount_acl, NULL);
961 tomoyo_put_name_union(&e.dev_name);
962 tomoyo_put_name_union(&e.dir_name);
963 tomoyo_put_name_union(&e.fs_type);
964 tomoyo_put_number_union(&e.flags);
965 return error;
966}
967
968/**
969 * tomoyo_write_file - Update file related list.
970 *
971 * @param: Pointer to "struct tomoyo_acl_param".
972 *
973 * Returns 0 on success, negative value otherwise.
974 *
975 * Caller holds tomoyo_read_lock().
976 */
977int tomoyo_write_file(struct tomoyo_acl_param *param)
978{
979 u16 perm = 0;
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900980 u8 type;
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900981 const char *operation = tomoyo_read_token(param);
982 for (type = 0; type < TOMOYO_MAX_PATH_OPERATION; type++)
983 if (tomoyo_permstr(operation, tomoyo_path_keyword[type]))
984 perm |= 1 << type;
985 if (perm)
986 return tomoyo_update_path_acl(perm, param);
987 for (type = 0; type < TOMOYO_MAX_PATH2_OPERATION; type++)
988 if (tomoyo_permstr(operation, tomoyo_path2_keyword[type]))
989 perm |= 1 << type;
990 if (perm)
991 return tomoyo_update_path2_acl(perm, param);
992 for (type = 0; type < TOMOYO_MAX_PATH_NUMBER_OPERATION; type++)
993 if (tomoyo_permstr(operation,
994 tomoyo_path_number_keyword[type]))
995 perm |= 1 << type;
996 if (perm)
997 return tomoyo_update_path_number_acl(perm, param);
998 for (type = 0; type < TOMOYO_MAX_MKDEV_OPERATION; type++)
999 if (tomoyo_permstr(operation, tomoyo_mkdev_keyword[type]))
1000 perm |= 1 << type;
1001 if (perm)
1002 return tomoyo_update_mkdev_acl(perm, param);
1003 if (tomoyo_permstr(operation, "mount"))
1004 return tomoyo_update_mount_acl(param);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001005 return -EINVAL;
1006}