]> git.ipfire.org Git - people/ms/linux.git/blame - fs/9p/vfs_inode_dotl.c
openpromfs: don't do unlock_new_inode() until the new inode is set up
[people/ms/linux.git] / fs / 9p / vfs_inode_dotl.c
CommitLineData
1f327613 1// SPDX-License-Identifier: GPL-2.0-only
53c06f4e
AK
2/*
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>
53c06f4e
AK
9 */
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
549c7297
CB
36v9fs_vfs_mknod_dotl(struct user_namespace *mnt_userns, struct inode *dir,
37 struct dentry *dentry, umode_t omode, dev_t rdev);
53c06f4e
AK
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
d4ef4e35 45static kgid_t v9fs_get_fsgid_for_create(struct inode *dir_inode)
53c06f4e
AK
46{
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
fd2421f5
AK
56static 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 */
6e3e2c43 62 if (inode_wrong_type(inode, st->st_mode))
fd2421f5
AK
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;
8ee03163
TT
75
76 if (v9inode->qid.path != st->qid.path)
77 return 0;
fd2421f5
AK
78 return 1;
79}
80
ed80fcfa
AK
81/* Always get a new inode */
82static int v9fs_test_new_inode_dotl(struct inode *inode, void *data)
83{
84 return 0;
85}
86
fd2421f5
AK
87static 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
5ffc0cb3
AK
97static struct inode *v9fs_qid_iget_dotl(struct super_block *sb,
98 struct p9_qid *qid,
99 struct p9_fid *fid,
ed80fcfa
AK
100 struct p9_stat_dotl *st,
101 int new)
5ffc0cb3
AK
102{
103 int retval;
104 unsigned long i_ino;
105 struct inode *inode;
106 struct v9fs_session_info *v9ses = sb->s_fs_info;
ed80fcfa
AK
107 int (*test)(struct inode *, void *);
108
109 if (new)
110 test = v9fs_test_new_inode_dotl;
111 else
112 test = v9fs_test_inode_dotl;
5ffc0cb3
AK
113
114 i_ino = v9fs_qid2ino(qid);
ed80fcfa 115 inode = iget5_locked(sb, i_ino, test, v9fs_set_inode_dotl, st);
5ffc0cb3
AK
116 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 */
fd2421f5 125 inode->i_ino = i_ino;
45089142
AK
126 retval = v9fs_init_inode(v9ses, inode,
127 st->st_mode, new_decode_dev(st->st_rdev));
5ffc0cb3
AK
128 if (retval)
129 goto error;
130
5e3cc1ee 131 v9fs_stat2inode_dotl(st, inode, 0);
5ffc0cb3 132 v9fs_cache_inode_get_cookie(inode);
5ffc0cb3
AK
133 retval = v9fs_get_acl(inode, fid);
134 if (retval)
135 goto error;
136
137 unlock_new_inode(inode);
138 return inode;
139error:
0a73d0a2 140 iget_failed(inode);
5ffc0cb3
AK
141 return ERR_PTR(retval);
142
143}
144
53c06f4e 145struct inode *
a78ce05d 146v9fs_inode_from_fid_dotl(struct v9fs_session_info *v9ses, struct p9_fid *fid,
ed80fcfa 147 struct super_block *sb, int new)
53c06f4e 148{
53c06f4e 149 struct p9_stat_dotl *st;
5ffc0cb3 150 struct inode *inode = NULL;
53c06f4e 151
fd2421f5 152 st = p9_client_getattr_dotl(fid, P9_STATS_BASIC | P9_STATS_GEN);
53c06f4e
AK
153 if (IS_ERR(st))
154 return ERR_CAST(st);
155
ed80fcfa 156 inode = v9fs_qid_iget_dotl(sb, &st->qid, fid, st, new);
53c06f4e 157 kfree(st);
5ffc0cb3 158 return inode;
53c06f4e
AK
159}
160
f88657ce
AK
161struct 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 },
f88657ce
AK
174 { 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
53c06f4e
AK
212/**
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
fd2916bd 216 * @omode: create permissions
53c06f4e
AK
217 *
218 */
219
220static int
549c7297
CB
221v9fs_vfs_create_dotl(struct user_namespace *mnt_userns, struct inode *dir,
222 struct dentry *dentry, umode_t omode, bool excl)
e43ae79c 223{
549c7297 224 return v9fs_vfs_mknod_dotl(mnt_userns, dir, dentry, omode, 0);
e43ae79c
MS
225}
226
d9585277 227static int
e43ae79c 228v9fs_vfs_atomic_open_dotl(struct inode *dir, struct dentry *dentry,
44907d79 229 struct file *file, unsigned flags, umode_t omode)
53c06f4e
AK
230{
231 int err = 0;
d4ef4e35 232 kgid_t gid;
d3fb6120 233 umode_t mode;
7880b43b 234 const unsigned char *name = NULL;
53c06f4e
AK
235 struct p9_qid qid;
236 struct inode *inode;
6b39f6d2
AK
237 struct p9_fid *fid = NULL;
238 struct v9fs_inode *v9inode;
239 struct p9_fid *dfid, *ofid, *inode_fid;
240 struct v9fs_session_info *v9ses;
53c06f4e 241 struct posix_acl *pacl = NULL, *dacl = NULL;
e43ae79c 242 struct dentry *res = NULL;
53c06f4e 243
00699ad8 244 if (d_in_lookup(dentry)) {
00cd8dd3 245 res = v9fs_vfs_lookup(dir, dentry, 0);
e43ae79c 246 if (IS_ERR(res))
d9585277 247 return PTR_ERR(res);
e43ae79c
MS
248
249 if (res)
250 dentry = res;
251 }
252
253 /* Only creates */
2b0143b5 254 if (!(flags & O_CREAT) || d_really_is_positive(dentry))
b6f4bee0 255 return finish_no_open(file, res);
53c06f4e 256
e43ae79c
MS
257 v9ses = v9fs_inode2v9ses(dir);
258
7880b43b 259 name = dentry->d_name.name;
609eac1c 260 p9_debug(P9_DEBUG_VFS, "name:%s flags:0x%x mode:0x%hx\n",
5d385153 261 name, flags, omode);
53c06f4e 262
77d5a6b7 263 dfid = v9fs_parent_fid(dentry);
53c06f4e
AK
264 if (IS_ERR(dfid)) {
265 err = PTR_ERR(dfid);
5d385153 266 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
d9585277 267 goto out;
53c06f4e
AK
268 }
269
270 /* clone a fid to use for creation */
7d50a29f 271 ofid = clone_fid(dfid);
53c06f4e
AK
272 if (IS_ERR(ofid)) {
273 err = PTR_ERR(ofid);
5d385153 274 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
d9585277 275 goto out;
53c06f4e
AK
276 }
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) {
5d385153
JP
284 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in creat %d\n",
285 err);
53c06f4e
AK
286 goto error;
287 }
f88657ce
AK
288 err = p9_client_create_dotl(ofid, name, v9fs_open_to_dotl_flags(flags),
289 mode, gid, &qid);
53c06f4e 290 if (err < 0) {
5d385153
JP
291 p9_debug(P9_DEBUG_VFS, "p9_client_open_dotl failed in creat %d\n",
292 err);
53c06f4e
AK
293 goto error;
294 }
d28c61f0 295 v9fs_invalidate_inode_attr(dir);
53c06f4e 296
af7542fc
AK
297 /* instantiate inode and assign the unopened fid to the dentry */
298 fid = p9_client_walk(dfid, 1, &name, 1);
6636b6dc 299 p9_client_clunk(dfid);
af7542fc
AK
300 if (IS_ERR(fid)) {
301 err = PTR_ERR(fid);
5d385153 302 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
53c06f4e 303 fid = NULL;
af7542fc 304 goto error;
53c06f4e 305 }
ed80fcfa 306 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
af7542fc
AK
307 if (IS_ERR(inode)) {
308 err = PTR_ERR(inode);
5d385153 309 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n", err);
af7542fc
AK
310 goto error;
311 }
3592ac44
AV
312 /* Now set the ACL based on the default value */
313 v9fs_set_create_acl(inode, fid, dacl, pacl);
314
2ea03e1d 315 v9fs_fid_add(dentry, fid);
5441ae5e 316 d_instantiate(dentry, inode);
af7542fc 317
6b39f6d2 318 v9inode = V9FS_I(inode);
5a7e0a8c 319 mutex_lock(&v9inode->v_mutex);
fb89b45c
DM
320 if ((v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) &&
321 !v9inode->writeback_fid &&
7add697a 322 ((flags & O_ACCMODE) != O_RDONLY)) {
3cf387d7 323 /*
6b39f6d2 324 * clone a fid and add it to writeback_fid
3cf387d7
AK
325 * 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);
5a7e0a8c 333 mutex_unlock(&v9inode->v_mutex);
398c4f0e 334 goto err_clunk_old_fid;
3cf387d7 335 }
6b39f6d2 336 v9inode->writeback_fid = (void *) inode_fid;
3cf387d7 337 }
5a7e0a8c 338 mutex_unlock(&v9inode->v_mutex);
af7542fc 339 /* Since we are opening a file, assign the open fid to the file */
be12af3e 340 err = finish_open(file, dentry, generic_file_open);
30d90494 341 if (err)
398c4f0e 342 goto err_clunk_old_fid;
30d90494 343 file->private_data = ofid;
fb89b45c 344 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE)
30d90494 345 v9fs_cache_inode_set_cookie(inode, file);
987a6485 346 v9fs_open_fid_add(inode, ofid);
73a09dd9 347 file->f_mode |= FMODE_CREATED;
e43ae79c 348out:
5fa6300a 349 v9fs_put_acl(dacl, pacl);
e43ae79c 350 dput(res);
d9585277 351 return err;
53c06f4e
AK
352
353error:
53c06f4e
AK
354 if (fid)
355 p9_client_clunk(fid);
398c4f0e
AK
356err_clunk_old_fid:
357 if (ofid)
358 p9_client_clunk(ofid);
e43ae79c 359 goto out;
53c06f4e
AK
360}
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
fd2916bd 366 * @omode: mode for new directory
53c06f4e
AK
367 *
368 */
369
549c7297
CB
370static int v9fs_vfs_mkdir_dotl(struct user_namespace *mnt_userns,
371 struct inode *dir, struct dentry *dentry,
372 umode_t omode)
53c06f4e
AK
373{
374 int err;
375 struct v9fs_session_info *v9ses;
376 struct p9_fid *fid = NULL, *dfid = NULL;
d4ef4e35 377 kgid_t gid;
7880b43b 378 const unsigned char *name;
d3fb6120 379 umode_t mode;
53c06f4e
AK
380 struct inode *inode;
381 struct p9_qid qid;
53c06f4e
AK
382 struct posix_acl *dacl = NULL, *pacl = NULL;
383
4b8e9923 384 p9_debug(P9_DEBUG_VFS, "name %pd\n", dentry);
53c06f4e
AK
385 err = 0;
386 v9ses = v9fs_inode2v9ses(dir);
387
388 omode |= S_IFDIR;
389 if (dir->i_mode & S_ISGID)
390 omode |= S_ISGID;
391
77d5a6b7 392 dfid = v9fs_parent_fid(dentry);
53c06f4e
AK
393 if (IS_ERR(dfid)) {
394 err = PTR_ERR(dfid);
5d385153 395 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
53c06f4e
AK
396 dfid = NULL;
397 goto error;
398 }
399
400 gid = v9fs_get_fsgid_for_create(dir);
401 mode = omode;
402 /* Update mode based on ACL value */
403 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
404 if (err) {
5d385153
JP
405 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mkdir %d\n",
406 err);
53c06f4e
AK
407 goto error;
408 }
7880b43b 409 name = dentry->d_name.name;
53c06f4e
AK
410 err = p9_client_mkdir_dotl(dfid, name, mode, gid, &qid);
411 if (err < 0)
412 goto error;
3592ac44
AV
413 fid = p9_client_walk(dfid, 1, &name, 1);
414 if (IS_ERR(fid)) {
415 err = PTR_ERR(fid);
416 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
417 err);
418 fid = NULL;
419 goto error;
420 }
421
53c06f4e
AK
422 /* instantiate inode and assign the unopened fid to the dentry */
423 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
ed80fcfa 424 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
53c06f4e
AK
425 if (IS_ERR(inode)) {
426 err = PTR_ERR(inode);
5d385153
JP
427 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
428 err);
53c06f4e
AK
429 goto error;
430 }
2ea03e1d 431 v9fs_fid_add(dentry, fid);
3592ac44 432 v9fs_set_create_acl(inode, fid, dacl, pacl);
5441ae5e 433 d_instantiate(dentry, inode);
53c06f4e 434 fid = NULL;
2ea03e1d 435 err = 0;
53c06f4e
AK
436 } else {
437 /*
438 * Not in cached mode. No need to populate
439 * inode with stat. We need to get an inode
440 * so that we can set the acl with dentry
441 */
45089142 442 inode = v9fs_get_inode(dir->i_sb, mode, 0);
53c06f4e
AK
443 if (IS_ERR(inode)) {
444 err = PTR_ERR(inode);
445 goto error;
446 }
3592ac44 447 v9fs_set_create_acl(inode, fid, dacl, pacl);
53c06f4e
AK
448 d_instantiate(dentry, inode);
449 }
b271ec47 450 inc_nlink(dir);
d28c61f0 451 v9fs_invalidate_inode_attr(dir);
53c06f4e
AK
452error:
453 if (fid)
454 p9_client_clunk(fid);
5fa6300a 455 v9fs_put_acl(dacl, pacl);
6636b6dc 456 p9_client_clunk(dfid);
53c06f4e
AK
457 return err;
458}
459
460static int
549c7297
CB
461v9fs_vfs_getattr_dotl(struct user_namespace *mnt_userns,
462 const struct path *path, struct kstat *stat,
463 u32 request_mask, unsigned int flags)
53c06f4e 464{
a528d35e 465 struct dentry *dentry = path->dentry;
53c06f4e
AK
466 struct v9fs_session_info *v9ses;
467 struct p9_fid *fid;
468 struct p9_stat_dotl *st;
469
5d385153 470 p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry);
42869c8a 471 v9ses = v9fs_dentry2v9ses(dentry);
a1211908 472 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
0d56a451 473 generic_fillattr(&init_user_ns, d_inode(dentry), stat);
a1211908
AK
474 return 0;
475 }
53c06f4e
AK
476 fid = v9fs_fid_lookup(dentry);
477 if (IS_ERR(fid))
478 return PTR_ERR(fid);
479
480 /* Ask for all the fields in stat structure. Server will return
481 * whatever it supports
482 */
483
484 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
6636b6dc 485 p9_client_clunk(fid);
53c06f4e
AK
486 if (IS_ERR(st))
487 return PTR_ERR(st);
488
5e3cc1ee 489 v9fs_stat2inode_dotl(st, d_inode(dentry), 0);
0d56a451 490 generic_fillattr(&init_user_ns, d_inode(dentry), stat);
53c06f4e
AK
491 /* Change block size to what the server returned */
492 stat->blksize = st->st_blksize;
493
494 kfree(st);
495 return 0;
496}
497
f766619d
AK
498/*
499 * Attribute flags.
500 */
501#define P9_ATTR_MODE (1 << 0)
502#define P9_ATTR_UID (1 << 1)
503#define P9_ATTR_GID (1 << 2)
504#define P9_ATTR_SIZE (1 << 3)
505#define P9_ATTR_ATIME (1 << 4)
506#define P9_ATTR_MTIME (1 << 5)
507#define P9_ATTR_CTIME (1 << 6)
508#define P9_ATTR_ATIME_SET (1 << 7)
509#define P9_ATTR_MTIME_SET (1 << 8)
510
511struct dotl_iattr_map {
512 int iattr_valid;
513 int p9_iattr_valid;
514};
515
516static int v9fs_mapped_iattr_valid(int iattr_valid)
517{
518 int i;
519 int p9_iattr_valid = 0;
520 struct dotl_iattr_map dotl_iattr_map[] = {
521 { ATTR_MODE, P9_ATTR_MODE },
522 { ATTR_UID, P9_ATTR_UID },
523 { ATTR_GID, P9_ATTR_GID },
524 { ATTR_SIZE, P9_ATTR_SIZE },
525 { ATTR_ATIME, P9_ATTR_ATIME },
526 { ATTR_MTIME, P9_ATTR_MTIME },
527 { ATTR_CTIME, P9_ATTR_CTIME },
528 { ATTR_ATIME_SET, P9_ATTR_ATIME_SET },
529 { ATTR_MTIME_SET, P9_ATTR_MTIME_SET },
530 };
531 for (i = 0; i < ARRAY_SIZE(dotl_iattr_map); i++) {
532 if (iattr_valid & dotl_iattr_map[i].iattr_valid)
533 p9_iattr_valid |= dotl_iattr_map[i].p9_iattr_valid;
534 }
535 return p9_iattr_valid;
536}
537
53c06f4e
AK
538/**
539 * v9fs_vfs_setattr_dotl - set file metadata
540 * @dentry: file whose metadata to set
541 * @iattr: metadata assignment structure
542 *
543 */
544
549c7297
CB
545int v9fs_vfs_setattr_dotl(struct user_namespace *mnt_userns,
546 struct dentry *dentry, struct iattr *iattr)
53c06f4e 547{
6636b6dc 548 int retval, use_dentry = 0;
66246641 549 struct p9_fid *fid = NULL;
53c06f4e 550 struct p9_iattr_dotl p9attr;
2b0143b5 551 struct inode *inode = d_inode(dentry);
53c06f4e 552
5d385153 553 p9_debug(P9_DEBUG_VFS, "\n");
53c06f4e 554
2f221d6f 555 retval = setattr_prepare(&init_user_ns, dentry, iattr);
53c06f4e
AK
556 if (retval)
557 return retval;
558
f766619d 559 p9attr.valid = v9fs_mapped_iattr_valid(iattr->ia_valid);
53c06f4e
AK
560 p9attr.mode = iattr->ia_mode;
561 p9attr.uid = iattr->ia_uid;
562 p9attr.gid = iattr->ia_gid;
563 p9attr.size = iattr->ia_size;
564 p9attr.atime_sec = iattr->ia_atime.tv_sec;
565 p9attr.atime_nsec = iattr->ia_atime.tv_nsec;
566 p9attr.mtime_sec = iattr->ia_mtime.tv_sec;
567 p9attr.mtime_nsec = iattr->ia_mtime.tv_nsec;
568
66246641
JW
569 if (iattr->ia_valid & ATTR_FILE) {
570 fid = iattr->ia_file->private_data;
571 WARN_ON(!fid);
572 }
6636b6dc 573 if (!fid) {
66246641 574 fid = v9fs_fid_lookup(dentry);
6636b6dc
JW
575 use_dentry = 1;
576 }
53c06f4e
AK
577 if (IS_ERR(fid))
578 return PTR_ERR(fid);
579
3dc5436a 580 /* Write all dirty data */
be308f07
AV
581 if (S_ISREG(inode->i_mode))
582 filemap_write_and_wait(inode->i_mapping);
3dc5436a 583
f10fc50f 584 retval = p9_client_setattr(fid, &p9attr);
6636b6dc
JW
585 if (retval < 0) {
586 if (use_dentry)
587 p9_client_clunk(fid);
f10fc50f 588 return retval;
6636b6dc 589 }
53c06f4e 590
059c138b 591 if ((iattr->ia_valid & ATTR_SIZE) &&
be308f07
AV
592 iattr->ia_size != i_size_read(inode))
593 truncate_setsize(inode, iattr->ia_size);
059c138b 594
be308f07 595 v9fs_invalidate_inode_attr(inode);
2f221d6f 596 setattr_copy(&init_user_ns, inode, iattr);
be308f07 597 mark_inode_dirty(inode);
53c06f4e
AK
598 if (iattr->ia_valid & ATTR_MODE) {
599 /* We also want to update ACL when we update mode bits */
be308f07 600 retval = v9fs_acl_chmod(inode, fid);
6636b6dc
JW
601 if (retval < 0) {
602 if (use_dentry)
603 p9_client_clunk(fid);
53c06f4e 604 return retval;
6636b6dc 605 }
53c06f4e 606 }
6636b6dc
JW
607 if (use_dentry)
608 p9_client_clunk(fid);
609
53c06f4e
AK
610 return 0;
611}
612
613/**
614 * v9fs_stat2inode_dotl - populate an inode structure with stat info
615 * @stat: stat structure
616 * @inode: inode to populate
5e3cc1ee 617 * @flags: ctrl flags (e.g. V9FS_STAT2INODE_KEEP_ISIZE)
53c06f4e
AK
618 *
619 */
620
621void
5e3cc1ee
HT
622v9fs_stat2inode_dotl(struct p9_stat_dotl *stat, struct inode *inode,
623 unsigned int flags)
53c06f4e 624{
3eda0de6 625 umode_t mode;
b3cbea03 626 struct v9fs_inode *v9inode = V9FS_I(inode);
53c06f4e
AK
627
628 if ((stat->st_result_mask & P9_STATS_BASIC) == P9_STATS_BASIC) {
629 inode->i_atime.tv_sec = stat->st_atime_sec;
630 inode->i_atime.tv_nsec = stat->st_atime_nsec;
631 inode->i_mtime.tv_sec = stat->st_mtime_sec;
632 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
633 inode->i_ctime.tv_sec = stat->st_ctime_sec;
634 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
635 inode->i_uid = stat->st_uid;
636 inode->i_gid = stat->st_gid;
bfe86848 637 set_nlink(inode, stat->st_nlink);
53c06f4e 638
45089142
AK
639 mode = stat->st_mode & S_IALLUGO;
640 mode |= inode->i_mode & ~S_IALLUGO;
641 inode->i_mode = mode;
53c06f4e 642
5e3cc1ee
HT
643 if (!(flags & V9FS_STAT2INODE_KEEP_ISIZE))
644 v9fs_i_size_write(inode, stat->st_size);
53c06f4e
AK
645 inode->i_blocks = stat->st_blocks;
646 } else {
647 if (stat->st_result_mask & P9_STATS_ATIME) {
648 inode->i_atime.tv_sec = stat->st_atime_sec;
649 inode->i_atime.tv_nsec = stat->st_atime_nsec;
650 }
651 if (stat->st_result_mask & P9_STATS_MTIME) {
652 inode->i_mtime.tv_sec = stat->st_mtime_sec;
653 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
654 }
655 if (stat->st_result_mask & P9_STATS_CTIME) {
656 inode->i_ctime.tv_sec = stat->st_ctime_sec;
657 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
658 }
659 if (stat->st_result_mask & P9_STATS_UID)
660 inode->i_uid = stat->st_uid;
661 if (stat->st_result_mask & P9_STATS_GID)
662 inode->i_gid = stat->st_gid;
663 if (stat->st_result_mask & P9_STATS_NLINK)
bfe86848 664 set_nlink(inode, stat->st_nlink);
53c06f4e
AK
665 if (stat->st_result_mask & P9_STATS_MODE) {
666 inode->i_mode = stat->st_mode;
667 if ((S_ISBLK(inode->i_mode)) ||
668 (S_ISCHR(inode->i_mode)))
669 init_special_inode(inode, inode->i_mode,
670 inode->i_rdev);
671 }
672 if (stat->st_result_mask & P9_STATS_RDEV)
673 inode->i_rdev = new_decode_dev(stat->st_rdev);
5e3cc1ee
HT
674 if (!(flags & V9FS_STAT2INODE_KEEP_ISIZE) &&
675 stat->st_result_mask & P9_STATS_SIZE)
676 v9fs_i_size_write(inode, stat->st_size);
53c06f4e
AK
677 if (stat->st_result_mask & P9_STATS_BLOCKS)
678 inode->i_blocks = stat->st_blocks;
679 }
680 if (stat->st_result_mask & P9_STATS_GEN)
fd2421f5 681 inode->i_generation = stat->st_gen;
53c06f4e
AK
682
683 /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION
684 * because the inode structure does not have fields for them.
685 */
b3cbea03 686 v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR;
53c06f4e
AK
687}
688
689static int
549c7297
CB
690v9fs_vfs_symlink_dotl(struct user_namespace *mnt_userns, struct inode *dir,
691 struct dentry *dentry, const char *symname)
53c06f4e 692{
53c06f4e 693 int err;
d4ef4e35 694 kgid_t gid;
7880b43b 695 const unsigned char *name;
d28c61f0
AK
696 struct p9_qid qid;
697 struct inode *inode;
698 struct p9_fid *dfid;
699 struct p9_fid *fid = NULL;
700 struct v9fs_session_info *v9ses;
53c06f4e 701
7880b43b 702 name = dentry->d_name.name;
5d385153 703 p9_debug(P9_DEBUG_VFS, "%lu,%s,%s\n", dir->i_ino, name, symname);
53c06f4e
AK
704 v9ses = v9fs_inode2v9ses(dir);
705
77d5a6b7 706 dfid = v9fs_parent_fid(dentry);
53c06f4e
AK
707 if (IS_ERR(dfid)) {
708 err = PTR_ERR(dfid);
5d385153 709 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
53c06f4e
AK
710 return err;
711 }
712
713 gid = v9fs_get_fsgid_for_create(dir);
714
715 /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */
7880b43b 716 err = p9_client_symlink(dfid, name, symname, gid, &qid);
53c06f4e
AK
717
718 if (err < 0) {
5d385153 719 p9_debug(P9_DEBUG_VFS, "p9_client_symlink failed %d\n", err);
53c06f4e
AK
720 goto error;
721 }
722
d28c61f0 723 v9fs_invalidate_inode_attr(dir);
fb89b45c 724 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
53c06f4e
AK
725 /* Now walk from the parent so we can get an unopened fid. */
726 fid = p9_client_walk(dfid, 1, &name, 1);
727 if (IS_ERR(fid)) {
728 err = PTR_ERR(fid);
5d385153
JP
729 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
730 err);
53c06f4e
AK
731 fid = NULL;
732 goto error;
733 }
734
735 /* instantiate inode and assign the unopened fid to dentry */
ed80fcfa 736 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
53c06f4e
AK
737 if (IS_ERR(inode)) {
738 err = PTR_ERR(inode);
5d385153
JP
739 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
740 err);
53c06f4e
AK
741 goto error;
742 }
2ea03e1d 743 v9fs_fid_add(dentry, fid);
5441ae5e 744 d_instantiate(dentry, inode);
53c06f4e 745 fid = NULL;
2ea03e1d 746 err = 0;
53c06f4e
AK
747 } else {
748 /* Not in cached mode. No need to populate inode with stat */
45089142 749 inode = v9fs_get_inode(dir->i_sb, S_IFLNK, 0);
53c06f4e
AK
750 if (IS_ERR(inode)) {
751 err = PTR_ERR(inode);
752 goto error;
753 }
53c06f4e
AK
754 d_instantiate(dentry, inode);
755 }
756
757error:
758 if (fid)
759 p9_client_clunk(fid);
760
6636b6dc 761 p9_client_clunk(dfid);
53c06f4e
AK
762 return err;
763}
764
765/**
766 * v9fs_vfs_link_dotl - create a hardlink for dotl
767 * @old_dentry: dentry for file to link to
768 * @dir: inode destination for new link
769 * @dentry: dentry for link
770 *
771 */
772
773static int
774v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir,
775 struct dentry *dentry)
776{
777 int err;
d28c61f0
AK
778 struct p9_fid *dfid, *oldfid;
779 struct v9fs_session_info *v9ses;
53c06f4e 780
4b8e9923
AV
781 p9_debug(P9_DEBUG_VFS, "dir ino: %lu, old_name: %pd, new_name: %pd\n",
782 dir->i_ino, old_dentry, dentry);
53c06f4e
AK
783
784 v9ses = v9fs_inode2v9ses(dir);
77d5a6b7 785 dfid = v9fs_parent_fid(dentry);
53c06f4e
AK
786 if (IS_ERR(dfid))
787 return PTR_ERR(dfid);
788
789 oldfid = v9fs_fid_lookup(old_dentry);
6636b6dc
JW
790 if (IS_ERR(oldfid)) {
791 p9_client_clunk(dfid);
53c06f4e 792 return PTR_ERR(oldfid);
6636b6dc 793 }
53c06f4e 794
7880b43b 795 err = p9_client_link(dfid, oldfid, dentry->d_name.name);
53c06f4e 796
6636b6dc
JW
797 p9_client_clunk(dfid);
798 p9_client_clunk(oldfid);
53c06f4e 799 if (err < 0) {
5d385153 800 p9_debug(P9_DEBUG_VFS, "p9_client_link failed %d\n", err);
53c06f4e
AK
801 return err;
802 }
803
d28c61f0 804 v9fs_invalidate_inode_attr(dir);
53c06f4e
AK
805 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
806 /* Get the latest stat info from server. */
807 struct p9_fid *fid;
53c06f4e
AK
808 fid = v9fs_fid_lookup(old_dentry);
809 if (IS_ERR(fid))
810 return PTR_ERR(fid);
811
2b0143b5 812 v9fs_refresh_inode_dotl(fid, d_inode(old_dentry));
6636b6dc 813 p9_client_clunk(fid);
53c06f4e 814 }
2b0143b5
DH
815 ihold(d_inode(old_dentry));
816 d_instantiate(dentry, d_inode(old_dentry));
53c06f4e
AK
817
818 return err;
819}
820
821/**
822 * v9fs_vfs_mknod_dotl - create a special file
823 * @dir: inode destination for new link
824 * @dentry: dentry for file
fd2916bd 825 * @omode: mode for creation
53c06f4e
AK
826 * @rdev: device associated with special file
827 *
828 */
829static int
549c7297
CB
830v9fs_vfs_mknod_dotl(struct user_namespace *mnt_userns, struct inode *dir,
831 struct dentry *dentry, umode_t omode, dev_t rdev)
53c06f4e
AK
832{
833 int err;
d4ef4e35 834 kgid_t gid;
7880b43b 835 const unsigned char *name;
d3fb6120 836 umode_t mode;
53c06f4e
AK
837 struct v9fs_session_info *v9ses;
838 struct p9_fid *fid = NULL, *dfid = NULL;
839 struct inode *inode;
53c06f4e 840 struct p9_qid qid;
53c06f4e
AK
841 struct posix_acl *dacl = NULL, *pacl = NULL;
842
a455589f
AV
843 p9_debug(P9_DEBUG_VFS, " %lu,%pd mode: %hx MAJOR: %u MINOR: %u\n",
844 dir->i_ino, dentry, omode,
5d385153 845 MAJOR(rdev), MINOR(rdev));
53c06f4e 846
53c06f4e 847 v9ses = v9fs_inode2v9ses(dir);
77d5a6b7 848 dfid = v9fs_parent_fid(dentry);
53c06f4e
AK
849 if (IS_ERR(dfid)) {
850 err = PTR_ERR(dfid);
5d385153 851 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
53c06f4e
AK
852 dfid = NULL;
853 goto error;
854 }
855
856 gid = v9fs_get_fsgid_for_create(dir);
857 mode = omode;
858 /* Update mode based on ACL value */
859 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
860 if (err) {
5d385153
JP
861 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mknod %d\n",
862 err);
53c06f4e
AK
863 goto error;
864 }
7880b43b 865 name = dentry->d_name.name;
53c06f4e
AK
866
867 err = p9_client_mknod_dotl(dfid, name, mode, rdev, gid, &qid);
868 if (err < 0)
869 goto error;
870
d28c61f0 871 v9fs_invalidate_inode_attr(dir);
3592ac44
AV
872 fid = p9_client_walk(dfid, 1, &name, 1);
873 if (IS_ERR(fid)) {
874 err = PTR_ERR(fid);
875 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
876 err);
877 fid = NULL;
878 goto error;
879 }
880
53c06f4e
AK
881 /* instantiate inode and assign the unopened fid to the dentry */
882 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
ed80fcfa 883 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
53c06f4e
AK
884 if (IS_ERR(inode)) {
885 err = PTR_ERR(inode);
5d385153
JP
886 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
887 err);
53c06f4e
AK
888 goto error;
889 }
3592ac44 890 v9fs_set_create_acl(inode, fid, dacl, pacl);
2ea03e1d 891 v9fs_fid_add(dentry, fid);
5441ae5e 892 d_instantiate(dentry, inode);
53c06f4e 893 fid = NULL;
2ea03e1d 894 err = 0;
53c06f4e
AK
895 } else {
896 /*
897 * Not in cached mode. No need to populate inode with stat.
898 * socket syscall returns a fd, so we need instantiate
899 */
45089142 900 inode = v9fs_get_inode(dir->i_sb, mode, rdev);
53c06f4e
AK
901 if (IS_ERR(inode)) {
902 err = PTR_ERR(inode);
903 goto error;
904 }
3592ac44 905 v9fs_set_create_acl(inode, fid, dacl, pacl);
53c06f4e
AK
906 d_instantiate(dentry, inode);
907 }
53c06f4e
AK
908error:
909 if (fid)
910 p9_client_clunk(fid);
5fa6300a 911 v9fs_put_acl(dacl, pacl);
6636b6dc
JW
912 p9_client_clunk(dfid);
913
53c06f4e
AK
914 return err;
915}
916
53c06f4e 917/**
6b255391 918 * v9fs_vfs_get_link_dotl - follow a symlink path
53c06f4e 919 * @dentry: dentry for symlink
6b255391 920 * @inode: inode for symlink
fceef393 921 * @done: destructor for return value
53c06f4e
AK
922 */
923
680baacb 924static const char *
6b255391 925v9fs_vfs_get_link_dotl(struct dentry *dentry,
fceef393
AV
926 struct inode *inode,
927 struct delayed_call *done)
53c06f4e 928{
6b255391 929 struct p9_fid *fid;
31b6ceac 930 char *target;
90e4fc88 931 int retval;
53c06f4e 932
6b255391
AV
933 if (!dentry)
934 return ERR_PTR(-ECHILD);
935
4b8e9923 936 p9_debug(P9_DEBUG_VFS, "%pd\n", dentry);
53c06f4e 937
6b255391 938 fid = v9fs_fid_lookup(dentry);
90e4fc88
AV
939 if (IS_ERR(fid))
940 return ERR_CAST(fid);
31b6ceac 941 retval = p9_client_readlink(fid, &target);
6636b6dc 942 p9_client_clunk(fid);
90e4fc88
AV
943 if (retval)
944 return ERR_PTR(retval);
fceef393
AV
945 set_delayed_call(done, kfree_link, target);
946 return target;
53c06f4e
AK
947}
948
b3cbea03
AK
949int v9fs_refresh_inode_dotl(struct p9_fid *fid, struct inode *inode)
950{
b3cbea03
AK
951 struct p9_stat_dotl *st;
952 struct v9fs_session_info *v9ses;
5e3cc1ee 953 unsigned int flags;
b3cbea03
AK
954
955 v9ses = v9fs_inode2v9ses(inode);
956 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
957 if (IS_ERR(st))
958 return PTR_ERR(st);
45089142
AK
959 /*
960 * Don't update inode if the file type is different
961 */
6e3e2c43 962 if (inode_wrong_type(inode, st->st_mode))
45089142 963 goto out;
b3cbea03 964
b3cbea03
AK
965 /*
966 * We don't want to refresh inode->i_size,
967 * because we may have cached data
968 */
5e3cc1ee
HT
969 flags = (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) ?
970 V9FS_STAT2INODE_KEEP_ISIZE : 0;
971 v9fs_stat2inode_dotl(st, inode, flags);
45089142 972out:
b3cbea03
AK
973 kfree(st);
974 return 0;
975}
976
53c06f4e
AK
977const struct inode_operations v9fs_dir_inode_operations_dotl = {
978 .create = v9fs_vfs_create_dotl,
e43ae79c 979 .atomic_open = v9fs_vfs_atomic_open_dotl,
53c06f4e
AK
980 .lookup = v9fs_vfs_lookup,
981 .link = v9fs_vfs_link_dotl,
982 .symlink = v9fs_vfs_symlink_dotl,
983 .unlink = v9fs_vfs_unlink,
984 .mkdir = v9fs_vfs_mkdir_dotl,
985 .rmdir = v9fs_vfs_rmdir,
986 .mknod = v9fs_vfs_mknod_dotl,
987 .rename = v9fs_vfs_rename,
988 .getattr = v9fs_vfs_getattr_dotl,
989 .setattr = v9fs_vfs_setattr_dotl,
53c06f4e 990 .listxattr = v9fs_listxattr,
4e34e719 991 .get_acl = v9fs_iop_get_acl,
53c06f4e
AK
992};
993
994const struct inode_operations v9fs_file_inode_operations_dotl = {
995 .getattr = v9fs_vfs_getattr_dotl,
996 .setattr = v9fs_vfs_setattr_dotl,
53c06f4e 997 .listxattr = v9fs_listxattr,
4e34e719 998 .get_acl = v9fs_iop_get_acl,
53c06f4e
AK
999};
1000
1001const struct inode_operations v9fs_symlink_inode_operations_dotl = {
6b255391 1002 .get_link = v9fs_vfs_get_link_dotl,
53c06f4e
AK
1003 .getattr = v9fs_vfs_getattr_dotl,
1004 .setattr = v9fs_vfs_setattr_dotl,
53c06f4e
AK
1005 .listxattr = v9fs_listxattr,
1006};