blob: cae301d09cd337a5dfd20c7b86bda7ad38e09e58 [file] [log] [blame]
Thomas Gleixner1f327612019-05-28 09:57:16 -07001// SPDX-License-Identifier: GPL-2.0-only
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06002/*
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06003 * This file contains vfs inode ops for the 9P2000.L protocol.
4 *
5 * Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
6 * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06007 */
8
9#include <linux/module.h>
10#include <linux/errno.h>
11#include <linux/fs.h>
12#include <linux/file.h>
13#include <linux/pagemap.h>
14#include <linux/stat.h>
15#include <linux/string.h>
16#include <linux/inet.h>
17#include <linux/namei.h>
18#include <linux/idr.h>
19#include <linux/sched.h>
20#include <linux/slab.h>
21#include <linux/xattr.h>
22#include <linux/posix_acl.h>
23#include <net/9p/9p.h>
24#include <net/9p/client.h>
25
26#include "v9fs.h"
27#include "v9fs_vfs.h"
28#include "fid.h"
29#include "cache.h"
30#include "xattr.h"
31#include "acl.h"
32
33static int
Christian Brauner549c7292021-01-21 14:19:43 +010034v9fs_vfs_mknod_dotl(struct user_namespace *mnt_userns, struct inode *dir,
35 struct dentry *dentry, umode_t omode, dev_t rdev);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -060036
37/**
David Howellsbc868032021-10-04 22:07:22 +010038 * v9fs_get_fsgid_for_create - Helper function to get the gid for a new object
39 * @dir_inode: The directory inode
40 *
41 * Helper function to get the gid for creating a
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -060042 * new file system object. This checks the S_ISGID to determine the owning
43 * group of the new file system object.
44 */
45
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -080046static kgid_t v9fs_get_fsgid_for_create(struct inode *dir_inode)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -060047{
48 BUG_ON(dir_inode == NULL);
49
50 if (dir_inode->i_mode & S_ISGID) {
51 /* set_gid bit is set.*/
52 return dir_inode->i_gid;
53 }
54 return current_fsgid();
55}
56
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +000057static int v9fs_test_inode_dotl(struct inode *inode, void *data)
58{
59 struct v9fs_inode *v9inode = V9FS_I(inode);
60 struct p9_stat_dotl *st = (struct p9_stat_dotl *)data;
61
62 /* don't match inode of different type */
Al Viro6e3e2c42021-03-01 20:37:10 -050063 if (inode_wrong_type(inode, st->st_mode))
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +000064 return 0;
65
66 if (inode->i_generation != st->st_gen)
67 return 0;
68
69 /* compare qid details */
70 if (memcmp(&v9inode->qid.version,
71 &st->qid.version, sizeof(v9inode->qid.version)))
72 return 0;
73
74 if (v9inode->qid.type != st->qid.type)
75 return 0;
Tuomas Tynkkynen8ee03162017-09-06 17:59:07 +030076
77 if (v9inode->qid.path != st->qid.path)
78 return 0;
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +000079 return 1;
80}
81
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +053082/* Always get a new inode */
83static int v9fs_test_new_inode_dotl(struct inode *inode, void *data)
84{
85 return 0;
86}
87
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +000088static int v9fs_set_inode_dotl(struct inode *inode, void *data)
89{
90 struct v9fs_inode *v9inode = V9FS_I(inode);
91 struct p9_stat_dotl *st = (struct p9_stat_dotl *)data;
92
93 memcpy(&v9inode->qid, &st->qid, sizeof(st->qid));
94 inode->i_generation = st->st_gen;
95 return 0;
96}
97
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +053098static struct inode *v9fs_qid_iget_dotl(struct super_block *sb,
99 struct p9_qid *qid,
100 struct p9_fid *fid,
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530101 struct p9_stat_dotl *st,
102 int new)
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530103{
104 int retval;
105 unsigned long i_ino;
106 struct inode *inode;
107 struct v9fs_session_info *v9ses = sb->s_fs_info;
Dominique Martinet6e195b02021-11-02 22:16:43 +0900108 int (*test)(struct inode *inode, void *data);
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530109
110 if (new)
111 test = v9fs_test_new_inode_dotl;
112 else
113 test = v9fs_test_inode_dotl;
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530114
115 i_ino = v9fs_qid2ino(qid);
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530116 inode = iget5_locked(sb, i_ino, test, v9fs_set_inode_dotl, st);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530117 if (!inode)
118 return ERR_PTR(-ENOMEM);
119 if (!(inode->i_state & I_NEW))
120 return inode;
121 /*
122 * initialize the inode with the stat info
123 * FIXME!! we may need support for stale inodes
124 * later.
125 */
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000126 inode->i_ino = i_ino;
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000127 retval = v9fs_init_inode(v9ses, inode,
128 st->st_mode, new_decode_dev(st->st_rdev));
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530129 if (retval)
130 goto error;
131
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800132 v9fs_stat2inode_dotl(st, inode, 0);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530133 v9fs_cache_inode_get_cookie(inode);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530134 retval = v9fs_get_acl(inode, fid);
135 if (retval)
136 goto error;
137
138 unlock_new_inode(inode);
139 return inode;
140error:
Al Viro0a73d0a2015-07-12 10:34:29 -0400141 iget_failed(inode);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530142 return ERR_PTR(retval);
143
144}
145
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600146struct inode *
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530147v9fs_inode_from_fid_dotl(struct v9fs_session_info *v9ses, struct p9_fid *fid,
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530148 struct super_block *sb, int new)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600149{
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600150 struct p9_stat_dotl *st;
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530151 struct inode *inode = NULL;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600152
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000153 st = p9_client_getattr_dotl(fid, P9_STATS_BASIC | P9_STATS_GEN);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600154 if (IS_ERR(st))
155 return ERR_CAST(st);
156
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530157 inode = v9fs_qid_iget_dotl(sb, &st->qid, fid, st, new);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600158 kfree(st);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530159 return inode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600160}
161
Aneesh Kumar K.Vf88657c2011-08-03 19:55:32 +0530162struct dotl_openflag_map {
163 int open_flag;
164 int dotl_flag;
165};
166
167static int v9fs_mapped_dotl_flags(int flags)
168{
169 int i;
170 int rflags = 0;
171 struct dotl_openflag_map dotl_oflag_map[] = {
172 { O_CREAT, P9_DOTL_CREATE },
173 { O_EXCL, P9_DOTL_EXCL },
174 { O_NOCTTY, P9_DOTL_NOCTTY },
Aneesh Kumar K.Vf88657c2011-08-03 19:55:32 +0530175 { O_APPEND, P9_DOTL_APPEND },
176 { O_NONBLOCK, P9_DOTL_NONBLOCK },
177 { O_DSYNC, P9_DOTL_DSYNC },
178 { FASYNC, P9_DOTL_FASYNC },
179 { O_DIRECT, P9_DOTL_DIRECT },
180 { O_LARGEFILE, P9_DOTL_LARGEFILE },
181 { O_DIRECTORY, P9_DOTL_DIRECTORY },
182 { O_NOFOLLOW, P9_DOTL_NOFOLLOW },
183 { O_NOATIME, P9_DOTL_NOATIME },
184 { O_CLOEXEC, P9_DOTL_CLOEXEC },
185 { O_SYNC, P9_DOTL_SYNC},
186 };
187 for (i = 0; i < ARRAY_SIZE(dotl_oflag_map); i++) {
188 if (flags & dotl_oflag_map[i].open_flag)
189 rflags |= dotl_oflag_map[i].dotl_flag;
190 }
191 return rflags;
192}
193
194/**
195 * v9fs_open_to_dotl_flags- convert Linux specific open flags to
196 * plan 9 open flag.
197 * @flags: flags to convert
198 */
199int v9fs_open_to_dotl_flags(int flags)
200{
201 int rflags = 0;
202
203 /*
204 * We have same bits for P9_DOTL_READONLY, P9_DOTL_WRONLY
205 * and P9_DOTL_NOACCESS
206 */
207 rflags |= flags & O_ACCMODE;
208 rflags |= v9fs_mapped_dotl_flags(flags);
209
210 return rflags;
211}
212
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600213/**
214 * v9fs_vfs_create_dotl - VFS hook to create files for 9P2000.L protocol.
David Howellsbc868032021-10-04 22:07:22 +0100215 * @mnt_userns: The user namespace of the mount
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600216 * @dir: directory inode that is being created
217 * @dentry: dentry that is being deleted
Fabian Frederickfd2916b2014-06-04 16:06:26 -0700218 * @omode: create permissions
David Howellsbc868032021-10-04 22:07:22 +0100219 * @excl: True if the file must not yet exist
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600220 *
221 */
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600222static int
Christian Brauner549c7292021-01-21 14:19:43 +0100223v9fs_vfs_create_dotl(struct user_namespace *mnt_userns, struct inode *dir,
224 struct dentry *dentry, umode_t omode, bool excl)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600225{
Christian Brauner549c7292021-01-21 14:19:43 +0100226 return v9fs_vfs_mknod_dotl(mnt_userns, dir, dentry, omode, 0);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200227}
228
Al Virod9585272012-06-22 12:39:14 +0400229static int
Miklos Szeredie43ae792012-06-05 15:10:26 +0200230v9fs_vfs_atomic_open_dotl(struct inode *dir, struct dentry *dentry,
Dominique Martinet6e195b02021-11-02 22:16:43 +0900231 struct file *file, unsigned int flags, umode_t omode)
Miklos Szeredie43ae792012-06-05 15:10:26 +0200232{
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600233 int err = 0;
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -0800234 kgid_t gid;
Al Virod3fb6122011-07-23 18:37:50 -0400235 umode_t mode;
Al Viro7880b432017-01-12 04:01:17 -0500236 const unsigned char *name = NULL;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600237 struct p9_qid qid;
238 struct inode *inode;
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530239 struct p9_fid *fid = NULL;
240 struct v9fs_inode *v9inode;
241 struct p9_fid *dfid, *ofid, *inode_fid;
242 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600243 struct posix_acl *pacl = NULL, *dacl = NULL;
Miklos Szeredie43ae792012-06-05 15:10:26 +0200244 struct dentry *res = NULL;
245
Al Viro00699ad2016-07-05 09:44:53 -0400246 if (d_in_lookup(dentry)) {
Al Viro00cd8dd2012-06-10 17:13:09 -0400247 res = v9fs_vfs_lookup(dir, dentry, 0);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200248 if (IS_ERR(res))
Al Virod9585272012-06-22 12:39:14 +0400249 return PTR_ERR(res);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200250
251 if (res)
252 dentry = res;
253 }
254
255 /* Only creates */
David Howells2b0143b2015-03-17 22:25:59 +0000256 if (!(flags & O_CREAT) || d_really_is_positive(dentry))
M. Mohan Kumarb6f4bee2013-02-05 14:25:05 +0530257 return finish_no_open(file, res);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600258
259 v9ses = v9fs_inode2v9ses(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600260
Al Viro7880b432017-01-12 04:01:17 -0500261 name = dentry->d_name.name;
Dominique Martinet6e195b02021-11-02 22:16:43 +0900262 p9_debug(P9_DEBUG_VFS, "name:%s flags:0x%x mode:0x%x\n",
Joe Perches5d385152011-11-28 10:40:46 -0800263 name, flags, omode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600264
Al Viro77d5a6b2016-05-29 15:29:26 -0400265 dfid = v9fs_parent_fid(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600266 if (IS_ERR(dfid)) {
267 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800268 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Al Virod9585272012-06-22 12:39:14 +0400269 goto out;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600270 }
271
272 /* clone a fid to use for creation */
Al Viro7d50a292016-08-03 11:12:12 -0400273 ofid = clone_fid(dfid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600274 if (IS_ERR(ofid)) {
275 err = PTR_ERR(ofid);
Joe Perches5d385152011-11-28 10:40:46 -0800276 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
Al Virod9585272012-06-22 12:39:14 +0400277 goto out;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600278 }
279
280 gid = v9fs_get_fsgid_for_create(dir);
281
282 mode = omode;
283 /* Update mode based on ACL value */
284 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
285 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800286 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in creat %d\n",
287 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600288 goto error;
289 }
Aneesh Kumar K.Vf88657c2011-08-03 19:55:32 +0530290 err = p9_client_create_dotl(ofid, name, v9fs_open_to_dotl_flags(flags),
291 mode, gid, &qid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600292 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800293 p9_debug(P9_DEBUG_VFS, "p9_client_open_dotl failed in creat %d\n",
294 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600295 goto error;
296 }
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530297 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600298
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600299 /* instantiate inode and assign the unopened fid to the dentry */
300 fid = p9_client_walk(dfid, 1, &name, 1);
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800301 p9_client_clunk(dfid);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600302 if (IS_ERR(fid)) {
303 err = PTR_ERR(fid);
Joe Perches5d385152011-11-28 10:40:46 -0800304 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600305 fid = NULL;
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600306 goto error;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600307 }
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530308 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600309 if (IS_ERR(inode)) {
310 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800311 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n", err);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600312 goto error;
313 }
Al Viro3592ac42013-01-31 13:45:39 -0500314 /* Now set the ACL based on the default value */
315 v9fs_set_create_acl(inode, fid, dacl, pacl);
316
Al Viro2ea03e1d2013-02-28 01:18:14 -0500317 v9fs_fid_add(dentry, fid);
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000318 d_instantiate(dentry, inode);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600319
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530320 v9inode = V9FS_I(inode);
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530321 mutex_lock(&v9inode->v_mutex);
Dominique Martinetfb89b452014-01-10 13:44:09 +0100322 if ((v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) &&
323 !v9inode->writeback_fid &&
Aneesh Kumar K.V7add6972011-03-08 16:39:49 +0530324 ((flags & O_ACCMODE) != O_RDONLY)) {
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530325 /*
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530326 * clone a fid and add it to writeback_fid
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530327 * we do it during open time instead of
328 * page dirty time via write_begin/page_mkwrite
329 * because we want write after unlink usecase
330 * to work.
331 */
332 inode_fid = v9fs_writeback_fid(dentry);
333 if (IS_ERR(inode_fid)) {
334 err = PTR_ERR(inode_fid);
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530335 mutex_unlock(&v9inode->v_mutex);
Aneesh Kumar K.V398c4f02011-05-20 18:55:51 +0000336 goto err_clunk_old_fid;
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530337 }
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530338 v9inode->writeback_fid = (void *) inode_fid;
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530339 }
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530340 mutex_unlock(&v9inode->v_mutex);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600341 /* Since we are opening a file, assign the open fid to the file */
Al Virobe12af32018-06-08 11:44:56 -0400342 err = finish_open(file, dentry, generic_file_open);
Al Viro30d90492012-06-22 12:40:19 +0400343 if (err)
Aneesh Kumar K.V398c4f02011-05-20 18:55:51 +0000344 goto err_clunk_old_fid;
Al Viro30d90492012-06-22 12:40:19 +0400345 file->private_data = ofid;
Dominique Martinetfb89b452014-01-10 13:44:09 +0100346 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE)
David Howells24e42e32020-11-18 09:06:42 +0000347 fscache_use_cookie(v9fs_inode_cookie(v9inode),
348 file->f_mode & FMODE_WRITE);
Greg Kurz987a6482020-09-23 22:11:44 +0800349 v9fs_open_fid_add(inode, ofid);
Al Viro73a09dd2018-06-08 13:22:02 -0400350 file->f_mode |= FMODE_CREATED;
Miklos Szeredie43ae792012-06-05 15:10:26 +0200351out:
Al Viro5fa63002013-01-31 13:31:23 -0500352 v9fs_put_acl(dacl, pacl);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200353 dput(res);
Al Virod9585272012-06-22 12:39:14 +0400354 return err;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600355
356error:
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600357 if (fid)
358 p9_client_clunk(fid);
Aneesh Kumar K.V398c4f02011-05-20 18:55:51 +0000359err_clunk_old_fid:
360 if (ofid)
361 p9_client_clunk(ofid);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200362 goto out;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600363}
364
365/**
366 * v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory
David Howellsbc868032021-10-04 22:07:22 +0100367 * @mnt_userns: The user namespace of the mount
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600368 * @dir: inode that is being unlinked
369 * @dentry: dentry that is being unlinked
Fabian Frederickfd2916b2014-06-04 16:06:26 -0700370 * @omode: mode for new directory
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600371 *
372 */
373
Christian Brauner549c7292021-01-21 14:19:43 +0100374static int v9fs_vfs_mkdir_dotl(struct user_namespace *mnt_userns,
375 struct inode *dir, struct dentry *dentry,
376 umode_t omode)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600377{
378 int err;
379 struct v9fs_session_info *v9ses;
380 struct p9_fid *fid = NULL, *dfid = NULL;
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -0800381 kgid_t gid;
Al Viro7880b432017-01-12 04:01:17 -0500382 const unsigned char *name;
Al Virod3fb6122011-07-23 18:37:50 -0400383 umode_t mode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600384 struct inode *inode;
385 struct p9_qid qid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600386 struct posix_acl *dacl = NULL, *pacl = NULL;
387
Al Viro4b8e9922014-08-19 20:17:38 -0400388 p9_debug(P9_DEBUG_VFS, "name %pd\n", dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600389 err = 0;
390 v9ses = v9fs_inode2v9ses(dir);
391
392 omode |= S_IFDIR;
393 if (dir->i_mode & S_ISGID)
394 omode |= S_ISGID;
395
Al Viro77d5a6b2016-05-29 15:29:26 -0400396 dfid = v9fs_parent_fid(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600397 if (IS_ERR(dfid)) {
398 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800399 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600400 dfid = NULL;
401 goto error;
402 }
403
404 gid = v9fs_get_fsgid_for_create(dir);
405 mode = omode;
406 /* Update mode based on ACL value */
407 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
408 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800409 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mkdir %d\n",
410 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600411 goto error;
412 }
Al Viro7880b432017-01-12 04:01:17 -0500413 name = dentry->d_name.name;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600414 err = p9_client_mkdir_dotl(dfid, name, mode, gid, &qid);
415 if (err < 0)
416 goto error;
Al Viro3592ac42013-01-31 13:45:39 -0500417 fid = p9_client_walk(dfid, 1, &name, 1);
418 if (IS_ERR(fid)) {
419 err = PTR_ERR(fid);
420 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
421 err);
422 fid = NULL;
423 goto error;
424 }
425
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600426 /* instantiate inode and assign the unopened fid to the dentry */
427 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530428 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600429 if (IS_ERR(inode)) {
430 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800431 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
432 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600433 goto error;
434 }
Al Viro2ea03e1d2013-02-28 01:18:14 -0500435 v9fs_fid_add(dentry, fid);
Al Viro3592ac42013-01-31 13:45:39 -0500436 v9fs_set_create_acl(inode, fid, dacl, pacl);
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000437 d_instantiate(dentry, inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600438 fid = NULL;
Al Viro2ea03e1d2013-02-28 01:18:14 -0500439 err = 0;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600440 } else {
441 /*
442 * Not in cached mode. No need to populate
443 * inode with stat. We need to get an inode
444 * so that we can set the acl with dentry
445 */
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000446 inode = v9fs_get_inode(dir->i_sb, mode, 0);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600447 if (IS_ERR(inode)) {
448 err = PTR_ERR(inode);
449 goto error;
450 }
Al Viro3592ac42013-01-31 13:45:39 -0500451 v9fs_set_create_acl(inode, fid, dacl, pacl);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600452 d_instantiate(dentry, inode);
453 }
Aneesh Kumar K.Vb271ec42011-02-28 17:04:05 +0530454 inc_nlink(dir);
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530455 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600456error:
457 if (fid)
458 p9_client_clunk(fid);
Al Viro5fa63002013-01-31 13:31:23 -0500459 v9fs_put_acl(dacl, pacl);
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800460 p9_client_clunk(dfid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600461 return err;
462}
463
464static int
Christian Brauner549c7292021-01-21 14:19:43 +0100465v9fs_vfs_getattr_dotl(struct user_namespace *mnt_userns,
466 const struct path *path, struct kstat *stat,
467 u32 request_mask, unsigned int flags)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600468{
David Howellsa528d352017-01-31 16:46:22 +0000469 struct dentry *dentry = path->dentry;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600470 struct v9fs_session_info *v9ses;
471 struct p9_fid *fid;
472 struct p9_stat_dotl *st;
473
Joe Perches5d385152011-11-28 10:40:46 -0800474 p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry);
Aneesh Kumar K.V42869c82011-03-08 16:39:50 +0530475 v9ses = v9fs_dentry2v9ses(dentry);
Aneesh Kumar K.Va1211902011-02-28 17:04:01 +0530476 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
Christian Brauner0d56a452021-01-21 14:19:30 +0100477 generic_fillattr(&init_user_ns, d_inode(dentry), stat);
Aneesh Kumar K.Va1211902011-02-28 17:04:01 +0530478 return 0;
479 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600480 fid = v9fs_fid_lookup(dentry);
481 if (IS_ERR(fid))
482 return PTR_ERR(fid);
483
484 /* Ask for all the fields in stat structure. Server will return
485 * whatever it supports
486 */
487
488 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800489 p9_client_clunk(fid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600490 if (IS_ERR(st))
491 return PTR_ERR(st);
492
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800493 v9fs_stat2inode_dotl(st, d_inode(dentry), 0);
Christian Brauner0d56a452021-01-21 14:19:30 +0100494 generic_fillattr(&init_user_ns, d_inode(dentry), stat);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600495 /* Change block size to what the server returned */
496 stat->blksize = st->st_blksize;
497
498 kfree(st);
499 return 0;
500}
501
Aneesh Kumar K.Vf7666192011-12-18 23:03:13 +0530502/*
503 * Attribute flags.
504 */
505#define P9_ATTR_MODE (1 << 0)
506#define P9_ATTR_UID (1 << 1)
507#define P9_ATTR_GID (1 << 2)
508#define P9_ATTR_SIZE (1 << 3)
509#define P9_ATTR_ATIME (1 << 4)
510#define P9_ATTR_MTIME (1 << 5)
511#define P9_ATTR_CTIME (1 << 6)
512#define P9_ATTR_ATIME_SET (1 << 7)
513#define P9_ATTR_MTIME_SET (1 << 8)
514
515struct dotl_iattr_map {
516 int iattr_valid;
517 int p9_iattr_valid;
518};
519
520static int v9fs_mapped_iattr_valid(int iattr_valid)
521{
522 int i;
523 int p9_iattr_valid = 0;
524 struct dotl_iattr_map dotl_iattr_map[] = {
525 { ATTR_MODE, P9_ATTR_MODE },
526 { ATTR_UID, P9_ATTR_UID },
527 { ATTR_GID, P9_ATTR_GID },
528 { ATTR_SIZE, P9_ATTR_SIZE },
529 { ATTR_ATIME, P9_ATTR_ATIME },
530 { ATTR_MTIME, P9_ATTR_MTIME },
531 { ATTR_CTIME, P9_ATTR_CTIME },
532 { ATTR_ATIME_SET, P9_ATTR_ATIME_SET },
533 { ATTR_MTIME_SET, P9_ATTR_MTIME_SET },
534 };
535 for (i = 0; i < ARRAY_SIZE(dotl_iattr_map); i++) {
536 if (iattr_valid & dotl_iattr_map[i].iattr_valid)
537 p9_iattr_valid |= dotl_iattr_map[i].p9_iattr_valid;
538 }
539 return p9_iattr_valid;
540}
541
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600542/**
543 * v9fs_vfs_setattr_dotl - set file metadata
David Howellsbc868032021-10-04 22:07:22 +0100544 * @mnt_userns: The user namespace of the mount
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600545 * @dentry: file whose metadata to set
546 * @iattr: metadata assignment structure
547 *
548 */
549
Christian Brauner549c7292021-01-21 14:19:43 +0100550int v9fs_vfs_setattr_dotl(struct user_namespace *mnt_userns,
551 struct dentry *dentry, struct iattr *iattr)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600552{
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800553 int retval, use_dentry = 0;
Jianyong Wu66246642020-07-10 18:15:48 +0800554 struct p9_fid *fid = NULL;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600555 struct p9_iattr_dotl p9attr;
David Howells2b0143b2015-03-17 22:25:59 +0000556 struct inode *inode = d_inode(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600557
Joe Perches5d385152011-11-28 10:40:46 -0800558 p9_debug(P9_DEBUG_VFS, "\n");
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600559
Christian Brauner2f221d62021-01-21 14:19:26 +0100560 retval = setattr_prepare(&init_user_ns, dentry, iattr);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600561 if (retval)
562 return retval;
563
Aneesh Kumar K.Vf7666192011-12-18 23:03:13 +0530564 p9attr.valid = v9fs_mapped_iattr_valid(iattr->ia_valid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600565 p9attr.mode = iattr->ia_mode;
566 p9attr.uid = iattr->ia_uid;
567 p9attr.gid = iattr->ia_gid;
568 p9attr.size = iattr->ia_size;
569 p9attr.atime_sec = iattr->ia_atime.tv_sec;
570 p9attr.atime_nsec = iattr->ia_atime.tv_nsec;
571 p9attr.mtime_sec = iattr->ia_mtime.tv_sec;
572 p9attr.mtime_nsec = iattr->ia_mtime.tv_nsec;
573
Jianyong Wu66246642020-07-10 18:15:48 +0800574 if (iattr->ia_valid & ATTR_FILE) {
575 fid = iattr->ia_file->private_data;
576 WARN_ON(!fid);
577 }
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800578 if (!fid) {
Jianyong Wu66246642020-07-10 18:15:48 +0800579 fid = v9fs_fid_lookup(dentry);
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800580 use_dentry = 1;
581 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600582 if (IS_ERR(fid))
583 return PTR_ERR(fid);
584
Aneesh Kumar K.V3dc54362011-02-28 17:04:11 +0530585 /* Write all dirty data */
Al Virobe308f02013-01-31 12:58:16 -0500586 if (S_ISREG(inode->i_mode))
587 filemap_write_and_wait(inode->i_mapping);
Aneesh Kumar K.V3dc54362011-02-28 17:04:11 +0530588
Aneesh Kumar K.Vf10fc502011-02-28 17:04:10 +0530589 retval = p9_client_setattr(fid, &p9attr);
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800590 if (retval < 0) {
591 if (use_dentry)
592 p9_client_clunk(fid);
Aneesh Kumar K.Vf10fc502011-02-28 17:04:10 +0530593 return retval;
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800594 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600595
Aneesh Kumar K.V059c1382011-03-08 16:39:48 +0530596 if ((iattr->ia_valid & ATTR_SIZE) &&
Al Virobe308f02013-01-31 12:58:16 -0500597 iattr->ia_size != i_size_read(inode))
598 truncate_setsize(inode, iattr->ia_size);
Aneesh Kumar K.V059c1382011-03-08 16:39:48 +0530599
Al Virobe308f02013-01-31 12:58:16 -0500600 v9fs_invalidate_inode_attr(inode);
Christian Brauner2f221d62021-01-21 14:19:26 +0100601 setattr_copy(&init_user_ns, inode, iattr);
Al Virobe308f02013-01-31 12:58:16 -0500602 mark_inode_dirty(inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600603 if (iattr->ia_valid & ATTR_MODE) {
604 /* We also want to update ACL when we update mode bits */
Al Virobe308f02013-01-31 12:58:16 -0500605 retval = v9fs_acl_chmod(inode, fid);
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800606 if (retval < 0) {
607 if (use_dentry)
608 p9_client_clunk(fid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600609 return retval;
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800610 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600611 }
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800612 if (use_dentry)
613 p9_client_clunk(fid);
614
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600615 return 0;
616}
617
618/**
619 * v9fs_stat2inode_dotl - populate an inode structure with stat info
620 * @stat: stat structure
621 * @inode: inode to populate
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800622 * @flags: ctrl flags (e.g. V9FS_STAT2INODE_KEEP_ISIZE)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600623 *
624 */
625
626void
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800627v9fs_stat2inode_dotl(struct p9_stat_dotl *stat, struct inode *inode,
628 unsigned int flags)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600629{
Al Viro3eda0de2011-07-26 02:53:22 -0400630 umode_t mode;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530631 struct v9fs_inode *v9inode = V9FS_I(inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600632
633 if ((stat->st_result_mask & P9_STATS_BASIC) == P9_STATS_BASIC) {
634 inode->i_atime.tv_sec = stat->st_atime_sec;
635 inode->i_atime.tv_nsec = stat->st_atime_nsec;
636 inode->i_mtime.tv_sec = stat->st_mtime_sec;
637 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
638 inode->i_ctime.tv_sec = stat->st_ctime_sec;
639 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
640 inode->i_uid = stat->st_uid;
641 inode->i_gid = stat->st_gid;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200642 set_nlink(inode, stat->st_nlink);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600643
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000644 mode = stat->st_mode & S_IALLUGO;
645 mode |= inode->i_mode & ~S_IALLUGO;
646 inode->i_mode = mode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600647
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800648 if (!(flags & V9FS_STAT2INODE_KEEP_ISIZE))
649 v9fs_i_size_write(inode, stat->st_size);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600650 inode->i_blocks = stat->st_blocks;
651 } else {
652 if (stat->st_result_mask & P9_STATS_ATIME) {
653 inode->i_atime.tv_sec = stat->st_atime_sec;
654 inode->i_atime.tv_nsec = stat->st_atime_nsec;
655 }
656 if (stat->st_result_mask & P9_STATS_MTIME) {
657 inode->i_mtime.tv_sec = stat->st_mtime_sec;
658 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
659 }
660 if (stat->st_result_mask & P9_STATS_CTIME) {
661 inode->i_ctime.tv_sec = stat->st_ctime_sec;
662 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
663 }
664 if (stat->st_result_mask & P9_STATS_UID)
665 inode->i_uid = stat->st_uid;
666 if (stat->st_result_mask & P9_STATS_GID)
667 inode->i_gid = stat->st_gid;
668 if (stat->st_result_mask & P9_STATS_NLINK)
Miklos Szeredibfe86842011-10-28 14:13:29 +0200669 set_nlink(inode, stat->st_nlink);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600670 if (stat->st_result_mask & P9_STATS_MODE) {
Al Virob577d0c2021-01-31 14:37:39 -0500671 mode = stat->st_mode & S_IALLUGO;
672 mode |= inode->i_mode & ~S_IALLUGO;
673 inode->i_mode = mode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600674 }
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800675 if (!(flags & V9FS_STAT2INODE_KEEP_ISIZE) &&
676 stat->st_result_mask & P9_STATS_SIZE)
677 v9fs_i_size_write(inode, stat->st_size);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600678 if (stat->st_result_mask & P9_STATS_BLOCKS)
679 inode->i_blocks = stat->st_blocks;
680 }
681 if (stat->st_result_mask & P9_STATS_GEN)
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000682 inode->i_generation = stat->st_gen;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600683
684 /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION
685 * because the inode structure does not have fields for them.
686 */
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530687 v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600688}
689
690static int
Christian Brauner549c7292021-01-21 14:19:43 +0100691v9fs_vfs_symlink_dotl(struct user_namespace *mnt_userns, struct inode *dir,
692 struct dentry *dentry, const char *symname)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600693{
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600694 int err;
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -0800695 kgid_t gid;
Al Viro7880b432017-01-12 04:01:17 -0500696 const unsigned char *name;
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530697 struct p9_qid qid;
698 struct inode *inode;
699 struct p9_fid *dfid;
700 struct p9_fid *fid = NULL;
701 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600702
Al Viro7880b432017-01-12 04:01:17 -0500703 name = dentry->d_name.name;
Joe Perches5d385152011-11-28 10:40:46 -0800704 p9_debug(P9_DEBUG_VFS, "%lu,%s,%s\n", dir->i_ino, name, symname);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600705 v9ses = v9fs_inode2v9ses(dir);
706
Al Viro77d5a6b2016-05-29 15:29:26 -0400707 dfid = v9fs_parent_fid(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600708 if (IS_ERR(dfid)) {
709 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800710 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600711 return err;
712 }
713
714 gid = v9fs_get_fsgid_for_create(dir);
715
716 /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */
Al Viro7880b432017-01-12 04:01:17 -0500717 err = p9_client_symlink(dfid, name, symname, gid, &qid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600718
719 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800720 p9_debug(P9_DEBUG_VFS, "p9_client_symlink failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600721 goto error;
722 }
723
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530724 v9fs_invalidate_inode_attr(dir);
Dominique Martinetfb89b452014-01-10 13:44:09 +0100725 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600726 /* Now walk from the parent so we can get an unopened fid. */
727 fid = p9_client_walk(dfid, 1, &name, 1);
728 if (IS_ERR(fid)) {
729 err = PTR_ERR(fid);
Joe Perches5d385152011-11-28 10:40:46 -0800730 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
731 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600732 fid = NULL;
733 goto error;
734 }
735
736 /* instantiate inode and assign the unopened fid to dentry */
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530737 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600738 if (IS_ERR(inode)) {
739 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800740 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
741 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600742 goto error;
743 }
Al Viro2ea03e1d2013-02-28 01:18:14 -0500744 v9fs_fid_add(dentry, fid);
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000745 d_instantiate(dentry, inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600746 fid = NULL;
Al Viro2ea03e1d2013-02-28 01:18:14 -0500747 err = 0;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600748 } else {
749 /* Not in cached mode. No need to populate inode with stat */
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000750 inode = v9fs_get_inode(dir->i_sb, S_IFLNK, 0);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600751 if (IS_ERR(inode)) {
752 err = PTR_ERR(inode);
753 goto error;
754 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600755 d_instantiate(dentry, inode);
756 }
757
758error:
759 if (fid)
760 p9_client_clunk(fid);
761
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800762 p9_client_clunk(dfid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600763 return err;
764}
765
766/**
767 * v9fs_vfs_link_dotl - create a hardlink for dotl
768 * @old_dentry: dentry for file to link to
769 * @dir: inode destination for new link
770 * @dentry: dentry for link
771 *
772 */
773
774static int
775v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir,
776 struct dentry *dentry)
777{
778 int err;
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530779 struct p9_fid *dfid, *oldfid;
780 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600781
Al Viro4b8e9922014-08-19 20:17:38 -0400782 p9_debug(P9_DEBUG_VFS, "dir ino: %lu, old_name: %pd, new_name: %pd\n",
783 dir->i_ino, old_dentry, dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600784
785 v9ses = v9fs_inode2v9ses(dir);
Al Viro77d5a6b2016-05-29 15:29:26 -0400786 dfid = v9fs_parent_fid(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600787 if (IS_ERR(dfid))
788 return PTR_ERR(dfid);
789
790 oldfid = v9fs_fid_lookup(old_dentry);
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800791 if (IS_ERR(oldfid)) {
792 p9_client_clunk(dfid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600793 return PTR_ERR(oldfid);
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800794 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600795
Al Viro7880b432017-01-12 04:01:17 -0500796 err = p9_client_link(dfid, oldfid, dentry->d_name.name);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600797
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800798 p9_client_clunk(dfid);
799 p9_client_clunk(oldfid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600800 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800801 p9_debug(P9_DEBUG_VFS, "p9_client_link failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600802 return err;
803 }
804
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530805 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600806 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
807 /* Get the latest stat info from server. */
808 struct p9_fid *fid;
Dominique Martinet6e195b02021-11-02 22:16:43 +0900809
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600810 fid = v9fs_fid_lookup(old_dentry);
811 if (IS_ERR(fid))
812 return PTR_ERR(fid);
813
David Howells2b0143b2015-03-17 22:25:59 +0000814 v9fs_refresh_inode_dotl(fid, d_inode(old_dentry));
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800815 p9_client_clunk(fid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600816 }
David Howells2b0143b2015-03-17 22:25:59 +0000817 ihold(d_inode(old_dentry));
818 d_instantiate(dentry, d_inode(old_dentry));
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600819
820 return err;
821}
822
823/**
824 * v9fs_vfs_mknod_dotl - create a special file
David Howellsbc868032021-10-04 22:07:22 +0100825 * @mnt_userns: The user namespace of the mount
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600826 * @dir: inode destination for new link
827 * @dentry: dentry for file
Fabian Frederickfd2916b2014-06-04 16:06:26 -0700828 * @omode: mode for creation
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600829 * @rdev: device associated with special file
830 *
831 */
832static int
Christian Brauner549c7292021-01-21 14:19:43 +0100833v9fs_vfs_mknod_dotl(struct user_namespace *mnt_userns, struct inode *dir,
834 struct dentry *dentry, umode_t omode, dev_t rdev)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600835{
836 int err;
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -0800837 kgid_t gid;
Al Viro7880b432017-01-12 04:01:17 -0500838 const unsigned char *name;
Al Virod3fb6122011-07-23 18:37:50 -0400839 umode_t mode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600840 struct v9fs_session_info *v9ses;
841 struct p9_fid *fid = NULL, *dfid = NULL;
842 struct inode *inode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600843 struct p9_qid qid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600844 struct posix_acl *dacl = NULL, *pacl = NULL;
845
Dominique Martinet6e195b02021-11-02 22:16:43 +0900846 p9_debug(P9_DEBUG_VFS, " %lu,%pd mode: %x MAJOR: %u MINOR: %u\n",
Al Viroa4555892014-10-21 20:11:25 -0400847 dir->i_ino, dentry, omode,
Joe Perches5d385152011-11-28 10:40:46 -0800848 MAJOR(rdev), MINOR(rdev));
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600849
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600850 v9ses = v9fs_inode2v9ses(dir);
Al Viro77d5a6b2016-05-29 15:29:26 -0400851 dfid = v9fs_parent_fid(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600852 if (IS_ERR(dfid)) {
853 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800854 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600855 dfid = NULL;
856 goto error;
857 }
858
859 gid = v9fs_get_fsgid_for_create(dir);
860 mode = omode;
861 /* Update mode based on ACL value */
862 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
863 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800864 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mknod %d\n",
865 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600866 goto error;
867 }
Al Viro7880b432017-01-12 04:01:17 -0500868 name = dentry->d_name.name;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600869
870 err = p9_client_mknod_dotl(dfid, name, mode, rdev, gid, &qid);
871 if (err < 0)
872 goto error;
873
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530874 v9fs_invalidate_inode_attr(dir);
Al Viro3592ac42013-01-31 13:45:39 -0500875 fid = p9_client_walk(dfid, 1, &name, 1);
876 if (IS_ERR(fid)) {
877 err = PTR_ERR(fid);
878 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
879 err);
880 fid = NULL;
881 goto error;
882 }
883
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600884 /* instantiate inode and assign the unopened fid to the dentry */
885 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530886 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600887 if (IS_ERR(inode)) {
888 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800889 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
890 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600891 goto error;
892 }
Al Viro3592ac42013-01-31 13:45:39 -0500893 v9fs_set_create_acl(inode, fid, dacl, pacl);
Al Viro2ea03e1d2013-02-28 01:18:14 -0500894 v9fs_fid_add(dentry, fid);
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000895 d_instantiate(dentry, inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600896 fid = NULL;
Al Viro2ea03e1d2013-02-28 01:18:14 -0500897 err = 0;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600898 } else {
899 /*
900 * Not in cached mode. No need to populate inode with stat.
901 * socket syscall returns a fd, so we need instantiate
902 */
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000903 inode = v9fs_get_inode(dir->i_sb, mode, rdev);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600904 if (IS_ERR(inode)) {
905 err = PTR_ERR(inode);
906 goto error;
907 }
Al Viro3592ac42013-01-31 13:45:39 -0500908 v9fs_set_create_acl(inode, fid, dacl, pacl);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600909 d_instantiate(dentry, inode);
910 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600911error:
912 if (fid)
913 p9_client_clunk(fid);
Al Viro5fa63002013-01-31 13:31:23 -0500914 v9fs_put_acl(dacl, pacl);
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800915 p9_client_clunk(dfid);
916
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600917 return err;
918}
919
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600920/**
Al Viro6b255392015-11-17 10:20:54 -0500921 * v9fs_vfs_get_link_dotl - follow a symlink path
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600922 * @dentry: dentry for symlink
Al Viro6b255392015-11-17 10:20:54 -0500923 * @inode: inode for symlink
Al Virofceef392015-12-29 15:58:39 -0500924 * @done: destructor for return value
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600925 */
926
Al Viro680baac2015-05-02 13:32:22 -0400927static const char *
Al Viro6b255392015-11-17 10:20:54 -0500928v9fs_vfs_get_link_dotl(struct dentry *dentry,
Al Virofceef392015-12-29 15:58:39 -0500929 struct inode *inode,
930 struct delayed_call *done)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600931{
Al Viro6b255392015-11-17 10:20:54 -0500932 struct p9_fid *fid;
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530933 char *target;
Al Viro90e4fc82015-04-14 17:42:49 -0400934 int retval;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600935
Al Viro6b255392015-11-17 10:20:54 -0500936 if (!dentry)
937 return ERR_PTR(-ECHILD);
938
Al Viro4b8e9922014-08-19 20:17:38 -0400939 p9_debug(P9_DEBUG_VFS, "%pd\n", dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600940
Al Viro6b255392015-11-17 10:20:54 -0500941 fid = v9fs_fid_lookup(dentry);
Al Viro90e4fc82015-04-14 17:42:49 -0400942 if (IS_ERR(fid))
943 return ERR_CAST(fid);
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530944 retval = p9_client_readlink(fid, &target);
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800945 p9_client_clunk(fid);
Al Viro90e4fc82015-04-14 17:42:49 -0400946 if (retval)
947 return ERR_PTR(retval);
Al Virofceef392015-12-29 15:58:39 -0500948 set_delayed_call(done, kfree_link, target);
949 return target;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600950}
951
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530952int v9fs_refresh_inode_dotl(struct p9_fid *fid, struct inode *inode)
953{
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530954 struct p9_stat_dotl *st;
955 struct v9fs_session_info *v9ses;
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800956 unsigned int flags;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530957
958 v9ses = v9fs_inode2v9ses(inode);
959 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
960 if (IS_ERR(st))
961 return PTR_ERR(st);
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000962 /*
963 * Don't update inode if the file type is different
964 */
Al Viro6e3e2c42021-03-01 20:37:10 -0500965 if (inode_wrong_type(inode, st->st_mode))
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000966 goto out;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530967
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530968 /*
969 * We don't want to refresh inode->i_size,
970 * because we may have cached data
971 */
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800972 flags = (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) ?
973 V9FS_STAT2INODE_KEEP_ISIZE : 0;
974 v9fs_stat2inode_dotl(st, inode, flags);
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000975out:
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530976 kfree(st);
977 return 0;
978}
979
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600980const struct inode_operations v9fs_dir_inode_operations_dotl = {
981 .create = v9fs_vfs_create_dotl,
Miklos Szeredie43ae792012-06-05 15:10:26 +0200982 .atomic_open = v9fs_vfs_atomic_open_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600983 .lookup = v9fs_vfs_lookup,
984 .link = v9fs_vfs_link_dotl,
985 .symlink = v9fs_vfs_symlink_dotl,
986 .unlink = v9fs_vfs_unlink,
987 .mkdir = v9fs_vfs_mkdir_dotl,
988 .rmdir = v9fs_vfs_rmdir,
989 .mknod = v9fs_vfs_mknod_dotl,
990 .rename = v9fs_vfs_rename,
991 .getattr = v9fs_vfs_getattr_dotl,
992 .setattr = v9fs_vfs_setattr_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600993 .listxattr = v9fs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200994 .get_acl = v9fs_iop_get_acl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600995};
996
997const struct inode_operations v9fs_file_inode_operations_dotl = {
998 .getattr = v9fs_vfs_getattr_dotl,
999 .setattr = v9fs_vfs_setattr_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06001000 .listxattr = v9fs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02001001 .get_acl = v9fs_iop_get_acl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06001002};
1003
1004const struct inode_operations v9fs_symlink_inode_operations_dotl = {
Al Viro6b255392015-11-17 10:20:54 -05001005 .get_link = v9fs_vfs_get_link_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06001006 .getattr = v9fs_vfs_getattr_dotl,
1007 .setattr = v9fs_vfs_setattr_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06001008 .listxattr = v9fs_listxattr,
1009};