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
, int 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
, st
->st_mode
);
160 v9fs_stat2inode_dotl(st
, inode
);
161 #ifdef CONFIG_9P_FSCACHE
162 v9fs_cache_inode_get_cookie(inode
);
164 retval
= v9fs_get_acl(inode
, fid
);
168 unlock_new_inode(inode
);
171 unlock_new_inode(inode
);
173 return ERR_PTR(retval
);
178 v9fs_inode_from_fid_dotl(struct v9fs_session_info
*v9ses
, struct p9_fid
*fid
,
179 struct super_block
*sb
, int new)
181 struct p9_stat_dotl
*st
;
182 struct inode
*inode
= NULL
;
184 st
= p9_client_getattr_dotl(fid
, P9_STATS_BASIC
| P9_STATS_GEN
);
188 inode
= v9fs_qid_iget_dotl(sb
, &st
->qid
, fid
, st
, new);
194 * v9fs_vfs_create_dotl - VFS hook to create files for 9P2000.L protocol.
195 * @dir: directory inode that is being created
196 * @dentry: dentry that is being deleted
197 * @mode: create permissions
198 * @nd: path information
203 v9fs_vfs_create_dotl(struct inode
*dir
, struct dentry
*dentry
, int omode
,
204 struct nameidata
*nd
)
214 struct p9_fid
*fid
= NULL
;
215 struct v9fs_inode
*v9inode
;
216 struct p9_fid
*dfid
, *ofid
, *inode_fid
;
217 struct v9fs_session_info
*v9ses
;
218 struct posix_acl
*pacl
= NULL
, *dacl
= NULL
;
220 v9ses
= v9fs_inode2v9ses(dir
);
222 flags
= nd
->intent
.open
.flags
;
225 * create call without LOOKUP_OPEN is due
226 * to mknod of regular files. So use mknod
229 return v9fs_vfs_mknod_dotl(dir
, dentry
, omode
, 0);
232 name
= (char *) dentry
->d_name
.name
;
233 P9_DPRINTK(P9_DEBUG_VFS
, "v9fs_vfs_create_dotl: name:%s flags:0x%x "
234 "mode:0x%x\n", name
, flags
, omode
);
236 dfid
= v9fs_fid_lookup(dentry
->d_parent
);
239 P9_DPRINTK(P9_DEBUG_VFS
, "fid lookup failed %d\n", err
);
243 /* clone a fid to use for creation */
244 ofid
= p9_client_walk(dfid
, 0, NULL
, 1);
247 P9_DPRINTK(P9_DEBUG_VFS
, "p9_client_walk failed %d\n", err
);
251 gid
= v9fs_get_fsgid_for_create(dir
);
254 /* Update mode based on ACL value */
255 err
= v9fs_acl_mode(dir
, &mode
, &dacl
, &pacl
);
257 P9_DPRINTK(P9_DEBUG_VFS
,
258 "Failed to get acl values in creat %d\n", err
);
261 err
= p9_client_create_dotl(ofid
, name
, flags
, mode
, gid
, &qid
);
263 P9_DPRINTK(P9_DEBUG_VFS
,
264 "p9_client_open_dotl failed in creat %d\n",
268 v9fs_invalidate_inode_attr(dir
);
270 /* instantiate inode and assign the unopened fid to the dentry */
271 fid
= p9_client_walk(dfid
, 1, &name
, 1);
274 P9_DPRINTK(P9_DEBUG_VFS
, "p9_client_walk failed %d\n", err
);
278 inode
= v9fs_get_new_inode_from_fid(v9ses
, fid
, dir
->i_sb
);
280 err
= PTR_ERR(inode
);
281 P9_DPRINTK(P9_DEBUG_VFS
, "inode creation failed %d\n", err
);
284 d_instantiate(dentry
, inode
);
285 err
= v9fs_fid_add(dentry
, fid
);
289 /* Now set the ACL based on the default value */
290 v9fs_set_create_acl(dentry
, &dacl
, &pacl
);
292 v9inode
= V9FS_I(inode
);
293 mutex_lock(&v9inode
->v_mutex
);
294 if (v9ses
->cache
&& !v9inode
->writeback_fid
&&
295 ((flags
& O_ACCMODE
) != O_RDONLY
)) {
297 * clone a fid and add it to writeback_fid
298 * we do it during open time instead of
299 * page dirty time via write_begin/page_mkwrite
300 * because we want write after unlink usecase
303 inode_fid
= v9fs_writeback_fid(dentry
);
304 if (IS_ERR(inode_fid
)) {
305 err
= PTR_ERR(inode_fid
);
306 mutex_unlock(&v9inode
->v_mutex
);
307 goto err_clunk_old_fid
;
309 v9inode
->writeback_fid
= (void *) inode_fid
;
311 mutex_unlock(&v9inode
->v_mutex
);
312 /* Since we are opening a file, assign the open fid to the file */
313 filp
= lookup_instantiate_filp(nd
, dentry
, generic_file_open
);
316 goto err_clunk_old_fid
;
318 filp
->private_data
= ofid
;
319 #ifdef CONFIG_9P_FSCACHE
321 v9fs_cache_inode_set_cookie(inode
, filp
);
327 p9_client_clunk(fid
);
330 p9_client_clunk(ofid
);
331 v9fs_set_create_acl(NULL
, &dacl
, &pacl
);
336 * v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory
337 * @dir: inode that is being unlinked
338 * @dentry: dentry that is being unlinked
339 * @mode: mode for new directory
343 static int v9fs_vfs_mkdir_dotl(struct inode
*dir
,
344 struct dentry
*dentry
, int omode
)
347 struct v9fs_session_info
*v9ses
;
348 struct p9_fid
*fid
= NULL
, *dfid
= NULL
;
354 struct dentry
*dir_dentry
;
355 struct posix_acl
*dacl
= NULL
, *pacl
= NULL
;
357 P9_DPRINTK(P9_DEBUG_VFS
, "name %s\n", dentry
->d_name
.name
);
359 v9ses
= v9fs_inode2v9ses(dir
);
362 if (dir
->i_mode
& S_ISGID
)
365 dir_dentry
= v9fs_dentry_from_dir_inode(dir
);
366 dfid
= v9fs_fid_lookup(dir_dentry
);
369 P9_DPRINTK(P9_DEBUG_VFS
, "fid lookup failed %d\n", err
);
374 gid
= v9fs_get_fsgid_for_create(dir
);
376 /* Update mode based on ACL value */
377 err
= v9fs_acl_mode(dir
, &mode
, &dacl
, &pacl
);
379 P9_DPRINTK(P9_DEBUG_VFS
,
380 "Failed to get acl values in mkdir %d\n", err
);
383 name
= (char *) dentry
->d_name
.name
;
384 err
= p9_client_mkdir_dotl(dfid
, name
, mode
, gid
, &qid
);
388 /* instantiate inode and assign the unopened fid to the dentry */
389 if (v9ses
->cache
== CACHE_LOOSE
|| v9ses
->cache
== CACHE_FSCACHE
) {
390 fid
= p9_client_walk(dfid
, 1, &name
, 1);
393 P9_DPRINTK(P9_DEBUG_VFS
, "p9_client_walk failed %d\n",
399 inode
= v9fs_get_new_inode_from_fid(v9ses
, fid
, dir
->i_sb
);
401 err
= PTR_ERR(inode
);
402 P9_DPRINTK(P9_DEBUG_VFS
, "inode creation failed %d\n",
406 d_instantiate(dentry
, inode
);
407 err
= v9fs_fid_add(dentry
, fid
);
413 * Not in cached mode. No need to populate
414 * inode with stat. We need to get an inode
415 * so that we can set the acl with dentry
417 inode
= v9fs_get_inode(dir
->i_sb
, mode
);
419 err
= PTR_ERR(inode
);
422 d_instantiate(dentry
, inode
);
424 /* Now set the ACL based on the default value */
425 v9fs_set_create_acl(dentry
, &dacl
, &pacl
);
427 v9fs_invalidate_inode_attr(dir
);
430 p9_client_clunk(fid
);
431 v9fs_set_create_acl(NULL
, &dacl
, &pacl
);
436 v9fs_vfs_getattr_dotl(struct vfsmount
*mnt
, struct dentry
*dentry
,
440 struct v9fs_session_info
*v9ses
;
442 struct p9_stat_dotl
*st
;
444 P9_DPRINTK(P9_DEBUG_VFS
, "dentry: %p\n", dentry
);
446 v9ses
= v9fs_dentry2v9ses(dentry
);
447 if (v9ses
->cache
== CACHE_LOOSE
|| v9ses
->cache
== CACHE_FSCACHE
) {
448 generic_fillattr(dentry
->d_inode
, stat
);
451 fid
= v9fs_fid_lookup(dentry
);
455 /* Ask for all the fields in stat structure. Server will return
456 * whatever it supports
459 st
= p9_client_getattr_dotl(fid
, P9_STATS_ALL
);
463 v9fs_stat2inode_dotl(st
, dentry
->d_inode
);
464 generic_fillattr(dentry
->d_inode
, stat
);
465 /* Change block size to what the server returned */
466 stat
->blksize
= st
->st_blksize
;
473 * v9fs_vfs_setattr_dotl - set file metadata
474 * @dentry: file whose metadata to set
475 * @iattr: metadata assignment structure
479 int v9fs_vfs_setattr_dotl(struct dentry
*dentry
, struct iattr
*iattr
)
482 struct v9fs_session_info
*v9ses
;
484 struct p9_iattr_dotl p9attr
;
486 P9_DPRINTK(P9_DEBUG_VFS
, "\n");
488 retval
= inode_change_ok(dentry
->d_inode
, iattr
);
492 p9attr
.valid
= iattr
->ia_valid
;
493 p9attr
.mode
= iattr
->ia_mode
;
494 p9attr
.uid
= iattr
->ia_uid
;
495 p9attr
.gid
= iattr
->ia_gid
;
496 p9attr
.size
= iattr
->ia_size
;
497 p9attr
.atime_sec
= iattr
->ia_atime
.tv_sec
;
498 p9attr
.atime_nsec
= iattr
->ia_atime
.tv_nsec
;
499 p9attr
.mtime_sec
= iattr
->ia_mtime
.tv_sec
;
500 p9attr
.mtime_nsec
= iattr
->ia_mtime
.tv_nsec
;
503 v9ses
= v9fs_dentry2v9ses(dentry
);
504 fid
= v9fs_fid_lookup(dentry
);
508 /* Write all dirty data */
509 if (S_ISREG(dentry
->d_inode
->i_mode
))
510 filemap_write_and_wait(dentry
->d_inode
->i_mapping
);
512 retval
= p9_client_setattr(fid
, &p9attr
);
516 if ((iattr
->ia_valid
& ATTR_SIZE
) &&
517 iattr
->ia_size
!= i_size_read(dentry
->d_inode
))
518 truncate_setsize(dentry
->d_inode
, iattr
->ia_size
);
520 v9fs_invalidate_inode_attr(dentry
->d_inode
);
521 setattr_copy(dentry
->d_inode
, iattr
);
522 mark_inode_dirty(dentry
->d_inode
);
523 if (iattr
->ia_valid
& ATTR_MODE
) {
524 /* We also want to update ACL when we update mode bits */
525 retval
= v9fs_acl_chmod(dentry
);
533 * v9fs_stat2inode_dotl - populate an inode structure with stat info
534 * @stat: stat structure
535 * @inode: inode to populate
536 * @sb: superblock of filesystem
541 v9fs_stat2inode_dotl(struct p9_stat_dotl
*stat
, struct inode
*inode
)
543 struct v9fs_inode
*v9inode
= V9FS_I(inode
);
545 if ((stat
->st_result_mask
& P9_STATS_BASIC
) == P9_STATS_BASIC
) {
546 inode
->i_atime
.tv_sec
= stat
->st_atime_sec
;
547 inode
->i_atime
.tv_nsec
= stat
->st_atime_nsec
;
548 inode
->i_mtime
.tv_sec
= stat
->st_mtime_sec
;
549 inode
->i_mtime
.tv_nsec
= stat
->st_mtime_nsec
;
550 inode
->i_ctime
.tv_sec
= stat
->st_ctime_sec
;
551 inode
->i_ctime
.tv_nsec
= stat
->st_ctime_nsec
;
552 inode
->i_uid
= stat
->st_uid
;
553 inode
->i_gid
= stat
->st_gid
;
554 inode
->i_nlink
= stat
->st_nlink
;
555 inode
->i_mode
= stat
->st_mode
;
556 inode
->i_rdev
= new_decode_dev(stat
->st_rdev
);
558 if ((S_ISBLK(inode
->i_mode
)) || (S_ISCHR(inode
->i_mode
)))
559 init_special_inode(inode
, inode
->i_mode
, inode
->i_rdev
);
561 i_size_write(inode
, stat
->st_size
);
562 inode
->i_blocks
= stat
->st_blocks
;
564 if (stat
->st_result_mask
& P9_STATS_ATIME
) {
565 inode
->i_atime
.tv_sec
= stat
->st_atime_sec
;
566 inode
->i_atime
.tv_nsec
= stat
->st_atime_nsec
;
568 if (stat
->st_result_mask
& P9_STATS_MTIME
) {
569 inode
->i_mtime
.tv_sec
= stat
->st_mtime_sec
;
570 inode
->i_mtime
.tv_nsec
= stat
->st_mtime_nsec
;
572 if (stat
->st_result_mask
& P9_STATS_CTIME
) {
573 inode
->i_ctime
.tv_sec
= stat
->st_ctime_sec
;
574 inode
->i_ctime
.tv_nsec
= stat
->st_ctime_nsec
;
576 if (stat
->st_result_mask
& P9_STATS_UID
)
577 inode
->i_uid
= stat
->st_uid
;
578 if (stat
->st_result_mask
& P9_STATS_GID
)
579 inode
->i_gid
= stat
->st_gid
;
580 if (stat
->st_result_mask
& P9_STATS_NLINK
)
581 inode
->i_nlink
= stat
->st_nlink
;
582 if (stat
->st_result_mask
& P9_STATS_MODE
) {
583 inode
->i_mode
= stat
->st_mode
;
584 if ((S_ISBLK(inode
->i_mode
)) ||
585 (S_ISCHR(inode
->i_mode
)))
586 init_special_inode(inode
, inode
->i_mode
,
589 if (stat
->st_result_mask
& P9_STATS_RDEV
)
590 inode
->i_rdev
= new_decode_dev(stat
->st_rdev
);
591 if (stat
->st_result_mask
& P9_STATS_SIZE
)
592 i_size_write(inode
, stat
->st_size
);
593 if (stat
->st_result_mask
& P9_STATS_BLOCKS
)
594 inode
->i_blocks
= stat
->st_blocks
;
596 if (stat
->st_result_mask
& P9_STATS_GEN
)
597 inode
->i_generation
= stat
->st_gen
;
599 /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION
600 * because the inode structure does not have fields for them.
602 v9inode
->cache_validity
&= ~V9FS_INO_INVALID_ATTR
;
606 v9fs_vfs_symlink_dotl(struct inode
*dir
, struct dentry
*dentry
,
615 struct p9_fid
*fid
= NULL
;
616 struct v9fs_session_info
*v9ses
;
618 name
= (char *) dentry
->d_name
.name
;
619 P9_DPRINTK(P9_DEBUG_VFS
, "v9fs_vfs_symlink_dotl : %lu,%s,%s\n",
620 dir
->i_ino
, name
, symname
);
621 v9ses
= v9fs_inode2v9ses(dir
);
623 dfid
= v9fs_fid_lookup(dentry
->d_parent
);
626 P9_DPRINTK(P9_DEBUG_VFS
, "fid lookup failed %d\n", err
);
630 gid
= v9fs_get_fsgid_for_create(dir
);
632 /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */
633 err
= p9_client_symlink(dfid
, name
, (char *)symname
, gid
, &qid
);
636 P9_DPRINTK(P9_DEBUG_VFS
, "p9_client_symlink failed %d\n", err
);
640 v9fs_invalidate_inode_attr(dir
);
642 /* Now walk from the parent so we can get an unopened fid. */
643 fid
= p9_client_walk(dfid
, 1, &name
, 1);
646 P9_DPRINTK(P9_DEBUG_VFS
, "p9_client_walk failed %d\n",
652 /* instantiate inode and assign the unopened fid to dentry */
653 inode
= v9fs_get_new_inode_from_fid(v9ses
, fid
, dir
->i_sb
);
655 err
= PTR_ERR(inode
);
656 P9_DPRINTK(P9_DEBUG_VFS
, "inode creation failed %d\n",
660 d_instantiate(dentry
, inode
);
661 err
= v9fs_fid_add(dentry
, fid
);
666 /* Not in cached mode. No need to populate inode with stat */
667 inode
= v9fs_get_inode(dir
->i_sb
, S_IFLNK
);
669 err
= PTR_ERR(inode
);
672 d_instantiate(dentry
, inode
);
677 p9_client_clunk(fid
);
683 * v9fs_vfs_link_dotl - create a hardlink for dotl
684 * @old_dentry: dentry for file to link to
685 * @dir: inode destination for new link
686 * @dentry: dentry for link
691 v9fs_vfs_link_dotl(struct dentry
*old_dentry
, struct inode
*dir
,
692 struct dentry
*dentry
)
696 struct dentry
*dir_dentry
;
697 struct p9_fid
*dfid
, *oldfid
;
698 struct v9fs_session_info
*v9ses
;
700 P9_DPRINTK(P9_DEBUG_VFS
, "dir ino: %lu, old_name: %s, new_name: %s\n",
701 dir
->i_ino
, old_dentry
->d_name
.name
,
702 dentry
->d_name
.name
);
704 v9ses
= v9fs_inode2v9ses(dir
);
705 dir_dentry
= v9fs_dentry_from_dir_inode(dir
);
706 dfid
= v9fs_fid_lookup(dir_dentry
);
708 return PTR_ERR(dfid
);
710 oldfid
= v9fs_fid_lookup(old_dentry
);
712 return PTR_ERR(oldfid
);
714 name
= (char *) dentry
->d_name
.name
;
716 err
= p9_client_link(dfid
, oldfid
, (char *)dentry
->d_name
.name
);
719 P9_DPRINTK(P9_DEBUG_VFS
, "p9_client_link failed %d\n", err
);
723 v9fs_invalidate_inode_attr(dir
);
724 if (v9ses
->cache
== CACHE_LOOSE
|| v9ses
->cache
== CACHE_FSCACHE
) {
725 /* Get the latest stat info from server. */
727 fid
= v9fs_fid_lookup(old_dentry
);
731 v9fs_refresh_inode_dotl(fid
, old_dentry
->d_inode
);
733 ihold(old_dentry
->d_inode
);
734 d_instantiate(dentry
, old_dentry
->d_inode
);
740 * v9fs_vfs_mknod_dotl - create a special file
741 * @dir: inode destination for new link
742 * @dentry: dentry for file
743 * @mode: mode for creation
744 * @rdev: device associated with special file
748 v9fs_vfs_mknod_dotl(struct inode
*dir
, struct dentry
*dentry
, int omode
,
755 struct v9fs_session_info
*v9ses
;
756 struct p9_fid
*fid
= NULL
, *dfid
= NULL
;
759 struct dentry
*dir_dentry
;
760 struct posix_acl
*dacl
= NULL
, *pacl
= NULL
;
762 P9_DPRINTK(P9_DEBUG_VFS
,
763 " %lu,%s mode: %x MAJOR: %u MINOR: %u\n", dir
->i_ino
,
764 dentry
->d_name
.name
, omode
, MAJOR(rdev
), MINOR(rdev
));
766 if (!new_valid_dev(rdev
))
769 v9ses
= v9fs_inode2v9ses(dir
);
770 dir_dentry
= v9fs_dentry_from_dir_inode(dir
);
771 dfid
= v9fs_fid_lookup(dir_dentry
);
774 P9_DPRINTK(P9_DEBUG_VFS
, "fid lookup failed %d\n", err
);
779 gid
= v9fs_get_fsgid_for_create(dir
);
781 /* Update mode based on ACL value */
782 err
= v9fs_acl_mode(dir
, &mode
, &dacl
, &pacl
);
784 P9_DPRINTK(P9_DEBUG_VFS
,
785 "Failed to get acl values in mknod %d\n", err
);
788 name
= (char *) dentry
->d_name
.name
;
790 err
= p9_client_mknod_dotl(dfid
, name
, mode
, rdev
, gid
, &qid
);
794 v9fs_invalidate_inode_attr(dir
);
795 /* instantiate inode and assign the unopened fid to the dentry */
796 if (v9ses
->cache
== CACHE_LOOSE
|| v9ses
->cache
== CACHE_FSCACHE
) {
797 fid
= p9_client_walk(dfid
, 1, &name
, 1);
800 P9_DPRINTK(P9_DEBUG_VFS
, "p9_client_walk failed %d\n",
806 inode
= v9fs_get_new_inode_from_fid(v9ses
, fid
, dir
->i_sb
);
808 err
= PTR_ERR(inode
);
809 P9_DPRINTK(P9_DEBUG_VFS
, "inode creation failed %d\n",
813 d_instantiate(dentry
, inode
);
814 err
= v9fs_fid_add(dentry
, fid
);
820 * Not in cached mode. No need to populate inode with stat.
821 * socket syscall returns a fd, so we need instantiate
823 inode
= v9fs_get_inode(dir
->i_sb
, mode
);
825 err
= PTR_ERR(inode
);
828 d_instantiate(dentry
, inode
);
830 /* Now set the ACL based on the default value */
831 v9fs_set_create_acl(dentry
, &dacl
, &pacl
);
834 p9_client_clunk(fid
);
835 v9fs_set_create_acl(NULL
, &dacl
, &pacl
);
840 * v9fs_vfs_follow_link_dotl - follow a symlink path
841 * @dentry: dentry for symlink
847 v9fs_vfs_follow_link_dotl(struct dentry
*dentry
, struct nameidata
*nd
)
851 char *link
= __getname();
854 P9_DPRINTK(P9_DEBUG_VFS
, "%s\n", dentry
->d_name
.name
);
857 link
= ERR_PTR(-ENOMEM
);
860 fid
= v9fs_fid_lookup(dentry
);
863 link
= ERR_CAST(fid
);
866 retval
= p9_client_readlink(fid
, &target
);
868 strcpy(link
, target
);
873 link
= ERR_PTR(retval
);
875 nd_set_link(nd
, link
);
879 int v9fs_refresh_inode_dotl(struct p9_fid
*fid
, struct inode
*inode
)
882 struct p9_stat_dotl
*st
;
883 struct v9fs_session_info
*v9ses
;
885 v9ses
= v9fs_inode2v9ses(inode
);
886 st
= p9_client_getattr_dotl(fid
, P9_STATS_ALL
);
890 spin_lock(&inode
->i_lock
);
892 * We don't want to refresh inode->i_size,
893 * because we may have cached data
895 i_size
= inode
->i_size
;
896 v9fs_stat2inode_dotl(st
, inode
);
898 inode
->i_size
= i_size
;
899 spin_unlock(&inode
->i_lock
);
904 const struct inode_operations v9fs_dir_inode_operations_dotl
= {
905 .create
= v9fs_vfs_create_dotl
,
906 .lookup
= v9fs_vfs_lookup
,
907 .link
= v9fs_vfs_link_dotl
,
908 .symlink
= v9fs_vfs_symlink_dotl
,
909 .unlink
= v9fs_vfs_unlink
,
910 .mkdir
= v9fs_vfs_mkdir_dotl
,
911 .rmdir
= v9fs_vfs_rmdir
,
912 .mknod
= v9fs_vfs_mknod_dotl
,
913 .rename
= v9fs_vfs_rename
,
914 .getattr
= v9fs_vfs_getattr_dotl
,
915 .setattr
= v9fs_vfs_setattr_dotl
,
916 .setxattr
= generic_setxattr
,
917 .getxattr
= generic_getxattr
,
918 .removexattr
= generic_removexattr
,
919 .listxattr
= v9fs_listxattr
,
920 .get_acl
= v9fs_iop_get_acl
,
923 const struct inode_operations v9fs_file_inode_operations_dotl
= {
924 .getattr
= v9fs_vfs_getattr_dotl
,
925 .setattr
= v9fs_vfs_setattr_dotl
,
926 .setxattr
= generic_setxattr
,
927 .getxattr
= generic_getxattr
,
928 .removexattr
= generic_removexattr
,
929 .listxattr
= v9fs_listxattr
,
930 .get_acl
= v9fs_iop_get_acl
,
933 const struct inode_operations v9fs_symlink_inode_operations_dotl
= {
934 .readlink
= generic_readlink
,
935 .follow_link
= v9fs_vfs_follow_link_dotl
,
936 .put_link
= v9fs_vfs_put_link
,
937 .getattr
= v9fs_vfs_getattr_dotl
,
938 .setattr
= v9fs_vfs_setattr_dotl
,
939 .setxattr
= generic_setxattr
,
940 .getxattr
= generic_getxattr
,
941 .removexattr
= generic_removexattr
,
942 .listxattr
= v9fs_listxattr
,