2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2008 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/security.h>
20 #include <linux/time.h>
38 struct gfs2_inum_range_host
{
43 static int iget_test(struct inode
*inode
, void *opaque
)
45 struct gfs2_inode
*ip
= GFS2_I(inode
);
46 u64
*no_addr
= opaque
;
48 if (ip
->i_no_addr
== *no_addr
)
54 static int iget_set(struct inode
*inode
, void *opaque
)
56 struct gfs2_inode
*ip
= GFS2_I(inode
);
57 u64
*no_addr
= opaque
;
59 inode
->i_ino
= (unsigned long)*no_addr
;
60 ip
->i_no_addr
= *no_addr
;
64 struct inode
*gfs2_ilookup(struct super_block
*sb
, u64 no_addr
)
66 unsigned long hash
= (unsigned long)no_addr
;
67 return ilookup5(sb
, hash
, iget_test
, &no_addr
);
70 static struct inode
*gfs2_iget(struct super_block
*sb
, u64 no_addr
)
72 unsigned long hash
= (unsigned long)no_addr
;
73 return iget5_locked(sb
, hash
, iget_test
, iget_set
, &no_addr
);
76 struct gfs2_skip_data
{
81 static int iget_skip_test(struct inode
*inode
, void *opaque
)
83 struct gfs2_inode
*ip
= GFS2_I(inode
);
84 struct gfs2_skip_data
*data
= opaque
;
86 if (ip
->i_no_addr
== data
->no_addr
) {
87 if (inode
->i_state
& (I_FREEING
|I_CLEAR
|I_WILL_FREE
)){
96 static int iget_skip_set(struct inode
*inode
, void *opaque
)
98 struct gfs2_inode
*ip
= GFS2_I(inode
);
99 struct gfs2_skip_data
*data
= opaque
;
103 inode
->i_ino
= (unsigned long)(data
->no_addr
);
104 ip
->i_no_addr
= data
->no_addr
;
108 static struct inode
*gfs2_iget_skip(struct super_block
*sb
,
111 struct gfs2_skip_data data
;
112 unsigned long hash
= (unsigned long)no_addr
;
114 data
.no_addr
= no_addr
;
116 return iget5_locked(sb
, hash
, iget_skip_test
, iget_skip_set
, &data
);
120 * GFS2 lookup code fills in vfs inode contents based on info obtained
121 * from directory entry inside gfs2_inode_lookup(). This has caused issues
122 * with NFS code path since its get_dentry routine doesn't have the relevant
123 * directory entry when gfs2_inode_lookup() is invoked. Part of the code
124 * segment inside gfs2_inode_lookup code needs to get moved around.
126 * Clears I_NEW as well.
129 void gfs2_set_iop(struct inode
*inode
)
131 struct gfs2_sbd
*sdp
= GFS2_SB(inode
);
132 umode_t mode
= inode
->i_mode
;
135 inode
->i_op
= &gfs2_file_iops
;
136 if (gfs2_localflocks(sdp
))
137 inode
->i_fop
= &gfs2_file_fops_nolock
;
139 inode
->i_fop
= &gfs2_file_fops
;
140 } else if (S_ISDIR(mode
)) {
141 inode
->i_op
= &gfs2_dir_iops
;
142 if (gfs2_localflocks(sdp
))
143 inode
->i_fop
= &gfs2_dir_fops_nolock
;
145 inode
->i_fop
= &gfs2_dir_fops
;
146 } else if (S_ISLNK(mode
)) {
147 inode
->i_op
= &gfs2_symlink_iops
;
149 inode
->i_op
= &gfs2_file_iops
;
150 init_special_inode(inode
, inode
->i_mode
, inode
->i_rdev
);
153 unlock_new_inode(inode
);
157 * gfs2_inode_lookup - Lookup an inode
158 * @sb: The super block
159 * @no_addr: The inode number
160 * @type: The type of the inode
162 * Returns: A VFS inode, or an error
165 struct inode
*gfs2_inode_lookup(struct super_block
*sb
,
171 struct gfs2_inode
*ip
;
172 struct gfs2_glock
*io_gl
;
175 inode
= gfs2_iget(sb
, no_addr
);
179 return ERR_PTR(-ENOBUFS
);
181 if (inode
->i_state
& I_NEW
) {
182 struct gfs2_sbd
*sdp
= GFS2_SB(inode
);
183 ip
->i_no_formal_ino
= no_formal_ino
;
185 error
= gfs2_glock_get(sdp
, no_addr
, &gfs2_inode_glops
, CREATE
, &ip
->i_gl
);
188 ip
->i_gl
->gl_object
= ip
;
190 error
= gfs2_glock_get(sdp
, no_addr
, &gfs2_iopen_glops
, CREATE
, &io_gl
);
194 set_bit(GIF_INVALID
, &ip
->i_flags
);
195 error
= gfs2_glock_nq_init(io_gl
, LM_ST_SHARED
, GL_EXACT
, &ip
->i_iopen_gh
);
198 ip
->i_iopen_gh
.gh_gl
->gl_object
= ip
;
200 gfs2_glock_put(io_gl
);
202 if ((type
== DT_UNKNOWN
) && (no_formal_ino
== 0))
205 inode
->i_mode
= DT2IF(type
);
208 * We must read the inode in order to work out its type in
209 * this case. Note that this doesn't happen often as we normally
210 * know the type beforehand. This code path only occurs during
211 * unlinked inode recovery (where it is safe to do this glock,
212 * which is not true in the general case).
214 if (type
== DT_UNKNOWN
) {
215 struct gfs2_holder gh
;
216 error
= gfs2_glock_nq_init(ip
->i_gl
, LM_ST_EXCLUSIVE
, 0, &gh
);
219 /* Inode is now uptodate */
220 gfs2_glock_dq_uninit(&gh
);
229 gfs2_glock_dq(&ip
->i_iopen_gh
);
231 gfs2_glock_put(io_gl
);
233 if (inode
->i_state
& I_NEW
)
234 ip
->i_gl
->gl_object
= NULL
;
235 gfs2_glock_put(ip
->i_gl
);
237 if (inode
->i_state
& I_NEW
)
241 return ERR_PTR(error
);
245 * gfs2_process_unlinked_inode - Lookup an unlinked inode for reclamation
246 * and try to reclaim it by doing iput.
248 * This function assumes no rgrp locks are currently held.
250 * @sb: The super block
251 * no_addr: The inode number
255 void gfs2_process_unlinked_inode(struct super_block
*sb
, u64 no_addr
)
257 struct gfs2_sbd
*sdp
;
258 struct gfs2_inode
*ip
;
259 struct gfs2_glock
*io_gl
;
261 struct gfs2_holder gh
;
264 inode
= gfs2_iget_skip(sb
, no_addr
);
269 /* If it's not a new inode, someone's using it, so leave it alone. */
270 if (!(inode
->i_state
& I_NEW
)) {
276 sdp
= GFS2_SB(inode
);
277 ip
->i_no_formal_ino
= -1;
279 error
= gfs2_glock_get(sdp
, no_addr
, &gfs2_inode_glops
, CREATE
, &ip
->i_gl
);
282 ip
->i_gl
->gl_object
= ip
;
284 error
= gfs2_glock_get(sdp
, no_addr
, &gfs2_iopen_glops
, CREATE
, &io_gl
);
288 set_bit(GIF_INVALID
, &ip
->i_flags
);
289 error
= gfs2_glock_nq_init(io_gl
, LM_ST_SHARED
, LM_FLAG_TRY
| GL_EXACT
,
294 ip
->i_iopen_gh
.gh_gl
->gl_object
= ip
;
295 gfs2_glock_put(io_gl
);
297 inode
->i_mode
= DT2IF(DT_UNKNOWN
);
300 * We must read the inode in order to work out its type in
301 * this case. Note that this doesn't happen often as we normally
302 * know the type beforehand. This code path only occurs during
303 * unlinked inode recovery (where it is safe to do this glock,
304 * which is not true in the general case).
306 error
= gfs2_glock_nq_init(ip
->i_gl
, LM_ST_EXCLUSIVE
, LM_FLAG_TRY
,
311 /* Inode is now uptodate */
312 gfs2_glock_dq_uninit(&gh
);
315 /* The iput will cause it to be deleted. */
320 gfs2_glock_dq(&ip
->i_iopen_gh
);
322 gfs2_glock_put(io_gl
);
324 ip
->i_gl
->gl_object
= NULL
;
325 gfs2_glock_put(ip
->i_gl
);
331 static int gfs2_dinode_in(struct gfs2_inode
*ip
, const void *buf
)
333 const struct gfs2_dinode
*str
= buf
;
334 struct timespec atime
;
337 if (unlikely(ip
->i_no_addr
!= be64_to_cpu(str
->di_num
.no_addr
)))
339 ip
->i_no_formal_ino
= be64_to_cpu(str
->di_num
.no_formal_ino
);
340 ip
->i_inode
.i_mode
= be32_to_cpu(str
->di_mode
);
341 ip
->i_inode
.i_rdev
= 0;
342 switch (ip
->i_inode
.i_mode
& S_IFMT
) {
345 ip
->i_inode
.i_rdev
= MKDEV(be32_to_cpu(str
->di_major
),
346 be32_to_cpu(str
->di_minor
));
350 ip
->i_inode
.i_uid
= be32_to_cpu(str
->di_uid
);
351 ip
->i_inode
.i_gid
= be32_to_cpu(str
->di_gid
);
353 * We will need to review setting the nlink count here in the
354 * light of the forthcoming ro bind mount work. This is a reminder
357 ip
->i_inode
.i_nlink
= be32_to_cpu(str
->di_nlink
);
358 ip
->i_disksize
= be64_to_cpu(str
->di_size
);
359 i_size_write(&ip
->i_inode
, ip
->i_disksize
);
360 gfs2_set_inode_blocks(&ip
->i_inode
, be64_to_cpu(str
->di_blocks
));
361 atime
.tv_sec
= be64_to_cpu(str
->di_atime
);
362 atime
.tv_nsec
= be32_to_cpu(str
->di_atime_nsec
);
363 if (timespec_compare(&ip
->i_inode
.i_atime
, &atime
) < 0)
364 ip
->i_inode
.i_atime
= atime
;
365 ip
->i_inode
.i_mtime
.tv_sec
= be64_to_cpu(str
->di_mtime
);
366 ip
->i_inode
.i_mtime
.tv_nsec
= be32_to_cpu(str
->di_mtime_nsec
);
367 ip
->i_inode
.i_ctime
.tv_sec
= be64_to_cpu(str
->di_ctime
);
368 ip
->i_inode
.i_ctime
.tv_nsec
= be32_to_cpu(str
->di_ctime_nsec
);
370 ip
->i_goal
= be64_to_cpu(str
->di_goal_meta
);
371 ip
->i_generation
= be64_to_cpu(str
->di_generation
);
373 ip
->i_diskflags
= be32_to_cpu(str
->di_flags
);
374 gfs2_set_inode_flags(&ip
->i_inode
);
375 height
= be16_to_cpu(str
->di_height
);
376 if (unlikely(height
> GFS2_MAX_META_HEIGHT
))
378 ip
->i_height
= (u8
)height
;
380 depth
= be16_to_cpu(str
->di_depth
);
381 if (unlikely(depth
> GFS2_DIR_MAX_DEPTH
))
383 ip
->i_depth
= (u8
)depth
;
384 ip
->i_entries
= be32_to_cpu(str
->di_entries
);
386 ip
->i_eattr
= be64_to_cpu(str
->di_eattr
);
387 if (S_ISREG(ip
->i_inode
.i_mode
))
388 gfs2_set_aops(&ip
->i_inode
);
392 if (gfs2_consist_inode(ip
))
393 gfs2_dinode_print(ip
);
398 * gfs2_inode_refresh - Refresh the incore copy of the dinode
399 * @ip: The GFS2 inode
404 int gfs2_inode_refresh(struct gfs2_inode
*ip
)
406 struct buffer_head
*dibh
;
409 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
413 if (gfs2_metatype_check(GFS2_SB(&ip
->i_inode
), dibh
, GFS2_METATYPE_DI
)) {
418 error
= gfs2_dinode_in(ip
, dibh
->b_data
);
420 clear_bit(GIF_INVALID
, &ip
->i_flags
);
425 int gfs2_dinode_dealloc(struct gfs2_inode
*ip
)
427 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
428 struct gfs2_alloc
*al
;
429 struct gfs2_rgrpd
*rgd
;
432 if (gfs2_get_inode_blocks(&ip
->i_inode
) != 1) {
433 if (gfs2_consist_inode(ip
))
434 gfs2_dinode_print(ip
);
438 al
= gfs2_alloc_get(ip
);
442 error
= gfs2_quota_hold(ip
, NO_QUOTA_CHANGE
, NO_QUOTA_CHANGE
);
446 error
= gfs2_rindex_hold(sdp
, &al
->al_ri_gh
);
450 rgd
= gfs2_blk2rgrpd(sdp
, ip
->i_no_addr
);
452 gfs2_consist_inode(ip
);
454 goto out_rindex_relse
;
457 error
= gfs2_glock_nq_init(rgd
->rd_gl
, LM_ST_EXCLUSIVE
, 0,
460 goto out_rindex_relse
;
462 error
= gfs2_trans_begin(sdp
, RES_RG_BIT
+ RES_STATFS
+ RES_QUOTA
, 1);
466 set_bit(GLF_DIRTY
, &ip
->i_gl
->gl_flags
);
467 set_bit(GLF_LFLUSH
, &ip
->i_gl
->gl_flags
);
469 gfs2_free_di(rgd
, ip
);
474 gfs2_glock_dq_uninit(&al
->al_rgd_gh
);
476 gfs2_glock_dq_uninit(&al
->al_ri_gh
);
478 gfs2_quota_unhold(ip
);
485 * gfs2_change_nlink - Change nlink count on inode
486 * @ip: The GFS2 inode
487 * @diff: The change in the nlink count required
491 int gfs2_change_nlink(struct gfs2_inode
*ip
, int diff
)
493 struct buffer_head
*dibh
;
497 BUG_ON(diff
!= 1 && diff
!= -1);
498 nlink
= ip
->i_inode
.i_nlink
+ diff
;
500 /* If we are reducing the nlink count, but the new value ends up being
501 bigger than the old one, we must have underflowed. */
502 if (diff
< 0 && nlink
> ip
->i_inode
.i_nlink
) {
503 if (gfs2_consist_inode(ip
))
504 gfs2_dinode_print(ip
);
508 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
513 inc_nlink(&ip
->i_inode
);
515 drop_nlink(&ip
->i_inode
);
517 ip
->i_inode
.i_ctime
= CURRENT_TIME
;
519 gfs2_trans_add_bh(ip
->i_gl
, dibh
, 1);
520 gfs2_dinode_out(ip
, dibh
->b_data
);
522 mark_inode_dirty(&ip
->i_inode
);
524 if (ip
->i_inode
.i_nlink
== 0)
525 gfs2_unlink_di(&ip
->i_inode
); /* mark inode unlinked */
530 struct inode
*gfs2_lookup_simple(struct inode
*dip
, const char *name
)
534 gfs2_str2qstr(&qstr
, name
);
535 inode
= gfs2_lookupi(dip
, &qstr
, 1);
536 /* gfs2_lookupi has inconsistent callers: vfs
537 * related routines expect NULL for no entry found,
538 * gfs2_lookup_simple callers expect ENOENT
539 * and do not check for NULL.
542 return ERR_PTR(-ENOENT
);
549 * gfs2_lookupi - Look up a filename in a directory and return its inode
550 * @d_gh: An initialized holder for the directory glock
551 * @name: The name of the inode to look for
552 * @is_root: If 1, ignore the caller's permissions
553 * @i_gh: An uninitialized holder for the new inode glock
555 * This can be called via the VFS filldir function when NFS is doing
556 * a readdirplus and the inode which its intending to stat isn't
557 * already in cache. In this case we must not take the directory glock
558 * again, since the readdir call will have already taken that lock.
563 struct inode
*gfs2_lookupi(struct inode
*dir
, const struct qstr
*name
,
566 struct super_block
*sb
= dir
->i_sb
;
567 struct gfs2_inode
*dip
= GFS2_I(dir
);
568 struct gfs2_holder d_gh
;
570 struct inode
*inode
= NULL
;
573 if (!name
->len
|| name
->len
> GFS2_FNAMESIZE
)
574 return ERR_PTR(-ENAMETOOLONG
);
576 if ((name
->len
== 1 && memcmp(name
->name
, ".", 1) == 0) ||
577 (name
->len
== 2 && memcmp(name
->name
, "..", 2) == 0 &&
578 dir
== sb
->s_root
->d_inode
)) {
583 if (gfs2_glock_is_locked_by_me(dip
->i_gl
) == NULL
) {
584 error
= gfs2_glock_nq_init(dip
->i_gl
, LM_ST_SHARED
, 0, &d_gh
);
586 return ERR_PTR(error
);
591 error
= gfs2_permission(dir
, MAY_EXEC
);
596 inode
= gfs2_dir_search(dir
, name
);
598 error
= PTR_ERR(inode
);
601 gfs2_glock_dq_uninit(&d_gh
);
602 if (error
== -ENOENT
)
604 return inode
? inode
: ERR_PTR(error
);
608 * create_ok - OK to create a new on-disk inode here?
609 * @dip: Directory in which dinode is to be created
610 * @name: Name of new dinode
616 static int create_ok(struct gfs2_inode
*dip
, const struct qstr
*name
,
621 error
= gfs2_permission(&dip
->i_inode
, MAY_WRITE
| MAY_EXEC
);
625 /* Don't create entries in an unlinked directory */
626 if (!dip
->i_inode
.i_nlink
)
629 error
= gfs2_dir_check(&dip
->i_inode
, name
, NULL
);
640 if (dip
->i_entries
== (u32
)-1)
642 if (S_ISDIR(mode
) && dip
->i_inode
.i_nlink
== (u32
)-1)
648 static void munge_mode_uid_gid(struct gfs2_inode
*dip
, unsigned int *mode
,
649 unsigned int *uid
, unsigned int *gid
)
651 if (GFS2_SB(&dip
->i_inode
)->sd_args
.ar_suiddir
&&
652 (dip
->i_inode
.i_mode
& S_ISUID
) && dip
->i_inode
.i_uid
) {
655 else if (dip
->i_inode
.i_uid
!= current_fsuid())
657 *uid
= dip
->i_inode
.i_uid
;
659 *uid
= current_fsuid();
661 if (dip
->i_inode
.i_mode
& S_ISGID
) {
664 *gid
= dip
->i_inode
.i_gid
;
666 *gid
= current_fsgid();
669 static int alloc_dinode(struct gfs2_inode
*dip
, u64
*no_addr
, u64
*generation
)
671 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
674 if (gfs2_alloc_get(dip
) == NULL
)
677 dip
->i_alloc
->al_requested
= RES_DINODE
;
678 error
= gfs2_inplace_reserve(dip
);
682 error
= gfs2_trans_begin(sdp
, RES_RG_BIT
+ RES_STATFS
, 0);
686 error
= gfs2_alloc_di(dip
, no_addr
, generation
);
691 gfs2_inplace_release(dip
);
698 * init_dinode - Fill in a new dinode structure
699 * @dip: the directory this inode is being created in
700 * @gl: The glock covering the new inode
701 * @inum: the inode number
702 * @mode: the file permissions
708 static void init_dinode(struct gfs2_inode
*dip
, struct gfs2_glock
*gl
,
709 const struct gfs2_inum_host
*inum
, unsigned int mode
,
710 unsigned int uid
, unsigned int gid
,
711 const u64
*generation
, dev_t dev
, struct buffer_head
**bhp
)
713 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
714 struct gfs2_dinode
*di
;
715 struct buffer_head
*dibh
;
716 struct timespec tv
= CURRENT_TIME
;
718 dibh
= gfs2_meta_new(gl
, inum
->no_addr
);
719 gfs2_trans_add_bh(gl
, dibh
, 1);
720 gfs2_metatype_set(dibh
, GFS2_METATYPE_DI
, GFS2_FORMAT_DI
);
721 gfs2_buffer_clear_tail(dibh
, sizeof(struct gfs2_dinode
));
722 di
= (struct gfs2_dinode
*)dibh
->b_data
;
724 di
->di_num
.no_formal_ino
= cpu_to_be64(inum
->no_formal_ino
);
725 di
->di_num
.no_addr
= cpu_to_be64(inum
->no_addr
);
726 di
->di_mode
= cpu_to_be32(mode
);
727 di
->di_uid
= cpu_to_be32(uid
);
728 di
->di_gid
= cpu_to_be32(gid
);
731 di
->di_blocks
= cpu_to_be64(1);
732 di
->di_atime
= di
->di_mtime
= di
->di_ctime
= cpu_to_be64(tv
.tv_sec
);
733 di
->di_major
= cpu_to_be32(MAJOR(dev
));
734 di
->di_minor
= cpu_to_be32(MINOR(dev
));
735 di
->di_goal_meta
= di
->di_goal_data
= cpu_to_be64(inum
->no_addr
);
736 di
->di_generation
= cpu_to_be64(*generation
);
740 if ((dip
->i_diskflags
& GFS2_DIF_INHERIT_JDATA
) ||
741 gfs2_tune_get(sdp
, gt_new_files_jdata
))
742 di
->di_flags
|= cpu_to_be32(GFS2_DIF_JDATA
);
743 } else if (S_ISDIR(mode
)) {
744 di
->di_flags
|= cpu_to_be32(dip
->i_diskflags
&
745 GFS2_DIF_INHERIT_JDATA
);
749 di
->di_payload_format
= cpu_to_be32(S_ISDIR(mode
) ? GFS2_FORMAT_DE
: 0);
755 memset(&di
->__pad4
, 0, sizeof(di
->__pad4
));
757 di
->di_atime_nsec
= cpu_to_be32(tv
.tv_nsec
);
758 di
->di_mtime_nsec
= cpu_to_be32(tv
.tv_nsec
);
759 di
->di_ctime_nsec
= cpu_to_be32(tv
.tv_nsec
);
760 memset(&di
->di_reserved
, 0, sizeof(di
->di_reserved
));
762 set_buffer_uptodate(dibh
);
767 static int make_dinode(struct gfs2_inode
*dip
, struct gfs2_glock
*gl
,
768 unsigned int mode
, const struct gfs2_inum_host
*inum
,
769 const u64
*generation
, dev_t dev
, struct buffer_head
**bhp
)
771 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
772 unsigned int uid
, gid
;
775 munge_mode_uid_gid(dip
, &mode
, &uid
, &gid
);
776 if (!gfs2_alloc_get(dip
))
779 error
= gfs2_quota_lock(dip
, uid
, gid
);
783 error
= gfs2_quota_check(dip
, uid
, gid
);
787 error
= gfs2_trans_begin(sdp
, RES_DINODE
+ RES_QUOTA
, 0);
791 init_dinode(dip
, gl
, inum
, mode
, uid
, gid
, generation
, dev
, bhp
);
792 gfs2_quota_change(dip
, +1, uid
, gid
);
796 gfs2_quota_unlock(dip
);
802 static int link_dinode(struct gfs2_inode
*dip
, const struct qstr
*name
,
803 struct gfs2_inode
*ip
)
805 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
806 struct gfs2_alloc
*al
;
808 struct buffer_head
*dibh
;
811 al
= gfs2_alloc_get(dip
);
815 error
= gfs2_quota_lock(dip
, NO_QUOTA_CHANGE
, NO_QUOTA_CHANGE
);
819 error
= alloc_required
= gfs2_diradd_alloc_required(&dip
->i_inode
, name
);
820 if (alloc_required
< 0)
821 goto fail_quota_locks
;
822 if (alloc_required
) {
823 error
= gfs2_quota_check(dip
, dip
->i_inode
.i_uid
, dip
->i_inode
.i_gid
);
825 goto fail_quota_locks
;
827 al
->al_requested
= sdp
->sd_max_dirres
;
829 error
= gfs2_inplace_reserve(dip
);
831 goto fail_quota_locks
;
833 error
= gfs2_trans_begin(sdp
, sdp
->sd_max_dirres
+
834 al
->al_rgd
->rd_length
+
836 RES_STATFS
+ RES_QUOTA
, 0);
840 error
= gfs2_trans_begin(sdp
, RES_LEAF
+ 2 * RES_DINODE
, 0);
842 goto fail_quota_locks
;
845 error
= gfs2_dir_add(&dip
->i_inode
, name
, ip
, IF2DT(ip
->i_inode
.i_mode
));
849 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
852 ip
->i_inode
.i_nlink
= 1;
853 gfs2_trans_add_bh(ip
->i_gl
, dibh
, 1);
854 gfs2_dinode_out(ip
, dibh
->b_data
);
862 if (dip
->i_alloc
->al_rgd
)
863 gfs2_inplace_release(dip
);
866 gfs2_quota_unlock(dip
);
873 static int gfs2_security_init(struct gfs2_inode
*dip
, struct gfs2_inode
*ip
)
880 err
= security_inode_init_security(&ip
->i_inode
, &dip
->i_inode
,
881 &name
, &value
, &len
);
884 if (err
== -EOPNOTSUPP
)
889 err
= __gfs2_xattr_set(&ip
->i_inode
, name
, value
, len
, 0,
890 GFS2_EATYPE_SECURITY
);
898 * gfs2_createi - Create a new inode
899 * @ghs: An array of two holders
900 * @name: The name of the new file
901 * @mode: the permissions on the new inode
903 * @ghs[0] is an initialized holder for the directory
904 * @ghs[1] is the holder for the inode lock
906 * If the return value is not NULL, the glocks on both the directory and the new
907 * file are held. A transaction has been started and an inplace reservation
913 struct inode
*gfs2_createi(struct gfs2_holder
*ghs
, const struct qstr
*name
,
914 unsigned int mode
, dev_t dev
)
916 struct inode
*inode
= NULL
;
917 struct gfs2_inode
*dip
= ghs
->gh_gl
->gl_object
;
918 struct inode
*dir
= &dip
->i_inode
;
919 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
920 struct gfs2_inum_host inum
= { .no_addr
= 0, .no_formal_ino
= 0 };
923 struct buffer_head
*bh
= NULL
;
925 if (!name
->len
|| name
->len
> GFS2_FNAMESIZE
)
926 return ERR_PTR(-ENAMETOOLONG
);
928 gfs2_holder_reinit(LM_ST_EXCLUSIVE
, 0, ghs
);
929 error
= gfs2_glock_nq(ghs
);
933 error
= create_ok(dip
, name
, mode
);
937 error
= alloc_dinode(dip
, &inum
.no_addr
, &generation
);
940 inum
.no_formal_ino
= generation
;
942 error
= gfs2_glock_nq_num(sdp
, inum
.no_addr
, &gfs2_inode_glops
,
943 LM_ST_EXCLUSIVE
, GL_SKIP
, ghs
+ 1);
947 error
= make_dinode(dip
, ghs
[1].gh_gl
, mode
, &inum
, &generation
, dev
, &bh
);
951 inode
= gfs2_inode_lookup(dir
->i_sb
, IF2DT(mode
), inum
.no_addr
,
956 error
= gfs2_inode_refresh(GFS2_I(inode
));
960 error
= gfs2_acl_create(dip
, inode
);
964 error
= gfs2_security_init(dip
, GFS2_I(inode
));
968 error
= link_dinode(dip
, name
, GFS2_I(inode
));
977 gfs2_glock_dq_uninit(ghs
+ 1);
978 if (inode
&& !IS_ERR(inode
))
985 return ERR_PTR(error
);
988 static int __gfs2_setattr_simple(struct gfs2_inode
*ip
, struct iattr
*attr
)
990 struct buffer_head
*dibh
;
993 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
995 error
= inode_setattr(&ip
->i_inode
, attr
);
996 gfs2_assert_warn(GFS2_SB(&ip
->i_inode
), !error
);
997 gfs2_trans_add_bh(ip
->i_gl
, dibh
, 1);
998 gfs2_dinode_out(ip
, dibh
->b_data
);
1005 * gfs2_setattr_simple -
1009 * Called with a reference on the vnode.
1014 int gfs2_setattr_simple(struct gfs2_inode
*ip
, struct iattr
*attr
)
1018 if (current
->journal_info
)
1019 return __gfs2_setattr_simple(ip
, attr
);
1021 error
= gfs2_trans_begin(GFS2_SB(&ip
->i_inode
), RES_DINODE
, 0);
1025 error
= __gfs2_setattr_simple(ip
, attr
);
1026 gfs2_trans_end(GFS2_SB(&ip
->i_inode
));
1030 void gfs2_dinode_out(const struct gfs2_inode
*ip
, void *buf
)
1032 struct gfs2_dinode
*str
= buf
;
1034 str
->di_header
.mh_magic
= cpu_to_be32(GFS2_MAGIC
);
1035 str
->di_header
.mh_type
= cpu_to_be32(GFS2_METATYPE_DI
);
1036 str
->di_header
.mh_format
= cpu_to_be32(GFS2_FORMAT_DI
);
1037 str
->di_num
.no_addr
= cpu_to_be64(ip
->i_no_addr
);
1038 str
->di_num
.no_formal_ino
= cpu_to_be64(ip
->i_no_formal_ino
);
1039 str
->di_mode
= cpu_to_be32(ip
->i_inode
.i_mode
);
1040 str
->di_uid
= cpu_to_be32(ip
->i_inode
.i_uid
);
1041 str
->di_gid
= cpu_to_be32(ip
->i_inode
.i_gid
);
1042 str
->di_nlink
= cpu_to_be32(ip
->i_inode
.i_nlink
);
1043 str
->di_size
= cpu_to_be64(ip
->i_disksize
);
1044 str
->di_blocks
= cpu_to_be64(gfs2_get_inode_blocks(&ip
->i_inode
));
1045 str
->di_atime
= cpu_to_be64(ip
->i_inode
.i_atime
.tv_sec
);
1046 str
->di_mtime
= cpu_to_be64(ip
->i_inode
.i_mtime
.tv_sec
);
1047 str
->di_ctime
= cpu_to_be64(ip
->i_inode
.i_ctime
.tv_sec
);
1049 str
->di_goal_meta
= cpu_to_be64(ip
->i_goal
);
1050 str
->di_goal_data
= cpu_to_be64(ip
->i_goal
);
1051 str
->di_generation
= cpu_to_be64(ip
->i_generation
);
1053 str
->di_flags
= cpu_to_be32(ip
->i_diskflags
);
1054 str
->di_height
= cpu_to_be16(ip
->i_height
);
1055 str
->di_payload_format
= cpu_to_be32(S_ISDIR(ip
->i_inode
.i_mode
) &&
1056 !(ip
->i_diskflags
& GFS2_DIF_EXHASH
) ?
1057 GFS2_FORMAT_DE
: 0);
1058 str
->di_depth
= cpu_to_be16(ip
->i_depth
);
1059 str
->di_entries
= cpu_to_be32(ip
->i_entries
);
1061 str
->di_eattr
= cpu_to_be64(ip
->i_eattr
);
1062 str
->di_atime_nsec
= cpu_to_be32(ip
->i_inode
.i_atime
.tv_nsec
);
1063 str
->di_mtime_nsec
= cpu_to_be32(ip
->i_inode
.i_mtime
.tv_nsec
);
1064 str
->di_ctime_nsec
= cpu_to_be32(ip
->i_inode
.i_ctime
.tv_nsec
);
1067 void gfs2_dinode_print(const struct gfs2_inode
*ip
)
1069 printk(KERN_INFO
" no_formal_ino = %llu\n",
1070 (unsigned long long)ip
->i_no_formal_ino
);
1071 printk(KERN_INFO
" no_addr = %llu\n",
1072 (unsigned long long)ip
->i_no_addr
);
1073 printk(KERN_INFO
" i_disksize = %llu\n",
1074 (unsigned long long)ip
->i_disksize
);
1075 printk(KERN_INFO
" blocks = %llu\n",
1076 (unsigned long long)gfs2_get_inode_blocks(&ip
->i_inode
));
1077 printk(KERN_INFO
" i_goal = %llu\n",
1078 (unsigned long long)ip
->i_goal
);
1079 printk(KERN_INFO
" i_diskflags = 0x%.8X\n", ip
->i_diskflags
);
1080 printk(KERN_INFO
" i_height = %u\n", ip
->i_height
);
1081 printk(KERN_INFO
" i_depth = %u\n", ip
->i_depth
);
1082 printk(KERN_INFO
" i_entries = %u\n", ip
->i_entries
);
1083 printk(KERN_INFO
" i_eattr = %llu\n",
1084 (unsigned long long)ip
->i_eattr
);