blob: 6aab046c98e291ebf701a26c46614baa4a1a427f [file] [log] [blame]
Thomas Gleixner1f327612019-05-28 09:57:16 -07001// SPDX-License-Identifier: GPL-2.0-only
Eric Van Hensbergen3ed84912005-09-09 13:04:24 -07002/*
3 * V9FS FID Management
4 *
Latchesar Ionkovba176742007-10-17 14:31:07 -05005 * Copyright (C) 2007 by Latchesar Ionkov <lucho@ionkov.net>
Eric Van Hensbergen46f6dac2006-03-02 02:54:33 -08006 * Copyright (C) 2005, 2006 by Eric Van Hensbergen <ericvh@gmail.com>
Eric Van Hensbergen3ed84912005-09-09 13:04:24 -07007 */
8
Eric Van Hensbergen3ed84912005-09-09 13:04:24 -07009#include <linux/module.h>
10#include <linux/errno.h>
11#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Al Viro914e2632006-10-18 13:55:46 -040013#include <linux/sched.h>
Eric Van Hensbergen3ed84912005-09-09 13:04:24 -070014#include <linux/idr.h>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050015#include <net/9p/9p.h>
16#include <net/9p/client.h>
Eric Van Hensbergen3ed84912005-09-09 13:04:24 -070017
Eric Van Hensbergen3ed84912005-09-09 13:04:24 -070018#include "v9fs.h"
Eric Van Hensbergen3ed84912005-09-09 13:04:24 -070019#include "v9fs_vfs.h"
Eric Van Hensbergen3ed84912005-09-09 13:04:24 -070020#include "fid.h"
21
David Howellsbc868032021-10-04 22:07:22 +010022static 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 Hensbergen3ed84912005-09-09 13:04:24 -070028/**
Latchesar Ionkovba176742007-10-17 14:31:07 -050029 * v9fs_fid_add - add a fid to a dentry
30 * @dentry: dentry that the fid is being added to
Eric Van Hensbergen3ed84912005-09-09 13:04:24 -070031 * @fid: fid to add
Eric Van Hensbergen3ed84912005-09-09 13:04:24 -070032 *
33 */
Al Viro2ea03e1d2013-02-28 01:18:14 -050034void v9fs_fid_add(struct dentry *dentry, struct p9_fid *fid)
Eric Van Hensbergen3ed84912005-09-09 13:04:24 -070035{
Al Viro634095d2013-02-27 22:37:21 -050036 spin_lock(&dentry->d_lock);
Al Viro5e608672013-02-28 01:50:20 -050037 __add_fid(dentry, fid);
Al Viro634095d2013-02-27 22:37:21 -050038 spin_unlock(&dentry->d_lock);
Eric Van Hensbergen3ed84912005-09-09 13:04:24 -070039}
40
41/**
Greg Kurz987a6482020-09-23 22:11:44 +080042 * v9fs_fid_find_inode - search for an open fid off of the inode list
Eric Van Hensbergen154372e2020-09-23 22:11:43 +080043 * @inode: return a fid pointing to a specific inode
44 * @uid: return a fid belonging to the specified user
45 *
46 */
47
48static struct p9_fid *v9fs_fid_find_inode(struct inode *inode, kuid_t uid)
49{
Greg Kurz987a6482020-09-23 22:11:44 +080050 struct hlist_head *h;
51 struct p9_fid *fid, *ret = NULL;
Eric Van Hensbergen154372e2020-09-23 22:11:43 +080052
53 p9_debug(P9_DEBUG_VFS, " inode: %p\n", inode);
54
Greg Kurz987a6482020-09-23 22:11:44 +080055 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 Carpentercfd1d0f2020-12-01 10:04:34 +030059 refcount_inc(&fid->count);
Eric Van Hensbergen154372e2020-09-23 22:11:43 +080060 ret = fid;
61 break;
62 }
63 }
Greg Kurz987a6482020-09-23 22:11:44 +080064 spin_unlock(&inode->i_lock);
Eric Van Hensbergen154372e2020-09-23 22:11:43 +080065 return ret;
66}
67
68/**
Greg Kurz987a6482020-09-23 22:11:44 +080069 * v9fs_open_fid_add - add an open fid to an inode
David Howellsbc868032021-10-04 22:07:22 +010070 * @inode: inode that the fid is being added to
Greg Kurz987a6482020-09-23 22:11:44 +080071 * @fid: fid to add
72 *
73 */
74
75void 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 Ionkovba176742007-10-17 14:31:07 -050084 * 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. Biedermanb4642552013-01-30 11:48:53 -080091static struct p9_fid *v9fs_fid_find(struct dentry *dentry, kuid_t uid, int any)
Latchesar Ionkovba176742007-10-17 14:31:07 -050092{
Latchesar Ionkovba176742007-10-17 14:31:07 -050093 struct p9_fid *fid, *ret;
94
Al Viro4b8e9922014-08-19 20:17:38 -040095 p9_debug(P9_DEBUG_VFS, " dentry: %pd (%p) uid %d any %d\n",
96 dentry, dentry, from_kuid(&init_user_ns, uid),
Eric W. Biedermanb4642552013-01-30 11:48:53 -080097 any);
Latchesar Ionkovba176742007-10-17 14:31:07 -050098 ret = NULL;
Greg Kurz478ba092020-09-23 22:11:45 +080099
100 if (d_inode(dentry))
101 ret = v9fs_fid_find_inode(d_inode(dentry), uid);
102
Al Viroaaeb7ec2013-02-28 01:13:19 -0500103 /* we'll recheck under lock if there's anything to look in */
Greg Kurz478ba092020-09-23 22:11:45 +0800104 if (!ret && dentry->d_fsdata) {
Al Viroaaeb7ec2013-02-28 01:13:19 -0500105 struct hlist_head *h = (struct hlist_head *)&dentry->d_fsdata;
Sohaib Mohamed9a268fa2021-10-01 00:04:20 +0200106
Al Viro634095d2013-02-27 22:37:21 -0500107 spin_lock(&dentry->d_lock);
Linus Torvalds56a79b72013-03-03 13:23:02 -0800108 hlist_for_each_entry(fid, h, dlist) {
Eric W. Biedermanb4642552013-01-30 11:48:53 -0800109 if (any || uid_eq(fid->uid, uid)) {
Latchesar Ionkovba176742007-10-17 14:31:07 -0500110 ret = fid;
Dominique Martinetff5e72e2020-11-03 09:35:57 +0100111 refcount_inc(&ret->count);
Latchesar Ionkovba176742007-10-17 14:31:07 -0500112 break;
113 }
114 }
Al Viro634095d2013-02-27 22:37:21 -0500115 spin_unlock(&dentry->d_lock);
Latchesar Ionkovba176742007-10-17 14:31:07 -0500116 }
117
118 return ret;
119}
120
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530121/*
122 * We need to hold v9ses->rename_sem as long as we hold references
123 * to returned path array. Array element contain pointers to
124 * dentry names.
125 */
126static int build_path_from_dentry(struct v9fs_session_info *v9ses,
Al Viro7880b432017-01-12 04:01:17 -0500127 struct dentry *dentry, const unsigned char ***names)
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530128{
129 int n = 0, i;
Al Viro7880b432017-01-12 04:01:17 -0500130 const unsigned char **wnames;
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530131 struct dentry *ds;
132
133 for (ds = dentry; !IS_ROOT(ds); ds = ds->d_parent)
134 n++;
135
Kees Cook6da2ec52018-06-12 13:55:00 -0700136 wnames = kmalloc_array(n, sizeof(char *), GFP_KERNEL);
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530137 if (!wnames)
138 goto err_out;
139
140 for (ds = dentry, i = (n-1); i >= 0; i--, ds = ds->d_parent)
Al Viro7880b432017-01-12 04:01:17 -0500141 wnames[i] = ds->d_name.name;
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530142
143 *names = wnames;
144 return n;
145err_out:
146 return -ENOMEM;
147}
148
Aneesh Kumar K.V7c9e5922011-02-28 17:04:11 +0530149static struct p9_fid *v9fs_fid_lookup_with_uid(struct dentry *dentry,
Eric W. Biedermanb4642552013-01-30 11:48:53 -0800150 kuid_t uid, int any)
Eric Van Hensbergen3ed84912005-09-09 13:04:24 -0700151{
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530152 struct dentry *ds;
Al Viro7880b432017-01-12 04:01:17 -0500153 const unsigned char **wnames, *uname;
Aneesh Kumar K.V7c9e5922011-02-28 17:04:11 +0530154 int i, n, l, clone, access;
155 struct v9fs_session_info *v9ses;
156 struct p9_fid *fid, *old_fid = NULL;
Eric Van Hensbergen3ed84912005-09-09 13:04:24 -0700157
Aneesh Kumar K.V42869c82011-03-08 16:39:50 +0530158 v9ses = v9fs_dentry2v9ses(dentry);
Latchesar Ionkovba176742007-10-17 14:31:07 -0500159 access = v9ses->flags & V9FS_ACCESS_MASK;
Latchesar Ionkovba176742007-10-17 14:31:07 -0500160 fid = v9fs_fid_find(dentry, uid, any);
161 if (fid)
162 return fid;
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530163 /*
164 * we don't have a matching fid. To do a TWALK we need
165 * parent fid. We need to prevent rename when we want to
166 * look at the parent.
167 */
168 down_read(&v9ses->rename_sem);
Latchesar Ionkovba176742007-10-17 14:31:07 -0500169 ds = dentry->d_parent;
170 fid = v9fs_fid_find(ds, uid, any);
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530171 if (fid) {
172 /* Found the parent fid do a lookup with that */
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800173 struct p9_fid *ofid = fid;
174
175 fid = p9_client_walk(ofid, 1, &dentry->d_name.name, 1);
176 p9_client_clunk(ofid);
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530177 goto fid_out;
178 }
179 up_read(&v9ses->rename_sem);
Latchesar Ionkovba176742007-10-17 14:31:07 -0500180
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530181 /* start from the root and try to do a lookup */
182 fid = v9fs_fid_find(dentry->d_sb->s_root, uid, any);
183 if (!fid) {
184 /* the user is not attached to the fs yet */
185 if (access == V9FS_ACCESS_SINGLE)
186 return ERR_PTR(-EPERM);
Latchesar Ionkovba176742007-10-17 14:31:07 -0500187
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530188 if (v9fs_proto_dotu(v9ses) || v9fs_proto_dotl(v9ses))
Sohaib Mohamed9a268fa2021-10-01 00:04:20 +0200189 uname = NULL;
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530190 else
191 uname = v9ses->uname;
Latchesar Ionkovba176742007-10-17 14:31:07 -0500192
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530193 fid = p9_client_attach(v9ses->clnt, NULL, uname, uid,
194 v9ses->aname);
195 if (IS_ERR(fid))
196 return fid;
Latchesar Ionkovba176742007-10-17 14:31:07 -0500197
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530198 v9fs_fid_add(dentry->d_sb->s_root, fid);
199 }
200 /* If we are root ourself just return that */
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800201 if (dentry->d_sb->s_root == dentry) {
Dominique Martinetff5e72e2020-11-03 09:35:57 +0100202 refcount_inc(&fid->count);
Latchesar Ionkovba176742007-10-17 14:31:07 -0500203 return fid;
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800204 }
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530205 /*
206 * Do a multipath walk with attached root.
207 * When walking parent we need to make sure we
208 * don't have a parallel rename happening
209 */
210 down_read(&v9ses->rename_sem);
211 n = build_path_from_dentry(v9ses, dentry, &wnames);
212 if (n < 0) {
213 fid = ERR_PTR(n);
214 goto err_out;
215 }
Latchesar Ionkovba176742007-10-17 14:31:07 -0500216 clone = 1;
217 i = 0;
218 while (i < n) {
219 l = min(n - i, P9_MAXWELEM);
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530220 /*
221 * We need to hold rename lock when doing a multipath
222 * walk to ensure none of the patch component change
223 */
Latchesar Ionkovba176742007-10-17 14:31:07 -0500224 fid = p9_client_walk(fid, l, &wnames[i], clone);
Eric Van Hensbergenc55703d2008-02-06 19:25:08 -0600225 if (IS_ERR(fid)) {
Aneesh Kumar K.V5b0fa202010-03-19 12:47:26 +0000226 if (old_fid) {
227 /*
228 * If we fail, clunk fid which are mapping
229 * to path component and not the last component
230 * of the path.
231 */
232 p9_client_clunk(old_fid);
233 }
Latchesar Ionkovba176742007-10-17 14:31:07 -0500234 kfree(wnames);
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530235 goto err_out;
Latchesar Ionkovba176742007-10-17 14:31:07 -0500236 }
Aneesh Kumar K.V5b0fa202010-03-19 12:47:26 +0000237 old_fid = fid;
Latchesar Ionkovba176742007-10-17 14:31:07 -0500238 i += l;
239 clone = 0;
240 }
Latchesar Ionkovba176742007-10-17 14:31:07 -0500241 kfree(wnames);
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530242fid_out:
Al Viro5e608672013-02-28 01:50:20 -0500243 if (!IS_ERR(fid)) {
244 spin_lock(&dentry->d_lock);
245 if (d_unhashed(dentry)) {
246 spin_unlock(&dentry->d_lock);
247 p9_client_clunk(fid);
248 fid = ERR_PTR(-ENOENT);
249 } else {
250 __add_fid(dentry, fid);
Dominique Martinetff5e72e2020-11-03 09:35:57 +0100251 refcount_inc(&fid->count);
Al Viro5e608672013-02-28 01:50:20 -0500252 spin_unlock(&dentry->d_lock);
253 }
254 }
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530255err_out:
256 up_read(&v9ses->rename_sem);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500257 return fid;
258}
Eric Van Hensbergen3ed84912005-09-09 13:04:24 -0700259
Aneesh Kumar K.V7c9e5922011-02-28 17:04:11 +0530260/**
261 * v9fs_fid_lookup - lookup for a fid, try to walk if not found
262 * @dentry: dentry to look for fid in
263 *
264 * Look for a fid in the specified dentry for the current user.
265 * If no fid is found, try to create one walking from a fid from the parent
266 * dentry (if it has one), or the root dentry. If the user haven't accessed
267 * the fs yet, attach now and walk from the root.
268 */
269
270struct p9_fid *v9fs_fid_lookup(struct dentry *dentry)
271{
Eric W. Biedermanb4642552013-01-30 11:48:53 -0800272 kuid_t uid;
Aneesh Kumar K.V7c9e5922011-02-28 17:04:11 +0530273 int any, access;
274 struct v9fs_session_info *v9ses;
275
Aneesh Kumar K.V42869c82011-03-08 16:39:50 +0530276 v9ses = v9fs_dentry2v9ses(dentry);
Aneesh Kumar K.V7c9e5922011-02-28 17:04:11 +0530277 access = v9ses->flags & V9FS_ACCESS_MASK;
278 switch (access) {
279 case V9FS_ACCESS_SINGLE:
280 case V9FS_ACCESS_USER:
281 case V9FS_ACCESS_CLIENT:
282 uid = current_fsuid();
283 any = 0;
284 break;
285
286 case V9FS_ACCESS_ANY:
287 uid = v9ses->uid;
288 any = 1;
289 break;
290
291 default:
Eric W. Biedermanb4642552013-01-30 11:48:53 -0800292 uid = INVALID_UID;
Aneesh Kumar K.V7c9e5922011-02-28 17:04:11 +0530293 any = 0;
294 break;
295 }
296 return v9fs_fid_lookup_with_uid(dentry, uid, any);
297}
298
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530299struct p9_fid *v9fs_writeback_fid(struct dentry *dentry)
300{
Aneesh Kumar K.Vdf5d8c82011-03-24 20:38:35 +0530301 int err;
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800302 struct p9_fid *fid, *ofid;
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530303
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800304 ofid = v9fs_fid_lookup_with_uid(dentry, GLOBAL_ROOT_UID, 0);
Dan Carpenterdfd37582020-11-30 23:04:12 -0800305 fid = clone_fid(ofid);
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530306 if (IS_ERR(fid))
307 goto error_out;
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800308 p9_client_clunk(ofid);
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530309 /*
310 * writeback fid will only be used to write back the
311 * dirty pages. We always request for the open fid in read-write
312 * mode so that a partial page write which result in page
313 * read can work.
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530314 */
Aneesh Kumar K.Vdf5d8c82011-03-24 20:38:35 +0530315 err = p9_client_open(fid, O_RDWR);
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530316 if (err < 0) {
317 p9_client_clunk(fid);
318 fid = ERR_PTR(err);
319 goto error_out;
320 }
321error_out:
322 return fid;
323}