1 // SPDX-License-Identifier: GPL-2.0-only
3 * This file contains vfs inode ops for the 9P2000.L protocol.
5 * Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
6 * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
9 #include <linux/module.h>
10 #include <linux/errno.h>
12 #include <linux/file.h>
13 #include <linux/pagemap.h>
14 #include <linux/stat.h>
15 #include <linux/string.h>
16 #include <linux/namei.h>
17 #include <linux/sched.h>
18 #include <linux/slab.h>
19 #include <linux/xattr.h>
20 #include <linux/posix_acl.h>
21 #include <net/9p/9p.h>
22 #include <net/9p/client.h>
32 v9fs_vfs_mknod_dotl(struct mnt_idmap *idmap, struct inode *dir,
33 struct dentry *dentry, umode_t omode, dev_t rdev);
36 * v9fs_get_fsgid_for_create - Helper function to get the gid for a new object
37 * @dir_inode: The directory inode
39 * Helper function to get the gid for creating a
40 * new file system object. This checks the S_ISGID to determine the owning
41 * group of the new file system object.
44 static kgid_t v9fs_get_fsgid_for_create(struct inode *dir_inode)
46 BUG_ON(dir_inode == NULL);
48 if (dir_inode->i_mode & S_ISGID) {
49 /* set_gid bit is set.*/
50 return dir_inode->i_gid;
52 return current_fsgid();
55 static int v9fs_test_inode_dotl(struct inode *inode, void *data)
57 struct v9fs_inode *v9inode = V9FS_I(inode);
58 struct p9_stat_dotl *st = (struct p9_stat_dotl *)data;
60 /* don't match inode of different type */
61 if (inode_wrong_type(inode, st->st_mode))
64 if (inode->i_generation != st->st_gen)
67 /* compare qid details */
68 if (memcmp(&v9inode->qid.version,
69 &st->qid.version, sizeof(v9inode->qid.version)))
72 if (v9inode->qid.type != st->qid.type)
75 if (v9inode->qid.path != st->qid.path)
80 /* Always get a new inode */
81 static int v9fs_test_new_inode_dotl(struct inode *inode, void *data)
86 static int v9fs_set_inode_dotl(struct inode *inode, void *data)
88 struct v9fs_inode *v9inode = V9FS_I(inode);
89 struct p9_stat_dotl *st = (struct p9_stat_dotl *)data;
91 memcpy(&v9inode->qid, &st->qid, sizeof(st->qid));
92 inode->i_generation = st->st_gen;
96 static struct inode *v9fs_qid_iget_dotl(struct super_block *sb,
99 struct p9_stat_dotl *st,
104 struct v9fs_session_info *v9ses = sb->s_fs_info;
105 int (*test)(struct inode *inode, void *data);
108 test = v9fs_test_new_inode_dotl;
110 test = v9fs_test_inode_dotl;
112 inode = iget5_locked(sb, QID2INO(qid), test, v9fs_set_inode_dotl, st);
114 return ERR_PTR(-ENOMEM);
115 if (!(inode->i_state & I_NEW))
118 * initialize the inode with the stat info
119 * FIXME!! we may need support for stale inodes
122 inode->i_ino = QID2INO(qid);
123 retval = v9fs_init_inode(v9ses, inode,
124 st->st_mode, new_decode_dev(st->st_rdev));
128 v9fs_stat2inode_dotl(st, inode, 0);
129 v9fs_set_netfs_context(inode);
130 v9fs_cache_inode_get_cookie(inode);
131 retval = v9fs_get_acl(inode, fid);
135 unlock_new_inode(inode);
139 return ERR_PTR(retval);
144 v9fs_inode_from_fid_dotl(struct v9fs_session_info *v9ses, struct p9_fid *fid,
145 struct super_block *sb, int new)
147 struct p9_stat_dotl *st;
148 struct inode *inode = NULL;
150 st = p9_client_getattr_dotl(fid, P9_STATS_BASIC | P9_STATS_GEN);
154 inode = v9fs_qid_iget_dotl(sb, &st->qid, fid, st, new);
159 struct dotl_openflag_map {
164 static int v9fs_mapped_dotl_flags(int flags)
168 struct dotl_openflag_map dotl_oflag_map[] = {
169 { O_CREAT, P9_DOTL_CREATE },
170 { O_EXCL, P9_DOTL_EXCL },
171 { O_NOCTTY, P9_DOTL_NOCTTY },
172 { O_APPEND, P9_DOTL_APPEND },
173 { O_NONBLOCK, P9_DOTL_NONBLOCK },
174 { O_DSYNC, P9_DOTL_DSYNC },
175 { FASYNC, P9_DOTL_FASYNC },
176 { O_DIRECT, P9_DOTL_DIRECT },
177 { O_LARGEFILE, P9_DOTL_LARGEFILE },
178 { O_DIRECTORY, P9_DOTL_DIRECTORY },
179 { O_NOFOLLOW, P9_DOTL_NOFOLLOW },
180 { O_NOATIME, P9_DOTL_NOATIME },
181 { O_CLOEXEC, P9_DOTL_CLOEXEC },
182 { O_SYNC, P9_DOTL_SYNC},
184 for (i = 0; i < ARRAY_SIZE(dotl_oflag_map); i++) {
185 if (flags & dotl_oflag_map[i].open_flag)
186 rflags |= dotl_oflag_map[i].dotl_flag;
192 * v9fs_open_to_dotl_flags- convert Linux specific open flags to
194 * @flags: flags to convert
196 int v9fs_open_to_dotl_flags(int flags)
201 * We have same bits for P9_DOTL_READONLY, P9_DOTL_WRONLY
202 * and P9_DOTL_NOACCESS
204 rflags |= flags & O_ACCMODE;
205 rflags |= v9fs_mapped_dotl_flags(flags);
211 * v9fs_vfs_create_dotl - VFS hook to create files for 9P2000.L protocol.
212 * @idmap: The user namespace of the mount
213 * @dir: directory inode that is being created
214 * @dentry: dentry that is being deleted
215 * @omode: create permissions
216 * @excl: True if the file must not yet exist
220 v9fs_vfs_create_dotl(struct mnt_idmap *idmap, struct inode *dir,
221 struct dentry *dentry, umode_t omode, bool excl)
223 return v9fs_vfs_mknod_dotl(idmap, dir, dentry, omode, 0);
227 v9fs_vfs_atomic_open_dotl(struct inode *dir, struct dentry *dentry,
228 struct file *file, unsigned int flags, umode_t omode)
233 int p9_omode = v9fs_open_to_dotl_flags(flags);
234 const unsigned char *name = NULL;
237 struct p9_fid *fid = NULL;
238 struct p9_fid *dfid = NULL, *ofid = NULL;
239 struct v9fs_session_info *v9ses;
240 struct posix_acl *pacl = NULL, *dacl = NULL;
241 struct dentry *res = NULL;
243 if (d_in_lookup(dentry)) {
244 res = v9fs_vfs_lookup(dir, dentry, 0);
253 if (!(flags & O_CREAT) || d_really_is_positive(dentry))
254 return finish_no_open(file, res);
256 v9ses = v9fs_inode2v9ses(dir);
258 name = dentry->d_name.name;
259 p9_debug(P9_DEBUG_VFS, "name:%s flags:0x%x mode:0x%x\n",
262 dfid = v9fs_parent_fid(dentry);
265 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
269 /* clone a fid to use for creation */
270 ofid = clone_fid(dfid);
273 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
277 gid = v9fs_get_fsgid_for_create(dir);
280 /* Update mode based on ACL value */
281 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
283 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in create %d\n",
288 if ((v9ses->cache & CACHE_WRITEBACK) && (p9_omode & P9_OWRITE)) {
289 p9_omode = (p9_omode & ~P9_OWRITE) | P9_ORDWR;
290 p9_debug(P9_DEBUG_CACHE,
291 "write-only file with writeback enabled, creating w/ O_RDWR\n");
293 err = p9_client_create_dotl(ofid, name, p9_omode, mode, gid, &qid);
295 p9_debug(P9_DEBUG_VFS, "p9_client_open_dotl failed in create %d\n",
299 v9fs_invalidate_inode_attr(dir);
301 /* instantiate inode and assign the unopened fid to the dentry */
302 fid = p9_client_walk(dfid, 1, &name, 1);
305 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
308 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
310 err = PTR_ERR(inode);
311 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n", err);
314 /* Now set the ACL based on the default value */
315 v9fs_set_create_acl(inode, fid, dacl, pacl);
317 v9fs_fid_add(dentry, &fid);
318 d_instantiate(dentry, inode);
320 /* Since we are opening a file, assign the open fid to the file */
321 err = finish_open(file, dentry, generic_file_open);
324 file->private_data = ofid;
325 #ifdef CONFIG_9P_FSCACHE
326 if (v9ses->cache & CACHE_FSCACHE) {
327 struct v9fs_inode *v9inode = V9FS_I(inode);
328 fscache_use_cookie(v9fs_inode_cookie(v9inode),
329 file->f_mode & FMODE_WRITE);
332 v9fs_fid_add_modes(ofid, v9ses->flags, v9ses->cache, flags);
333 v9fs_open_fid_add(inode, &ofid);
334 file->f_mode |= FMODE_CREATED;
339 v9fs_put_acl(dacl, pacl);
345 * v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory
346 * @idmap: The idmap of the mount
347 * @dir: inode that is being unlinked
348 * @dentry: dentry that is being unlinked
349 * @omode: mode for new directory
353 static struct dentry *v9fs_vfs_mkdir_dotl(struct mnt_idmap *idmap,
354 struct inode *dir, struct dentry *dentry,
358 struct v9fs_session_info *v9ses;
359 struct p9_fid *fid = NULL, *dfid = NULL;
361 const unsigned char *name;
365 struct posix_acl *dacl = NULL, *pacl = NULL;
367 p9_debug(P9_DEBUG_VFS, "name %pd\n", dentry);
368 v9ses = v9fs_inode2v9ses(dir);
371 if (dir->i_mode & S_ISGID)
374 dfid = v9fs_parent_fid(dentry);
377 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
381 gid = v9fs_get_fsgid_for_create(dir);
383 /* Update mode based on ACL value */
384 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
386 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mkdir %d\n",
390 name = dentry->d_name.name;
391 err = p9_client_mkdir_dotl(dfid, name, mode, gid, &qid);
394 fid = p9_client_walk(dfid, 1, &name, 1);
397 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
402 /* instantiate inode and assign the unopened fid to the dentry */
403 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
405 err = PTR_ERR(inode);
406 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
410 v9fs_set_create_acl(inode, fid, dacl, pacl);
411 v9fs_fid_add(dentry, &fid);
412 d_instantiate(dentry, inode);
415 v9fs_invalidate_inode_attr(dir);
418 v9fs_put_acl(dacl, pacl);
424 v9fs_vfs_getattr_dotl(struct mnt_idmap *idmap,
425 const struct path *path, struct kstat *stat,
426 u32 request_mask, unsigned int flags)
428 struct dentry *dentry = path->dentry;
429 struct v9fs_session_info *v9ses;
431 struct inode *inode = d_inode(dentry);
432 struct p9_stat_dotl *st;
434 p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry);
435 v9ses = v9fs_dentry2v9ses(dentry);
436 if (v9ses->cache & (CACHE_META|CACHE_LOOSE)) {
437 generic_fillattr(&nop_mnt_idmap, request_mask, inode, stat);
439 } else if (v9ses->cache) {
440 if (S_ISREG(inode->i_mode)) {
441 int retval = filemap_fdatawrite(inode->i_mapping);
444 p9_debug(P9_DEBUG_ERROR,
445 "flushing writeback during getattr returned %d\n", retval);
448 fid = v9fs_fid_lookup(dentry);
452 /* Ask for all the fields in stat structure. Server will return
453 * whatever it supports
456 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
461 v9fs_stat2inode_dotl(st, d_inode(dentry), 0);
462 generic_fillattr(&nop_mnt_idmap, request_mask, d_inode(dentry), stat);
463 /* Change block size to what the server returned */
464 stat->blksize = st->st_blksize;
473 #define P9_ATTR_MODE (1 << 0)
474 #define P9_ATTR_UID (1 << 1)
475 #define P9_ATTR_GID (1 << 2)
476 #define P9_ATTR_SIZE (1 << 3)
477 #define P9_ATTR_ATIME (1 << 4)
478 #define P9_ATTR_MTIME (1 << 5)
479 #define P9_ATTR_CTIME (1 << 6)
480 #define P9_ATTR_ATIME_SET (1 << 7)
481 #define P9_ATTR_MTIME_SET (1 << 8)
483 struct dotl_iattr_map {
488 static int v9fs_mapped_iattr_valid(int iattr_valid)
491 int p9_iattr_valid = 0;
492 struct dotl_iattr_map dotl_iattr_map[] = {
493 { ATTR_MODE, P9_ATTR_MODE },
494 { ATTR_UID, P9_ATTR_UID },
495 { ATTR_GID, P9_ATTR_GID },
496 { ATTR_SIZE, P9_ATTR_SIZE },
497 { ATTR_ATIME, P9_ATTR_ATIME },
498 { ATTR_MTIME, P9_ATTR_MTIME },
499 { ATTR_CTIME, P9_ATTR_CTIME },
500 { ATTR_ATIME_SET, P9_ATTR_ATIME_SET },
501 { ATTR_MTIME_SET, P9_ATTR_MTIME_SET },
503 for (i = 0; i < ARRAY_SIZE(dotl_iattr_map); i++) {
504 if (iattr_valid & dotl_iattr_map[i].iattr_valid)
505 p9_iattr_valid |= dotl_iattr_map[i].p9_iattr_valid;
507 return p9_iattr_valid;
511 * v9fs_vfs_setattr_dotl - set file metadata
512 * @idmap: idmap of the mount
513 * @dentry: file whose metadata to set
514 * @iattr: metadata assignment structure
518 int v9fs_vfs_setattr_dotl(struct mnt_idmap *idmap,
519 struct dentry *dentry, struct iattr *iattr)
521 int retval, use_dentry = 0;
522 struct inode *inode = d_inode(dentry);
523 struct v9fs_session_info __maybe_unused *v9ses;
524 struct p9_fid *fid = NULL;
525 struct p9_iattr_dotl p9attr = {
530 p9_debug(P9_DEBUG_VFS, "\n");
532 retval = setattr_prepare(&nop_mnt_idmap, dentry, iattr);
536 v9ses = v9fs_dentry2v9ses(dentry);
538 p9attr.valid = v9fs_mapped_iattr_valid(iattr->ia_valid);
539 if (iattr->ia_valid & ATTR_MODE)
540 p9attr.mode = iattr->ia_mode;
541 if (iattr->ia_valid & ATTR_UID)
542 p9attr.uid = iattr->ia_uid;
543 if (iattr->ia_valid & ATTR_GID)
544 p9attr.gid = iattr->ia_gid;
545 if (iattr->ia_valid & ATTR_SIZE)
546 p9attr.size = iattr->ia_size;
547 if (iattr->ia_valid & ATTR_ATIME_SET) {
548 p9attr.atime_sec = iattr->ia_atime.tv_sec;
549 p9attr.atime_nsec = iattr->ia_atime.tv_nsec;
551 if (iattr->ia_valid & ATTR_MTIME_SET) {
552 p9attr.mtime_sec = iattr->ia_mtime.tv_sec;
553 p9attr.mtime_nsec = iattr->ia_mtime.tv_nsec;
556 if (iattr->ia_valid & ATTR_FILE) {
557 fid = iattr->ia_file->private_data;
561 fid = v9fs_fid_lookup(dentry);
567 /* Write all dirty data */
568 if (S_ISREG(inode->i_mode)) {
569 retval = filemap_fdatawrite(inode->i_mapping);
571 p9_debug(P9_DEBUG_ERROR,
572 "Flushing file prior to setattr failed: %d\n", retval);
575 retval = p9_client_setattr(fid, &p9attr);
582 if ((iattr->ia_valid & ATTR_SIZE) && iattr->ia_size !=
583 i_size_read(inode)) {
584 truncate_setsize(inode, iattr->ia_size);
585 netfs_resize_file(netfs_inode(inode), iattr->ia_size, true);
587 #ifdef CONFIG_9P_FSCACHE
588 if (v9ses->cache & CACHE_FSCACHE)
589 fscache_resize_cookie(v9fs_inode_cookie(V9FS_I(inode)),
594 v9fs_invalidate_inode_attr(inode);
595 setattr_copy(&nop_mnt_idmap, inode, iattr);
596 mark_inode_dirty(inode);
597 if (iattr->ia_valid & ATTR_MODE) {
598 /* We also want to update ACL when we update mode bits */
599 retval = v9fs_acl_chmod(inode, fid);
613 * v9fs_stat2inode_dotl - populate an inode structure with stat info
614 * @stat: stat structure
615 * @inode: inode to populate
616 * @flags: ctrl flags (e.g. V9FS_STAT2INODE_KEEP_ISIZE)
621 v9fs_stat2inode_dotl(struct p9_stat_dotl *stat, struct inode *inode,
625 struct v9fs_inode *v9inode = V9FS_I(inode);
627 if ((stat->st_result_mask & P9_STATS_BASIC) == P9_STATS_BASIC) {
628 inode_set_atime(inode, stat->st_atime_sec,
629 stat->st_atime_nsec);
630 inode_set_mtime(inode, stat->st_mtime_sec,
631 stat->st_mtime_nsec);
632 inode_set_ctime(inode, stat->st_ctime_sec,
633 stat->st_ctime_nsec);
634 inode->i_uid = stat->st_uid;
635 inode->i_gid = stat->st_gid;
636 set_nlink(inode, stat->st_nlink);
638 mode = stat->st_mode & S_IALLUGO;
639 mode |= inode->i_mode & ~S_IALLUGO;
640 inode->i_mode = mode;
642 v9inode->netfs.remote_i_size = stat->st_size;
643 if (!(flags & V9FS_STAT2INODE_KEEP_ISIZE))
644 v9fs_i_size_write(inode, stat->st_size);
645 inode->i_blocks = stat->st_blocks;
647 if (stat->st_result_mask & P9_STATS_ATIME) {
648 inode_set_atime(inode, stat->st_atime_sec,
649 stat->st_atime_nsec);
651 if (stat->st_result_mask & P9_STATS_MTIME) {
652 inode_set_mtime(inode, stat->st_mtime_sec,
653 stat->st_mtime_nsec);
655 if (stat->st_result_mask & P9_STATS_CTIME) {
656 inode_set_ctime(inode, stat->st_ctime_sec,
657 stat->st_ctime_nsec);
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)
664 set_nlink(inode, stat->st_nlink);
665 if (stat->st_result_mask & P9_STATS_MODE) {
666 mode = stat->st_mode & S_IALLUGO;
667 mode |= inode->i_mode & ~S_IALLUGO;
668 inode->i_mode = mode;
670 if (!(flags & V9FS_STAT2INODE_KEEP_ISIZE) &&
671 stat->st_result_mask & P9_STATS_SIZE) {
672 v9inode->netfs.remote_i_size = stat->st_size;
673 v9fs_i_size_write(inode, stat->st_size);
675 if (stat->st_result_mask & P9_STATS_BLOCKS)
676 inode->i_blocks = stat->st_blocks;
678 if (stat->st_result_mask & P9_STATS_GEN)
679 inode->i_generation = stat->st_gen;
681 /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION
682 * because the inode structure does not have fields for them.
684 v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR;
688 v9fs_vfs_symlink_dotl(struct mnt_idmap *idmap, struct inode *dir,
689 struct dentry *dentry, const char *symname)
693 const unsigned char *name;
696 struct p9_fid *fid = NULL;
698 name = dentry->d_name.name;
699 p9_debug(P9_DEBUG_VFS, "%lu,%s,%s\n", dir->i_ino, name, symname);
701 dfid = v9fs_parent_fid(dentry);
704 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
708 gid = v9fs_get_fsgid_for_create(dir);
710 /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */
711 err = p9_client_symlink(dfid, name, symname, gid, &qid);
714 p9_debug(P9_DEBUG_VFS, "p9_client_symlink failed %d\n", err);
718 v9fs_invalidate_inode_attr(dir);
727 * v9fs_vfs_link_dotl - create a hardlink for dotl
728 * @old_dentry: dentry for file to link to
729 * @dir: inode destination for new link
730 * @dentry: dentry for link
735 v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir,
736 struct dentry *dentry)
739 struct p9_fid *dfid, *oldfid;
740 struct v9fs_session_info *v9ses;
742 p9_debug(P9_DEBUG_VFS, "dir ino: %lu, old_name: %pd, new_name: %pd\n",
743 dir->i_ino, old_dentry, dentry);
745 v9ses = v9fs_inode2v9ses(dir);
746 dfid = v9fs_parent_fid(dentry);
748 return PTR_ERR(dfid);
750 oldfid = v9fs_fid_lookup(old_dentry);
751 if (IS_ERR(oldfid)) {
753 return PTR_ERR(oldfid);
756 err = p9_client_link(dfid, oldfid, dentry->d_name.name);
761 p9_debug(P9_DEBUG_VFS, "p9_client_link failed %d\n", err);
765 v9fs_invalidate_inode_attr(dir);
766 if (v9ses->cache & (CACHE_META|CACHE_LOOSE)) {
767 /* Get the latest stat info from server. */
770 fid = v9fs_fid_lookup(old_dentry);
774 v9fs_refresh_inode_dotl(fid, d_inode(old_dentry));
777 ihold(d_inode(old_dentry));
778 d_instantiate(dentry, d_inode(old_dentry));
784 * v9fs_vfs_mknod_dotl - create a special file
785 * @idmap: The idmap of the mount
786 * @dir: inode destination for new link
787 * @dentry: dentry for file
788 * @omode: mode for creation
789 * @rdev: device associated with special file
793 v9fs_vfs_mknod_dotl(struct mnt_idmap *idmap, struct inode *dir,
794 struct dentry *dentry, umode_t omode, dev_t rdev)
798 const unsigned char *name;
800 struct v9fs_session_info *v9ses;
801 struct p9_fid *fid = NULL, *dfid = NULL;
804 struct posix_acl *dacl = NULL, *pacl = NULL;
806 p9_debug(P9_DEBUG_VFS, " %lu,%pd mode: %x MAJOR: %u MINOR: %u\n",
807 dir->i_ino, dentry, omode,
808 MAJOR(rdev), MINOR(rdev));
810 v9ses = v9fs_inode2v9ses(dir);
811 dfid = v9fs_parent_fid(dentry);
814 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
818 gid = v9fs_get_fsgid_for_create(dir);
820 /* Update mode based on ACL value */
821 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
823 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mknod %d\n",
827 name = dentry->d_name.name;
829 err = p9_client_mknod_dotl(dfid, name, mode, rdev, gid, &qid);
833 v9fs_invalidate_inode_attr(dir);
834 fid = p9_client_walk(dfid, 1, &name, 1);
837 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
841 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
843 err = PTR_ERR(inode);
844 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
848 v9fs_set_create_acl(inode, fid, dacl, pacl);
849 v9fs_fid_add(dentry, &fid);
850 d_instantiate(dentry, inode);
854 v9fs_put_acl(dacl, pacl);
861 * v9fs_vfs_get_link_dotl - follow a symlink path
862 * @dentry: dentry for symlink
863 * @inode: inode for symlink
864 * @done: destructor for return value
868 v9fs_vfs_get_link_dotl(struct dentry *dentry,
870 struct delayed_call *done)
877 return ERR_PTR(-ECHILD);
879 p9_debug(P9_DEBUG_VFS, "%pd\n", dentry);
881 fid = v9fs_fid_lookup(dentry);
883 return ERR_CAST(fid);
884 retval = p9_client_readlink(fid, &target);
887 return ERR_PTR(retval);
888 set_delayed_call(done, kfree_link, target);
892 int v9fs_refresh_inode_dotl(struct p9_fid *fid, struct inode *inode)
894 struct p9_stat_dotl *st;
895 struct v9fs_session_info *v9ses;
898 v9ses = v9fs_inode2v9ses(inode);
899 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
903 * Don't update inode if the file type is different
905 if (inode_wrong_type(inode, st->st_mode))
909 * We don't want to refresh inode->i_size,
910 * because we may have cached data
912 flags = (v9ses->cache & CACHE_LOOSE) ?
913 V9FS_STAT2INODE_KEEP_ISIZE : 0;
914 v9fs_stat2inode_dotl(st, inode, flags);
920 const struct inode_operations v9fs_dir_inode_operations_dotl = {
921 .create = v9fs_vfs_create_dotl,
922 .atomic_open = v9fs_vfs_atomic_open_dotl,
923 .lookup = v9fs_vfs_lookup,
924 .link = v9fs_vfs_link_dotl,
925 .symlink = v9fs_vfs_symlink_dotl,
926 .unlink = v9fs_vfs_unlink,
927 .mkdir = v9fs_vfs_mkdir_dotl,
928 .rmdir = v9fs_vfs_rmdir,
929 .mknod = v9fs_vfs_mknod_dotl,
930 .rename = v9fs_vfs_rename,
931 .getattr = v9fs_vfs_getattr_dotl,
932 .setattr = v9fs_vfs_setattr_dotl,
933 .listxattr = v9fs_listxattr,
934 .get_inode_acl = v9fs_iop_get_inode_acl,
935 .get_acl = v9fs_iop_get_acl,
936 .set_acl = v9fs_iop_set_acl,
939 const struct inode_operations v9fs_file_inode_operations_dotl = {
940 .getattr = v9fs_vfs_getattr_dotl,
941 .setattr = v9fs_vfs_setattr_dotl,
942 .listxattr = v9fs_listxattr,
943 .get_inode_acl = v9fs_iop_get_inode_acl,
944 .get_acl = v9fs_iop_get_acl,
945 .set_acl = v9fs_iop_set_acl,
948 const struct inode_operations v9fs_symlink_inode_operations_dotl = {
949 .get_link = v9fs_vfs_get_link_dotl,
950 .getattr = v9fs_vfs_getattr_dotl,
951 .setattr = v9fs_vfs_setattr_dotl,
952 .listxattr = v9fs_listxattr,