John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 1 | /* |
| 2 | * AppArmor security module |
| 3 | * |
| 4 | * This file contains AppArmor mediation of files |
| 5 | * |
| 6 | * Copyright (C) 1998-2008 Novell/SUSE |
| 7 | * Copyright 2009-2010 Canonical Ltd. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License as |
| 11 | * published by the Free Software Foundation, version 2 of the |
| 12 | * License. |
| 13 | */ |
| 14 | |
John Johansen | 192ca6b | 2017-06-09 11:58:42 -0700 | [diff] [blame] | 15 | #include <linux/tty.h> |
| 16 | #include <linux/fdtable.h> |
| 17 | #include <linux/file.h> |
| 18 | |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 19 | #include "include/apparmor.h" |
| 20 | #include "include/audit.h" |
John Johansen | 192ca6b | 2017-06-09 11:58:42 -0700 | [diff] [blame] | 21 | #include "include/context.h" |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 22 | #include "include/file.h" |
| 23 | #include "include/match.h" |
| 24 | #include "include/path.h" |
| 25 | #include "include/policy.h" |
John Johansen | 190a951 | 2017-06-09 14:59:51 -0700 | [diff] [blame^] | 26 | #include "include/label.h" |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 27 | |
John Johansen | e53cfe6 | 2017-05-26 15:07:22 -0700 | [diff] [blame] | 28 | static u32 map_mask_to_chr_mask(u32 mask) |
| 29 | { |
| 30 | u32 m = mask & PERMS_CHRS_MASK; |
| 31 | |
| 32 | if (mask & AA_MAY_GETATTR) |
| 33 | m |= MAY_READ; |
| 34 | if (mask & (AA_MAY_SETATTR | AA_MAY_CHMOD | AA_MAY_CHOWN)) |
| 35 | m |= MAY_WRITE; |
| 36 | |
| 37 | return m; |
| 38 | } |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 39 | |
| 40 | /** |
| 41 | * audit_file_mask - convert mask to permission string |
| 42 | * @buffer: buffer to write string to (NOT NULL) |
| 43 | * @mask: permission mask to convert |
| 44 | */ |
| 45 | static void audit_file_mask(struct audit_buffer *ab, u32 mask) |
| 46 | { |
| 47 | char str[10]; |
| 48 | |
John Johansen | e53cfe6 | 2017-05-26 15:07:22 -0700 | [diff] [blame] | 49 | aa_perm_mask_to_str(str, aa_file_perm_chrs, map_mask_to_chr_mask(mask)); |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 50 | audit_log_string(ab, str); |
| 51 | } |
| 52 | |
| 53 | /** |
| 54 | * file_audit_cb - call back for file specific audit fields |
| 55 | * @ab: audit_buffer (NOT NULL) |
| 56 | * @va: audit struct to audit values of (NOT NULL) |
| 57 | */ |
| 58 | static void file_audit_cb(struct audit_buffer *ab, void *va) |
| 59 | { |
| 60 | struct common_audit_data *sa = va; |
Eric W. Biederman | 2db8145 | 2012-02-07 16:33:13 -0800 | [diff] [blame] | 61 | kuid_t fsuid = current_fsuid(); |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 62 | |
John Johansen | aa9aeea | 2017-05-29 12:16:04 -0700 | [diff] [blame] | 63 | if (aad(sa)->request & AA_AUDIT_FILE_MASK) { |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 64 | audit_log_format(ab, " requested_mask="); |
John Johansen | aa9aeea | 2017-05-29 12:16:04 -0700 | [diff] [blame] | 65 | audit_file_mask(ab, aad(sa)->request); |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 66 | } |
John Johansen | aa9aeea | 2017-05-29 12:16:04 -0700 | [diff] [blame] | 67 | if (aad(sa)->denied & AA_AUDIT_FILE_MASK) { |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 68 | audit_log_format(ab, " denied_mask="); |
John Johansen | aa9aeea | 2017-05-29 12:16:04 -0700 | [diff] [blame] | 69 | audit_file_mask(ab, aad(sa)->denied); |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 70 | } |
John Johansen | aa9aeea | 2017-05-29 12:16:04 -0700 | [diff] [blame] | 71 | if (aad(sa)->request & AA_AUDIT_FILE_MASK) { |
Eric W. Biederman | 2db8145 | 2012-02-07 16:33:13 -0800 | [diff] [blame] | 72 | audit_log_format(ab, " fsuid=%d", |
| 73 | from_kuid(&init_user_ns, fsuid)); |
| 74 | audit_log_format(ab, " ouid=%d", |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 75 | from_kuid(&init_user_ns, aad(sa)->fs.ouid)); |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 76 | } |
| 77 | |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 78 | if (aad(sa)->fs.target) { |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 79 | audit_log_format(ab, " target="); |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 80 | audit_log_untrustedstring(ab, aad(sa)->fs.target); |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 81 | } |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * aa_audit_file - handle the auditing of file operations |
| 86 | * @profile: the profile being enforced (NOT NULL) |
| 87 | * @perms: the permissions computed for the request (NOT NULL) |
| 88 | * @gfp: allocation flags |
| 89 | * @op: operation being mediated |
| 90 | * @request: permissions requested |
| 91 | * @name: name of object being mediated (MAYBE NULL) |
| 92 | * @target: name of target (MAYBE NULL) |
| 93 | * @ouid: object uid |
| 94 | * @info: extra information message (MAYBE NULL) |
| 95 | * @error: 0 if operation allowed else failure error code |
| 96 | * |
| 97 | * Returns: %0 or error on failure |
| 98 | */ |
John Johansen | 2d679f3 | 2017-05-29 12:19:39 -0700 | [diff] [blame] | 99 | int aa_audit_file(struct aa_profile *profile, struct aa_perms *perms, |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 100 | const char *op, u32 request, const char *name, |
Eric W. Biederman | 2db8145 | 2012-02-07 16:33:13 -0800 | [diff] [blame] | 101 | const char *target, kuid_t ouid, const char *info, int error) |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 102 | { |
| 103 | int type = AUDIT_APPARMOR_AUTO; |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 104 | DEFINE_AUDIT_DATA(sa, LSM_AUDIT_DATA_TASK, op); |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 105 | |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 106 | sa.u.tsk = NULL; |
John Johansen | aa9aeea | 2017-05-29 12:16:04 -0700 | [diff] [blame] | 107 | aad(&sa)->request = request; |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 108 | aad(&sa)->name = name; |
| 109 | aad(&sa)->fs.target = target; |
| 110 | aad(&sa)->fs.ouid = ouid; |
| 111 | aad(&sa)->info = info; |
| 112 | aad(&sa)->error = error; |
| 113 | sa.u.tsk = NULL; |
| 114 | |
| 115 | if (likely(!aad(&sa)->error)) { |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 116 | u32 mask = perms->audit; |
| 117 | |
| 118 | if (unlikely(AUDIT_MODE(profile) == AUDIT_ALL)) |
| 119 | mask = 0xffff; |
| 120 | |
| 121 | /* mask off perms that are not being force audited */ |
John Johansen | aa9aeea | 2017-05-29 12:16:04 -0700 | [diff] [blame] | 122 | aad(&sa)->request &= mask; |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 123 | |
John Johansen | aa9aeea | 2017-05-29 12:16:04 -0700 | [diff] [blame] | 124 | if (likely(!aad(&sa)->request)) |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 125 | return 0; |
| 126 | type = AUDIT_APPARMOR_AUDIT; |
| 127 | } else { |
| 128 | /* only report permissions that were denied */ |
John Johansen | aa9aeea | 2017-05-29 12:16:04 -0700 | [diff] [blame] | 129 | aad(&sa)->request = aad(&sa)->request & ~perms->allow; |
| 130 | AA_BUG(!aad(&sa)->request); |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 131 | |
John Johansen | aa9aeea | 2017-05-29 12:16:04 -0700 | [diff] [blame] | 132 | if (aad(&sa)->request & perms->kill) |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 133 | type = AUDIT_APPARMOR_KILL; |
| 134 | |
| 135 | /* quiet known rejects, assumes quiet and kill do not overlap */ |
John Johansen | aa9aeea | 2017-05-29 12:16:04 -0700 | [diff] [blame] | 136 | if ((aad(&sa)->request & perms->quiet) && |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 137 | AUDIT_MODE(profile) != AUDIT_NOQUIET && |
| 138 | AUDIT_MODE(profile) != AUDIT_ALL) |
John Johansen | aa9aeea | 2017-05-29 12:16:04 -0700 | [diff] [blame] | 139 | aad(&sa)->request &= ~perms->quiet; |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 140 | |
John Johansen | aa9aeea | 2017-05-29 12:16:04 -0700 | [diff] [blame] | 141 | if (!aad(&sa)->request) |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 142 | return COMPLAIN_MODE(profile) ? 0 : aad(&sa)->error; |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 143 | } |
| 144 | |
John Johansen | aa9aeea | 2017-05-29 12:16:04 -0700 | [diff] [blame] | 145 | aad(&sa)->denied = aad(&sa)->request & ~perms->allow; |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 146 | return aa_audit(type, profile, &sa, file_audit_cb); |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 147 | } |
| 148 | |
| 149 | /** |
| 150 | * map_old_perms - map old file perms layout to the new layout |
| 151 | * @old: permission set in old mapping |
| 152 | * |
| 153 | * Returns: new permission mapping |
| 154 | */ |
| 155 | static u32 map_old_perms(u32 old) |
| 156 | { |
| 157 | u32 new = old & 0xf; |
| 158 | if (old & MAY_READ) |
John Johansen | e53cfe6 | 2017-05-26 15:07:22 -0700 | [diff] [blame] | 159 | new |= AA_MAY_GETATTR | AA_MAY_OPEN; |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 160 | if (old & MAY_WRITE) |
John Johansen | e53cfe6 | 2017-05-26 15:07:22 -0700 | [diff] [blame] | 161 | new |= AA_MAY_SETATTR | AA_MAY_CREATE | AA_MAY_DELETE | |
| 162 | AA_MAY_CHMOD | AA_MAY_CHOWN | AA_MAY_OPEN; |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 163 | if (old & 0x10) |
| 164 | new |= AA_MAY_LINK; |
| 165 | /* the old mapping lock and link_subset flags where overlaid |
| 166 | * and use was determined by part of a pair that they were in |
| 167 | */ |
| 168 | if (old & 0x20) |
| 169 | new |= AA_MAY_LOCK | AA_LINK_SUBSET; |
| 170 | if (old & 0x40) /* AA_EXEC_MMAP */ |
| 171 | new |= AA_EXEC_MMAP; |
| 172 | |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 173 | return new; |
| 174 | } |
| 175 | |
| 176 | /** |
John Johansen | 2d679f3 | 2017-05-29 12:19:39 -0700 | [diff] [blame] | 177 | * aa_compute_fperms - convert dfa compressed perms to internal perms |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 178 | * @dfa: dfa to compute perms for (NOT NULL) |
| 179 | * @state: state in dfa |
| 180 | * @cond: conditions to consider (NOT NULL) |
| 181 | * |
| 182 | * TODO: convert from dfa + state to permission entry, do computation conversion |
| 183 | * at load time. |
| 184 | * |
| 185 | * Returns: computed permission set |
| 186 | */ |
John Johansen | 2d679f3 | 2017-05-29 12:19:39 -0700 | [diff] [blame] | 187 | struct aa_perms aa_compute_fperms(struct aa_dfa *dfa, unsigned int state, |
| 188 | struct path_cond *cond) |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 189 | { |
John Johansen | 2d679f3 | 2017-05-29 12:19:39 -0700 | [diff] [blame] | 190 | struct aa_perms perms; |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 191 | |
| 192 | /* FIXME: change over to new dfa format |
| 193 | * currently file perms are encoded in the dfa, new format |
| 194 | * splits the permissions from the dfa. This mapping can be |
| 195 | * done at profile load |
| 196 | */ |
John Johansen | 2d679f3 | 2017-05-29 12:19:39 -0700 | [diff] [blame] | 197 | perms.deny = 0; |
| 198 | perms.kill = perms.stop = 0; |
| 199 | perms.complain = perms.cond = 0; |
| 200 | perms.hide = 0; |
| 201 | perms.prompt = 0; |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 202 | |
Eric W. Biederman | 2db8145 | 2012-02-07 16:33:13 -0800 | [diff] [blame] | 203 | if (uid_eq(current_fsuid(), cond->uid)) { |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 204 | perms.allow = map_old_perms(dfa_user_allow(dfa, state)); |
| 205 | perms.audit = map_old_perms(dfa_user_audit(dfa, state)); |
| 206 | perms.quiet = map_old_perms(dfa_user_quiet(dfa, state)); |
| 207 | perms.xindex = dfa_user_xindex(dfa, state); |
| 208 | } else { |
| 209 | perms.allow = map_old_perms(dfa_other_allow(dfa, state)); |
| 210 | perms.audit = map_old_perms(dfa_other_audit(dfa, state)); |
| 211 | perms.quiet = map_old_perms(dfa_other_quiet(dfa, state)); |
| 212 | perms.xindex = dfa_other_xindex(dfa, state); |
| 213 | } |
John Johansen | e53cfe6 | 2017-05-26 15:07:22 -0700 | [diff] [blame] | 214 | perms.allow |= AA_MAY_GETATTR; |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 215 | |
| 216 | /* change_profile wasn't determined by ownership in old mapping */ |
| 217 | if (ACCEPT_TABLE(dfa)[state] & 0x80000000) |
| 218 | perms.allow |= AA_MAY_CHANGE_PROFILE; |
John Johansen | 0421ea9 | 2012-03-27 04:14:33 -0700 | [diff] [blame] | 219 | if (ACCEPT_TABLE(dfa)[state] & 0x40000000) |
| 220 | perms.allow |= AA_MAY_ONEXEC; |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 221 | |
| 222 | return perms; |
| 223 | } |
| 224 | |
| 225 | /** |
| 226 | * aa_str_perms - find permission that match @name |
| 227 | * @dfa: to match against (MAYBE NULL) |
| 228 | * @state: state to start matching in |
| 229 | * @name: string to match against dfa (NOT NULL) |
| 230 | * @cond: conditions to consider for permission set computation (NOT NULL) |
| 231 | * @perms: Returns - the permissions found when matching @name |
| 232 | * |
| 233 | * Returns: the final state in @dfa when beginning @start and walking @name |
| 234 | */ |
| 235 | unsigned int aa_str_perms(struct aa_dfa *dfa, unsigned int start, |
| 236 | const char *name, struct path_cond *cond, |
John Johansen | 2d679f3 | 2017-05-29 12:19:39 -0700 | [diff] [blame] | 237 | struct aa_perms *perms) |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 238 | { |
| 239 | unsigned int state; |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 240 | state = aa_dfa_match(dfa, start, name); |
John Johansen | 2d679f3 | 2017-05-29 12:19:39 -0700 | [diff] [blame] | 241 | *perms = aa_compute_fperms(dfa, state, cond); |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 242 | |
| 243 | return state; |
| 244 | } |
| 245 | |
| 246 | /** |
| 247 | * is_deleted - test if a file has been completely unlinked |
| 248 | * @dentry: dentry of file to test for deletion (NOT NULL) |
| 249 | * |
| 250 | * Returns: %1 if deleted else %0 |
| 251 | */ |
| 252 | static inline bool is_deleted(struct dentry *dentry) |
| 253 | { |
David Howells | c6f493d | 2015-03-17 22:26:22 +0000 | [diff] [blame] | 254 | if (d_unlinked(dentry) && d_backing_inode(dentry)->i_nlink == 0) |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 255 | return 1; |
| 256 | return 0; |
| 257 | } |
| 258 | |
| 259 | /** |
| 260 | * aa_path_perm - do permissions check & audit for @path |
| 261 | * @op: operation being checked |
| 262 | * @profile: profile being enforced (NOT NULL) |
| 263 | * @path: path to check permissions of (NOT NULL) |
| 264 | * @flags: any additional path flags beyond what the profile specifies |
| 265 | * @request: requested permissions |
| 266 | * @cond: conditional info for this request (NOT NULL) |
| 267 | * |
| 268 | * Returns: %0 else error if access denied or other error |
| 269 | */ |
John Johansen | 47f6e5c | 2017-01-16 00:43:01 -0800 | [diff] [blame] | 270 | int aa_path_perm(const char *op, struct aa_profile *profile, |
| 271 | const struct path *path, int flags, u32 request, |
| 272 | struct path_cond *cond) |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 273 | { |
| 274 | char *buffer = NULL; |
John Johansen | 2d679f3 | 2017-05-29 12:19:39 -0700 | [diff] [blame] | 275 | struct aa_perms perms = {}; |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 276 | const char *name, *info = NULL; |
| 277 | int error; |
| 278 | |
| 279 | flags |= profile->path_flags | (S_ISDIR(cond->mode) ? PATH_IS_DIR : 0); |
John Johansen | 4227c33 | 2017-05-23 03:25:14 -0700 | [diff] [blame] | 280 | get_buffers(buffer); |
| 281 | error = aa_path_name(path, flags, buffer, &name, &info, |
John Johansen | 72c8a76 | 2017-05-22 03:06:52 -0700 | [diff] [blame] | 282 | profile->disconnected); |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 283 | if (error) { |
| 284 | if (error == -ENOENT && is_deleted(path->dentry)) { |
| 285 | /* Access to open files that are deleted are |
| 286 | * give a pass (implicit delegation) |
| 287 | */ |
| 288 | error = 0; |
John Johansen | 57fa1e1 | 2012-02-16 06:20:33 -0800 | [diff] [blame] | 289 | info = NULL; |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 290 | perms.allow = request; |
John Johansen | 57fa1e1 | 2012-02-16 06:20:33 -0800 | [diff] [blame] | 291 | } |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 292 | } else { |
| 293 | aa_str_perms(profile->file.dfa, profile->file.start, name, cond, |
| 294 | &perms); |
| 295 | if (request & ~perms.allow) |
| 296 | error = -EACCES; |
| 297 | } |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 298 | error = aa_audit_file(profile, &perms, op, request, name, NULL, |
| 299 | cond->uid, info, error); |
John Johansen | 4227c33 | 2017-05-23 03:25:14 -0700 | [diff] [blame] | 300 | put_buffers(buffer); |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 301 | |
| 302 | return error; |
| 303 | } |
| 304 | |
| 305 | /** |
| 306 | * xindex_is_subset - helper for aa_path_link |
| 307 | * @link: link permission set |
| 308 | * @target: target permission set |
| 309 | * |
| 310 | * test target x permissions are equal OR a subset of link x permissions |
| 311 | * this is done as part of the subset test, where a hardlink must have |
| 312 | * a subset of permissions that the target has. |
| 313 | * |
| 314 | * Returns: %1 if subset else %0 |
| 315 | */ |
| 316 | static inline bool xindex_is_subset(u32 link, u32 target) |
| 317 | { |
| 318 | if (((link & ~AA_X_UNSAFE) != (target & ~AA_X_UNSAFE)) || |
| 319 | ((link & AA_X_UNSAFE) && !(target & AA_X_UNSAFE))) |
| 320 | return 0; |
| 321 | |
| 322 | return 1; |
| 323 | } |
| 324 | |
| 325 | /** |
| 326 | * aa_path_link - Handle hard link permission check |
| 327 | * @profile: the profile being enforced (NOT NULL) |
| 328 | * @old_dentry: the target dentry (NOT NULL) |
| 329 | * @new_dir: directory the new link will be created in (NOT NULL) |
| 330 | * @new_dentry: the link being created (NOT NULL) |
| 331 | * |
| 332 | * Handle the permission test for a link & target pair. Permission |
| 333 | * is encoded as a pair where the link permission is determined |
| 334 | * first, and if allowed, the target is tested. The target test |
| 335 | * is done from the point of the link match (not start of DFA) |
| 336 | * making the target permission dependent on the link permission match. |
| 337 | * |
| 338 | * The subset test if required forces that permissions granted |
| 339 | * on link are a subset of the permission granted to target. |
| 340 | * |
| 341 | * Returns: %0 if allowed else error |
| 342 | */ |
| 343 | int aa_path_link(struct aa_profile *profile, struct dentry *old_dentry, |
Al Viro | 3539aaf | 2016-03-25 15:07:03 -0400 | [diff] [blame] | 344 | const struct path *new_dir, struct dentry *new_dentry) |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 345 | { |
Kees Cook | 8486adf | 2016-12-16 17:04:13 -0800 | [diff] [blame] | 346 | struct path link = { .mnt = new_dir->mnt, .dentry = new_dentry }; |
| 347 | struct path target = { .mnt = new_dir->mnt, .dentry = old_dentry }; |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 348 | struct path_cond cond = { |
David Howells | c6f493d | 2015-03-17 22:26:22 +0000 | [diff] [blame] | 349 | d_backing_inode(old_dentry)->i_uid, |
| 350 | d_backing_inode(old_dentry)->i_mode |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 351 | }; |
| 352 | char *buffer = NULL, *buffer2 = NULL; |
| 353 | const char *lname, *tname = NULL, *info = NULL; |
John Johansen | 2d679f3 | 2017-05-29 12:19:39 -0700 | [diff] [blame] | 354 | struct aa_perms lperms, perms; |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 355 | u32 request = AA_MAY_LINK; |
| 356 | unsigned int state; |
| 357 | int error; |
| 358 | |
John Johansen | 4227c33 | 2017-05-23 03:25:14 -0700 | [diff] [blame] | 359 | get_buffers(buffer, buffer2); |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 360 | lperms = nullperms; |
| 361 | |
| 362 | /* buffer freed below, lname is pointer in buffer */ |
John Johansen | 4227c33 | 2017-05-23 03:25:14 -0700 | [diff] [blame] | 363 | error = aa_path_name(&link, profile->path_flags, buffer, &lname, |
John Johansen | 72c8a76 | 2017-05-22 03:06:52 -0700 | [diff] [blame] | 364 | &info, profile->disconnected); |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 365 | if (error) |
| 366 | goto audit; |
| 367 | |
| 368 | /* buffer2 freed below, tname is pointer in buffer2 */ |
John Johansen | 4227c33 | 2017-05-23 03:25:14 -0700 | [diff] [blame] | 369 | error = aa_path_name(&target, profile->path_flags, buffer2, &tname, |
John Johansen | 72c8a76 | 2017-05-22 03:06:52 -0700 | [diff] [blame] | 370 | &info, profile->disconnected); |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 371 | if (error) |
| 372 | goto audit; |
| 373 | |
| 374 | error = -EACCES; |
| 375 | /* aa_str_perms - handles the case of the dfa being NULL */ |
| 376 | state = aa_str_perms(profile->file.dfa, profile->file.start, lname, |
| 377 | &cond, &lperms); |
| 378 | |
| 379 | if (!(lperms.allow & AA_MAY_LINK)) |
| 380 | goto audit; |
| 381 | |
| 382 | /* test to see if target can be paired with link */ |
| 383 | state = aa_dfa_null_transition(profile->file.dfa, state); |
| 384 | aa_str_perms(profile->file.dfa, state, tname, &cond, &perms); |
| 385 | |
| 386 | /* force audit/quiet masks for link are stored in the second entry |
| 387 | * in the link pair. |
| 388 | */ |
| 389 | lperms.audit = perms.audit; |
| 390 | lperms.quiet = perms.quiet; |
| 391 | lperms.kill = perms.kill; |
| 392 | |
| 393 | if (!(perms.allow & AA_MAY_LINK)) { |
| 394 | info = "target restricted"; |
| 395 | goto audit; |
| 396 | } |
| 397 | |
| 398 | /* done if link subset test is not required */ |
| 399 | if (!(perms.allow & AA_LINK_SUBSET)) |
| 400 | goto done_tests; |
| 401 | |
| 402 | /* Do link perm subset test requiring allowed permission on link are a |
| 403 | * subset of the allowed permissions on target. |
| 404 | */ |
| 405 | aa_str_perms(profile->file.dfa, profile->file.start, tname, &cond, |
| 406 | &perms); |
| 407 | |
| 408 | /* AA_MAY_LINK is not considered in the subset test */ |
| 409 | request = lperms.allow & ~AA_MAY_LINK; |
| 410 | lperms.allow &= perms.allow | AA_MAY_LINK; |
| 411 | |
| 412 | request |= AA_AUDIT_FILE_MASK & (lperms.allow & ~perms.allow); |
| 413 | if (request & ~lperms.allow) { |
| 414 | goto audit; |
| 415 | } else if ((lperms.allow & MAY_EXEC) && |
| 416 | !xindex_is_subset(lperms.xindex, perms.xindex)) { |
| 417 | lperms.allow &= ~MAY_EXEC; |
| 418 | request |= MAY_EXEC; |
| 419 | info = "link not subset of target"; |
| 420 | goto audit; |
| 421 | } |
| 422 | |
| 423 | done_tests: |
| 424 | error = 0; |
| 425 | |
| 426 | audit: |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 427 | error = aa_audit_file(profile, &lperms, OP_LINK, request, |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 428 | lname, tname, cond.uid, info, error); |
John Johansen | 4227c33 | 2017-05-23 03:25:14 -0700 | [diff] [blame] | 429 | put_buffers(buffer, buffer2); |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 430 | |
| 431 | return error; |
| 432 | } |
| 433 | |
| 434 | /** |
| 435 | * aa_file_perm - do permission revalidation check & audit for @file |
| 436 | * @op: operation being checked |
John Johansen | 190a951 | 2017-06-09 14:59:51 -0700 | [diff] [blame^] | 437 | * @label: label being enforced (NOT NULL) |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 438 | * @file: file to revalidate access permissions on (NOT NULL) |
| 439 | * @request: requested permissions |
| 440 | * |
| 441 | * Returns: %0 if access allowed else error |
| 442 | */ |
John Johansen | 190a951 | 2017-06-09 14:59:51 -0700 | [diff] [blame^] | 443 | int aa_file_perm(const char *op, struct aa_label *label, struct file *file, |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 444 | u32 request) |
| 445 | { |
| 446 | struct path_cond cond = { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 447 | .uid = file_inode(file)->i_uid, |
| 448 | .mode = file_inode(file)->i_mode |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 449 | }; |
John Johansen | 190a951 | 2017-06-09 14:59:51 -0700 | [diff] [blame^] | 450 | struct aa_file_ctx *fctx; |
| 451 | struct aa_label *flabel; |
| 452 | u32 denied; |
| 453 | int error = 0; |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 454 | |
John Johansen | 190a951 | 2017-06-09 14:59:51 -0700 | [diff] [blame^] | 455 | AA_BUG(!label); |
| 456 | AA_BUG(!file); |
| 457 | |
| 458 | fctx = file_ctx(file); |
| 459 | |
| 460 | rcu_read_lock(); |
| 461 | flabel = rcu_dereference(fctx->label); |
| 462 | AA_BUG(!flabel); |
| 463 | |
| 464 | /* revalidate access, if task is unconfined, or the cached cred |
| 465 | * doesn't match or if the request is for more permissions than |
| 466 | * was granted. |
| 467 | * |
| 468 | * Note: the test for !unconfined(flabel) is to handle file |
| 469 | * delegation from unconfined tasks |
| 470 | */ |
| 471 | denied = request & ~fctx->allow; |
| 472 | if (unconfined(label) || unconfined(flabel) || |
| 473 | (!denied && aa_label_is_subset(flabel, label))) |
| 474 | goto done; |
| 475 | |
| 476 | /* TODO: label cross check */ |
| 477 | |
| 478 | if (file->f_path.mnt && path_mediated_fs(file->f_path.dentry)) |
| 479 | error = aa_path_perm(op, labels_profile(label), &file->f_path, |
| 480 | PATH_DELEGATE_DELETED, request, &cond); |
| 481 | |
| 482 | done: |
| 483 | rcu_read_unlock(); |
| 484 | |
| 485 | return error; |
John Johansen | 6380bd8 | 2010-07-29 14:48:04 -0700 | [diff] [blame] | 486 | } |
John Johansen | 192ca6b | 2017-06-09 11:58:42 -0700 | [diff] [blame] | 487 | |
John Johansen | 637f688 | 2017-06-09 08:14:28 -0700 | [diff] [blame] | 488 | static void revalidate_tty(struct aa_label *label) |
John Johansen | 192ca6b | 2017-06-09 11:58:42 -0700 | [diff] [blame] | 489 | { |
| 490 | struct tty_struct *tty; |
| 491 | int drop_tty = 0; |
| 492 | |
| 493 | tty = get_current_tty(); |
| 494 | if (!tty) |
| 495 | return; |
| 496 | |
| 497 | spin_lock(&tty->files_lock); |
| 498 | if (!list_empty(&tty->tty_files)) { |
| 499 | struct tty_file_private *file_priv; |
| 500 | struct file *file; |
| 501 | /* TODO: Revalidate access to controlling tty. */ |
| 502 | file_priv = list_first_entry(&tty->tty_files, |
| 503 | struct tty_file_private, list); |
| 504 | file = file_priv->file; |
| 505 | |
John Johansen | 190a951 | 2017-06-09 14:59:51 -0700 | [diff] [blame^] | 506 | if (aa_file_perm(OP_INHERIT, label, file, MAY_READ | MAY_WRITE)) |
John Johansen | 192ca6b | 2017-06-09 11:58:42 -0700 | [diff] [blame] | 507 | drop_tty = 1; |
| 508 | } |
| 509 | spin_unlock(&tty->files_lock); |
| 510 | tty_kref_put(tty); |
| 511 | |
| 512 | if (drop_tty) |
| 513 | no_tty(); |
| 514 | } |
| 515 | |
| 516 | static int match_file(const void *p, struct file *file, unsigned int fd) |
| 517 | { |
John Johansen | 637f688 | 2017-06-09 08:14:28 -0700 | [diff] [blame] | 518 | struct aa_label *label = (struct aa_label *)p; |
John Johansen | 192ca6b | 2017-06-09 11:58:42 -0700 | [diff] [blame] | 519 | |
John Johansen | 190a951 | 2017-06-09 14:59:51 -0700 | [diff] [blame^] | 520 | if (aa_file_perm(OP_INHERIT, label, file, aa_map_file_to_perms(file))) |
John Johansen | 192ca6b | 2017-06-09 11:58:42 -0700 | [diff] [blame] | 521 | return fd + 1; |
| 522 | return 0; |
| 523 | } |
| 524 | |
| 525 | |
| 526 | /* based on selinux's flush_unauthorized_files */ |
| 527 | void aa_inherit_files(const struct cred *cred, struct files_struct *files) |
| 528 | { |
John Johansen | 637f688 | 2017-06-09 08:14:28 -0700 | [diff] [blame] | 529 | struct aa_label *label = aa_get_newest_cred_label(cred); |
John Johansen | 192ca6b | 2017-06-09 11:58:42 -0700 | [diff] [blame] | 530 | struct file *devnull = NULL; |
| 531 | unsigned int n; |
| 532 | |
John Johansen | 637f688 | 2017-06-09 08:14:28 -0700 | [diff] [blame] | 533 | revalidate_tty(label); |
John Johansen | 192ca6b | 2017-06-09 11:58:42 -0700 | [diff] [blame] | 534 | |
| 535 | /* Revalidate access to inherited open files. */ |
John Johansen | 637f688 | 2017-06-09 08:14:28 -0700 | [diff] [blame] | 536 | n = iterate_fd(files, 0, match_file, label); |
John Johansen | 192ca6b | 2017-06-09 11:58:42 -0700 | [diff] [blame] | 537 | if (!n) /* none found? */ |
| 538 | goto out; |
| 539 | |
| 540 | devnull = dentry_open(&aa_null, O_RDWR, cred); |
| 541 | if (IS_ERR(devnull)) |
| 542 | devnull = NULL; |
| 543 | /* replace all the matching ones with this */ |
| 544 | do { |
| 545 | replace_fd(n - 1, devnull, 0); |
John Johansen | 637f688 | 2017-06-09 08:14:28 -0700 | [diff] [blame] | 546 | } while ((n = iterate_fd(files, n, match_file, label)) != 0); |
John Johansen | 192ca6b | 2017-06-09 11:58:42 -0700 | [diff] [blame] | 547 | if (devnull) |
| 548 | fput(devnull); |
| 549 | out: |
John Johansen | 637f688 | 2017-06-09 08:14:28 -0700 | [diff] [blame] | 550 | aa_put_label(label); |
John Johansen | 192ca6b | 2017-06-09 11:58:42 -0700 | [diff] [blame] | 551 | } |