fs/9p: Fix bit operation logic error
[linux-block.git] / fs / 9p / vfs_inode_dotl.c
CommitLineData
1f327613 1// SPDX-License-Identifier: GPL-2.0-only
53c06f4e 2/*
53c06f4e
AK
3 * This file contains vfs inode ops for the 9P2000.L protocol.
4 *
5 * Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
6 * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
53c06f4e
AK
7 */
8
9#include <linux/module.h>
10#include <linux/errno.h>
11#include <linux/fs.h>
12#include <linux/file.h>
13#include <linux/pagemap.h>
14#include <linux/stat.h>
15#include <linux/string.h>
16#include <linux/inet.h>
17#include <linux/namei.h>
53c06f4e
AK
18#include <linux/sched.h>
19#include <linux/slab.h>
20#include <linux/xattr.h>
21#include <linux/posix_acl.h>
22#include <net/9p/9p.h>
23#include <net/9p/client.h>
24
25#include "v9fs.h"
26#include "v9fs_vfs.h"
27#include "fid.h"
28#include "cache.h"
29#include "xattr.h"
30#include "acl.h"
31
32static int
5ebb29be 33v9fs_vfs_mknod_dotl(struct mnt_idmap *idmap, struct inode *dir,
549c7297 34 struct dentry *dentry, umode_t omode, dev_t rdev);
53c06f4e
AK
35
36/**
bc868036
DH
37 * v9fs_get_fsgid_for_create - Helper function to get the gid for a new object
38 * @dir_inode: The directory inode
39 *
40 * Helper function to get the gid for creating a
53c06f4e
AK
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;
6e195b0f 107 int (*test)(struct inode *inode, void *data);
ed80fcfa
AK
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.
6c960e68 214 * @idmap: The user namespace of the mount
53c06f4e
AK
215 * @dir: directory inode that is being created
216 * @dentry: dentry that is being deleted
fd2916bd 217 * @omode: create permissions
bc868036 218 * @excl: True if the file must not yet exist
53c06f4e
AK
219 *
220 */
53c06f4e 221static int
6c960e68 222v9fs_vfs_create_dotl(struct mnt_idmap *idmap, struct inode *dir,
549c7297 223 struct dentry *dentry, umode_t omode, bool excl)
e43ae79c 224{
5ebb29be 225 return v9fs_vfs_mknod_dotl(idmap, dir, dentry, omode, 0);
e43ae79c
MS
226}
227
d9585277 228static int
e43ae79c 229v9fs_vfs_atomic_open_dotl(struct inode *dir, struct dentry *dentry,
6e195b0f 230 struct file *file, unsigned int flags, umode_t omode)
53c06f4e
AK
231{
232 int err = 0;
d4ef4e35 233 kgid_t gid;
d3fb6120 234 umode_t mode;
1543b4c5 235 int p9_omode = v9fs_open_to_dotl_flags(flags);
7880b43b 236 const unsigned char *name = NULL;
53c06f4e
AK
237 struct p9_qid qid;
238 struct inode *inode;
6b39f6d2 239 struct p9_fid *fid = NULL;
1543b4c5 240 struct p9_fid *dfid = NULL, *ofid = NULL;
6b39f6d2 241 struct v9fs_session_info *v9ses;
53c06f4e 242 struct posix_acl *pacl = NULL, *dacl = NULL;
e43ae79c 243 struct dentry *res = NULL;
53c06f4e 244
00699ad8 245 if (d_in_lookup(dentry)) {
00cd8dd3 246 res = v9fs_vfs_lookup(dir, dentry, 0);
e43ae79c 247 if (IS_ERR(res))
d9585277 248 return PTR_ERR(res);
e43ae79c
MS
249
250 if (res)
251 dentry = res;
252 }
253
254 /* Only creates */
2b0143b5 255 if (!(flags & O_CREAT) || d_really_is_positive(dentry))
b6f4bee0 256 return finish_no_open(file, res);
53c06f4e 257
e43ae79c
MS
258 v9ses = v9fs_inode2v9ses(dir);
259
7880b43b 260 name = dentry->d_name.name;
6e195b0f 261 p9_debug(P9_DEBUG_VFS, "name:%s flags:0x%x mode:0x%x\n",
5d385153 262 name, flags, omode);
53c06f4e 263
77d5a6b7 264 dfid = v9fs_parent_fid(dentry);
53c06f4e
AK
265 if (IS_ERR(dfid)) {
266 err = PTR_ERR(dfid);
5d385153 267 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
d9585277 268 goto out;
53c06f4e
AK
269 }
270
271 /* clone a fid to use for creation */
7d50a29f 272 ofid = clone_fid(dfid);
53c06f4e
AK
273 if (IS_ERR(ofid)) {
274 err = PTR_ERR(ofid);
5d385153 275 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
d9585277 276 goto out;
53c06f4e
AK
277 }
278
279 gid = v9fs_get_fsgid_for_create(dir);
280
281 mode = omode;
282 /* Update mode based on ACL value */
283 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
284 if (err) {
1543b4c5 285 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in create %d\n",
5d385153 286 err);
dafbe689 287 goto out;
53c06f4e 288 }
1543b4c5 289
4eb31178 290 if ((v9ses->cache & CACHE_WRITEBACK) && (p9_omode & P9_OWRITE)) {
21e26d5e 291 p9_omode = (p9_omode & ~P9_OWRITE) | P9_ORDWR;
1543b4c5
EVH
292 p9_debug(P9_DEBUG_CACHE,
293 "write-only file with writeback enabled, creating w/ O_RDWR\n");
294 }
295 err = p9_client_create_dotl(ofid, name, p9_omode, mode, gid, &qid);
53c06f4e 296 if (err < 0) {
1543b4c5 297 p9_debug(P9_DEBUG_VFS, "p9_client_open_dotl failed in create %d\n",
5d385153 298 err);
dafbe689 299 goto out;
53c06f4e 300 }
d28c61f0 301 v9fs_invalidate_inode_attr(dir);
53c06f4e 302
af7542fc
AK
303 /* instantiate inode and assign the unopened fid to the dentry */
304 fid = p9_client_walk(dfid, 1, &name, 1);
305 if (IS_ERR(fid)) {
306 err = PTR_ERR(fid);
5d385153 307 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
dafbe689 308 goto out;
53c06f4e 309 }
ed80fcfa 310 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
af7542fc
AK
311 if (IS_ERR(inode)) {
312 err = PTR_ERR(inode);
5d385153 313 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n", err);
dafbe689 314 goto out;
af7542fc 315 }
3592ac44
AV
316 /* Now set the ACL based on the default value */
317 v9fs_set_create_acl(inode, fid, dacl, pacl);
318
dafbe689 319 v9fs_fid_add(dentry, &fid);
5441ae5e 320 d_instantiate(dentry, inode);
af7542fc 321
af7542fc 322 /* Since we are opening a file, assign the open fid to the file */
be12af3e 323 err = finish_open(file, dentry, generic_file_open);
30d90494 324 if (err)
dafbe689 325 goto out;
30d90494 326 file->private_data = ofid;
344504e9 327#ifdef CONFIG_9P_FSCACHE
4eb31178 328 if (v9ses->cache & CACHE_FSCACHE) {
1543b4c5 329 struct v9fs_inode *v9inode = V9FS_I(inode);
24e42e32
DH
330 fscache_use_cookie(v9fs_inode_cookie(v9inode),
331 file->f_mode & FMODE_WRITE);
1543b4c5 332 }
344504e9 333#endif
1543b4c5 334 v9fs_fid_add_modes(ofid, v9ses->flags, v9ses->cache, flags);
dafbe689 335 v9fs_open_fid_add(inode, &ofid);
73a09dd9 336 file->f_mode |= FMODE_CREATED;
e43ae79c 337out:
dafbe689
DM
338 p9_fid_put(dfid);
339 p9_fid_put(ofid);
340 p9_fid_put(fid);
5fa6300a 341 v9fs_put_acl(dacl, pacl);
e43ae79c 342 dput(res);
d9585277 343 return err;
53c06f4e
AK
344}
345
346/**
347 * v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory
c54bd91e 348 * @idmap: The idmap of the mount
53c06f4e
AK
349 * @dir: inode that is being unlinked
350 * @dentry: dentry that is being unlinked
fd2916bd 351 * @omode: mode for new directory
53c06f4e
AK
352 *
353 */
354
c54bd91e 355static int v9fs_vfs_mkdir_dotl(struct mnt_idmap *idmap,
549c7297
CB
356 struct inode *dir, struct dentry *dentry,
357 umode_t omode)
53c06f4e
AK
358{
359 int err;
360 struct v9fs_session_info *v9ses;
361 struct p9_fid *fid = NULL, *dfid = NULL;
d4ef4e35 362 kgid_t gid;
7880b43b 363 const unsigned char *name;
d3fb6120 364 umode_t mode;
53c06f4e
AK
365 struct inode *inode;
366 struct p9_qid qid;
53c06f4e
AK
367 struct posix_acl *dacl = NULL, *pacl = NULL;
368
4b8e9923 369 p9_debug(P9_DEBUG_VFS, "name %pd\n", dentry);
53c06f4e
AK
370 err = 0;
371 v9ses = v9fs_inode2v9ses(dir);
372
373 omode |= S_IFDIR;
374 if (dir->i_mode & S_ISGID)
375 omode |= S_ISGID;
376
77d5a6b7 377 dfid = v9fs_parent_fid(dentry);
53c06f4e
AK
378 if (IS_ERR(dfid)) {
379 err = PTR_ERR(dfid);
5d385153 380 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
53c06f4e
AK
381 goto error;
382 }
383
384 gid = v9fs_get_fsgid_for_create(dir);
385 mode = omode;
386 /* Update mode based on ACL value */
387 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
388 if (err) {
5d385153
JP
389 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mkdir %d\n",
390 err);
53c06f4e
AK
391 goto error;
392 }
7880b43b 393 name = dentry->d_name.name;
53c06f4e
AK
394 err = p9_client_mkdir_dotl(dfid, name, mode, gid, &qid);
395 if (err < 0)
396 goto error;
3592ac44
AV
397 fid = p9_client_walk(dfid, 1, &name, 1);
398 if (IS_ERR(fid)) {
399 err = PTR_ERR(fid);
400 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
401 err);
3592ac44
AV
402 goto error;
403 }
404
53c06f4e 405 /* instantiate inode and assign the unopened fid to the dentry */
4eb31178 406 if (v9ses->cache & (CACHE_META|CACHE_LOOSE)) {
ed80fcfa 407 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
53c06f4e
AK
408 if (IS_ERR(inode)) {
409 err = PTR_ERR(inode);
5d385153
JP
410 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
411 err);
53c06f4e
AK
412 goto error;
413 }
dafbe689 414 v9fs_fid_add(dentry, &fid);
3592ac44 415 v9fs_set_create_acl(inode, fid, dacl, pacl);
5441ae5e 416 d_instantiate(dentry, inode);
2ea03e1d 417 err = 0;
53c06f4e
AK
418 } else {
419 /*
420 * Not in cached mode. No need to populate
421 * inode with stat. We need to get an inode
422 * so that we can set the acl with dentry
423 */
45089142 424 inode = v9fs_get_inode(dir->i_sb, mode, 0);
53c06f4e
AK
425 if (IS_ERR(inode)) {
426 err = PTR_ERR(inode);
427 goto error;
428 }
3592ac44 429 v9fs_set_create_acl(inode, fid, dacl, pacl);
53c06f4e
AK
430 d_instantiate(dentry, inode);
431 }
b271ec47 432 inc_nlink(dir);
d28c61f0 433 v9fs_invalidate_inode_attr(dir);
53c06f4e 434error:
dafbe689 435 p9_fid_put(fid);
5fa6300a 436 v9fs_put_acl(dacl, pacl);
b48dbb99 437 p9_fid_put(dfid);
53c06f4e
AK
438 return err;
439}
440
441static int
b74d24f7 442v9fs_vfs_getattr_dotl(struct mnt_idmap *idmap,
549c7297
CB
443 const struct path *path, struct kstat *stat,
444 u32 request_mask, unsigned int flags)
53c06f4e 445{
a528d35e 446 struct dentry *dentry = path->dentry;
53c06f4e
AK
447 struct v9fs_session_info *v9ses;
448 struct p9_fid *fid;
d9bc0d11 449 struct inode *inode = d_inode(dentry);
53c06f4e
AK
450 struct p9_stat_dotl *st;
451
5d385153 452 p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry);
42869c8a 453 v9ses = v9fs_dentry2v9ses(dentry);
4eb31178 454 if (v9ses->cache & (CACHE_META|CACHE_LOOSE)) {
1543b4c5 455 generic_fillattr(&nop_mnt_idmap, inode, stat);
a1211908 456 return 0;
1543b4c5 457 } else if (v9ses->cache) {
d9bc0d11
EVH
458 if (S_ISREG(inode->i_mode)) {
459 int retval = filemap_fdatawrite(inode->i_mapping);
460
461 if (retval)
462 p9_debug(P9_DEBUG_ERROR,
463 "flushing writeback during getattr returned %d\n", retval);
464 }
a1211908 465 }
53c06f4e
AK
466 fid = v9fs_fid_lookup(dentry);
467 if (IS_ERR(fid))
468 return PTR_ERR(fid);
469
470 /* Ask for all the fields in stat structure. Server will return
471 * whatever it supports
472 */
473
474 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
b48dbb99 475 p9_fid_put(fid);
53c06f4e
AK
476 if (IS_ERR(st))
477 return PTR_ERR(st);
478
5e3cc1ee 479 v9fs_stat2inode_dotl(st, d_inode(dentry), 0);
b74d24f7 480 generic_fillattr(&nop_mnt_idmap, d_inode(dentry), stat);
53c06f4e
AK
481 /* Change block size to what the server returned */
482 stat->blksize = st->st_blksize;
483
484 kfree(st);
485 return 0;
486}
487
f766619d
AK
488/*
489 * Attribute flags.
490 */
491#define P9_ATTR_MODE (1 << 0)
492#define P9_ATTR_UID (1 << 1)
493#define P9_ATTR_GID (1 << 2)
494#define P9_ATTR_SIZE (1 << 3)
495#define P9_ATTR_ATIME (1 << 4)
496#define P9_ATTR_MTIME (1 << 5)
497#define P9_ATTR_CTIME (1 << 6)
498#define P9_ATTR_ATIME_SET (1 << 7)
499#define P9_ATTR_MTIME_SET (1 << 8)
500
501struct dotl_iattr_map {
502 int iattr_valid;
503 int p9_iattr_valid;
504};
505
506static int v9fs_mapped_iattr_valid(int iattr_valid)
507{
508 int i;
509 int p9_iattr_valid = 0;
510 struct dotl_iattr_map dotl_iattr_map[] = {
511 { ATTR_MODE, P9_ATTR_MODE },
512 { ATTR_UID, P9_ATTR_UID },
513 { ATTR_GID, P9_ATTR_GID },
514 { ATTR_SIZE, P9_ATTR_SIZE },
515 { ATTR_ATIME, P9_ATTR_ATIME },
516 { ATTR_MTIME, P9_ATTR_MTIME },
517 { ATTR_CTIME, P9_ATTR_CTIME },
518 { ATTR_ATIME_SET, P9_ATTR_ATIME_SET },
519 { ATTR_MTIME_SET, P9_ATTR_MTIME_SET },
520 };
521 for (i = 0; i < ARRAY_SIZE(dotl_iattr_map); i++) {
522 if (iattr_valid & dotl_iattr_map[i].iattr_valid)
523 p9_iattr_valid |= dotl_iattr_map[i].p9_iattr_valid;
524 }
525 return p9_iattr_valid;
526}
527
53c06f4e
AK
528/**
529 * v9fs_vfs_setattr_dotl - set file metadata
c1632a0f 530 * @idmap: idmap of the mount
53c06f4e
AK
531 * @dentry: file whose metadata to set
532 * @iattr: metadata assignment structure
533 *
534 */
535
c1632a0f 536int v9fs_vfs_setattr_dotl(struct mnt_idmap *idmap,
549c7297 537 struct dentry *dentry, struct iattr *iattr)
53c06f4e 538{
6636b6dc 539 int retval, use_dentry = 0;
d9bc0d11 540 struct inode *inode = d_inode(dentry);
4eb31178 541 struct v9fs_session_info __maybe_unused *v9ses;
66246641 542 struct p9_fid *fid = NULL;
3cb6ee99
CB
543 struct p9_iattr_dotl p9attr = {
544 .uid = INVALID_UID,
545 .gid = INVALID_GID,
546 };
53c06f4e 547
5d385153 548 p9_debug(P9_DEBUG_VFS, "\n");
53c06f4e 549
c1632a0f 550 retval = setattr_prepare(&nop_mnt_idmap, dentry, iattr);
53c06f4e
AK
551 if (retval)
552 return retval;
553
d9bc0d11
EVH
554 v9ses = v9fs_dentry2v9ses(dentry);
555
f766619d 556 p9attr.valid = v9fs_mapped_iattr_valid(iattr->ia_valid);
3cb6ee99
CB
557 if (iattr->ia_valid & ATTR_MODE)
558 p9attr.mode = iattr->ia_mode;
559 if (iattr->ia_valid & ATTR_UID)
560 p9attr.uid = iattr->ia_uid;
561 if (iattr->ia_valid & ATTR_GID)
562 p9attr.gid = iattr->ia_gid;
563 if (iattr->ia_valid & ATTR_SIZE)
564 p9attr.size = iattr->ia_size;
565 if (iattr->ia_valid & ATTR_ATIME_SET) {
566 p9attr.atime_sec = iattr->ia_atime.tv_sec;
567 p9attr.atime_nsec = iattr->ia_atime.tv_nsec;
568 }
569 if (iattr->ia_valid & ATTR_MTIME_SET) {
570 p9attr.mtime_sec = iattr->ia_mtime.tv_sec;
571 p9attr.mtime_nsec = iattr->ia_mtime.tv_nsec;
572 }
53c06f4e 573
66246641
JW
574 if (iattr->ia_valid & ATTR_FILE) {
575 fid = iattr->ia_file->private_data;
576 WARN_ON(!fid);
577 }
6636b6dc 578 if (!fid) {
66246641 579 fid = v9fs_fid_lookup(dentry);
6636b6dc
JW
580 use_dentry = 1;
581 }
53c06f4e
AK
582 if (IS_ERR(fid))
583 return PTR_ERR(fid);
584
3dc5436a 585 /* Write all dirty data */
d9bc0d11
EVH
586 if (S_ISREG(inode->i_mode)) {
587 retval = filemap_fdatawrite(inode->i_mapping);
588 if (retval < 0)
589 p9_debug(P9_DEBUG_ERROR,
590 "Flushing file prior to setattr failed: %d\n", retval);
591 }
3dc5436a 592
f10fc50f 593 retval = p9_client_setattr(fid, &p9attr);
6636b6dc
JW
594 if (retval < 0) {
595 if (use_dentry)
b48dbb99 596 p9_fid_put(fid);
f10fc50f 597 return retval;
6636b6dc 598 }
53c06f4e 599
d9bc0d11
EVH
600 if ((iattr->ia_valid & ATTR_SIZE) && iattr->ia_size !=
601 i_size_read(inode)) {
be308f07 602 truncate_setsize(inode, iattr->ia_size);
1543b4c5
EVH
603 truncate_pagecache(inode, iattr->ia_size);
604
4eb31178
EVH
605#ifdef CONFIG_9P_FSCACHE
606 if (v9ses->cache & CACHE_FSCACHE)
607 fscache_resize_cookie(v9fs_inode_cookie(V9FS_I(inode)),
608 iattr->ia_size);
609#endif
d9bc0d11 610 }
059c138b 611
be308f07 612 v9fs_invalidate_inode_attr(inode);
c1632a0f 613 setattr_copy(&nop_mnt_idmap, inode, iattr);
be308f07 614 mark_inode_dirty(inode);
53c06f4e
AK
615 if (iattr->ia_valid & ATTR_MODE) {
616 /* We also want to update ACL when we update mode bits */
be308f07 617 retval = v9fs_acl_chmod(inode, fid);
6636b6dc
JW
618 if (retval < 0) {
619 if (use_dentry)
b48dbb99 620 p9_fid_put(fid);
53c06f4e 621 return retval;
6636b6dc 622 }
53c06f4e 623 }
6636b6dc 624 if (use_dentry)
b48dbb99 625 p9_fid_put(fid);
6636b6dc 626
53c06f4e
AK
627 return 0;
628}
629
630/**
631 * v9fs_stat2inode_dotl - populate an inode structure with stat info
632 * @stat: stat structure
633 * @inode: inode to populate
5e3cc1ee 634 * @flags: ctrl flags (e.g. V9FS_STAT2INODE_KEEP_ISIZE)
53c06f4e
AK
635 *
636 */
637
638void
5e3cc1ee
HT
639v9fs_stat2inode_dotl(struct p9_stat_dotl *stat, struct inode *inode,
640 unsigned int flags)
53c06f4e 641{
3eda0de6 642 umode_t mode;
b3cbea03 643 struct v9fs_inode *v9inode = V9FS_I(inode);
53c06f4e
AK
644
645 if ((stat->st_result_mask & P9_STATS_BASIC) == P9_STATS_BASIC) {
646 inode->i_atime.tv_sec = stat->st_atime_sec;
647 inode->i_atime.tv_nsec = stat->st_atime_nsec;
648 inode->i_mtime.tv_sec = stat->st_mtime_sec;
649 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
650 inode->i_ctime.tv_sec = stat->st_ctime_sec;
651 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
652 inode->i_uid = stat->st_uid;
653 inode->i_gid = stat->st_gid;
bfe86848 654 set_nlink(inode, stat->st_nlink);
53c06f4e 655
45089142
AK
656 mode = stat->st_mode & S_IALLUGO;
657 mode |= inode->i_mode & ~S_IALLUGO;
658 inode->i_mode = mode;
53c06f4e 659
5e3cc1ee
HT
660 if (!(flags & V9FS_STAT2INODE_KEEP_ISIZE))
661 v9fs_i_size_write(inode, stat->st_size);
53c06f4e
AK
662 inode->i_blocks = stat->st_blocks;
663 } else {
664 if (stat->st_result_mask & P9_STATS_ATIME) {
665 inode->i_atime.tv_sec = stat->st_atime_sec;
666 inode->i_atime.tv_nsec = stat->st_atime_nsec;
667 }
668 if (stat->st_result_mask & P9_STATS_MTIME) {
669 inode->i_mtime.tv_sec = stat->st_mtime_sec;
670 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
671 }
672 if (stat->st_result_mask & P9_STATS_CTIME) {
673 inode->i_ctime.tv_sec = stat->st_ctime_sec;
674 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
675 }
676 if (stat->st_result_mask & P9_STATS_UID)
677 inode->i_uid = stat->st_uid;
678 if (stat->st_result_mask & P9_STATS_GID)
679 inode->i_gid = stat->st_gid;
680 if (stat->st_result_mask & P9_STATS_NLINK)
bfe86848 681 set_nlink(inode, stat->st_nlink);
53c06f4e 682 if (stat->st_result_mask & P9_STATS_MODE) {
b577d0cd
AV
683 mode = stat->st_mode & S_IALLUGO;
684 mode |= inode->i_mode & ~S_IALLUGO;
685 inode->i_mode = mode;
53c06f4e 686 }
5e3cc1ee
HT
687 if (!(flags & V9FS_STAT2INODE_KEEP_ISIZE) &&
688 stat->st_result_mask & P9_STATS_SIZE)
689 v9fs_i_size_write(inode, stat->st_size);
53c06f4e
AK
690 if (stat->st_result_mask & P9_STATS_BLOCKS)
691 inode->i_blocks = stat->st_blocks;
692 }
693 if (stat->st_result_mask & P9_STATS_GEN)
fd2421f5 694 inode->i_generation = stat->st_gen;
53c06f4e
AK
695
696 /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION
697 * because the inode structure does not have fields for them.
698 */
b3cbea03 699 v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR;
53c06f4e
AK
700}
701
702static int
7a77db95 703v9fs_vfs_symlink_dotl(struct mnt_idmap *idmap, struct inode *dir,
549c7297 704 struct dentry *dentry, const char *symname)
53c06f4e 705{
53c06f4e 706 int err;
d4ef4e35 707 kgid_t gid;
7880b43b 708 const unsigned char *name;
d28c61f0
AK
709 struct p9_qid qid;
710 struct inode *inode;
711 struct p9_fid *dfid;
712 struct p9_fid *fid = NULL;
713 struct v9fs_session_info *v9ses;
53c06f4e 714
7880b43b 715 name = dentry->d_name.name;
5d385153 716 p9_debug(P9_DEBUG_VFS, "%lu,%s,%s\n", dir->i_ino, name, symname);
53c06f4e
AK
717 v9ses = v9fs_inode2v9ses(dir);
718
77d5a6b7 719 dfid = v9fs_parent_fid(dentry);
53c06f4e
AK
720 if (IS_ERR(dfid)) {
721 err = PTR_ERR(dfid);
5d385153 722 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
53c06f4e
AK
723 return err;
724 }
725
726 gid = v9fs_get_fsgid_for_create(dir);
727
728 /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */
7880b43b 729 err = p9_client_symlink(dfid, name, symname, gid, &qid);
53c06f4e
AK
730
731 if (err < 0) {
5d385153 732 p9_debug(P9_DEBUG_VFS, "p9_client_symlink failed %d\n", err);
53c06f4e
AK
733 goto error;
734 }
735
d28c61f0 736 v9fs_invalidate_inode_attr(dir);
4eb31178 737 if (v9ses->cache & (CACHE_META|CACHE_LOOSE)) {
53c06f4e
AK
738 /* Now walk from the parent so we can get an unopened fid. */
739 fid = p9_client_walk(dfid, 1, &name, 1);
740 if (IS_ERR(fid)) {
741 err = PTR_ERR(fid);
5d385153
JP
742 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
743 err);
53c06f4e
AK
744 goto error;
745 }
746
747 /* instantiate inode and assign the unopened fid to dentry */
ed80fcfa 748 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
53c06f4e
AK
749 if (IS_ERR(inode)) {
750 err = PTR_ERR(inode);
5d385153
JP
751 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
752 err);
53c06f4e
AK
753 goto error;
754 }
dafbe689 755 v9fs_fid_add(dentry, &fid);
5441ae5e 756 d_instantiate(dentry, inode);
2ea03e1d 757 err = 0;
53c06f4e
AK
758 } else {
759 /* Not in cached mode. No need to populate inode with stat */
45089142 760 inode = v9fs_get_inode(dir->i_sb, S_IFLNK, 0);
53c06f4e
AK
761 if (IS_ERR(inode)) {
762 err = PTR_ERR(inode);
763 goto error;
764 }
53c06f4e
AK
765 d_instantiate(dentry, inode);
766 }
767
768error:
dafbe689 769 p9_fid_put(fid);
b48dbb99 770 p9_fid_put(dfid);
53c06f4e
AK
771 return err;
772}
773
774/**
775 * v9fs_vfs_link_dotl - create a hardlink for dotl
776 * @old_dentry: dentry for file to link to
777 * @dir: inode destination for new link
778 * @dentry: dentry for link
779 *
780 */
781
782static int
783v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir,
784 struct dentry *dentry)
785{
786 int err;
d28c61f0
AK
787 struct p9_fid *dfid, *oldfid;
788 struct v9fs_session_info *v9ses;
53c06f4e 789
4b8e9923
AV
790 p9_debug(P9_DEBUG_VFS, "dir ino: %lu, old_name: %pd, new_name: %pd\n",
791 dir->i_ino, old_dentry, dentry);
53c06f4e
AK
792
793 v9ses = v9fs_inode2v9ses(dir);
77d5a6b7 794 dfid = v9fs_parent_fid(dentry);
53c06f4e
AK
795 if (IS_ERR(dfid))
796 return PTR_ERR(dfid);
797
798 oldfid = v9fs_fid_lookup(old_dentry);
6636b6dc 799 if (IS_ERR(oldfid)) {
b48dbb99 800 p9_fid_put(dfid);
53c06f4e 801 return PTR_ERR(oldfid);
6636b6dc 802 }
53c06f4e 803
7880b43b 804 err = p9_client_link(dfid, oldfid, dentry->d_name.name);
53c06f4e 805
b48dbb99
DM
806 p9_fid_put(dfid);
807 p9_fid_put(oldfid);
53c06f4e 808 if (err < 0) {
5d385153 809 p9_debug(P9_DEBUG_VFS, "p9_client_link failed %d\n", err);
53c06f4e
AK
810 return err;
811 }
812
d28c61f0 813 v9fs_invalidate_inode_attr(dir);
4eb31178 814 if (v9ses->cache & (CACHE_META|CACHE_LOOSE)) {
53c06f4e
AK
815 /* Get the latest stat info from server. */
816 struct p9_fid *fid;
6e195b0f 817
53c06f4e
AK
818 fid = v9fs_fid_lookup(old_dentry);
819 if (IS_ERR(fid))
820 return PTR_ERR(fid);
821
2b0143b5 822 v9fs_refresh_inode_dotl(fid, d_inode(old_dentry));
b48dbb99 823 p9_fid_put(fid);
53c06f4e 824 }
2b0143b5
DH
825 ihold(d_inode(old_dentry));
826 d_instantiate(dentry, d_inode(old_dentry));
53c06f4e
AK
827
828 return err;
829}
830
831/**
832 * v9fs_vfs_mknod_dotl - create a special file
5ebb29be 833 * @idmap: The idmap of the mount
53c06f4e
AK
834 * @dir: inode destination for new link
835 * @dentry: dentry for file
fd2916bd 836 * @omode: mode for creation
53c06f4e
AK
837 * @rdev: device associated with special file
838 *
839 */
840static int
5ebb29be 841v9fs_vfs_mknod_dotl(struct mnt_idmap *idmap, struct inode *dir,
549c7297 842 struct dentry *dentry, umode_t omode, dev_t rdev)
53c06f4e
AK
843{
844 int err;
d4ef4e35 845 kgid_t gid;
7880b43b 846 const unsigned char *name;
d3fb6120 847 umode_t mode;
53c06f4e
AK
848 struct v9fs_session_info *v9ses;
849 struct p9_fid *fid = NULL, *dfid = NULL;
850 struct inode *inode;
53c06f4e 851 struct p9_qid qid;
53c06f4e
AK
852 struct posix_acl *dacl = NULL, *pacl = NULL;
853
6e195b0f 854 p9_debug(P9_DEBUG_VFS, " %lu,%pd mode: %x MAJOR: %u MINOR: %u\n",
a455589f 855 dir->i_ino, dentry, omode,
5d385153 856 MAJOR(rdev), MINOR(rdev));
53c06f4e 857
53c06f4e 858 v9ses = v9fs_inode2v9ses(dir);
77d5a6b7 859 dfid = v9fs_parent_fid(dentry);
53c06f4e
AK
860 if (IS_ERR(dfid)) {
861 err = PTR_ERR(dfid);
5d385153 862 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
53c06f4e
AK
863 goto error;
864 }
865
866 gid = v9fs_get_fsgid_for_create(dir);
867 mode = omode;
868 /* Update mode based on ACL value */
869 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
870 if (err) {
5d385153
JP
871 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mknod %d\n",
872 err);
53c06f4e
AK
873 goto error;
874 }
7880b43b 875 name = dentry->d_name.name;
53c06f4e
AK
876
877 err = p9_client_mknod_dotl(dfid, name, mode, rdev, gid, &qid);
878 if (err < 0)
879 goto error;
880
d28c61f0 881 v9fs_invalidate_inode_attr(dir);
3592ac44
AV
882 fid = p9_client_walk(dfid, 1, &name, 1);
883 if (IS_ERR(fid)) {
884 err = PTR_ERR(fid);
885 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
886 err);
3592ac44
AV
887 goto error;
888 }
889
53c06f4e 890 /* instantiate inode and assign the unopened fid to the dentry */
4eb31178 891 if (v9ses->cache & (CACHE_META|CACHE_LOOSE)) {
ed80fcfa 892 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
53c06f4e
AK
893 if (IS_ERR(inode)) {
894 err = PTR_ERR(inode);
5d385153
JP
895 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
896 err);
53c06f4e
AK
897 goto error;
898 }
3592ac44 899 v9fs_set_create_acl(inode, fid, dacl, pacl);
dafbe689 900 v9fs_fid_add(dentry, &fid);
5441ae5e 901 d_instantiate(dentry, inode);
2ea03e1d 902 err = 0;
53c06f4e
AK
903 } else {
904 /*
905 * Not in cached mode. No need to populate inode with stat.
906 * socket syscall returns a fd, so we need instantiate
907 */
45089142 908 inode = v9fs_get_inode(dir->i_sb, mode, rdev);
53c06f4e
AK
909 if (IS_ERR(inode)) {
910 err = PTR_ERR(inode);
911 goto error;
912 }
3592ac44 913 v9fs_set_create_acl(inode, fid, dacl, pacl);
53c06f4e
AK
914 d_instantiate(dentry, inode);
915 }
53c06f4e 916error:
dafbe689 917 p9_fid_put(fid);
5fa6300a 918 v9fs_put_acl(dacl, pacl);
b48dbb99 919 p9_fid_put(dfid);
6636b6dc 920
53c06f4e
AK
921 return err;
922}
923
53c06f4e 924/**
6b255391 925 * v9fs_vfs_get_link_dotl - follow a symlink path
53c06f4e 926 * @dentry: dentry for symlink
6b255391 927 * @inode: inode for symlink
fceef393 928 * @done: destructor for return value
53c06f4e
AK
929 */
930
680baacb 931static const char *
6b255391 932v9fs_vfs_get_link_dotl(struct dentry *dentry,
fceef393
AV
933 struct inode *inode,
934 struct delayed_call *done)
53c06f4e 935{
6b255391 936 struct p9_fid *fid;
31b6ceac 937 char *target;
90e4fc88 938 int retval;
53c06f4e 939
6b255391
AV
940 if (!dentry)
941 return ERR_PTR(-ECHILD);
942
4b8e9923 943 p9_debug(P9_DEBUG_VFS, "%pd\n", dentry);
53c06f4e 944
6b255391 945 fid = v9fs_fid_lookup(dentry);
90e4fc88
AV
946 if (IS_ERR(fid))
947 return ERR_CAST(fid);
31b6ceac 948 retval = p9_client_readlink(fid, &target);
b48dbb99 949 p9_fid_put(fid);
90e4fc88
AV
950 if (retval)
951 return ERR_PTR(retval);
fceef393
AV
952 set_delayed_call(done, kfree_link, target);
953 return target;
53c06f4e
AK
954}
955
b3cbea03
AK
956int v9fs_refresh_inode_dotl(struct p9_fid *fid, struct inode *inode)
957{
b3cbea03
AK
958 struct p9_stat_dotl *st;
959 struct v9fs_session_info *v9ses;
5e3cc1ee 960 unsigned int flags;
b3cbea03
AK
961
962 v9ses = v9fs_inode2v9ses(inode);
963 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
964 if (IS_ERR(st))
965 return PTR_ERR(st);
45089142
AK
966 /*
967 * Don't update inode if the file type is different
968 */
6e3e2c43 969 if (inode_wrong_type(inode, st->st_mode))
45089142 970 goto out;
b3cbea03 971
b3cbea03
AK
972 /*
973 * We don't want to refresh inode->i_size,
974 * because we may have cached data
975 */
4eb31178 976 flags = (v9ses->cache & CACHE_LOOSE) ?
5e3cc1ee
HT
977 V9FS_STAT2INODE_KEEP_ISIZE : 0;
978 v9fs_stat2inode_dotl(st, inode, flags);
45089142 979out:
b3cbea03
AK
980 kfree(st);
981 return 0;
982}
983
53c06f4e
AK
984const struct inode_operations v9fs_dir_inode_operations_dotl = {
985 .create = v9fs_vfs_create_dotl,
e43ae79c 986 .atomic_open = v9fs_vfs_atomic_open_dotl,
53c06f4e
AK
987 .lookup = v9fs_vfs_lookup,
988 .link = v9fs_vfs_link_dotl,
989 .symlink = v9fs_vfs_symlink_dotl,
990 .unlink = v9fs_vfs_unlink,
991 .mkdir = v9fs_vfs_mkdir_dotl,
992 .rmdir = v9fs_vfs_rmdir,
993 .mknod = v9fs_vfs_mknod_dotl,
994 .rename = v9fs_vfs_rename,
995 .getattr = v9fs_vfs_getattr_dotl,
996 .setattr = v9fs_vfs_setattr_dotl,
53c06f4e 997 .listxattr = v9fs_listxattr,
6cd4d4e8
CB
998 .get_inode_acl = v9fs_iop_get_inode_acl,
999 .get_acl = v9fs_iop_get_acl,
079da629 1000 .set_acl = v9fs_iop_set_acl,
53c06f4e
AK
1001};
1002
1003const struct inode_operations v9fs_file_inode_operations_dotl = {
1004 .getattr = v9fs_vfs_getattr_dotl,
1005 .setattr = v9fs_vfs_setattr_dotl,
53c06f4e 1006 .listxattr = v9fs_listxattr,
6cd4d4e8
CB
1007 .get_inode_acl = v9fs_iop_get_inode_acl,
1008 .get_acl = v9fs_iop_get_acl,
079da629 1009 .set_acl = v9fs_iop_set_acl,
53c06f4e
AK
1010};
1011
1012const struct inode_operations v9fs_symlink_inode_operations_dotl = {
6b255391 1013 .get_link = v9fs_vfs_get_link_dotl,
53c06f4e
AK
1014 .getattr = v9fs_vfs_getattr_dotl,
1015 .setattr = v9fs_vfs_setattr_dotl,
53c06f4e
AK
1016 .listxattr = v9fs_listxattr,
1017};