Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 1 | /* |
| 2 | * security/tomoyo/mount.c |
| 3 | * |
Tetsuo Handa | 0f2a55d | 2011-07-14 14:46:51 +0900 | [diff] [blame] | 4 | * Copyright (C) 2005-2011 NTT DATA CORPORATION |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <linux/slab.h> |
| 8 | #include "common.h" |
| 9 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 10 | /* String table for special mount operations. */ |
| 11 | static const char * const tomoyo_mounts[TOMOYO_MAX_SPECIAL_MOUNT] = { |
| 12 | [TOMOYO_MOUNT_BIND] = "--bind", |
| 13 | [TOMOYO_MOUNT_MOVE] = "--move", |
| 14 | [TOMOYO_MOUNT_REMOUNT] = "--remount", |
| 15 | [TOMOYO_MOUNT_MAKE_UNBINDABLE] = "--make-unbindable", |
| 16 | [TOMOYO_MOUNT_MAKE_PRIVATE] = "--make-private", |
| 17 | [TOMOYO_MOUNT_MAKE_SLAVE] = "--make-slave", |
| 18 | [TOMOYO_MOUNT_MAKE_SHARED] = "--make-shared", |
| 19 | }; |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 20 | |
| 21 | /** |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 22 | * tomoyo_audit_mount_log - Audit mount log. |
| 23 | * |
| 24 | * @r: Pointer to "struct tomoyo_request_info". |
| 25 | * |
| 26 | * Returns 0 on success, negative value otherwise. |
| 27 | */ |
| 28 | static int tomoyo_audit_mount_log(struct tomoyo_request_info *r) |
| 29 | { |
Tetsuo Handa | eadd99c | 2011-06-26 23:18:58 +0900 | [diff] [blame] | 30 | return tomoyo_supervisor(r, "file mount %s %s %s 0x%lX\n", |
Tetsuo Handa | 7c75964 | 2011-06-26 23:15:31 +0900 | [diff] [blame] | 31 | r->param.mount.dev->name, |
Tetsuo Handa | eadd99c | 2011-06-26 23:18:58 +0900 | [diff] [blame] | 32 | r->param.mount.dir->name, |
| 33 | r->param.mount.type->name, |
| 34 | r->param.mount.flags); |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 35 | } |
| 36 | |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 37 | /** |
| 38 | * tomoyo_check_mount_acl - Check permission for path path path number operation. |
| 39 | * |
| 40 | * @r: Pointer to "struct tomoyo_request_info". |
| 41 | * @ptr: Pointer to "struct tomoyo_acl_info". |
| 42 | * |
| 43 | * Returns true if granted, false otherwise. |
| 44 | */ |
Tetsuo Handa | 484ca79 | 2010-07-29 14:29:55 +0900 | [diff] [blame] | 45 | static bool tomoyo_check_mount_acl(struct tomoyo_request_info *r, |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 46 | const struct tomoyo_acl_info *ptr) |
| 47 | { |
| 48 | const struct tomoyo_mount_acl *acl = |
| 49 | container_of(ptr, typeof(*acl), head); |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 50 | return tomoyo_compare_number_union(r->param.mount.flags, |
| 51 | &acl->flags) && |
| 52 | tomoyo_compare_name_union(r->param.mount.type, |
| 53 | &acl->fs_type) && |
| 54 | tomoyo_compare_name_union(r->param.mount.dir, |
| 55 | &acl->dir_name) && |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 56 | (!r->param.mount.need_dev || |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 57 | tomoyo_compare_name_union(r->param.mount.dev, |
| 58 | &acl->dev_name)); |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | /** |
Tetsuo Handa | d795ef9e | 2010-06-16 16:24:58 +0900 | [diff] [blame] | 62 | * tomoyo_mount_acl - Check permission for mount() operation. |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 63 | * |
| 64 | * @r: Pointer to "struct tomoyo_request_info". |
Tetsuo Handa | 0f2a55d | 2011-07-14 14:46:51 +0900 | [diff] [blame] | 65 | * @dev_name: Name of device file. Maybe NULL. |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 66 | * @dir: Pointer to "struct path". |
| 67 | * @type: Name of filesystem type. |
| 68 | * @flags: Mount options. |
| 69 | * |
| 70 | * Returns 0 on success, negative value otherwise. |
| 71 | * |
| 72 | * Caller holds tomoyo_read_lock(). |
| 73 | */ |
Al Viro | 808d4e3 | 2012-10-11 11:42:01 -0400 | [diff] [blame] | 74 | static int tomoyo_mount_acl(struct tomoyo_request_info *r, |
| 75 | const char *dev_name, |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 76 | struct path *dir, const char *type, |
| 77 | unsigned long flags) |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 78 | { |
Tetsuo Handa | 97fb35e | 2011-07-08 13:25:53 +0900 | [diff] [blame] | 79 | struct tomoyo_obj_info obj = { }; |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 80 | struct path path; |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 81 | struct file_system_type *fstype = NULL; |
| 82 | const char *requested_type = NULL; |
| 83 | const char *requested_dir_name = NULL; |
| 84 | const char *requested_dev_name = NULL; |
| 85 | struct tomoyo_path_info rtype; |
| 86 | struct tomoyo_path_info rdev; |
| 87 | struct tomoyo_path_info rdir; |
| 88 | int need_dev = 0; |
| 89 | int error = -ENOMEM; |
Tetsuo Handa | 97fb35e | 2011-07-08 13:25:53 +0900 | [diff] [blame] | 90 | r->obj = &obj; |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 91 | |
| 92 | /* Get fstype. */ |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 93 | requested_type = tomoyo_encode(type); |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 94 | if (!requested_type) |
| 95 | goto out; |
| 96 | rtype.name = requested_type; |
| 97 | tomoyo_fill_path_info(&rtype); |
| 98 | |
| 99 | /* Get mount point. */ |
Tetsuo Handa | 97fb35e | 2011-07-08 13:25:53 +0900 | [diff] [blame] | 100 | obj.path2 = *dir; |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 101 | requested_dir_name = tomoyo_realpath_from_path(dir); |
| 102 | if (!requested_dir_name) { |
| 103 | error = -ENOMEM; |
| 104 | goto out; |
| 105 | } |
| 106 | rdir.name = requested_dir_name; |
| 107 | tomoyo_fill_path_info(&rdir); |
| 108 | |
| 109 | /* Compare fs name. */ |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 110 | if (type == tomoyo_mounts[TOMOYO_MOUNT_REMOUNT]) { |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 111 | /* dev_name is ignored. */ |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 112 | } else if (type == tomoyo_mounts[TOMOYO_MOUNT_MAKE_UNBINDABLE] || |
| 113 | type == tomoyo_mounts[TOMOYO_MOUNT_MAKE_PRIVATE] || |
| 114 | type == tomoyo_mounts[TOMOYO_MOUNT_MAKE_SLAVE] || |
| 115 | type == tomoyo_mounts[TOMOYO_MOUNT_MAKE_SHARED]) { |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 116 | /* dev_name is ignored. */ |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 117 | } else if (type == tomoyo_mounts[TOMOYO_MOUNT_BIND] || |
| 118 | type == tomoyo_mounts[TOMOYO_MOUNT_MOVE]) { |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 119 | need_dev = -1; /* dev_name is a directory */ |
| 120 | } else { |
| 121 | fstype = get_fs_type(type); |
| 122 | if (!fstype) { |
| 123 | error = -ENODEV; |
| 124 | goto out; |
| 125 | } |
| 126 | if (fstype->fs_flags & FS_REQUIRES_DEV) |
| 127 | /* dev_name is a block device file. */ |
| 128 | need_dev = 1; |
| 129 | } |
| 130 | if (need_dev) { |
| 131 | /* Get mount point or device file. */ |
Tetsuo Handa | 4e78c72 | 2011-06-13 13:49:11 +0900 | [diff] [blame] | 132 | if (!dev_name || kern_path(dev_name, LOOKUP_FOLLOW, &path)) { |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 133 | error = -ENOENT; |
| 134 | goto out; |
| 135 | } |
Tetsuo Handa | 97fb35e | 2011-07-08 13:25:53 +0900 | [diff] [blame] | 136 | obj.path1 = path; |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 137 | requested_dev_name = tomoyo_realpath_from_path(&path); |
| 138 | if (!requested_dev_name) { |
| 139 | error = -ENOENT; |
| 140 | goto out; |
| 141 | } |
| 142 | } else { |
| 143 | /* Map dev_name to "<NULL>" if no dev_name given. */ |
| 144 | if (!dev_name) |
| 145 | dev_name = "<NULL>"; |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 146 | requested_dev_name = tomoyo_encode(dev_name); |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 147 | if (!requested_dev_name) { |
| 148 | error = -ENOMEM; |
| 149 | goto out; |
| 150 | } |
| 151 | } |
| 152 | rdev.name = requested_dev_name; |
| 153 | tomoyo_fill_path_info(&rdev); |
Tetsuo Handa | cf6e9a6 | 2010-06-16 16:21:36 +0900 | [diff] [blame] | 154 | r->param_type = TOMOYO_TYPE_MOUNT_ACL; |
| 155 | r->param.mount.need_dev = need_dev; |
| 156 | r->param.mount.dev = &rdev; |
| 157 | r->param.mount.dir = &rdir; |
| 158 | r->param.mount.type = &rtype; |
| 159 | r->param.mount.flags = flags; |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 160 | do { |
| 161 | tomoyo_check_acl(r, tomoyo_check_mount_acl); |
| 162 | error = tomoyo_audit_mount_log(r); |
| 163 | } while (error == TOMOYO_RETRY_REQUEST); |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 164 | out: |
| 165 | kfree(requested_dev_name); |
| 166 | kfree(requested_dir_name); |
| 167 | if (fstype) |
| 168 | put_filesystem(fstype); |
| 169 | kfree(requested_type); |
Tetsuo Handa | 97fb35e | 2011-07-08 13:25:53 +0900 | [diff] [blame] | 170 | /* Drop refcount obtained by kern_path(). */ |
| 171 | if (obj.path1.dentry) |
| 172 | path_put(&obj.path1); |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 173 | return error; |
| 174 | } |
| 175 | |
| 176 | /** |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 177 | * tomoyo_mount_permission - Check permission for mount() operation. |
| 178 | * |
Tetsuo Handa | 0f2a55d | 2011-07-14 14:46:51 +0900 | [diff] [blame] | 179 | * @dev_name: Name of device file. Maybe NULL. |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 180 | * @path: Pointer to "struct path". |
Tetsuo Handa | 0f2a55d | 2011-07-14 14:46:51 +0900 | [diff] [blame] | 181 | * @type: Name of filesystem type. Maybe NULL. |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 182 | * @flags: Mount options. |
Tetsuo Handa | 0f2a55d | 2011-07-14 14:46:51 +0900 | [diff] [blame] | 183 | * @data_page: Optional data. Maybe NULL. |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 184 | * |
| 185 | * Returns 0 on success, negative value otherwise. |
| 186 | */ |
Al Viro | 808d4e3 | 2012-10-11 11:42:01 -0400 | [diff] [blame] | 187 | int tomoyo_mount_permission(const char *dev_name, struct path *path, |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 188 | const char *type, unsigned long flags, |
| 189 | void *data_page) |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 190 | { |
| 191 | struct tomoyo_request_info r; |
| 192 | int error; |
| 193 | int idx; |
| 194 | |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 195 | if (tomoyo_init_request_info(&r, NULL, TOMOYO_MAC_FILE_MOUNT) |
| 196 | == TOMOYO_CONFIG_DISABLED) |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 197 | return 0; |
Tetsuo Handa | d795ef9e | 2010-06-16 16:24:58 +0900 | [diff] [blame] | 198 | if ((flags & MS_MGC_MSK) == MS_MGC_VAL) |
| 199 | flags &= ~MS_MGC_MSK; |
| 200 | if (flags & MS_REMOUNT) { |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 201 | type = tomoyo_mounts[TOMOYO_MOUNT_REMOUNT]; |
Tetsuo Handa | d795ef9e | 2010-06-16 16:24:58 +0900 | [diff] [blame] | 202 | flags &= ~MS_REMOUNT; |
Tetsuo Handa | df91e49 | 2012-02-29 21:53:22 +0900 | [diff] [blame] | 203 | } else if (flags & MS_BIND) { |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 204 | type = tomoyo_mounts[TOMOYO_MOUNT_BIND]; |
Tetsuo Handa | d795ef9e | 2010-06-16 16:24:58 +0900 | [diff] [blame] | 205 | flags &= ~MS_BIND; |
Tetsuo Handa | df91e49 | 2012-02-29 21:53:22 +0900 | [diff] [blame] | 206 | } else if (flags & MS_SHARED) { |
| 207 | if (flags & (MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE)) |
| 208 | return -EINVAL; |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 209 | type = tomoyo_mounts[TOMOYO_MOUNT_MAKE_SHARED]; |
Tetsuo Handa | d795ef9e | 2010-06-16 16:24:58 +0900 | [diff] [blame] | 210 | flags &= ~MS_SHARED; |
Tetsuo Handa | df91e49 | 2012-02-29 21:53:22 +0900 | [diff] [blame] | 211 | } else if (flags & MS_PRIVATE) { |
| 212 | if (flags & (MS_SHARED | MS_SLAVE | MS_UNBINDABLE)) |
| 213 | return -EINVAL; |
| 214 | type = tomoyo_mounts[TOMOYO_MOUNT_MAKE_PRIVATE]; |
| 215 | flags &= ~MS_PRIVATE; |
| 216 | } else if (flags & MS_SLAVE) { |
| 217 | if (flags & (MS_SHARED | MS_PRIVATE | MS_UNBINDABLE)) |
| 218 | return -EINVAL; |
| 219 | type = tomoyo_mounts[TOMOYO_MOUNT_MAKE_SLAVE]; |
| 220 | flags &= ~MS_SLAVE; |
| 221 | } else if (flags & MS_UNBINDABLE) { |
| 222 | if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE)) |
| 223 | return -EINVAL; |
| 224 | type = tomoyo_mounts[TOMOYO_MOUNT_MAKE_UNBINDABLE]; |
| 225 | flags &= ~MS_UNBINDABLE; |
| 226 | } else if (flags & MS_MOVE) { |
| 227 | type = tomoyo_mounts[TOMOYO_MOUNT_MOVE]; |
| 228 | flags &= ~MS_MOVE; |
Tetsuo Handa | d795ef9e | 2010-06-16 16:24:58 +0900 | [diff] [blame] | 229 | } |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 230 | if (!type) |
| 231 | type = "<NULL>"; |
| 232 | idx = tomoyo_read_lock(); |
| 233 | error = tomoyo_mount_acl(&r, dev_name, path, type, flags); |
| 234 | tomoyo_read_unlock(idx); |
| 235 | return error; |
| 236 | } |