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 #ifdef CONFIG_9P_FSCACHE
145 v9fs_cache_inode_get_cookie(inode
);
147 retval
= v9fs_get_acl(inode
, fid
);
151 unlock_new_inode(inode
);
154 unlock_new_inode(inode
);
156 return ERR_PTR(retval
);
161 v9fs_inode_from_fid_dotl(struct v9fs_session_info
*v9ses
, struct p9_fid
*fid
,
162 struct super_block
*sb
, int new)
164 struct p9_stat_dotl
*st
;
165 struct inode
*inode
= NULL
;
167 st
= p9_client_getattr_dotl(fid
, P9_STATS_BASIC
| P9_STATS_GEN
);
171 inode
= v9fs_qid_iget_dotl(sb
, &st
->qid
, fid
, st
, new);
176 struct dotl_openflag_map
{
181 static int v9fs_mapped_dotl_flags(int flags
)
185 struct dotl_openflag_map dotl_oflag_map
[] = {
186 { O_CREAT
, P9_DOTL_CREATE
},
187 { O_EXCL
, P9_DOTL_EXCL
},
188 { O_NOCTTY
, P9_DOTL_NOCTTY
},
189 { O_APPEND
, P9_DOTL_APPEND
},
190 { O_NONBLOCK
, P9_DOTL_NONBLOCK
},
191 { O_DSYNC
, P9_DOTL_DSYNC
},
192 { FASYNC
, P9_DOTL_FASYNC
},
193 { O_DIRECT
, P9_DOTL_DIRECT
},
194 { O_LARGEFILE
, P9_DOTL_LARGEFILE
},
195 { O_DIRECTORY
, P9_DOTL_DIRECTORY
},
196 { O_NOFOLLOW
, P9_DOTL_NOFOLLOW
},
197 { O_NOATIME
, P9_DOTL_NOATIME
},
198 { O_CLOEXEC
, P9_DOTL_CLOEXEC
},
199 { O_SYNC
, P9_DOTL_SYNC
},
201 for (i
= 0; i
< ARRAY_SIZE(dotl_oflag_map
); i
++) {
202 if (flags
& dotl_oflag_map
[i
].open_flag
)
203 rflags
|= dotl_oflag_map
[i
].dotl_flag
;
209 * v9fs_open_to_dotl_flags- convert Linux specific open flags to
211 * @flags: flags to convert
213 int v9fs_open_to_dotl_flags(int flags
)
218 * We have same bits for P9_DOTL_READONLY, P9_DOTL_WRONLY
219 * and P9_DOTL_NOACCESS
221 rflags
|= flags
& O_ACCMODE
;
222 rflags
|= v9fs_mapped_dotl_flags(flags
);
228 * v9fs_vfs_create_dotl - VFS hook to create files for 9P2000.L protocol.
229 * @dir: directory inode that is being created
230 * @dentry: dentry that is being deleted
231 * @mode: create permissions
236 v9fs_vfs_create_dotl(struct inode
*dir
, struct dentry
*dentry
, umode_t omode
,
239 return v9fs_vfs_mknod_dotl(dir
, dentry
, omode
, 0);
243 v9fs_vfs_atomic_open_dotl(struct inode
*dir
, struct dentry
*dentry
,
244 struct file
*file
, unsigned flags
, umode_t omode
,
253 struct p9_fid
*fid
= NULL
;
254 struct v9fs_inode
*v9inode
;
255 struct p9_fid
*dfid
, *ofid
, *inode_fid
;
256 struct v9fs_session_info
*v9ses
;
257 struct posix_acl
*pacl
= NULL
, *dacl
= NULL
;
258 struct dentry
*res
= NULL
;
260 if (d_unhashed(dentry
)) {
261 res
= v9fs_vfs_lookup(dir
, dentry
, 0);
270 if (!(flags
& O_CREAT
) || dentry
->d_inode
)
271 return finish_no_open(file
, res
);
273 v9ses
= v9fs_inode2v9ses(dir
);
275 name
= (char *) dentry
->d_name
.name
;
276 p9_debug(P9_DEBUG_VFS
, "name:%s flags:0x%x mode:0x%hx\n",
279 dfid
= v9fs_fid_lookup(dentry
->d_parent
);
282 p9_debug(P9_DEBUG_VFS
, "fid lookup failed %d\n", err
);
286 /* clone a fid to use for creation */
287 ofid
= p9_client_walk(dfid
, 0, NULL
, 1);
290 p9_debug(P9_DEBUG_VFS
, "p9_client_walk failed %d\n", err
);
294 gid
= v9fs_get_fsgid_for_create(dir
);
297 /* Update mode based on ACL value */
298 err
= v9fs_acl_mode(dir
, &mode
, &dacl
, &pacl
);
300 p9_debug(P9_DEBUG_VFS
, "Failed to get acl values in creat %d\n",
304 err
= p9_client_create_dotl(ofid
, name
, v9fs_open_to_dotl_flags(flags
),
307 p9_debug(P9_DEBUG_VFS
, "p9_client_open_dotl failed in creat %d\n",
311 v9fs_invalidate_inode_attr(dir
);
313 /* instantiate inode and assign the unopened fid to the dentry */
314 fid
= p9_client_walk(dfid
, 1, &name
, 1);
317 p9_debug(P9_DEBUG_VFS
, "p9_client_walk failed %d\n", err
);
321 inode
= v9fs_get_new_inode_from_fid(v9ses
, fid
, dir
->i_sb
);
323 err
= PTR_ERR(inode
);
324 p9_debug(P9_DEBUG_VFS
, "inode creation failed %d\n", err
);
327 /* Now set the ACL based on the default value */
328 v9fs_set_create_acl(inode
, fid
, dacl
, pacl
);
330 v9fs_fid_add(dentry
, fid
);
331 d_instantiate(dentry
, inode
);
333 v9inode
= V9FS_I(inode
);
334 mutex_lock(&v9inode
->v_mutex
);
335 if (v9ses
->cache
&& !v9inode
->writeback_fid
&&
336 ((flags
& O_ACCMODE
) != O_RDONLY
)) {
338 * clone a fid and add it to writeback_fid
339 * we do it during open time instead of
340 * page dirty time via write_begin/page_mkwrite
341 * because we want write after unlink usecase
344 inode_fid
= v9fs_writeback_fid(dentry
);
345 if (IS_ERR(inode_fid
)) {
346 err
= PTR_ERR(inode_fid
);
347 mutex_unlock(&v9inode
->v_mutex
);
348 goto err_clunk_old_fid
;
350 v9inode
->writeback_fid
= (void *) inode_fid
;
352 mutex_unlock(&v9inode
->v_mutex
);
353 /* Since we are opening a file, assign the open fid to the file */
354 err
= finish_open(file
, dentry
, generic_file_open
, opened
);
356 goto err_clunk_old_fid
;
357 file
->private_data
= ofid
;
358 #ifdef CONFIG_9P_FSCACHE
360 v9fs_cache_inode_set_cookie(inode
, file
);
362 *opened
|= FILE_CREATED
;
364 v9fs_put_acl(dacl
, pacl
);
370 p9_client_clunk(fid
);
373 p9_client_clunk(ofid
);
378 * v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory
379 * @dir: inode that is being unlinked
380 * @dentry: dentry that is being unlinked
381 * @mode: mode for new directory
385 static int v9fs_vfs_mkdir_dotl(struct inode
*dir
,
386 struct dentry
*dentry
, umode_t omode
)
389 struct v9fs_session_info
*v9ses
;
390 struct p9_fid
*fid
= NULL
, *dfid
= NULL
;
396 struct dentry
*dir_dentry
;
397 struct posix_acl
*dacl
= NULL
, *pacl
= NULL
;
399 p9_debug(P9_DEBUG_VFS
, "name %s\n", dentry
->d_name
.name
);
401 v9ses
= v9fs_inode2v9ses(dir
);
404 if (dir
->i_mode
& S_ISGID
)
407 dir_dentry
= dentry
->d_parent
;
408 dfid
= v9fs_fid_lookup(dir_dentry
);
411 p9_debug(P9_DEBUG_VFS
, "fid lookup failed %d\n", err
);
416 gid
= v9fs_get_fsgid_for_create(dir
);
418 /* Update mode based on ACL value */
419 err
= v9fs_acl_mode(dir
, &mode
, &dacl
, &pacl
);
421 p9_debug(P9_DEBUG_VFS
, "Failed to get acl values in mkdir %d\n",
425 name
= (char *) dentry
->d_name
.name
;
426 err
= p9_client_mkdir_dotl(dfid
, name
, mode
, gid
, &qid
);
430 fid
= p9_client_walk(dfid
, 1, &name
, 1);
433 p9_debug(P9_DEBUG_VFS
, "p9_client_walk failed %d\n",
439 /* instantiate inode and assign the unopened fid to the dentry */
440 if (v9ses
->cache
== CACHE_LOOSE
|| v9ses
->cache
== CACHE_FSCACHE
) {
441 inode
= v9fs_get_new_inode_from_fid(v9ses
, fid
, dir
->i_sb
);
443 err
= PTR_ERR(inode
);
444 p9_debug(P9_DEBUG_VFS
, "inode creation failed %d\n",
448 v9fs_fid_add(dentry
, fid
);
449 v9fs_set_create_acl(inode
, fid
, dacl
, pacl
);
450 d_instantiate(dentry
, inode
);
455 * Not in cached mode. No need to populate
456 * inode with stat. We need to get an inode
457 * so that we can set the acl with dentry
459 inode
= v9fs_get_inode(dir
->i_sb
, mode
, 0);
461 err
= PTR_ERR(inode
);
464 v9fs_set_create_acl(inode
, fid
, dacl
, pacl
);
465 d_instantiate(dentry
, inode
);
468 v9fs_invalidate_inode_attr(dir
);
471 p9_client_clunk(fid
);
472 v9fs_put_acl(dacl
, pacl
);
477 v9fs_vfs_getattr_dotl(struct vfsmount
*mnt
, struct dentry
*dentry
,
481 struct v9fs_session_info
*v9ses
;
483 struct p9_stat_dotl
*st
;
485 p9_debug(P9_DEBUG_VFS
, "dentry: %p\n", dentry
);
487 v9ses
= v9fs_dentry2v9ses(dentry
);
488 if (v9ses
->cache
== CACHE_LOOSE
|| v9ses
->cache
== CACHE_FSCACHE
) {
489 generic_fillattr(dentry
->d_inode
, stat
);
492 fid
= v9fs_fid_lookup(dentry
);
496 /* Ask for all the fields in stat structure. Server will return
497 * whatever it supports
500 st
= p9_client_getattr_dotl(fid
, P9_STATS_ALL
);
504 v9fs_stat2inode_dotl(st
, dentry
->d_inode
);
505 generic_fillattr(dentry
->d_inode
, stat
);
506 /* Change block size to what the server returned */
507 stat
->blksize
= st
->st_blksize
;
516 #define P9_ATTR_MODE (1 << 0)
517 #define P9_ATTR_UID (1 << 1)
518 #define P9_ATTR_GID (1 << 2)
519 #define P9_ATTR_SIZE (1 << 3)
520 #define P9_ATTR_ATIME (1 << 4)
521 #define P9_ATTR_MTIME (1 << 5)
522 #define P9_ATTR_CTIME (1 << 6)
523 #define P9_ATTR_ATIME_SET (1 << 7)
524 #define P9_ATTR_MTIME_SET (1 << 8)
526 struct dotl_iattr_map
{
531 static int v9fs_mapped_iattr_valid(int iattr_valid
)
534 int p9_iattr_valid
= 0;
535 struct dotl_iattr_map dotl_iattr_map
[] = {
536 { ATTR_MODE
, P9_ATTR_MODE
},
537 { ATTR_UID
, P9_ATTR_UID
},
538 { ATTR_GID
, P9_ATTR_GID
},
539 { ATTR_SIZE
, P9_ATTR_SIZE
},
540 { ATTR_ATIME
, P9_ATTR_ATIME
},
541 { ATTR_MTIME
, P9_ATTR_MTIME
},
542 { ATTR_CTIME
, P9_ATTR_CTIME
},
543 { ATTR_ATIME_SET
, P9_ATTR_ATIME_SET
},
544 { ATTR_MTIME_SET
, P9_ATTR_MTIME_SET
},
546 for (i
= 0; i
< ARRAY_SIZE(dotl_iattr_map
); i
++) {
547 if (iattr_valid
& dotl_iattr_map
[i
].iattr_valid
)
548 p9_iattr_valid
|= dotl_iattr_map
[i
].p9_iattr_valid
;
550 return p9_iattr_valid
;
554 * v9fs_vfs_setattr_dotl - set file metadata
555 * @dentry: file whose metadata to set
556 * @iattr: metadata assignment structure
560 int v9fs_vfs_setattr_dotl(struct dentry
*dentry
, struct iattr
*iattr
)
563 struct v9fs_session_info
*v9ses
;
565 struct p9_iattr_dotl p9attr
;
566 struct inode
*inode
= dentry
->d_inode
;
568 p9_debug(P9_DEBUG_VFS
, "\n");
570 retval
= inode_change_ok(inode
, iattr
);
574 p9attr
.valid
= v9fs_mapped_iattr_valid(iattr
->ia_valid
);
575 p9attr
.mode
= iattr
->ia_mode
;
576 p9attr
.uid
= iattr
->ia_uid
;
577 p9attr
.gid
= iattr
->ia_gid
;
578 p9attr
.size
= iattr
->ia_size
;
579 p9attr
.atime_sec
= iattr
->ia_atime
.tv_sec
;
580 p9attr
.atime_nsec
= iattr
->ia_atime
.tv_nsec
;
581 p9attr
.mtime_sec
= iattr
->ia_mtime
.tv_sec
;
582 p9attr
.mtime_nsec
= iattr
->ia_mtime
.tv_nsec
;
585 v9ses
= v9fs_dentry2v9ses(dentry
);
586 fid
= v9fs_fid_lookup(dentry
);
590 /* Write all dirty data */
591 if (S_ISREG(inode
->i_mode
))
592 filemap_write_and_wait(inode
->i_mapping
);
594 retval
= p9_client_setattr(fid
, &p9attr
);
598 if ((iattr
->ia_valid
& ATTR_SIZE
) &&
599 iattr
->ia_size
!= i_size_read(inode
))
600 truncate_setsize(inode
, iattr
->ia_size
);
602 v9fs_invalidate_inode_attr(inode
);
603 setattr_copy(inode
, iattr
);
604 mark_inode_dirty(inode
);
605 if (iattr
->ia_valid
& ATTR_MODE
) {
606 /* We also want to update ACL when we update mode bits */
607 retval
= v9fs_acl_chmod(inode
, fid
);
615 * v9fs_stat2inode_dotl - populate an inode structure with stat info
616 * @stat: stat structure
617 * @inode: inode to populate
618 * @sb: superblock of filesystem
623 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 i_size_write(inode
, stat
->st_size
);
644 inode
->i_blocks
= stat
->st_blocks
;
646 if (stat
->st_result_mask
& P9_STATS_ATIME
) {
647 inode
->i_atime
.tv_sec
= stat
->st_atime_sec
;
648 inode
->i_atime
.tv_nsec
= stat
->st_atime_nsec
;
650 if (stat
->st_result_mask
& P9_STATS_MTIME
) {
651 inode
->i_mtime
.tv_sec
= stat
->st_mtime_sec
;
652 inode
->i_mtime
.tv_nsec
= stat
->st_mtime_nsec
;
654 if (stat
->st_result_mask
& P9_STATS_CTIME
) {
655 inode
->i_ctime
.tv_sec
= stat
->st_ctime_sec
;
656 inode
->i_ctime
.tv_nsec
= stat
->st_ctime_nsec
;
658 if (stat
->st_result_mask
& P9_STATS_UID
)
659 inode
->i_uid
= stat
->st_uid
;
660 if (stat
->st_result_mask
& P9_STATS_GID
)
661 inode
->i_gid
= stat
->st_gid
;
662 if (stat
->st_result_mask
& P9_STATS_NLINK
)
663 set_nlink(inode
, stat
->st_nlink
);
664 if (stat
->st_result_mask
& P9_STATS_MODE
) {
665 inode
->i_mode
= stat
->st_mode
;
666 if ((S_ISBLK(inode
->i_mode
)) ||
667 (S_ISCHR(inode
->i_mode
)))
668 init_special_inode(inode
, inode
->i_mode
,
671 if (stat
->st_result_mask
& P9_STATS_RDEV
)
672 inode
->i_rdev
= new_decode_dev(stat
->st_rdev
);
673 if (stat
->st_result_mask
& P9_STATS_SIZE
)
674 i_size_write(inode
, stat
->st_size
);
675 if (stat
->st_result_mask
& P9_STATS_BLOCKS
)
676 inode
->i_blocks
= stat
->st_blocks
;
678 if (stat
->st_result_mask
& P9_STATS_GEN
)
679 inode
->i_generation
= stat
->st_gen
;
681 /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION
682 * because the inode structure does not have fields for them.
684 v9inode
->cache_validity
&= ~V9FS_INO_INVALID_ATTR
;
688 v9fs_vfs_symlink_dotl(struct inode
*dir
, struct dentry
*dentry
,
697 struct p9_fid
*fid
= NULL
;
698 struct v9fs_session_info
*v9ses
;
700 name
= (char *) dentry
->d_name
.name
;
701 p9_debug(P9_DEBUG_VFS
, "%lu,%s,%s\n", dir
->i_ino
, name
, symname
);
702 v9ses
= v9fs_inode2v9ses(dir
);
704 dfid
= v9fs_fid_lookup(dentry
->d_parent
);
707 p9_debug(P9_DEBUG_VFS
, "fid lookup failed %d\n", err
);
711 gid
= v9fs_get_fsgid_for_create(dir
);
713 /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */
714 err
= p9_client_symlink(dfid
, name
, (char *)symname
, gid
, &qid
);
717 p9_debug(P9_DEBUG_VFS
, "p9_client_symlink failed %d\n", err
);
721 v9fs_invalidate_inode_attr(dir
);
723 /* Now walk from the parent so we can get an unopened fid. */
724 fid
= p9_client_walk(dfid
, 1, &name
, 1);
727 p9_debug(P9_DEBUG_VFS
, "p9_client_walk failed %d\n",
733 /* instantiate inode and assign the unopened fid to dentry */
734 inode
= v9fs_get_new_inode_from_fid(v9ses
, fid
, dir
->i_sb
);
736 err
= PTR_ERR(inode
);
737 p9_debug(P9_DEBUG_VFS
, "inode creation failed %d\n",
741 v9fs_fid_add(dentry
, fid
);
742 d_instantiate(dentry
, inode
);
746 /* Not in cached mode. No need to populate inode with stat */
747 inode
= v9fs_get_inode(dir
->i_sb
, S_IFLNK
, 0);
749 err
= PTR_ERR(inode
);
752 d_instantiate(dentry
, inode
);
757 p9_client_clunk(fid
);
763 * v9fs_vfs_link_dotl - create a hardlink for dotl
764 * @old_dentry: dentry for file to link to
765 * @dir: inode destination for new link
766 * @dentry: dentry for link
771 v9fs_vfs_link_dotl(struct dentry
*old_dentry
, struct inode
*dir
,
772 struct dentry
*dentry
)
776 struct dentry
*dir_dentry
;
777 struct p9_fid
*dfid
, *oldfid
;
778 struct v9fs_session_info
*v9ses
;
780 p9_debug(P9_DEBUG_VFS
, "dir ino: %lu, old_name: %s, new_name: %s\n",
781 dir
->i_ino
, old_dentry
->d_name
.name
, dentry
->d_name
.name
);
783 v9ses
= v9fs_inode2v9ses(dir
);
784 dir_dentry
= dentry
->d_parent
;
785 dfid
= v9fs_fid_lookup(dir_dentry
);
787 return PTR_ERR(dfid
);
789 oldfid
= v9fs_fid_lookup(old_dentry
);
791 return PTR_ERR(oldfid
);
793 name
= (char *) dentry
->d_name
.name
;
795 err
= p9_client_link(dfid
, oldfid
, (char *)dentry
->d_name
.name
);
798 p9_debug(P9_DEBUG_VFS
, "p9_client_link failed %d\n", err
);
802 v9fs_invalidate_inode_attr(dir
);
803 if (v9ses
->cache
== CACHE_LOOSE
|| v9ses
->cache
== CACHE_FSCACHE
) {
804 /* Get the latest stat info from server. */
806 fid
= v9fs_fid_lookup(old_dentry
);
810 v9fs_refresh_inode_dotl(fid
, old_dentry
->d_inode
);
812 ihold(old_dentry
->d_inode
);
813 d_instantiate(dentry
, old_dentry
->d_inode
);
819 * v9fs_vfs_mknod_dotl - create a special file
820 * @dir: inode destination for new link
821 * @dentry: dentry for file
822 * @mode: mode for creation
823 * @rdev: device associated with special file
827 v9fs_vfs_mknod_dotl(struct inode
*dir
, struct dentry
*dentry
, umode_t omode
,
834 struct v9fs_session_info
*v9ses
;
835 struct p9_fid
*fid
= NULL
, *dfid
= NULL
;
838 struct dentry
*dir_dentry
;
839 struct posix_acl
*dacl
= NULL
, *pacl
= NULL
;
841 p9_debug(P9_DEBUG_VFS
, " %lu,%s mode: %hx MAJOR: %u MINOR: %u\n",
842 dir
->i_ino
, dentry
->d_name
.name
, omode
,
843 MAJOR(rdev
), MINOR(rdev
));
845 if (!new_valid_dev(rdev
))
848 v9ses
= v9fs_inode2v9ses(dir
);
849 dir_dentry
= dentry
->d_parent
;
850 dfid
= v9fs_fid_lookup(dir_dentry
);
853 p9_debug(P9_DEBUG_VFS
, "fid lookup failed %d\n", err
);
858 gid
= v9fs_get_fsgid_for_create(dir
);
860 /* Update mode based on ACL value */
861 err
= v9fs_acl_mode(dir
, &mode
, &dacl
, &pacl
);
863 p9_debug(P9_DEBUG_VFS
, "Failed to get acl values in mknod %d\n",
867 name
= (char *) dentry
->d_name
.name
;
869 err
= p9_client_mknod_dotl(dfid
, name
, mode
, rdev
, gid
, &qid
);
873 v9fs_invalidate_inode_attr(dir
);
874 fid
= p9_client_walk(dfid
, 1, &name
, 1);
877 p9_debug(P9_DEBUG_VFS
, "p9_client_walk failed %d\n",
883 /* instantiate inode and assign the unopened fid to the dentry */
884 if (v9ses
->cache
== CACHE_LOOSE
|| v9ses
->cache
== CACHE_FSCACHE
) {
885 inode
= v9fs_get_new_inode_from_fid(v9ses
, fid
, dir
->i_sb
);
887 err
= PTR_ERR(inode
);
888 p9_debug(P9_DEBUG_VFS
, "inode creation failed %d\n",
892 v9fs_set_create_acl(inode
, fid
, dacl
, pacl
);
893 v9fs_fid_add(dentry
, fid
);
894 d_instantiate(dentry
, inode
);
899 * Not in cached mode. No need to populate inode with stat.
900 * socket syscall returns a fd, so we need instantiate
902 inode
= v9fs_get_inode(dir
->i_sb
, mode
, rdev
);
904 err
= PTR_ERR(inode
);
907 v9fs_set_create_acl(inode
, fid
, dacl
, pacl
);
908 d_instantiate(dentry
, inode
);
912 p9_client_clunk(fid
);
913 v9fs_put_acl(dacl
, pacl
);
918 * v9fs_vfs_follow_link_dotl - follow a symlink path
919 * @dentry: dentry for symlink
925 v9fs_vfs_follow_link_dotl(struct dentry
*dentry
, struct nameidata
*nd
)
929 char *link
= __getname();
932 p9_debug(P9_DEBUG_VFS
, "%s\n", dentry
->d_name
.name
);
935 link
= ERR_PTR(-ENOMEM
);
938 fid
= v9fs_fid_lookup(dentry
);
941 link
= ERR_CAST(fid
);
944 retval
= p9_client_readlink(fid
, &target
);
946 strcpy(link
, target
);
951 link
= ERR_PTR(retval
);
953 nd_set_link(nd
, link
);
957 int v9fs_refresh_inode_dotl(struct p9_fid
*fid
, struct inode
*inode
)
960 struct p9_stat_dotl
*st
;
961 struct v9fs_session_info
*v9ses
;
963 v9ses
= v9fs_inode2v9ses(inode
);
964 st
= p9_client_getattr_dotl(fid
, P9_STATS_ALL
);
968 * Don't update inode if the file type is different
970 if ((inode
->i_mode
& S_IFMT
) != (st
->st_mode
& S_IFMT
))
973 spin_lock(&inode
->i_lock
);
975 * We don't want to refresh inode->i_size,
976 * because we may have cached data
978 i_size
= inode
->i_size
;
979 v9fs_stat2inode_dotl(st
, inode
);
981 inode
->i_size
= i_size
;
982 spin_unlock(&inode
->i_lock
);
988 const struct inode_operations v9fs_dir_inode_operations_dotl
= {
989 .create
= v9fs_vfs_create_dotl
,
990 .atomic_open
= v9fs_vfs_atomic_open_dotl
,
991 .lookup
= v9fs_vfs_lookup
,
992 .link
= v9fs_vfs_link_dotl
,
993 .symlink
= v9fs_vfs_symlink_dotl
,
994 .unlink
= v9fs_vfs_unlink
,
995 .mkdir
= v9fs_vfs_mkdir_dotl
,
996 .rmdir
= v9fs_vfs_rmdir
,
997 .mknod
= v9fs_vfs_mknod_dotl
,
998 .rename
= v9fs_vfs_rename
,
999 .getattr
= v9fs_vfs_getattr_dotl
,
1000 .setattr
= v9fs_vfs_setattr_dotl
,
1001 .setxattr
= generic_setxattr
,
1002 .getxattr
= generic_getxattr
,
1003 .removexattr
= generic_removexattr
,
1004 .listxattr
= v9fs_listxattr
,
1005 .get_acl
= v9fs_iop_get_acl
,
1008 const struct inode_operations v9fs_file_inode_operations_dotl
= {
1009 .getattr
= v9fs_vfs_getattr_dotl
,
1010 .setattr
= v9fs_vfs_setattr_dotl
,
1011 .setxattr
= generic_setxattr
,
1012 .getxattr
= generic_getxattr
,
1013 .removexattr
= generic_removexattr
,
1014 .listxattr
= v9fs_listxattr
,
1015 .get_acl
= v9fs_iop_get_acl
,
1018 const struct inode_operations v9fs_symlink_inode_operations_dotl
= {
1019 .readlink
= generic_readlink
,
1020 .follow_link
= v9fs_vfs_follow_link_dotl
,
1021 .put_link
= v9fs_vfs_put_link
,
1022 .getattr
= v9fs_vfs_getattr_dotl
,
1023 .setattr
= v9fs_vfs_setattr_dotl
,
1024 .setxattr
= generic_setxattr
,
1025 .getxattr
= generic_getxattr
,
1026 .removexattr
= generic_removexattr
,
1027 .listxattr
= v9fs_listxattr
,