1 // SPDX-License-Identifier: GPL-2.0-or-later
5 * Creates, reads, walks and deletes directory-nodes
7 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
9 * Portions of this code from linux/fs/ext3/dir.c
11 * Copyright (C) 1992, 1993, 1994, 1995
13 * Laboratoire MASI - Institut Blaise pascal
14 * Universite Pierre et Marie Curie (Paris VI)
18 * linux/fs/minix/dir.c
20 * Copyright (C) 1991, 1992 Linus Torvalds
24 #include <linux/types.h>
25 #include <linux/slab.h>
26 #include <linux/highmem.h>
27 #include <linux/quotaops.h>
28 #include <linux/sort.h>
29 #include <linux/iversion.h>
31 #include <cluster/masklog.h>
36 #include "blockcheck.h"
39 #include "extent_map.h"
48 #include "ocfs2_trace.h"
50 #include "buffer_head_io.h"
52 #define NAMEI_RA_CHUNKS 2
53 #define NAMEI_RA_BLOCKS 4
54 #define NAMEI_RA_SIZE (NAMEI_RA_CHUNKS * NAMEI_RA_BLOCKS)
56 static int ocfs2_do_extend_dir(struct super_block *sb,
59 struct buffer_head *parent_fe_bh,
60 struct ocfs2_alloc_context *data_ac,
61 struct ocfs2_alloc_context *meta_ac,
62 struct buffer_head **new_bh);
63 static int ocfs2_dir_indexed(struct inode *inode);
66 * These are distinct checks because future versions of the file system will
67 * want to have a trailing dirent structure independent of indexing.
69 static int ocfs2_supports_dir_trailer(struct inode *dir)
71 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
73 if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
76 return ocfs2_meta_ecc(osb) || ocfs2_dir_indexed(dir);
80 * "new' here refers to the point at which we're creating a new
81 * directory via "mkdir()", but also when we're expanding an inline
82 * directory. In either case, we don't yet have the indexing bit set
83 * on the directory, so the standard checks will fail in when metaecc
84 * is turned off. Only directory-initialization type functions should
85 * use this then. Everything else wants ocfs2_supports_dir_trailer()
87 static int ocfs2_new_dir_wants_trailer(struct inode *dir)
89 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
91 return ocfs2_meta_ecc(osb) ||
92 ocfs2_supports_indexed_dirs(osb);
95 static inline unsigned int ocfs2_dir_trailer_blk_off(struct super_block *sb)
97 return sb->s_blocksize - sizeof(struct ocfs2_dir_block_trailer);
100 #define ocfs2_trailer_from_bh(_bh, _sb) ((struct ocfs2_dir_block_trailer *) ((_bh)->b_data + ocfs2_dir_trailer_blk_off((_sb))))
102 /* XXX ocfs2_block_dqtrailer() is similar but not quite - can we make
103 * them more consistent? */
104 struct ocfs2_dir_block_trailer *ocfs2_dir_trailer_from_size(int blocksize,
109 p += blocksize - sizeof(struct ocfs2_dir_block_trailer);
110 return (struct ocfs2_dir_block_trailer *)p;
114 * XXX: This is executed once on every dirent. We should consider optimizing
117 static int ocfs2_skip_dir_trailer(struct inode *dir,
118 struct ocfs2_dir_entry *de,
119 unsigned long offset,
120 unsigned long blklen)
122 unsigned long toff = blklen - sizeof(struct ocfs2_dir_block_trailer);
124 if (!ocfs2_supports_dir_trailer(dir))
133 static void ocfs2_init_dir_trailer(struct inode *inode,
134 struct buffer_head *bh, u16 rec_len)
136 struct ocfs2_dir_block_trailer *trailer;
138 trailer = ocfs2_trailer_from_bh(bh, inode->i_sb);
139 strcpy(trailer->db_signature, OCFS2_DIR_TRAILER_SIGNATURE);
140 trailer->db_compat_rec_len =
141 cpu_to_le16(sizeof(struct ocfs2_dir_block_trailer));
142 trailer->db_parent_dinode = cpu_to_le64(OCFS2_I(inode)->ip_blkno);
143 trailer->db_blkno = cpu_to_le64(bh->b_blocknr);
144 trailer->db_free_rec_len = cpu_to_le16(rec_len);
147 * Link an unindexed block with a dir trailer structure into the index free
148 * list. This function will modify dirdata_bh, but assumes you've already
149 * passed it to the journal.
151 static int ocfs2_dx_dir_link_trailer(struct inode *dir, handle_t *handle,
152 struct buffer_head *dx_root_bh,
153 struct buffer_head *dirdata_bh)
156 struct ocfs2_dx_root_block *dx_root;
157 struct ocfs2_dir_block_trailer *trailer;
159 ret = ocfs2_journal_access_dr(handle, INODE_CACHE(dir), dx_root_bh,
160 OCFS2_JOURNAL_ACCESS_WRITE);
165 trailer = ocfs2_trailer_from_bh(dirdata_bh, dir->i_sb);
166 dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
168 trailer->db_free_next = dx_root->dr_free_blk;
169 dx_root->dr_free_blk = cpu_to_le64(dirdata_bh->b_blocknr);
171 ocfs2_journal_dirty(handle, dx_root_bh);
177 static int ocfs2_free_list_at_root(struct ocfs2_dir_lookup_result *res)
179 return res->dl_prev_leaf_bh == NULL;
182 void ocfs2_free_dir_lookup_result(struct ocfs2_dir_lookup_result *res)
184 brelse(res->dl_dx_root_bh);
185 brelse(res->dl_leaf_bh);
186 brelse(res->dl_dx_leaf_bh);
187 brelse(res->dl_prev_leaf_bh);
190 static int ocfs2_dir_indexed(struct inode *inode)
192 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INDEXED_DIR_FL)
197 static inline int ocfs2_dx_root_inline(struct ocfs2_dx_root_block *dx_root)
199 return dx_root->dr_flags & OCFS2_DX_FLAG_INLINE;
203 * Hashing code adapted from ext3
205 #define DELTA 0x9E3779B9
207 static void TEA_transform(__u32 buf[4], __u32 const in[])
210 __u32 b0 = buf[0], b1 = buf[1];
211 __u32 a = in[0], b = in[1], c = in[2], d = in[3];
216 b0 += ((b1 << 4)+a) ^ (b1+sum) ^ ((b1 >> 5)+b);
217 b1 += ((b0 << 4)+c) ^ (b0+sum) ^ ((b0 >> 5)+d);
224 static void str2hashbuf(const char *msg, int len, __u32 *buf, int num)
229 pad = (__u32)len | ((__u32)len << 8);
235 for (i = 0; i < len; i++) {
238 val = msg[i] + (val << 8);
251 static void ocfs2_dx_dir_name_hash(struct inode *dir, const char *name, int len,
252 struct ocfs2_dx_hinfo *hinfo)
254 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
259 * XXX: Is this really necessary, if the index is never looked
260 * at by readdir? Is a hash value of '0' a bad idea?
262 if ((len == 1 && !strncmp(".", name, 1)) ||
263 (len == 2 && !strncmp("..", name, 2))) {
268 #ifdef OCFS2_DEBUG_DX_DIRS
270 * This makes it very easy to debug indexing problems. We
271 * should never allow this to be selected without hand editing
274 buf[0] = buf[1] = len;
278 memcpy(buf, osb->osb_dx_seed, sizeof(buf));
282 str2hashbuf(p, len, in, 4);
283 TEA_transform(buf, in);
289 hinfo->major_hash = buf[0];
290 hinfo->minor_hash = buf[1];
294 * bh passed here can be an inode block or a dir data block, depending
295 * on the inode inline data flag.
297 static int ocfs2_check_dir_entry(struct inode *dir,
298 struct ocfs2_dir_entry *de,
299 struct buffer_head *bh,
302 unsigned long offset)
304 const char *error_msg = NULL;
305 const int rlen = le16_to_cpu(de->rec_len);
306 const unsigned long next_offset = ((char *) de - buf) + rlen;
308 if (unlikely(rlen < OCFS2_DIR_REC_LEN(1)))
309 error_msg = "rec_len is smaller than minimal";
310 else if (unlikely(rlen % 4 != 0))
311 error_msg = "rec_len % 4 != 0";
312 else if (unlikely(rlen < OCFS2_DIR_REC_LEN(de->name_len)))
313 error_msg = "rec_len is too small for name_len";
314 else if (unlikely(next_offset > size))
315 error_msg = "directory entry overrun";
316 else if (unlikely(next_offset > size - OCFS2_DIR_REC_LEN(1)) &&
318 error_msg = "directory entry too close to end";
320 if (unlikely(error_msg != NULL))
321 mlog(ML_ERROR, "bad entry in directory #%llu: %s - "
322 "offset=%lu, inode=%llu, rec_len=%d, name_len=%d\n",
323 (unsigned long long)OCFS2_I(dir)->ip_blkno, error_msg,
324 offset, (unsigned long long)le64_to_cpu(de->inode), rlen,
327 return error_msg == NULL ? 1 : 0;
330 static inline int ocfs2_match(int len,
331 const char * const name,
332 struct ocfs2_dir_entry *de)
334 if (len != de->name_len)
338 return !memcmp(name, de->name, len);
342 * Returns 0 if not found, -1 on failure, and 1 on success
344 static inline int ocfs2_search_dirblock(struct buffer_head *bh,
346 const char *name, int namelen,
347 unsigned long offset,
350 struct ocfs2_dir_entry **res_dir)
352 struct ocfs2_dir_entry *de;
353 char *dlimit, *de_buf;
358 dlimit = de_buf + bytes;
360 while (de_buf < dlimit - OCFS2_DIR_MEMBER_LEN) {
361 /* this code is executed quadratically often */
362 /* do minimal checking `by hand' */
364 de = (struct ocfs2_dir_entry *) de_buf;
366 if (de->name + namelen <= dlimit &&
367 ocfs2_match(namelen, name, de)) {
368 /* found a match - just to be sure, do a full check */
369 if (!ocfs2_check_dir_entry(dir, de, bh, first_de,
379 /* prevent looping on a bad block */
380 de_len = le16_to_cpu(de->rec_len);
391 trace_ocfs2_search_dirblock(ret);
395 static struct buffer_head *ocfs2_find_entry_id(const char *name,
398 struct ocfs2_dir_entry **res_dir)
401 struct buffer_head *di_bh = NULL;
402 struct ocfs2_dinode *di;
403 struct ocfs2_inline_data *data;
405 ret = ocfs2_read_inode_block(dir, &di_bh);
411 di = (struct ocfs2_dinode *)di_bh->b_data;
412 data = &di->id2.i_data;
414 found = ocfs2_search_dirblock(di_bh, dir, name, namelen, 0,
415 data->id_data, i_size_read(dir), res_dir);
424 static int ocfs2_validate_dir_block(struct super_block *sb,
425 struct buffer_head *bh)
428 struct ocfs2_dir_block_trailer *trailer =
429 ocfs2_trailer_from_bh(bh, sb);
433 * We don't validate dirents here, that's handled
434 * in-place when the code walks them.
436 trace_ocfs2_validate_dir_block((unsigned long long)bh->b_blocknr);
438 BUG_ON(!buffer_uptodate(bh));
441 * If the ecc fails, we return the error but otherwise
442 * leave the filesystem running. We know any error is
443 * local to this block.
445 * Note that we are safe to call this even if the directory
446 * doesn't have a trailer. Filesystems without metaecc will do
447 * nothing, and filesystems with it will have one.
449 rc = ocfs2_validate_meta_ecc(sb, bh->b_data, &trailer->db_check);
451 mlog(ML_ERROR, "Checksum failed for dinode %llu\n",
452 (unsigned long long)bh->b_blocknr);
458 * Validate a directory trailer.
460 * We check the trailer here rather than in ocfs2_validate_dir_block()
461 * because that function doesn't have the inode to test.
463 static int ocfs2_check_dir_trailer(struct inode *dir, struct buffer_head *bh)
466 struct ocfs2_dir_block_trailer *trailer;
468 trailer = ocfs2_trailer_from_bh(bh, dir->i_sb);
469 if (!OCFS2_IS_VALID_DIR_TRAILER(trailer)) {
470 rc = ocfs2_error(dir->i_sb,
471 "Invalid dirblock #%llu: signature = %.*s\n",
472 (unsigned long long)bh->b_blocknr, 7,
473 trailer->db_signature);
476 if (le64_to_cpu(trailer->db_blkno) != bh->b_blocknr) {
477 rc = ocfs2_error(dir->i_sb,
478 "Directory block #%llu has an invalid db_blkno of %llu\n",
479 (unsigned long long)bh->b_blocknr,
480 (unsigned long long)le64_to_cpu(trailer->db_blkno));
483 if (le64_to_cpu(trailer->db_parent_dinode) !=
484 OCFS2_I(dir)->ip_blkno) {
485 rc = ocfs2_error(dir->i_sb,
486 "Directory block #%llu on dinode #%llu has an invalid parent_dinode of %llu\n",
487 (unsigned long long)bh->b_blocknr,
488 (unsigned long long)OCFS2_I(dir)->ip_blkno,
489 (unsigned long long)le64_to_cpu(trailer->db_blkno));
497 * This function forces all errors to -EIO for consistency with its
498 * predecessor, ocfs2_bread(). We haven't audited what returning the
499 * real error codes would do to callers. We log the real codes with
500 * mlog_errno() before we squash them.
502 static int ocfs2_read_dir_block(struct inode *inode, u64 v_block,
503 struct buffer_head **bh, int flags)
506 struct buffer_head *tmp = *bh;
508 rc = ocfs2_read_virt_blocks(inode, v_block, 1, &tmp, flags,
509 ocfs2_validate_dir_block);
515 if (!(flags & OCFS2_BH_READAHEAD) &&
516 ocfs2_supports_dir_trailer(inode)) {
517 rc = ocfs2_check_dir_trailer(inode, tmp);
526 /* If ocfs2_read_virt_blocks() got us a new bh, pass it up. */
531 return rc ? -EIO : 0;
535 * Read the block at 'phys' which belongs to this directory
536 * inode. This function does no virtual->physical block translation -
537 * what's passed in is assumed to be a valid directory block.
539 static int ocfs2_read_dir_block_direct(struct inode *dir, u64 phys,
540 struct buffer_head **bh)
543 struct buffer_head *tmp = *bh;
545 ret = ocfs2_read_block(INODE_CACHE(dir), phys, &tmp,
546 ocfs2_validate_dir_block);
552 if (ocfs2_supports_dir_trailer(dir)) {
553 ret = ocfs2_check_dir_trailer(dir, tmp);
568 static int ocfs2_validate_dx_root(struct super_block *sb,
569 struct buffer_head *bh)
572 struct ocfs2_dx_root_block *dx_root;
574 BUG_ON(!buffer_uptodate(bh));
576 dx_root = (struct ocfs2_dx_root_block *) bh->b_data;
578 ret = ocfs2_validate_meta_ecc(sb, bh->b_data, &dx_root->dr_check);
581 "Checksum failed for dir index root block %llu\n",
582 (unsigned long long)bh->b_blocknr);
586 if (!OCFS2_IS_VALID_DX_ROOT(dx_root)) {
587 ret = ocfs2_error(sb,
588 "Dir Index Root # %llu has bad signature %.*s\n",
589 (unsigned long long)le64_to_cpu(dx_root->dr_blkno),
590 7, dx_root->dr_signature);
596 static int ocfs2_read_dx_root(struct inode *dir, struct ocfs2_dinode *di,
597 struct buffer_head **dx_root_bh)
600 u64 blkno = le64_to_cpu(di->i_dx_root);
601 struct buffer_head *tmp = *dx_root_bh;
603 ret = ocfs2_read_block(INODE_CACHE(dir), blkno, &tmp,
604 ocfs2_validate_dx_root);
606 /* If ocfs2_read_block() got us a new bh, pass it up. */
607 if (!ret && !*dx_root_bh)
613 static int ocfs2_validate_dx_leaf(struct super_block *sb,
614 struct buffer_head *bh)
617 struct ocfs2_dx_leaf *dx_leaf = (struct ocfs2_dx_leaf *)bh->b_data;
619 BUG_ON(!buffer_uptodate(bh));
621 ret = ocfs2_validate_meta_ecc(sb, bh->b_data, &dx_leaf->dl_check);
624 "Checksum failed for dir index leaf block %llu\n",
625 (unsigned long long)bh->b_blocknr);
629 if (!OCFS2_IS_VALID_DX_LEAF(dx_leaf)) {
630 ret = ocfs2_error(sb, "Dir Index Leaf has bad signature %.*s\n",
631 7, dx_leaf->dl_signature);
637 static int ocfs2_read_dx_leaf(struct inode *dir, u64 blkno,
638 struct buffer_head **dx_leaf_bh)
641 struct buffer_head *tmp = *dx_leaf_bh;
643 ret = ocfs2_read_block(INODE_CACHE(dir), blkno, &tmp,
644 ocfs2_validate_dx_leaf);
646 /* If ocfs2_read_block() got us a new bh, pass it up. */
647 if (!ret && !*dx_leaf_bh)
654 * Read a series of dx_leaf blocks. This expects all buffer_head
655 * pointers to be NULL on function entry.
657 static int ocfs2_read_dx_leaves(struct inode *dir, u64 start, int num,
658 struct buffer_head **dx_leaf_bhs)
662 ret = ocfs2_read_blocks(INODE_CACHE(dir), start, num, dx_leaf_bhs, 0,
663 ocfs2_validate_dx_leaf);
670 static struct buffer_head *ocfs2_find_entry_el(const char *name, int namelen,
672 struct ocfs2_dir_entry **res_dir)
674 struct super_block *sb;
675 struct buffer_head *bh_use[NAMEI_RA_SIZE];
676 struct buffer_head *bh, *ret = NULL;
677 unsigned long start, block, b;
678 int ra_max = 0; /* Number of bh's in the readahead
680 int ra_ptr = 0; /* Current index into readahead
687 nblocks = i_size_read(dir) >> sb->s_blocksize_bits;
688 start = OCFS2_I(dir)->ip_dir_start_lookup;
689 if (start >= nblocks)
696 * We deal with the read-ahead logic here.
698 if (ra_ptr >= ra_max) {
699 /* Refill the readahead buffer */
702 for (ra_max = 0; ra_max < NAMEI_RA_SIZE; ra_max++) {
704 * Terminate if we reach the end of the
705 * directory and must wrap, or if our
706 * search has finished at this block.
708 if (b >= nblocks || (num && block == start)) {
709 bh_use[ra_max] = NULL;
715 ocfs2_read_dir_block(dir, b++, &bh,
720 if ((bh = bh_use[ra_ptr++]) == NULL)
722 if (ocfs2_read_dir_block(dir, block, &bh, 0)) {
723 /* read error, skip block & hope for the best.
724 * ocfs2_read_dir_block() has released the bh. */
725 mlog(ML_ERROR, "reading directory %llu, "
727 (unsigned long long)OCFS2_I(dir)->ip_blkno,
731 i = ocfs2_search_dirblock(bh, dir, name, namelen,
732 block << sb->s_blocksize_bits,
733 bh->b_data, sb->s_blocksize,
736 OCFS2_I(dir)->ip_dir_start_lookup = block;
738 goto cleanup_and_exit;
742 goto cleanup_and_exit;
745 if (++block >= nblocks)
747 } while (block != start);
750 * If the directory has grown while we were searching, then
751 * search the last part of the directory before giving up.
754 nblocks = i_size_read(dir) >> sb->s_blocksize_bits;
755 if (block < nblocks) {
761 /* Clean up the read-ahead blocks */
762 for (; ra_ptr < ra_max; ra_ptr++)
763 brelse(bh_use[ra_ptr]);
765 trace_ocfs2_find_entry_el(ret);
769 static int ocfs2_dx_dir_lookup_rec(struct inode *inode,
770 struct ocfs2_extent_list *el,
774 unsigned int *ret_clen)
776 int ret = 0, i, found;
777 struct buffer_head *eb_bh = NULL;
778 struct ocfs2_extent_block *eb;
779 struct ocfs2_extent_rec *rec = NULL;
781 if (el->l_tree_depth) {
782 ret = ocfs2_find_leaf(INODE_CACHE(inode), el, major_hash,
789 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
792 if (el->l_tree_depth) {
793 ret = ocfs2_error(inode->i_sb,
794 "Inode %lu has non zero tree depth in btree tree block %llu\n",
796 (unsigned long long)eb_bh->b_blocknr);
802 for (i = le16_to_cpu(el->l_next_free_rec) - 1; i >= 0; i--) {
803 rec = &el->l_recs[i];
805 if (le32_to_cpu(rec->e_cpos) <= major_hash) {
812 ret = ocfs2_error(inode->i_sb,
813 "Inode %lu has bad extent record (%u, %u, 0) in btree\n",
815 le32_to_cpu(rec->e_cpos),
816 ocfs2_rec_clusters(el, rec));
821 *ret_phys_blkno = le64_to_cpu(rec->e_blkno);
823 *ret_cpos = le32_to_cpu(rec->e_cpos);
825 *ret_clen = le16_to_cpu(rec->e_leaf_clusters);
833 * Returns the block index, from the start of the cluster which this
836 static inline unsigned int __ocfs2_dx_dir_hash_idx(struct ocfs2_super *osb,
839 return minor_hash & osb->osb_dx_mask;
842 static inline unsigned int ocfs2_dx_dir_hash_idx(struct ocfs2_super *osb,
843 struct ocfs2_dx_hinfo *hinfo)
845 return __ocfs2_dx_dir_hash_idx(osb, hinfo->minor_hash);
848 static int ocfs2_dx_dir_lookup(struct inode *inode,
849 struct ocfs2_extent_list *el,
850 struct ocfs2_dx_hinfo *hinfo,
855 unsigned int cend, clen;
858 u32 name_hash = hinfo->major_hash;
860 ret = ocfs2_dx_dir_lookup_rec(inode, el, name_hash, &cpos, &blkno,
868 if (name_hash >= cend) {
869 /* We want the last cluster */
870 blkno += ocfs2_clusters_to_blocks(inode->i_sb, clen - 1);
873 blkno += ocfs2_clusters_to_blocks(inode->i_sb,
879 * We now have the cluster which should hold our entry. To
880 * find the exact block from the start of the cluster to
881 * search, we take the lower bits of the hash.
883 blkno += ocfs2_dx_dir_hash_idx(OCFS2_SB(inode->i_sb), hinfo);
886 *ret_phys_blkno = blkno;
895 static int ocfs2_dx_dir_search(const char *name, int namelen,
897 struct ocfs2_dx_root_block *dx_root,
898 struct ocfs2_dir_lookup_result *res)
902 struct buffer_head *dx_leaf_bh = NULL;
903 struct ocfs2_dx_leaf *dx_leaf;
904 struct ocfs2_dx_entry *dx_entry = NULL;
905 struct buffer_head *dir_ent_bh = NULL;
906 struct ocfs2_dir_entry *dir_ent = NULL;
907 struct ocfs2_dx_hinfo *hinfo = &res->dl_hinfo;
908 struct ocfs2_extent_list *dr_el;
909 struct ocfs2_dx_entry_list *entry_list;
911 ocfs2_dx_dir_name_hash(dir, name, namelen, &res->dl_hinfo);
913 if (ocfs2_dx_root_inline(dx_root)) {
914 entry_list = &dx_root->dr_entries;
918 dr_el = &dx_root->dr_list;
920 ret = ocfs2_dx_dir_lookup(dir, dr_el, hinfo, NULL, &phys);
926 trace_ocfs2_dx_dir_search((unsigned long long)OCFS2_I(dir)->ip_blkno,
927 namelen, name, hinfo->major_hash,
928 hinfo->minor_hash, (unsigned long long)phys);
930 ret = ocfs2_read_dx_leaf(dir, phys, &dx_leaf_bh);
936 dx_leaf = (struct ocfs2_dx_leaf *) dx_leaf_bh->b_data;
938 trace_ocfs2_dx_dir_search_leaf_info(
939 le16_to_cpu(dx_leaf->dl_list.de_num_used),
940 le16_to_cpu(dx_leaf->dl_list.de_count));
942 entry_list = &dx_leaf->dl_list;
946 * Empty leaf is legal, so no need to check for that.
949 for (i = 0; i < le16_to_cpu(entry_list->de_num_used); i++) {
950 dx_entry = &entry_list->de_entries[i];
952 if (hinfo->major_hash != le32_to_cpu(dx_entry->dx_major_hash)
953 || hinfo->minor_hash != le32_to_cpu(dx_entry->dx_minor_hash))
957 * Search unindexed leaf block now. We're not
958 * guaranteed to find anything.
960 ret = ocfs2_read_dir_block_direct(dir,
961 le64_to_cpu(dx_entry->dx_dirent_blk),
969 * XXX: We should check the unindexed block here,
973 found = ocfs2_search_dirblock(dir_ent_bh, dir, name, namelen,
974 0, dir_ent_bh->b_data,
975 dir->i_sb->s_blocksize, &dir_ent);
980 /* This means we found a bad directory entry. */
995 res->dl_leaf_bh = dir_ent_bh;
996 res->dl_entry = dir_ent;
997 res->dl_dx_leaf_bh = dx_leaf_bh;
998 res->dl_dx_entry = dx_entry;
1009 static int ocfs2_find_entry_dx(const char *name, int namelen,
1011 struct ocfs2_dir_lookup_result *lookup)
1014 struct buffer_head *di_bh = NULL;
1015 struct ocfs2_dinode *di;
1016 struct buffer_head *dx_root_bh = NULL;
1017 struct ocfs2_dx_root_block *dx_root;
1019 ret = ocfs2_read_inode_block(dir, &di_bh);
1025 di = (struct ocfs2_dinode *)di_bh->b_data;
1027 ret = ocfs2_read_dx_root(dir, di, &dx_root_bh);
1032 dx_root = (struct ocfs2_dx_root_block *) dx_root_bh->b_data;
1034 ret = ocfs2_dx_dir_search(name, namelen, dir, dx_root, lookup);
1041 lookup->dl_dx_root_bh = dx_root_bh;
1050 * Try to find an entry of the provided name within 'dir'.
1052 * If nothing was found, -ENOENT is returned. Otherwise, zero is
1053 * returned and the struct 'res' will contain information useful to
1054 * other directory manipulation functions.
1056 * Caller can NOT assume anything about the contents of the
1057 * buffer_heads - they are passed back only so that it can be passed
1058 * into any one of the manipulation functions (add entry, delete
1059 * entry, etc). As an example, bh in the extent directory case is a
1060 * data block, in the inline-data case it actually points to an inode,
1061 * in the indexed directory case, multiple buffers are involved.
1063 int ocfs2_find_entry(const char *name, int namelen,
1064 struct inode *dir, struct ocfs2_dir_lookup_result *lookup)
1066 struct buffer_head *bh;
1067 struct ocfs2_dir_entry *res_dir = NULL;
1069 if (ocfs2_dir_indexed(dir))
1070 return ocfs2_find_entry_dx(name, namelen, dir, lookup);
1073 * The unindexed dir code only uses part of the lookup
1074 * structure, so there's no reason to push it down further
1077 if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
1078 bh = ocfs2_find_entry_id(name, namelen, dir, &res_dir);
1080 bh = ocfs2_find_entry_el(name, namelen, dir, &res_dir);
1085 lookup->dl_leaf_bh = bh;
1086 lookup->dl_entry = res_dir;
1091 * Update inode number and type of a previously found directory entry.
1093 int ocfs2_update_entry(struct inode *dir, handle_t *handle,
1094 struct ocfs2_dir_lookup_result *res,
1095 struct inode *new_entry_inode)
1098 ocfs2_journal_access_func access = ocfs2_journal_access_db;
1099 struct ocfs2_dir_entry *de = res->dl_entry;
1100 struct buffer_head *de_bh = res->dl_leaf_bh;
1103 * The same code works fine for both inline-data and extent
1104 * based directories, so no need to split this up. The only
1105 * difference is the journal_access function.
1108 if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
1109 access = ocfs2_journal_access_di;
1111 ret = access(handle, INODE_CACHE(dir), de_bh,
1112 OCFS2_JOURNAL_ACCESS_WRITE);
1118 de->inode = cpu_to_le64(OCFS2_I(new_entry_inode)->ip_blkno);
1119 ocfs2_set_de_type(de, new_entry_inode->i_mode);
1121 ocfs2_journal_dirty(handle, de_bh);
1128 * __ocfs2_delete_entry deletes a directory entry by merging it with the
1131 static int __ocfs2_delete_entry(handle_t *handle, struct inode *dir,
1132 struct ocfs2_dir_entry *de_del,
1133 struct buffer_head *bh, char *first_de,
1136 struct ocfs2_dir_entry *de, *pde;
1137 int i, status = -ENOENT;
1138 ocfs2_journal_access_func access = ocfs2_journal_access_db;
1140 if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
1141 access = ocfs2_journal_access_di;
1145 de = (struct ocfs2_dir_entry *) first_de;
1147 if (!ocfs2_check_dir_entry(dir, de, bh, first_de, bytes, i)) {
1153 status = access(handle, INODE_CACHE(dir), bh,
1154 OCFS2_JOURNAL_ACCESS_WRITE);
1161 le16_add_cpu(&pde->rec_len,
1162 le16_to_cpu(de->rec_len));
1164 inode_inc_iversion(dir);
1165 ocfs2_journal_dirty(handle, bh);
1168 i += le16_to_cpu(de->rec_len);
1170 de = (struct ocfs2_dir_entry *)((char *)de + le16_to_cpu(de->rec_len));
1176 static unsigned int ocfs2_figure_dirent_hole(struct ocfs2_dir_entry *de)
1180 if (le64_to_cpu(de->inode) == 0)
1181 hole = le16_to_cpu(de->rec_len);
1183 hole = le16_to_cpu(de->rec_len) -
1184 OCFS2_DIR_REC_LEN(de->name_len);
1189 static int ocfs2_find_max_rec_len(struct super_block *sb,
1190 struct buffer_head *dirblock_bh)
1192 int size, this_hole, largest_hole = 0;
1193 char *trailer, *de_buf, *limit, *start = dirblock_bh->b_data;
1194 struct ocfs2_dir_entry *de;
1196 trailer = (char *)ocfs2_trailer_from_bh(dirblock_bh, sb);
1197 size = ocfs2_dir_trailer_blk_off(sb);
1198 limit = start + size;
1200 de = (struct ocfs2_dir_entry *)de_buf;
1202 if (de_buf != trailer) {
1203 this_hole = ocfs2_figure_dirent_hole(de);
1204 if (this_hole > largest_hole)
1205 largest_hole = this_hole;
1208 de_buf += le16_to_cpu(de->rec_len);
1209 de = (struct ocfs2_dir_entry *)de_buf;
1210 } while (de_buf < limit);
1212 if (largest_hole >= OCFS2_DIR_MIN_REC_LEN)
1213 return largest_hole;
1217 static void ocfs2_dx_list_remove_entry(struct ocfs2_dx_entry_list *entry_list,
1220 int num_used = le16_to_cpu(entry_list->de_num_used);
1222 if (num_used == 1 || index == (num_used - 1))
1225 memmove(&entry_list->de_entries[index],
1226 &entry_list->de_entries[index + 1],
1227 (num_used - index - 1)*sizeof(struct ocfs2_dx_entry));
1230 memset(&entry_list->de_entries[num_used], 0,
1231 sizeof(struct ocfs2_dx_entry));
1232 entry_list->de_num_used = cpu_to_le16(num_used);
1235 static int ocfs2_delete_entry_dx(handle_t *handle, struct inode *dir,
1236 struct ocfs2_dir_lookup_result *lookup)
1238 int ret, index, max_rec_len, add_to_free_list = 0;
1239 struct buffer_head *dx_root_bh = lookup->dl_dx_root_bh;
1240 struct buffer_head *leaf_bh = lookup->dl_leaf_bh;
1241 struct ocfs2_dx_leaf *dx_leaf;
1242 struct ocfs2_dx_entry *dx_entry = lookup->dl_dx_entry;
1243 struct ocfs2_dir_block_trailer *trailer;
1244 struct ocfs2_dx_root_block *dx_root;
1245 struct ocfs2_dx_entry_list *entry_list;
1248 * This function gets a bit messy because we might have to
1249 * modify the root block, regardless of whether the indexed
1250 * entries are stored inline.
1254 * *Only* set 'entry_list' here, based on where we're looking
1255 * for the indexed entries. Later, we might still want to
1256 * journal both blocks, based on free list state.
1258 dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
1259 if (ocfs2_dx_root_inline(dx_root)) {
1260 entry_list = &dx_root->dr_entries;
1262 dx_leaf = (struct ocfs2_dx_leaf *) lookup->dl_dx_leaf_bh->b_data;
1263 entry_list = &dx_leaf->dl_list;
1266 /* Neither of these are a disk corruption - that should have
1267 * been caught by lookup, before we got here. */
1268 BUG_ON(le16_to_cpu(entry_list->de_count) <= 0);
1269 BUG_ON(le16_to_cpu(entry_list->de_num_used) <= 0);
1271 index = (char *)dx_entry - (char *)entry_list->de_entries;
1272 index /= sizeof(*dx_entry);
1274 if (index >= le16_to_cpu(entry_list->de_num_used)) {
1275 mlog(ML_ERROR, "Dir %llu: Bad dx_entry ptr idx %d, (%p, %p)\n",
1276 (unsigned long long)OCFS2_I(dir)->ip_blkno, index,
1277 entry_list, dx_entry);
1282 * We know that removal of this dirent will leave enough room
1283 * for a new one, so add this block to the free list if it
1284 * isn't already there.
1286 trailer = ocfs2_trailer_from_bh(leaf_bh, dir->i_sb);
1287 if (trailer->db_free_rec_len == 0)
1288 add_to_free_list = 1;
1291 * Add the block holding our index into the journal before
1292 * removing the unindexed entry. If we get an error return
1293 * from __ocfs2_delete_entry(), then it hasn't removed the
1294 * entry yet. Likewise, successful return means we *must*
1295 * remove the indexed entry.
1297 * We're also careful to journal the root tree block here as
1298 * the entry count needs to be updated. Also, we might be
1299 * adding to the start of the free list.
1301 ret = ocfs2_journal_access_dr(handle, INODE_CACHE(dir), dx_root_bh,
1302 OCFS2_JOURNAL_ACCESS_WRITE);
1308 if (!ocfs2_dx_root_inline(dx_root)) {
1309 ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir),
1310 lookup->dl_dx_leaf_bh,
1311 OCFS2_JOURNAL_ACCESS_WRITE);
1318 trace_ocfs2_delete_entry_dx((unsigned long long)OCFS2_I(dir)->ip_blkno,
1321 ret = __ocfs2_delete_entry(handle, dir, lookup->dl_entry,
1322 leaf_bh, leaf_bh->b_data, leaf_bh->b_size);
1328 max_rec_len = ocfs2_find_max_rec_len(dir->i_sb, leaf_bh);
1329 trailer->db_free_rec_len = cpu_to_le16(max_rec_len);
1330 if (add_to_free_list) {
1331 trailer->db_free_next = dx_root->dr_free_blk;
1332 dx_root->dr_free_blk = cpu_to_le64(leaf_bh->b_blocknr);
1333 ocfs2_journal_dirty(handle, dx_root_bh);
1336 /* leaf_bh was journal_accessed for us in __ocfs2_delete_entry */
1337 ocfs2_journal_dirty(handle, leaf_bh);
1339 le32_add_cpu(&dx_root->dr_num_entries, -1);
1340 ocfs2_journal_dirty(handle, dx_root_bh);
1342 ocfs2_dx_list_remove_entry(entry_list, index);
1344 if (!ocfs2_dx_root_inline(dx_root))
1345 ocfs2_journal_dirty(handle, lookup->dl_dx_leaf_bh);
1351 static inline int ocfs2_delete_entry_id(handle_t *handle,
1353 struct ocfs2_dir_entry *de_del,
1354 struct buffer_head *bh)
1357 struct buffer_head *di_bh = NULL;
1358 struct ocfs2_dinode *di;
1359 struct ocfs2_inline_data *data;
1361 ret = ocfs2_read_inode_block(dir, &di_bh);
1367 di = (struct ocfs2_dinode *)di_bh->b_data;
1368 data = &di->id2.i_data;
1370 ret = __ocfs2_delete_entry(handle, dir, de_del, bh, data->id_data,
1378 static inline int ocfs2_delete_entry_el(handle_t *handle,
1380 struct ocfs2_dir_entry *de_del,
1381 struct buffer_head *bh)
1383 return __ocfs2_delete_entry(handle, dir, de_del, bh, bh->b_data,
1388 * Delete a directory entry. Hide the details of directory
1389 * implementation from the caller.
1391 int ocfs2_delete_entry(handle_t *handle,
1393 struct ocfs2_dir_lookup_result *res)
1395 if (ocfs2_dir_indexed(dir))
1396 return ocfs2_delete_entry_dx(handle, dir, res);
1398 if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
1399 return ocfs2_delete_entry_id(handle, dir, res->dl_entry,
1402 return ocfs2_delete_entry_el(handle, dir, res->dl_entry,
1407 * Check whether 'de' has enough room to hold an entry of
1408 * 'new_rec_len' bytes.
1410 static inline int ocfs2_dirent_would_fit(struct ocfs2_dir_entry *de,
1411 unsigned int new_rec_len)
1413 unsigned int de_really_used;
1415 /* Check whether this is an empty record with enough space */
1416 if (le64_to_cpu(de->inode) == 0 &&
1417 le16_to_cpu(de->rec_len) >= new_rec_len)
1421 * Record might have free space at the end which we can
1424 de_really_used = OCFS2_DIR_REC_LEN(de->name_len);
1425 if (le16_to_cpu(de->rec_len) >= (de_really_used + new_rec_len))
1431 static void ocfs2_dx_dir_leaf_insert_tail(struct ocfs2_dx_leaf *dx_leaf,
1432 struct ocfs2_dx_entry *dx_new_entry)
1436 i = le16_to_cpu(dx_leaf->dl_list.de_num_used);
1437 dx_leaf->dl_list.de_entries[i] = *dx_new_entry;
1439 le16_add_cpu(&dx_leaf->dl_list.de_num_used, 1);
1442 static void ocfs2_dx_entry_list_insert(struct ocfs2_dx_entry_list *entry_list,
1443 struct ocfs2_dx_hinfo *hinfo,
1447 struct ocfs2_dx_entry *dx_entry;
1449 i = le16_to_cpu(entry_list->de_num_used);
1450 dx_entry = &entry_list->de_entries[i];
1452 memset(dx_entry, 0, sizeof(*dx_entry));
1453 dx_entry->dx_major_hash = cpu_to_le32(hinfo->major_hash);
1454 dx_entry->dx_minor_hash = cpu_to_le32(hinfo->minor_hash);
1455 dx_entry->dx_dirent_blk = cpu_to_le64(dirent_blk);
1457 le16_add_cpu(&entry_list->de_num_used, 1);
1460 static int __ocfs2_dx_dir_leaf_insert(struct inode *dir, handle_t *handle,
1461 struct ocfs2_dx_hinfo *hinfo,
1463 struct buffer_head *dx_leaf_bh)
1466 struct ocfs2_dx_leaf *dx_leaf;
1468 ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir), dx_leaf_bh,
1469 OCFS2_JOURNAL_ACCESS_WRITE);
1475 dx_leaf = (struct ocfs2_dx_leaf *)dx_leaf_bh->b_data;
1476 ocfs2_dx_entry_list_insert(&dx_leaf->dl_list, hinfo, dirent_blk);
1477 ocfs2_journal_dirty(handle, dx_leaf_bh);
1483 static void ocfs2_dx_inline_root_insert(struct inode *dir, handle_t *handle,
1484 struct ocfs2_dx_hinfo *hinfo,
1486 struct ocfs2_dx_root_block *dx_root)
1488 ocfs2_dx_entry_list_insert(&dx_root->dr_entries, hinfo, dirent_blk);
1491 static int ocfs2_dx_dir_insert(struct inode *dir, handle_t *handle,
1492 struct ocfs2_dir_lookup_result *lookup)
1495 struct ocfs2_dx_root_block *dx_root;
1496 struct buffer_head *dx_root_bh = lookup->dl_dx_root_bh;
1498 ret = ocfs2_journal_access_dr(handle, INODE_CACHE(dir), dx_root_bh,
1499 OCFS2_JOURNAL_ACCESS_WRITE);
1505 dx_root = (struct ocfs2_dx_root_block *)lookup->dl_dx_root_bh->b_data;
1506 if (ocfs2_dx_root_inline(dx_root)) {
1507 ocfs2_dx_inline_root_insert(dir, handle,
1509 lookup->dl_leaf_bh->b_blocknr,
1512 ret = __ocfs2_dx_dir_leaf_insert(dir, handle, &lookup->dl_hinfo,
1513 lookup->dl_leaf_bh->b_blocknr,
1514 lookup->dl_dx_leaf_bh);
1519 le32_add_cpu(&dx_root->dr_num_entries, 1);
1520 ocfs2_journal_dirty(handle, dx_root_bh);
1526 static void ocfs2_remove_block_from_free_list(struct inode *dir,
1528 struct ocfs2_dir_lookup_result *lookup)
1530 struct ocfs2_dir_block_trailer *trailer, *prev;
1531 struct ocfs2_dx_root_block *dx_root;
1532 struct buffer_head *bh;
1534 trailer = ocfs2_trailer_from_bh(lookup->dl_leaf_bh, dir->i_sb);
1536 if (ocfs2_free_list_at_root(lookup)) {
1537 bh = lookup->dl_dx_root_bh;
1538 dx_root = (struct ocfs2_dx_root_block *)bh->b_data;
1539 dx_root->dr_free_blk = trailer->db_free_next;
1541 bh = lookup->dl_prev_leaf_bh;
1542 prev = ocfs2_trailer_from_bh(bh, dir->i_sb);
1543 prev->db_free_next = trailer->db_free_next;
1546 trailer->db_free_rec_len = cpu_to_le16(0);
1547 trailer->db_free_next = cpu_to_le64(0);
1549 ocfs2_journal_dirty(handle, bh);
1550 ocfs2_journal_dirty(handle, lookup->dl_leaf_bh);
1554 * This expects that a journal write has been reserved on
1555 * lookup->dl_prev_leaf_bh or lookup->dl_dx_root_bh
1557 static void ocfs2_recalc_free_list(struct inode *dir, handle_t *handle,
1558 struct ocfs2_dir_lookup_result *lookup)
1561 struct ocfs2_dir_block_trailer *trailer;
1563 /* Walk dl_leaf_bh to figure out what the new free rec_len is. */
1564 max_rec_len = ocfs2_find_max_rec_len(dir->i_sb, lookup->dl_leaf_bh);
1567 * There's still room in this block, so no need to remove it
1568 * from the free list. In this case, we just want to update
1569 * the rec len accounting.
1571 trailer = ocfs2_trailer_from_bh(lookup->dl_leaf_bh, dir->i_sb);
1572 trailer->db_free_rec_len = cpu_to_le16(max_rec_len);
1573 ocfs2_journal_dirty(handle, lookup->dl_leaf_bh);
1575 ocfs2_remove_block_from_free_list(dir, handle, lookup);
1579 /* we don't always have a dentry for what we want to add, so people
1580 * like orphan dir can call this instead.
1582 * The lookup context must have been filled from
1583 * ocfs2_prepare_dir_for_insert.
1585 int __ocfs2_add_entry(handle_t *handle,
1587 const char *name, int namelen,
1588 struct inode *inode, u64 blkno,
1589 struct buffer_head *parent_fe_bh,
1590 struct ocfs2_dir_lookup_result *lookup)
1592 unsigned long offset;
1593 unsigned short rec_len;
1594 struct ocfs2_dir_entry *de, *de1;
1595 struct ocfs2_dinode *di = (struct ocfs2_dinode *)parent_fe_bh->b_data;
1596 struct super_block *sb = dir->i_sb;
1598 unsigned int size = sb->s_blocksize;
1599 struct buffer_head *insert_bh = lookup->dl_leaf_bh;
1600 char *data_start = insert_bh->b_data;
1602 if (ocfs2_dir_indexed(dir)) {
1603 struct buffer_head *bh;
1606 * An indexed dir may require that we update the free space
1607 * list. Reserve a write to the previous node in the list so
1608 * that we don't fail later.
1610 * XXX: This can be either a dx_root_block, or an unindexed
1611 * directory tree leaf block.
1613 if (ocfs2_free_list_at_root(lookup)) {
1614 bh = lookup->dl_dx_root_bh;
1615 retval = ocfs2_journal_access_dr(handle,
1616 INODE_CACHE(dir), bh,
1617 OCFS2_JOURNAL_ACCESS_WRITE);
1619 bh = lookup->dl_prev_leaf_bh;
1620 retval = ocfs2_journal_access_db(handle,
1621 INODE_CACHE(dir), bh,
1622 OCFS2_JOURNAL_ACCESS_WRITE);
1628 } else if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1629 data_start = di->id2.i_data.id_data;
1630 size = i_size_read(dir);
1632 BUG_ON(insert_bh != parent_fe_bh);
1635 rec_len = OCFS2_DIR_REC_LEN(namelen);
1637 de = (struct ocfs2_dir_entry *) data_start;
1639 BUG_ON((char *)de >= (size + data_start));
1641 /* These checks should've already been passed by the
1642 * prepare function, but I guess we can leave them
1644 if (!ocfs2_check_dir_entry(dir, de, insert_bh, data_start,
1649 if (ocfs2_match(namelen, name, de)) {
1654 /* We're guaranteed that we should have space, so we
1655 * can't possibly have hit the trailer...right? */
1656 mlog_bug_on_msg(ocfs2_skip_dir_trailer(dir, de, offset, size),
1657 "Hit dir trailer trying to insert %.*s "
1658 "(namelen %d) into directory %llu. "
1659 "offset is %lu, trailer offset is %d\n",
1660 namelen, name, namelen,
1661 (unsigned long long)parent_fe_bh->b_blocknr,
1662 offset, ocfs2_dir_trailer_blk_off(dir->i_sb));
1664 if (ocfs2_dirent_would_fit(de, rec_len)) {
1665 inode_set_mtime_to_ts(dir,
1666 inode_set_ctime_current(dir));
1667 retval = ocfs2_mark_inode_dirty(handle, dir, parent_fe_bh);
1673 if (insert_bh == parent_fe_bh)
1674 retval = ocfs2_journal_access_di(handle,
1677 OCFS2_JOURNAL_ACCESS_WRITE);
1679 retval = ocfs2_journal_access_db(handle,
1682 OCFS2_JOURNAL_ACCESS_WRITE);
1684 if (!retval && ocfs2_dir_indexed(dir))
1685 retval = ocfs2_dx_dir_insert(dir,
1695 /* By now the buffer is marked for journaling */
1696 offset += le16_to_cpu(de->rec_len);
1697 if (le64_to_cpu(de->inode)) {
1698 de1 = (struct ocfs2_dir_entry *)((char *) de +
1699 OCFS2_DIR_REC_LEN(de->name_len));
1701 cpu_to_le16(le16_to_cpu(de->rec_len) -
1702 OCFS2_DIR_REC_LEN(de->name_len));
1703 de->rec_len = cpu_to_le16(OCFS2_DIR_REC_LEN(de->name_len));
1706 de->file_type = FT_UNKNOWN;
1708 de->inode = cpu_to_le64(blkno);
1709 ocfs2_set_de_type(de, inode->i_mode);
1712 de->name_len = namelen;
1713 memcpy(de->name, name, namelen);
1715 if (ocfs2_dir_indexed(dir))
1716 ocfs2_recalc_free_list(dir, handle, lookup);
1718 inode_inc_iversion(dir);
1719 ocfs2_journal_dirty(handle, insert_bh);
1724 offset += le16_to_cpu(de->rec_len);
1725 de = (struct ocfs2_dir_entry *) ((char *) de + le16_to_cpu(de->rec_len));
1728 /* when you think about it, the assert above should prevent us
1729 * from ever getting here. */
1738 static int ocfs2_dir_foreach_blk_id(struct inode *inode,
1740 struct dir_context *ctx)
1743 unsigned long offset = ctx->pos;
1744 struct buffer_head *di_bh = NULL;
1745 struct ocfs2_dinode *di;
1746 struct ocfs2_inline_data *data;
1747 struct ocfs2_dir_entry *de;
1749 ret = ocfs2_read_inode_block(inode, &di_bh);
1751 mlog(ML_ERROR, "Unable to read inode block for dir %llu\n",
1752 (unsigned long long)OCFS2_I(inode)->ip_blkno);
1756 di = (struct ocfs2_dinode *)di_bh->b_data;
1757 data = &di->id2.i_data;
1759 while (ctx->pos < i_size_read(inode)) {
1760 /* If the dir block has changed since the last call to
1761 * readdir(2), then we might be pointing to an invalid
1762 * dirent right now. Scan from the start of the block
1764 if (!inode_eq_iversion(inode, *f_version)) {
1765 for (i = 0; i < i_size_read(inode) && i < offset; ) {
1766 de = (struct ocfs2_dir_entry *)
1767 (data->id_data + i);
1768 /* It's too expensive to do a full
1769 * dirent test each time round this
1770 * loop, but we do have to test at
1771 * least that it is non-zero. A
1772 * failure will be detected in the
1773 * dirent test below. */
1774 if (le16_to_cpu(de->rec_len) <
1775 OCFS2_DIR_REC_LEN(1))
1777 i += le16_to_cpu(de->rec_len);
1779 ctx->pos = offset = i;
1780 *f_version = inode_query_iversion(inode);
1783 de = (struct ocfs2_dir_entry *) (data->id_data + ctx->pos);
1784 if (!ocfs2_check_dir_entry(inode, de, di_bh, (char *)data->id_data,
1785 i_size_read(inode), ctx->pos)) {
1786 /* On error, skip the f_pos to the end. */
1787 ctx->pos = i_size_read(inode);
1790 offset += le16_to_cpu(de->rec_len);
1791 if (le64_to_cpu(de->inode)) {
1792 if (!dir_emit(ctx, de->name, de->name_len,
1793 le64_to_cpu(de->inode),
1794 fs_ftype_to_dtype(de->file_type)))
1797 ctx->pos += le16_to_cpu(de->rec_len);
1805 * NOTE: This function can be called against unindexed directories,
1808 static int ocfs2_dir_foreach_blk_el(struct inode *inode,
1810 struct dir_context *ctx,
1813 unsigned long offset, blk, last_ra_blk = 0;
1815 struct buffer_head * bh, * tmp;
1816 struct ocfs2_dir_entry * de;
1817 struct super_block * sb = inode->i_sb;
1818 unsigned int ra_sectors = 16;
1823 offset = ctx->pos & (sb->s_blocksize - 1);
1825 while (ctx->pos < i_size_read(inode)) {
1826 blk = ctx->pos >> sb->s_blocksize_bits;
1827 if (ocfs2_read_dir_block(inode, blk, &bh, 0)) {
1828 /* Skip the corrupt dirblock and keep trying */
1829 ctx->pos += sb->s_blocksize - offset;
1833 /* The idea here is to begin with 8k read-ahead and to stay
1834 * 4k ahead of our current position.
1836 * TODO: Use the pagecache for this. We just need to
1837 * make sure it's cluster-safe... */
1839 || (((last_ra_blk - blk) << 9) <= (ra_sectors / 2))) {
1840 for (i = ra_sectors >> (sb->s_blocksize_bits - 9);
1843 if (!ocfs2_read_dir_block(inode, ++blk, &tmp,
1844 OCFS2_BH_READAHEAD))
1851 /* If the dir block has changed since the last call to
1852 * readdir(2), then we might be pointing to an invalid
1853 * dirent right now. Scan from the start of the block
1855 if (!inode_eq_iversion(inode, *f_version)) {
1856 for (i = 0; i < sb->s_blocksize && i < offset; ) {
1857 de = (struct ocfs2_dir_entry *) (bh->b_data + i);
1858 /* It's too expensive to do a full
1859 * dirent test each time round this
1860 * loop, but we do have to test at
1861 * least that it is non-zero. A
1862 * failure will be detected in the
1863 * dirent test below. */
1864 if (le16_to_cpu(de->rec_len) <
1865 OCFS2_DIR_REC_LEN(1))
1867 i += le16_to_cpu(de->rec_len);
1870 ctx->pos = (ctx->pos & ~(sb->s_blocksize - 1))
1872 *f_version = inode_query_iversion(inode);
1875 while (ctx->pos < i_size_read(inode)
1876 && offset < sb->s_blocksize) {
1877 de = (struct ocfs2_dir_entry *) (bh->b_data + offset);
1878 if (!ocfs2_check_dir_entry(inode, de, bh, bh->b_data,
1879 sb->s_blocksize, offset)) {
1880 /* On error, skip the f_pos to the
1882 ctx->pos = (ctx->pos | (sb->s_blocksize - 1)) + 1;
1885 if (le64_to_cpu(de->inode)) {
1886 if (!dir_emit(ctx, de->name,
1888 le64_to_cpu(de->inode),
1889 fs_ftype_to_dtype(de->file_type))) {
1895 offset += le16_to_cpu(de->rec_len);
1896 ctx->pos += le16_to_cpu(de->rec_len);
1901 if (!persist && stored)
1907 static int ocfs2_dir_foreach_blk(struct inode *inode, u64 *f_version,
1908 struct dir_context *ctx,
1911 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
1912 return ocfs2_dir_foreach_blk_id(inode, f_version, ctx);
1913 return ocfs2_dir_foreach_blk_el(inode, f_version, ctx, persist);
1917 * This is intended to be called from inside other kernel functions,
1918 * so we fake some arguments.
1920 int ocfs2_dir_foreach(struct inode *inode, struct dir_context *ctx)
1922 u64 version = inode_query_iversion(inode);
1923 ocfs2_dir_foreach_blk(inode, &version, ctx, true);
1931 int ocfs2_readdir(struct file *file, struct dir_context *ctx)
1934 struct inode *inode = file_inode(file);
1937 trace_ocfs2_readdir((unsigned long long)OCFS2_I(inode)->ip_blkno);
1939 error = ocfs2_inode_lock_atime(inode, file->f_path.mnt, &lock_level, 1);
1940 if (lock_level && error >= 0) {
1941 /* We release EX lock which used to update atime
1942 * and get PR lock again to reduce contention
1943 * on commonly accessed directories. */
1944 ocfs2_inode_unlock(inode, 1);
1946 error = ocfs2_inode_lock(inode, NULL, 0);
1949 if (error != -ENOENT)
1951 /* we haven't got any yet, so propagate the error. */
1955 error = ocfs2_dir_foreach_blk(inode, &file->f_version, ctx, false);
1957 ocfs2_inode_unlock(inode, lock_level);
1967 * NOTE: this should always be called with parent dir i_rwsem taken.
1969 int ocfs2_find_files_on_disk(const char *name,
1972 struct inode *inode,
1973 struct ocfs2_dir_lookup_result *lookup)
1975 int status = -ENOENT;
1977 trace_ocfs2_find_files_on_disk(namelen, name, blkno,
1978 (unsigned long long)OCFS2_I(inode)->ip_blkno);
1980 status = ocfs2_find_entry(name, namelen, inode, lookup);
1984 *blkno = le64_to_cpu(lookup->dl_entry->inode);
1993 * Convenience function for callers which just want the block number
1994 * mapped to a name and don't require the full dirent info, etc.
1996 int ocfs2_lookup_ino_from_name(struct inode *dir, const char *name,
1997 int namelen, u64 *blkno)
2000 struct ocfs2_dir_lookup_result lookup = { NULL, };
2002 ret = ocfs2_find_files_on_disk(name, namelen, blkno, dir, &lookup);
2003 ocfs2_free_dir_lookup_result(&lookup);
2008 /* Check for a name within a directory.
2010 * Return 0 if the name does not exist
2011 * Return -EEXIST if the directory contains the name
2013 * Callers should have i_rwsem + a cluster lock on dir
2015 int ocfs2_check_dir_for_entry(struct inode *dir,
2020 struct ocfs2_dir_lookup_result lookup = { NULL, };
2022 trace_ocfs2_check_dir_for_entry(
2023 (unsigned long long)OCFS2_I(dir)->ip_blkno, namelen, name);
2025 if (ocfs2_find_entry(name, namelen, dir, &lookup) == 0) {
2030 ocfs2_free_dir_lookup_result(&lookup);
2035 struct ocfs2_empty_dir_priv {
2036 struct dir_context ctx;
2038 unsigned seen_dot_dot;
2039 unsigned seen_other;
2042 static bool ocfs2_empty_dir_filldir(struct dir_context *ctx, const char *name,
2043 int name_len, loff_t pos, u64 ino,
2046 struct ocfs2_empty_dir_priv *p =
2047 container_of(ctx, struct ocfs2_empty_dir_priv, ctx);
2050 * Check the positions of "." and ".." records to be sure
2051 * they're in the correct place.
2053 * Indexed directories don't need to proceed past the first
2054 * two entries, so we end the scan after seeing '..'. Despite
2055 * that, we allow the scan to proceed In the event that we
2056 * have a corrupted indexed directory (no dot or dot dot
2057 * entries). This allows us to double check for existing
2058 * entries which might not have been found in the index.
2060 if (name_len == 1 && !strncmp(".", name, 1) && pos == 0) {
2065 if (name_len == 2 && !strncmp("..", name, 2) &&
2066 pos == OCFS2_DIR_REC_LEN(1)) {
2067 p->seen_dot_dot = 1;
2069 if (p->dx_dir && p->seen_dot)
2079 static int ocfs2_empty_dir_dx(struct inode *inode,
2080 struct ocfs2_empty_dir_priv *priv)
2083 struct buffer_head *di_bh = NULL;
2084 struct buffer_head *dx_root_bh = NULL;
2085 struct ocfs2_dinode *di;
2086 struct ocfs2_dx_root_block *dx_root;
2090 ret = ocfs2_read_inode_block(inode, &di_bh);
2095 di = (struct ocfs2_dinode *)di_bh->b_data;
2097 ret = ocfs2_read_dx_root(inode, di, &dx_root_bh);
2102 dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
2104 if (le32_to_cpu(dx_root->dr_num_entries) != 2)
2105 priv->seen_other = 1;
2114 * routine to check that the specified directory is empty (for rmdir)
2116 * Returns 1 if dir is empty, zero otherwise.
2118 * XXX: This is a performance problem for unindexed directories.
2120 int ocfs2_empty_dir(struct inode *inode)
2123 struct ocfs2_empty_dir_priv priv = {
2124 .ctx.actor = ocfs2_empty_dir_filldir,
2127 if (ocfs2_dir_indexed(inode)) {
2128 ret = ocfs2_empty_dir_dx(inode, &priv);
2132 * We still run ocfs2_dir_foreach to get the checks
2137 ret = ocfs2_dir_foreach(inode, &priv.ctx);
2141 if (!priv.seen_dot || !priv.seen_dot_dot) {
2142 mlog(ML_ERROR, "bad directory (dir #%llu) - no `.' or `..'\n",
2143 (unsigned long long)OCFS2_I(inode)->ip_blkno);
2145 * XXX: Is it really safe to allow an unlink to continue?
2150 return !priv.seen_other;
2154 * Fills "." and ".." dirents in a new directory block. Returns dirent for
2155 * "..", which might be used during creation of a directory with a trailing
2156 * header. It is otherwise safe to ignore the return code.
2158 static struct ocfs2_dir_entry *ocfs2_fill_initial_dirents(struct inode *inode,
2159 struct inode *parent,
2163 struct ocfs2_dir_entry *de = (struct ocfs2_dir_entry *)start;
2165 de->inode = cpu_to_le64(OCFS2_I(inode)->ip_blkno);
2168 cpu_to_le16(OCFS2_DIR_REC_LEN(de->name_len));
2169 strcpy(de->name, ".");
2170 ocfs2_set_de_type(de, S_IFDIR);
2172 de = (struct ocfs2_dir_entry *) ((char *)de + le16_to_cpu(de->rec_len));
2173 de->inode = cpu_to_le64(OCFS2_I(parent)->ip_blkno);
2174 de->rec_len = cpu_to_le16(size - OCFS2_DIR_REC_LEN(1));
2176 strcpy(de->name, "..");
2177 ocfs2_set_de_type(de, S_IFDIR);
2183 * This works together with code in ocfs2_mknod_locked() which sets
2184 * the inline-data flag and initializes the inline-data section.
2186 static int ocfs2_fill_new_dir_id(struct ocfs2_super *osb,
2188 struct inode *parent,
2189 struct inode *inode,
2190 struct buffer_head *di_bh)
2193 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
2194 struct ocfs2_inline_data *data = &di->id2.i_data;
2195 unsigned int size = le16_to_cpu(data->id_count);
2197 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
2198 OCFS2_JOURNAL_ACCESS_WRITE);
2204 ocfs2_fill_initial_dirents(inode, parent, data->id_data, size);
2205 ocfs2_journal_dirty(handle, di_bh);
2207 i_size_write(inode, size);
2208 set_nlink(inode, 2);
2209 inode->i_blocks = ocfs2_inode_sector_count(inode);
2211 ret = ocfs2_mark_inode_dirty(handle, inode, di_bh);
2219 static int ocfs2_fill_new_dir_el(struct ocfs2_super *osb,
2221 struct inode *parent,
2222 struct inode *inode,
2223 struct buffer_head *fe_bh,
2224 struct ocfs2_alloc_context *data_ac,
2225 struct buffer_head **ret_new_bh)
2228 unsigned int size = osb->sb->s_blocksize;
2229 struct buffer_head *new_bh = NULL;
2230 struct ocfs2_dir_entry *de;
2232 if (ocfs2_new_dir_wants_trailer(inode))
2233 size = ocfs2_dir_trailer_blk_off(parent->i_sb);
2235 status = ocfs2_do_extend_dir(osb->sb, handle, inode, fe_bh,
2236 data_ac, NULL, &new_bh);
2242 ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode), new_bh);
2244 status = ocfs2_journal_access_db(handle, INODE_CACHE(inode), new_bh,
2245 OCFS2_JOURNAL_ACCESS_CREATE);
2250 memset(new_bh->b_data, 0, osb->sb->s_blocksize);
2252 de = ocfs2_fill_initial_dirents(inode, parent, new_bh->b_data, size);
2253 if (ocfs2_new_dir_wants_trailer(inode)) {
2254 int size = le16_to_cpu(de->rec_len);
2257 * Figure out the size of the hole left over after
2258 * insertion of '.' and '..'. The trailer wants this
2261 size -= OCFS2_DIR_REC_LEN(2);
2262 size -= sizeof(struct ocfs2_dir_block_trailer);
2264 ocfs2_init_dir_trailer(inode, new_bh, size);
2267 ocfs2_journal_dirty(handle, new_bh);
2269 i_size_write(inode, inode->i_sb->s_blocksize);
2270 set_nlink(inode, 2);
2271 inode->i_blocks = ocfs2_inode_sector_count(inode);
2272 status = ocfs2_mark_inode_dirty(handle, inode, fe_bh);
2280 *ret_new_bh = new_bh;
2289 static int ocfs2_dx_dir_attach_index(struct ocfs2_super *osb,
2290 handle_t *handle, struct inode *dir,
2291 struct buffer_head *di_bh,
2292 struct buffer_head *dirdata_bh,
2293 struct ocfs2_alloc_context *meta_ac,
2294 int dx_inline, u32 num_entries,
2295 struct buffer_head **ret_dx_root_bh)
2298 struct ocfs2_dinode *di = (struct ocfs2_dinode *) di_bh->b_data;
2299 u16 dr_suballoc_bit;
2300 u64 suballoc_loc, dr_blkno;
2301 unsigned int num_bits;
2302 struct buffer_head *dx_root_bh = NULL;
2303 struct ocfs2_dx_root_block *dx_root;
2304 struct ocfs2_dir_block_trailer *trailer =
2305 ocfs2_trailer_from_bh(dirdata_bh, dir->i_sb);
2307 ret = ocfs2_claim_metadata(handle, meta_ac, 1, &suballoc_loc,
2308 &dr_suballoc_bit, &num_bits, &dr_blkno);
2314 trace_ocfs2_dx_dir_attach_index(
2315 (unsigned long long)OCFS2_I(dir)->ip_blkno,
2316 (unsigned long long)dr_blkno);
2318 dx_root_bh = sb_getblk(osb->sb, dr_blkno);
2319 if (dx_root_bh == NULL) {
2323 ocfs2_set_new_buffer_uptodate(INODE_CACHE(dir), dx_root_bh);
2325 ret = ocfs2_journal_access_dr(handle, INODE_CACHE(dir), dx_root_bh,
2326 OCFS2_JOURNAL_ACCESS_CREATE);
2332 dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
2333 memset(dx_root, 0, osb->sb->s_blocksize);
2334 strcpy(dx_root->dr_signature, OCFS2_DX_ROOT_SIGNATURE);
2335 dx_root->dr_suballoc_slot = cpu_to_le16(meta_ac->ac_alloc_slot);
2336 dx_root->dr_suballoc_loc = cpu_to_le64(suballoc_loc);
2337 dx_root->dr_suballoc_bit = cpu_to_le16(dr_suballoc_bit);
2338 dx_root->dr_fs_generation = cpu_to_le32(osb->fs_generation);
2339 dx_root->dr_blkno = cpu_to_le64(dr_blkno);
2340 dx_root->dr_dir_blkno = cpu_to_le64(OCFS2_I(dir)->ip_blkno);
2341 dx_root->dr_num_entries = cpu_to_le32(num_entries);
2342 if (le16_to_cpu(trailer->db_free_rec_len))
2343 dx_root->dr_free_blk = cpu_to_le64(dirdata_bh->b_blocknr);
2345 dx_root->dr_free_blk = cpu_to_le64(0);
2348 dx_root->dr_flags |= OCFS2_DX_FLAG_INLINE;
2349 dx_root->dr_entries.de_count =
2350 cpu_to_le16(ocfs2_dx_entries_per_root(osb->sb));
2352 dx_root->dr_list.l_count =
2353 cpu_to_le16(ocfs2_extent_recs_per_dx_root(osb->sb));
2355 ocfs2_journal_dirty(handle, dx_root_bh);
2357 ret = ocfs2_journal_access_di(handle, INODE_CACHE(dir), di_bh,
2358 OCFS2_JOURNAL_ACCESS_CREATE);
2364 di->i_dx_root = cpu_to_le64(dr_blkno);
2366 spin_lock(&OCFS2_I(dir)->ip_lock);
2367 OCFS2_I(dir)->ip_dyn_features |= OCFS2_INDEXED_DIR_FL;
2368 di->i_dyn_features = cpu_to_le16(OCFS2_I(dir)->ip_dyn_features);
2369 spin_unlock(&OCFS2_I(dir)->ip_lock);
2371 ocfs2_journal_dirty(handle, di_bh);
2373 *ret_dx_root_bh = dx_root_bh;
2381 static int ocfs2_dx_dir_format_cluster(struct ocfs2_super *osb,
2382 handle_t *handle, struct inode *dir,
2383 struct buffer_head **dx_leaves,
2384 int num_dx_leaves, u64 start_blk)
2387 struct ocfs2_dx_leaf *dx_leaf;
2388 struct buffer_head *bh;
2390 for (i = 0; i < num_dx_leaves; i++) {
2391 bh = sb_getblk(osb->sb, start_blk + i);
2398 ocfs2_set_new_buffer_uptodate(INODE_CACHE(dir), bh);
2400 ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir), bh,
2401 OCFS2_JOURNAL_ACCESS_CREATE);
2407 dx_leaf = (struct ocfs2_dx_leaf *) bh->b_data;
2409 memset(dx_leaf, 0, osb->sb->s_blocksize);
2410 strcpy(dx_leaf->dl_signature, OCFS2_DX_LEAF_SIGNATURE);
2411 dx_leaf->dl_fs_generation = cpu_to_le32(osb->fs_generation);
2412 dx_leaf->dl_blkno = cpu_to_le64(bh->b_blocknr);
2413 dx_leaf->dl_list.de_count =
2414 cpu_to_le16(ocfs2_dx_entries_per_leaf(osb->sb));
2416 trace_ocfs2_dx_dir_format_cluster(
2417 (unsigned long long)OCFS2_I(dir)->ip_blkno,
2418 (unsigned long long)bh->b_blocknr,
2419 le16_to_cpu(dx_leaf->dl_list.de_count));
2421 ocfs2_journal_dirty(handle, bh);
2430 * Allocates and formats a new cluster for use in an indexed dir
2431 * leaf. This version will not do the extent insert, so that it can be
2432 * used by operations which need careful ordering.
2434 static int __ocfs2_dx_dir_new_cluster(struct inode *dir,
2435 u32 cpos, handle_t *handle,
2436 struct ocfs2_alloc_context *data_ac,
2437 struct buffer_head **dx_leaves,
2438 int num_dx_leaves, u64 *ret_phys_blkno)
2443 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
2446 * XXX: For create, this should claim cluster for the index
2447 * *before* the unindexed insert so that we have a better
2448 * chance of contiguousness as the directory grows in number
2451 ret = __ocfs2_claim_clusters(handle, data_ac, 1, 1, &phys, &num);
2458 * Format the new cluster first. That way, we're inserting
2461 phys_blkno = ocfs2_clusters_to_blocks(osb->sb, phys);
2462 ret = ocfs2_dx_dir_format_cluster(osb, handle, dir, dx_leaves,
2463 num_dx_leaves, phys_blkno);
2469 *ret_phys_blkno = phys_blkno;
2474 static int ocfs2_dx_dir_new_cluster(struct inode *dir,
2475 struct ocfs2_extent_tree *et,
2476 u32 cpos, handle_t *handle,
2477 struct ocfs2_alloc_context *data_ac,
2478 struct ocfs2_alloc_context *meta_ac,
2479 struct buffer_head **dx_leaves,
2485 ret = __ocfs2_dx_dir_new_cluster(dir, cpos, handle, data_ac, dx_leaves,
2486 num_dx_leaves, &phys_blkno);
2492 ret = ocfs2_insert_extent(handle, et, cpos, phys_blkno, 1, 0,
2500 static struct buffer_head **ocfs2_dx_dir_kmalloc_leaves(struct super_block *sb,
2501 int *ret_num_leaves)
2503 int num_dx_leaves = ocfs2_clusters_to_blocks(sb, 1);
2504 struct buffer_head **dx_leaves;
2506 dx_leaves = kcalloc(num_dx_leaves, sizeof(struct buffer_head *),
2508 if (dx_leaves && ret_num_leaves)
2509 *ret_num_leaves = num_dx_leaves;
2514 static int ocfs2_fill_new_dir_dx(struct ocfs2_super *osb,
2516 struct inode *parent,
2517 struct inode *inode,
2518 struct buffer_head *di_bh,
2519 struct ocfs2_alloc_context *data_ac,
2520 struct ocfs2_alloc_context *meta_ac)
2523 struct buffer_head *leaf_bh = NULL;
2524 struct buffer_head *dx_root_bh = NULL;
2525 struct ocfs2_dx_hinfo hinfo;
2526 struct ocfs2_dx_root_block *dx_root;
2527 struct ocfs2_dx_entry_list *entry_list;
2530 * Our strategy is to create the directory as though it were
2531 * unindexed, then add the index block. This works with very
2532 * little complication since the state of a new directory is a
2533 * very well known quantity.
2535 * Essentially, we have two dirents ("." and ".."), in the 1st
2536 * block which need indexing. These are easily inserted into
2540 ret = ocfs2_fill_new_dir_el(osb, handle, parent, inode, di_bh,
2547 ret = ocfs2_dx_dir_attach_index(osb, handle, inode, di_bh, leaf_bh,
2548 meta_ac, 1, 2, &dx_root_bh);
2553 dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
2554 entry_list = &dx_root->dr_entries;
2556 /* Buffer has been journaled for us by ocfs2_dx_dir_attach_index */
2557 ocfs2_dx_dir_name_hash(inode, ".", 1, &hinfo);
2558 ocfs2_dx_entry_list_insert(entry_list, &hinfo, leaf_bh->b_blocknr);
2560 ocfs2_dx_dir_name_hash(inode, "..", 2, &hinfo);
2561 ocfs2_dx_entry_list_insert(entry_list, &hinfo, leaf_bh->b_blocknr);
2569 int ocfs2_fill_new_dir(struct ocfs2_super *osb,
2571 struct inode *parent,
2572 struct inode *inode,
2573 struct buffer_head *fe_bh,
2574 struct ocfs2_alloc_context *data_ac,
2575 struct ocfs2_alloc_context *meta_ac)
2578 BUG_ON(!ocfs2_supports_inline_data(osb) && data_ac == NULL);
2580 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
2581 return ocfs2_fill_new_dir_id(osb, handle, parent, inode, fe_bh);
2583 if (ocfs2_supports_indexed_dirs(osb))
2584 return ocfs2_fill_new_dir_dx(osb, handle, parent, inode, fe_bh,
2587 return ocfs2_fill_new_dir_el(osb, handle, parent, inode, fe_bh,
2591 static int ocfs2_dx_dir_index_block(struct inode *dir,
2593 struct buffer_head **dx_leaves,
2595 u32 *num_dx_entries,
2596 struct buffer_head *dirent_bh)
2598 int ret = 0, namelen, i;
2599 char *de_buf, *limit;
2600 struct ocfs2_dir_entry *de;
2601 struct buffer_head *dx_leaf_bh;
2602 struct ocfs2_dx_hinfo hinfo;
2603 u64 dirent_blk = dirent_bh->b_blocknr;
2605 de_buf = dirent_bh->b_data;
2606 limit = de_buf + dir->i_sb->s_blocksize;
2608 while (de_buf < limit) {
2609 de = (struct ocfs2_dir_entry *)de_buf;
2611 namelen = de->name_len;
2612 if (!namelen || !de->inode)
2615 ocfs2_dx_dir_name_hash(dir, de->name, namelen, &hinfo);
2617 i = ocfs2_dx_dir_hash_idx(OCFS2_SB(dir->i_sb), &hinfo);
2618 dx_leaf_bh = dx_leaves[i];
2620 ret = __ocfs2_dx_dir_leaf_insert(dir, handle, &hinfo,
2621 dirent_blk, dx_leaf_bh);
2627 *num_dx_entries = *num_dx_entries + 1;
2630 de_buf += le16_to_cpu(de->rec_len);
2638 * XXX: This expects dx_root_bh to already be part of the transaction.
2640 static void ocfs2_dx_dir_index_root_block(struct inode *dir,
2641 struct buffer_head *dx_root_bh,
2642 struct buffer_head *dirent_bh)
2644 char *de_buf, *limit;
2645 struct ocfs2_dx_root_block *dx_root;
2646 struct ocfs2_dir_entry *de;
2647 struct ocfs2_dx_hinfo hinfo;
2648 u64 dirent_blk = dirent_bh->b_blocknr;
2650 dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
2652 de_buf = dirent_bh->b_data;
2653 limit = de_buf + dir->i_sb->s_blocksize;
2655 while (de_buf < limit) {
2656 de = (struct ocfs2_dir_entry *)de_buf;
2658 if (!de->name_len || !de->inode)
2661 ocfs2_dx_dir_name_hash(dir, de->name, de->name_len, &hinfo);
2663 trace_ocfs2_dx_dir_index_root_block(
2664 (unsigned long long)dir->i_ino,
2665 hinfo.major_hash, hinfo.minor_hash,
2666 de->name_len, de->name,
2667 le16_to_cpu(dx_root->dr_entries.de_num_used));
2669 ocfs2_dx_entry_list_insert(&dx_root->dr_entries, &hinfo,
2672 le32_add_cpu(&dx_root->dr_num_entries, 1);
2674 de_buf += le16_to_cpu(de->rec_len);
2679 * Count the number of inline directory entries in di_bh and compare
2680 * them against the number of entries we can hold in an inline dx root
2683 static int ocfs2_new_dx_should_be_inline(struct inode *dir,
2684 struct buffer_head *di_bh)
2686 int dirent_count = 0;
2687 char *de_buf, *limit;
2688 struct ocfs2_dir_entry *de;
2689 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
2691 de_buf = di->id2.i_data.id_data;
2692 limit = de_buf + i_size_read(dir);
2694 while (de_buf < limit) {
2695 de = (struct ocfs2_dir_entry *)de_buf;
2697 if (de->name_len && de->inode)
2700 de_buf += le16_to_cpu(de->rec_len);
2703 /* We are careful to leave room for one extra record. */
2704 return dirent_count < ocfs2_dx_entries_per_root(dir->i_sb);
2708 * Expand rec_len of the rightmost dirent in a directory block so that it
2709 * contains the end of our valid space for dirents. We do this during
2710 * expansion from an inline directory to one with extents. The first dir block
2711 * in that case is taken from the inline data portion of the inode block.
2713 * This will also return the largest amount of contiguous space for a dirent
2714 * in the block. That value is *not* necessarily the last dirent, even after
2715 * expansion. The directory indexing code wants this value for free space
2716 * accounting. We do this here since we're already walking the entire dir
2719 * We add the dir trailer if this filesystem wants it.
2721 static unsigned int ocfs2_expand_last_dirent(char *start, unsigned int old_size,
2724 struct super_block *sb = dir->i_sb;
2725 struct ocfs2_dir_entry *de;
2726 struct ocfs2_dir_entry *prev_de;
2727 char *de_buf, *limit;
2728 unsigned int new_size = sb->s_blocksize;
2729 unsigned int bytes, this_hole;
2730 unsigned int largest_hole = 0;
2732 if (ocfs2_new_dir_wants_trailer(dir))
2733 new_size = ocfs2_dir_trailer_blk_off(sb);
2735 bytes = new_size - old_size;
2737 limit = start + old_size;
2739 de = (struct ocfs2_dir_entry *)de_buf;
2741 this_hole = ocfs2_figure_dirent_hole(de);
2742 if (this_hole > largest_hole)
2743 largest_hole = this_hole;
2746 de_buf += le16_to_cpu(de->rec_len);
2747 de = (struct ocfs2_dir_entry *)de_buf;
2748 } while (de_buf < limit);
2750 le16_add_cpu(&prev_de->rec_len, bytes);
2752 /* We need to double check this after modification of the final
2754 this_hole = ocfs2_figure_dirent_hole(prev_de);
2755 if (this_hole > largest_hole)
2756 largest_hole = this_hole;
2758 if (largest_hole >= OCFS2_DIR_MIN_REC_LEN)
2759 return largest_hole;
2764 * We allocate enough clusters to fulfill "blocks_wanted", but set
2765 * i_size to exactly one block. Ocfs2_extend_dir() will handle the
2766 * rest automatically for us.
2768 * *first_block_bh is a pointer to the 1st data block allocated to the
2771 static int ocfs2_expand_inline_dir(struct inode *dir, struct buffer_head *di_bh,
2772 unsigned int blocks_wanted,
2773 struct ocfs2_dir_lookup_result *lookup,
2774 struct buffer_head **first_block_bh)
2776 u32 alloc, dx_alloc, bit_off, len, num_dx_entries = 0;
2777 struct super_block *sb = dir->i_sb;
2778 int ret, i, num_dx_leaves = 0, dx_inline = 0,
2779 credits = ocfs2_inline_to_extents_credits(sb);
2780 u64 dx_insert_blkno, blkno,
2781 bytes = blocks_wanted << sb->s_blocksize_bits;
2782 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
2783 struct ocfs2_inode_info *oi = OCFS2_I(dir);
2784 struct ocfs2_alloc_context *data_ac = NULL;
2785 struct ocfs2_alloc_context *meta_ac = NULL;
2786 struct buffer_head *dirdata_bh = NULL;
2787 struct buffer_head *dx_root_bh = NULL;
2788 struct buffer_head **dx_leaves = NULL;
2789 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
2791 struct ocfs2_extent_tree et;
2792 struct ocfs2_extent_tree dx_et;
2793 int did_quota = 0, bytes_allocated = 0;
2795 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(dir), di_bh);
2797 alloc = ocfs2_clusters_for_bytes(sb, bytes);
2800 down_write(&oi->ip_alloc_sem);
2802 if (ocfs2_supports_indexed_dirs(osb)) {
2803 credits += ocfs2_add_dir_index_credits(sb);
2805 dx_inline = ocfs2_new_dx_should_be_inline(dir, di_bh);
2807 /* Add one more cluster for an index leaf */
2809 dx_leaves = ocfs2_dx_dir_kmalloc_leaves(sb,
2818 /* This gets us the dx_root */
2819 ret = ocfs2_reserve_new_metadata_blocks(osb, 1, &meta_ac);
2827 * We should never need more than 2 clusters for the unindexed
2828 * tree - maximum dirent size is far less than one block. In
2829 * fact, the only time we'd need more than one cluster is if
2830 * blocksize == clustersize and the dirent won't fit in the
2831 * extra space that the expansion to a single block gives. As
2832 * of today, that only happens on 4k/4k file systems.
2836 ret = ocfs2_reserve_clusters(osb, alloc + dx_alloc, &data_ac);
2843 * Prepare for worst case allocation scenario of two separate
2844 * extents in the unindexed tree.
2847 credits += OCFS2_SUBALLOC_ALLOC;
2849 handle = ocfs2_start_trans(osb, credits);
2850 if (IS_ERR(handle)) {
2851 ret = PTR_ERR(handle);
2856 ret = dquot_alloc_space_nodirty(dir,
2857 ocfs2_clusters_to_bytes(osb->sb, alloc + dx_alloc));
2862 if (ocfs2_supports_indexed_dirs(osb) && !dx_inline) {
2864 * Allocate our index cluster first, to maximize the
2865 * possibility that unindexed leaves grow
2868 ret = __ocfs2_dx_dir_new_cluster(dir, 0, handle, data_ac,
2869 dx_leaves, num_dx_leaves,
2875 bytes_allocated += ocfs2_clusters_to_bytes(dir->i_sb, 1);
2879 * Try to claim as many clusters as the bitmap can give though
2880 * if we only get one now, that's enough to continue. The rest
2881 * will be claimed after the conversion to extents.
2883 if (ocfs2_dir_resv_allowed(osb))
2884 data_ac->ac_resv = &oi->ip_la_data_resv;
2885 ret = ocfs2_claim_clusters(handle, data_ac, 1, &bit_off, &len);
2890 bytes_allocated += ocfs2_clusters_to_bytes(dir->i_sb, 1);
2893 * Operations are carefully ordered so that we set up the new
2894 * data block first. The conversion from inline data to
2897 blkno = ocfs2_clusters_to_blocks(dir->i_sb, bit_off);
2898 dirdata_bh = sb_getblk(sb, blkno);
2905 ocfs2_set_new_buffer_uptodate(INODE_CACHE(dir), dirdata_bh);
2907 ret = ocfs2_journal_access_db(handle, INODE_CACHE(dir), dirdata_bh,
2908 OCFS2_JOURNAL_ACCESS_CREATE);
2914 memcpy(dirdata_bh->b_data, di->id2.i_data.id_data, i_size_read(dir));
2915 memset(dirdata_bh->b_data + i_size_read(dir), 0,
2916 sb->s_blocksize - i_size_read(dir));
2917 i = ocfs2_expand_last_dirent(dirdata_bh->b_data, i_size_read(dir), dir);
2918 if (ocfs2_new_dir_wants_trailer(dir)) {
2920 * Prepare the dir trailer up front. It will otherwise look
2921 * like a valid dirent. Even if inserting the index fails
2922 * (unlikely), then all we'll have done is given first dir
2923 * block a small amount of fragmentation.
2925 ocfs2_init_dir_trailer(dir, dirdata_bh, i);
2928 ocfs2_update_inode_fsync_trans(handle, dir, 1);
2929 ocfs2_journal_dirty(handle, dirdata_bh);
2931 if (ocfs2_supports_indexed_dirs(osb) && !dx_inline) {
2933 * Dx dirs with an external cluster need to do this up
2934 * front. Inline dx root's get handled later, after
2935 * we've allocated our root block. We get passed back
2936 * a total number of items so that dr_num_entries can
2937 * be correctly set once the dx_root has been
2940 ret = ocfs2_dx_dir_index_block(dir, handle, dx_leaves,
2941 num_dx_leaves, &num_dx_entries,
2950 * Set extent, i_size, etc on the directory. After this, the
2951 * inode should contain the same exact dirents as before and
2952 * be fully accessible from system calls.
2954 * We let the later dirent insert modify c/mtime - to the user
2955 * the data hasn't changed.
2957 ret = ocfs2_journal_access_di(handle, INODE_CACHE(dir), di_bh,
2958 OCFS2_JOURNAL_ACCESS_CREATE);
2964 spin_lock(&oi->ip_lock);
2965 oi->ip_dyn_features &= ~OCFS2_INLINE_DATA_FL;
2966 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
2967 spin_unlock(&oi->ip_lock);
2969 ocfs2_dinode_new_extent_list(dir, di);
2971 i_size_write(dir, sb->s_blocksize);
2972 inode_set_mtime_to_ts(dir, inode_set_ctime_current(dir));
2974 di->i_size = cpu_to_le64(sb->s_blocksize);
2975 di->i_ctime = di->i_mtime = cpu_to_le64(inode_get_ctime_sec(dir));
2976 di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(inode_get_ctime_nsec(dir));
2977 ocfs2_update_inode_fsync_trans(handle, dir, 1);
2980 * This should never fail as our extent list is empty and all
2981 * related blocks have been journaled already.
2983 ret = ocfs2_insert_extent(handle, &et, 0, blkno, len,
2991 * Set i_blocks after the extent insert for the most up to
2992 * date ip_clusters value.
2994 dir->i_blocks = ocfs2_inode_sector_count(dir);
2996 ocfs2_journal_dirty(handle, di_bh);
2998 if (ocfs2_supports_indexed_dirs(osb)) {
2999 ret = ocfs2_dx_dir_attach_index(osb, handle, dir, di_bh,
3000 dirdata_bh, meta_ac, dx_inline,
3001 num_dx_entries, &dx_root_bh);
3008 ocfs2_dx_dir_index_root_block(dir, dx_root_bh,
3011 ocfs2_init_dx_root_extent_tree(&dx_et,
3014 ret = ocfs2_insert_extent(handle, &dx_et, 0,
3015 dx_insert_blkno, 1, 0, NULL);
3022 * We asked for two clusters, but only got one in the 1st
3023 * pass. Claim the 2nd cluster as a separate extent.
3026 ret = ocfs2_claim_clusters(handle, data_ac, 1, &bit_off,
3032 blkno = ocfs2_clusters_to_blocks(dir->i_sb, bit_off);
3034 ret = ocfs2_insert_extent(handle, &et, 1,
3035 blkno, len, 0, NULL);
3040 bytes_allocated += ocfs2_clusters_to_bytes(dir->i_sb, 1);
3043 *first_block_bh = dirdata_bh;
3045 if (ocfs2_supports_indexed_dirs(osb)) {
3050 * We need to return the correct block within the
3051 * cluster which should hold our entry.
3053 off = ocfs2_dx_dir_hash_idx(osb,
3055 get_bh(dx_leaves[off]);
3056 lookup->dl_dx_leaf_bh = dx_leaves[off];
3058 lookup->dl_dx_root_bh = dx_root_bh;
3063 if (ret < 0 && did_quota)
3064 dquot_free_space_nodirty(dir, bytes_allocated);
3066 ocfs2_commit_trans(osb, handle);
3069 up_write(&oi->ip_alloc_sem);
3071 ocfs2_free_alloc_context(data_ac);
3073 ocfs2_free_alloc_context(meta_ac);
3076 for (i = 0; i < num_dx_leaves; i++)
3077 brelse(dx_leaves[i]);
3087 /* returns a bh of the 1st new block in the allocation. */
3088 static int ocfs2_do_extend_dir(struct super_block *sb,
3091 struct buffer_head *parent_fe_bh,
3092 struct ocfs2_alloc_context *data_ac,
3093 struct ocfs2_alloc_context *meta_ac,
3094 struct buffer_head **new_bh)
3097 int extend, did_quota = 0;
3098 u64 p_blkno, v_blkno;
3100 spin_lock(&OCFS2_I(dir)->ip_lock);
3101 extend = (i_size_read(dir) == ocfs2_clusters_to_bytes(sb, OCFS2_I(dir)->ip_clusters));
3102 spin_unlock(&OCFS2_I(dir)->ip_lock);
3105 u32 offset = OCFS2_I(dir)->ip_clusters;
3107 status = dquot_alloc_space_nodirty(dir,
3108 ocfs2_clusters_to_bytes(sb, 1));
3113 status = ocfs2_add_inode_data(OCFS2_SB(sb), dir, &offset,
3114 1, 0, parent_fe_bh, handle,
3115 data_ac, meta_ac, NULL);
3116 BUG_ON(status == -EAGAIN);
3123 v_blkno = ocfs2_blocks_for_bytes(sb, i_size_read(dir));
3124 status = ocfs2_extent_map_get_blocks(dir, v_blkno, &p_blkno, NULL, NULL);
3130 *new_bh = sb_getblk(sb, p_blkno);
3138 if (did_quota && status < 0)
3139 dquot_free_space_nodirty(dir, ocfs2_clusters_to_bytes(sb, 1));
3144 * Assumes you already have a cluster lock on the directory.
3146 * 'blocks_wanted' is only used if we have an inline directory which
3147 * is to be turned into an extent based one. The size of the dirent to
3148 * insert might be larger than the space gained by growing to just one
3149 * block, so we may have to grow the inode by two blocks in that case.
3151 * If the directory is already indexed, dx_root_bh must be provided.
3153 static int ocfs2_extend_dir(struct ocfs2_super *osb,
3155 struct buffer_head *parent_fe_bh,
3156 unsigned int blocks_wanted,
3157 struct ocfs2_dir_lookup_result *lookup,
3158 struct buffer_head **new_de_bh)
3161 int credits, num_free_extents, drop_alloc_sem = 0;
3163 struct ocfs2_dinode *fe = (struct ocfs2_dinode *) parent_fe_bh->b_data;
3164 struct ocfs2_extent_list *el = &fe->id2.i_list;
3165 struct ocfs2_alloc_context *data_ac = NULL;
3166 struct ocfs2_alloc_context *meta_ac = NULL;
3167 handle_t *handle = NULL;
3168 struct buffer_head *new_bh = NULL;
3169 struct ocfs2_dir_entry * de;
3170 struct super_block *sb = osb->sb;
3171 struct ocfs2_extent_tree et;
3172 struct buffer_head *dx_root_bh = lookup->dl_dx_root_bh;
3174 if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
3176 * This would be a code error as an inline directory should
3177 * never have an index root.
3181 status = ocfs2_expand_inline_dir(dir, parent_fe_bh,
3182 blocks_wanted, lookup,
3189 /* Expansion from inline to an indexed directory will
3190 * have given us this. */
3191 dx_root_bh = lookup->dl_dx_root_bh;
3193 if (blocks_wanted == 1) {
3195 * If the new dirent will fit inside the space
3196 * created by pushing out to one block, then
3197 * we can complete the operation
3198 * here. Otherwise we have to expand i_size
3199 * and format the 2nd block below.
3201 BUG_ON(new_bh == NULL);
3206 * Get rid of 'new_bh' - we want to format the 2nd
3207 * data block and return that instead.
3212 down_write(&OCFS2_I(dir)->ip_alloc_sem);
3214 dir_i_size = i_size_read(dir);
3215 credits = OCFS2_SIMPLE_DIR_EXTEND_CREDITS;
3219 down_write(&OCFS2_I(dir)->ip_alloc_sem);
3221 dir_i_size = i_size_read(dir);
3222 trace_ocfs2_extend_dir((unsigned long long)OCFS2_I(dir)->ip_blkno,
3225 /* dir->i_size is always block aligned. */
3226 spin_lock(&OCFS2_I(dir)->ip_lock);
3227 if (dir_i_size == ocfs2_clusters_to_bytes(sb, OCFS2_I(dir)->ip_clusters)) {
3228 spin_unlock(&OCFS2_I(dir)->ip_lock);
3229 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(dir),
3231 num_free_extents = ocfs2_num_free_extents(&et);
3232 if (num_free_extents < 0) {
3233 status = num_free_extents;
3238 if (!num_free_extents) {
3239 status = ocfs2_reserve_new_metadata(osb, el, &meta_ac);
3241 if (status != -ENOSPC)
3247 status = ocfs2_reserve_clusters(osb, 1, &data_ac);
3249 if (status != -ENOSPC)
3254 if (ocfs2_dir_resv_allowed(osb))
3255 data_ac->ac_resv = &OCFS2_I(dir)->ip_la_data_resv;
3257 credits = ocfs2_calc_extend_credits(sb, el);
3259 spin_unlock(&OCFS2_I(dir)->ip_lock);
3260 credits = OCFS2_SIMPLE_DIR_EXTEND_CREDITS;
3264 if (ocfs2_dir_indexed(dir))
3265 credits++; /* For attaching the new dirent block to the
3268 handle = ocfs2_start_trans(osb, credits);
3269 if (IS_ERR(handle)) {
3270 status = PTR_ERR(handle);
3276 status = ocfs2_do_extend_dir(osb->sb, handle, dir, parent_fe_bh,
3277 data_ac, meta_ac, &new_bh);
3283 ocfs2_set_new_buffer_uptodate(INODE_CACHE(dir), new_bh);
3285 status = ocfs2_journal_access_db(handle, INODE_CACHE(dir), new_bh,
3286 OCFS2_JOURNAL_ACCESS_CREATE);
3291 memset(new_bh->b_data, 0, sb->s_blocksize);
3293 de = (struct ocfs2_dir_entry *) new_bh->b_data;
3295 if (ocfs2_supports_dir_trailer(dir)) {
3296 de->rec_len = cpu_to_le16(ocfs2_dir_trailer_blk_off(sb));
3298 ocfs2_init_dir_trailer(dir, new_bh, le16_to_cpu(de->rec_len));
3300 if (ocfs2_dir_indexed(dir)) {
3301 status = ocfs2_dx_dir_link_trailer(dir, handle,
3302 dx_root_bh, new_bh);
3309 de->rec_len = cpu_to_le16(sb->s_blocksize);
3311 ocfs2_update_inode_fsync_trans(handle, dir, 1);
3312 ocfs2_journal_dirty(handle, new_bh);
3314 dir_i_size += dir->i_sb->s_blocksize;
3315 i_size_write(dir, dir_i_size);
3316 dir->i_blocks = ocfs2_inode_sector_count(dir);
3317 status = ocfs2_mark_inode_dirty(handle, dir, parent_fe_bh);
3324 *new_de_bh = new_bh;
3328 ocfs2_commit_trans(osb, handle);
3330 up_write(&OCFS2_I(dir)->ip_alloc_sem);
3333 ocfs2_free_alloc_context(data_ac);
3335 ocfs2_free_alloc_context(meta_ac);
3342 static int ocfs2_find_dir_space_id(struct inode *dir, struct buffer_head *di_bh,
3343 const char *name, int namelen,
3344 struct buffer_head **ret_de_bh,
3345 unsigned int *blocks_wanted)
3348 struct super_block *sb = dir->i_sb;
3349 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
3350 struct ocfs2_dir_entry *de, *last_de = NULL;
3351 char *first_de, *de_buf, *limit;
3352 unsigned long offset = 0;
3353 unsigned int rec_len, new_rec_len, free_space;
3356 * This calculates how many free bytes we'd have in block zero, should
3357 * this function force expansion to an extent tree.
3359 if (ocfs2_new_dir_wants_trailer(dir))
3360 free_space = ocfs2_dir_trailer_blk_off(sb) - i_size_read(dir);
3362 free_space = dir->i_sb->s_blocksize - i_size_read(dir);
3364 first_de = di->id2.i_data.id_data;
3366 limit = de_buf + i_size_read(dir);
3367 rec_len = OCFS2_DIR_REC_LEN(namelen);
3369 while (de_buf < limit) {
3370 de = (struct ocfs2_dir_entry *)de_buf;
3372 if (!ocfs2_check_dir_entry(dir, de, di_bh, first_de,
3373 i_size_read(dir), offset)) {
3377 if (ocfs2_match(namelen, name, de)) {
3382 * No need to check for a trailing dirent record here as
3383 * they're not used for inline dirs.
3386 if (ocfs2_dirent_would_fit(de, rec_len)) {
3387 /* Ok, we found a spot. Return this bh and let
3388 * the caller actually fill it in. */
3396 de_buf += le16_to_cpu(de->rec_len);
3397 offset += le16_to_cpu(de->rec_len);
3401 * We're going to require expansion of the directory - figure
3402 * out how many blocks we'll need so that a place for the
3403 * dirent can be found.
3406 new_rec_len = le16_to_cpu(last_de->rec_len) + free_space;
3407 if (new_rec_len < (rec_len + OCFS2_DIR_REC_LEN(last_de->name_len)))
3415 static int ocfs2_find_dir_space_el(struct inode *dir, const char *name,
3416 int namelen, struct buffer_head **ret_de_bh)
3418 unsigned long offset;
3419 struct buffer_head *bh = NULL;
3420 unsigned short rec_len;
3421 struct ocfs2_dir_entry *de;
3422 struct super_block *sb = dir->i_sb;
3424 int blocksize = dir->i_sb->s_blocksize;
3426 status = ocfs2_read_dir_block(dir, 0, &bh, 0);
3430 rec_len = OCFS2_DIR_REC_LEN(namelen);
3432 de = (struct ocfs2_dir_entry *) bh->b_data;
3434 if ((char *)de >= sb->s_blocksize + bh->b_data) {
3438 if (i_size_read(dir) <= offset) {
3440 * Caller will have to expand this
3446 status = ocfs2_read_dir_block(dir,
3447 offset >> sb->s_blocksize_bits,
3452 /* move to next block */
3453 de = (struct ocfs2_dir_entry *) bh->b_data;
3455 if (!ocfs2_check_dir_entry(dir, de, bh, bh->b_data, blocksize,
3460 if (ocfs2_match(namelen, name, de)) {
3465 if (ocfs2_skip_dir_trailer(dir, de, offset % blocksize,
3469 if (ocfs2_dirent_would_fit(de, rec_len)) {
3470 /* Ok, we found a spot. Return this bh and let
3471 * the caller actually fill it in. */
3478 offset += le16_to_cpu(de->rec_len);
3479 de = (struct ocfs2_dir_entry *)((char *) de + le16_to_cpu(de->rec_len));
3490 static int dx_leaf_sort_cmp(const void *a, const void *b)
3492 const struct ocfs2_dx_entry *entry1 = a;
3493 const struct ocfs2_dx_entry *entry2 = b;
3494 u32 major_hash1 = le32_to_cpu(entry1->dx_major_hash);
3495 u32 major_hash2 = le32_to_cpu(entry2->dx_major_hash);
3496 u32 minor_hash1 = le32_to_cpu(entry1->dx_minor_hash);
3497 u32 minor_hash2 = le32_to_cpu(entry2->dx_minor_hash);
3499 if (major_hash1 > major_hash2)
3501 if (major_hash1 < major_hash2)
3505 * It is not strictly necessary to sort by minor
3507 if (minor_hash1 > minor_hash2)
3509 if (minor_hash1 < minor_hash2)
3514 static void dx_leaf_sort_swap(void *a, void *b, int size)
3516 struct ocfs2_dx_entry *entry1 = a;
3517 struct ocfs2_dx_entry *entry2 = b;
3519 BUG_ON(size != sizeof(*entry1));
3521 swap(*entry1, *entry2);
3524 static int ocfs2_dx_leaf_same_major(struct ocfs2_dx_leaf *dx_leaf)
3526 struct ocfs2_dx_entry_list *dl_list = &dx_leaf->dl_list;
3527 int i, num = le16_to_cpu(dl_list->de_num_used);
3529 for (i = 0; i < (num - 1); i++) {
3530 if (le32_to_cpu(dl_list->de_entries[i].dx_major_hash) !=
3531 le32_to_cpu(dl_list->de_entries[i + 1].dx_major_hash))
3539 * Find the optimal value to split this leaf on. This expects the leaf
3540 * entries to be in sorted order.
3542 * leaf_cpos is the cpos of the leaf we're splitting. insert_hash is
3543 * the hash we want to insert.
3545 * This function is only concerned with the major hash - that which
3546 * determines which cluster an item belongs to.
3548 static int ocfs2_dx_dir_find_leaf_split(struct ocfs2_dx_leaf *dx_leaf,
3549 u32 leaf_cpos, u32 insert_hash,
3552 struct ocfs2_dx_entry_list *dl_list = &dx_leaf->dl_list;
3553 int i, num_used = le16_to_cpu(dl_list->de_num_used);
3557 * There's a couple rare, but nasty corner cases we have to
3558 * check for here. All of them involve a leaf where all value
3559 * have the same hash, which is what we look for first.
3561 * Most of the time, all of the above is false, and we simply
3562 * pick the median value for a split.
3564 allsame = ocfs2_dx_leaf_same_major(dx_leaf);
3566 u32 val = le32_to_cpu(dl_list->de_entries[0].dx_major_hash);
3568 if (val == insert_hash) {
3570 * No matter where we would choose to split,
3571 * the new entry would want to occupy the same
3572 * block as these. Since there's no space left
3573 * in their existing block, we know there
3574 * won't be space after the split.
3579 if (val == leaf_cpos) {
3581 * Because val is the same as leaf_cpos (which
3582 * is the smallest value this leaf can have),
3583 * yet is not equal to insert_hash, then we
3584 * know that insert_hash *must* be larger than
3585 * val (and leaf_cpos). At least cpos+1 in value.
3587 * We also know then, that there cannot be an
3588 * adjacent extent (otherwise we'd be looking
3589 * at it). Choosing this value gives us a
3590 * chance to get some contiguousness.
3592 *split_hash = leaf_cpos + 1;
3596 if (val > insert_hash) {
3598 * val can not be the same as insert hash, and
3599 * also must be larger than leaf_cpos. Also,
3600 * we know that there can't be a leaf between
3601 * cpos and val, otherwise the entries with
3602 * hash 'val' would be there.
3608 *split_hash = insert_hash;
3613 * Since the records are sorted and the checks above
3614 * guaranteed that not all records in this block are the same,
3615 * we simple travel forward, from the median, and pick the 1st
3616 * record whose value is larger than leaf_cpos.
3618 for (i = (num_used / 2); i < num_used; i++)
3619 if (le32_to_cpu(dl_list->de_entries[i].dx_major_hash) >
3623 BUG_ON(i == num_used); /* Should be impossible */
3624 *split_hash = le32_to_cpu(dl_list->de_entries[i].dx_major_hash);
3629 * Transfer all entries in orig_dx_leaves whose major hash is equal to or
3630 * larger than split_hash into new_dx_leaves. We use a temporary
3631 * buffer (tmp_dx_leaf) to make the changes to the original leaf blocks.
3633 * Since the block offset inside a leaf (cluster) is a constant mask
3634 * of minor_hash, we can optimize - an item at block offset X within
3635 * the original cluster, will be at offset X within the new cluster.
3637 static void ocfs2_dx_dir_transfer_leaf(struct inode *dir, u32 split_hash,
3639 struct ocfs2_dx_leaf *tmp_dx_leaf,
3640 struct buffer_head **orig_dx_leaves,
3641 struct buffer_head **new_dx_leaves,
3646 struct ocfs2_dx_leaf *orig_dx_leaf, *new_dx_leaf;
3647 struct ocfs2_dx_entry_list *orig_list, *tmp_list;
3648 struct ocfs2_dx_entry *dx_entry;
3650 tmp_list = &tmp_dx_leaf->dl_list;
3652 for (i = 0; i < num_dx_leaves; i++) {
3653 orig_dx_leaf = (struct ocfs2_dx_leaf *) orig_dx_leaves[i]->b_data;
3654 orig_list = &orig_dx_leaf->dl_list;
3655 new_dx_leaf = (struct ocfs2_dx_leaf *) new_dx_leaves[i]->b_data;
3657 num_used = le16_to_cpu(orig_list->de_num_used);
3659 memcpy(tmp_dx_leaf, orig_dx_leaf, dir->i_sb->s_blocksize);
3660 tmp_list->de_num_used = cpu_to_le16(0);
3661 memset(&tmp_list->de_entries, 0, sizeof(*dx_entry)*num_used);
3663 for (j = 0; j < num_used; j++) {
3664 dx_entry = &orig_list->de_entries[j];
3665 major_hash = le32_to_cpu(dx_entry->dx_major_hash);
3666 if (major_hash >= split_hash)
3667 ocfs2_dx_dir_leaf_insert_tail(new_dx_leaf,
3670 ocfs2_dx_dir_leaf_insert_tail(tmp_dx_leaf,
3673 memcpy(orig_dx_leaf, tmp_dx_leaf, dir->i_sb->s_blocksize);
3675 ocfs2_journal_dirty(handle, orig_dx_leaves[i]);
3676 ocfs2_journal_dirty(handle, new_dx_leaves[i]);
3680 static int ocfs2_dx_dir_rebalance_credits(struct ocfs2_super *osb,
3681 struct ocfs2_dx_root_block *dx_root)
3683 int credits = ocfs2_clusters_to_blocks(osb->sb, 3);
3685 credits += ocfs2_calc_extend_credits(osb->sb, &dx_root->dr_list);
3686 credits += ocfs2_quota_trans_credits(osb->sb);
3691 * Find the median value in dx_leaf_bh and allocate a new leaf to move
3692 * half our entries into.
3694 static int ocfs2_dx_dir_rebalance(struct ocfs2_super *osb, struct inode *dir,
3695 struct buffer_head *dx_root_bh,
3696 struct buffer_head *dx_leaf_bh,
3697 struct ocfs2_dx_hinfo *hinfo, u32 leaf_cpos,
3700 struct ocfs2_dx_leaf *dx_leaf = (struct ocfs2_dx_leaf *)dx_leaf_bh->b_data;
3701 int credits, ret, i, num_used, did_quota = 0;
3702 u32 cpos, split_hash, insert_hash = hinfo->major_hash;
3703 u64 orig_leaves_start;
3705 struct buffer_head **orig_dx_leaves = NULL;
3706 struct buffer_head **new_dx_leaves = NULL;
3707 struct ocfs2_alloc_context *data_ac = NULL, *meta_ac = NULL;
3708 struct ocfs2_extent_tree et;
3709 handle_t *handle = NULL;
3710 struct ocfs2_dx_root_block *dx_root;
3711 struct ocfs2_dx_leaf *tmp_dx_leaf = NULL;
3713 trace_ocfs2_dx_dir_rebalance((unsigned long long)OCFS2_I(dir)->ip_blkno,
3714 (unsigned long long)leaf_blkno,
3717 ocfs2_init_dx_root_extent_tree(&et, INODE_CACHE(dir), dx_root_bh);
3719 dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
3721 * XXX: This is a rather large limit. We should use a more
3724 if (le32_to_cpu(dx_root->dr_clusters) == UINT_MAX)
3727 num_used = le16_to_cpu(dx_leaf->dl_list.de_num_used);
3728 if (num_used < le16_to_cpu(dx_leaf->dl_list.de_count)) {
3729 mlog(ML_ERROR, "DX Dir: %llu, Asked to rebalance empty leaf: "
3730 "%llu, %d\n", (unsigned long long)OCFS2_I(dir)->ip_blkno,
3731 (unsigned long long)leaf_blkno, num_used);
3736 orig_dx_leaves = ocfs2_dx_dir_kmalloc_leaves(osb->sb, &num_dx_leaves);
3737 if (!orig_dx_leaves) {
3743 new_dx_leaves = ocfs2_dx_dir_kmalloc_leaves(osb->sb, NULL);
3744 if (!new_dx_leaves) {
3750 ret = ocfs2_lock_allocators(dir, &et, 1, 0, &data_ac, &meta_ac);
3757 credits = ocfs2_dx_dir_rebalance_credits(osb, dx_root);
3758 handle = ocfs2_start_trans(osb, credits);
3759 if (IS_ERR(handle)) {
3760 ret = PTR_ERR(handle);
3766 ret = dquot_alloc_space_nodirty(dir,
3767 ocfs2_clusters_to_bytes(dir->i_sb, 1));
3772 ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir), dx_leaf_bh,
3773 OCFS2_JOURNAL_ACCESS_WRITE);
3780 * This block is changing anyway, so we can sort it in place.
3782 sort(dx_leaf->dl_list.de_entries, num_used,
3783 sizeof(struct ocfs2_dx_entry), dx_leaf_sort_cmp,
3786 ocfs2_journal_dirty(handle, dx_leaf_bh);
3788 ret = ocfs2_dx_dir_find_leaf_split(dx_leaf, leaf_cpos, insert_hash,
3795 trace_ocfs2_dx_dir_rebalance_split(leaf_cpos, split_hash, insert_hash);
3798 * We have to carefully order operations here. There are items
3799 * which want to be in the new cluster before insert, but in
3800 * order to put those items in the new cluster, we alter the
3801 * old cluster. A failure to insert gets nasty.
3803 * So, start by reserving writes to the old
3804 * cluster. ocfs2_dx_dir_new_cluster will reserve writes on
3805 * the new cluster for us, before inserting it. The insert
3806 * won't happen if there's an error before that. Once the
3807 * insert is done then, we can transfer from one leaf into the
3808 * other without fear of hitting any error.
3812 * The leaf transfer wants some scratch space so that we don't
3813 * wind up doing a bunch of expensive memmove().
3815 tmp_dx_leaf = kmalloc(osb->sb->s_blocksize, GFP_NOFS);
3822 orig_leaves_start = ocfs2_block_to_cluster_start(dir->i_sb, leaf_blkno);
3823 ret = ocfs2_read_dx_leaves(dir, orig_leaves_start, num_dx_leaves,
3831 ret = ocfs2_dx_dir_new_cluster(dir, &et, cpos, handle,
3832 data_ac, meta_ac, new_dx_leaves,
3839 for (i = 0; i < num_dx_leaves; i++) {
3840 ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir),
3842 OCFS2_JOURNAL_ACCESS_WRITE);
3848 ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir),
3850 OCFS2_JOURNAL_ACCESS_WRITE);
3857 ocfs2_dx_dir_transfer_leaf(dir, split_hash, handle, tmp_dx_leaf,
3858 orig_dx_leaves, new_dx_leaves, num_dx_leaves);
3861 if (ret < 0 && did_quota)
3862 dquot_free_space_nodirty(dir,
3863 ocfs2_clusters_to_bytes(dir->i_sb, 1));
3865 ocfs2_update_inode_fsync_trans(handle, dir, 1);
3866 ocfs2_commit_trans(osb, handle);
3869 if (orig_dx_leaves || new_dx_leaves) {
3870 for (i = 0; i < num_dx_leaves; i++) {
3872 brelse(orig_dx_leaves[i]);
3874 brelse(new_dx_leaves[i]);
3876 kfree(orig_dx_leaves);
3877 kfree(new_dx_leaves);
3881 ocfs2_free_alloc_context(meta_ac);
3883 ocfs2_free_alloc_context(data_ac);
3889 static int ocfs2_find_dir_space_dx(struct ocfs2_super *osb, struct inode *dir,
3890 struct buffer_head *di_bh,
3891 struct buffer_head *dx_root_bh,
3892 const char *name, int namelen,
3893 struct ocfs2_dir_lookup_result *lookup)
3895 int ret, rebalanced = 0;
3896 struct ocfs2_dx_root_block *dx_root;
3897 struct buffer_head *dx_leaf_bh = NULL;
3898 struct ocfs2_dx_leaf *dx_leaf;
3902 dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
3905 ret = ocfs2_dx_dir_lookup(dir, &dx_root->dr_list, &lookup->dl_hinfo,
3906 &leaf_cpos, &blkno);
3912 ret = ocfs2_read_dx_leaf(dir, blkno, &dx_leaf_bh);
3918 dx_leaf = (struct ocfs2_dx_leaf *)dx_leaf_bh->b_data;
3920 if (le16_to_cpu(dx_leaf->dl_list.de_num_used) >=
3921 le16_to_cpu(dx_leaf->dl_list.de_count)) {
3924 * Rebalancing should have provided us with
3925 * space in an appropriate leaf.
3927 * XXX: Is this an abnormal condition then?
3928 * Should we print a message here?
3934 ret = ocfs2_dx_dir_rebalance(osb, dir, dx_root_bh, dx_leaf_bh,
3935 &lookup->dl_hinfo, leaf_cpos,
3944 * Restart the lookup. The rebalance might have
3945 * changed which block our item fits into. Mark our
3946 * progress, so we only execute this once.
3951 goto restart_search;
3954 lookup->dl_dx_leaf_bh = dx_leaf_bh;
3962 static int ocfs2_search_dx_free_list(struct inode *dir,
3963 struct buffer_head *dx_root_bh,
3965 struct ocfs2_dir_lookup_result *lookup)
3968 struct buffer_head *leaf_bh = NULL, *prev_leaf_bh = NULL;
3969 struct ocfs2_dir_block_trailer *db;
3971 int rec_len = OCFS2_DIR_REC_LEN(namelen);
3972 struct ocfs2_dx_root_block *dx_root;
3974 dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
3975 next_block = le64_to_cpu(dx_root->dr_free_blk);
3977 while (next_block) {
3978 brelse(prev_leaf_bh);
3979 prev_leaf_bh = leaf_bh;
3982 ret = ocfs2_read_dir_block_direct(dir, next_block, &leaf_bh);
3988 db = ocfs2_trailer_from_bh(leaf_bh, dir->i_sb);
3989 if (rec_len <= le16_to_cpu(db->db_free_rec_len)) {
3990 lookup->dl_leaf_bh = leaf_bh;
3991 lookup->dl_prev_leaf_bh = prev_leaf_bh;
3993 prev_leaf_bh = NULL;
3997 next_block = le64_to_cpu(db->db_free_next);
4006 brelse(prev_leaf_bh);
4010 static int ocfs2_expand_inline_dx_root(struct inode *dir,
4011 struct buffer_head *dx_root_bh)
4013 int ret, num_dx_leaves, i, j, did_quota = 0;
4014 struct buffer_head **dx_leaves = NULL;
4015 struct ocfs2_extent_tree et;
4017 struct ocfs2_alloc_context *data_ac = NULL;
4018 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
4019 handle_t *handle = NULL;
4020 struct ocfs2_dx_root_block *dx_root;
4021 struct ocfs2_dx_entry_list *entry_list;
4022 struct ocfs2_dx_entry *dx_entry;
4023 struct ocfs2_dx_leaf *target_leaf;
4025 ret = ocfs2_reserve_clusters(osb, 1, &data_ac);
4031 dx_leaves = ocfs2_dx_dir_kmalloc_leaves(osb->sb, &num_dx_leaves);
4038 handle = ocfs2_start_trans(osb, ocfs2_calc_dxi_expand_credits(osb->sb));
4039 if (IS_ERR(handle)) {
4040 ret = PTR_ERR(handle);
4045 ret = dquot_alloc_space_nodirty(dir,
4046 ocfs2_clusters_to_bytes(osb->sb, 1));
4052 * We do this up front, before the allocation, so that a
4053 * failure to add the dx_root_bh to the journal won't result
4054 * us losing clusters.
4056 ret = ocfs2_journal_access_dr(handle, INODE_CACHE(dir), dx_root_bh,
4057 OCFS2_JOURNAL_ACCESS_WRITE);
4063 ret = __ocfs2_dx_dir_new_cluster(dir, 0, handle, data_ac, dx_leaves,
4064 num_dx_leaves, &insert_blkno);
4071 * Transfer the entries from our dx_root into the appropriate
4074 dx_root = (struct ocfs2_dx_root_block *) dx_root_bh->b_data;
4075 entry_list = &dx_root->dr_entries;
4077 for (i = 0; i < le16_to_cpu(entry_list->de_num_used); i++) {
4078 dx_entry = &entry_list->de_entries[i];
4080 j = __ocfs2_dx_dir_hash_idx(osb,
4081 le32_to_cpu(dx_entry->dx_minor_hash));
4082 target_leaf = (struct ocfs2_dx_leaf *)dx_leaves[j]->b_data;
4084 ocfs2_dx_dir_leaf_insert_tail(target_leaf, dx_entry);
4086 /* Each leaf has been passed to the journal already
4087 * via __ocfs2_dx_dir_new_cluster() */
4090 dx_root->dr_flags &= ~OCFS2_DX_FLAG_INLINE;
4091 memset(&dx_root->dr_list, 0, osb->sb->s_blocksize -
4092 offsetof(struct ocfs2_dx_root_block, dr_list));
4093 dx_root->dr_list.l_count =
4094 cpu_to_le16(ocfs2_extent_recs_per_dx_root(osb->sb));
4096 /* This should never fail considering we start with an empty
4098 ocfs2_init_dx_root_extent_tree(&et, INODE_CACHE(dir), dx_root_bh);
4099 ret = ocfs2_insert_extent(handle, &et, 0, insert_blkno, 1, 0, NULL);
4104 ocfs2_update_inode_fsync_trans(handle, dir, 1);
4105 ocfs2_journal_dirty(handle, dx_root_bh);
4108 if (ret < 0 && did_quota)
4109 dquot_free_space_nodirty(dir,
4110 ocfs2_clusters_to_bytes(dir->i_sb, 1));
4112 ocfs2_commit_trans(osb, handle);
4116 ocfs2_free_alloc_context(data_ac);
4119 for (i = 0; i < num_dx_leaves; i++)
4120 brelse(dx_leaves[i]);
4126 static int ocfs2_inline_dx_has_space(struct buffer_head *dx_root_bh)
4128 struct ocfs2_dx_root_block *dx_root;
4129 struct ocfs2_dx_entry_list *entry_list;
4131 dx_root = (struct ocfs2_dx_root_block *) dx_root_bh->b_data;
4132 entry_list = &dx_root->dr_entries;
4134 if (le16_to_cpu(entry_list->de_num_used) >=
4135 le16_to_cpu(entry_list->de_count))
4141 static int ocfs2_prepare_dx_dir_for_insert(struct inode *dir,
4142 struct buffer_head *di_bh,
4145 struct ocfs2_dir_lookup_result *lookup)
4147 int ret, free_dx_root = 1;
4148 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
4149 struct buffer_head *dx_root_bh = NULL;
4150 struct buffer_head *leaf_bh = NULL;
4151 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
4152 struct ocfs2_dx_root_block *dx_root;
4154 ret = ocfs2_read_dx_root(dir, di, &dx_root_bh);
4160 dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
4161 if (le32_to_cpu(dx_root->dr_num_entries) == OCFS2_DX_ENTRIES_MAX) {
4167 if (ocfs2_dx_root_inline(dx_root)) {
4168 ret = ocfs2_inline_dx_has_space(dx_root_bh);
4174 * We ran out of room in the root block. Expand it to
4175 * an extent, then allow ocfs2_find_dir_space_dx to do
4178 ret = ocfs2_expand_inline_dx_root(dir, dx_root_bh);
4186 * Insert preparation for an indexed directory is split into two
4187 * steps. The call to find_dir_space_dx reserves room in the index for
4188 * an additional item. If we run out of space there, it's a real error
4189 * we can't continue on.
4191 ret = ocfs2_find_dir_space_dx(osb, dir, di_bh, dx_root_bh, name,
4200 * Next, we need to find space in the unindexed tree. This call
4201 * searches using the free space linked list. If the unindexed tree
4202 * lacks sufficient space, we'll expand it below. The expansion code
4203 * is smart enough to add any new blocks to the free space list.
4205 ret = ocfs2_search_dx_free_list(dir, dx_root_bh, namelen, lookup);
4206 if (ret && ret != -ENOSPC) {
4211 /* Do this up here - ocfs2_extend_dir might need the dx_root */
4212 lookup->dl_dx_root_bh = dx_root_bh;
4215 if (ret == -ENOSPC) {
4216 ret = ocfs2_extend_dir(osb, dir, di_bh, 1, lookup, &leaf_bh);
4224 * We make the assumption here that new leaf blocks are added
4225 * to the front of our free list.
4227 lookup->dl_prev_leaf_bh = NULL;
4228 lookup->dl_leaf_bh = leaf_bh;
4238 * Get a directory ready for insert. Any directory allocation required
4239 * happens here. Success returns zero, and enough context in the dir
4240 * lookup result that ocfs2_add_entry() will be able complete the task
4241 * with minimal performance impact.
4243 int ocfs2_prepare_dir_for_insert(struct ocfs2_super *osb,
4245 struct buffer_head *parent_fe_bh,
4248 struct ocfs2_dir_lookup_result *lookup)
4251 unsigned int blocks_wanted = 1;
4252 struct buffer_head *bh = NULL;
4254 trace_ocfs2_prepare_dir_for_insert(
4255 (unsigned long long)OCFS2_I(dir)->ip_blkno, namelen);
4258 * Do this up front to reduce confusion.
4260 * The directory might start inline, then be turned into an
4261 * indexed one, in which case we'd need to hash deep inside
4262 * ocfs2_find_dir_space_id(). Since
4263 * ocfs2_prepare_dx_dir_for_insert() also needs this hash
4264 * done, there seems no point in spreading out the calls. We
4265 * can optimize away the case where the file system doesn't
4268 if (ocfs2_supports_indexed_dirs(osb))
4269 ocfs2_dx_dir_name_hash(dir, name, namelen, &lookup->dl_hinfo);
4271 if (ocfs2_dir_indexed(dir)) {
4272 ret = ocfs2_prepare_dx_dir_for_insert(dir, parent_fe_bh,
4273 name, namelen, lookup);
4279 if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
4280 ret = ocfs2_find_dir_space_id(dir, parent_fe_bh, name,
4281 namelen, &bh, &blocks_wanted);
4283 ret = ocfs2_find_dir_space_el(dir, name, namelen, &bh);
4285 if (ret && ret != -ENOSPC) {
4290 if (ret == -ENOSPC) {
4292 * We have to expand the directory to add this name.
4296 ret = ocfs2_extend_dir(osb, dir, parent_fe_bh, blocks_wanted,
4307 lookup->dl_leaf_bh = bh;
4314 static int ocfs2_dx_dir_remove_index(struct inode *dir,
4315 struct buffer_head *di_bh,
4316 struct buffer_head *dx_root_bh)
4319 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
4320 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
4321 struct ocfs2_dx_root_block *dx_root;
4322 struct inode *dx_alloc_inode = NULL;
4323 struct buffer_head *dx_alloc_bh = NULL;
4329 dx_root = (struct ocfs2_dx_root_block *) dx_root_bh->b_data;
4331 dx_alloc_inode = ocfs2_get_system_file_inode(osb,
4332 EXTENT_ALLOC_SYSTEM_INODE,
4333 le16_to_cpu(dx_root->dr_suballoc_slot));
4334 if (!dx_alloc_inode) {
4339 inode_lock(dx_alloc_inode);
4341 ret = ocfs2_inode_lock(dx_alloc_inode, &dx_alloc_bh, 1);
4347 handle = ocfs2_start_trans(osb, OCFS2_DX_ROOT_REMOVE_CREDITS);
4348 if (IS_ERR(handle)) {
4349 ret = PTR_ERR(handle);
4354 ret = ocfs2_journal_access_di(handle, INODE_CACHE(dir), di_bh,
4355 OCFS2_JOURNAL_ACCESS_WRITE);
4361 spin_lock(&OCFS2_I(dir)->ip_lock);
4362 OCFS2_I(dir)->ip_dyn_features &= ~OCFS2_INDEXED_DIR_FL;
4363 di->i_dyn_features = cpu_to_le16(OCFS2_I(dir)->ip_dyn_features);
4364 spin_unlock(&OCFS2_I(dir)->ip_lock);
4365 di->i_dx_root = cpu_to_le64(0ULL);
4366 ocfs2_update_inode_fsync_trans(handle, dir, 1);
4368 ocfs2_journal_dirty(handle, di_bh);
4370 blk = le64_to_cpu(dx_root->dr_blkno);
4371 bit = le16_to_cpu(dx_root->dr_suballoc_bit);
4372 if (dx_root->dr_suballoc_loc)
4373 bg_blkno = le64_to_cpu(dx_root->dr_suballoc_loc);
4375 bg_blkno = ocfs2_which_suballoc_group(blk, bit);
4376 ret = ocfs2_free_suballoc_bits(handle, dx_alloc_inode, dx_alloc_bh,
4382 ocfs2_commit_trans(osb, handle);
4385 ocfs2_inode_unlock(dx_alloc_inode, 1);
4388 inode_unlock(dx_alloc_inode);
4389 brelse(dx_alloc_bh);
4391 iput(dx_alloc_inode);
4395 int ocfs2_dx_dir_truncate(struct inode *dir, struct buffer_head *di_bh)
4399 u32 major_hash = UINT_MAX, p_cpos, cpos;
4401 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
4402 struct buffer_head *dx_root_bh = NULL;
4403 struct ocfs2_dx_root_block *dx_root;
4404 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
4405 struct ocfs2_cached_dealloc_ctxt dealloc;
4406 struct ocfs2_extent_tree et;
4408 ocfs2_init_dealloc_ctxt(&dealloc);
4410 if (!ocfs2_dir_indexed(dir))
4413 ret = ocfs2_read_dx_root(dir, di, &dx_root_bh);
4418 dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
4420 if (ocfs2_dx_root_inline(dx_root))
4423 ocfs2_init_dx_root_extent_tree(&et, INODE_CACHE(dir), dx_root_bh);
4425 /* XXX: What if dr_clusters is too large? */
4426 while (le32_to_cpu(dx_root->dr_clusters)) {
4427 ret = ocfs2_dx_dir_lookup_rec(dir, &dx_root->dr_list,
4428 major_hash, &cpos, &blkno, &clen);
4434 p_cpos = ocfs2_blocks_to_clusters(dir->i_sb, blkno);
4436 ret = ocfs2_remove_btree_range(dir, &et, cpos, p_cpos, clen, 0,
4437 &dealloc, 0, false);
4446 major_hash = cpos - 1;
4450 ret = ocfs2_dx_dir_remove_index(dir, di_bh, dx_root_bh);
4456 ocfs2_remove_from_cache(INODE_CACHE(dir), dx_root_bh);
4458 ocfs2_schedule_truncate_log_flush(osb, 1);
4459 ocfs2_run_deallocs(osb, &dealloc);