blob: 3b8c4513118f4870afdaf3e7f5751d009d5953b5 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Cache operations for Coda.
4 * For Linux 2.1: (C) 1997 Carnegie Mellon University
5 * For Linux 2.3: (C) 2000 Carnegie Mellon University
6 *
7 * Carnegie Mellon encourages users of this code to contribute improvements
8 * to the Coda project http://www.coda.cs.cmu.edu/ <coda@cs.cmu.edu>.
9 */
10
11#include <linux/types.h>
12#include <linux/kernel.h>
13#include <linux/time.h>
14#include <linux/fs.h>
15#include <linux/stat.h>
16#include <linux/errno.h>
Fabian Frederick834b46c2014-08-08 14:20:33 -070017#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/string.h>
19#include <linux/list.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040020#include <linux/sched.h>
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -040021#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#include <linux/coda.h>
David Howells8fc8b9d2019-07-16 16:28:47 -070024#include "coda_psdev.h"
Al Viro31a203d2011-01-12 16:36:09 -050025#include "coda_linux.h"
26#include "coda_cache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28static atomic_t permission_epoch = ATOMIC_INIT(0);
29
30/* replace or extend an acl cache hit */
31void coda_cache_enter(struct inode *inode, int mask)
32{
33 struct coda_inode_info *cii = ITOC(inode);
34
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -040035 spin_lock(&cii->c_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 cii->c_cached_epoch = atomic_read(&permission_epoch);
Eric W. Biederman17499e32013-01-30 19:36:06 -080037 if (!uid_eq(cii->c_uid, current_fsuid())) {
David Howells97b77022008-11-14 10:38:48 +110038 cii->c_uid = current_fsuid();
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 cii->c_cached_perm = mask;
40 } else
41 cii->c_cached_perm |= mask;
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -040042 spin_unlock(&cii->c_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043}
44
45/* remove cached acl from an inode */
46void coda_cache_clear_inode(struct inode *inode)
47{
48 struct coda_inode_info *cii = ITOC(inode);
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -040049 spin_lock(&cii->c_lock);
Jan Harkes56ee3542007-07-19 01:48:42 -070050 cii->c_cached_epoch = atomic_read(&permission_epoch) - 1;
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -040051 spin_unlock(&cii->c_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052}
53
54/* remove all acl caches */
55void coda_cache_clear_all(struct super_block *sb)
56{
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 atomic_inc(&permission_epoch);
58}
59
60
61/* check if the mask has been matched against the acl already */
62int coda_cache_check(struct inode *inode, int mask)
63{
64 struct coda_inode_info *cii = ITOC(inode);
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -040065 int hit;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -040067 spin_lock(&cii->c_lock);
68 hit = (mask & cii->c_cached_perm) == mask &&
Eric W. Biederman17499e32013-01-30 19:36:06 -080069 uid_eq(cii->c_uid, current_fsuid()) &&
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -040070 cii->c_cached_epoch == atomic_read(&permission_epoch);
71 spin_unlock(&cii->c_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -040073 return hit;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074}
75
76
77/* Purging dentries and children */
78/* The following routines drop dentries which are not
79 in use and flag dentries which are in use to be
80 zapped later.
81
82 The flags are detected by:
83 - coda_dentry_revalidate (for lookups) if the flag is C_PURGE
84 - coda_dentry_delete: to remove dentry from the cache when d_count
85 falls to zero
86 - an inode method coda_revalidate (for attributes) if the
87 flag is C_VATTR
88*/
89
90/* this won't do any harm: just flag all children */
91static void coda_flag_children(struct dentry *parent, int flag)
92{
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 struct dentry *de;
94
Nick Piggin2fd6b7f2011-01-07 17:49:34 +110095 spin_lock(&parent->d_lock);
Al Viro946e51f2014-10-26 19:19:16 -040096 list_for_each_entry(de, &parent->d_subdirs, d_child) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 /* don't know what to do with negative dentries */
David Howells2b0143b2015-03-17 22:25:59 +000098 if (d_inode(de) )
99 coda_flag_inode(d_inode(de), flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100101 spin_unlock(&parent->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return;
103}
104
105void coda_flag_inode_children(struct inode *inode, int flag)
106{
107 struct dentry *alias_de;
108
109 if ( !inode || !S_ISDIR(inode->i_mode))
110 return;
111
112 alias_de = d_find_alias(inode);
113 if (!alias_de)
114 return;
115 coda_flag_children(alias_de, flag);
116 shrink_dcache_parent(alias_de);
117 dput(alias_de);
118}
119