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 #include <linux/module.h>
27 #include <linux/errno.h>
29 #include <linux/file.h>
30 #include <linux/pagemap.h>
31 #include <linux/stat.h>
32 #include <linux/string.h>
33 #include <linux/inet.h>
34 #include <linux/namei.h>
35 #include <linux/idr.h>
36 #include <linux/sched.h>
37 #include <linux/slab.h>
38 #include <linux/xattr.h>
39 #include <linux/posix_acl.h>
40 #include <net/9p/9p.h>
41 #include <net/9p/client.h>
50 static const struct inode_operations v9fs_dir_inode_operations
;
51 static const struct inode_operations v9fs_dir_inode_operations_dotu
;
52 static const struct inode_operations v9fs_file_inode_operations
;
53 static const struct inode_operations v9fs_symlink_inode_operations
;
56 * unixmode2p9mode - convert unix mode bits to plan 9
57 * @v9ses: v9fs session information
58 * @mode: mode to convert
62 static int unixmode2p9mode(struct v9fs_session_info
*v9ses
, int mode
)
68 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
)
88 if ((mode
& P9_DMLINK
))
96 * p9mode2unixmode- convert plan9 mode bits to unix mode bits
97 * @v9ses: v9fs session information
98 * @mode: mode to convert
102 static int p9mode2unixmode(struct v9fs_session_info
*v9ses
, int mode
)
108 if ((mode
& P9_DMDIR
) == P9_DMDIR
)
110 else if ((mode
& P9_DMSYMLINK
) && (v9fs_proto_dotu(v9ses
)))
112 else if ((mode
& P9_DMSOCKET
) && (v9fs_proto_dotu(v9ses
))
113 && (v9ses
->nodev
== 0))
115 else if ((mode
& P9_DMNAMEDPIPE
) && (v9fs_proto_dotu(v9ses
))
116 && (v9ses
->nodev
== 0))
118 else if ((mode
& P9_DMDEVICE
) && (v9fs_proto_dotu(v9ses
))
119 && (v9ses
->nodev
== 0))
124 if (v9fs_proto_dotu(v9ses
)) {
125 if ((mode
& P9_DMSETUID
) == P9_DMSETUID
)
128 if ((mode
& P9_DMSETGID
) == P9_DMSETGID
)
131 if ((mode
& P9_DMSETVTX
) == P9_DMSETVTX
)
139 * v9fs_uflags2omode- convert posix open flags to plan 9 mode bits
140 * @uflags: flags to convert
141 * @extended: if .u extensions are active
144 int v9fs_uflags2omode(int uflags
, int extended
)
164 if (uflags
& O_TRUNC
)
171 if (uflags
& O_APPEND
)
179 * v9fs_blank_wstat - helper function to setup a 9P stat structure
180 * @wstat: structure to initialize
185 v9fs_blank_wstat(struct p9_wstat
*wstat
)
189 wstat
->qid
.type
= ~0;
190 wstat
->qid
.version
= ~0;
191 *((long long *)&wstat
->qid
.path
) = ~0;
203 wstat
->extension
= NULL
;
207 * v9fs_alloc_inode - helper function to allocate an inode
210 struct inode
*v9fs_alloc_inode(struct super_block
*sb
)
212 struct v9fs_inode
*v9inode
;
213 v9inode
= (struct v9fs_inode
*)kmem_cache_alloc(v9fs_inode_cache
,
217 #ifdef CONFIG_9P_FSCACHE
218 v9inode
->fscache
= NULL
;
219 v9inode
->fscache_key
= NULL
;
220 spin_lock_init(&v9inode
->fscache_lock
);
222 v9inode
->writeback_fid
= NULL
;
223 v9inode
->cache_validity
= 0;
224 mutex_init(&v9inode
->v_mutex
);
225 return &v9inode
->vfs_inode
;
229 * v9fs_destroy_inode - destroy an inode
233 static void v9fs_i_callback(struct rcu_head
*head
)
235 struct inode
*inode
= container_of(head
, struct inode
, i_rcu
);
236 INIT_LIST_HEAD(&inode
->i_dentry
);
237 kmem_cache_free(v9fs_inode_cache
, V9FS_I(inode
));
240 void v9fs_destroy_inode(struct inode
*inode
)
242 call_rcu(&inode
->i_rcu
, v9fs_i_callback
);
245 int v9fs_init_inode(struct v9fs_session_info
*v9ses
,
246 struct inode
*inode
, int mode
)
250 inode_init_owner(inode
, NULL
, mode
);
253 inode
->i_atime
= inode
->i_mtime
= inode
->i_ctime
= CURRENT_TIME
;
254 inode
->i_mapping
->a_ops
= &v9fs_addr_operations
;
256 switch (mode
& S_IFMT
) {
261 if (v9fs_proto_dotl(v9ses
)) {
262 inode
->i_op
= &v9fs_file_inode_operations_dotl
;
263 inode
->i_fop
= &v9fs_file_operations_dotl
;
264 } else if (v9fs_proto_dotu(v9ses
)) {
265 inode
->i_op
= &v9fs_file_inode_operations
;
266 inode
->i_fop
= &v9fs_file_operations
;
268 P9_DPRINTK(P9_DEBUG_ERROR
,
269 "special files without extended mode\n");
273 init_special_inode(inode
, inode
->i_mode
, inode
->i_rdev
);
276 if (v9fs_proto_dotl(v9ses
)) {
277 inode
->i_op
= &v9fs_file_inode_operations_dotl
;
280 &v9fs_cached_file_operations_dotl
;
282 inode
->i_fop
= &v9fs_file_operations_dotl
;
284 inode
->i_op
= &v9fs_file_inode_operations
;
286 inode
->i_fop
= &v9fs_cached_file_operations
;
288 inode
->i_fop
= &v9fs_file_operations
;
293 if (!v9fs_proto_dotu(v9ses
) && !v9fs_proto_dotl(v9ses
)) {
294 P9_DPRINTK(P9_DEBUG_ERROR
, "extended modes used with "
295 "legacy protocol.\n");
300 if (v9fs_proto_dotl(v9ses
))
301 inode
->i_op
= &v9fs_symlink_inode_operations_dotl
;
303 inode
->i_op
= &v9fs_symlink_inode_operations
;
308 if (v9fs_proto_dotl(v9ses
))
309 inode
->i_op
= &v9fs_dir_inode_operations_dotl
;
310 else if (v9fs_proto_dotu(v9ses
))
311 inode
->i_op
= &v9fs_dir_inode_operations_dotu
;
313 inode
->i_op
= &v9fs_dir_inode_operations
;
315 if (v9fs_proto_dotl(v9ses
))
316 inode
->i_fop
= &v9fs_dir_operations_dotl
;
318 inode
->i_fop
= &v9fs_dir_operations
;
322 P9_DPRINTK(P9_DEBUG_ERROR
, "BAD mode 0x%x S_IFMT 0x%x\n",
323 mode
, mode
& S_IFMT
);
333 * v9fs_get_inode - helper function to setup an inode
335 * @mode: mode to setup inode with
339 struct inode
*v9fs_get_inode(struct super_block
*sb
, int mode
)
343 struct v9fs_session_info
*v9ses
= sb
->s_fs_info
;
345 P9_DPRINTK(P9_DEBUG_VFS
, "super block: %p mode: %o\n", sb
, mode
);
347 inode
= new_inode(sb
);
349 P9_EPRINTK(KERN_WARNING
, "Problem allocating inode\n");
350 return ERR_PTR(-ENOMEM
);
352 err
= v9fs_init_inode(v9ses
, inode
, mode
);
361 static struct v9fs_fid*
362 v9fs_clone_walk(struct v9fs_session_info *v9ses, u32 fid, struct dentry *dentry)
366 struct v9fs_fid *ret;
367 struct v9fs_fcall *fcall;
369 nfid = v9fs_get_idpool(&v9ses->fidpool);
371 eprintk(KERN_WARNING, "no free fids available\n");
372 return ERR_PTR(-ENOSPC);
375 err = v9fs_t_walk(v9ses, fid, nfid, (char *) dentry->d_name.name,
379 if (fcall && fcall->id == RWALK)
382 PRINT_FCALL_ERROR("walk error", fcall);
383 v9fs_put_idpool(nfid, &v9ses->fidpool);
389 ret = v9fs_fid_create(v9ses, nfid);
395 err = v9fs_fid_insert(ret, dentry);
397 v9fs_fid_destroy(ret);
404 v9fs_t_clunk(v9ses, nfid);
414 * v9fs_clear_inode - release an inode
415 * @inode: inode to release
418 void v9fs_evict_inode(struct inode
*inode
)
420 struct v9fs_inode
*v9inode
= V9FS_I(inode
);
422 truncate_inode_pages(inode
->i_mapping
, 0);
423 end_writeback(inode
);
424 filemap_fdatawrite(inode
->i_mapping
);
426 #ifdef CONFIG_9P_FSCACHE
427 v9fs_cache_inode_put_cookie(inode
);
429 /* clunk the fid stashed in writeback_fid */
430 if (v9inode
->writeback_fid
) {
431 p9_client_clunk(v9inode
->writeback_fid
);
432 v9inode
->writeback_fid
= NULL
;
436 static struct inode
*v9fs_qid_iget(struct super_block
*sb
,
443 struct v9fs_session_info
*v9ses
= sb
->s_fs_info
;
445 i_ino
= v9fs_qid2ino(qid
);
446 inode
= iget_locked(sb
, i_ino
);
448 return ERR_PTR(-ENOMEM
);
449 if (!(inode
->i_state
& I_NEW
))
452 * initialize the inode with the stat info
453 * FIXME!! we may need support for stale inodes
456 umode
= p9mode2unixmode(v9ses
, st
->mode
);
457 retval
= v9fs_init_inode(v9ses
, inode
, umode
);
461 v9fs_stat2inode(st
, inode
, sb
);
462 #ifdef CONFIG_9P_FSCACHE
463 v9fs_fscache_set_key(inode
, &st
->qid
);
464 v9fs_cache_inode_get_cookie(inode
);
466 unlock_new_inode(inode
);
469 unlock_new_inode(inode
);
471 return ERR_PTR(retval
);
476 v9fs_inode_from_fid(struct v9fs_session_info
*v9ses
, struct p9_fid
*fid
,
477 struct super_block
*sb
)
480 struct inode
*inode
= NULL
;
482 st
= p9_client_stat(fid
);
486 inode
= v9fs_qid_iget(sb
, &st
->qid
, st
);
493 * v9fs_remove - helper function to remove files and directories
494 * @dir: directory inode that is being deleted
495 * @file: dentry that is being deleted
496 * @rmdir: removing a directory
500 static int v9fs_remove(struct inode
*dir
, struct dentry
*file
, int rmdir
)
503 struct p9_fid
*v9fid
;
504 struct inode
*file_inode
;
506 P9_DPRINTK(P9_DEBUG_VFS
, "inode: %p dentry: %p rmdir: %d\n", dir
, file
,
509 file_inode
= file
->d_inode
;
510 v9fid
= v9fs_fid_clone(file
);
512 return PTR_ERR(v9fid
);
514 retval
= p9_client_remove(v9fid
);
517 * directories on unlink should have zero
521 clear_nlink(file_inode
);
524 drop_nlink(file_inode
);
526 v9fs_invalidate_inode_attr(file_inode
);
527 v9fs_invalidate_inode_attr(dir
);
533 * v9fs_create - Create a file
534 * @v9ses: session information
535 * @dir: directory that dentry is being created in
536 * @dentry: dentry that is being created
537 * @extension: 9p2000.u extension string to support devices, etc.
538 * @perm: create permissions
542 static struct p9_fid
*
543 v9fs_create(struct v9fs_session_info
*v9ses
, struct inode
*dir
,
544 struct dentry
*dentry
, char *extension
, u32 perm
, u8 mode
)
548 struct p9_fid
*dfid
, *ofid
, *fid
;
551 P9_DPRINTK(P9_DEBUG_VFS
, "name %s\n", dentry
->d_name
.name
);
556 name
= (char *) dentry
->d_name
.name
;
557 dfid
= v9fs_fid_lookup(dentry
->d_parent
);
560 P9_DPRINTK(P9_DEBUG_VFS
, "fid lookup failed %d\n", err
);
564 /* clone a fid to use for creation */
565 ofid
= p9_client_walk(dfid
, 0, NULL
, 1);
568 P9_DPRINTK(P9_DEBUG_VFS
, "p9_client_walk failed %d\n", err
);
572 err
= p9_client_fcreate(ofid
, name
, perm
, mode
, extension
);
574 P9_DPRINTK(P9_DEBUG_VFS
, "p9_client_fcreate failed %d\n", err
);
578 /* now walk from the parent so we can get unopened fid */
579 fid
= p9_client_walk(dfid
, 1, &name
, 1);
582 P9_DPRINTK(P9_DEBUG_VFS
, "p9_client_walk failed %d\n", err
);
587 /* instantiate inode and assign the unopened fid to the dentry */
588 inode
= v9fs_get_inode_from_fid(v9ses
, fid
, dir
->i_sb
);
590 err
= PTR_ERR(inode
);
591 P9_DPRINTK(P9_DEBUG_VFS
, "inode creation failed %d\n", err
);
594 d_instantiate(dentry
, inode
);
595 err
= v9fs_fid_add(dentry
, fid
);
603 p9_client_clunk(ofid
);
606 p9_client_clunk(fid
);
612 * v9fs_vfs_create - VFS hook to create files
613 * @dir: directory inode that is being created
614 * @dentry: dentry that is being deleted
615 * @mode: create permissions
616 * @nd: path information
621 v9fs_vfs_create(struct inode
*dir
, struct dentry
*dentry
, int mode
,
622 struct nameidata
*nd
)
628 struct v9fs_inode
*v9inode
;
629 struct v9fs_session_info
*v9ses
;
630 struct p9_fid
*fid
, *inode_fid
;
634 v9ses
= v9fs_inode2v9ses(dir
);
635 perm
= unixmode2p9mode(v9ses
, mode
);
636 if (nd
&& nd
->flags
& LOOKUP_OPEN
)
637 flags
= nd
->intent
.open
.flags
- 1;
641 fid
= v9fs_create(v9ses
, dir
, dentry
, NULL
, perm
,
642 v9fs_uflags2omode(flags
,
643 v9fs_proto_dotu(v9ses
)));
650 v9fs_invalidate_inode_attr(dir
);
651 /* if we are opening a file, assign the open fid to the file */
652 if (nd
&& nd
->flags
& LOOKUP_OPEN
) {
653 v9inode
= V9FS_I(dentry
->d_inode
);
654 mutex_lock(&v9inode
->v_mutex
);
655 if (v9ses
->cache
&& !v9inode
->writeback_fid
&&
656 ((flags
& O_ACCMODE
) != O_RDONLY
)) {
658 * clone a fid and add it to writeback_fid
659 * we do it during open time instead of
660 * page dirty time via write_begin/page_mkwrite
661 * because we want write after unlink usecase
664 inode_fid
= v9fs_writeback_fid(dentry
);
665 if (IS_ERR(inode_fid
)) {
666 err
= PTR_ERR(inode_fid
);
667 mutex_unlock(&v9inode
->v_mutex
);
670 v9inode
->writeback_fid
= (void *) inode_fid
;
672 mutex_unlock(&v9inode
->v_mutex
);
673 filp
= lookup_instantiate_filp(nd
, dentry
, generic_file_open
);
679 filp
->private_data
= fid
;
680 #ifdef CONFIG_9P_FSCACHE
682 v9fs_cache_inode_set_cookie(dentry
->d_inode
, filp
);
685 p9_client_clunk(fid
);
691 p9_client_clunk(fid
);
697 * v9fs_vfs_mkdir - VFS mkdir hook to create a directory
698 * @dir: inode that is being unlinked
699 * @dentry: dentry that is being unlinked
700 * @mode: mode for new directory
704 static int v9fs_vfs_mkdir(struct inode
*dir
, struct dentry
*dentry
, int mode
)
709 struct v9fs_session_info
*v9ses
;
711 P9_DPRINTK(P9_DEBUG_VFS
, "name %s\n", dentry
->d_name
.name
);
713 v9ses
= v9fs_inode2v9ses(dir
);
714 perm
= unixmode2p9mode(v9ses
, mode
| S_IFDIR
);
715 fid
= v9fs_create(v9ses
, dir
, dentry
, NULL
, perm
, P9_OREAD
);
721 v9fs_invalidate_inode_attr(dir
);
725 p9_client_clunk(fid
);
731 * v9fs_vfs_lookup - VFS lookup hook to "walk" to a new inode
732 * @dir: inode that is being walked from
733 * @dentry: dentry that is being walked to?
734 * @nameidata: path data
738 struct dentry
*v9fs_vfs_lookup(struct inode
*dir
, struct dentry
*dentry
,
739 struct nameidata
*nameidata
)
741 struct super_block
*sb
;
742 struct v9fs_session_info
*v9ses
;
743 struct p9_fid
*dfid
, *fid
;
748 P9_DPRINTK(P9_DEBUG_VFS
, "dir: %p dentry: (%s) %p nameidata: %p\n",
749 dir
, dentry
->d_name
.name
, dentry
, nameidata
);
751 if (dentry
->d_name
.len
> NAME_MAX
)
752 return ERR_PTR(-ENAMETOOLONG
);
755 v9ses
= v9fs_inode2v9ses(dir
);
756 /* We can walk d_parent because we hold the dir->i_mutex */
757 dfid
= v9fs_fid_lookup(dentry
->d_parent
);
759 return ERR_CAST(dfid
);
761 name
= (char *) dentry
->d_name
.name
;
762 fid
= p9_client_walk(dfid
, 1, &name
, 1);
764 result
= PTR_ERR(fid
);
765 if (result
== -ENOENT
) {
770 return ERR_PTR(result
);
773 inode
= v9fs_get_inode_from_fid(v9ses
, fid
, dir
->i_sb
);
775 result
= PTR_ERR(inode
);
780 result
= v9fs_fid_add(dentry
, fid
);
785 d_add(dentry
, inode
);
791 p9_client_clunk(fid
);
793 return ERR_PTR(result
);
797 * v9fs_vfs_unlink - VFS unlink hook to delete an inode
798 * @i: inode that is being unlinked
799 * @d: dentry that is being unlinked
803 int v9fs_vfs_unlink(struct inode
*i
, struct dentry
*d
)
805 return v9fs_remove(i
, d
, 0);
809 * v9fs_vfs_rmdir - VFS unlink hook to delete a directory
810 * @i: inode that is being unlinked
811 * @d: dentry that is being unlinked
815 int v9fs_vfs_rmdir(struct inode
*i
, struct dentry
*d
)
817 return v9fs_remove(i
, d
, 1);
821 * v9fs_vfs_rename - VFS hook to rename an inode
822 * @old_dir: old dir inode
823 * @old_dentry: old dentry
824 * @new_dir: new dir inode
825 * @new_dentry: new dentry
830 v9fs_vfs_rename(struct inode
*old_dir
, struct dentry
*old_dentry
,
831 struct inode
*new_dir
, struct dentry
*new_dentry
)
834 struct inode
*old_inode
;
835 struct inode
*new_inode
;
836 struct v9fs_session_info
*v9ses
;
837 struct p9_fid
*oldfid
;
838 struct p9_fid
*olddirfid
;
839 struct p9_fid
*newdirfid
;
840 struct p9_wstat wstat
;
842 P9_DPRINTK(P9_DEBUG_VFS
, "\n");
844 old_inode
= old_dentry
->d_inode
;
845 new_inode
= new_dentry
->d_inode
;
846 v9ses
= v9fs_inode2v9ses(old_inode
);
847 oldfid
= v9fs_fid_lookup(old_dentry
);
849 return PTR_ERR(oldfid
);
851 olddirfid
= v9fs_fid_clone(old_dentry
->d_parent
);
852 if (IS_ERR(olddirfid
)) {
853 retval
= PTR_ERR(olddirfid
);
857 newdirfid
= v9fs_fid_clone(new_dentry
->d_parent
);
858 if (IS_ERR(newdirfid
)) {
859 retval
= PTR_ERR(newdirfid
);
863 down_write(&v9ses
->rename_sem
);
864 if (v9fs_proto_dotl(v9ses
)) {
865 retval
= p9_client_rename(oldfid
, newdirfid
,
866 (char *) new_dentry
->d_name
.name
);
867 if (retval
!= -ENOSYS
)
870 if (old_dentry
->d_parent
!= new_dentry
->d_parent
) {
872 * 9P .u can only handle file rename in the same directory
875 P9_DPRINTK(P9_DEBUG_ERROR
,
876 "old dir and new dir are different\n");
880 v9fs_blank_wstat(&wstat
);
881 wstat
.muid
= v9ses
->uname
;
882 wstat
.name
= (char *) new_dentry
->d_name
.name
;
883 retval
= p9_client_wstat(oldfid
, &wstat
);
888 if (S_ISDIR(new_inode
->i_mode
))
889 clear_nlink(new_inode
);
891 drop_nlink(new_inode
);
893 * Work around vfs rename rehash bug with
894 * FS_RENAME_DOES_D_MOVE
896 v9fs_invalidate_inode_attr(new_inode
);
898 if (S_ISDIR(old_inode
->i_mode
)) {
903 v9fs_invalidate_inode_attr(old_inode
);
904 v9fs_invalidate_inode_attr(old_dir
);
905 v9fs_invalidate_inode_attr(new_dir
);
907 /* successful rename */
908 d_move(old_dentry
, new_dentry
);
910 up_write(&v9ses
->rename_sem
);
911 p9_client_clunk(newdirfid
);
914 p9_client_clunk(olddirfid
);
921 * v9fs_vfs_getattr - retrieve file metadata
922 * @mnt: mount information
923 * @dentry: file to get attributes on
924 * @stat: metadata structure to populate
929 v9fs_vfs_getattr(struct vfsmount
*mnt
, struct dentry
*dentry
,
933 struct v9fs_session_info
*v9ses
;
937 P9_DPRINTK(P9_DEBUG_VFS
, "dentry: %p\n", dentry
);
939 v9ses
= v9fs_dentry2v9ses(dentry
);
940 if (v9ses
->cache
== CACHE_LOOSE
|| v9ses
->cache
== CACHE_FSCACHE
) {
941 generic_fillattr(dentry
->d_inode
, stat
);
944 fid
= v9fs_fid_lookup(dentry
);
948 st
= p9_client_stat(fid
);
952 v9fs_stat2inode(st
, dentry
->d_inode
, dentry
->d_inode
->i_sb
);
953 generic_fillattr(dentry
->d_inode
, stat
);
961 * v9fs_vfs_setattr - set file metadata
962 * @dentry: file whose metadata to set
963 * @iattr: metadata assignment structure
967 static int v9fs_vfs_setattr(struct dentry
*dentry
, struct iattr
*iattr
)
970 struct v9fs_session_info
*v9ses
;
972 struct p9_wstat wstat
;
974 P9_DPRINTK(P9_DEBUG_VFS
, "\n");
975 retval
= inode_change_ok(dentry
->d_inode
, iattr
);
980 v9ses
= v9fs_dentry2v9ses(dentry
);
981 fid
= v9fs_fid_lookup(dentry
);
985 v9fs_blank_wstat(&wstat
);
986 if (iattr
->ia_valid
& ATTR_MODE
)
987 wstat
.mode
= unixmode2p9mode(v9ses
, iattr
->ia_mode
);
989 if (iattr
->ia_valid
& ATTR_MTIME
)
990 wstat
.mtime
= iattr
->ia_mtime
.tv_sec
;
992 if (iattr
->ia_valid
& ATTR_ATIME
)
993 wstat
.atime
= iattr
->ia_atime
.tv_sec
;
995 if (iattr
->ia_valid
& ATTR_SIZE
)
996 wstat
.length
= iattr
->ia_size
;
998 if (v9fs_proto_dotu(v9ses
)) {
999 if (iattr
->ia_valid
& ATTR_UID
)
1000 wstat
.n_uid
= iattr
->ia_uid
;
1002 if (iattr
->ia_valid
& ATTR_GID
)
1003 wstat
.n_gid
= iattr
->ia_gid
;
1006 /* Write all dirty data */
1007 if (S_ISREG(dentry
->d_inode
->i_mode
))
1008 filemap_write_and_wait(dentry
->d_inode
->i_mapping
);
1010 retval
= p9_client_wstat(fid
, &wstat
);
1014 if ((iattr
->ia_valid
& ATTR_SIZE
) &&
1015 iattr
->ia_size
!= i_size_read(dentry
->d_inode
))
1016 truncate_setsize(dentry
->d_inode
, iattr
->ia_size
);
1018 v9fs_invalidate_inode_attr(dentry
->d_inode
);
1020 setattr_copy(dentry
->d_inode
, iattr
);
1021 mark_inode_dirty(dentry
->d_inode
);
1026 * v9fs_stat2inode - populate an inode structure with mistat info
1027 * @stat: Plan 9 metadata (mistat) structure
1028 * @inode: inode to populate
1029 * @sb: superblock of filesystem
1034 v9fs_stat2inode(struct p9_wstat
*stat
, struct inode
*inode
,
1035 struct super_block
*sb
)
1039 unsigned int i_nlink
;
1040 struct v9fs_session_info
*v9ses
= sb
->s_fs_info
;
1041 struct v9fs_inode
*v9inode
= V9FS_I(inode
);
1045 inode
->i_atime
.tv_sec
= stat
->atime
;
1046 inode
->i_mtime
.tv_sec
= stat
->mtime
;
1047 inode
->i_ctime
.tv_sec
= stat
->mtime
;
1049 inode
->i_uid
= v9ses
->dfltuid
;
1050 inode
->i_gid
= v9ses
->dfltgid
;
1052 if (v9fs_proto_dotu(v9ses
)) {
1053 inode
->i_uid
= stat
->n_uid
;
1054 inode
->i_gid
= stat
->n_gid
;
1056 if ((S_ISREG(inode
->i_mode
)) || (S_ISDIR(inode
->i_mode
))) {
1057 if (v9fs_proto_dotu(v9ses
) && (stat
->extension
[0] != '\0')) {
1059 * Hadlink support got added later to
1060 * to the .u extension. So there can be
1061 * server out there that doesn't support
1062 * this even with .u extension. So check
1063 * for non NULL stat->extension
1065 strncpy(ext
, stat
->extension
, sizeof(ext
));
1066 /* HARDLINKCOUNT %u */
1067 sscanf(ext
, "%13s %u", tag_name
, &i_nlink
);
1068 if (!strncmp(tag_name
, "HARDLINKCOUNT", 13))
1069 inode
->i_nlink
= i_nlink
;
1072 inode
->i_mode
= p9mode2unixmode(v9ses
, stat
->mode
);
1073 if ((S_ISBLK(inode
->i_mode
)) || (S_ISCHR(inode
->i_mode
))) {
1078 strncpy(ext
, stat
->extension
, sizeof(ext
));
1079 sscanf(ext
, "%c %u %u", &type
, &major
, &minor
);
1082 inode
->i_mode
&= ~S_IFBLK
;
1083 inode
->i_mode
|= S_IFCHR
;
1088 P9_DPRINTK(P9_DEBUG_ERROR
,
1089 "Unknown special type %c %s\n", type
,
1092 inode
->i_rdev
= MKDEV(major
, minor
);
1093 init_special_inode(inode
, inode
->i_mode
, inode
->i_rdev
);
1097 i_size_write(inode
, stat
->length
);
1099 /* not real number of blocks, but 512 byte ones ... */
1100 inode
->i_blocks
= (i_size_read(inode
) + 512 - 1) >> 9;
1101 v9inode
->cache_validity
&= ~V9FS_INO_INVALID_ATTR
;
1105 * v9fs_qid2ino - convert qid into inode number
1108 * BUG: potential for inode number collisions?
1111 ino_t
v9fs_qid2ino(struct p9_qid
*qid
)
1113 u64 path
= qid
->path
+ 2;
1116 if (sizeof(ino_t
) == sizeof(path
))
1117 memcpy(&i
, &path
, sizeof(ino_t
));
1119 i
= (ino_t
) (path
^ (path
>> 32));
1125 * v9fs_readlink - read a symlink's location (internal version)
1126 * @dentry: dentry for symlink
1127 * @buffer: buffer to load symlink location into
1128 * @buflen: length of buffer
1132 static int v9fs_readlink(struct dentry
*dentry
, char *buffer
, int buflen
)
1136 struct v9fs_session_info
*v9ses
;
1138 struct p9_wstat
*st
;
1140 P9_DPRINTK(P9_DEBUG_VFS
, " %s\n", dentry
->d_name
.name
);
1142 v9ses
= v9fs_dentry2v9ses(dentry
);
1143 fid
= v9fs_fid_lookup(dentry
);
1145 return PTR_ERR(fid
);
1147 if (!v9fs_proto_dotu(v9ses
))
1150 st
= p9_client_stat(fid
);
1154 if (!(st
->mode
& P9_DMSYMLINK
)) {
1159 /* copy extension buffer into buffer */
1160 strncpy(buffer
, st
->extension
, buflen
);
1162 P9_DPRINTK(P9_DEBUG_VFS
,
1163 "%s -> %s (%s)\n", dentry
->d_name
.name
, st
->extension
, buffer
);
1165 retval
= strnlen(buffer
, buflen
);
1173 * v9fs_vfs_follow_link - follow a symlink path
1174 * @dentry: dentry for symlink
1179 static void *v9fs_vfs_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
1182 char *link
= __getname();
1184 P9_DPRINTK(P9_DEBUG_VFS
, "%s n", dentry
->d_name
.name
);
1187 link
= ERR_PTR(-ENOMEM
);
1189 len
= v9fs_readlink(dentry
, link
, PATH_MAX
);
1193 link
= ERR_PTR(len
);
1195 link
[min(len
, PATH_MAX
-1)] = 0;
1197 nd_set_link(nd
, link
);
1203 * v9fs_vfs_put_link - release a symlink path
1204 * @dentry: dentry for symlink
1211 v9fs_vfs_put_link(struct dentry
*dentry
, struct nameidata
*nd
, void *p
)
1213 char *s
= nd_get_link(nd
);
1215 P9_DPRINTK(P9_DEBUG_VFS
, " %s %s\n", dentry
->d_name
.name
,
1216 IS_ERR(s
) ? "<error>" : s
);
1222 * v9fs_vfs_mkspecial - create a special file
1223 * @dir: inode to create special file in
1224 * @dentry: dentry to create
1225 * @mode: mode to create special file
1226 * @extension: 9p2000.u format extension string representing special file
1230 static int v9fs_vfs_mkspecial(struct inode
*dir
, struct dentry
*dentry
,
1231 int mode
, const char *extension
)
1235 struct v9fs_session_info
*v9ses
;
1237 v9ses
= v9fs_inode2v9ses(dir
);
1238 if (!v9fs_proto_dotu(v9ses
)) {
1239 P9_DPRINTK(P9_DEBUG_ERROR
, "not extended\n");
1243 perm
= unixmode2p9mode(v9ses
, mode
);
1244 fid
= v9fs_create(v9ses
, dir
, dentry
, (char *) extension
, perm
,
1247 return PTR_ERR(fid
);
1249 v9fs_invalidate_inode_attr(dir
);
1250 p9_client_clunk(fid
);
1255 * v9fs_vfs_symlink - helper function to create symlinks
1256 * @dir: directory inode containing symlink
1257 * @dentry: dentry for symlink
1258 * @symname: symlink data
1260 * See Also: 9P2000.u RFC for more information
1265 v9fs_vfs_symlink(struct inode
*dir
, struct dentry
*dentry
, const char *symname
)
1267 P9_DPRINTK(P9_DEBUG_VFS
, " %lu,%s,%s\n", dir
->i_ino
,
1268 dentry
->d_name
.name
, symname
);
1270 return v9fs_vfs_mkspecial(dir
, dentry
, S_IFLNK
, symname
);
1274 * v9fs_vfs_link - create a hardlink
1275 * @old_dentry: dentry for file to link to
1276 * @dir: inode destination for new link
1277 * @dentry: dentry for link
1282 v9fs_vfs_link(struct dentry
*old_dentry
, struct inode
*dir
,
1283 struct dentry
*dentry
)
1287 struct p9_fid
*oldfid
;
1289 P9_DPRINTK(P9_DEBUG_VFS
,
1290 " %lu,%s,%s\n", dir
->i_ino
, dentry
->d_name
.name
,
1291 old_dentry
->d_name
.name
);
1293 oldfid
= v9fs_fid_clone(old_dentry
);
1295 return PTR_ERR(oldfid
);
1298 if (unlikely(!name
)) {
1303 sprintf(name
, "%d\n", oldfid
->fid
);
1304 retval
= v9fs_vfs_mkspecial(dir
, dentry
, P9_DMLINK
, name
);
1307 v9fs_refresh_inode(oldfid
, old_dentry
->d_inode
);
1308 v9fs_invalidate_inode_attr(dir
);
1311 p9_client_clunk(oldfid
);
1316 * v9fs_vfs_mknod - create a special file
1317 * @dir: inode destination for new link
1318 * @dentry: dentry for file
1319 * @mode: mode for creation
1320 * @rdev: device associated with special file
1325 v9fs_vfs_mknod(struct inode
*dir
, struct dentry
*dentry
, int mode
, dev_t rdev
)
1330 P9_DPRINTK(P9_DEBUG_VFS
,
1331 " %lu,%s mode: %x MAJOR: %u MINOR: %u\n", dir
->i_ino
,
1332 dentry
->d_name
.name
, mode
, MAJOR(rdev
), MINOR(rdev
));
1334 if (!new_valid_dev(rdev
))
1340 /* build extension */
1342 sprintf(name
, "b %u %u", MAJOR(rdev
), MINOR(rdev
));
1343 else if (S_ISCHR(mode
))
1344 sprintf(name
, "c %u %u", MAJOR(rdev
), MINOR(rdev
));
1345 else if (S_ISFIFO(mode
))
1347 else if (S_ISSOCK(mode
))
1354 retval
= v9fs_vfs_mkspecial(dir
, dentry
, mode
, name
);
1360 int v9fs_refresh_inode(struct p9_fid
*fid
, struct inode
*inode
)
1363 struct p9_wstat
*st
;
1364 struct v9fs_session_info
*v9ses
;
1366 v9ses
= v9fs_inode2v9ses(inode
);
1367 st
= p9_client_stat(fid
);
1371 spin_lock(&inode
->i_lock
);
1373 * We don't want to refresh inode->i_size,
1374 * because we may have cached data
1376 i_size
= inode
->i_size
;
1377 v9fs_stat2inode(st
, inode
, inode
->i_sb
);
1379 inode
->i_size
= i_size
;
1380 spin_unlock(&inode
->i_lock
);
1386 static const struct inode_operations v9fs_dir_inode_operations_dotu
= {
1387 .create
= v9fs_vfs_create
,
1388 .lookup
= v9fs_vfs_lookup
,
1389 .symlink
= v9fs_vfs_symlink
,
1390 .link
= v9fs_vfs_link
,
1391 .unlink
= v9fs_vfs_unlink
,
1392 .mkdir
= v9fs_vfs_mkdir
,
1393 .rmdir
= v9fs_vfs_rmdir
,
1394 .mknod
= v9fs_vfs_mknod
,
1395 .rename
= v9fs_vfs_rename
,
1396 .getattr
= v9fs_vfs_getattr
,
1397 .setattr
= v9fs_vfs_setattr
,
1400 static const struct inode_operations v9fs_dir_inode_operations
= {
1401 .create
= v9fs_vfs_create
,
1402 .lookup
= v9fs_vfs_lookup
,
1403 .unlink
= v9fs_vfs_unlink
,
1404 .mkdir
= v9fs_vfs_mkdir
,
1405 .rmdir
= v9fs_vfs_rmdir
,
1406 .mknod
= v9fs_vfs_mknod
,
1407 .rename
= v9fs_vfs_rename
,
1408 .getattr
= v9fs_vfs_getattr
,
1409 .setattr
= v9fs_vfs_setattr
,
1412 static const struct inode_operations v9fs_file_inode_operations
= {
1413 .getattr
= v9fs_vfs_getattr
,
1414 .setattr
= v9fs_vfs_setattr
,
1417 static const struct inode_operations v9fs_symlink_inode_operations
= {
1418 .readlink
= generic_readlink
,
1419 .follow_link
= v9fs_vfs_follow_link
,
1420 .put_link
= v9fs_vfs_put_link
,
1421 .getattr
= v9fs_vfs_getattr
,
1422 .setattr
= v9fs_vfs_setattr
,