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 #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 <net/9p/9p.h>
40 #include <net/9p/client.h>
48 static const struct inode_operations v9fs_dir_inode_operations;
49 static const struct inode_operations v9fs_dir_inode_operations_dotu;
50 static const struct inode_operations v9fs_dir_inode_operations_dotl;
51 static const struct inode_operations v9fs_file_inode_operations;
52 static const struct inode_operations v9fs_file_inode_operations_dotl;
53 static const struct inode_operations v9fs_symlink_inode_operations;
54 static const struct inode_operations v9fs_symlink_inode_operations_dotl;
57 * unixmode2p9mode - convert unix mode bits to plan 9
58 * @v9ses: v9fs session information
59 * @mode: mode to convert
63 static int unixmode2p9mode(struct v9fs_session_info *v9ses, int mode)
69 if (v9fs_proto_dotu(v9ses)) {
72 if (v9ses->nodev == 0) {
76 res |= P9_DMNAMEDPIPE;
83 if ((mode & S_ISUID) == S_ISUID)
85 if ((mode & S_ISGID) == S_ISGID)
87 if ((mode & S_ISVTX) == S_ISVTX)
89 if ((mode & P9_DMLINK))
97 * p9mode2unixmode- convert plan9 mode bits to unix mode bits
98 * @v9ses: v9fs session information
99 * @mode: mode to convert
103 static int p9mode2unixmode(struct v9fs_session_info *v9ses, int mode)
109 if ((mode & P9_DMDIR) == P9_DMDIR)
111 else if ((mode & P9_DMSYMLINK) && (v9fs_proto_dotu(v9ses)))
113 else if ((mode & P9_DMSOCKET) && (v9fs_proto_dotu(v9ses))
114 && (v9ses->nodev == 0))
116 else if ((mode & P9_DMNAMEDPIPE) && (v9fs_proto_dotu(v9ses))
117 && (v9ses->nodev == 0))
119 else if ((mode & P9_DMDEVICE) && (v9fs_proto_dotu(v9ses))
120 && (v9ses->nodev == 0))
125 if (v9fs_proto_dotu(v9ses)) {
126 if ((mode & P9_DMSETUID) == P9_DMSETUID)
129 if ((mode & P9_DMSETGID) == P9_DMSETGID)
132 if ((mode & P9_DMSETVTX) == P9_DMSETVTX)
140 * v9fs_uflags2omode- convert posix open flags to plan 9 mode bits
141 * @uflags: flags to convert
142 * @extended: if .u extensions are active
145 int v9fs_uflags2omode(int uflags, int extended)
165 if (uflags & O_TRUNC)
172 if (uflags & O_APPEND)
180 * v9fs_blank_wstat - helper function to setup a 9P stat structure
181 * @wstat: structure to initialize
186 v9fs_blank_wstat(struct p9_wstat *wstat)
190 wstat->qid.type = ~0;
191 wstat->qid.version = ~0;
192 *((long long *)&wstat->qid.path) = ~0;
204 wstat->extension = NULL;
207 #ifdef CONFIG_9P_FSCACHE
209 * v9fs_alloc_inode - helper function to allocate an inode
210 * This callback is executed before setting up the inode so that we
211 * can associate a vcookie with each inode.
215 struct inode *v9fs_alloc_inode(struct super_block *sb)
217 struct v9fs_cookie *vcookie;
218 vcookie = (struct v9fs_cookie *)kmem_cache_alloc(vcookie_cache,
223 vcookie->fscache = NULL;
225 spin_lock_init(&vcookie->lock);
226 return &vcookie->inode;
230 * v9fs_destroy_inode - destroy an inode
234 void v9fs_destroy_inode(struct inode *inode)
236 kmem_cache_free(vcookie_cache, v9fs_inode2cookie(inode));
241 * v9fs_get_fsgid_for_create - Helper function to get the gid for creating a
242 * new file system object. This checks the S_ISGID to determine the owning
243 * group of the new file system object.
246 static gid_t v9fs_get_fsgid_for_create(struct inode *dir_inode)
248 BUG_ON(dir_inode == NULL);
250 if (dir_inode->i_mode & S_ISGID) {
251 /* set_gid bit is set.*/
252 return dir_inode->i_gid;
254 return current_fsgid();
258 * v9fs_dentry_from_dir_inode - helper function to get the dentry from
263 static struct dentry *v9fs_dentry_from_dir_inode(struct inode *inode)
265 struct dentry *dentry;
267 spin_lock(&dcache_lock);
268 /* Directory should have only one entry. */
269 BUG_ON(S_ISDIR(inode->i_mode) && !list_is_singular(&inode->i_dentry));
270 dentry = list_entry(inode->i_dentry.next, struct dentry, d_alias);
271 spin_unlock(&dcache_lock);
276 * v9fs_get_inode - helper function to setup an inode
278 * @mode: mode to setup inode with
282 struct inode *v9fs_get_inode(struct super_block *sb, int mode)
286 struct v9fs_session_info *v9ses = sb->s_fs_info;
288 P9_DPRINTK(P9_DEBUG_VFS, "super block: %p mode: %o\n", sb, mode);
290 inode = new_inode(sb);
292 P9_EPRINTK(KERN_WARNING, "Problem allocating inode\n");
293 return ERR_PTR(-ENOMEM);
296 inode_init_owner(inode, NULL, mode);
299 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
300 inode->i_mapping->a_ops = &v9fs_addr_operations;
302 switch (mode & S_IFMT) {
307 if (v9fs_proto_dotl(v9ses)) {
308 inode->i_op = &v9fs_file_inode_operations_dotl;
309 inode->i_fop = &v9fs_file_operations_dotl;
310 } else if (v9fs_proto_dotu(v9ses)) {
311 inode->i_op = &v9fs_file_inode_operations;
312 inode->i_fop = &v9fs_file_operations;
314 P9_DPRINTK(P9_DEBUG_ERROR,
315 "special files without extended mode\n");
319 init_special_inode(inode, inode->i_mode, inode->i_rdev);
322 if (v9fs_proto_dotl(v9ses)) {
323 inode->i_op = &v9fs_file_inode_operations_dotl;
324 inode->i_fop = &v9fs_file_operations_dotl;
326 inode->i_op = &v9fs_file_inode_operations;
327 inode->i_fop = &v9fs_file_operations;
333 if (!v9fs_proto_dotu(v9ses) && !v9fs_proto_dotl(v9ses)) {
334 P9_DPRINTK(P9_DEBUG_ERROR, "extended modes used with "
335 "legacy protocol.\n");
340 if (v9fs_proto_dotl(v9ses))
341 inode->i_op = &v9fs_symlink_inode_operations_dotl;
343 inode->i_op = &v9fs_symlink_inode_operations;
348 if (v9fs_proto_dotl(v9ses))
349 inode->i_op = &v9fs_dir_inode_operations_dotl;
350 else if (v9fs_proto_dotu(v9ses))
351 inode->i_op = &v9fs_dir_inode_operations_dotu;
353 inode->i_op = &v9fs_dir_inode_operations;
355 if (v9fs_proto_dotl(v9ses))
356 inode->i_fop = &v9fs_dir_operations_dotl;
358 inode->i_fop = &v9fs_dir_operations;
362 P9_DPRINTK(P9_DEBUG_ERROR, "BAD mode 0x%x S_IFMT 0x%x\n",
363 mode, mode & S_IFMT);
376 static struct v9fs_fid*
377 v9fs_clone_walk(struct v9fs_session_info *v9ses, u32 fid, struct dentry *dentry)
381 struct v9fs_fid *ret;
382 struct v9fs_fcall *fcall;
384 nfid = v9fs_get_idpool(&v9ses->fidpool);
386 eprintk(KERN_WARNING, "no free fids available\n");
387 return ERR_PTR(-ENOSPC);
390 err = v9fs_t_walk(v9ses, fid, nfid, (char *) dentry->d_name.name,
394 if (fcall && fcall->id == RWALK)
397 PRINT_FCALL_ERROR("walk error", fcall);
398 v9fs_put_idpool(nfid, &v9ses->fidpool);
404 ret = v9fs_fid_create(v9ses, nfid);
410 err = v9fs_fid_insert(ret, dentry);
412 v9fs_fid_destroy(ret);
419 v9fs_t_clunk(v9ses, nfid);
429 * v9fs_clear_inode - release an inode
430 * @inode: inode to release
433 void v9fs_evict_inode(struct inode *inode)
435 truncate_inode_pages(inode->i_mapping, 0);
436 end_writeback(inode);
437 filemap_fdatawrite(inode->i_mapping);
439 #ifdef CONFIG_9P_FSCACHE
440 v9fs_cache_inode_put_cookie(inode);
444 static struct inode *
445 v9fs_inode(struct v9fs_session_info *v9ses, struct p9_fid *fid,
446 struct super_block *sb)
449 struct inode *ret = NULL;
452 st = p9_client_stat(fid);
456 umode = p9mode2unixmode(v9ses, st->mode);
457 ret = v9fs_get_inode(sb, umode);
463 v9fs_stat2inode(st, ret, sb);
464 ret->i_ino = v9fs_qid2ino(&st->qid);
466 #ifdef CONFIG_9P_FSCACHE
467 v9fs_vcookie_set_qid(ret, &st->qid);
468 v9fs_cache_inode_get_cookie(ret);
479 static struct inode *
480 v9fs_inode_dotl(struct v9fs_session_info *v9ses, struct p9_fid *fid,
481 struct super_block *sb)
483 struct inode *ret = NULL;
485 struct p9_stat_dotl *st;
487 st = p9_client_getattr_dotl(fid, P9_STATS_BASIC);
491 ret = v9fs_get_inode(sb, st->st_mode);
497 v9fs_stat2inode_dotl(st, ret);
498 ret->i_ino = v9fs_qid2ino(&st->qid);
499 #ifdef CONFIG_9P_FSCACHE
500 v9fs_vcookie_set_qid(ret, &st->qid);
501 v9fs_cache_inode_get_cookie(ret);
511 * v9fs_inode_from_fid - Helper routine to populate an inode by
512 * issuing a attribute request
513 * @v9ses: session information
514 * @fid: fid to issue attribute request for
515 * @sb: superblock on which to create inode
518 static inline struct inode *
519 v9fs_inode_from_fid(struct v9fs_session_info *v9ses, struct p9_fid *fid,
520 struct super_block *sb)
522 if (v9fs_proto_dotl(v9ses))
523 return v9fs_inode_dotl(v9ses, fid, sb);
525 return v9fs_inode(v9ses, fid, sb);
529 * v9fs_remove - helper function to remove files and directories
530 * @dir: directory inode that is being deleted
531 * @file: dentry that is being deleted
532 * @rmdir: removing a directory
536 static int v9fs_remove(struct inode *dir, struct dentry *file, int rmdir)
539 struct inode *file_inode;
540 struct p9_fid *v9fid;
542 P9_DPRINTK(P9_DEBUG_VFS, "inode: %p dentry: %p rmdir: %d\n", dir, file,
545 file_inode = file->d_inode;
546 v9fid = v9fs_fid_clone(file);
548 return PTR_ERR(v9fid);
550 retval = p9_client_remove(v9fid);
552 drop_nlink(file_inode);
557 v9fs_open_created(struct inode *inode, struct file *file)
564 * v9fs_create - Create a file
565 * @v9ses: session information
566 * @dir: directory that dentry is being created in
567 * @dentry: dentry that is being created
568 * @extension: 9p2000.u extension string to support devices, etc.
569 * @perm: create permissions
573 static struct p9_fid *
574 v9fs_create(struct v9fs_session_info *v9ses, struct inode *dir,
575 struct dentry *dentry, char *extension, u32 perm, u8 mode)
579 struct p9_fid *dfid, *ofid, *fid;
582 P9_DPRINTK(P9_DEBUG_VFS, "name %s\n", dentry->d_name.name);
587 name = (char *) dentry->d_name.name;
588 dfid = v9fs_fid_lookup(dentry->d_parent);
591 P9_DPRINTK(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
595 /* clone a fid to use for creation */
596 ofid = p9_client_walk(dfid, 0, NULL, 1);
599 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
603 err = p9_client_fcreate(ofid, name, perm, mode, extension);
605 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_fcreate failed %d\n", err);
609 /* now walk from the parent so we can get unopened fid */
610 fid = p9_client_walk(dfid, 1, &name, 1);
613 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
618 /* instantiate inode and assign the unopened fid to the dentry */
619 inode = v9fs_inode_from_fid(v9ses, fid, dir->i_sb);
621 err = PTR_ERR(inode);
622 P9_DPRINTK(P9_DEBUG_VFS, "inode creation failed %d\n", err);
627 dentry->d_op = &v9fs_cached_dentry_operations;
629 dentry->d_op = &v9fs_dentry_operations;
631 d_instantiate(dentry, inode);
632 err = v9fs_fid_add(dentry, fid);
640 p9_client_clunk(ofid);
643 p9_client_clunk(fid);
649 * v9fs_vfs_create_dotl - VFS hook to create files for 9P2000.L protocol.
650 * @dir: directory inode that is being created
651 * @dentry: dentry that is being deleted
652 * @mode: create permissions
653 * @nd: path information
658 v9fs_vfs_create_dotl(struct inode *dir, struct dentry *dentry, int mode,
659 struct nameidata *nd)
665 struct v9fs_session_info *v9ses;
666 struct p9_fid *fid = NULL;
667 struct p9_fid *dfid, *ofid;
672 v9ses = v9fs_inode2v9ses(dir);
673 if (nd && nd->flags & LOOKUP_OPEN)
674 flags = nd->intent.open.flags - 1;
678 name = (char *) dentry->d_name.name;
679 P9_DPRINTK(P9_DEBUG_VFS, "v9fs_vfs_create_dotl: name:%s flags:0x%x "
680 "mode:0x%x\n", name, flags, mode);
682 dfid = v9fs_fid_lookup(dentry->d_parent);
685 P9_DPRINTK(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
689 /* clone a fid to use for creation */
690 ofid = p9_client_walk(dfid, 0, NULL, 1);
693 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
697 gid = v9fs_get_fsgid_for_create(dir);
698 err = p9_client_create_dotl(ofid, name, flags, mode, gid, &qid);
700 P9_DPRINTK(P9_DEBUG_VFS,
701 "p9_client_open_dotl failed in creat %d\n",
706 /* No need to populate the inode if we are not opening the file AND
707 * not in cached mode.
709 if (!v9ses->cache && !(nd && nd->flags & LOOKUP_OPEN)) {
710 /* Not in cached mode. No need to populate inode with stat */
711 dentry->d_op = &v9fs_dentry_operations;
712 p9_client_clunk(ofid);
713 d_instantiate(dentry, NULL);
717 /* Now walk from the parent so we can get an unopened fid. */
718 fid = p9_client_walk(dfid, 1, &name, 1);
721 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
726 /* instantiate inode and assign the unopened fid to dentry */
727 inode = v9fs_inode_from_fid(v9ses, fid, dir->i_sb);
729 err = PTR_ERR(inode);
730 P9_DPRINTK(P9_DEBUG_VFS, "inode creation failed %d\n", err);
734 dentry->d_op = &v9fs_cached_dentry_operations;
736 dentry->d_op = &v9fs_dentry_operations;
737 d_instantiate(dentry, inode);
738 err = v9fs_fid_add(dentry, fid);
742 /* if we are opening a file, assign the open fid to the file */
743 if (nd && nd->flags & LOOKUP_OPEN) {
744 filp = lookup_instantiate_filp(nd, dentry, v9fs_open_created);
746 p9_client_clunk(ofid);
747 return PTR_ERR(filp);
749 filp->private_data = ofid;
751 p9_client_clunk(ofid);
757 p9_client_clunk(ofid);
759 p9_client_clunk(fid);
764 * v9fs_vfs_create - VFS hook to create files
765 * @dir: directory inode that is being created
766 * @dentry: dentry that is being deleted
767 * @mode: create permissions
768 * @nd: path information
773 v9fs_vfs_create(struct inode *dir, struct dentry *dentry, int mode,
774 struct nameidata *nd)
779 struct v9fs_session_info *v9ses;
785 v9ses = v9fs_inode2v9ses(dir);
786 perm = unixmode2p9mode(v9ses, mode);
787 if (nd && nd->flags & LOOKUP_OPEN)
788 flags = nd->intent.open.flags - 1;
792 fid = v9fs_create(v9ses, dir, dentry, NULL, perm,
793 v9fs_uflags2omode(flags,
794 v9fs_proto_dotu(v9ses)));
801 /* if we are opening a file, assign the open fid to the file */
802 if (nd && nd->flags & LOOKUP_OPEN) {
803 filp = lookup_instantiate_filp(nd, dentry, v9fs_open_created);
809 filp->private_data = fid;
811 p9_client_clunk(fid);
817 p9_client_clunk(fid);
823 * v9fs_vfs_mkdir - VFS mkdir hook to create a directory
824 * @dir: inode that is being unlinked
825 * @dentry: dentry that is being unlinked
826 * @mode: mode for new directory
830 static int v9fs_vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
834 struct v9fs_session_info *v9ses;
837 P9_DPRINTK(P9_DEBUG_VFS, "name %s\n", dentry->d_name.name);
839 v9ses = v9fs_inode2v9ses(dir);
840 perm = unixmode2p9mode(v9ses, mode | S_IFDIR);
841 fid = v9fs_create(v9ses, dir, dentry, NULL, perm, P9_OREAD);
848 p9_client_clunk(fid);
855 * v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory
856 * @dir: inode that is being unlinked
857 * @dentry: dentry that is being unlinked
858 * @mode: mode for new directory
862 static int v9fs_vfs_mkdir_dotl(struct inode *dir, struct dentry *dentry,
866 struct v9fs_session_info *v9ses;
867 struct p9_fid *fid = NULL, *dfid = NULL;
872 struct dentry *dir_dentry;
874 P9_DPRINTK(P9_DEBUG_VFS, "name %s\n", dentry->d_name.name);
876 v9ses = v9fs_inode2v9ses(dir);
879 dir_dentry = v9fs_dentry_from_dir_inode(dir);
880 dfid = v9fs_fid_lookup(dir_dentry);
883 P9_DPRINTK(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
888 gid = v9fs_get_fsgid_for_create(dir);
890 P9_DPRINTK(P9_DEBUG_VFS, "v9fs_get_fsgid_for_create failed\n");
894 name = (char *) dentry->d_name.name;
895 err = p9_client_mkdir_dotl(dfid, name, mode, gid, &qid);
899 /* instantiate inode and assign the unopened fid to the dentry */
900 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
901 fid = p9_client_walk(dfid, 1, &name, 1);
904 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
910 inode = v9fs_inode_from_fid(v9ses, fid, dir->i_sb);
912 err = PTR_ERR(inode);
913 P9_DPRINTK(P9_DEBUG_VFS, "inode creation failed %d\n",
917 dentry->d_op = &v9fs_cached_dentry_operations;
918 d_instantiate(dentry, inode);
919 err = v9fs_fid_add(dentry, fid);
926 p9_client_clunk(fid);
931 * v9fs_vfs_lookup - VFS lookup hook to "walk" to a new inode
932 * @dir: inode that is being walked from
933 * @dentry: dentry that is being walked to?
934 * @nameidata: path data
938 static struct dentry *v9fs_vfs_lookup(struct inode *dir, struct dentry *dentry,
939 struct nameidata *nameidata)
941 struct super_block *sb;
942 struct v9fs_session_info *v9ses;
943 struct p9_fid *dfid, *fid;
948 P9_DPRINTK(P9_DEBUG_VFS, "dir: %p dentry: (%s) %p nameidata: %p\n",
949 dir, dentry->d_name.name, dentry, nameidata);
951 if (dentry->d_name.len > NAME_MAX)
952 return ERR_PTR(-ENAMETOOLONG);
955 v9ses = v9fs_inode2v9ses(dir);
956 /* We can walk d_parent because we hold the dir->i_mutex */
957 dfid = v9fs_fid_lookup(dentry->d_parent);
959 return ERR_CAST(dfid);
961 name = (char *) dentry->d_name.name;
962 fid = p9_client_walk(dfid, 1, &name, 1);
964 result = PTR_ERR(fid);
965 if (result == -ENOENT) {
970 return ERR_PTR(result);
973 inode = v9fs_inode_from_fid(v9ses, fid, dir->i_sb);
975 result = PTR_ERR(inode);
980 result = v9fs_fid_add(dentry, fid);
986 dentry->d_op = &v9fs_cached_dentry_operations;
988 dentry->d_op = &v9fs_dentry_operations;
990 d_add(dentry, inode);
994 p9_client_clunk(fid);
996 return ERR_PTR(result);
1000 * v9fs_vfs_unlink - VFS unlink hook to delete an inode
1001 * @i: inode that is being unlinked
1002 * @d: dentry that is being unlinked
1006 static int v9fs_vfs_unlink(struct inode *i, struct dentry *d)
1008 return v9fs_remove(i, d, 0);
1012 * v9fs_vfs_rmdir - VFS unlink hook to delete a directory
1013 * @i: inode that is being unlinked
1014 * @d: dentry that is being unlinked
1018 static int v9fs_vfs_rmdir(struct inode *i, struct dentry *d)
1020 return v9fs_remove(i, d, 1);
1024 * v9fs_vfs_rename - VFS hook to rename an inode
1025 * @old_dir: old dir inode
1026 * @old_dentry: old dentry
1027 * @new_dir: new dir inode
1028 * @new_dentry: new dentry
1033 v9fs_vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
1034 struct inode *new_dir, struct dentry *new_dentry)
1036 struct inode *old_inode;
1037 struct v9fs_session_info *v9ses;
1038 struct p9_fid *oldfid;
1039 struct p9_fid *olddirfid;
1040 struct p9_fid *newdirfid;
1041 struct p9_wstat wstat;
1044 P9_DPRINTK(P9_DEBUG_VFS, "\n");
1046 old_inode = old_dentry->d_inode;
1047 v9ses = v9fs_inode2v9ses(old_inode);
1048 oldfid = v9fs_fid_lookup(old_dentry);
1050 return PTR_ERR(oldfid);
1052 olddirfid = v9fs_fid_clone(old_dentry->d_parent);
1053 if (IS_ERR(olddirfid)) {
1054 retval = PTR_ERR(olddirfid);
1058 newdirfid = v9fs_fid_clone(new_dentry->d_parent);
1059 if (IS_ERR(newdirfid)) {
1060 retval = PTR_ERR(newdirfid);
1064 down_write(&v9ses->rename_sem);
1065 if (v9fs_proto_dotl(v9ses)) {
1066 retval = p9_client_rename(oldfid, newdirfid,
1067 (char *) new_dentry->d_name.name);
1068 if (retval != -ENOSYS)
1071 if (old_dentry->d_parent != new_dentry->d_parent) {
1073 * 9P .u can only handle file rename in the same directory
1076 P9_DPRINTK(P9_DEBUG_ERROR,
1077 "old dir and new dir are different\n");
1081 v9fs_blank_wstat(&wstat);
1082 wstat.muid = v9ses->uname;
1083 wstat.name = (char *) new_dentry->d_name.name;
1084 retval = p9_client_wstat(oldfid, &wstat);
1088 /* successful rename */
1089 d_move(old_dentry, new_dentry);
1090 up_write(&v9ses->rename_sem);
1091 p9_client_clunk(newdirfid);
1094 p9_client_clunk(olddirfid);
1101 * v9fs_vfs_getattr - retrieve file metadata
1102 * @mnt: mount information
1103 * @dentry: file to get attributes on
1104 * @stat: metadata structure to populate
1109 v9fs_vfs_getattr(struct vfsmount *mnt, struct dentry *dentry,
1113 struct v9fs_session_info *v9ses;
1115 struct p9_wstat *st;
1117 P9_DPRINTK(P9_DEBUG_VFS, "dentry: %p\n", dentry);
1119 v9ses = v9fs_inode2v9ses(dentry->d_inode);
1120 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE)
1121 return simple_getattr(mnt, dentry, stat);
1123 fid = v9fs_fid_lookup(dentry);
1125 return PTR_ERR(fid);
1127 st = p9_client_stat(fid);
1131 v9fs_stat2inode(st, dentry->d_inode, dentry->d_inode->i_sb);
1132 generic_fillattr(dentry->d_inode, stat);
1140 v9fs_vfs_getattr_dotl(struct vfsmount *mnt, struct dentry *dentry,
1144 struct v9fs_session_info *v9ses;
1146 struct p9_stat_dotl *st;
1148 P9_DPRINTK(P9_DEBUG_VFS, "dentry: %p\n", dentry);
1150 v9ses = v9fs_inode2v9ses(dentry->d_inode);
1151 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE)
1152 return simple_getattr(mnt, dentry, stat);
1154 fid = v9fs_fid_lookup(dentry);
1156 return PTR_ERR(fid);
1158 /* Ask for all the fields in stat structure. Server will return
1159 * whatever it supports
1162 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
1166 v9fs_stat2inode_dotl(st, dentry->d_inode);
1167 generic_fillattr(dentry->d_inode, stat);
1168 /* Change block size to what the server returned */
1169 stat->blksize = st->st_blksize;
1176 * v9fs_vfs_setattr - set file metadata
1177 * @dentry: file whose metadata to set
1178 * @iattr: metadata assignment structure
1182 static int v9fs_vfs_setattr(struct dentry *dentry, struct iattr *iattr)
1185 struct v9fs_session_info *v9ses;
1187 struct p9_wstat wstat;
1189 P9_DPRINTK(P9_DEBUG_VFS, "\n");
1191 v9ses = v9fs_inode2v9ses(dentry->d_inode);
1192 fid = v9fs_fid_lookup(dentry);
1194 return PTR_ERR(fid);
1196 v9fs_blank_wstat(&wstat);
1197 if (iattr->ia_valid & ATTR_MODE)
1198 wstat.mode = unixmode2p9mode(v9ses, iattr->ia_mode);
1200 if (iattr->ia_valid & ATTR_MTIME)
1201 wstat.mtime = iattr->ia_mtime.tv_sec;
1203 if (iattr->ia_valid & ATTR_ATIME)
1204 wstat.atime = iattr->ia_atime.tv_sec;
1206 if (iattr->ia_valid & ATTR_SIZE)
1207 wstat.length = iattr->ia_size;
1209 if (v9fs_proto_dotu(v9ses)) {
1210 if (iattr->ia_valid & ATTR_UID)
1211 wstat.n_uid = iattr->ia_uid;
1213 if (iattr->ia_valid & ATTR_GID)
1214 wstat.n_gid = iattr->ia_gid;
1217 retval = p9_client_wstat(fid, &wstat);
1221 if ((iattr->ia_valid & ATTR_SIZE) &&
1222 iattr->ia_size != i_size_read(dentry->d_inode)) {
1223 retval = vmtruncate(dentry->d_inode, iattr->ia_size);
1228 setattr_copy(dentry->d_inode, iattr);
1229 mark_inode_dirty(dentry->d_inode);
1234 * v9fs_vfs_setattr_dotl - set file metadata
1235 * @dentry: file whose metadata to set
1236 * @iattr: metadata assignment structure
1240 static int v9fs_vfs_setattr_dotl(struct dentry *dentry, struct iattr *iattr)
1243 struct v9fs_session_info *v9ses;
1245 struct p9_iattr_dotl p9attr;
1247 P9_DPRINTK(P9_DEBUG_VFS, "\n");
1249 retval = inode_change_ok(dentry->d_inode, iattr);
1253 p9attr.valid = iattr->ia_valid;
1254 p9attr.mode = iattr->ia_mode;
1255 p9attr.uid = iattr->ia_uid;
1256 p9attr.gid = iattr->ia_gid;
1257 p9attr.size = iattr->ia_size;
1258 p9attr.atime_sec = iattr->ia_atime.tv_sec;
1259 p9attr.atime_nsec = iattr->ia_atime.tv_nsec;
1260 p9attr.mtime_sec = iattr->ia_mtime.tv_sec;
1261 p9attr.mtime_nsec = iattr->ia_mtime.tv_nsec;
1264 v9ses = v9fs_inode2v9ses(dentry->d_inode);
1265 fid = v9fs_fid_lookup(dentry);
1267 return PTR_ERR(fid);
1269 retval = p9_client_setattr(fid, &p9attr);
1273 if ((iattr->ia_valid & ATTR_SIZE) &&
1274 iattr->ia_size != i_size_read(dentry->d_inode)) {
1275 retval = vmtruncate(dentry->d_inode, iattr->ia_size);
1280 setattr_copy(dentry->d_inode, iattr);
1281 mark_inode_dirty(dentry->d_inode);
1286 * v9fs_stat2inode - populate an inode structure with mistat info
1287 * @stat: Plan 9 metadata (mistat) structure
1288 * @inode: inode to populate
1289 * @sb: superblock of filesystem
1294 v9fs_stat2inode(struct p9_wstat *stat, struct inode *inode,
1295 struct super_block *sb)
1299 unsigned int i_nlink;
1300 struct v9fs_session_info *v9ses = sb->s_fs_info;
1304 inode->i_atime.tv_sec = stat->atime;
1305 inode->i_mtime.tv_sec = stat->mtime;
1306 inode->i_ctime.tv_sec = stat->mtime;
1308 inode->i_uid = v9ses->dfltuid;
1309 inode->i_gid = v9ses->dfltgid;
1311 if (v9fs_proto_dotu(v9ses)) {
1312 inode->i_uid = stat->n_uid;
1313 inode->i_gid = stat->n_gid;
1315 if ((S_ISREG(inode->i_mode)) || (S_ISDIR(inode->i_mode))) {
1316 if (v9fs_proto_dotu(v9ses) && (stat->extension[0] != '\0')) {
1318 * Hadlink support got added later to
1319 * to the .u extension. So there can be
1320 * server out there that doesn't support
1321 * this even with .u extension. So check
1322 * for non NULL stat->extension
1324 strncpy(ext, stat->extension, sizeof(ext));
1325 /* HARDLINKCOUNT %u */
1326 sscanf(ext, "%13s %u", tag_name, &i_nlink);
1327 if (!strncmp(tag_name, "HARDLINKCOUNT", 13))
1328 inode->i_nlink = i_nlink;
1331 inode->i_mode = p9mode2unixmode(v9ses, stat->mode);
1332 if ((S_ISBLK(inode->i_mode)) || (S_ISCHR(inode->i_mode))) {
1337 strncpy(ext, stat->extension, sizeof(ext));
1338 sscanf(ext, "%c %u %u", &type, &major, &minor);
1341 inode->i_mode &= ~S_IFBLK;
1342 inode->i_mode |= S_IFCHR;
1347 P9_DPRINTK(P9_DEBUG_ERROR,
1348 "Unknown special type %c %s\n", type,
1351 inode->i_rdev = MKDEV(major, minor);
1352 init_special_inode(inode, inode->i_mode, inode->i_rdev);
1356 i_size_write(inode, stat->length);
1358 /* not real number of blocks, but 512 byte ones ... */
1359 inode->i_blocks = (i_size_read(inode) + 512 - 1) >> 9;
1363 * v9fs_stat2inode_dotl - populate an inode structure with stat info
1364 * @stat: stat structure
1365 * @inode: inode to populate
1366 * @sb: superblock of filesystem
1371 v9fs_stat2inode_dotl(struct p9_stat_dotl *stat, struct inode *inode)
1374 if ((stat->st_result_mask & P9_STATS_BASIC) == P9_STATS_BASIC) {
1375 inode->i_atime.tv_sec = stat->st_atime_sec;
1376 inode->i_atime.tv_nsec = stat->st_atime_nsec;
1377 inode->i_mtime.tv_sec = stat->st_mtime_sec;
1378 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
1379 inode->i_ctime.tv_sec = stat->st_ctime_sec;
1380 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
1381 inode->i_uid = stat->st_uid;
1382 inode->i_gid = stat->st_gid;
1383 inode->i_nlink = stat->st_nlink;
1384 inode->i_mode = stat->st_mode;
1385 inode->i_rdev = new_decode_dev(stat->st_rdev);
1387 if ((S_ISBLK(inode->i_mode)) || (S_ISCHR(inode->i_mode)))
1388 init_special_inode(inode, inode->i_mode, inode->i_rdev);
1390 i_size_write(inode, stat->st_size);
1391 inode->i_blocks = stat->st_blocks;
1393 if (stat->st_result_mask & P9_STATS_ATIME) {
1394 inode->i_atime.tv_sec = stat->st_atime_sec;
1395 inode->i_atime.tv_nsec = stat->st_atime_nsec;
1397 if (stat->st_result_mask & P9_STATS_MTIME) {
1398 inode->i_mtime.tv_sec = stat->st_mtime_sec;
1399 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
1401 if (stat->st_result_mask & P9_STATS_CTIME) {
1402 inode->i_ctime.tv_sec = stat->st_ctime_sec;
1403 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
1405 if (stat->st_result_mask & P9_STATS_UID)
1406 inode->i_uid = stat->st_uid;
1407 if (stat->st_result_mask & P9_STATS_GID)
1408 inode->i_gid = stat->st_gid;
1409 if (stat->st_result_mask & P9_STATS_NLINK)
1410 inode->i_nlink = stat->st_nlink;
1411 if (stat->st_result_mask & P9_STATS_MODE) {
1412 inode->i_mode = stat->st_mode;
1413 if ((S_ISBLK(inode->i_mode)) ||
1414 (S_ISCHR(inode->i_mode)))
1415 init_special_inode(inode, inode->i_mode,
1418 if (stat->st_result_mask & P9_STATS_RDEV)
1419 inode->i_rdev = new_decode_dev(stat->st_rdev);
1420 if (stat->st_result_mask & P9_STATS_SIZE)
1421 i_size_write(inode, stat->st_size);
1422 if (stat->st_result_mask & P9_STATS_BLOCKS)
1423 inode->i_blocks = stat->st_blocks;
1425 if (stat->st_result_mask & P9_STATS_GEN)
1426 inode->i_generation = stat->st_gen;
1428 /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION
1429 * because the inode structure does not have fields for them.
1434 * v9fs_qid2ino - convert qid into inode number
1437 * BUG: potential for inode number collisions?
1440 ino_t v9fs_qid2ino(struct p9_qid *qid)
1442 u64 path = qid->path + 2;
1445 if (sizeof(ino_t) == sizeof(path))
1446 memcpy(&i, &path, sizeof(ino_t));
1448 i = (ino_t) (path ^ (path >> 32));
1454 * v9fs_readlink - read a symlink's location (internal version)
1455 * @dentry: dentry for symlink
1456 * @buffer: buffer to load symlink location into
1457 * @buflen: length of buffer
1461 static int v9fs_readlink(struct dentry *dentry, char *buffer, int buflen)
1465 struct v9fs_session_info *v9ses;
1467 struct p9_wstat *st;
1469 P9_DPRINTK(P9_DEBUG_VFS, " %s\n", dentry->d_name.name);
1471 v9ses = v9fs_inode2v9ses(dentry->d_inode);
1472 fid = v9fs_fid_lookup(dentry);
1474 return PTR_ERR(fid);
1476 if (!v9fs_proto_dotu(v9ses) && !v9fs_proto_dotl(v9ses))
1479 st = p9_client_stat(fid);
1483 if (!(st->mode & P9_DMSYMLINK)) {
1488 /* copy extension buffer into buffer */
1489 strncpy(buffer, st->extension, buflen);
1491 P9_DPRINTK(P9_DEBUG_VFS,
1492 "%s -> %s (%s)\n", dentry->d_name.name, st->extension, buffer);
1494 retval = strnlen(buffer, buflen);
1502 * v9fs_vfs_follow_link - follow a symlink path
1503 * @dentry: dentry for symlink
1508 static void *v9fs_vfs_follow_link(struct dentry *dentry, struct nameidata *nd)
1511 char *link = __getname();
1513 P9_DPRINTK(P9_DEBUG_VFS, "%s n", dentry->d_name.name);
1516 link = ERR_PTR(-ENOMEM);
1518 len = v9fs_readlink(dentry, link, PATH_MAX);
1522 link = ERR_PTR(len);
1524 link[min(len, PATH_MAX-1)] = 0;
1526 nd_set_link(nd, link);
1532 * v9fs_vfs_put_link - release a symlink path
1533 * @dentry: dentry for symlink
1540 v9fs_vfs_put_link(struct dentry *dentry, struct nameidata *nd, void *p)
1542 char *s = nd_get_link(nd);
1544 P9_DPRINTK(P9_DEBUG_VFS, " %s %s\n", dentry->d_name.name,
1545 IS_ERR(s) ? "<error>" : s);
1551 * v9fs_vfs_mkspecial - create a special file
1552 * @dir: inode to create special file in
1553 * @dentry: dentry to create
1554 * @mode: mode to create special file
1555 * @extension: 9p2000.u format extension string representing special file
1559 static int v9fs_vfs_mkspecial(struct inode *dir, struct dentry *dentry,
1560 int mode, const char *extension)
1563 struct v9fs_session_info *v9ses;
1566 v9ses = v9fs_inode2v9ses(dir);
1567 if (!v9fs_proto_dotu(v9ses)) {
1568 P9_DPRINTK(P9_DEBUG_ERROR, "not extended\n");
1572 perm = unixmode2p9mode(v9ses, mode);
1573 fid = v9fs_create(v9ses, dir, dentry, (char *) extension, perm,
1576 return PTR_ERR(fid);
1578 p9_client_clunk(fid);
1583 * v9fs_vfs_symlink_dotl - helper function to create symlinks
1584 * @dir: directory inode containing symlink
1585 * @dentry: dentry for symlink
1586 * @symname: symlink data
1588 * See Also: 9P2000.L RFC for more information
1593 v9fs_vfs_symlink_dotl(struct inode *dir, struct dentry *dentry,
1594 const char *symname)
1596 struct v9fs_session_info *v9ses;
1597 struct p9_fid *dfid;
1598 struct p9_fid *fid = NULL;
1599 struct inode *inode;
1605 name = (char *) dentry->d_name.name;
1606 P9_DPRINTK(P9_DEBUG_VFS, "v9fs_vfs_symlink_dotl : %lu,%s,%s\n",
1607 dir->i_ino, name, symname);
1608 v9ses = v9fs_inode2v9ses(dir);
1610 dfid = v9fs_fid_lookup(dentry->d_parent);
1612 err = PTR_ERR(dfid);
1613 P9_DPRINTK(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
1617 gid = v9fs_get_fsgid_for_create(dir);
1620 P9_DPRINTK(P9_DEBUG_VFS, "v9fs_get_egid failed %d\n", gid);
1624 /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */
1625 err = p9_client_symlink(dfid, name, (char *)symname, gid, &qid);
1628 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_symlink failed %d\n", err);
1633 /* Now walk from the parent so we can get an unopened fid. */
1634 fid = p9_client_walk(dfid, 1, &name, 1);
1637 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
1643 /* instantiate inode and assign the unopened fid to dentry */
1644 inode = v9fs_inode_from_fid(v9ses, fid, dir->i_sb);
1645 if (IS_ERR(inode)) {
1646 err = PTR_ERR(inode);
1647 P9_DPRINTK(P9_DEBUG_VFS, "inode creation failed %d\n",
1651 dentry->d_op = &v9fs_cached_dentry_operations;
1652 d_instantiate(dentry, inode);
1653 err = v9fs_fid_add(dentry, fid);
1658 /* Not in cached mode. No need to populate inode with stat */
1659 inode = v9fs_get_inode(dir->i_sb, S_IFLNK);
1660 if (IS_ERR(inode)) {
1661 err = PTR_ERR(inode);
1664 dentry->d_op = &v9fs_dentry_operations;
1665 d_instantiate(dentry, inode);
1670 p9_client_clunk(fid);
1676 * v9fs_vfs_symlink - helper function to create symlinks
1677 * @dir: directory inode containing symlink
1678 * @dentry: dentry for symlink
1679 * @symname: symlink data
1681 * See Also: 9P2000.u RFC for more information
1686 v9fs_vfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
1688 P9_DPRINTK(P9_DEBUG_VFS, " %lu,%s,%s\n", dir->i_ino,
1689 dentry->d_name.name, symname);
1691 return v9fs_vfs_mkspecial(dir, dentry, S_IFLNK, symname);
1695 * v9fs_vfs_link - create a hardlink
1696 * @old_dentry: dentry for file to link to
1697 * @dir: inode destination for new link
1698 * @dentry: dentry for link
1703 v9fs_vfs_link(struct dentry *old_dentry, struct inode *dir,
1704 struct dentry *dentry)
1707 struct p9_fid *oldfid;
1710 P9_DPRINTK(P9_DEBUG_VFS,
1711 " %lu,%s,%s\n", dir->i_ino, dentry->d_name.name,
1712 old_dentry->d_name.name);
1714 oldfid = v9fs_fid_clone(old_dentry);
1716 return PTR_ERR(oldfid);
1719 if (unlikely(!name)) {
1724 sprintf(name, "%d\n", oldfid->fid);
1725 retval = v9fs_vfs_mkspecial(dir, dentry, P9_DMLINK, name);
1729 p9_client_clunk(oldfid);
1734 * v9fs_vfs_link_dotl - create a hardlink for dotl
1735 * @old_dentry: dentry for file to link to
1736 * @dir: inode destination for new link
1737 * @dentry: dentry for link
1742 v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir,
1743 struct dentry *dentry)
1746 struct p9_fid *dfid, *oldfid;
1748 struct v9fs_session_info *v9ses;
1749 struct dentry *dir_dentry;
1751 P9_DPRINTK(P9_DEBUG_VFS, "dir ino: %lu, old_name: %s, new_name: %s\n",
1752 dir->i_ino, old_dentry->d_name.name,
1753 dentry->d_name.name);
1755 v9ses = v9fs_inode2v9ses(dir);
1756 dir_dentry = v9fs_dentry_from_dir_inode(dir);
1757 dfid = v9fs_fid_lookup(dir_dentry);
1759 return PTR_ERR(dfid);
1761 oldfid = v9fs_fid_lookup(old_dentry);
1763 return PTR_ERR(oldfid);
1765 name = (char *) dentry->d_name.name;
1767 err = p9_client_link(dfid, oldfid, (char *)dentry->d_name.name);
1770 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_link failed %d\n", err);
1774 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
1775 /* Get the latest stat info from server. */
1777 struct p9_stat_dotl *st;
1779 fid = v9fs_fid_lookup(old_dentry);
1781 return PTR_ERR(fid);
1783 st = p9_client_getattr_dotl(fid, P9_STATS_BASIC);
1787 v9fs_stat2inode_dotl(st, old_dentry->d_inode);
1791 /* Caching disabled. No need to get upto date stat info.
1792 * This dentry will be released immediately. So, just hold the
1795 ihold(old_dentry->d_inode);
1798 dentry->d_op = old_dentry->d_op;
1799 d_instantiate(dentry, old_dentry->d_inode);
1805 * v9fs_vfs_mknod - create a special file
1806 * @dir: inode destination for new link
1807 * @dentry: dentry for file
1808 * @mode: mode for creation
1809 * @rdev: device associated with special file
1814 v9fs_vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t rdev)
1819 P9_DPRINTK(P9_DEBUG_VFS,
1820 " %lu,%s mode: %x MAJOR: %u MINOR: %u\n", dir->i_ino,
1821 dentry->d_name.name, mode, MAJOR(rdev), MINOR(rdev));
1823 if (!new_valid_dev(rdev))
1829 /* build extension */
1831 sprintf(name, "b %u %u", MAJOR(rdev), MINOR(rdev));
1832 else if (S_ISCHR(mode))
1833 sprintf(name, "c %u %u", MAJOR(rdev), MINOR(rdev));
1834 else if (S_ISFIFO(mode))
1836 else if (S_ISSOCK(mode))
1843 retval = v9fs_vfs_mkspecial(dir, dentry, mode, name);
1850 * v9fs_vfs_mknod_dotl - create a special file
1851 * @dir: inode destination for new link
1852 * @dentry: dentry for file
1853 * @mode: mode for creation
1854 * @rdev: device associated with special file
1858 v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, int mode,
1863 struct v9fs_session_info *v9ses;
1864 struct p9_fid *fid = NULL, *dfid = NULL;
1865 struct inode *inode;
1868 struct dentry *dir_dentry;
1870 P9_DPRINTK(P9_DEBUG_VFS,
1871 " %lu,%s mode: %x MAJOR: %u MINOR: %u\n", dir->i_ino,
1872 dentry->d_name.name, mode, MAJOR(rdev), MINOR(rdev));
1874 if (!new_valid_dev(rdev))
1877 v9ses = v9fs_inode2v9ses(dir);
1878 dir_dentry = v9fs_dentry_from_dir_inode(dir);
1879 dfid = v9fs_fid_lookup(dir_dentry);
1881 err = PTR_ERR(dfid);
1882 P9_DPRINTK(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
1887 gid = v9fs_get_fsgid_for_create(dir);
1889 P9_DPRINTK(P9_DEBUG_VFS, "v9fs_get_fsgid_for_create failed\n");
1893 name = (char *) dentry->d_name.name;
1895 err = p9_client_mknod_dotl(dfid, name, mode, rdev, gid, &qid);
1899 /* instantiate inode and assign the unopened fid to the dentry */
1900 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
1901 fid = p9_client_walk(dfid, 1, &name, 1);
1904 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
1910 inode = v9fs_inode_from_fid(v9ses, fid, dir->i_sb);
1911 if (IS_ERR(inode)) {
1912 err = PTR_ERR(inode);
1913 P9_DPRINTK(P9_DEBUG_VFS, "inode creation failed %d\n",
1917 dentry->d_op = &v9fs_cached_dentry_operations;
1918 d_instantiate(dentry, inode);
1919 err = v9fs_fid_add(dentry, fid);
1925 * Not in cached mode. No need to populate inode with stat.
1926 * socket syscall returns a fd, so we need instantiate
1928 inode = v9fs_get_inode(dir->i_sb, mode);
1929 if (IS_ERR(inode)) {
1930 err = PTR_ERR(inode);
1933 dentry->d_op = &v9fs_dentry_operations;
1934 d_instantiate(dentry, inode);
1939 p9_client_clunk(fid);
1943 static const struct inode_operations v9fs_dir_inode_operations_dotu = {
1944 .create = v9fs_vfs_create,
1945 .lookup = v9fs_vfs_lookup,
1946 .symlink = v9fs_vfs_symlink,
1947 .link = v9fs_vfs_link,
1948 .unlink = v9fs_vfs_unlink,
1949 .mkdir = v9fs_vfs_mkdir,
1950 .rmdir = v9fs_vfs_rmdir,
1951 .mknod = v9fs_vfs_mknod,
1952 .rename = v9fs_vfs_rename,
1953 .getattr = v9fs_vfs_getattr,
1954 .setattr = v9fs_vfs_setattr,
1957 static const struct inode_operations v9fs_dir_inode_operations_dotl = {
1958 .create = v9fs_vfs_create_dotl,
1959 .lookup = v9fs_vfs_lookup,
1960 .link = v9fs_vfs_link_dotl,
1961 .symlink = v9fs_vfs_symlink_dotl,
1962 .unlink = v9fs_vfs_unlink,
1963 .mkdir = v9fs_vfs_mkdir_dotl,
1964 .rmdir = v9fs_vfs_rmdir,
1965 .mknod = v9fs_vfs_mknod_dotl,
1966 .rename = v9fs_vfs_rename,
1967 .getattr = v9fs_vfs_getattr_dotl,
1968 .setattr = v9fs_vfs_setattr_dotl,
1969 .setxattr = generic_setxattr,
1970 .getxattr = generic_getxattr,
1971 .removexattr = generic_removexattr,
1972 .listxattr = v9fs_listxattr,
1976 static const struct inode_operations v9fs_dir_inode_operations = {
1977 .create = v9fs_vfs_create,
1978 .lookup = v9fs_vfs_lookup,
1979 .unlink = v9fs_vfs_unlink,
1980 .mkdir = v9fs_vfs_mkdir,
1981 .rmdir = v9fs_vfs_rmdir,
1982 .mknod = v9fs_vfs_mknod,
1983 .rename = v9fs_vfs_rename,
1984 .getattr = v9fs_vfs_getattr,
1985 .setattr = v9fs_vfs_setattr,
1988 static const struct inode_operations v9fs_file_inode_operations = {
1989 .getattr = v9fs_vfs_getattr,
1990 .setattr = v9fs_vfs_setattr,
1993 static const struct inode_operations v9fs_file_inode_operations_dotl = {
1994 .getattr = v9fs_vfs_getattr_dotl,
1995 .setattr = v9fs_vfs_setattr_dotl,
1996 .setxattr = generic_setxattr,
1997 .getxattr = generic_getxattr,
1998 .removexattr = generic_removexattr,
1999 .listxattr = v9fs_listxattr,
2002 static const struct inode_operations v9fs_symlink_inode_operations = {
2003 .readlink = generic_readlink,
2004 .follow_link = v9fs_vfs_follow_link,
2005 .put_link = v9fs_vfs_put_link,
2006 .getattr = v9fs_vfs_getattr,
2007 .setattr = v9fs_vfs_setattr,
2010 static const struct inode_operations v9fs_symlink_inode_operations_dotl = {
2011 .readlink = generic_readlink,
2012 .follow_link = v9fs_vfs_follow_link,
2013 .put_link = v9fs_vfs_put_link,
2014 .getattr = v9fs_vfs_getattr_dotl,
2015 .setattr = v9fs_vfs_setattr_dotl,
2016 .setxattr = generic_setxattr,
2017 .getxattr = generic_getxattr,
2018 .removexattr = generic_removexattr,
2019 .listxattr = v9fs_listxattr,