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 struct inode
*v9fs_qid_iget_dotl(struct super_block
*sb
,
92 struct p9_stat_dotl
*st
)
97 struct v9fs_session_info
*v9ses
= sb
->s_fs_info
;
99 i_ino
= v9fs_qid2ino(qid
);
100 inode
= iget_locked(sb
, i_ino
);
102 return ERR_PTR(-ENOMEM
);
103 if (!(inode
->i_state
& I_NEW
))
106 * initialize the inode with the stat info
107 * FIXME!! we may need support for stale inodes
110 retval
= v9fs_init_inode(v9ses
, inode
, st
->st_mode
);
114 v9fs_stat2inode_dotl(st
, inode
);
115 #ifdef CONFIG_9P_FSCACHE
116 v9fs_fscache_set_key(inode
, &st
->qid
);
117 v9fs_cache_inode_get_cookie(inode
);
119 retval
= v9fs_get_acl(inode
, fid
);
123 unlock_new_inode(inode
);
126 unlock_new_inode(inode
);
128 return ERR_PTR(retval
);
133 v9fs_inode_from_fid_dotl(struct v9fs_session_info
*v9ses
, struct p9_fid
*fid
,
134 struct super_block
*sb
)
136 struct p9_stat_dotl
*st
;
137 struct inode
*inode
= NULL
;
139 st
= p9_client_getattr_dotl(fid
, P9_STATS_BASIC
);
143 inode
= v9fs_qid_iget_dotl(sb
, &st
->qid
, fid
, st
);
149 * v9fs_vfs_create_dotl - VFS hook to create files for 9P2000.L protocol.
150 * @dir: directory inode that is being created
151 * @dentry: dentry that is being deleted
152 * @mode: create permissions
153 * @nd: path information
158 v9fs_vfs_create_dotl(struct inode
*dir
, struct dentry
*dentry
, int omode
,
159 struct nameidata
*nd
)
169 struct p9_fid
*fid
= NULL
;
170 struct v9fs_inode
*v9inode
;
171 struct p9_fid
*dfid
, *ofid
, *inode_fid
;
172 struct v9fs_session_info
*v9ses
;
173 struct posix_acl
*pacl
= NULL
, *dacl
= NULL
;
175 v9ses
= v9fs_inode2v9ses(dir
);
176 if (nd
&& nd
->flags
& LOOKUP_OPEN
)
177 flags
= nd
->intent
.open
.flags
- 1;
180 * create call without LOOKUP_OPEN is due
181 * to mknod of regular files. So use mknod
184 return v9fs_vfs_mknod_dotl(dir
, dentry
, omode
, 0);
187 name
= (char *) dentry
->d_name
.name
;
188 P9_DPRINTK(P9_DEBUG_VFS
, "v9fs_vfs_create_dotl: name:%s flags:0x%x "
189 "mode:0x%x\n", name
, flags
, omode
);
191 dfid
= v9fs_fid_lookup(dentry
->d_parent
);
194 P9_DPRINTK(P9_DEBUG_VFS
, "fid lookup failed %d\n", err
);
198 /* clone a fid to use for creation */
199 ofid
= p9_client_walk(dfid
, 0, NULL
, 1);
202 P9_DPRINTK(P9_DEBUG_VFS
, "p9_client_walk failed %d\n", err
);
206 gid
= v9fs_get_fsgid_for_create(dir
);
209 /* Update mode based on ACL value */
210 err
= v9fs_acl_mode(dir
, &mode
, &dacl
, &pacl
);
212 P9_DPRINTK(P9_DEBUG_VFS
,
213 "Failed to get acl values in creat %d\n", err
);
216 err
= p9_client_create_dotl(ofid
, name
, flags
, mode
, gid
, &qid
);
218 P9_DPRINTK(P9_DEBUG_VFS
,
219 "p9_client_open_dotl failed in creat %d\n",
223 v9fs_invalidate_inode_attr(dir
);
225 /* instantiate inode and assign the unopened fid to the dentry */
226 fid
= p9_client_walk(dfid
, 1, &name
, 1);
229 P9_DPRINTK(P9_DEBUG_VFS
, "p9_client_walk failed %d\n", err
);
233 inode
= v9fs_get_inode_from_fid(v9ses
, fid
, dir
->i_sb
);
235 err
= PTR_ERR(inode
);
236 P9_DPRINTK(P9_DEBUG_VFS
, "inode creation failed %d\n", err
);
239 d_instantiate(dentry
, inode
);
240 err
= v9fs_fid_add(dentry
, fid
);
244 /* Now set the ACL based on the default value */
245 v9fs_set_create_acl(dentry
, dacl
, pacl
);
247 v9inode
= V9FS_I(inode
);
248 mutex_lock(&v9inode
->v_mutex
);
249 if (v9ses
->cache
&& !v9inode
->writeback_fid
&&
250 ((flags
& O_ACCMODE
) != O_RDONLY
)) {
252 * clone a fid and add it to writeback_fid
253 * we do it during open time instead of
254 * page dirty time via write_begin/page_mkwrite
255 * because we want write after unlink usecase
258 inode_fid
= v9fs_writeback_fid(dentry
);
259 if (IS_ERR(inode_fid
)) {
260 err
= PTR_ERR(inode_fid
);
261 mutex_unlock(&v9inode
->v_mutex
);
262 goto err_clunk_old_fid
;
264 v9inode
->writeback_fid
= (void *) inode_fid
;
266 mutex_unlock(&v9inode
->v_mutex
);
267 /* Since we are opening a file, assign the open fid to the file */
268 filp
= lookup_instantiate_filp(nd
, dentry
, generic_file_open
);
271 goto err_clunk_old_fid
;
273 filp
->private_data
= ofid
;
274 #ifdef CONFIG_9P_FSCACHE
276 v9fs_cache_inode_set_cookie(inode
, filp
);
282 p9_client_clunk(fid
);
285 p9_client_clunk(ofid
);
290 * v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory
291 * @dir: inode that is being unlinked
292 * @dentry: dentry that is being unlinked
293 * @mode: mode for new directory
297 static int v9fs_vfs_mkdir_dotl(struct inode
*dir
,
298 struct dentry
*dentry
, int omode
)
301 struct v9fs_session_info
*v9ses
;
302 struct p9_fid
*fid
= NULL
, *dfid
= NULL
;
308 struct dentry
*dir_dentry
;
309 struct posix_acl
*dacl
= NULL
, *pacl
= NULL
;
311 P9_DPRINTK(P9_DEBUG_VFS
, "name %s\n", dentry
->d_name
.name
);
313 v9ses
= v9fs_inode2v9ses(dir
);
316 if (dir
->i_mode
& S_ISGID
)
319 dir_dentry
= v9fs_dentry_from_dir_inode(dir
);
320 dfid
= v9fs_fid_lookup(dir_dentry
);
323 P9_DPRINTK(P9_DEBUG_VFS
, "fid lookup failed %d\n", err
);
328 gid
= v9fs_get_fsgid_for_create(dir
);
330 /* Update mode based on ACL value */
331 err
= v9fs_acl_mode(dir
, &mode
, &dacl
, &pacl
);
333 P9_DPRINTK(P9_DEBUG_VFS
,
334 "Failed to get acl values in mkdir %d\n", err
);
337 name
= (char *) dentry
->d_name
.name
;
338 err
= p9_client_mkdir_dotl(dfid
, name
, mode
, gid
, &qid
);
342 /* instantiate inode and assign the unopened fid to the dentry */
343 if (v9ses
->cache
== CACHE_LOOSE
|| v9ses
->cache
== CACHE_FSCACHE
) {
344 fid
= p9_client_walk(dfid
, 1, &name
, 1);
347 P9_DPRINTK(P9_DEBUG_VFS
, "p9_client_walk failed %d\n",
353 inode
= v9fs_get_inode_from_fid(v9ses
, fid
, dir
->i_sb
);
355 err
= PTR_ERR(inode
);
356 P9_DPRINTK(P9_DEBUG_VFS
, "inode creation failed %d\n",
360 d_instantiate(dentry
, inode
);
361 err
= v9fs_fid_add(dentry
, fid
);
367 * Not in cached mode. No need to populate
368 * inode with stat. We need to get an inode
369 * so that we can set the acl with dentry
371 inode
= v9fs_get_inode(dir
->i_sb
, mode
);
373 err
= PTR_ERR(inode
);
376 d_instantiate(dentry
, inode
);
378 /* Now set the ACL based on the default value */
379 v9fs_set_create_acl(dentry
, dacl
, pacl
);
381 v9fs_invalidate_inode_attr(dir
);
384 p9_client_clunk(fid
);
389 v9fs_vfs_getattr_dotl(struct vfsmount
*mnt
, struct dentry
*dentry
,
393 struct v9fs_session_info
*v9ses
;
395 struct p9_stat_dotl
*st
;
397 P9_DPRINTK(P9_DEBUG_VFS
, "dentry: %p\n", dentry
);
399 v9ses
= v9fs_dentry2v9ses(dentry
);
400 if (v9ses
->cache
== CACHE_LOOSE
|| v9ses
->cache
== CACHE_FSCACHE
) {
401 generic_fillattr(dentry
->d_inode
, stat
);
404 fid
= v9fs_fid_lookup(dentry
);
408 /* Ask for all the fields in stat structure. Server will return
409 * whatever it supports
412 st
= p9_client_getattr_dotl(fid
, P9_STATS_ALL
);
416 v9fs_stat2inode_dotl(st
, dentry
->d_inode
);
417 generic_fillattr(dentry
->d_inode
, stat
);
418 /* Change block size to what the server returned */
419 stat
->blksize
= st
->st_blksize
;
426 * v9fs_vfs_setattr_dotl - set file metadata
427 * @dentry: file whose metadata to set
428 * @iattr: metadata assignment structure
432 int v9fs_vfs_setattr_dotl(struct dentry
*dentry
, struct iattr
*iattr
)
435 struct v9fs_session_info
*v9ses
;
437 struct p9_iattr_dotl p9attr
;
439 P9_DPRINTK(P9_DEBUG_VFS
, "\n");
441 retval
= inode_change_ok(dentry
->d_inode
, iattr
);
445 p9attr
.valid
= iattr
->ia_valid
;
446 p9attr
.mode
= iattr
->ia_mode
;
447 p9attr
.uid
= iattr
->ia_uid
;
448 p9attr
.gid
= iattr
->ia_gid
;
449 p9attr
.size
= iattr
->ia_size
;
450 p9attr
.atime_sec
= iattr
->ia_atime
.tv_sec
;
451 p9attr
.atime_nsec
= iattr
->ia_atime
.tv_nsec
;
452 p9attr
.mtime_sec
= iattr
->ia_mtime
.tv_sec
;
453 p9attr
.mtime_nsec
= iattr
->ia_mtime
.tv_nsec
;
456 v9ses
= v9fs_dentry2v9ses(dentry
);
457 fid
= v9fs_fid_lookup(dentry
);
461 /* Write all dirty data */
462 if (S_ISREG(dentry
->d_inode
->i_mode
))
463 filemap_write_and_wait(dentry
->d_inode
->i_mapping
);
465 retval
= p9_client_setattr(fid
, &p9attr
);
469 if ((iattr
->ia_valid
& ATTR_SIZE
) &&
470 iattr
->ia_size
!= i_size_read(dentry
->d_inode
))
471 truncate_setsize(dentry
->d_inode
, iattr
->ia_size
);
473 v9fs_invalidate_inode_attr(dentry
->d_inode
);
474 setattr_copy(dentry
->d_inode
, iattr
);
475 mark_inode_dirty(dentry
->d_inode
);
476 if (iattr
->ia_valid
& ATTR_MODE
) {
477 /* We also want to update ACL when we update mode bits */
478 retval
= v9fs_acl_chmod(dentry
);
486 * v9fs_stat2inode_dotl - populate an inode structure with stat info
487 * @stat: stat structure
488 * @inode: inode to populate
489 * @sb: superblock of filesystem
494 v9fs_stat2inode_dotl(struct p9_stat_dotl
*stat
, struct inode
*inode
)
496 struct v9fs_inode
*v9inode
= V9FS_I(inode
);
498 if ((stat
->st_result_mask
& P9_STATS_BASIC
) == P9_STATS_BASIC
) {
499 inode
->i_atime
.tv_sec
= stat
->st_atime_sec
;
500 inode
->i_atime
.tv_nsec
= stat
->st_atime_nsec
;
501 inode
->i_mtime
.tv_sec
= stat
->st_mtime_sec
;
502 inode
->i_mtime
.tv_nsec
= stat
->st_mtime_nsec
;
503 inode
->i_ctime
.tv_sec
= stat
->st_ctime_sec
;
504 inode
->i_ctime
.tv_nsec
= stat
->st_ctime_nsec
;
505 inode
->i_uid
= stat
->st_uid
;
506 inode
->i_gid
= stat
->st_gid
;
507 inode
->i_nlink
= stat
->st_nlink
;
508 inode
->i_mode
= stat
->st_mode
;
509 inode
->i_rdev
= new_decode_dev(stat
->st_rdev
);
511 if ((S_ISBLK(inode
->i_mode
)) || (S_ISCHR(inode
->i_mode
)))
512 init_special_inode(inode
, inode
->i_mode
, inode
->i_rdev
);
514 i_size_write(inode
, stat
->st_size
);
515 inode
->i_blocks
= stat
->st_blocks
;
517 if (stat
->st_result_mask
& P9_STATS_ATIME
) {
518 inode
->i_atime
.tv_sec
= stat
->st_atime_sec
;
519 inode
->i_atime
.tv_nsec
= stat
->st_atime_nsec
;
521 if (stat
->st_result_mask
& P9_STATS_MTIME
) {
522 inode
->i_mtime
.tv_sec
= stat
->st_mtime_sec
;
523 inode
->i_mtime
.tv_nsec
= stat
->st_mtime_nsec
;
525 if (stat
->st_result_mask
& P9_STATS_CTIME
) {
526 inode
->i_ctime
.tv_sec
= stat
->st_ctime_sec
;
527 inode
->i_ctime
.tv_nsec
= stat
->st_ctime_nsec
;
529 if (stat
->st_result_mask
& P9_STATS_UID
)
530 inode
->i_uid
= stat
->st_uid
;
531 if (stat
->st_result_mask
& P9_STATS_GID
)
532 inode
->i_gid
= stat
->st_gid
;
533 if (stat
->st_result_mask
& P9_STATS_NLINK
)
534 inode
->i_nlink
= stat
->st_nlink
;
535 if (stat
->st_result_mask
& P9_STATS_MODE
) {
536 inode
->i_mode
= stat
->st_mode
;
537 if ((S_ISBLK(inode
->i_mode
)) ||
538 (S_ISCHR(inode
->i_mode
)))
539 init_special_inode(inode
, inode
->i_mode
,
542 if (stat
->st_result_mask
& P9_STATS_RDEV
)
543 inode
->i_rdev
= new_decode_dev(stat
->st_rdev
);
544 if (stat
->st_result_mask
& P9_STATS_SIZE
)
545 i_size_write(inode
, stat
->st_size
);
546 if (stat
->st_result_mask
& P9_STATS_BLOCKS
)
547 inode
->i_blocks
= stat
->st_blocks
;
549 if (stat
->st_result_mask
& P9_STATS_GEN
)
550 inode
->i_generation
= stat
->st_gen
;
552 /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION
553 * because the inode structure does not have fields for them.
555 v9inode
->cache_validity
&= ~V9FS_INO_INVALID_ATTR
;
559 v9fs_vfs_symlink_dotl(struct inode
*dir
, struct dentry
*dentry
,
568 struct p9_fid
*fid
= NULL
;
569 struct v9fs_session_info
*v9ses
;
571 name
= (char *) dentry
->d_name
.name
;
572 P9_DPRINTK(P9_DEBUG_VFS
, "v9fs_vfs_symlink_dotl : %lu,%s,%s\n",
573 dir
->i_ino
, name
, symname
);
574 v9ses
= v9fs_inode2v9ses(dir
);
576 dfid
= v9fs_fid_lookup(dentry
->d_parent
);
579 P9_DPRINTK(P9_DEBUG_VFS
, "fid lookup failed %d\n", err
);
583 gid
= v9fs_get_fsgid_for_create(dir
);
585 /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */
586 err
= p9_client_symlink(dfid
, name
, (char *)symname
, gid
, &qid
);
589 P9_DPRINTK(P9_DEBUG_VFS
, "p9_client_symlink failed %d\n", err
);
593 v9fs_invalidate_inode_attr(dir
);
595 /* Now walk from the parent so we can get an unopened fid. */
596 fid
= p9_client_walk(dfid
, 1, &name
, 1);
599 P9_DPRINTK(P9_DEBUG_VFS
, "p9_client_walk failed %d\n",
605 /* instantiate inode and assign the unopened fid to dentry */
606 inode
= v9fs_get_inode_from_fid(v9ses
, fid
, dir
->i_sb
);
608 err
= PTR_ERR(inode
);
609 P9_DPRINTK(P9_DEBUG_VFS
, "inode creation failed %d\n",
613 d_instantiate(dentry
, inode
);
614 err
= v9fs_fid_add(dentry
, fid
);
619 /* Not in cached mode. No need to populate inode with stat */
620 inode
= v9fs_get_inode(dir
->i_sb
, S_IFLNK
);
622 err
= PTR_ERR(inode
);
625 d_instantiate(dentry
, inode
);
630 p9_client_clunk(fid
);
636 * v9fs_vfs_link_dotl - create a hardlink for dotl
637 * @old_dentry: dentry for file to link to
638 * @dir: inode destination for new link
639 * @dentry: dentry for link
644 v9fs_vfs_link_dotl(struct dentry
*old_dentry
, struct inode
*dir
,
645 struct dentry
*dentry
)
649 struct dentry
*dir_dentry
;
650 struct p9_fid
*dfid
, *oldfid
;
651 struct v9fs_session_info
*v9ses
;
653 P9_DPRINTK(P9_DEBUG_VFS
, "dir ino: %lu, old_name: %s, new_name: %s\n",
654 dir
->i_ino
, old_dentry
->d_name
.name
,
655 dentry
->d_name
.name
);
657 v9ses
= v9fs_inode2v9ses(dir
);
658 dir_dentry
= v9fs_dentry_from_dir_inode(dir
);
659 dfid
= v9fs_fid_lookup(dir_dentry
);
661 return PTR_ERR(dfid
);
663 oldfid
= v9fs_fid_lookup(old_dentry
);
665 return PTR_ERR(oldfid
);
667 name
= (char *) dentry
->d_name
.name
;
669 err
= p9_client_link(dfid
, oldfid
, (char *)dentry
->d_name
.name
);
672 P9_DPRINTK(P9_DEBUG_VFS
, "p9_client_link failed %d\n", err
);
676 v9fs_invalidate_inode_attr(dir
);
677 if (v9ses
->cache
== CACHE_LOOSE
|| v9ses
->cache
== CACHE_FSCACHE
) {
678 /* Get the latest stat info from server. */
680 fid
= v9fs_fid_lookup(old_dentry
);
684 v9fs_refresh_inode_dotl(fid
, old_dentry
->d_inode
);
686 ihold(old_dentry
->d_inode
);
687 d_instantiate(dentry
, old_dentry
->d_inode
);
693 * v9fs_vfs_mknod_dotl - create a special file
694 * @dir: inode destination for new link
695 * @dentry: dentry for file
696 * @mode: mode for creation
697 * @rdev: device associated with special file
701 v9fs_vfs_mknod_dotl(struct inode
*dir
, struct dentry
*dentry
, int omode
,
708 struct v9fs_session_info
*v9ses
;
709 struct p9_fid
*fid
= NULL
, *dfid
= NULL
;
712 struct dentry
*dir_dentry
;
713 struct posix_acl
*dacl
= NULL
, *pacl
= NULL
;
715 P9_DPRINTK(P9_DEBUG_VFS
,
716 " %lu,%s mode: %x MAJOR: %u MINOR: %u\n", dir
->i_ino
,
717 dentry
->d_name
.name
, omode
, MAJOR(rdev
), MINOR(rdev
));
719 if (!new_valid_dev(rdev
))
722 v9ses
= v9fs_inode2v9ses(dir
);
723 dir_dentry
= v9fs_dentry_from_dir_inode(dir
);
724 dfid
= v9fs_fid_lookup(dir_dentry
);
727 P9_DPRINTK(P9_DEBUG_VFS
, "fid lookup failed %d\n", err
);
732 gid
= v9fs_get_fsgid_for_create(dir
);
734 /* Update mode based on ACL value */
735 err
= v9fs_acl_mode(dir
, &mode
, &dacl
, &pacl
);
737 P9_DPRINTK(P9_DEBUG_VFS
,
738 "Failed to get acl values in mknod %d\n", err
);
741 name
= (char *) dentry
->d_name
.name
;
743 err
= p9_client_mknod_dotl(dfid
, name
, mode
, rdev
, gid
, &qid
);
747 v9fs_invalidate_inode_attr(dir
);
748 /* instantiate inode and assign the unopened fid to the dentry */
749 if (v9ses
->cache
== CACHE_LOOSE
|| v9ses
->cache
== CACHE_FSCACHE
) {
750 fid
= p9_client_walk(dfid
, 1, &name
, 1);
753 P9_DPRINTK(P9_DEBUG_VFS
, "p9_client_walk failed %d\n",
759 inode
= v9fs_get_inode_from_fid(v9ses
, fid
, dir
->i_sb
);
761 err
= PTR_ERR(inode
);
762 P9_DPRINTK(P9_DEBUG_VFS
, "inode creation failed %d\n",
766 d_instantiate(dentry
, inode
);
767 err
= v9fs_fid_add(dentry
, fid
);
773 * Not in cached mode. No need to populate inode with stat.
774 * socket syscall returns a fd, so we need instantiate
776 inode
= v9fs_get_inode(dir
->i_sb
, mode
);
778 err
= PTR_ERR(inode
);
781 d_instantiate(dentry
, inode
);
783 /* Now set the ACL based on the default value */
784 v9fs_set_create_acl(dentry
, dacl
, pacl
);
787 p9_client_clunk(fid
);
792 * v9fs_vfs_follow_link_dotl - follow a symlink path
793 * @dentry: dentry for symlink
799 v9fs_vfs_follow_link_dotl(struct dentry
*dentry
, struct nameidata
*nd
)
803 char *link
= __getname();
806 P9_DPRINTK(P9_DEBUG_VFS
, "%s\n", dentry
->d_name
.name
);
809 link
= ERR_PTR(-ENOMEM
);
812 fid
= v9fs_fid_lookup(dentry
);
815 link
= ERR_CAST(fid
);
818 retval
= p9_client_readlink(fid
, &target
);
820 strcpy(link
, target
);
825 link
= ERR_PTR(retval
);
827 nd_set_link(nd
, link
);
831 int v9fs_refresh_inode_dotl(struct p9_fid
*fid
, struct inode
*inode
)
834 struct p9_stat_dotl
*st
;
835 struct v9fs_session_info
*v9ses
;
837 v9ses
= v9fs_inode2v9ses(inode
);
838 st
= p9_client_getattr_dotl(fid
, P9_STATS_ALL
);
842 spin_lock(&inode
->i_lock
);
844 * We don't want to refresh inode->i_size,
845 * because we may have cached data
847 i_size
= inode
->i_size
;
848 v9fs_stat2inode_dotl(st
, inode
);
850 inode
->i_size
= i_size
;
851 spin_unlock(&inode
->i_lock
);
856 const struct inode_operations v9fs_dir_inode_operations_dotl
= {
857 .create
= v9fs_vfs_create_dotl
,
858 .lookup
= v9fs_vfs_lookup
,
859 .link
= v9fs_vfs_link_dotl
,
860 .symlink
= v9fs_vfs_symlink_dotl
,
861 .unlink
= v9fs_vfs_unlink
,
862 .mkdir
= v9fs_vfs_mkdir_dotl
,
863 .rmdir
= v9fs_vfs_rmdir
,
864 .mknod
= v9fs_vfs_mknod_dotl
,
865 .rename
= v9fs_vfs_rename
,
866 .getattr
= v9fs_vfs_getattr_dotl
,
867 .setattr
= v9fs_vfs_setattr_dotl
,
868 .setxattr
= generic_setxattr
,
869 .getxattr
= generic_getxattr
,
870 .removexattr
= generic_removexattr
,
871 .listxattr
= v9fs_listxattr
,
872 .check_acl
= v9fs_check_acl
,
875 const struct inode_operations v9fs_file_inode_operations_dotl
= {
876 .getattr
= v9fs_vfs_getattr_dotl
,
877 .setattr
= v9fs_vfs_setattr_dotl
,
878 .setxattr
= generic_setxattr
,
879 .getxattr
= generic_getxattr
,
880 .removexattr
= generic_removexattr
,
881 .listxattr
= v9fs_listxattr
,
882 .check_acl
= v9fs_check_acl
,
885 const struct inode_operations v9fs_symlink_inode_operations_dotl
= {
886 .readlink
= generic_readlink
,
887 .follow_link
= v9fs_vfs_follow_link_dotl
,
888 .put_link
= v9fs_vfs_put_link
,
889 .getattr
= v9fs_vfs_getattr_dotl
,
890 .setattr
= v9fs_vfs_setattr_dotl
,
891 .setxattr
= generic_setxattr
,
892 .getxattr
= generic_getxattr
,
893 .removexattr
= generic_removexattr
,
894 .listxattr
= v9fs_listxattr
,