Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 1 | /* |
| 2 | * security/tomoyo/file.c |
| 3 | * |
Tetsuo Handa | c3ef150 | 2010-05-17 10:12:46 +0900 | [diff] [blame] | 4 | * Pathname restriction functions. |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 5 | * |
Tetsuo Handa | c3ef150 | 2010-05-17 10:12:46 +0900 | [diff] [blame] | 6 | * Copyright (C) 2005-2010 NTT DATA CORPORATION |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include "common.h" |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 10 | #include <linux/slab.h> |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 11 | |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 12 | /* |
| 13 | * Mapping table from "enum tomoyo_path_acl_index" to "enum tomoyo_mac_index". |
| 14 | */ |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 15 | static const u8 tomoyo_p2mac[TOMOYO_MAX_PATH_OPERATION] = { |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 16 | [TOMOYO_TYPE_EXECUTE] = TOMOYO_MAC_FILE_EXECUTE, |
| 17 | [TOMOYO_TYPE_READ] = TOMOYO_MAC_FILE_OPEN, |
| 18 | [TOMOYO_TYPE_WRITE] = TOMOYO_MAC_FILE_OPEN, |
Tetsuo Handa | 7c75964 | 2011-06-26 23:15:31 +0900 | [diff] [blame] | 19 | [TOMOYO_TYPE_APPEND] = TOMOYO_MAC_FILE_OPEN, |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 20 | [TOMOYO_TYPE_UNLINK] = TOMOYO_MAC_FILE_UNLINK, |
Tetsuo Handa | 7c75964 | 2011-06-26 23:15:31 +0900 | [diff] [blame] | 21 | [TOMOYO_TYPE_GETATTR] = TOMOYO_MAC_FILE_GETATTR, |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 22 | [TOMOYO_TYPE_RMDIR] = TOMOYO_MAC_FILE_RMDIR, |
| 23 | [TOMOYO_TYPE_TRUNCATE] = TOMOYO_MAC_FILE_TRUNCATE, |
| 24 | [TOMOYO_TYPE_SYMLINK] = TOMOYO_MAC_FILE_SYMLINK, |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 25 | [TOMOYO_TYPE_CHROOT] = TOMOYO_MAC_FILE_CHROOT, |
| 26 | [TOMOYO_TYPE_UMOUNT] = TOMOYO_MAC_FILE_UMOUNT, |
| 27 | }; |
| 28 | |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 29 | /* |
| 30 | * Mapping table from "enum tomoyo_mkdev_acl_index" to "enum tomoyo_mac_index". |
| 31 | */ |
Tetsuo Handa | 0d2171d | 2011-06-26 23:17:46 +0900 | [diff] [blame] | 32 | const u8 tomoyo_pnnn2mac[TOMOYO_MAX_MKDEV_OPERATION] = { |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 33 | [TOMOYO_TYPE_MKBLOCK] = TOMOYO_MAC_FILE_MKBLOCK, |
| 34 | [TOMOYO_TYPE_MKCHAR] = TOMOYO_MAC_FILE_MKCHAR, |
| 35 | }; |
| 36 | |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 37 | /* |
| 38 | * Mapping table from "enum tomoyo_path2_acl_index" to "enum tomoyo_mac_index". |
| 39 | */ |
Tetsuo Handa | 0d2171d | 2011-06-26 23:17:46 +0900 | [diff] [blame] | 40 | const u8 tomoyo_pp2mac[TOMOYO_MAX_PATH2_OPERATION] = { |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 41 | [TOMOYO_TYPE_LINK] = TOMOYO_MAC_FILE_LINK, |
| 42 | [TOMOYO_TYPE_RENAME] = TOMOYO_MAC_FILE_RENAME, |
| 43 | [TOMOYO_TYPE_PIVOT_ROOT] = TOMOYO_MAC_FILE_PIVOT_ROOT, |
| 44 | }; |
| 45 | |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 46 | /* |
| 47 | * Mapping table from "enum tomoyo_path_number_acl_index" to |
| 48 | * "enum tomoyo_mac_index". |
| 49 | */ |
Tetsuo Handa | 0d2171d | 2011-06-26 23:17:46 +0900 | [diff] [blame] | 50 | const u8 tomoyo_pn2mac[TOMOYO_MAX_PATH_NUMBER_OPERATION] = { |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 51 | [TOMOYO_TYPE_CREATE] = TOMOYO_MAC_FILE_CREATE, |
| 52 | [TOMOYO_TYPE_MKDIR] = TOMOYO_MAC_FILE_MKDIR, |
| 53 | [TOMOYO_TYPE_MKFIFO] = TOMOYO_MAC_FILE_MKFIFO, |
| 54 | [TOMOYO_TYPE_MKSOCK] = TOMOYO_MAC_FILE_MKSOCK, |
| 55 | [TOMOYO_TYPE_IOCTL] = TOMOYO_MAC_FILE_IOCTL, |
| 56 | [TOMOYO_TYPE_CHMOD] = TOMOYO_MAC_FILE_CHMOD, |
| 57 | [TOMOYO_TYPE_CHOWN] = TOMOYO_MAC_FILE_CHOWN, |
| 58 | [TOMOYO_TYPE_CHGRP] = TOMOYO_MAC_FILE_CHGRP, |
| 59 | }; |
| 60 | |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 61 | /** |
| 62 | * tomoyo_put_name_union - Drop reference on "struct tomoyo_name_union". |
| 63 | * |
| 64 | * @ptr: Pointer to "struct tomoyo_name_union". |
| 65 | * |
| 66 | * Returns nothing. |
| 67 | */ |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 68 | void tomoyo_put_name_union(struct tomoyo_name_union *ptr) |
| 69 | { |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 70 | tomoyo_put_group(ptr->group); |
| 71 | tomoyo_put_name(ptr->filename); |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 72 | } |
| 73 | |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 74 | /** |
| 75 | * tomoyo_compare_name_union - Check whether a name matches "struct tomoyo_name_union" or not. |
| 76 | * |
| 77 | * @name: Pointer to "struct tomoyo_path_info". |
| 78 | * @ptr: Pointer to "struct tomoyo_name_union". |
| 79 | * |
| 80 | * Returns "struct tomoyo_path_info" if @name matches @ptr, NULL otherwise. |
| 81 | */ |
Tetsuo Handa | 484ca79 | 2010-07-29 14:29:55 +0900 | [diff] [blame] | 82 | const struct tomoyo_path_info * |
| 83 | tomoyo_compare_name_union(const struct tomoyo_path_info *name, |
| 84 | const struct tomoyo_name_union *ptr) |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 85 | { |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 86 | if (ptr->group) |
Tetsuo Handa | 3f62963 | 2010-06-03 20:37:26 +0900 | [diff] [blame] | 87 | return tomoyo_path_matches_group(name, ptr->group); |
Tetsuo Handa | 484ca79 | 2010-07-29 14:29:55 +0900 | [diff] [blame] | 88 | if (tomoyo_path_matches_pattern(name, ptr->filename)) |
| 89 | return ptr->filename; |
| 90 | return NULL; |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 91 | } |
| 92 | |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 93 | /** |
| 94 | * tomoyo_put_number_union - Drop reference on "struct tomoyo_number_union". |
| 95 | * |
| 96 | * @ptr: Pointer to "struct tomoyo_number_union". |
| 97 | * |
| 98 | * Returns nothing. |
| 99 | */ |
Tetsuo Handa | 4c3e9e2 | 2010-05-17 10:06:58 +0900 | [diff] [blame] | 100 | void tomoyo_put_number_union(struct tomoyo_number_union *ptr) |
| 101 | { |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 102 | tomoyo_put_group(ptr->group); |
Tetsuo Handa | 4c3e9e2 | 2010-05-17 10:06:58 +0900 | [diff] [blame] | 103 | } |
| 104 | |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 105 | /** |
| 106 | * tomoyo_compare_number_union - Check whether a value matches "struct tomoyo_number_union" or not. |
| 107 | * |
| 108 | * @value: Number to check. |
| 109 | * @ptr: Pointer to "struct tomoyo_number_union". |
| 110 | * |
| 111 | * Returns true if @value matches @ptr, false otherwise. |
| 112 | */ |
Tetsuo Handa | 4c3e9e2 | 2010-05-17 10:06:58 +0900 | [diff] [blame] | 113 | bool tomoyo_compare_number_union(const unsigned long value, |
| 114 | const struct tomoyo_number_union *ptr) |
| 115 | { |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 116 | if (ptr->group) |
Tetsuo Handa | 4c3e9e2 | 2010-05-17 10:06:58 +0900 | [diff] [blame] | 117 | return tomoyo_number_matches_group(value, value, ptr->group); |
| 118 | return value >= ptr->values[0] && value <= ptr->values[1]; |
| 119 | } |
| 120 | |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 121 | /** |
| 122 | * tomoyo_add_slash - Add trailing '/' if needed. |
| 123 | * |
| 124 | * @buf: Pointer to "struct tomoyo_path_info". |
| 125 | * |
| 126 | * Returns nothing. |
| 127 | * |
| 128 | * @buf must be generated by tomoyo_encode() because this function does not |
| 129 | * allocate memory for adding '/'. |
| 130 | */ |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 131 | static void tomoyo_add_slash(struct tomoyo_path_info *buf) |
| 132 | { |
| 133 | if (buf->is_dir) |
| 134 | return; |
| 135 | /* |
| 136 | * This is OK because tomoyo_encode() reserves space for appending "/". |
| 137 | */ |
| 138 | strcat((char *) buf->name, "/"); |
| 139 | tomoyo_fill_path_info(buf); |
| 140 | } |
| 141 | |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 142 | /** |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 143 | * tomoyo_get_realpath - Get realpath. |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 144 | * |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 145 | * @buf: Pointer to "struct tomoyo_path_info". |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 146 | * @path: Pointer to "struct path". |
| 147 | * |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 148 | * Returns true on success, false otherwise. |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 149 | */ |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 150 | static bool tomoyo_get_realpath(struct tomoyo_path_info *buf, struct path *path) |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 151 | { |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 152 | buf->name = tomoyo_realpath_from_path(path); |
| 153 | if (buf->name) { |
| 154 | tomoyo_fill_path_info(buf); |
| 155 | return true; |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 156 | } |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 157 | return false; |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 158 | } |
| 159 | |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 160 | /** |
| 161 | * tomoyo_audit_path_log - Audit path request log. |
| 162 | * |
| 163 | * @r: Pointer to "struct tomoyo_request_info". |
| 164 | * |
| 165 | * Returns 0 on success, negative value otherwise. |
| 166 | */ |
| 167 | static int tomoyo_audit_path_log(struct tomoyo_request_info *r) |
| 168 | { |
Tetsuo Handa | eadd99c | 2011-06-26 23:18:58 +0900 | [diff] [blame] | 169 | return tomoyo_supervisor(r, "file %s %s\n", tomoyo_path_keyword |
| 170 | [r->param.path.operation], |
| 171 | r->param.path.filename->name); |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | /** |
| 175 | * tomoyo_audit_path2_log - Audit path/path request log. |
| 176 | * |
| 177 | * @r: Pointer to "struct tomoyo_request_info". |
| 178 | * |
| 179 | * Returns 0 on success, negative value otherwise. |
| 180 | */ |
| 181 | static int tomoyo_audit_path2_log(struct tomoyo_request_info *r) |
| 182 | { |
Tetsuo Handa | 2c47ab9 | 2011-06-26 23:21:19 +0900 | [diff] [blame] | 183 | return tomoyo_supervisor(r, "file %s %s %s\n", tomoyo_mac_keywords |
| 184 | [tomoyo_pp2mac[r->param.path2.operation]], |
Tetsuo Handa | eadd99c | 2011-06-26 23:18:58 +0900 | [diff] [blame] | 185 | r->param.path2.filename1->name, |
| 186 | r->param.path2.filename2->name); |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 187 | } |
| 188 | |
| 189 | /** |
| 190 | * tomoyo_audit_mkdev_log - Audit path/number/number/number request log. |
| 191 | * |
| 192 | * @r: Pointer to "struct tomoyo_request_info". |
| 193 | * |
| 194 | * Returns 0 on success, negative value otherwise. |
| 195 | */ |
| 196 | static int tomoyo_audit_mkdev_log(struct tomoyo_request_info *r) |
| 197 | { |
Tetsuo Handa | eadd99c | 2011-06-26 23:18:58 +0900 | [diff] [blame] | 198 | return tomoyo_supervisor(r, "file %s %s 0%o %u %u\n", |
Tetsuo Handa | 2c47ab9 | 2011-06-26 23:21:19 +0900 | [diff] [blame] | 199 | tomoyo_mac_keywords |
| 200 | [tomoyo_pnnn2mac[r->param.mkdev.operation]], |
Tetsuo Handa | eadd99c | 2011-06-26 23:18:58 +0900 | [diff] [blame] | 201 | r->param.mkdev.filename->name, |
| 202 | r->param.mkdev.mode, r->param.mkdev.major, |
| 203 | r->param.mkdev.minor); |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 204 | } |
| 205 | |
| 206 | /** |
| 207 | * tomoyo_audit_path_number_log - Audit path/number request log. |
| 208 | * |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 209 | * @r: Pointer to "struct tomoyo_request_info". |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 210 | * |
| 211 | * Returns 0 on success, negative value otherwise. |
| 212 | */ |
| 213 | static int tomoyo_audit_path_number_log(struct tomoyo_request_info *r) |
| 214 | { |
| 215 | const u8 type = r->param.path_number.operation; |
| 216 | u8 radix; |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 217 | char buffer[64]; |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 218 | switch (type) { |
| 219 | case TOMOYO_TYPE_CREATE: |
| 220 | case TOMOYO_TYPE_MKDIR: |
| 221 | case TOMOYO_TYPE_MKFIFO: |
| 222 | case TOMOYO_TYPE_MKSOCK: |
| 223 | case TOMOYO_TYPE_CHMOD: |
| 224 | radix = TOMOYO_VALUE_TYPE_OCTAL; |
| 225 | break; |
| 226 | case TOMOYO_TYPE_IOCTL: |
| 227 | radix = TOMOYO_VALUE_TYPE_HEXADECIMAL; |
| 228 | break; |
| 229 | default: |
| 230 | radix = TOMOYO_VALUE_TYPE_DECIMAL; |
| 231 | break; |
| 232 | } |
| 233 | tomoyo_print_ulong(buffer, sizeof(buffer), r->param.path_number.number, |
| 234 | radix); |
Tetsuo Handa | 2c47ab9 | 2011-06-26 23:21:19 +0900 | [diff] [blame] | 235 | return tomoyo_supervisor(r, "file %s %s %s\n", tomoyo_mac_keywords |
| 236 | [tomoyo_pn2mac[type]], |
Tetsuo Handa | eadd99c | 2011-06-26 23:18:58 +0900 | [diff] [blame] | 237 | r->param.path_number.filename->name, buffer); |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 238 | } |
| 239 | |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 240 | /** |
| 241 | * tomoyo_check_path_acl - Check permission for path operation. |
| 242 | * |
| 243 | * @r: Pointer to "struct tomoyo_request_info". |
| 244 | * @ptr: Pointer to "struct tomoyo_acl_info". |
| 245 | * |
| 246 | * Returns true if granted, false otherwise. |
| 247 | * |
| 248 | * To be able to use wildcard for domain transition, this function sets |
| 249 | * matching entry on success. Since the caller holds tomoyo_read_lock(), |
| 250 | * it is safe to set matching entry. |
| 251 | */ |
Tetsuo Handa | 484ca79 | 2010-07-29 14:29:55 +0900 | [diff] [blame] | 252 | static bool tomoyo_check_path_acl(struct tomoyo_request_info *r, |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 253 | const struct tomoyo_acl_info *ptr) |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 254 | { |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 255 | const struct tomoyo_path_acl *acl = container_of(ptr, typeof(*acl), |
| 256 | head); |
Tetsuo Handa | 484ca79 | 2010-07-29 14:29:55 +0900 | [diff] [blame] | 257 | if (acl->perm & (1 << r->param.path.operation)) { |
| 258 | r->param.path.matched_path = |
| 259 | tomoyo_compare_name_union(r->param.path.filename, |
| 260 | &acl->name); |
| 261 | return r->param.path.matched_path != NULL; |
| 262 | } |
| 263 | return false; |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 264 | } |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 265 | |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 266 | /** |
| 267 | * tomoyo_check_path_number_acl - Check permission for path number operation. |
| 268 | * |
| 269 | * @r: Pointer to "struct tomoyo_request_info". |
| 270 | * @ptr: Pointer to "struct tomoyo_acl_info". |
| 271 | * |
| 272 | * Returns true if granted, false otherwise. |
| 273 | */ |
Tetsuo Handa | 484ca79 | 2010-07-29 14:29:55 +0900 | [diff] [blame] | 274 | static bool tomoyo_check_path_number_acl(struct tomoyo_request_info *r, |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 275 | const struct tomoyo_acl_info *ptr) |
| 276 | { |
| 277 | const struct tomoyo_path_number_acl *acl = |
| 278 | container_of(ptr, typeof(*acl), head); |
| 279 | return (acl->perm & (1 << r->param.path_number.operation)) && |
| 280 | tomoyo_compare_number_union(r->param.path_number.number, |
| 281 | &acl->number) && |
| 282 | tomoyo_compare_name_union(r->param.path_number.filename, |
| 283 | &acl->name); |
| 284 | } |
| 285 | |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 286 | /** |
| 287 | * tomoyo_check_path2_acl - Check permission for path path operation. |
| 288 | * |
| 289 | * @r: Pointer to "struct tomoyo_request_info". |
| 290 | * @ptr: Pointer to "struct tomoyo_acl_info". |
| 291 | * |
| 292 | * Returns true if granted, false otherwise. |
| 293 | */ |
Tetsuo Handa | 484ca79 | 2010-07-29 14:29:55 +0900 | [diff] [blame] | 294 | static bool tomoyo_check_path2_acl(struct tomoyo_request_info *r, |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 295 | const struct tomoyo_acl_info *ptr) |
| 296 | { |
| 297 | const struct tomoyo_path2_acl *acl = |
| 298 | container_of(ptr, typeof(*acl), head); |
| 299 | return (acl->perm & (1 << r->param.path2.operation)) && |
| 300 | tomoyo_compare_name_union(r->param.path2.filename1, &acl->name1) |
| 301 | && tomoyo_compare_name_union(r->param.path2.filename2, |
| 302 | &acl->name2); |
| 303 | } |
| 304 | |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 305 | /** |
| 306 | * tomoyo_check_mkdev_acl - Check permission for path number number number operation. |
| 307 | * |
| 308 | * @r: Pointer to "struct tomoyo_request_info". |
| 309 | * @ptr: Pointer to "struct tomoyo_acl_info". |
| 310 | * |
| 311 | * Returns true if granted, false otherwise. |
| 312 | */ |
Tetsuo Handa | 484ca79 | 2010-07-29 14:29:55 +0900 | [diff] [blame] | 313 | static bool tomoyo_check_mkdev_acl(struct tomoyo_request_info *r, |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 314 | const struct tomoyo_acl_info *ptr) |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 315 | { |
Tetsuo Handa | 7509315 | 2010-06-16 16:23:55 +0900 | [diff] [blame] | 316 | const struct tomoyo_mkdev_acl *acl = |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 317 | container_of(ptr, typeof(*acl), head); |
| 318 | return (acl->perm & (1 << r->param.mkdev.operation)) && |
| 319 | tomoyo_compare_number_union(r->param.mkdev.mode, |
| 320 | &acl->mode) && |
| 321 | tomoyo_compare_number_union(r->param.mkdev.major, |
| 322 | &acl->major) && |
| 323 | tomoyo_compare_number_union(r->param.mkdev.minor, |
| 324 | &acl->minor) && |
| 325 | tomoyo_compare_name_union(r->param.mkdev.filename, |
| 326 | &acl->name); |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 327 | } |
| 328 | |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 329 | /** |
| 330 | * tomoyo_same_path_acl - Check for duplicated "struct tomoyo_path_acl" entry. |
| 331 | * |
| 332 | * @a: Pointer to "struct tomoyo_acl_info". |
| 333 | * @b: Pointer to "struct tomoyo_acl_info". |
| 334 | * |
| 335 | * Returns true if @a == @b except permission bits, false otherwise. |
| 336 | */ |
Tetsuo Handa | 237ab45 | 2010-06-12 20:46:22 +0900 | [diff] [blame] | 337 | static bool tomoyo_same_path_acl(const struct tomoyo_acl_info *a, |
| 338 | const struct tomoyo_acl_info *b) |
| 339 | { |
| 340 | const struct tomoyo_path_acl *p1 = container_of(a, typeof(*p1), head); |
| 341 | const struct tomoyo_path_acl *p2 = container_of(b, typeof(*p2), head); |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 342 | return tomoyo_same_name_union(&p1->name, &p2->name); |
Tetsuo Handa | 237ab45 | 2010-06-12 20:46:22 +0900 | [diff] [blame] | 343 | } |
| 344 | |
Tetsuo Handa | 7c75964 | 2011-06-26 23:15:31 +0900 | [diff] [blame] | 345 | /** |
| 346 | * tomoyo_merge_path_acl - Merge duplicated "struct tomoyo_path_acl" entry. |
| 347 | * |
| 348 | * @a: Pointer to "struct tomoyo_acl_info". |
| 349 | * @b: Pointer to "struct tomoyo_acl_info". |
| 350 | * @is_delete: True for @a &= ~@b, false for @a |= @b. |
| 351 | * |
| 352 | * Returns true if @a is empty, false otherwise. |
| 353 | */ |
Tetsuo Handa | 237ab45 | 2010-06-12 20:46:22 +0900 | [diff] [blame] | 354 | static bool tomoyo_merge_path_acl(struct tomoyo_acl_info *a, |
| 355 | struct tomoyo_acl_info *b, |
| 356 | const bool is_delete) |
| 357 | { |
| 358 | u16 * const a_perm = &container_of(a, struct tomoyo_path_acl, head) |
| 359 | ->perm; |
| 360 | u16 perm = *a_perm; |
| 361 | const u16 b_perm = container_of(b, struct tomoyo_path_acl, head)->perm; |
Tetsuo Handa | 7c75964 | 2011-06-26 23:15:31 +0900 | [diff] [blame] | 362 | if (is_delete) |
Tetsuo Handa | 237ab45 | 2010-06-12 20:46:22 +0900 | [diff] [blame] | 363 | perm &= ~b_perm; |
Tetsuo Handa | 7c75964 | 2011-06-26 23:15:31 +0900 | [diff] [blame] | 364 | else |
Tetsuo Handa | 237ab45 | 2010-06-12 20:46:22 +0900 | [diff] [blame] | 365 | perm |= b_perm; |
Tetsuo Handa | 237ab45 | 2010-06-12 20:46:22 +0900 | [diff] [blame] | 366 | *a_perm = perm; |
| 367 | return !perm; |
| 368 | } |
| 369 | |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 370 | /** |
Tetsuo Handa | 7ef6123 | 2010-02-16 08:03:30 +0900 | [diff] [blame] | 371 | * tomoyo_update_path_acl - Update "struct tomoyo_path_acl" list. |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 372 | * |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 373 | * @perm: Permission. |
| 374 | * @param: Pointer to "struct tomoyo_acl_param". |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 375 | * |
| 376 | * Returns 0 on success, negative value otherwise. |
Tetsuo Handa | fdb8ebb | 2009-12-08 09:34:43 +0900 | [diff] [blame] | 377 | * |
| 378 | * Caller holds tomoyo_read_lock(). |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 379 | */ |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 380 | static int tomoyo_update_path_acl(const u16 perm, |
| 381 | struct tomoyo_acl_param *param) |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 382 | { |
Tetsuo Handa | 9e4b50e | 2010-05-06 12:40:02 +0900 | [diff] [blame] | 383 | struct tomoyo_path_acl e = { |
| 384 | .head.type = TOMOYO_TYPE_PATH_ACL, |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 385 | .perm = perm |
Tetsuo Handa | 9e4b50e | 2010-05-06 12:40:02 +0900 | [diff] [blame] | 386 | }; |
Tetsuo Handa | 237ab45 | 2010-06-12 20:46:22 +0900 | [diff] [blame] | 387 | int error; |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 388 | if (!tomoyo_parse_name_union(param, &e.name)) |
| 389 | error = -EINVAL; |
| 390 | else |
| 391 | error = tomoyo_update_domain(&e.head, sizeof(e), param, |
| 392 | tomoyo_same_path_acl, |
| 393 | tomoyo_merge_path_acl); |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 394 | tomoyo_put_name_union(&e.name); |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 395 | return error; |
| 396 | } |
| 397 | |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 398 | /** |
| 399 | * tomoyo_same_mkdev_acl - Check for duplicated "struct tomoyo_mkdev_acl" entry. |
| 400 | * |
| 401 | * @a: Pointer to "struct tomoyo_acl_info". |
| 402 | * @b: Pointer to "struct tomoyo_acl_info". |
| 403 | * |
| 404 | * Returns true if @a == @b except permission bits, false otherwise. |
| 405 | */ |
Tetsuo Handa | 7509315 | 2010-06-16 16:23:55 +0900 | [diff] [blame] | 406 | static bool tomoyo_same_mkdev_acl(const struct tomoyo_acl_info *a, |
Tetsuo Handa | 237ab45 | 2010-06-12 20:46:22 +0900 | [diff] [blame] | 407 | const struct tomoyo_acl_info *b) |
| 408 | { |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 409 | const struct tomoyo_mkdev_acl *p1 = container_of(a, typeof(*p1), head); |
| 410 | const struct tomoyo_mkdev_acl *p2 = container_of(b, typeof(*p2), head); |
| 411 | return tomoyo_same_name_union(&p1->name, &p2->name) && |
| 412 | tomoyo_same_number_union(&p1->mode, &p2->mode) && |
| 413 | tomoyo_same_number_union(&p1->major, &p2->major) && |
| 414 | tomoyo_same_number_union(&p1->minor, &p2->minor); |
Tetsuo Handa | 237ab45 | 2010-06-12 20:46:22 +0900 | [diff] [blame] | 415 | } |
| 416 | |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 417 | /** |
| 418 | * tomoyo_merge_mkdev_acl - Merge duplicated "struct tomoyo_mkdev_acl" entry. |
| 419 | * |
| 420 | * @a: Pointer to "struct tomoyo_acl_info". |
| 421 | * @b: Pointer to "struct tomoyo_acl_info". |
| 422 | * @is_delete: True for @a &= ~@b, false for @a |= @b. |
| 423 | * |
| 424 | * Returns true if @a is empty, false otherwise. |
| 425 | */ |
Tetsuo Handa | 7509315 | 2010-06-16 16:23:55 +0900 | [diff] [blame] | 426 | static bool tomoyo_merge_mkdev_acl(struct tomoyo_acl_info *a, |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 427 | struct tomoyo_acl_info *b, |
| 428 | const bool is_delete) |
Tetsuo Handa | 237ab45 | 2010-06-12 20:46:22 +0900 | [diff] [blame] | 429 | { |
Tetsuo Handa | 7509315 | 2010-06-16 16:23:55 +0900 | [diff] [blame] | 430 | u8 *const a_perm = &container_of(a, struct tomoyo_mkdev_acl, |
Tetsuo Handa | 237ab45 | 2010-06-12 20:46:22 +0900 | [diff] [blame] | 431 | head)->perm; |
| 432 | u8 perm = *a_perm; |
Tetsuo Handa | 7509315 | 2010-06-16 16:23:55 +0900 | [diff] [blame] | 433 | const u8 b_perm = container_of(b, struct tomoyo_mkdev_acl, head) |
Tetsuo Handa | 237ab45 | 2010-06-12 20:46:22 +0900 | [diff] [blame] | 434 | ->perm; |
| 435 | if (is_delete) |
| 436 | perm &= ~b_perm; |
| 437 | else |
| 438 | perm |= b_perm; |
| 439 | *a_perm = perm; |
| 440 | return !perm; |
| 441 | } |
| 442 | |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 443 | /** |
Tetsuo Handa | 7509315 | 2010-06-16 16:23:55 +0900 | [diff] [blame] | 444 | * tomoyo_update_mkdev_acl - Update "struct tomoyo_mkdev_acl" list. |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 445 | * |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 446 | * @perm: Permission. |
| 447 | * @param: Pointer to "struct tomoyo_acl_param". |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 448 | * |
| 449 | * Returns 0 on success, negative value otherwise. |
Tetsuo Handa | 237ab45 | 2010-06-12 20:46:22 +0900 | [diff] [blame] | 450 | * |
| 451 | * Caller holds tomoyo_read_lock(). |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 452 | */ |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 453 | static int tomoyo_update_mkdev_acl(const u8 perm, |
| 454 | struct tomoyo_acl_param *param) |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 455 | { |
Tetsuo Handa | 7509315 | 2010-06-16 16:23:55 +0900 | [diff] [blame] | 456 | struct tomoyo_mkdev_acl e = { |
| 457 | .head.type = TOMOYO_TYPE_MKDEV_ACL, |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 458 | .perm = perm |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 459 | }; |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 460 | int error; |
| 461 | if (!tomoyo_parse_name_union(param, &e.name) || |
| 462 | !tomoyo_parse_number_union(param, &e.mode) || |
| 463 | !tomoyo_parse_number_union(param, &e.major) || |
| 464 | !tomoyo_parse_number_union(param, &e.minor)) |
| 465 | error = -EINVAL; |
| 466 | else |
| 467 | error = tomoyo_update_domain(&e.head, sizeof(e), param, |
| 468 | tomoyo_same_mkdev_acl, |
| 469 | tomoyo_merge_mkdev_acl); |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 470 | tomoyo_put_name_union(&e.name); |
| 471 | tomoyo_put_number_union(&e.mode); |
| 472 | tomoyo_put_number_union(&e.major); |
| 473 | tomoyo_put_number_union(&e.minor); |
| 474 | return error; |
| 475 | } |
| 476 | |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 477 | /** |
| 478 | * tomoyo_same_path2_acl - Check for duplicated "struct tomoyo_path2_acl" entry. |
| 479 | * |
| 480 | * @a: Pointer to "struct tomoyo_acl_info". |
| 481 | * @b: Pointer to "struct tomoyo_acl_info". |
| 482 | * |
| 483 | * Returns true if @a == @b except permission bits, false otherwise. |
| 484 | */ |
Tetsuo Handa | 237ab45 | 2010-06-12 20:46:22 +0900 | [diff] [blame] | 485 | static bool tomoyo_same_path2_acl(const struct tomoyo_acl_info *a, |
| 486 | const struct tomoyo_acl_info *b) |
| 487 | { |
| 488 | const struct tomoyo_path2_acl *p1 = container_of(a, typeof(*p1), head); |
| 489 | const struct tomoyo_path2_acl *p2 = container_of(b, typeof(*p2), head); |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 490 | return tomoyo_same_name_union(&p1->name1, &p2->name1) && |
| 491 | tomoyo_same_name_union(&p1->name2, &p2->name2); |
Tetsuo Handa | 237ab45 | 2010-06-12 20:46:22 +0900 | [diff] [blame] | 492 | } |
| 493 | |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 494 | /** |
| 495 | * tomoyo_merge_path2_acl - Merge duplicated "struct tomoyo_path2_acl" entry. |
| 496 | * |
| 497 | * @a: Pointer to "struct tomoyo_acl_info". |
| 498 | * @b: Pointer to "struct tomoyo_acl_info". |
| 499 | * @is_delete: True for @a &= ~@b, false for @a |= @b. |
| 500 | * |
| 501 | * Returns true if @a is empty, false otherwise. |
| 502 | */ |
Tetsuo Handa | 237ab45 | 2010-06-12 20:46:22 +0900 | [diff] [blame] | 503 | static bool tomoyo_merge_path2_acl(struct tomoyo_acl_info *a, |
| 504 | struct tomoyo_acl_info *b, |
| 505 | const bool is_delete) |
| 506 | { |
| 507 | u8 * const a_perm = &container_of(a, struct tomoyo_path2_acl, head) |
| 508 | ->perm; |
| 509 | u8 perm = *a_perm; |
| 510 | const u8 b_perm = container_of(b, struct tomoyo_path2_acl, head)->perm; |
| 511 | if (is_delete) |
| 512 | perm &= ~b_perm; |
| 513 | else |
| 514 | perm |= b_perm; |
| 515 | *a_perm = perm; |
| 516 | return !perm; |
| 517 | } |
| 518 | |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 519 | /** |
Tetsuo Handa | 7ef6123 | 2010-02-16 08:03:30 +0900 | [diff] [blame] | 520 | * tomoyo_update_path2_acl - Update "struct tomoyo_path2_acl" list. |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 521 | * |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 522 | * @perm: Permission. |
| 523 | * @param: Pointer to "struct tomoyo_acl_param". |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 524 | * |
| 525 | * Returns 0 on success, negative value otherwise. |
Tetsuo Handa | fdb8ebb | 2009-12-08 09:34:43 +0900 | [diff] [blame] | 526 | * |
| 527 | * Caller holds tomoyo_read_lock(). |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 528 | */ |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 529 | static int tomoyo_update_path2_acl(const u8 perm, |
| 530 | struct tomoyo_acl_param *param) |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 531 | { |
Tetsuo Handa | 9e4b50e | 2010-05-06 12:40:02 +0900 | [diff] [blame] | 532 | struct tomoyo_path2_acl e = { |
| 533 | .head.type = TOMOYO_TYPE_PATH2_ACL, |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 534 | .perm = perm |
Tetsuo Handa | 9e4b50e | 2010-05-06 12:40:02 +0900 | [diff] [blame] | 535 | }; |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 536 | int error; |
| 537 | if (!tomoyo_parse_name_union(param, &e.name1) || |
| 538 | !tomoyo_parse_name_union(param, &e.name2)) |
| 539 | error = -EINVAL; |
| 540 | else |
| 541 | error = tomoyo_update_domain(&e.head, sizeof(e), param, |
| 542 | tomoyo_same_path2_acl, |
| 543 | tomoyo_merge_path2_acl); |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 544 | tomoyo_put_name_union(&e.name1); |
| 545 | tomoyo_put_name_union(&e.name2); |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 546 | return error; |
| 547 | } |
| 548 | |
| 549 | /** |
Tetsuo Handa | cb0abe6 | 2010-05-17 10:08:05 +0900 | [diff] [blame] | 550 | * tomoyo_path_permission - Check permission for single path operation. |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 551 | * |
Tetsuo Handa | cb0abe6 | 2010-05-17 10:08:05 +0900 | [diff] [blame] | 552 | * @r: Pointer to "struct tomoyo_request_info". |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 553 | * @operation: Type of operation. |
| 554 | * @filename: Filename to check. |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 555 | * |
| 556 | * Returns 0 on success, negative value otherwise. |
Tetsuo Handa | fdb8ebb | 2009-12-08 09:34:43 +0900 | [diff] [blame] | 557 | * |
| 558 | * Caller holds tomoyo_read_lock(). |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 559 | */ |
Tetsuo Handa | 05336de | 2010-06-16 16:20:24 +0900 | [diff] [blame] | 560 | int tomoyo_path_permission(struct tomoyo_request_info *r, u8 operation, |
| 561 | const struct tomoyo_path_info *filename) |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 562 | { |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 563 | int error; |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 564 | |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 565 | r->type = tomoyo_p2mac[operation]; |
Tetsuo Handa | bd03a3e | 2011-06-26 23:19:52 +0900 | [diff] [blame] | 566 | r->mode = tomoyo_get_mode(r->domain->ns, r->profile, r->type); |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 567 | if (r->mode == TOMOYO_CONFIG_DISABLED) |
| 568 | return 0; |
Tetsuo Handa | cf6e9a6 | 2010-06-16 16:21:36 +0900 | [diff] [blame] | 569 | r->param_type = TOMOYO_TYPE_PATH_ACL; |
| 570 | r->param.path.filename = filename; |
| 571 | r->param.path.operation = operation; |
Tetsuo Handa | 17fcfbd | 2010-05-17 10:11:36 +0900 | [diff] [blame] | 572 | do { |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 573 | tomoyo_check_acl(r, tomoyo_check_path_acl); |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 574 | error = tomoyo_audit_path_log(r); |
Tetsuo Handa | 05336de | 2010-06-16 16:20:24 +0900 | [diff] [blame] | 575 | /* |
| 576 | * Do not retry for execute request, for alias may have |
| 577 | * changed. |
| 578 | */ |
| 579 | } while (error == TOMOYO_RETRY_REQUEST && |
| 580 | operation != TOMOYO_TYPE_EXECUTE); |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 581 | return error; |
| 582 | } |
| 583 | |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 584 | /** |
| 585 | * tomoyo_same_path_number_acl - Check for duplicated "struct tomoyo_path_number_acl" entry. |
| 586 | * |
| 587 | * @a: Pointer to "struct tomoyo_acl_info". |
| 588 | * @b: Pointer to "struct tomoyo_acl_info". |
| 589 | * |
| 590 | * Returns true if @a == @b except permission bits, false otherwise. |
| 591 | */ |
Tetsuo Handa | 237ab45 | 2010-06-12 20:46:22 +0900 | [diff] [blame] | 592 | static bool tomoyo_same_path_number_acl(const struct tomoyo_acl_info *a, |
| 593 | const struct tomoyo_acl_info *b) |
| 594 | { |
| 595 | const struct tomoyo_path_number_acl *p1 = container_of(a, typeof(*p1), |
| 596 | head); |
| 597 | const struct tomoyo_path_number_acl *p2 = container_of(b, typeof(*p2), |
| 598 | head); |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 599 | return tomoyo_same_name_union(&p1->name, &p2->name) && |
| 600 | tomoyo_same_number_union(&p1->number, &p2->number); |
Tetsuo Handa | 237ab45 | 2010-06-12 20:46:22 +0900 | [diff] [blame] | 601 | } |
| 602 | |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 603 | /** |
| 604 | * tomoyo_merge_path_number_acl - Merge duplicated "struct tomoyo_path_number_acl" entry. |
| 605 | * |
| 606 | * @a: Pointer to "struct tomoyo_acl_info". |
| 607 | * @b: Pointer to "struct tomoyo_acl_info". |
| 608 | * @is_delete: True for @a &= ~@b, false for @a |= @b. |
| 609 | * |
| 610 | * Returns true if @a is empty, false otherwise. |
| 611 | */ |
Tetsuo Handa | 237ab45 | 2010-06-12 20:46:22 +0900 | [diff] [blame] | 612 | static bool tomoyo_merge_path_number_acl(struct tomoyo_acl_info *a, |
| 613 | struct tomoyo_acl_info *b, |
| 614 | const bool is_delete) |
| 615 | { |
| 616 | u8 * const a_perm = &container_of(a, struct tomoyo_path_number_acl, |
| 617 | head)->perm; |
| 618 | u8 perm = *a_perm; |
| 619 | const u8 b_perm = container_of(b, struct tomoyo_path_number_acl, head) |
| 620 | ->perm; |
| 621 | if (is_delete) |
| 622 | perm &= ~b_perm; |
| 623 | else |
| 624 | perm |= b_perm; |
| 625 | *a_perm = perm; |
| 626 | return !perm; |
| 627 | } |
| 628 | |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 629 | /** |
| 630 | * tomoyo_update_path_number_acl - Update ioctl/chmod/chown/chgrp ACL. |
| 631 | * |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 632 | * @perm: Permission. |
| 633 | * @param: Pointer to "struct tomoyo_acl_param". |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 634 | * |
| 635 | * Returns 0 on success, negative value otherwise. |
| 636 | */ |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 637 | static int tomoyo_update_path_number_acl(const u8 perm, |
| 638 | struct tomoyo_acl_param *param) |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 639 | { |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 640 | struct tomoyo_path_number_acl e = { |
| 641 | .head.type = TOMOYO_TYPE_PATH_NUMBER_ACL, |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 642 | .perm = perm |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 643 | }; |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 644 | int error; |
| 645 | if (!tomoyo_parse_name_union(param, &e.name) || |
| 646 | !tomoyo_parse_number_union(param, &e.number)) |
| 647 | error = -EINVAL; |
| 648 | else |
| 649 | error = tomoyo_update_domain(&e.head, sizeof(e), param, |
| 650 | tomoyo_same_path_number_acl, |
| 651 | tomoyo_merge_path_number_acl); |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 652 | tomoyo_put_name_union(&e.name); |
| 653 | tomoyo_put_number_union(&e.number); |
| 654 | return error; |
| 655 | } |
| 656 | |
| 657 | /** |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 658 | * tomoyo_path_number_perm - Check permission for "create", "mkdir", "mkfifo", "mksock", "ioctl", "chmod", "chown", "chgrp". |
| 659 | * |
| 660 | * @type: Type of operation. |
| 661 | * @path: Pointer to "struct path". |
| 662 | * @number: Number. |
| 663 | * |
| 664 | * Returns 0 on success, negative value otherwise. |
| 665 | */ |
| 666 | int tomoyo_path_number_perm(const u8 type, struct path *path, |
| 667 | unsigned long number) |
| 668 | { |
| 669 | struct tomoyo_request_info r; |
Tetsuo Handa | 97fb35e | 2011-07-08 13:25:53 +0900 | [diff] [blame^] | 670 | struct tomoyo_obj_info obj = { |
| 671 | .path1 = *path, |
| 672 | }; |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 673 | int error = -ENOMEM; |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 674 | struct tomoyo_path_info buf; |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 675 | int idx; |
| 676 | |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 677 | if (tomoyo_init_request_info(&r, NULL, tomoyo_pn2mac[type]) |
Tetsuo Handa | 5625f2e | 2011-06-26 23:20:23 +0900 | [diff] [blame] | 678 | == TOMOYO_CONFIG_DISABLED || !path->dentry) |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 679 | return 0; |
| 680 | idx = tomoyo_read_lock(); |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 681 | if (!tomoyo_get_realpath(&buf, path)) |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 682 | goto out; |
Tetsuo Handa | 97fb35e | 2011-07-08 13:25:53 +0900 | [diff] [blame^] | 683 | r.obj = &obj; |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 684 | if (type == TOMOYO_TYPE_MKDIR) |
| 685 | tomoyo_add_slash(&buf); |
Tetsuo Handa | cb917cf | 2010-06-16 16:28:21 +0900 | [diff] [blame] | 686 | r.param_type = TOMOYO_TYPE_PATH_NUMBER_ACL; |
| 687 | r.param.path_number.operation = type; |
| 688 | r.param.path_number.filename = &buf; |
| 689 | r.param.path_number.number = number; |
| 690 | do { |
| 691 | tomoyo_check_acl(&r, tomoyo_check_path_number_acl); |
| 692 | error = tomoyo_audit_path_number_log(&r); |
| 693 | } while (error == TOMOYO_RETRY_REQUEST); |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 694 | kfree(buf.name); |
Tetsuo Handa | cb917cf | 2010-06-16 16:28:21 +0900 | [diff] [blame] | 695 | out: |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 696 | tomoyo_read_unlock(idx); |
| 697 | if (r.mode != TOMOYO_CONFIG_ENFORCING) |
| 698 | error = 0; |
| 699 | return error; |
| 700 | } |
| 701 | |
| 702 | /** |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 703 | * tomoyo_check_open_permission - Check permission for "read" and "write". |
| 704 | * |
| 705 | * @domain: Pointer to "struct tomoyo_domain_info". |
| 706 | * @path: Pointer to "struct path". |
| 707 | * @flag: Flags for open(). |
| 708 | * |
| 709 | * Returns 0 on success, negative value otherwise. |
| 710 | */ |
| 711 | int tomoyo_check_open_permission(struct tomoyo_domain_info *domain, |
| 712 | struct path *path, const int flag) |
| 713 | { |
| 714 | const u8 acc_mode = ACC_MODE(flag); |
Tetsuo Handa | eae61f3 | 2011-03-02 16:54:24 +0900 | [diff] [blame] | 715 | int error = 0; |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 716 | struct tomoyo_path_info buf; |
Tetsuo Handa | cb0abe6 | 2010-05-17 10:08:05 +0900 | [diff] [blame] | 717 | struct tomoyo_request_info r; |
Tetsuo Handa | 97fb35e | 2011-07-08 13:25:53 +0900 | [diff] [blame^] | 718 | struct tomoyo_obj_info obj = { |
| 719 | .path1 = *path, |
| 720 | }; |
Tetsuo Handa | fdb8ebb | 2009-12-08 09:34:43 +0900 | [diff] [blame] | 721 | int idx; |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 722 | |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 723 | buf.name = NULL; |
| 724 | r.mode = TOMOYO_CONFIG_DISABLED; |
Tetsuo Handa | fdb8ebb | 2009-12-08 09:34:43 +0900 | [diff] [blame] | 725 | idx = tomoyo_read_lock(); |
Tetsuo Handa | 7c75964 | 2011-06-26 23:15:31 +0900 | [diff] [blame] | 726 | if (acc_mode && |
| 727 | tomoyo_init_request_info(&r, domain, TOMOYO_MAC_FILE_OPEN) |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 728 | != TOMOYO_CONFIG_DISABLED) { |
| 729 | if (!tomoyo_get_realpath(&buf, path)) { |
| 730 | error = -ENOMEM; |
| 731 | goto out; |
| 732 | } |
Tetsuo Handa | 97fb35e | 2011-07-08 13:25:53 +0900 | [diff] [blame^] | 733 | r.obj = &obj; |
Tetsuo Handa | 7c75964 | 2011-06-26 23:15:31 +0900 | [diff] [blame] | 734 | if (acc_mode & MAY_READ) |
| 735 | error = tomoyo_path_permission(&r, TOMOYO_TYPE_READ, |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 736 | &buf); |
Tetsuo Handa | 7c75964 | 2011-06-26 23:15:31 +0900 | [diff] [blame] | 737 | if (!error && (acc_mode & MAY_WRITE)) |
| 738 | error = tomoyo_path_permission(&r, (flag & O_APPEND) ? |
| 739 | TOMOYO_TYPE_APPEND : |
| 740 | TOMOYO_TYPE_WRITE, |
| 741 | &buf); |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 742 | } |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 743 | out: |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 744 | kfree(buf.name); |
Tetsuo Handa | fdb8ebb | 2009-12-08 09:34:43 +0900 | [diff] [blame] | 745 | tomoyo_read_unlock(idx); |
Tetsuo Handa | cb0abe6 | 2010-05-17 10:08:05 +0900 | [diff] [blame] | 746 | if (r.mode != TOMOYO_CONFIG_ENFORCING) |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 747 | error = 0; |
| 748 | return error; |
| 749 | } |
| 750 | |
| 751 | /** |
Tetsuo Handa | 7c75964 | 2011-06-26 23:15:31 +0900 | [diff] [blame] | 752 | * tomoyo_path_perm - Check permission for "unlink", "rmdir", "truncate", "symlink", "append", "chroot" and "unmount". |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 753 | * |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 754 | * @operation: Type of operation. |
| 755 | * @path: Pointer to "struct path". |
Tetsuo Handa | 97fb35e | 2011-07-08 13:25:53 +0900 | [diff] [blame^] | 756 | * @target: Symlink's target if @operation is TOMOYO_TYPE_SYMLINK, |
| 757 | * NULL otherwise. |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 758 | * |
| 759 | * Returns 0 on success, negative value otherwise. |
| 760 | */ |
Tetsuo Handa | 97fb35e | 2011-07-08 13:25:53 +0900 | [diff] [blame^] | 761 | int tomoyo_path_perm(const u8 operation, struct path *path, const char *target) |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 762 | { |
Tetsuo Handa | cb0abe6 | 2010-05-17 10:08:05 +0900 | [diff] [blame] | 763 | struct tomoyo_request_info r; |
Tetsuo Handa | 97fb35e | 2011-07-08 13:25:53 +0900 | [diff] [blame^] | 764 | struct tomoyo_obj_info obj = { |
| 765 | .path1 = *path, |
| 766 | }; |
Tetsuo Handa | 7c75964 | 2011-06-26 23:15:31 +0900 | [diff] [blame] | 767 | int error; |
| 768 | struct tomoyo_path_info buf; |
| 769 | bool is_enforce; |
Tetsuo Handa | 97fb35e | 2011-07-08 13:25:53 +0900 | [diff] [blame^] | 770 | struct tomoyo_path_info symlink_target; |
Tetsuo Handa | fdb8ebb | 2009-12-08 09:34:43 +0900 | [diff] [blame] | 771 | int idx; |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 772 | |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 773 | if (tomoyo_init_request_info(&r, NULL, tomoyo_p2mac[operation]) |
| 774 | == TOMOYO_CONFIG_DISABLED) |
| 775 | return 0; |
Tetsuo Handa | 7c75964 | 2011-06-26 23:15:31 +0900 | [diff] [blame] | 776 | is_enforce = (r.mode == TOMOYO_CONFIG_ENFORCING); |
| 777 | error = -ENOMEM; |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 778 | buf.name = NULL; |
Tetsuo Handa | fdb8ebb | 2009-12-08 09:34:43 +0900 | [diff] [blame] | 779 | idx = tomoyo_read_lock(); |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 780 | if (!tomoyo_get_realpath(&buf, path)) |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 781 | goto out; |
Tetsuo Handa | 97fb35e | 2011-07-08 13:25:53 +0900 | [diff] [blame^] | 782 | r.obj = &obj; |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 783 | switch (operation) { |
Tetsuo Handa | 7ef6123 | 2010-02-16 08:03:30 +0900 | [diff] [blame] | 784 | case TOMOYO_TYPE_RMDIR: |
| 785 | case TOMOYO_TYPE_CHROOT: |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 786 | tomoyo_add_slash(&buf); |
| 787 | break; |
Tetsuo Handa | 97fb35e | 2011-07-08 13:25:53 +0900 | [diff] [blame^] | 788 | case TOMOYO_TYPE_SYMLINK: |
| 789 | symlink_target.name = tomoyo_encode(target); |
| 790 | if (!symlink_target.name) |
| 791 | goto out; |
| 792 | tomoyo_fill_path_info(&symlink_target); |
| 793 | obj.symlink_target = &symlink_target; |
| 794 | break; |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 795 | } |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 796 | error = tomoyo_path_permission(&r, operation, &buf); |
Tetsuo Handa | 97fb35e | 2011-07-08 13:25:53 +0900 | [diff] [blame^] | 797 | if (operation == TOMOYO_TYPE_SYMLINK) |
| 798 | kfree(symlink_target.name); |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 799 | out: |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 800 | kfree(buf.name); |
Tetsuo Handa | fdb8ebb | 2009-12-08 09:34:43 +0900 | [diff] [blame] | 801 | tomoyo_read_unlock(idx); |
Tetsuo Handa | 7c75964 | 2011-06-26 23:15:31 +0900 | [diff] [blame] | 802 | if (!is_enforce) |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 803 | error = 0; |
| 804 | return error; |
| 805 | } |
| 806 | |
| 807 | /** |
Tetsuo Handa | 7509315 | 2010-06-16 16:23:55 +0900 | [diff] [blame] | 808 | * tomoyo_mkdev_perm - Check permission for "mkblock" and "mkchar". |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 809 | * |
| 810 | * @operation: Type of operation. (TOMOYO_TYPE_MKCHAR or TOMOYO_TYPE_MKBLOCK) |
| 811 | * @path: Pointer to "struct path". |
| 812 | * @mode: Create mode. |
| 813 | * @dev: Device number. |
| 814 | * |
| 815 | * Returns 0 on success, negative value otherwise. |
| 816 | */ |
Tetsuo Handa | 7509315 | 2010-06-16 16:23:55 +0900 | [diff] [blame] | 817 | int tomoyo_mkdev_perm(const u8 operation, struct path *path, |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 818 | const unsigned int mode, unsigned int dev) |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 819 | { |
| 820 | struct tomoyo_request_info r; |
Tetsuo Handa | 97fb35e | 2011-07-08 13:25:53 +0900 | [diff] [blame^] | 821 | struct tomoyo_obj_info obj = { |
| 822 | .path1 = *path, |
| 823 | }; |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 824 | int error = -ENOMEM; |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 825 | struct tomoyo_path_info buf; |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 826 | int idx; |
| 827 | |
Tetsuo Handa | 5625f2e | 2011-06-26 23:20:23 +0900 | [diff] [blame] | 828 | if (tomoyo_init_request_info(&r, NULL, tomoyo_pnnn2mac[operation]) |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 829 | == TOMOYO_CONFIG_DISABLED) |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 830 | return 0; |
| 831 | idx = tomoyo_read_lock(); |
| 832 | error = -ENOMEM; |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 833 | if (tomoyo_get_realpath(&buf, path)) { |
Tetsuo Handa | 97fb35e | 2011-07-08 13:25:53 +0900 | [diff] [blame^] | 834 | r.obj = &obj; |
Tetsuo Handa | cf6e9a6 | 2010-06-16 16:21:36 +0900 | [diff] [blame] | 835 | dev = new_decode_dev(dev); |
Tetsuo Handa | 7509315 | 2010-06-16 16:23:55 +0900 | [diff] [blame] | 836 | r.param_type = TOMOYO_TYPE_MKDEV_ACL; |
Tetsuo Handa | cf6e9a6 | 2010-06-16 16:21:36 +0900 | [diff] [blame] | 837 | r.param.mkdev.filename = &buf; |
| 838 | r.param.mkdev.operation = operation; |
| 839 | r.param.mkdev.mode = mode; |
| 840 | r.param.mkdev.major = MAJOR(dev); |
| 841 | r.param.mkdev.minor = MINOR(dev); |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 842 | tomoyo_check_acl(&r, tomoyo_check_mkdev_acl); |
| 843 | error = tomoyo_audit_mkdev_log(&r); |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 844 | kfree(buf.name); |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 845 | } |
| 846 | tomoyo_read_unlock(idx); |
| 847 | if (r.mode != TOMOYO_CONFIG_ENFORCING) |
| 848 | error = 0; |
| 849 | return error; |
| 850 | } |
| 851 | |
| 852 | /** |
Tetsuo Handa | 7ef6123 | 2010-02-16 08:03:30 +0900 | [diff] [blame] | 853 | * tomoyo_path2_perm - Check permission for "rename", "link" and "pivot_root". |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 854 | * |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 855 | * @operation: Type of operation. |
| 856 | * @path1: Pointer to "struct path". |
| 857 | * @path2: Pointer to "struct path". |
| 858 | * |
| 859 | * Returns 0 on success, negative value otherwise. |
| 860 | */ |
Tetsuo Handa | 97d6931 | 2010-02-16 09:46:15 +0900 | [diff] [blame] | 861 | int tomoyo_path2_perm(const u8 operation, struct path *path1, |
Tetsuo Handa | 7ef6123 | 2010-02-16 08:03:30 +0900 | [diff] [blame] | 862 | struct path *path2) |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 863 | { |
| 864 | int error = -ENOMEM; |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 865 | struct tomoyo_path_info buf1; |
| 866 | struct tomoyo_path_info buf2; |
Tetsuo Handa | cb0abe6 | 2010-05-17 10:08:05 +0900 | [diff] [blame] | 867 | struct tomoyo_request_info r; |
Tetsuo Handa | 97fb35e | 2011-07-08 13:25:53 +0900 | [diff] [blame^] | 868 | struct tomoyo_obj_info obj = { |
| 869 | .path1 = *path1, |
| 870 | .path2 = *path2, |
| 871 | }; |
Tetsuo Handa | fdb8ebb | 2009-12-08 09:34:43 +0900 | [diff] [blame] | 872 | int idx; |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 873 | |
Tetsuo Handa | 5625f2e | 2011-06-26 23:20:23 +0900 | [diff] [blame] | 874 | if (tomoyo_init_request_info(&r, NULL, tomoyo_pp2mac[operation]) |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 875 | == TOMOYO_CONFIG_DISABLED) |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 876 | return 0; |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 877 | buf1.name = NULL; |
| 878 | buf2.name = NULL; |
Tetsuo Handa | fdb8ebb | 2009-12-08 09:34:43 +0900 | [diff] [blame] | 879 | idx = tomoyo_read_lock(); |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 880 | if (!tomoyo_get_realpath(&buf1, path1) || |
| 881 | !tomoyo_get_realpath(&buf2, path2)) |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 882 | goto out; |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 883 | switch (operation) { |
| 884 | struct dentry *dentry; |
| 885 | case TOMOYO_TYPE_RENAME: |
| 886 | case TOMOYO_TYPE_LINK: |
| 887 | dentry = path1->dentry; |
| 888 | if (!dentry->d_inode || !S_ISDIR(dentry->d_inode->i_mode)) |
| 889 | break; |
| 890 | /* fall through */ |
| 891 | case TOMOYO_TYPE_PIVOT_ROOT: |
| 892 | tomoyo_add_slash(&buf1); |
| 893 | tomoyo_add_slash(&buf2); |
| 894 | break; |
| 895 | } |
Tetsuo Handa | 97fb35e | 2011-07-08 13:25:53 +0900 | [diff] [blame^] | 896 | r.obj = &obj; |
Tetsuo Handa | cf6e9a6 | 2010-06-16 16:21:36 +0900 | [diff] [blame] | 897 | r.param_type = TOMOYO_TYPE_PATH2_ACL; |
| 898 | r.param.path2.operation = operation; |
| 899 | r.param.path2.filename1 = &buf1; |
| 900 | r.param.path2.filename2 = &buf2; |
Tetsuo Handa | 17fcfbd | 2010-05-17 10:11:36 +0900 | [diff] [blame] | 901 | do { |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 902 | tomoyo_check_acl(&r, tomoyo_check_path2_acl); |
| 903 | error = tomoyo_audit_path2_log(&r); |
| 904 | } while (error == TOMOYO_RETRY_REQUEST); |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 905 | out: |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 906 | kfree(buf1.name); |
| 907 | kfree(buf2.name); |
Tetsuo Handa | fdb8ebb | 2009-12-08 09:34:43 +0900 | [diff] [blame] | 908 | tomoyo_read_unlock(idx); |
Tetsuo Handa | cb0abe6 | 2010-05-17 10:08:05 +0900 | [diff] [blame] | 909 | if (r.mode != TOMOYO_CONFIG_ENFORCING) |
Kentaro Takeda | b69a54e | 2009-02-05 17:18:14 +0900 | [diff] [blame] | 910 | error = 0; |
| 911 | return error; |
| 912 | } |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 913 | |
| 914 | /** |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 915 | * tomoyo_same_mount_acl - Check for duplicated "struct tomoyo_mount_acl" entry. |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 916 | * |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 917 | * @a: Pointer to "struct tomoyo_acl_info". |
| 918 | * @b: Pointer to "struct tomoyo_acl_info". |
| 919 | * |
| 920 | * Returns true if @a == @b, false otherwise. |
| 921 | */ |
| 922 | static bool tomoyo_same_mount_acl(const struct tomoyo_acl_info *a, |
| 923 | const struct tomoyo_acl_info *b) |
| 924 | { |
| 925 | const struct tomoyo_mount_acl *p1 = container_of(a, typeof(*p1), head); |
| 926 | const struct tomoyo_mount_acl *p2 = container_of(b, typeof(*p2), head); |
| 927 | return tomoyo_same_name_union(&p1->dev_name, &p2->dev_name) && |
| 928 | tomoyo_same_name_union(&p1->dir_name, &p2->dir_name) && |
| 929 | tomoyo_same_name_union(&p1->fs_type, &p2->fs_type) && |
| 930 | tomoyo_same_number_union(&p1->flags, &p2->flags); |
| 931 | } |
| 932 | |
| 933 | /** |
| 934 | * tomoyo_update_mount_acl - Write "struct tomoyo_mount_acl" list. |
| 935 | * |
| 936 | * @param: Pointer to "struct tomoyo_acl_param". |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 937 | * |
| 938 | * Returns 0 on success, negative value otherwise. |
| 939 | * |
| 940 | * Caller holds tomoyo_read_lock(). |
| 941 | */ |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 942 | static int tomoyo_update_mount_acl(struct tomoyo_acl_param *param) |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 943 | { |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 944 | struct tomoyo_mount_acl e = { .head.type = TOMOYO_TYPE_MOUNT_ACL }; |
| 945 | int error; |
| 946 | if (!tomoyo_parse_name_union(param, &e.dev_name) || |
| 947 | !tomoyo_parse_name_union(param, &e.dir_name) || |
| 948 | !tomoyo_parse_name_union(param, &e.fs_type) || |
| 949 | !tomoyo_parse_number_union(param, &e.flags)) |
| 950 | error = -EINVAL; |
| 951 | else |
| 952 | error = tomoyo_update_domain(&e.head, sizeof(e), param, |
| 953 | tomoyo_same_mount_acl, NULL); |
| 954 | tomoyo_put_name_union(&e.dev_name); |
| 955 | tomoyo_put_name_union(&e.dir_name); |
| 956 | tomoyo_put_name_union(&e.fs_type); |
| 957 | tomoyo_put_number_union(&e.flags); |
| 958 | return error; |
| 959 | } |
| 960 | |
| 961 | /** |
| 962 | * tomoyo_write_file - Update file related list. |
| 963 | * |
| 964 | * @param: Pointer to "struct tomoyo_acl_param". |
| 965 | * |
| 966 | * Returns 0 on success, negative value otherwise. |
| 967 | * |
| 968 | * Caller holds tomoyo_read_lock(). |
| 969 | */ |
| 970 | int tomoyo_write_file(struct tomoyo_acl_param *param) |
| 971 | { |
| 972 | u16 perm = 0; |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 973 | u8 type; |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 974 | const char *operation = tomoyo_read_token(param); |
| 975 | for (type = 0; type < TOMOYO_MAX_PATH_OPERATION; type++) |
| 976 | if (tomoyo_permstr(operation, tomoyo_path_keyword[type])) |
| 977 | perm |= 1 << type; |
| 978 | if (perm) |
| 979 | return tomoyo_update_path_acl(perm, param); |
| 980 | for (type = 0; type < TOMOYO_MAX_PATH2_OPERATION; type++) |
Tetsuo Handa | 2c47ab9 | 2011-06-26 23:21:19 +0900 | [diff] [blame] | 981 | if (tomoyo_permstr(operation, |
| 982 | tomoyo_mac_keywords[tomoyo_pp2mac[type]])) |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 983 | perm |= 1 << type; |
| 984 | if (perm) |
| 985 | return tomoyo_update_path2_acl(perm, param); |
| 986 | for (type = 0; type < TOMOYO_MAX_PATH_NUMBER_OPERATION; type++) |
| 987 | if (tomoyo_permstr(operation, |
Tetsuo Handa | 2c47ab9 | 2011-06-26 23:21:19 +0900 | [diff] [blame] | 988 | tomoyo_mac_keywords[tomoyo_pn2mac[type]])) |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 989 | perm |= 1 << type; |
| 990 | if (perm) |
| 991 | return tomoyo_update_path_number_acl(perm, param); |
| 992 | for (type = 0; type < TOMOYO_MAX_MKDEV_OPERATION; type++) |
Tetsuo Handa | 2c47ab9 | 2011-06-26 23:21:19 +0900 | [diff] [blame] | 993 | if (tomoyo_permstr(operation, |
| 994 | tomoyo_mac_keywords[tomoyo_pnnn2mac[type]])) |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 995 | perm |= 1 << type; |
| 996 | if (perm) |
| 997 | return tomoyo_update_mkdev_acl(perm, param); |
Tetsuo Handa | 2c47ab9 | 2011-06-26 23:21:19 +0900 | [diff] [blame] | 998 | if (tomoyo_permstr(operation, |
| 999 | tomoyo_mac_keywords[TOMOYO_MAC_FILE_MOUNT])) |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 1000 | return tomoyo_update_mount_acl(param); |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 1001 | return -EINVAL; |
| 1002 | } |