blob: 79df61fe0e5964667f604eadc37b51b1139fd222 [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;
Al Viroaaeb7ec2013-02-28 01:13:19 -050099 /* we'll recheck under lock if there's anything to look in */
Dominique Martinet22e424f2022-01-29 18:42:59 +0900100 if (dentry->d_fsdata) {
Al Viroaaeb7ec2013-02-28 01:13:19 -0500101 struct hlist_head *h = (struct hlist_head *)&dentry->d_fsdata;
Sohaib Mohamed9a268fa2021-10-01 00:04:20 +0200102
Al Viro634095d2013-02-27 22:37:21 -0500103 spin_lock(&dentry->d_lock);
Linus Torvalds56a79b72013-03-03 13:23:02 -0800104 hlist_for_each_entry(fid, h, dlist) {
Eric W. Biedermanb4642552013-01-30 11:48:53 -0800105 if (any || uid_eq(fid->uid, uid)) {
Latchesar Ionkovba176742007-10-17 14:31:07 -0500106 ret = fid;
Dominique Martinetff5e72e2020-11-03 09:35:57 +0100107 refcount_inc(&ret->count);
Latchesar Ionkovba176742007-10-17 14:31:07 -0500108 break;
109 }
110 }
Al Viro634095d2013-02-27 22:37:21 -0500111 spin_unlock(&dentry->d_lock);
Dominique Martinet22e424f2022-01-29 18:42:59 +0900112 } else {
113 if (dentry->d_inode)
114 ret = v9fs_fid_find_inode(dentry->d_inode, uid);
Latchesar Ionkovba176742007-10-17 14:31:07 -0500115 }
116
117 return ret;
118}
119
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530120/*
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 */
125static int build_path_from_dentry(struct v9fs_session_info *v9ses,
Al Viro7880b432017-01-12 04:01:17 -0500126 struct dentry *dentry, const unsigned char ***names)
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530127{
128 int n = 0, i;
Al Viro7880b432017-01-12 04:01:17 -0500129 const unsigned char **wnames;
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530130 struct dentry *ds;
131
132 for (ds = dentry; !IS_ROOT(ds); ds = ds->d_parent)
133 n++;
134
Kees Cook6da2ec52018-06-12 13:55:00 -0700135 wnames = kmalloc_array(n, sizeof(char *), GFP_KERNEL);
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530136 if (!wnames)
137 goto err_out;
138
139 for (ds = dentry, i = (n-1); i >= 0; i--, ds = ds->d_parent)
Al Viro7880b432017-01-12 04:01:17 -0500140 wnames[i] = ds->d_name.name;
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530141
142 *names = wnames;
143 return n;
144err_out:
145 return -ENOMEM;
146}
147
Aneesh Kumar K.V7c9e5922011-02-28 17:04:11 +0530148static struct p9_fid *v9fs_fid_lookup_with_uid(struct dentry *dentry,
Eric W. Biedermanb4642552013-01-30 11:48:53 -0800149 kuid_t uid, int any)
Eric Van Hensbergen3ed84912005-09-09 13:04:24 -0700150{
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530151 struct dentry *ds;
Al Viro7880b432017-01-12 04:01:17 -0500152 const unsigned char **wnames, *uname;
Aneesh Kumar K.V7c9e5922011-02-28 17:04:11 +0530153 int i, n, l, clone, access;
154 struct v9fs_session_info *v9ses;
155 struct p9_fid *fid, *old_fid = NULL;
Eric Van Hensbergen3ed84912005-09-09 13:04:24 -0700156
Aneesh Kumar K.V42869c82011-03-08 16:39:50 +0530157 v9ses = v9fs_dentry2v9ses(dentry);
Latchesar Ionkovba176742007-10-17 14:31:07 -0500158 access = v9ses->flags & V9FS_ACCESS_MASK;
Latchesar Ionkovba176742007-10-17 14:31:07 -0500159 fid = v9fs_fid_find(dentry, uid, any);
160 if (fid)
161 return fid;
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530162 /*
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 Ionkovba176742007-10-17 14:31:07 -0500168 ds = dentry->d_parent;
169 fid = v9fs_fid_find(ds, uid, any);
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530170 if (fid) {
171 /* Found the parent fid do a lookup with that */
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800172 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.Va534c8d2010-06-30 19:18:50 +0530176 goto fid_out;
177 }
178 up_read(&v9ses->rename_sem);
Latchesar Ionkovba176742007-10-17 14:31:07 -0500179
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530180 /* 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 Ionkovba176742007-10-17 14:31:07 -0500186
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530187 if (v9fs_proto_dotu(v9ses) || v9fs_proto_dotl(v9ses))
Sohaib Mohamed9a268fa2021-10-01 00:04:20 +0200188 uname = NULL;
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530189 else
190 uname = v9ses->uname;
Latchesar Ionkovba176742007-10-17 14:31:07 -0500191
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530192 fid = p9_client_attach(v9ses->clnt, NULL, uname, uid,
193 v9ses->aname);
194 if (IS_ERR(fid))
195 return fid;
Latchesar Ionkovba176742007-10-17 14:31:07 -0500196
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530197 v9fs_fid_add(dentry->d_sb->s_root, fid);
198 }
199 /* If we are root ourself just return that */
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800200 if (dentry->d_sb->s_root == dentry) {
Dominique Martinetff5e72e2020-11-03 09:35:57 +0100201 refcount_inc(&fid->count);
Latchesar Ionkovba176742007-10-17 14:31:07 -0500202 return fid;
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800203 }
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530204 /*
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 Ionkovba176742007-10-17 14:31:07 -0500215 clone = 1;
216 i = 0;
217 while (i < n) {
218 l = min(n - i, P9_MAXWELEM);
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530219 /*
220 * We need to hold rename lock when doing a multipath
221 * walk to ensure none of the patch component change
222 */
Latchesar Ionkovba176742007-10-17 14:31:07 -0500223 fid = p9_client_walk(fid, l, &wnames[i], clone);
Eric Van Hensbergenc55703d2008-02-06 19:25:08 -0600224 if (IS_ERR(fid)) {
Aneesh Kumar K.V5b0fa202010-03-19 12:47:26 +0000225 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 Ionkovba176742007-10-17 14:31:07 -0500233 kfree(wnames);
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530234 goto err_out;
Latchesar Ionkovba176742007-10-17 14:31:07 -0500235 }
Aneesh Kumar K.V5b0fa202010-03-19 12:47:26 +0000236 old_fid = fid;
Latchesar Ionkovba176742007-10-17 14:31:07 -0500237 i += l;
238 clone = 0;
239 }
Latchesar Ionkovba176742007-10-17 14:31:07 -0500240 kfree(wnames);
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530241fid_out:
Al Viro5e608672013-02-28 01:50:20 -0500242 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 Martinetff5e72e2020-11-03 09:35:57 +0100250 refcount_inc(&fid->count);
Al Viro5e608672013-02-28 01:50:20 -0500251 spin_unlock(&dentry->d_lock);
252 }
253 }
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530254err_out:
255 up_read(&v9ses->rename_sem);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500256 return fid;
257}
Eric Van Hensbergen3ed84912005-09-09 13:04:24 -0700258
Aneesh Kumar K.V7c9e5922011-02-28 17:04:11 +0530259/**
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
269struct p9_fid *v9fs_fid_lookup(struct dentry *dentry)
270{
Eric W. Biedermanb4642552013-01-30 11:48:53 -0800271 kuid_t uid;
Aneesh Kumar K.V7c9e5922011-02-28 17:04:11 +0530272 int any, access;
273 struct v9fs_session_info *v9ses;
274
Aneesh Kumar K.V42869c82011-03-08 16:39:50 +0530275 v9ses = v9fs_dentry2v9ses(dentry);
Aneesh Kumar K.V7c9e5922011-02-28 17:04:11 +0530276 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. Biedermanb4642552013-01-30 11:48:53 -0800291 uid = INVALID_UID;
Aneesh Kumar K.V7c9e5922011-02-28 17:04:11 +0530292 any = 0;
293 break;
294 }
295 return v9fs_fid_lookup_with_uid(dentry, uid, any);
296}
297
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530298struct p9_fid *v9fs_writeback_fid(struct dentry *dentry)
299{
Aneesh Kumar K.Vdf5d8c82011-03-24 20:38:35 +0530300 int err;
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800301 struct p9_fid *fid, *ofid;
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530302
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800303 ofid = v9fs_fid_lookup_with_uid(dentry, GLOBAL_ROOT_UID, 0);
Dan Carpenterdfd37582020-11-30 23:04:12 -0800304 fid = clone_fid(ofid);
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530305 if (IS_ERR(fid))
306 goto error_out;
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800307 p9_client_clunk(ofid);
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530308 /*
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.V3cf387d2011-02-28 17:03:57 +0530313 */
Aneesh Kumar K.Vdf5d8c82011-03-24 20:38:35 +0530314 err = p9_client_open(fid, O_RDWR);
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530315 if (err < 0) {
316 p9_client_clunk(fid);
317 fid = ERR_PTR(err);
318 goto error_out;
319 }
320error_out:
321 return fid;
322}