Merge tag 'afs-fixes-20190516' of git://git.kernel.org/pub/scm/linux/kernel/git/dhowe...
[platform/kernel/linux-rpi.git] / fs / afs / security.c
1 /* AFS security handling
2  *
3  * Copyright (C) 2007, 2017 Red Hat, Inc. All Rights Reserved.
4  * Written by David Howells (dhowells@redhat.com)
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version
9  * 2 of the License, or (at your option) any later version.
10  */
11
12 #include <linux/init.h>
13 #include <linux/slab.h>
14 #include <linux/fs.h>
15 #include <linux/ctype.h>
16 #include <linux/sched.h>
17 #include <linux/hashtable.h>
18 #include <keys/rxrpc-type.h>
19 #include "internal.h"
20
21 static DEFINE_HASHTABLE(afs_permits_cache, 10);
22 static DEFINE_SPINLOCK(afs_permits_lock);
23
24 /*
25  * get a key
26  */
27 struct key *afs_request_key(struct afs_cell *cell)
28 {
29         struct key *key;
30
31         _enter("{%x}", key_serial(cell->anonymous_key));
32
33         _debug("key %s", cell->anonymous_key->description);
34         key = request_key(&key_type_rxrpc, cell->anonymous_key->description,
35                           NULL);
36         if (IS_ERR(key)) {
37                 if (PTR_ERR(key) != -ENOKEY) {
38                         _leave(" = %ld", PTR_ERR(key));
39                         return key;
40                 }
41
42                 /* act as anonymous user */
43                 _leave(" = {%x} [anon]", key_serial(cell->anonymous_key));
44                 return key_get(cell->anonymous_key);
45         } else {
46                 /* act as authorised user */
47                 _leave(" = {%x} [auth]", key_serial(key));
48                 return key;
49         }
50 }
51
52 /*
53  * Dispose of a list of permits.
54  */
55 static void afs_permits_rcu(struct rcu_head *rcu)
56 {
57         struct afs_permits *permits =
58                 container_of(rcu, struct afs_permits, rcu);
59         int i;
60
61         for (i = 0; i < permits->nr_permits; i++)
62                 key_put(permits->permits[i].key);
63         kfree(permits);
64 }
65
66 /*
67  * Discard a permission cache.
68  */
69 void afs_put_permits(struct afs_permits *permits)
70 {
71         if (permits && refcount_dec_and_test(&permits->usage)) {
72                 spin_lock(&afs_permits_lock);
73                 hash_del_rcu(&permits->hash_node);
74                 spin_unlock(&afs_permits_lock);
75                 call_rcu(&permits->rcu, afs_permits_rcu);
76         }
77 }
78
79 /*
80  * Clear a permit cache on callback break.
81  */
82 void afs_clear_permits(struct afs_vnode *vnode)
83 {
84         struct afs_permits *permits;
85
86         spin_lock(&vnode->lock);
87         permits = rcu_dereference_protected(vnode->permit_cache,
88                                             lockdep_is_held(&vnode->lock));
89         RCU_INIT_POINTER(vnode->permit_cache, NULL);
90         spin_unlock(&vnode->lock);
91
92         afs_put_permits(permits);
93 }
94
95 /*
96  * Hash a list of permits.  Use simple addition to make it easy to add an extra
97  * one at an as-yet indeterminate position in the list.
98  */
99 static void afs_hash_permits(struct afs_permits *permits)
100 {
101         unsigned long h = permits->nr_permits;
102         int i;
103
104         for (i = 0; i < permits->nr_permits; i++) {
105                 h += (unsigned long)permits->permits[i].key / sizeof(void *);
106                 h += permits->permits[i].access;
107         }
108
109         permits->h = h;
110 }
111
112 /*
113  * Cache the CallerAccess result obtained from doing a fileserver operation
114  * that returned a vnode status for a particular key.  If a callback break
115  * occurs whilst the operation was in progress then we have to ditch the cache
116  * as the ACL *may* have changed.
117  */
118 void afs_cache_permit(struct afs_vnode *vnode, struct key *key,
119                       unsigned int cb_break)
120 {
121         struct afs_permits *permits, *xpermits, *replacement, *zap, *new = NULL;
122         afs_access_t caller_access = READ_ONCE(vnode->status.caller_access);
123         size_t size = 0;
124         bool changed = false;
125         int i, j;
126
127         _enter("{%llx:%llu},%x,%x",
128                vnode->fid.vid, vnode->fid.vnode, key_serial(key), caller_access);
129
130         rcu_read_lock();
131
132         /* Check for the common case first: We got back the same access as last
133          * time we tried and already have it recorded.
134          */
135         permits = rcu_dereference(vnode->permit_cache);
136         if (permits) {
137                 if (!permits->invalidated) {
138                         for (i = 0; i < permits->nr_permits; i++) {
139                                 if (permits->permits[i].key < key)
140                                         continue;
141                                 if (permits->permits[i].key > key)
142                                         break;
143                                 if (permits->permits[i].access != caller_access) {
144                                         changed = true;
145                                         break;
146                                 }
147
148                                 if (afs_cb_is_broken(cb_break, vnode,
149                                                      vnode->cb_interest)) {
150                                         changed = true;
151                                         break;
152                                 }
153
154                                 /* The cache is still good. */
155                                 rcu_read_unlock();
156                                 return;
157                         }
158                 }
159
160                 changed |= permits->invalidated;
161                 size = permits->nr_permits;
162
163                 /* If this set of permits is now wrong, clear the permits
164                  * pointer so that no one tries to use the stale information.
165                  */
166                 if (changed) {
167                         spin_lock(&vnode->lock);
168                         if (permits != rcu_access_pointer(vnode->permit_cache))
169                                 goto someone_else_changed_it_unlock;
170                         RCU_INIT_POINTER(vnode->permit_cache, NULL);
171                         spin_unlock(&vnode->lock);
172
173                         afs_put_permits(permits);
174                         permits = NULL;
175                         size = 0;
176                 }
177         }
178
179         if (afs_cb_is_broken(cb_break, vnode, vnode->cb_interest))
180                 goto someone_else_changed_it;
181
182         /* We need a ref on any permits list we want to copy as we'll have to
183          * drop the lock to do memory allocation.
184          */
185         if (permits && !refcount_inc_not_zero(&permits->usage))
186                 goto someone_else_changed_it;
187
188         rcu_read_unlock();
189
190         /* Speculatively create a new list with the revised permission set.  We
191          * discard this if we find an extant match already in the hash, but
192          * it's easier to compare with memcmp this way.
193          *
194          * We fill in the key pointers at this time, but we don't get the refs
195          * yet.
196          */
197         size++;
198         new = kzalloc(sizeof(struct afs_permits) +
199                       sizeof(struct afs_permit) * size, GFP_NOFS);
200         if (!new)
201                 goto out_put;
202
203         refcount_set(&new->usage, 1);
204         new->nr_permits = size;
205         i = j = 0;
206         if (permits) {
207                 for (i = 0; i < permits->nr_permits; i++) {
208                         if (j == i && permits->permits[i].key > key) {
209                                 new->permits[j].key = key;
210                                 new->permits[j].access = caller_access;
211                                 j++;
212                         }
213                         new->permits[j].key = permits->permits[i].key;
214                         new->permits[j].access = permits->permits[i].access;
215                         j++;
216                 }
217         }
218
219         if (j == i) {
220                 new->permits[j].key = key;
221                 new->permits[j].access = caller_access;
222         }
223
224         afs_hash_permits(new);
225
226         /* Now see if the permit list we want is actually already available */
227         spin_lock(&afs_permits_lock);
228
229         hash_for_each_possible(afs_permits_cache, xpermits, hash_node, new->h) {
230                 if (xpermits->h != new->h ||
231                     xpermits->invalidated ||
232                     xpermits->nr_permits != new->nr_permits ||
233                     memcmp(xpermits->permits, new->permits,
234                            new->nr_permits * sizeof(struct afs_permit)) != 0)
235                         continue;
236
237                 if (refcount_inc_not_zero(&xpermits->usage)) {
238                         replacement = xpermits;
239                         goto found;
240                 }
241
242                 break;
243         }
244
245         for (i = 0; i < new->nr_permits; i++)
246                 key_get(new->permits[i].key);
247         hash_add_rcu(afs_permits_cache, &new->hash_node, new->h);
248         replacement = new;
249         new = NULL;
250
251 found:
252         spin_unlock(&afs_permits_lock);
253
254         kfree(new);
255
256         spin_lock(&vnode->lock);
257         zap = rcu_access_pointer(vnode->permit_cache);
258         if (!afs_cb_is_broken(cb_break, vnode, vnode->cb_interest) &&
259             zap == permits)
260                 rcu_assign_pointer(vnode->permit_cache, replacement);
261         else
262                 zap = replacement;
263         spin_unlock(&vnode->lock);
264         afs_put_permits(zap);
265 out_put:
266         afs_put_permits(permits);
267         return;
268
269 someone_else_changed_it_unlock:
270         spin_unlock(&vnode->lock);
271 someone_else_changed_it:
272         /* Someone else changed the cache under us - don't recheck at this
273          * time.
274          */
275         rcu_read_unlock();
276         return;
277 }
278
279 /*
280  * check with the fileserver to see if the directory or parent directory is
281  * permitted to be accessed with this authorisation, and if so, what access it
282  * is granted
283  */
284 int afs_check_permit(struct afs_vnode *vnode, struct key *key,
285                      afs_access_t *_access)
286 {
287         struct afs_permits *permits;
288         bool valid = false;
289         int i, ret;
290
291         _enter("{%llx:%llu},%x",
292                vnode->fid.vid, vnode->fid.vnode, key_serial(key));
293
294         /* check the permits to see if we've got one yet */
295         if (key == vnode->volume->cell->anonymous_key) {
296                 _debug("anon");
297                 *_access = vnode->status.anon_access;
298                 valid = true;
299         } else {
300                 rcu_read_lock();
301                 permits = rcu_dereference(vnode->permit_cache);
302                 if (permits) {
303                         for (i = 0; i < permits->nr_permits; i++) {
304                                 if (permits->permits[i].key < key)
305                                         continue;
306                                 if (permits->permits[i].key > key)
307                                         break;
308
309                                 *_access = permits->permits[i].access;
310                                 valid = !permits->invalidated;
311                                 break;
312                         }
313                 }
314                 rcu_read_unlock();
315         }
316
317         if (!valid) {
318                 /* Check the status on the file we're actually interested in
319                  * (the post-processing will cache the result).
320                  */
321                 _debug("no valid permit");
322
323                 ret = afs_fetch_status(vnode, key, false);
324                 if (ret < 0) {
325                         *_access = 0;
326                         _leave(" = %d", ret);
327                         return ret;
328                 }
329                 *_access = vnode->status.caller_access;
330         }
331
332         _leave(" = 0 [access %x]", *_access);
333         return 0;
334 }
335
336 /*
337  * check the permissions on an AFS file
338  * - AFS ACLs are attached to directories only, and a file is controlled by its
339  *   parent directory's ACL
340  */
341 int afs_permission(struct inode *inode, int mask)
342 {
343         struct afs_vnode *vnode = AFS_FS_I(inode);
344         afs_access_t uninitialized_var(access);
345         struct key *key;
346         int ret;
347
348         if (mask & MAY_NOT_BLOCK)
349                 return -ECHILD;
350
351         _enter("{{%llx:%llu},%lx},%x,",
352                vnode->fid.vid, vnode->fid.vnode, vnode->flags, mask);
353
354         key = afs_request_key(vnode->volume->cell);
355         if (IS_ERR(key)) {
356                 _leave(" = %ld [key]", PTR_ERR(key));
357                 return PTR_ERR(key);
358         }
359
360         ret = afs_validate(vnode, key);
361         if (ret < 0)
362                 goto error;
363
364         /* check the permits to see if we've got one yet */
365         ret = afs_check_permit(vnode, key, &access);
366         if (ret < 0)
367                 goto error;
368
369         /* interpret the access mask */
370         _debug("REQ %x ACC %x on %s",
371                mask, access, S_ISDIR(inode->i_mode) ? "dir" : "file");
372
373         if (S_ISDIR(inode->i_mode)) {
374                 if (mask & (MAY_EXEC | MAY_READ | MAY_CHDIR)) {
375                         if (!(access & AFS_ACE_LOOKUP))
376                                 goto permission_denied;
377                 }
378                 if (mask & MAY_WRITE) {
379                         if (!(access & (AFS_ACE_DELETE | /* rmdir, unlink, rename from */
380                                         AFS_ACE_INSERT))) /* create, mkdir, symlink, rename to */
381                                 goto permission_denied;
382                 }
383         } else {
384                 if (!(access & AFS_ACE_LOOKUP))
385                         goto permission_denied;
386                 if ((mask & MAY_EXEC) && !(inode->i_mode & S_IXUSR))
387                         goto permission_denied;
388                 if (mask & (MAY_EXEC | MAY_READ)) {
389                         if (!(access & AFS_ACE_READ))
390                                 goto permission_denied;
391                         if (!(inode->i_mode & S_IRUSR))
392                                 goto permission_denied;
393                 } else if (mask & MAY_WRITE) {
394                         if (!(access & AFS_ACE_WRITE))
395                                 goto permission_denied;
396                         if (!(inode->i_mode & S_IWUSR))
397                                 goto permission_denied;
398                 }
399         }
400
401         key_put(key);
402         _leave(" = %d", ret);
403         return ret;
404
405 permission_denied:
406         ret = -EACCES;
407 error:
408         key_put(key);
409         _leave(" = %d", ret);
410         return ret;
411 }
412
413 void __exit afs_clean_up_permit_cache(void)
414 {
415         int i;
416
417         for (i = 0; i < HASH_SIZE(afs_permits_cache); i++)
418                 WARN_ON_ONCE(!hlist_empty(&afs_permits_cache[i]));
419
420 }