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/smp_lock.h>
34 #include <linux/inet.h>
35 #include <linux/namei.h>
36 #include <linux/idr.h>
44 static struct inode_operations v9fs_dir_inode_operations;
45 static struct inode_operations v9fs_dir_inode_operations_ext;
46 static struct inode_operations v9fs_file_inode_operations;
47 static struct inode_operations v9fs_symlink_inode_operations;
50 * unixmode2p9mode - convert unix mode bits to plan 9
51 * @v9ses: v9fs session information
52 * @mode: mode to convert
56 static int unixmode2p9mode(struct v9fs_session_info *v9ses, int mode)
62 if (v9ses->extended) {
64 res |= V9FS_DMSYMLINK;
65 if (v9ses->nodev == 0) {
69 res |= V9FS_DMNAMEDPIPE;
76 if ((mode & S_ISUID) == S_ISUID)
78 if ((mode & S_ISGID) == S_ISGID)
80 if ((mode & V9FS_DMLINK))
88 * p9mode2unixmode- convert plan9 mode bits to unix mode bits
89 * @v9ses: v9fs session information
90 * @mode: mode to convert
94 static int p9mode2unixmode(struct v9fs_session_info *v9ses, int mode)
100 if ((mode & V9FS_DMDIR) == V9FS_DMDIR)
102 else if ((mode & V9FS_DMSYMLINK) && (v9ses->extended))
104 else if ((mode & V9FS_DMSOCKET) && (v9ses->extended)
105 && (v9ses->nodev == 0))
107 else if ((mode & V9FS_DMNAMEDPIPE) && (v9ses->extended)
108 && (v9ses->nodev == 0))
110 else if ((mode & V9FS_DMDEVICE) && (v9ses->extended)
111 && (v9ses->nodev == 0))
116 if (v9ses->extended) {
117 if ((mode & V9FS_DMSETUID) == V9FS_DMSETUID)
120 if ((mode & V9FS_DMSETGID) == V9FS_DMSETGID)
127 int v9fs_uflags2omode(int uflags)
150 if (uflags & O_TRUNC)
153 if (uflags & O_APPEND)
160 * v9fs_blank_wstat - helper function to setup a 9P stat structure
161 * @v9ses: 9P session info (for determining extended mode)
162 * @wstat: structure to initialize
167 v9fs_blank_wstat(struct v9fs_wstat *wstat)
171 wstat->qid.type = ~0;
172 wstat->qid.version = ~0;
173 *((long long *)&wstat->qid.path) = ~0;
185 wstat->extension = NULL;
189 * v9fs_get_inode - helper function to setup an inode
191 * @mode: mode to setup inode with
195 struct inode *v9fs_get_inode(struct super_block *sb, int mode)
198 struct v9fs_session_info *v9ses = sb->s_fs_info;
200 dprintk(DEBUG_VFS, "super block: %p mode: %o\n", sb, mode);
202 inode = new_inode(sb);
204 inode->i_mode = mode;
205 inode->i_uid = current->fsuid;
206 inode->i_gid = current->fsgid;
209 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
210 inode->i_mapping->a_ops = &v9fs_addr_operations;
212 switch (mode & S_IFMT) {
217 if(!v9ses->extended) {
218 dprintk(DEBUG_ERROR, "special files without extended mode\n");
219 return ERR_PTR(-EINVAL);
221 init_special_inode(inode, inode->i_mode,
225 inode->i_op = &v9fs_file_inode_operations;
226 inode->i_fop = &v9fs_file_operations;
229 if(!v9ses->extended) {
230 dprintk(DEBUG_ERROR, "extended modes used w/o 9P2000.u\n");
231 return ERR_PTR(-EINVAL);
233 inode->i_op = &v9fs_symlink_inode_operations;
238 inode->i_op = &v9fs_dir_inode_operations_ext;
240 inode->i_op = &v9fs_dir_inode_operations;
241 inode->i_fop = &v9fs_dir_operations;
244 dprintk(DEBUG_ERROR, "BAD mode 0x%x S_IFMT 0x%x\n",
245 mode, mode & S_IFMT);
246 return ERR_PTR(-EINVAL);
249 eprintk(KERN_WARNING, "Problem allocating inode\n");
250 return ERR_PTR(-ENOMEM);
256 v9fs_create(struct v9fs_session_info *v9ses, u32 pfid, char *name, u32 perm,
257 u8 mode, char *extension, u32 *fidp, struct v9fs_qid *qid, u32 *iounit)
261 struct v9fs_fcall *fcall;
263 fid = v9fs_get_idpool(&v9ses->fidpool);
265 eprintk(KERN_WARNING, "no free fids available\n");
269 err = v9fs_t_walk(v9ses, pfid, fid, NULL, &fcall);
271 PRINT_FCALL_ERROR("clone error", fcall);
272 if (fcall && fcall->id == RWALK)
279 err = v9fs_t_create(v9ses, fid, name, perm, mode, extension, &fcall);
281 PRINT_FCALL_ERROR("create fails", fcall);
286 *iounit = fcall->params.rcreate.iounit;
289 *qid = fcall->params.rcreate.qid;
298 v9fs_t_clunk(v9ses, fid);
302 if (fid != V9FS_NOFID)
303 v9fs_put_idpool(fid, &v9ses->fidpool);
309 static struct v9fs_fid*
310 v9fs_clone_walk(struct v9fs_session_info *v9ses, u32 fid, struct dentry *dentry)
314 struct v9fs_fid *ret;
315 struct v9fs_fcall *fcall;
317 nfid = v9fs_get_idpool(&v9ses->fidpool);
319 eprintk(KERN_WARNING, "no free fids available\n");
320 return ERR_PTR(-ENOSPC);
323 err = v9fs_t_walk(v9ses, fid, nfid, (char *) dentry->d_name.name,
327 if (fcall && fcall->id == RWALK)
330 PRINT_FCALL_ERROR("walk error", fcall);
331 v9fs_put_idpool(nfid, &v9ses->fidpool);
337 ret = v9fs_fid_create(v9ses, nfid);
343 err = v9fs_fid_insert(ret, dentry);
345 v9fs_fid_destroy(ret);
352 v9fs_t_clunk(v9ses, nfid);
359 static struct inode *
360 v9fs_inode_from_fid(struct v9fs_session_info *v9ses, u32 fid,
361 struct super_block *sb)
365 struct v9fs_fcall *fcall;
368 err = v9fs_t_stat(v9ses, fid, &fcall);
370 PRINT_FCALL_ERROR("stat error", fcall);
374 umode = p9mode2unixmode(v9ses, fcall->params.rstat.stat.mode);
375 ret = v9fs_get_inode(sb, umode);
382 v9fs_stat2inode(&fcall->params.rstat.stat, ret, sb);
395 * v9fs_remove - helper function to remove files and directories
396 * @dir: directory inode that is being deleted
397 * @file: dentry that is being deleted
398 * @rmdir: removing a directory
402 static int v9fs_remove(struct inode *dir, struct dentry *file, int rmdir)
404 struct v9fs_fcall *fcall = NULL;
405 struct super_block *sb = NULL;
406 struct v9fs_session_info *v9ses = NULL;
407 struct v9fs_fid *v9fid = NULL;
408 struct inode *file_inode = NULL;
412 dprintk(DEBUG_VFS, "inode: %p dentry: %p rmdir: %d\n", dir, file,
415 file_inode = file->d_inode;
416 sb = file_inode->i_sb;
417 v9ses = v9fs_inode2v9ses(file_inode);
418 v9fid = v9fs_fid_lookup(file);
428 dprintk(DEBUG_ERROR, "inode #%lu, no fid!\n",
433 result = v9fs_t_remove(v9ses, fid, &fcall);
435 PRINT_FCALL_ERROR("remove fails", fcall);
438 v9fs_put_idpool(fid, &v9ses->fidpool);
439 v9fs_fid_destroy(v9fid);
446 v9fs_open_created(struct inode *inode, struct file *file)
452 * v9fs_vfs_create - VFS hook to create files
453 * @inode: directory inode that is being deleted
454 * @dentry: dentry that is being deleted
455 * @mode: create permissions
456 * @nd: path information
461 v9fs_vfs_create(struct inode *dir, struct dentry *dentry, int mode,
462 struct nameidata *nd)
465 u32 fid, perm, iounit;
467 struct v9fs_session_info *v9ses;
468 struct v9fs_fid *dfid, *vfid, *ffid;
475 v9ses = v9fs_inode2v9ses(dir);
476 dfid = v9fs_fid_lookup(dentry->d_parent);
477 perm = unixmode2p9mode(v9ses, mode);
479 if (nd && nd->flags & LOOKUP_OPEN)
480 flags = nd->intent.open.flags - 1;
484 err = v9fs_create(v9ses, dfid->fid, (char *) dentry->d_name.name,
485 perm, v9fs_uflags2omode(flags), NULL, &fid, &qid, &iounit);
490 vfid = v9fs_clone_walk(v9ses, dfid->fid, dentry);
497 inode = v9fs_inode_from_fid(v9ses, vfid->fid, dir->i_sb);
499 err = PTR_ERR(inode);
504 dentry->d_op = &v9fs_dentry_operations;
505 d_instantiate(dentry, inode);
507 if (nd && nd->flags & LOOKUP_OPEN) {
508 ffid = v9fs_fid_create(v9ses, fid);
512 filp = lookup_instantiate_filp(nd, dentry, v9fs_open_created);
514 v9fs_fid_destroy(ffid);
515 return PTR_ERR(filp);
519 ffid->rdir_fcall = NULL;
521 ffid->iounit = iounit;
523 filp->private_data = ffid;
530 v9fs_fid_destroy(vfid);
536 * v9fs_vfs_mkdir - VFS mkdir hook to create a directory
537 * @inode: inode that is being unlinked
538 * @dentry: dentry that is being unlinked
539 * @mode: mode for new directory
543 static int v9fs_vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
547 struct v9fs_session_info *v9ses;
548 struct v9fs_fid *dfid, *vfid;
553 v9ses = v9fs_inode2v9ses(dir);
554 dfid = v9fs_fid_lookup(dentry->d_parent);
555 perm = unixmode2p9mode(v9ses, mode | S_IFDIR);
557 err = v9fs_create(v9ses, dfid->fid, (char *) dentry->d_name.name,
558 perm, V9FS_OREAD, NULL, &fid, NULL, NULL);
561 dprintk(DEBUG_ERROR, "create error %d\n", err);
565 err = v9fs_t_clunk(v9ses, fid);
567 dprintk(DEBUG_ERROR, "clunk error %d\n", err);
571 vfid = v9fs_clone_walk(v9ses, dfid->fid, dentry);
578 inode = v9fs_inode_from_fid(v9ses, vfid->fid, dir->i_sb);
580 err = PTR_ERR(inode);
585 dentry->d_op = &v9fs_dentry_operations;
586 d_instantiate(dentry, inode);
591 v9fs_fid_destroy(vfid);
597 * v9fs_vfs_lookup - VFS lookup hook to "walk" to a new inode
598 * @dir: inode that is being walked from
599 * @dentry: dentry that is being walked to?
600 * @nameidata: path data
604 static struct dentry *v9fs_vfs_lookup(struct inode *dir, struct dentry *dentry,
605 struct nameidata *nameidata)
607 struct super_block *sb;
608 struct v9fs_session_info *v9ses;
609 struct v9fs_fid *dirfid;
610 struct v9fs_fid *fid;
612 struct v9fs_fcall *fcall = NULL;
617 dprintk(DEBUG_VFS, "dir: %p dentry: (%s) %p nameidata: %p\n",
618 dir, dentry->d_name.name, dentry, nameidata);
621 v9ses = v9fs_inode2v9ses(dir);
622 dentry->d_op = &v9fs_dentry_operations;
623 dirfid = v9fs_fid_lookup(dentry->d_parent);
626 dprintk(DEBUG_ERROR, "no dirfid\n");
627 return ERR_PTR(-EINVAL);
630 dirfidnum = dirfid->fid;
633 dprintk(DEBUG_ERROR, "no dirfid for inode %p, #%lu\n",
635 return ERR_PTR(-EBADF);
638 newfid = v9fs_get_idpool(&v9ses->fidpool);
640 eprintk(KERN_WARNING, "newfid fails!\n");
641 return ERR_PTR(-ENOSPC);
644 result = v9fs_t_walk(v9ses, dirfidnum, newfid,
645 (char *)dentry->d_name.name, &fcall);
648 if (fcall && fcall->id == RWALK)
649 v9fs_t_clunk(v9ses, newfid);
651 v9fs_put_idpool(newfid, &v9ses->fidpool);
653 if (result == -ENOENT) {
656 "Return negative dentry %p count %d\n",
657 dentry, atomic_read(&dentry->d_count));
661 dprintk(DEBUG_ERROR, "walk error:%d\n", result);
666 result = v9fs_t_stat(v9ses, newfid, &fcall);
668 dprintk(DEBUG_ERROR, "stat error\n");
672 inode = v9fs_get_inode(sb, p9mode2unixmode(v9ses,
673 fcall->params.rstat.stat.mode));
675 if (IS_ERR(inode) && (PTR_ERR(inode) == -ENOSPC)) {
676 eprintk(KERN_WARNING, "inode alloc failes, returns %ld\n",
683 inode->i_ino = v9fs_qid2ino(&fcall->params.rstat.stat.qid);
685 fid = v9fs_fid_create(v9ses, newfid);
687 dprintk(DEBUG_ERROR, "couldn't insert\n");
692 result = v9fs_fid_insert(fid, dentry);
696 fid->qid = fcall->params.rstat.stat.qid;
697 v9fs_stat2inode(&fcall->params.rstat.stat, inode, inode->i_sb);
699 d_add(dentry, inode);
706 return ERR_PTR(result);
710 * v9fs_vfs_unlink - VFS unlink hook to delete an inode
711 * @i: inode that is being unlinked
712 * @d: dentry that is being unlinked
716 static int v9fs_vfs_unlink(struct inode *i, struct dentry *d)
718 return v9fs_remove(i, d, 0);
722 * v9fs_vfs_rmdir - VFS unlink hook to delete a directory
723 * @i: inode that is being unlinked
724 * @d: dentry that is being unlinked
728 static int v9fs_vfs_rmdir(struct inode *i, struct dentry *d)
730 return v9fs_remove(i, d, 1);
734 * v9fs_vfs_rename - VFS hook to rename an inode
735 * @old_dir: old dir inode
736 * @old_dentry: old dentry
737 * @new_dir: new dir inode
738 * @new_dentry: new dentry
743 v9fs_vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
744 struct inode *new_dir, struct dentry *new_dentry)
746 struct inode *old_inode = old_dentry->d_inode;
747 struct v9fs_session_info *v9ses = v9fs_inode2v9ses(old_inode);
748 struct v9fs_fid *oldfid = v9fs_fid_lookup(old_dentry);
749 struct v9fs_fid *olddirfid =
750 v9fs_fid_lookup(old_dentry->d_parent);
751 struct v9fs_fid *newdirfid =
752 v9fs_fid_lookup(new_dentry->d_parent);
753 struct v9fs_wstat wstat;
754 struct v9fs_fcall *fcall = NULL;
756 int olddirfidnum = -1;
757 int newdirfidnum = -1;
760 dprintk(DEBUG_VFS, "\n");
762 if ((!oldfid) || (!olddirfid) || (!newdirfid)) {
763 dprintk(DEBUG_ERROR, "problem with arguments\n");
767 /* 9P can only handle file rename in the same directory */
768 if (memcmp(&olddirfid->qid, &newdirfid->qid, sizeof(newdirfid->qid))) {
769 dprintk(DEBUG_ERROR, "old dir and new dir are different\n");
775 olddirfidnum = olddirfid->fid;
776 newdirfidnum = newdirfid->fid;
779 dprintk(DEBUG_ERROR, "no fid for old file #%lu\n",
785 v9fs_blank_wstat(&wstat);
786 wstat.muid = v9ses->name;
787 wstat.name = (char *) new_dentry->d_name.name;
789 retval = v9fs_t_wstat(v9ses, fid, &wstat, &fcall);
793 PRINT_FCALL_ERROR("wstat error", fcall);
800 * v9fs_vfs_getattr - retrieve file metadata
801 * @mnt - mount information
802 * @dentry - file to get attributes on
803 * @stat - metadata structure to populate
808 v9fs_vfs_getattr(struct vfsmount *mnt, struct dentry *dentry,
811 struct v9fs_fcall *fcall = NULL;
812 struct v9fs_session_info *v9ses = v9fs_inode2v9ses(dentry->d_inode);
813 struct v9fs_fid *fid = v9fs_fid_lookup(dentry);
816 dprintk(DEBUG_VFS, "dentry: %p\n", dentry);
819 "couldn't find fid associated with dentry\n");
823 err = v9fs_t_stat(v9ses, fid->fid, &fcall);
826 dprintk(DEBUG_ERROR, "stat error\n");
828 v9fs_stat2inode(&fcall->params.rstat.stat, dentry->d_inode,
829 dentry->d_inode->i_sb);
830 generic_fillattr(dentry->d_inode, stat);
838 * v9fs_vfs_setattr - set file metadata
839 * @dentry: file whose metadata to set
840 * @iattr: metadata assignment structure
844 static int v9fs_vfs_setattr(struct dentry *dentry, struct iattr *iattr)
846 struct v9fs_session_info *v9ses = v9fs_inode2v9ses(dentry->d_inode);
847 struct v9fs_fid *fid = v9fs_fid_lookup(dentry);
848 struct v9fs_fcall *fcall = NULL;
849 struct v9fs_wstat wstat;
852 dprintk(DEBUG_VFS, "\n");
856 "Couldn't find fid associated with dentry\n");
860 v9fs_blank_wstat(&wstat);
861 if (iattr->ia_valid & ATTR_MODE)
862 wstat.mode = unixmode2p9mode(v9ses, iattr->ia_mode);
864 if (iattr->ia_valid & ATTR_MTIME)
865 wstat.mtime = iattr->ia_mtime.tv_sec;
867 if (iattr->ia_valid & ATTR_ATIME)
868 wstat.atime = iattr->ia_atime.tv_sec;
870 if (iattr->ia_valid & ATTR_SIZE)
871 wstat.length = iattr->ia_size;
873 if (v9ses->extended) {
874 if (iattr->ia_valid & ATTR_UID)
875 wstat.n_uid = iattr->ia_uid;
877 if (iattr->ia_valid & ATTR_GID)
878 wstat.n_gid = iattr->ia_gid;
881 res = v9fs_t_wstat(v9ses, fid->fid, &wstat, &fcall);
884 PRINT_FCALL_ERROR("wstat error", fcall);
888 res = inode_setattr(dentry->d_inode, iattr);
894 * v9fs_stat2inode - populate an inode structure with mistat info
895 * @stat: Plan 9 metadata (mistat) structure
896 * @inode: inode to populate
897 * @sb: superblock of filesystem
902 v9fs_stat2inode(struct v9fs_stat *stat, struct inode *inode,
903 struct super_block *sb)
907 struct v9fs_session_info *v9ses = sb->s_fs_info;
911 inode->i_atime.tv_sec = stat->atime;
912 inode->i_mtime.tv_sec = stat->mtime;
913 inode->i_ctime.tv_sec = stat->mtime;
915 inode->i_uid = v9ses->uid;
916 inode->i_gid = v9ses->gid;
918 if (v9ses->extended) {
919 inode->i_uid = stat->n_uid;
920 inode->i_gid = stat->n_gid;
923 inode->i_mode = p9mode2unixmode(v9ses, stat->mode);
924 if ((S_ISBLK(inode->i_mode)) || (S_ISCHR(inode->i_mode))) {
929 n = stat->extension.len;
930 if (n > sizeof(ext)-1)
932 memmove(ext, stat->extension.str, n);
934 sscanf(ext, "%c %u %u", &type, &major, &minor);
937 inode->i_mode &= ~S_IFBLK;
938 inode->i_mode |= S_IFCHR;
943 dprintk(DEBUG_ERROR, "Unknown special type %c (%.*s)\n",
944 type, stat->extension.len, stat->extension.str);
946 inode->i_rdev = MKDEV(major, minor);
950 inode->i_size = stat->length;
953 (inode->i_size + sb->s_blocksize - 1) >> sb->s_blocksize_bits;
957 * v9fs_qid2ino - convert qid into inode number
960 * BUG: potential for inode number collisions?
963 ino_t v9fs_qid2ino(struct v9fs_qid *qid)
965 u64 path = qid->path + 2;
968 if (sizeof(ino_t) == sizeof(path))
969 memcpy(&i, &path, sizeof(ino_t));
971 i = (ino_t) (path ^ (path >> 32));
977 * v9fs_readlink - read a symlink's location (internal version)
978 * @dentry: dentry for symlink
979 * @buffer: buffer to load symlink location into
980 * @buflen: length of buffer
984 static int v9fs_readlink(struct dentry *dentry, char *buffer, int buflen)
988 struct v9fs_fcall *fcall = NULL;
989 struct v9fs_session_info *v9ses = v9fs_inode2v9ses(dentry->d_inode);
990 struct v9fs_fid *fid = v9fs_fid_lookup(dentry);
993 dprintk(DEBUG_ERROR, "could not resolve fid from dentry\n");
998 if (!v9ses->extended) {
1000 dprintk(DEBUG_ERROR, "not extended\n");
1004 dprintk(DEBUG_VFS, " %s\n", dentry->d_name.name);
1005 retval = v9fs_t_stat(v9ses, fid->fid, &fcall);
1008 dprintk(DEBUG_ERROR, "stat error\n");
1015 if (!(fcall->params.rstat.stat.mode & V9FS_DMSYMLINK)) {
1020 /* copy extension buffer into buffer */
1021 if (fcall->params.rstat.stat.extension.len < buflen)
1022 buflen = fcall->params.rstat.stat.extension.len + 1;
1024 memmove(buffer, fcall->params.rstat.stat.extension.str, buflen - 1);
1025 buffer[buflen-1] = 0;
1027 dprintk(DEBUG_ERROR, "%s -> %.*s (%s)\n", dentry->d_name.name, fcall->params.rstat.stat.extension.len,
1028 fcall->params.rstat.stat.extension.str, buffer);
1038 * v9fs_vfs_readlink - read a symlink's location
1039 * @dentry: dentry for symlink
1040 * @buf: buffer to load symlink location into
1041 * @buflen: length of buffer
1045 static int v9fs_vfs_readlink(struct dentry *dentry, char __user * buffer,
1050 char *link = __getname();
1052 if (unlikely(!link))
1055 if (buflen > PATH_MAX)
1058 dprintk(DEBUG_VFS, " dentry: %s (%p)\n", dentry->d_iname, dentry);
1060 retval = v9fs_readlink(dentry, link, buflen);
1063 if ((ret = copy_to_user(buffer, link, retval)) != 0) {
1064 dprintk(DEBUG_ERROR, "problem copying to user: %d\n",
1075 * v9fs_vfs_follow_link - follow a symlink path
1076 * @dentry: dentry for symlink
1081 static void *v9fs_vfs_follow_link(struct dentry *dentry, struct nameidata *nd)
1084 char *link = __getname();
1086 dprintk(DEBUG_VFS, "%s n", dentry->d_name.name);
1089 link = ERR_PTR(-ENOMEM);
1091 len = v9fs_readlink(dentry, link, PATH_MAX);
1095 link = ERR_PTR(len);
1099 nd_set_link(nd, link);
1105 * v9fs_vfs_put_link - release a symlink path
1106 * @dentry: dentry for symlink
1111 static void v9fs_vfs_put_link(struct dentry *dentry, struct nameidata *nd, void *p)
1113 char *s = nd_get_link(nd);
1115 dprintk(DEBUG_VFS, " %s %s\n", dentry->d_name.name, s);
1120 static int v9fs_vfs_mkspecial(struct inode *dir, struct dentry *dentry,
1121 int mode, const char *extension)
1125 struct v9fs_session_info *v9ses;
1126 struct v9fs_fid *dfid, *vfid;
1127 struct inode *inode;
1131 v9ses = v9fs_inode2v9ses(dir);
1132 dfid = v9fs_fid_lookup(dentry->d_parent);
1133 perm = unixmode2p9mode(v9ses, mode);
1135 if (!v9ses->extended) {
1136 dprintk(DEBUG_ERROR, "not extended\n");
1140 err = v9fs_create(v9ses, dfid->fid, (char *) dentry->d_name.name,
1141 perm, V9FS_OREAD, (char *) extension, &fid, NULL, NULL);
1146 err = v9fs_t_clunk(v9ses, fid);
1150 vfid = v9fs_clone_walk(v9ses, dfid->fid, dentry);
1152 err = PTR_ERR(vfid);
1157 inode = v9fs_inode_from_fid(v9ses, vfid->fid, dir->i_sb);
1158 if (IS_ERR(inode)) {
1159 err = PTR_ERR(inode);
1164 dentry->d_op = &v9fs_dentry_operations;
1165 d_instantiate(dentry, inode);
1170 v9fs_fid_destroy(vfid);
1177 * v9fs_vfs_symlink - helper function to create symlinks
1178 * @dir: directory inode containing symlink
1179 * @dentry: dentry for symlink
1180 * @symname: symlink data
1182 * See 9P2000.u RFC for more information
1187 v9fs_vfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
1189 dprintk(DEBUG_VFS, " %lu,%s,%s\n", dir->i_ino, dentry->d_name.name,
1192 return v9fs_vfs_mkspecial(dir, dentry, S_IFLNK, symname);
1196 * v9fs_vfs_link - create a hardlink
1197 * @old_dentry: dentry for file to link to
1198 * @dir: inode destination for new link
1199 * @dentry: dentry for link
1203 /* XXX - lots of code dup'd from symlink and creates,
1204 * figure out a better reuse strategy
1208 v9fs_vfs_link(struct dentry *old_dentry, struct inode *dir,
1209 struct dentry *dentry)
1212 struct v9fs_fid *oldfid;
1215 dprintk(DEBUG_VFS, " %lu,%s,%s\n", dir->i_ino, dentry->d_name.name,
1216 old_dentry->d_name.name);
1218 oldfid = v9fs_fid_lookup(old_dentry);
1220 dprintk(DEBUG_ERROR, "can't find oldfid\n");
1225 if (unlikely(!name))
1228 sprintf(name, "%d\n", oldfid->fid);
1229 retval = v9fs_vfs_mkspecial(dir, dentry, V9FS_DMLINK, name);
1236 * v9fs_vfs_mknod - create a special file
1237 * @dir: inode destination for new link
1238 * @dentry: dentry for file
1239 * @mode: mode for creation
1240 * @dev_t: device associated with special file
1245 v9fs_vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t rdev)
1250 dprintk(DEBUG_VFS, " %lu,%s mode: %x MAJOR: %u MINOR: %u\n", dir->i_ino,
1251 dentry->d_name.name, mode, MAJOR(rdev), MINOR(rdev));
1253 if (!new_valid_dev(rdev))
1259 /* build extension */
1261 sprintf(name, "b %u %u", MAJOR(rdev), MINOR(rdev));
1262 else if (S_ISCHR(mode))
1263 sprintf(name, "c %u %u", MAJOR(rdev), MINOR(rdev));
1264 else if (S_ISFIFO(mode))
1271 retval = v9fs_vfs_mkspecial(dir, dentry, mode, name);
1277 static struct inode_operations v9fs_dir_inode_operations_ext = {
1278 .create = v9fs_vfs_create,
1279 .lookup = v9fs_vfs_lookup,
1280 .symlink = v9fs_vfs_symlink,
1281 .link = v9fs_vfs_link,
1282 .unlink = v9fs_vfs_unlink,
1283 .mkdir = v9fs_vfs_mkdir,
1284 .rmdir = v9fs_vfs_rmdir,
1285 .mknod = v9fs_vfs_mknod,
1286 .rename = v9fs_vfs_rename,
1287 .readlink = v9fs_vfs_readlink,
1288 .getattr = v9fs_vfs_getattr,
1289 .setattr = v9fs_vfs_setattr,
1292 static struct inode_operations v9fs_dir_inode_operations = {
1293 .create = v9fs_vfs_create,
1294 .lookup = v9fs_vfs_lookup,
1295 .unlink = v9fs_vfs_unlink,
1296 .mkdir = v9fs_vfs_mkdir,
1297 .rmdir = v9fs_vfs_rmdir,
1298 .mknod = v9fs_vfs_mknod,
1299 .rename = v9fs_vfs_rename,
1300 .getattr = v9fs_vfs_getattr,
1301 .setattr = v9fs_vfs_setattr,
1304 static struct inode_operations v9fs_file_inode_operations = {
1305 .getattr = v9fs_vfs_getattr,
1306 .setattr = v9fs_vfs_setattr,
1309 static struct inode_operations v9fs_symlink_inode_operations = {
1310 .readlink = v9fs_vfs_readlink,
1311 .follow_link = v9fs_vfs_follow_link,
1312 .put_link = v9fs_vfs_put_link,
1313 .getattr = v9fs_vfs_getattr,
1314 .setattr = v9fs_vfs_setattr,