1 // SPDX-License-Identifier: GPL-2.0-only
3 * This file contains vfs inode ops for the 9P2000 protocol.
5 * Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
6 * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11 #include <linux/module.h>
12 #include <linux/errno.h>
14 #include <linux/file.h>
15 #include <linux/pagemap.h>
16 #include <linux/stat.h>
17 #include <linux/string.h>
18 #include <linux/namei.h>
19 #include <linux/sched.h>
20 #include <linux/slab.h>
21 #include <linux/xattr.h>
22 #include <linux/posix_acl.h>
23 #include <net/9p/9p.h>
24 #include <net/9p/client.h>
33 static const struct inode_operations v9fs_dir_inode_operations;
34 static const struct inode_operations v9fs_dir_inode_operations_dotu;
35 static const struct inode_operations v9fs_file_inode_operations;
36 static const struct inode_operations v9fs_symlink_inode_operations;
39 * unixmode2p9mode - convert unix mode bits to plan 9
40 * @v9ses: v9fs session information
41 * @mode: mode to convert
45 static u32 unixmode2p9mode(struct v9fs_session_info *v9ses, umode_t mode)
52 if (v9fs_proto_dotu(v9ses)) {
53 if (v9ses->nodev == 0) {
57 res |= P9_DMNAMEDPIPE;
64 if ((mode & S_ISUID) == S_ISUID)
66 if ((mode & S_ISGID) == S_ISGID)
68 if ((mode & S_ISVTX) == S_ISVTX)
75 * p9mode2perm- convert plan9 mode bits to unix permission bits
76 * @v9ses: v9fs session information
77 * @stat: p9_wstat from which mode need to be derived
80 static int p9mode2perm(struct v9fs_session_info *v9ses,
81 struct p9_wstat *stat)
84 int mode = stat->mode;
86 res = mode & 0777; /* S_IRWXUGO */
87 if (v9fs_proto_dotu(v9ses)) {
88 if ((mode & P9_DMSETUID) == P9_DMSETUID)
91 if ((mode & P9_DMSETGID) == P9_DMSETGID)
94 if ((mode & P9_DMSETVTX) == P9_DMSETVTX)
101 * p9mode2unixmode- convert plan9 mode bits to unix mode bits
102 * @v9ses: v9fs session information
103 * @stat: p9_wstat from which mode need to be derived
104 * @rdev: major number, minor number in case of device files.
107 static umode_t p9mode2unixmode(struct v9fs_session_info *v9ses,
108 struct p9_wstat *stat, dev_t *rdev)
111 u32 mode = stat->mode;
114 res = p9mode2perm(v9ses, stat);
116 if ((mode & P9_DMDIR) == P9_DMDIR)
118 else if ((mode & P9_DMSYMLINK) && (v9fs_proto_dotu(v9ses)))
120 else if ((mode & P9_DMSOCKET) && (v9fs_proto_dotu(v9ses))
121 && (v9ses->nodev == 0))
123 else if ((mode & P9_DMNAMEDPIPE) && (v9fs_proto_dotu(v9ses))
124 && (v9ses->nodev == 0))
126 else if ((mode & P9_DMDEVICE) && (v9fs_proto_dotu(v9ses))
127 && (v9ses->nodev == 0)) {
129 int major = -1, minor = -1;
131 r = sscanf(stat->extension, "%c %i %i", &type, &major, &minor);
133 p9_debug(P9_DEBUG_ERROR,
134 "invalid device string, umode will be bogus: %s\n",
146 p9_debug(P9_DEBUG_ERROR, "Unknown special type %c %s\n",
147 type, stat->extension);
149 *rdev = MKDEV(major, minor);
157 * v9fs_uflags2omode- convert posix open flags to plan 9 mode bits
158 * @uflags: flags to convert
159 * @extended: if .u extensions are active
162 int v9fs_uflags2omode(int uflags, int extended)
181 if (uflags & O_TRUNC)
188 if (uflags & O_APPEND)
196 * v9fs_blank_wstat - helper function to setup a 9P stat structure
197 * @wstat: structure to initialize
202 v9fs_blank_wstat(struct p9_wstat *wstat)
206 wstat->qid.type = ~0;
207 wstat->qid.version = ~0;
208 *((long long *)&wstat->qid.path) = ~0;
217 wstat->n_uid = INVALID_UID;
218 wstat->n_gid = INVALID_GID;
219 wstat->n_muid = INVALID_UID;
220 wstat->extension = NULL;
224 * v9fs_alloc_inode - helper function to allocate an inode
225 * @sb: The superblock to allocate the inode from
227 struct inode *v9fs_alloc_inode(struct super_block *sb)
229 struct v9fs_inode *v9inode;
231 v9inode = alloc_inode_sb(sb, v9fs_inode_cache, GFP_KERNEL);
234 v9inode->cache_validity = 0;
235 mutex_init(&v9inode->v_mutex);
236 return &v9inode->netfs.inode;
240 * v9fs_free_inode - destroy an inode
241 * @inode: The inode to be freed
244 void v9fs_free_inode(struct inode *inode)
246 kmem_cache_free(v9fs_inode_cache, V9FS_I(inode));
250 * Set parameters for the netfs library
252 void v9fs_set_netfs_context(struct inode *inode)
254 struct v9fs_inode *v9inode = V9FS_I(inode);
255 netfs_inode_init(&v9inode->netfs, &v9fs_req_ops, true);
258 int v9fs_init_inode(struct v9fs_session_info *v9ses,
259 struct inode *inode, struct p9_qid *qid, umode_t mode, dev_t rdev)
262 struct v9fs_inode *v9inode = V9FS_I(inode);
264 memcpy(&v9inode->qid, qid, sizeof(struct p9_qid));
266 inode_init_owner(&nop_mnt_idmap, inode, NULL, mode);
268 inode->i_rdev = rdev;
269 simple_inode_init_ts(inode);
270 inode->i_mapping->a_ops = &v9fs_addr_operations;
271 inode->i_private = NULL;
273 switch (mode & S_IFMT) {
278 if (v9fs_proto_dotl(v9ses)) {
279 inode->i_op = &v9fs_file_inode_operations_dotl;
280 } else if (v9fs_proto_dotu(v9ses)) {
281 inode->i_op = &v9fs_file_inode_operations;
283 p9_debug(P9_DEBUG_ERROR,
284 "special files without extended mode\n");
288 init_special_inode(inode, inode->i_mode, inode->i_rdev);
291 if (v9fs_proto_dotl(v9ses)) {
292 inode->i_op = &v9fs_file_inode_operations_dotl;
293 inode->i_fop = &v9fs_file_operations_dotl;
295 inode->i_op = &v9fs_file_inode_operations;
296 inode->i_fop = &v9fs_file_operations;
301 if (!v9fs_proto_dotu(v9ses) && !v9fs_proto_dotl(v9ses)) {
302 p9_debug(P9_DEBUG_ERROR,
303 "extended modes used with legacy protocol\n");
308 if (v9fs_proto_dotl(v9ses))
309 inode->i_op = &v9fs_symlink_inode_operations_dotl;
311 inode->i_op = &v9fs_symlink_inode_operations;
316 if (v9fs_proto_dotl(v9ses))
317 inode->i_op = &v9fs_dir_inode_operations_dotl;
318 else if (v9fs_proto_dotu(v9ses))
319 inode->i_op = &v9fs_dir_inode_operations_dotu;
321 inode->i_op = &v9fs_dir_inode_operations;
323 if (v9fs_proto_dotl(v9ses))
324 inode->i_fop = &v9fs_dir_operations_dotl;
326 inode->i_fop = &v9fs_dir_operations;
330 p9_debug(P9_DEBUG_ERROR, "BAD mode 0x%hx S_IFMT 0x%x\n",
331 mode, mode & S_IFMT);
341 * v9fs_evict_inode - Remove an inode from the inode cache
342 * @inode: inode to release
345 void v9fs_evict_inode(struct inode *inode)
347 struct v9fs_inode __maybe_unused *v9inode = V9FS_I(inode);
348 __le32 __maybe_unused version;
350 if (!is_bad_inode(inode)) {
351 truncate_inode_pages_final(&inode->i_data);
353 version = cpu_to_le32(v9inode->qid.version);
354 netfs_clear_inode_writeback(inode, &version);
357 filemap_fdatawrite(&inode->i_data);
359 #ifdef CONFIG_9P_FSCACHE
360 if (v9fs_inode_cookie(v9inode))
361 fscache_relinquish_cookie(v9fs_inode_cookie(v9inode), false);
368 v9fs_fid_iget(struct super_block *sb, struct p9_fid *fid, bool new)
375 struct v9fs_session_info *v9ses = sb->s_fs_info;
377 inode = iget_locked(sb, QID2INO(&fid->qid));
378 if (unlikely(!inode))
379 return ERR_PTR(-ENOMEM);
380 if (!(inode->i_state & I_NEW)) {
384 p9_debug(P9_DEBUG_VFS, "WARNING: Inode collision %ld\n",
387 remove_inode_hash(inode);
388 inode = iget_locked(sb, QID2INO(&fid->qid));
389 WARN_ON(!(inode->i_state & I_NEW));
394 * initialize the inode with the stat info
395 * FIXME!! we may need support for stale inodes
398 st = p9_client_stat(fid);
400 retval = PTR_ERR(st);
404 umode = p9mode2unixmode(v9ses, st, &rdev);
405 retval = v9fs_init_inode(v9ses, inode, &fid->qid, umode, rdev);
406 v9fs_stat2inode(st, inode, sb, 0);
412 v9fs_set_netfs_context(inode);
413 v9fs_cache_inode_get_cookie(inode);
414 unlock_new_inode(inode);
419 return ERR_PTR(retval);
423 * v9fs_at_to_dotl_flags- convert Linux specific AT flags to
425 * @flags: flags to convert
427 static int v9fs_at_to_dotl_flags(int flags)
431 if (flags & AT_REMOVEDIR)
432 rflags |= P9_DOTL_AT_REMOVEDIR;
438 * v9fs_dec_count - helper functon to drop i_nlink.
440 * If a directory had nlink <= 2 (including . and ..), then we should not drop
441 * the link count, which indicates the underlying exported fs doesn't maintain
442 * nlink accurately. e.g.
443 * - overlayfs sets nlink to 1 for merged dir
444 * - ext4 (with dir_nlink feature enabled) sets nlink to 1 if a dir has more
445 * than EXT4_LINK_MAX (65000) links.
447 * @inode: inode whose nlink is being dropped
449 static void v9fs_dec_count(struct inode *inode)
451 if (!S_ISDIR(inode->i_mode) || inode->i_nlink > 2) {
452 if (inode->i_nlink) {
455 p9_debug(P9_DEBUG_VFS,
456 "WARNING: unexpected i_nlink zero %d inode %ld\n",
457 inode->i_nlink, inode->i_ino);
463 * v9fs_remove - helper function to remove files and directories
464 * @dir: directory inode that is being deleted
465 * @dentry: dentry that is being deleted
466 * @flags: removing a directory
470 static int v9fs_remove(struct inode *dir, struct dentry *dentry, int flags)
473 int retval = -EOPNOTSUPP;
474 struct p9_fid *v9fid, *dfid;
475 struct v9fs_session_info *v9ses;
477 p9_debug(P9_DEBUG_VFS, "inode: %p dentry: %p rmdir: %x\n",
480 v9ses = v9fs_inode2v9ses(dir);
481 inode = d_inode(dentry);
482 dfid = v9fs_parent_fid(dentry);
484 retval = PTR_ERR(dfid);
485 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", retval);
488 if (v9fs_proto_dotl(v9ses))
489 retval = p9_client_unlinkat(dfid, dentry->d_name.name,
490 v9fs_at_to_dotl_flags(flags));
492 if (retval == -EOPNOTSUPP) {
493 /* Try the one based on path */
494 v9fid = v9fs_fid_clone(dentry);
496 return PTR_ERR(v9fid);
497 retval = p9_client_remove(v9fid);
501 * directories on unlink should have zero
504 if (flags & AT_REMOVEDIR) {
508 v9fs_dec_count(inode);
510 if (inode->i_nlink <= 0) /* no more refs unhash it */
511 remove_inode_hash(inode);
513 v9fs_invalidate_inode_attr(inode);
514 v9fs_invalidate_inode_attr(dir);
516 /* invalidate all fids associated with dentry */
517 /* NOTE: This will not include open fids */
518 dentry->d_op->d_release(dentry);
524 * v9fs_create - Create a file
525 * @v9ses: session information
526 * @dir: directory that dentry is being created in
527 * @dentry: dentry that is being created
528 * @extension: 9p2000.u extension string to support devices, etc.
529 * @perm: create permissions
533 static struct p9_fid *
534 v9fs_create(struct v9fs_session_info *v9ses, struct inode *dir,
535 struct dentry *dentry, char *extension, u32 perm, u8 mode)
538 const unsigned char *name;
539 struct p9_fid *dfid, *ofid = NULL, *fid = NULL;
542 p9_debug(P9_DEBUG_VFS, "name %pd\n", dentry);
544 name = dentry->d_name.name;
545 dfid = v9fs_parent_fid(dentry);
548 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
552 /* clone a fid to use for creation */
553 ofid = clone_fid(dfid);
556 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
560 err = p9_client_fcreate(ofid, name, perm, mode, extension);
562 p9_debug(P9_DEBUG_VFS, "p9_client_fcreate failed %d\n", err);
566 if (!(perm & P9_DMLINK)) {
567 /* now walk from the parent so we can get unopened fid */
568 fid = p9_client_walk(dfid, 1, &name, 1);
571 p9_debug(P9_DEBUG_VFS,
572 "p9_client_walk failed %d\n", err);
576 * instantiate inode and assign the unopened fid to the dentry
578 inode = v9fs_get_inode_from_fid(v9ses, fid, dir->i_sb, true);
580 err = PTR_ERR(inode);
581 p9_debug(P9_DEBUG_VFS,
582 "inode creation failed %d\n", err);
585 v9fs_fid_add(dentry, &fid);
586 d_instantiate(dentry, inode);
598 * v9fs_vfs_create - VFS hook to create a regular file
599 * @idmap: idmap of the mount
600 * @dir: The parent directory
601 * @dentry: The name of file to be created
602 * @mode: The UNIX file mode to set
603 * @excl: True if the file must not yet exist
605 * open(.., O_CREAT) is handled in v9fs_vfs_atomic_open(). This is only called
611 v9fs_vfs_create(struct mnt_idmap *idmap, struct inode *dir,
612 struct dentry *dentry, umode_t mode, bool excl)
614 struct v9fs_session_info *v9ses = v9fs_inode2v9ses(dir);
615 u32 perm = unixmode2p9mode(v9ses, mode);
619 fid = v9fs_create(v9ses, dir, dentry, NULL, perm, P9_ORDWR);
623 v9fs_invalidate_inode_attr(dir);
630 * v9fs_vfs_mkdir - VFS mkdir hook to create a directory
631 * @idmap: idmap of the mount
632 * @dir: inode that is being unlinked
633 * @dentry: dentry that is being unlinked
634 * @mode: mode for new directory
638 static int v9fs_vfs_mkdir(struct mnt_idmap *idmap, struct inode *dir,
639 struct dentry *dentry, umode_t mode)
644 struct v9fs_session_info *v9ses;
646 p9_debug(P9_DEBUG_VFS, "name %pd\n", dentry);
648 v9ses = v9fs_inode2v9ses(dir);
649 perm = unixmode2p9mode(v9ses, mode | S_IFDIR);
650 fid = v9fs_create(v9ses, dir, dentry, NULL, perm, P9_OREAD);
656 v9fs_invalidate_inode_attr(dir);
666 * v9fs_vfs_lookup - VFS lookup hook to "walk" to a new inode
667 * @dir: inode that is being walked from
668 * @dentry: dentry that is being walked to?
669 * @flags: lookup flags (unused)
673 struct dentry *v9fs_vfs_lookup(struct inode *dir, struct dentry *dentry,
677 struct v9fs_session_info *v9ses;
678 struct p9_fid *dfid, *fid;
680 const unsigned char *name;
682 p9_debug(P9_DEBUG_VFS, "dir: %p dentry: (%pd) %p flags: %x\n",
683 dir, dentry, dentry, flags);
685 if (dentry->d_name.len > NAME_MAX)
686 return ERR_PTR(-ENAMETOOLONG);
688 v9ses = v9fs_inode2v9ses(dir);
689 /* We can walk d_parent because we hold the dir->i_mutex */
690 dfid = v9fs_parent_fid(dentry);
692 return ERR_CAST(dfid);
695 * Make sure we don't use a wrong inode due to parallel
696 * unlink. For cached mode create calls request for new
697 * inode. But with cache disabled, lookup should do this.
699 name = dentry->d_name.name;
700 fid = p9_client_walk(dfid, 1, &name, 1);
702 if (fid == ERR_PTR(-ENOENT))
704 else if (IS_ERR(fid))
705 inode = ERR_CAST(fid);
707 inode = v9fs_get_inode_from_fid(v9ses, fid, dir->i_sb, false);
709 * If we had a rename on the server and a parallel lookup
710 * for the new name, then make sure we instantiate with
711 * the new name. ie look up for a/b, while on server somebody
712 * moved b under k and client parallely did a lookup for
715 res = d_splice_alias(inode, dentry);
718 v9fs_fid_add(dentry, &fid);
719 else if (!IS_ERR(res))
720 v9fs_fid_add(res, &fid);
728 v9fs_vfs_atomic_open(struct inode *dir, struct dentry *dentry,
729 struct file *file, unsigned int flags, umode_t mode)
733 struct v9fs_inode __maybe_unused *v9inode;
734 struct v9fs_session_info *v9ses;
736 struct dentry *res = NULL;
740 if (d_in_lookup(dentry)) {
741 res = v9fs_vfs_lookup(dir, dentry, 0);
750 if (!(flags & O_CREAT) || d_really_is_positive(dentry))
751 return finish_no_open(file, res);
753 v9ses = v9fs_inode2v9ses(dir);
754 perm = unixmode2p9mode(v9ses, mode);
755 p9_omode = v9fs_uflags2omode(flags, v9fs_proto_dotu(v9ses));
757 if ((v9ses->cache & CACHE_WRITEBACK) && (p9_omode & P9_OWRITE)) {
758 p9_omode = (p9_omode & ~P9_OWRITE) | P9_ORDWR;
759 p9_debug(P9_DEBUG_CACHE,
760 "write-only file with writeback enabled, creating w/ O_RDWR\n");
762 fid = v9fs_create(v9ses, dir, dentry, NULL, perm, p9_omode);
768 v9fs_invalidate_inode_attr(dir);
769 inode = d_inode(dentry);
770 v9inode = V9FS_I(inode);
771 err = finish_open(file, dentry, generic_file_open);
775 file->private_data = fid;
776 #ifdef CONFIG_9P_FSCACHE
777 if (v9ses->cache & CACHE_FSCACHE)
778 fscache_use_cookie(v9fs_inode_cookie(v9inode),
779 file->f_mode & FMODE_WRITE);
782 v9fs_fid_add_modes(fid, v9ses->flags, v9ses->cache, file->f_flags);
783 v9fs_open_fid_add(inode, &fid);
785 file->f_mode |= FMODE_CREATED;
796 * v9fs_vfs_unlink - VFS unlink hook to delete an inode
797 * @i: inode that is being unlinked
798 * @d: dentry that is being unlinked
802 int v9fs_vfs_unlink(struct inode *i, struct dentry *d)
804 return v9fs_remove(i, d, 0);
808 * v9fs_vfs_rmdir - VFS unlink hook to delete a directory
809 * @i: inode that is being unlinked
810 * @d: dentry that is being unlinked
814 int v9fs_vfs_rmdir(struct inode *i, struct dentry *d)
816 return v9fs_remove(i, d, AT_REMOVEDIR);
820 * v9fs_vfs_rename - VFS hook to rename an inode
821 * @idmap: The idmap of the mount
822 * @old_dir: old dir inode
823 * @old_dentry: old dentry
824 * @new_dir: new dir inode
825 * @new_dentry: new dentry
826 * @flags: RENAME_* flags
831 v9fs_vfs_rename(struct mnt_idmap *idmap, struct inode *old_dir,
832 struct dentry *old_dentry, struct inode *new_dir,
833 struct dentry *new_dentry, unsigned int flags)
836 struct inode *old_inode;
837 struct inode *new_inode;
838 struct v9fs_session_info *v9ses;
839 struct p9_fid *oldfid = NULL, *dfid = NULL;
840 struct p9_fid *olddirfid = NULL;
841 struct p9_fid *newdirfid = NULL;
842 struct p9_wstat wstat;
847 p9_debug(P9_DEBUG_VFS, "\n");
848 old_inode = d_inode(old_dentry);
849 new_inode = d_inode(new_dentry);
850 v9ses = v9fs_inode2v9ses(old_inode);
851 oldfid = v9fs_fid_lookup(old_dentry);
853 return PTR_ERR(oldfid);
855 dfid = v9fs_parent_fid(old_dentry);
856 olddirfid = clone_fid(dfid);
860 if (IS_ERR(olddirfid)) {
861 retval = PTR_ERR(olddirfid);
865 dfid = v9fs_parent_fid(new_dentry);
866 newdirfid = clone_fid(dfid);
870 if (IS_ERR(newdirfid)) {
871 retval = PTR_ERR(newdirfid);
875 down_write(&v9ses->rename_sem);
876 if (v9fs_proto_dotl(v9ses)) {
877 retval = p9_client_renameat(olddirfid, old_dentry->d_name.name,
878 newdirfid, new_dentry->d_name.name);
879 if (retval == -EOPNOTSUPP)
880 retval = p9_client_rename(oldfid, newdirfid,
881 new_dentry->d_name.name);
882 if (retval != -EOPNOTSUPP)
885 if (old_dentry->d_parent != new_dentry->d_parent) {
887 * 9P .u can only handle file rename in the same directory
890 p9_debug(P9_DEBUG_ERROR, "old dir and new dir are different\n");
894 v9fs_blank_wstat(&wstat);
895 wstat.muid = v9ses->uname;
896 wstat.name = new_dentry->d_name.name;
897 retval = p9_client_wstat(oldfid, &wstat);
902 if (S_ISDIR(new_inode->i_mode))
903 clear_nlink(new_inode);
905 v9fs_dec_count(new_inode);
907 if (S_ISDIR(old_inode->i_mode)) {
910 v9fs_dec_count(old_dir);
912 v9fs_invalidate_inode_attr(old_inode);
913 v9fs_invalidate_inode_attr(old_dir);
914 v9fs_invalidate_inode_attr(new_dir);
916 /* successful rename */
917 d_move(old_dentry, new_dentry);
919 up_write(&v9ses->rename_sem);
922 p9_fid_put(newdirfid);
923 p9_fid_put(olddirfid);
929 * v9fs_vfs_getattr - retrieve file metadata
930 * @idmap: idmap of the mount
931 * @path: Object to query
932 * @stat: metadata structure to populate
933 * @request_mask: Mask of STATX_xxx flags indicating the caller's interests
934 * @flags: AT_STATX_xxx setting
939 v9fs_vfs_getattr(struct mnt_idmap *idmap, const struct path *path,
940 struct kstat *stat, u32 request_mask, unsigned int flags)
942 struct dentry *dentry = path->dentry;
943 struct inode *inode = d_inode(dentry);
944 struct v9fs_session_info *v9ses;
948 p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry);
949 v9ses = v9fs_dentry2v9ses(dentry);
950 if (v9ses->cache & (CACHE_META|CACHE_LOOSE)) {
951 generic_fillattr(&nop_mnt_idmap, request_mask, inode, stat);
953 } else if (v9ses->cache & CACHE_WRITEBACK) {
954 if (S_ISREG(inode->i_mode)) {
955 int retval = filemap_fdatawrite(inode->i_mapping);
958 p9_debug(P9_DEBUG_ERROR,
959 "flushing writeback during getattr returned %d\n", retval);
962 fid = v9fs_fid_lookup(dentry);
966 st = p9_client_stat(fid);
971 v9fs_stat2inode(st, d_inode(dentry), dentry->d_sb, 0);
972 generic_fillattr(&nop_mnt_idmap, request_mask, d_inode(dentry), stat);
980 * v9fs_vfs_setattr - set file metadata
981 * @idmap: idmap of the mount
982 * @dentry: file whose metadata to set
983 * @iattr: metadata assignment structure
987 static int v9fs_vfs_setattr(struct mnt_idmap *idmap,
988 struct dentry *dentry, struct iattr *iattr)
990 int retval, use_dentry = 0;
991 struct inode *inode = d_inode(dentry);
992 struct v9fs_session_info *v9ses;
993 struct p9_fid *fid = NULL;
994 struct p9_wstat wstat;
996 p9_debug(P9_DEBUG_VFS, "\n");
997 retval = setattr_prepare(&nop_mnt_idmap, dentry, iattr);
1001 v9ses = v9fs_dentry2v9ses(dentry);
1002 if (iattr->ia_valid & ATTR_FILE) {
1003 fid = iattr->ia_file->private_data;
1007 fid = v9fs_fid_lookup(dentry);
1011 return PTR_ERR(fid);
1013 v9fs_blank_wstat(&wstat);
1014 if (iattr->ia_valid & ATTR_MODE)
1015 wstat.mode = unixmode2p9mode(v9ses, iattr->ia_mode);
1017 if (iattr->ia_valid & ATTR_MTIME)
1018 wstat.mtime = iattr->ia_mtime.tv_sec;
1020 if (iattr->ia_valid & ATTR_ATIME)
1021 wstat.atime = iattr->ia_atime.tv_sec;
1023 if (iattr->ia_valid & ATTR_SIZE)
1024 wstat.length = iattr->ia_size;
1026 if (v9fs_proto_dotu(v9ses)) {
1027 if (iattr->ia_valid & ATTR_UID)
1028 wstat.n_uid = iattr->ia_uid;
1030 if (iattr->ia_valid & ATTR_GID)
1031 wstat.n_gid = iattr->ia_gid;
1034 /* Write all dirty data */
1035 if (d_is_reg(dentry)) {
1036 retval = filemap_fdatawrite(inode->i_mapping);
1038 p9_debug(P9_DEBUG_ERROR,
1039 "flushing writeback during setattr returned %d\n", retval);
1042 retval = p9_client_wstat(fid, &wstat);
1050 if ((iattr->ia_valid & ATTR_SIZE) &&
1051 iattr->ia_size != i_size_read(inode)) {
1052 truncate_setsize(inode, iattr->ia_size);
1053 netfs_resize_file(netfs_inode(inode), iattr->ia_size, true);
1055 #ifdef CONFIG_9P_FSCACHE
1056 if (v9ses->cache & CACHE_FSCACHE) {
1057 struct v9fs_inode *v9inode = V9FS_I(inode);
1059 fscache_resize_cookie(v9fs_inode_cookie(v9inode), iattr->ia_size);
1064 v9fs_invalidate_inode_attr(inode);
1066 setattr_copy(&nop_mnt_idmap, inode, iattr);
1067 mark_inode_dirty(inode);
1072 * v9fs_stat2inode - populate an inode structure with mistat info
1073 * @stat: Plan 9 metadata (mistat) structure
1074 * @inode: inode to populate
1075 * @sb: superblock of filesystem
1076 * @flags: control flags (e.g. V9FS_STAT2INODE_KEEP_ISIZE)
1081 v9fs_stat2inode(struct p9_wstat *stat, struct inode *inode,
1082 struct super_block *sb, unsigned int flags)
1085 struct v9fs_session_info *v9ses = sb->s_fs_info;
1086 struct v9fs_inode *v9inode = V9FS_I(inode);
1088 inode_set_atime(inode, stat->atime, 0);
1089 inode_set_mtime(inode, stat->mtime, 0);
1090 inode_set_ctime(inode, stat->mtime, 0);
1092 inode->i_uid = v9ses->dfltuid;
1093 inode->i_gid = v9ses->dfltgid;
1095 if (v9fs_proto_dotu(v9ses)) {
1096 inode->i_uid = stat->n_uid;
1097 inode->i_gid = stat->n_gid;
1099 if ((S_ISREG(inode->i_mode)) || (S_ISDIR(inode->i_mode))) {
1100 if (v9fs_proto_dotu(v9ses)) {
1101 unsigned int i_nlink;
1103 * Hadlink support got added later to the .u extension.
1104 * So there can be a server out there that doesn't
1105 * support this even with .u extension. That would
1106 * just leave us with stat->extension being an empty
1109 /* HARDLINKCOUNT %u */
1110 if (sscanf(stat->extension,
1111 " HARDLINKCOUNT %u", &i_nlink) == 1)
1112 set_nlink(inode, i_nlink);
1115 mode = p9mode2perm(v9ses, stat);
1116 mode |= inode->i_mode & ~S_IALLUGO;
1117 inode->i_mode = mode;
1119 v9inode->netfs.remote_i_size = stat->length;
1120 if (!(flags & V9FS_STAT2INODE_KEEP_ISIZE))
1121 v9fs_i_size_write(inode, stat->length);
1122 /* not real number of blocks, but 512 byte ones ... */
1123 inode->i_blocks = (stat->length + 512 - 1) >> 9;
1124 v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR;
1128 * v9fs_vfs_get_link - follow a symlink path
1129 * @dentry: dentry for symlink
1130 * @inode: inode for symlink
1131 * @done: delayed call for when we are done with the return value
1134 static const char *v9fs_vfs_get_link(struct dentry *dentry,
1135 struct inode *inode,
1136 struct delayed_call *done)
1138 struct v9fs_session_info *v9ses;
1140 struct p9_wstat *st;
1144 return ERR_PTR(-ECHILD);
1146 v9ses = v9fs_dentry2v9ses(dentry);
1147 if (!v9fs_proto_dotu(v9ses))
1148 return ERR_PTR(-EBADF);
1150 p9_debug(P9_DEBUG_VFS, "%pd\n", dentry);
1151 fid = v9fs_fid_lookup(dentry);
1154 return ERR_CAST(fid);
1156 st = p9_client_stat(fid);
1159 return ERR_CAST(st);
1161 if (!(st->mode & P9_DMSYMLINK)) {
1164 return ERR_PTR(-EINVAL);
1166 res = st->extension;
1167 st->extension = NULL;
1168 if (strlen(res) >= PATH_MAX)
1169 res[PATH_MAX - 1] = '\0';
1173 set_delayed_call(done, kfree_link, res);
1178 * v9fs_vfs_mkspecial - create a special file
1179 * @dir: inode to create special file in
1180 * @dentry: dentry to create
1181 * @perm: mode to create special file
1182 * @extension: 9p2000.u format extension string representing special file
1186 static int v9fs_vfs_mkspecial(struct inode *dir, struct dentry *dentry,
1187 u32 perm, const char *extension)
1190 struct v9fs_session_info *v9ses;
1192 v9ses = v9fs_inode2v9ses(dir);
1193 if (!v9fs_proto_dotu(v9ses)) {
1194 p9_debug(P9_DEBUG_ERROR, "not extended\n");
1198 fid = v9fs_create(v9ses, dir, dentry, (char *) extension, perm,
1201 return PTR_ERR(fid);
1203 v9fs_invalidate_inode_attr(dir);
1209 * v9fs_vfs_symlink - helper function to create symlinks
1210 * @idmap: idmap of the mount
1211 * @dir: directory inode containing symlink
1212 * @dentry: dentry for symlink
1213 * @symname: symlink data
1215 * See Also: 9P2000.u RFC for more information
1220 v9fs_vfs_symlink(struct mnt_idmap *idmap, struct inode *dir,
1221 struct dentry *dentry, const char *symname)
1223 p9_debug(P9_DEBUG_VFS, " %lu,%pd,%s\n",
1224 dir->i_ino, dentry, symname);
1226 return v9fs_vfs_mkspecial(dir, dentry, P9_DMSYMLINK, symname);
1229 #define U32_MAX_DIGITS 10
1232 * v9fs_vfs_link - create a hardlink
1233 * @old_dentry: dentry for file to link to
1234 * @dir: inode destination for new link
1235 * @dentry: dentry for link
1240 v9fs_vfs_link(struct dentry *old_dentry, struct inode *dir,
1241 struct dentry *dentry)
1244 char name[1 + U32_MAX_DIGITS + 2]; /* sign + number + \n + \0 */
1245 struct p9_fid *oldfid;
1247 p9_debug(P9_DEBUG_VFS, " %lu,%pd,%pd\n",
1248 dir->i_ino, dentry, old_dentry);
1250 oldfid = v9fs_fid_clone(old_dentry);
1252 return PTR_ERR(oldfid);
1254 sprintf(name, "%d\n", oldfid->fid);
1255 retval = v9fs_vfs_mkspecial(dir, dentry, P9_DMLINK, name);
1257 v9fs_refresh_inode(oldfid, d_inode(old_dentry));
1258 v9fs_invalidate_inode_attr(dir);
1265 * v9fs_vfs_mknod - create a special file
1266 * @idmap: idmap of the mount
1267 * @dir: inode destination for new link
1268 * @dentry: dentry for file
1269 * @mode: mode for creation
1270 * @rdev: device associated with special file
1275 v9fs_vfs_mknod(struct mnt_idmap *idmap, struct inode *dir,
1276 struct dentry *dentry, umode_t mode, dev_t rdev)
1278 struct v9fs_session_info *v9ses = v9fs_inode2v9ses(dir);
1280 char name[2 + U32_MAX_DIGITS + 1 + U32_MAX_DIGITS + 1];
1283 p9_debug(P9_DEBUG_VFS, " %lu,%pd mode: %x MAJOR: %u MINOR: %u\n",
1284 dir->i_ino, dentry, mode,
1285 MAJOR(rdev), MINOR(rdev));
1287 /* build extension */
1289 sprintf(name, "b %u %u", MAJOR(rdev), MINOR(rdev));
1290 else if (S_ISCHR(mode))
1291 sprintf(name, "c %u %u", MAJOR(rdev), MINOR(rdev));
1295 perm = unixmode2p9mode(v9ses, mode);
1296 retval = v9fs_vfs_mkspecial(dir, dentry, perm, name);
1301 int v9fs_refresh_inode(struct p9_fid *fid, struct inode *inode)
1305 struct p9_wstat *st;
1306 struct v9fs_session_info *v9ses;
1309 v9ses = v9fs_inode2v9ses(inode);
1310 st = p9_client_stat(fid);
1314 * Don't update inode if the file type is different
1316 umode = p9mode2unixmode(v9ses, st, &rdev);
1317 if (inode_wrong_type(inode, umode))
1321 * We don't want to refresh inode->i_size,
1322 * because we may have cached data
1324 flags = (v9ses->cache & CACHE_LOOSE) ?
1325 V9FS_STAT2INODE_KEEP_ISIZE : 0;
1326 v9fs_stat2inode(st, inode, inode->i_sb, flags);
1333 static const struct inode_operations v9fs_dir_inode_operations_dotu = {
1334 .create = v9fs_vfs_create,
1335 .lookup = v9fs_vfs_lookup,
1336 .atomic_open = v9fs_vfs_atomic_open,
1337 .symlink = v9fs_vfs_symlink,
1338 .link = v9fs_vfs_link,
1339 .unlink = v9fs_vfs_unlink,
1340 .mkdir = v9fs_vfs_mkdir,
1341 .rmdir = v9fs_vfs_rmdir,
1342 .mknod = v9fs_vfs_mknod,
1343 .rename = v9fs_vfs_rename,
1344 .getattr = v9fs_vfs_getattr,
1345 .setattr = v9fs_vfs_setattr,
1348 static const struct inode_operations v9fs_dir_inode_operations = {
1349 .create = v9fs_vfs_create,
1350 .lookup = v9fs_vfs_lookup,
1351 .atomic_open = v9fs_vfs_atomic_open,
1352 .unlink = v9fs_vfs_unlink,
1353 .mkdir = v9fs_vfs_mkdir,
1354 .rmdir = v9fs_vfs_rmdir,
1355 .mknod = v9fs_vfs_mknod,
1356 .rename = v9fs_vfs_rename,
1357 .getattr = v9fs_vfs_getattr,
1358 .setattr = v9fs_vfs_setattr,
1361 static const struct inode_operations v9fs_file_inode_operations = {
1362 .getattr = v9fs_vfs_getattr,
1363 .setattr = v9fs_vfs_setattr,
1366 static const struct inode_operations v9fs_symlink_inode_operations = {
1367 .get_link = v9fs_vfs_get_link,
1368 .getattr = v9fs_vfs_getattr,
1369 .setattr = v9fs_vfs_setattr,