2 * linux/fs/9p/vfs_inode.c
4 * This file contains vfs inode ops for the 9P2000 protocol.
6 * Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
7 * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to:
20 * Free Software Foundation
21 * 51 Franklin Street, Fifth Floor
22 * Boston, MA 02111-1301 USA
26 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
28 #include <linux/module.h>
29 #include <linux/errno.h>
31 #include <linux/file.h>
32 #include <linux/pagemap.h>
33 #include <linux/stat.h>
34 #include <linux/string.h>
35 #include <linux/inet.h>
36 #include <linux/namei.h>
37 #include <linux/idr.h>
38 #include <linux/sched.h>
39 #include <linux/slab.h>
40 #include <linux/xattr.h>
41 #include <linux/posix_acl.h>
42 #include <net/9p/9p.h>
43 #include <net/9p/client.h>
52 static const struct inode_operations v9fs_dir_inode_operations;
53 static const struct inode_operations v9fs_dir_inode_operations_dotu;
54 static const struct inode_operations v9fs_file_inode_operations;
55 static const struct inode_operations v9fs_symlink_inode_operations;
58 * unixmode2p9mode - convert unix mode bits to plan 9
59 * @v9ses: v9fs session information
60 * @mode: mode to convert
64 static u32 unixmode2p9mode(struct v9fs_session_info *v9ses, umode_t mode)
70 if (v9fs_proto_dotu(v9ses)) {
71 if (v9ses->nodev == 0) {
75 res |= P9_DMNAMEDPIPE;
82 if ((mode & S_ISUID) == S_ISUID)
84 if ((mode & S_ISGID) == S_ISGID)
86 if ((mode & S_ISVTX) == S_ISVTX)
93 * p9mode2perm- convert plan9 mode bits to unix permission bits
94 * @v9ses: v9fs session information
95 * @stat: p9_wstat from which mode need to be derived
98 static int p9mode2perm(struct v9fs_session_info *v9ses,
99 struct p9_wstat *stat)
102 int mode = stat->mode;
104 res = mode & S_IALLUGO;
105 if (v9fs_proto_dotu(v9ses)) {
106 if ((mode & P9_DMSETUID) == P9_DMSETUID)
109 if ((mode & P9_DMSETGID) == P9_DMSETGID)
112 if ((mode & P9_DMSETVTX) == P9_DMSETVTX)
119 * p9mode2unixmode- convert plan9 mode bits to unix mode bits
120 * @v9ses: v9fs session information
121 * @stat: p9_wstat from which mode need to be derived
122 * @rdev: major number, minor number in case of device files.
125 static umode_t p9mode2unixmode(struct v9fs_session_info *v9ses,
126 struct p9_wstat *stat, dev_t *rdev)
129 u32 mode = stat->mode;
132 res = p9mode2perm(v9ses, stat);
134 if ((mode & P9_DMDIR) == P9_DMDIR)
136 else if ((mode & P9_DMSYMLINK) && (v9fs_proto_dotu(v9ses)))
138 else if ((mode & P9_DMSOCKET) && (v9fs_proto_dotu(v9ses))
139 && (v9ses->nodev == 0))
141 else if ((mode & P9_DMNAMEDPIPE) && (v9fs_proto_dotu(v9ses))
142 && (v9ses->nodev == 0))
144 else if ((mode & P9_DMDEVICE) && (v9fs_proto_dotu(v9ses))
145 && (v9ses->nodev == 0)) {
146 char type = 0, ext[32];
147 int major = -1, minor = -1;
149 strlcpy(ext, stat->extension, sizeof(ext));
150 sscanf(ext, "%c %i %i", &type, &major, &minor);
159 p9_debug(P9_DEBUG_ERROR, "Unknown special type %c %s\n",
160 type, stat->extension);
162 *rdev = MKDEV(major, minor);
170 * v9fs_uflags2omode- convert posix open flags to plan 9 mode bits
171 * @uflags: flags to convert
172 * @extended: if .u extensions are active
175 int v9fs_uflags2omode(int uflags, int extended)
199 if (uflags & O_APPEND)
207 * v9fs_blank_wstat - helper function to setup a 9P stat structure
208 * @wstat: structure to initialize
213 v9fs_blank_wstat(struct p9_wstat *wstat)
217 wstat->qid.type = ~0;
218 wstat->qid.version = ~0;
219 *((long long *)&wstat->qid.path) = ~0;
228 wstat->n_uid = INVALID_UID;
229 wstat->n_gid = INVALID_GID;
230 wstat->n_muid = INVALID_UID;
231 wstat->extension = NULL;
235 * v9fs_alloc_inode - helper function to allocate an inode
238 struct inode *v9fs_alloc_inode(struct super_block *sb)
240 struct v9fs_inode *v9inode;
241 v9inode = (struct v9fs_inode *)kmem_cache_alloc(v9fs_inode_cache,
245 #ifdef CONFIG_9P_FSCACHE
246 v9inode->fscache = NULL;
247 mutex_init(&v9inode->fscache_lock);
249 v9inode->writeback_fid = NULL;
250 v9inode->cache_validity = 0;
251 mutex_init(&v9inode->v_mutex);
252 return &v9inode->vfs_inode;
256 * v9fs_destroy_inode - destroy an inode
260 static void v9fs_i_callback(struct rcu_head *head)
262 struct inode *inode = container_of(head, struct inode, i_rcu);
263 kmem_cache_free(v9fs_inode_cache, V9FS_I(inode));
266 void v9fs_destroy_inode(struct inode *inode)
268 call_rcu(&inode->i_rcu, v9fs_i_callback);
271 int v9fs_init_inode(struct v9fs_session_info *v9ses,
272 struct inode *inode, umode_t mode, dev_t rdev)
276 inode_init_owner(inode, NULL, mode);
278 inode->i_rdev = rdev;
279 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
280 inode->i_mapping->a_ops = &v9fs_addr_operations;
282 switch (mode & S_IFMT) {
287 if (v9fs_proto_dotl(v9ses)) {
288 inode->i_op = &v9fs_file_inode_operations_dotl;
289 } else if (v9fs_proto_dotu(v9ses)) {
290 inode->i_op = &v9fs_file_inode_operations;
292 p9_debug(P9_DEBUG_ERROR,
293 "special files without extended mode\n");
297 init_special_inode(inode, inode->i_mode, inode->i_rdev);
300 if (v9fs_proto_dotl(v9ses)) {
301 inode->i_op = &v9fs_file_inode_operations_dotl;
302 if (v9ses->cache == CACHE_LOOSE ||
303 v9ses->cache == CACHE_FSCACHE)
305 &v9fs_cached_file_operations_dotl;
306 else if (v9ses->cache == CACHE_MMAP)
307 inode->i_fop = &v9fs_mmap_file_operations_dotl;
309 inode->i_fop = &v9fs_file_operations_dotl;
311 inode->i_op = &v9fs_file_inode_operations;
312 if (v9ses->cache == CACHE_LOOSE ||
313 v9ses->cache == CACHE_FSCACHE)
315 &v9fs_cached_file_operations;
316 else if (v9ses->cache == CACHE_MMAP)
317 inode->i_fop = &v9fs_mmap_file_operations;
319 inode->i_fop = &v9fs_file_operations;
324 if (!v9fs_proto_dotu(v9ses) && !v9fs_proto_dotl(v9ses)) {
325 p9_debug(P9_DEBUG_ERROR,
326 "extended modes used with legacy protocol\n");
331 if (v9fs_proto_dotl(v9ses))
332 inode->i_op = &v9fs_symlink_inode_operations_dotl;
334 inode->i_op = &v9fs_symlink_inode_operations;
339 if (v9fs_proto_dotl(v9ses))
340 inode->i_op = &v9fs_dir_inode_operations_dotl;
341 else if (v9fs_proto_dotu(v9ses))
342 inode->i_op = &v9fs_dir_inode_operations_dotu;
344 inode->i_op = &v9fs_dir_inode_operations;
346 if (v9fs_proto_dotl(v9ses))
347 inode->i_fop = &v9fs_dir_operations_dotl;
349 inode->i_fop = &v9fs_dir_operations;
353 p9_debug(P9_DEBUG_ERROR, "BAD mode 0x%hx S_IFMT 0x%x\n",
354 mode, mode & S_IFMT);
364 * v9fs_get_inode - helper function to setup an inode
366 * @mode: mode to setup inode with
370 struct inode *v9fs_get_inode(struct super_block *sb, umode_t mode, dev_t rdev)
374 struct v9fs_session_info *v9ses = sb->s_fs_info;
376 p9_debug(P9_DEBUG_VFS, "super block: %p mode: %ho\n", sb, mode);
378 inode = new_inode(sb);
380 pr_warn("%s (%d): Problem allocating inode\n",
381 __func__, task_pid_nr(current));
382 return ERR_PTR(-ENOMEM);
384 err = v9fs_init_inode(v9ses, inode, mode, rdev);
393 static struct v9fs_fid*
394 v9fs_clone_walk(struct v9fs_session_info *v9ses, u32 fid, struct dentry *dentry)
398 struct v9fs_fid *ret;
399 struct v9fs_fcall *fcall;
401 nfid = v9fs_get_idpool(&v9ses->fidpool);
403 eprintk(KERN_WARNING, "no free fids available\n");
404 return ERR_PTR(-ENOSPC);
407 err = v9fs_t_walk(v9ses, fid, nfid, (char *) dentry->d_name.name,
411 if (fcall && fcall->id == RWALK)
414 PRINT_FCALL_ERROR("walk error", fcall);
415 v9fs_put_idpool(nfid, &v9ses->fidpool);
421 ret = v9fs_fid_create(v9ses, nfid);
427 err = v9fs_fid_insert(ret, dentry);
429 v9fs_fid_destroy(ret);
436 v9fs_t_clunk(v9ses, nfid);
446 * v9fs_clear_inode - release an inode
447 * @inode: inode to release
450 void v9fs_evict_inode(struct inode *inode)
452 struct v9fs_inode *v9inode = V9FS_I(inode);
454 truncate_inode_pages_final(&inode->i_data);
456 filemap_fdatawrite(&inode->i_data);
458 v9fs_cache_inode_put_cookie(inode);
459 /* clunk the fid stashed in writeback_fid */
460 if (v9inode->writeback_fid) {
461 p9_client_clunk(v9inode->writeback_fid);
462 v9inode->writeback_fid = NULL;
466 static int v9fs_test_inode(struct inode *inode, void *data)
470 struct v9fs_inode *v9inode = V9FS_I(inode);
471 struct p9_wstat *st = (struct p9_wstat *)data;
472 struct v9fs_session_info *v9ses = v9fs_inode2v9ses(inode);
474 umode = p9mode2unixmode(v9ses, st, &rdev);
475 /* don't match inode of different type */
476 if ((inode->i_mode & S_IFMT) != (umode & S_IFMT))
479 /* compare qid details */
480 if (memcmp(&v9inode->qid.version,
481 &st->qid.version, sizeof(v9inode->qid.version)))
484 if (v9inode->qid.type != st->qid.type)
487 if (v9inode->qid.path != st->qid.path)
492 static int v9fs_test_new_inode(struct inode *inode, void *data)
497 static int v9fs_set_inode(struct inode *inode, void *data)
499 struct v9fs_inode *v9inode = V9FS_I(inode);
500 struct p9_wstat *st = (struct p9_wstat *)data;
502 memcpy(&v9inode->qid, &st->qid, sizeof(st->qid));
506 static struct inode *v9fs_qid_iget(struct super_block *sb,
516 struct v9fs_session_info *v9ses = sb->s_fs_info;
517 int (*test)(struct inode *, void *);
520 test = v9fs_test_new_inode;
522 test = v9fs_test_inode;
524 i_ino = v9fs_qid2ino(qid);
525 inode = iget5_locked(sb, i_ino, test, v9fs_set_inode, st);
527 return ERR_PTR(-ENOMEM);
528 if (!(inode->i_state & I_NEW))
531 * initialize the inode with the stat info
532 * FIXME!! we may need support for stale inodes
535 inode->i_ino = i_ino;
536 umode = p9mode2unixmode(v9ses, st, &rdev);
537 retval = v9fs_init_inode(v9ses, inode, umode, rdev);
541 v9fs_stat2inode(st, inode, sb, 0);
542 v9fs_cache_inode_get_cookie(inode);
543 unlock_new_inode(inode);
547 return ERR_PTR(retval);
552 v9fs_inode_from_fid(struct v9fs_session_info *v9ses, struct p9_fid *fid,
553 struct super_block *sb, int new)
556 struct inode *inode = NULL;
558 st = p9_client_stat(fid);
562 inode = v9fs_qid_iget(sb, &st->qid, st, new);
569 * v9fs_at_to_dotl_flags- convert Linux specific AT flags to
571 * @flags: flags to convert
573 static int v9fs_at_to_dotl_flags(int flags)
576 if (flags & AT_REMOVEDIR)
577 rflags |= P9_DOTL_AT_REMOVEDIR;
582 * v9fs_dec_count - helper functon to drop i_nlink.
584 * If a directory had nlink <= 2 (including . and ..), then we should not drop
585 * the link count, which indicates the underlying exported fs doesn't maintain
586 * nlink accurately. e.g.
587 * - overlayfs sets nlink to 1 for merged dir
588 * - ext4 (with dir_nlink feature enabled) sets nlink to 1 if a dir has more
589 * than EXT4_LINK_MAX (65000) links.
591 * @inode: inode whose nlink is being dropped
593 static void v9fs_dec_count(struct inode *inode)
595 if (!S_ISDIR(inode->i_mode) || inode->i_nlink > 2)
600 * v9fs_remove - helper function to remove files and directories
601 * @dir: directory inode that is being deleted
602 * @dentry: dentry that is being deleted
603 * @flags: removing a directory
607 static int v9fs_remove(struct inode *dir, struct dentry *dentry, int flags)
610 int retval = -EOPNOTSUPP;
611 struct p9_fid *v9fid, *dfid;
612 struct v9fs_session_info *v9ses;
614 p9_debug(P9_DEBUG_VFS, "inode: %p dentry: %p rmdir: %x\n",
617 v9ses = v9fs_inode2v9ses(dir);
618 inode = d_inode(dentry);
619 dfid = v9fs_parent_fid(dentry);
621 retval = PTR_ERR(dfid);
622 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", retval);
625 if (v9fs_proto_dotl(v9ses))
626 retval = p9_client_unlinkat(dfid, dentry->d_name.name,
627 v9fs_at_to_dotl_flags(flags));
628 if (retval == -EOPNOTSUPP) {
629 /* Try the one based on path */
630 v9fid = v9fs_fid_clone(dentry);
632 return PTR_ERR(v9fid);
633 retval = p9_client_remove(v9fid);
637 * directories on unlink should have zero
640 if (flags & AT_REMOVEDIR) {
644 v9fs_dec_count(inode);
646 v9fs_invalidate_inode_attr(inode);
647 v9fs_invalidate_inode_attr(dir);
653 * v9fs_create - Create a file
654 * @v9ses: session information
655 * @dir: directory that dentry is being created in
656 * @dentry: dentry that is being created
657 * @extension: 9p2000.u extension string to support devices, etc.
658 * @perm: create permissions
662 static struct p9_fid *
663 v9fs_create(struct v9fs_session_info *v9ses, struct inode *dir,
664 struct dentry *dentry, char *extension, u32 perm, u8 mode)
667 const unsigned char *name;
668 struct p9_fid *dfid, *ofid, *fid;
671 p9_debug(P9_DEBUG_VFS, "name %pd\n", dentry);
676 name = dentry->d_name.name;
677 dfid = v9fs_parent_fid(dentry);
680 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
684 /* clone a fid to use for creation */
685 ofid = clone_fid(dfid);
688 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
692 err = p9_client_fcreate(ofid, name, perm, mode, extension);
694 p9_debug(P9_DEBUG_VFS, "p9_client_fcreate failed %d\n", err);
698 if (!(perm & P9_DMLINK)) {
699 /* now walk from the parent so we can get unopened fid */
700 fid = p9_client_walk(dfid, 1, &name, 1);
703 p9_debug(P9_DEBUG_VFS,
704 "p9_client_walk failed %d\n", err);
709 * instantiate inode and assign the unopened fid to the dentry
711 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
713 err = PTR_ERR(inode);
714 p9_debug(P9_DEBUG_VFS,
715 "inode creation failed %d\n", err);
718 v9fs_fid_add(dentry, fid);
719 d_instantiate(dentry, inode);
724 p9_client_clunk(ofid);
727 p9_client_clunk(fid);
733 * v9fs_vfs_create - VFS hook to create a regular file
735 * open(.., O_CREAT) is handled in v9fs_vfs_atomic_open(). This is only called
738 * @dir: directory inode that is being created
739 * @dentry: dentry that is being deleted
740 * @mode: create permissions
745 v9fs_vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
748 struct v9fs_session_info *v9ses = v9fs_inode2v9ses(dir);
749 u32 perm = unixmode2p9mode(v9ses, mode);
753 fid = v9fs_create(v9ses, dir, dentry, NULL, perm, P9_ORDWR);
757 v9fs_invalidate_inode_attr(dir);
758 p9_client_clunk(fid);
764 * v9fs_vfs_mkdir - VFS mkdir hook to create a directory
765 * @dir: inode that is being unlinked
766 * @dentry: dentry that is being unlinked
767 * @mode: mode for new directory
771 static int v9fs_vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
776 struct v9fs_session_info *v9ses;
778 p9_debug(P9_DEBUG_VFS, "name %pd\n", dentry);
780 v9ses = v9fs_inode2v9ses(dir);
781 perm = unixmode2p9mode(v9ses, mode | S_IFDIR);
782 fid = v9fs_create(v9ses, dir, dentry, NULL, perm, P9_OREAD);
788 v9fs_invalidate_inode_attr(dir);
792 p9_client_clunk(fid);
798 * v9fs_vfs_lookup - VFS lookup hook to "walk" to a new inode
799 * @dir: inode that is being walked from
800 * @dentry: dentry that is being walked to?
801 * @flags: lookup flags (unused)
805 struct dentry *v9fs_vfs_lookup(struct inode *dir, struct dentry *dentry,
809 struct v9fs_session_info *v9ses;
810 struct p9_fid *dfid, *fid;
812 const unsigned char *name;
814 p9_debug(P9_DEBUG_VFS, "dir: %p dentry: (%pd) %p flags: %x\n",
815 dir, dentry, dentry, flags);
817 if (dentry->d_name.len > NAME_MAX)
818 return ERR_PTR(-ENAMETOOLONG);
820 v9ses = v9fs_inode2v9ses(dir);
821 /* We can walk d_parent because we hold the dir->i_mutex */
822 dfid = v9fs_parent_fid(dentry);
824 return ERR_CAST(dfid);
827 * Make sure we don't use a wrong inode due to parallel
828 * unlink. For cached mode create calls request for new
829 * inode. But with cache disabled, lookup should do this.
831 name = dentry->d_name.name;
832 fid = p9_client_walk(dfid, 1, &name, 1);
833 if (fid == ERR_PTR(-ENOENT))
835 else if (IS_ERR(fid))
836 inode = ERR_CAST(fid);
837 else if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE)
838 inode = v9fs_get_inode_from_fid(v9ses, fid, dir->i_sb);
840 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
842 * If we had a rename on the server and a parallel lookup
843 * for the new name, then make sure we instantiate with
844 * the new name. ie look up for a/b, while on server somebody
845 * moved b under k and client parallely did a lookup for
848 res = d_splice_alias(inode, dentry);
851 v9fs_fid_add(dentry, fid);
852 else if (!IS_ERR(res))
853 v9fs_fid_add(res, fid);
855 p9_client_clunk(fid);
861 v9fs_vfs_atomic_open(struct inode *dir, struct dentry *dentry,
862 struct file *file, unsigned flags, umode_t mode)
866 struct v9fs_inode *v9inode;
867 struct v9fs_session_info *v9ses;
868 struct p9_fid *fid, *inode_fid;
869 struct dentry *res = NULL;
871 if (d_in_lookup(dentry)) {
872 res = v9fs_vfs_lookup(dir, dentry, 0);
881 if (!(flags & O_CREAT) || d_really_is_positive(dentry))
882 return finish_no_open(file, res);
886 v9ses = v9fs_inode2v9ses(dir);
887 perm = unixmode2p9mode(v9ses, mode);
888 fid = v9fs_create(v9ses, dir, dentry, NULL, perm,
889 v9fs_uflags2omode(flags,
890 v9fs_proto_dotu(v9ses)));
897 v9fs_invalidate_inode_attr(dir);
898 v9inode = V9FS_I(d_inode(dentry));
899 mutex_lock(&v9inode->v_mutex);
900 if ((v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) &&
901 !v9inode->writeback_fid &&
902 ((flags & O_ACCMODE) != O_RDONLY)) {
904 * clone a fid and add it to writeback_fid
905 * we do it during open time instead of
906 * page dirty time via write_begin/page_mkwrite
907 * because we want write after unlink usecase
910 inode_fid = v9fs_writeback_fid(dentry);
911 if (IS_ERR(inode_fid)) {
912 err = PTR_ERR(inode_fid);
913 mutex_unlock(&v9inode->v_mutex);
916 v9inode->writeback_fid = (void *) inode_fid;
918 mutex_unlock(&v9inode->v_mutex);
919 err = finish_open(file, dentry, generic_file_open);
923 file->private_data = fid;
924 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE)
925 v9fs_cache_inode_set_cookie(d_inode(dentry), file);
927 file->f_mode |= FMODE_CREATED;
934 p9_client_clunk(fid);
939 * v9fs_vfs_unlink - VFS unlink hook to delete an inode
940 * @i: inode that is being unlinked
941 * @d: dentry that is being unlinked
945 int v9fs_vfs_unlink(struct inode *i, struct dentry *d)
947 return v9fs_remove(i, d, 0);
951 * v9fs_vfs_rmdir - VFS unlink hook to delete a directory
952 * @i: inode that is being unlinked
953 * @d: dentry that is being unlinked
957 int v9fs_vfs_rmdir(struct inode *i, struct dentry *d)
959 return v9fs_remove(i, d, AT_REMOVEDIR);
963 * v9fs_vfs_rename - VFS hook to rename an inode
964 * @old_dir: old dir inode
965 * @old_dentry: old dentry
966 * @new_dir: new dir inode
967 * @new_dentry: new dentry
972 v9fs_vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
973 struct inode *new_dir, struct dentry *new_dentry,
977 struct inode *old_inode;
978 struct inode *new_inode;
979 struct v9fs_session_info *v9ses;
980 struct p9_fid *oldfid;
981 struct p9_fid *olddirfid;
982 struct p9_fid *newdirfid;
983 struct p9_wstat wstat;
988 p9_debug(P9_DEBUG_VFS, "\n");
990 old_inode = d_inode(old_dentry);
991 new_inode = d_inode(new_dentry);
992 v9ses = v9fs_inode2v9ses(old_inode);
993 oldfid = v9fs_fid_lookup(old_dentry);
995 return PTR_ERR(oldfid);
997 olddirfid = clone_fid(v9fs_parent_fid(old_dentry));
998 if (IS_ERR(olddirfid)) {
999 retval = PTR_ERR(olddirfid);
1003 newdirfid = clone_fid(v9fs_parent_fid(new_dentry));
1004 if (IS_ERR(newdirfid)) {
1005 retval = PTR_ERR(newdirfid);
1009 down_write(&v9ses->rename_sem);
1010 if (v9fs_proto_dotl(v9ses)) {
1011 retval = p9_client_renameat(olddirfid, old_dentry->d_name.name,
1012 newdirfid, new_dentry->d_name.name);
1013 if (retval == -EOPNOTSUPP)
1014 retval = p9_client_rename(oldfid, newdirfid,
1015 new_dentry->d_name.name);
1016 if (retval != -EOPNOTSUPP)
1019 if (old_dentry->d_parent != new_dentry->d_parent) {
1021 * 9P .u can only handle file rename in the same directory
1024 p9_debug(P9_DEBUG_ERROR, "old dir and new dir are different\n");
1028 v9fs_blank_wstat(&wstat);
1029 wstat.muid = v9ses->uname;
1030 wstat.name = new_dentry->d_name.name;
1031 retval = p9_client_wstat(oldfid, &wstat);
1036 if (S_ISDIR(new_inode->i_mode))
1037 clear_nlink(new_inode);
1039 v9fs_dec_count(new_inode);
1041 if (S_ISDIR(old_inode->i_mode)) {
1044 v9fs_dec_count(old_dir);
1046 v9fs_invalidate_inode_attr(old_inode);
1047 v9fs_invalidate_inode_attr(old_dir);
1048 v9fs_invalidate_inode_attr(new_dir);
1050 /* successful rename */
1051 d_move(old_dentry, new_dentry);
1053 up_write(&v9ses->rename_sem);
1054 p9_client_clunk(newdirfid);
1057 p9_client_clunk(olddirfid);
1064 * v9fs_vfs_getattr - retrieve file metadata
1065 * @path: Object to query
1066 * @stat: metadata structure to populate
1067 * @request_mask: Mask of STATX_xxx flags indicating the caller's interests
1068 * @flags: AT_STATX_xxx setting
1073 v9fs_vfs_getattr(const struct path *path, struct kstat *stat,
1074 u32 request_mask, unsigned int flags)
1076 struct dentry *dentry = path->dentry;
1077 struct v9fs_session_info *v9ses;
1079 struct p9_wstat *st;
1081 p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry);
1082 v9ses = v9fs_dentry2v9ses(dentry);
1083 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
1084 generic_fillattr(d_inode(dentry), stat);
1087 fid = v9fs_fid_lookup(dentry);
1089 return PTR_ERR(fid);
1091 st = p9_client_stat(fid);
1095 v9fs_stat2inode(st, d_inode(dentry), dentry->d_sb, 0);
1096 generic_fillattr(d_inode(dentry), stat);
1104 * v9fs_vfs_setattr - set file metadata
1105 * @dentry: file whose metadata to set
1106 * @iattr: metadata assignment structure
1110 static int v9fs_vfs_setattr(struct dentry *dentry, struct iattr *iattr)
1113 struct v9fs_session_info *v9ses;
1115 struct p9_wstat wstat;
1117 p9_debug(P9_DEBUG_VFS, "\n");
1118 retval = setattr_prepare(dentry, iattr);
1123 v9ses = v9fs_dentry2v9ses(dentry);
1124 fid = v9fs_fid_lookup(dentry);
1126 return PTR_ERR(fid);
1128 v9fs_blank_wstat(&wstat);
1129 if (iattr->ia_valid & ATTR_MODE)
1130 wstat.mode = unixmode2p9mode(v9ses, iattr->ia_mode);
1132 if (iattr->ia_valid & ATTR_MTIME)
1133 wstat.mtime = iattr->ia_mtime.tv_sec;
1135 if (iattr->ia_valid & ATTR_ATIME)
1136 wstat.atime = iattr->ia_atime.tv_sec;
1138 if (iattr->ia_valid & ATTR_SIZE)
1139 wstat.length = iattr->ia_size;
1141 if (v9fs_proto_dotu(v9ses)) {
1142 if (iattr->ia_valid & ATTR_UID)
1143 wstat.n_uid = iattr->ia_uid;
1145 if (iattr->ia_valid & ATTR_GID)
1146 wstat.n_gid = iattr->ia_gid;
1149 /* Write all dirty data */
1150 if (d_is_reg(dentry))
1151 filemap_write_and_wait(d_inode(dentry)->i_mapping);
1153 retval = p9_client_wstat(fid, &wstat);
1157 if ((iattr->ia_valid & ATTR_SIZE) &&
1158 iattr->ia_size != i_size_read(d_inode(dentry)))
1159 truncate_setsize(d_inode(dentry), iattr->ia_size);
1161 v9fs_invalidate_inode_attr(d_inode(dentry));
1163 setattr_copy(d_inode(dentry), iattr);
1164 mark_inode_dirty(d_inode(dentry));
1169 * v9fs_stat2inode - populate an inode structure with mistat info
1170 * @stat: Plan 9 metadata (mistat) structure
1171 * @inode: inode to populate
1172 * @sb: superblock of filesystem
1173 * @flags: control flags (e.g. V9FS_STAT2INODE_KEEP_ISIZE)
1178 v9fs_stat2inode(struct p9_wstat *stat, struct inode *inode,
1179 struct super_block *sb, unsigned int flags)
1184 unsigned int i_nlink;
1185 struct v9fs_session_info *v9ses = sb->s_fs_info;
1186 struct v9fs_inode *v9inode = V9FS_I(inode);
1188 set_nlink(inode, 1);
1190 inode->i_atime.tv_sec = stat->atime;
1191 inode->i_mtime.tv_sec = stat->mtime;
1192 inode->i_ctime.tv_sec = stat->mtime;
1194 inode->i_uid = v9ses->dfltuid;
1195 inode->i_gid = v9ses->dfltgid;
1197 if (v9fs_proto_dotu(v9ses)) {
1198 inode->i_uid = stat->n_uid;
1199 inode->i_gid = stat->n_gid;
1201 if ((S_ISREG(inode->i_mode)) || (S_ISDIR(inode->i_mode))) {
1202 if (v9fs_proto_dotu(v9ses) && (stat->extension[0] != '\0')) {
1204 * Hadlink support got added later to
1205 * to the .u extension. So there can be
1206 * server out there that doesn't support
1207 * this even with .u extension. So check
1208 * for non NULL stat->extension
1210 strlcpy(ext, stat->extension, sizeof(ext));
1211 /* HARDLINKCOUNT %u */
1212 sscanf(ext, "%13s %u", tag_name, &i_nlink);
1213 if (!strncmp(tag_name, "HARDLINKCOUNT", 13))
1214 set_nlink(inode, i_nlink);
1217 mode = p9mode2perm(v9ses, stat);
1218 mode |= inode->i_mode & ~S_IALLUGO;
1219 inode->i_mode = mode;
1221 if (!(flags & V9FS_STAT2INODE_KEEP_ISIZE))
1222 v9fs_i_size_write(inode, stat->length);
1223 /* not real number of blocks, but 512 byte ones ... */
1224 inode->i_blocks = (stat->length + 512 - 1) >> 9;
1225 v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR;
1229 * v9fs_qid2ino - convert qid into inode number
1232 * BUG: potential for inode number collisions?
1235 ino_t v9fs_qid2ino(struct p9_qid *qid)
1237 u64 path = qid->path + 2;
1240 if (sizeof(ino_t) == sizeof(path))
1241 memcpy(&i, &path, sizeof(ino_t));
1243 i = (ino_t) (path ^ (path >> 32));
1249 * v9fs_vfs_get_link - follow a symlink path
1250 * @dentry: dentry for symlink
1251 * @inode: inode for symlink
1252 * @done: delayed call for when we are done with the return value
1255 static const char *v9fs_vfs_get_link(struct dentry *dentry,
1256 struct inode *inode,
1257 struct delayed_call *done)
1259 struct v9fs_session_info *v9ses;
1261 struct p9_wstat *st;
1265 return ERR_PTR(-ECHILD);
1267 v9ses = v9fs_dentry2v9ses(dentry);
1268 fid = v9fs_fid_lookup(dentry);
1269 p9_debug(P9_DEBUG_VFS, "%pd\n", dentry);
1272 return ERR_CAST(fid);
1274 if (!v9fs_proto_dotu(v9ses))
1275 return ERR_PTR(-EBADF);
1277 st = p9_client_stat(fid);
1279 return ERR_CAST(st);
1281 if (!(st->mode & P9_DMSYMLINK)) {
1284 return ERR_PTR(-EINVAL);
1286 res = st->extension;
1287 st->extension = NULL;
1288 if (strlen(res) >= PATH_MAX)
1289 res[PATH_MAX - 1] = '\0';
1293 set_delayed_call(done, kfree_link, res);
1298 * v9fs_vfs_mkspecial - create a special file
1299 * @dir: inode to create special file in
1300 * @dentry: dentry to create
1301 * @perm: mode to create special file
1302 * @extension: 9p2000.u format extension string representing special file
1306 static int v9fs_vfs_mkspecial(struct inode *dir, struct dentry *dentry,
1307 u32 perm, const char *extension)
1310 struct v9fs_session_info *v9ses;
1312 v9ses = v9fs_inode2v9ses(dir);
1313 if (!v9fs_proto_dotu(v9ses)) {
1314 p9_debug(P9_DEBUG_ERROR, "not extended\n");
1318 fid = v9fs_create(v9ses, dir, dentry, (char *) extension, perm,
1321 return PTR_ERR(fid);
1323 v9fs_invalidate_inode_attr(dir);
1324 p9_client_clunk(fid);
1329 * v9fs_vfs_symlink - helper function to create symlinks
1330 * @dir: directory inode containing symlink
1331 * @dentry: dentry for symlink
1332 * @symname: symlink data
1334 * See Also: 9P2000.u RFC for more information
1339 v9fs_vfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
1341 p9_debug(P9_DEBUG_VFS, " %lu,%pd,%s\n",
1342 dir->i_ino, dentry, symname);
1344 return v9fs_vfs_mkspecial(dir, dentry, P9_DMSYMLINK, symname);
1347 #define U32_MAX_DIGITS 10
1350 * v9fs_vfs_link - create a hardlink
1351 * @old_dentry: dentry for file to link to
1352 * @dir: inode destination for new link
1353 * @dentry: dentry for link
1358 v9fs_vfs_link(struct dentry *old_dentry, struct inode *dir,
1359 struct dentry *dentry)
1362 char name[1 + U32_MAX_DIGITS + 2]; /* sign + number + \n + \0 */
1363 struct p9_fid *oldfid;
1365 p9_debug(P9_DEBUG_VFS, " %lu,%pd,%pd\n",
1366 dir->i_ino, dentry, old_dentry);
1368 oldfid = v9fs_fid_clone(old_dentry);
1370 return PTR_ERR(oldfid);
1372 sprintf(name, "%d\n", oldfid->fid);
1373 retval = v9fs_vfs_mkspecial(dir, dentry, P9_DMLINK, name);
1375 v9fs_refresh_inode(oldfid, d_inode(old_dentry));
1376 v9fs_invalidate_inode_attr(dir);
1378 p9_client_clunk(oldfid);
1383 * v9fs_vfs_mknod - create a special file
1384 * @dir: inode destination for new link
1385 * @dentry: dentry for file
1386 * @mode: mode for creation
1387 * @rdev: device associated with special file
1392 v9fs_vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t rdev)
1394 struct v9fs_session_info *v9ses = v9fs_inode2v9ses(dir);
1396 char name[2 + U32_MAX_DIGITS + 1 + U32_MAX_DIGITS + 1];
1399 p9_debug(P9_DEBUG_VFS, " %lu,%pd mode: %hx MAJOR: %u MINOR: %u\n",
1400 dir->i_ino, dentry, mode,
1401 MAJOR(rdev), MINOR(rdev));
1403 /* build extension */
1405 sprintf(name, "b %u %u", MAJOR(rdev), MINOR(rdev));
1406 else if (S_ISCHR(mode))
1407 sprintf(name, "c %u %u", MAJOR(rdev), MINOR(rdev));
1411 perm = unixmode2p9mode(v9ses, mode);
1412 retval = v9fs_vfs_mkspecial(dir, dentry, perm, name);
1417 int v9fs_refresh_inode(struct p9_fid *fid, struct inode *inode)
1421 struct p9_wstat *st;
1422 struct v9fs_session_info *v9ses;
1425 v9ses = v9fs_inode2v9ses(inode);
1426 st = p9_client_stat(fid);
1430 * Don't update inode if the file type is different
1432 umode = p9mode2unixmode(v9ses, st, &rdev);
1433 if ((inode->i_mode & S_IFMT) != (umode & S_IFMT))
1437 * We don't want to refresh inode->i_size,
1438 * because we may have cached data
1440 flags = (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) ?
1441 V9FS_STAT2INODE_KEEP_ISIZE : 0;
1442 v9fs_stat2inode(st, inode, inode->i_sb, flags);
1449 static const struct inode_operations v9fs_dir_inode_operations_dotu = {
1450 .create = v9fs_vfs_create,
1451 .lookup = v9fs_vfs_lookup,
1452 .atomic_open = v9fs_vfs_atomic_open,
1453 .symlink = v9fs_vfs_symlink,
1454 .link = v9fs_vfs_link,
1455 .unlink = v9fs_vfs_unlink,
1456 .mkdir = v9fs_vfs_mkdir,
1457 .rmdir = v9fs_vfs_rmdir,
1458 .mknod = v9fs_vfs_mknod,
1459 .rename = v9fs_vfs_rename,
1460 .getattr = v9fs_vfs_getattr,
1461 .setattr = v9fs_vfs_setattr,
1464 static const struct inode_operations v9fs_dir_inode_operations = {
1465 .create = v9fs_vfs_create,
1466 .lookup = v9fs_vfs_lookup,
1467 .atomic_open = v9fs_vfs_atomic_open,
1468 .unlink = v9fs_vfs_unlink,
1469 .mkdir = v9fs_vfs_mkdir,
1470 .rmdir = v9fs_vfs_rmdir,
1471 .mknod = v9fs_vfs_mknod,
1472 .rename = v9fs_vfs_rename,
1473 .getattr = v9fs_vfs_getattr,
1474 .setattr = v9fs_vfs_setattr,
1477 static const struct inode_operations v9fs_file_inode_operations = {
1478 .getattr = v9fs_vfs_getattr,
1479 .setattr = v9fs_vfs_setattr,
1482 static const struct inode_operations v9fs_symlink_inode_operations = {
1483 .get_link = v9fs_vfs_get_link,
1484 .getattr = v9fs_vfs_getattr,
1485 .setattr = v9fs_vfs_setattr,