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