2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
7 * of the GNU General Public License version 2.
10 #include <linux/sched.h>
11 #include <linux/slab.h>
12 #include <linux/spinlock.h>
13 #include <linux/completion.h>
14 #include <linux/buffer_head.h>
15 #include <linux/posix_acl.h>
16 #include <linux/sort.h>
17 #include <linux/gfs2_ondisk.h>
18 #include <linux/crc32.h>
19 #include <linux/lm_interface.h>
20 #include <linux/security.h>
33 #include "ops_address.h"
35 #include "ops_inode.h"
42 * gfs2_inode_attr_in - Copy attributes from the dinode into the VFS inode
43 * @ip: The GFS2 inode (with embedded disk inode data)
44 * @inode: The Linux VFS inode
48 void gfs2_inode_attr_in(struct gfs2_inode
*ip
)
50 struct inode
*inode
= &ip
->i_inode
;
51 struct gfs2_dinode
*di
= &ip
->i_di
;
53 inode
->i_ino
= ip
->i_num
.no_addr
;
55 switch (di
->di_mode
& S_IFMT
) {
58 inode
->i_rdev
= MKDEV(di
->di_major
, di
->di_minor
);
65 inode
->i_mode
= di
->di_mode
;
66 inode
->i_nlink
= di
->di_nlink
;
67 inode
->i_uid
= di
->di_uid
;
68 inode
->i_gid
= di
->di_gid
;
69 i_size_write(inode
, di
->di_size
);
70 inode
->i_atime
.tv_sec
= di
->di_atime
;
71 inode
->i_mtime
.tv_sec
= di
->di_mtime
;
72 inode
->i_ctime
.tv_sec
= di
->di_ctime
;
73 inode
->i_atime
.tv_nsec
= 0;
74 inode
->i_mtime
.tv_nsec
= 0;
75 inode
->i_ctime
.tv_nsec
= 0;
76 inode
->i_blocks
= di
->di_blocks
<<
77 (GFS2_SB(inode
)->sd_sb
.sb_bsize_shift
- GFS2_BASIC_BLOCK_SHIFT
);
79 if (di
->di_flags
& GFS2_DIF_IMMUTABLE
)
80 inode
->i_flags
|= S_IMMUTABLE
;
82 inode
->i_flags
&= ~S_IMMUTABLE
;
84 if (di
->di_flags
& GFS2_DIF_APPENDONLY
)
85 inode
->i_flags
|= S_APPEND
;
87 inode
->i_flags
&= ~S_APPEND
;
91 * gfs2_inode_attr_out - Copy attributes from VFS inode into the dinode
94 * Only copy out the attributes that we want the VFS layer
95 * to be able to modify.
98 void gfs2_inode_attr_out(struct gfs2_inode
*ip
)
100 struct inode
*inode
= &ip
->i_inode
;
101 struct gfs2_dinode
*di
= &ip
->i_di
;
102 gfs2_assert_withdraw(GFS2_SB(inode
),
103 (di
->di_mode
& S_IFMT
) == (inode
->i_mode
& S_IFMT
));
104 di
->di_mode
= inode
->i_mode
;
105 di
->di_uid
= inode
->i_uid
;
106 di
->di_gid
= inode
->i_gid
;
107 di
->di_atime
= inode
->i_atime
.tv_sec
;
108 di
->di_mtime
= inode
->i_mtime
.tv_sec
;
109 di
->di_ctime
= inode
->i_ctime
.tv_sec
;
112 static int iget_test(struct inode
*inode
, void *opaque
)
114 struct gfs2_inode
*ip
= GFS2_I(inode
);
115 struct gfs2_inum
*inum
= opaque
;
117 if (ip
&& ip
->i_num
.no_addr
== inum
->no_addr
)
123 static int iget_set(struct inode
*inode
, void *opaque
)
125 struct gfs2_inode
*ip
= GFS2_I(inode
);
126 struct gfs2_inum
*inum
= opaque
;
132 struct inode
*gfs2_ilookup(struct super_block
*sb
, struct gfs2_inum
*inum
)
134 return ilookup5(sb
, (unsigned long)inum
->no_formal_ino
,
138 static struct inode
*gfs2_iget(struct super_block
*sb
, struct gfs2_inum
*inum
)
140 return iget5_locked(sb
, (unsigned long)inum
->no_formal_ino
,
141 iget_test
, iget_set
, inum
);
145 * gfs2_inode_lookup - Lookup an inode
146 * @sb: The super block
147 * @inum: The inode number
148 * @type: The type of the inode
150 * Returns: A VFS inode, or an error
153 struct inode
*gfs2_inode_lookup(struct super_block
*sb
, struct gfs2_inum
*inum
, unsigned int type
)
155 struct inode
*inode
= gfs2_iget(sb
, inum
);
156 struct gfs2_inode
*ip
= GFS2_I(inode
);
157 struct gfs2_glock
*io_gl
;
161 return ERR_PTR(-ENOBUFS
);
163 if (inode
->i_state
& I_NEW
) {
164 struct gfs2_sbd
*sdp
= GFS2_SB(inode
);
165 umode_t mode
= DT2IF(type
);
166 inode
->i_private
= ip
;
167 inode
->i_mode
= mode
;
170 inode
->i_op
= &gfs2_file_iops
;
171 inode
->i_fop
= &gfs2_file_fops
;
172 inode
->i_mapping
->a_ops
= &gfs2_file_aops
;
173 } else if (S_ISDIR(mode
)) {
174 inode
->i_op
= &gfs2_dir_iops
;
175 inode
->i_fop
= &gfs2_dir_fops
;
176 } else if (S_ISLNK(mode
)) {
177 inode
->i_op
= &gfs2_symlink_iops
;
179 inode
->i_op
= &gfs2_dev_iops
;
182 error
= gfs2_glock_get(sdp
, inum
->no_addr
, &gfs2_inode_glops
, CREATE
, &ip
->i_gl
);
185 ip
->i_gl
->gl_object
= ip
;
187 error
= gfs2_glock_get(sdp
, inum
->no_addr
, &gfs2_iopen_glops
, CREATE
, &io_gl
);
191 ip
->i_vn
= ip
->i_gl
->gl_vn
- 1;
192 error
= gfs2_glock_nq_init(io_gl
, LM_ST_SHARED
, GL_EXACT
, &ip
->i_iopen_gh
);
196 gfs2_glock_put(io_gl
);
197 unlock_new_inode(inode
);
202 gfs2_glock_put(io_gl
);
204 ip
->i_gl
->gl_object
= NULL
;
205 gfs2_glock_put(ip
->i_gl
);
208 return ERR_PTR(error
);
212 * gfs2_inode_refresh - Refresh the incore copy of the dinode
213 * @ip: The GFS2 inode
218 int gfs2_inode_refresh(struct gfs2_inode
*ip
)
220 struct buffer_head
*dibh
;
223 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
227 if (gfs2_metatype_check(GFS2_SB(&ip
->i_inode
), dibh
, GFS2_METATYPE_DI
)) {
232 gfs2_dinode_in(&ip
->i_di
, dibh
->b_data
);
236 if (ip
->i_num
.no_addr
!= ip
->i_di
.di_num
.no_addr
) {
237 if (gfs2_consist_inode(ip
))
238 gfs2_dinode_print(&ip
->i_di
);
241 if (ip
->i_num
.no_formal_ino
!= ip
->i_di
.di_num
.no_formal_ino
)
244 ip
->i_vn
= ip
->i_gl
->gl_vn
;
249 int gfs2_dinode_dealloc(struct gfs2_inode
*ip
)
251 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
252 struct gfs2_alloc
*al
;
253 struct gfs2_rgrpd
*rgd
;
256 if (ip
->i_di
.di_blocks
!= 1) {
257 if (gfs2_consist_inode(ip
))
258 gfs2_dinode_print(&ip
->i_di
);
262 al
= gfs2_alloc_get(ip
);
264 error
= gfs2_quota_hold(ip
, NO_QUOTA_CHANGE
, NO_QUOTA_CHANGE
);
268 error
= gfs2_rindex_hold(sdp
, &al
->al_ri_gh
);
272 rgd
= gfs2_blk2rgrpd(sdp
, ip
->i_num
.no_addr
);
274 gfs2_consist_inode(ip
);
276 goto out_rindex_relse
;
279 error
= gfs2_glock_nq_init(rgd
->rd_gl
, LM_ST_EXCLUSIVE
, 0,
282 goto out_rindex_relse
;
284 error
= gfs2_trans_begin(sdp
, RES_RG_BIT
+ RES_STATFS
+ RES_QUOTA
, 1);
288 gfs2_trans_add_gl(ip
->i_gl
);
290 gfs2_free_di(rgd
, ip
);
293 clear_bit(GLF_STICKY
, &ip
->i_gl
->gl_flags
);
296 gfs2_glock_dq_uninit(&al
->al_rgd_gh
);
298 gfs2_glock_dq_uninit(&al
->al_ri_gh
);
300 gfs2_quota_unhold(ip
);
307 * gfs2_change_nlink - Change nlink count on inode
308 * @ip: The GFS2 inode
309 * @diff: The change in the nlink count required
314 int gfs2_change_nlink(struct gfs2_inode
*ip
, int diff
)
316 struct gfs2_sbd
*sdp
= ip
->i_inode
.i_sb
->s_fs_info
;
317 struct buffer_head
*dibh
;
321 BUG_ON(ip
->i_di
.di_nlink
!= ip
->i_inode
.i_nlink
);
322 nlink
= ip
->i_di
.di_nlink
+ diff
;
324 /* If we are reducing the nlink count, but the new value ends up being
325 bigger than the old one, we must have underflowed. */
326 if (diff
< 0 && nlink
> ip
->i_di
.di_nlink
) {
327 if (gfs2_consist_inode(ip
))
328 gfs2_dinode_print(&ip
->i_di
);
332 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
336 ip
->i_di
.di_nlink
= nlink
;
337 ip
->i_di
.di_ctime
= get_seconds();
338 ip
->i_inode
.i_nlink
= nlink
;
340 gfs2_trans_add_bh(ip
->i_gl
, dibh
, 1);
341 gfs2_dinode_out(&ip
->i_di
, dibh
->b_data
);
343 mark_inode_dirty(&ip
->i_inode
);
345 if (ip
->i_di
.di_nlink
== 0) {
346 struct gfs2_rgrpd
*rgd
;
347 struct gfs2_holder ri_gh
, rg_gh
;
349 error
= gfs2_rindex_hold(sdp
, &ri_gh
);
353 rgd
= gfs2_blk2rgrpd(sdp
, ip
->i_num
.no_addr
);
356 error
= gfs2_glock_nq_init(rgd
->rd_gl
, LM_ST_EXCLUSIVE
, 0, &rg_gh
);
360 clear_nlink(&ip
->i_inode
);
361 gfs2_unlink_di(&ip
->i_inode
); /* mark inode unlinked */
362 gfs2_glock_dq_uninit(&rg_gh
);
364 gfs2_glock_dq_uninit(&ri_gh
);
370 struct inode
*gfs2_lookup_simple(struct inode
*dip
, const char *name
)
373 gfs2_str2qstr(&qstr
, name
);
374 return gfs2_lookupi(dip
, &qstr
, 1, NULL
);
379 * gfs2_lookupi - Look up a filename in a directory and return its inode
380 * @d_gh: An initialized holder for the directory glock
381 * @name: The name of the inode to look for
382 * @is_root: If 1, ignore the caller's permissions
383 * @i_gh: An uninitialized holder for the new inode glock
385 * There will always be a vnode (Linux VFS inode) for the d_gh inode unless
391 struct inode
*gfs2_lookupi(struct inode
*dir
, const struct qstr
*name
,
392 int is_root
, struct nameidata
*nd
)
394 struct super_block
*sb
= dir
->i_sb
;
395 struct gfs2_inode
*dip
= GFS2_I(dir
);
396 struct gfs2_holder d_gh
;
397 struct gfs2_inum inum
;
400 struct inode
*inode
= NULL
;
402 if (!name
->len
|| name
->len
> GFS2_FNAMESIZE
)
403 return ERR_PTR(-ENAMETOOLONG
);
405 if ((name
->len
== 1 && memcmp(name
->name
, ".", 1) == 0) ||
406 (name
->len
== 2 && memcmp(name
->name
, "..", 2) == 0 &&
407 dir
== sb
->s_root
->d_inode
)) {
412 error
= gfs2_glock_nq_init(dip
->i_gl
, LM_ST_SHARED
, 0, &d_gh
);
414 return ERR_PTR(error
);
417 error
= permission(dir
, MAY_EXEC
, NULL
);
422 error
= gfs2_dir_search(dir
, name
, &inum
, &type
);
426 inode
= gfs2_inode_lookup(sb
, &inum
, type
);
429 gfs2_glock_dq_uninit(&d_gh
);
430 if (error
== -ENOENT
)
435 static int pick_formal_ino_1(struct gfs2_sbd
*sdp
, u64
*formal_ino
)
437 struct gfs2_inode
*ip
= GFS2_I(sdp
->sd_ir_inode
);
438 struct buffer_head
*bh
;
439 struct gfs2_inum_range ir
;
442 error
= gfs2_trans_begin(sdp
, RES_DINODE
, 0);
445 mutex_lock(&sdp
->sd_inum_mutex
);
447 error
= gfs2_meta_inode_buffer(ip
, &bh
);
449 mutex_unlock(&sdp
->sd_inum_mutex
);
454 gfs2_inum_range_in(&ir
, bh
->b_data
+ sizeof(struct gfs2_dinode
));
457 *formal_ino
= ir
.ir_start
++;
459 gfs2_trans_add_bh(ip
->i_gl
, bh
, 1);
460 gfs2_inum_range_out(&ir
,
461 bh
->b_data
+ sizeof(struct gfs2_dinode
));
463 mutex_unlock(&sdp
->sd_inum_mutex
);
470 mutex_unlock(&sdp
->sd_inum_mutex
);
476 static int pick_formal_ino_2(struct gfs2_sbd
*sdp
, u64
*formal_ino
)
478 struct gfs2_inode
*ip
= GFS2_I(sdp
->sd_ir_inode
);
479 struct gfs2_inode
*m_ip
= GFS2_I(sdp
->sd_inum_inode
);
480 struct gfs2_holder gh
;
481 struct buffer_head
*bh
;
482 struct gfs2_inum_range ir
;
485 error
= gfs2_glock_nq_init(m_ip
->i_gl
, LM_ST_EXCLUSIVE
, 0, &gh
);
489 error
= gfs2_trans_begin(sdp
, 2 * RES_DINODE
, 0);
492 mutex_lock(&sdp
->sd_inum_mutex
);
494 error
= gfs2_meta_inode_buffer(ip
, &bh
);
498 gfs2_inum_range_in(&ir
, bh
->b_data
+ sizeof(struct gfs2_dinode
));
501 struct buffer_head
*m_bh
;
504 error
= gfs2_meta_inode_buffer(m_ip
, &m_bh
);
508 x
= *(u64
*)(m_bh
->b_data
+ sizeof(struct gfs2_dinode
));
509 x
= y
= be64_to_cpu(x
);
511 ir
.ir_length
= GFS2_INUM_QUANTUM
;
512 x
+= GFS2_INUM_QUANTUM
;
514 gfs2_consist_inode(m_ip
);
516 gfs2_trans_add_bh(m_ip
->i_gl
, m_bh
, 1);
517 *(u64
*)(m_bh
->b_data
+ sizeof(struct gfs2_dinode
)) = x
;
522 *formal_ino
= ir
.ir_start
++;
525 gfs2_trans_add_bh(ip
->i_gl
, bh
, 1);
526 gfs2_inum_range_out(&ir
, bh
->b_data
+ sizeof(struct gfs2_dinode
));
531 mutex_unlock(&sdp
->sd_inum_mutex
);
534 gfs2_glock_dq_uninit(&gh
);
538 static int pick_formal_ino(struct gfs2_sbd
*sdp
, u64
*inum
)
542 error
= pick_formal_ino_1(sdp
, inum
);
546 error
= pick_formal_ino_2(sdp
, inum
);
552 * create_ok - OK to create a new on-disk inode here?
553 * @dip: Directory in which dinode is to be created
554 * @name: Name of new dinode
560 static int create_ok(struct gfs2_inode
*dip
, const struct qstr
*name
,
565 error
= permission(&dip
->i_inode
, MAY_WRITE
| MAY_EXEC
, NULL
);
569 /* Don't create entries in an unlinked directory */
570 if (!dip
->i_di
.di_nlink
)
573 error
= gfs2_dir_search(&dip
->i_inode
, name
, NULL
, NULL
);
584 if (dip
->i_di
.di_entries
== (u32
)-1)
586 if (S_ISDIR(mode
) && dip
->i_di
.di_nlink
== (u32
)-1)
592 static void munge_mode_uid_gid(struct gfs2_inode
*dip
, unsigned int *mode
,
593 unsigned int *uid
, unsigned int *gid
)
595 if (GFS2_SB(&dip
->i_inode
)->sd_args
.ar_suiddir
&&
596 (dip
->i_di
.di_mode
& S_ISUID
) && dip
->i_di
.di_uid
) {
599 else if (dip
->i_di
.di_uid
!= current
->fsuid
)
601 *uid
= dip
->i_di
.di_uid
;
603 *uid
= current
->fsuid
;
605 if (dip
->i_di
.di_mode
& S_ISGID
) {
608 *gid
= dip
->i_di
.di_gid
;
610 *gid
= current
->fsgid
;
613 static int alloc_dinode(struct gfs2_inode
*dip
, struct gfs2_inum
*inum
,
616 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
621 dip
->i_alloc
.al_requested
= RES_DINODE
;
622 error
= gfs2_inplace_reserve(dip
);
626 error
= gfs2_trans_begin(sdp
, RES_RG_BIT
+ RES_STATFS
, 0);
630 inum
->no_addr
= gfs2_alloc_di(dip
, generation
);
635 gfs2_inplace_release(dip
);
642 * init_dinode - Fill in a new dinode structure
643 * @dip: the directory this inode is being created in
644 * @gl: The glock covering the new inode
645 * @inum: the inode number
646 * @mode: the file permissions
652 static void init_dinode(struct gfs2_inode
*dip
, struct gfs2_glock
*gl
,
653 const struct gfs2_inum
*inum
, unsigned int mode
,
654 unsigned int uid
, unsigned int gid
,
655 const u64
*generation
)
657 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
658 struct gfs2_dinode
*di
;
659 struct buffer_head
*dibh
;
661 dibh
= gfs2_meta_new(gl
, inum
->no_addr
);
662 gfs2_trans_add_bh(gl
, dibh
, 1);
663 gfs2_metatype_set(dibh
, GFS2_METATYPE_DI
, GFS2_FORMAT_DI
);
664 gfs2_buffer_clear_tail(dibh
, sizeof(struct gfs2_dinode
));
665 di
= (struct gfs2_dinode
*)dibh
->b_data
;
667 di
->di_num
.no_formal_ino
= cpu_to_be64(inum
->no_formal_ino
);
668 di
->di_num
.no_addr
= cpu_to_be64(inum
->no_addr
);
669 di
->di_mode
= cpu_to_be32(mode
);
670 di
->di_uid
= cpu_to_be32(uid
);
671 di
->di_gid
= cpu_to_be32(gid
);
672 di
->di_nlink
= cpu_to_be32(0);
673 di
->di_size
= cpu_to_be64(0);
674 di
->di_blocks
= cpu_to_be64(1);
675 di
->di_atime
= di
->di_mtime
= di
->di_ctime
= cpu_to_be64(get_seconds());
676 di
->di_major
= di
->di_minor
= cpu_to_be32(0);
677 di
->di_goal_meta
= di
->di_goal_data
= cpu_to_be64(inum
->no_addr
);
678 di
->di_generation
= cpu_to_be64(*generation
);
679 di
->di_flags
= cpu_to_be32(0);
682 if ((dip
->i_di
.di_flags
& GFS2_DIF_INHERIT_JDATA
) ||
683 gfs2_tune_get(sdp
, gt_new_files_jdata
))
684 di
->di_flags
|= cpu_to_be32(GFS2_DIF_JDATA
);
685 if ((dip
->i_di
.di_flags
& GFS2_DIF_INHERIT_DIRECTIO
) ||
686 gfs2_tune_get(sdp
, gt_new_files_directio
))
687 di
->di_flags
|= cpu_to_be32(GFS2_DIF_DIRECTIO
);
688 } else if (S_ISDIR(mode
)) {
689 di
->di_flags
|= cpu_to_be32(dip
->i_di
.di_flags
&
690 GFS2_DIF_INHERIT_DIRECTIO
);
691 di
->di_flags
|= cpu_to_be32(dip
->i_di
.di_flags
&
692 GFS2_DIF_INHERIT_JDATA
);
696 di
->di_payload_format
= cpu_to_be32(0);
697 di
->di_height
= cpu_to_be32(0);
700 di
->di_depth
= cpu_to_be16(0);
701 di
->di_entries
= cpu_to_be32(0);
702 memset(&di
->__pad4
, 0, sizeof(di
->__pad4
));
703 di
->di_eattr
= cpu_to_be64(0);
704 memset(&di
->di_reserved
, 0, sizeof(di
->di_reserved
));
709 static int make_dinode(struct gfs2_inode
*dip
, struct gfs2_glock
*gl
,
710 unsigned int mode
, const struct gfs2_inum
*inum
,
711 const u64
*generation
)
713 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
714 unsigned int uid
, gid
;
717 munge_mode_uid_gid(dip
, &mode
, &uid
, &gid
);
720 error
= gfs2_quota_lock(dip
, uid
, gid
);
724 error
= gfs2_quota_check(dip
, uid
, gid
);
728 error
= gfs2_trans_begin(sdp
, RES_DINODE
+ RES_QUOTA
, 0);
732 init_dinode(dip
, gl
, inum
, mode
, uid
, gid
, generation
);
733 gfs2_quota_change(dip
, +1, uid
, gid
);
737 gfs2_quota_unlock(dip
);
743 static int link_dinode(struct gfs2_inode
*dip
, const struct qstr
*name
,
744 struct gfs2_inode
*ip
)
746 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
747 struct gfs2_alloc
*al
;
749 struct buffer_head
*dibh
;
752 al
= gfs2_alloc_get(dip
);
754 error
= gfs2_quota_lock(dip
, NO_QUOTA_CHANGE
, NO_QUOTA_CHANGE
);
758 error
= alloc_required
= gfs2_diradd_alloc_required(&dip
->i_inode
, name
);
759 if (alloc_required
< 0)
761 if (alloc_required
) {
762 error
= gfs2_quota_check(dip
, dip
->i_di
.di_uid
,
765 goto fail_quota_locks
;
767 al
->al_requested
= sdp
->sd_max_dirres
;
769 error
= gfs2_inplace_reserve(dip
);
771 goto fail_quota_locks
;
773 error
= gfs2_trans_begin(sdp
, sdp
->sd_max_dirres
+
774 al
->al_rgd
->rd_ri
.ri_length
+
776 RES_STATFS
+ RES_QUOTA
, 0);
780 error
= gfs2_trans_begin(sdp
, RES_LEAF
+ 2 * RES_DINODE
, 0);
782 goto fail_quota_locks
;
785 error
= gfs2_dir_add(&dip
->i_inode
, name
, &ip
->i_num
, IF2DT(ip
->i_di
.di_mode
));
789 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
792 ip
->i_di
.di_nlink
= 1;
793 gfs2_trans_add_bh(ip
->i_gl
, dibh
, 1);
794 gfs2_dinode_out(&ip
->i_di
, dibh
->b_data
);
802 if (dip
->i_alloc
.al_rgd
)
803 gfs2_inplace_release(dip
);
806 gfs2_quota_unlock(dip
);
813 static int gfs2_security_init(struct gfs2_inode
*dip
, struct gfs2_inode
*ip
)
819 struct gfs2_ea_request er
;
821 err
= security_inode_init_security(&ip
->i_inode
, &dip
->i_inode
,
822 &name
, &value
, &len
);
825 if (err
== -EOPNOTSUPP
)
830 memset(&er
, 0, sizeof(struct gfs2_ea_request
));
832 er
.er_type
= GFS2_EATYPE_SECURITY
;
835 er
.er_name_len
= strlen(name
);
836 er
.er_data_len
= len
;
838 err
= gfs2_ea_set_i(ip
, &er
);
847 * gfs2_createi - Create a new inode
848 * @ghs: An array of two holders
849 * @name: The name of the new file
850 * @mode: the permissions on the new inode
852 * @ghs[0] is an initialized holder for the directory
853 * @ghs[1] is the holder for the inode lock
855 * If the return value is not NULL, the glocks on both the directory and the new
856 * file are held. A transaction has been started and an inplace reservation
862 struct inode
*gfs2_createi(struct gfs2_holder
*ghs
, const struct qstr
*name
,
866 struct gfs2_inode
*dip
= ghs
->gh_gl
->gl_object
;
867 struct inode
*dir
= &dip
->i_inode
;
868 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
869 struct gfs2_inum inum
;
873 if (!name
->len
|| name
->len
> GFS2_FNAMESIZE
)
874 return ERR_PTR(-ENAMETOOLONG
);
876 gfs2_holder_reinit(LM_ST_EXCLUSIVE
, 0, ghs
);
877 error
= gfs2_glock_nq(ghs
);
881 error
= create_ok(dip
, name
, mode
);
885 error
= pick_formal_ino(sdp
, &inum
.no_formal_ino
);
889 error
= alloc_dinode(dip
, &inum
, &generation
);
893 if (inum
.no_addr
< dip
->i_num
.no_addr
) {
896 error
= gfs2_glock_nq_num(sdp
, inum
.no_addr
,
897 &gfs2_inode_glops
, LM_ST_EXCLUSIVE
,
900 return ERR_PTR(error
);
903 gfs2_holder_reinit(LM_ST_EXCLUSIVE
, 0, ghs
);
904 error
= gfs2_glock_nq(ghs
);
906 gfs2_glock_dq_uninit(ghs
+ 1);
907 return ERR_PTR(error
);
910 error
= create_ok(dip
, name
, mode
);
914 error
= gfs2_glock_nq_num(sdp
, inum
.no_addr
,
915 &gfs2_inode_glops
, LM_ST_EXCLUSIVE
,
921 error
= make_dinode(dip
, ghs
[1].gh_gl
, mode
, &inum
, &generation
);
925 inode
= gfs2_inode_lookup(dir
->i_sb
, &inum
, IF2DT(mode
));
929 error
= gfs2_inode_refresh(GFS2_I(inode
));
933 error
= gfs2_acl_create(dip
, GFS2_I(inode
));
937 error
= gfs2_security_init(dip
, GFS2_I(inode
));
941 error
= link_dinode(dip
, name
, GFS2_I(inode
));
946 return ERR_PTR(-ENOMEM
);
952 gfs2_glock_dq_uninit(ghs
+ 1);
956 return ERR_PTR(error
);
960 * gfs2_rmdiri - Remove a directory
961 * @dip: The parent directory of the directory to be removed
962 * @name: The name of the directory to be removed
963 * @ip: The GFS2 inode of the directory to be removed
965 * Assumes Glocks on dip and ip are held
970 int gfs2_rmdiri(struct gfs2_inode
*dip
, const struct qstr
*name
,
971 struct gfs2_inode
*ip
)
976 if (ip
->i_di
.di_entries
!= 2) {
977 if (gfs2_consist_inode(ip
))
978 gfs2_dinode_print(&ip
->i_di
);
982 error
= gfs2_dir_del(dip
, name
);
986 error
= gfs2_change_nlink(dip
, -1);
990 gfs2_str2qstr(&dotname
, ".");
991 error
= gfs2_dir_del(ip
, &dotname
);
995 gfs2_str2qstr(&dotname
, "..");
996 error
= gfs2_dir_del(ip
, &dotname
);
1000 error
= gfs2_change_nlink(ip
, -2);
1008 * gfs2_unlink_ok - check to see that a inode is still in a directory
1009 * @dip: the directory
1010 * @name: the name of the file
1013 * Assumes that the lock on (at least) @dip is held.
1015 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
1018 int gfs2_unlink_ok(struct gfs2_inode
*dip
, const struct qstr
*name
,
1019 struct gfs2_inode
*ip
)
1021 struct gfs2_inum inum
;
1025 if (IS_IMMUTABLE(&ip
->i_inode
) || IS_APPEND(&ip
->i_inode
))
1028 if ((dip
->i_di
.di_mode
& S_ISVTX
) &&
1029 dip
->i_di
.di_uid
!= current
->fsuid
&&
1030 ip
->i_di
.di_uid
!= current
->fsuid
&& !capable(CAP_FOWNER
))
1033 if (IS_APPEND(&dip
->i_inode
))
1036 error
= permission(&dip
->i_inode
, MAY_WRITE
| MAY_EXEC
, NULL
);
1040 error
= gfs2_dir_search(&dip
->i_inode
, name
, &inum
, &type
);
1044 if (!gfs2_inum_equal(&inum
, &ip
->i_num
))
1047 if (IF2DT(ip
->i_di
.di_mode
) != type
) {
1048 gfs2_consist_inode(dip
);
1056 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
1060 * Follow @to back to the root and make sure we don't encounter @this
1061 * Assumes we already hold the rename lock.
1066 int gfs2_ok_to_move(struct gfs2_inode
*this, struct gfs2_inode
*to
)
1068 struct inode
*dir
= &to
->i_inode
;
1069 struct super_block
*sb
= dir
->i_sb
;
1074 gfs2_str2qstr(&dotdot
, "..");
1079 if (dir
== &this->i_inode
) {
1083 if (dir
== sb
->s_root
->d_inode
) {
1088 tmp
= gfs2_lookupi(dir
, &dotdot
, 1, NULL
);
1090 error
= PTR_ERR(tmp
);
1104 * gfs2_readlinki - return the contents of a symlink
1105 * @ip: the symlink's inode
1106 * @buf: a pointer to the buffer to be filled
1107 * @len: a pointer to the length of @buf
1109 * If @buf is too small, a piece of memory is kmalloc()ed and needs
1110 * to be freed by the caller.
1115 int gfs2_readlinki(struct gfs2_inode
*ip
, char **buf
, unsigned int *len
)
1117 struct gfs2_holder i_gh
;
1118 struct buffer_head
*dibh
;
1122 gfs2_holder_init(ip
->i_gl
, LM_ST_SHARED
, GL_ATIME
, &i_gh
);
1123 error
= gfs2_glock_nq_atime(&i_gh
);
1125 gfs2_holder_uninit(&i_gh
);
1129 if (!ip
->i_di
.di_size
) {
1130 gfs2_consist_inode(ip
);
1135 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
1139 x
= ip
->i_di
.di_size
+ 1;
1141 *buf
= kmalloc(x
, GFP_KERNEL
);
1148 memcpy(*buf
, dibh
->b_data
+ sizeof(struct gfs2_dinode
), x
);
1154 gfs2_glock_dq_uninit(&i_gh
);
1159 * gfs2_glock_nq_atime - Acquire a hold on an inode's glock, and
1160 * conditionally update the inode's atime
1161 * @gh: the holder to acquire
1163 * Tests atime (access time) for gfs2_read, gfs2_readdir and gfs2_mmap
1164 * Update if the difference between the current time and the inode's current
1165 * atime is greater than an interval specified at mount.
1170 int gfs2_glock_nq_atime(struct gfs2_holder
*gh
)
1172 struct gfs2_glock
*gl
= gh
->gh_gl
;
1173 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
1174 struct gfs2_inode
*ip
= gl
->gl_object
;
1175 s64 curtime
, quantum
= gfs2_tune_get(sdp
, gt_atime_quantum
);
1180 if (gfs2_assert_warn(sdp
, gh
->gh_flags
& GL_ATIME
) ||
1181 gfs2_assert_warn(sdp
, !(gh
->gh_flags
& GL_ASYNC
)) ||
1182 gfs2_assert_warn(sdp
, gl
->gl_ops
== &gfs2_inode_glops
))
1185 state
= gh
->gh_state
;
1186 flags
= gh
->gh_flags
;
1188 error
= gfs2_glock_nq(gh
);
1192 if (test_bit(SDF_NOATIME
, &sdp
->sd_flags
) ||
1193 (sdp
->sd_vfs
->s_flags
& MS_RDONLY
))
1196 curtime
= get_seconds();
1197 if (curtime
- ip
->i_di
.di_atime
>= quantum
) {
1199 gfs2_holder_reinit(LM_ST_EXCLUSIVE
, gh
->gh_flags
& ~LM_FLAG_ANY
,
1201 error
= gfs2_glock_nq(gh
);
1205 /* Verify that atime hasn't been updated while we were
1206 trying to get exclusive lock. */
1208 curtime
= get_seconds();
1209 if (curtime
- ip
->i_di
.di_atime
>= quantum
) {
1210 struct buffer_head
*dibh
;
1211 struct gfs2_dinode
*di
;
1213 error
= gfs2_trans_begin(sdp
, RES_DINODE
, 0);
1214 if (error
== -EROFS
)
1219 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
1221 goto fail_end_trans
;
1223 ip
->i_di
.di_atime
= curtime
;
1225 gfs2_trans_add_bh(ip
->i_gl
, dibh
, 1);
1226 di
= (struct gfs2_dinode
*)dibh
->b_data
;
1227 di
->di_atime
= cpu_to_be64(ip
->i_di
.di_atime
);
1230 gfs2_trans_end(sdp
);
1233 /* If someone else has asked for the glock,
1234 unlock and let them have it. Then reacquire
1235 in the original state. */
1236 if (gfs2_glock_is_blocking(gl
)) {
1238 gfs2_holder_reinit(state
, flags
, gh
);
1239 return gfs2_glock_nq(gh
);
1246 gfs2_trans_end(sdp
);
1253 * glock_compare_atime - Compare two struct gfs2_glock structures for sort
1254 * @arg_a: the first structure
1255 * @arg_b: the second structure
1257 * Returns: 1 if A > B
1262 static int glock_compare_atime(const void *arg_a
, const void *arg_b
)
1264 const struct gfs2_holder
*gh_a
= *(const struct gfs2_holder
**)arg_a
;
1265 const struct gfs2_holder
*gh_b
= *(const struct gfs2_holder
**)arg_b
;
1266 const struct lm_lockname
*a
= &gh_a
->gh_gl
->gl_name
;
1267 const struct lm_lockname
*b
= &gh_b
->gh_gl
->gl_name
;
1269 if (a
->ln_number
> b
->ln_number
)
1271 if (a
->ln_number
< b
->ln_number
)
1273 if (gh_a
->gh_state
== LM_ST_SHARED
&& gh_b
->gh_state
== LM_ST_EXCLUSIVE
)
1275 if (gh_a
->gh_state
== LM_ST_SHARED
&& (gh_b
->gh_flags
& GL_ATIME
))
1282 * gfs2_glock_nq_m_atime - acquire multiple glocks where one may need an
1284 * @num_gh: the number of structures
1285 * @ghs: an array of struct gfs2_holder structures
1287 * Returns: 0 on success (all glocks acquired),
1288 * errno on failure (no glocks acquired)
1291 int gfs2_glock_nq_m_atime(unsigned int num_gh
, struct gfs2_holder
*ghs
)
1293 struct gfs2_holder
**p
;
1301 ghs
->gh_flags
&= ~(LM_FLAG_TRY
| GL_ASYNC
);
1302 if (ghs
->gh_flags
& GL_ATIME
)
1303 error
= gfs2_glock_nq_atime(ghs
);
1305 error
= gfs2_glock_nq(ghs
);
1309 p
= kcalloc(num_gh
, sizeof(struct gfs2_holder
*), GFP_KERNEL
);
1313 for (x
= 0; x
< num_gh
; x
++)
1316 sort(p
, num_gh
, sizeof(struct gfs2_holder
*), glock_compare_atime
,NULL
);
1318 for (x
= 0; x
< num_gh
; x
++) {
1319 p
[x
]->gh_flags
&= ~(LM_FLAG_TRY
| GL_ASYNC
);
1321 if (p
[x
]->gh_flags
& GL_ATIME
)
1322 error
= gfs2_glock_nq_atime(p
[x
]);
1324 error
= gfs2_glock_nq(p
[x
]);
1328 gfs2_glock_dq(p
[x
]);
1339 __gfs2_setattr_simple(struct gfs2_inode
*ip
, struct iattr
*attr
)
1341 struct buffer_head
*dibh
;
1344 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
1346 error
= inode_setattr(&ip
->i_inode
, attr
);
1347 gfs2_assert_warn(GFS2_SB(&ip
->i_inode
), !error
);
1348 gfs2_inode_attr_out(ip
);
1350 gfs2_trans_add_bh(ip
->i_gl
, dibh
, 1);
1351 gfs2_dinode_out(&ip
->i_di
, dibh
->b_data
);
1358 * gfs2_setattr_simple -
1362 * Called with a reference on the vnode.
1367 int gfs2_setattr_simple(struct gfs2_inode
*ip
, struct iattr
*attr
)
1371 if (current
->journal_info
)
1372 return __gfs2_setattr_simple(ip
, attr
);
1374 error
= gfs2_trans_begin(GFS2_SB(&ip
->i_inode
), RES_DINODE
, 0);
1378 error
= __gfs2_setattr_simple(ip
, attr
);
1379 gfs2_trans_end(GFS2_SB(&ip
->i_inode
));