2 * linux/fs/9p/vfs_inode.c
4 * This file contains vfs inode ops for the 9P2000 protocol.
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);
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,
867 struct v9fs_inode *v9inode;
868 struct v9fs_session_info *v9ses;
869 struct p9_fid *fid, *inode_fid;
870 struct dentry *res = NULL;
872 if (d_in_lookup(dentry)) {
873 res = v9fs_vfs_lookup(dir, dentry, 0);
882 if (!(flags & O_CREAT) || d_really_is_positive(dentry))
883 return finish_no_open(file, res);
887 v9ses = v9fs_inode2v9ses(dir);
888 perm = unixmode2p9mode(v9ses, mode);
889 fid = v9fs_create(v9ses, dir, dentry, NULL, perm,
890 v9fs_uflags2omode(flags,
891 v9fs_proto_dotu(v9ses)));
898 v9fs_invalidate_inode_attr(dir);
899 v9inode = V9FS_I(d_inode(dentry));
900 mutex_lock(&v9inode->v_mutex);
901 if ((v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) &&
902 !v9inode->writeback_fid &&
903 ((flags & O_ACCMODE) != O_RDONLY)) {
905 * clone a fid and add it to writeback_fid
906 * we do it during open time instead of
907 * page dirty time via write_begin/page_mkwrite
908 * because we want write after unlink usecase
911 inode_fid = v9fs_writeback_fid(dentry);
912 if (IS_ERR(inode_fid)) {
913 err = PTR_ERR(inode_fid);
914 mutex_unlock(&v9inode->v_mutex);
917 v9inode->writeback_fid = (void *) inode_fid;
919 mutex_unlock(&v9inode->v_mutex);
920 err = finish_open(file, dentry, generic_file_open, opened);
924 file->private_data = fid;
925 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE)
926 v9fs_cache_inode_set_cookie(d_inode(dentry), file);
928 *opened |= FILE_CREATED;
935 p9_client_clunk(fid);
940 * v9fs_vfs_unlink - VFS unlink hook to delete an inode
941 * @i: inode that is being unlinked
942 * @d: dentry that is being unlinked
946 int v9fs_vfs_unlink(struct inode *i, struct dentry *d)
948 return v9fs_remove(i, d, 0);
952 * v9fs_vfs_rmdir - VFS unlink hook to delete a directory
953 * @i: inode that is being unlinked
954 * @d: dentry that is being unlinked
958 int v9fs_vfs_rmdir(struct inode *i, struct dentry *d)
960 return v9fs_remove(i, d, AT_REMOVEDIR);
964 * v9fs_vfs_rename - VFS hook to rename an inode
965 * @old_dir: old dir inode
966 * @old_dentry: old dentry
967 * @new_dir: new dir inode
968 * @new_dentry: new dentry
973 v9fs_vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
974 struct inode *new_dir, struct dentry *new_dentry,
978 struct inode *old_inode;
979 struct inode *new_inode;
980 struct v9fs_session_info *v9ses;
981 struct p9_fid *oldfid;
982 struct p9_fid *olddirfid;
983 struct p9_fid *newdirfid;
984 struct p9_wstat wstat;
989 p9_debug(P9_DEBUG_VFS, "\n");
991 old_inode = d_inode(old_dentry);
992 new_inode = d_inode(new_dentry);
993 v9ses = v9fs_inode2v9ses(old_inode);
994 oldfid = v9fs_fid_lookup(old_dentry);
996 return PTR_ERR(oldfid);
998 olddirfid = clone_fid(v9fs_parent_fid(old_dentry));
999 if (IS_ERR(olddirfid)) {
1000 retval = PTR_ERR(olddirfid);
1004 newdirfid = clone_fid(v9fs_parent_fid(new_dentry));
1005 if (IS_ERR(newdirfid)) {
1006 retval = PTR_ERR(newdirfid);
1010 down_write(&v9ses->rename_sem);
1011 if (v9fs_proto_dotl(v9ses)) {
1012 retval = p9_client_renameat(olddirfid, old_dentry->d_name.name,
1013 newdirfid, new_dentry->d_name.name);
1014 if (retval == -EOPNOTSUPP)
1015 retval = p9_client_rename(oldfid, newdirfid,
1016 new_dentry->d_name.name);
1017 if (retval != -EOPNOTSUPP)
1020 if (old_dentry->d_parent != new_dentry->d_parent) {
1022 * 9P .u can only handle file rename in the same directory
1025 p9_debug(P9_DEBUG_ERROR, "old dir and new dir are different\n");
1029 v9fs_blank_wstat(&wstat);
1030 wstat.muid = v9ses->uname;
1031 wstat.name = new_dentry->d_name.name;
1032 retval = p9_client_wstat(oldfid, &wstat);
1037 if (S_ISDIR(new_inode->i_mode))
1038 clear_nlink(new_inode);
1040 v9fs_dec_count(new_inode);
1042 if (S_ISDIR(old_inode->i_mode)) {
1045 v9fs_dec_count(old_dir);
1047 v9fs_invalidate_inode_attr(old_inode);
1048 v9fs_invalidate_inode_attr(old_dir);
1049 v9fs_invalidate_inode_attr(new_dir);
1051 /* successful rename */
1052 d_move(old_dentry, new_dentry);
1054 up_write(&v9ses->rename_sem);
1055 p9_client_clunk(newdirfid);
1058 p9_client_clunk(olddirfid);
1065 * v9fs_vfs_getattr - retrieve file metadata
1066 * @path: Object to query
1067 * @stat: metadata structure to populate
1068 * @request_mask: Mask of STATX_xxx flags indicating the caller's interests
1069 * @flags: AT_STATX_xxx setting
1074 v9fs_vfs_getattr(const struct path *path, struct kstat *stat,
1075 u32 request_mask, unsigned int flags)
1077 struct dentry *dentry = path->dentry;
1078 struct v9fs_session_info *v9ses;
1080 struct p9_wstat *st;
1082 p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry);
1083 v9ses = v9fs_dentry2v9ses(dentry);
1084 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
1085 generic_fillattr(d_inode(dentry), stat);
1088 fid = v9fs_fid_lookup(dentry);
1090 return PTR_ERR(fid);
1092 st = p9_client_stat(fid);
1096 v9fs_stat2inode(st, d_inode(dentry), dentry->d_sb);
1097 generic_fillattr(d_inode(dentry), stat);
1105 * v9fs_vfs_setattr - set file metadata
1106 * @dentry: file whose metadata to set
1107 * @iattr: metadata assignment structure
1111 static int v9fs_vfs_setattr(struct dentry *dentry, struct iattr *iattr)
1114 struct v9fs_session_info *v9ses;
1116 struct p9_wstat wstat;
1118 p9_debug(P9_DEBUG_VFS, "\n");
1119 retval = setattr_prepare(dentry, iattr);
1124 v9ses = v9fs_dentry2v9ses(dentry);
1125 fid = v9fs_fid_lookup(dentry);
1127 return PTR_ERR(fid);
1129 v9fs_blank_wstat(&wstat);
1130 if (iattr->ia_valid & ATTR_MODE)
1131 wstat.mode = unixmode2p9mode(v9ses, iattr->ia_mode);
1133 if (iattr->ia_valid & ATTR_MTIME)
1134 wstat.mtime = iattr->ia_mtime.tv_sec;
1136 if (iattr->ia_valid & ATTR_ATIME)
1137 wstat.atime = iattr->ia_atime.tv_sec;
1139 if (iattr->ia_valid & ATTR_SIZE)
1140 wstat.length = iattr->ia_size;
1142 if (v9fs_proto_dotu(v9ses)) {
1143 if (iattr->ia_valid & ATTR_UID)
1144 wstat.n_uid = iattr->ia_uid;
1146 if (iattr->ia_valid & ATTR_GID)
1147 wstat.n_gid = iattr->ia_gid;
1150 /* Write all dirty data */
1151 if (d_is_reg(dentry))
1152 filemap_write_and_wait(d_inode(dentry)->i_mapping);
1154 retval = p9_client_wstat(fid, &wstat);
1158 if ((iattr->ia_valid & ATTR_SIZE) &&
1159 iattr->ia_size != i_size_read(d_inode(dentry)))
1160 truncate_setsize(d_inode(dentry), iattr->ia_size);
1162 v9fs_invalidate_inode_attr(d_inode(dentry));
1164 setattr_copy(d_inode(dentry), iattr);
1165 mark_inode_dirty(d_inode(dentry));
1170 * v9fs_stat2inode - populate an inode structure with mistat info
1171 * @stat: Plan 9 metadata (mistat) structure
1172 * @inode: inode to populate
1173 * @sb: superblock of filesystem
1178 v9fs_stat2inode(struct p9_wstat *stat, struct inode *inode,
1179 struct super_block *sb)
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;
1220 i_size_write(inode, stat->length);
1222 /* not real number of blocks, but 512 byte ones ... */
1223 inode->i_blocks = (i_size_read(inode) + 512 - 1) >> 9;
1224 v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR;
1228 * v9fs_qid2ino - convert qid into inode number
1231 * BUG: potential for inode number collisions?
1234 ino_t v9fs_qid2ino(struct p9_qid *qid)
1236 u64 path = qid->path + 2;
1239 if (sizeof(ino_t) == sizeof(path))
1240 memcpy(&i, &path, sizeof(ino_t));
1242 i = (ino_t) (path ^ (path >> 32));
1248 * v9fs_vfs_get_link - follow a symlink path
1249 * @dentry: dentry for symlink
1250 * @inode: inode for symlink
1251 * @done: delayed call for when we are done with the return value
1254 static const char *v9fs_vfs_get_link(struct dentry *dentry,
1255 struct inode *inode,
1256 struct delayed_call *done)
1258 struct v9fs_session_info *v9ses;
1260 struct p9_wstat *st;
1264 return ERR_PTR(-ECHILD);
1266 v9ses = v9fs_dentry2v9ses(dentry);
1267 fid = v9fs_fid_lookup(dentry);
1268 p9_debug(P9_DEBUG_VFS, "%pd\n", dentry);
1271 return ERR_CAST(fid);
1273 if (!v9fs_proto_dotu(v9ses))
1274 return ERR_PTR(-EBADF);
1276 st = p9_client_stat(fid);
1278 return ERR_CAST(st);
1280 if (!(st->mode & P9_DMSYMLINK)) {
1283 return ERR_PTR(-EINVAL);
1285 res = st->extension;
1286 st->extension = NULL;
1287 if (strlen(res) >= PATH_MAX)
1288 res[PATH_MAX - 1] = '\0';
1292 set_delayed_call(done, kfree_link, res);
1297 * v9fs_vfs_mkspecial - create a special file
1298 * @dir: inode to create special file in
1299 * @dentry: dentry to create
1300 * @perm: mode to create special file
1301 * @extension: 9p2000.u format extension string representing special file
1305 static int v9fs_vfs_mkspecial(struct inode *dir, struct dentry *dentry,
1306 u32 perm, const char *extension)
1309 struct v9fs_session_info *v9ses;
1311 v9ses = v9fs_inode2v9ses(dir);
1312 if (!v9fs_proto_dotu(v9ses)) {
1313 p9_debug(P9_DEBUG_ERROR, "not extended\n");
1317 fid = v9fs_create(v9ses, dir, dentry, (char *) extension, perm,
1320 return PTR_ERR(fid);
1322 v9fs_invalidate_inode_attr(dir);
1323 p9_client_clunk(fid);
1328 * v9fs_vfs_symlink - helper function to create symlinks
1329 * @dir: directory inode containing symlink
1330 * @dentry: dentry for symlink
1331 * @symname: symlink data
1333 * See Also: 9P2000.u RFC for more information
1338 v9fs_vfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
1340 p9_debug(P9_DEBUG_VFS, " %lu,%pd,%s\n",
1341 dir->i_ino, dentry, symname);
1343 return v9fs_vfs_mkspecial(dir, dentry, P9_DMSYMLINK, symname);
1346 #define U32_MAX_DIGITS 10
1349 * v9fs_vfs_link - create a hardlink
1350 * @old_dentry: dentry for file to link to
1351 * @dir: inode destination for new link
1352 * @dentry: dentry for link
1357 v9fs_vfs_link(struct dentry *old_dentry, struct inode *dir,
1358 struct dentry *dentry)
1361 char name[1 + U32_MAX_DIGITS + 2]; /* sign + number + \n + \0 */
1362 struct p9_fid *oldfid;
1364 p9_debug(P9_DEBUG_VFS, " %lu,%pd,%pd\n",
1365 dir->i_ino, dentry, old_dentry);
1367 oldfid = v9fs_fid_clone(old_dentry);
1369 return PTR_ERR(oldfid);
1371 sprintf(name, "%d\n", oldfid->fid);
1372 retval = v9fs_vfs_mkspecial(dir, dentry, P9_DMLINK, name);
1374 v9fs_refresh_inode(oldfid, d_inode(old_dentry));
1375 v9fs_invalidate_inode_attr(dir);
1377 p9_client_clunk(oldfid);
1382 * v9fs_vfs_mknod - create a special file
1383 * @dir: inode destination for new link
1384 * @dentry: dentry for file
1385 * @mode: mode for creation
1386 * @rdev: device associated with special file
1391 v9fs_vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t rdev)
1393 struct v9fs_session_info *v9ses = v9fs_inode2v9ses(dir);
1395 char name[2 + U32_MAX_DIGITS + 1 + U32_MAX_DIGITS + 1];
1398 p9_debug(P9_DEBUG_VFS, " %lu,%pd mode: %hx MAJOR: %u MINOR: %u\n",
1399 dir->i_ino, dentry, mode,
1400 MAJOR(rdev), MINOR(rdev));
1402 /* build extension */
1404 sprintf(name, "b %u %u", MAJOR(rdev), MINOR(rdev));
1405 else if (S_ISCHR(mode))
1406 sprintf(name, "c %u %u", MAJOR(rdev), MINOR(rdev));
1410 perm = unixmode2p9mode(v9ses, mode);
1411 retval = v9fs_vfs_mkspecial(dir, dentry, perm, name);
1416 int v9fs_refresh_inode(struct p9_fid *fid, struct inode *inode)
1421 struct p9_wstat *st;
1422 struct v9fs_session_info *v9ses;
1424 v9ses = v9fs_inode2v9ses(inode);
1425 st = p9_client_stat(fid);
1429 * Don't update inode if the file type is different
1431 umode = p9mode2unixmode(v9ses, st, &rdev);
1432 if ((inode->i_mode & S_IFMT) != (umode & S_IFMT))
1435 spin_lock(&inode->i_lock);
1437 * We don't want to refresh inode->i_size,
1438 * because we may have cached data
1440 i_size = inode->i_size;
1441 v9fs_stat2inode(st, inode, inode->i_sb);
1442 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE)
1443 inode->i_size = i_size;
1444 spin_unlock(&inode->i_lock);
1451 static const struct inode_operations v9fs_dir_inode_operations_dotu = {
1452 .create = v9fs_vfs_create,
1453 .lookup = v9fs_vfs_lookup,
1454 .atomic_open = v9fs_vfs_atomic_open,
1455 .symlink = v9fs_vfs_symlink,
1456 .link = v9fs_vfs_link,
1457 .unlink = v9fs_vfs_unlink,
1458 .mkdir = v9fs_vfs_mkdir,
1459 .rmdir = v9fs_vfs_rmdir,
1460 .mknod = v9fs_vfs_mknod,
1461 .rename = v9fs_vfs_rename,
1462 .getattr = v9fs_vfs_getattr,
1463 .setattr = v9fs_vfs_setattr,
1466 static const struct inode_operations v9fs_dir_inode_operations = {
1467 .create = v9fs_vfs_create,
1468 .lookup = v9fs_vfs_lookup,
1469 .atomic_open = v9fs_vfs_atomic_open,
1470 .unlink = v9fs_vfs_unlink,
1471 .mkdir = v9fs_vfs_mkdir,
1472 .rmdir = v9fs_vfs_rmdir,
1473 .mknod = v9fs_vfs_mknod,
1474 .rename = v9fs_vfs_rename,
1475 .getattr = v9fs_vfs_getattr,
1476 .setattr = v9fs_vfs_setattr,
1479 static const struct inode_operations v9fs_file_inode_operations = {
1480 .getattr = v9fs_vfs_getattr,
1481 .setattr = v9fs_vfs_setattr,
1484 static const struct inode_operations v9fs_symlink_inode_operations = {
1485 .get_link = v9fs_vfs_get_link,
1486 .getattr = v9fs_vfs_getattr,
1487 .setattr = v9fs_vfs_setattr,