2 * linux/fs/9p/vfs_inode_dotl.c
4 * This file contains vfs inode ops for the 9P2000.L 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>
51 v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
55 * v9fs_get_fsgid_for_create - Helper function to get the gid for creating a
56 * new file system object. This checks the S_ISGID to determine the owning
57 * group of the new file system object.
60 static gid_t v9fs_get_fsgid_for_create(struct inode *dir_inode)
62 BUG_ON(dir_inode == NULL);
64 if (dir_inode->i_mode & S_ISGID) {
65 /* set_gid bit is set.*/
66 return dir_inode->i_gid;
68 return current_fsgid();
72 * v9fs_dentry_from_dir_inode - helper function to get the dentry from
77 static struct dentry *v9fs_dentry_from_dir_inode(struct inode *inode)
79 struct dentry *dentry;
81 spin_lock(&inode->i_lock);
82 /* Directory should have only one entry. */
83 BUG_ON(S_ISDIR(inode->i_mode) && !list_is_singular(&inode->i_dentry));
84 dentry = list_entry(inode->i_dentry.next, struct dentry, d_alias);
85 spin_unlock(&inode->i_lock);
89 static int v9fs_test_inode_dotl(struct inode *inode, void *data)
91 struct v9fs_inode *v9inode = V9FS_I(inode);
92 struct p9_stat_dotl *st = (struct p9_stat_dotl *)data;
94 /* don't match inode of different type */
95 if ((inode->i_mode & S_IFMT) != (st->st_mode & S_IFMT))
98 if (inode->i_generation != st->st_gen)
101 /* compare qid details */
102 if (memcmp(&v9inode->qid.version,
103 &st->qid.version, sizeof(v9inode->qid.version)))
106 if (v9inode->qid.type != st->qid.type)
111 /* Always get a new inode */
112 static int v9fs_test_new_inode_dotl(struct inode *inode, void *data)
117 static int v9fs_set_inode_dotl(struct inode *inode, void *data)
119 struct v9fs_inode *v9inode = V9FS_I(inode);
120 struct p9_stat_dotl *st = (struct p9_stat_dotl *)data;
122 memcpy(&v9inode->qid, &st->qid, sizeof(st->qid));
123 inode->i_generation = st->st_gen;
127 static struct inode *v9fs_qid_iget_dotl(struct super_block *sb,
130 struct p9_stat_dotl *st,
136 struct v9fs_session_info *v9ses = sb->s_fs_info;
137 int (*test)(struct inode *, void *);
140 test = v9fs_test_new_inode_dotl;
142 test = v9fs_test_inode_dotl;
144 i_ino = v9fs_qid2ino(qid);
145 inode = iget5_locked(sb, i_ino, test, v9fs_set_inode_dotl, st);
147 return ERR_PTR(-ENOMEM);
148 if (!(inode->i_state & I_NEW))
151 * initialize the inode with the stat info
152 * FIXME!! we may need support for stale inodes
155 inode->i_ino = i_ino;
156 retval = v9fs_init_inode(v9ses, inode,
157 st->st_mode, new_decode_dev(st->st_rdev));
161 v9fs_stat2inode_dotl(st, inode);
162 #ifdef CONFIG_9P_FSCACHE
163 v9fs_cache_inode_get_cookie(inode);
165 retval = v9fs_get_acl(inode, fid);
169 unlock_new_inode(inode);
172 unlock_new_inode(inode);
174 return ERR_PTR(retval);
179 v9fs_inode_from_fid_dotl(struct v9fs_session_info *v9ses, struct p9_fid *fid,
180 struct super_block *sb, int new)
182 struct p9_stat_dotl *st;
183 struct inode *inode = NULL;
185 st = p9_client_getattr_dotl(fid, P9_STATS_BASIC | P9_STATS_GEN);
189 inode = v9fs_qid_iget_dotl(sb, &st->qid, fid, st, new);
194 struct dotl_openflag_map {
199 static int v9fs_mapped_dotl_flags(int flags)
203 struct dotl_openflag_map dotl_oflag_map[] = {
204 { O_CREAT, P9_DOTL_CREATE },
205 { O_EXCL, P9_DOTL_EXCL },
206 { O_NOCTTY, P9_DOTL_NOCTTY },
207 { O_TRUNC, P9_DOTL_TRUNC },
208 { O_APPEND, P9_DOTL_APPEND },
209 { O_NONBLOCK, P9_DOTL_NONBLOCK },
210 { O_DSYNC, P9_DOTL_DSYNC },
211 { FASYNC, P9_DOTL_FASYNC },
212 { O_DIRECT, P9_DOTL_DIRECT },
213 { O_LARGEFILE, P9_DOTL_LARGEFILE },
214 { O_DIRECTORY, P9_DOTL_DIRECTORY },
215 { O_NOFOLLOW, P9_DOTL_NOFOLLOW },
216 { O_NOATIME, P9_DOTL_NOATIME },
217 { O_CLOEXEC, P9_DOTL_CLOEXEC },
218 { O_SYNC, P9_DOTL_SYNC},
220 for (i = 0; i < ARRAY_SIZE(dotl_oflag_map); i++) {
221 if (flags & dotl_oflag_map[i].open_flag)
222 rflags |= dotl_oflag_map[i].dotl_flag;
228 * v9fs_open_to_dotl_flags- convert Linux specific open flags to
230 * @flags: flags to convert
232 int v9fs_open_to_dotl_flags(int flags)
237 * We have same bits for P9_DOTL_READONLY, P9_DOTL_WRONLY
238 * and P9_DOTL_NOACCESS
240 rflags |= flags & O_ACCMODE;
241 rflags |= v9fs_mapped_dotl_flags(flags);
247 * v9fs_vfs_create_dotl - VFS hook to create files for 9P2000.L protocol.
248 * @dir: directory inode that is being created
249 * @dentry: dentry that is being deleted
250 * @mode: create permissions
251 * @nd: path information
256 v9fs_vfs_create_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
257 struct nameidata *nd)
267 struct p9_fid *fid = NULL;
268 struct v9fs_inode *v9inode;
269 struct p9_fid *dfid, *ofid, *inode_fid;
270 struct v9fs_session_info *v9ses;
271 struct posix_acl *pacl = NULL, *dacl = NULL;
273 v9ses = v9fs_inode2v9ses(dir);
275 flags = nd->intent.open.flags;
278 * create call without LOOKUP_OPEN is due
279 * to mknod of regular files. So use mknod
282 return v9fs_vfs_mknod_dotl(dir, dentry, omode, 0);
285 name = (char *) dentry->d_name.name;
286 p9_debug(P9_DEBUG_VFS, "name:%s flags:0x%x mode:0x%hx\n",
289 dfid = v9fs_fid_lookup(dentry->d_parent);
292 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
296 /* clone a fid to use for creation */
297 ofid = p9_client_walk(dfid, 0, NULL, 1);
300 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
304 gid = v9fs_get_fsgid_for_create(dir);
307 /* Update mode based on ACL value */
308 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
310 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in creat %d\n",
314 err = p9_client_create_dotl(ofid, name, v9fs_open_to_dotl_flags(flags),
317 p9_debug(P9_DEBUG_VFS, "p9_client_open_dotl failed in creat %d\n",
321 v9fs_invalidate_inode_attr(dir);
323 /* instantiate inode and assign the unopened fid to the dentry */
324 fid = p9_client_walk(dfid, 1, &name, 1);
327 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
331 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
333 err = PTR_ERR(inode);
334 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n", err);
337 err = v9fs_fid_add(dentry, fid);
340 d_instantiate(dentry, inode);
342 /* Now set the ACL based on the default value */
343 v9fs_set_create_acl(dentry, &dacl, &pacl);
345 v9inode = V9FS_I(inode);
346 mutex_lock(&v9inode->v_mutex);
347 if (v9ses->cache && !v9inode->writeback_fid &&
348 ((flags & O_ACCMODE) != O_RDONLY)) {
350 * clone a fid and add it to writeback_fid
351 * we do it during open time instead of
352 * page dirty time via write_begin/page_mkwrite
353 * because we want write after unlink usecase
356 inode_fid = v9fs_writeback_fid(dentry);
357 if (IS_ERR(inode_fid)) {
358 err = PTR_ERR(inode_fid);
359 mutex_unlock(&v9inode->v_mutex);
360 goto err_clunk_old_fid;
362 v9inode->writeback_fid = (void *) inode_fid;
364 mutex_unlock(&v9inode->v_mutex);
365 /* Since we are opening a file, assign the open fid to the file */
366 filp = lookup_instantiate_filp(nd, dentry, generic_file_open);
369 goto err_clunk_old_fid;
371 filp->private_data = ofid;
372 #ifdef CONFIG_9P_FSCACHE
374 v9fs_cache_inode_set_cookie(inode, filp);
380 p9_client_clunk(fid);
383 p9_client_clunk(ofid);
384 v9fs_set_create_acl(NULL, &dacl, &pacl);
389 * v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory
390 * @dir: inode that is being unlinked
391 * @dentry: dentry that is being unlinked
392 * @mode: mode for new directory
396 static int v9fs_vfs_mkdir_dotl(struct inode *dir,
397 struct dentry *dentry, umode_t omode)
400 struct v9fs_session_info *v9ses;
401 struct p9_fid *fid = NULL, *dfid = NULL;
407 struct dentry *dir_dentry;
408 struct posix_acl *dacl = NULL, *pacl = NULL;
410 p9_debug(P9_DEBUG_VFS, "name %s\n", dentry->d_name.name);
412 v9ses = v9fs_inode2v9ses(dir);
415 if (dir->i_mode & S_ISGID)
418 dir_dentry = v9fs_dentry_from_dir_inode(dir);
419 dfid = v9fs_fid_lookup(dir_dentry);
422 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
427 gid = v9fs_get_fsgid_for_create(dir);
429 /* Update mode based on ACL value */
430 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
432 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mkdir %d\n",
436 name = (char *) dentry->d_name.name;
437 err = p9_client_mkdir_dotl(dfid, name, mode, gid, &qid);
441 /* instantiate inode and assign the unopened fid to the dentry */
442 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
443 fid = p9_client_walk(dfid, 1, &name, 1);
446 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
452 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
454 err = PTR_ERR(inode);
455 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
459 err = v9fs_fid_add(dentry, fid);
462 d_instantiate(dentry, inode);
466 * Not in cached mode. No need to populate
467 * inode with stat. We need to get an inode
468 * so that we can set the acl with dentry
470 inode = v9fs_get_inode(dir->i_sb, mode, 0);
472 err = PTR_ERR(inode);
475 d_instantiate(dentry, inode);
477 /* Now set the ACL based on the default value */
478 v9fs_set_create_acl(dentry, &dacl, &pacl);
480 v9fs_invalidate_inode_attr(dir);
483 p9_client_clunk(fid);
484 v9fs_set_create_acl(NULL, &dacl, &pacl);
489 v9fs_vfs_getattr_dotl(struct vfsmount *mnt, struct dentry *dentry,
493 struct v9fs_session_info *v9ses;
495 struct p9_stat_dotl *st;
497 p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry);
499 v9ses = v9fs_dentry2v9ses(dentry);
500 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
501 generic_fillattr(dentry->d_inode, stat);
504 fid = v9fs_fid_lookup(dentry);
508 /* Ask for all the fields in stat structure. Server will return
509 * whatever it supports
512 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
516 v9fs_stat2inode_dotl(st, dentry->d_inode);
517 generic_fillattr(dentry->d_inode, stat);
518 /* Change block size to what the server returned */
519 stat->blksize = st->st_blksize;
528 #define P9_ATTR_MODE (1 << 0)
529 #define P9_ATTR_UID (1 << 1)
530 #define P9_ATTR_GID (1 << 2)
531 #define P9_ATTR_SIZE (1 << 3)
532 #define P9_ATTR_ATIME (1 << 4)
533 #define P9_ATTR_MTIME (1 << 5)
534 #define P9_ATTR_CTIME (1 << 6)
535 #define P9_ATTR_ATIME_SET (1 << 7)
536 #define P9_ATTR_MTIME_SET (1 << 8)
538 struct dotl_iattr_map {
543 static int v9fs_mapped_iattr_valid(int iattr_valid)
546 int p9_iattr_valid = 0;
547 struct dotl_iattr_map dotl_iattr_map[] = {
548 { ATTR_MODE, P9_ATTR_MODE },
549 { ATTR_UID, P9_ATTR_UID },
550 { ATTR_GID, P9_ATTR_GID },
551 { ATTR_SIZE, P9_ATTR_SIZE },
552 { ATTR_ATIME, P9_ATTR_ATIME },
553 { ATTR_MTIME, P9_ATTR_MTIME },
554 { ATTR_CTIME, P9_ATTR_CTIME },
555 { ATTR_ATIME_SET, P9_ATTR_ATIME_SET },
556 { ATTR_MTIME_SET, P9_ATTR_MTIME_SET },
558 for (i = 0; i < ARRAY_SIZE(dotl_iattr_map); i++) {
559 if (iattr_valid & dotl_iattr_map[i].iattr_valid)
560 p9_iattr_valid |= dotl_iattr_map[i].p9_iattr_valid;
562 return p9_iattr_valid;
566 * v9fs_vfs_setattr_dotl - set file metadata
567 * @dentry: file whose metadata to set
568 * @iattr: metadata assignment structure
572 int v9fs_vfs_setattr_dotl(struct dentry *dentry, struct iattr *iattr)
575 struct v9fs_session_info *v9ses;
577 struct p9_iattr_dotl p9attr;
579 p9_debug(P9_DEBUG_VFS, "\n");
581 retval = inode_change_ok(dentry->d_inode, iattr);
585 p9attr.valid = v9fs_mapped_iattr_valid(iattr->ia_valid);
586 p9attr.mode = iattr->ia_mode;
587 p9attr.uid = iattr->ia_uid;
588 p9attr.gid = iattr->ia_gid;
589 p9attr.size = iattr->ia_size;
590 p9attr.atime_sec = iattr->ia_atime.tv_sec;
591 p9attr.atime_nsec = iattr->ia_atime.tv_nsec;
592 p9attr.mtime_sec = iattr->ia_mtime.tv_sec;
593 p9attr.mtime_nsec = iattr->ia_mtime.tv_nsec;
596 v9ses = v9fs_dentry2v9ses(dentry);
597 fid = v9fs_fid_lookup(dentry);
601 /* Write all dirty data */
602 if (S_ISREG(dentry->d_inode->i_mode))
603 filemap_write_and_wait(dentry->d_inode->i_mapping);
605 retval = p9_client_setattr(fid, &p9attr);
609 if ((iattr->ia_valid & ATTR_SIZE) &&
610 iattr->ia_size != i_size_read(dentry->d_inode))
611 truncate_setsize(dentry->d_inode, iattr->ia_size);
613 v9fs_invalidate_inode_attr(dentry->d_inode);
614 setattr_copy(dentry->d_inode, iattr);
615 mark_inode_dirty(dentry->d_inode);
616 if (iattr->ia_valid & ATTR_MODE) {
617 /* We also want to update ACL when we update mode bits */
618 retval = v9fs_acl_chmod(dentry);
626 * v9fs_stat2inode_dotl - populate an inode structure with stat info
627 * @stat: stat structure
628 * @inode: inode to populate
629 * @sb: superblock of filesystem
634 v9fs_stat2inode_dotl(struct p9_stat_dotl *stat, struct inode *inode)
637 struct v9fs_inode *v9inode = V9FS_I(inode);
639 if ((stat->st_result_mask & P9_STATS_BASIC) == P9_STATS_BASIC) {
640 inode->i_atime.tv_sec = stat->st_atime_sec;
641 inode->i_atime.tv_nsec = stat->st_atime_nsec;
642 inode->i_mtime.tv_sec = stat->st_mtime_sec;
643 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
644 inode->i_ctime.tv_sec = stat->st_ctime_sec;
645 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
646 inode->i_uid = stat->st_uid;
647 inode->i_gid = stat->st_gid;
648 set_nlink(inode, stat->st_nlink);
650 mode = stat->st_mode & S_IALLUGO;
651 mode |= inode->i_mode & ~S_IALLUGO;
652 inode->i_mode = mode;
654 i_size_write(inode, stat->st_size);
655 inode->i_blocks = stat->st_blocks;
657 if (stat->st_result_mask & P9_STATS_ATIME) {
658 inode->i_atime.tv_sec = stat->st_atime_sec;
659 inode->i_atime.tv_nsec = stat->st_atime_nsec;
661 if (stat->st_result_mask & P9_STATS_MTIME) {
662 inode->i_mtime.tv_sec = stat->st_mtime_sec;
663 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
665 if (stat->st_result_mask & P9_STATS_CTIME) {
666 inode->i_ctime.tv_sec = stat->st_ctime_sec;
667 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
669 if (stat->st_result_mask & P9_STATS_UID)
670 inode->i_uid = stat->st_uid;
671 if (stat->st_result_mask & P9_STATS_GID)
672 inode->i_gid = stat->st_gid;
673 if (stat->st_result_mask & P9_STATS_NLINK)
674 set_nlink(inode, stat->st_nlink);
675 if (stat->st_result_mask & P9_STATS_MODE) {
676 inode->i_mode = stat->st_mode;
677 if ((S_ISBLK(inode->i_mode)) ||
678 (S_ISCHR(inode->i_mode)))
679 init_special_inode(inode, inode->i_mode,
682 if (stat->st_result_mask & P9_STATS_RDEV)
683 inode->i_rdev = new_decode_dev(stat->st_rdev);
684 if (stat->st_result_mask & P9_STATS_SIZE)
685 i_size_write(inode, stat->st_size);
686 if (stat->st_result_mask & P9_STATS_BLOCKS)
687 inode->i_blocks = stat->st_blocks;
689 if (stat->st_result_mask & P9_STATS_GEN)
690 inode->i_generation = stat->st_gen;
692 /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION
693 * because the inode structure does not have fields for them.
695 v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR;
699 v9fs_vfs_symlink_dotl(struct inode *dir, struct dentry *dentry,
708 struct p9_fid *fid = NULL;
709 struct v9fs_session_info *v9ses;
711 name = (char *) dentry->d_name.name;
712 p9_debug(P9_DEBUG_VFS, "%lu,%s,%s\n", dir->i_ino, name, symname);
713 v9ses = v9fs_inode2v9ses(dir);
715 dfid = v9fs_fid_lookup(dentry->d_parent);
718 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
722 gid = v9fs_get_fsgid_for_create(dir);
724 /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */
725 err = p9_client_symlink(dfid, name, (char *)symname, gid, &qid);
728 p9_debug(P9_DEBUG_VFS, "p9_client_symlink failed %d\n", err);
732 v9fs_invalidate_inode_attr(dir);
734 /* Now walk from the parent so we can get an unopened fid. */
735 fid = p9_client_walk(dfid, 1, &name, 1);
738 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
744 /* instantiate inode and assign the unopened fid to dentry */
745 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
747 err = PTR_ERR(inode);
748 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
752 err = v9fs_fid_add(dentry, fid);
755 d_instantiate(dentry, inode);
758 /* Not in cached mode. No need to populate inode with stat */
759 inode = v9fs_get_inode(dir->i_sb, S_IFLNK, 0);
761 err = PTR_ERR(inode);
764 d_instantiate(dentry, inode);
769 p9_client_clunk(fid);
775 * v9fs_vfs_link_dotl - create a hardlink for dotl
776 * @old_dentry: dentry for file to link to
777 * @dir: inode destination for new link
778 * @dentry: dentry for link
783 v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir,
784 struct dentry *dentry)
788 struct dentry *dir_dentry;
789 struct p9_fid *dfid, *oldfid;
790 struct v9fs_session_info *v9ses;
792 p9_debug(P9_DEBUG_VFS, "dir ino: %lu, old_name: %s, new_name: %s\n",
793 dir->i_ino, old_dentry->d_name.name, dentry->d_name.name);
795 v9ses = v9fs_inode2v9ses(dir);
796 dir_dentry = v9fs_dentry_from_dir_inode(dir);
797 dfid = v9fs_fid_lookup(dir_dentry);
799 return PTR_ERR(dfid);
801 oldfid = v9fs_fid_lookup(old_dentry);
803 return PTR_ERR(oldfid);
805 name = (char *) dentry->d_name.name;
807 err = p9_client_link(dfid, oldfid, (char *)dentry->d_name.name);
810 p9_debug(P9_DEBUG_VFS, "p9_client_link failed %d\n", err);
814 v9fs_invalidate_inode_attr(dir);
815 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
816 /* Get the latest stat info from server. */
818 fid = v9fs_fid_lookup(old_dentry);
822 v9fs_refresh_inode_dotl(fid, old_dentry->d_inode);
824 ihold(old_dentry->d_inode);
825 d_instantiate(dentry, old_dentry->d_inode);
831 * v9fs_vfs_mknod_dotl - create a special file
832 * @dir: inode destination for new link
833 * @dentry: dentry for file
834 * @mode: mode for creation
835 * @rdev: device associated with special file
839 v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
846 struct v9fs_session_info *v9ses;
847 struct p9_fid *fid = NULL, *dfid = NULL;
850 struct dentry *dir_dentry;
851 struct posix_acl *dacl = NULL, *pacl = NULL;
853 p9_debug(P9_DEBUG_VFS, " %lu,%s mode: %hx MAJOR: %u MINOR: %u\n",
854 dir->i_ino, dentry->d_name.name, omode,
855 MAJOR(rdev), MINOR(rdev));
857 if (!new_valid_dev(rdev))
860 v9ses = v9fs_inode2v9ses(dir);
861 dir_dentry = v9fs_dentry_from_dir_inode(dir);
862 dfid = v9fs_fid_lookup(dir_dentry);
865 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
870 gid = v9fs_get_fsgid_for_create(dir);
872 /* Update mode based on ACL value */
873 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
875 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mknod %d\n",
879 name = (char *) dentry->d_name.name;
881 err = p9_client_mknod_dotl(dfid, name, mode, rdev, gid, &qid);
885 v9fs_invalidate_inode_attr(dir);
886 /* instantiate inode and assign the unopened fid to the dentry */
887 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
888 fid = p9_client_walk(dfid, 1, &name, 1);
891 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
897 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
899 err = PTR_ERR(inode);
900 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
904 err = v9fs_fid_add(dentry, fid);
907 d_instantiate(dentry, inode);
911 * Not in cached mode. No need to populate inode with stat.
912 * socket syscall returns a fd, so we need instantiate
914 inode = v9fs_get_inode(dir->i_sb, mode, rdev);
916 err = PTR_ERR(inode);
919 d_instantiate(dentry, inode);
921 /* Now set the ACL based on the default value */
922 v9fs_set_create_acl(dentry, &dacl, &pacl);
925 p9_client_clunk(fid);
926 v9fs_set_create_acl(NULL, &dacl, &pacl);
931 * v9fs_vfs_follow_link_dotl - follow a symlink path
932 * @dentry: dentry for symlink
938 v9fs_vfs_follow_link_dotl(struct dentry *dentry, struct nameidata *nd)
942 char *link = __getname();
945 p9_debug(P9_DEBUG_VFS, "%s\n", dentry->d_name.name);
948 link = ERR_PTR(-ENOMEM);
951 fid = v9fs_fid_lookup(dentry);
954 link = ERR_CAST(fid);
957 retval = p9_client_readlink(fid, &target);
959 strcpy(link, target);
964 link = ERR_PTR(retval);
966 nd_set_link(nd, link);
970 int v9fs_refresh_inode_dotl(struct p9_fid *fid, struct inode *inode)
973 struct p9_stat_dotl *st;
974 struct v9fs_session_info *v9ses;
976 v9ses = v9fs_inode2v9ses(inode);
977 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
981 * Don't update inode if the file type is different
983 if ((inode->i_mode & S_IFMT) != (st->st_mode & S_IFMT))
986 spin_lock(&inode->i_lock);
988 * We don't want to refresh inode->i_size,
989 * because we may have cached data
991 i_size = inode->i_size;
992 v9fs_stat2inode_dotl(st, inode);
994 inode->i_size = i_size;
995 spin_unlock(&inode->i_lock);
1001 const struct inode_operations v9fs_dir_inode_operations_dotl = {
1002 .create = v9fs_vfs_create_dotl,
1003 .lookup = v9fs_vfs_lookup,
1004 .link = v9fs_vfs_link_dotl,
1005 .symlink = v9fs_vfs_symlink_dotl,
1006 .unlink = v9fs_vfs_unlink,
1007 .mkdir = v9fs_vfs_mkdir_dotl,
1008 .rmdir = v9fs_vfs_rmdir,
1009 .mknod = v9fs_vfs_mknod_dotl,
1010 .rename = v9fs_vfs_rename,
1011 .getattr = v9fs_vfs_getattr_dotl,
1012 .setattr = v9fs_vfs_setattr_dotl,
1013 .setxattr = generic_setxattr,
1014 .getxattr = generic_getxattr,
1015 .removexattr = generic_removexattr,
1016 .listxattr = v9fs_listxattr,
1017 .get_acl = v9fs_iop_get_acl,
1020 const struct inode_operations v9fs_file_inode_operations_dotl = {
1021 .getattr = v9fs_vfs_getattr_dotl,
1022 .setattr = v9fs_vfs_setattr_dotl,
1023 .setxattr = generic_setxattr,
1024 .getxattr = generic_getxattr,
1025 .removexattr = generic_removexattr,
1026 .listxattr = v9fs_listxattr,
1027 .get_acl = v9fs_iop_get_acl,
1030 const struct inode_operations v9fs_symlink_inode_operations_dotl = {
1031 .readlink = generic_readlink,
1032 .follow_link = v9fs_vfs_follow_link_dotl,
1033 .put_link = v9fs_vfs_put_link,
1034 .getattr = v9fs_vfs_getattr_dotl,
1035 .setattr = v9fs_vfs_setattr_dotl,
1036 .setxattr = generic_setxattr,
1037 .getxattr = generic_getxattr,
1038 .removexattr = generic_removexattr,
1039 .listxattr = v9fs_listxattr,