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