1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
4 * Copyright (C) 2004-2011 Red Hat, Inc. All rights reserved.
7 #include <linux/slab.h>
8 #include <linux/spinlock.h>
9 #include <linux/completion.h>
10 #include <linux/buffer_head.h>
11 #include <linux/namei.h>
13 #include <linux/cred.h>
14 #include <linux/xattr.h>
15 #include <linux/posix_acl.h>
16 #include <linux/gfs2_ondisk.h>
17 #include <linux/crc32.h>
18 #include <linux/iomap.h>
19 #include <linux/security.h>
20 #include <linux/fiemap.h>
21 #include <linux/uaccess.h>
39 static int iget_test(struct inode
*inode
, void *opaque
)
41 u64 no_addr
= *(u64
*)opaque
;
43 return GFS2_I(inode
)->i_no_addr
== no_addr
;
46 static int iget_set(struct inode
*inode
, void *opaque
)
48 u64 no_addr
= *(u64
*)opaque
;
50 GFS2_I(inode
)->i_no_addr
= no_addr
;
51 inode
->i_ino
= no_addr
;
55 static struct inode
*gfs2_iget(struct super_block
*sb
, u64 no_addr
)
60 inode
= iget5_locked(sb
, no_addr
, iget_test
, iget_set
, &no_addr
);
63 if (is_bad_inode(inode
)) {
71 * gfs2_set_iop - Sets inode operations
72 * @inode: The inode with correct i_mode filled in
74 * GFS2 lookup code fills in vfs inode contents based on info obtained
75 * from directory entry inside gfs2_inode_lookup().
78 static void gfs2_set_iop(struct inode
*inode
)
80 struct gfs2_sbd
*sdp
= GFS2_SB(inode
);
81 umode_t mode
= inode
->i_mode
;
84 inode
->i_op
= &gfs2_file_iops
;
85 if (gfs2_localflocks(sdp
))
86 inode
->i_fop
= &gfs2_file_fops_nolock
;
88 inode
->i_fop
= &gfs2_file_fops
;
89 } else if (S_ISDIR(mode
)) {
90 inode
->i_op
= &gfs2_dir_iops
;
91 if (gfs2_localflocks(sdp
))
92 inode
->i_fop
= &gfs2_dir_fops_nolock
;
94 inode
->i_fop
= &gfs2_dir_fops
;
95 } else if (S_ISLNK(mode
)) {
96 inode
->i_op
= &gfs2_symlink_iops
;
98 inode
->i_op
= &gfs2_file_iops
;
99 init_special_inode(inode
, inode
->i_mode
, inode
->i_rdev
);
104 * gfs2_inode_lookup - Lookup an inode
105 * @sb: The super block
106 * @type: The type of the inode
107 * @no_addr: The inode number
108 * @no_formal_ino: The inode generation number
109 * @blktype: Requested block type (GFS2_BLKST_DINODE or GFS2_BLKST_UNLINKED;
110 * GFS2_BLKST_FREE to indicate not to verify)
112 * If @type is DT_UNKNOWN, the inode type is fetched from disk.
114 * If @blktype is anything other than GFS2_BLKST_FREE (which is used as a
115 * placeholder because it doesn't otherwise make sense), the on-disk block type
116 * is verified to be @blktype.
118 * When @no_formal_ino is non-zero, this function will return ERR_PTR(-ESTALE)
119 * if it detects that @no_formal_ino doesn't match the actual inode generation
120 * number. However, it doesn't always know unless @type is DT_UNKNOWN.
122 * Returns: A VFS inode, or an error
125 struct inode
*gfs2_inode_lookup(struct super_block
*sb
, unsigned int type
,
126 u64 no_addr
, u64 no_formal_ino
,
127 unsigned int blktype
)
130 struct gfs2_inode
*ip
;
131 struct gfs2_glock
*io_gl
= NULL
;
132 struct gfs2_holder i_gh
;
135 gfs2_holder_mark_uninitialized(&i_gh
);
136 inode
= gfs2_iget(sb
, no_addr
);
138 return ERR_PTR(-ENOMEM
);
142 if (inode
->i_state
& I_NEW
) {
143 struct gfs2_sbd
*sdp
= GFS2_SB(inode
);
145 error
= gfs2_glock_get(sdp
, no_addr
, &gfs2_inode_glops
, CREATE
, &ip
->i_gl
);
148 flush_delayed_work(&ip
->i_gl
->gl_work
);
150 error
= gfs2_glock_get(sdp
, no_addr
, &gfs2_iopen_glops
, CREATE
, &io_gl
);
154 if (type
== DT_UNKNOWN
|| blktype
!= GFS2_BLKST_FREE
) {
156 * The GL_SKIP flag indicates to skip reading the inode
157 * block. We read the inode with gfs2_inode_refresh
158 * after possibly checking the block type.
160 error
= gfs2_glock_nq_init(ip
->i_gl
, LM_ST_EXCLUSIVE
,
167 gfs2_inode_already_deleted(ip
->i_gl
, no_formal_ino
))
170 if (blktype
!= GFS2_BLKST_FREE
) {
171 error
= gfs2_check_blk_type(sdp
, no_addr
,
178 glock_set_object(ip
->i_gl
, ip
);
179 set_bit(GIF_INVALID
, &ip
->i_flags
);
180 error
= gfs2_glock_nq_init(io_gl
, LM_ST_SHARED
, GL_EXACT
, &ip
->i_iopen_gh
);
183 gfs2_cancel_delete_work(ip
->i_iopen_gh
.gh_gl
);
184 glock_set_object(ip
->i_iopen_gh
.gh_gl
, ip
);
185 gfs2_glock_put(io_gl
);
188 /* Lowest possible timestamp; will be overwritten in gfs2_dinode_in. */
189 inode
->i_atime
.tv_sec
= 1LL << (8 * sizeof(inode
->i_atime
.tv_sec
) - 1);
190 inode
->i_atime
.tv_nsec
= 0;
192 if (type
== DT_UNKNOWN
) {
193 /* Inode glock must be locked already */
194 error
= gfs2_inode_refresh(GFS2_I(inode
));
198 ip
->i_no_formal_ino
= no_formal_ino
;
199 inode
->i_mode
= DT2IF(type
);
202 if (gfs2_holder_initialized(&i_gh
))
203 gfs2_glock_dq_uninit(&i_gh
);
208 if (no_formal_ino
&& ip
->i_no_formal_ino
&&
209 no_formal_ino
!= ip
->i_no_formal_ino
) {
211 if (inode
->i_state
& I_NEW
)
214 return ERR_PTR(error
);
217 if (inode
->i_state
& I_NEW
)
218 unlock_new_inode(inode
);
224 gfs2_glock_put(io_gl
);
225 if (gfs2_holder_initialized(&i_gh
))
226 gfs2_glock_dq_uninit(&i_gh
);
228 return ERR_PTR(error
);
232 * gfs2_lookup_by_inum - look up an inode by inode number
233 * @sdp: The super block
234 * @no_addr: The inode number
235 * @no_formal_ino: The inode generation number (0 for any)
236 * @blktype: Requested block type (see gfs2_inode_lookup)
238 struct inode
*gfs2_lookup_by_inum(struct gfs2_sbd
*sdp
, u64 no_addr
,
239 u64 no_formal_ino
, unsigned int blktype
)
241 struct super_block
*sb
= sdp
->sd_vfs
;
245 inode
= gfs2_inode_lookup(sb
, DT_UNKNOWN
, no_addr
, no_formal_ino
,
252 if (GFS2_I(inode
)->i_diskflags
& GFS2_DIF_SYSTEM
)
259 return ERR_PTR(error
);
263 struct inode
*gfs2_lookup_simple(struct inode
*dip
, const char *name
)
267 gfs2_str2qstr(&qstr
, name
);
268 inode
= gfs2_lookupi(dip
, &qstr
, 1);
269 /* gfs2_lookupi has inconsistent callers: vfs
270 * related routines expect NULL for no entry found,
271 * gfs2_lookup_simple callers expect ENOENT
272 * and do not check for NULL.
275 return ERR_PTR(-ENOENT
);
282 * gfs2_lookupi - Look up a filename in a directory and return its inode
283 * @d_gh: An initialized holder for the directory glock
284 * @name: The name of the inode to look for
285 * @is_root: If 1, ignore the caller's permissions
286 * @i_gh: An uninitialized holder for the new inode glock
288 * This can be called via the VFS filldir function when NFS is doing
289 * a readdirplus and the inode which its intending to stat isn't
290 * already in cache. In this case we must not take the directory glock
291 * again, since the readdir call will have already taken that lock.
296 struct inode
*gfs2_lookupi(struct inode
*dir
, const struct qstr
*name
,
299 struct super_block
*sb
= dir
->i_sb
;
300 struct gfs2_inode
*dip
= GFS2_I(dir
);
301 struct gfs2_holder d_gh
;
303 struct inode
*inode
= NULL
;
305 gfs2_holder_mark_uninitialized(&d_gh
);
306 if (!name
->len
|| name
->len
> GFS2_FNAMESIZE
)
307 return ERR_PTR(-ENAMETOOLONG
);
309 if ((name
->len
== 1 && memcmp(name
->name
, ".", 1) == 0) ||
310 (name
->len
== 2 && memcmp(name
->name
, "..", 2) == 0 &&
311 dir
== d_inode(sb
->s_root
))) {
316 if (gfs2_glock_is_locked_by_me(dip
->i_gl
) == NULL
) {
317 error
= gfs2_glock_nq_init(dip
->i_gl
, LM_ST_SHARED
, 0, &d_gh
);
319 return ERR_PTR(error
);
323 error
= gfs2_permission(dir
, MAY_EXEC
);
328 inode
= gfs2_dir_search(dir
, name
, false);
330 error
= PTR_ERR(inode
);
332 if (gfs2_holder_initialized(&d_gh
))
333 gfs2_glock_dq_uninit(&d_gh
);
334 if (error
== -ENOENT
)
336 return inode
? inode
: ERR_PTR(error
);
340 * create_ok - OK to create a new on-disk inode here?
341 * @dip: Directory in which dinode is to be created
342 * @name: Name of new dinode
348 static int create_ok(struct gfs2_inode
*dip
, const struct qstr
*name
,
353 error
= gfs2_permission(&dip
->i_inode
, MAY_WRITE
| MAY_EXEC
);
357 /* Don't create entries in an unlinked directory */
358 if (!dip
->i_inode
.i_nlink
)
361 if (dip
->i_entries
== (u32
)-1)
363 if (S_ISDIR(mode
) && dip
->i_inode
.i_nlink
== (u32
)-1)
369 static void munge_mode_uid_gid(const struct gfs2_inode
*dip
,
372 if (GFS2_SB(&dip
->i_inode
)->sd_args
.ar_suiddir
&&
373 (dip
->i_inode
.i_mode
& S_ISUID
) &&
374 !uid_eq(dip
->i_inode
.i_uid
, GLOBAL_ROOT_UID
)) {
375 if (S_ISDIR(inode
->i_mode
))
376 inode
->i_mode
|= S_ISUID
;
377 else if (!uid_eq(dip
->i_inode
.i_uid
, current_fsuid()))
378 inode
->i_mode
&= ~07111;
379 inode
->i_uid
= dip
->i_inode
.i_uid
;
381 inode
->i_uid
= current_fsuid();
383 if (dip
->i_inode
.i_mode
& S_ISGID
) {
384 if (S_ISDIR(inode
->i_mode
))
385 inode
->i_mode
|= S_ISGID
;
386 inode
->i_gid
= dip
->i_inode
.i_gid
;
388 inode
->i_gid
= current_fsgid();
391 static int alloc_dinode(struct gfs2_inode
*ip
, u32 flags
, unsigned *dblocks
)
393 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
394 struct gfs2_alloc_parms ap
= { .target
= *dblocks
, .aflags
= flags
, };
397 error
= gfs2_quota_lock_check(ip
, &ap
);
401 error
= gfs2_inplace_reserve(ip
, &ap
);
405 error
= gfs2_trans_begin(sdp
, (*dblocks
* RES_RG_BIT
) + RES_STATFS
+ RES_QUOTA
, 0);
409 error
= gfs2_alloc_blocks(ip
, &ip
->i_no_addr
, dblocks
, 1, &ip
->i_generation
);
410 ip
->i_no_formal_ino
= ip
->i_generation
;
411 ip
->i_inode
.i_ino
= ip
->i_no_addr
;
412 ip
->i_goal
= ip
->i_no_addr
;
417 gfs2_inplace_release(ip
);
419 gfs2_quota_unlock(ip
);
424 static void gfs2_init_dir(struct buffer_head
*dibh
,
425 const struct gfs2_inode
*parent
)
427 struct gfs2_dinode
*di
= (struct gfs2_dinode
*)dibh
->b_data
;
428 struct gfs2_dirent
*dent
= (struct gfs2_dirent
*)(di
+1);
430 gfs2_qstr2dirent(&gfs2_qdot
, GFS2_DIRENT_SIZE(gfs2_qdot
.len
), dent
);
431 dent
->de_inum
= di
->di_num
; /* already GFS2 endian */
432 dent
->de_type
= cpu_to_be16(DT_DIR
);
434 dent
= (struct gfs2_dirent
*)((char*)dent
+ GFS2_DIRENT_SIZE(1));
435 gfs2_qstr2dirent(&gfs2_qdotdot
, dibh
->b_size
- GFS2_DIRENT_SIZE(1) - sizeof(struct gfs2_dinode
), dent
);
436 gfs2_inum_out(parent
, dent
);
437 dent
->de_type
= cpu_to_be16(DT_DIR
);
442 * gfs2_init_xattr - Initialise an xattr block for a new inode
443 * @ip: The inode in question
445 * This sets up an empty xattr block for a new inode, ready to
446 * take any ACLs, LSM xattrs, etc.
449 static void gfs2_init_xattr(struct gfs2_inode
*ip
)
451 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
452 struct buffer_head
*bh
;
453 struct gfs2_ea_header
*ea
;
455 bh
= gfs2_meta_new(ip
->i_gl
, ip
->i_eattr
);
456 gfs2_trans_add_meta(ip
->i_gl
, bh
);
457 gfs2_metatype_set(bh
, GFS2_METATYPE_EA
, GFS2_FORMAT_EA
);
458 gfs2_buffer_clear_tail(bh
, sizeof(struct gfs2_meta_header
));
460 ea
= GFS2_EA_BH2FIRST(bh
);
461 ea
->ea_rec_len
= cpu_to_be32(sdp
->sd_jbsize
);
462 ea
->ea_type
= GFS2_EATYPE_UNUSED
;
463 ea
->ea_flags
= GFS2_EAFLAG_LAST
;
469 * init_dinode - Fill in a new dinode structure
470 * @dip: The directory this inode is being created in
472 * @symname: The symlink destination (if a symlink)
473 * @bhp: The buffer head (returned to caller)
477 static void init_dinode(struct gfs2_inode
*dip
, struct gfs2_inode
*ip
,
480 struct gfs2_dinode
*di
;
481 struct buffer_head
*dibh
;
483 dibh
= gfs2_meta_new(ip
->i_gl
, ip
->i_no_addr
);
484 gfs2_trans_add_meta(ip
->i_gl
, dibh
);
485 di
= (struct gfs2_dinode
*)dibh
->b_data
;
486 gfs2_dinode_out(ip
, di
);
488 di
->di_major
= cpu_to_be32(MAJOR(ip
->i_inode
.i_rdev
));
489 di
->di_minor
= cpu_to_be32(MINOR(ip
->i_inode
.i_rdev
));
493 memset(&di
->__pad4
, 0, sizeof(di
->__pad4
));
494 memset(&di
->di_reserved
, 0, sizeof(di
->di_reserved
));
495 gfs2_buffer_clear_tail(dibh
, sizeof(struct gfs2_dinode
));
497 switch(ip
->i_inode
.i_mode
& S_IFMT
) {
499 gfs2_init_dir(dibh
, dip
);
502 memcpy(dibh
->b_data
+ sizeof(struct gfs2_dinode
), symname
, ip
->i_inode
.i_size
);
506 set_buffer_uptodate(dibh
);
511 * gfs2_trans_da_blocks - Calculate number of blocks to link inode
512 * @dip: The directory we are linking into
513 * @da: The dir add information
514 * @nr_inodes: The number of inodes involved
516 * This calculate the number of blocks we need to reserve in a
517 * transaction to link @nr_inodes into a directory. In most cases
518 * @nr_inodes will be 2 (the directory plus the inode being linked in)
519 * but in case of rename, 4 may be required.
521 * Returns: Number of blocks
524 static unsigned gfs2_trans_da_blks(const struct gfs2_inode
*dip
,
525 const struct gfs2_diradd
*da
,
528 return da
->nr_blocks
+ gfs2_rg_blocks(dip
, da
->nr_blocks
) +
529 (nr_inodes
* RES_DINODE
) + RES_QUOTA
+ RES_STATFS
;
532 static int link_dinode(struct gfs2_inode
*dip
, const struct qstr
*name
,
533 struct gfs2_inode
*ip
, struct gfs2_diradd
*da
)
535 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
536 struct gfs2_alloc_parms ap
= { .target
= da
->nr_blocks
, };
540 error
= gfs2_quota_lock_check(dip
, &ap
);
542 goto fail_quota_locks
;
544 error
= gfs2_inplace_reserve(dip
, &ap
);
546 goto fail_quota_locks
;
548 error
= gfs2_trans_begin(sdp
, gfs2_trans_da_blks(dip
, da
, 2), 0);
552 error
= gfs2_trans_begin(sdp
, RES_LEAF
+ 2 * RES_DINODE
, 0);
554 goto fail_quota_locks
;
557 error
= gfs2_dir_add(&dip
->i_inode
, name
, ip
, da
);
561 gfs2_inplace_release(dip
);
563 gfs2_quota_unlock(dip
);
567 static int gfs2_initxattrs(struct inode
*inode
, const struct xattr
*xattr_array
,
570 const struct xattr
*xattr
;
573 for (xattr
= xattr_array
; xattr
->name
!= NULL
; xattr
++) {
574 err
= __gfs2_xattr_set(inode
, xattr
->name
, xattr
->value
,
576 GFS2_EATYPE_SECURITY
);
584 * gfs2_create_inode - Create a new inode
585 * @dir: The parent directory
586 * @dentry: The new dentry
587 * @file: If non-NULL, the file which is being opened
588 * @mode: The permissions on the new inode
589 * @dev: For device nodes, this is the device number
590 * @symname: For symlinks, this is the link destination
591 * @size: The initial size of the inode (ignored for directories)
593 * Returns: 0 on success, or error code
596 static int gfs2_create_inode(struct inode
*dir
, struct dentry
*dentry
,
598 umode_t mode
, dev_t dev
, const char *symname
,
599 unsigned int size
, int excl
)
601 const struct qstr
*name
= &dentry
->d_name
;
602 struct posix_acl
*default_acl
, *acl
;
603 struct gfs2_holder ghs
[2];
604 struct inode
*inode
= NULL
;
605 struct gfs2_inode
*dip
= GFS2_I(dir
), *ip
;
606 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
607 struct gfs2_glock
*io_gl
= NULL
;
608 int error
, free_vfs_inode
= 1;
611 struct gfs2_diradd da
= { .bh
= NULL
, .save_loc
= 1, };
613 if (!name
->len
|| name
->len
> GFS2_FNAMESIZE
)
614 return -ENAMETOOLONG
;
616 error
= gfs2_qa_get(dip
);
620 error
= gfs2_rindex_update(sdp
);
624 error
= gfs2_glock_nq_init(dip
->i_gl
, LM_ST_EXCLUSIVE
, 0, ghs
);
627 gfs2_holder_mark_uninitialized(ghs
+ 1);
629 error
= create_ok(dip
, name
, mode
);
633 inode
= gfs2_dir_search(dir
, &dentry
->d_name
, !S_ISREG(mode
) || excl
);
634 error
= PTR_ERR(inode
);
635 if (!IS_ERR(inode
)) {
636 if (S_ISDIR(inode
->i_mode
)) {
638 inode
= ERR_PTR(-EISDIR
);
641 d_instantiate(dentry
, inode
);
644 if (S_ISREG(inode
->i_mode
))
645 error
= finish_open(file
, dentry
, gfs2_open_common
);
647 error
= finish_no_open(file
, NULL
);
649 gfs2_glock_dq_uninit(ghs
);
651 } else if (error
!= -ENOENT
) {
655 error
= gfs2_diradd_alloc_required(dir
, name
, &da
);
659 inode
= new_inode(sdp
->sd_vfs
);
664 error
= posix_acl_create(dir
, &mode
, &default_acl
, &acl
);
669 error
= gfs2_qa_get(ip
);
673 inode
->i_mode
= mode
;
674 set_nlink(inode
, S_ISDIR(mode
) ? 2 : 1);
676 inode
->i_size
= size
;
677 inode
->i_atime
= inode
->i_mtime
= inode
->i_ctime
= current_time(inode
);
678 munge_mode_uid_gid(dip
, inode
);
679 check_and_update_goal(dip
);
680 ip
->i_goal
= dip
->i_goal
;
686 ip
->i_no_addr
= 0; /* Temporarily zero until real addr is assigned */
688 switch(mode
& S_IFMT
) {
690 if ((dip
->i_diskflags
& GFS2_DIF_INHERIT_JDATA
) ||
691 gfs2_tune_get(sdp
, gt_new_files_jdata
))
692 ip
->i_diskflags
|= GFS2_DIF_JDATA
;
693 gfs2_set_aops(inode
);
696 ip
->i_diskflags
|= (dip
->i_diskflags
& GFS2_DIF_INHERIT_JDATA
);
697 ip
->i_diskflags
|= GFS2_DIF_JDATA
;
702 /* Force SYSTEM flag on all files and subdirs of a SYSTEM directory */
703 if (dip
->i_diskflags
& GFS2_DIF_SYSTEM
)
704 ip
->i_diskflags
|= GFS2_DIF_SYSTEM
;
706 gfs2_set_inode_flags(inode
);
708 if ((GFS2_I(d_inode(sdp
->sd_root_dir
)) == dip
) ||
709 (dip
->i_diskflags
& GFS2_DIF_TOPDIR
))
710 aflags
|= GFS2_AF_ORLOV
;
712 if (default_acl
|| acl
)
715 error
= alloc_dinode(ip
, aflags
, &blocks
);
717 goto fail_free_inode
;
719 gfs2_set_inode_blocks(inode
, blocks
);
721 error
= gfs2_glock_get(sdp
, ip
->i_no_addr
, &gfs2_inode_glops
, CREATE
, &ip
->i_gl
);
723 goto fail_free_inode
;
724 flush_delayed_work(&ip
->i_gl
->gl_work
);
725 glock_set_object(ip
->i_gl
, ip
);
727 error
= gfs2_glock_nq_init(ip
->i_gl
, LM_ST_EXCLUSIVE
, GL_SKIP
, ghs
+ 1);
729 goto fail_free_inode
;
731 error
= gfs2_trans_begin(sdp
, blocks
, 0);
733 goto fail_free_inode
;
736 ip
->i_eattr
= ip
->i_no_addr
+ 1;
739 init_dinode(dip
, ip
, symname
);
742 error
= gfs2_glock_get(sdp
, ip
->i_no_addr
, &gfs2_iopen_glops
, CREATE
, &io_gl
);
744 goto fail_free_inode
;
746 BUG_ON(test_and_set_bit(GLF_INODE_CREATING
, &io_gl
->gl_flags
));
748 error
= gfs2_glock_nq_init(io_gl
, LM_ST_SHARED
, GL_EXACT
, &ip
->i_iopen_gh
);
752 gfs2_cancel_delete_work(ip
->i_iopen_gh
.gh_gl
);
753 glock_set_object(ip
->i_iopen_gh
.gh_gl
, ip
);
755 insert_inode_hash(inode
);
757 free_vfs_inode
= 0; /* After this point, the inode is no longer
758 considered free. Any failures need to undo
759 the gfs2 structures. */
761 error
= __gfs2_set_acl(inode
, default_acl
, ACL_TYPE_DEFAULT
);
764 posix_acl_release(default_acl
);
768 error
= __gfs2_set_acl(inode
, acl
, ACL_TYPE_ACCESS
);
771 posix_acl_release(acl
);
775 error
= security_inode_init_security(&ip
->i_inode
, &dip
->i_inode
, name
,
776 &gfs2_initxattrs
, NULL
);
780 error
= link_dinode(dip
, name
, ip
, &da
);
784 mark_inode_dirty(inode
);
785 d_instantiate(dentry
, inode
);
786 /* After instantiate, errors should result in evict which will destroy
787 * both inode and iopen glocks properly. */
789 file
->f_mode
|= FMODE_CREATED
;
790 error
= finish_open(file
, dentry
, gfs2_open_common
);
792 gfs2_glock_dq_uninit(ghs
);
794 gfs2_glock_dq_uninit(ghs
+ 1);
795 clear_bit(GLF_INODE_CREATING
, &io_gl
->gl_flags
);
796 gfs2_glock_put(io_gl
);
801 glock_clear_object(io_gl
, ip
);
802 gfs2_glock_dq_uninit(&ip
->i_iopen_gh
);
804 clear_bit(GLF_INODE_CREATING
, &io_gl
->gl_flags
);
805 gfs2_glock_put(io_gl
);
808 glock_clear_object(ip
->i_gl
, ip
);
809 if (free_vfs_inode
) /* else evict will do the put for us */
810 gfs2_glock_put(ip
->i_gl
);
812 gfs2_rs_delete(ip
, NULL
);
815 posix_acl_release(default_acl
);
816 posix_acl_release(acl
);
818 gfs2_dir_no_add(&da
);
819 gfs2_glock_dq_uninit(ghs
);
820 if (!IS_ERR_OR_NULL(inode
)) {
823 mark_inode_dirty(inode
);
824 set_bit(free_vfs_inode
? GIF_FREE_VFS_INODE
: GIF_ALLOC_FAILED
,
825 &GFS2_I(inode
)->i_flags
);
828 if (gfs2_holder_initialized(ghs
+ 1))
829 gfs2_glock_dq_uninit(ghs
+ 1);
836 * gfs2_create - Create a file
837 * @dir: The directory in which to create the file
838 * @dentry: The dentry of the new file
839 * @mode: The mode of the new file
844 static int gfs2_create(struct inode
*dir
, struct dentry
*dentry
,
845 umode_t mode
, bool excl
)
847 return gfs2_create_inode(dir
, dentry
, NULL
, S_IFREG
| mode
, 0, NULL
, 0, excl
);
851 * __gfs2_lookup - Look up a filename in a directory and return its inode
852 * @dir: The directory inode
853 * @dentry: The dentry of the new inode
854 * @file: File to be opened
860 static struct dentry
*__gfs2_lookup(struct inode
*dir
, struct dentry
*dentry
,
865 struct gfs2_holder gh
;
866 struct gfs2_glock
*gl
;
869 inode
= gfs2_lookupi(dir
, &dentry
->d_name
, 0);
875 return ERR_CAST(inode
);
877 gl
= GFS2_I(inode
)->i_gl
;
878 error
= gfs2_glock_nq_init(gl
, LM_ST_SHARED
, LM_FLAG_ANY
, &gh
);
881 return ERR_PTR(error
);
884 d
= d_splice_alias(inode
, dentry
);
886 gfs2_glock_dq_uninit(&gh
);
889 if (file
&& S_ISREG(inode
->i_mode
))
890 error
= finish_open(file
, dentry
, gfs2_open_common
);
892 gfs2_glock_dq_uninit(&gh
);
895 return ERR_PTR(error
);
900 static struct dentry
*gfs2_lookup(struct inode
*dir
, struct dentry
*dentry
,
903 return __gfs2_lookup(dir
, dentry
, NULL
);
907 * gfs2_link - Link to a file
908 * @old_dentry: The inode to link
909 * @dir: Add link to this directory
910 * @dentry: The name of the link
912 * Link the inode in "old_dentry" into the directory "dir" with the
918 static int gfs2_link(struct dentry
*old_dentry
, struct inode
*dir
,
919 struct dentry
*dentry
)
921 struct gfs2_inode
*dip
= GFS2_I(dir
);
922 struct gfs2_sbd
*sdp
= GFS2_SB(dir
);
923 struct inode
*inode
= d_inode(old_dentry
);
924 struct gfs2_inode
*ip
= GFS2_I(inode
);
925 struct gfs2_holder ghs
[2];
926 struct buffer_head
*dibh
;
927 struct gfs2_diradd da
= { .bh
= NULL
, .save_loc
= 1, };
930 if (S_ISDIR(inode
->i_mode
))
933 error
= gfs2_qa_get(dip
);
937 gfs2_holder_init(dip
->i_gl
, LM_ST_EXCLUSIVE
, 0, ghs
);
938 gfs2_holder_init(ip
->i_gl
, LM_ST_EXCLUSIVE
, 0, ghs
+ 1);
940 error
= gfs2_glock_nq(ghs
); /* parent */
944 error
= gfs2_glock_nq(ghs
+ 1); /* child */
949 if (inode
->i_nlink
== 0)
952 error
= gfs2_permission(dir
, MAY_WRITE
| MAY_EXEC
);
956 error
= gfs2_dir_check(dir
, &dentry
->d_name
, NULL
);
967 if (!dip
->i_inode
.i_nlink
)
970 if (dip
->i_entries
== (u32
)-1)
973 if (IS_IMMUTABLE(inode
) || IS_APPEND(inode
))
976 if (!ip
->i_inode
.i_nlink
)
979 if (ip
->i_inode
.i_nlink
== (u32
)-1)
982 error
= gfs2_diradd_alloc_required(dir
, &dentry
->d_name
, &da
);
987 struct gfs2_alloc_parms ap
= { .target
= da
.nr_blocks
, };
988 error
= gfs2_quota_lock_check(dip
, &ap
);
992 error
= gfs2_inplace_reserve(dip
, &ap
);
996 error
= gfs2_trans_begin(sdp
, gfs2_trans_da_blks(dip
, &da
, 2), 0);
1000 error
= gfs2_trans_begin(sdp
, 2 * RES_DINODE
+ RES_LEAF
, 0);
1005 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
1009 error
= gfs2_dir_add(dir
, &dentry
->d_name
, ip
, &da
);
1013 gfs2_trans_add_meta(ip
->i_gl
, dibh
);
1014 inc_nlink(&ip
->i_inode
);
1015 ip
->i_inode
.i_ctime
= current_time(&ip
->i_inode
);
1017 d_instantiate(dentry
, inode
);
1018 mark_inode_dirty(inode
);
1023 gfs2_trans_end(sdp
);
1026 gfs2_inplace_release(dip
);
1029 gfs2_quota_unlock(dip
);
1031 gfs2_dir_no_add(&da
);
1032 gfs2_glock_dq(ghs
+ 1);
1037 gfs2_holder_uninit(ghs
);
1038 gfs2_holder_uninit(ghs
+ 1);
1043 * gfs2_unlink_ok - check to see that a inode is still in a directory
1044 * @dip: the directory
1045 * @name: the name of the file
1048 * Assumes that the lock on (at least) @dip is held.
1050 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
1053 static int gfs2_unlink_ok(struct gfs2_inode
*dip
, const struct qstr
*name
,
1054 const struct gfs2_inode
*ip
)
1058 if (IS_IMMUTABLE(&ip
->i_inode
) || IS_APPEND(&ip
->i_inode
))
1061 if ((dip
->i_inode
.i_mode
& S_ISVTX
) &&
1062 !uid_eq(dip
->i_inode
.i_uid
, current_fsuid()) &&
1063 !uid_eq(ip
->i_inode
.i_uid
, current_fsuid()) && !capable(CAP_FOWNER
))
1066 if (IS_APPEND(&dip
->i_inode
))
1069 error
= gfs2_permission(&dip
->i_inode
, MAY_WRITE
| MAY_EXEC
);
1073 return gfs2_dir_check(&dip
->i_inode
, name
, ip
);
1077 * gfs2_unlink_inode - Removes an inode from its parent dir and unlinks it
1078 * @dip: The parent directory
1079 * @name: The name of the entry in the parent directory
1080 * @inode: The inode to be removed
1082 * Called with all the locks and in a transaction. This will only be
1083 * called for a directory after it has been checked to ensure it is empty.
1085 * Returns: 0 on success, or an error
1088 static int gfs2_unlink_inode(struct gfs2_inode
*dip
,
1089 const struct dentry
*dentry
)
1091 struct inode
*inode
= d_inode(dentry
);
1092 struct gfs2_inode
*ip
= GFS2_I(inode
);
1095 error
= gfs2_dir_del(dip
, dentry
);
1100 inode
->i_ctime
= current_time(inode
);
1101 if (S_ISDIR(inode
->i_mode
))
1105 mark_inode_dirty(inode
);
1106 if (inode
->i_nlink
== 0)
1107 gfs2_unlink_di(inode
);
1113 * gfs2_unlink - Unlink an inode (this does rmdir as well)
1114 * @dir: The inode of the directory containing the inode to unlink
1115 * @dentry: The file itself
1117 * This routine uses the type of the inode as a flag to figure out
1118 * whether this is an unlink or an rmdir.
1123 static int gfs2_unlink(struct inode
*dir
, struct dentry
*dentry
)
1125 struct gfs2_inode
*dip
= GFS2_I(dir
);
1126 struct gfs2_sbd
*sdp
= GFS2_SB(dir
);
1127 struct inode
*inode
= d_inode(dentry
);
1128 struct gfs2_inode
*ip
= GFS2_I(inode
);
1129 struct gfs2_holder ghs
[3];
1130 struct gfs2_rgrpd
*rgd
;
1133 error
= gfs2_rindex_update(sdp
);
1139 gfs2_holder_init(dip
->i_gl
, LM_ST_EXCLUSIVE
, 0, ghs
);
1140 gfs2_holder_init(ip
->i_gl
, LM_ST_EXCLUSIVE
, 0, ghs
+ 1);
1142 rgd
= gfs2_blk2rgrpd(sdp
, ip
->i_no_addr
, 1);
1146 gfs2_holder_init(rgd
->rd_gl
, LM_ST_EXCLUSIVE
, 0, ghs
+ 2);
1149 error
= gfs2_glock_nq(ghs
); /* parent */
1153 error
= gfs2_glock_nq(ghs
+ 1); /* child */
1158 if (inode
->i_nlink
== 0)
1161 if (S_ISDIR(inode
->i_mode
)) {
1163 if (ip
->i_entries
> 2 || inode
->i_nlink
> 2)
1167 error
= gfs2_glock_nq(ghs
+ 2); /* rgrp */
1171 error
= gfs2_unlink_ok(dip
, &dentry
->d_name
, ip
);
1175 error
= gfs2_trans_begin(sdp
, 2*RES_DINODE
+ 3*RES_LEAF
+ RES_RG_BIT
, 0);
1179 error
= gfs2_unlink_inode(dip
, dentry
);
1180 gfs2_trans_end(sdp
);
1183 gfs2_glock_dq(ghs
+ 2);
1185 gfs2_glock_dq(ghs
+ 1);
1189 gfs2_holder_uninit(ghs
+ 2);
1191 gfs2_holder_uninit(ghs
+ 1);
1192 gfs2_holder_uninit(ghs
);
1197 * gfs2_symlink - Create a symlink
1198 * @dir: The directory to create the symlink in
1199 * @dentry: The dentry to put the symlink in
1200 * @symname: The thing which the link points to
1205 static int gfs2_symlink(struct inode
*dir
, struct dentry
*dentry
,
1206 const char *symname
)
1210 size
= strlen(symname
);
1211 if (size
>= gfs2_max_stuffed_size(GFS2_I(dir
)))
1212 return -ENAMETOOLONG
;
1214 return gfs2_create_inode(dir
, dentry
, NULL
, S_IFLNK
| S_IRWXUGO
, 0, symname
, size
, 0);
1218 * gfs2_mkdir - Make a directory
1219 * @dir: The parent directory of the new one
1220 * @dentry: The dentry of the new directory
1221 * @mode: The mode of the new directory
1226 static int gfs2_mkdir(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
)
1228 unsigned dsize
= gfs2_max_stuffed_size(GFS2_I(dir
));
1229 return gfs2_create_inode(dir
, dentry
, NULL
, S_IFDIR
| mode
, 0, NULL
, dsize
, 0);
1233 * gfs2_mknod - Make a special file
1234 * @dir: The directory in which the special file will reside
1235 * @dentry: The dentry of the special file
1236 * @mode: The mode of the special file
1237 * @dev: The device specification of the special file
1241 static int gfs2_mknod(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
,
1244 return gfs2_create_inode(dir
, dentry
, NULL
, mode
, dev
, NULL
, 0, 0);
1248 * gfs2_atomic_open - Atomically open a file
1249 * @dir: The directory
1250 * @dentry: The proposed new entry
1251 * @file: The proposed new struct file
1252 * @flags: open flags
1255 * Returns: error code or 0 for success
1258 static int gfs2_atomic_open(struct inode
*dir
, struct dentry
*dentry
,
1259 struct file
*file
, unsigned flags
,
1263 bool excl
= !!(flags
& O_EXCL
);
1265 if (!d_in_lookup(dentry
))
1268 d
= __gfs2_lookup(dir
, dentry
, file
);
1273 if (d_really_is_positive(dentry
)) {
1274 if (!(file
->f_mode
& FMODE_OPENED
))
1275 return finish_no_open(file
, d
);
1277 return excl
&& (flags
& O_CREAT
) ? -EEXIST
: 0;
1283 if (!(flags
& O_CREAT
))
1286 return gfs2_create_inode(dir
, dentry
, file
, S_IFREG
| mode
, 0, NULL
, 0, excl
);
1290 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
1294 * Follow @to back to the root and make sure we don't encounter @this
1295 * Assumes we already hold the rename lock.
1300 static int gfs2_ok_to_move(struct gfs2_inode
*this, struct gfs2_inode
*to
)
1302 struct inode
*dir
= &to
->i_inode
;
1303 struct super_block
*sb
= dir
->i_sb
;
1310 if (dir
== &this->i_inode
) {
1314 if (dir
== d_inode(sb
->s_root
)) {
1319 tmp
= gfs2_lookupi(dir
, &gfs2_qdotdot
, 1);
1325 error
= PTR_ERR(tmp
);
1339 * update_moved_ino - Update an inode that's being moved
1340 * @ip: The inode being moved
1341 * @ndip: The parent directory of the new filename
1342 * @dir_rename: True of ip is a directory
1347 static int update_moved_ino(struct gfs2_inode
*ip
, struct gfs2_inode
*ndip
,
1351 return gfs2_dir_mvino(ip
, &gfs2_qdotdot
, ndip
, DT_DIR
);
1353 ip
->i_inode
.i_ctime
= current_time(&ip
->i_inode
);
1354 mark_inode_dirty_sync(&ip
->i_inode
);
1360 * gfs2_rename - Rename a file
1361 * @odir: Parent directory of old file name
1362 * @odentry: The old dentry of the file
1363 * @ndir: Parent directory of new file name
1364 * @ndentry: The new dentry of the file
1369 static int gfs2_rename(struct inode
*odir
, struct dentry
*odentry
,
1370 struct inode
*ndir
, struct dentry
*ndentry
)
1372 struct gfs2_inode
*odip
= GFS2_I(odir
);
1373 struct gfs2_inode
*ndip
= GFS2_I(ndir
);
1374 struct gfs2_inode
*ip
= GFS2_I(d_inode(odentry
));
1375 struct gfs2_inode
*nip
= NULL
;
1376 struct gfs2_sbd
*sdp
= GFS2_SB(odir
);
1377 struct gfs2_holder ghs
[4], r_gh
, rd_gh
;
1378 struct gfs2_rgrpd
*nrgd
;
1379 unsigned int num_gh
;
1381 struct gfs2_diradd da
= { .nr_blocks
= 0, .save_loc
= 0, };
1385 gfs2_holder_mark_uninitialized(&r_gh
);
1386 gfs2_holder_mark_uninitialized(&rd_gh
);
1387 if (d_really_is_positive(ndentry
)) {
1388 nip
= GFS2_I(d_inode(ndentry
));
1393 error
= gfs2_rindex_update(sdp
);
1397 error
= gfs2_qa_get(ndip
);
1402 error
= gfs2_glock_nq_init(sdp
->sd_rename_gl
, LM_ST_EXCLUSIVE
,
1407 if (S_ISDIR(ip
->i_inode
.i_mode
)) {
1409 /* don't move a directory into its subdir */
1410 error
= gfs2_ok_to_move(ip
, ndip
);
1417 gfs2_holder_init(odip
->i_gl
, LM_ST_EXCLUSIVE
, GL_ASYNC
, ghs
);
1419 gfs2_holder_init(ndip
->i_gl
, LM_ST_EXCLUSIVE
,GL_ASYNC
,
1423 gfs2_holder_init(ip
->i_gl
, LM_ST_EXCLUSIVE
, GL_ASYNC
, ghs
+ num_gh
);
1427 gfs2_holder_init(nip
->i_gl
, LM_ST_EXCLUSIVE
, GL_ASYNC
,
1432 for (x
= 0; x
< num_gh
; x
++) {
1433 error
= gfs2_glock_nq(ghs
+ x
);
1437 error
= gfs2_glock_async_wait(num_gh
, ghs
);
1442 /* Grab the resource group glock for unlink flag twiddling.
1443 * This is the case where the target dinode already exists
1444 * so we unlink before doing the rename.
1446 nrgd
= gfs2_blk2rgrpd(sdp
, nip
->i_no_addr
, 1);
1451 error
= gfs2_glock_nq_init(nrgd
->rd_gl
, LM_ST_EXCLUSIVE
, 0,
1458 if (ip
->i_inode
.i_nlink
== 0)
1461 /* Check out the old directory */
1463 error
= gfs2_unlink_ok(odip
, &odentry
->d_name
, ip
);
1467 /* Check out the new directory */
1470 error
= gfs2_unlink_ok(ndip
, &ndentry
->d_name
, nip
);
1474 if (nip
->i_inode
.i_nlink
== 0) {
1479 if (S_ISDIR(nip
->i_inode
.i_mode
)) {
1480 if (nip
->i_entries
< 2) {
1481 gfs2_consist_inode(nip
);
1485 if (nip
->i_entries
> 2) {
1491 error
= gfs2_permission(ndir
, MAY_WRITE
| MAY_EXEC
);
1495 error
= gfs2_dir_check(ndir
, &ndentry
->d_name
, NULL
);
1507 if (!ndip
->i_inode
.i_nlink
) {
1511 if (ndip
->i_entries
== (u32
)-1) {
1515 if (S_ISDIR(ip
->i_inode
.i_mode
) &&
1516 ndip
->i_inode
.i_nlink
== (u32
)-1) {
1523 /* Check out the dir to be renamed */
1526 error
= gfs2_permission(d_inode(odentry
), MAY_WRITE
);
1532 error
= gfs2_diradd_alloc_required(ndir
, &ndentry
->d_name
, &da
);
1538 struct gfs2_alloc_parms ap
= { .target
= da
.nr_blocks
, };
1539 error
= gfs2_quota_lock_check(ndip
, &ap
);
1543 error
= gfs2_inplace_reserve(ndip
, &ap
);
1547 error
= gfs2_trans_begin(sdp
, gfs2_trans_da_blks(ndip
, &da
, 4) +
1548 4 * RES_LEAF
+ 4, 0);
1552 error
= gfs2_trans_begin(sdp
, 4 * RES_DINODE
+
1553 5 * RES_LEAF
+ 4, 0);
1558 /* Remove the target file, if it exists */
1561 error
= gfs2_unlink_inode(ndip
, ndentry
);
1563 error
= update_moved_ino(ip
, ndip
, dir_rename
);
1567 error
= gfs2_dir_del(odip
, odentry
);
1571 error
= gfs2_dir_add(ndir
, &ndentry
->d_name
, ip
, &da
);
1576 gfs2_trans_end(sdp
);
1579 gfs2_inplace_release(ndip
);
1582 gfs2_quota_unlock(ndip
);
1584 gfs2_dir_no_add(&da
);
1585 if (gfs2_holder_initialized(&rd_gh
))
1586 gfs2_glock_dq_uninit(&rd_gh
);
1589 if (gfs2_holder_queued(ghs
+ x
))
1590 gfs2_glock_dq(ghs
+ x
);
1591 gfs2_holder_uninit(ghs
+ x
);
1594 if (gfs2_holder_initialized(&r_gh
))
1595 gfs2_glock_dq_uninit(&r_gh
);
1602 * gfs2_exchange - exchange two files
1603 * @odir: Parent directory of old file name
1604 * @odentry: The old dentry of the file
1605 * @ndir: Parent directory of new file name
1606 * @ndentry: The new dentry of the file
1607 * @flags: The rename flags
1612 static int gfs2_exchange(struct inode
*odir
, struct dentry
*odentry
,
1613 struct inode
*ndir
, struct dentry
*ndentry
,
1616 struct gfs2_inode
*odip
= GFS2_I(odir
);
1617 struct gfs2_inode
*ndip
= GFS2_I(ndir
);
1618 struct gfs2_inode
*oip
= GFS2_I(odentry
->d_inode
);
1619 struct gfs2_inode
*nip
= GFS2_I(ndentry
->d_inode
);
1620 struct gfs2_sbd
*sdp
= GFS2_SB(odir
);
1621 struct gfs2_holder ghs
[4], r_gh
;
1622 unsigned int num_gh
;
1624 umode_t old_mode
= oip
->i_inode
.i_mode
;
1625 umode_t new_mode
= nip
->i_inode
.i_mode
;
1628 gfs2_holder_mark_uninitialized(&r_gh
);
1629 error
= gfs2_rindex_update(sdp
);
1634 error
= gfs2_glock_nq_init(sdp
->sd_rename_gl
, LM_ST_EXCLUSIVE
,
1639 if (S_ISDIR(old_mode
)) {
1640 /* don't move a directory into its subdir */
1641 error
= gfs2_ok_to_move(oip
, ndip
);
1646 if (S_ISDIR(new_mode
)) {
1647 /* don't move a directory into its subdir */
1648 error
= gfs2_ok_to_move(nip
, odip
);
1655 gfs2_holder_init(odip
->i_gl
, LM_ST_EXCLUSIVE
, GL_ASYNC
, ghs
);
1657 gfs2_holder_init(ndip
->i_gl
, LM_ST_EXCLUSIVE
, GL_ASYNC
,
1661 gfs2_holder_init(oip
->i_gl
, LM_ST_EXCLUSIVE
, GL_ASYNC
, ghs
+ num_gh
);
1664 gfs2_holder_init(nip
->i_gl
, LM_ST_EXCLUSIVE
, GL_ASYNC
, ghs
+ num_gh
);
1667 for (x
= 0; x
< num_gh
; x
++) {
1668 error
= gfs2_glock_nq(ghs
+ x
);
1673 error
= gfs2_glock_async_wait(num_gh
, ghs
);
1678 if (oip
->i_inode
.i_nlink
== 0 || nip
->i_inode
.i_nlink
== 0)
1681 error
= gfs2_unlink_ok(odip
, &odentry
->d_name
, oip
);
1684 error
= gfs2_unlink_ok(ndip
, &ndentry
->d_name
, nip
);
1688 if (S_ISDIR(old_mode
)) {
1689 error
= gfs2_permission(odentry
->d_inode
, MAY_WRITE
);
1693 if (S_ISDIR(new_mode
)) {
1694 error
= gfs2_permission(ndentry
->d_inode
, MAY_WRITE
);
1698 error
= gfs2_trans_begin(sdp
, 4 * RES_DINODE
+ 4 * RES_LEAF
, 0);
1702 error
= update_moved_ino(oip
, ndip
, S_ISDIR(old_mode
));
1706 error
= update_moved_ino(nip
, odip
, S_ISDIR(new_mode
));
1710 error
= gfs2_dir_mvino(ndip
, &ndentry
->d_name
, oip
,
1715 error
= gfs2_dir_mvino(odip
, &odentry
->d_name
, nip
,
1721 if (S_ISDIR(new_mode
) && !S_ISDIR(old_mode
)) {
1722 inc_nlink(&odip
->i_inode
);
1723 drop_nlink(&ndip
->i_inode
);
1724 } else if (S_ISDIR(old_mode
) && !S_ISDIR(new_mode
)) {
1725 inc_nlink(&ndip
->i_inode
);
1726 drop_nlink(&odip
->i_inode
);
1729 mark_inode_dirty(&ndip
->i_inode
);
1731 mark_inode_dirty(&odip
->i_inode
);
1734 gfs2_trans_end(sdp
);
1737 if (gfs2_holder_queued(ghs
+ x
))
1738 gfs2_glock_dq(ghs
+ x
);
1739 gfs2_holder_uninit(ghs
+ x
);
1742 if (gfs2_holder_initialized(&r_gh
))
1743 gfs2_glock_dq_uninit(&r_gh
);
1748 static int gfs2_rename2(struct inode
*odir
, struct dentry
*odentry
,
1749 struct inode
*ndir
, struct dentry
*ndentry
,
1752 flags
&= ~RENAME_NOREPLACE
;
1754 if (flags
& ~RENAME_EXCHANGE
)
1757 if (flags
& RENAME_EXCHANGE
)
1758 return gfs2_exchange(odir
, odentry
, ndir
, ndentry
, flags
);
1760 return gfs2_rename(odir
, odentry
, ndir
, ndentry
);
1764 * gfs2_get_link - Follow a symbolic link
1765 * @dentry: The dentry of the link
1766 * @inode: The inode of the link
1767 * @done: destructor for return value
1769 * This can handle symlinks of any size.
1771 * Returns: 0 on success or error code
1774 static const char *gfs2_get_link(struct dentry
*dentry
,
1775 struct inode
*inode
,
1776 struct delayed_call
*done
)
1778 struct gfs2_inode
*ip
= GFS2_I(inode
);
1779 struct gfs2_holder i_gh
;
1780 struct buffer_head
*dibh
;
1786 return ERR_PTR(-ECHILD
);
1788 gfs2_holder_init(ip
->i_gl
, LM_ST_SHARED
, 0, &i_gh
);
1789 error
= gfs2_glock_nq(&i_gh
);
1791 gfs2_holder_uninit(&i_gh
);
1792 return ERR_PTR(error
);
1795 size
= (unsigned int)i_size_read(&ip
->i_inode
);
1797 gfs2_consist_inode(ip
);
1798 buf
= ERR_PTR(-EIO
);
1802 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
1804 buf
= ERR_PTR(error
);
1808 buf
= kzalloc(size
+ 1, GFP_NOFS
);
1810 buf
= ERR_PTR(-ENOMEM
);
1812 memcpy(buf
, dibh
->b_data
+ sizeof(struct gfs2_dinode
), size
);
1815 gfs2_glock_dq_uninit(&i_gh
);
1817 set_delayed_call(done
, kfree_link
, buf
);
1824 * @mask: The mask to be tested
1825 * @flags: Indicates whether this is an RCU path walk or not
1827 * This may be called from the VFS directly, or from within GFS2 with the
1828 * inode locked, so we look to see if the glock is already locked and only
1829 * lock the glock if its not already been done.
1834 int gfs2_permission(struct inode
*inode
, int mask
)
1836 struct gfs2_inode
*ip
;
1837 struct gfs2_holder i_gh
;
1840 gfs2_holder_mark_uninitialized(&i_gh
);
1842 if (gfs2_glock_is_locked_by_me(ip
->i_gl
) == NULL
) {
1843 if (mask
& MAY_NOT_BLOCK
)
1845 error
= gfs2_glock_nq_init(ip
->i_gl
, LM_ST_SHARED
, LM_FLAG_ANY
, &i_gh
);
1850 if ((mask
& MAY_WRITE
) && IS_IMMUTABLE(inode
))
1853 error
= generic_permission(inode
, mask
);
1854 if (gfs2_holder_initialized(&i_gh
))
1855 gfs2_glock_dq_uninit(&i_gh
);
1860 static int __gfs2_setattr_simple(struct inode
*inode
, struct iattr
*attr
)
1862 setattr_copy(inode
, attr
);
1863 mark_inode_dirty(inode
);
1868 * gfs2_setattr_simple -
1875 int gfs2_setattr_simple(struct inode
*inode
, struct iattr
*attr
)
1879 if (current
->journal_info
)
1880 return __gfs2_setattr_simple(inode
, attr
);
1882 error
= gfs2_trans_begin(GFS2_SB(inode
), RES_DINODE
, 0);
1886 error
= __gfs2_setattr_simple(inode
, attr
);
1887 gfs2_trans_end(GFS2_SB(inode
));
1891 static int setattr_chown(struct inode
*inode
, struct iattr
*attr
)
1893 struct gfs2_inode
*ip
= GFS2_I(inode
);
1894 struct gfs2_sbd
*sdp
= GFS2_SB(inode
);
1898 struct gfs2_alloc_parms ap
;
1900 ouid
= inode
->i_uid
;
1901 ogid
= inode
->i_gid
;
1902 nuid
= attr
->ia_uid
;
1903 ngid
= attr
->ia_gid
;
1905 if (!(attr
->ia_valid
& ATTR_UID
) || uid_eq(ouid
, nuid
))
1906 ouid
= nuid
= NO_UID_QUOTA_CHANGE
;
1907 if (!(attr
->ia_valid
& ATTR_GID
) || gid_eq(ogid
, ngid
))
1908 ogid
= ngid
= NO_GID_QUOTA_CHANGE
;
1909 error
= gfs2_qa_get(ip
);
1913 error
= gfs2_rindex_update(sdp
);
1917 error
= gfs2_quota_lock(ip
, nuid
, ngid
);
1921 ap
.target
= gfs2_get_inode_blocks(&ip
->i_inode
);
1923 if (!uid_eq(ouid
, NO_UID_QUOTA_CHANGE
) ||
1924 !gid_eq(ogid
, NO_GID_QUOTA_CHANGE
)) {
1925 error
= gfs2_quota_check(ip
, nuid
, ngid
, &ap
);
1930 error
= gfs2_trans_begin(sdp
, RES_DINODE
+ 2 * RES_QUOTA
, 0);
1934 error
= gfs2_setattr_simple(inode
, attr
);
1938 if (!uid_eq(ouid
, NO_UID_QUOTA_CHANGE
) ||
1939 !gid_eq(ogid
, NO_GID_QUOTA_CHANGE
)) {
1940 gfs2_quota_change(ip
, -(s64
)ap
.target
, ouid
, ogid
);
1941 gfs2_quota_change(ip
, ap
.target
, nuid
, ngid
);
1945 gfs2_trans_end(sdp
);
1947 gfs2_quota_unlock(ip
);
1954 * gfs2_setattr - Change attributes on an inode
1955 * @dentry: The dentry which is changing
1956 * @attr: The structure describing the change
1958 * The VFS layer wants to change one or more of an inodes attributes. Write
1959 * that change out to disk.
1964 static int gfs2_setattr(struct dentry
*dentry
, struct iattr
*attr
)
1966 struct inode
*inode
= d_inode(dentry
);
1967 struct gfs2_inode
*ip
= GFS2_I(inode
);
1968 struct gfs2_holder i_gh
;
1971 error
= gfs2_qa_get(ip
);
1975 error
= gfs2_glock_nq_init(ip
->i_gl
, LM_ST_EXCLUSIVE
, 0, &i_gh
);
1980 if (IS_IMMUTABLE(inode
) || IS_APPEND(inode
))
1983 error
= setattr_prepare(dentry
, attr
);
1987 if (attr
->ia_valid
& ATTR_SIZE
)
1988 error
= gfs2_setattr_size(inode
, attr
->ia_size
);
1989 else if (attr
->ia_valid
& (ATTR_UID
| ATTR_GID
))
1990 error
= setattr_chown(inode
, attr
);
1992 error
= gfs2_setattr_simple(inode
, attr
);
1993 if (!error
&& attr
->ia_valid
& ATTR_MODE
)
1994 error
= posix_acl_chmod(inode
, inode
->i_mode
);
1999 mark_inode_dirty(inode
);
2000 gfs2_glock_dq_uninit(&i_gh
);
2007 * gfs2_getattr - Read out an inode's attributes
2008 * @path: Object to query
2009 * @stat: The inode's stats
2010 * @request_mask: Mask of STATX_xxx flags indicating the caller's interests
2011 * @flags: AT_STATX_xxx setting
2013 * This may be called from the VFS directly, or from within GFS2 with the
2014 * inode locked, so we look to see if the glock is already locked and only
2015 * lock the glock if its not already been done. Note that its the NFS
2016 * readdirplus operation which causes this to be called (from filldir)
2017 * with the glock already held.
2022 static int gfs2_getattr(const struct path
*path
, struct kstat
*stat
,
2023 u32 request_mask
, unsigned int flags
)
2025 struct inode
*inode
= d_inode(path
->dentry
);
2026 struct gfs2_inode
*ip
= GFS2_I(inode
);
2027 struct gfs2_holder gh
;
2031 gfs2_holder_mark_uninitialized(&gh
);
2032 if (gfs2_glock_is_locked_by_me(ip
->i_gl
) == NULL
) {
2033 error
= gfs2_glock_nq_init(ip
->i_gl
, LM_ST_SHARED
, LM_FLAG_ANY
, &gh
);
2038 gfsflags
= ip
->i_diskflags
;
2039 if (gfsflags
& GFS2_DIF_APPENDONLY
)
2040 stat
->attributes
|= STATX_ATTR_APPEND
;
2041 if (gfsflags
& GFS2_DIF_IMMUTABLE
)
2042 stat
->attributes
|= STATX_ATTR_IMMUTABLE
;
2044 stat
->attributes_mask
|= (STATX_ATTR_APPEND
|
2045 STATX_ATTR_COMPRESSED
|
2046 STATX_ATTR_ENCRYPTED
|
2047 STATX_ATTR_IMMUTABLE
|
2050 generic_fillattr(inode
, stat
);
2052 if (gfs2_holder_initialized(&gh
))
2053 gfs2_glock_dq_uninit(&gh
);
2058 static int gfs2_fiemap(struct inode
*inode
, struct fiemap_extent_info
*fieinfo
,
2061 struct gfs2_inode
*ip
= GFS2_I(inode
);
2062 struct gfs2_holder gh
;
2065 inode_lock_shared(inode
);
2067 ret
= gfs2_glock_nq_init(ip
->i_gl
, LM_ST_SHARED
, 0, &gh
);
2071 ret
= iomap_fiemap(inode
, fieinfo
, start
, len
, &gfs2_iomap_ops
);
2073 gfs2_glock_dq_uninit(&gh
);
2076 inode_unlock_shared(inode
);
2080 loff_t
gfs2_seek_data(struct file
*file
, loff_t offset
)
2082 struct inode
*inode
= file
->f_mapping
->host
;
2083 struct gfs2_inode
*ip
= GFS2_I(inode
);
2084 struct gfs2_holder gh
;
2087 inode_lock_shared(inode
);
2088 ret
= gfs2_glock_nq_init(ip
->i_gl
, LM_ST_SHARED
, 0, &gh
);
2090 ret
= iomap_seek_data(inode
, offset
, &gfs2_iomap_ops
);
2091 gfs2_glock_dq_uninit(&gh
);
2092 inode_unlock_shared(inode
);
2096 return vfs_setpos(file
, ret
, inode
->i_sb
->s_maxbytes
);
2099 loff_t
gfs2_seek_hole(struct file
*file
, loff_t offset
)
2101 struct inode
*inode
= file
->f_mapping
->host
;
2102 struct gfs2_inode
*ip
= GFS2_I(inode
);
2103 struct gfs2_holder gh
;
2106 inode_lock_shared(inode
);
2107 ret
= gfs2_glock_nq_init(ip
->i_gl
, LM_ST_SHARED
, 0, &gh
);
2109 ret
= iomap_seek_hole(inode
, offset
, &gfs2_iomap_ops
);
2110 gfs2_glock_dq_uninit(&gh
);
2111 inode_unlock_shared(inode
);
2115 return vfs_setpos(file
, ret
, inode
->i_sb
->s_maxbytes
);
2118 const struct inode_operations gfs2_file_iops
= {
2119 .permission
= gfs2_permission
,
2120 .setattr
= gfs2_setattr
,
2121 .getattr
= gfs2_getattr
,
2122 .listxattr
= gfs2_listxattr
,
2123 .fiemap
= gfs2_fiemap
,
2124 .get_acl
= gfs2_get_acl
,
2125 .set_acl
= gfs2_set_acl
,
2128 const struct inode_operations gfs2_dir_iops
= {
2129 .create
= gfs2_create
,
2130 .lookup
= gfs2_lookup
,
2132 .unlink
= gfs2_unlink
,
2133 .symlink
= gfs2_symlink
,
2134 .mkdir
= gfs2_mkdir
,
2135 .rmdir
= gfs2_unlink
,
2136 .mknod
= gfs2_mknod
,
2137 .rename
= gfs2_rename2
,
2138 .permission
= gfs2_permission
,
2139 .setattr
= gfs2_setattr
,
2140 .getattr
= gfs2_getattr
,
2141 .listxattr
= gfs2_listxattr
,
2142 .fiemap
= gfs2_fiemap
,
2143 .get_acl
= gfs2_get_acl
,
2144 .set_acl
= gfs2_set_acl
,
2145 .atomic_open
= gfs2_atomic_open
,
2148 const struct inode_operations gfs2_symlink_iops
= {
2149 .get_link
= gfs2_get_link
,
2150 .permission
= gfs2_permission
,
2151 .setattr
= gfs2_setattr
,
2152 .getattr
= gfs2_getattr
,
2153 .listxattr
= gfs2_listxattr
,
2154 .fiemap
= gfs2_fiemap
,