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 strncpy(ext
, stat
->extension
, sizeof(ext
));
150 sscanf(ext
, "%c %u %u", &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
)
195 if (uflags
& O_TRUNC
)
202 if (uflags
& O_APPEND
)
210 * v9fs_blank_wstat - helper function to setup a 9P stat structure
211 * @wstat: structure to initialize
216 v9fs_blank_wstat(struct p9_wstat
*wstat
)
220 wstat
->qid
.type
= ~0;
221 wstat
->qid
.version
= ~0;
222 *((long long *)&wstat
->qid
.path
) = ~0;
234 wstat
->extension
= NULL
;
238 * v9fs_alloc_inode - helper function to allocate an inode
241 struct inode
*v9fs_alloc_inode(struct super_block
*sb
)
243 struct v9fs_inode
*v9inode
;
244 v9inode
= (struct v9fs_inode
*)kmem_cache_alloc(v9fs_inode_cache
,
248 #ifdef CONFIG_9P_FSCACHE
249 v9inode
->fscache
= NULL
;
250 spin_lock_init(&v9inode
->fscache_lock
);
252 v9inode
->writeback_fid
= NULL
;
253 v9inode
->cache_validity
= 0;
254 mutex_init(&v9inode
->v_mutex
);
255 return &v9inode
->vfs_inode
;
259 * v9fs_destroy_inode - destroy an inode
263 static void v9fs_i_callback(struct rcu_head
*head
)
265 struct inode
*inode
= container_of(head
, struct inode
, i_rcu
);
266 kmem_cache_free(v9fs_inode_cache
, V9FS_I(inode
));
269 void v9fs_destroy_inode(struct inode
*inode
)
271 call_rcu(&inode
->i_rcu
, v9fs_i_callback
);
274 int v9fs_init_inode(struct v9fs_session_info
*v9ses
,
275 struct inode
*inode
, umode_t mode
, dev_t rdev
)
279 inode_init_owner(inode
, NULL
, mode
);
281 inode
->i_rdev
= rdev
;
282 inode
->i_atime
= inode
->i_mtime
= inode
->i_ctime
= CURRENT_TIME
;
283 inode
->i_mapping
->a_ops
= &v9fs_addr_operations
;
285 switch (mode
& S_IFMT
) {
290 if (v9fs_proto_dotl(v9ses
)) {
291 inode
->i_op
= &v9fs_file_inode_operations_dotl
;
292 } else if (v9fs_proto_dotu(v9ses
)) {
293 inode
->i_op
= &v9fs_file_inode_operations
;
295 p9_debug(P9_DEBUG_ERROR
,
296 "special files without extended mode\n");
300 init_special_inode(inode
, inode
->i_mode
, inode
->i_rdev
);
303 if (v9fs_proto_dotl(v9ses
)) {
304 inode
->i_op
= &v9fs_file_inode_operations_dotl
;
307 &v9fs_cached_file_operations_dotl
;
309 inode
->i_fop
= &v9fs_file_operations_dotl
;
311 inode
->i_op
= &v9fs_file_inode_operations
;
313 inode
->i_fop
= &v9fs_cached_file_operations
;
315 inode
->i_fop
= &v9fs_file_operations
;
320 if (!v9fs_proto_dotu(v9ses
) && !v9fs_proto_dotl(v9ses
)) {
321 p9_debug(P9_DEBUG_ERROR
,
322 "extended modes used with legacy protocol\n");
327 if (v9fs_proto_dotl(v9ses
))
328 inode
->i_op
= &v9fs_symlink_inode_operations_dotl
;
330 inode
->i_op
= &v9fs_symlink_inode_operations
;
335 if (v9fs_proto_dotl(v9ses
))
336 inode
->i_op
= &v9fs_dir_inode_operations_dotl
;
337 else if (v9fs_proto_dotu(v9ses
))
338 inode
->i_op
= &v9fs_dir_inode_operations_dotu
;
340 inode
->i_op
= &v9fs_dir_inode_operations
;
342 if (v9fs_proto_dotl(v9ses
))
343 inode
->i_fop
= &v9fs_dir_operations_dotl
;
345 inode
->i_fop
= &v9fs_dir_operations
;
349 p9_debug(P9_DEBUG_ERROR
, "BAD mode 0x%hx S_IFMT 0x%x\n",
350 mode
, mode
& S_IFMT
);
360 * v9fs_get_inode - helper function to setup an inode
362 * @mode: mode to setup inode with
366 struct inode
*v9fs_get_inode(struct super_block
*sb
, umode_t mode
, dev_t rdev
)
370 struct v9fs_session_info
*v9ses
= sb
->s_fs_info
;
372 p9_debug(P9_DEBUG_VFS
, "super block: %p mode: %ho\n", sb
, mode
);
374 inode
= new_inode(sb
);
376 pr_warn("%s (%d): Problem allocating inode\n",
377 __func__
, task_pid_nr(current
));
378 return ERR_PTR(-ENOMEM
);
380 err
= v9fs_init_inode(v9ses
, inode
, mode
, rdev
);
389 static struct v9fs_fid*
390 v9fs_clone_walk(struct v9fs_session_info *v9ses, u32 fid, struct dentry *dentry)
394 struct v9fs_fid *ret;
395 struct v9fs_fcall *fcall;
397 nfid = v9fs_get_idpool(&v9ses->fidpool);
399 eprintk(KERN_WARNING, "no free fids available\n");
400 return ERR_PTR(-ENOSPC);
403 err = v9fs_t_walk(v9ses, fid, nfid, (char *) dentry->d_name.name,
407 if (fcall && fcall->id == RWALK)
410 PRINT_FCALL_ERROR("walk error", fcall);
411 v9fs_put_idpool(nfid, &v9ses->fidpool);
417 ret = v9fs_fid_create(v9ses, nfid);
423 err = v9fs_fid_insert(ret, dentry);
425 v9fs_fid_destroy(ret);
432 v9fs_t_clunk(v9ses, nfid);
442 * v9fs_clear_inode - release an inode
443 * @inode: inode to release
446 void v9fs_evict_inode(struct inode
*inode
)
448 struct v9fs_inode
*v9inode
= V9FS_I(inode
);
450 truncate_inode_pages(inode
->i_mapping
, 0);
452 filemap_fdatawrite(inode
->i_mapping
);
454 #ifdef CONFIG_9P_FSCACHE
455 v9fs_cache_inode_put_cookie(inode
);
457 /* clunk the fid stashed in writeback_fid */
458 if (v9inode
->writeback_fid
) {
459 p9_client_clunk(v9inode
->writeback_fid
);
460 v9inode
->writeback_fid
= NULL
;
464 static int v9fs_test_inode(struct inode
*inode
, void *data
)
468 struct v9fs_inode
*v9inode
= V9FS_I(inode
);
469 struct p9_wstat
*st
= (struct p9_wstat
*)data
;
470 struct v9fs_session_info
*v9ses
= v9fs_inode2v9ses(inode
);
472 umode
= p9mode2unixmode(v9ses
, st
, &rdev
);
473 /* don't match inode of different type */
474 if ((inode
->i_mode
& S_IFMT
) != (umode
& S_IFMT
))
477 /* compare qid details */
478 if (memcmp(&v9inode
->qid
.version
,
479 &st
->qid
.version
, sizeof(v9inode
->qid
.version
)))
482 if (v9inode
->qid
.type
!= st
->qid
.type
)
487 static int v9fs_test_new_inode(struct inode
*inode
, void *data
)
492 static int v9fs_set_inode(struct inode
*inode
, void *data
)
494 struct v9fs_inode
*v9inode
= V9FS_I(inode
);
495 struct p9_wstat
*st
= (struct p9_wstat
*)data
;
497 memcpy(&v9inode
->qid
, &st
->qid
, sizeof(st
->qid
));
501 static struct inode
*v9fs_qid_iget(struct super_block
*sb
,
511 struct v9fs_session_info
*v9ses
= sb
->s_fs_info
;
512 int (*test
)(struct inode
*, void *);
515 test
= v9fs_test_new_inode
;
517 test
= v9fs_test_inode
;
519 i_ino
= v9fs_qid2ino(qid
);
520 inode
= iget5_locked(sb
, i_ino
, test
, v9fs_set_inode
, st
);
522 return ERR_PTR(-ENOMEM
);
523 if (!(inode
->i_state
& I_NEW
))
526 * initialize the inode with the stat info
527 * FIXME!! we may need support for stale inodes
530 inode
->i_ino
= i_ino
;
531 umode
= p9mode2unixmode(v9ses
, st
, &rdev
);
532 retval
= v9fs_init_inode(v9ses
, inode
, umode
, rdev
);
536 v9fs_stat2inode(st
, inode
, sb
);
537 #ifdef CONFIG_9P_FSCACHE
538 v9fs_cache_inode_get_cookie(inode
);
540 unlock_new_inode(inode
);
543 unlock_new_inode(inode
);
545 return ERR_PTR(retval
);
550 v9fs_inode_from_fid(struct v9fs_session_info
*v9ses
, struct p9_fid
*fid
,
551 struct super_block
*sb
, int new)
554 struct inode
*inode
= NULL
;
556 st
= p9_client_stat(fid
);
560 inode
= v9fs_qid_iget(sb
, &st
->qid
, st
, new);
567 * v9fs_at_to_dotl_flags- convert Linux specific AT flags to
569 * @flags: flags to convert
571 static int v9fs_at_to_dotl_flags(int flags
)
574 if (flags
& AT_REMOVEDIR
)
575 rflags
|= P9_DOTL_AT_REMOVEDIR
;
580 * v9fs_remove - helper function to remove files and directories
581 * @dir: directory inode that is being deleted
582 * @dentry: dentry that is being deleted
583 * @rmdir: removing a directory
587 static int v9fs_remove(struct inode
*dir
, struct dentry
*dentry
, int flags
)
590 int retval
= -EOPNOTSUPP
;
591 struct p9_fid
*v9fid
, *dfid
;
592 struct v9fs_session_info
*v9ses
;
594 p9_debug(P9_DEBUG_VFS
, "inode: %p dentry: %p rmdir: %x\n",
597 v9ses
= v9fs_inode2v9ses(dir
);
598 inode
= dentry
->d_inode
;
599 dfid
= v9fs_fid_lookup(dentry
->d_parent
);
601 retval
= PTR_ERR(dfid
);
602 p9_debug(P9_DEBUG_VFS
, "fid lookup failed %d\n", retval
);
605 if (v9fs_proto_dotl(v9ses
))
606 retval
= p9_client_unlinkat(dfid
, dentry
->d_name
.name
,
607 v9fs_at_to_dotl_flags(flags
));
608 if (retval
== -EOPNOTSUPP
) {
609 /* Try the one based on path */
610 v9fid
= v9fs_fid_clone(dentry
);
612 return PTR_ERR(v9fid
);
613 retval
= p9_client_remove(v9fid
);
617 * directories on unlink should have zero
620 if (flags
& AT_REMOVEDIR
) {
626 v9fs_invalidate_inode_attr(inode
);
627 v9fs_invalidate_inode_attr(dir
);
633 * v9fs_create - Create a file
634 * @v9ses: session information
635 * @dir: directory that dentry is being created in
636 * @dentry: dentry that is being created
637 * @extension: 9p2000.u extension string to support devices, etc.
638 * @perm: create permissions
642 static struct p9_fid
*
643 v9fs_create(struct v9fs_session_info
*v9ses
, struct inode
*dir
,
644 struct dentry
*dentry
, char *extension
, u32 perm
, u8 mode
)
648 struct p9_fid
*dfid
, *ofid
, *fid
;
651 p9_debug(P9_DEBUG_VFS
, "name %s\n", dentry
->d_name
.name
);
656 name
= (char *) dentry
->d_name
.name
;
657 dfid
= v9fs_fid_lookup(dentry
->d_parent
);
660 p9_debug(P9_DEBUG_VFS
, "fid lookup failed %d\n", err
);
664 /* clone a fid to use for creation */
665 ofid
= p9_client_walk(dfid
, 0, NULL
, 1);
668 p9_debug(P9_DEBUG_VFS
, "p9_client_walk failed %d\n", err
);
672 err
= p9_client_fcreate(ofid
, name
, perm
, mode
, extension
);
674 p9_debug(P9_DEBUG_VFS
, "p9_client_fcreate failed %d\n", err
);
678 if (!(perm
& P9_DMLINK
)) {
679 /* now walk from the parent so we can get unopened fid */
680 fid
= p9_client_walk(dfid
, 1, &name
, 1);
683 p9_debug(P9_DEBUG_VFS
,
684 "p9_client_walk failed %d\n", err
);
689 * instantiate inode and assign the unopened fid to the dentry
691 inode
= v9fs_get_new_inode_from_fid(v9ses
, fid
, dir
->i_sb
);
693 err
= PTR_ERR(inode
);
694 p9_debug(P9_DEBUG_VFS
,
695 "inode creation failed %d\n", err
);
698 err
= v9fs_fid_add(dentry
, fid
);
701 d_instantiate(dentry
, inode
);
706 p9_client_clunk(ofid
);
709 p9_client_clunk(fid
);
715 * v9fs_vfs_create - VFS hook to create a regular file
717 * open(.., O_CREAT) is handled in v9fs_vfs_atomic_open(). This is only called
720 * @dir: directory inode that is being created
721 * @dentry: dentry that is being deleted
722 * @mode: create permissions
727 v9fs_vfs_create(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
,
730 struct v9fs_session_info
*v9ses
= v9fs_inode2v9ses(dir
);
731 u32 perm
= unixmode2p9mode(v9ses
, mode
);
735 fid
= v9fs_create(v9ses
, dir
, dentry
, NULL
, perm
, P9_ORDWR
);
739 v9fs_invalidate_inode_attr(dir
);
740 p9_client_clunk(fid
);
746 * v9fs_vfs_mkdir - VFS mkdir hook to create a directory
747 * @dir: inode that is being unlinked
748 * @dentry: dentry that is being unlinked
749 * @mode: mode for new directory
753 static int v9fs_vfs_mkdir(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
)
758 struct v9fs_session_info
*v9ses
;
760 p9_debug(P9_DEBUG_VFS
, "name %s\n", dentry
->d_name
.name
);
762 v9ses
= v9fs_inode2v9ses(dir
);
763 perm
= unixmode2p9mode(v9ses
, mode
| S_IFDIR
);
764 fid
= v9fs_create(v9ses
, dir
, dentry
, NULL
, perm
, P9_OREAD
);
770 v9fs_invalidate_inode_attr(dir
);
774 p9_client_clunk(fid
);
780 * v9fs_vfs_lookup - VFS lookup hook to "walk" to a new inode
781 * @dir: inode that is being walked from
782 * @dentry: dentry that is being walked to?
783 * @nameidata: path data
787 struct dentry
*v9fs_vfs_lookup(struct inode
*dir
, struct dentry
*dentry
,
791 struct super_block
*sb
;
792 struct v9fs_session_info
*v9ses
;
793 struct p9_fid
*dfid
, *fid
;
798 p9_debug(P9_DEBUG_VFS
, "dir: %p dentry: (%s) %p flags: %x\n",
799 dir
, dentry
->d_name
.name
, dentry
, flags
);
801 if (dentry
->d_name
.len
> NAME_MAX
)
802 return ERR_PTR(-ENAMETOOLONG
);
805 v9ses
= v9fs_inode2v9ses(dir
);
806 /* We can walk d_parent because we hold the dir->i_mutex */
807 dfid
= v9fs_fid_lookup(dentry
->d_parent
);
809 return ERR_CAST(dfid
);
811 name
= (char *) dentry
->d_name
.name
;
812 fid
= p9_client_walk(dfid
, 1, &name
, 1);
814 result
= PTR_ERR(fid
);
815 if (result
== -ENOENT
) {
820 return ERR_PTR(result
);
823 * Make sure we don't use a wrong inode due to parallel
824 * unlink. For cached mode create calls request for new
825 * inode. But with cache disabled, lookup should do this.
828 inode
= v9fs_get_inode_from_fid(v9ses
, fid
, dir
->i_sb
);
830 inode
= v9fs_get_new_inode_from_fid(v9ses
, fid
, dir
->i_sb
);
832 result
= PTR_ERR(inode
);
836 result
= v9fs_fid_add(dentry
, fid
);
841 * If we had a rename on the server and a parallel lookup
842 * for the new name, then make sure we instantiate with
843 * the new name. ie look up for a/b, while on server somebody
844 * moved b under k and client parallely did a lookup for
847 res
= d_materialise_unique(dentry
, inode
);
850 result
= PTR_ERR(res
);
854 p9_client_clunk(fid
);
856 return ERR_PTR(result
);
860 v9fs_vfs_atomic_open(struct inode
*dir
, struct dentry
*dentry
,
861 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_unhashed(dentry
)) {
872 res
= v9fs_vfs_lookup(dir
, dentry
, 0);
881 if (!(flags
& O_CREAT
) || dentry
->d_inode
)
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(dentry
->d_inode
);
899 mutex_lock(&v9inode
->v_mutex
);
900 if (v9ses
->cache
&& !v9inode
->writeback_fid
&&
901 ((flags
& O_ACCMODE
) != O_RDONLY
)) {
903 * clone a fid and add it to writeback_fid
904 * we do it during open time instead of
905 * page dirty time via write_begin/page_mkwrite
906 * because we want write after unlink usecase
909 inode_fid
= v9fs_writeback_fid(dentry
);
910 if (IS_ERR(inode_fid
)) {
911 err
= PTR_ERR(inode_fid
);
912 mutex_unlock(&v9inode
->v_mutex
);
915 v9inode
->writeback_fid
= (void *) inode_fid
;
917 mutex_unlock(&v9inode
->v_mutex
);
918 err
= finish_open(file
, dentry
, generic_file_open
, opened
);
922 file
->private_data
= fid
;
923 #ifdef CONFIG_9P_FSCACHE
925 v9fs_cache_inode_set_cookie(dentry
->d_inode
, 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
)
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
;
985 p9_debug(P9_DEBUG_VFS
, "\n");
987 old_inode
= old_dentry
->d_inode
;
988 new_inode
= new_dentry
->d_inode
;
989 v9ses
= v9fs_inode2v9ses(old_inode
);
990 oldfid
= v9fs_fid_lookup(old_dentry
);
992 return PTR_ERR(oldfid
);
994 olddirfid
= v9fs_fid_clone(old_dentry
->d_parent
);
995 if (IS_ERR(olddirfid
)) {
996 retval
= PTR_ERR(olddirfid
);
1000 newdirfid
= v9fs_fid_clone(new_dentry
->d_parent
);
1001 if (IS_ERR(newdirfid
)) {
1002 retval
= PTR_ERR(newdirfid
);
1006 down_write(&v9ses
->rename_sem
);
1007 if (v9fs_proto_dotl(v9ses
)) {
1008 retval
= p9_client_renameat(olddirfid
, old_dentry
->d_name
.name
,
1009 newdirfid
, new_dentry
->d_name
.name
);
1010 if (retval
== -EOPNOTSUPP
)
1011 retval
= p9_client_rename(oldfid
, newdirfid
,
1012 new_dentry
->d_name
.name
);
1013 if (retval
!= -EOPNOTSUPP
)
1016 if (old_dentry
->d_parent
!= new_dentry
->d_parent
) {
1018 * 9P .u can only handle file rename in the same directory
1021 p9_debug(P9_DEBUG_ERROR
, "old dir and new dir are different\n");
1025 v9fs_blank_wstat(&wstat
);
1026 wstat
.muid
= v9ses
->uname
;
1027 wstat
.name
= (char *) new_dentry
->d_name
.name
;
1028 retval
= p9_client_wstat(oldfid
, &wstat
);
1033 if (S_ISDIR(new_inode
->i_mode
))
1034 clear_nlink(new_inode
);
1036 drop_nlink(new_inode
);
1038 if (S_ISDIR(old_inode
->i_mode
)) {
1041 drop_nlink(old_dir
);
1043 v9fs_invalidate_inode_attr(old_inode
);
1044 v9fs_invalidate_inode_attr(old_dir
);
1045 v9fs_invalidate_inode_attr(new_dir
);
1047 /* successful rename */
1048 d_move(old_dentry
, new_dentry
);
1050 up_write(&v9ses
->rename_sem
);
1051 p9_client_clunk(newdirfid
);
1054 p9_client_clunk(olddirfid
);
1061 * v9fs_vfs_getattr - retrieve file metadata
1062 * @mnt: mount information
1063 * @dentry: file to get attributes on
1064 * @stat: metadata structure to populate
1069 v9fs_vfs_getattr(struct vfsmount
*mnt
, struct dentry
*dentry
,
1073 struct v9fs_session_info
*v9ses
;
1075 struct p9_wstat
*st
;
1077 p9_debug(P9_DEBUG_VFS
, "dentry: %p\n", dentry
);
1079 v9ses
= v9fs_dentry2v9ses(dentry
);
1080 if (v9ses
->cache
== CACHE_LOOSE
|| v9ses
->cache
== CACHE_FSCACHE
) {
1081 generic_fillattr(dentry
->d_inode
, stat
);
1084 fid
= v9fs_fid_lookup(dentry
);
1086 return PTR_ERR(fid
);
1088 st
= p9_client_stat(fid
);
1092 v9fs_stat2inode(st
, dentry
->d_inode
, dentry
->d_inode
->i_sb
);
1093 generic_fillattr(dentry
->d_inode
, stat
);
1101 * v9fs_vfs_setattr - set file metadata
1102 * @dentry: file whose metadata to set
1103 * @iattr: metadata assignment structure
1107 static int v9fs_vfs_setattr(struct dentry
*dentry
, struct iattr
*iattr
)
1110 struct v9fs_session_info
*v9ses
;
1112 struct p9_wstat wstat
;
1114 p9_debug(P9_DEBUG_VFS
, "\n");
1115 retval
= inode_change_ok(dentry
->d_inode
, iattr
);
1120 v9ses
= v9fs_dentry2v9ses(dentry
);
1121 fid
= v9fs_fid_lookup(dentry
);
1123 return PTR_ERR(fid
);
1125 v9fs_blank_wstat(&wstat
);
1126 if (iattr
->ia_valid
& ATTR_MODE
)
1127 wstat
.mode
= unixmode2p9mode(v9ses
, iattr
->ia_mode
);
1129 if (iattr
->ia_valid
& ATTR_MTIME
)
1130 wstat
.mtime
= iattr
->ia_mtime
.tv_sec
;
1132 if (iattr
->ia_valid
& ATTR_ATIME
)
1133 wstat
.atime
= iattr
->ia_atime
.tv_sec
;
1135 if (iattr
->ia_valid
& ATTR_SIZE
)
1136 wstat
.length
= iattr
->ia_size
;
1138 if (v9fs_proto_dotu(v9ses
)) {
1139 if (iattr
->ia_valid
& ATTR_UID
)
1140 wstat
.n_uid
= iattr
->ia_uid
;
1142 if (iattr
->ia_valid
& ATTR_GID
)
1143 wstat
.n_gid
= iattr
->ia_gid
;
1146 /* Write all dirty data */
1147 if (S_ISREG(dentry
->d_inode
->i_mode
))
1148 filemap_write_and_wait(dentry
->d_inode
->i_mapping
);
1150 retval
= p9_client_wstat(fid
, &wstat
);
1154 if ((iattr
->ia_valid
& ATTR_SIZE
) &&
1155 iattr
->ia_size
!= i_size_read(dentry
->d_inode
))
1156 truncate_setsize(dentry
->d_inode
, iattr
->ia_size
);
1158 v9fs_invalidate_inode_attr(dentry
->d_inode
);
1160 setattr_copy(dentry
->d_inode
, iattr
);
1161 mark_inode_dirty(dentry
->d_inode
);
1166 * v9fs_stat2inode - populate an inode structure with mistat info
1167 * @stat: Plan 9 metadata (mistat) structure
1168 * @inode: inode to populate
1169 * @sb: superblock of filesystem
1174 v9fs_stat2inode(struct p9_wstat
*stat
, struct inode
*inode
,
1175 struct super_block
*sb
)
1180 unsigned int i_nlink
;
1181 struct v9fs_session_info
*v9ses
= sb
->s_fs_info
;
1182 struct v9fs_inode
*v9inode
= V9FS_I(inode
);
1184 set_nlink(inode
, 1);
1186 inode
->i_atime
.tv_sec
= stat
->atime
;
1187 inode
->i_mtime
.tv_sec
= stat
->mtime
;
1188 inode
->i_ctime
.tv_sec
= stat
->mtime
;
1190 inode
->i_uid
= v9ses
->dfltuid
;
1191 inode
->i_gid
= v9ses
->dfltgid
;
1193 if (v9fs_proto_dotu(v9ses
)) {
1194 inode
->i_uid
= stat
->n_uid
;
1195 inode
->i_gid
= stat
->n_gid
;
1197 if ((S_ISREG(inode
->i_mode
)) || (S_ISDIR(inode
->i_mode
))) {
1198 if (v9fs_proto_dotu(v9ses
) && (stat
->extension
[0] != '\0')) {
1200 * Hadlink support got added later to
1201 * to the .u extension. So there can be
1202 * server out there that doesn't support
1203 * this even with .u extension. So check
1204 * for non NULL stat->extension
1206 strncpy(ext
, stat
->extension
, sizeof(ext
));
1207 /* HARDLINKCOUNT %u */
1208 sscanf(ext
, "%13s %u", tag_name
, &i_nlink
);
1209 if (!strncmp(tag_name
, "HARDLINKCOUNT", 13))
1210 set_nlink(inode
, i_nlink
);
1213 mode
= p9mode2perm(v9ses
, stat
);
1214 mode
|= inode
->i_mode
& ~S_IALLUGO
;
1215 inode
->i_mode
= mode
;
1216 i_size_write(inode
, stat
->length
);
1218 /* not real number of blocks, but 512 byte ones ... */
1219 inode
->i_blocks
= (i_size_read(inode
) + 512 - 1) >> 9;
1220 v9inode
->cache_validity
&= ~V9FS_INO_INVALID_ATTR
;
1224 * v9fs_qid2ino - convert qid into inode number
1227 * BUG: potential for inode number collisions?
1230 ino_t
v9fs_qid2ino(struct p9_qid
*qid
)
1232 u64 path
= qid
->path
+ 2;
1235 if (sizeof(ino_t
) == sizeof(path
))
1236 memcpy(&i
, &path
, sizeof(ino_t
));
1238 i
= (ino_t
) (path
^ (path
>> 32));
1244 * v9fs_readlink - read a symlink's location (internal version)
1245 * @dentry: dentry for symlink
1246 * @buffer: buffer to load symlink location into
1247 * @buflen: length of buffer
1251 static int v9fs_readlink(struct dentry
*dentry
, char *buffer
, int buflen
)
1255 struct v9fs_session_info
*v9ses
;
1257 struct p9_wstat
*st
;
1259 p9_debug(P9_DEBUG_VFS
, " %s\n", dentry
->d_name
.name
);
1261 v9ses
= v9fs_dentry2v9ses(dentry
);
1262 fid
= v9fs_fid_lookup(dentry
);
1264 return PTR_ERR(fid
);
1266 if (!v9fs_proto_dotu(v9ses
))
1269 st
= p9_client_stat(fid
);
1273 if (!(st
->mode
& P9_DMSYMLINK
)) {
1278 /* copy extension buffer into buffer */
1279 retval
= min(strlen(st
->extension
)+1, (size_t)buflen
);
1280 memcpy(buffer
, st
->extension
, retval
);
1282 p9_debug(P9_DEBUG_VFS
, "%s -> %s (%.*s)\n",
1283 dentry
->d_name
.name
, st
->extension
, buflen
, buffer
);
1292 * v9fs_vfs_follow_link - follow a symlink path
1293 * @dentry: dentry for symlink
1298 static void *v9fs_vfs_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
1301 char *link
= __getname();
1303 p9_debug(P9_DEBUG_VFS
, "%s\n", dentry
->d_name
.name
);
1306 link
= ERR_PTR(-ENOMEM
);
1308 len
= v9fs_readlink(dentry
, link
, PATH_MAX
);
1312 link
= ERR_PTR(len
);
1314 link
[min(len
, PATH_MAX
-1)] = 0;
1316 nd_set_link(nd
, link
);
1322 * v9fs_vfs_put_link - release a symlink path
1323 * @dentry: dentry for symlink
1330 v9fs_vfs_put_link(struct dentry
*dentry
, struct nameidata
*nd
, void *p
)
1332 char *s
= nd_get_link(nd
);
1334 p9_debug(P9_DEBUG_VFS
, " %s %s\n",
1335 dentry
->d_name
.name
, IS_ERR(s
) ? "<error>" : s
);
1341 * v9fs_vfs_mkspecial - create a special file
1342 * @dir: inode to create special file in
1343 * @dentry: dentry to create
1344 * @mode: mode to create special file
1345 * @extension: 9p2000.u format extension string representing special file
1349 static int v9fs_vfs_mkspecial(struct inode
*dir
, struct dentry
*dentry
,
1350 u32 perm
, const char *extension
)
1353 struct v9fs_session_info
*v9ses
;
1355 v9ses
= v9fs_inode2v9ses(dir
);
1356 if (!v9fs_proto_dotu(v9ses
)) {
1357 p9_debug(P9_DEBUG_ERROR
, "not extended\n");
1361 fid
= v9fs_create(v9ses
, dir
, dentry
, (char *) extension
, perm
,
1364 return PTR_ERR(fid
);
1366 v9fs_invalidate_inode_attr(dir
);
1367 p9_client_clunk(fid
);
1372 * v9fs_vfs_symlink - helper function to create symlinks
1373 * @dir: directory inode containing symlink
1374 * @dentry: dentry for symlink
1375 * @symname: symlink data
1377 * See Also: 9P2000.u RFC for more information
1382 v9fs_vfs_symlink(struct inode
*dir
, struct dentry
*dentry
, const char *symname
)
1384 p9_debug(P9_DEBUG_VFS
, " %lu,%s,%s\n",
1385 dir
->i_ino
, dentry
->d_name
.name
, symname
);
1387 return v9fs_vfs_mkspecial(dir
, dentry
, P9_DMSYMLINK
, symname
);
1391 * v9fs_vfs_link - create a hardlink
1392 * @old_dentry: dentry for file to link to
1393 * @dir: inode destination for new link
1394 * @dentry: dentry for link
1399 v9fs_vfs_link(struct dentry
*old_dentry
, struct inode
*dir
,
1400 struct dentry
*dentry
)
1404 struct p9_fid
*oldfid
;
1406 p9_debug(P9_DEBUG_VFS
, " %lu,%s,%s\n",
1407 dir
->i_ino
, dentry
->d_name
.name
, old_dentry
->d_name
.name
);
1409 oldfid
= v9fs_fid_clone(old_dentry
);
1411 return PTR_ERR(oldfid
);
1414 if (unlikely(!name
)) {
1419 sprintf(name
, "%d\n", oldfid
->fid
);
1420 retval
= v9fs_vfs_mkspecial(dir
, dentry
, P9_DMLINK
, name
);
1423 v9fs_refresh_inode(oldfid
, old_dentry
->d_inode
);
1424 v9fs_invalidate_inode_attr(dir
);
1427 p9_client_clunk(oldfid
);
1432 * v9fs_vfs_mknod - create a special file
1433 * @dir: inode destination for new link
1434 * @dentry: dentry for file
1435 * @mode: mode for creation
1436 * @rdev: device associated with special file
1441 v9fs_vfs_mknod(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
, dev_t rdev
)
1443 struct v9fs_session_info
*v9ses
= v9fs_inode2v9ses(dir
);
1448 p9_debug(P9_DEBUG_VFS
, " %lu,%s mode: %hx MAJOR: %u MINOR: %u\n",
1449 dir
->i_ino
, dentry
->d_name
.name
, mode
,
1450 MAJOR(rdev
), MINOR(rdev
));
1452 if (!new_valid_dev(rdev
))
1458 /* build extension */
1460 sprintf(name
, "b %u %u", MAJOR(rdev
), MINOR(rdev
));
1461 else if (S_ISCHR(mode
))
1462 sprintf(name
, "c %u %u", MAJOR(rdev
), MINOR(rdev
));
1463 else if (S_ISFIFO(mode
))
1465 else if (S_ISSOCK(mode
))
1472 perm
= unixmode2p9mode(v9ses
, mode
);
1473 retval
= v9fs_vfs_mkspecial(dir
, dentry
, perm
, name
);
1479 int v9fs_refresh_inode(struct p9_fid
*fid
, struct inode
*inode
)
1484 struct p9_wstat
*st
;
1485 struct v9fs_session_info
*v9ses
;
1487 v9ses
= v9fs_inode2v9ses(inode
);
1488 st
= p9_client_stat(fid
);
1492 * Don't update inode if the file type is different
1494 umode
= p9mode2unixmode(v9ses
, st
, &rdev
);
1495 if ((inode
->i_mode
& S_IFMT
) != (umode
& S_IFMT
))
1498 spin_lock(&inode
->i_lock
);
1500 * We don't want to refresh inode->i_size,
1501 * because we may have cached data
1503 i_size
= inode
->i_size
;
1504 v9fs_stat2inode(st
, inode
, inode
->i_sb
);
1506 inode
->i_size
= i_size
;
1507 spin_unlock(&inode
->i_lock
);
1514 static const struct inode_operations v9fs_dir_inode_operations_dotu
= {
1515 .create
= v9fs_vfs_create
,
1516 .lookup
= v9fs_vfs_lookup
,
1517 .atomic_open
= v9fs_vfs_atomic_open
,
1518 .symlink
= v9fs_vfs_symlink
,
1519 .link
= v9fs_vfs_link
,
1520 .unlink
= v9fs_vfs_unlink
,
1521 .mkdir
= v9fs_vfs_mkdir
,
1522 .rmdir
= v9fs_vfs_rmdir
,
1523 .mknod
= v9fs_vfs_mknod
,
1524 .rename
= v9fs_vfs_rename
,
1525 .getattr
= v9fs_vfs_getattr
,
1526 .setattr
= v9fs_vfs_setattr
,
1529 static const struct inode_operations v9fs_dir_inode_operations
= {
1530 .create
= v9fs_vfs_create
,
1531 .lookup
= v9fs_vfs_lookup
,
1532 .atomic_open
= v9fs_vfs_atomic_open
,
1533 .unlink
= v9fs_vfs_unlink
,
1534 .mkdir
= v9fs_vfs_mkdir
,
1535 .rmdir
= v9fs_vfs_rmdir
,
1536 .mknod
= v9fs_vfs_mknod
,
1537 .rename
= v9fs_vfs_rename
,
1538 .getattr
= v9fs_vfs_getattr
,
1539 .setattr
= v9fs_vfs_setattr
,
1542 static const struct inode_operations v9fs_file_inode_operations
= {
1543 .getattr
= v9fs_vfs_getattr
,
1544 .setattr
= v9fs_vfs_setattr
,
1547 static const struct inode_operations v9fs_symlink_inode_operations
= {
1548 .readlink
= generic_readlink
,
1549 .follow_link
= v9fs_vfs_follow_link
,
1550 .put_link
= v9fs_vfs_put_link
,
1551 .getattr
= v9fs_vfs_getattr
,
1552 .setattr
= v9fs_vfs_setattr
,