2 * linux/fs/ext3/namei.c
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
11 * linux/fs/minix/namei.c
13 * Copyright (C) 1991, 1992 Linus Torvalds
15 * Big-endian to little-endian byte-swapping/bitmaps by
16 * David S. Miller (davem@caip.rutgers.edu), 1995
17 * Directory entry file type support and forward compatibility hooks
18 * for B-tree directories by Theodore Ts'o (tytso@mit.edu), 1998
19 * Hash Tree Directory indexing (c)
20 * Daniel Phillips, 2001
21 * Hash Tree Directory indexing porting
22 * Christopher Li, 2002
23 * Hash Tree Directory indexing cleanup
28 #include <linux/pagemap.h>
29 #include <linux/jbd.h>
30 #include <linux/time.h>
31 #include <linux/ext3_fs.h>
32 #include <linux/ext3_jbd.h>
33 #include <linux/fcntl.h>
34 #include <linux/stat.h>
35 #include <linux/string.h>
36 #include <linux/quotaops.h>
37 #include <linux/buffer_head.h>
38 #include <linux/bio.h>
45 * define how far ahead to read directories while searching them.
47 #define NAMEI_RA_CHUNKS 2
48 #define NAMEI_RA_BLOCKS 4
49 #define NAMEI_RA_SIZE (NAMEI_RA_CHUNKS * NAMEI_RA_BLOCKS)
50 #define NAMEI_RA_INDEX(c,b) (((c) * NAMEI_RA_BLOCKS) + (b))
52 static struct buffer_head *ext3_append(handle_t *handle,
56 struct buffer_head *bh;
58 *block = inode->i_size >> inode->i_sb->s_blocksize_bits;
60 bh = ext3_bread(handle, inode, *block, 1, err);
62 inode->i_size += inode->i_sb->s_blocksize;
63 EXT3_I(inode)->i_disksize = inode->i_size;
64 *err = ext3_journal_get_write_access(handle, bh);
74 #define assert(test) J_ASSERT(test)
78 #define swap(x, y) do { typeof(x) z = x; x = y; y = z; } while (0)
82 #define dxtrace(command) command
84 #define dxtrace(command)
108 * dx_root_info is laid out so that if it should somehow get overlaid by a
109 * dirent the two low bits of the hash version will be zero. Therefore, the
110 * hash version mod 4 should never be 0. Sincerely, the paranoia department.
115 struct fake_dirent dot;
117 struct fake_dirent dotdot;
121 __le32 reserved_zero;
123 u8 info_length; /* 8 */
128 struct dx_entry entries[0];
133 struct fake_dirent fake;
134 struct dx_entry entries[0];
140 struct buffer_head *bh;
141 struct dx_entry *entries;
152 static inline unsigned dx_get_block (struct dx_entry *entry);
153 static void dx_set_block (struct dx_entry *entry, unsigned value);
154 static inline unsigned dx_get_hash (struct dx_entry *entry);
155 static void dx_set_hash (struct dx_entry *entry, unsigned value);
156 static unsigned dx_get_count (struct dx_entry *entries);
157 static unsigned dx_get_limit (struct dx_entry *entries);
158 static void dx_set_count (struct dx_entry *entries, unsigned value);
159 static void dx_set_limit (struct dx_entry *entries, unsigned value);
160 static unsigned dx_root_limit (struct inode *dir, unsigned infosize);
161 static unsigned dx_node_limit (struct inode *dir);
162 static struct dx_frame *dx_probe(struct dentry *dentry,
164 struct dx_hash_info *hinfo,
165 struct dx_frame *frame,
167 static void dx_release (struct dx_frame *frames);
168 static int dx_make_map (struct ext3_dir_entry_2 *de, int size,
169 struct dx_hash_info *hinfo, struct dx_map_entry map[]);
170 static void dx_sort_map(struct dx_map_entry *map, unsigned count);
171 static struct ext3_dir_entry_2 *dx_move_dirents (char *from, char *to,
172 struct dx_map_entry *offsets, int count);
173 static struct ext3_dir_entry_2* dx_pack_dirents (char *base, int size);
174 static void dx_insert_block (struct dx_frame *frame, u32 hash, u32 block);
175 static int ext3_htree_next_block(struct inode *dir, __u32 hash,
176 struct dx_frame *frame,
177 struct dx_frame *frames,
179 static struct buffer_head * ext3_dx_find_entry(struct dentry *dentry,
180 struct ext3_dir_entry_2 **res_dir, int *err);
181 static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry,
182 struct inode *inode);
185 * p is at least 6 bytes before the end of page
187 static inline struct ext3_dir_entry_2 *
188 ext3_next_entry(struct ext3_dir_entry_2 *p)
190 return (struct ext3_dir_entry_2 *)((char *)p +
191 ext3_rec_len_from_disk(p->rec_len));
195 * Future: use high four bits of block for coalesce-on-delete flags
196 * Mask them off for now.
199 static inline unsigned dx_get_block (struct dx_entry *entry)
201 return le32_to_cpu(entry->block) & 0x00ffffff;
204 static inline void dx_set_block (struct dx_entry *entry, unsigned value)
206 entry->block = cpu_to_le32(value);
209 static inline unsigned dx_get_hash (struct dx_entry *entry)
211 return le32_to_cpu(entry->hash);
214 static inline void dx_set_hash (struct dx_entry *entry, unsigned value)
216 entry->hash = cpu_to_le32(value);
219 static inline unsigned dx_get_count (struct dx_entry *entries)
221 return le16_to_cpu(((struct dx_countlimit *) entries)->count);
224 static inline unsigned dx_get_limit (struct dx_entry *entries)
226 return le16_to_cpu(((struct dx_countlimit *) entries)->limit);
229 static inline void dx_set_count (struct dx_entry *entries, unsigned value)
231 ((struct dx_countlimit *) entries)->count = cpu_to_le16(value);
234 static inline void dx_set_limit (struct dx_entry *entries, unsigned value)
236 ((struct dx_countlimit *) entries)->limit = cpu_to_le16(value);
239 static inline unsigned dx_root_limit (struct inode *dir, unsigned infosize)
241 unsigned entry_space = dir->i_sb->s_blocksize - EXT3_DIR_REC_LEN(1) -
242 EXT3_DIR_REC_LEN(2) - infosize;
243 return entry_space / sizeof(struct dx_entry);
246 static inline unsigned dx_node_limit (struct inode *dir)
248 unsigned entry_space = dir->i_sb->s_blocksize - EXT3_DIR_REC_LEN(0);
249 return entry_space / sizeof(struct dx_entry);
256 static void dx_show_index (char * label, struct dx_entry *entries)
258 int i, n = dx_get_count (entries);
259 printk("%s index ", label);
260 for (i = 0; i < n; i++)
262 printk("%x->%u ", i? dx_get_hash(entries + i): 0, dx_get_block(entries + i));
274 static struct stats dx_show_leaf(struct dx_hash_info *hinfo, struct ext3_dir_entry_2 *de,
275 int size, int show_names)
277 unsigned names = 0, space = 0;
278 char *base = (char *) de;
279 struct dx_hash_info h = *hinfo;
282 while ((char *) de < base + size)
288 int len = de->name_len;
289 char *name = de->name;
290 while (len--) printk("%c", *name++);
291 ext3fs_dirhash(de->name, de->name_len, &h);
292 printk(":%x.%u ", h.hash,
293 ((char *) de - base));
295 space += EXT3_DIR_REC_LEN(de->name_len);
298 de = ext3_next_entry(de);
300 printk("(%i)\n", names);
301 return (struct stats) { names, space, 1 };
304 struct stats dx_show_entries(struct dx_hash_info *hinfo, struct inode *dir,
305 struct dx_entry *entries, int levels)
307 unsigned blocksize = dir->i_sb->s_blocksize;
308 unsigned count = dx_get_count (entries), names = 0, space = 0, i;
310 struct buffer_head *bh;
312 printk("%i indexed blocks...\n", count);
313 for (i = 0; i < count; i++, entries++)
315 u32 block = dx_get_block(entries), hash = i? dx_get_hash(entries): 0;
316 u32 range = i < count - 1? (dx_get_hash(entries + 1) - hash): ~hash;
318 printk("%s%3u:%03u hash %8x/%8x ",levels?"":" ", i, block, hash, range);
319 if (!(bh = ext3_bread (NULL,dir, block, 0,&err))) continue;
321 dx_show_entries(hinfo, dir, ((struct dx_node *) bh->b_data)->entries, levels - 1):
322 dx_show_leaf(hinfo, (struct ext3_dir_entry_2 *) bh->b_data, blocksize, 0);
323 names += stats.names;
324 space += stats.space;
325 bcount += stats.bcount;
329 printk("%snames %u, fullness %u (%u%%)\n", levels?"":" ",
330 names, space/bcount,(space/bcount)*100/blocksize);
331 return (struct stats) { names, space, bcount};
333 #endif /* DX_DEBUG */
336 * Probe for a directory leaf block to search.
338 * dx_probe can return ERR_BAD_DX_DIR, which means there was a format
339 * error in the directory index, and the caller should fall back to
340 * searching the directory normally. The callers of dx_probe **MUST**
341 * check for this error code, and make sure it never gets reflected
344 static struct dx_frame *
345 dx_probe(struct dentry *dentry, struct inode *dir,
346 struct dx_hash_info *hinfo, struct dx_frame *frame_in, int *err)
348 unsigned count, indirect;
349 struct dx_entry *at, *entries, *p, *q, *m;
350 struct dx_root *root;
351 struct buffer_head *bh;
352 struct dx_frame *frame = frame_in;
357 dir = dentry->d_parent->d_inode;
358 if (!(bh = ext3_bread (NULL,dir, 0, 0, err)))
360 root = (struct dx_root *) bh->b_data;
361 if (root->info.hash_version != DX_HASH_TEA &&
362 root->info.hash_version != DX_HASH_HALF_MD4 &&
363 root->info.hash_version != DX_HASH_LEGACY) {
364 ext3_warning(dir->i_sb, __func__,
365 "Unrecognised inode hash code %d",
366 root->info.hash_version);
368 *err = ERR_BAD_DX_DIR;
371 hinfo->hash_version = root->info.hash_version;
372 hinfo->seed = EXT3_SB(dir->i_sb)->s_hash_seed;
374 ext3fs_dirhash(dentry->d_name.name, dentry->d_name.len, hinfo);
377 if (root->info.unused_flags & 1) {
378 ext3_warning(dir->i_sb, __func__,
379 "Unimplemented inode hash flags: %#06x",
380 root->info.unused_flags);
382 *err = ERR_BAD_DX_DIR;
386 if ((indirect = root->info.indirect_levels) > 1) {
387 ext3_warning(dir->i_sb, __func__,
388 "Unimplemented inode hash depth: %#06x",
389 root->info.indirect_levels);
391 *err = ERR_BAD_DX_DIR;
395 entries = (struct dx_entry *) (((char *)&root->info) +
396 root->info.info_length);
398 if (dx_get_limit(entries) != dx_root_limit(dir,
399 root->info.info_length)) {
400 ext3_warning(dir->i_sb, __func__,
401 "dx entry: limit != root limit");
403 *err = ERR_BAD_DX_DIR;
407 dxtrace (printk("Look up %x", hash));
410 count = dx_get_count(entries);
411 if (!count || count > dx_get_limit(entries)) {
412 ext3_warning(dir->i_sb, __func__,
413 "dx entry: no count or count > limit");
415 *err = ERR_BAD_DX_DIR;
420 q = entries + count - 1;
424 dxtrace(printk("."));
425 if (dx_get_hash(m) > hash)
431 if (0) // linear search cross check
433 unsigned n = count - 1;
437 dxtrace(printk(","));
438 if (dx_get_hash(++at) > hash)
444 assert (at == p - 1);
448 dxtrace(printk(" %x->%u\n", at == entries? 0: dx_get_hash(at), dx_get_block(at)));
450 frame->entries = entries;
452 if (!indirect--) return frame;
453 if (!(bh = ext3_bread (NULL,dir, dx_get_block(at), 0, err)))
455 at = entries = ((struct dx_node *) bh->b_data)->entries;
456 if (dx_get_limit(entries) != dx_node_limit (dir)) {
457 ext3_warning(dir->i_sb, __func__,
458 "dx entry: limit != node limit");
460 *err = ERR_BAD_DX_DIR;
467 while (frame >= frame_in) {
472 if (*err == ERR_BAD_DX_DIR)
473 ext3_warning(dir->i_sb, __func__,
474 "Corrupt dir inode %ld, running e2fsck is "
475 "recommended.", dir->i_ino);
479 static void dx_release (struct dx_frame *frames)
481 if (frames[0].bh == NULL)
484 if (((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels)
485 brelse(frames[1].bh);
486 brelse(frames[0].bh);
490 * This function increments the frame pointer to search the next leaf
491 * block, and reads in the necessary intervening nodes if the search
492 * should be necessary. Whether or not the search is necessary is
493 * controlled by the hash parameter. If the hash value is even, then
494 * the search is only continued if the next block starts with that
495 * hash value. This is used if we are searching for a specific file.
497 * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
499 * This function returns 1 if the caller should continue to search,
500 * or 0 if it should not. If there is an error reading one of the
501 * index blocks, it will a negative error code.
503 * If start_hash is non-null, it will be filled in with the starting
504 * hash of the next page.
506 static int ext3_htree_next_block(struct inode *dir, __u32 hash,
507 struct dx_frame *frame,
508 struct dx_frame *frames,
512 struct buffer_head *bh;
513 int err, num_frames = 0;
518 * Find the next leaf page by incrementing the frame pointer.
519 * If we run out of entries in the interior node, loop around and
520 * increment pointer in the parent node. When we break out of
521 * this loop, num_frames indicates the number of interior
522 * nodes need to be read.
525 if (++(p->at) < p->entries + dx_get_count(p->entries))
534 * If the hash is 1, then continue only if the next page has a
535 * continuation hash of any value. This is used for readdir
536 * handling. Otherwise, check to see if the hash matches the
537 * desired contiuation hash. If it doesn't, return since
538 * there's no point to read in the successive index pages.
540 bhash = dx_get_hash(p->at);
543 if ((hash & 1) == 0) {
544 if ((bhash & ~1) != hash)
548 * If the hash is HASH_NB_ALWAYS, we always go to the next
549 * block so no check is necessary
551 while (num_frames--) {
552 if (!(bh = ext3_bread(NULL, dir, dx_get_block(p->at),
554 return err; /* Failure */
558 p->at = p->entries = ((struct dx_node *) bh->b_data)->entries;
565 * This function fills a red-black tree with information from a
566 * directory block. It returns the number directory entries loaded
567 * into the tree. If there is an error it is returned in err.
569 static int htree_dirblock_to_tree(struct file *dir_file,
570 struct inode *dir, int block,
571 struct dx_hash_info *hinfo,
572 __u32 start_hash, __u32 start_minor_hash)
574 struct buffer_head *bh;
575 struct ext3_dir_entry_2 *de, *top;
578 dxtrace(printk("In htree dirblock_to_tree: block %d\n", block));
579 if (!(bh = ext3_bread (NULL, dir, block, 0, &err)))
582 de = (struct ext3_dir_entry_2 *) bh->b_data;
583 top = (struct ext3_dir_entry_2 *) ((char *) de +
584 dir->i_sb->s_blocksize -
585 EXT3_DIR_REC_LEN(0));
586 for (; de < top; de = ext3_next_entry(de)) {
587 if (!ext3_check_dir_entry("htree_dirblock_to_tree", dir, de, bh,
588 (block<<EXT3_BLOCK_SIZE_BITS(dir->i_sb))
589 +((char *)de - bh->b_data))) {
590 /* On error, skip the f_pos to the next block. */
591 dir_file->f_pos = (dir_file->f_pos |
592 (dir->i_sb->s_blocksize - 1)) + 1;
596 ext3fs_dirhash(de->name, de->name_len, hinfo);
597 if ((hinfo->hash < start_hash) ||
598 ((hinfo->hash == start_hash) &&
599 (hinfo->minor_hash < start_minor_hash)))
603 if ((err = ext3_htree_store_dirent(dir_file,
604 hinfo->hash, hinfo->minor_hash, de)) != 0) {
616 * This function fills a red-black tree with information from a
617 * directory. We start scanning the directory in hash order, starting
618 * at start_hash and start_minor_hash.
620 * This function returns the number of entries inserted into the tree,
621 * or a negative error code.
623 int ext3_htree_fill_tree(struct file *dir_file, __u32 start_hash,
624 __u32 start_minor_hash, __u32 *next_hash)
626 struct dx_hash_info hinfo;
627 struct ext3_dir_entry_2 *de;
628 struct dx_frame frames[2], *frame;
635 dxtrace(printk("In htree_fill_tree, start hash: %x:%x\n", start_hash,
637 dir = dir_file->f_path.dentry->d_inode;
638 if (!(EXT3_I(dir)->i_flags & EXT3_INDEX_FL)) {
639 hinfo.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version;
640 hinfo.seed = EXT3_SB(dir->i_sb)->s_hash_seed;
641 count = htree_dirblock_to_tree(dir_file, dir, 0, &hinfo,
642 start_hash, start_minor_hash);
646 hinfo.hash = start_hash;
647 hinfo.minor_hash = 0;
648 frame = dx_probe(NULL, dir_file->f_path.dentry->d_inode, &hinfo, frames, &err);
652 /* Add '.' and '..' from the htree header */
653 if (!start_hash && !start_minor_hash) {
654 de = (struct ext3_dir_entry_2 *) frames[0].bh->b_data;
655 if ((err = ext3_htree_store_dirent(dir_file, 0, 0, de)) != 0)
659 if (start_hash < 2 || (start_hash ==2 && start_minor_hash==0)) {
660 de = (struct ext3_dir_entry_2 *) frames[0].bh->b_data;
661 de = ext3_next_entry(de);
662 if ((err = ext3_htree_store_dirent(dir_file, 2, 0, de)) != 0)
668 block = dx_get_block(frame->at);
669 ret = htree_dirblock_to_tree(dir_file, dir, block, &hinfo,
670 start_hash, start_minor_hash);
677 ret = ext3_htree_next_block(dir, HASH_NB_ALWAYS,
678 frame, frames, &hashval);
679 *next_hash = hashval;
685 * Stop if: (a) there are no more entries, or
686 * (b) we have inserted at least one entry and the
687 * next hash value is not a continuation
690 (count && ((hashval & 1) == 0)))
694 dxtrace(printk("Fill tree: returned %d entries, next hash: %x\n",
704 * Directory block splitting, compacting
708 * Create map of hash values, offsets, and sizes, stored at end of block.
709 * Returns number of entries mapped.
711 static int dx_make_map (struct ext3_dir_entry_2 *de, int size,
712 struct dx_hash_info *hinfo, struct dx_map_entry *map_tail)
715 char *base = (char *) de;
716 struct dx_hash_info h = *hinfo;
718 while ((char *) de < base + size)
720 if (de->name_len && de->inode) {
721 ext3fs_dirhash(de->name, de->name_len, &h);
723 map_tail->hash = h.hash;
724 map_tail->offs = (u16) ((char *) de - base);
725 map_tail->size = le16_to_cpu(de->rec_len);
729 /* XXX: do we need to check rec_len == 0 case? -Chris */
730 de = ext3_next_entry(de);
735 /* Sort map by hash value */
736 static void dx_sort_map (struct dx_map_entry *map, unsigned count)
738 struct dx_map_entry *p, *q, *top = map + count - 1;
740 /* Combsort until bubble sort doesn't suck */
744 if (count - 9 < 2) /* 9, 10 -> 11 */
746 for (p = top, q = p - count; q >= map; p--, q--)
747 if (p->hash < q->hash)
750 /* Garden variety bubble sort */
756 if (q[1].hash >= q[0].hash)
764 static void dx_insert_block(struct dx_frame *frame, u32 hash, u32 block)
766 struct dx_entry *entries = frame->entries;
767 struct dx_entry *old = frame->at, *new = old + 1;
768 int count = dx_get_count(entries);
770 assert(count < dx_get_limit(entries));
771 assert(old < entries + count);
772 memmove(new + 1, new, (char *)(entries + count) - (char *)(new));
773 dx_set_hash(new, hash);
774 dx_set_block(new, block);
775 dx_set_count(entries, count + 1);
778 static void ext3_update_dx_flag(struct inode *inode)
780 if (!EXT3_HAS_COMPAT_FEATURE(inode->i_sb,
781 EXT3_FEATURE_COMPAT_DIR_INDEX))
782 EXT3_I(inode)->i_flags &= ~EXT3_INDEX_FL;
786 * NOTE! unlike strncmp, ext3_match returns 1 for success, 0 for failure.
788 * `len <= EXT3_NAME_LEN' is guaranteed by caller.
789 * `de != NULL' is guaranteed by caller.
791 static inline int ext3_match (int len, const char * const name,
792 struct ext3_dir_entry_2 * de)
794 if (len != de->name_len)
798 return !memcmp(name, de->name, len);
802 * Returns 0 if not found, -1 on failure, and 1 on success
804 static inline int search_dirblock(struct buffer_head * bh,
806 struct dentry *dentry,
807 unsigned long offset,
808 struct ext3_dir_entry_2 ** res_dir)
810 struct ext3_dir_entry_2 * de;
813 const char *name = dentry->d_name.name;
814 int namelen = dentry->d_name.len;
816 de = (struct ext3_dir_entry_2 *) bh->b_data;
817 dlimit = bh->b_data + dir->i_sb->s_blocksize;
818 while ((char *) de < dlimit) {
819 /* this code is executed quadratically often */
820 /* do minimal checking `by hand' */
822 if ((char *) de + namelen <= dlimit &&
823 ext3_match (namelen, name, de)) {
824 /* found a match - just to be sure, do a full check */
825 if (!ext3_check_dir_entry("ext3_find_entry",
826 dir, de, bh, offset))
831 /* prevent looping on a bad block */
832 de_len = ext3_rec_len_from_disk(de->rec_len);
836 de = (struct ext3_dir_entry_2 *) ((char *) de + de_len);
845 * finds an entry in the specified directory with the wanted name. It
846 * returns the cache buffer in which the entry was found, and the entry
847 * itself (as a parameter - res_dir). It does NOT read the inode of the
848 * entry - you'll have to do that yourself if you want to.
850 * The returned buffer_head has ->b_count elevated. The caller is expected
851 * to brelse() it when appropriate.
853 static struct buffer_head * ext3_find_entry (struct dentry *dentry,
854 struct ext3_dir_entry_2 ** res_dir)
856 struct super_block * sb;
857 struct buffer_head * bh_use[NAMEI_RA_SIZE];
858 struct buffer_head * bh, *ret = NULL;
859 unsigned long start, block, b;
860 int ra_max = 0; /* Number of bh's in the readahead
862 int ra_ptr = 0; /* Current index into readahead
866 struct inode *dir = dentry->d_parent->d_inode;
871 namelen = dentry->d_name.len;
872 if (namelen > EXT3_NAME_LEN)
875 bh = ext3_dx_find_entry(dentry, res_dir, &err);
877 * On success, or if the error was file not found,
878 * return. Otherwise, fall back to doing a search the
881 if (bh || (err != ERR_BAD_DX_DIR))
883 dxtrace(printk("ext3_find_entry: dx failed, falling back\n"));
885 nblocks = dir->i_size >> EXT3_BLOCK_SIZE_BITS(sb);
886 start = EXT3_I(dir)->i_dir_start_lookup;
887 if (start >= nblocks)
893 * We deal with the read-ahead logic here.
895 if (ra_ptr >= ra_max) {
896 /* Refill the readahead buffer */
899 for (ra_max = 0; ra_max < NAMEI_RA_SIZE; ra_max++) {
901 * Terminate if we reach the end of the
902 * directory and must wrap, or if our
903 * search has finished at this block.
905 if (b >= nblocks || (num && block == start)) {
906 bh_use[ra_max] = NULL;
910 bh = ext3_getblk(NULL, dir, b++, 0, &err);
913 ll_rw_block(READ_META, 1, &bh);
916 if ((bh = bh_use[ra_ptr++]) == NULL)
919 if (!buffer_uptodate(bh)) {
920 /* read error, skip block & hope for the best */
921 ext3_error(sb, __func__, "reading directory #%lu "
922 "offset %lu", dir->i_ino, block);
926 i = search_dirblock(bh, dir, dentry,
927 block << EXT3_BLOCK_SIZE_BITS(sb), res_dir);
929 EXT3_I(dir)->i_dir_start_lookup = block;
931 goto cleanup_and_exit;
935 goto cleanup_and_exit;
938 if (++block >= nblocks)
940 } while (block != start);
943 * If the directory has grown while we were searching, then
944 * search the last part of the directory before giving up.
947 nblocks = dir->i_size >> EXT3_BLOCK_SIZE_BITS(sb);
948 if (block < nblocks) {
954 /* Clean up the read-ahead blocks */
955 for (; ra_ptr < ra_max; ra_ptr++)
956 brelse (bh_use[ra_ptr]);
960 static struct buffer_head * ext3_dx_find_entry(struct dentry *dentry,
961 struct ext3_dir_entry_2 **res_dir, int *err)
963 struct super_block * sb;
964 struct dx_hash_info hinfo;
966 struct dx_frame frames[2], *frame;
967 struct ext3_dir_entry_2 *de, *top;
968 struct buffer_head *bh;
971 int namelen = dentry->d_name.len;
972 const u8 *name = dentry->d_name.name;
973 struct inode *dir = dentry->d_parent->d_inode;
976 /* NFS may look up ".." - look at dx_root directory block */
977 if (namelen > 2 || name[0] != '.'||(name[1] != '.' && name[1] != '\0')){
978 if (!(frame = dx_probe(dentry, NULL, &hinfo, frames, err)))
982 frame->bh = NULL; /* for dx_release() */
983 frame->at = (struct dx_entry *)frames; /* hack for zero entry*/
984 dx_set_block(frame->at, 0); /* dx_root block is 0 */
988 block = dx_get_block(frame->at);
989 if (!(bh = ext3_bread (NULL,dir, block, 0, err)))
991 de = (struct ext3_dir_entry_2 *) bh->b_data;
992 top = (struct ext3_dir_entry_2 *) ((char *) de + sb->s_blocksize -
993 EXT3_DIR_REC_LEN(0));
994 for (; de < top; de = ext3_next_entry(de)) {
995 int off = (block << EXT3_BLOCK_SIZE_BITS(sb))
996 + ((char *) de - bh->b_data);
998 if (!ext3_check_dir_entry(__func__, dir, de, bh, off)) {
1000 *err = ERR_BAD_DX_DIR;
1004 if (ext3_match(namelen, name, de)) {
1011 /* Check to see if we should continue to search */
1012 retval = ext3_htree_next_block(dir, hash, frame,
1015 ext3_warning(sb, __func__,
1016 "error reading index page in directory #%lu",
1021 } while (retval == 1);
1025 dxtrace(printk("%s not found\n", name));
1026 dx_release (frames);
1030 static struct dentry *ext3_lookup(struct inode * dir, struct dentry *dentry, struct nameidata *nd)
1032 struct inode * inode;
1033 struct ext3_dir_entry_2 * de;
1034 struct buffer_head * bh;
1036 if (dentry->d_name.len > EXT3_NAME_LEN)
1037 return ERR_PTR(-ENAMETOOLONG);
1039 bh = ext3_find_entry(dentry, &de);
1042 unsigned long ino = le32_to_cpu(de->inode);
1044 if (!ext3_valid_inum(dir->i_sb, ino)) {
1045 ext3_error(dir->i_sb, "ext3_lookup",
1046 "bad inode number: %lu", ino);
1047 return ERR_PTR(-EIO);
1049 inode = ext3_iget(dir->i_sb, ino);
1051 return ERR_CAST(inode);
1053 return d_splice_alias(inode, dentry);
1057 struct dentry *ext3_get_parent(struct dentry *child)
1060 struct dentry *parent;
1061 struct inode *inode;
1062 struct dentry dotdot;
1063 struct ext3_dir_entry_2 * de;
1064 struct buffer_head *bh;
1066 dotdot.d_name.name = "..";
1067 dotdot.d_name.len = 2;
1068 dotdot.d_parent = child; /* confusing, isn't it! */
1070 bh = ext3_find_entry(&dotdot, &de);
1073 return ERR_PTR(-ENOENT);
1074 ino = le32_to_cpu(de->inode);
1077 if (!ext3_valid_inum(child->d_inode->i_sb, ino)) {
1078 ext3_error(child->d_inode->i_sb, "ext3_get_parent",
1079 "bad inode number: %lu", ino);
1080 return ERR_PTR(-EIO);
1083 inode = ext3_iget(child->d_inode->i_sb, ino);
1085 return ERR_CAST(inode);
1087 parent = d_alloc_anon(inode);
1090 parent = ERR_PTR(-ENOMEM);
1096 static unsigned char ext3_type_by_mode[S_IFMT >> S_SHIFT] = {
1097 [S_IFREG >> S_SHIFT] = EXT3_FT_REG_FILE,
1098 [S_IFDIR >> S_SHIFT] = EXT3_FT_DIR,
1099 [S_IFCHR >> S_SHIFT] = EXT3_FT_CHRDEV,
1100 [S_IFBLK >> S_SHIFT] = EXT3_FT_BLKDEV,
1101 [S_IFIFO >> S_SHIFT] = EXT3_FT_FIFO,
1102 [S_IFSOCK >> S_SHIFT] = EXT3_FT_SOCK,
1103 [S_IFLNK >> S_SHIFT] = EXT3_FT_SYMLINK,
1106 static inline void ext3_set_de_type(struct super_block *sb,
1107 struct ext3_dir_entry_2 *de,
1109 if (EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_FILETYPE))
1110 de->file_type = ext3_type_by_mode[(mode & S_IFMT)>>S_SHIFT];
1114 * Move count entries from end of map between two memory locations.
1115 * Returns pointer to last entry moved.
1117 static struct ext3_dir_entry_2 *
1118 dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count)
1120 unsigned rec_len = 0;
1123 struct ext3_dir_entry_2 *de = (struct ext3_dir_entry_2 *) (from + map->offs);
1124 rec_len = EXT3_DIR_REC_LEN(de->name_len);
1125 memcpy (to, de, rec_len);
1126 ((struct ext3_dir_entry_2 *) to)->rec_len =
1127 ext3_rec_len_to_disk(rec_len);
1132 return (struct ext3_dir_entry_2 *) (to - rec_len);
1136 * Compact each dir entry in the range to the minimal rec_len.
1137 * Returns pointer to last entry in range.
1139 static struct ext3_dir_entry_2* dx_pack_dirents(char *base, int size)
1141 struct ext3_dir_entry_2 *next, *to, *prev, *de = (struct ext3_dir_entry_2 *) base;
1142 unsigned rec_len = 0;
1145 while ((char*)de < base + size) {
1146 next = ext3_next_entry(de);
1147 if (de->inode && de->name_len) {
1148 rec_len = EXT3_DIR_REC_LEN(de->name_len);
1150 memmove(to, de, rec_len);
1151 to->rec_len = ext3_rec_len_to_disk(rec_len);
1153 to = (struct ext3_dir_entry_2 *) (((char *) to) + rec_len);
1161 * Split a full leaf block to make room for a new dir entry.
1162 * Allocate a new block, and move entries so that they are approx. equally full.
1163 * Returns pointer to de in block into which the new entry will be inserted.
1165 static struct ext3_dir_entry_2 *do_split(handle_t *handle, struct inode *dir,
1166 struct buffer_head **bh,struct dx_frame *frame,
1167 struct dx_hash_info *hinfo, int *error)
1169 unsigned blocksize = dir->i_sb->s_blocksize;
1170 unsigned count, continued;
1171 struct buffer_head *bh2;
1174 struct dx_map_entry *map;
1175 char *data1 = (*bh)->b_data, *data2;
1176 unsigned split, move, size, i;
1177 struct ext3_dir_entry_2 *de = NULL, *de2;
1180 bh2 = ext3_append (handle, dir, &newblock, &err);
1187 BUFFER_TRACE(*bh, "get_write_access");
1188 err = ext3_journal_get_write_access(handle, *bh);
1192 BUFFER_TRACE(frame->bh, "get_write_access");
1193 err = ext3_journal_get_write_access(handle, frame->bh);
1197 data2 = bh2->b_data;
1199 /* create map in the end of data2 block */
1200 map = (struct dx_map_entry *) (data2 + blocksize);
1201 count = dx_make_map ((struct ext3_dir_entry_2 *) data1,
1202 blocksize, hinfo, map);
1204 dx_sort_map (map, count);
1205 /* Split the existing block in the middle, size-wise */
1208 for (i = count-1; i >= 0; i--) {
1209 /* is more than half of this entry in 2nd half of the block? */
1210 if (size + map[i].size/2 > blocksize/2)
1212 size += map[i].size;
1215 /* map index at which we will split */
1216 split = count - move;
1217 hash2 = map[split].hash;
1218 continued = hash2 == map[split - 1].hash;
1219 dxtrace(printk("Split block %i at %x, %i/%i\n",
1220 dx_get_block(frame->at), hash2, split, count-split));
1222 /* Fancy dance to stay within two buffers */
1223 de2 = dx_move_dirents(data1, data2, map + split, count - split);
1224 de = dx_pack_dirents(data1,blocksize);
1225 de->rec_len = ext3_rec_len_to_disk(data1 + blocksize - (char *) de);
1226 de2->rec_len = ext3_rec_len_to_disk(data2 + blocksize - (char *) de2);
1227 dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data1, blocksize, 1));
1228 dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data2, blocksize, 1));
1230 /* Which block gets the new entry? */
1231 if (hinfo->hash >= hash2)
1236 dx_insert_block (frame, hash2 + continued, newblock);
1237 err = ext3_journal_dirty_metadata (handle, bh2);
1240 err = ext3_journal_dirty_metadata (handle, frame->bh);
1244 dxtrace(dx_show_index ("frame", frame->entries));
1251 ext3_std_error(dir->i_sb, err);
1259 * Add a new entry into a directory (leaf) block. If de is non-NULL,
1260 * it points to a directory entry which is guaranteed to be large
1261 * enough for new directory entry. If de is NULL, then
1262 * add_dirent_to_buf will attempt search the directory block for
1263 * space. It will return -ENOSPC if no space is available, and -EIO
1264 * and -EEXIST if directory entry already exists.
1266 * NOTE! bh is NOT released in the case where ENOSPC is returned. In
1267 * all other cases bh is released.
1269 static int add_dirent_to_buf(handle_t *handle, struct dentry *dentry,
1270 struct inode *inode, struct ext3_dir_entry_2 *de,
1271 struct buffer_head * bh)
1273 struct inode *dir = dentry->d_parent->d_inode;
1274 const char *name = dentry->d_name.name;
1275 int namelen = dentry->d_name.len;
1276 unsigned long offset = 0;
1277 unsigned short reclen;
1278 int nlen, rlen, err;
1281 reclen = EXT3_DIR_REC_LEN(namelen);
1283 de = (struct ext3_dir_entry_2 *)bh->b_data;
1284 top = bh->b_data + dir->i_sb->s_blocksize - reclen;
1285 while ((char *) de <= top) {
1286 if (!ext3_check_dir_entry("ext3_add_entry", dir, de,
1291 if (ext3_match (namelen, name, de)) {
1295 nlen = EXT3_DIR_REC_LEN(de->name_len);
1296 rlen = ext3_rec_len_from_disk(de->rec_len);
1297 if ((de->inode? rlen - nlen: rlen) >= reclen)
1299 de = (struct ext3_dir_entry_2 *)((char *)de + rlen);
1302 if ((char *) de > top)
1305 BUFFER_TRACE(bh, "get_write_access");
1306 err = ext3_journal_get_write_access(handle, bh);
1308 ext3_std_error(dir->i_sb, err);
1313 /* By now the buffer is marked for journaling */
1314 nlen = EXT3_DIR_REC_LEN(de->name_len);
1315 rlen = ext3_rec_len_from_disk(de->rec_len);
1317 struct ext3_dir_entry_2 *de1 = (struct ext3_dir_entry_2 *)((char *)de + nlen);
1318 de1->rec_len = ext3_rec_len_to_disk(rlen - nlen);
1319 de->rec_len = ext3_rec_len_to_disk(nlen);
1322 de->file_type = EXT3_FT_UNKNOWN;
1324 de->inode = cpu_to_le32(inode->i_ino);
1325 ext3_set_de_type(dir->i_sb, de, inode->i_mode);
1328 de->name_len = namelen;
1329 memcpy (de->name, name, namelen);
1331 * XXX shouldn't update any times until successful
1332 * completion of syscall, but too many callers depend
1335 * XXX similarly, too many callers depend on
1336 * ext3_new_inode() setting the times, but error
1337 * recovery deletes the inode, so the worst that can
1338 * happen is that the times are slightly out of date
1339 * and/or different from the directory change time.
1341 dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC;
1342 ext3_update_dx_flag(dir);
1344 ext3_mark_inode_dirty(handle, dir);
1345 BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
1346 err = ext3_journal_dirty_metadata(handle, bh);
1348 ext3_std_error(dir->i_sb, err);
1354 * This converts a one block unindexed directory to a 3 block indexed
1355 * directory, and adds the dentry to the indexed directory.
1357 static int make_indexed_dir(handle_t *handle, struct dentry *dentry,
1358 struct inode *inode, struct buffer_head *bh)
1360 struct inode *dir = dentry->d_parent->d_inode;
1361 const char *name = dentry->d_name.name;
1362 int namelen = dentry->d_name.len;
1363 struct buffer_head *bh2;
1364 struct dx_root *root;
1365 struct dx_frame frames[2], *frame;
1366 struct dx_entry *entries;
1367 struct ext3_dir_entry_2 *de, *de2;
1372 struct dx_hash_info hinfo;
1374 struct fake_dirent *fde;
1376 blocksize = dir->i_sb->s_blocksize;
1377 dxtrace(printk("Creating index\n"));
1378 retval = ext3_journal_get_write_access(handle, bh);
1380 ext3_std_error(dir->i_sb, retval);
1384 root = (struct dx_root *) bh->b_data;
1386 bh2 = ext3_append (handle, dir, &block, &retval);
1391 EXT3_I(dir)->i_flags |= EXT3_INDEX_FL;
1392 data1 = bh2->b_data;
1394 /* The 0th block becomes the root, move the dirents out */
1395 fde = &root->dotdot;
1396 de = (struct ext3_dir_entry_2 *)((char *)fde +
1397 ext3_rec_len_from_disk(fde->rec_len));
1398 len = ((char *) root) + blocksize - (char *) de;
1399 memcpy (data1, de, len);
1400 de = (struct ext3_dir_entry_2 *) data1;
1402 while ((char *)(de2 = ext3_next_entry(de)) < top)
1404 de->rec_len = ext3_rec_len_to_disk(data1 + blocksize - (char *) de);
1405 /* Initialize the root; the dot dirents already exist */
1406 de = (struct ext3_dir_entry_2 *) (&root->dotdot);
1407 de->rec_len = ext3_rec_len_to_disk(blocksize - EXT3_DIR_REC_LEN(2));
1408 memset (&root->info, 0, sizeof(root->info));
1409 root->info.info_length = sizeof(root->info);
1410 root->info.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version;
1411 entries = root->entries;
1412 dx_set_block (entries, 1);
1413 dx_set_count (entries, 1);
1414 dx_set_limit (entries, dx_root_limit(dir, sizeof(root->info)));
1416 /* Initialize as for dx_probe */
1417 hinfo.hash_version = root->info.hash_version;
1418 hinfo.seed = EXT3_SB(dir->i_sb)->s_hash_seed;
1419 ext3fs_dirhash(name, namelen, &hinfo);
1421 frame->entries = entries;
1422 frame->at = entries;
1425 de = do_split(handle,dir, &bh, frame, &hinfo, &retval);
1426 dx_release (frames);
1430 return add_dirent_to_buf(handle, dentry, inode, de, bh);
1436 * adds a file entry to the specified directory, using the same
1437 * semantics as ext3_find_entry(). It returns NULL if it failed.
1439 * NOTE!! The inode part of 'de' is left at 0 - which means you
1440 * may not sleep between calling this and putting something into
1441 * the entry, as someone else might have used it while you slept.
1443 static int ext3_add_entry (handle_t *handle, struct dentry *dentry,
1444 struct inode *inode)
1446 struct inode *dir = dentry->d_parent->d_inode;
1447 unsigned long offset;
1448 struct buffer_head * bh;
1449 struct ext3_dir_entry_2 *de;
1450 struct super_block * sb;
1457 blocksize = sb->s_blocksize;
1458 if (!dentry->d_name.len)
1461 retval = ext3_dx_add_entry(handle, dentry, inode);
1462 if (!retval || (retval != ERR_BAD_DX_DIR))
1464 EXT3_I(dir)->i_flags &= ~EXT3_INDEX_FL;
1466 ext3_mark_inode_dirty(handle, dir);
1468 blocks = dir->i_size >> sb->s_blocksize_bits;
1469 for (block = 0, offset = 0; block < blocks; block++) {
1470 bh = ext3_bread(handle, dir, block, 0, &retval);
1473 retval = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
1474 if (retval != -ENOSPC)
1477 if (blocks == 1 && !dx_fallback &&
1478 EXT3_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_DIR_INDEX))
1479 return make_indexed_dir(handle, dentry, inode, bh);
1482 bh = ext3_append(handle, dir, &block, &retval);
1485 de = (struct ext3_dir_entry_2 *) bh->b_data;
1487 de->rec_len = ext3_rec_len_to_disk(blocksize);
1488 return add_dirent_to_buf(handle, dentry, inode, de, bh);
1492 * Returns 0 for success, or a negative error value
1494 static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry,
1495 struct inode *inode)
1497 struct dx_frame frames[2], *frame;
1498 struct dx_entry *entries, *at;
1499 struct dx_hash_info hinfo;
1500 struct buffer_head * bh;
1501 struct inode *dir = dentry->d_parent->d_inode;
1502 struct super_block * sb = dir->i_sb;
1503 struct ext3_dir_entry_2 *de;
1506 frame = dx_probe(dentry, NULL, &hinfo, frames, &err);
1509 entries = frame->entries;
1512 if (!(bh = ext3_bread(handle,dir, dx_get_block(frame->at), 0, &err)))
1515 BUFFER_TRACE(bh, "get_write_access");
1516 err = ext3_journal_get_write_access(handle, bh);
1520 err = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
1521 if (err != -ENOSPC) {
1526 /* Block full, should compress but for now just split */
1527 dxtrace(printk("using %u of %u node entries\n",
1528 dx_get_count(entries), dx_get_limit(entries)));
1529 /* Need to split index? */
1530 if (dx_get_count(entries) == dx_get_limit(entries)) {
1532 unsigned icount = dx_get_count(entries);
1533 int levels = frame - frames;
1534 struct dx_entry *entries2;
1535 struct dx_node *node2;
1536 struct buffer_head *bh2;
1538 if (levels && (dx_get_count(frames->entries) ==
1539 dx_get_limit(frames->entries))) {
1540 ext3_warning(sb, __func__,
1541 "Directory index full!");
1545 bh2 = ext3_append (handle, dir, &newblock, &err);
1548 node2 = (struct dx_node *)(bh2->b_data);
1549 entries2 = node2->entries;
1550 node2->fake.rec_len = ext3_rec_len_to_disk(sb->s_blocksize);
1551 node2->fake.inode = 0;
1552 BUFFER_TRACE(frame->bh, "get_write_access");
1553 err = ext3_journal_get_write_access(handle, frame->bh);
1557 unsigned icount1 = icount/2, icount2 = icount - icount1;
1558 unsigned hash2 = dx_get_hash(entries + icount1);
1559 dxtrace(printk("Split index %i/%i\n", icount1, icount2));
1561 BUFFER_TRACE(frame->bh, "get_write_access"); /* index root */
1562 err = ext3_journal_get_write_access(handle,
1567 memcpy ((char *) entries2, (char *) (entries + icount1),
1568 icount2 * sizeof(struct dx_entry));
1569 dx_set_count (entries, icount1);
1570 dx_set_count (entries2, icount2);
1571 dx_set_limit (entries2, dx_node_limit(dir));
1573 /* Which index block gets the new entry? */
1574 if (at - entries >= icount1) {
1575 frame->at = at = at - entries - icount1 + entries2;
1576 frame->entries = entries = entries2;
1577 swap(frame->bh, bh2);
1579 dx_insert_block (frames + 0, hash2, newblock);
1580 dxtrace(dx_show_index ("node", frames[1].entries));
1581 dxtrace(dx_show_index ("node",
1582 ((struct dx_node *) bh2->b_data)->entries));
1583 err = ext3_journal_dirty_metadata(handle, bh2);
1588 dxtrace(printk("Creating second level index...\n"));
1589 memcpy((char *) entries2, (char *) entries,
1590 icount * sizeof(struct dx_entry));
1591 dx_set_limit(entries2, dx_node_limit(dir));
1594 dx_set_count(entries, 1);
1595 dx_set_block(entries + 0, newblock);
1596 ((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels = 1;
1598 /* Add new access path frame */
1600 frame->at = at = at - entries + entries2;
1601 frame->entries = entries = entries2;
1603 err = ext3_journal_get_write_access(handle,
1608 ext3_journal_dirty_metadata(handle, frames[0].bh);
1610 de = do_split(handle, dir, &bh, frame, &hinfo, &err);
1613 err = add_dirent_to_buf(handle, dentry, inode, de, bh);
1618 ext3_std_error(dir->i_sb, err);
1627 * ext3_delete_entry deletes a directory entry by merging it with the
1630 static int ext3_delete_entry (handle_t *handle,
1632 struct ext3_dir_entry_2 * de_del,
1633 struct buffer_head * bh)
1635 struct ext3_dir_entry_2 * de, * pde;
1640 de = (struct ext3_dir_entry_2 *) bh->b_data;
1641 while (i < bh->b_size) {
1642 if (!ext3_check_dir_entry("ext3_delete_entry", dir, de, bh, i))
1645 BUFFER_TRACE(bh, "get_write_access");
1646 ext3_journal_get_write_access(handle, bh);
1648 pde->rec_len = ext3_rec_len_to_disk(
1649 ext3_rec_len_from_disk(pde->rec_len) +
1650 ext3_rec_len_from_disk(de->rec_len));
1654 BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
1655 ext3_journal_dirty_metadata(handle, bh);
1658 i += ext3_rec_len_from_disk(de->rec_len);
1660 de = ext3_next_entry(de);
1665 static int ext3_add_nondir(handle_t *handle,
1666 struct dentry *dentry, struct inode *inode)
1668 int err = ext3_add_entry(handle, dentry, inode);
1670 ext3_mark_inode_dirty(handle, inode);
1671 d_instantiate(dentry, inode);
1680 * By the time this is called, we already have created
1681 * the directory cache entry for the new file, but it
1682 * is so far negative - it has no inode.
1684 * If the create succeeds, we fill in the inode information
1685 * with d_instantiate().
1687 static int ext3_create (struct inode * dir, struct dentry * dentry, int mode,
1688 struct nameidata *nd)
1691 struct inode * inode;
1692 int err, retries = 0;
1695 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
1696 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1697 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
1699 return PTR_ERR(handle);
1701 if (IS_DIRSYNC(dir))
1704 inode = ext3_new_inode (handle, dir, mode);
1705 err = PTR_ERR(inode);
1706 if (!IS_ERR(inode)) {
1707 inode->i_op = &ext3_file_inode_operations;
1708 inode->i_fop = &ext3_file_operations;
1709 ext3_set_aops(inode);
1710 err = ext3_add_nondir(handle, dentry, inode);
1712 ext3_journal_stop(handle);
1713 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1718 static int ext3_mknod (struct inode * dir, struct dentry *dentry,
1719 int mode, dev_t rdev)
1722 struct inode *inode;
1723 int err, retries = 0;
1725 if (!new_valid_dev(rdev))
1729 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
1730 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1731 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
1733 return PTR_ERR(handle);
1735 if (IS_DIRSYNC(dir))
1738 inode = ext3_new_inode (handle, dir, mode);
1739 err = PTR_ERR(inode);
1740 if (!IS_ERR(inode)) {
1741 init_special_inode(inode, inode->i_mode, rdev);
1742 #ifdef CONFIG_EXT3_FS_XATTR
1743 inode->i_op = &ext3_special_inode_operations;
1745 err = ext3_add_nondir(handle, dentry, inode);
1747 ext3_journal_stop(handle);
1748 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1753 static int ext3_mkdir(struct inode * dir, struct dentry * dentry, int mode)
1756 struct inode * inode;
1757 struct buffer_head * dir_block;
1758 struct ext3_dir_entry_2 * de;
1759 int err, retries = 0;
1761 if (dir->i_nlink >= EXT3_LINK_MAX)
1765 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
1766 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1767 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
1769 return PTR_ERR(handle);
1771 if (IS_DIRSYNC(dir))
1774 inode = ext3_new_inode (handle, dir, S_IFDIR | mode);
1775 err = PTR_ERR(inode);
1779 inode->i_op = &ext3_dir_inode_operations;
1780 inode->i_fop = &ext3_dir_operations;
1781 inode->i_size = EXT3_I(inode)->i_disksize = inode->i_sb->s_blocksize;
1782 dir_block = ext3_bread (handle, inode, 0, 1, &err);
1784 drop_nlink(inode); /* is this nlink == 0? */
1785 ext3_mark_inode_dirty(handle, inode);
1789 BUFFER_TRACE(dir_block, "get_write_access");
1790 ext3_journal_get_write_access(handle, dir_block);
1791 de = (struct ext3_dir_entry_2 *) dir_block->b_data;
1792 de->inode = cpu_to_le32(inode->i_ino);
1794 de->rec_len = ext3_rec_len_to_disk(EXT3_DIR_REC_LEN(de->name_len));
1795 strcpy (de->name, ".");
1796 ext3_set_de_type(dir->i_sb, de, S_IFDIR);
1797 de = ext3_next_entry(de);
1798 de->inode = cpu_to_le32(dir->i_ino);
1799 de->rec_len = ext3_rec_len_to_disk(inode->i_sb->s_blocksize -
1800 EXT3_DIR_REC_LEN(1));
1802 strcpy (de->name, "..");
1803 ext3_set_de_type(dir->i_sb, de, S_IFDIR);
1805 BUFFER_TRACE(dir_block, "call ext3_journal_dirty_metadata");
1806 ext3_journal_dirty_metadata(handle, dir_block);
1808 ext3_mark_inode_dirty(handle, inode);
1809 err = ext3_add_entry (handle, dentry, inode);
1812 ext3_mark_inode_dirty(handle, inode);
1817 ext3_update_dx_flag(dir);
1818 ext3_mark_inode_dirty(handle, dir);
1819 d_instantiate(dentry, inode);
1821 ext3_journal_stop(handle);
1822 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1828 * routine to check that the specified directory is empty (for rmdir)
1830 static int empty_dir (struct inode * inode)
1832 unsigned long offset;
1833 struct buffer_head * bh;
1834 struct ext3_dir_entry_2 * de, * de1;
1835 struct super_block * sb;
1839 if (inode->i_size < EXT3_DIR_REC_LEN(1) + EXT3_DIR_REC_LEN(2) ||
1840 !(bh = ext3_bread (NULL, inode, 0, 0, &err))) {
1842 ext3_error(inode->i_sb, __func__,
1843 "error %d reading directory #%lu offset 0",
1846 ext3_warning(inode->i_sb, __func__,
1847 "bad directory (dir #%lu) - no data block",
1851 de = (struct ext3_dir_entry_2 *) bh->b_data;
1852 de1 = ext3_next_entry(de);
1853 if (le32_to_cpu(de->inode) != inode->i_ino ||
1854 !le32_to_cpu(de1->inode) ||
1855 strcmp (".", de->name) ||
1856 strcmp ("..", de1->name)) {
1857 ext3_warning (inode->i_sb, "empty_dir",
1858 "bad directory (dir #%lu) - no `.' or `..'",
1863 offset = ext3_rec_len_from_disk(de->rec_len) +
1864 ext3_rec_len_from_disk(de1->rec_len);
1865 de = ext3_next_entry(de1);
1866 while (offset < inode->i_size ) {
1868 (void *) de >= (void *) (bh->b_data+sb->s_blocksize)) {
1871 bh = ext3_bread (NULL, inode,
1872 offset >> EXT3_BLOCK_SIZE_BITS(sb), 0, &err);
1875 ext3_error(sb, __func__,
1876 "error %d reading directory"
1878 err, inode->i_ino, offset);
1879 offset += sb->s_blocksize;
1882 de = (struct ext3_dir_entry_2 *) bh->b_data;
1884 if (!ext3_check_dir_entry("empty_dir", inode, de, bh, offset)) {
1885 de = (struct ext3_dir_entry_2 *)(bh->b_data +
1887 offset = (offset | (sb->s_blocksize - 1)) + 1;
1890 if (le32_to_cpu(de->inode)) {
1894 offset += ext3_rec_len_from_disk(de->rec_len);
1895 de = ext3_next_entry(de);
1901 /* ext3_orphan_add() links an unlinked or truncated inode into a list of
1902 * such inodes, starting at the superblock, in case we crash before the
1903 * file is closed/deleted, or in case the inode truncate spans multiple
1904 * transactions and the last transaction is not recovered after a crash.
1906 * At filesystem recovery time, we walk this list deleting unlinked
1907 * inodes and truncating linked inodes in ext3_orphan_cleanup().
1909 int ext3_orphan_add(handle_t *handle, struct inode *inode)
1911 struct super_block *sb = inode->i_sb;
1912 struct ext3_iloc iloc;
1916 if (!list_empty(&EXT3_I(inode)->i_orphan))
1919 /* Orphan handling is only valid for files with data blocks
1920 * being truncated, or files being unlinked. */
1922 /* @@@ FIXME: Observation from aviro:
1923 * I think I can trigger J_ASSERT in ext3_orphan_add(). We block
1924 * here (on lock_super()), so race with ext3_link() which might bump
1925 * ->i_nlink. For, say it, character device. Not a regular file,
1926 * not a directory, not a symlink and ->i_nlink > 0.
1928 J_ASSERT ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
1929 S_ISLNK(inode->i_mode)) || inode->i_nlink == 0);
1931 BUFFER_TRACE(EXT3_SB(sb)->s_sbh, "get_write_access");
1932 err = ext3_journal_get_write_access(handle, EXT3_SB(sb)->s_sbh);
1936 err = ext3_reserve_inode_write(handle, inode, &iloc);
1940 /* Insert this inode at the head of the on-disk orphan list... */
1941 NEXT_ORPHAN(inode) = le32_to_cpu(EXT3_SB(sb)->s_es->s_last_orphan);
1942 EXT3_SB(sb)->s_es->s_last_orphan = cpu_to_le32(inode->i_ino);
1943 err = ext3_journal_dirty_metadata(handle, EXT3_SB(sb)->s_sbh);
1944 rc = ext3_mark_iloc_dirty(handle, inode, &iloc);
1948 /* Only add to the head of the in-memory list if all the
1949 * previous operations succeeded. If the orphan_add is going to
1950 * fail (possibly taking the journal offline), we can't risk
1951 * leaving the inode on the orphan list: stray orphan-list
1952 * entries can cause panics at unmount time.
1954 * This is safe: on error we're going to ignore the orphan list
1955 * anyway on the next recovery. */
1957 list_add(&EXT3_I(inode)->i_orphan, &EXT3_SB(sb)->s_orphan);
1959 jbd_debug(4, "superblock will point to %lu\n", inode->i_ino);
1960 jbd_debug(4, "orphan inode %lu will point to %d\n",
1961 inode->i_ino, NEXT_ORPHAN(inode));
1964 ext3_std_error(inode->i_sb, err);
1969 * ext3_orphan_del() removes an unlinked or truncated inode from the list
1970 * of such inodes stored on disk, because it is finally being cleaned up.
1972 int ext3_orphan_del(handle_t *handle, struct inode *inode)
1974 struct list_head *prev;
1975 struct ext3_inode_info *ei = EXT3_I(inode);
1976 struct ext3_sb_info *sbi;
1977 unsigned long ino_next;
1978 struct ext3_iloc iloc;
1981 lock_super(inode->i_sb);
1982 if (list_empty(&ei->i_orphan)) {
1983 unlock_super(inode->i_sb);
1987 ino_next = NEXT_ORPHAN(inode);
1988 prev = ei->i_orphan.prev;
1989 sbi = EXT3_SB(inode->i_sb);
1991 jbd_debug(4, "remove inode %lu from orphan list\n", inode->i_ino);
1993 list_del_init(&ei->i_orphan);
1995 /* If we're on an error path, we may not have a valid
1996 * transaction handle with which to update the orphan list on
1997 * disk, but we still need to remove the inode from the linked
1998 * list in memory. */
2002 err = ext3_reserve_inode_write(handle, inode, &iloc);
2006 if (prev == &sbi->s_orphan) {
2007 jbd_debug(4, "superblock will point to %lu\n", ino_next);
2008 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
2009 err = ext3_journal_get_write_access(handle, sbi->s_sbh);
2012 sbi->s_es->s_last_orphan = cpu_to_le32(ino_next);
2013 err = ext3_journal_dirty_metadata(handle, sbi->s_sbh);
2015 struct ext3_iloc iloc2;
2016 struct inode *i_prev =
2017 &list_entry(prev, struct ext3_inode_info, i_orphan)->vfs_inode;
2019 jbd_debug(4, "orphan inode %lu will point to %lu\n",
2020 i_prev->i_ino, ino_next);
2021 err = ext3_reserve_inode_write(handle, i_prev, &iloc2);
2024 NEXT_ORPHAN(i_prev) = ino_next;
2025 err = ext3_mark_iloc_dirty(handle, i_prev, &iloc2);
2029 NEXT_ORPHAN(inode) = 0;
2030 err = ext3_mark_iloc_dirty(handle, inode, &iloc);
2033 ext3_std_error(inode->i_sb, err);
2035 unlock_super(inode->i_sb);
2043 static int ext3_rmdir (struct inode * dir, struct dentry *dentry)
2046 struct inode * inode;
2047 struct buffer_head * bh;
2048 struct ext3_dir_entry_2 * de;
2051 /* Initialize quotas before so that eventual writes go in
2052 * separate transaction */
2053 DQUOT_INIT(dentry->d_inode);
2054 handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS(dir->i_sb));
2056 return PTR_ERR(handle);
2059 bh = ext3_find_entry (dentry, &de);
2063 if (IS_DIRSYNC(dir))
2066 inode = dentry->d_inode;
2069 if (le32_to_cpu(de->inode) != inode->i_ino)
2072 retval = -ENOTEMPTY;
2073 if (!empty_dir (inode))
2076 retval = ext3_delete_entry(handle, dir, de, bh);
2079 if (inode->i_nlink != 2)
2080 ext3_warning (inode->i_sb, "ext3_rmdir",
2081 "empty directory has nlink!=2 (%d)",
2085 /* There's no need to set i_disksize: the fact that i_nlink is
2086 * zero will ensure that the right thing happens during any
2089 ext3_orphan_add(handle, inode);
2090 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
2091 ext3_mark_inode_dirty(handle, inode);
2093 ext3_update_dx_flag(dir);
2094 ext3_mark_inode_dirty(handle, dir);
2097 ext3_journal_stop(handle);
2102 static int ext3_unlink(struct inode * dir, struct dentry *dentry)
2105 struct inode * inode;
2106 struct buffer_head * bh;
2107 struct ext3_dir_entry_2 * de;
2110 /* Initialize quotas before so that eventual writes go
2111 * in separate transaction */
2112 DQUOT_INIT(dentry->d_inode);
2113 handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS(dir->i_sb));
2115 return PTR_ERR(handle);
2117 if (IS_DIRSYNC(dir))
2121 bh = ext3_find_entry (dentry, &de);
2125 inode = dentry->d_inode;
2128 if (le32_to_cpu(de->inode) != inode->i_ino)
2131 if (!inode->i_nlink) {
2132 ext3_warning (inode->i_sb, "ext3_unlink",
2133 "Deleting nonexistent file (%lu), %d",
2134 inode->i_ino, inode->i_nlink);
2137 retval = ext3_delete_entry(handle, dir, de, bh);
2140 dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
2141 ext3_update_dx_flag(dir);
2142 ext3_mark_inode_dirty(handle, dir);
2144 if (!inode->i_nlink)
2145 ext3_orphan_add(handle, inode);
2146 inode->i_ctime = dir->i_ctime;
2147 ext3_mark_inode_dirty(handle, inode);
2151 ext3_journal_stop(handle);
2156 static int ext3_symlink (struct inode * dir,
2157 struct dentry *dentry, const char * symname)
2160 struct inode * inode;
2161 int l, err, retries = 0;
2163 l = strlen(symname)+1;
2164 if (l > dir->i_sb->s_blocksize)
2165 return -ENAMETOOLONG;
2168 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
2169 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 5 +
2170 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
2172 return PTR_ERR(handle);
2174 if (IS_DIRSYNC(dir))
2177 inode = ext3_new_inode (handle, dir, S_IFLNK|S_IRWXUGO);
2178 err = PTR_ERR(inode);
2182 if (l > sizeof (EXT3_I(inode)->i_data)) {
2183 inode->i_op = &ext3_symlink_inode_operations;
2184 ext3_set_aops(inode);
2186 * page_symlink() calls into ext3_prepare/commit_write.
2187 * We have a transaction open. All is sweetness. It also sets
2188 * i_size in generic_commit_write().
2190 err = __page_symlink(inode, symname, l,
2191 mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS);
2194 ext3_mark_inode_dirty(handle, inode);
2199 inode->i_op = &ext3_fast_symlink_inode_operations;
2200 memcpy((char*)&EXT3_I(inode)->i_data,symname,l);
2201 inode->i_size = l-1;
2203 EXT3_I(inode)->i_disksize = inode->i_size;
2204 err = ext3_add_nondir(handle, dentry, inode);
2206 ext3_journal_stop(handle);
2207 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
2212 static int ext3_link (struct dentry * old_dentry,
2213 struct inode * dir, struct dentry *dentry)
2216 struct inode *inode = old_dentry->d_inode;
2217 int err, retries = 0;
2219 if (inode->i_nlink >= EXT3_LINK_MAX)
2222 * Return -ENOENT if we've raced with unlink and i_nlink is 0. Doing
2223 * otherwise has the potential to corrupt the orphan inode list.
2225 if (inode->i_nlink == 0)
2229 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
2230 EXT3_INDEX_EXTRA_TRANS_BLOCKS);
2232 return PTR_ERR(handle);
2234 if (IS_DIRSYNC(dir))
2237 inode->i_ctime = CURRENT_TIME_SEC;
2239 atomic_inc(&inode->i_count);
2241 err = ext3_add_nondir(handle, dentry, inode);
2242 ext3_journal_stop(handle);
2243 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
2248 #define PARENT_INO(buffer) \
2249 (ext3_next_entry((struct ext3_dir_entry_2 *)(buffer))->inode)
2252 * Anybody can rename anything with this: the permission checks are left to the
2253 * higher-level routines.
2255 static int ext3_rename (struct inode * old_dir, struct dentry *old_dentry,
2256 struct inode * new_dir,struct dentry *new_dentry)
2259 struct inode * old_inode, * new_inode;
2260 struct buffer_head * old_bh, * new_bh, * dir_bh;
2261 struct ext3_dir_entry_2 * old_de, * new_de;
2264 old_bh = new_bh = dir_bh = NULL;
2266 /* Initialize quotas before so that eventual writes go
2267 * in separate transaction */
2268 if (new_dentry->d_inode)
2269 DQUOT_INIT(new_dentry->d_inode);
2270 handle = ext3_journal_start(old_dir, 2 *
2271 EXT3_DATA_TRANS_BLOCKS(old_dir->i_sb) +
2272 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 2);
2274 return PTR_ERR(handle);
2276 if (IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir))
2279 old_bh = ext3_find_entry (old_dentry, &old_de);
2281 * Check for inode number is _not_ due to possible IO errors.
2282 * We might rmdir the source, keep it as pwd of some process
2283 * and merrily kill the link to whatever was created under the
2284 * same name. Goodbye sticky bit ;-<
2286 old_inode = old_dentry->d_inode;
2288 if (!old_bh || le32_to_cpu(old_de->inode) != old_inode->i_ino)
2291 new_inode = new_dentry->d_inode;
2292 new_bh = ext3_find_entry (new_dentry, &new_de);
2299 if (S_ISDIR(old_inode->i_mode)) {
2301 retval = -ENOTEMPTY;
2302 if (!empty_dir (new_inode))
2306 dir_bh = ext3_bread (handle, old_inode, 0, 0, &retval);
2309 if (le32_to_cpu(PARENT_INO(dir_bh->b_data)) != old_dir->i_ino)
2312 if (!new_inode && new_dir!=old_dir &&
2313 new_dir->i_nlink >= EXT3_LINK_MAX)
2317 retval = ext3_add_entry (handle, new_dentry, old_inode);
2321 BUFFER_TRACE(new_bh, "get write access");
2322 ext3_journal_get_write_access(handle, new_bh);
2323 new_de->inode = cpu_to_le32(old_inode->i_ino);
2324 if (EXT3_HAS_INCOMPAT_FEATURE(new_dir->i_sb,
2325 EXT3_FEATURE_INCOMPAT_FILETYPE))
2326 new_de->file_type = old_de->file_type;
2327 new_dir->i_version++;
2328 new_dir->i_ctime = new_dir->i_mtime = CURRENT_TIME_SEC;
2329 ext3_mark_inode_dirty(handle, new_dir);
2330 BUFFER_TRACE(new_bh, "call ext3_journal_dirty_metadata");
2331 ext3_journal_dirty_metadata(handle, new_bh);
2337 * Like most other Unix systems, set the ctime for inodes on a
2340 old_inode->i_ctime = CURRENT_TIME_SEC;
2341 ext3_mark_inode_dirty(handle, old_inode);
2346 if (le32_to_cpu(old_de->inode) != old_inode->i_ino ||
2347 old_de->name_len != old_dentry->d_name.len ||
2348 strncmp(old_de->name, old_dentry->d_name.name, old_de->name_len) ||
2349 (retval = ext3_delete_entry(handle, old_dir,
2350 old_de, old_bh)) == -ENOENT) {
2351 /* old_de could have moved from under us during htree split, so
2352 * make sure that we are deleting the right entry. We might
2353 * also be pointing to a stale entry in the unused part of
2354 * old_bh so just checking inum and the name isn't enough. */
2355 struct buffer_head *old_bh2;
2356 struct ext3_dir_entry_2 *old_de2;
2358 old_bh2 = ext3_find_entry(old_dentry, &old_de2);
2360 retval = ext3_delete_entry(handle, old_dir,
2366 ext3_warning(old_dir->i_sb, "ext3_rename",
2367 "Deleting old file (%lu), %d, error=%d",
2368 old_dir->i_ino, old_dir->i_nlink, retval);
2372 drop_nlink(new_inode);
2373 new_inode->i_ctime = CURRENT_TIME_SEC;
2375 old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME_SEC;
2376 ext3_update_dx_flag(old_dir);
2378 BUFFER_TRACE(dir_bh, "get_write_access");
2379 ext3_journal_get_write_access(handle, dir_bh);
2380 PARENT_INO(dir_bh->b_data) = cpu_to_le32(new_dir->i_ino);
2381 BUFFER_TRACE(dir_bh, "call ext3_journal_dirty_metadata");
2382 ext3_journal_dirty_metadata(handle, dir_bh);
2383 drop_nlink(old_dir);
2385 drop_nlink(new_inode);
2388 ext3_update_dx_flag(new_dir);
2389 ext3_mark_inode_dirty(handle, new_dir);
2392 ext3_mark_inode_dirty(handle, old_dir);
2394 ext3_mark_inode_dirty(handle, new_inode);
2395 if (!new_inode->i_nlink)
2396 ext3_orphan_add(handle, new_inode);
2404 ext3_journal_stop(handle);
2409 * directories can handle most operations...
2411 const struct inode_operations ext3_dir_inode_operations = {
2412 .create = ext3_create,
2413 .lookup = ext3_lookup,
2415 .unlink = ext3_unlink,
2416 .symlink = ext3_symlink,
2417 .mkdir = ext3_mkdir,
2418 .rmdir = ext3_rmdir,
2419 .mknod = ext3_mknod,
2420 .rename = ext3_rename,
2421 .setattr = ext3_setattr,
2422 #ifdef CONFIG_EXT3_FS_XATTR
2423 .setxattr = generic_setxattr,
2424 .getxattr = generic_getxattr,
2425 .listxattr = ext3_listxattr,
2426 .removexattr = generic_removexattr,
2428 .permission = ext3_permission,
2431 const struct inode_operations ext3_special_inode_operations = {
2432 .setattr = ext3_setattr,
2433 #ifdef CONFIG_EXT3_FS_XATTR
2434 .setxattr = generic_setxattr,
2435 .getxattr = generic_getxattr,
2436 .listxattr = ext3_listxattr,
2437 .removexattr = generic_removexattr,
2439 .permission = ext3_permission,