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"
41 static int iget_test(struct inode
*inode
, void *opaque
)
43 struct gfs2_inode
*ip
= GFS2_I(inode
);
44 struct gfs2_inum_host
*inum
= opaque
;
46 if (ip
->i_num
.no_addr
== inum
->no_addr
)
52 static int iget_set(struct inode
*inode
, void *opaque
)
54 struct gfs2_inode
*ip
= GFS2_I(inode
);
55 struct gfs2_inum_host
*inum
= opaque
;
58 inode
->i_ino
= inum
->no_addr
;
62 struct inode
*gfs2_ilookup(struct super_block
*sb
, struct gfs2_inum_host
*inum
)
64 return ilookup5(sb
, (unsigned long)inum
->no_formal_ino
,
68 static struct inode
*gfs2_iget(struct super_block
*sb
, struct gfs2_inum_host
*inum
)
70 return iget5_locked(sb
, (unsigned long)inum
->no_formal_ino
,
71 iget_test
, iget_set
, inum
);
75 * gfs2_inode_lookup - Lookup an inode
76 * @sb: The super block
77 * @inum: The inode number
78 * @type: The type of the inode
80 * Returns: A VFS inode, or an error
83 struct inode
*gfs2_inode_lookup(struct super_block
*sb
, struct gfs2_inum_host
*inum
, unsigned int type
)
85 struct inode
*inode
= gfs2_iget(sb
, inum
);
86 struct gfs2_inode
*ip
= GFS2_I(inode
);
87 struct gfs2_glock
*io_gl
;
91 return ERR_PTR(-ENOBUFS
);
93 if (inode
->i_state
& I_NEW
) {
94 struct gfs2_sbd
*sdp
= GFS2_SB(inode
);
95 umode_t mode
= DT2IF(type
);
96 inode
->i_private
= ip
;
100 inode
->i_op
= &gfs2_file_iops
;
101 inode
->i_fop
= &gfs2_file_fops
;
102 inode
->i_mapping
->a_ops
= &gfs2_file_aops
;
103 } else if (S_ISDIR(mode
)) {
104 inode
->i_op
= &gfs2_dir_iops
;
105 inode
->i_fop
= &gfs2_dir_fops
;
106 } else if (S_ISLNK(mode
)) {
107 inode
->i_op
= &gfs2_symlink_iops
;
109 inode
->i_op
= &gfs2_dev_iops
;
112 error
= gfs2_glock_get(sdp
, inum
->no_addr
, &gfs2_inode_glops
, CREATE
, &ip
->i_gl
);
115 ip
->i_gl
->gl_object
= ip
;
117 error
= gfs2_glock_get(sdp
, inum
->no_addr
, &gfs2_iopen_glops
, CREATE
, &io_gl
);
121 set_bit(GIF_INVALID
, &ip
->i_flags
);
122 error
= gfs2_glock_nq_init(io_gl
, LM_ST_SHARED
, GL_EXACT
, &ip
->i_iopen_gh
);
126 gfs2_glock_put(io_gl
);
127 unlock_new_inode(inode
);
132 gfs2_glock_put(io_gl
);
134 ip
->i_gl
->gl_object
= NULL
;
135 gfs2_glock_put(ip
->i_gl
);
138 return ERR_PTR(error
);
141 static int gfs2_dinode_in(struct gfs2_inode
*ip
, const void *buf
)
143 struct gfs2_dinode_host
*di
= &ip
->i_di
;
144 const struct gfs2_dinode
*str
= buf
;
146 if (ip
->i_num
.no_addr
!= be64_to_cpu(str
->di_num
.no_addr
)) {
147 if (gfs2_consist_inode(ip
))
148 gfs2_dinode_print(ip
);
151 if (ip
->i_num
.no_formal_ino
!= be64_to_cpu(str
->di_num
.no_formal_ino
))
154 ip
->i_inode
.i_mode
= be32_to_cpu(str
->di_mode
);
155 ip
->i_inode
.i_rdev
= 0;
156 switch (ip
->i_inode
.i_mode
& S_IFMT
) {
159 ip
->i_inode
.i_rdev
= MKDEV(be32_to_cpu(str
->di_major
),
160 be32_to_cpu(str
->di_minor
));
164 ip
->i_inode
.i_uid
= be32_to_cpu(str
->di_uid
);
165 ip
->i_inode
.i_gid
= be32_to_cpu(str
->di_gid
);
167 * We will need to review setting the nlink count here in the
168 * light of the forthcoming ro bind mount work. This is a reminder
171 ip
->i_inode
.i_nlink
= be32_to_cpu(str
->di_nlink
);
172 di
->di_size
= be64_to_cpu(str
->di_size
);
173 i_size_write(&ip
->i_inode
, di
->di_size
);
174 di
->di_blocks
= be64_to_cpu(str
->di_blocks
);
175 gfs2_set_inode_blocks(&ip
->i_inode
);
176 ip
->i_inode
.i_atime
.tv_sec
= be64_to_cpu(str
->di_atime
);
177 ip
->i_inode
.i_atime
.tv_nsec
= 0;
178 ip
->i_inode
.i_mtime
.tv_sec
= be64_to_cpu(str
->di_mtime
);
179 ip
->i_inode
.i_mtime
.tv_nsec
= 0;
180 ip
->i_inode
.i_ctime
.tv_sec
= be64_to_cpu(str
->di_ctime
);
181 ip
->i_inode
.i_ctime
.tv_nsec
= 0;
183 di
->di_goal_meta
= be64_to_cpu(str
->di_goal_meta
);
184 di
->di_goal_data
= be64_to_cpu(str
->di_goal_data
);
185 di
->di_generation
= be64_to_cpu(str
->di_generation
);
187 di
->di_flags
= be32_to_cpu(str
->di_flags
);
188 gfs2_set_inode_flags(&ip
->i_inode
);
189 di
->di_height
= be16_to_cpu(str
->di_height
);
191 di
->di_depth
= be16_to_cpu(str
->di_depth
);
192 di
->di_entries
= be32_to_cpu(str
->di_entries
);
194 di
->di_eattr
= be64_to_cpu(str
->di_eattr
);
199 * gfs2_inode_refresh - Refresh the incore copy of the dinode
200 * @ip: The GFS2 inode
205 int gfs2_inode_refresh(struct gfs2_inode
*ip
)
207 struct buffer_head
*dibh
;
210 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
214 if (gfs2_metatype_check(GFS2_SB(&ip
->i_inode
), dibh
, GFS2_METATYPE_DI
)) {
219 error
= gfs2_dinode_in(ip
, dibh
->b_data
);
221 clear_bit(GIF_INVALID
, &ip
->i_flags
);
226 int gfs2_dinode_dealloc(struct gfs2_inode
*ip
)
228 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
229 struct gfs2_alloc
*al
;
230 struct gfs2_rgrpd
*rgd
;
233 if (ip
->i_di
.di_blocks
!= 1) {
234 if (gfs2_consist_inode(ip
))
235 gfs2_dinode_print(ip
);
239 al
= gfs2_alloc_get(ip
);
241 error
= gfs2_quota_hold(ip
, NO_QUOTA_CHANGE
, NO_QUOTA_CHANGE
);
245 error
= gfs2_rindex_hold(sdp
, &al
->al_ri_gh
);
249 rgd
= gfs2_blk2rgrpd(sdp
, ip
->i_num
.no_addr
);
251 gfs2_consist_inode(ip
);
253 goto out_rindex_relse
;
256 error
= gfs2_glock_nq_init(rgd
->rd_gl
, LM_ST_EXCLUSIVE
, 0,
259 goto out_rindex_relse
;
261 error
= gfs2_trans_begin(sdp
, RES_RG_BIT
+ RES_STATFS
+ RES_QUOTA
, 1);
265 gfs2_trans_add_gl(ip
->i_gl
);
267 gfs2_free_di(rgd
, ip
);
270 clear_bit(GLF_STICKY
, &ip
->i_gl
->gl_flags
);
273 gfs2_glock_dq_uninit(&al
->al_rgd_gh
);
275 gfs2_glock_dq_uninit(&al
->al_ri_gh
);
277 gfs2_quota_unhold(ip
);
284 * gfs2_change_nlink - Change nlink count on inode
285 * @ip: The GFS2 inode
286 * @diff: The change in the nlink count required
291 int gfs2_change_nlink(struct gfs2_inode
*ip
, int diff
)
293 struct gfs2_sbd
*sdp
= ip
->i_inode
.i_sb
->s_fs_info
;
294 struct buffer_head
*dibh
;
298 BUG_ON(diff
!= 1 && diff
!= -1);
299 nlink
= ip
->i_inode
.i_nlink
+ diff
;
301 /* If we are reducing the nlink count, but the new value ends up being
302 bigger than the old one, we must have underflowed. */
303 if (diff
< 0 && nlink
> ip
->i_inode
.i_nlink
) {
304 if (gfs2_consist_inode(ip
))
305 gfs2_dinode_print(ip
);
309 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
314 inc_nlink(&ip
->i_inode
);
316 drop_nlink(&ip
->i_inode
);
318 ip
->i_inode
.i_ctime
.tv_sec
= get_seconds();
320 gfs2_trans_add_bh(ip
->i_gl
, dibh
, 1);
321 gfs2_dinode_out(ip
, dibh
->b_data
);
323 mark_inode_dirty(&ip
->i_inode
);
325 if (ip
->i_inode
.i_nlink
== 0) {
326 struct gfs2_rgrpd
*rgd
;
327 struct gfs2_holder ri_gh
, rg_gh
;
329 error
= gfs2_rindex_hold(sdp
, &ri_gh
);
333 rgd
= gfs2_blk2rgrpd(sdp
, ip
->i_num
.no_addr
);
336 error
= gfs2_glock_nq_init(rgd
->rd_gl
, LM_ST_EXCLUSIVE
, 0, &rg_gh
);
340 gfs2_unlink_di(&ip
->i_inode
); /* mark inode unlinked */
341 gfs2_glock_dq_uninit(&rg_gh
);
343 gfs2_glock_dq_uninit(&ri_gh
);
349 struct inode
*gfs2_lookup_simple(struct inode
*dip
, const char *name
)
352 gfs2_str2qstr(&qstr
, name
);
353 return gfs2_lookupi(dip
, &qstr
, 1, NULL
);
358 * gfs2_lookupi - Look up a filename in a directory and return its inode
359 * @d_gh: An initialized holder for the directory glock
360 * @name: The name of the inode to look for
361 * @is_root: If 1, ignore the caller's permissions
362 * @i_gh: An uninitialized holder for the new inode glock
364 * There will always be a vnode (Linux VFS inode) for the d_gh inode unless
370 struct inode
*gfs2_lookupi(struct inode
*dir
, const struct qstr
*name
,
371 int is_root
, struct nameidata
*nd
)
373 struct super_block
*sb
= dir
->i_sb
;
374 struct gfs2_inode
*dip
= GFS2_I(dir
);
375 struct gfs2_holder d_gh
;
376 struct gfs2_inum_host inum
;
379 struct inode
*inode
= NULL
;
381 if (!name
->len
|| name
->len
> GFS2_FNAMESIZE
)
382 return ERR_PTR(-ENAMETOOLONG
);
384 if ((name
->len
== 1 && memcmp(name
->name
, ".", 1) == 0) ||
385 (name
->len
== 2 && memcmp(name
->name
, "..", 2) == 0 &&
386 dir
== sb
->s_root
->d_inode
)) {
391 error
= gfs2_glock_nq_init(dip
->i_gl
, LM_ST_SHARED
, 0, &d_gh
);
393 return ERR_PTR(error
);
396 error
= permission(dir
, MAY_EXEC
, NULL
);
401 error
= gfs2_dir_search(dir
, name
, &inum
, &type
);
405 inode
= gfs2_inode_lookup(sb
, &inum
, type
);
408 gfs2_glock_dq_uninit(&d_gh
);
409 if (error
== -ENOENT
)
414 static int pick_formal_ino_1(struct gfs2_sbd
*sdp
, u64
*formal_ino
)
416 struct gfs2_inode
*ip
= GFS2_I(sdp
->sd_ir_inode
);
417 struct buffer_head
*bh
;
418 struct gfs2_inum_range_host ir
;
421 error
= gfs2_trans_begin(sdp
, RES_DINODE
, 0);
424 mutex_lock(&sdp
->sd_inum_mutex
);
426 error
= gfs2_meta_inode_buffer(ip
, &bh
);
428 mutex_unlock(&sdp
->sd_inum_mutex
);
433 gfs2_inum_range_in(&ir
, bh
->b_data
+ sizeof(struct gfs2_dinode
));
436 *formal_ino
= ir
.ir_start
++;
438 gfs2_trans_add_bh(ip
->i_gl
, bh
, 1);
439 gfs2_inum_range_out(&ir
,
440 bh
->b_data
+ sizeof(struct gfs2_dinode
));
442 mutex_unlock(&sdp
->sd_inum_mutex
);
449 mutex_unlock(&sdp
->sd_inum_mutex
);
455 static int pick_formal_ino_2(struct gfs2_sbd
*sdp
, u64
*formal_ino
)
457 struct gfs2_inode
*ip
= GFS2_I(sdp
->sd_ir_inode
);
458 struct gfs2_inode
*m_ip
= GFS2_I(sdp
->sd_inum_inode
);
459 struct gfs2_holder gh
;
460 struct buffer_head
*bh
;
461 struct gfs2_inum_range_host ir
;
464 error
= gfs2_glock_nq_init(m_ip
->i_gl
, LM_ST_EXCLUSIVE
, 0, &gh
);
468 error
= gfs2_trans_begin(sdp
, 2 * RES_DINODE
, 0);
471 mutex_lock(&sdp
->sd_inum_mutex
);
473 error
= gfs2_meta_inode_buffer(ip
, &bh
);
477 gfs2_inum_range_in(&ir
, bh
->b_data
+ sizeof(struct gfs2_dinode
));
480 struct buffer_head
*m_bh
;
484 error
= gfs2_meta_inode_buffer(m_ip
, &m_bh
);
488 z
= *(__be64
*)(m_bh
->b_data
+ sizeof(struct gfs2_dinode
));
489 x
= y
= be64_to_cpu(z
);
491 ir
.ir_length
= GFS2_INUM_QUANTUM
;
492 x
+= GFS2_INUM_QUANTUM
;
494 gfs2_consist_inode(m_ip
);
496 gfs2_trans_add_bh(m_ip
->i_gl
, m_bh
, 1);
497 *(__be64
*)(m_bh
->b_data
+ sizeof(struct gfs2_dinode
)) = z
;
502 *formal_ino
= ir
.ir_start
++;
505 gfs2_trans_add_bh(ip
->i_gl
, bh
, 1);
506 gfs2_inum_range_out(&ir
, bh
->b_data
+ sizeof(struct gfs2_dinode
));
511 mutex_unlock(&sdp
->sd_inum_mutex
);
514 gfs2_glock_dq_uninit(&gh
);
518 static int pick_formal_ino(struct gfs2_sbd
*sdp
, u64
*inum
)
522 error
= pick_formal_ino_1(sdp
, inum
);
526 error
= pick_formal_ino_2(sdp
, inum
);
532 * create_ok - OK to create a new on-disk inode here?
533 * @dip: Directory in which dinode is to be created
534 * @name: Name of new dinode
540 static int create_ok(struct gfs2_inode
*dip
, const struct qstr
*name
,
545 error
= permission(&dip
->i_inode
, MAY_WRITE
| MAY_EXEC
, NULL
);
549 /* Don't create entries in an unlinked directory */
550 if (!dip
->i_inode
.i_nlink
)
553 error
= gfs2_dir_search(&dip
->i_inode
, name
, NULL
, NULL
);
564 if (dip
->i_di
.di_entries
== (u32
)-1)
566 if (S_ISDIR(mode
) && dip
->i_inode
.i_nlink
== (u32
)-1)
572 static void munge_mode_uid_gid(struct gfs2_inode
*dip
, unsigned int *mode
,
573 unsigned int *uid
, unsigned int *gid
)
575 if (GFS2_SB(&dip
->i_inode
)->sd_args
.ar_suiddir
&&
576 (dip
->i_inode
.i_mode
& S_ISUID
) && dip
->i_inode
.i_uid
) {
579 else if (dip
->i_inode
.i_uid
!= current
->fsuid
)
581 *uid
= dip
->i_inode
.i_uid
;
583 *uid
= current
->fsuid
;
585 if (dip
->i_inode
.i_mode
& S_ISGID
) {
588 *gid
= dip
->i_inode
.i_gid
;
590 *gid
= current
->fsgid
;
593 static int alloc_dinode(struct gfs2_inode
*dip
, struct gfs2_inum_host
*inum
,
596 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
601 dip
->i_alloc
.al_requested
= RES_DINODE
;
602 error
= gfs2_inplace_reserve(dip
);
606 error
= gfs2_trans_begin(sdp
, RES_RG_BIT
+ RES_STATFS
, 0);
610 inum
->no_addr
= gfs2_alloc_di(dip
, generation
);
615 gfs2_inplace_release(dip
);
622 * init_dinode - Fill in a new dinode structure
623 * @dip: the directory this inode is being created in
624 * @gl: The glock covering the new inode
625 * @inum: the inode number
626 * @mode: the file permissions
632 static void init_dinode(struct gfs2_inode
*dip
, struct gfs2_glock
*gl
,
633 const struct gfs2_inum_host
*inum
, unsigned int mode
,
634 unsigned int uid
, unsigned int gid
,
635 const u64
*generation
, dev_t dev
)
637 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
638 struct gfs2_dinode
*di
;
639 struct buffer_head
*dibh
;
641 dibh
= gfs2_meta_new(gl
, inum
->no_addr
);
642 gfs2_trans_add_bh(gl
, dibh
, 1);
643 gfs2_metatype_set(dibh
, GFS2_METATYPE_DI
, GFS2_FORMAT_DI
);
644 gfs2_buffer_clear_tail(dibh
, sizeof(struct gfs2_dinode
));
645 di
= (struct gfs2_dinode
*)dibh
->b_data
;
647 di
->di_num
.no_formal_ino
= cpu_to_be64(inum
->no_formal_ino
);
648 di
->di_num
.no_addr
= cpu_to_be64(inum
->no_addr
);
649 di
->di_mode
= cpu_to_be32(mode
);
650 di
->di_uid
= cpu_to_be32(uid
);
651 di
->di_gid
= cpu_to_be32(gid
);
654 di
->di_blocks
= cpu_to_be64(1);
655 di
->di_atime
= di
->di_mtime
= di
->di_ctime
= cpu_to_be64(get_seconds());
656 di
->di_major
= cpu_to_be32(MAJOR(dev
));
657 di
->di_minor
= cpu_to_be32(MINOR(dev
));
658 di
->di_goal_meta
= di
->di_goal_data
= cpu_to_be64(inum
->no_addr
);
659 di
->di_generation
= cpu_to_be64(*generation
);
663 if ((dip
->i_di
.di_flags
& GFS2_DIF_INHERIT_JDATA
) ||
664 gfs2_tune_get(sdp
, gt_new_files_jdata
))
665 di
->di_flags
|= cpu_to_be32(GFS2_DIF_JDATA
);
666 if ((dip
->i_di
.di_flags
& GFS2_DIF_INHERIT_DIRECTIO
) ||
667 gfs2_tune_get(sdp
, gt_new_files_directio
))
668 di
->di_flags
|= cpu_to_be32(GFS2_DIF_DIRECTIO
);
669 } else if (S_ISDIR(mode
)) {
670 di
->di_flags
|= cpu_to_be32(dip
->i_di
.di_flags
&
671 GFS2_DIF_INHERIT_DIRECTIO
);
672 di
->di_flags
|= cpu_to_be32(dip
->i_di
.di_flags
&
673 GFS2_DIF_INHERIT_JDATA
);
677 di
->di_payload_format
= cpu_to_be32(S_ISDIR(mode
) ? GFS2_FORMAT_DE
: 0);
683 memset(&di
->__pad4
, 0, sizeof(di
->__pad4
));
685 memset(&di
->di_reserved
, 0, sizeof(di
->di_reserved
));
690 static int make_dinode(struct gfs2_inode
*dip
, struct gfs2_glock
*gl
,
691 unsigned int mode
, const struct gfs2_inum_host
*inum
,
692 const u64
*generation
, dev_t dev
)
694 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
695 unsigned int uid
, gid
;
698 munge_mode_uid_gid(dip
, &mode
, &uid
, &gid
);
701 error
= gfs2_quota_lock(dip
, uid
, gid
);
705 error
= gfs2_quota_check(dip
, uid
, gid
);
709 error
= gfs2_trans_begin(sdp
, RES_DINODE
+ RES_QUOTA
, 0);
713 init_dinode(dip
, gl
, inum
, mode
, uid
, gid
, generation
, dev
);
714 gfs2_quota_change(dip
, +1, uid
, gid
);
718 gfs2_quota_unlock(dip
);
724 static int link_dinode(struct gfs2_inode
*dip
, const struct qstr
*name
,
725 struct gfs2_inode
*ip
)
727 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
728 struct gfs2_alloc
*al
;
730 struct buffer_head
*dibh
;
733 al
= gfs2_alloc_get(dip
);
735 error
= gfs2_quota_lock(dip
, NO_QUOTA_CHANGE
, NO_QUOTA_CHANGE
);
739 error
= alloc_required
= gfs2_diradd_alloc_required(&dip
->i_inode
, name
);
740 if (alloc_required
< 0)
742 if (alloc_required
) {
743 error
= gfs2_quota_check(dip
, dip
->i_inode
.i_uid
, dip
->i_inode
.i_gid
);
745 goto fail_quota_locks
;
747 al
->al_requested
= sdp
->sd_max_dirres
;
749 error
= gfs2_inplace_reserve(dip
);
751 goto fail_quota_locks
;
753 error
= gfs2_trans_begin(sdp
, sdp
->sd_max_dirres
+
754 al
->al_rgd
->rd_ri
.ri_length
+
756 RES_STATFS
+ RES_QUOTA
, 0);
760 error
= gfs2_trans_begin(sdp
, RES_LEAF
+ 2 * RES_DINODE
, 0);
762 goto fail_quota_locks
;
765 error
= gfs2_dir_add(&dip
->i_inode
, name
, &ip
->i_num
, IF2DT(ip
->i_inode
.i_mode
));
769 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
772 ip
->i_inode
.i_nlink
= 1;
773 gfs2_trans_add_bh(ip
->i_gl
, dibh
, 1);
774 gfs2_dinode_out(ip
, dibh
->b_data
);
782 if (dip
->i_alloc
.al_rgd
)
783 gfs2_inplace_release(dip
);
786 gfs2_quota_unlock(dip
);
793 static int gfs2_security_init(struct gfs2_inode
*dip
, struct gfs2_inode
*ip
)
799 struct gfs2_ea_request er
;
801 err
= security_inode_init_security(&ip
->i_inode
, &dip
->i_inode
,
802 &name
, &value
, &len
);
805 if (err
== -EOPNOTSUPP
)
810 memset(&er
, 0, sizeof(struct gfs2_ea_request
));
812 er
.er_type
= GFS2_EATYPE_SECURITY
;
815 er
.er_name_len
= strlen(name
);
816 er
.er_data_len
= len
;
818 err
= gfs2_ea_set_i(ip
, &er
);
827 * gfs2_createi - Create a new inode
828 * @ghs: An array of two holders
829 * @name: The name of the new file
830 * @mode: the permissions on the new inode
832 * @ghs[0] is an initialized holder for the directory
833 * @ghs[1] is the holder for the inode lock
835 * If the return value is not NULL, the glocks on both the directory and the new
836 * file are held. A transaction has been started and an inplace reservation
842 struct inode
*gfs2_createi(struct gfs2_holder
*ghs
, const struct qstr
*name
,
843 unsigned int mode
, dev_t dev
)
846 struct gfs2_inode
*dip
= ghs
->gh_gl
->gl_object
;
847 struct inode
*dir
= &dip
->i_inode
;
848 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
849 struct gfs2_inum_host inum
;
853 if (!name
->len
|| name
->len
> GFS2_FNAMESIZE
)
854 return ERR_PTR(-ENAMETOOLONG
);
856 gfs2_holder_reinit(LM_ST_EXCLUSIVE
, 0, ghs
);
857 error
= gfs2_glock_nq(ghs
);
861 error
= create_ok(dip
, name
, mode
);
865 error
= pick_formal_ino(sdp
, &inum
.no_formal_ino
);
869 error
= alloc_dinode(dip
, &inum
, &generation
);
873 error
= gfs2_glock_nq_num(sdp
, inum
.no_addr
, &gfs2_inode_glops
,
874 LM_ST_EXCLUSIVE
, GL_SKIP
, ghs
+ 1);
878 error
= make_dinode(dip
, ghs
[1].gh_gl
, mode
, &inum
, &generation
, dev
);
882 inode
= gfs2_inode_lookup(dir
->i_sb
, &inum
, IF2DT(mode
));
886 error
= gfs2_inode_refresh(GFS2_I(inode
));
890 error
= gfs2_acl_create(dip
, GFS2_I(inode
));
894 error
= gfs2_security_init(dip
, GFS2_I(inode
));
898 error
= link_dinode(dip
, name
, GFS2_I(inode
));
903 return ERR_PTR(-ENOMEM
);
909 gfs2_glock_dq_uninit(ghs
+ 1);
913 return ERR_PTR(error
);
917 * gfs2_rmdiri - Remove a directory
918 * @dip: The parent directory of the directory to be removed
919 * @name: The name of the directory to be removed
920 * @ip: The GFS2 inode of the directory to be removed
922 * Assumes Glocks on dip and ip are held
927 int gfs2_rmdiri(struct gfs2_inode
*dip
, const struct qstr
*name
,
928 struct gfs2_inode
*ip
)
933 if (ip
->i_di
.di_entries
!= 2) {
934 if (gfs2_consist_inode(ip
))
935 gfs2_dinode_print(ip
);
939 error
= gfs2_dir_del(dip
, name
);
943 error
= gfs2_change_nlink(dip
, -1);
947 gfs2_str2qstr(&dotname
, ".");
948 error
= gfs2_dir_del(ip
, &dotname
);
952 gfs2_str2qstr(&dotname
, "..");
953 error
= gfs2_dir_del(ip
, &dotname
);
957 /* It looks odd, but it really should be done twice */
958 error
= gfs2_change_nlink(ip
, -1);
962 error
= gfs2_change_nlink(ip
, -1);
970 * gfs2_unlink_ok - check to see that a inode is still in a directory
971 * @dip: the directory
972 * @name: the name of the file
975 * Assumes that the lock on (at least) @dip is held.
977 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
980 int gfs2_unlink_ok(struct gfs2_inode
*dip
, const struct qstr
*name
,
981 struct gfs2_inode
*ip
)
983 struct gfs2_inum_host inum
;
987 if (IS_IMMUTABLE(&ip
->i_inode
) || IS_APPEND(&ip
->i_inode
))
990 if ((dip
->i_inode
.i_mode
& S_ISVTX
) &&
991 dip
->i_inode
.i_uid
!= current
->fsuid
&&
992 ip
->i_inode
.i_uid
!= current
->fsuid
&& !capable(CAP_FOWNER
))
995 if (IS_APPEND(&dip
->i_inode
))
998 error
= permission(&dip
->i_inode
, MAY_WRITE
| MAY_EXEC
, NULL
);
1002 error
= gfs2_dir_search(&dip
->i_inode
, name
, &inum
, &type
);
1006 if (!gfs2_inum_equal(&inum
, &ip
->i_num
))
1009 if (IF2DT(ip
->i_inode
.i_mode
) != type
) {
1010 gfs2_consist_inode(dip
);
1018 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
1022 * Follow @to back to the root and make sure we don't encounter @this
1023 * Assumes we already hold the rename lock.
1028 int gfs2_ok_to_move(struct gfs2_inode
*this, struct gfs2_inode
*to
)
1030 struct inode
*dir
= &to
->i_inode
;
1031 struct super_block
*sb
= dir
->i_sb
;
1036 gfs2_str2qstr(&dotdot
, "..");
1041 if (dir
== &this->i_inode
) {
1045 if (dir
== sb
->s_root
->d_inode
) {
1050 tmp
= gfs2_lookupi(dir
, &dotdot
, 1, NULL
);
1052 error
= PTR_ERR(tmp
);
1066 * gfs2_readlinki - return the contents of a symlink
1067 * @ip: the symlink's inode
1068 * @buf: a pointer to the buffer to be filled
1069 * @len: a pointer to the length of @buf
1071 * If @buf is too small, a piece of memory is kmalloc()ed and needs
1072 * to be freed by the caller.
1077 int gfs2_readlinki(struct gfs2_inode
*ip
, char **buf
, unsigned int *len
)
1079 struct gfs2_holder i_gh
;
1080 struct buffer_head
*dibh
;
1084 gfs2_holder_init(ip
->i_gl
, LM_ST_SHARED
, GL_ATIME
, &i_gh
);
1085 error
= gfs2_glock_nq_atime(&i_gh
);
1087 gfs2_holder_uninit(&i_gh
);
1091 if (!ip
->i_di
.di_size
) {
1092 gfs2_consist_inode(ip
);
1097 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
1101 x
= ip
->i_di
.di_size
+ 1;
1103 *buf
= kmalloc(x
, GFP_KERNEL
);
1110 memcpy(*buf
, dibh
->b_data
+ sizeof(struct gfs2_dinode
), x
);
1116 gfs2_glock_dq_uninit(&i_gh
);
1121 * gfs2_glock_nq_atime - Acquire a hold on an inode's glock, and
1122 * conditionally update the inode's atime
1123 * @gh: the holder to acquire
1125 * Tests atime (access time) for gfs2_read, gfs2_readdir and gfs2_mmap
1126 * Update if the difference between the current time and the inode's current
1127 * atime is greater than an interval specified at mount.
1132 int gfs2_glock_nq_atime(struct gfs2_holder
*gh
)
1134 struct gfs2_glock
*gl
= gh
->gh_gl
;
1135 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
1136 struct gfs2_inode
*ip
= gl
->gl_object
;
1137 s64 curtime
, quantum
= gfs2_tune_get(sdp
, gt_atime_quantum
);
1142 if (gfs2_assert_warn(sdp
, gh
->gh_flags
& GL_ATIME
) ||
1143 gfs2_assert_warn(sdp
, !(gh
->gh_flags
& GL_ASYNC
)) ||
1144 gfs2_assert_warn(sdp
, gl
->gl_ops
== &gfs2_inode_glops
))
1147 state
= gh
->gh_state
;
1148 flags
= gh
->gh_flags
;
1150 error
= gfs2_glock_nq(gh
);
1154 if (test_bit(SDF_NOATIME
, &sdp
->sd_flags
) ||
1155 (sdp
->sd_vfs
->s_flags
& MS_RDONLY
))
1158 curtime
= get_seconds();
1159 if (curtime
- ip
->i_inode
.i_atime
.tv_sec
>= quantum
) {
1161 gfs2_holder_reinit(LM_ST_EXCLUSIVE
, gh
->gh_flags
& ~LM_FLAG_ANY
,
1163 error
= gfs2_glock_nq(gh
);
1167 /* Verify that atime hasn't been updated while we were
1168 trying to get exclusive lock. */
1170 curtime
= get_seconds();
1171 if (curtime
- ip
->i_inode
.i_atime
.tv_sec
>= quantum
) {
1172 struct buffer_head
*dibh
;
1173 struct gfs2_dinode
*di
;
1175 error
= gfs2_trans_begin(sdp
, RES_DINODE
, 0);
1176 if (error
== -EROFS
)
1181 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
1183 goto fail_end_trans
;
1185 ip
->i_inode
.i_atime
.tv_sec
= curtime
;
1187 gfs2_trans_add_bh(ip
->i_gl
, dibh
, 1);
1188 di
= (struct gfs2_dinode
*)dibh
->b_data
;
1189 di
->di_atime
= cpu_to_be64(ip
->i_inode
.i_atime
.tv_sec
);
1192 gfs2_trans_end(sdp
);
1195 /* If someone else has asked for the glock,
1196 unlock and let them have it. Then reacquire
1197 in the original state. */
1198 if (gfs2_glock_is_blocking(gl
)) {
1200 gfs2_holder_reinit(state
, flags
, gh
);
1201 return gfs2_glock_nq(gh
);
1208 gfs2_trans_end(sdp
);
1215 __gfs2_setattr_simple(struct gfs2_inode
*ip
, struct iattr
*attr
)
1217 struct buffer_head
*dibh
;
1220 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
1222 error
= inode_setattr(&ip
->i_inode
, attr
);
1223 gfs2_assert_warn(GFS2_SB(&ip
->i_inode
), !error
);
1224 gfs2_trans_add_bh(ip
->i_gl
, dibh
, 1);
1225 gfs2_dinode_out(ip
, dibh
->b_data
);
1232 * gfs2_setattr_simple -
1236 * Called with a reference on the vnode.
1241 int gfs2_setattr_simple(struct gfs2_inode
*ip
, struct iattr
*attr
)
1245 if (current
->journal_info
)
1246 return __gfs2_setattr_simple(ip
, attr
);
1248 error
= gfs2_trans_begin(GFS2_SB(&ip
->i_inode
), RES_DINODE
, 0);
1252 error
= __gfs2_setattr_simple(ip
, attr
);
1253 gfs2_trans_end(GFS2_SB(&ip
->i_inode
));