blob: 2755971f50dfe025f2ad81f53c88c0ed1da6de0c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Tetsuo Handa2106ccd2010-05-17 10:10:31 +09002/*
3 * security/tomoyo/mount.c
4 *
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +09005 * Copyright (C) 2005-2011 NTT DATA CORPORATION
Tetsuo Handa2106ccd2010-05-17 10:10:31 +09006 */
7
8#include <linux/slab.h>
David Howellse262e32d2018-11-01 23:07:23 +00009#include <uapi/linux/mount.h>
Tetsuo Handa2106ccd2010-05-17 10:10:31 +090010#include "common.h"
11
Tetsuo Handab5bc60b2011-06-26 23:16:03 +090012/* String table for special mount operations. */
13static const char * const tomoyo_mounts[TOMOYO_MAX_SPECIAL_MOUNT] = {
14 [TOMOYO_MOUNT_BIND] = "--bind",
15 [TOMOYO_MOUNT_MOVE] = "--move",
16 [TOMOYO_MOUNT_REMOUNT] = "--remount",
17 [TOMOYO_MOUNT_MAKE_UNBINDABLE] = "--make-unbindable",
18 [TOMOYO_MOUNT_MAKE_PRIVATE] = "--make-private",
19 [TOMOYO_MOUNT_MAKE_SLAVE] = "--make-slave",
20 [TOMOYO_MOUNT_MAKE_SHARED] = "--make-shared",
21};
Tetsuo Handa2106ccd2010-05-17 10:10:31 +090022
23/**
Tetsuo Handa99a85252010-06-16 16:22:51 +090024 * tomoyo_audit_mount_log - Audit mount log.
25 *
26 * @r: Pointer to "struct tomoyo_request_info".
27 *
28 * Returns 0 on success, negative value otherwise.
29 */
30static int tomoyo_audit_mount_log(struct tomoyo_request_info *r)
31{
Tetsuo Handaeadd99c2011-06-26 23:18:58 +090032 return tomoyo_supervisor(r, "file mount %s %s %s 0x%lX\n",
Tetsuo Handa7c759642011-06-26 23:15:31 +090033 r->param.mount.dev->name,
Tetsuo Handaeadd99c2011-06-26 23:18:58 +090034 r->param.mount.dir->name,
35 r->param.mount.type->name,
36 r->param.mount.flags);
Tetsuo Handa99a85252010-06-16 16:22:51 +090037}
38
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090039/**
40 * tomoyo_check_mount_acl - Check permission for path path path number operation.
41 *
42 * @r: Pointer to "struct tomoyo_request_info".
43 * @ptr: Pointer to "struct tomoyo_acl_info".
44 *
45 * Returns true if granted, false otherwise.
46 */
Tetsuo Handa484ca792010-07-29 14:29:55 +090047static bool tomoyo_check_mount_acl(struct tomoyo_request_info *r,
Tetsuo Handa99a85252010-06-16 16:22:51 +090048 const struct tomoyo_acl_info *ptr)
49{
50 const struct tomoyo_mount_acl *acl =
51 container_of(ptr, typeof(*acl), head);
Tetsuo Handacdcf6722019-01-24 18:37:35 +090052
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090053 return tomoyo_compare_number_union(r->param.mount.flags,
54 &acl->flags) &&
55 tomoyo_compare_name_union(r->param.mount.type,
56 &acl->fs_type) &&
57 tomoyo_compare_name_union(r->param.mount.dir,
58 &acl->dir_name) &&
Tetsuo Handa99a85252010-06-16 16:22:51 +090059 (!r->param.mount.need_dev ||
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +090060 tomoyo_compare_name_union(r->param.mount.dev,
61 &acl->dev_name));
Tetsuo Handa99a85252010-06-16 16:22:51 +090062}
63
64/**
Tetsuo Handad795ef9e2010-06-16 16:24:58 +090065 * tomoyo_mount_acl - Check permission for mount() operation.
Tetsuo Handa2106ccd2010-05-17 10:10:31 +090066 *
67 * @r: Pointer to "struct tomoyo_request_info".
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +090068 * @dev_name: Name of device file. Maybe NULL.
Tetsuo Handa2106ccd2010-05-17 10:10:31 +090069 * @dir: Pointer to "struct path".
70 * @type: Name of filesystem type.
71 * @flags: Mount options.
72 *
73 * Returns 0 on success, negative value otherwise.
74 *
75 * Caller holds tomoyo_read_lock().
76 */
Al Viro808d4e32012-10-11 11:42:01 -040077static int tomoyo_mount_acl(struct tomoyo_request_info *r,
78 const char *dev_name,
Al Viroe6641ed2016-03-25 14:41:28 -040079 const struct path *dir, const char *type,
Tetsuo Handab5bc60b2011-06-26 23:16:03 +090080 unsigned long flags)
Tetsuo Handa2106ccd2010-05-17 10:10:31 +090081{
Tetsuo Handa97fb35e2011-07-08 13:25:53 +090082 struct tomoyo_obj_info obj = { };
Tetsuo Handa2106ccd2010-05-17 10:10:31 +090083 struct path path;
Tetsuo Handa2106ccd2010-05-17 10:10:31 +090084 struct file_system_type *fstype = NULL;
85 const char *requested_type = NULL;
86 const char *requested_dir_name = NULL;
87 const char *requested_dev_name = NULL;
88 struct tomoyo_path_info rtype;
89 struct tomoyo_path_info rdev;
90 struct tomoyo_path_info rdir;
91 int need_dev = 0;
92 int error = -ENOMEM;
Tetsuo Handacdcf6722019-01-24 18:37:35 +090093
Tetsuo Handa97fb35e2011-07-08 13:25:53 +090094 r->obj = &obj;
Tetsuo Handa2106ccd2010-05-17 10:10:31 +090095
96 /* Get fstype. */
Tetsuo Handac8c57e82010-06-03 20:36:43 +090097 requested_type = tomoyo_encode(type);
Tetsuo Handa2106ccd2010-05-17 10:10:31 +090098 if (!requested_type)
99 goto out;
100 rtype.name = requested_type;
101 tomoyo_fill_path_info(&rtype);
102
103 /* Get mount point. */
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900104 obj.path2 = *dir;
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900105 requested_dir_name = tomoyo_realpath_from_path(dir);
106 if (!requested_dir_name) {
107 error = -ENOMEM;
108 goto out;
109 }
110 rdir.name = requested_dir_name;
111 tomoyo_fill_path_info(&rdir);
112
113 /* Compare fs name. */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900114 if (type == tomoyo_mounts[TOMOYO_MOUNT_REMOUNT]) {
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900115 /* dev_name is ignored. */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900116 } else if (type == tomoyo_mounts[TOMOYO_MOUNT_MAKE_UNBINDABLE] ||
117 type == tomoyo_mounts[TOMOYO_MOUNT_MAKE_PRIVATE] ||
118 type == tomoyo_mounts[TOMOYO_MOUNT_MAKE_SLAVE] ||
119 type == tomoyo_mounts[TOMOYO_MOUNT_MAKE_SHARED]) {
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900120 /* dev_name is ignored. */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900121 } else if (type == tomoyo_mounts[TOMOYO_MOUNT_BIND] ||
122 type == tomoyo_mounts[TOMOYO_MOUNT_MOVE]) {
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900123 need_dev = -1; /* dev_name is a directory */
124 } else {
125 fstype = get_fs_type(type);
126 if (!fstype) {
127 error = -ENODEV;
128 goto out;
129 }
130 if (fstype->fs_flags & FS_REQUIRES_DEV)
131 /* dev_name is a block device file. */
132 need_dev = 1;
133 }
134 if (need_dev) {
135 /* Get mount point or device file. */
Tetsuo Handa4e78c722011-06-13 13:49:11 +0900136 if (!dev_name || kern_path(dev_name, LOOKUP_FOLLOW, &path)) {
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900137 error = -ENOENT;
138 goto out;
139 }
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900140 obj.path1 = path;
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900141 requested_dev_name = tomoyo_realpath_from_path(&path);
142 if (!requested_dev_name) {
143 error = -ENOENT;
144 goto out;
145 }
146 } else {
147 /* Map dev_name to "<NULL>" if no dev_name given. */
148 if (!dev_name)
149 dev_name = "<NULL>";
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900150 requested_dev_name = tomoyo_encode(dev_name);
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900151 if (!requested_dev_name) {
152 error = -ENOMEM;
153 goto out;
154 }
155 }
156 rdev.name = requested_dev_name;
157 tomoyo_fill_path_info(&rdev);
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900158 r->param_type = TOMOYO_TYPE_MOUNT_ACL;
159 r->param.mount.need_dev = need_dev;
160 r->param.mount.dev = &rdev;
161 r->param.mount.dir = &rdir;
162 r->param.mount.type = &rtype;
163 r->param.mount.flags = flags;
Tetsuo Handa99a85252010-06-16 16:22:51 +0900164 do {
165 tomoyo_check_acl(r, tomoyo_check_mount_acl);
166 error = tomoyo_audit_mount_log(r);
167 } while (error == TOMOYO_RETRY_REQUEST);
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900168 out:
169 kfree(requested_dev_name);
170 kfree(requested_dir_name);
171 if (fstype)
172 put_filesystem(fstype);
173 kfree(requested_type);
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900174 /* Drop refcount obtained by kern_path(). */
175 if (obj.path1.dentry)
176 path_put(&obj.path1);
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900177 return error;
178}
179
180/**
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900181 * tomoyo_mount_permission - Check permission for mount() operation.
182 *
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900183 * @dev_name: Name of device file. Maybe NULL.
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900184 * @path: Pointer to "struct path".
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900185 * @type: Name of filesystem type. Maybe NULL.
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900186 * @flags: Mount options.
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900187 * @data_page: Optional data. Maybe NULL.
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900188 *
189 * Returns 0 on success, negative value otherwise.
190 */
Al Viroe6641ed2016-03-25 14:41:28 -0400191int tomoyo_mount_permission(const char *dev_name, const struct path *path,
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900192 const char *type, unsigned long flags,
193 void *data_page)
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900194{
195 struct tomoyo_request_info r;
196 int error;
197 int idx;
198
Tetsuo Handa57c25902010-06-03 20:38:44 +0900199 if (tomoyo_init_request_info(&r, NULL, TOMOYO_MAC_FILE_MOUNT)
200 == TOMOYO_CONFIG_DISABLED)
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900201 return 0;
Tetsuo Handad795ef9e2010-06-16 16:24:58 +0900202 if ((flags & MS_MGC_MSK) == MS_MGC_VAL)
203 flags &= ~MS_MGC_MSK;
204 if (flags & MS_REMOUNT) {
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900205 type = tomoyo_mounts[TOMOYO_MOUNT_REMOUNT];
Tetsuo Handad795ef9e2010-06-16 16:24:58 +0900206 flags &= ~MS_REMOUNT;
Tetsuo Handadf91e492012-02-29 21:53:22 +0900207 } else if (flags & MS_BIND) {
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900208 type = tomoyo_mounts[TOMOYO_MOUNT_BIND];
Tetsuo Handad795ef9e2010-06-16 16:24:58 +0900209 flags &= ~MS_BIND;
Tetsuo Handadf91e492012-02-29 21:53:22 +0900210 } else if (flags & MS_SHARED) {
211 if (flags & (MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
212 return -EINVAL;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900213 type = tomoyo_mounts[TOMOYO_MOUNT_MAKE_SHARED];
Tetsuo Handad795ef9e2010-06-16 16:24:58 +0900214 flags &= ~MS_SHARED;
Tetsuo Handadf91e492012-02-29 21:53:22 +0900215 } else if (flags & MS_PRIVATE) {
216 if (flags & (MS_SHARED | MS_SLAVE | MS_UNBINDABLE))
217 return -EINVAL;
218 type = tomoyo_mounts[TOMOYO_MOUNT_MAKE_PRIVATE];
219 flags &= ~MS_PRIVATE;
220 } else if (flags & MS_SLAVE) {
221 if (flags & (MS_SHARED | MS_PRIVATE | MS_UNBINDABLE))
222 return -EINVAL;
223 type = tomoyo_mounts[TOMOYO_MOUNT_MAKE_SLAVE];
224 flags &= ~MS_SLAVE;
225 } else if (flags & MS_UNBINDABLE) {
226 if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE))
227 return -EINVAL;
228 type = tomoyo_mounts[TOMOYO_MOUNT_MAKE_UNBINDABLE];
229 flags &= ~MS_UNBINDABLE;
230 } else if (flags & MS_MOVE) {
231 type = tomoyo_mounts[TOMOYO_MOUNT_MOVE];
232 flags &= ~MS_MOVE;
Tetsuo Handad795ef9e2010-06-16 16:24:58 +0900233 }
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900234 if (!type)
235 type = "<NULL>";
236 idx = tomoyo_read_lock();
237 error = tomoyo_mount_acl(&r, dev_name, path, type, flags);
238 tomoyo_read_unlock(idx);
239 return error;
240}