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 kgid_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();
71 static int v9fs_test_inode_dotl(struct inode *inode, void *data)
73 struct v9fs_inode *v9inode = V9FS_I(inode);
74 struct p9_stat_dotl *st = (struct p9_stat_dotl *)data;
76 /* don't match inode of different type */
77 if ((inode->i_mode & S_IFMT) != (st->st_mode & S_IFMT))
80 if (inode->i_generation != st->st_gen)
83 /* compare qid details */
84 if (memcmp(&v9inode->qid.version,
85 &st->qid.version, sizeof(v9inode->qid.version)))
88 if (v9inode->qid.type != st->qid.type)
93 /* Always get a new inode */
94 static int v9fs_test_new_inode_dotl(struct inode *inode, void *data)
99 static int v9fs_set_inode_dotl(struct inode *inode, void *data)
101 struct v9fs_inode *v9inode = V9FS_I(inode);
102 struct p9_stat_dotl *st = (struct p9_stat_dotl *)data;
104 memcpy(&v9inode->qid, &st->qid, sizeof(st->qid));
105 inode->i_generation = st->st_gen;
109 static struct inode *v9fs_qid_iget_dotl(struct super_block *sb,
112 struct p9_stat_dotl *st,
118 struct v9fs_session_info *v9ses = sb->s_fs_info;
119 int (*test)(struct inode *, void *);
122 test = v9fs_test_new_inode_dotl;
124 test = v9fs_test_inode_dotl;
126 i_ino = v9fs_qid2ino(qid);
127 inode = iget5_locked(sb, i_ino, test, v9fs_set_inode_dotl, st);
129 return ERR_PTR(-ENOMEM);
130 if (!(inode->i_state & I_NEW))
133 * initialize the inode with the stat info
134 * FIXME!! we may need support for stale inodes
137 inode->i_ino = i_ino;
138 retval = v9fs_init_inode(v9ses, inode,
139 st->st_mode, new_decode_dev(st->st_rdev));
143 v9fs_stat2inode_dotl(st, inode);
144 v9fs_cache_inode_get_cookie(inode);
145 retval = v9fs_get_acl(inode, fid);
149 unlock_new_inode(inode);
152 unlock_new_inode(inode);
154 return ERR_PTR(retval);
159 v9fs_inode_from_fid_dotl(struct v9fs_session_info *v9ses, struct p9_fid *fid,
160 struct super_block *sb, int new)
162 struct p9_stat_dotl *st;
163 struct inode *inode = NULL;
165 st = p9_client_getattr_dotl(fid, P9_STATS_BASIC | P9_STATS_GEN);
169 inode = v9fs_qid_iget_dotl(sb, &st->qid, fid, st, new);
174 struct dotl_openflag_map {
179 static int v9fs_mapped_dotl_flags(int flags)
183 struct dotl_openflag_map dotl_oflag_map[] = {
184 { O_CREAT, P9_DOTL_CREATE },
185 { O_EXCL, P9_DOTL_EXCL },
186 { O_NOCTTY, P9_DOTL_NOCTTY },
187 { O_APPEND, P9_DOTL_APPEND },
188 { O_NONBLOCK, P9_DOTL_NONBLOCK },
189 { O_DSYNC, P9_DOTL_DSYNC },
190 { FASYNC, P9_DOTL_FASYNC },
191 { O_DIRECT, P9_DOTL_DIRECT },
192 { O_LARGEFILE, P9_DOTL_LARGEFILE },
193 { O_DIRECTORY, P9_DOTL_DIRECTORY },
194 { O_NOFOLLOW, P9_DOTL_NOFOLLOW },
195 { O_NOATIME, P9_DOTL_NOATIME },
196 { O_CLOEXEC, P9_DOTL_CLOEXEC },
197 { O_SYNC, P9_DOTL_SYNC},
199 for (i = 0; i < ARRAY_SIZE(dotl_oflag_map); i++) {
200 if (flags & dotl_oflag_map[i].open_flag)
201 rflags |= dotl_oflag_map[i].dotl_flag;
207 * v9fs_open_to_dotl_flags- convert Linux specific open flags to
209 * @flags: flags to convert
211 int v9fs_open_to_dotl_flags(int flags)
216 * We have same bits for P9_DOTL_READONLY, P9_DOTL_WRONLY
217 * and P9_DOTL_NOACCESS
219 rflags |= flags & O_ACCMODE;
220 rflags |= v9fs_mapped_dotl_flags(flags);
226 * v9fs_vfs_create_dotl - VFS hook to create files for 9P2000.L protocol.
227 * @dir: directory inode that is being created
228 * @dentry: dentry that is being deleted
229 * @omode: create permissions
234 v9fs_vfs_create_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
237 return v9fs_vfs_mknod_dotl(dir, dentry, omode, 0);
241 v9fs_vfs_atomic_open_dotl(struct inode *dir, struct dentry *dentry,
242 struct file *file, unsigned flags, umode_t omode,
251 struct p9_fid *fid = NULL;
252 struct v9fs_inode *v9inode;
253 struct p9_fid *dfid, *ofid, *inode_fid;
254 struct v9fs_session_info *v9ses;
255 struct posix_acl *pacl = NULL, *dacl = NULL;
256 struct dentry *res = NULL;
258 if (d_unhashed(dentry)) {
259 res = v9fs_vfs_lookup(dir, dentry, 0);
268 if (!(flags & O_CREAT) || dentry->d_inode)
269 return finish_no_open(file, res);
271 v9ses = v9fs_inode2v9ses(dir);
273 name = (char *) dentry->d_name.name;
274 p9_debug(P9_DEBUG_VFS, "name:%s flags:0x%x mode:0x%hx\n",
277 dfid = v9fs_fid_lookup(dentry->d_parent);
280 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
284 /* clone a fid to use for creation */
285 ofid = p9_client_walk(dfid, 0, NULL, 1);
288 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
292 gid = v9fs_get_fsgid_for_create(dir);
295 /* Update mode based on ACL value */
296 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
298 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in creat %d\n",
302 err = p9_client_create_dotl(ofid, name, v9fs_open_to_dotl_flags(flags),
305 p9_debug(P9_DEBUG_VFS, "p9_client_open_dotl failed in creat %d\n",
309 v9fs_invalidate_inode_attr(dir);
311 /* instantiate inode and assign the unopened fid to the dentry */
312 fid = p9_client_walk(dfid, 1, &name, 1);
315 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
319 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
321 err = PTR_ERR(inode);
322 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n", err);
325 /* Now set the ACL based on the default value */
326 v9fs_set_create_acl(inode, fid, dacl, pacl);
328 v9fs_fid_add(dentry, fid);
329 d_instantiate(dentry, inode);
331 v9inode = V9FS_I(inode);
332 mutex_lock(&v9inode->v_mutex);
333 if ((v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) &&
334 !v9inode->writeback_fid &&
335 ((flags & O_ACCMODE) != O_RDONLY)) {
337 * clone a fid and add it to writeback_fid
338 * we do it during open time instead of
339 * page dirty time via write_begin/page_mkwrite
340 * because we want write after unlink usecase
343 inode_fid = v9fs_writeback_fid(dentry);
344 if (IS_ERR(inode_fid)) {
345 err = PTR_ERR(inode_fid);
346 mutex_unlock(&v9inode->v_mutex);
347 goto err_clunk_old_fid;
349 v9inode->writeback_fid = (void *) inode_fid;
351 mutex_unlock(&v9inode->v_mutex);
352 /* Since we are opening a file, assign the open fid to the file */
353 err = finish_open(file, dentry, generic_file_open, opened);
355 goto err_clunk_old_fid;
356 file->private_data = ofid;
357 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE)
358 v9fs_cache_inode_set_cookie(inode, file);
359 *opened |= FILE_CREATED;
361 v9fs_put_acl(dacl, pacl);
367 p9_client_clunk(fid);
370 p9_client_clunk(ofid);
375 * v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory
376 * @dir: inode that is being unlinked
377 * @dentry: dentry that is being unlinked
378 * @omode: mode for new directory
382 static int v9fs_vfs_mkdir_dotl(struct inode *dir,
383 struct dentry *dentry, umode_t omode)
386 struct v9fs_session_info *v9ses;
387 struct p9_fid *fid = NULL, *dfid = NULL;
393 struct dentry *dir_dentry;
394 struct posix_acl *dacl = NULL, *pacl = NULL;
396 p9_debug(P9_DEBUG_VFS, "name %s\n", dentry->d_name.name);
398 v9ses = v9fs_inode2v9ses(dir);
401 if (dir->i_mode & S_ISGID)
404 dir_dentry = dentry->d_parent;
405 dfid = v9fs_fid_lookup(dir_dentry);
408 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
413 gid = v9fs_get_fsgid_for_create(dir);
415 /* Update mode based on ACL value */
416 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
418 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mkdir %d\n",
422 name = (char *) dentry->d_name.name;
423 err = p9_client_mkdir_dotl(dfid, name, mode, gid, &qid);
427 fid = p9_client_walk(dfid, 1, &name, 1);
430 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
436 /* instantiate inode and assign the unopened fid to the dentry */
437 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
438 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
440 err = PTR_ERR(inode);
441 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
445 v9fs_fid_add(dentry, fid);
446 v9fs_set_create_acl(inode, fid, dacl, pacl);
447 d_instantiate(dentry, inode);
452 * Not in cached mode. No need to populate
453 * inode with stat. We need to get an inode
454 * so that we can set the acl with dentry
456 inode = v9fs_get_inode(dir->i_sb, mode, 0);
458 err = PTR_ERR(inode);
461 v9fs_set_create_acl(inode, fid, dacl, pacl);
462 d_instantiate(dentry, inode);
465 v9fs_invalidate_inode_attr(dir);
468 p9_client_clunk(fid);
469 v9fs_put_acl(dacl, pacl);
474 v9fs_vfs_getattr_dotl(struct vfsmount *mnt, struct dentry *dentry,
477 struct v9fs_session_info *v9ses;
479 struct p9_stat_dotl *st;
481 p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry);
482 v9ses = v9fs_dentry2v9ses(dentry);
483 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
484 generic_fillattr(dentry->d_inode, stat);
487 fid = v9fs_fid_lookup(dentry);
491 /* Ask for all the fields in stat structure. Server will return
492 * whatever it supports
495 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
499 v9fs_stat2inode_dotl(st, dentry->d_inode);
500 generic_fillattr(dentry->d_inode, stat);
501 /* Change block size to what the server returned */
502 stat->blksize = st->st_blksize;
511 #define P9_ATTR_MODE (1 << 0)
512 #define P9_ATTR_UID (1 << 1)
513 #define P9_ATTR_GID (1 << 2)
514 #define P9_ATTR_SIZE (1 << 3)
515 #define P9_ATTR_ATIME (1 << 4)
516 #define P9_ATTR_MTIME (1 << 5)
517 #define P9_ATTR_CTIME (1 << 6)
518 #define P9_ATTR_ATIME_SET (1 << 7)
519 #define P9_ATTR_MTIME_SET (1 << 8)
521 struct dotl_iattr_map {
526 static int v9fs_mapped_iattr_valid(int iattr_valid)
529 int p9_iattr_valid = 0;
530 struct dotl_iattr_map dotl_iattr_map[] = {
531 { ATTR_MODE, P9_ATTR_MODE },
532 { ATTR_UID, P9_ATTR_UID },
533 { ATTR_GID, P9_ATTR_GID },
534 { ATTR_SIZE, P9_ATTR_SIZE },
535 { ATTR_ATIME, P9_ATTR_ATIME },
536 { ATTR_MTIME, P9_ATTR_MTIME },
537 { ATTR_CTIME, P9_ATTR_CTIME },
538 { ATTR_ATIME_SET, P9_ATTR_ATIME_SET },
539 { ATTR_MTIME_SET, P9_ATTR_MTIME_SET },
541 for (i = 0; i < ARRAY_SIZE(dotl_iattr_map); i++) {
542 if (iattr_valid & dotl_iattr_map[i].iattr_valid)
543 p9_iattr_valid |= dotl_iattr_map[i].p9_iattr_valid;
545 return p9_iattr_valid;
549 * v9fs_vfs_setattr_dotl - set file metadata
550 * @dentry: file whose metadata to set
551 * @iattr: metadata assignment structure
555 int v9fs_vfs_setattr_dotl(struct dentry *dentry, struct iattr *iattr)
559 struct p9_iattr_dotl p9attr;
560 struct inode *inode = dentry->d_inode;
562 p9_debug(P9_DEBUG_VFS, "\n");
564 retval = inode_change_ok(inode, iattr);
568 p9attr.valid = v9fs_mapped_iattr_valid(iattr->ia_valid);
569 p9attr.mode = iattr->ia_mode;
570 p9attr.uid = iattr->ia_uid;
571 p9attr.gid = iattr->ia_gid;
572 p9attr.size = iattr->ia_size;
573 p9attr.atime_sec = iattr->ia_atime.tv_sec;
574 p9attr.atime_nsec = iattr->ia_atime.tv_nsec;
575 p9attr.mtime_sec = iattr->ia_mtime.tv_sec;
576 p9attr.mtime_nsec = iattr->ia_mtime.tv_nsec;
578 fid = v9fs_fid_lookup(dentry);
582 /* Write all dirty data */
583 if (S_ISREG(inode->i_mode))
584 filemap_write_and_wait(inode->i_mapping);
586 retval = p9_client_setattr(fid, &p9attr);
590 if ((iattr->ia_valid & ATTR_SIZE) &&
591 iattr->ia_size != i_size_read(inode))
592 truncate_setsize(inode, iattr->ia_size);
594 v9fs_invalidate_inode_attr(inode);
595 setattr_copy(inode, iattr);
596 mark_inode_dirty(inode);
597 if (iattr->ia_valid & ATTR_MODE) {
598 /* We also want to update ACL when we update mode bits */
599 retval = v9fs_acl_chmod(inode, fid);
607 * v9fs_stat2inode_dotl - populate an inode structure with stat info
608 * @stat: stat structure
609 * @inode: inode to populate
614 v9fs_stat2inode_dotl(struct p9_stat_dotl *stat, struct inode *inode)
617 struct v9fs_inode *v9inode = V9FS_I(inode);
619 if ((stat->st_result_mask & P9_STATS_BASIC) == P9_STATS_BASIC) {
620 inode->i_atime.tv_sec = stat->st_atime_sec;
621 inode->i_atime.tv_nsec = stat->st_atime_nsec;
622 inode->i_mtime.tv_sec = stat->st_mtime_sec;
623 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
624 inode->i_ctime.tv_sec = stat->st_ctime_sec;
625 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
626 inode->i_uid = stat->st_uid;
627 inode->i_gid = stat->st_gid;
628 set_nlink(inode, stat->st_nlink);
630 mode = stat->st_mode & S_IALLUGO;
631 mode |= inode->i_mode & ~S_IALLUGO;
632 inode->i_mode = mode;
634 i_size_write(inode, stat->st_size);
635 inode->i_blocks = stat->st_blocks;
637 if (stat->st_result_mask & P9_STATS_ATIME) {
638 inode->i_atime.tv_sec = stat->st_atime_sec;
639 inode->i_atime.tv_nsec = stat->st_atime_nsec;
641 if (stat->st_result_mask & P9_STATS_MTIME) {
642 inode->i_mtime.tv_sec = stat->st_mtime_sec;
643 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
645 if (stat->st_result_mask & P9_STATS_CTIME) {
646 inode->i_ctime.tv_sec = stat->st_ctime_sec;
647 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
649 if (stat->st_result_mask & P9_STATS_UID)
650 inode->i_uid = stat->st_uid;
651 if (stat->st_result_mask & P9_STATS_GID)
652 inode->i_gid = stat->st_gid;
653 if (stat->st_result_mask & P9_STATS_NLINK)
654 set_nlink(inode, stat->st_nlink);
655 if (stat->st_result_mask & P9_STATS_MODE) {
656 inode->i_mode = stat->st_mode;
657 if ((S_ISBLK(inode->i_mode)) ||
658 (S_ISCHR(inode->i_mode)))
659 init_special_inode(inode, inode->i_mode,
662 if (stat->st_result_mask & P9_STATS_RDEV)
663 inode->i_rdev = new_decode_dev(stat->st_rdev);
664 if (stat->st_result_mask & P9_STATS_SIZE)
665 i_size_write(inode, stat->st_size);
666 if (stat->st_result_mask & P9_STATS_BLOCKS)
667 inode->i_blocks = stat->st_blocks;
669 if (stat->st_result_mask & P9_STATS_GEN)
670 inode->i_generation = stat->st_gen;
672 /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION
673 * because the inode structure does not have fields for them.
675 v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR;
679 v9fs_vfs_symlink_dotl(struct inode *dir, struct dentry *dentry,
688 struct p9_fid *fid = NULL;
689 struct v9fs_session_info *v9ses;
691 name = (char *) dentry->d_name.name;
692 p9_debug(P9_DEBUG_VFS, "%lu,%s,%s\n", dir->i_ino, name, symname);
693 v9ses = v9fs_inode2v9ses(dir);
695 dfid = v9fs_fid_lookup(dentry->d_parent);
698 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
702 gid = v9fs_get_fsgid_for_create(dir);
704 /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */
705 err = p9_client_symlink(dfid, name, (char *)symname, gid, &qid);
708 p9_debug(P9_DEBUG_VFS, "p9_client_symlink failed %d\n", err);
712 v9fs_invalidate_inode_attr(dir);
713 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
714 /* Now walk from the parent so we can get an unopened fid. */
715 fid = p9_client_walk(dfid, 1, &name, 1);
718 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
724 /* instantiate inode and assign the unopened fid to dentry */
725 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
727 err = PTR_ERR(inode);
728 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
732 v9fs_fid_add(dentry, fid);
733 d_instantiate(dentry, inode);
737 /* Not in cached mode. No need to populate inode with stat */
738 inode = v9fs_get_inode(dir->i_sb, S_IFLNK, 0);
740 err = PTR_ERR(inode);
743 d_instantiate(dentry, inode);
748 p9_client_clunk(fid);
754 * v9fs_vfs_link_dotl - create a hardlink for dotl
755 * @old_dentry: dentry for file to link to
756 * @dir: inode destination for new link
757 * @dentry: dentry for link
762 v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir,
763 struct dentry *dentry)
766 struct dentry *dir_dentry;
767 struct p9_fid *dfid, *oldfid;
768 struct v9fs_session_info *v9ses;
770 p9_debug(P9_DEBUG_VFS, "dir ino: %lu, old_name: %s, new_name: %s\n",
771 dir->i_ino, old_dentry->d_name.name, dentry->d_name.name);
773 v9ses = v9fs_inode2v9ses(dir);
774 dir_dentry = dentry->d_parent;
775 dfid = v9fs_fid_lookup(dir_dentry);
777 return PTR_ERR(dfid);
779 oldfid = v9fs_fid_lookup(old_dentry);
781 return PTR_ERR(oldfid);
783 err = p9_client_link(dfid, oldfid, (char *)dentry->d_name.name);
786 p9_debug(P9_DEBUG_VFS, "p9_client_link failed %d\n", err);
790 v9fs_invalidate_inode_attr(dir);
791 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
792 /* Get the latest stat info from server. */
794 fid = v9fs_fid_lookup(old_dentry);
798 v9fs_refresh_inode_dotl(fid, old_dentry->d_inode);
800 ihold(old_dentry->d_inode);
801 d_instantiate(dentry, old_dentry->d_inode);
807 * v9fs_vfs_mknod_dotl - create a special file
808 * @dir: inode destination for new link
809 * @dentry: dentry for file
810 * @omode: mode for creation
811 * @rdev: device associated with special file
815 v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
822 struct v9fs_session_info *v9ses;
823 struct p9_fid *fid = NULL, *dfid = NULL;
826 struct dentry *dir_dentry;
827 struct posix_acl *dacl = NULL, *pacl = NULL;
829 p9_debug(P9_DEBUG_VFS, " %lu,%s mode: %hx MAJOR: %u MINOR: %u\n",
830 dir->i_ino, dentry->d_name.name, omode,
831 MAJOR(rdev), MINOR(rdev));
833 if (!new_valid_dev(rdev))
836 v9ses = v9fs_inode2v9ses(dir);
837 dir_dentry = dentry->d_parent;
838 dfid = v9fs_fid_lookup(dir_dentry);
841 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
846 gid = v9fs_get_fsgid_for_create(dir);
848 /* Update mode based on ACL value */
849 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
851 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mknod %d\n",
855 name = (char *) dentry->d_name.name;
857 err = p9_client_mknod_dotl(dfid, name, mode, rdev, gid, &qid);
861 v9fs_invalidate_inode_attr(dir);
862 fid = p9_client_walk(dfid, 1, &name, 1);
865 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
871 /* instantiate inode and assign the unopened fid to the dentry */
872 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
873 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
875 err = PTR_ERR(inode);
876 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
880 v9fs_set_create_acl(inode, fid, dacl, pacl);
881 v9fs_fid_add(dentry, fid);
882 d_instantiate(dentry, inode);
887 * Not in cached mode. No need to populate inode with stat.
888 * socket syscall returns a fd, so we need instantiate
890 inode = v9fs_get_inode(dir->i_sb, mode, rdev);
892 err = PTR_ERR(inode);
895 v9fs_set_create_acl(inode, fid, dacl, pacl);
896 d_instantiate(dentry, inode);
900 p9_client_clunk(fid);
901 v9fs_put_acl(dacl, pacl);
906 * v9fs_vfs_follow_link_dotl - follow a symlink path
907 * @dentry: dentry for symlink
913 v9fs_vfs_follow_link_dotl(struct dentry *dentry, struct nameidata *nd)
917 char *link = __getname();
920 p9_debug(P9_DEBUG_VFS, "%s\n", dentry->d_name.name);
923 link = ERR_PTR(-ENOMEM);
926 fid = v9fs_fid_lookup(dentry);
929 link = ERR_CAST(fid);
932 retval = p9_client_readlink(fid, &target);
934 strcpy(link, target);
939 link = ERR_PTR(retval);
941 nd_set_link(nd, link);
945 int v9fs_refresh_inode_dotl(struct p9_fid *fid, struct inode *inode)
948 struct p9_stat_dotl *st;
949 struct v9fs_session_info *v9ses;
951 v9ses = v9fs_inode2v9ses(inode);
952 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
956 * Don't update inode if the file type is different
958 if ((inode->i_mode & S_IFMT) != (st->st_mode & S_IFMT))
961 spin_lock(&inode->i_lock);
963 * We don't want to refresh inode->i_size,
964 * because we may have cached data
966 i_size = inode->i_size;
967 v9fs_stat2inode_dotl(st, inode);
968 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE)
969 inode->i_size = i_size;
970 spin_unlock(&inode->i_lock);
976 const struct inode_operations v9fs_dir_inode_operations_dotl = {
977 .create = v9fs_vfs_create_dotl,
978 .atomic_open = v9fs_vfs_atomic_open_dotl,
979 .lookup = v9fs_vfs_lookup,
980 .link = v9fs_vfs_link_dotl,
981 .symlink = v9fs_vfs_symlink_dotl,
982 .unlink = v9fs_vfs_unlink,
983 .mkdir = v9fs_vfs_mkdir_dotl,
984 .rmdir = v9fs_vfs_rmdir,
985 .mknod = v9fs_vfs_mknod_dotl,
986 .rename = v9fs_vfs_rename,
987 .getattr = v9fs_vfs_getattr_dotl,
988 .setattr = v9fs_vfs_setattr_dotl,
989 .setxattr = generic_setxattr,
990 .getxattr = generic_getxattr,
991 .removexattr = generic_removexattr,
992 .listxattr = v9fs_listxattr,
993 .get_acl = v9fs_iop_get_acl,
996 const struct inode_operations v9fs_file_inode_operations_dotl = {
997 .getattr = v9fs_vfs_getattr_dotl,
998 .setattr = v9fs_vfs_setattr_dotl,
999 .setxattr = generic_setxattr,
1000 .getxattr = generic_getxattr,
1001 .removexattr = generic_removexattr,
1002 .listxattr = v9fs_listxattr,
1003 .get_acl = v9fs_iop_get_acl,
1006 const struct inode_operations v9fs_symlink_inode_operations_dotl = {
1007 .readlink = generic_readlink,
1008 .follow_link = v9fs_vfs_follow_link_dotl,
1009 .put_link = v9fs_vfs_put_link,
1010 .getattr = v9fs_vfs_getattr_dotl,
1011 .setattr = v9fs_vfs_setattr_dotl,
1012 .setxattr = generic_setxattr,
1013 .getxattr = generic_getxattr,
1014 .removexattr = generic_removexattr,
1015 .listxattr = v9fs_listxattr,