Thomas Gleixner | 1f32761 | 2019-05-28 09:57:16 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Eric Van Hensbergen | 3ed8491 | 2005-09-09 13:04:24 -0700 | [diff] [blame] | 2 | /* |
| 3 | * V9FS FID Management |
| 4 | * |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 5 | * Copyright (C) 2007 by Latchesar Ionkov <lucho@ionkov.net> |
Eric Van Hensbergen | 46f6dac | 2006-03-02 02:54:33 -0800 | [diff] [blame] | 6 | * Copyright (C) 2005, 2006 by Eric Van Hensbergen <ericvh@gmail.com> |
Eric Van Hensbergen | 3ed8491 | 2005-09-09 13:04:24 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
Eric Van Hensbergen | 3ed8491 | 2005-09-09 13:04:24 -0700 | [diff] [blame] | 9 | #include <linux/module.h> |
| 10 | #include <linux/errno.h> |
| 11 | #include <linux/fs.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 12 | #include <linux/slab.h> |
Al Viro | 914e263 | 2006-10-18 13:55:46 -0400 | [diff] [blame] | 13 | #include <linux/sched.h> |
Eric Van Hensbergen | 3ed8491 | 2005-09-09 13:04:24 -0700 | [diff] [blame] | 14 | #include <linux/idr.h> |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 15 | #include <net/9p/9p.h> |
| 16 | #include <net/9p/client.h> |
Eric Van Hensbergen | 3ed8491 | 2005-09-09 13:04:24 -0700 | [diff] [blame] | 17 | |
Eric Van Hensbergen | 3ed8491 | 2005-09-09 13:04:24 -0700 | [diff] [blame] | 18 | #include "v9fs.h" |
Eric Van Hensbergen | 3ed8491 | 2005-09-09 13:04:24 -0700 | [diff] [blame] | 19 | #include "v9fs_vfs.h" |
Eric Van Hensbergen | 3ed8491 | 2005-09-09 13:04:24 -0700 | [diff] [blame] | 20 | #include "fid.h" |
| 21 | |
David Howells | bc86803 | 2021-10-04 22:07:22 +0100 | [diff] [blame] | 22 | static inline void __add_fid(struct dentry *dentry, struct p9_fid *fid) |
| 23 | { |
| 24 | hlist_add_head(&fid->dlist, (struct hlist_head *)&dentry->d_fsdata); |
| 25 | } |
| 26 | |
| 27 | |
Eric Van Hensbergen | 3ed8491 | 2005-09-09 13:04:24 -0700 | [diff] [blame] | 28 | /** |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 29 | * v9fs_fid_add - add a fid to a dentry |
| 30 | * @dentry: dentry that the fid is being added to |
Eric Van Hensbergen | 3ed8491 | 2005-09-09 13:04:24 -0700 | [diff] [blame] | 31 | * @fid: fid to add |
Eric Van Hensbergen | 3ed8491 | 2005-09-09 13:04:24 -0700 | [diff] [blame] | 32 | * |
| 33 | */ |
Al Viro | 2ea03e1d | 2013-02-28 01:18:14 -0500 | [diff] [blame] | 34 | void v9fs_fid_add(struct dentry *dentry, struct p9_fid *fid) |
Eric Van Hensbergen | 3ed8491 | 2005-09-09 13:04:24 -0700 | [diff] [blame] | 35 | { |
Al Viro | 634095d | 2013-02-27 22:37:21 -0500 | [diff] [blame] | 36 | spin_lock(&dentry->d_lock); |
Al Viro | 5e60867 | 2013-02-28 01:50:20 -0500 | [diff] [blame] | 37 | __add_fid(dentry, fid); |
Al Viro | 634095d | 2013-02-27 22:37:21 -0500 | [diff] [blame] | 38 | spin_unlock(&dentry->d_lock); |
Eric Van Hensbergen | 3ed8491 | 2005-09-09 13:04:24 -0700 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | /** |
Greg Kurz | 987a648 | 2020-09-23 22:11:44 +0800 | [diff] [blame] | 42 | * v9fs_fid_find_inode - search for an open fid off of the inode list |
Eric Van Hensbergen | 154372e | 2020-09-23 22:11:43 +0800 | [diff] [blame] | 43 | * @inode: return a fid pointing to a specific inode |
| 44 | * @uid: return a fid belonging to the specified user |
| 45 | * |
| 46 | */ |
| 47 | |
| 48 | static struct p9_fid *v9fs_fid_find_inode(struct inode *inode, kuid_t uid) |
| 49 | { |
Greg Kurz | 987a648 | 2020-09-23 22:11:44 +0800 | [diff] [blame] | 50 | struct hlist_head *h; |
| 51 | struct p9_fid *fid, *ret = NULL; |
Eric Van Hensbergen | 154372e | 2020-09-23 22:11:43 +0800 | [diff] [blame] | 52 | |
| 53 | p9_debug(P9_DEBUG_VFS, " inode: %p\n", inode); |
| 54 | |
Greg Kurz | 987a648 | 2020-09-23 22:11:44 +0800 | [diff] [blame] | 55 | spin_lock(&inode->i_lock); |
| 56 | h = (struct hlist_head *)&inode->i_private; |
| 57 | hlist_for_each_entry(fid, h, ilist) { |
| 58 | if (uid_eq(fid->uid, uid)) { |
Dan Carpenter | cfd1d0f | 2020-12-01 10:04:34 +0300 | [diff] [blame] | 59 | refcount_inc(&fid->count); |
Eric Van Hensbergen | 154372e | 2020-09-23 22:11:43 +0800 | [diff] [blame] | 60 | ret = fid; |
| 61 | break; |
| 62 | } |
| 63 | } |
Greg Kurz | 987a648 | 2020-09-23 22:11:44 +0800 | [diff] [blame] | 64 | spin_unlock(&inode->i_lock); |
Eric Van Hensbergen | 154372e | 2020-09-23 22:11:43 +0800 | [diff] [blame] | 65 | return ret; |
| 66 | } |
| 67 | |
| 68 | /** |
Greg Kurz | 987a648 | 2020-09-23 22:11:44 +0800 | [diff] [blame] | 69 | * v9fs_open_fid_add - add an open fid to an inode |
David Howells | bc86803 | 2021-10-04 22:07:22 +0100 | [diff] [blame] | 70 | * @inode: inode that the fid is being added to |
Greg Kurz | 987a648 | 2020-09-23 22:11:44 +0800 | [diff] [blame] | 71 | * @fid: fid to add |
| 72 | * |
| 73 | */ |
| 74 | |
| 75 | void v9fs_open_fid_add(struct inode *inode, struct p9_fid *fid) |
| 76 | { |
| 77 | spin_lock(&inode->i_lock); |
| 78 | hlist_add_head(&fid->ilist, (struct hlist_head *)&inode->i_private); |
| 79 | spin_unlock(&inode->i_lock); |
| 80 | } |
| 81 | |
| 82 | |
| 83 | /** |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 84 | * v9fs_fid_find - retrieve a fid that belongs to the specified uid |
| 85 | * @dentry: dentry to look for fid in |
| 86 | * @uid: return fid that belongs to the specified user |
| 87 | * @any: if non-zero, return any fid associated with the dentry |
| 88 | * |
| 89 | */ |
| 90 | |
Eric W. Biederman | b464255 | 2013-01-30 11:48:53 -0800 | [diff] [blame] | 91 | static struct p9_fid *v9fs_fid_find(struct dentry *dentry, kuid_t uid, int any) |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 92 | { |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 93 | struct p9_fid *fid, *ret; |
| 94 | |
Al Viro | 4b8e992 | 2014-08-19 20:17:38 -0400 | [diff] [blame] | 95 | p9_debug(P9_DEBUG_VFS, " dentry: %pd (%p) uid %d any %d\n", |
| 96 | dentry, dentry, from_kuid(&init_user_ns, uid), |
Eric W. Biederman | b464255 | 2013-01-30 11:48:53 -0800 | [diff] [blame] | 97 | any); |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 98 | ret = NULL; |
Al Viro | aaeb7ec | 2013-02-28 01:13:19 -0500 | [diff] [blame] | 99 | /* we'll recheck under lock if there's anything to look in */ |
Dominique Martinet | 22e424f | 2022-01-29 18:42:59 +0900 | [diff] [blame] | 100 | if (dentry->d_fsdata) { |
Al Viro | aaeb7ec | 2013-02-28 01:13:19 -0500 | [diff] [blame] | 101 | struct hlist_head *h = (struct hlist_head *)&dentry->d_fsdata; |
Sohaib Mohamed | 9a268fa | 2021-10-01 00:04:20 +0200 | [diff] [blame] | 102 | |
Al Viro | 634095d | 2013-02-27 22:37:21 -0500 | [diff] [blame] | 103 | spin_lock(&dentry->d_lock); |
Linus Torvalds | 56a79b7 | 2013-03-03 13:23:02 -0800 | [diff] [blame] | 104 | hlist_for_each_entry(fid, h, dlist) { |
Eric W. Biederman | b464255 | 2013-01-30 11:48:53 -0800 | [diff] [blame] | 105 | if (any || uid_eq(fid->uid, uid)) { |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 106 | ret = fid; |
Dominique Martinet | ff5e72e | 2020-11-03 09:35:57 +0100 | [diff] [blame] | 107 | refcount_inc(&ret->count); |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 108 | break; |
| 109 | } |
| 110 | } |
Al Viro | 634095d | 2013-02-27 22:37:21 -0500 | [diff] [blame] | 111 | spin_unlock(&dentry->d_lock); |
Dominique Martinet | 22e424f | 2022-01-29 18:42:59 +0900 | [diff] [blame] | 112 | } else { |
| 113 | if (dentry->d_inode) |
| 114 | ret = v9fs_fid_find_inode(dentry->d_inode, uid); |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | return ret; |
| 118 | } |
| 119 | |
Aneesh Kumar K.V | a534c8d | 2010-06-30 19:18:50 +0530 | [diff] [blame] | 120 | /* |
| 121 | * We need to hold v9ses->rename_sem as long as we hold references |
| 122 | * to returned path array. Array element contain pointers to |
| 123 | * dentry names. |
| 124 | */ |
| 125 | static int build_path_from_dentry(struct v9fs_session_info *v9ses, |
Al Viro | 7880b43 | 2017-01-12 04:01:17 -0500 | [diff] [blame] | 126 | struct dentry *dentry, const unsigned char ***names) |
Aneesh Kumar K.V | a534c8d | 2010-06-30 19:18:50 +0530 | [diff] [blame] | 127 | { |
| 128 | int n = 0, i; |
Al Viro | 7880b43 | 2017-01-12 04:01:17 -0500 | [diff] [blame] | 129 | const unsigned char **wnames; |
Aneesh Kumar K.V | a534c8d | 2010-06-30 19:18:50 +0530 | [diff] [blame] | 130 | struct dentry *ds; |
| 131 | |
| 132 | for (ds = dentry; !IS_ROOT(ds); ds = ds->d_parent) |
| 133 | n++; |
| 134 | |
Kees Cook | 6da2ec5 | 2018-06-12 13:55:00 -0700 | [diff] [blame] | 135 | wnames = kmalloc_array(n, sizeof(char *), GFP_KERNEL); |
Aneesh Kumar K.V | a534c8d | 2010-06-30 19:18:50 +0530 | [diff] [blame] | 136 | if (!wnames) |
| 137 | goto err_out; |
| 138 | |
| 139 | for (ds = dentry, i = (n-1); i >= 0; i--, ds = ds->d_parent) |
Al Viro | 7880b43 | 2017-01-12 04:01:17 -0500 | [diff] [blame] | 140 | wnames[i] = ds->d_name.name; |
Aneesh Kumar K.V | a534c8d | 2010-06-30 19:18:50 +0530 | [diff] [blame] | 141 | |
| 142 | *names = wnames; |
| 143 | return n; |
| 144 | err_out: |
| 145 | return -ENOMEM; |
| 146 | } |
| 147 | |
Aneesh Kumar K.V | 7c9e592 | 2011-02-28 17:04:11 +0530 | [diff] [blame] | 148 | static struct p9_fid *v9fs_fid_lookup_with_uid(struct dentry *dentry, |
Eric W. Biederman | b464255 | 2013-01-30 11:48:53 -0800 | [diff] [blame] | 149 | kuid_t uid, int any) |
Eric Van Hensbergen | 3ed8491 | 2005-09-09 13:04:24 -0700 | [diff] [blame] | 150 | { |
Aneesh Kumar K.V | a534c8d | 2010-06-30 19:18:50 +0530 | [diff] [blame] | 151 | struct dentry *ds; |
Al Viro | 7880b43 | 2017-01-12 04:01:17 -0500 | [diff] [blame] | 152 | const unsigned char **wnames, *uname; |
Aneesh Kumar K.V | 7c9e592 | 2011-02-28 17:04:11 +0530 | [diff] [blame] | 153 | int i, n, l, clone, access; |
| 154 | struct v9fs_session_info *v9ses; |
| 155 | struct p9_fid *fid, *old_fid = NULL; |
Eric Van Hensbergen | 3ed8491 | 2005-09-09 13:04:24 -0700 | [diff] [blame] | 156 | |
Aneesh Kumar K.V | 42869c8 | 2011-03-08 16:39:50 +0530 | [diff] [blame] | 157 | v9ses = v9fs_dentry2v9ses(dentry); |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 158 | access = v9ses->flags & V9FS_ACCESS_MASK; |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 159 | fid = v9fs_fid_find(dentry, uid, any); |
| 160 | if (fid) |
| 161 | return fid; |
Aneesh Kumar K.V | a534c8d | 2010-06-30 19:18:50 +0530 | [diff] [blame] | 162 | /* |
| 163 | * we don't have a matching fid. To do a TWALK we need |
| 164 | * parent fid. We need to prevent rename when we want to |
| 165 | * look at the parent. |
| 166 | */ |
| 167 | down_read(&v9ses->rename_sem); |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 168 | ds = dentry->d_parent; |
| 169 | fid = v9fs_fid_find(ds, uid, any); |
Aneesh Kumar K.V | a534c8d | 2010-06-30 19:18:50 +0530 | [diff] [blame] | 170 | if (fid) { |
| 171 | /* Found the parent fid do a lookup with that */ |
Jianyong Wu | 6636b6d | 2020-09-23 22:11:46 +0800 | [diff] [blame] | 172 | struct p9_fid *ofid = fid; |
| 173 | |
| 174 | fid = p9_client_walk(ofid, 1, &dentry->d_name.name, 1); |
| 175 | p9_client_clunk(ofid); |
Aneesh Kumar K.V | a534c8d | 2010-06-30 19:18:50 +0530 | [diff] [blame] | 176 | goto fid_out; |
| 177 | } |
| 178 | up_read(&v9ses->rename_sem); |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 179 | |
Aneesh Kumar K.V | a534c8d | 2010-06-30 19:18:50 +0530 | [diff] [blame] | 180 | /* start from the root and try to do a lookup */ |
| 181 | fid = v9fs_fid_find(dentry->d_sb->s_root, uid, any); |
| 182 | if (!fid) { |
| 183 | /* the user is not attached to the fs yet */ |
| 184 | if (access == V9FS_ACCESS_SINGLE) |
| 185 | return ERR_PTR(-EPERM); |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 186 | |
Aneesh Kumar K.V | a534c8d | 2010-06-30 19:18:50 +0530 | [diff] [blame] | 187 | if (v9fs_proto_dotu(v9ses) || v9fs_proto_dotl(v9ses)) |
Sohaib Mohamed | 9a268fa | 2021-10-01 00:04:20 +0200 | [diff] [blame] | 188 | uname = NULL; |
Aneesh Kumar K.V | a534c8d | 2010-06-30 19:18:50 +0530 | [diff] [blame] | 189 | else |
| 190 | uname = v9ses->uname; |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 191 | |
Aneesh Kumar K.V | a534c8d | 2010-06-30 19:18:50 +0530 | [diff] [blame] | 192 | fid = p9_client_attach(v9ses->clnt, NULL, uname, uid, |
| 193 | v9ses->aname); |
| 194 | if (IS_ERR(fid)) |
| 195 | return fid; |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 196 | |
Aneesh Kumar K.V | a534c8d | 2010-06-30 19:18:50 +0530 | [diff] [blame] | 197 | v9fs_fid_add(dentry->d_sb->s_root, fid); |
| 198 | } |
| 199 | /* If we are root ourself just return that */ |
Jianyong Wu | 6636b6d | 2020-09-23 22:11:46 +0800 | [diff] [blame] | 200 | if (dentry->d_sb->s_root == dentry) { |
Dominique Martinet | ff5e72e | 2020-11-03 09:35:57 +0100 | [diff] [blame] | 201 | refcount_inc(&fid->count); |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 202 | return fid; |
Jianyong Wu | 6636b6d | 2020-09-23 22:11:46 +0800 | [diff] [blame] | 203 | } |
Aneesh Kumar K.V | a534c8d | 2010-06-30 19:18:50 +0530 | [diff] [blame] | 204 | /* |
| 205 | * Do a multipath walk with attached root. |
| 206 | * When walking parent we need to make sure we |
| 207 | * don't have a parallel rename happening |
| 208 | */ |
| 209 | down_read(&v9ses->rename_sem); |
| 210 | n = build_path_from_dentry(v9ses, dentry, &wnames); |
| 211 | if (n < 0) { |
| 212 | fid = ERR_PTR(n); |
| 213 | goto err_out; |
| 214 | } |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 215 | clone = 1; |
| 216 | i = 0; |
| 217 | while (i < n) { |
| 218 | l = min(n - i, P9_MAXWELEM); |
Aneesh Kumar K.V | a534c8d | 2010-06-30 19:18:50 +0530 | [diff] [blame] | 219 | /* |
| 220 | * We need to hold rename lock when doing a multipath |
| 221 | * walk to ensure none of the patch component change |
| 222 | */ |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 223 | fid = p9_client_walk(fid, l, &wnames[i], clone); |
Eric Van Hensbergen | c55703d | 2008-02-06 19:25:08 -0600 | [diff] [blame] | 224 | if (IS_ERR(fid)) { |
Aneesh Kumar K.V | 5b0fa20 | 2010-03-19 12:47:26 +0000 | [diff] [blame] | 225 | if (old_fid) { |
| 226 | /* |
| 227 | * If we fail, clunk fid which are mapping |
| 228 | * to path component and not the last component |
| 229 | * of the path. |
| 230 | */ |
| 231 | p9_client_clunk(old_fid); |
| 232 | } |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 233 | kfree(wnames); |
Aneesh Kumar K.V | a534c8d | 2010-06-30 19:18:50 +0530 | [diff] [blame] | 234 | goto err_out; |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 235 | } |
Aneesh Kumar K.V | 5b0fa20 | 2010-03-19 12:47:26 +0000 | [diff] [blame] | 236 | old_fid = fid; |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 237 | i += l; |
| 238 | clone = 0; |
| 239 | } |
Latchesar Ionkov | ba17674 | 2007-10-17 14:31:07 -0500 | [diff] [blame] | 240 | kfree(wnames); |
Aneesh Kumar K.V | a534c8d | 2010-06-30 19:18:50 +0530 | [diff] [blame] | 241 | fid_out: |
Al Viro | 5e60867 | 2013-02-28 01:50:20 -0500 | [diff] [blame] | 242 | if (!IS_ERR(fid)) { |
| 243 | spin_lock(&dentry->d_lock); |
| 244 | if (d_unhashed(dentry)) { |
| 245 | spin_unlock(&dentry->d_lock); |
| 246 | p9_client_clunk(fid); |
| 247 | fid = ERR_PTR(-ENOENT); |
| 248 | } else { |
| 249 | __add_fid(dentry, fid); |
Dominique Martinet | ff5e72e | 2020-11-03 09:35:57 +0100 | [diff] [blame] | 250 | refcount_inc(&fid->count); |
Al Viro | 5e60867 | 2013-02-28 01:50:20 -0500 | [diff] [blame] | 251 | spin_unlock(&dentry->d_lock); |
| 252 | } |
| 253 | } |
Aneesh Kumar K.V | a534c8d | 2010-06-30 19:18:50 +0530 | [diff] [blame] | 254 | err_out: |
| 255 | up_read(&v9ses->rename_sem); |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 256 | return fid; |
| 257 | } |
Eric Van Hensbergen | 3ed8491 | 2005-09-09 13:04:24 -0700 | [diff] [blame] | 258 | |
Aneesh Kumar K.V | 7c9e592 | 2011-02-28 17:04:11 +0530 | [diff] [blame] | 259 | /** |
| 260 | * v9fs_fid_lookup - lookup for a fid, try to walk if not found |
| 261 | * @dentry: dentry to look for fid in |
| 262 | * |
| 263 | * Look for a fid in the specified dentry for the current user. |
| 264 | * If no fid is found, try to create one walking from a fid from the parent |
| 265 | * dentry (if it has one), or the root dentry. If the user haven't accessed |
| 266 | * the fs yet, attach now and walk from the root. |
| 267 | */ |
| 268 | |
| 269 | struct p9_fid *v9fs_fid_lookup(struct dentry *dentry) |
| 270 | { |
Eric W. Biederman | b464255 | 2013-01-30 11:48:53 -0800 | [diff] [blame] | 271 | kuid_t uid; |
Aneesh Kumar K.V | 7c9e592 | 2011-02-28 17:04:11 +0530 | [diff] [blame] | 272 | int any, access; |
| 273 | struct v9fs_session_info *v9ses; |
| 274 | |
Aneesh Kumar K.V | 42869c8 | 2011-03-08 16:39:50 +0530 | [diff] [blame] | 275 | v9ses = v9fs_dentry2v9ses(dentry); |
Aneesh Kumar K.V | 7c9e592 | 2011-02-28 17:04:11 +0530 | [diff] [blame] | 276 | access = v9ses->flags & V9FS_ACCESS_MASK; |
| 277 | switch (access) { |
| 278 | case V9FS_ACCESS_SINGLE: |
| 279 | case V9FS_ACCESS_USER: |
| 280 | case V9FS_ACCESS_CLIENT: |
| 281 | uid = current_fsuid(); |
| 282 | any = 0; |
| 283 | break; |
| 284 | |
| 285 | case V9FS_ACCESS_ANY: |
| 286 | uid = v9ses->uid; |
| 287 | any = 1; |
| 288 | break; |
| 289 | |
| 290 | default: |
Eric W. Biederman | b464255 | 2013-01-30 11:48:53 -0800 | [diff] [blame] | 291 | uid = INVALID_UID; |
Aneesh Kumar K.V | 7c9e592 | 2011-02-28 17:04:11 +0530 | [diff] [blame] | 292 | any = 0; |
| 293 | break; |
| 294 | } |
| 295 | return v9fs_fid_lookup_with_uid(dentry, uid, any); |
| 296 | } |
| 297 | |
Aneesh Kumar K.V | 3cf387d | 2011-02-28 17:03:57 +0530 | [diff] [blame] | 298 | struct p9_fid *v9fs_writeback_fid(struct dentry *dentry) |
| 299 | { |
Aneesh Kumar K.V | df5d8c8 | 2011-03-24 20:38:35 +0530 | [diff] [blame] | 300 | int err; |
Jianyong Wu | 6636b6d | 2020-09-23 22:11:46 +0800 | [diff] [blame] | 301 | struct p9_fid *fid, *ofid; |
Aneesh Kumar K.V | 3cf387d | 2011-02-28 17:03:57 +0530 | [diff] [blame] | 302 | |
Jianyong Wu | 6636b6d | 2020-09-23 22:11:46 +0800 | [diff] [blame] | 303 | ofid = v9fs_fid_lookup_with_uid(dentry, GLOBAL_ROOT_UID, 0); |
Dan Carpenter | dfd3758 | 2020-11-30 23:04:12 -0800 | [diff] [blame] | 304 | fid = clone_fid(ofid); |
Aneesh Kumar K.V | 3cf387d | 2011-02-28 17:03:57 +0530 | [diff] [blame] | 305 | if (IS_ERR(fid)) |
| 306 | goto error_out; |
Jianyong Wu | 6636b6d | 2020-09-23 22:11:46 +0800 | [diff] [blame] | 307 | p9_client_clunk(ofid); |
Aneesh Kumar K.V | 3cf387d | 2011-02-28 17:03:57 +0530 | [diff] [blame] | 308 | /* |
| 309 | * writeback fid will only be used to write back the |
| 310 | * dirty pages. We always request for the open fid in read-write |
| 311 | * mode so that a partial page write which result in page |
| 312 | * read can work. |
Aneesh Kumar K.V | 3cf387d | 2011-02-28 17:03:57 +0530 | [diff] [blame] | 313 | */ |
Aneesh Kumar K.V | df5d8c8 | 2011-03-24 20:38:35 +0530 | [diff] [blame] | 314 | err = p9_client_open(fid, O_RDWR); |
Aneesh Kumar K.V | 3cf387d | 2011-02-28 17:03:57 +0530 | [diff] [blame] | 315 | if (err < 0) { |
| 316 | p9_client_clunk(fid); |
| 317 | fid = ERR_PTR(err); |
| 318 | goto error_out; |
| 319 | } |
| 320 | error_out: |
| 321 | return fid; |
| 322 | } |