blob: 08f2e089fb0ecea2c94e5c202bf4d31b501dd96d [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/*
3 * linux/fs/9p/vfs_inode_dotl.c
4 *
5 * This file contains vfs inode ops for the 9P2000.L protocol.
6 *
7 * Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
8 * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06009 */
10
11#include <linux/module.h>
12#include <linux/errno.h>
13#include <linux/fs.h>
14#include <linux/file.h>
15#include <linux/pagemap.h>
16#include <linux/stat.h>
17#include <linux/string.h>
18#include <linux/inet.h>
19#include <linux/namei.h>
20#include <linux/idr.h>
21#include <linux/sched.h>
22#include <linux/slab.h>
23#include <linux/xattr.h>
24#include <linux/posix_acl.h>
25#include <net/9p/9p.h>
26#include <net/9p/client.h>
27
28#include "v9fs.h"
29#include "v9fs_vfs.h"
30#include "fid.h"
31#include "cache.h"
32#include "xattr.h"
33#include "acl.h"
34
35static int
Al Viro1a67aaf2011-07-26 01:52:52 -040036v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -060037 dev_t rdev);
38
39/**
40 * v9fs_get_fsgid_for_create - Helper function to get the gid for creating a
41 * new file system object. This checks the S_ISGID to determine the owning
42 * group of the new file system object.
43 */
44
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -080045static kgid_t v9fs_get_fsgid_for_create(struct inode *dir_inode)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -060046{
47 BUG_ON(dir_inode == NULL);
48
49 if (dir_inode->i_mode & S_ISGID) {
50 /* set_gid bit is set.*/
51 return dir_inode->i_gid;
52 }
53 return current_fsgid();
54}
55
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +000056static int v9fs_test_inode_dotl(struct inode *inode, void *data)
57{
58 struct v9fs_inode *v9inode = V9FS_I(inode);
59 struct p9_stat_dotl *st = (struct p9_stat_dotl *)data;
60
61 /* don't match inode of different type */
62 if ((inode->i_mode & S_IFMT) != (st->st_mode & S_IFMT))
63 return 0;
64
65 if (inode->i_generation != st->st_gen)
66 return 0;
67
68 /* compare qid details */
69 if (memcmp(&v9inode->qid.version,
70 &st->qid.version, sizeof(v9inode->qid.version)))
71 return 0;
72
73 if (v9inode->qid.type != st->qid.type)
74 return 0;
Tuomas Tynkkynen8ee03162017-09-06 17:59:07 +030075
76 if (v9inode->qid.path != st->qid.path)
77 return 0;
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +000078 return 1;
79}
80
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +053081/* Always get a new inode */
82static int v9fs_test_new_inode_dotl(struct inode *inode, void *data)
83{
84 return 0;
85}
86
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +000087static int v9fs_set_inode_dotl(struct inode *inode, void *data)
88{
89 struct v9fs_inode *v9inode = V9FS_I(inode);
90 struct p9_stat_dotl *st = (struct p9_stat_dotl *)data;
91
92 memcpy(&v9inode->qid, &st->qid, sizeof(st->qid));
93 inode->i_generation = st->st_gen;
94 return 0;
95}
96
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +053097static struct inode *v9fs_qid_iget_dotl(struct super_block *sb,
98 struct p9_qid *qid,
99 struct p9_fid *fid,
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530100 struct p9_stat_dotl *st,
101 int new)
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530102{
103 int retval;
104 unsigned long i_ino;
105 struct inode *inode;
106 struct v9fs_session_info *v9ses = sb->s_fs_info;
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530107 int (*test)(struct inode *, void *);
108
109 if (new)
110 test = v9fs_test_new_inode_dotl;
111 else
112 test = v9fs_test_inode_dotl;
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530113
114 i_ino = v9fs_qid2ino(qid);
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530115 inode = iget5_locked(sb, i_ino, test, v9fs_set_inode_dotl, st);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530116 if (!inode)
117 return ERR_PTR(-ENOMEM);
118 if (!(inode->i_state & I_NEW))
119 return inode;
120 /*
121 * initialize the inode with the stat info
122 * FIXME!! we may need support for stale inodes
123 * later.
124 */
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000125 inode->i_ino = i_ino;
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000126 retval = v9fs_init_inode(v9ses, inode,
127 st->st_mode, new_decode_dev(st->st_rdev));
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530128 if (retval)
129 goto error;
130
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800131 v9fs_stat2inode_dotl(st, inode, 0);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530132 v9fs_cache_inode_get_cookie(inode);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530133 retval = v9fs_get_acl(inode, fid);
134 if (retval)
135 goto error;
136
137 unlock_new_inode(inode);
138 return inode;
139error:
Al Viro0a73d0a2015-07-12 10:34:29 -0400140 iget_failed(inode);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530141 return ERR_PTR(retval);
142
143}
144
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600145struct inode *
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530146v9fs_inode_from_fid_dotl(struct v9fs_session_info *v9ses, struct p9_fid *fid,
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530147 struct super_block *sb, int new)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600148{
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600149 struct p9_stat_dotl *st;
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530150 struct inode *inode = NULL;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600151
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000152 st = p9_client_getattr_dotl(fid, P9_STATS_BASIC | P9_STATS_GEN);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600153 if (IS_ERR(st))
154 return ERR_CAST(st);
155
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530156 inode = v9fs_qid_iget_dotl(sb, &st->qid, fid, st, new);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600157 kfree(st);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530158 return inode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600159}
160
Aneesh Kumar K.Vf88657c2011-08-03 19:55:32 +0530161struct dotl_openflag_map {
162 int open_flag;
163 int dotl_flag;
164};
165
166static int v9fs_mapped_dotl_flags(int flags)
167{
168 int i;
169 int rflags = 0;
170 struct dotl_openflag_map dotl_oflag_map[] = {
171 { O_CREAT, P9_DOTL_CREATE },
172 { O_EXCL, P9_DOTL_EXCL },
173 { O_NOCTTY, P9_DOTL_NOCTTY },
Aneesh Kumar K.Vf88657c2011-08-03 19:55:32 +0530174 { O_APPEND, P9_DOTL_APPEND },
175 { O_NONBLOCK, P9_DOTL_NONBLOCK },
176 { O_DSYNC, P9_DOTL_DSYNC },
177 { FASYNC, P9_DOTL_FASYNC },
178 { O_DIRECT, P9_DOTL_DIRECT },
179 { O_LARGEFILE, P9_DOTL_LARGEFILE },
180 { O_DIRECTORY, P9_DOTL_DIRECTORY },
181 { O_NOFOLLOW, P9_DOTL_NOFOLLOW },
182 { O_NOATIME, P9_DOTL_NOATIME },
183 { O_CLOEXEC, P9_DOTL_CLOEXEC },
184 { O_SYNC, P9_DOTL_SYNC},
185 };
186 for (i = 0; i < ARRAY_SIZE(dotl_oflag_map); i++) {
187 if (flags & dotl_oflag_map[i].open_flag)
188 rflags |= dotl_oflag_map[i].dotl_flag;
189 }
190 return rflags;
191}
192
193/**
194 * v9fs_open_to_dotl_flags- convert Linux specific open flags to
195 * plan 9 open flag.
196 * @flags: flags to convert
197 */
198int v9fs_open_to_dotl_flags(int flags)
199{
200 int rflags = 0;
201
202 /*
203 * We have same bits for P9_DOTL_READONLY, P9_DOTL_WRONLY
204 * and P9_DOTL_NOACCESS
205 */
206 rflags |= flags & O_ACCMODE;
207 rflags |= v9fs_mapped_dotl_flags(flags);
208
209 return rflags;
210}
211
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600212/**
213 * v9fs_vfs_create_dotl - VFS hook to create files for 9P2000.L protocol.
214 * @dir: directory inode that is being created
215 * @dentry: dentry that is being deleted
Fabian Frederickfd2916b2014-06-04 16:06:26 -0700216 * @omode: create permissions
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600217 *
218 */
219
220static int
Al Viro4acdaf22011-07-26 01:42:34 -0400221v9fs_vfs_create_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
Al Viroebfc3b42012-06-10 18:05:36 -0400222 bool excl)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600223{
Miklos Szeredie43ae792012-06-05 15:10:26 +0200224 return v9fs_vfs_mknod_dotl(dir, dentry, omode, 0);
225}
226
Al Virod9585272012-06-22 12:39:14 +0400227static int
Miklos Szeredie43ae792012-06-05 15:10:26 +0200228v9fs_vfs_atomic_open_dotl(struct inode *dir, struct dentry *dentry,
Al Viro44907d72018-06-08 13:32:02 -0400229 struct file *file, unsigned flags, umode_t omode)
Miklos Szeredie43ae792012-06-05 15:10:26 +0200230{
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600231 int err = 0;
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -0800232 kgid_t gid;
Al Virod3fb6122011-07-23 18:37:50 -0400233 umode_t mode;
Al Viro7880b432017-01-12 04:01:17 -0500234 const unsigned char *name = NULL;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600235 struct p9_qid qid;
236 struct inode *inode;
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530237 struct p9_fid *fid = NULL;
238 struct v9fs_inode *v9inode;
239 struct p9_fid *dfid, *ofid, *inode_fid;
240 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600241 struct posix_acl *pacl = NULL, *dacl = NULL;
Miklos Szeredie43ae792012-06-05 15:10:26 +0200242 struct dentry *res = NULL;
243
Al Viro00699ad2016-07-05 09:44:53 -0400244 if (d_in_lookup(dentry)) {
Al Viro00cd8dd2012-06-10 17:13:09 -0400245 res = v9fs_vfs_lookup(dir, dentry, 0);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200246 if (IS_ERR(res))
Al Virod9585272012-06-22 12:39:14 +0400247 return PTR_ERR(res);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200248
249 if (res)
250 dentry = res;
251 }
252
253 /* Only creates */
David Howells2b0143b2015-03-17 22:25:59 +0000254 if (!(flags & O_CREAT) || d_really_is_positive(dentry))
M. Mohan Kumarb6f4bee2013-02-05 14:25:05 +0530255 return finish_no_open(file, res);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600256
257 v9ses = v9fs_inode2v9ses(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600258
Al Viro7880b432017-01-12 04:01:17 -0500259 name = dentry->d_name.name;
Linus Torvalds609eac12012-01-10 15:09:01 -0800260 p9_debug(P9_DEBUG_VFS, "name:%s flags:0x%x mode:0x%hx\n",
Joe Perches5d385152011-11-28 10:40:46 -0800261 name, flags, omode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600262
Al Viro77d5a6b2016-05-29 15:29:26 -0400263 dfid = v9fs_parent_fid(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600264 if (IS_ERR(dfid)) {
265 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800266 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Al Virod9585272012-06-22 12:39:14 +0400267 goto out;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600268 }
269
270 /* clone a fid to use for creation */
Al Viro7d50a292016-08-03 11:12:12 -0400271 ofid = clone_fid(dfid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600272 if (IS_ERR(ofid)) {
273 err = PTR_ERR(ofid);
Joe Perches5d385152011-11-28 10:40:46 -0800274 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
Al Virod9585272012-06-22 12:39:14 +0400275 goto out;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600276 }
277
278 gid = v9fs_get_fsgid_for_create(dir);
279
280 mode = omode;
281 /* Update mode based on ACL value */
282 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
283 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800284 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in creat %d\n",
285 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600286 goto error;
287 }
Aneesh Kumar K.Vf88657c2011-08-03 19:55:32 +0530288 err = p9_client_create_dotl(ofid, name, v9fs_open_to_dotl_flags(flags),
289 mode, gid, &qid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600290 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800291 p9_debug(P9_DEBUG_VFS, "p9_client_open_dotl failed in creat %d\n",
292 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600293 goto error;
294 }
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530295 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600296
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600297 /* instantiate inode and assign the unopened fid to the dentry */
298 fid = p9_client_walk(dfid, 1, &name, 1);
299 if (IS_ERR(fid)) {
300 err = PTR_ERR(fid);
Joe Perches5d385152011-11-28 10:40:46 -0800301 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600302 fid = NULL;
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600303 goto error;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600304 }
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530305 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600306 if (IS_ERR(inode)) {
307 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800308 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n", err);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600309 goto error;
310 }
Al Viro3592ac42013-01-31 13:45:39 -0500311 /* Now set the ACL based on the default value */
312 v9fs_set_create_acl(inode, fid, dacl, pacl);
313
Al Viro2ea03e1d2013-02-28 01:18:14 -0500314 v9fs_fid_add(dentry, fid);
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000315 d_instantiate(dentry, inode);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600316
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530317 v9inode = V9FS_I(inode);
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530318 mutex_lock(&v9inode->v_mutex);
Dominique Martinetfb89b452014-01-10 13:44:09 +0100319 if ((v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) &&
320 !v9inode->writeback_fid &&
Aneesh Kumar K.V7add6972011-03-08 16:39:49 +0530321 ((flags & O_ACCMODE) != O_RDONLY)) {
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530322 /*
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530323 * clone a fid and add it to writeback_fid
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530324 * we do it during open time instead of
325 * page dirty time via write_begin/page_mkwrite
326 * because we want write after unlink usecase
327 * to work.
328 */
329 inode_fid = v9fs_writeback_fid(dentry);
330 if (IS_ERR(inode_fid)) {
331 err = PTR_ERR(inode_fid);
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530332 mutex_unlock(&v9inode->v_mutex);
Aneesh Kumar K.V398c4f02011-05-20 18:55:51 +0000333 goto err_clunk_old_fid;
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530334 }
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530335 v9inode->writeback_fid = (void *) inode_fid;
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530336 }
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530337 mutex_unlock(&v9inode->v_mutex);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600338 /* Since we are opening a file, assign the open fid to the file */
Al Virobe12af32018-06-08 11:44:56 -0400339 err = finish_open(file, dentry, generic_file_open);
Al Viro30d90492012-06-22 12:40:19 +0400340 if (err)
Aneesh Kumar K.V398c4f02011-05-20 18:55:51 +0000341 goto err_clunk_old_fid;
Al Viro30d90492012-06-22 12:40:19 +0400342 file->private_data = ofid;
Dominique Martinetfb89b452014-01-10 13:44:09 +0100343 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE)
Al Viro30d90492012-06-22 12:40:19 +0400344 v9fs_cache_inode_set_cookie(inode, file);
Greg Kurz987a6482020-09-23 22:11:44 +0800345 v9fs_open_fid_add(inode, ofid);
Al Viro73a09dd2018-06-08 13:22:02 -0400346 file->f_mode |= FMODE_CREATED;
Miklos Szeredie43ae792012-06-05 15:10:26 +0200347out:
Al Viro5fa63002013-01-31 13:31:23 -0500348 v9fs_put_acl(dacl, pacl);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200349 dput(res);
Al Virod9585272012-06-22 12:39:14 +0400350 return err;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600351
352error:
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600353 if (fid)
354 p9_client_clunk(fid);
Aneesh Kumar K.V398c4f02011-05-20 18:55:51 +0000355err_clunk_old_fid:
356 if (ofid)
357 p9_client_clunk(ofid);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200358 goto out;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600359}
360
361/**
362 * v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory
363 * @dir: inode that is being unlinked
364 * @dentry: dentry that is being unlinked
Fabian Frederickfd2916b2014-06-04 16:06:26 -0700365 * @omode: mode for new directory
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600366 *
367 */
368
369static int v9fs_vfs_mkdir_dotl(struct inode *dir,
Al Viro18bb1db2011-07-26 01:41:39 -0400370 struct dentry *dentry, umode_t omode)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600371{
372 int err;
373 struct v9fs_session_info *v9ses;
374 struct p9_fid *fid = NULL, *dfid = NULL;
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -0800375 kgid_t gid;
Al Viro7880b432017-01-12 04:01:17 -0500376 const unsigned char *name;
Al Virod3fb6122011-07-23 18:37:50 -0400377 umode_t mode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600378 struct inode *inode;
379 struct p9_qid qid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600380 struct posix_acl *dacl = NULL, *pacl = NULL;
381
Al Viro4b8e9922014-08-19 20:17:38 -0400382 p9_debug(P9_DEBUG_VFS, "name %pd\n", dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600383 err = 0;
384 v9ses = v9fs_inode2v9ses(dir);
385
386 omode |= S_IFDIR;
387 if (dir->i_mode & S_ISGID)
388 omode |= S_ISGID;
389
Al Viro77d5a6b2016-05-29 15:29:26 -0400390 dfid = v9fs_parent_fid(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600391 if (IS_ERR(dfid)) {
392 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800393 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600394 dfid = NULL;
395 goto error;
396 }
397
398 gid = v9fs_get_fsgid_for_create(dir);
399 mode = omode;
400 /* Update mode based on ACL value */
401 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
402 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800403 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mkdir %d\n",
404 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600405 goto error;
406 }
Al Viro7880b432017-01-12 04:01:17 -0500407 name = dentry->d_name.name;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600408 err = p9_client_mkdir_dotl(dfid, name, mode, gid, &qid);
409 if (err < 0)
410 goto error;
411
Al Viro3592ac42013-01-31 13:45:39 -0500412 fid = p9_client_walk(dfid, 1, &name, 1);
413 if (IS_ERR(fid)) {
414 err = PTR_ERR(fid);
415 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
416 err);
417 fid = NULL;
418 goto error;
419 }
420
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600421 /* instantiate inode and assign the unopened fid to the dentry */
422 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530423 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600424 if (IS_ERR(inode)) {
425 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800426 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
427 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600428 goto error;
429 }
Al Viro2ea03e1d2013-02-28 01:18:14 -0500430 v9fs_fid_add(dentry, fid);
Al Viro3592ac42013-01-31 13:45:39 -0500431 v9fs_set_create_acl(inode, fid, dacl, pacl);
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000432 d_instantiate(dentry, inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600433 fid = NULL;
Al Viro2ea03e1d2013-02-28 01:18:14 -0500434 err = 0;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600435 } else {
436 /*
437 * Not in cached mode. No need to populate
438 * inode with stat. We need to get an inode
439 * so that we can set the acl with dentry
440 */
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000441 inode = v9fs_get_inode(dir->i_sb, mode, 0);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600442 if (IS_ERR(inode)) {
443 err = PTR_ERR(inode);
444 goto error;
445 }
Al Viro3592ac42013-01-31 13:45:39 -0500446 v9fs_set_create_acl(inode, fid, dacl, pacl);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600447 d_instantiate(dentry, inode);
448 }
Aneesh Kumar K.Vb271ec42011-02-28 17:04:05 +0530449 inc_nlink(dir);
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530450 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600451error:
452 if (fid)
453 p9_client_clunk(fid);
Al Viro5fa63002013-01-31 13:31:23 -0500454 v9fs_put_acl(dacl, pacl);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600455 return err;
456}
457
458static int
David Howellsa528d352017-01-31 16:46:22 +0000459v9fs_vfs_getattr_dotl(const struct path *path, struct kstat *stat,
460 u32 request_mask, unsigned int flags)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600461{
David Howellsa528d352017-01-31 16:46:22 +0000462 struct dentry *dentry = path->dentry;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600463 struct v9fs_session_info *v9ses;
464 struct p9_fid *fid;
465 struct p9_stat_dotl *st;
466
Joe Perches5d385152011-11-28 10:40:46 -0800467 p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry);
Aneesh Kumar K.V42869c82011-03-08 16:39:50 +0530468 v9ses = v9fs_dentry2v9ses(dentry);
Aneesh Kumar K.Va1211902011-02-28 17:04:01 +0530469 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
David Howells2b0143b2015-03-17 22:25:59 +0000470 generic_fillattr(d_inode(dentry), stat);
Aneesh Kumar K.Va1211902011-02-28 17:04:01 +0530471 return 0;
472 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600473 fid = v9fs_fid_lookup(dentry);
474 if (IS_ERR(fid))
475 return PTR_ERR(fid);
476
477 /* Ask for all the fields in stat structure. Server will return
478 * whatever it supports
479 */
480
481 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
482 if (IS_ERR(st))
483 return PTR_ERR(st);
484
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800485 v9fs_stat2inode_dotl(st, d_inode(dentry), 0);
David Howells2b0143b2015-03-17 22:25:59 +0000486 generic_fillattr(d_inode(dentry), stat);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600487 /* Change block size to what the server returned */
488 stat->blksize = st->st_blksize;
489
490 kfree(st);
491 return 0;
492}
493
Aneesh Kumar K.Vf7666192011-12-18 23:03:13 +0530494/*
495 * Attribute flags.
496 */
497#define P9_ATTR_MODE (1 << 0)
498#define P9_ATTR_UID (1 << 1)
499#define P9_ATTR_GID (1 << 2)
500#define P9_ATTR_SIZE (1 << 3)
501#define P9_ATTR_ATIME (1 << 4)
502#define P9_ATTR_MTIME (1 << 5)
503#define P9_ATTR_CTIME (1 << 6)
504#define P9_ATTR_ATIME_SET (1 << 7)
505#define P9_ATTR_MTIME_SET (1 << 8)
506
507struct dotl_iattr_map {
508 int iattr_valid;
509 int p9_iattr_valid;
510};
511
512static int v9fs_mapped_iattr_valid(int iattr_valid)
513{
514 int i;
515 int p9_iattr_valid = 0;
516 struct dotl_iattr_map dotl_iattr_map[] = {
517 { ATTR_MODE, P9_ATTR_MODE },
518 { ATTR_UID, P9_ATTR_UID },
519 { ATTR_GID, P9_ATTR_GID },
520 { ATTR_SIZE, P9_ATTR_SIZE },
521 { ATTR_ATIME, P9_ATTR_ATIME },
522 { ATTR_MTIME, P9_ATTR_MTIME },
523 { ATTR_CTIME, P9_ATTR_CTIME },
524 { ATTR_ATIME_SET, P9_ATTR_ATIME_SET },
525 { ATTR_MTIME_SET, P9_ATTR_MTIME_SET },
526 };
527 for (i = 0; i < ARRAY_SIZE(dotl_iattr_map); i++) {
528 if (iattr_valid & dotl_iattr_map[i].iattr_valid)
529 p9_iattr_valid |= dotl_iattr_map[i].p9_iattr_valid;
530 }
531 return p9_iattr_valid;
532}
533
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600534/**
535 * v9fs_vfs_setattr_dotl - set file metadata
536 * @dentry: file whose metadata to set
537 * @iattr: metadata assignment structure
538 *
539 */
540
541int v9fs_vfs_setattr_dotl(struct dentry *dentry, struct iattr *iattr)
542{
543 int retval;
Jianyong Wu66246642020-07-10 18:15:48 +0800544 struct p9_fid *fid = NULL;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600545 struct p9_iattr_dotl p9attr;
David Howells2b0143b2015-03-17 22:25:59 +0000546 struct inode *inode = d_inode(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600547
Joe Perches5d385152011-11-28 10:40:46 -0800548 p9_debug(P9_DEBUG_VFS, "\n");
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600549
Jan Kara31051c82016-05-26 16:55:18 +0200550 retval = setattr_prepare(dentry, iattr);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600551 if (retval)
552 return retval;
553
Aneesh Kumar K.Vf7666192011-12-18 23:03:13 +0530554 p9attr.valid = v9fs_mapped_iattr_valid(iattr->ia_valid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600555 p9attr.mode = iattr->ia_mode;
556 p9attr.uid = iattr->ia_uid;
557 p9attr.gid = iattr->ia_gid;
558 p9attr.size = iattr->ia_size;
559 p9attr.atime_sec = iattr->ia_atime.tv_sec;
560 p9attr.atime_nsec = iattr->ia_atime.tv_nsec;
561 p9attr.mtime_sec = iattr->ia_mtime.tv_sec;
562 p9attr.mtime_nsec = iattr->ia_mtime.tv_nsec;
563
Jianyong Wu66246642020-07-10 18:15:48 +0800564 if (iattr->ia_valid & ATTR_FILE) {
565 fid = iattr->ia_file->private_data;
566 WARN_ON(!fid);
567 }
568 if (!fid)
569 fid = v9fs_fid_lookup(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600570 if (IS_ERR(fid))
571 return PTR_ERR(fid);
572
Aneesh Kumar K.V3dc54362011-02-28 17:04:11 +0530573 /* Write all dirty data */
Al Virobe308f02013-01-31 12:58:16 -0500574 if (S_ISREG(inode->i_mode))
575 filemap_write_and_wait(inode->i_mapping);
Aneesh Kumar K.V3dc54362011-02-28 17:04:11 +0530576
Aneesh Kumar K.Vf10fc502011-02-28 17:04:10 +0530577 retval = p9_client_setattr(fid, &p9attr);
578 if (retval < 0)
579 return retval;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600580
Aneesh Kumar K.V059c1382011-03-08 16:39:48 +0530581 if ((iattr->ia_valid & ATTR_SIZE) &&
Al Virobe308f02013-01-31 12:58:16 -0500582 iattr->ia_size != i_size_read(inode))
583 truncate_setsize(inode, iattr->ia_size);
Aneesh Kumar K.V059c1382011-03-08 16:39:48 +0530584
Al Virobe308f02013-01-31 12:58:16 -0500585 v9fs_invalidate_inode_attr(inode);
586 setattr_copy(inode, iattr);
587 mark_inode_dirty(inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600588 if (iattr->ia_valid & ATTR_MODE) {
589 /* We also want to update ACL when we update mode bits */
Al Virobe308f02013-01-31 12:58:16 -0500590 retval = v9fs_acl_chmod(inode, fid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600591 if (retval < 0)
592 return retval;
593 }
594 return 0;
595}
596
597/**
598 * v9fs_stat2inode_dotl - populate an inode structure with stat info
599 * @stat: stat structure
600 * @inode: inode to populate
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800601 * @flags: ctrl flags (e.g. V9FS_STAT2INODE_KEEP_ISIZE)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600602 *
603 */
604
605void
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800606v9fs_stat2inode_dotl(struct p9_stat_dotl *stat, struct inode *inode,
607 unsigned int flags)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600608{
Al Viro3eda0de2011-07-26 02:53:22 -0400609 umode_t mode;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530610 struct v9fs_inode *v9inode = V9FS_I(inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600611
612 if ((stat->st_result_mask & P9_STATS_BASIC) == P9_STATS_BASIC) {
613 inode->i_atime.tv_sec = stat->st_atime_sec;
614 inode->i_atime.tv_nsec = stat->st_atime_nsec;
615 inode->i_mtime.tv_sec = stat->st_mtime_sec;
616 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
617 inode->i_ctime.tv_sec = stat->st_ctime_sec;
618 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
619 inode->i_uid = stat->st_uid;
620 inode->i_gid = stat->st_gid;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200621 set_nlink(inode, stat->st_nlink);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600622
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000623 mode = stat->st_mode & S_IALLUGO;
624 mode |= inode->i_mode & ~S_IALLUGO;
625 inode->i_mode = mode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600626
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800627 if (!(flags & V9FS_STAT2INODE_KEEP_ISIZE))
628 v9fs_i_size_write(inode, stat->st_size);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600629 inode->i_blocks = stat->st_blocks;
630 } else {
631 if (stat->st_result_mask & P9_STATS_ATIME) {
632 inode->i_atime.tv_sec = stat->st_atime_sec;
633 inode->i_atime.tv_nsec = stat->st_atime_nsec;
634 }
635 if (stat->st_result_mask & P9_STATS_MTIME) {
636 inode->i_mtime.tv_sec = stat->st_mtime_sec;
637 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
638 }
639 if (stat->st_result_mask & P9_STATS_CTIME) {
640 inode->i_ctime.tv_sec = stat->st_ctime_sec;
641 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
642 }
643 if (stat->st_result_mask & P9_STATS_UID)
644 inode->i_uid = stat->st_uid;
645 if (stat->st_result_mask & P9_STATS_GID)
646 inode->i_gid = stat->st_gid;
647 if (stat->st_result_mask & P9_STATS_NLINK)
Miklos Szeredibfe86842011-10-28 14:13:29 +0200648 set_nlink(inode, stat->st_nlink);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600649 if (stat->st_result_mask & P9_STATS_MODE) {
650 inode->i_mode = stat->st_mode;
651 if ((S_ISBLK(inode->i_mode)) ||
652 (S_ISCHR(inode->i_mode)))
653 init_special_inode(inode, inode->i_mode,
654 inode->i_rdev);
655 }
656 if (stat->st_result_mask & P9_STATS_RDEV)
657 inode->i_rdev = new_decode_dev(stat->st_rdev);
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800658 if (!(flags & V9FS_STAT2INODE_KEEP_ISIZE) &&
659 stat->st_result_mask & P9_STATS_SIZE)
660 v9fs_i_size_write(inode, stat->st_size);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600661 if (stat->st_result_mask & P9_STATS_BLOCKS)
662 inode->i_blocks = stat->st_blocks;
663 }
664 if (stat->st_result_mask & P9_STATS_GEN)
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000665 inode->i_generation = stat->st_gen;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600666
667 /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION
668 * because the inode structure does not have fields for them.
669 */
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530670 v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600671}
672
673static int
674v9fs_vfs_symlink_dotl(struct inode *dir, struct dentry *dentry,
675 const char *symname)
676{
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600677 int err;
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -0800678 kgid_t gid;
Al Viro7880b432017-01-12 04:01:17 -0500679 const unsigned char *name;
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530680 struct p9_qid qid;
681 struct inode *inode;
682 struct p9_fid *dfid;
683 struct p9_fid *fid = NULL;
684 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600685
Al Viro7880b432017-01-12 04:01:17 -0500686 name = dentry->d_name.name;
Joe Perches5d385152011-11-28 10:40:46 -0800687 p9_debug(P9_DEBUG_VFS, "%lu,%s,%s\n", dir->i_ino, name, symname);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600688 v9ses = v9fs_inode2v9ses(dir);
689
Al Viro77d5a6b2016-05-29 15:29:26 -0400690 dfid = v9fs_parent_fid(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600691 if (IS_ERR(dfid)) {
692 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800693 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600694 return err;
695 }
696
697 gid = v9fs_get_fsgid_for_create(dir);
698
699 /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */
Al Viro7880b432017-01-12 04:01:17 -0500700 err = p9_client_symlink(dfid, name, symname, gid, &qid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600701
702 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800703 p9_debug(P9_DEBUG_VFS, "p9_client_symlink failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600704 goto error;
705 }
706
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530707 v9fs_invalidate_inode_attr(dir);
Dominique Martinetfb89b452014-01-10 13:44:09 +0100708 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600709 /* Now walk from the parent so we can get an unopened fid. */
710 fid = p9_client_walk(dfid, 1, &name, 1);
711 if (IS_ERR(fid)) {
712 err = PTR_ERR(fid);
Joe Perches5d385152011-11-28 10:40:46 -0800713 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
714 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600715 fid = NULL;
716 goto error;
717 }
718
719 /* instantiate inode and assign the unopened fid to dentry */
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530720 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600721 if (IS_ERR(inode)) {
722 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800723 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
724 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600725 goto error;
726 }
Al Viro2ea03e1d2013-02-28 01:18:14 -0500727 v9fs_fid_add(dentry, fid);
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000728 d_instantiate(dentry, inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600729 fid = NULL;
Al Viro2ea03e1d2013-02-28 01:18:14 -0500730 err = 0;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600731 } else {
732 /* Not in cached mode. No need to populate inode with stat */
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000733 inode = v9fs_get_inode(dir->i_sb, S_IFLNK, 0);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600734 if (IS_ERR(inode)) {
735 err = PTR_ERR(inode);
736 goto error;
737 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600738 d_instantiate(dentry, inode);
739 }
740
741error:
742 if (fid)
743 p9_client_clunk(fid);
744
745 return err;
746}
747
748/**
749 * v9fs_vfs_link_dotl - create a hardlink for dotl
750 * @old_dentry: dentry for file to link to
751 * @dir: inode destination for new link
752 * @dentry: dentry for link
753 *
754 */
755
756static int
757v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir,
758 struct dentry *dentry)
759{
760 int err;
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530761 struct p9_fid *dfid, *oldfid;
762 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600763
Al Viro4b8e9922014-08-19 20:17:38 -0400764 p9_debug(P9_DEBUG_VFS, "dir ino: %lu, old_name: %pd, new_name: %pd\n",
765 dir->i_ino, old_dentry, dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600766
767 v9ses = v9fs_inode2v9ses(dir);
Al Viro77d5a6b2016-05-29 15:29:26 -0400768 dfid = v9fs_parent_fid(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600769 if (IS_ERR(dfid))
770 return PTR_ERR(dfid);
771
772 oldfid = v9fs_fid_lookup(old_dentry);
773 if (IS_ERR(oldfid))
774 return PTR_ERR(oldfid);
775
Al Viro7880b432017-01-12 04:01:17 -0500776 err = p9_client_link(dfid, oldfid, dentry->d_name.name);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600777
778 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800779 p9_debug(P9_DEBUG_VFS, "p9_client_link failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600780 return err;
781 }
782
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530783 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600784 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
785 /* Get the latest stat info from server. */
786 struct p9_fid *fid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600787 fid = v9fs_fid_lookup(old_dentry);
788 if (IS_ERR(fid))
789 return PTR_ERR(fid);
790
David Howells2b0143b2015-03-17 22:25:59 +0000791 v9fs_refresh_inode_dotl(fid, d_inode(old_dentry));
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600792 }
David Howells2b0143b2015-03-17 22:25:59 +0000793 ihold(d_inode(old_dentry));
794 d_instantiate(dentry, d_inode(old_dentry));
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600795
796 return err;
797}
798
799/**
800 * v9fs_vfs_mknod_dotl - create a special file
801 * @dir: inode destination for new link
802 * @dentry: dentry for file
Fabian Frederickfd2916b2014-06-04 16:06:26 -0700803 * @omode: mode for creation
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600804 * @rdev: device associated with special file
805 *
806 */
807static int
Al Viro1a67aaf2011-07-26 01:52:52 -0400808v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600809 dev_t rdev)
810{
811 int err;
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -0800812 kgid_t gid;
Al Viro7880b432017-01-12 04:01:17 -0500813 const unsigned char *name;
Al Virod3fb6122011-07-23 18:37:50 -0400814 umode_t mode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600815 struct v9fs_session_info *v9ses;
816 struct p9_fid *fid = NULL, *dfid = NULL;
817 struct inode *inode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600818 struct p9_qid qid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600819 struct posix_acl *dacl = NULL, *pacl = NULL;
820
Al Viroa4555892014-10-21 20:11:25 -0400821 p9_debug(P9_DEBUG_VFS, " %lu,%pd mode: %hx MAJOR: %u MINOR: %u\n",
822 dir->i_ino, dentry, omode,
Joe Perches5d385152011-11-28 10:40:46 -0800823 MAJOR(rdev), MINOR(rdev));
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600824
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600825 v9ses = v9fs_inode2v9ses(dir);
Al Viro77d5a6b2016-05-29 15:29:26 -0400826 dfid = v9fs_parent_fid(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600827 if (IS_ERR(dfid)) {
828 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800829 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600830 dfid = NULL;
831 goto error;
832 }
833
834 gid = v9fs_get_fsgid_for_create(dir);
835 mode = omode;
836 /* Update mode based on ACL value */
837 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
838 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800839 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mknod %d\n",
840 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600841 goto error;
842 }
Al Viro7880b432017-01-12 04:01:17 -0500843 name = dentry->d_name.name;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600844
845 err = p9_client_mknod_dotl(dfid, name, mode, rdev, gid, &qid);
846 if (err < 0)
847 goto error;
848
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530849 v9fs_invalidate_inode_attr(dir);
Al Viro3592ac42013-01-31 13:45:39 -0500850 fid = p9_client_walk(dfid, 1, &name, 1);
851 if (IS_ERR(fid)) {
852 err = PTR_ERR(fid);
853 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
854 err);
855 fid = NULL;
856 goto error;
857 }
858
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600859 /* instantiate inode and assign the unopened fid to the dentry */
860 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530861 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600862 if (IS_ERR(inode)) {
863 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800864 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
865 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600866 goto error;
867 }
Al Viro3592ac42013-01-31 13:45:39 -0500868 v9fs_set_create_acl(inode, fid, dacl, pacl);
Al Viro2ea03e1d2013-02-28 01:18:14 -0500869 v9fs_fid_add(dentry, fid);
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000870 d_instantiate(dentry, inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600871 fid = NULL;
Al Viro2ea03e1d2013-02-28 01:18:14 -0500872 err = 0;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600873 } else {
874 /*
875 * Not in cached mode. No need to populate inode with stat.
876 * socket syscall returns a fd, so we need instantiate
877 */
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000878 inode = v9fs_get_inode(dir->i_sb, mode, rdev);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600879 if (IS_ERR(inode)) {
880 err = PTR_ERR(inode);
881 goto error;
882 }
Al Viro3592ac42013-01-31 13:45:39 -0500883 v9fs_set_create_acl(inode, fid, dacl, pacl);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600884 d_instantiate(dentry, inode);
885 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600886error:
887 if (fid)
888 p9_client_clunk(fid);
Al Viro5fa63002013-01-31 13:31:23 -0500889 v9fs_put_acl(dacl, pacl);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600890 return err;
891}
892
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600893/**
Al Viro6b255392015-11-17 10:20:54 -0500894 * v9fs_vfs_get_link_dotl - follow a symlink path
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600895 * @dentry: dentry for symlink
Al Viro6b255392015-11-17 10:20:54 -0500896 * @inode: inode for symlink
Al Virofceef392015-12-29 15:58:39 -0500897 * @done: destructor for return value
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600898 */
899
Al Viro680baac2015-05-02 13:32:22 -0400900static const char *
Al Viro6b255392015-11-17 10:20:54 -0500901v9fs_vfs_get_link_dotl(struct dentry *dentry,
Al Virofceef392015-12-29 15:58:39 -0500902 struct inode *inode,
903 struct delayed_call *done)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600904{
Al Viro6b255392015-11-17 10:20:54 -0500905 struct p9_fid *fid;
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530906 char *target;
Al Viro90e4fc82015-04-14 17:42:49 -0400907 int retval;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600908
Al Viro6b255392015-11-17 10:20:54 -0500909 if (!dentry)
910 return ERR_PTR(-ECHILD);
911
Al Viro4b8e9922014-08-19 20:17:38 -0400912 p9_debug(P9_DEBUG_VFS, "%pd\n", dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600913
Al Viro6b255392015-11-17 10:20:54 -0500914 fid = v9fs_fid_lookup(dentry);
Al Viro90e4fc82015-04-14 17:42:49 -0400915 if (IS_ERR(fid))
916 return ERR_CAST(fid);
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530917 retval = p9_client_readlink(fid, &target);
Al Viro90e4fc82015-04-14 17:42:49 -0400918 if (retval)
919 return ERR_PTR(retval);
Al Virofceef392015-12-29 15:58:39 -0500920 set_delayed_call(done, kfree_link, target);
921 return target;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600922}
923
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530924int v9fs_refresh_inode_dotl(struct p9_fid *fid, struct inode *inode)
925{
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530926 struct p9_stat_dotl *st;
927 struct v9fs_session_info *v9ses;
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800928 unsigned int flags;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530929
930 v9ses = v9fs_inode2v9ses(inode);
931 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
932 if (IS_ERR(st))
933 return PTR_ERR(st);
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000934 /*
935 * Don't update inode if the file type is different
936 */
937 if ((inode->i_mode & S_IFMT) != (st->st_mode & S_IFMT))
938 goto out;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530939
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530940 /*
941 * We don't want to refresh inode->i_size,
942 * because we may have cached data
943 */
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800944 flags = (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) ?
945 V9FS_STAT2INODE_KEEP_ISIZE : 0;
946 v9fs_stat2inode_dotl(st, inode, flags);
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000947out:
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530948 kfree(st);
949 return 0;
950}
951
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600952const struct inode_operations v9fs_dir_inode_operations_dotl = {
953 .create = v9fs_vfs_create_dotl,
Miklos Szeredie43ae792012-06-05 15:10:26 +0200954 .atomic_open = v9fs_vfs_atomic_open_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600955 .lookup = v9fs_vfs_lookup,
956 .link = v9fs_vfs_link_dotl,
957 .symlink = v9fs_vfs_symlink_dotl,
958 .unlink = v9fs_vfs_unlink,
959 .mkdir = v9fs_vfs_mkdir_dotl,
960 .rmdir = v9fs_vfs_rmdir,
961 .mknod = v9fs_vfs_mknod_dotl,
962 .rename = v9fs_vfs_rename,
963 .getattr = v9fs_vfs_getattr_dotl,
964 .setattr = v9fs_vfs_setattr_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600965 .listxattr = v9fs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200966 .get_acl = v9fs_iop_get_acl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600967};
968
969const struct inode_operations v9fs_file_inode_operations_dotl = {
970 .getattr = v9fs_vfs_getattr_dotl,
971 .setattr = v9fs_vfs_setattr_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600972 .listxattr = v9fs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200973 .get_acl = v9fs_iop_get_acl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600974};
975
976const struct inode_operations v9fs_symlink_inode_operations_dotl = {
Al Viro6b255392015-11-17 10:20:54 -0500977 .get_link = v9fs_vfs_get_link_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600978 .getattr = v9fs_vfs_getattr_dotl,
979 .setattr = v9fs_vfs_setattr_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600980 .listxattr = v9fs_listxattr,
981};