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.
11 * Implements Extendible Hashing as described in:
12 * "Extendible Hashing" by Fagin, et al in
13 * __ACM Trans. on Database Systems__, Sept 1979.
16 * Here's the layout of dirents which is essentially the same as that of ext2
17 * within a single block. The field de_name_len is the number of bytes
18 * actually required for the name (no null terminator). The field de_rec_len
19 * is the number of bytes allocated to the dirent. The offset of the next
20 * dirent in the block is (dirent + dirent->de_rec_len). When a dirent is
21 * deleted, the preceding dirent inherits its allocated space, ie
22 * prev->de_rec_len += deleted->de_rec_len. Since the next dirent is obtained
23 * by adding de_rec_len to the current dirent, this essentially causes the
24 * deleted dirent to get jumped over when iterating through all the dirents.
26 * When deleting the first dirent in a block, there is no previous dirent so
27 * the field de_ino is set to zero to designate it as deleted. When allocating
28 * a dirent, gfs2_dirent_alloc iterates through the dirents in a block. If the
29 * first dirent has (de_ino == 0) and de_rec_len is large enough, this first
30 * dirent is allocated. Otherwise it must go through all the 'used' dirents
31 * searching for one in which the amount of total space minus the amount of
32 * used space will provide enough space for the new dirent.
34 * There are two types of blocks in which dirents reside. In a stuffed dinode,
35 * the dirents begin at offset sizeof(struct gfs2_dinode) from the beginning of
36 * the block. In leaves, they begin at offset sizeof(struct gfs2_leaf) from the
37 * beginning of the leaf block. The dirents reside in leaves when
39 * dip->i_diskflags & GFS2_DIF_EXHASH is true
41 * Otherwise, the dirents are "linear", within a single stuffed dinode block.
43 * When the dirents are in leaves, the actual contents of the directory file are
44 * used as an array of 64-bit block pointers pointing to the leaf blocks. The
45 * dirents are NOT in the directory file itself. There can be more than one
46 * block pointer in the array that points to the same leaf. In fact, when a
47 * directory is first converted from linear to exhash, all of the pointers
48 * point to the same leaf.
50 * When a leaf is completely full, the size of the hash table can be
51 * doubled unless it is already at the maximum size which is hard coded into
52 * GFS2_DIR_MAX_DEPTH. After that, leaves are chained together in a linked list,
53 * but never before the maximum hash table size has been reached.
56 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
58 #include <linux/slab.h>
59 #include <linux/spinlock.h>
60 #include <linux/buffer_head.h>
61 #include <linux/sort.h>
62 #include <linux/gfs2_ondisk.h>
63 #include <linux/crc32.h>
64 #include <linux/vmalloc.h>
65 #include <linux/bio.h>
79 #define IS_LEAF 1 /* Hashed (leaf) directory */
80 #define IS_DINODE 2 /* Linear (stuffed dinode block) directory */
82 #define MAX_RA_BLOCKS 32 /* max read-ahead blocks */
84 #define gfs2_disk_hash2offset(h) (((u64)(h)) >> 1)
85 #define gfs2_dir_offset2hash(p) ((u32)(((u64)(p)) << 1))
86 #define GFS2_HASH_INDEX_MASK 0xffffc000
87 #define GFS2_USE_HASH_FLAG 0x2000
89 struct qstr gfs2_qdot __read_mostly
;
90 struct qstr gfs2_qdotdot __read_mostly
;
92 typedef int (*gfs2_dscan_t
)(const struct gfs2_dirent
*dent
,
93 const struct qstr
*name
, void *opaque
);
95 int gfs2_dir_get_new_buffer(struct gfs2_inode
*ip
, u64 block
,
96 struct buffer_head
**bhp
)
98 struct buffer_head
*bh
;
100 bh
= gfs2_meta_new(ip
->i_gl
, block
);
101 gfs2_trans_add_meta(ip
->i_gl
, bh
);
102 gfs2_metatype_set(bh
, GFS2_METATYPE_JD
, GFS2_FORMAT_JD
);
103 gfs2_buffer_clear_tail(bh
, sizeof(struct gfs2_meta_header
));
108 static int gfs2_dir_get_existing_buffer(struct gfs2_inode
*ip
, u64 block
,
109 struct buffer_head
**bhp
)
111 struct buffer_head
*bh
;
114 error
= gfs2_meta_read(ip
->i_gl
, block
, DIO_WAIT
, 0, &bh
);
117 if (gfs2_metatype_check(GFS2_SB(&ip
->i_inode
), bh
, GFS2_METATYPE_JD
)) {
125 static int gfs2_dir_write_stuffed(struct gfs2_inode
*ip
, const char *buf
,
126 unsigned int offset
, unsigned int size
)
128 struct buffer_head
*dibh
;
131 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
135 gfs2_trans_add_meta(ip
->i_gl
, dibh
);
136 memcpy(dibh
->b_data
+ offset
+ sizeof(struct gfs2_dinode
), buf
, size
);
137 if (ip
->i_inode
.i_size
< offset
+ size
)
138 i_size_write(&ip
->i_inode
, offset
+ size
);
139 ip
->i_inode
.i_mtime
= ip
->i_inode
.i_ctime
= current_time(&ip
->i_inode
);
140 gfs2_dinode_out(ip
, dibh
->b_data
);
150 * gfs2_dir_write_data - Write directory information to the inode
151 * @ip: The GFS2 inode
152 * @buf: The buffer containing information to be written
153 * @offset: The file offset to start writing at
154 * @size: The amount of data to write
156 * Returns: The number of bytes correctly written or error code
158 static int gfs2_dir_write_data(struct gfs2_inode
*ip
, const char *buf
,
159 u64 offset
, unsigned int size
)
161 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
162 struct buffer_head
*dibh
;
173 if (gfs2_is_stuffed(ip
) &&
174 offset
+ size
<= sdp
->sd_sb
.sb_bsize
- sizeof(struct gfs2_dinode
))
175 return gfs2_dir_write_stuffed(ip
, buf
, (unsigned int)offset
,
178 if (gfs2_assert_warn(sdp
, gfs2_is_jdata(ip
)))
181 if (gfs2_is_stuffed(ip
)) {
182 error
= gfs2_unstuff_dinode(ip
, NULL
);
188 o
= do_div(lblock
, sdp
->sd_jbsize
) + sizeof(struct gfs2_meta_header
);
190 while (copied
< size
) {
192 struct buffer_head
*bh
;
194 amount
= size
- copied
;
195 if (amount
> sdp
->sd_sb
.sb_bsize
- o
)
196 amount
= sdp
->sd_sb
.sb_bsize
- o
;
200 error
= gfs2_extent_map(&ip
->i_inode
, lblock
, &new,
205 if (gfs2_assert_withdraw(sdp
, dblock
))
209 if (amount
== sdp
->sd_jbsize
|| new)
210 error
= gfs2_dir_get_new_buffer(ip
, dblock
, &bh
);
212 error
= gfs2_dir_get_existing_buffer(ip
, dblock
, &bh
);
217 gfs2_trans_add_meta(ip
->i_gl
, bh
);
218 memcpy(bh
->b_data
+ o
, buf
, amount
);
227 o
= sizeof(struct gfs2_meta_header
);
231 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
235 if (ip
->i_inode
.i_size
< offset
+ copied
)
236 i_size_write(&ip
->i_inode
, offset
+ copied
);
237 ip
->i_inode
.i_mtime
= ip
->i_inode
.i_ctime
= current_time(&ip
->i_inode
);
239 gfs2_trans_add_meta(ip
->i_gl
, dibh
);
240 gfs2_dinode_out(ip
, dibh
->b_data
);
250 static int gfs2_dir_read_stuffed(struct gfs2_inode
*ip
, __be64
*buf
,
253 struct buffer_head
*dibh
;
256 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
258 memcpy(buf
, dibh
->b_data
+ sizeof(struct gfs2_dinode
), size
);
262 return (error
) ? error
: size
;
267 * gfs2_dir_read_data - Read a data from a directory inode
268 * @ip: The GFS2 Inode
269 * @buf: The buffer to place result into
270 * @size: Amount of data to transfer
272 * Returns: The amount of data actually copied or the error
274 static int gfs2_dir_read_data(struct gfs2_inode
*ip
, __be64
*buf
,
277 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
284 if (gfs2_is_stuffed(ip
))
285 return gfs2_dir_read_stuffed(ip
, buf
, size
);
287 if (gfs2_assert_warn(sdp
, gfs2_is_jdata(ip
)))
291 o
= do_div(lblock
, sdp
->sd_jbsize
) + sizeof(struct gfs2_meta_header
);
293 while (copied
< size
) {
295 struct buffer_head
*bh
;
298 amount
= size
- copied
;
299 if (amount
> sdp
->sd_sb
.sb_bsize
- o
)
300 amount
= sdp
->sd_sb
.sb_bsize
- o
;
304 error
= gfs2_extent_map(&ip
->i_inode
, lblock
, &new,
306 if (error
|| !dblock
)
309 bh
= gfs2_meta_ra(ip
->i_gl
, dblock
, extlen
);
311 error
= gfs2_meta_read(ip
->i_gl
, dblock
, DIO_WAIT
, 0, &bh
);
315 error
= gfs2_metatype_check(sdp
, bh
, GFS2_METATYPE_JD
);
322 memcpy(buf
, bh
->b_data
+ o
, amount
);
324 buf
+= (amount
/sizeof(__be64
));
327 o
= sizeof(struct gfs2_meta_header
);
332 return (copied
) ? copied
: error
;
336 * gfs2_dir_get_hash_table - Get pointer to the dir hash table
337 * @ip: The inode in question
339 * Returns: The hash table or an error
342 static __be64
*gfs2_dir_get_hash_table(struct gfs2_inode
*ip
)
344 struct inode
*inode
= &ip
->i_inode
;
349 BUG_ON(!(ip
->i_diskflags
& GFS2_DIF_EXHASH
));
351 hc
= ip
->i_hash_cache
;
355 hsize
= BIT(ip
->i_depth
);
356 hsize
*= sizeof(__be64
);
357 if (hsize
!= i_size_read(&ip
->i_inode
)) {
358 gfs2_consist_inode(ip
);
359 return ERR_PTR(-EIO
);
362 hc
= kmalloc(hsize
, GFP_NOFS
| __GFP_NOWARN
);
364 hc
= __vmalloc(hsize
, GFP_NOFS
, PAGE_KERNEL
);
367 return ERR_PTR(-ENOMEM
);
369 ret
= gfs2_dir_read_data(ip
, hc
, hsize
);
375 spin_lock(&inode
->i_lock
);
376 if (likely(!ip
->i_hash_cache
)) {
377 ip
->i_hash_cache
= hc
;
380 spin_unlock(&inode
->i_lock
);
383 return ip
->i_hash_cache
;
387 * gfs2_dir_hash_inval - Invalidate dir hash
388 * @ip: The directory inode
390 * Must be called with an exclusive glock, or during glock invalidation.
392 void gfs2_dir_hash_inval(struct gfs2_inode
*ip
)
396 spin_lock(&ip
->i_inode
.i_lock
);
397 hc
= ip
->i_hash_cache
;
398 ip
->i_hash_cache
= NULL
;
399 spin_unlock(&ip
->i_inode
.i_lock
);
404 static inline int gfs2_dirent_sentinel(const struct gfs2_dirent
*dent
)
406 return dent
->de_inum
.no_addr
== 0 || dent
->de_inum
.no_formal_ino
== 0;
409 static inline int __gfs2_dirent_find(const struct gfs2_dirent
*dent
,
410 const struct qstr
*name
, int ret
)
412 if (!gfs2_dirent_sentinel(dent
) &&
413 be32_to_cpu(dent
->de_hash
) == name
->hash
&&
414 be16_to_cpu(dent
->de_name_len
) == name
->len
&&
415 memcmp(dent
+1, name
->name
, name
->len
) == 0)
420 static int gfs2_dirent_find(const struct gfs2_dirent
*dent
,
421 const struct qstr
*name
,
424 return __gfs2_dirent_find(dent
, name
, 1);
427 static int gfs2_dirent_prev(const struct gfs2_dirent
*dent
,
428 const struct qstr
*name
,
431 return __gfs2_dirent_find(dent
, name
, 2);
435 * name->name holds ptr to start of block.
436 * name->len holds size of block.
438 static int gfs2_dirent_last(const struct gfs2_dirent
*dent
,
439 const struct qstr
*name
,
442 const char *start
= name
->name
;
443 const char *end
= (const char *)dent
+ be16_to_cpu(dent
->de_rec_len
);
444 if (name
->len
== (end
- start
))
449 /* Look for the dirent that contains the offset specified in data. Once we
450 * find that dirent, there must be space available there for the new dirent */
451 static int gfs2_dirent_find_offset(const struct gfs2_dirent
*dent
,
452 const struct qstr
*name
,
455 unsigned required
= GFS2_DIRENT_SIZE(name
->len
);
456 unsigned actual
= GFS2_DIRENT_SIZE(be16_to_cpu(dent
->de_name_len
));
457 unsigned totlen
= be16_to_cpu(dent
->de_rec_len
);
459 if (ptr
< (void *)dent
|| ptr
>= (void *)dent
+ totlen
)
461 if (gfs2_dirent_sentinel(dent
))
463 if (ptr
< (void *)dent
+ actual
)
465 if ((void *)dent
+ totlen
>= ptr
+ required
)
470 static int gfs2_dirent_find_space(const struct gfs2_dirent
*dent
,
471 const struct qstr
*name
,
474 unsigned required
= GFS2_DIRENT_SIZE(name
->len
);
475 unsigned actual
= GFS2_DIRENT_SIZE(be16_to_cpu(dent
->de_name_len
));
476 unsigned totlen
= be16_to_cpu(dent
->de_rec_len
);
478 if (gfs2_dirent_sentinel(dent
))
480 if (totlen
- actual
>= required
)
485 struct dirent_gather
{
486 const struct gfs2_dirent
**pdent
;
490 static int gfs2_dirent_gather(const struct gfs2_dirent
*dent
,
491 const struct qstr
*name
,
494 struct dirent_gather
*g
= opaque
;
495 if (!gfs2_dirent_sentinel(dent
)) {
496 g
->pdent
[g
->offset
++] = dent
;
502 * Other possible things to check:
503 * - Inode located within filesystem size (and on valid block)
504 * - Valid directory entry type
505 * Not sure how heavy-weight we want to make this... could also check
506 * hash is correct for example, but that would take a lot of extra time.
507 * For now the most important thing is to check that the various sizes
510 static int gfs2_check_dirent(struct gfs2_dirent
*dent
, unsigned int offset
,
511 unsigned int size
, unsigned int len
, int first
)
513 const char *msg
= "gfs2_dirent too small";
514 if (unlikely(size
< sizeof(struct gfs2_dirent
)))
516 msg
= "gfs2_dirent misaligned";
517 if (unlikely(offset
& 0x7))
519 msg
= "gfs2_dirent points beyond end of block";
520 if (unlikely(offset
+ size
> len
))
522 msg
= "zero inode number";
523 if (unlikely(!first
&& gfs2_dirent_sentinel(dent
)))
525 msg
= "name length is greater than space in dirent";
526 if (!gfs2_dirent_sentinel(dent
) &&
527 unlikely(sizeof(struct gfs2_dirent
)+be16_to_cpu(dent
->de_name_len
) >
532 pr_warn("%s: %s (%s)\n",
533 __func__
, msg
, first
? "first in block" : "not first in block");
537 static int gfs2_dirent_offset(const void *buf
)
539 const struct gfs2_meta_header
*h
= buf
;
544 switch(be32_to_cpu(h
->mh_type
)) {
545 case GFS2_METATYPE_LF
:
546 offset
= sizeof(struct gfs2_leaf
);
548 case GFS2_METATYPE_DI
:
549 offset
= sizeof(struct gfs2_dinode
);
556 pr_warn("%s: wrong block type %u\n", __func__
, be32_to_cpu(h
->mh_type
));
560 static struct gfs2_dirent
*gfs2_dirent_scan(struct inode
*inode
, void *buf
,
561 unsigned int len
, gfs2_dscan_t scan
,
562 const struct qstr
*name
,
565 struct gfs2_dirent
*dent
, *prev
;
570 ret
= gfs2_dirent_offset(buf
);
577 size
= be16_to_cpu(dent
->de_rec_len
);
578 if (gfs2_check_dirent(dent
, offset
, size
, len
, 1))
581 ret
= scan(dent
, name
, opaque
);
589 size
= be16_to_cpu(dent
->de_rec_len
);
590 if (gfs2_check_dirent(dent
, offset
, size
, len
, 0))
600 return prev
? prev
: dent
;
607 gfs2_consist_inode(GFS2_I(inode
));
608 return ERR_PTR(-EIO
);
611 static int dirent_check_reclen(struct gfs2_inode
*dip
,
612 const struct gfs2_dirent
*d
, const void *end_p
)
615 u16 rec_len
= be16_to_cpu(d
->de_rec_len
);
617 if (unlikely(rec_len
< sizeof(struct gfs2_dirent
)))
625 gfs2_consist_inode(dip
);
630 * dirent_next - Next dirent
631 * @dip: the directory
633 * @dent: Pointer to list of dirents
635 * Returns: 0 on success, error code otherwise
638 static int dirent_next(struct gfs2_inode
*dip
, struct buffer_head
*bh
,
639 struct gfs2_dirent
**dent
)
641 struct gfs2_dirent
*cur
= *dent
, *tmp
;
642 char *bh_end
= bh
->b_data
+ bh
->b_size
;
645 ret
= dirent_check_reclen(dip
, cur
, bh_end
);
649 tmp
= (void *)cur
+ ret
;
650 ret
= dirent_check_reclen(dip
, tmp
, bh_end
);
654 /* Only the first dent could ever have de_inum.no_addr == 0 */
655 if (gfs2_dirent_sentinel(tmp
)) {
656 gfs2_consist_inode(dip
);
665 * dirent_del - Delete a dirent
666 * @dip: The GFS2 inode
668 * @prev: The previous dirent
669 * @cur: The current dirent
673 static void dirent_del(struct gfs2_inode
*dip
, struct buffer_head
*bh
,
674 struct gfs2_dirent
*prev
, struct gfs2_dirent
*cur
)
676 u16 cur_rec_len
, prev_rec_len
;
678 if (gfs2_dirent_sentinel(cur
)) {
679 gfs2_consist_inode(dip
);
683 gfs2_trans_add_meta(dip
->i_gl
, bh
);
685 /* If there is no prev entry, this is the first entry in the block.
686 The de_rec_len is already as big as it needs to be. Just zero
687 out the inode number and return. */
690 cur
->de_inum
.no_addr
= 0;
691 cur
->de_inum
.no_formal_ino
= 0;
695 /* Combine this dentry with the previous one. */
697 prev_rec_len
= be16_to_cpu(prev
->de_rec_len
);
698 cur_rec_len
= be16_to_cpu(cur
->de_rec_len
);
700 if ((char *)prev
+ prev_rec_len
!= (char *)cur
)
701 gfs2_consist_inode(dip
);
702 if ((char *)cur
+ cur_rec_len
> bh
->b_data
+ bh
->b_size
)
703 gfs2_consist_inode(dip
);
705 prev_rec_len
+= cur_rec_len
;
706 prev
->de_rec_len
= cpu_to_be16(prev_rec_len
);
710 static struct gfs2_dirent
*do_init_dirent(struct inode
*inode
,
711 struct gfs2_dirent
*dent
,
712 const struct qstr
*name
,
713 struct buffer_head
*bh
,
716 struct gfs2_inode
*ip
= GFS2_I(inode
);
717 struct gfs2_dirent
*ndent
;
720 totlen
= be16_to_cpu(dent
->de_rec_len
);
721 BUG_ON(offset
+ name
->len
> totlen
);
722 gfs2_trans_add_meta(ip
->i_gl
, bh
);
723 ndent
= (struct gfs2_dirent
*)((char *)dent
+ offset
);
724 dent
->de_rec_len
= cpu_to_be16(offset
);
725 gfs2_qstr2dirent(name
, totlen
- offset
, ndent
);
731 * Takes a dent from which to grab space as an argument. Returns the
732 * newly created dent.
734 static struct gfs2_dirent
*gfs2_init_dirent(struct inode
*inode
,
735 struct gfs2_dirent
*dent
,
736 const struct qstr
*name
,
737 struct buffer_head
*bh
)
741 if (!gfs2_dirent_sentinel(dent
))
742 offset
= GFS2_DIRENT_SIZE(be16_to_cpu(dent
->de_name_len
));
743 return do_init_dirent(inode
, dent
, name
, bh
, offset
);
746 static struct gfs2_dirent
*gfs2_dirent_split_alloc(struct inode
*inode
,
747 struct buffer_head
*bh
,
748 const struct qstr
*name
,
751 struct gfs2_dirent
*dent
;
752 dent
= gfs2_dirent_scan(inode
, bh
->b_data
, bh
->b_size
,
753 gfs2_dirent_find_offset
, name
, ptr
);
754 if (!dent
|| IS_ERR(dent
))
756 return do_init_dirent(inode
, dent
, name
, bh
,
757 (unsigned)(ptr
- (void *)dent
));
760 static int get_leaf(struct gfs2_inode
*dip
, u64 leaf_no
,
761 struct buffer_head
**bhp
)
765 error
= gfs2_meta_read(dip
->i_gl
, leaf_no
, DIO_WAIT
, 0, bhp
);
766 if (!error
&& gfs2_metatype_check(GFS2_SB(&dip
->i_inode
), *bhp
, GFS2_METATYPE_LF
)) {
767 /* pr_info("block num=%llu\n", leaf_no); */
775 * get_leaf_nr - Get a leaf number associated with the index
776 * @dip: The GFS2 inode
780 * Returns: 0 on success, error code otherwise
783 static int get_leaf_nr(struct gfs2_inode
*dip
, u32 index
,
789 hash
= gfs2_dir_get_hash_table(dip
);
790 error
= PTR_ERR_OR_ZERO(hash
);
793 *leaf_out
= be64_to_cpu(*(hash
+ index
));
798 static int get_first_leaf(struct gfs2_inode
*dip
, u32 index
,
799 struct buffer_head
**bh_out
)
804 error
= get_leaf_nr(dip
, index
, &leaf_no
);
806 error
= get_leaf(dip
, leaf_no
, bh_out
);
811 static struct gfs2_dirent
*gfs2_dirent_search(struct inode
*inode
,
812 const struct qstr
*name
,
814 struct buffer_head
**pbh
)
816 struct buffer_head
*bh
;
817 struct gfs2_dirent
*dent
;
818 struct gfs2_inode
*ip
= GFS2_I(inode
);
821 if (ip
->i_diskflags
& GFS2_DIF_EXHASH
) {
822 struct gfs2_leaf
*leaf
;
823 unsigned int hsize
= BIT(ip
->i_depth
);
826 if (hsize
* sizeof(u64
) != i_size_read(inode
)) {
827 gfs2_consist_inode(ip
);
828 return ERR_PTR(-EIO
);
831 index
= name
->hash
>> (32 - ip
->i_depth
);
832 error
= get_first_leaf(ip
, index
, &bh
);
834 return ERR_PTR(error
);
836 dent
= gfs2_dirent_scan(inode
, bh
->b_data
, bh
->b_size
,
840 leaf
= (struct gfs2_leaf
*)bh
->b_data
;
841 ln
= be64_to_cpu(leaf
->lf_next
);
846 error
= get_leaf(ip
, ln
, &bh
);
849 return error
? ERR_PTR(error
) : NULL
;
853 error
= gfs2_meta_inode_buffer(ip
, &bh
);
855 return ERR_PTR(error
);
856 dent
= gfs2_dirent_scan(inode
, bh
->b_data
, bh
->b_size
, scan
, name
, NULL
);
858 if (unlikely(dent
== NULL
|| IS_ERR(dent
))) {
866 static struct gfs2_leaf
*new_leaf(struct inode
*inode
, struct buffer_head
**pbh
, u16 depth
)
868 struct gfs2_inode
*ip
= GFS2_I(inode
);
872 struct buffer_head
*bh
;
873 struct gfs2_leaf
*leaf
;
874 struct gfs2_dirent
*dent
;
875 struct timespec tv
= current_time(inode
);
877 error
= gfs2_alloc_blocks(ip
, &bn
, &n
, 0, NULL
);
880 bh
= gfs2_meta_new(ip
->i_gl
, bn
);
884 gfs2_trans_add_unrevoke(GFS2_SB(inode
), bn
, 1);
885 gfs2_trans_add_meta(ip
->i_gl
, bh
);
886 gfs2_metatype_set(bh
, GFS2_METATYPE_LF
, GFS2_FORMAT_LF
);
887 leaf
= (struct gfs2_leaf
*)bh
->b_data
;
888 leaf
->lf_depth
= cpu_to_be16(depth
);
889 leaf
->lf_entries
= 0;
890 leaf
->lf_dirent_format
= cpu_to_be32(GFS2_FORMAT_DE
);
892 leaf
->lf_inode
= cpu_to_be64(ip
->i_no_addr
);
893 leaf
->lf_dist
= cpu_to_be32(1);
894 leaf
->lf_nsec
= cpu_to_be32(tv
.tv_nsec
);
895 leaf
->lf_sec
= cpu_to_be64(tv
.tv_sec
);
896 memset(leaf
->lf_reserved2
, 0, sizeof(leaf
->lf_reserved2
));
897 dent
= (struct gfs2_dirent
*)(leaf
+1);
898 gfs2_qstr2dirent(&empty_name
, bh
->b_size
- sizeof(struct gfs2_leaf
), dent
);
904 * dir_make_exhash - Convert a stuffed directory into an ExHash directory
905 * @dip: The GFS2 inode
907 * Returns: 0 on success, error code otherwise
910 static int dir_make_exhash(struct inode
*inode
)
912 struct gfs2_inode
*dip
= GFS2_I(inode
);
913 struct gfs2_sbd
*sdp
= GFS2_SB(inode
);
914 struct gfs2_dirent
*dent
;
916 struct buffer_head
*bh
, *dibh
;
917 struct gfs2_leaf
*leaf
;
924 error
= gfs2_meta_inode_buffer(dip
, &dibh
);
928 /* Turn over a new leaf */
930 leaf
= new_leaf(inode
, &bh
, 0);
935 gfs2_assert(sdp
, dip
->i_entries
< BIT(16));
936 leaf
->lf_entries
= cpu_to_be16(dip
->i_entries
);
940 gfs2_buffer_copy_tail(bh
, sizeof(struct gfs2_leaf
), dibh
,
941 sizeof(struct gfs2_dinode
));
943 /* Find last entry */
946 args
.len
= bh
->b_size
- sizeof(struct gfs2_dinode
) +
947 sizeof(struct gfs2_leaf
);
948 args
.name
= bh
->b_data
;
949 dent
= gfs2_dirent_scan(&dip
->i_inode
, bh
->b_data
, bh
->b_size
,
950 gfs2_dirent_last
, &args
, NULL
);
959 return PTR_ERR(dent
);
962 /* Adjust the last dirent's record length
963 (Remember that dent still points to the last entry.) */
965 dent
->de_rec_len
= cpu_to_be16(be16_to_cpu(dent
->de_rec_len
) +
966 sizeof(struct gfs2_dinode
) -
967 sizeof(struct gfs2_leaf
));
971 /* We're done with the new leaf block, now setup the new
974 gfs2_trans_add_meta(dip
->i_gl
, dibh
);
975 gfs2_buffer_clear_tail(dibh
, sizeof(struct gfs2_dinode
));
977 lp
= (__be64
*)(dibh
->b_data
+ sizeof(struct gfs2_dinode
));
979 for (x
= sdp
->sd_hash_ptrs
; x
--; lp
++)
980 *lp
= cpu_to_be64(bn
);
982 i_size_write(inode
, sdp
->sd_sb
.sb_bsize
/ 2);
983 gfs2_add_inode_blocks(&dip
->i_inode
, 1);
984 dip
->i_diskflags
|= GFS2_DIF_EXHASH
;
986 for (x
= sdp
->sd_hash_ptrs
, y
= -1; x
; x
>>= 1, y
++) ;
989 gfs2_dinode_out(dip
, dibh
->b_data
);
997 * dir_split_leaf - Split a leaf block into two
998 * @dip: The GFS2 inode
1002 * Returns: 0 on success, error code on failure
1005 static int dir_split_leaf(struct inode
*inode
, const struct qstr
*name
)
1007 struct gfs2_inode
*dip
= GFS2_I(inode
);
1008 struct buffer_head
*nbh
, *obh
, *dibh
;
1009 struct gfs2_leaf
*nleaf
, *oleaf
;
1010 struct gfs2_dirent
*dent
= NULL
, *prev
= NULL
, *next
= NULL
, *new;
1011 u32 start
, len
, half_len
, divider
;
1018 index
= name
->hash
>> (32 - dip
->i_depth
);
1019 error
= get_leaf_nr(dip
, index
, &leaf_no
);
1023 /* Get the old leaf block */
1024 error
= get_leaf(dip
, leaf_no
, &obh
);
1028 oleaf
= (struct gfs2_leaf
*)obh
->b_data
;
1029 if (dip
->i_depth
== be16_to_cpu(oleaf
->lf_depth
)) {
1031 return 1; /* can't split */
1034 gfs2_trans_add_meta(dip
->i_gl
, obh
);
1036 nleaf
= new_leaf(inode
, &nbh
, be16_to_cpu(oleaf
->lf_depth
) + 1);
1041 bn
= nbh
->b_blocknr
;
1043 /* Compute the start and len of leaf pointers in the hash table. */
1044 len
= BIT(dip
->i_depth
- be16_to_cpu(oleaf
->lf_depth
));
1045 half_len
= len
>> 1;
1047 pr_warn("i_depth %u lf_depth %u index %u\n",
1048 dip
->i_depth
, be16_to_cpu(oleaf
->lf_depth
), index
);
1049 gfs2_consist_inode(dip
);
1054 start
= (index
& ~(len
- 1));
1056 /* Change the pointers.
1057 Don't bother distinguishing stuffed from non-stuffed.
1058 This code is complicated enough already. */
1059 lp
= kmalloc(half_len
* sizeof(__be64
), GFP_NOFS
);
1065 /* Change the pointers */
1066 for (x
= 0; x
< half_len
; x
++)
1067 lp
[x
] = cpu_to_be64(bn
);
1069 gfs2_dir_hash_inval(dip
);
1071 error
= gfs2_dir_write_data(dip
, (char *)lp
, start
* sizeof(u64
),
1072 half_len
* sizeof(u64
));
1073 if (error
!= half_len
* sizeof(u64
)) {
1081 /* Compute the divider */
1082 divider
= (start
+ half_len
) << (32 - dip
->i_depth
);
1084 /* Copy the entries */
1085 dent
= (struct gfs2_dirent
*)(obh
->b_data
+ sizeof(struct gfs2_leaf
));
1089 if (dirent_next(dip
, obh
, &next
))
1092 if (!gfs2_dirent_sentinel(dent
) &&
1093 be32_to_cpu(dent
->de_hash
) < divider
) {
1095 void *ptr
= ((char *)dent
- obh
->b_data
) + nbh
->b_data
;
1096 str
.name
= (char*)(dent
+1);
1097 str
.len
= be16_to_cpu(dent
->de_name_len
);
1098 str
.hash
= be32_to_cpu(dent
->de_hash
);
1099 new = gfs2_dirent_split_alloc(inode
, nbh
, &str
, ptr
);
1101 error
= PTR_ERR(new);
1105 new->de_inum
= dent
->de_inum
; /* No endian worries */
1106 new->de_type
= dent
->de_type
; /* No endian worries */
1107 be16_add_cpu(&nleaf
->lf_entries
, 1);
1109 dirent_del(dip
, obh
, prev
, dent
);
1111 if (!oleaf
->lf_entries
)
1112 gfs2_consist_inode(dip
);
1113 be16_add_cpu(&oleaf
->lf_entries
, -1);
1125 oleaf
->lf_depth
= nleaf
->lf_depth
;
1127 error
= gfs2_meta_inode_buffer(dip
, &dibh
);
1128 if (!gfs2_assert_withdraw(GFS2_SB(&dip
->i_inode
), !error
)) {
1129 gfs2_trans_add_meta(dip
->i_gl
, dibh
);
1130 gfs2_add_inode_blocks(&dip
->i_inode
, 1);
1131 gfs2_dinode_out(dip
, dibh
->b_data
);
1150 * dir_double_exhash - Double size of ExHash table
1151 * @dip: The GFS2 dinode
1153 * Returns: 0 on success, error code on failure
1156 static int dir_double_exhash(struct gfs2_inode
*dip
)
1158 struct buffer_head
*dibh
;
1166 hsize
= BIT(dip
->i_depth
);
1167 hsize_bytes
= hsize
* sizeof(__be64
);
1169 hc
= gfs2_dir_get_hash_table(dip
);
1173 hc2
= kmalloc(hsize_bytes
* 2, GFP_NOFS
| __GFP_NOWARN
);
1175 hc2
= __vmalloc(hsize_bytes
* 2, GFP_NOFS
, PAGE_KERNEL
);
1181 error
= gfs2_meta_inode_buffer(dip
, &dibh
);
1185 for (x
= 0; x
< hsize
; x
++) {
1191 error
= gfs2_dir_write_data(dip
, (char *)hc2
, 0, hsize_bytes
* 2);
1192 if (error
!= (hsize_bytes
* 2))
1195 gfs2_dir_hash_inval(dip
);
1196 dip
->i_hash_cache
= hc2
;
1198 gfs2_dinode_out(dip
, dibh
->b_data
);
1203 /* Replace original hash table & size */
1204 gfs2_dir_write_data(dip
, (char *)hc
, 0, hsize_bytes
);
1205 i_size_write(&dip
->i_inode
, hsize_bytes
);
1206 gfs2_dinode_out(dip
, dibh
->b_data
);
1214 * compare_dents - compare directory entries by hash value
1218 * When comparing the hash entries of @a to @b:
1224 static int compare_dents(const void *a
, const void *b
)
1226 const struct gfs2_dirent
*dent_a
, *dent_b
;
1230 dent_a
= *(const struct gfs2_dirent
**)a
;
1231 hash_a
= dent_a
->de_cookie
;
1233 dent_b
= *(const struct gfs2_dirent
**)b
;
1234 hash_b
= dent_b
->de_cookie
;
1236 if (hash_a
> hash_b
)
1238 else if (hash_a
< hash_b
)
1241 unsigned int len_a
= be16_to_cpu(dent_a
->de_name_len
);
1242 unsigned int len_b
= be16_to_cpu(dent_b
->de_name_len
);
1246 else if (len_a
< len_b
)
1249 ret
= memcmp(dent_a
+ 1, dent_b
+ 1, len_a
);
1256 * do_filldir_main - read out directory entries
1257 * @dip: The GFS2 inode
1258 * @ctx: what to feed the entries to
1259 * @darr: an array of struct gfs2_dirent pointers to read
1260 * @entries: the number of entries in darr
1261 * @copied: pointer to int that's non-zero if a entry has been copied out
1263 * Jump through some hoops to make sure that if there are hash collsions,
1264 * they are read out at the beginning of a buffer. We want to minimize
1265 * the possibility that they will fall into different readdir buffers or
1266 * that someone will want to seek to that location.
1268 * Returns: errno, >0 if the actor tells you to stop
1271 static int do_filldir_main(struct gfs2_inode
*dip
, struct dir_context
*ctx
,
1272 struct gfs2_dirent
**darr
, u32 entries
,
1273 u32 sort_start
, int *copied
)
1275 const struct gfs2_dirent
*dent
, *dent_next
;
1280 if (sort_start
< entries
)
1281 sort(&darr
[sort_start
], entries
- sort_start
,
1282 sizeof(struct gfs2_dirent
*), compare_dents
, NULL
);
1284 dent_next
= darr
[0];
1285 off_next
= dent_next
->de_cookie
;
1287 for (x
= 0, y
= 1; x
< entries
; x
++, y
++) {
1292 dent_next
= darr
[y
];
1293 off_next
= dent_next
->de_cookie
;
1299 if (off_next
== off
) {
1300 if (*copied
&& !run
)
1311 if (!dir_emit(ctx
, (const char *)(dent
+ 1),
1312 be16_to_cpu(dent
->de_name_len
),
1313 be64_to_cpu(dent
->de_inum
.no_addr
),
1314 be16_to_cpu(dent
->de_type
)))
1320 /* Increment the ctx->pos by one, so the next time we come into the
1321 do_filldir fxn, we get the next entry instead of the last one in the
1329 static void *gfs2_alloc_sort_buffer(unsigned size
)
1333 if (size
< KMALLOC_MAX_SIZE
)
1334 ptr
= kmalloc(size
, GFP_NOFS
| __GFP_NOWARN
);
1336 ptr
= __vmalloc(size
, GFP_NOFS
, PAGE_KERNEL
);
1341 static int gfs2_set_cookies(struct gfs2_sbd
*sdp
, struct buffer_head
*bh
,
1342 unsigned leaf_nr
, struct gfs2_dirent
**darr
,
1348 for (i
= 0; i
< entries
; i
++) {
1351 darr
[i
]->de_cookie
= be32_to_cpu(darr
[i
]->de_hash
);
1352 darr
[i
]->de_cookie
= gfs2_disk_hash2offset(darr
[i
]->de_cookie
);
1354 if (!sdp
->sd_args
.ar_loccookie
)
1356 offset
= (char *)(darr
[i
]) -
1357 (bh
->b_data
+ gfs2_dirent_offset(bh
->b_data
));
1358 offset
/= GFS2_MIN_DIRENT_SIZE
;
1359 offset
+= leaf_nr
* sdp
->sd_max_dents_per_leaf
;
1360 if (offset
>= GFS2_USE_HASH_FLAG
||
1361 leaf_nr
>= GFS2_USE_HASH_FLAG
) {
1362 darr
[i
]->de_cookie
|= GFS2_USE_HASH_FLAG
;
1367 darr
[i
]->de_cookie
&= GFS2_HASH_INDEX_MASK
;
1368 darr
[i
]->de_cookie
|= offset
;
1374 static int gfs2_dir_read_leaf(struct inode
*inode
, struct dir_context
*ctx
,
1375 int *copied
, unsigned *depth
,
1378 struct gfs2_inode
*ip
= GFS2_I(inode
);
1379 struct gfs2_sbd
*sdp
= GFS2_SB(inode
);
1380 struct buffer_head
*bh
;
1381 struct gfs2_leaf
*lf
;
1382 unsigned entries
= 0, entries2
= 0;
1383 unsigned leaves
= 0, leaf
= 0, offset
, sort_offset
;
1384 struct gfs2_dirent
**darr
, *dent
;
1385 struct dirent_gather g
;
1386 struct buffer_head
**larr
;
1387 int error
, i
, need_sort
= 0, sort_id
;
1391 error
= get_leaf(ip
, lfn
, &bh
);
1394 lf
= (struct gfs2_leaf
*)bh
->b_data
;
1396 *depth
= be16_to_cpu(lf
->lf_depth
);
1397 entries
+= be16_to_cpu(lf
->lf_entries
);
1399 lfn
= be64_to_cpu(lf
->lf_next
);
1403 if (*depth
< GFS2_DIR_MAX_DEPTH
|| !sdp
->sd_args
.ar_loccookie
) {
1413 * The extra 99 entries are not normally used, but are a buffer
1414 * zone in case the number of entries in the leaf is corrupt.
1415 * 99 is the maximum number of entries that can fit in a single
1418 larr
= gfs2_alloc_sort_buffer((leaves
+ entries
+ 99) * sizeof(void *));
1421 darr
= (struct gfs2_dirent
**)(larr
+ leaves
);
1422 g
.pdent
= (const struct gfs2_dirent
**)darr
;
1427 error
= get_leaf(ip
, lfn
, &bh
);
1430 lf
= (struct gfs2_leaf
*)bh
->b_data
;
1431 lfn
= be64_to_cpu(lf
->lf_next
);
1432 if (lf
->lf_entries
) {
1434 entries2
+= be16_to_cpu(lf
->lf_entries
);
1435 dent
= gfs2_dirent_scan(inode
, bh
->b_data
, bh
->b_size
,
1436 gfs2_dirent_gather
, NULL
, &g
);
1437 error
= PTR_ERR(dent
);
1440 if (entries2
!= g
.offset
) {
1441 fs_warn(sdp
, "Number of entries corrupt in dir "
1442 "leaf %llu, entries2 (%u) != "
1444 (unsigned long long)bh
->b_blocknr
,
1445 entries2
, g
.offset
);
1446 gfs2_consist_inode(ip
);
1451 sort_id
= gfs2_set_cookies(sdp
, bh
, leaf
, &darr
[offset
],
1452 be16_to_cpu(lf
->lf_entries
));
1453 if (!need_sort
&& sort_id
>= 0) {
1455 sort_offset
= offset
+ sort_id
;
1459 larr
[leaf
++] = NULL
;
1464 BUG_ON(entries2
!= entries
);
1465 error
= do_filldir_main(ip
, ctx
, darr
, entries
, need_sort
?
1466 sort_offset
: entries
, copied
);
1468 for(i
= 0; i
< leaf
; i
++)
1477 * gfs2_dir_readahead - Issue read-ahead requests for leaf blocks.
1479 * Note: we can't calculate each index like dir_e_read can because we don't
1480 * have the leaf, and therefore we don't have the depth, and therefore we
1481 * don't have the length. So we have to just read enough ahead to make up
1482 * for the loss of information.
1484 static void gfs2_dir_readahead(struct inode
*inode
, unsigned hsize
, u32 index
,
1485 struct file_ra_state
*f_ra
)
1487 struct gfs2_inode
*ip
= GFS2_I(inode
);
1488 struct gfs2_glock
*gl
= ip
->i_gl
;
1489 struct buffer_head
*bh
;
1490 u64 blocknr
= 0, last
;
1493 /* First check if we've already read-ahead for the whole range. */
1494 if (index
+ MAX_RA_BLOCKS
< f_ra
->start
)
1497 f_ra
->start
= max((pgoff_t
)index
, f_ra
->start
);
1498 for (count
= 0; count
< MAX_RA_BLOCKS
; count
++) {
1499 if (f_ra
->start
>= hsize
) /* if exceeded the hash table */
1503 blocknr
= be64_to_cpu(ip
->i_hash_cache
[f_ra
->start
]);
1505 if (blocknr
== last
)
1508 bh
= gfs2_getbuf(gl
, blocknr
, 1);
1509 if (trylock_buffer(bh
)) {
1510 if (buffer_uptodate(bh
)) {
1515 bh
->b_end_io
= end_buffer_read_sync
;
1516 submit_bh(REQ_OP_READ
,
1517 REQ_RAHEAD
| REQ_META
| REQ_PRIO
,
1526 * dir_e_read - Reads the entries from a directory into a filldir buffer
1527 * @dip: dinode pointer
1528 * @ctx: actor to feed the entries to
1533 static int dir_e_read(struct inode
*inode
, struct dir_context
*ctx
,
1534 struct file_ra_state
*f_ra
)
1536 struct gfs2_inode
*dip
= GFS2_I(inode
);
1544 hsize
= BIT(dip
->i_depth
);
1545 hash
= gfs2_dir_offset2hash(ctx
->pos
);
1546 index
= hash
>> (32 - dip
->i_depth
);
1548 if (dip
->i_hash_cache
== NULL
)
1550 lp
= gfs2_dir_get_hash_table(dip
);
1554 gfs2_dir_readahead(inode
, hsize
, index
, f_ra
);
1556 while (index
< hsize
) {
1557 error
= gfs2_dir_read_leaf(inode
, ctx
,
1559 be64_to_cpu(lp
[index
]));
1563 len
= BIT(dip
->i_depth
- depth
);
1564 index
= (index
& ~(len
- 1)) + len
;
1572 int gfs2_dir_read(struct inode
*inode
, struct dir_context
*ctx
,
1573 struct file_ra_state
*f_ra
)
1575 struct gfs2_inode
*dip
= GFS2_I(inode
);
1576 struct gfs2_sbd
*sdp
= GFS2_SB(inode
);
1577 struct dirent_gather g
;
1578 struct gfs2_dirent
**darr
, *dent
;
1579 struct buffer_head
*dibh
;
1583 if (!dip
->i_entries
)
1586 if (dip
->i_diskflags
& GFS2_DIF_EXHASH
)
1587 return dir_e_read(inode
, ctx
, f_ra
);
1589 if (!gfs2_is_stuffed(dip
)) {
1590 gfs2_consist_inode(dip
);
1594 error
= gfs2_meta_inode_buffer(dip
, &dibh
);
1599 /* 96 is max number of dirents which can be stuffed into an inode */
1600 darr
= kmalloc(96 * sizeof(struct gfs2_dirent
*), GFP_NOFS
);
1602 g
.pdent
= (const struct gfs2_dirent
**)darr
;
1604 dent
= gfs2_dirent_scan(inode
, dibh
->b_data
, dibh
->b_size
,
1605 gfs2_dirent_gather
, NULL
, &g
);
1607 error
= PTR_ERR(dent
);
1610 if (dip
->i_entries
!= g
.offset
) {
1611 fs_warn(sdp
, "Number of entries corrupt in dir %llu, "
1612 "ip->i_entries (%u) != g.offset (%u)\n",
1613 (unsigned long long)dip
->i_no_addr
,
1616 gfs2_consist_inode(dip
);
1620 gfs2_set_cookies(sdp
, dibh
, 0, darr
, dip
->i_entries
);
1621 error
= do_filldir_main(dip
, ctx
, darr
,
1622 dip
->i_entries
, 0, &copied
);
1636 * gfs2_dir_search - Search a directory
1637 * @dip: The GFS2 dir inode
1638 * @name: The name we are looking up
1639 * @fail_on_exist: Fail if the name exists rather than looking it up
1641 * This routine searches a directory for a file or another directory.
1642 * Assumes a glock is held on dip.
1647 struct inode
*gfs2_dir_search(struct inode
*dir
, const struct qstr
*name
,
1650 struct buffer_head
*bh
;
1651 struct gfs2_dirent
*dent
;
1652 u64 addr
, formal_ino
;
1655 dent
= gfs2_dirent_search(dir
, name
, gfs2_dirent_find
, &bh
);
1657 struct inode
*inode
;
1661 return ERR_CAST(dent
);
1662 dtype
= be16_to_cpu(dent
->de_type
);
1663 rahead
= be16_to_cpu(dent
->de_rahead
);
1664 addr
= be64_to_cpu(dent
->de_inum
.no_addr
);
1665 formal_ino
= be64_to_cpu(dent
->de_inum
.no_formal_ino
);
1668 return ERR_PTR(-EEXIST
);
1669 inode
= gfs2_inode_lookup(dir
->i_sb
, dtype
, addr
, formal_ino
,
1670 GFS2_BLKST_FREE
/* ignore */);
1672 GFS2_I(inode
)->i_rahead
= rahead
;
1675 return ERR_PTR(-ENOENT
);
1678 int gfs2_dir_check(struct inode
*dir
, const struct qstr
*name
,
1679 const struct gfs2_inode
*ip
)
1681 struct buffer_head
*bh
;
1682 struct gfs2_dirent
*dent
;
1685 dent
= gfs2_dirent_search(dir
, name
, gfs2_dirent_find
, &bh
);
1688 return PTR_ERR(dent
);
1690 if (be64_to_cpu(dent
->de_inum
.no_addr
) != ip
->i_no_addr
)
1692 if (be64_to_cpu(dent
->de_inum
.no_formal_ino
) !=
1693 ip
->i_no_formal_ino
)
1695 if (unlikely(IF2DT(ip
->i_inode
.i_mode
) !=
1696 be16_to_cpu(dent
->de_type
))) {
1697 gfs2_consist_inode(GFS2_I(dir
));
1710 * dir_new_leaf - Add a new leaf onto hash chain
1711 * @inode: The directory
1712 * @name: The name we are adding
1714 * This adds a new dir leaf onto an existing leaf when there is not
1715 * enough space to add a new dir entry. This is a last resort after
1716 * we've expanded the hash table to max size and also split existing
1717 * leaf blocks, so it will only occur for very large directories.
1719 * The dist parameter is set to 1 for leaf blocks directly attached
1720 * to the hash table, 2 for one layer of indirection, 3 for two layers
1721 * etc. We are thus able to tell the difference between an old leaf
1722 * with dist set to zero (i.e. "don't know") and a new one where we
1723 * set this information for debug/fsck purposes.
1725 * Returns: 0 on success, or -ve on error
1728 static int dir_new_leaf(struct inode
*inode
, const struct qstr
*name
)
1730 struct buffer_head
*bh
, *obh
;
1731 struct gfs2_inode
*ip
= GFS2_I(inode
);
1732 struct gfs2_leaf
*leaf
, *oleaf
;
1738 index
= name
->hash
>> (32 - ip
->i_depth
);
1739 error
= get_first_leaf(ip
, index
, &obh
);
1744 oleaf
= (struct gfs2_leaf
*)obh
->b_data
;
1745 bn
= be64_to_cpu(oleaf
->lf_next
);
1749 error
= get_leaf(ip
, bn
, &obh
);
1754 gfs2_trans_add_meta(ip
->i_gl
, obh
);
1756 leaf
= new_leaf(inode
, &bh
, be16_to_cpu(oleaf
->lf_depth
));
1761 leaf
->lf_dist
= cpu_to_be32(dist
);
1762 oleaf
->lf_next
= cpu_to_be64(bh
->b_blocknr
);
1766 error
= gfs2_meta_inode_buffer(ip
, &bh
);
1769 gfs2_trans_add_meta(ip
->i_gl
, bh
);
1770 gfs2_add_inode_blocks(&ip
->i_inode
, 1);
1771 gfs2_dinode_out(ip
, bh
->b_data
);
1776 static u16
gfs2_inode_ra_len(const struct gfs2_inode
*ip
)
1778 u64 where
= ip
->i_no_addr
+ 1;
1779 if (ip
->i_eattr
== where
)
1785 * gfs2_dir_add - Add new filename into directory
1786 * @inode: The directory inode
1787 * @name: The new name
1788 * @nip: The GFS2 inode to be linked in to the directory
1789 * @da: The directory addition info
1791 * If the call to gfs2_diradd_alloc_required resulted in there being
1792 * no need to allocate any new directory blocks, then it will contain
1793 * a pointer to the directory entry and the bh in which it resides. We
1794 * can use that without having to repeat the search. If there was no
1795 * free space, then we must now create more space.
1797 * Returns: 0 on success, error code on failure
1800 int gfs2_dir_add(struct inode
*inode
, const struct qstr
*name
,
1801 const struct gfs2_inode
*nip
, struct gfs2_diradd
*da
)
1803 struct gfs2_inode
*ip
= GFS2_I(inode
);
1804 struct buffer_head
*bh
= da
->bh
;
1805 struct gfs2_dirent
*dent
= da
->dent
;
1807 struct gfs2_leaf
*leaf
;
1811 if (da
->bh
== NULL
) {
1812 dent
= gfs2_dirent_search(inode
, name
,
1813 gfs2_dirent_find_space
, &bh
);
1817 return PTR_ERR(dent
);
1818 dent
= gfs2_init_dirent(inode
, dent
, name
, bh
);
1819 gfs2_inum_out(nip
, dent
);
1820 dent
->de_type
= cpu_to_be16(IF2DT(nip
->i_inode
.i_mode
));
1821 dent
->de_rahead
= cpu_to_be16(gfs2_inode_ra_len(nip
));
1822 tv
= current_time(&ip
->i_inode
);
1823 if (ip
->i_diskflags
& GFS2_DIF_EXHASH
) {
1824 leaf
= (struct gfs2_leaf
*)bh
->b_data
;
1825 be16_add_cpu(&leaf
->lf_entries
, 1);
1826 leaf
->lf_nsec
= cpu_to_be32(tv
.tv_nsec
);
1827 leaf
->lf_sec
= cpu_to_be64(tv
.tv_sec
);
1833 ip
->i_inode
.i_mtime
= ip
->i_inode
.i_ctime
= tv
;
1834 if (S_ISDIR(nip
->i_inode
.i_mode
))
1835 inc_nlink(&ip
->i_inode
);
1836 mark_inode_dirty(inode
);
1840 if (!(ip
->i_diskflags
& GFS2_DIF_EXHASH
)) {
1841 error
= dir_make_exhash(inode
);
1846 error
= dir_split_leaf(inode
, name
);
1851 if (ip
->i_depth
< GFS2_DIR_MAX_DEPTH
) {
1852 error
= dir_double_exhash(ip
);
1855 error
= dir_split_leaf(inode
, name
);
1861 error
= dir_new_leaf(inode
, name
);
1872 * gfs2_dir_del - Delete a directory entry
1873 * @dip: The GFS2 inode
1874 * @filename: The filename
1876 * Returns: 0 on success, error code on failure
1879 int gfs2_dir_del(struct gfs2_inode
*dip
, const struct dentry
*dentry
)
1881 const struct qstr
*name
= &dentry
->d_name
;
1882 struct gfs2_dirent
*dent
, *prev
= NULL
;
1883 struct buffer_head
*bh
;
1884 struct timespec tv
= current_time(&dip
->i_inode
);
1886 /* Returns _either_ the entry (if its first in block) or the
1887 previous entry otherwise */
1888 dent
= gfs2_dirent_search(&dip
->i_inode
, name
, gfs2_dirent_prev
, &bh
);
1890 gfs2_consist_inode(dip
);
1894 gfs2_consist_inode(dip
);
1895 return PTR_ERR(dent
);
1897 /* If not first in block, adjust pointers accordingly */
1898 if (gfs2_dirent_find(dent
, name
, NULL
) == 0) {
1900 dent
= (struct gfs2_dirent
*)((char *)dent
+ be16_to_cpu(prev
->de_rec_len
));
1903 dirent_del(dip
, bh
, prev
, dent
);
1904 if (dip
->i_diskflags
& GFS2_DIF_EXHASH
) {
1905 struct gfs2_leaf
*leaf
= (struct gfs2_leaf
*)bh
->b_data
;
1906 u16 entries
= be16_to_cpu(leaf
->lf_entries
);
1908 gfs2_consist_inode(dip
);
1909 leaf
->lf_entries
= cpu_to_be16(--entries
);
1910 leaf
->lf_nsec
= cpu_to_be32(tv
.tv_nsec
);
1911 leaf
->lf_sec
= cpu_to_be64(tv
.tv_sec
);
1915 if (!dip
->i_entries
)
1916 gfs2_consist_inode(dip
);
1918 dip
->i_inode
.i_mtime
= dip
->i_inode
.i_ctime
= tv
;
1919 if (d_is_dir(dentry
))
1920 drop_nlink(&dip
->i_inode
);
1921 mark_inode_dirty(&dip
->i_inode
);
1927 * gfs2_dir_mvino - Change inode number of directory entry
1928 * @dip: The GFS2 inode
1932 * This routine changes the inode number of a directory entry. It's used
1933 * by rename to change ".." when a directory is moved.
1934 * Assumes a glock is held on dvp.
1939 int gfs2_dir_mvino(struct gfs2_inode
*dip
, const struct qstr
*filename
,
1940 const struct gfs2_inode
*nip
, unsigned int new_type
)
1942 struct buffer_head
*bh
;
1943 struct gfs2_dirent
*dent
;
1946 dent
= gfs2_dirent_search(&dip
->i_inode
, filename
, gfs2_dirent_find
, &bh
);
1948 gfs2_consist_inode(dip
);
1952 return PTR_ERR(dent
);
1954 gfs2_trans_add_meta(dip
->i_gl
, bh
);
1955 gfs2_inum_out(nip
, dent
);
1956 dent
->de_type
= cpu_to_be16(new_type
);
1958 if (dip
->i_diskflags
& GFS2_DIF_EXHASH
) {
1960 error
= gfs2_meta_inode_buffer(dip
, &bh
);
1963 gfs2_trans_add_meta(dip
->i_gl
, bh
);
1966 dip
->i_inode
.i_mtime
= dip
->i_inode
.i_ctime
= current_time(&dip
->i_inode
);
1967 gfs2_dinode_out(dip
, bh
->b_data
);
1973 * leaf_dealloc - Deallocate a directory leaf
1974 * @dip: the directory
1975 * @index: the hash table offset in the directory
1976 * @len: the number of pointers to this leaf
1977 * @leaf_no: the leaf number
1978 * @leaf_bh: buffer_head for the starting leaf
1979 * last_dealloc: 1 if this is the final dealloc for the leaf, else 0
1984 static int leaf_dealloc(struct gfs2_inode
*dip
, u32 index
, u32 len
,
1985 u64 leaf_no
, struct buffer_head
*leaf_bh
,
1988 struct gfs2_sbd
*sdp
= GFS2_SB(&dip
->i_inode
);
1989 struct gfs2_leaf
*tmp_leaf
;
1990 struct gfs2_rgrp_list rlist
;
1991 struct buffer_head
*bh
, *dibh
;
1993 unsigned int rg_blocks
= 0, l_blocks
= 0;
1995 unsigned int x
, size
= len
* sizeof(u64
);
1998 error
= gfs2_rindex_update(sdp
);
2002 memset(&rlist
, 0, sizeof(struct gfs2_rgrp_list
));
2004 ht
= kzalloc(size
, GFP_NOFS
| __GFP_NOWARN
);
2006 ht
= __vmalloc(size
, GFP_NOFS
| __GFP_NOWARN
| __GFP_ZERO
,
2011 error
= gfs2_quota_hold(dip
, NO_UID_QUOTA_CHANGE
, NO_GID_QUOTA_CHANGE
);
2015 /* Count the number of leaves */
2018 for (blk
= leaf_no
; blk
; blk
= nblk
) {
2019 if (blk
!= leaf_no
) {
2020 error
= get_leaf(dip
, blk
, &bh
);
2024 tmp_leaf
= (struct gfs2_leaf
*)bh
->b_data
;
2025 nblk
= be64_to_cpu(tmp_leaf
->lf_next
);
2029 gfs2_rlist_add(dip
, &rlist
, blk
);
2033 gfs2_rlist_alloc(&rlist
, LM_ST_EXCLUSIVE
);
2035 for (x
= 0; x
< rlist
.rl_rgrps
; x
++) {
2036 struct gfs2_rgrpd
*rgd
= gfs2_glock2rgrp(rlist
.rl_ghs
[x
].gh_gl
);
2038 rg_blocks
+= rgd
->rd_length
;
2041 error
= gfs2_glock_nq_m(rlist
.rl_rgrps
, rlist
.rl_ghs
);
2045 error
= gfs2_trans_begin(sdp
,
2046 rg_blocks
+ (DIV_ROUND_UP(size
, sdp
->sd_jbsize
) + 1) +
2047 RES_DINODE
+ RES_STATFS
+ RES_QUOTA
, l_blocks
);
2049 goto out_rg_gunlock
;
2053 for (blk
= leaf_no
; blk
; blk
= nblk
) {
2054 if (blk
!= leaf_no
) {
2055 error
= get_leaf(dip
, blk
, &bh
);
2059 tmp_leaf
= (struct gfs2_leaf
*)bh
->b_data
;
2060 nblk
= be64_to_cpu(tmp_leaf
->lf_next
);
2064 gfs2_free_meta(dip
, blk
, 1);
2065 gfs2_add_inode_blocks(&dip
->i_inode
, -1);
2068 error
= gfs2_dir_write_data(dip
, ht
, index
* sizeof(u64
), size
);
2069 if (error
!= size
) {
2075 error
= gfs2_meta_inode_buffer(dip
, &dibh
);
2079 gfs2_trans_add_meta(dip
->i_gl
, dibh
);
2080 /* On the last dealloc, make this a regular file in case we crash.
2081 (We don't want to free these blocks a second time.) */
2083 dip
->i_inode
.i_mode
= S_IFREG
;
2084 gfs2_dinode_out(dip
, dibh
->b_data
);
2088 gfs2_trans_end(sdp
);
2090 gfs2_glock_dq_m(rlist
.rl_rgrps
, rlist
.rl_ghs
);
2092 gfs2_rlist_free(&rlist
);
2093 gfs2_quota_unhold(dip
);
2100 * gfs2_dir_exhash_dealloc - free all the leaf blocks in a directory
2101 * @dip: the directory
2103 * Dealloc all on-disk directory leaves to FREEMETA state
2104 * Change on-disk inode type to "regular file"
2109 int gfs2_dir_exhash_dealloc(struct gfs2_inode
*dip
)
2111 struct buffer_head
*bh
;
2112 struct gfs2_leaf
*leaf
;
2114 u32 index
= 0, next_index
;
2117 int error
= 0, last
;
2119 hsize
= BIT(dip
->i_depth
);
2121 lp
= gfs2_dir_get_hash_table(dip
);
2125 while (index
< hsize
) {
2126 leaf_no
= be64_to_cpu(lp
[index
]);
2128 error
= get_leaf(dip
, leaf_no
, &bh
);
2131 leaf
= (struct gfs2_leaf
*)bh
->b_data
;
2132 len
= BIT(dip
->i_depth
- be16_to_cpu(leaf
->lf_depth
));
2134 next_index
= (index
& ~(len
- 1)) + len
;
2135 last
= ((next_index
>= hsize
) ? 1 : 0);
2136 error
= leaf_dealloc(dip
, index
, len
, leaf_no
, bh
,
2146 if (index
!= hsize
) {
2147 gfs2_consist_inode(dip
);
2157 * gfs2_diradd_alloc_required - find if adding entry will require an allocation
2158 * @ip: the file being written to
2159 * @filname: the filename that's going to be added
2160 * @da: The structure to return dir alloc info
2162 * Returns: 0 if ok, -ve on error
2165 int gfs2_diradd_alloc_required(struct inode
*inode
, const struct qstr
*name
,
2166 struct gfs2_diradd
*da
)
2168 struct gfs2_inode
*ip
= GFS2_I(inode
);
2169 struct gfs2_sbd
*sdp
= GFS2_SB(inode
);
2170 const unsigned int extra
= sizeof(struct gfs2_dinode
) - sizeof(struct gfs2_leaf
);
2171 struct gfs2_dirent
*dent
;
2172 struct buffer_head
*bh
;
2178 dent
= gfs2_dirent_search(inode
, name
, gfs2_dirent_find_space
, &bh
);
2180 da
->nr_blocks
= sdp
->sd_max_dirres
;
2181 if (!(ip
->i_diskflags
& GFS2_DIF_EXHASH
) &&
2182 (GFS2_DIRENT_SIZE(name
->len
) < extra
))
2187 return PTR_ERR(dent
);