blob: 984f28315d2a0da8f2f4dc94160c4734efeecbd8 [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);
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800299 p9_client_clunk(dfid);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600300 if (IS_ERR(fid)) {
301 err = PTR_ERR(fid);
Joe Perches5d385152011-11-28 10:40:46 -0800302 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600303 fid = NULL;
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600304 goto error;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600305 }
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530306 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600307 if (IS_ERR(inode)) {
308 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800309 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n", err);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600310 goto error;
311 }
Al Viro3592ac42013-01-31 13:45:39 -0500312 /* Now set the ACL based on the default value */
313 v9fs_set_create_acl(inode, fid, dacl, pacl);
314
Al Viro2ea03e1d2013-02-28 01:18:14 -0500315 v9fs_fid_add(dentry, fid);
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000316 d_instantiate(dentry, inode);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600317
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530318 v9inode = V9FS_I(inode);
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530319 mutex_lock(&v9inode->v_mutex);
Dominique Martinetfb89b452014-01-10 13:44:09 +0100320 if ((v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) &&
321 !v9inode->writeback_fid &&
Aneesh Kumar K.V7add6972011-03-08 16:39:49 +0530322 ((flags & O_ACCMODE) != O_RDONLY)) {
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530323 /*
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530324 * clone a fid and add it to writeback_fid
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530325 * we do it during open time instead of
326 * page dirty time via write_begin/page_mkwrite
327 * because we want write after unlink usecase
328 * to work.
329 */
330 inode_fid = v9fs_writeback_fid(dentry);
331 if (IS_ERR(inode_fid)) {
332 err = PTR_ERR(inode_fid);
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530333 mutex_unlock(&v9inode->v_mutex);
Aneesh Kumar K.V398c4f02011-05-20 18:55:51 +0000334 goto err_clunk_old_fid;
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530335 }
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530336 v9inode->writeback_fid = (void *) inode_fid;
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530337 }
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530338 mutex_unlock(&v9inode->v_mutex);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600339 /* Since we are opening a file, assign the open fid to the file */
Al Virobe12af32018-06-08 11:44:56 -0400340 err = finish_open(file, dentry, generic_file_open);
Al Viro30d90492012-06-22 12:40:19 +0400341 if (err)
Aneesh Kumar K.V398c4f02011-05-20 18:55:51 +0000342 goto err_clunk_old_fid;
Al Viro30d90492012-06-22 12:40:19 +0400343 file->private_data = ofid;
Dominique Martinetfb89b452014-01-10 13:44:09 +0100344 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE)
Al Viro30d90492012-06-22 12:40:19 +0400345 v9fs_cache_inode_set_cookie(inode, file);
Greg Kurz987a6482020-09-23 22:11:44 +0800346 v9fs_open_fid_add(inode, ofid);
Al Viro73a09dd2018-06-08 13:22:02 -0400347 file->f_mode |= FMODE_CREATED;
Miklos Szeredie43ae792012-06-05 15:10:26 +0200348out:
Al Viro5fa63002013-01-31 13:31:23 -0500349 v9fs_put_acl(dacl, pacl);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200350 dput(res);
Al Virod9585272012-06-22 12:39:14 +0400351 return err;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600352
353error:
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600354 if (fid)
355 p9_client_clunk(fid);
Aneesh Kumar K.V398c4f02011-05-20 18:55:51 +0000356err_clunk_old_fid:
357 if (ofid)
358 p9_client_clunk(ofid);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200359 goto out;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600360}
361
362/**
363 * v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory
364 * @dir: inode that is being unlinked
365 * @dentry: dentry that is being unlinked
Fabian Frederickfd2916b2014-06-04 16:06:26 -0700366 * @omode: mode for new directory
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600367 *
368 */
369
370static int v9fs_vfs_mkdir_dotl(struct inode *dir,
Al Viro18bb1db2011-07-26 01:41:39 -0400371 struct dentry *dentry, umode_t omode)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600372{
373 int err;
374 struct v9fs_session_info *v9ses;
375 struct p9_fid *fid = NULL, *dfid = NULL;
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -0800376 kgid_t gid;
Al Viro7880b432017-01-12 04:01:17 -0500377 const unsigned char *name;
Al Virod3fb6122011-07-23 18:37:50 -0400378 umode_t mode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600379 struct inode *inode;
380 struct p9_qid qid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600381 struct posix_acl *dacl = NULL, *pacl = NULL;
382
Al Viro4b8e9922014-08-19 20:17:38 -0400383 p9_debug(P9_DEBUG_VFS, "name %pd\n", dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600384 err = 0;
385 v9ses = v9fs_inode2v9ses(dir);
386
387 omode |= S_IFDIR;
388 if (dir->i_mode & S_ISGID)
389 omode |= S_ISGID;
390
Al Viro77d5a6b2016-05-29 15:29:26 -0400391 dfid = v9fs_parent_fid(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600392 if (IS_ERR(dfid)) {
393 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800394 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600395 dfid = NULL;
396 goto error;
397 }
398
399 gid = v9fs_get_fsgid_for_create(dir);
400 mode = omode;
401 /* Update mode based on ACL value */
402 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
403 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800404 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mkdir %d\n",
405 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600406 goto error;
407 }
Al Viro7880b432017-01-12 04:01:17 -0500408 name = dentry->d_name.name;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600409 err = p9_client_mkdir_dotl(dfid, name, mode, gid, &qid);
410 if (err < 0)
411 goto error;
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);
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800455 p9_client_clunk(dfid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600456 return err;
457}
458
459static int
David Howellsa528d352017-01-31 16:46:22 +0000460v9fs_vfs_getattr_dotl(const struct path *path, struct kstat *stat,
461 u32 request_mask, unsigned int flags)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600462{
David Howellsa528d352017-01-31 16:46:22 +0000463 struct dentry *dentry = path->dentry;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600464 struct v9fs_session_info *v9ses;
465 struct p9_fid *fid;
466 struct p9_stat_dotl *st;
467
Joe Perches5d385152011-11-28 10:40:46 -0800468 p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry);
Aneesh Kumar K.V42869c82011-03-08 16:39:50 +0530469 v9ses = v9fs_dentry2v9ses(dentry);
Aneesh Kumar K.Va1211902011-02-28 17:04:01 +0530470 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
Christian Brauner0d56a452021-01-21 14:19:30 +0100471 generic_fillattr(&init_user_ns, d_inode(dentry), stat);
Aneesh Kumar K.Va1211902011-02-28 17:04:01 +0530472 return 0;
473 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600474 fid = v9fs_fid_lookup(dentry);
475 if (IS_ERR(fid))
476 return PTR_ERR(fid);
477
478 /* Ask for all the fields in stat structure. Server will return
479 * whatever it supports
480 */
481
482 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800483 p9_client_clunk(fid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600484 if (IS_ERR(st))
485 return PTR_ERR(st);
486
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800487 v9fs_stat2inode_dotl(st, d_inode(dentry), 0);
Christian Brauner0d56a452021-01-21 14:19:30 +0100488 generic_fillattr(&init_user_ns, d_inode(dentry), stat);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600489 /* Change block size to what the server returned */
490 stat->blksize = st->st_blksize;
491
492 kfree(st);
493 return 0;
494}
495
Aneesh Kumar K.Vf7666192011-12-18 23:03:13 +0530496/*
497 * Attribute flags.
498 */
499#define P9_ATTR_MODE (1 << 0)
500#define P9_ATTR_UID (1 << 1)
501#define P9_ATTR_GID (1 << 2)
502#define P9_ATTR_SIZE (1 << 3)
503#define P9_ATTR_ATIME (1 << 4)
504#define P9_ATTR_MTIME (1 << 5)
505#define P9_ATTR_CTIME (1 << 6)
506#define P9_ATTR_ATIME_SET (1 << 7)
507#define P9_ATTR_MTIME_SET (1 << 8)
508
509struct dotl_iattr_map {
510 int iattr_valid;
511 int p9_iattr_valid;
512};
513
514static int v9fs_mapped_iattr_valid(int iattr_valid)
515{
516 int i;
517 int p9_iattr_valid = 0;
518 struct dotl_iattr_map dotl_iattr_map[] = {
519 { ATTR_MODE, P9_ATTR_MODE },
520 { ATTR_UID, P9_ATTR_UID },
521 { ATTR_GID, P9_ATTR_GID },
522 { ATTR_SIZE, P9_ATTR_SIZE },
523 { ATTR_ATIME, P9_ATTR_ATIME },
524 { ATTR_MTIME, P9_ATTR_MTIME },
525 { ATTR_CTIME, P9_ATTR_CTIME },
526 { ATTR_ATIME_SET, P9_ATTR_ATIME_SET },
527 { ATTR_MTIME_SET, P9_ATTR_MTIME_SET },
528 };
529 for (i = 0; i < ARRAY_SIZE(dotl_iattr_map); i++) {
530 if (iattr_valid & dotl_iattr_map[i].iattr_valid)
531 p9_iattr_valid |= dotl_iattr_map[i].p9_iattr_valid;
532 }
533 return p9_iattr_valid;
534}
535
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600536/**
537 * v9fs_vfs_setattr_dotl - set file metadata
538 * @dentry: file whose metadata to set
539 * @iattr: metadata assignment structure
540 *
541 */
542
543int v9fs_vfs_setattr_dotl(struct dentry *dentry, struct iattr *iattr)
544{
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800545 int retval, use_dentry = 0;
Jianyong Wu66246642020-07-10 18:15:48 +0800546 struct p9_fid *fid = NULL;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600547 struct p9_iattr_dotl p9attr;
David Howells2b0143b2015-03-17 22:25:59 +0000548 struct inode *inode = d_inode(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600549
Joe Perches5d385152011-11-28 10:40:46 -0800550 p9_debug(P9_DEBUG_VFS, "\n");
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600551
Christian Brauner2f221d62021-01-21 14:19:26 +0100552 retval = setattr_prepare(&init_user_ns, dentry, iattr);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600553 if (retval)
554 return retval;
555
Aneesh Kumar K.Vf7666192011-12-18 23:03:13 +0530556 p9attr.valid = v9fs_mapped_iattr_valid(iattr->ia_valid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600557 p9attr.mode = iattr->ia_mode;
558 p9attr.uid = iattr->ia_uid;
559 p9attr.gid = iattr->ia_gid;
560 p9attr.size = iattr->ia_size;
561 p9attr.atime_sec = iattr->ia_atime.tv_sec;
562 p9attr.atime_nsec = iattr->ia_atime.tv_nsec;
563 p9attr.mtime_sec = iattr->ia_mtime.tv_sec;
564 p9attr.mtime_nsec = iattr->ia_mtime.tv_nsec;
565
Jianyong Wu66246642020-07-10 18:15:48 +0800566 if (iattr->ia_valid & ATTR_FILE) {
567 fid = iattr->ia_file->private_data;
568 WARN_ON(!fid);
569 }
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800570 if (!fid) {
Jianyong Wu66246642020-07-10 18:15:48 +0800571 fid = v9fs_fid_lookup(dentry);
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800572 use_dentry = 1;
573 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600574 if (IS_ERR(fid))
575 return PTR_ERR(fid);
576
Aneesh Kumar K.V3dc54362011-02-28 17:04:11 +0530577 /* Write all dirty data */
Al Virobe308f02013-01-31 12:58:16 -0500578 if (S_ISREG(inode->i_mode))
579 filemap_write_and_wait(inode->i_mapping);
Aneesh Kumar K.V3dc54362011-02-28 17:04:11 +0530580
Aneesh Kumar K.Vf10fc502011-02-28 17:04:10 +0530581 retval = p9_client_setattr(fid, &p9attr);
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800582 if (retval < 0) {
583 if (use_dentry)
584 p9_client_clunk(fid);
Aneesh Kumar K.Vf10fc502011-02-28 17:04:10 +0530585 return retval;
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800586 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600587
Aneesh Kumar K.V059c1382011-03-08 16:39:48 +0530588 if ((iattr->ia_valid & ATTR_SIZE) &&
Al Virobe308f02013-01-31 12:58:16 -0500589 iattr->ia_size != i_size_read(inode))
590 truncate_setsize(inode, iattr->ia_size);
Aneesh Kumar K.V059c1382011-03-08 16:39:48 +0530591
Al Virobe308f02013-01-31 12:58:16 -0500592 v9fs_invalidate_inode_attr(inode);
Christian Brauner2f221d62021-01-21 14:19:26 +0100593 setattr_copy(&init_user_ns, inode, iattr);
Al Virobe308f02013-01-31 12:58:16 -0500594 mark_inode_dirty(inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600595 if (iattr->ia_valid & ATTR_MODE) {
596 /* We also want to update ACL when we update mode bits */
Al Virobe308f02013-01-31 12:58:16 -0500597 retval = v9fs_acl_chmod(inode, fid);
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800598 if (retval < 0) {
599 if (use_dentry)
600 p9_client_clunk(fid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600601 return retval;
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800602 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600603 }
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800604 if (use_dentry)
605 p9_client_clunk(fid);
606
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600607 return 0;
608}
609
610/**
611 * v9fs_stat2inode_dotl - populate an inode structure with stat info
612 * @stat: stat structure
613 * @inode: inode to populate
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800614 * @flags: ctrl flags (e.g. V9FS_STAT2INODE_KEEP_ISIZE)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600615 *
616 */
617
618void
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800619v9fs_stat2inode_dotl(struct p9_stat_dotl *stat, struct inode *inode,
620 unsigned int flags)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600621{
Al Viro3eda0de2011-07-26 02:53:22 -0400622 umode_t mode;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530623 struct v9fs_inode *v9inode = V9FS_I(inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600624
625 if ((stat->st_result_mask & P9_STATS_BASIC) == P9_STATS_BASIC) {
626 inode->i_atime.tv_sec = stat->st_atime_sec;
627 inode->i_atime.tv_nsec = stat->st_atime_nsec;
628 inode->i_mtime.tv_sec = stat->st_mtime_sec;
629 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
630 inode->i_ctime.tv_sec = stat->st_ctime_sec;
631 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
632 inode->i_uid = stat->st_uid;
633 inode->i_gid = stat->st_gid;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200634 set_nlink(inode, stat->st_nlink);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600635
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000636 mode = stat->st_mode & S_IALLUGO;
637 mode |= inode->i_mode & ~S_IALLUGO;
638 inode->i_mode = mode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600639
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800640 if (!(flags & V9FS_STAT2INODE_KEEP_ISIZE))
641 v9fs_i_size_write(inode, stat->st_size);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600642 inode->i_blocks = stat->st_blocks;
643 } else {
644 if (stat->st_result_mask & P9_STATS_ATIME) {
645 inode->i_atime.tv_sec = stat->st_atime_sec;
646 inode->i_atime.tv_nsec = stat->st_atime_nsec;
647 }
648 if (stat->st_result_mask & P9_STATS_MTIME) {
649 inode->i_mtime.tv_sec = stat->st_mtime_sec;
650 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
651 }
652 if (stat->st_result_mask & P9_STATS_CTIME) {
653 inode->i_ctime.tv_sec = stat->st_ctime_sec;
654 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
655 }
656 if (stat->st_result_mask & P9_STATS_UID)
657 inode->i_uid = stat->st_uid;
658 if (stat->st_result_mask & P9_STATS_GID)
659 inode->i_gid = stat->st_gid;
660 if (stat->st_result_mask & P9_STATS_NLINK)
Miklos Szeredibfe86842011-10-28 14:13:29 +0200661 set_nlink(inode, stat->st_nlink);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600662 if (stat->st_result_mask & P9_STATS_MODE) {
663 inode->i_mode = stat->st_mode;
664 if ((S_ISBLK(inode->i_mode)) ||
665 (S_ISCHR(inode->i_mode)))
666 init_special_inode(inode, inode->i_mode,
667 inode->i_rdev);
668 }
669 if (stat->st_result_mask & P9_STATS_RDEV)
670 inode->i_rdev = new_decode_dev(stat->st_rdev);
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800671 if (!(flags & V9FS_STAT2INODE_KEEP_ISIZE) &&
672 stat->st_result_mask & P9_STATS_SIZE)
673 v9fs_i_size_write(inode, stat->st_size);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600674 if (stat->st_result_mask & P9_STATS_BLOCKS)
675 inode->i_blocks = stat->st_blocks;
676 }
677 if (stat->st_result_mask & P9_STATS_GEN)
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000678 inode->i_generation = stat->st_gen;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600679
680 /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION
681 * because the inode structure does not have fields for them.
682 */
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530683 v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600684}
685
686static int
687v9fs_vfs_symlink_dotl(struct inode *dir, struct dentry *dentry,
688 const char *symname)
689{
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600690 int err;
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -0800691 kgid_t gid;
Al Viro7880b432017-01-12 04:01:17 -0500692 const unsigned char *name;
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530693 struct p9_qid qid;
694 struct inode *inode;
695 struct p9_fid *dfid;
696 struct p9_fid *fid = NULL;
697 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600698
Al Viro7880b432017-01-12 04:01:17 -0500699 name = dentry->d_name.name;
Joe Perches5d385152011-11-28 10:40:46 -0800700 p9_debug(P9_DEBUG_VFS, "%lu,%s,%s\n", dir->i_ino, name, symname);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600701 v9ses = v9fs_inode2v9ses(dir);
702
Al Viro77d5a6b2016-05-29 15:29:26 -0400703 dfid = v9fs_parent_fid(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600704 if (IS_ERR(dfid)) {
705 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800706 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600707 return err;
708 }
709
710 gid = v9fs_get_fsgid_for_create(dir);
711
712 /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */
Al Viro7880b432017-01-12 04:01:17 -0500713 err = p9_client_symlink(dfid, name, symname, gid, &qid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600714
715 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800716 p9_debug(P9_DEBUG_VFS, "p9_client_symlink failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600717 goto error;
718 }
719
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530720 v9fs_invalidate_inode_attr(dir);
Dominique Martinetfb89b452014-01-10 13:44:09 +0100721 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600722 /* Now walk from the parent so we can get an unopened fid. */
723 fid = p9_client_walk(dfid, 1, &name, 1);
724 if (IS_ERR(fid)) {
725 err = PTR_ERR(fid);
Joe Perches5d385152011-11-28 10:40:46 -0800726 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
727 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600728 fid = NULL;
729 goto error;
730 }
731
732 /* instantiate inode and assign the unopened fid to dentry */
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530733 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600734 if (IS_ERR(inode)) {
735 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800736 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
737 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600738 goto error;
739 }
Al Viro2ea03e1d2013-02-28 01:18:14 -0500740 v9fs_fid_add(dentry, fid);
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000741 d_instantiate(dentry, inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600742 fid = NULL;
Al Viro2ea03e1d2013-02-28 01:18:14 -0500743 err = 0;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600744 } else {
745 /* Not in cached mode. No need to populate inode with stat */
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000746 inode = v9fs_get_inode(dir->i_sb, S_IFLNK, 0);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600747 if (IS_ERR(inode)) {
748 err = PTR_ERR(inode);
749 goto error;
750 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600751 d_instantiate(dentry, inode);
752 }
753
754error:
755 if (fid)
756 p9_client_clunk(fid);
757
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800758 p9_client_clunk(dfid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600759 return err;
760}
761
762/**
763 * v9fs_vfs_link_dotl - create a hardlink for dotl
764 * @old_dentry: dentry for file to link to
765 * @dir: inode destination for new link
766 * @dentry: dentry for link
767 *
768 */
769
770static int
771v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir,
772 struct dentry *dentry)
773{
774 int err;
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530775 struct p9_fid *dfid, *oldfid;
776 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600777
Al Viro4b8e9922014-08-19 20:17:38 -0400778 p9_debug(P9_DEBUG_VFS, "dir ino: %lu, old_name: %pd, new_name: %pd\n",
779 dir->i_ino, old_dentry, dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600780
781 v9ses = v9fs_inode2v9ses(dir);
Al Viro77d5a6b2016-05-29 15:29:26 -0400782 dfid = v9fs_parent_fid(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600783 if (IS_ERR(dfid))
784 return PTR_ERR(dfid);
785
786 oldfid = v9fs_fid_lookup(old_dentry);
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800787 if (IS_ERR(oldfid)) {
788 p9_client_clunk(dfid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600789 return PTR_ERR(oldfid);
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800790 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600791
Al Viro7880b432017-01-12 04:01:17 -0500792 err = p9_client_link(dfid, oldfid, dentry->d_name.name);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600793
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800794 p9_client_clunk(dfid);
795 p9_client_clunk(oldfid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600796 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800797 p9_debug(P9_DEBUG_VFS, "p9_client_link failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600798 return err;
799 }
800
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530801 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600802 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
803 /* Get the latest stat info from server. */
804 struct p9_fid *fid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600805 fid = v9fs_fid_lookup(old_dentry);
806 if (IS_ERR(fid))
807 return PTR_ERR(fid);
808
David Howells2b0143b2015-03-17 22:25:59 +0000809 v9fs_refresh_inode_dotl(fid, d_inode(old_dentry));
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800810 p9_client_clunk(fid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600811 }
David Howells2b0143b2015-03-17 22:25:59 +0000812 ihold(d_inode(old_dentry));
813 d_instantiate(dentry, d_inode(old_dentry));
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600814
815 return err;
816}
817
818/**
819 * v9fs_vfs_mknod_dotl - create a special file
820 * @dir: inode destination for new link
821 * @dentry: dentry for file
Fabian Frederickfd2916b2014-06-04 16:06:26 -0700822 * @omode: mode for creation
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600823 * @rdev: device associated with special file
824 *
825 */
826static int
Al Viro1a67aaf2011-07-26 01:52:52 -0400827v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600828 dev_t rdev)
829{
830 int err;
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -0800831 kgid_t gid;
Al Viro7880b432017-01-12 04:01:17 -0500832 const unsigned char *name;
Al Virod3fb6122011-07-23 18:37:50 -0400833 umode_t mode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600834 struct v9fs_session_info *v9ses;
835 struct p9_fid *fid = NULL, *dfid = NULL;
836 struct inode *inode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600837 struct p9_qid qid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600838 struct posix_acl *dacl = NULL, *pacl = NULL;
839
Al Viroa4555892014-10-21 20:11:25 -0400840 p9_debug(P9_DEBUG_VFS, " %lu,%pd mode: %hx MAJOR: %u MINOR: %u\n",
841 dir->i_ino, dentry, omode,
Joe Perches5d385152011-11-28 10:40:46 -0800842 MAJOR(rdev), MINOR(rdev));
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600843
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600844 v9ses = v9fs_inode2v9ses(dir);
Al Viro77d5a6b2016-05-29 15:29:26 -0400845 dfid = v9fs_parent_fid(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600846 if (IS_ERR(dfid)) {
847 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800848 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600849 dfid = NULL;
850 goto error;
851 }
852
853 gid = v9fs_get_fsgid_for_create(dir);
854 mode = omode;
855 /* Update mode based on ACL value */
856 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
857 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800858 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mknod %d\n",
859 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600860 goto error;
861 }
Al Viro7880b432017-01-12 04:01:17 -0500862 name = dentry->d_name.name;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600863
864 err = p9_client_mknod_dotl(dfid, name, mode, rdev, gid, &qid);
865 if (err < 0)
866 goto error;
867
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530868 v9fs_invalidate_inode_attr(dir);
Al Viro3592ac42013-01-31 13:45:39 -0500869 fid = p9_client_walk(dfid, 1, &name, 1);
870 if (IS_ERR(fid)) {
871 err = PTR_ERR(fid);
872 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
873 err);
874 fid = NULL;
875 goto error;
876 }
877
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600878 /* instantiate inode and assign the unopened fid to the dentry */
879 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530880 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600881 if (IS_ERR(inode)) {
882 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800883 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
884 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600885 goto error;
886 }
Al Viro3592ac42013-01-31 13:45:39 -0500887 v9fs_set_create_acl(inode, fid, dacl, pacl);
Al Viro2ea03e1d2013-02-28 01:18:14 -0500888 v9fs_fid_add(dentry, fid);
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000889 d_instantiate(dentry, inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600890 fid = NULL;
Al Viro2ea03e1d2013-02-28 01:18:14 -0500891 err = 0;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600892 } else {
893 /*
894 * Not in cached mode. No need to populate inode with stat.
895 * socket syscall returns a fd, so we need instantiate
896 */
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000897 inode = v9fs_get_inode(dir->i_sb, mode, rdev);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600898 if (IS_ERR(inode)) {
899 err = PTR_ERR(inode);
900 goto error;
901 }
Al Viro3592ac42013-01-31 13:45:39 -0500902 v9fs_set_create_acl(inode, fid, dacl, pacl);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600903 d_instantiate(dentry, inode);
904 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600905error:
906 if (fid)
907 p9_client_clunk(fid);
Al Viro5fa63002013-01-31 13:31:23 -0500908 v9fs_put_acl(dacl, pacl);
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800909 p9_client_clunk(dfid);
910
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600911 return err;
912}
913
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600914/**
Al Viro6b255392015-11-17 10:20:54 -0500915 * v9fs_vfs_get_link_dotl - follow a symlink path
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600916 * @dentry: dentry for symlink
Al Viro6b255392015-11-17 10:20:54 -0500917 * @inode: inode for symlink
Al Virofceef392015-12-29 15:58:39 -0500918 * @done: destructor for return value
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600919 */
920
Al Viro680baac2015-05-02 13:32:22 -0400921static const char *
Al Viro6b255392015-11-17 10:20:54 -0500922v9fs_vfs_get_link_dotl(struct dentry *dentry,
Al Virofceef392015-12-29 15:58:39 -0500923 struct inode *inode,
924 struct delayed_call *done)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600925{
Al Viro6b255392015-11-17 10:20:54 -0500926 struct p9_fid *fid;
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530927 char *target;
Al Viro90e4fc82015-04-14 17:42:49 -0400928 int retval;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600929
Al Viro6b255392015-11-17 10:20:54 -0500930 if (!dentry)
931 return ERR_PTR(-ECHILD);
932
Al Viro4b8e9922014-08-19 20:17:38 -0400933 p9_debug(P9_DEBUG_VFS, "%pd\n", dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600934
Al Viro6b255392015-11-17 10:20:54 -0500935 fid = v9fs_fid_lookup(dentry);
Al Viro90e4fc82015-04-14 17:42:49 -0400936 if (IS_ERR(fid))
937 return ERR_CAST(fid);
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530938 retval = p9_client_readlink(fid, &target);
Jianyong Wu6636b6d2020-09-23 22:11:46 +0800939 p9_client_clunk(fid);
Al Viro90e4fc82015-04-14 17:42:49 -0400940 if (retval)
941 return ERR_PTR(retval);
Al Virofceef392015-12-29 15:58:39 -0500942 set_delayed_call(done, kfree_link, target);
943 return target;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600944}
945
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530946int v9fs_refresh_inode_dotl(struct p9_fid *fid, struct inode *inode)
947{
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530948 struct p9_stat_dotl *st;
949 struct v9fs_session_info *v9ses;
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800950 unsigned int flags;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530951
952 v9ses = v9fs_inode2v9ses(inode);
953 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
954 if (IS_ERR(st))
955 return PTR_ERR(st);
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000956 /*
957 * Don't update inode if the file type is different
958 */
959 if ((inode->i_mode & S_IFMT) != (st->st_mode & S_IFMT))
960 goto out;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530961
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530962 /*
963 * We don't want to refresh inode->i_size,
964 * because we may have cached data
965 */
Hou Tao5e3cc1e2019-01-24 14:35:13 +0800966 flags = (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) ?
967 V9FS_STAT2INODE_KEEP_ISIZE : 0;
968 v9fs_stat2inode_dotl(st, inode, flags);
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000969out:
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530970 kfree(st);
971 return 0;
972}
973
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600974const struct inode_operations v9fs_dir_inode_operations_dotl = {
975 .create = v9fs_vfs_create_dotl,
Miklos Szeredie43ae792012-06-05 15:10:26 +0200976 .atomic_open = v9fs_vfs_atomic_open_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600977 .lookup = v9fs_vfs_lookup,
978 .link = v9fs_vfs_link_dotl,
979 .symlink = v9fs_vfs_symlink_dotl,
980 .unlink = v9fs_vfs_unlink,
981 .mkdir = v9fs_vfs_mkdir_dotl,
982 .rmdir = v9fs_vfs_rmdir,
983 .mknod = v9fs_vfs_mknod_dotl,
984 .rename = v9fs_vfs_rename,
985 .getattr = v9fs_vfs_getattr_dotl,
986 .setattr = v9fs_vfs_setattr_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600987 .listxattr = v9fs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200988 .get_acl = v9fs_iop_get_acl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600989};
990
991const struct inode_operations v9fs_file_inode_operations_dotl = {
992 .getattr = v9fs_vfs_getattr_dotl,
993 .setattr = v9fs_vfs_setattr_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600994 .listxattr = v9fs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200995 .get_acl = v9fs_iop_get_acl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600996};
997
998const struct inode_operations v9fs_symlink_inode_operations_dotl = {
Al Viro6b255392015-11-17 10:20:54 -0500999 .get_link = v9fs_vfs_get_link_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06001000 .getattr = v9fs_vfs_getattr_dotl,
1001 .setattr = v9fs_vfs_setattr_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06001002 .listxattr = v9fs_listxattr,
1003};