blob: a950a927a626f2bad92969b3f617ee68a04d3336 [file] [log] [blame]
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06001/*
2 * linux/fs/9p/vfs_inode_dotl.c
3 *
4 * This file contains vfs inode ops for the 9P2000.L protocol.
5 *
6 * Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
7 * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to:
20 * Free Software Foundation
21 * 51 Franklin Street, Fifth Floor
22 * Boston, MA 02111-1301 USA
23 *
24 */
25
26#include <linux/module.h>
27#include <linux/errno.h>
28#include <linux/fs.h>
29#include <linux/file.h>
30#include <linux/pagemap.h>
31#include <linux/stat.h>
32#include <linux/string.h>
33#include <linux/inet.h>
34#include <linux/namei.h>
35#include <linux/idr.h>
36#include <linux/sched.h>
37#include <linux/slab.h>
38#include <linux/xattr.h>
39#include <linux/posix_acl.h>
40#include <net/9p/9p.h>
41#include <net/9p/client.h>
42
43#include "v9fs.h"
44#include "v9fs_vfs.h"
45#include "fid.h"
46#include "cache.h"
47#include "xattr.h"
48#include "acl.h"
49
50static int
Al Viro1a67aaf2011-07-26 01:52:52 -040051v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -060052 dev_t rdev);
53
54/**
55 * v9fs_get_fsgid_for_create - Helper function to get the gid for creating a
56 * new file system object. This checks the S_ISGID to determine the owning
57 * group of the new file system object.
58 */
59
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -080060static kgid_t v9fs_get_fsgid_for_create(struct inode *dir_inode)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -060061{
62 BUG_ON(dir_inode == NULL);
63
64 if (dir_inode->i_mode & S_ISGID) {
65 /* set_gid bit is set.*/
66 return dir_inode->i_gid;
67 }
68 return current_fsgid();
69}
70
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +000071static int v9fs_test_inode_dotl(struct inode *inode, void *data)
72{
73 struct v9fs_inode *v9inode = V9FS_I(inode);
74 struct p9_stat_dotl *st = (struct p9_stat_dotl *)data;
75
76 /* don't match inode of different type */
77 if ((inode->i_mode & S_IFMT) != (st->st_mode & S_IFMT))
78 return 0;
79
80 if (inode->i_generation != st->st_gen)
81 return 0;
82
83 /* compare qid details */
84 if (memcmp(&v9inode->qid.version,
85 &st->qid.version, sizeof(v9inode->qid.version)))
86 return 0;
87
88 if (v9inode->qid.type != st->qid.type)
89 return 0;
Tuomas Tynkkynen8ee03162017-09-06 17:59:07 +030090
91 if (v9inode->qid.path != st->qid.path)
92 return 0;
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +000093 return 1;
94}
95
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +053096/* Always get a new inode */
97static int v9fs_test_new_inode_dotl(struct inode *inode, void *data)
98{
99 return 0;
100}
101
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000102static int v9fs_set_inode_dotl(struct inode *inode, void *data)
103{
104 struct v9fs_inode *v9inode = V9FS_I(inode);
105 struct p9_stat_dotl *st = (struct p9_stat_dotl *)data;
106
107 memcpy(&v9inode->qid, &st->qid, sizeof(st->qid));
108 inode->i_generation = st->st_gen;
109 return 0;
110}
111
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530112static struct inode *v9fs_qid_iget_dotl(struct super_block *sb,
113 struct p9_qid *qid,
114 struct p9_fid *fid,
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530115 struct p9_stat_dotl *st,
116 int new)
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530117{
118 int retval;
119 unsigned long i_ino;
120 struct inode *inode;
121 struct v9fs_session_info *v9ses = sb->s_fs_info;
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530122 int (*test)(struct inode *, void *);
123
124 if (new)
125 test = v9fs_test_new_inode_dotl;
126 else
127 test = v9fs_test_inode_dotl;
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530128
129 i_ino = v9fs_qid2ino(qid);
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530130 inode = iget5_locked(sb, i_ino, test, v9fs_set_inode_dotl, st);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530131 if (!inode)
132 return ERR_PTR(-ENOMEM);
133 if (!(inode->i_state & I_NEW))
134 return inode;
135 /*
136 * initialize the inode with the stat info
137 * FIXME!! we may need support for stale inodes
138 * later.
139 */
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000140 inode->i_ino = i_ino;
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000141 retval = v9fs_init_inode(v9ses, inode,
142 st->st_mode, new_decode_dev(st->st_rdev));
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530143 if (retval)
144 goto error;
145
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800146 v9fs_stat2inode_dotl(st, inode, 0);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530147 v9fs_cache_inode_get_cookie(inode);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530148 retval = v9fs_get_acl(inode, fid);
149 if (retval)
150 goto error;
151
152 unlock_new_inode(inode);
153 return inode;
154error:
Al Viro0a73d0a2015-07-12 10:34:29 -0400155 iget_failed(inode);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530156 return ERR_PTR(retval);
157
158}
159
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600160struct inode *
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530161v9fs_inode_from_fid_dotl(struct v9fs_session_info *v9ses, struct p9_fid *fid,
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530162 struct super_block *sb, int new)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600163{
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600164 struct p9_stat_dotl *st;
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530165 struct inode *inode = NULL;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600166
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000167 st = p9_client_getattr_dotl(fid, P9_STATS_BASIC | P9_STATS_GEN);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600168 if (IS_ERR(st))
169 return ERR_CAST(st);
170
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530171 inode = v9fs_qid_iget_dotl(sb, &st->qid, fid, st, new);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600172 kfree(st);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530173 return inode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600174}
175
Aneesh Kumar K.Vf88657c2011-08-03 19:55:32 +0530176struct dotl_openflag_map {
177 int open_flag;
178 int dotl_flag;
179};
180
181static int v9fs_mapped_dotl_flags(int flags)
182{
183 int i;
184 int rflags = 0;
185 struct dotl_openflag_map dotl_oflag_map[] = {
186 { O_CREAT, P9_DOTL_CREATE },
187 { O_EXCL, P9_DOTL_EXCL },
188 { O_NOCTTY, P9_DOTL_NOCTTY },
Aneesh Kumar K.Vf88657c2011-08-03 19:55:32 +0530189 { O_APPEND, P9_DOTL_APPEND },
190 { O_NONBLOCK, P9_DOTL_NONBLOCK },
191 { O_DSYNC, P9_DOTL_DSYNC },
192 { FASYNC, P9_DOTL_FASYNC },
193 { O_DIRECT, P9_DOTL_DIRECT },
194 { O_LARGEFILE, P9_DOTL_LARGEFILE },
195 { O_DIRECTORY, P9_DOTL_DIRECTORY },
196 { O_NOFOLLOW, P9_DOTL_NOFOLLOW },
197 { O_NOATIME, P9_DOTL_NOATIME },
198 { O_CLOEXEC, P9_DOTL_CLOEXEC },
199 { O_SYNC, P9_DOTL_SYNC},
200 };
201 for (i = 0; i < ARRAY_SIZE(dotl_oflag_map); i++) {
202 if (flags & dotl_oflag_map[i].open_flag)
203 rflags |= dotl_oflag_map[i].dotl_flag;
204 }
205 return rflags;
206}
207
208/**
209 * v9fs_open_to_dotl_flags- convert Linux specific open flags to
210 * plan 9 open flag.
211 * @flags: flags to convert
212 */
213int v9fs_open_to_dotl_flags(int flags)
214{
215 int rflags = 0;
216
217 /*
218 * We have same bits for P9_DOTL_READONLY, P9_DOTL_WRONLY
219 * and P9_DOTL_NOACCESS
220 */
221 rflags |= flags & O_ACCMODE;
222 rflags |= v9fs_mapped_dotl_flags(flags);
223
224 return rflags;
225}
226
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600227/**
228 * v9fs_vfs_create_dotl - VFS hook to create files for 9P2000.L protocol.
229 * @dir: directory inode that is being created
230 * @dentry: dentry that is being deleted
Fabian Frederickfd2916b2014-06-04 16:06:26 -0700231 * @omode: create permissions
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600232 *
233 */
234
235static int
Al Viro4acdaf22011-07-26 01:42:34 -0400236v9fs_vfs_create_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
Al Viroebfc3b42012-06-10 18:05:36 -0400237 bool excl)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600238{
Miklos Szeredie43ae792012-06-05 15:10:26 +0200239 return v9fs_vfs_mknod_dotl(dir, dentry, omode, 0);
240}
241
Al Virod9585272012-06-22 12:39:14 +0400242static int
Miklos Szeredie43ae792012-06-05 15:10:26 +0200243v9fs_vfs_atomic_open_dotl(struct inode *dir, struct dentry *dentry,
Al Viro44907d72018-06-08 13:32:02 -0400244 struct file *file, unsigned flags, umode_t omode)
Miklos Szeredie43ae792012-06-05 15:10:26 +0200245{
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600246 int err = 0;
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -0800247 kgid_t gid;
Al Virod3fb6122011-07-23 18:37:50 -0400248 umode_t mode;
Al Viro7880b432017-01-12 04:01:17 -0500249 const unsigned char *name = NULL;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600250 struct p9_qid qid;
251 struct inode *inode;
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530252 struct p9_fid *fid = NULL;
253 struct v9fs_inode *v9inode;
254 struct p9_fid *dfid, *ofid, *inode_fid;
255 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600256 struct posix_acl *pacl = NULL, *dacl = NULL;
Miklos Szeredie43ae792012-06-05 15:10:26 +0200257 struct dentry *res = NULL;
258
Al Viro00699ad2016-07-05 09:44:53 -0400259 if (d_in_lookup(dentry)) {
Al Viro00cd8dd2012-06-10 17:13:09 -0400260 res = v9fs_vfs_lookup(dir, dentry, 0);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200261 if (IS_ERR(res))
Al Virod9585272012-06-22 12:39:14 +0400262 return PTR_ERR(res);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200263
264 if (res)
265 dentry = res;
266 }
267
268 /* Only creates */
David Howells2b0143b2015-03-17 22:25:59 +0000269 if (!(flags & O_CREAT) || d_really_is_positive(dentry))
M. Mohan Kumarb6f4bee2013-02-05 14:25:05 +0530270 return finish_no_open(file, res);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600271
272 v9ses = v9fs_inode2v9ses(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600273
Al Viro7880b432017-01-12 04:01:17 -0500274 name = dentry->d_name.name;
Linus Torvalds609eac12012-01-10 15:09:01 -0800275 p9_debug(P9_DEBUG_VFS, "name:%s flags:0x%x mode:0x%hx\n",
Joe Perches5d385152011-11-28 10:40:46 -0800276 name, flags, omode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600277
Al Viro77d5a6b2016-05-29 15:29:26 -0400278 dfid = v9fs_parent_fid(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600279 if (IS_ERR(dfid)) {
280 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800281 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Al Virod9585272012-06-22 12:39:14 +0400282 goto out;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600283 }
284
285 /* clone a fid to use for creation */
Al Viro7d50a292016-08-03 11:12:12 -0400286 ofid = clone_fid(dfid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600287 if (IS_ERR(ofid)) {
288 err = PTR_ERR(ofid);
Joe Perches5d385152011-11-28 10:40:46 -0800289 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
Al Virod9585272012-06-22 12:39:14 +0400290 goto out;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600291 }
292
293 gid = v9fs_get_fsgid_for_create(dir);
294
295 mode = omode;
296 /* Update mode based on ACL value */
297 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
298 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800299 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in creat %d\n",
300 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600301 goto error;
302 }
Aneesh Kumar K.Vf88657c2011-08-03 19:55:32 +0530303 err = p9_client_create_dotl(ofid, name, v9fs_open_to_dotl_flags(flags),
304 mode, gid, &qid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600305 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800306 p9_debug(P9_DEBUG_VFS, "p9_client_open_dotl failed in creat %d\n",
307 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600308 goto error;
309 }
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530310 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600311
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600312 /* instantiate inode and assign the unopened fid to the dentry */
313 fid = p9_client_walk(dfid, 1, &name, 1);
314 if (IS_ERR(fid)) {
315 err = PTR_ERR(fid);
Joe Perches5d385152011-11-28 10:40:46 -0800316 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600317 fid = NULL;
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600318 goto error;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600319 }
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530320 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600321 if (IS_ERR(inode)) {
322 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800323 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n", err);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600324 goto error;
325 }
Al Viro3592ac42013-01-31 13:45:39 -0500326 /* Now set the ACL based on the default value */
327 v9fs_set_create_acl(inode, fid, dacl, pacl);
328
Al Viro2ea03e1d2013-02-28 01:18:14 -0500329 v9fs_fid_add(dentry, fid);
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000330 d_instantiate(dentry, inode);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600331
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530332 v9inode = V9FS_I(inode);
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530333 mutex_lock(&v9inode->v_mutex);
Dominique Martinetfb89b452014-01-10 13:44:09 +0100334 if ((v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) &&
335 !v9inode->writeback_fid &&
Aneesh Kumar K.V7add6972011-03-08 16:39:49 +0530336 ((flags & O_ACCMODE) != O_RDONLY)) {
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530337 /*
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530338 * clone a fid and add it to writeback_fid
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530339 * we do it during open time instead of
340 * page dirty time via write_begin/page_mkwrite
341 * because we want write after unlink usecase
342 * to work.
343 */
344 inode_fid = v9fs_writeback_fid(dentry);
345 if (IS_ERR(inode_fid)) {
346 err = PTR_ERR(inode_fid);
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530347 mutex_unlock(&v9inode->v_mutex);
Aneesh Kumar K.V398c4f02011-05-20 18:55:51 +0000348 goto err_clunk_old_fid;
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530349 }
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530350 v9inode->writeback_fid = (void *) inode_fid;
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530351 }
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530352 mutex_unlock(&v9inode->v_mutex);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600353 /* Since we are opening a file, assign the open fid to the file */
Al Virobe12af32018-06-08 11:44:56 -0400354 err = finish_open(file, dentry, generic_file_open);
Al Viro30d90492012-06-22 12:40:19 +0400355 if (err)
Aneesh Kumar K.V398c4f02011-05-20 18:55:51 +0000356 goto err_clunk_old_fid;
Al Viro30d90492012-06-22 12:40:19 +0400357 file->private_data = ofid;
Dominique Martinetfb89b452014-01-10 13:44:09 +0100358 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE)
Al Viro30d90492012-06-22 12:40:19 +0400359 v9fs_cache_inode_set_cookie(inode, file);
Al Viro73a09dd2018-06-08 13:22:02 -0400360 file->f_mode |= FMODE_CREATED;
Miklos Szeredie43ae792012-06-05 15:10:26 +0200361out:
Al Viro5fa63002013-01-31 13:31:23 -0500362 v9fs_put_acl(dacl, pacl);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200363 dput(res);
Al Virod9585272012-06-22 12:39:14 +0400364 return err;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600365
366error:
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600367 if (fid)
368 p9_client_clunk(fid);
Aneesh Kumar K.V398c4f02011-05-20 18:55:51 +0000369err_clunk_old_fid:
370 if (ofid)
371 p9_client_clunk(ofid);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200372 goto out;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600373}
374
375/**
376 * v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory
377 * @dir: inode that is being unlinked
378 * @dentry: dentry that is being unlinked
Fabian Frederickfd2916b2014-06-04 16:06:26 -0700379 * @omode: mode for new directory
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600380 *
381 */
382
383static int v9fs_vfs_mkdir_dotl(struct inode *dir,
Al Viro18bb1db2011-07-26 01:41:39 -0400384 struct dentry *dentry, umode_t omode)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600385{
386 int err;
387 struct v9fs_session_info *v9ses;
388 struct p9_fid *fid = NULL, *dfid = NULL;
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -0800389 kgid_t gid;
Al Viro7880b432017-01-12 04:01:17 -0500390 const unsigned char *name;
Al Virod3fb6122011-07-23 18:37:50 -0400391 umode_t mode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600392 struct inode *inode;
393 struct p9_qid qid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600394 struct posix_acl *dacl = NULL, *pacl = NULL;
395
Al Viro4b8e9922014-08-19 20:17:38 -0400396 p9_debug(P9_DEBUG_VFS, "name %pd\n", dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600397 err = 0;
398 v9ses = v9fs_inode2v9ses(dir);
399
400 omode |= S_IFDIR;
401 if (dir->i_mode & S_ISGID)
402 omode |= S_ISGID;
403
Al Viro77d5a6b2016-05-29 15:29:26 -0400404 dfid = v9fs_parent_fid(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600405 if (IS_ERR(dfid)) {
406 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800407 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600408 dfid = NULL;
409 goto error;
410 }
411
412 gid = v9fs_get_fsgid_for_create(dir);
413 mode = omode;
414 /* Update mode based on ACL value */
415 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
416 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800417 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mkdir %d\n",
418 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600419 goto error;
420 }
Al Viro7880b432017-01-12 04:01:17 -0500421 name = dentry->d_name.name;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600422 err = p9_client_mkdir_dotl(dfid, name, mode, gid, &qid);
423 if (err < 0)
424 goto error;
425
Al Viro3592ac42013-01-31 13:45:39 -0500426 fid = p9_client_walk(dfid, 1, &name, 1);
427 if (IS_ERR(fid)) {
428 err = PTR_ERR(fid);
429 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
430 err);
431 fid = NULL;
432 goto error;
433 }
434
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600435 /* instantiate inode and assign the unopened fid to the dentry */
436 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530437 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600438 if (IS_ERR(inode)) {
439 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800440 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
441 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600442 goto error;
443 }
Al Viro2ea03e1d2013-02-28 01:18:14 -0500444 v9fs_fid_add(dentry, fid);
Al Viro3592ac42013-01-31 13:45:39 -0500445 v9fs_set_create_acl(inode, fid, dacl, pacl);
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000446 d_instantiate(dentry, inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600447 fid = NULL;
Al Viro2ea03e1d2013-02-28 01:18:14 -0500448 err = 0;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600449 } else {
450 /*
451 * Not in cached mode. No need to populate
452 * inode with stat. We need to get an inode
453 * so that we can set the acl with dentry
454 */
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000455 inode = v9fs_get_inode(dir->i_sb, mode, 0);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600456 if (IS_ERR(inode)) {
457 err = PTR_ERR(inode);
458 goto error;
459 }
Al Viro3592ac42013-01-31 13:45:39 -0500460 v9fs_set_create_acl(inode, fid, dacl, pacl);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600461 d_instantiate(dentry, inode);
462 }
Aneesh Kumar K.Vb271ec42011-02-28 17:04:05 +0530463 inc_nlink(dir);
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530464 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600465error:
466 if (fid)
467 p9_client_clunk(fid);
Al Viro5fa63002013-01-31 13:31:23 -0500468 v9fs_put_acl(dacl, pacl);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600469 return err;
470}
471
472static int
David Howellsa528d352017-01-31 16:46:22 +0000473v9fs_vfs_getattr_dotl(const struct path *path, struct kstat *stat,
474 u32 request_mask, unsigned int flags)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600475{
David Howellsa528d352017-01-31 16:46:22 +0000476 struct dentry *dentry = path->dentry;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600477 struct v9fs_session_info *v9ses;
478 struct p9_fid *fid;
479 struct p9_stat_dotl *st;
480
Joe Perches5d385152011-11-28 10:40:46 -0800481 p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry);
Aneesh Kumar K.V42869c82011-03-08 16:39:50 +0530482 v9ses = v9fs_dentry2v9ses(dentry);
Aneesh Kumar K.Va1211902011-02-28 17:04:01 +0530483 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
David Howells2b0143b2015-03-17 22:25:59 +0000484 generic_fillattr(d_inode(dentry), stat);
Aneesh Kumar K.Va1211902011-02-28 17:04:01 +0530485 return 0;
486 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600487 fid = v9fs_fid_lookup(dentry);
488 if (IS_ERR(fid))
489 return PTR_ERR(fid);
490
491 /* Ask for all the fields in stat structure. Server will return
492 * whatever it supports
493 */
494
495 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
496 if (IS_ERR(st))
497 return PTR_ERR(st);
498
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800499 v9fs_stat2inode_dotl(st, d_inode(dentry), 0);
David Howells2b0143b2015-03-17 22:25:59 +0000500 generic_fillattr(d_inode(dentry), stat);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600501 /* Change block size to what the server returned */
502 stat->blksize = st->st_blksize;
503
504 kfree(st);
505 return 0;
506}
507
Aneesh Kumar K.Vf7666192011-12-18 23:03:13 +0530508/*
509 * Attribute flags.
510 */
511#define P9_ATTR_MODE (1 << 0)
512#define P9_ATTR_UID (1 << 1)
513#define P9_ATTR_GID (1 << 2)
514#define P9_ATTR_SIZE (1 << 3)
515#define P9_ATTR_ATIME (1 << 4)
516#define P9_ATTR_MTIME (1 << 5)
517#define P9_ATTR_CTIME (1 << 6)
518#define P9_ATTR_ATIME_SET (1 << 7)
519#define P9_ATTR_MTIME_SET (1 << 8)
520
521struct dotl_iattr_map {
522 int iattr_valid;
523 int p9_iattr_valid;
524};
525
526static int v9fs_mapped_iattr_valid(int iattr_valid)
527{
528 int i;
529 int p9_iattr_valid = 0;
530 struct dotl_iattr_map dotl_iattr_map[] = {
531 { ATTR_MODE, P9_ATTR_MODE },
532 { ATTR_UID, P9_ATTR_UID },
533 { ATTR_GID, P9_ATTR_GID },
534 { ATTR_SIZE, P9_ATTR_SIZE },
535 { ATTR_ATIME, P9_ATTR_ATIME },
536 { ATTR_MTIME, P9_ATTR_MTIME },
537 { ATTR_CTIME, P9_ATTR_CTIME },
538 { ATTR_ATIME_SET, P9_ATTR_ATIME_SET },
539 { ATTR_MTIME_SET, P9_ATTR_MTIME_SET },
540 };
541 for (i = 0; i < ARRAY_SIZE(dotl_iattr_map); i++) {
542 if (iattr_valid & dotl_iattr_map[i].iattr_valid)
543 p9_iattr_valid |= dotl_iattr_map[i].p9_iattr_valid;
544 }
545 return p9_iattr_valid;
546}
547
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600548/**
549 * v9fs_vfs_setattr_dotl - set file metadata
550 * @dentry: file whose metadata to set
551 * @iattr: metadata assignment structure
552 *
553 */
554
555int v9fs_vfs_setattr_dotl(struct dentry *dentry, struct iattr *iattr)
556{
557 int retval;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600558 struct p9_fid *fid;
559 struct p9_iattr_dotl p9attr;
David Howells2b0143b2015-03-17 22:25:59 +0000560 struct inode *inode = d_inode(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600561
Joe Perches5d385152011-11-28 10:40:46 -0800562 p9_debug(P9_DEBUG_VFS, "\n");
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600563
Jan Kara31051c82016-05-26 16:55:18 +0200564 retval = setattr_prepare(dentry, iattr);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600565 if (retval)
566 return retval;
567
Aneesh Kumar K.Vf7666192011-12-18 23:03:13 +0530568 p9attr.valid = v9fs_mapped_iattr_valid(iattr->ia_valid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600569 p9attr.mode = iattr->ia_mode;
570 p9attr.uid = iattr->ia_uid;
571 p9attr.gid = iattr->ia_gid;
572 p9attr.size = iattr->ia_size;
573 p9attr.atime_sec = iattr->ia_atime.tv_sec;
574 p9attr.atime_nsec = iattr->ia_atime.tv_nsec;
575 p9attr.mtime_sec = iattr->ia_mtime.tv_sec;
576 p9attr.mtime_nsec = iattr->ia_mtime.tv_nsec;
577
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600578 fid = v9fs_fid_lookup(dentry);
579 if (IS_ERR(fid))
580 return PTR_ERR(fid);
581
Aneesh Kumar K.V3dc54362011-02-28 17:04:11 +0530582 /* Write all dirty data */
Al Virobe308f02013-01-31 12:58:16 -0500583 if (S_ISREG(inode->i_mode))
584 filemap_write_and_wait(inode->i_mapping);
Aneesh Kumar K.V3dc54362011-02-28 17:04:11 +0530585
Aneesh Kumar K.Vf10fc502011-02-28 17:04:10 +0530586 retval = p9_client_setattr(fid, &p9attr);
587 if (retval < 0)
588 return retval;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600589
Aneesh Kumar K.V059c1382011-03-08 16:39:48 +0530590 if ((iattr->ia_valid & ATTR_SIZE) &&
Al Virobe308f02013-01-31 12:58:16 -0500591 iattr->ia_size != i_size_read(inode))
592 truncate_setsize(inode, iattr->ia_size);
Aneesh Kumar K.V059c1382011-03-08 16:39:48 +0530593
Al Virobe308f02013-01-31 12:58:16 -0500594 v9fs_invalidate_inode_attr(inode);
595 setattr_copy(inode, iattr);
596 mark_inode_dirty(inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600597 if (iattr->ia_valid & ATTR_MODE) {
598 /* We also want to update ACL when we update mode bits */
Al Virobe308f02013-01-31 12:58:16 -0500599 retval = v9fs_acl_chmod(inode, fid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600600 if (retval < 0)
601 return retval;
602 }
603 return 0;
604}
605
606/**
607 * v9fs_stat2inode_dotl - populate an inode structure with stat info
608 * @stat: stat structure
609 * @inode: inode to populate
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800610 * @flags: ctrl flags (e.g. V9FS_STAT2INODE_KEEP_ISIZE)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600611 *
612 */
613
614void
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800615v9fs_stat2inode_dotl(struct p9_stat_dotl *stat, struct inode *inode,
616 unsigned int flags)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600617{
Al Viro3eda0de2011-07-26 02:53:22 -0400618 umode_t mode;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530619 struct v9fs_inode *v9inode = V9FS_I(inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600620
621 if ((stat->st_result_mask & P9_STATS_BASIC) == P9_STATS_BASIC) {
622 inode->i_atime.tv_sec = stat->st_atime_sec;
623 inode->i_atime.tv_nsec = stat->st_atime_nsec;
624 inode->i_mtime.tv_sec = stat->st_mtime_sec;
625 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
626 inode->i_ctime.tv_sec = stat->st_ctime_sec;
627 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
628 inode->i_uid = stat->st_uid;
629 inode->i_gid = stat->st_gid;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200630 set_nlink(inode, stat->st_nlink);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600631
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000632 mode = stat->st_mode & S_IALLUGO;
633 mode |= inode->i_mode & ~S_IALLUGO;
634 inode->i_mode = mode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600635
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800636 if (!(flags & V9FS_STAT2INODE_KEEP_ISIZE))
637 v9fs_i_size_write(inode, stat->st_size);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600638 inode->i_blocks = stat->st_blocks;
639 } else {
640 if (stat->st_result_mask & P9_STATS_ATIME) {
641 inode->i_atime.tv_sec = stat->st_atime_sec;
642 inode->i_atime.tv_nsec = stat->st_atime_nsec;
643 }
644 if (stat->st_result_mask & P9_STATS_MTIME) {
645 inode->i_mtime.tv_sec = stat->st_mtime_sec;
646 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
647 }
648 if (stat->st_result_mask & P9_STATS_CTIME) {
649 inode->i_ctime.tv_sec = stat->st_ctime_sec;
650 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
651 }
652 if (stat->st_result_mask & P9_STATS_UID)
653 inode->i_uid = stat->st_uid;
654 if (stat->st_result_mask & P9_STATS_GID)
655 inode->i_gid = stat->st_gid;
656 if (stat->st_result_mask & P9_STATS_NLINK)
Miklos Szeredibfe86842011-10-28 14:13:29 +0200657 set_nlink(inode, stat->st_nlink);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600658 if (stat->st_result_mask & P9_STATS_MODE) {
659 inode->i_mode = stat->st_mode;
660 if ((S_ISBLK(inode->i_mode)) ||
661 (S_ISCHR(inode->i_mode)))
662 init_special_inode(inode, inode->i_mode,
663 inode->i_rdev);
664 }
665 if (stat->st_result_mask & P9_STATS_RDEV)
666 inode->i_rdev = new_decode_dev(stat->st_rdev);
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800667 if (!(flags & V9FS_STAT2INODE_KEEP_ISIZE) &&
668 stat->st_result_mask & P9_STATS_SIZE)
669 v9fs_i_size_write(inode, stat->st_size);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600670 if (stat->st_result_mask & P9_STATS_BLOCKS)
671 inode->i_blocks = stat->st_blocks;
672 }
673 if (stat->st_result_mask & P9_STATS_GEN)
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000674 inode->i_generation = stat->st_gen;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600675
676 /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION
677 * because the inode structure does not have fields for them.
678 */
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530679 v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600680}
681
682static int
683v9fs_vfs_symlink_dotl(struct inode *dir, struct dentry *dentry,
684 const char *symname)
685{
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600686 int err;
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -0800687 kgid_t gid;
Al Viro7880b432017-01-12 04:01:17 -0500688 const unsigned char *name;
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530689 struct p9_qid qid;
690 struct inode *inode;
691 struct p9_fid *dfid;
692 struct p9_fid *fid = NULL;
693 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600694
Al Viro7880b432017-01-12 04:01:17 -0500695 name = dentry->d_name.name;
Joe Perches5d385152011-11-28 10:40:46 -0800696 p9_debug(P9_DEBUG_VFS, "%lu,%s,%s\n", dir->i_ino, name, symname);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600697 v9ses = v9fs_inode2v9ses(dir);
698
Al Viro77d5a6b2016-05-29 15:29:26 -0400699 dfid = v9fs_parent_fid(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600700 if (IS_ERR(dfid)) {
701 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800702 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600703 return err;
704 }
705
706 gid = v9fs_get_fsgid_for_create(dir);
707
708 /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */
Al Viro7880b432017-01-12 04:01:17 -0500709 err = p9_client_symlink(dfid, name, symname, gid, &qid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600710
711 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800712 p9_debug(P9_DEBUG_VFS, "p9_client_symlink failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600713 goto error;
714 }
715
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530716 v9fs_invalidate_inode_attr(dir);
Dominique Martinetfb89b452014-01-10 13:44:09 +0100717 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600718 /* Now walk from the parent so we can get an unopened fid. */
719 fid = p9_client_walk(dfid, 1, &name, 1);
720 if (IS_ERR(fid)) {
721 err = PTR_ERR(fid);
Joe Perches5d385152011-11-28 10:40:46 -0800722 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
723 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600724 fid = NULL;
725 goto error;
726 }
727
728 /* instantiate inode and assign the unopened fid to dentry */
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530729 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600730 if (IS_ERR(inode)) {
731 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800732 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
733 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600734 goto error;
735 }
Al Viro2ea03e1d2013-02-28 01:18:14 -0500736 v9fs_fid_add(dentry, fid);
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000737 d_instantiate(dentry, inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600738 fid = NULL;
Al Viro2ea03e1d2013-02-28 01:18:14 -0500739 err = 0;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600740 } else {
741 /* Not in cached mode. No need to populate inode with stat */
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000742 inode = v9fs_get_inode(dir->i_sb, S_IFLNK, 0);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600743 if (IS_ERR(inode)) {
744 err = PTR_ERR(inode);
745 goto error;
746 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600747 d_instantiate(dentry, inode);
748 }
749
750error:
751 if (fid)
752 p9_client_clunk(fid);
753
754 return err;
755}
756
757/**
758 * v9fs_vfs_link_dotl - create a hardlink for dotl
759 * @old_dentry: dentry for file to link to
760 * @dir: inode destination for new link
761 * @dentry: dentry for link
762 *
763 */
764
765static int
766v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir,
767 struct dentry *dentry)
768{
769 int err;
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530770 struct p9_fid *dfid, *oldfid;
771 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600772
Al Viro4b8e9922014-08-19 20:17:38 -0400773 p9_debug(P9_DEBUG_VFS, "dir ino: %lu, old_name: %pd, new_name: %pd\n",
774 dir->i_ino, old_dentry, dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600775
776 v9ses = v9fs_inode2v9ses(dir);
Al Viro77d5a6b2016-05-29 15:29:26 -0400777 dfid = v9fs_parent_fid(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600778 if (IS_ERR(dfid))
779 return PTR_ERR(dfid);
780
781 oldfid = v9fs_fid_lookup(old_dentry);
782 if (IS_ERR(oldfid))
783 return PTR_ERR(oldfid);
784
Al Viro7880b432017-01-12 04:01:17 -0500785 err = p9_client_link(dfid, oldfid, dentry->d_name.name);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600786
787 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800788 p9_debug(P9_DEBUG_VFS, "p9_client_link failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600789 return err;
790 }
791
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530792 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600793 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
794 /* Get the latest stat info from server. */
795 struct p9_fid *fid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600796 fid = v9fs_fid_lookup(old_dentry);
797 if (IS_ERR(fid))
798 return PTR_ERR(fid);
799
David Howells2b0143b2015-03-17 22:25:59 +0000800 v9fs_refresh_inode_dotl(fid, d_inode(old_dentry));
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600801 }
David Howells2b0143b2015-03-17 22:25:59 +0000802 ihold(d_inode(old_dentry));
803 d_instantiate(dentry, d_inode(old_dentry));
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600804
805 return err;
806}
807
808/**
809 * v9fs_vfs_mknod_dotl - create a special file
810 * @dir: inode destination for new link
811 * @dentry: dentry for file
Fabian Frederickfd2916b2014-06-04 16:06:26 -0700812 * @omode: mode for creation
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600813 * @rdev: device associated with special file
814 *
815 */
816static int
Al Viro1a67aaf2011-07-26 01:52:52 -0400817v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600818 dev_t rdev)
819{
820 int err;
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -0800821 kgid_t gid;
Al Viro7880b432017-01-12 04:01:17 -0500822 const unsigned char *name;
Al Virod3fb6122011-07-23 18:37:50 -0400823 umode_t mode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600824 struct v9fs_session_info *v9ses;
825 struct p9_fid *fid = NULL, *dfid = NULL;
826 struct inode *inode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600827 struct p9_qid qid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600828 struct posix_acl *dacl = NULL, *pacl = NULL;
829
Al Viroa4555892014-10-21 20:11:25 -0400830 p9_debug(P9_DEBUG_VFS, " %lu,%pd mode: %hx MAJOR: %u MINOR: %u\n",
831 dir->i_ino, dentry, omode,
Joe Perches5d385152011-11-28 10:40:46 -0800832 MAJOR(rdev), MINOR(rdev));
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600833
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600834 v9ses = v9fs_inode2v9ses(dir);
Al Viro77d5a6b2016-05-29 15:29:26 -0400835 dfid = v9fs_parent_fid(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600836 if (IS_ERR(dfid)) {
837 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800838 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600839 dfid = NULL;
840 goto error;
841 }
842
843 gid = v9fs_get_fsgid_for_create(dir);
844 mode = omode;
845 /* Update mode based on ACL value */
846 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
847 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800848 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mknod %d\n",
849 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600850 goto error;
851 }
Al Viro7880b432017-01-12 04:01:17 -0500852 name = dentry->d_name.name;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600853
854 err = p9_client_mknod_dotl(dfid, name, mode, rdev, gid, &qid);
855 if (err < 0)
856 goto error;
857
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530858 v9fs_invalidate_inode_attr(dir);
Al Viro3592ac42013-01-31 13:45:39 -0500859 fid = p9_client_walk(dfid, 1, &name, 1);
860 if (IS_ERR(fid)) {
861 err = PTR_ERR(fid);
862 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
863 err);
864 fid = NULL;
865 goto error;
866 }
867
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600868 /* instantiate inode and assign the unopened fid to the dentry */
869 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530870 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600871 if (IS_ERR(inode)) {
872 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800873 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
874 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600875 goto error;
876 }
Al Viro3592ac42013-01-31 13:45:39 -0500877 v9fs_set_create_acl(inode, fid, dacl, pacl);
Al Viro2ea03e1d2013-02-28 01:18:14 -0500878 v9fs_fid_add(dentry, fid);
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000879 d_instantiate(dentry, inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600880 fid = NULL;
Al Viro2ea03e1d2013-02-28 01:18:14 -0500881 err = 0;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600882 } else {
883 /*
884 * Not in cached mode. No need to populate inode with stat.
885 * socket syscall returns a fd, so we need instantiate
886 */
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000887 inode = v9fs_get_inode(dir->i_sb, mode, rdev);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600888 if (IS_ERR(inode)) {
889 err = PTR_ERR(inode);
890 goto error;
891 }
Al Viro3592ac42013-01-31 13:45:39 -0500892 v9fs_set_create_acl(inode, fid, dacl, pacl);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600893 d_instantiate(dentry, inode);
894 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600895error:
896 if (fid)
897 p9_client_clunk(fid);
Al Viro5fa63002013-01-31 13:31:23 -0500898 v9fs_put_acl(dacl, pacl);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600899 return err;
900}
901
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600902/**
Al Viro6b255392015-11-17 10:20:54 -0500903 * v9fs_vfs_get_link_dotl - follow a symlink path
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600904 * @dentry: dentry for symlink
Al Viro6b255392015-11-17 10:20:54 -0500905 * @inode: inode for symlink
Al Virofceef392015-12-29 15:58:39 -0500906 * @done: destructor for return value
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600907 */
908
Al Viro680baac2015-05-02 13:32:22 -0400909static const char *
Al Viro6b255392015-11-17 10:20:54 -0500910v9fs_vfs_get_link_dotl(struct dentry *dentry,
Al Virofceef392015-12-29 15:58:39 -0500911 struct inode *inode,
912 struct delayed_call *done)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600913{
Al Viro6b255392015-11-17 10:20:54 -0500914 struct p9_fid *fid;
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530915 char *target;
Al Viro90e4fc82015-04-14 17:42:49 -0400916 int retval;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600917
Al Viro6b255392015-11-17 10:20:54 -0500918 if (!dentry)
919 return ERR_PTR(-ECHILD);
920
Al Viro4b8e9922014-08-19 20:17:38 -0400921 p9_debug(P9_DEBUG_VFS, "%pd\n", dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600922
Al Viro6b255392015-11-17 10:20:54 -0500923 fid = v9fs_fid_lookup(dentry);
Al Viro90e4fc82015-04-14 17:42:49 -0400924 if (IS_ERR(fid))
925 return ERR_CAST(fid);
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530926 retval = p9_client_readlink(fid, &target);
Al Viro90e4fc82015-04-14 17:42:49 -0400927 if (retval)
928 return ERR_PTR(retval);
Al Virofceef392015-12-29 15:58:39 -0500929 set_delayed_call(done, kfree_link, target);
930 return target;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600931}
932
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530933int v9fs_refresh_inode_dotl(struct p9_fid *fid, struct inode *inode)
934{
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530935 struct p9_stat_dotl *st;
936 struct v9fs_session_info *v9ses;
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800937 unsigned int flags;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530938
939 v9ses = v9fs_inode2v9ses(inode);
940 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
941 if (IS_ERR(st))
942 return PTR_ERR(st);
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000943 /*
944 * Don't update inode if the file type is different
945 */
946 if ((inode->i_mode & S_IFMT) != (st->st_mode & S_IFMT))
947 goto out;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530948
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530949 /*
950 * We don't want to refresh inode->i_size,
951 * because we may have cached data
952 */
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800953 flags = (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) ?
954 V9FS_STAT2INODE_KEEP_ISIZE : 0;
955 v9fs_stat2inode_dotl(st, inode, flags);
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000956out:
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530957 kfree(st);
958 return 0;
959}
960
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600961const struct inode_operations v9fs_dir_inode_operations_dotl = {
962 .create = v9fs_vfs_create_dotl,
Miklos Szeredie43ae792012-06-05 15:10:26 +0200963 .atomic_open = v9fs_vfs_atomic_open_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600964 .lookup = v9fs_vfs_lookup,
965 .link = v9fs_vfs_link_dotl,
966 .symlink = v9fs_vfs_symlink_dotl,
967 .unlink = v9fs_vfs_unlink,
968 .mkdir = v9fs_vfs_mkdir_dotl,
969 .rmdir = v9fs_vfs_rmdir,
970 .mknod = v9fs_vfs_mknod_dotl,
971 .rename = v9fs_vfs_rename,
972 .getattr = v9fs_vfs_getattr_dotl,
973 .setattr = v9fs_vfs_setattr_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600974 .listxattr = v9fs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200975 .get_acl = v9fs_iop_get_acl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600976};
977
978const struct inode_operations v9fs_file_inode_operations_dotl = {
979 .getattr = v9fs_vfs_getattr_dotl,
980 .setattr = v9fs_vfs_setattr_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600981 .listxattr = v9fs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200982 .get_acl = v9fs_iop_get_acl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600983};
984
985const struct inode_operations v9fs_symlink_inode_operations_dotl = {
Al Viro6b255392015-11-17 10:20:54 -0500986 .get_link = v9fs_vfs_get_link_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600987 .getattr = v9fs_vfs_getattr_dotl,
988 .setattr = v9fs_vfs_setattr_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600989 .listxattr = v9fs_listxattr,
990};