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
290 int gfs2_change_nlink(struct gfs2_inode
*ip
, int diff
)
292 struct buffer_head
*dibh
;
296 BUG_ON(diff
!= 1 && diff
!= -1);
297 nlink
= ip
->i_inode
.i_nlink
+ diff
;
299 /* If we are reducing the nlink count, but the new value ends up being
300 bigger than the old one, we must have underflowed. */
301 if (diff
< 0 && nlink
> ip
->i_inode
.i_nlink
) {
302 if (gfs2_consist_inode(ip
))
303 gfs2_dinode_print(ip
);
307 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
312 inc_nlink(&ip
->i_inode
);
314 drop_nlink(&ip
->i_inode
);
316 ip
->i_inode
.i_ctime
= CURRENT_TIME_SEC
;
318 gfs2_trans_add_bh(ip
->i_gl
, dibh
, 1);
319 gfs2_dinode_out(ip
, dibh
->b_data
);
321 mark_inode_dirty(&ip
->i_inode
);
323 if (ip
->i_inode
.i_nlink
== 0)
324 gfs2_unlink_di(&ip
->i_inode
); /* mark inode unlinked */
329 struct inode
*gfs2_lookup_simple(struct inode
*dip
, const char *name
)
333 gfs2_str2qstr(&qstr
, name
);
334 inode
= gfs2_lookupi(dip
, &qstr
, 1, NULL
);
335 /* gfs2_lookupi has inconsistent callers: vfs
336 * related routines expect NULL for no entry found,
337 * gfs2_lookup_simple callers expect ENOENT
338 * and do not check for NULL.
341 return ERR_PTR(-ENOENT
);
348 * gfs2_lookupi - Look up a filename in a directory and return its inode
349 * @d_gh: An initialized holder for the directory glock
350 * @name: The name of the inode to look for
351 * @is_root: If 1, ignore the caller's permissions
352 * @i_gh: An uninitialized holder for the new inode glock
354 * This can be called via the VFS filldir function when NFS is doing
355 * a readdirplus and the inode which its intending to stat isn't
356 * already in cache. In this case we must not take the directory glock
357 * again, since the readdir call will have already taken that lock.
362 struct inode
*gfs2_lookupi(struct inode
*dir
, const struct qstr
*name
,
363 int is_root
, struct nameidata
*nd
)
365 struct super_block
*sb
= dir
->i_sb
;
366 struct gfs2_inode
*dip
= GFS2_I(dir
);
367 struct gfs2_holder d_gh
;
368 struct gfs2_inum_host inum
;
371 struct inode
*inode
= NULL
;
374 if (!name
->len
|| name
->len
> GFS2_FNAMESIZE
)
375 return ERR_PTR(-ENAMETOOLONG
);
377 if ((name
->len
== 1 && memcmp(name
->name
, ".", 1) == 0) ||
378 (name
->len
== 2 && memcmp(name
->name
, "..", 2) == 0 &&
379 dir
== sb
->s_root
->d_inode
)) {
384 if (gfs2_glock_is_locked_by_me(dip
->i_gl
) == 0) {
385 error
= gfs2_glock_nq_init(dip
->i_gl
, LM_ST_SHARED
, 0, &d_gh
);
387 return ERR_PTR(error
);
392 error
= permission(dir
, MAY_EXEC
, NULL
);
397 error
= gfs2_dir_search(dir
, name
, &inum
, &type
);
401 inode
= gfs2_inode_lookup(sb
, &inum
, type
);
405 gfs2_glock_dq_uninit(&d_gh
);
406 if (error
== -ENOENT
)
408 return inode
? inode
: ERR_PTR(error
);
411 static int pick_formal_ino_1(struct gfs2_sbd
*sdp
, u64
*formal_ino
)
413 struct gfs2_inode
*ip
= GFS2_I(sdp
->sd_ir_inode
);
414 struct buffer_head
*bh
;
415 struct gfs2_inum_range_host ir
;
418 error
= gfs2_trans_begin(sdp
, RES_DINODE
, 0);
421 mutex_lock(&sdp
->sd_inum_mutex
);
423 error
= gfs2_meta_inode_buffer(ip
, &bh
);
425 mutex_unlock(&sdp
->sd_inum_mutex
);
430 gfs2_inum_range_in(&ir
, bh
->b_data
+ sizeof(struct gfs2_dinode
));
433 *formal_ino
= ir
.ir_start
++;
435 gfs2_trans_add_bh(ip
->i_gl
, bh
, 1);
436 gfs2_inum_range_out(&ir
,
437 bh
->b_data
+ sizeof(struct gfs2_dinode
));
439 mutex_unlock(&sdp
->sd_inum_mutex
);
446 mutex_unlock(&sdp
->sd_inum_mutex
);
452 static int pick_formal_ino_2(struct gfs2_sbd
*sdp
, u64
*formal_ino
)
454 struct gfs2_inode
*ip
= GFS2_I(sdp
->sd_ir_inode
);
455 struct gfs2_inode
*m_ip
= GFS2_I(sdp
->sd_inum_inode
);
456 struct gfs2_holder gh
;
457 struct buffer_head
*bh
;
458 struct gfs2_inum_range_host ir
;
461 error
= gfs2_glock_nq_init(m_ip
->i_gl
, LM_ST_EXCLUSIVE
, 0, &gh
);
465 error
= gfs2_trans_begin(sdp
, 2 * RES_DINODE
, 0);
468 mutex_lock(&sdp
->sd_inum_mutex
);
470 error
= gfs2_meta_inode_buffer(ip
, &bh
);
474 gfs2_inum_range_in(&ir
, bh
->b_data
+ sizeof(struct gfs2_dinode
));
477 struct buffer_head
*m_bh
;
481 error
= gfs2_meta_inode_buffer(m_ip
, &m_bh
);
485 z
= *(__be64
*)(m_bh
->b_data
+ sizeof(struct gfs2_dinode
));
486 x
= y
= be64_to_cpu(z
);
488 ir
.ir_length
= GFS2_INUM_QUANTUM
;
489 x
+= GFS2_INUM_QUANTUM
;
491 gfs2_consist_inode(m_ip
);
493 gfs2_trans_add_bh(m_ip
->i_gl
, m_bh
, 1);
494 *(__be64
*)(m_bh
->b_data
+ sizeof(struct gfs2_dinode
)) = z
;
499 *formal_ino
= ir
.ir_start
++;
502 gfs2_trans_add_bh(ip
->i_gl
, bh
, 1);
503 gfs2_inum_range_out(&ir
, bh
->b_data
+ sizeof(struct gfs2_dinode
));
508 mutex_unlock(&sdp
->sd_inum_mutex
);
511 gfs2_glock_dq_uninit(&gh
);
515 static int pick_formal_ino(struct gfs2_sbd
*sdp
, u64
*inum
)
519 error
= pick_formal_ino_1(sdp
, inum
);
523 error
= pick_formal_ino_2(sdp
, inum
);
529 * create_ok - OK to create a new on-disk inode here?
530 * @dip: Directory in which dinode is to be created
531 * @name: Name of new dinode
537 static int create_ok(struct gfs2_inode
*dip
, const struct qstr
*name
,
542 error
= permission(&dip
->i_inode
, MAY_WRITE
| MAY_EXEC
, NULL
);
546 /* Don't create entries in an unlinked directory */
547 if (!dip
->i_inode
.i_nlink
)
550 error
= gfs2_dir_search(&dip
->i_inode
, name
, NULL
, NULL
);
561 if (dip
->i_di
.di_entries
== (u32
)-1)
563 if (S_ISDIR(mode
) && dip
->i_inode
.i_nlink
== (u32
)-1)
569 static void munge_mode_uid_gid(struct gfs2_inode
*dip
, unsigned int *mode
,
570 unsigned int *uid
, unsigned int *gid
)
572 if (GFS2_SB(&dip
->i_inode
)->sd_args
.ar_suiddir
&&
573 (dip
->i_inode
.i_mode
& S_ISUID
) && dip
->i_inode
.i_uid
) {
576 else if (dip
->i_inode
.i_uid
!= current
->fsuid
)
578 *uid
= dip
->i_inode
.i_uid
;
580 *uid
= current
->fsuid
;
582 if (dip
->i_inode
.i_mode
& S_ISGID
) {
585 *gid
= dip
->i_inode
.i_gid
;
587 *gid
= current
->fsgid
;
590 static int alloc_dinode(struct gfs2_inode
*dip
, struct gfs2_inum_host
*inum
,
593 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
598 dip
->i_alloc
.al_requested
= RES_DINODE
;
599 error
= gfs2_inplace_reserve(dip
);
603 error
= gfs2_trans_begin(sdp
, RES_RG_BIT
+ RES_STATFS
, 0);
607 inum
->no_addr
= gfs2_alloc_di(dip
, generation
);
612 gfs2_inplace_release(dip
);
619 * init_dinode - Fill in a new dinode structure
620 * @dip: the directory this inode is being created in
621 * @gl: The glock covering the new inode
622 * @inum: the inode number
623 * @mode: the file permissions
629 static void init_dinode(struct gfs2_inode
*dip
, struct gfs2_glock
*gl
,
630 const struct gfs2_inum_host
*inum
, unsigned int mode
,
631 unsigned int uid
, unsigned int gid
,
632 const u64
*generation
, dev_t dev
)
634 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
635 struct gfs2_dinode
*di
;
636 struct buffer_head
*dibh
;
638 dibh
= gfs2_meta_new(gl
, inum
->no_addr
);
639 gfs2_trans_add_bh(gl
, dibh
, 1);
640 gfs2_metatype_set(dibh
, GFS2_METATYPE_DI
, GFS2_FORMAT_DI
);
641 gfs2_buffer_clear_tail(dibh
, sizeof(struct gfs2_dinode
));
642 di
= (struct gfs2_dinode
*)dibh
->b_data
;
644 di
->di_num
.no_formal_ino
= cpu_to_be64(inum
->no_formal_ino
);
645 di
->di_num
.no_addr
= cpu_to_be64(inum
->no_addr
);
646 di
->di_mode
= cpu_to_be32(mode
);
647 di
->di_uid
= cpu_to_be32(uid
);
648 di
->di_gid
= cpu_to_be32(gid
);
651 di
->di_blocks
= cpu_to_be64(1);
652 di
->di_atime
= di
->di_mtime
= di
->di_ctime
= cpu_to_be64(get_seconds());
653 di
->di_major
= cpu_to_be32(MAJOR(dev
));
654 di
->di_minor
= cpu_to_be32(MINOR(dev
));
655 di
->di_goal_meta
= di
->di_goal_data
= cpu_to_be64(inum
->no_addr
);
656 di
->di_generation
= cpu_to_be64(*generation
);
660 if ((dip
->i_di
.di_flags
& GFS2_DIF_INHERIT_JDATA
) ||
661 gfs2_tune_get(sdp
, gt_new_files_jdata
))
662 di
->di_flags
|= cpu_to_be32(GFS2_DIF_JDATA
);
663 if ((dip
->i_di
.di_flags
& GFS2_DIF_INHERIT_DIRECTIO
) ||
664 gfs2_tune_get(sdp
, gt_new_files_directio
))
665 di
->di_flags
|= cpu_to_be32(GFS2_DIF_DIRECTIO
);
666 } else if (S_ISDIR(mode
)) {
667 di
->di_flags
|= cpu_to_be32(dip
->i_di
.di_flags
&
668 GFS2_DIF_INHERIT_DIRECTIO
);
669 di
->di_flags
|= cpu_to_be32(dip
->i_di
.di_flags
&
670 GFS2_DIF_INHERIT_JDATA
);
674 di
->di_payload_format
= cpu_to_be32(S_ISDIR(mode
) ? GFS2_FORMAT_DE
: 0);
680 memset(&di
->__pad4
, 0, sizeof(di
->__pad4
));
682 memset(&di
->di_reserved
, 0, sizeof(di
->di_reserved
));
687 static int make_dinode(struct gfs2_inode
*dip
, struct gfs2_glock
*gl
,
688 unsigned int mode
, const struct gfs2_inum_host
*inum
,
689 const u64
*generation
, dev_t dev
)
691 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
692 unsigned int uid
, gid
;
695 munge_mode_uid_gid(dip
, &mode
, &uid
, &gid
);
698 error
= gfs2_quota_lock(dip
, uid
, gid
);
702 error
= gfs2_quota_check(dip
, uid
, gid
);
706 error
= gfs2_trans_begin(sdp
, RES_DINODE
+ RES_QUOTA
, 0);
710 init_dinode(dip
, gl
, inum
, mode
, uid
, gid
, generation
, dev
);
711 gfs2_quota_change(dip
, +1, uid
, gid
);
715 gfs2_quota_unlock(dip
);
721 static int link_dinode(struct gfs2_inode
*dip
, const struct qstr
*name
,
722 struct gfs2_inode
*ip
)
724 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
725 struct gfs2_alloc
*al
;
727 struct buffer_head
*dibh
;
730 al
= gfs2_alloc_get(dip
);
732 error
= gfs2_quota_lock(dip
, NO_QUOTA_CHANGE
, NO_QUOTA_CHANGE
);
736 error
= alloc_required
= gfs2_diradd_alloc_required(&dip
->i_inode
, name
);
737 if (alloc_required
< 0)
739 if (alloc_required
) {
740 error
= gfs2_quota_check(dip
, dip
->i_inode
.i_uid
, dip
->i_inode
.i_gid
);
742 goto fail_quota_locks
;
744 al
->al_requested
= sdp
->sd_max_dirres
;
746 error
= gfs2_inplace_reserve(dip
);
748 goto fail_quota_locks
;
750 error
= gfs2_trans_begin(sdp
, sdp
->sd_max_dirres
+
751 al
->al_rgd
->rd_ri
.ri_length
+
753 RES_STATFS
+ RES_QUOTA
, 0);
757 error
= gfs2_trans_begin(sdp
, RES_LEAF
+ 2 * RES_DINODE
, 0);
759 goto fail_quota_locks
;
762 error
= gfs2_dir_add(&dip
->i_inode
, name
, &ip
->i_num
, IF2DT(ip
->i_inode
.i_mode
));
766 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
769 ip
->i_inode
.i_nlink
= 1;
770 gfs2_trans_add_bh(ip
->i_gl
, dibh
, 1);
771 gfs2_dinode_out(ip
, dibh
->b_data
);
779 if (dip
->i_alloc
.al_rgd
)
780 gfs2_inplace_release(dip
);
783 gfs2_quota_unlock(dip
);
790 static int gfs2_security_init(struct gfs2_inode
*dip
, struct gfs2_inode
*ip
)
796 struct gfs2_ea_request er
;
798 err
= security_inode_init_security(&ip
->i_inode
, &dip
->i_inode
,
799 &name
, &value
, &len
);
802 if (err
== -EOPNOTSUPP
)
807 memset(&er
, 0, sizeof(struct gfs2_ea_request
));
809 er
.er_type
= GFS2_EATYPE_SECURITY
;
812 er
.er_name_len
= strlen(name
);
813 er
.er_data_len
= len
;
815 err
= gfs2_ea_set_i(ip
, &er
);
824 * gfs2_createi - Create a new inode
825 * @ghs: An array of two holders
826 * @name: The name of the new file
827 * @mode: the permissions on the new inode
829 * @ghs[0] is an initialized holder for the directory
830 * @ghs[1] is the holder for the inode lock
832 * If the return value is not NULL, the glocks on both the directory and the new
833 * file are held. A transaction has been started and an inplace reservation
839 struct inode
*gfs2_createi(struct gfs2_holder
*ghs
, const struct qstr
*name
,
840 unsigned int mode
, dev_t dev
)
843 struct gfs2_inode
*dip
= ghs
->gh_gl
->gl_object
;
844 struct inode
*dir
= &dip
->i_inode
;
845 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
846 struct gfs2_inum_host inum
;
850 if (!name
->len
|| name
->len
> GFS2_FNAMESIZE
)
851 return ERR_PTR(-ENAMETOOLONG
);
853 gfs2_holder_reinit(LM_ST_EXCLUSIVE
, 0, ghs
);
854 error
= gfs2_glock_nq(ghs
);
858 error
= create_ok(dip
, name
, mode
);
862 error
= pick_formal_ino(sdp
, &inum
.no_formal_ino
);
866 error
= alloc_dinode(dip
, &inum
, &generation
);
870 error
= gfs2_glock_nq_num(sdp
, inum
.no_addr
, &gfs2_inode_glops
,
871 LM_ST_EXCLUSIVE
, GL_SKIP
, ghs
+ 1);
875 error
= make_dinode(dip
, ghs
[1].gh_gl
, mode
, &inum
, &generation
, dev
);
879 inode
= gfs2_inode_lookup(dir
->i_sb
, &inum
, IF2DT(mode
));
883 error
= gfs2_inode_refresh(GFS2_I(inode
));
887 error
= gfs2_acl_create(dip
, GFS2_I(inode
));
891 error
= gfs2_security_init(dip
, GFS2_I(inode
));
895 error
= link_dinode(dip
, name
, GFS2_I(inode
));
900 return ERR_PTR(-ENOMEM
);
906 gfs2_glock_dq_uninit(ghs
+ 1);
910 return ERR_PTR(error
);
914 * gfs2_rmdiri - Remove a directory
915 * @dip: The parent directory of the directory to be removed
916 * @name: The name of the directory to be removed
917 * @ip: The GFS2 inode of the directory to be removed
919 * Assumes Glocks on dip and ip are held
924 int gfs2_rmdiri(struct gfs2_inode
*dip
, const struct qstr
*name
,
925 struct gfs2_inode
*ip
)
930 if (ip
->i_di
.di_entries
!= 2) {
931 if (gfs2_consist_inode(ip
))
932 gfs2_dinode_print(ip
);
936 error
= gfs2_dir_del(dip
, name
);
940 error
= gfs2_change_nlink(dip
, -1);
944 gfs2_str2qstr(&dotname
, ".");
945 error
= gfs2_dir_del(ip
, &dotname
);
949 gfs2_str2qstr(&dotname
, "..");
950 error
= gfs2_dir_del(ip
, &dotname
);
954 /* It looks odd, but it really should be done twice */
955 error
= gfs2_change_nlink(ip
, -1);
959 error
= gfs2_change_nlink(ip
, -1);
967 * gfs2_unlink_ok - check to see that a inode is still in a directory
968 * @dip: the directory
969 * @name: the name of the file
972 * Assumes that the lock on (at least) @dip is held.
974 * Returns: 0 if the parent/child relationship is correct, errno if it isn't
977 int gfs2_unlink_ok(struct gfs2_inode
*dip
, const struct qstr
*name
,
978 struct gfs2_inode
*ip
)
980 struct gfs2_inum_host inum
;
984 if (IS_IMMUTABLE(&ip
->i_inode
) || IS_APPEND(&ip
->i_inode
))
987 if ((dip
->i_inode
.i_mode
& S_ISVTX
) &&
988 dip
->i_inode
.i_uid
!= current
->fsuid
&&
989 ip
->i_inode
.i_uid
!= current
->fsuid
&& !capable(CAP_FOWNER
))
992 if (IS_APPEND(&dip
->i_inode
))
995 error
= permission(&dip
->i_inode
, MAY_WRITE
| MAY_EXEC
, NULL
);
999 error
= gfs2_dir_search(&dip
->i_inode
, name
, &inum
, &type
);
1003 if (!gfs2_inum_equal(&inum
, &ip
->i_num
))
1006 if (IF2DT(ip
->i_inode
.i_mode
) != type
) {
1007 gfs2_consist_inode(dip
);
1015 * gfs2_ok_to_move - check if it's ok to move a directory to another directory
1019 * Follow @to back to the root and make sure we don't encounter @this
1020 * Assumes we already hold the rename lock.
1025 int gfs2_ok_to_move(struct gfs2_inode
*this, struct gfs2_inode
*to
)
1027 struct inode
*dir
= &to
->i_inode
;
1028 struct super_block
*sb
= dir
->i_sb
;
1033 gfs2_str2qstr(&dotdot
, "..");
1038 if (dir
== &this->i_inode
) {
1042 if (dir
== sb
->s_root
->d_inode
) {
1047 tmp
= gfs2_lookupi(dir
, &dotdot
, 1, NULL
);
1049 error
= PTR_ERR(tmp
);
1063 * gfs2_readlinki - return the contents of a symlink
1064 * @ip: the symlink's inode
1065 * @buf: a pointer to the buffer to be filled
1066 * @len: a pointer to the length of @buf
1068 * If @buf is too small, a piece of memory is kmalloc()ed and needs
1069 * to be freed by the caller.
1074 int gfs2_readlinki(struct gfs2_inode
*ip
, char **buf
, unsigned int *len
)
1076 struct gfs2_holder i_gh
;
1077 struct buffer_head
*dibh
;
1081 gfs2_holder_init(ip
->i_gl
, LM_ST_SHARED
, GL_ATIME
, &i_gh
);
1082 error
= gfs2_glock_nq_atime(&i_gh
);
1084 gfs2_holder_uninit(&i_gh
);
1088 if (!ip
->i_di
.di_size
) {
1089 gfs2_consist_inode(ip
);
1094 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
1098 x
= ip
->i_di
.di_size
+ 1;
1100 *buf
= kmalloc(x
, GFP_KERNEL
);
1107 memcpy(*buf
, dibh
->b_data
+ sizeof(struct gfs2_dinode
), x
);
1113 gfs2_glock_dq_uninit(&i_gh
);
1118 * gfs2_glock_nq_atime - Acquire a hold on an inode's glock, and
1119 * conditionally update the inode's atime
1120 * @gh: the holder to acquire
1122 * Tests atime (access time) for gfs2_read, gfs2_readdir and gfs2_mmap
1123 * Update if the difference between the current time and the inode's current
1124 * atime is greater than an interval specified at mount.
1129 int gfs2_glock_nq_atime(struct gfs2_holder
*gh
)
1131 struct gfs2_glock
*gl
= gh
->gh_gl
;
1132 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
1133 struct gfs2_inode
*ip
= gl
->gl_object
;
1134 s64 curtime
, quantum
= gfs2_tune_get(sdp
, gt_atime_quantum
);
1139 if (gfs2_assert_warn(sdp
, gh
->gh_flags
& GL_ATIME
) ||
1140 gfs2_assert_warn(sdp
, !(gh
->gh_flags
& GL_ASYNC
)) ||
1141 gfs2_assert_warn(sdp
, gl
->gl_ops
== &gfs2_inode_glops
))
1144 state
= gh
->gh_state
;
1145 flags
= gh
->gh_flags
;
1147 error
= gfs2_glock_nq(gh
);
1151 if (test_bit(SDF_NOATIME
, &sdp
->sd_flags
) ||
1152 (sdp
->sd_vfs
->s_flags
& MS_RDONLY
))
1155 curtime
= get_seconds();
1156 if (curtime
- ip
->i_inode
.i_atime
.tv_sec
>= quantum
) {
1158 gfs2_holder_reinit(LM_ST_EXCLUSIVE
, gh
->gh_flags
& ~LM_FLAG_ANY
,
1160 error
= gfs2_glock_nq(gh
);
1164 /* Verify that atime hasn't been updated while we were
1165 trying to get exclusive lock. */
1167 curtime
= get_seconds();
1168 if (curtime
- ip
->i_inode
.i_atime
.tv_sec
>= quantum
) {
1169 struct buffer_head
*dibh
;
1170 struct gfs2_dinode
*di
;
1172 error
= gfs2_trans_begin(sdp
, RES_DINODE
, 0);
1173 if (error
== -EROFS
)
1178 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
1180 goto fail_end_trans
;
1182 ip
->i_inode
.i_atime
.tv_sec
= curtime
;
1184 gfs2_trans_add_bh(ip
->i_gl
, dibh
, 1);
1185 di
= (struct gfs2_dinode
*)dibh
->b_data
;
1186 di
->di_atime
= cpu_to_be64(ip
->i_inode
.i_atime
.tv_sec
);
1189 gfs2_trans_end(sdp
);
1192 /* If someone else has asked for the glock,
1193 unlock and let them have it. Then reacquire
1194 in the original state. */
1195 if (gfs2_glock_is_blocking(gl
)) {
1197 gfs2_holder_reinit(state
, flags
, gh
);
1198 return gfs2_glock_nq(gh
);
1205 gfs2_trans_end(sdp
);
1212 __gfs2_setattr_simple(struct gfs2_inode
*ip
, struct iattr
*attr
)
1214 struct buffer_head
*dibh
;
1217 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
1219 error
= inode_setattr(&ip
->i_inode
, attr
);
1220 gfs2_assert_warn(GFS2_SB(&ip
->i_inode
), !error
);
1221 gfs2_trans_add_bh(ip
->i_gl
, dibh
, 1);
1222 gfs2_dinode_out(ip
, dibh
->b_data
);
1229 * gfs2_setattr_simple -
1233 * Called with a reference on the vnode.
1238 int gfs2_setattr_simple(struct gfs2_inode
*ip
, struct iattr
*attr
)
1242 if (current
->journal_info
)
1243 return __gfs2_setattr_simple(ip
, attr
);
1245 error
= gfs2_trans_begin(GFS2_SB(&ip
->i_inode
), RES_DINODE
, 0);
1249 error
= __gfs2_setattr_simple(ip
, attr
);
1250 gfs2_trans_end(GFS2_SB(&ip
->i_inode
));