1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/fs/9p/vfs_inode_dotl.c
5 * This file contains vfs inode ops for the 9P2000.L protocol.
11 #include <linux/module.h>
12 #include <linux/errno.h>
14 #include <linux/file.h>
15 #include <linux/pagemap.h>
16 #include <linux/stat.h>
17 #include <linux/string.h>
18 #include <linux/inet.h>
19 #include <linux/namei.h>
20 #include <linux/idr.h>
21 #include <linux/sched.h>
22 #include <linux/slab.h>
23 #include <linux/xattr.h>
24 #include <linux/posix_acl.h>
25 #include <net/9p/9p.h>
26 #include <net/9p/client.h>
36 v9fs_vfs_mknod_dotl(struct user_namespace *mnt_userns, struct inode *dir,
37 struct dentry *dentry, umode_t omode, dev_t rdev);
40 * v9fs_get_fsgid_for_create - Helper function to get the gid for creating a
41 * new file system object. This checks the S_ISGID to determine the owning
42 * group of the new file system object.
45 static kgid_t v9fs_get_fsgid_for_create(struct inode *dir_inode)
47 BUG_ON(dir_inode == NULL);
49 if (dir_inode->i_mode & S_ISGID) {
50 /* set_gid bit is set.*/
51 return dir_inode->i_gid;
53 return current_fsgid();
56 static int v9fs_test_inode_dotl(struct inode *inode, void *data)
58 struct v9fs_inode *v9inode = V9FS_I(inode);
59 struct p9_stat_dotl *st = (struct p9_stat_dotl *)data;
61 /* don't match inode of different type */
62 if (inode_wrong_type(inode, st->st_mode))
65 if (inode->i_generation != st->st_gen)
68 /* compare qid details */
69 if (memcmp(&v9inode->qid.version,
70 &st->qid.version, sizeof(v9inode->qid.version)))
73 if (v9inode->qid.type != st->qid.type)
76 if (v9inode->qid.path != st->qid.path)
81 /* Always get a new inode */
82 static int v9fs_test_new_inode_dotl(struct inode *inode, void *data)
87 static int v9fs_set_inode_dotl(struct inode *inode, void *data)
89 struct v9fs_inode *v9inode = V9FS_I(inode);
90 struct p9_stat_dotl *st = (struct p9_stat_dotl *)data;
92 memcpy(&v9inode->qid, &st->qid, sizeof(st->qid));
93 inode->i_generation = st->st_gen;
97 static struct inode *v9fs_qid_iget_dotl(struct super_block *sb,
100 struct p9_stat_dotl *st,
106 struct v9fs_session_info *v9ses = sb->s_fs_info;
107 int (*test)(struct inode *, void *);
110 test = v9fs_test_new_inode_dotl;
112 test = v9fs_test_inode_dotl;
114 i_ino = v9fs_qid2ino(qid);
115 inode = iget5_locked(sb, i_ino, test, v9fs_set_inode_dotl, st);
117 return ERR_PTR(-ENOMEM);
118 if (!(inode->i_state & I_NEW))
121 * initialize the inode with the stat info
122 * FIXME!! we may need support for stale inodes
125 inode->i_ino = i_ino;
126 retval = v9fs_init_inode(v9ses, inode,
127 st->st_mode, new_decode_dev(st->st_rdev));
131 v9fs_stat2inode_dotl(st, inode, 0);
132 v9fs_cache_inode_get_cookie(inode);
133 retval = v9fs_get_acl(inode, fid);
137 unlock_new_inode(inode);
141 return ERR_PTR(retval);
146 v9fs_inode_from_fid_dotl(struct v9fs_session_info *v9ses, struct p9_fid *fid,
147 struct super_block *sb, int new)
149 struct p9_stat_dotl *st;
150 struct inode *inode = NULL;
152 st = p9_client_getattr_dotl(fid, P9_STATS_BASIC | P9_STATS_GEN);
156 inode = v9fs_qid_iget_dotl(sb, &st->qid, fid, st, new);
161 struct dotl_openflag_map {
166 static int v9fs_mapped_dotl_flags(int flags)
170 struct dotl_openflag_map dotl_oflag_map[] = {
171 { O_CREAT, P9_DOTL_CREATE },
172 { O_EXCL, P9_DOTL_EXCL },
173 { O_NOCTTY, P9_DOTL_NOCTTY },
174 { O_APPEND, P9_DOTL_APPEND },
175 { O_NONBLOCK, P9_DOTL_NONBLOCK },
176 { O_DSYNC, P9_DOTL_DSYNC },
177 { FASYNC, P9_DOTL_FASYNC },
178 { O_DIRECT, P9_DOTL_DIRECT },
179 { O_LARGEFILE, P9_DOTL_LARGEFILE },
180 { O_DIRECTORY, P9_DOTL_DIRECTORY },
181 { O_NOFOLLOW, P9_DOTL_NOFOLLOW },
182 { O_NOATIME, P9_DOTL_NOATIME },
183 { O_CLOEXEC, P9_DOTL_CLOEXEC },
184 { O_SYNC, P9_DOTL_SYNC},
186 for (i = 0; i < ARRAY_SIZE(dotl_oflag_map); i++) {
187 if (flags & dotl_oflag_map[i].open_flag)
188 rflags |= dotl_oflag_map[i].dotl_flag;
194 * v9fs_open_to_dotl_flags- convert Linux specific open flags to
196 * @flags: flags to convert
198 int v9fs_open_to_dotl_flags(int flags)
203 * We have same bits for P9_DOTL_READONLY, P9_DOTL_WRONLY
204 * and P9_DOTL_NOACCESS
206 rflags |= flags & O_ACCMODE;
207 rflags |= v9fs_mapped_dotl_flags(flags);
213 * v9fs_vfs_create_dotl - VFS hook to create files for 9P2000.L protocol.
214 * @dir: directory inode that is being created
215 * @dentry: dentry that is being deleted
216 * @omode: create permissions
221 v9fs_vfs_create_dotl(struct user_namespace *mnt_userns, struct inode *dir,
222 struct dentry *dentry, umode_t omode, bool excl)
224 return v9fs_vfs_mknod_dotl(mnt_userns, dir, dentry, omode, 0);
228 v9fs_vfs_atomic_open_dotl(struct inode *dir, struct dentry *dentry,
229 struct file *file, unsigned flags, umode_t omode)
234 const unsigned char *name = NULL;
237 struct p9_fid *fid = NULL;
238 struct v9fs_inode *v9inode;
239 struct p9_fid *dfid, *ofid, *inode_fid;
240 struct v9fs_session_info *v9ses;
241 struct posix_acl *pacl = NULL, *dacl = NULL;
242 struct dentry *res = NULL;
244 if (d_in_lookup(dentry)) {
245 res = v9fs_vfs_lookup(dir, dentry, 0);
254 if (!(flags & O_CREAT) || d_really_is_positive(dentry))
255 return finish_no_open(file, res);
257 v9ses = v9fs_inode2v9ses(dir);
259 name = dentry->d_name.name;
260 p9_debug(P9_DEBUG_VFS, "name:%s flags:0x%x mode:0x%hx\n",
263 dfid = v9fs_parent_fid(dentry);
266 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
270 /* clone a fid to use for creation */
271 ofid = clone_fid(dfid);
274 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
278 gid = v9fs_get_fsgid_for_create(dir);
281 /* Update mode based on ACL value */
282 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
284 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in creat %d\n",
288 err = p9_client_create_dotl(ofid, name, v9fs_open_to_dotl_flags(flags),
291 p9_debug(P9_DEBUG_VFS, "p9_client_open_dotl failed in creat %d\n",
295 v9fs_invalidate_inode_attr(dir);
297 /* instantiate inode and assign the unopened fid to the dentry */
298 fid = p9_client_walk(dfid, 1, &name, 1);
299 p9_client_clunk(dfid);
302 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
306 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
308 err = PTR_ERR(inode);
309 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n", err);
312 /* Now set the ACL based on the default value */
313 v9fs_set_create_acl(inode, fid, dacl, pacl);
315 v9fs_fid_add(dentry, fid);
316 d_instantiate(dentry, inode);
318 v9inode = V9FS_I(inode);
319 mutex_lock(&v9inode->v_mutex);
320 if ((v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) &&
321 !v9inode->writeback_fid &&
322 ((flags & O_ACCMODE) != O_RDONLY)) {
324 * clone a fid and add it to writeback_fid
325 * we do it during open time instead of
326 * page dirty time via write_begin/page_mkwrite
327 * because we want write after unlink usecase
330 inode_fid = v9fs_writeback_fid(dentry);
331 if (IS_ERR(inode_fid)) {
332 err = PTR_ERR(inode_fid);
333 mutex_unlock(&v9inode->v_mutex);
334 goto err_clunk_old_fid;
336 v9inode->writeback_fid = (void *) inode_fid;
338 mutex_unlock(&v9inode->v_mutex);
339 /* Since we are opening a file, assign the open fid to the file */
340 err = finish_open(file, dentry, generic_file_open);
342 goto err_clunk_old_fid;
343 file->private_data = ofid;
344 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE)
345 v9fs_cache_inode_set_cookie(inode, file);
346 v9fs_open_fid_add(inode, ofid);
347 file->f_mode |= FMODE_CREATED;
349 v9fs_put_acl(dacl, pacl);
355 p9_client_clunk(fid);
358 p9_client_clunk(ofid);
363 * v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory
364 * @dir: inode that is being unlinked
365 * @dentry: dentry that is being unlinked
366 * @omode: mode for new directory
370 static int v9fs_vfs_mkdir_dotl(struct user_namespace *mnt_userns,
371 struct inode *dir, struct dentry *dentry,
375 struct v9fs_session_info *v9ses;
376 struct p9_fid *fid = NULL, *dfid = NULL;
378 const unsigned char *name;
382 struct posix_acl *dacl = NULL, *pacl = NULL;
384 p9_debug(P9_DEBUG_VFS, "name %pd\n", dentry);
386 v9ses = v9fs_inode2v9ses(dir);
389 if (dir->i_mode & S_ISGID)
392 dfid = v9fs_parent_fid(dentry);
395 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
400 gid = v9fs_get_fsgid_for_create(dir);
402 /* Update mode based on ACL value */
403 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
405 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mkdir %d\n",
409 name = dentry->d_name.name;
410 err = p9_client_mkdir_dotl(dfid, name, mode, gid, &qid);
413 fid = p9_client_walk(dfid, 1, &name, 1);
416 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
422 /* instantiate inode and assign the unopened fid to the dentry */
423 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
424 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
426 err = PTR_ERR(inode);
427 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
431 v9fs_fid_add(dentry, fid);
432 v9fs_set_create_acl(inode, fid, dacl, pacl);
433 d_instantiate(dentry, inode);
438 * Not in cached mode. No need to populate
439 * inode with stat. We need to get an inode
440 * so that we can set the acl with dentry
442 inode = v9fs_get_inode(dir->i_sb, mode, 0);
444 err = PTR_ERR(inode);
447 v9fs_set_create_acl(inode, fid, dacl, pacl);
448 d_instantiate(dentry, inode);
451 v9fs_invalidate_inode_attr(dir);
454 p9_client_clunk(fid);
455 v9fs_put_acl(dacl, pacl);
456 p9_client_clunk(dfid);
461 v9fs_vfs_getattr_dotl(struct user_namespace *mnt_userns,
462 const struct path *path, struct kstat *stat,
463 u32 request_mask, unsigned int flags)
465 struct dentry *dentry = path->dentry;
466 struct v9fs_session_info *v9ses;
468 struct p9_stat_dotl *st;
470 p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry);
471 v9ses = v9fs_dentry2v9ses(dentry);
472 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
473 generic_fillattr(&init_user_ns, d_inode(dentry), stat);
476 fid = v9fs_fid_lookup(dentry);
480 /* Ask for all the fields in stat structure. Server will return
481 * whatever it supports
484 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
485 p9_client_clunk(fid);
489 v9fs_stat2inode_dotl(st, d_inode(dentry), 0);
490 generic_fillattr(&init_user_ns, d_inode(dentry), stat);
491 /* Change block size to what the server returned */
492 stat->blksize = st->st_blksize;
501 #define P9_ATTR_MODE (1 << 0)
502 #define P9_ATTR_UID (1 << 1)
503 #define P9_ATTR_GID (1 << 2)
504 #define P9_ATTR_SIZE (1 << 3)
505 #define P9_ATTR_ATIME (1 << 4)
506 #define P9_ATTR_MTIME (1 << 5)
507 #define P9_ATTR_CTIME (1 << 6)
508 #define P9_ATTR_ATIME_SET (1 << 7)
509 #define P9_ATTR_MTIME_SET (1 << 8)
511 struct dotl_iattr_map {
516 static int v9fs_mapped_iattr_valid(int iattr_valid)
519 int p9_iattr_valid = 0;
520 struct dotl_iattr_map dotl_iattr_map[] = {
521 { ATTR_MODE, P9_ATTR_MODE },
522 { ATTR_UID, P9_ATTR_UID },
523 { ATTR_GID, P9_ATTR_GID },
524 { ATTR_SIZE, P9_ATTR_SIZE },
525 { ATTR_ATIME, P9_ATTR_ATIME },
526 { ATTR_MTIME, P9_ATTR_MTIME },
527 { ATTR_CTIME, P9_ATTR_CTIME },
528 { ATTR_ATIME_SET, P9_ATTR_ATIME_SET },
529 { ATTR_MTIME_SET, P9_ATTR_MTIME_SET },
531 for (i = 0; i < ARRAY_SIZE(dotl_iattr_map); i++) {
532 if (iattr_valid & dotl_iattr_map[i].iattr_valid)
533 p9_iattr_valid |= dotl_iattr_map[i].p9_iattr_valid;
535 return p9_iattr_valid;
539 * v9fs_vfs_setattr_dotl - set file metadata
540 * @dentry: file whose metadata to set
541 * @iattr: metadata assignment structure
545 int v9fs_vfs_setattr_dotl(struct user_namespace *mnt_userns,
546 struct dentry *dentry, struct iattr *iattr)
548 int retval, use_dentry = 0;
549 struct p9_fid *fid = NULL;
550 struct p9_iattr_dotl p9attr;
551 struct inode *inode = d_inode(dentry);
553 p9_debug(P9_DEBUG_VFS, "\n");
555 retval = setattr_prepare(&init_user_ns, dentry, iattr);
559 p9attr.valid = v9fs_mapped_iattr_valid(iattr->ia_valid);
560 p9attr.mode = iattr->ia_mode;
561 p9attr.uid = iattr->ia_uid;
562 p9attr.gid = iattr->ia_gid;
563 p9attr.size = iattr->ia_size;
564 p9attr.atime_sec = iattr->ia_atime.tv_sec;
565 p9attr.atime_nsec = iattr->ia_atime.tv_nsec;
566 p9attr.mtime_sec = iattr->ia_mtime.tv_sec;
567 p9attr.mtime_nsec = iattr->ia_mtime.tv_nsec;
569 if (iattr->ia_valid & ATTR_FILE) {
570 fid = iattr->ia_file->private_data;
574 fid = v9fs_fid_lookup(dentry);
580 /* Write all dirty data */
581 if (S_ISREG(inode->i_mode))
582 filemap_write_and_wait(inode->i_mapping);
584 retval = p9_client_setattr(fid, &p9attr);
587 p9_client_clunk(fid);
591 if ((iattr->ia_valid & ATTR_SIZE) &&
592 iattr->ia_size != i_size_read(inode))
593 truncate_setsize(inode, iattr->ia_size);
595 v9fs_invalidate_inode_attr(inode);
596 setattr_copy(&init_user_ns, inode, iattr);
597 mark_inode_dirty(inode);
598 if (iattr->ia_valid & ATTR_MODE) {
599 /* We also want to update ACL when we update mode bits */
600 retval = v9fs_acl_chmod(inode, fid);
603 p9_client_clunk(fid);
608 p9_client_clunk(fid);
614 * v9fs_stat2inode_dotl - populate an inode structure with stat info
615 * @stat: stat structure
616 * @inode: inode to populate
617 * @flags: ctrl flags (e.g. V9FS_STAT2INODE_KEEP_ISIZE)
622 v9fs_stat2inode_dotl(struct p9_stat_dotl *stat, struct inode *inode,
626 struct v9fs_inode *v9inode = V9FS_I(inode);
628 if ((stat->st_result_mask & P9_STATS_BASIC) == P9_STATS_BASIC) {
629 inode->i_atime.tv_sec = stat->st_atime_sec;
630 inode->i_atime.tv_nsec = stat->st_atime_nsec;
631 inode->i_mtime.tv_sec = stat->st_mtime_sec;
632 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
633 inode->i_ctime.tv_sec = stat->st_ctime_sec;
634 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
635 inode->i_uid = stat->st_uid;
636 inode->i_gid = stat->st_gid;
637 set_nlink(inode, stat->st_nlink);
639 mode = stat->st_mode & S_IALLUGO;
640 mode |= inode->i_mode & ~S_IALLUGO;
641 inode->i_mode = mode;
643 if (!(flags & V9FS_STAT2INODE_KEEP_ISIZE))
644 v9fs_i_size_write(inode, stat->st_size);
645 inode->i_blocks = stat->st_blocks;
647 if (stat->st_result_mask & P9_STATS_ATIME) {
648 inode->i_atime.tv_sec = stat->st_atime_sec;
649 inode->i_atime.tv_nsec = stat->st_atime_nsec;
651 if (stat->st_result_mask & P9_STATS_MTIME) {
652 inode->i_mtime.tv_sec = stat->st_mtime_sec;
653 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
655 if (stat->st_result_mask & P9_STATS_CTIME) {
656 inode->i_ctime.tv_sec = stat->st_ctime_sec;
657 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
659 if (stat->st_result_mask & P9_STATS_UID)
660 inode->i_uid = stat->st_uid;
661 if (stat->st_result_mask & P9_STATS_GID)
662 inode->i_gid = stat->st_gid;
663 if (stat->st_result_mask & P9_STATS_NLINK)
664 set_nlink(inode, stat->st_nlink);
665 if (stat->st_result_mask & P9_STATS_MODE) {
666 mode = stat->st_mode & S_IALLUGO;
667 mode |= inode->i_mode & ~S_IALLUGO;
668 inode->i_mode = mode;
670 if (!(flags & V9FS_STAT2INODE_KEEP_ISIZE) &&
671 stat->st_result_mask & P9_STATS_SIZE)
672 v9fs_i_size_write(inode, stat->st_size);
673 if (stat->st_result_mask & P9_STATS_BLOCKS)
674 inode->i_blocks = stat->st_blocks;
676 if (stat->st_result_mask & P9_STATS_GEN)
677 inode->i_generation = stat->st_gen;
679 /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION
680 * because the inode structure does not have fields for them.
682 v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR;
686 v9fs_vfs_symlink_dotl(struct user_namespace *mnt_userns, struct inode *dir,
687 struct dentry *dentry, const char *symname)
691 const unsigned char *name;
695 struct p9_fid *fid = NULL;
696 struct v9fs_session_info *v9ses;
698 name = dentry->d_name.name;
699 p9_debug(P9_DEBUG_VFS, "%lu,%s,%s\n", dir->i_ino, name, symname);
700 v9ses = v9fs_inode2v9ses(dir);
702 dfid = v9fs_parent_fid(dentry);
705 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
709 gid = v9fs_get_fsgid_for_create(dir);
711 /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */
712 err = p9_client_symlink(dfid, name, symname, gid, &qid);
715 p9_debug(P9_DEBUG_VFS, "p9_client_symlink failed %d\n", err);
719 v9fs_invalidate_inode_attr(dir);
720 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
721 /* Now walk from the parent so we can get an unopened fid. */
722 fid = p9_client_walk(dfid, 1, &name, 1);
725 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
731 /* instantiate inode and assign the unopened fid to dentry */
732 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
734 err = PTR_ERR(inode);
735 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
739 v9fs_fid_add(dentry, fid);
740 d_instantiate(dentry, inode);
744 /* Not in cached mode. No need to populate inode with stat */
745 inode = v9fs_get_inode(dir->i_sb, S_IFLNK, 0);
747 err = PTR_ERR(inode);
750 d_instantiate(dentry, inode);
755 p9_client_clunk(fid);
757 p9_client_clunk(dfid);
762 * v9fs_vfs_link_dotl - create a hardlink for dotl
763 * @old_dentry: dentry for file to link to
764 * @dir: inode destination for new link
765 * @dentry: dentry for link
770 v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir,
771 struct dentry *dentry)
774 struct p9_fid *dfid, *oldfid;
775 struct v9fs_session_info *v9ses;
777 p9_debug(P9_DEBUG_VFS, "dir ino: %lu, old_name: %pd, new_name: %pd\n",
778 dir->i_ino, old_dentry, dentry);
780 v9ses = v9fs_inode2v9ses(dir);
781 dfid = v9fs_parent_fid(dentry);
783 return PTR_ERR(dfid);
785 oldfid = v9fs_fid_lookup(old_dentry);
786 if (IS_ERR(oldfid)) {
787 p9_client_clunk(dfid);
788 return PTR_ERR(oldfid);
791 err = p9_client_link(dfid, oldfid, dentry->d_name.name);
793 p9_client_clunk(dfid);
794 p9_client_clunk(oldfid);
796 p9_debug(P9_DEBUG_VFS, "p9_client_link failed %d\n", err);
800 v9fs_invalidate_inode_attr(dir);
801 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
802 /* Get the latest stat info from server. */
804 fid = v9fs_fid_lookup(old_dentry);
808 v9fs_refresh_inode_dotl(fid, d_inode(old_dentry));
809 p9_client_clunk(fid);
811 ihold(d_inode(old_dentry));
812 d_instantiate(dentry, d_inode(old_dentry));
818 * v9fs_vfs_mknod_dotl - create a special file
819 * @dir: inode destination for new link
820 * @dentry: dentry for file
821 * @omode: mode for creation
822 * @rdev: device associated with special file
826 v9fs_vfs_mknod_dotl(struct user_namespace *mnt_userns, struct inode *dir,
827 struct dentry *dentry, umode_t omode, dev_t rdev)
831 const unsigned char *name;
833 struct v9fs_session_info *v9ses;
834 struct p9_fid *fid = NULL, *dfid = NULL;
837 struct posix_acl *dacl = NULL, *pacl = NULL;
839 p9_debug(P9_DEBUG_VFS, " %lu,%pd mode: %hx MAJOR: %u MINOR: %u\n",
840 dir->i_ino, dentry, omode,
841 MAJOR(rdev), MINOR(rdev));
843 v9ses = v9fs_inode2v9ses(dir);
844 dfid = v9fs_parent_fid(dentry);
847 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
852 gid = v9fs_get_fsgid_for_create(dir);
854 /* Update mode based on ACL value */
855 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
857 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mknod %d\n",
861 name = dentry->d_name.name;
863 err = p9_client_mknod_dotl(dfid, name, mode, rdev, gid, &qid);
867 v9fs_invalidate_inode_attr(dir);
868 fid = p9_client_walk(dfid, 1, &name, 1);
871 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
877 /* instantiate inode and assign the unopened fid to the dentry */
878 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
879 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
881 err = PTR_ERR(inode);
882 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
886 v9fs_set_create_acl(inode, fid, dacl, pacl);
887 v9fs_fid_add(dentry, fid);
888 d_instantiate(dentry, inode);
893 * Not in cached mode. No need to populate inode with stat.
894 * socket syscall returns a fd, so we need instantiate
896 inode = v9fs_get_inode(dir->i_sb, mode, rdev);
898 err = PTR_ERR(inode);
901 v9fs_set_create_acl(inode, fid, dacl, pacl);
902 d_instantiate(dentry, inode);
906 p9_client_clunk(fid);
907 v9fs_put_acl(dacl, pacl);
908 p9_client_clunk(dfid);
914 * v9fs_vfs_get_link_dotl - follow a symlink path
915 * @dentry: dentry for symlink
916 * @inode: inode for symlink
917 * @done: destructor for return value
921 v9fs_vfs_get_link_dotl(struct dentry *dentry,
923 struct delayed_call *done)
930 return ERR_PTR(-ECHILD);
932 p9_debug(P9_DEBUG_VFS, "%pd\n", dentry);
934 fid = v9fs_fid_lookup(dentry);
936 return ERR_CAST(fid);
937 retval = p9_client_readlink(fid, &target);
938 p9_client_clunk(fid);
940 return ERR_PTR(retval);
941 set_delayed_call(done, kfree_link, target);
945 int v9fs_refresh_inode_dotl(struct p9_fid *fid, struct inode *inode)
947 struct p9_stat_dotl *st;
948 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_wrong_type(inode, st->st_mode))
962 * We don't want to refresh inode->i_size,
963 * because we may have cached data
965 flags = (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) ?
966 V9FS_STAT2INODE_KEEP_ISIZE : 0;
967 v9fs_stat2inode_dotl(st, inode, flags);
973 const struct inode_operations v9fs_dir_inode_operations_dotl = {
974 .create = v9fs_vfs_create_dotl,
975 .atomic_open = v9fs_vfs_atomic_open_dotl,
976 .lookup = v9fs_vfs_lookup,
977 .link = v9fs_vfs_link_dotl,
978 .symlink = v9fs_vfs_symlink_dotl,
979 .unlink = v9fs_vfs_unlink,
980 .mkdir = v9fs_vfs_mkdir_dotl,
981 .rmdir = v9fs_vfs_rmdir,
982 .mknod = v9fs_vfs_mknod_dotl,
983 .rename = v9fs_vfs_rename,
984 .getattr = v9fs_vfs_getattr_dotl,
985 .setattr = v9fs_vfs_setattr_dotl,
986 .listxattr = v9fs_listxattr,
987 .get_acl = v9fs_iop_get_acl,
990 const struct inode_operations v9fs_file_inode_operations_dotl = {
991 .getattr = v9fs_vfs_getattr_dotl,
992 .setattr = v9fs_vfs_setattr_dotl,
993 .listxattr = v9fs_listxattr,
994 .get_acl = v9fs_iop_get_acl,
997 const struct inode_operations v9fs_symlink_inode_operations_dotl = {
998 .get_link = v9fs_vfs_get_link_dotl,
999 .getattr = v9fs_vfs_getattr_dotl,
1000 .setattr = v9fs_vfs_setattr_dotl,
1001 .listxattr = v9fs_listxattr,