blob: 3c7a8fc4f93f762392f452f6e74debc004d6fead [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Howells00d3b7a2007-04-26 15:57:07 -07002/* AFS security handling
3 *
David Howellsbe080a62017-11-02 15:27:49 +00004 * Copyright (C) 2007, 2017 Red Hat, Inc. All Rights Reserved.
David Howells00d3b7a2007-04-26 15:57:07 -07005 * Written by David Howells (dhowells@redhat.com)
David Howells00d3b7a2007-04-26 15:57:07 -07006 */
7
8#include <linux/init.h>
9#include <linux/slab.h>
10#include <linux/fs.h>
11#include <linux/ctype.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040012#include <linux/sched.h>
David Howellsbe080a62017-11-02 15:27:49 +000013#include <linux/hashtable.h>
David Howells00d3b7a2007-04-26 15:57:07 -070014#include <keys/rxrpc-type.h>
15#include "internal.h"
16
David Howellsbe080a62017-11-02 15:27:49 +000017static DEFINE_HASHTABLE(afs_permits_cache, 10);
18static DEFINE_SPINLOCK(afs_permits_lock);
19
David Howells00d3b7a2007-04-26 15:57:07 -070020/*
21 * get a key
22 */
23struct key *afs_request_key(struct afs_cell *cell)
24{
25 struct key *key;
26
27 _enter("{%x}", key_serial(cell->anonymous_key));
28
29 _debug("key %s", cell->anonymous_key->description);
David Howells8b6a6662019-05-20 08:48:46 +010030 key = request_key_net(&key_type_rxrpc, cell->anonymous_key->description,
31 cell->net->net, NULL);
32 if (IS_ERR(key)) {
33 if (PTR_ERR(key) != -ENOKEY) {
34 _leave(" = %ld", PTR_ERR(key));
35 return key;
36 }
37
38 /* act as anonymous user */
39 _leave(" = {%x} [anon]", key_serial(cell->anonymous_key));
40 return key_get(cell->anonymous_key);
41 } else {
42 /* act as authorised user */
43 _leave(" = {%x} [auth]", key_serial(key));
44 return key;
45 }
46}
47
48/*
49 * Get a key when pathwalk is in rcuwalk mode.
50 */
51struct key *afs_request_key_rcu(struct afs_cell *cell)
52{
53 struct key *key;
54
55 _enter("{%x}", key_serial(cell->anonymous_key));
56
57 _debug("key %s", cell->anonymous_key->description);
58 key = request_key_net_rcu(&key_type_rxrpc,
59 cell->anonymous_key->description,
60 cell->net->net);
David Howells00d3b7a2007-04-26 15:57:07 -070061 if (IS_ERR(key)) {
62 if (PTR_ERR(key) != -ENOKEY) {
63 _leave(" = %ld", PTR_ERR(key));
64 return key;
65 }
66
67 /* act as anonymous user */
68 _leave(" = {%x} [anon]", key_serial(cell->anonymous_key));
69 return key_get(cell->anonymous_key);
70 } else {
71 /* act as authorised user */
72 _leave(" = {%x} [auth]", key_serial(key));
73 return key;
74 }
75}
76
77/*
David Howellsbe080a62017-11-02 15:27:49 +000078 * Dispose of a list of permits.
David Howells00d3b7a2007-04-26 15:57:07 -070079 */
David Howellsbe080a62017-11-02 15:27:49 +000080static void afs_permits_rcu(struct rcu_head *rcu)
David Howells00d3b7a2007-04-26 15:57:07 -070081{
82 struct afs_permits *permits =
83 container_of(rcu, struct afs_permits, rcu);
David Howellsbe080a62017-11-02 15:27:49 +000084 int i;
David Howells00d3b7a2007-04-26 15:57:07 -070085
David Howellsbe080a62017-11-02 15:27:49 +000086 for (i = 0; i < permits->nr_permits; i++)
87 key_put(permits->permits[i].key);
David Howells00d3b7a2007-04-26 15:57:07 -070088 kfree(permits);
89}
90
91/*
David Howellsbe080a62017-11-02 15:27:49 +000092 * Discard a permission cache.
David Howells00d3b7a2007-04-26 15:57:07 -070093 */
David Howellsbe080a62017-11-02 15:27:49 +000094void afs_put_permits(struct afs_permits *permits)
David Howells00d3b7a2007-04-26 15:57:07 -070095{
David Howellsbe080a62017-11-02 15:27:49 +000096 if (permits && refcount_dec_and_test(&permits->usage)) {
97 spin_lock(&afs_permits_lock);
98 hash_del_rcu(&permits->hash_node);
99 spin_unlock(&afs_permits_lock);
100 call_rcu(&permits->rcu, afs_permits_rcu);
David Howells00d3b7a2007-04-26 15:57:07 -0700101 }
David Howells00d3b7a2007-04-26 15:57:07 -0700102}
103
104/*
David Howellsbe080a62017-11-02 15:27:49 +0000105 * Clear a permit cache on callback break.
David Howells00d3b7a2007-04-26 15:57:07 -0700106 */
107void afs_clear_permits(struct afs_vnode *vnode)
108{
109 struct afs_permits *permits;
110
David Howellsbe080a62017-11-02 15:27:49 +0000111 spin_lock(&vnode->lock);
112 permits = rcu_dereference_protected(vnode->permit_cache,
113 lockdep_is_held(&vnode->lock));
114 RCU_INIT_POINTER(vnode->permit_cache, NULL);
David Howellsbe080a62017-11-02 15:27:49 +0000115 spin_unlock(&vnode->lock);
David Howells00d3b7a2007-04-26 15:57:07 -0700116
David Howellsfd711582019-05-10 23:14:41 +0100117 afs_put_permits(permits);
David Howells00d3b7a2007-04-26 15:57:07 -0700118}
119
120/*
David Howellsbe080a62017-11-02 15:27:49 +0000121 * Hash a list of permits. Use simple addition to make it easy to add an extra
122 * one at an as-yet indeterminate position in the list.
David Howells00d3b7a2007-04-26 15:57:07 -0700123 */
David Howellsbe080a62017-11-02 15:27:49 +0000124static void afs_hash_permits(struct afs_permits *permits)
David Howells00d3b7a2007-04-26 15:57:07 -0700125{
David Howellsbe080a62017-11-02 15:27:49 +0000126 unsigned long h = permits->nr_permits;
127 int i;
David Howells00d3b7a2007-04-26 15:57:07 -0700128
David Howellsbe080a62017-11-02 15:27:49 +0000129 for (i = 0; i < permits->nr_permits; i++) {
130 h += (unsigned long)permits->permits[i].key / sizeof(void *);
131 h += permits->permits[i].access;
David Howells00d3b7a2007-04-26 15:57:07 -0700132 }
133
David Howellsbe080a62017-11-02 15:27:49 +0000134 permits->h = h;
135}
David Howells00d3b7a2007-04-26 15:57:07 -0700136
David Howellsbe080a62017-11-02 15:27:49 +0000137/*
138 * Cache the CallerAccess result obtained from doing a fileserver operation
139 * that returned a vnode status for a particular key. If a callback break
140 * occurs whilst the operation was in progress then we have to ditch the cache
141 * as the ACL *may* have changed.
142 */
143void afs_cache_permit(struct afs_vnode *vnode, struct key *key,
David Howellsa58823a2019-05-09 15:16:10 +0100144 unsigned int cb_break, struct afs_status_cb *scb)
David Howellsbe080a62017-11-02 15:27:49 +0000145{
David Howells1bcab122017-12-01 11:40:43 +0000146 struct afs_permits *permits, *xpermits, *replacement, *zap, *new = NULL;
David Howellsa58823a2019-05-09 15:16:10 +0100147 afs_access_t caller_access = scb->status.caller_access;
David Howellsbe080a62017-11-02 15:27:49 +0000148 size_t size = 0;
149 bool changed = false;
150 int i, j;
David Howells00d3b7a2007-04-26 15:57:07 -0700151
David Howells3b6492d2018-10-20 00:57:57 +0100152 _enter("{%llx:%llu},%x,%x",
David Howellsbe080a62017-11-02 15:27:49 +0000153 vnode->fid.vid, vnode->fid.vnode, key_serial(key), caller_access);
David Howells00d3b7a2007-04-26 15:57:07 -0700154
David Howellsbe080a62017-11-02 15:27:49 +0000155 rcu_read_lock();
David Howells00d3b7a2007-04-26 15:57:07 -0700156
David Howellsbe080a62017-11-02 15:27:49 +0000157 /* Check for the common case first: We got back the same access as last
158 * time we tried and already have it recorded.
159 */
160 permits = rcu_dereference(vnode->permit_cache);
161 if (permits) {
162 if (!permits->invalidated) {
163 for (i = 0; i < permits->nr_permits; i++) {
164 if (permits->permits[i].key < key)
165 continue;
166 if (permits->permits[i].key > key)
167 break;
168 if (permits->permits[i].access != caller_access) {
169 changed = true;
170 break;
171 }
172
David Howells20325962020-04-30 01:03:49 +0100173 if (afs_cb_is_broken(cb_break, vnode)) {
David Howellsbe080a62017-11-02 15:27:49 +0000174 changed = true;
175 break;
176 }
177
178 /* The cache is still good. */
179 rcu_read_unlock();
180 return;
David Howells00d3b7a2007-04-26 15:57:07 -0700181 }
David Howellsbe080a62017-11-02 15:27:49 +0000182 }
183
184 changed |= permits->invalidated;
185 size = permits->nr_permits;
186
187 /* If this set of permits is now wrong, clear the permits
188 * pointer so that no one tries to use the stale information.
189 */
190 if (changed) {
191 spin_lock(&vnode->lock);
192 if (permits != rcu_access_pointer(vnode->permit_cache))
193 goto someone_else_changed_it_unlock;
194 RCU_INIT_POINTER(vnode->permit_cache, NULL);
195 spin_unlock(&vnode->lock);
196
197 afs_put_permits(permits);
198 permits = NULL;
199 size = 0;
David Howells00d3b7a2007-04-26 15:57:07 -0700200 }
201 }
202
David Howells20325962020-04-30 01:03:49 +0100203 if (afs_cb_is_broken(cb_break, vnode))
David Howellsbe080a62017-11-02 15:27:49 +0000204 goto someone_else_changed_it;
David Howells00d3b7a2007-04-26 15:57:07 -0700205
David Howellsbe080a62017-11-02 15:27:49 +0000206 /* We need a ref on any permits list we want to copy as we'll have to
207 * drop the lock to do memory allocation.
208 */
David Howellsfe342cf2018-04-09 21:12:31 +0100209 if (permits && !refcount_inc_not_zero(&permits->usage))
David Howellsbe080a62017-11-02 15:27:49 +0000210 goto someone_else_changed_it;
David Howells00d3b7a2007-04-26 15:57:07 -0700211
David Howellsbe080a62017-11-02 15:27:49 +0000212 rcu_read_unlock();
David Howells00d3b7a2007-04-26 15:57:07 -0700213
David Howellsbe080a62017-11-02 15:27:49 +0000214 /* Speculatively create a new list with the revised permission set. We
215 * discard this if we find an extant match already in the hash, but
216 * it's easier to compare with memcmp this way.
217 *
218 * We fill in the key pointers at this time, but we don't get the refs
219 * yet.
220 */
221 size++;
222 new = kzalloc(sizeof(struct afs_permits) +
223 sizeof(struct afs_permit) * size, GFP_NOFS);
224 if (!new)
David Howells1bcab122017-12-01 11:40:43 +0000225 goto out_put;
David Howells00d3b7a2007-04-26 15:57:07 -0700226
David Howellsbe080a62017-11-02 15:27:49 +0000227 refcount_set(&new->usage, 1);
228 new->nr_permits = size;
229 i = j = 0;
230 if (permits) {
231 for (i = 0; i < permits->nr_permits; i++) {
232 if (j == i && permits->permits[i].key > key) {
233 new->permits[j].key = key;
234 new->permits[j].access = caller_access;
235 j++;
236 }
237 new->permits[j].key = permits->permits[i].key;
238 new->permits[j].access = permits->permits[i].access;
239 j++;
240 }
241 }
242
243 if (j == i) {
244 new->permits[j].key = key;
245 new->permits[j].access = caller_access;
246 }
247
248 afs_hash_permits(new);
249
David Howellsbe080a62017-11-02 15:27:49 +0000250 /* Now see if the permit list we want is actually already available */
251 spin_lock(&afs_permits_lock);
252
253 hash_for_each_possible(afs_permits_cache, xpermits, hash_node, new->h) {
254 if (xpermits->h != new->h ||
255 xpermits->invalidated ||
256 xpermits->nr_permits != new->nr_permits ||
257 memcmp(xpermits->permits, new->permits,
258 new->nr_permits * sizeof(struct afs_permit)) != 0)
259 continue;
260
261 if (refcount_inc_not_zero(&xpermits->usage)) {
262 replacement = xpermits;
263 goto found;
264 }
265
266 break;
267 }
268
269 for (i = 0; i < new->nr_permits; i++)
270 key_get(new->permits[i].key);
271 hash_add_rcu(afs_permits_cache, &new->hash_node, new->h);
272 replacement = new;
273 new = NULL;
274
275found:
276 spin_unlock(&afs_permits_lock);
277
278 kfree(new);
279
David Howellsf6424042019-05-13 16:14:32 +0100280 rcu_read_lock();
David Howellsbe080a62017-11-02 15:27:49 +0000281 spin_lock(&vnode->lock);
David Howells1bcab122017-12-01 11:40:43 +0000282 zap = rcu_access_pointer(vnode->permit_cache);
David Howells20325962020-04-30 01:03:49 +0100283 if (!afs_cb_is_broken(cb_break, vnode) && zap == permits)
David Howells1bcab122017-12-01 11:40:43 +0000284 rcu_assign_pointer(vnode->permit_cache, replacement);
285 else
286 zap = replacement;
David Howellsbe080a62017-11-02 15:27:49 +0000287 spin_unlock(&vnode->lock);
David Howellsf6424042019-05-13 16:14:32 +0100288 rcu_read_unlock();
David Howells1bcab122017-12-01 11:40:43 +0000289 afs_put_permits(zap);
290out_put:
David Howellsbe080a62017-11-02 15:27:49 +0000291 afs_put_permits(permits);
292 return;
293
294someone_else_changed_it_unlock:
295 spin_unlock(&vnode->lock);
296someone_else_changed_it:
297 /* Someone else changed the cache under us - don't recheck at this
298 * time.
299 */
David Howellsfe342cf2018-04-09 21:12:31 +0100300 rcu_read_unlock();
David Howellsbe080a62017-11-02 15:27:49 +0000301 return;
David Howells00d3b7a2007-04-26 15:57:07 -0700302}
303
David Howellsa0753c22019-05-20 08:48:46 +0100304static bool afs_check_permit_rcu(struct afs_vnode *vnode, struct key *key,
305 afs_access_t *_access)
306{
307 const struct afs_permits *permits;
308 int i;
309
310 _enter("{%llx:%llu},%x",
311 vnode->fid.vid, vnode->fid.vnode, key_serial(key));
312
313 /* check the permits to see if we've got one yet */
314 if (key == vnode->volume->cell->anonymous_key) {
315 *_access = vnode->status.anon_access;
316 _leave(" = t [anon %x]", *_access);
317 return true;
318 }
319
320 permits = rcu_dereference(vnode->permit_cache);
321 if (permits) {
322 for (i = 0; i < permits->nr_permits; i++) {
323 if (permits->permits[i].key < key)
324 continue;
325 if (permits->permits[i].key > key)
326 break;
327
328 *_access = permits->permits[i].access;
329 _leave(" = %u [perm %x]", !permits->invalidated, *_access);
330 return !permits->invalidated;
331 }
332 }
333
334 _leave(" = f");
335 return false;
336}
337
David Howells00d3b7a2007-04-26 15:57:07 -0700338/*
339 * check with the fileserver to see if the directory or parent directory is
340 * permitted to be accessed with this authorisation, and if so, what access it
341 * is granted
342 */
David Howells0fafdc92017-11-13 16:59:50 +0000343int afs_check_permit(struct afs_vnode *vnode, struct key *key,
344 afs_access_t *_access)
David Howells00d3b7a2007-04-26 15:57:07 -0700345{
346 struct afs_permits *permits;
David Howellsbe080a62017-11-02 15:27:49 +0000347 bool valid = false;
348 int i, ret;
David Howells00d3b7a2007-04-26 15:57:07 -0700349
David Howells3b6492d2018-10-20 00:57:57 +0100350 _enter("{%llx:%llu},%x",
David Howells416351f2007-05-09 02:33:45 -0700351 vnode->fid.vid, vnode->fid.vnode, key_serial(key));
David Howells00d3b7a2007-04-26 15:57:07 -0700352
David Howells00d3b7a2007-04-26 15:57:07 -0700353 /* check the permits to see if we've got one yet */
David Howellsbe080a62017-11-02 15:27:49 +0000354 if (key == vnode->volume->cell->anonymous_key) {
David Howells00d3b7a2007-04-26 15:57:07 -0700355 _debug("anon");
David Howellsbe080a62017-11-02 15:27:49 +0000356 *_access = vnode->status.anon_access;
David Howells00d3b7a2007-04-26 15:57:07 -0700357 valid = true;
358 } else {
David Howells00d3b7a2007-04-26 15:57:07 -0700359 rcu_read_lock();
David Howellsbe080a62017-11-02 15:27:49 +0000360 permits = rcu_dereference(vnode->permit_cache);
David Howells00d3b7a2007-04-26 15:57:07 -0700361 if (permits) {
David Howellsbe080a62017-11-02 15:27:49 +0000362 for (i = 0; i < permits->nr_permits; i++) {
363 if (permits->permits[i].key < key)
364 continue;
365 if (permits->permits[i].key > key)
David Howells00d3b7a2007-04-26 15:57:07 -0700366 break;
David Howellsbe080a62017-11-02 15:27:49 +0000367
368 *_access = permits->permits[i].access;
369 valid = !permits->invalidated;
370 break;
David Howells00d3b7a2007-04-26 15:57:07 -0700371 }
372 }
373 rcu_read_unlock();
374 }
375
376 if (!valid) {
David Howellsbe080a62017-11-02 15:27:49 +0000377 /* Check the status on the file we're actually interested in
378 * (the post-processing will cache the result).
379 */
David Howells00d3b7a2007-04-26 15:57:07 -0700380 _debug("no valid permit");
381
David Howellsa58823a2019-05-09 15:16:10 +0100382 ret = afs_fetch_status(vnode, key, false, _access);
David Howells00d3b7a2007-04-26 15:57:07 -0700383 if (ret < 0) {
David Howells00d3b7a2007-04-26 15:57:07 -0700384 *_access = 0;
385 _leave(" = %d", ret);
386 return ret;
387 }
388 }
389
David Howells00d3b7a2007-04-26 15:57:07 -0700390 _leave(" = 0 [access %x]", *_access);
391 return 0;
392}
393
394/*
395 * check the permissions on an AFS file
396 * - AFS ACLs are attached to directories only, and a file is controlled by its
397 * parent directory's ACL
398 */
Christian Brauner549c7292021-01-21 14:19:43 +0100399int afs_permission(struct user_namespace *mnt_userns, struct inode *inode,
400 int mask)
David Howells00d3b7a2007-04-26 15:57:07 -0700401{
402 struct afs_vnode *vnode = AFS_FS_I(inode);
Kees Cook3f649ab2020-06-03 13:09:38 -0700403 afs_access_t access;
David Howells00d3b7a2007-04-26 15:57:07 -0700404 struct key *key;
David Howellsa0753c22019-05-20 08:48:46 +0100405 int ret = 0;
Nick Pigginb74c79e2011-01-07 17:49:58 +1100406
David Howells3b6492d2018-10-20 00:57:57 +0100407 _enter("{{%llx:%llu},%lx},%x,",
David Howells260a9802007-04-26 15:59:35 -0700408 vnode->fid.vid, vnode->fid.vnode, vnode->flags, mask);
David Howells00d3b7a2007-04-26 15:57:07 -0700409
David Howellsa0753c22019-05-20 08:48:46 +0100410 if (mask & MAY_NOT_BLOCK) {
411 key = afs_request_key_rcu(vnode->volume->cell);
412 if (IS_ERR(key))
413 return -ECHILD;
414
415 ret = -ECHILD;
416 if (!afs_check_validity(vnode) ||
417 !afs_check_permit_rcu(vnode, key, &access))
418 goto error;
419 } else {
420 key = afs_request_key(vnode->volume->cell);
421 if (IS_ERR(key)) {
422 _leave(" = %ld [key]", PTR_ERR(key));
423 return PTR_ERR(key);
424 }
425
426 ret = afs_validate(vnode, key);
427 if (ret < 0)
428 goto error;
429
430 /* check the permits to see if we've got one yet */
431 ret = afs_check_permit(vnode, key, &access);
432 if (ret < 0)
433 goto error;
David Howells00d3b7a2007-04-26 15:57:07 -0700434 }
435
David Howells00d3b7a2007-04-26 15:57:07 -0700436 /* interpret the access mask */
437 _debug("REQ %x ACC %x on %s",
438 mask, access, S_ISDIR(inode->i_mode) ? "dir" : "file");
439
David Howellsa0753c22019-05-20 08:48:46 +0100440 ret = 0;
David Howells00d3b7a2007-04-26 15:57:07 -0700441 if (S_ISDIR(inode->i_mode)) {
David Howells378831e2018-05-16 21:25:46 +0100442 if (mask & (MAY_EXEC | MAY_READ | MAY_CHDIR)) {
David Howells00d3b7a2007-04-26 15:57:07 -0700443 if (!(access & AFS_ACE_LOOKUP))
444 goto permission_denied;
David Howells378831e2018-05-16 21:25:46 +0100445 }
446 if (mask & MAY_WRITE) {
David Howells00d3b7a2007-04-26 15:57:07 -0700447 if (!(access & (AFS_ACE_DELETE | /* rmdir, unlink, rename from */
Marc Dionnefd249822017-07-06 15:50:18 +0100448 AFS_ACE_INSERT))) /* create, mkdir, symlink, rename to */
David Howells00d3b7a2007-04-26 15:57:07 -0700449 goto permission_denied;
David Howells00d3b7a2007-04-26 15:57:07 -0700450 }
451 } else {
452 if (!(access & AFS_ACE_LOOKUP))
453 goto permission_denied;
Marc Dionne627f4692017-03-16 16:27:44 +0000454 if ((mask & MAY_EXEC) && !(inode->i_mode & S_IXUSR))
455 goto permission_denied;
David Howells00d3b7a2007-04-26 15:57:07 -0700456 if (mask & (MAY_EXEC | MAY_READ)) {
457 if (!(access & AFS_ACE_READ))
458 goto permission_denied;
Marc Dionne627f4692017-03-16 16:27:44 +0000459 if (!(inode->i_mode & S_IRUSR))
460 goto permission_denied;
David Howells00d3b7a2007-04-26 15:57:07 -0700461 } else if (mask & MAY_WRITE) {
462 if (!(access & AFS_ACE_WRITE))
463 goto permission_denied;
Marc Dionne627f4692017-03-16 16:27:44 +0000464 if (!(inode->i_mode & S_IWUSR))
465 goto permission_denied;
David Howells00d3b7a2007-04-26 15:57:07 -0700466 }
467 }
468
469 key_put(key);
David Howells260a9802007-04-26 15:59:35 -0700470 _leave(" = %d", ret);
471 return ret;
David Howells00d3b7a2007-04-26 15:57:07 -0700472
473permission_denied:
David Howells260a9802007-04-26 15:59:35 -0700474 ret = -EACCES;
475error:
David Howells00d3b7a2007-04-26 15:57:07 -0700476 key_put(key);
David Howells260a9802007-04-26 15:59:35 -0700477 _leave(" = %d", ret);
478 return ret;
David Howells00d3b7a2007-04-26 15:57:07 -0700479}
David Howellsbe080a62017-11-02 15:27:49 +0000480
481void __exit afs_clean_up_permit_cache(void)
482{
483 int i;
484
485 for (i = 0; i < HASH_SIZE(afs_permits_cache); i++)
486 WARN_ON_ONCE(!hlist_empty(&afs_permits_cache[i]));
487
488}