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 dxtrace(command) command
80 #define dxtrace(command)
104 * dx_root_info is laid out so that if it should somehow get overlaid by a
105 * dirent the two low bits of the hash version will be zero. Therefore, the
106 * hash version mod 4 should never be 0. Sincerely, the paranoia department.
111 struct fake_dirent dot;
113 struct fake_dirent dotdot;
117 __le32 reserved_zero;
119 u8 info_length; /* 8 */
124 struct dx_entry entries[0];
129 struct fake_dirent fake;
130 struct dx_entry entries[0];
136 struct buffer_head *bh;
137 struct dx_entry *entries;
148 static inline unsigned dx_get_block (struct dx_entry *entry);
149 static void dx_set_block (struct dx_entry *entry, unsigned value);
150 static inline unsigned dx_get_hash (struct dx_entry *entry);
151 static void dx_set_hash (struct dx_entry *entry, unsigned value);
152 static unsigned dx_get_count (struct dx_entry *entries);
153 static unsigned dx_get_limit (struct dx_entry *entries);
154 static void dx_set_count (struct dx_entry *entries, unsigned value);
155 static void dx_set_limit (struct dx_entry *entries, unsigned value);
156 static unsigned dx_root_limit (struct inode *dir, unsigned infosize);
157 static unsigned dx_node_limit (struct inode *dir);
158 static struct dx_frame *dx_probe(struct qstr *entry,
160 struct dx_hash_info *hinfo,
161 struct dx_frame *frame,
163 static void dx_release (struct dx_frame *frames);
164 static int dx_make_map (struct ext3_dir_entry_2 *de, int size,
165 struct dx_hash_info *hinfo, struct dx_map_entry map[]);
166 static void dx_sort_map(struct dx_map_entry *map, unsigned count);
167 static struct ext3_dir_entry_2 *dx_move_dirents (char *from, char *to,
168 struct dx_map_entry *offsets, int count);
169 static struct ext3_dir_entry_2* dx_pack_dirents (char *base, int size);
170 static void dx_insert_block (struct dx_frame *frame, u32 hash, u32 block);
171 static int ext3_htree_next_block(struct inode *dir, __u32 hash,
172 struct dx_frame *frame,
173 struct dx_frame *frames,
175 static struct buffer_head * ext3_dx_find_entry(struct inode *dir,
176 struct qstr *entry, struct ext3_dir_entry_2 **res_dir,
178 static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry,
179 struct inode *inode);
182 * p is at least 6 bytes before the end of page
184 static inline struct ext3_dir_entry_2 *
185 ext3_next_entry(struct ext3_dir_entry_2 *p)
187 return (struct ext3_dir_entry_2 *)((char *)p +
188 ext3_rec_len_from_disk(p->rec_len));
192 * Future: use high four bits of block for coalesce-on-delete flags
193 * Mask them off for now.
196 static inline unsigned dx_get_block (struct dx_entry *entry)
198 return le32_to_cpu(entry->block) & 0x00ffffff;
201 static inline void dx_set_block (struct dx_entry *entry, unsigned value)
203 entry->block = cpu_to_le32(value);
206 static inline unsigned dx_get_hash (struct dx_entry *entry)
208 return le32_to_cpu(entry->hash);
211 static inline void dx_set_hash (struct dx_entry *entry, unsigned value)
213 entry->hash = cpu_to_le32(value);
216 static inline unsigned dx_get_count (struct dx_entry *entries)
218 return le16_to_cpu(((struct dx_countlimit *) entries)->count);
221 static inline unsigned dx_get_limit (struct dx_entry *entries)
223 return le16_to_cpu(((struct dx_countlimit *) entries)->limit);
226 static inline void dx_set_count (struct dx_entry *entries, unsigned value)
228 ((struct dx_countlimit *) entries)->count = cpu_to_le16(value);
231 static inline void dx_set_limit (struct dx_entry *entries, unsigned value)
233 ((struct dx_countlimit *) entries)->limit = cpu_to_le16(value);
236 static inline unsigned dx_root_limit (struct inode *dir, unsigned infosize)
238 unsigned entry_space = dir->i_sb->s_blocksize - EXT3_DIR_REC_LEN(1) -
239 EXT3_DIR_REC_LEN(2) - infosize;
240 return entry_space / sizeof(struct dx_entry);
243 static inline unsigned dx_node_limit (struct inode *dir)
245 unsigned entry_space = dir->i_sb->s_blocksize - EXT3_DIR_REC_LEN(0);
246 return entry_space / sizeof(struct dx_entry);
253 static void dx_show_index (char * label, struct dx_entry *entries)
255 int i, n = dx_get_count (entries);
256 printk("%s index ", label);
257 for (i = 0; i < n; i++)
259 printk("%x->%u ", i? dx_get_hash(entries + i): 0, dx_get_block(entries + i));
271 static struct stats dx_show_leaf(struct dx_hash_info *hinfo, struct ext3_dir_entry_2 *de,
272 int size, int show_names)
274 unsigned names = 0, space = 0;
275 char *base = (char *) de;
276 struct dx_hash_info h = *hinfo;
279 while ((char *) de < base + size)
285 int len = de->name_len;
286 char *name = de->name;
287 while (len--) printk("%c", *name++);
288 ext3fs_dirhash(de->name, de->name_len, &h);
289 printk(":%x.%u ", h.hash,
290 ((char *) de - base));
292 space += EXT3_DIR_REC_LEN(de->name_len);
295 de = ext3_next_entry(de);
297 printk("(%i)\n", names);
298 return (struct stats) { names, space, 1 };
301 struct stats dx_show_entries(struct dx_hash_info *hinfo, struct inode *dir,
302 struct dx_entry *entries, int levels)
304 unsigned blocksize = dir->i_sb->s_blocksize;
305 unsigned count = dx_get_count (entries), names = 0, space = 0, i;
307 struct buffer_head *bh;
309 printk("%i indexed blocks...\n", count);
310 for (i = 0; i < count; i++, entries++)
312 u32 block = dx_get_block(entries), hash = i? dx_get_hash(entries): 0;
313 u32 range = i < count - 1? (dx_get_hash(entries + 1) - hash): ~hash;
315 printk("%s%3u:%03u hash %8x/%8x ",levels?"":" ", i, block, hash, range);
316 if (!(bh = ext3_bread (NULL,dir, block, 0,&err))) continue;
318 dx_show_entries(hinfo, dir, ((struct dx_node *) bh->b_data)->entries, levels - 1):
319 dx_show_leaf(hinfo, (struct ext3_dir_entry_2 *) bh->b_data, blocksize, 0);
320 names += stats.names;
321 space += stats.space;
322 bcount += stats.bcount;
326 printk("%snames %u, fullness %u (%u%%)\n", levels?"":" ",
327 names, space/bcount,(space/bcount)*100/blocksize);
328 return (struct stats) { names, space, bcount};
330 #endif /* DX_DEBUG */
333 * Probe for a directory leaf block to search.
335 * dx_probe can return ERR_BAD_DX_DIR, which means there was a format
336 * error in the directory index, and the caller should fall back to
337 * searching the directory normally. The callers of dx_probe **MUST**
338 * check for this error code, and make sure it never gets reflected
341 static struct dx_frame *
342 dx_probe(struct qstr *entry, struct inode *dir,
343 struct dx_hash_info *hinfo, struct dx_frame *frame_in, int *err)
345 unsigned count, indirect;
346 struct dx_entry *at, *entries, *p, *q, *m;
347 struct dx_root *root;
348 struct buffer_head *bh;
349 struct dx_frame *frame = frame_in;
353 if (!(bh = ext3_bread (NULL,dir, 0, 0, err)))
355 root = (struct dx_root *) bh->b_data;
356 if (root->info.hash_version != DX_HASH_TEA &&
357 root->info.hash_version != DX_HASH_HALF_MD4 &&
358 root->info.hash_version != DX_HASH_LEGACY) {
359 ext3_warning(dir->i_sb, __func__,
360 "Unrecognised inode hash code %d",
361 root->info.hash_version);
363 *err = ERR_BAD_DX_DIR;
366 hinfo->hash_version = root->info.hash_version;
367 if (hinfo->hash_version <= DX_HASH_TEA)
368 hinfo->hash_version += EXT3_SB(dir->i_sb)->s_hash_unsigned;
369 hinfo->seed = EXT3_SB(dir->i_sb)->s_hash_seed;
371 ext3fs_dirhash(entry->name, entry->len, hinfo);
374 if (root->info.unused_flags & 1) {
375 ext3_warning(dir->i_sb, __func__,
376 "Unimplemented inode hash flags: %#06x",
377 root->info.unused_flags);
379 *err = ERR_BAD_DX_DIR;
383 if ((indirect = root->info.indirect_levels) > 1) {
384 ext3_warning(dir->i_sb, __func__,
385 "Unimplemented inode hash depth: %#06x",
386 root->info.indirect_levels);
388 *err = ERR_BAD_DX_DIR;
392 entries = (struct dx_entry *) (((char *)&root->info) +
393 root->info.info_length);
395 if (dx_get_limit(entries) != dx_root_limit(dir,
396 root->info.info_length)) {
397 ext3_warning(dir->i_sb, __func__,
398 "dx entry: limit != root limit");
400 *err = ERR_BAD_DX_DIR;
404 dxtrace (printk("Look up %x", hash));
407 count = dx_get_count(entries);
408 if (!count || count > dx_get_limit(entries)) {
409 ext3_warning(dir->i_sb, __func__,
410 "dx entry: no count or count > limit");
412 *err = ERR_BAD_DX_DIR;
417 q = entries + count - 1;
421 dxtrace(printk("."));
422 if (dx_get_hash(m) > hash)
428 if (0) // linear search cross check
430 unsigned n = count - 1;
434 dxtrace(printk(","));
435 if (dx_get_hash(++at) > hash)
441 assert (at == p - 1);
445 dxtrace(printk(" %x->%u\n", at == entries? 0: dx_get_hash(at), dx_get_block(at)));
447 frame->entries = entries;
449 if (!indirect--) return frame;
450 if (!(bh = ext3_bread (NULL,dir, dx_get_block(at), 0, err)))
452 at = entries = ((struct dx_node *) bh->b_data)->entries;
453 if (dx_get_limit(entries) != dx_node_limit (dir)) {
454 ext3_warning(dir->i_sb, __func__,
455 "dx entry: limit != node limit");
457 *err = ERR_BAD_DX_DIR;
464 while (frame >= frame_in) {
469 if (*err == ERR_BAD_DX_DIR)
470 ext3_warning(dir->i_sb, __func__,
471 "Corrupt dir inode %ld, running e2fsck is "
472 "recommended.", dir->i_ino);
476 static void dx_release (struct dx_frame *frames)
478 if (frames[0].bh == NULL)
481 if (((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels)
482 brelse(frames[1].bh);
483 brelse(frames[0].bh);
487 * This function increments the frame pointer to search the next leaf
488 * block, and reads in the necessary intervening nodes if the search
489 * should be necessary. Whether or not the search is necessary is
490 * controlled by the hash parameter. If the hash value is even, then
491 * the search is only continued if the next block starts with that
492 * hash value. This is used if we are searching for a specific file.
494 * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
496 * This function returns 1 if the caller should continue to search,
497 * or 0 if it should not. If there is an error reading one of the
498 * index blocks, it will a negative error code.
500 * If start_hash is non-null, it will be filled in with the starting
501 * hash of the next page.
503 static int ext3_htree_next_block(struct inode *dir, __u32 hash,
504 struct dx_frame *frame,
505 struct dx_frame *frames,
509 struct buffer_head *bh;
510 int err, num_frames = 0;
515 * Find the next leaf page by incrementing the frame pointer.
516 * If we run out of entries in the interior node, loop around and
517 * increment pointer in the parent node. When we break out of
518 * this loop, num_frames indicates the number of interior
519 * nodes need to be read.
522 if (++(p->at) < p->entries + dx_get_count(p->entries))
531 * If the hash is 1, then continue only if the next page has a
532 * continuation hash of any value. This is used for readdir
533 * handling. Otherwise, check to see if the hash matches the
534 * desired contiuation hash. If it doesn't, return since
535 * there's no point to read in the successive index pages.
537 bhash = dx_get_hash(p->at);
540 if ((hash & 1) == 0) {
541 if ((bhash & ~1) != hash)
545 * If the hash is HASH_NB_ALWAYS, we always go to the next
546 * block so no check is necessary
548 while (num_frames--) {
549 if (!(bh = ext3_bread(NULL, dir, dx_get_block(p->at),
551 return err; /* Failure */
555 p->at = p->entries = ((struct dx_node *) bh->b_data)->entries;
562 * This function fills a red-black tree with information from a
563 * directory block. It returns the number directory entries loaded
564 * into the tree. If there is an error it is returned in err.
566 static int htree_dirblock_to_tree(struct file *dir_file,
567 struct inode *dir, int block,
568 struct dx_hash_info *hinfo,
569 __u32 start_hash, __u32 start_minor_hash)
571 struct buffer_head *bh;
572 struct ext3_dir_entry_2 *de, *top;
575 dxtrace(printk("In htree dirblock_to_tree: block %d\n", block));
576 if (!(bh = ext3_bread (NULL, dir, block, 0, &err)))
579 de = (struct ext3_dir_entry_2 *) bh->b_data;
580 top = (struct ext3_dir_entry_2 *) ((char *) de +
581 dir->i_sb->s_blocksize -
582 EXT3_DIR_REC_LEN(0));
583 for (; de < top; de = ext3_next_entry(de)) {
584 if (!ext3_check_dir_entry("htree_dirblock_to_tree", dir, de, bh,
585 (block<<EXT3_BLOCK_SIZE_BITS(dir->i_sb))
586 +((char *)de - bh->b_data))) {
587 /* On error, skip the f_pos to the next block. */
588 dir_file->f_pos = (dir_file->f_pos |
589 (dir->i_sb->s_blocksize - 1)) + 1;
593 ext3fs_dirhash(de->name, de->name_len, hinfo);
594 if ((hinfo->hash < start_hash) ||
595 ((hinfo->hash == start_hash) &&
596 (hinfo->minor_hash < start_minor_hash)))
600 if ((err = ext3_htree_store_dirent(dir_file,
601 hinfo->hash, hinfo->minor_hash, de)) != 0) {
613 * This function fills a red-black tree with information from a
614 * directory. We start scanning the directory in hash order, starting
615 * at start_hash and start_minor_hash.
617 * This function returns the number of entries inserted into the tree,
618 * or a negative error code.
620 int ext3_htree_fill_tree(struct file *dir_file, __u32 start_hash,
621 __u32 start_minor_hash, __u32 *next_hash)
623 struct dx_hash_info hinfo;
624 struct ext3_dir_entry_2 *de;
625 struct dx_frame frames[2], *frame;
632 dxtrace(printk("In htree_fill_tree, start hash: %x:%x\n", start_hash,
634 dir = dir_file->f_path.dentry->d_inode;
635 if (!(EXT3_I(dir)->i_flags & EXT3_INDEX_FL)) {
636 hinfo.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version;
637 if (hinfo.hash_version <= DX_HASH_TEA)
638 hinfo.hash_version +=
639 EXT3_SB(dir->i_sb)->s_hash_unsigned;
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,
807 unsigned long offset,
808 struct ext3_dir_entry_2 ** res_dir)
810 struct ext3_dir_entry_2 * de;
813 const char *name = child->name;
814 int namelen = child->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 inode *dir,
855 struct ext3_dir_entry_2 **res_dir)
857 struct super_block * sb;
858 struct buffer_head * bh_use[NAMEI_RA_SIZE];
859 struct buffer_head * bh, *ret = NULL;
860 unsigned long start, block, b;
861 int ra_max = 0; /* Number of bh's in the readahead
863 int ra_ptr = 0; /* Current index into readahead
871 namelen = entry->len;
872 if (namelen > EXT3_NAME_LEN)
875 bh = ext3_dx_find_entry(dir, entry, 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, entry,
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 inode *dir,
961 struct qstr *entry, struct ext3_dir_entry_2 **res_dir,
964 struct super_block * sb;
965 struct dx_hash_info hinfo;
967 struct dx_frame frames[2], *frame;
968 struct ext3_dir_entry_2 *de, *top;
969 struct buffer_head *bh;
972 int namelen = entry->len;
973 const u8 *name = entry->name;
976 /* NFS may look up ".." - look at dx_root directory block */
977 if (namelen > 2 || name[0] != '.'|| (namelen == 2 && name[1] != '.')) {
978 if (!(frame = dx_probe(entry, dir, &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(dir, &dentry->d_name, &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 qstr dotdot = {.name = "..", .len = 2};
1061 struct ext3_dir_entry_2 * de;
1062 struct buffer_head *bh;
1064 bh = ext3_find_entry(child->d_inode, &dotdot, &de);
1066 return ERR_PTR(-ENOENT);
1067 ino = le32_to_cpu(de->inode);
1070 if (!ext3_valid_inum(child->d_inode->i_sb, ino)) {
1071 ext3_error(child->d_inode->i_sb, "ext3_get_parent",
1072 "bad inode number: %lu", ino);
1073 return ERR_PTR(-EIO);
1076 return d_obtain_alias(ext3_iget(child->d_inode->i_sb, ino));
1080 static unsigned char ext3_type_by_mode[S_IFMT >> S_SHIFT] = {
1081 [S_IFREG >> S_SHIFT] = EXT3_FT_REG_FILE,
1082 [S_IFDIR >> S_SHIFT] = EXT3_FT_DIR,
1083 [S_IFCHR >> S_SHIFT] = EXT3_FT_CHRDEV,
1084 [S_IFBLK >> S_SHIFT] = EXT3_FT_BLKDEV,
1085 [S_IFIFO >> S_SHIFT] = EXT3_FT_FIFO,
1086 [S_IFSOCK >> S_SHIFT] = EXT3_FT_SOCK,
1087 [S_IFLNK >> S_SHIFT] = EXT3_FT_SYMLINK,
1090 static inline void ext3_set_de_type(struct super_block *sb,
1091 struct ext3_dir_entry_2 *de,
1093 if (EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_FILETYPE))
1094 de->file_type = ext3_type_by_mode[(mode & S_IFMT)>>S_SHIFT];
1098 * Move count entries from end of map between two memory locations.
1099 * Returns pointer to last entry moved.
1101 static struct ext3_dir_entry_2 *
1102 dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count)
1104 unsigned rec_len = 0;
1107 struct ext3_dir_entry_2 *de = (struct ext3_dir_entry_2 *) (from + map->offs);
1108 rec_len = EXT3_DIR_REC_LEN(de->name_len);
1109 memcpy (to, de, rec_len);
1110 ((struct ext3_dir_entry_2 *) to)->rec_len =
1111 ext3_rec_len_to_disk(rec_len);
1116 return (struct ext3_dir_entry_2 *) (to - rec_len);
1120 * Compact each dir entry in the range to the minimal rec_len.
1121 * Returns pointer to last entry in range.
1123 static struct ext3_dir_entry_2* dx_pack_dirents(char *base, int size)
1125 struct ext3_dir_entry_2 *next, *to, *prev, *de = (struct ext3_dir_entry_2 *) base;
1126 unsigned rec_len = 0;
1129 while ((char*)de < base + size) {
1130 next = ext3_next_entry(de);
1131 if (de->inode && de->name_len) {
1132 rec_len = EXT3_DIR_REC_LEN(de->name_len);
1134 memmove(to, de, rec_len);
1135 to->rec_len = ext3_rec_len_to_disk(rec_len);
1137 to = (struct ext3_dir_entry_2 *) (((char *) to) + rec_len);
1145 * Split a full leaf block to make room for a new dir entry.
1146 * Allocate a new block, and move entries so that they are approx. equally full.
1147 * Returns pointer to de in block into which the new entry will be inserted.
1149 static struct ext3_dir_entry_2 *do_split(handle_t *handle, struct inode *dir,
1150 struct buffer_head **bh,struct dx_frame *frame,
1151 struct dx_hash_info *hinfo, int *error)
1153 unsigned blocksize = dir->i_sb->s_blocksize;
1154 unsigned count, continued;
1155 struct buffer_head *bh2;
1158 struct dx_map_entry *map;
1159 char *data1 = (*bh)->b_data, *data2;
1160 unsigned split, move, size;
1161 struct ext3_dir_entry_2 *de = NULL, *de2;
1164 bh2 = ext3_append (handle, dir, &newblock, &err);
1171 BUFFER_TRACE(*bh, "get_write_access");
1172 err = ext3_journal_get_write_access(handle, *bh);
1176 BUFFER_TRACE(frame->bh, "get_write_access");
1177 err = ext3_journal_get_write_access(handle, frame->bh);
1181 data2 = bh2->b_data;
1183 /* create map in the end of data2 block */
1184 map = (struct dx_map_entry *) (data2 + blocksize);
1185 count = dx_make_map ((struct ext3_dir_entry_2 *) data1,
1186 blocksize, hinfo, map);
1188 dx_sort_map (map, count);
1189 /* Split the existing block in the middle, size-wise */
1192 for (i = count-1; i >= 0; i--) {
1193 /* is more than half of this entry in 2nd half of the block? */
1194 if (size + map[i].size/2 > blocksize/2)
1196 size += map[i].size;
1199 /* map index at which we will split */
1200 split = count - move;
1201 hash2 = map[split].hash;
1202 continued = hash2 == map[split - 1].hash;
1203 dxtrace(printk("Split block %i at %x, %i/%i\n",
1204 dx_get_block(frame->at), hash2, split, count-split));
1206 /* Fancy dance to stay within two buffers */
1207 de2 = dx_move_dirents(data1, data2, map + split, count - split);
1208 de = dx_pack_dirents(data1,blocksize);
1209 de->rec_len = ext3_rec_len_to_disk(data1 + blocksize - (char *) de);
1210 de2->rec_len = ext3_rec_len_to_disk(data2 + blocksize - (char *) de2);
1211 dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data1, blocksize, 1));
1212 dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data2, blocksize, 1));
1214 /* Which block gets the new entry? */
1215 if (hinfo->hash >= hash2)
1220 dx_insert_block (frame, hash2 + continued, newblock);
1221 err = ext3_journal_dirty_metadata (handle, bh2);
1224 err = ext3_journal_dirty_metadata (handle, frame->bh);
1228 dxtrace(dx_show_index ("frame", frame->entries));
1235 ext3_std_error(dir->i_sb, err);
1243 * Add a new entry into a directory (leaf) block. If de is non-NULL,
1244 * it points to a directory entry which is guaranteed to be large
1245 * enough for new directory entry. If de is NULL, then
1246 * add_dirent_to_buf will attempt search the directory block for
1247 * space. It will return -ENOSPC if no space is available, and -EIO
1248 * and -EEXIST if directory entry already exists.
1250 * NOTE! bh is NOT released in the case where ENOSPC is returned. In
1251 * all other cases bh is released.
1253 static int add_dirent_to_buf(handle_t *handle, struct dentry *dentry,
1254 struct inode *inode, struct ext3_dir_entry_2 *de,
1255 struct buffer_head * bh)
1257 struct inode *dir = dentry->d_parent->d_inode;
1258 const char *name = dentry->d_name.name;
1259 int namelen = dentry->d_name.len;
1260 unsigned long offset = 0;
1261 unsigned short reclen;
1262 int nlen, rlen, err;
1265 reclen = EXT3_DIR_REC_LEN(namelen);
1267 de = (struct ext3_dir_entry_2 *)bh->b_data;
1268 top = bh->b_data + dir->i_sb->s_blocksize - reclen;
1269 while ((char *) de <= top) {
1270 if (!ext3_check_dir_entry("ext3_add_entry", dir, de,
1275 if (ext3_match (namelen, name, de)) {
1279 nlen = EXT3_DIR_REC_LEN(de->name_len);
1280 rlen = ext3_rec_len_from_disk(de->rec_len);
1281 if ((de->inode? rlen - nlen: rlen) >= reclen)
1283 de = (struct ext3_dir_entry_2 *)((char *)de + rlen);
1286 if ((char *) de > top)
1289 BUFFER_TRACE(bh, "get_write_access");
1290 err = ext3_journal_get_write_access(handle, bh);
1292 ext3_std_error(dir->i_sb, err);
1297 /* By now the buffer is marked for journaling */
1298 nlen = EXT3_DIR_REC_LEN(de->name_len);
1299 rlen = ext3_rec_len_from_disk(de->rec_len);
1301 struct ext3_dir_entry_2 *de1 = (struct ext3_dir_entry_2 *)((char *)de + nlen);
1302 de1->rec_len = ext3_rec_len_to_disk(rlen - nlen);
1303 de->rec_len = ext3_rec_len_to_disk(nlen);
1306 de->file_type = EXT3_FT_UNKNOWN;
1308 de->inode = cpu_to_le32(inode->i_ino);
1309 ext3_set_de_type(dir->i_sb, de, inode->i_mode);
1312 de->name_len = namelen;
1313 memcpy (de->name, name, namelen);
1315 * XXX shouldn't update any times until successful
1316 * completion of syscall, but too many callers depend
1319 * XXX similarly, too many callers depend on
1320 * ext3_new_inode() setting the times, but error
1321 * recovery deletes the inode, so the worst that can
1322 * happen is that the times are slightly out of date
1323 * and/or different from the directory change time.
1325 dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC;
1326 ext3_update_dx_flag(dir);
1328 ext3_mark_inode_dirty(handle, dir);
1329 BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
1330 err = ext3_journal_dirty_metadata(handle, bh);
1332 ext3_std_error(dir->i_sb, err);
1338 * This converts a one block unindexed directory to a 3 block indexed
1339 * directory, and adds the dentry to the indexed directory.
1341 static int make_indexed_dir(handle_t *handle, struct dentry *dentry,
1342 struct inode *inode, struct buffer_head *bh)
1344 struct inode *dir = dentry->d_parent->d_inode;
1345 const char *name = dentry->d_name.name;
1346 int namelen = dentry->d_name.len;
1347 struct buffer_head *bh2;
1348 struct dx_root *root;
1349 struct dx_frame frames[2], *frame;
1350 struct dx_entry *entries;
1351 struct ext3_dir_entry_2 *de, *de2;
1356 struct dx_hash_info hinfo;
1358 struct fake_dirent *fde;
1360 blocksize = dir->i_sb->s_blocksize;
1361 dxtrace(printk(KERN_DEBUG "Creating index: inode %lu\n", dir->i_ino));
1362 retval = ext3_journal_get_write_access(handle, bh);
1364 ext3_std_error(dir->i_sb, retval);
1368 root = (struct dx_root *) bh->b_data;
1370 /* The 0th block becomes the root, move the dirents out */
1371 fde = &root->dotdot;
1372 de = (struct ext3_dir_entry_2 *)((char *)fde +
1373 ext3_rec_len_from_disk(fde->rec_len));
1374 if ((char *) de >= (((char *) root) + blocksize)) {
1375 ext3_error(dir->i_sb, __func__,
1376 "invalid rec_len for '..' in inode %lu",
1381 len = ((char *) root) + blocksize - (char *) de;
1383 bh2 = ext3_append (handle, dir, &block, &retval);
1388 EXT3_I(dir)->i_flags |= EXT3_INDEX_FL;
1389 data1 = bh2->b_data;
1391 memcpy (data1, de, len);
1392 de = (struct ext3_dir_entry_2 *) data1;
1394 while ((char *)(de2 = ext3_next_entry(de)) < top)
1396 de->rec_len = ext3_rec_len_to_disk(data1 + blocksize - (char *) de);
1397 /* Initialize the root; the dot dirents already exist */
1398 de = (struct ext3_dir_entry_2 *) (&root->dotdot);
1399 de->rec_len = ext3_rec_len_to_disk(blocksize - EXT3_DIR_REC_LEN(2));
1400 memset (&root->info, 0, sizeof(root->info));
1401 root->info.info_length = sizeof(root->info);
1402 root->info.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version;
1403 entries = root->entries;
1404 dx_set_block (entries, 1);
1405 dx_set_count (entries, 1);
1406 dx_set_limit (entries, dx_root_limit(dir, sizeof(root->info)));
1408 /* Initialize as for dx_probe */
1409 hinfo.hash_version = root->info.hash_version;
1410 if (hinfo.hash_version <= DX_HASH_TEA)
1411 hinfo.hash_version += EXT3_SB(dir->i_sb)->s_hash_unsigned;
1412 hinfo.seed = EXT3_SB(dir->i_sb)->s_hash_seed;
1413 ext3fs_dirhash(name, namelen, &hinfo);
1415 frame->entries = entries;
1416 frame->at = entries;
1419 de = do_split(handle,dir, &bh, frame, &hinfo, &retval);
1420 dx_release (frames);
1424 return add_dirent_to_buf(handle, dentry, inode, de, bh);
1430 * adds a file entry to the specified directory, using the same
1431 * semantics as ext3_find_entry(). It returns NULL if it failed.
1433 * NOTE!! The inode part of 'de' is left at 0 - which means you
1434 * may not sleep between calling this and putting something into
1435 * the entry, as someone else might have used it while you slept.
1437 static int ext3_add_entry (handle_t *handle, struct dentry *dentry,
1438 struct inode *inode)
1440 struct inode *dir = dentry->d_parent->d_inode;
1441 unsigned long offset;
1442 struct buffer_head * bh;
1443 struct ext3_dir_entry_2 *de;
1444 struct super_block * sb;
1451 blocksize = sb->s_blocksize;
1452 if (!dentry->d_name.len)
1455 retval = ext3_dx_add_entry(handle, dentry, inode);
1456 if (!retval || (retval != ERR_BAD_DX_DIR))
1458 EXT3_I(dir)->i_flags &= ~EXT3_INDEX_FL;
1460 ext3_mark_inode_dirty(handle, dir);
1462 blocks = dir->i_size >> sb->s_blocksize_bits;
1463 for (block = 0, offset = 0; block < blocks; block++) {
1464 bh = ext3_bread(handle, dir, block, 0, &retval);
1467 retval = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
1468 if (retval != -ENOSPC)
1471 if (blocks == 1 && !dx_fallback &&
1472 EXT3_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_DIR_INDEX))
1473 return make_indexed_dir(handle, dentry, inode, bh);
1476 bh = ext3_append(handle, dir, &block, &retval);
1479 de = (struct ext3_dir_entry_2 *) bh->b_data;
1481 de->rec_len = ext3_rec_len_to_disk(blocksize);
1482 return add_dirent_to_buf(handle, dentry, inode, de, bh);
1486 * Returns 0 for success, or a negative error value
1488 static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry,
1489 struct inode *inode)
1491 struct dx_frame frames[2], *frame;
1492 struct dx_entry *entries, *at;
1493 struct dx_hash_info hinfo;
1494 struct buffer_head * bh;
1495 struct inode *dir = dentry->d_parent->d_inode;
1496 struct super_block * sb = dir->i_sb;
1497 struct ext3_dir_entry_2 *de;
1500 frame = dx_probe(&dentry->d_name, dir, &hinfo, frames, &err);
1503 entries = frame->entries;
1506 if (!(bh = ext3_bread(handle,dir, dx_get_block(frame->at), 0, &err)))
1509 BUFFER_TRACE(bh, "get_write_access");
1510 err = ext3_journal_get_write_access(handle, bh);
1514 err = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
1515 if (err != -ENOSPC) {
1520 /* Block full, should compress but for now just split */
1521 dxtrace(printk("using %u of %u node entries\n",
1522 dx_get_count(entries), dx_get_limit(entries)));
1523 /* Need to split index? */
1524 if (dx_get_count(entries) == dx_get_limit(entries)) {
1526 unsigned icount = dx_get_count(entries);
1527 int levels = frame - frames;
1528 struct dx_entry *entries2;
1529 struct dx_node *node2;
1530 struct buffer_head *bh2;
1532 if (levels && (dx_get_count(frames->entries) ==
1533 dx_get_limit(frames->entries))) {
1534 ext3_warning(sb, __func__,
1535 "Directory index full!");
1539 bh2 = ext3_append (handle, dir, &newblock, &err);
1542 node2 = (struct dx_node *)(bh2->b_data);
1543 entries2 = node2->entries;
1544 node2->fake.rec_len = ext3_rec_len_to_disk(sb->s_blocksize);
1545 node2->fake.inode = 0;
1546 BUFFER_TRACE(frame->bh, "get_write_access");
1547 err = ext3_journal_get_write_access(handle, frame->bh);
1551 unsigned icount1 = icount/2, icount2 = icount - icount1;
1552 unsigned hash2 = dx_get_hash(entries + icount1);
1553 dxtrace(printk("Split index %i/%i\n", icount1, icount2));
1555 BUFFER_TRACE(frame->bh, "get_write_access"); /* index root */
1556 err = ext3_journal_get_write_access(handle,
1561 memcpy ((char *) entries2, (char *) (entries + icount1),
1562 icount2 * sizeof(struct dx_entry));
1563 dx_set_count (entries, icount1);
1564 dx_set_count (entries2, icount2);
1565 dx_set_limit (entries2, dx_node_limit(dir));
1567 /* Which index block gets the new entry? */
1568 if (at - entries >= icount1) {
1569 frame->at = at = at - entries - icount1 + entries2;
1570 frame->entries = entries = entries2;
1571 swap(frame->bh, bh2);
1573 dx_insert_block (frames + 0, hash2, newblock);
1574 dxtrace(dx_show_index ("node", frames[1].entries));
1575 dxtrace(dx_show_index ("node",
1576 ((struct dx_node *) bh2->b_data)->entries));
1577 err = ext3_journal_dirty_metadata(handle, bh2);
1582 dxtrace(printk("Creating second level index...\n"));
1583 memcpy((char *) entries2, (char *) entries,
1584 icount * sizeof(struct dx_entry));
1585 dx_set_limit(entries2, dx_node_limit(dir));
1588 dx_set_count(entries, 1);
1589 dx_set_block(entries + 0, newblock);
1590 ((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels = 1;
1592 /* Add new access path frame */
1594 frame->at = at = at - entries + entries2;
1595 frame->entries = entries = entries2;
1597 err = ext3_journal_get_write_access(handle,
1602 ext3_journal_dirty_metadata(handle, frames[0].bh);
1604 de = do_split(handle, dir, &bh, frame, &hinfo, &err);
1607 err = add_dirent_to_buf(handle, dentry, inode, de, bh);
1612 ext3_std_error(dir->i_sb, err);
1621 * ext3_delete_entry deletes a directory entry by merging it with the
1624 static int ext3_delete_entry (handle_t *handle,
1626 struct ext3_dir_entry_2 * de_del,
1627 struct buffer_head * bh)
1629 struct ext3_dir_entry_2 * de, * pde;
1634 de = (struct ext3_dir_entry_2 *) bh->b_data;
1635 while (i < bh->b_size) {
1636 if (!ext3_check_dir_entry("ext3_delete_entry", dir, de, bh, i))
1639 BUFFER_TRACE(bh, "get_write_access");
1640 ext3_journal_get_write_access(handle, bh);
1642 pde->rec_len = ext3_rec_len_to_disk(
1643 ext3_rec_len_from_disk(pde->rec_len) +
1644 ext3_rec_len_from_disk(de->rec_len));
1648 BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
1649 ext3_journal_dirty_metadata(handle, bh);
1652 i += ext3_rec_len_from_disk(de->rec_len);
1654 de = ext3_next_entry(de);
1659 static int ext3_add_nondir(handle_t *handle,
1660 struct dentry *dentry, struct inode *inode)
1662 int err = ext3_add_entry(handle, dentry, inode);
1664 ext3_mark_inode_dirty(handle, inode);
1665 d_instantiate(dentry, inode);
1666 unlock_new_inode(inode);
1670 unlock_new_inode(inode);
1676 * By the time this is called, we already have created
1677 * the directory cache entry for the new file, but it
1678 * is so far negative - it has no inode.
1680 * If the create succeeds, we fill in the inode information
1681 * with d_instantiate().
1683 static int ext3_create (struct inode * dir, struct dentry * dentry, int mode,
1684 struct nameidata *nd)
1687 struct inode * inode;
1688 int err, retries = 0;
1691 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
1692 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1693 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
1695 return PTR_ERR(handle);
1697 if (IS_DIRSYNC(dir))
1700 inode = ext3_new_inode (handle, dir, mode);
1701 err = PTR_ERR(inode);
1702 if (!IS_ERR(inode)) {
1703 inode->i_op = &ext3_file_inode_operations;
1704 inode->i_fop = &ext3_file_operations;
1705 ext3_set_aops(inode);
1706 err = ext3_add_nondir(handle, dentry, inode);
1708 ext3_journal_stop(handle);
1709 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1714 static int ext3_mknod (struct inode * dir, struct dentry *dentry,
1715 int mode, dev_t rdev)
1718 struct inode *inode;
1719 int err, retries = 0;
1721 if (!new_valid_dev(rdev))
1725 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
1726 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1727 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
1729 return PTR_ERR(handle);
1731 if (IS_DIRSYNC(dir))
1734 inode = ext3_new_inode (handle, dir, mode);
1735 err = PTR_ERR(inode);
1736 if (!IS_ERR(inode)) {
1737 init_special_inode(inode, inode->i_mode, rdev);
1738 #ifdef CONFIG_EXT3_FS_XATTR
1739 inode->i_op = &ext3_special_inode_operations;
1741 err = ext3_add_nondir(handle, dentry, inode);
1743 ext3_journal_stop(handle);
1744 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1749 static int ext3_mkdir(struct inode * dir, struct dentry * dentry, int mode)
1752 struct inode * inode;
1753 struct buffer_head * dir_block;
1754 struct ext3_dir_entry_2 * de;
1755 int err, retries = 0;
1757 if (dir->i_nlink >= EXT3_LINK_MAX)
1761 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
1762 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1763 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
1765 return PTR_ERR(handle);
1767 if (IS_DIRSYNC(dir))
1770 inode = ext3_new_inode (handle, dir, S_IFDIR | mode);
1771 err = PTR_ERR(inode);
1775 inode->i_op = &ext3_dir_inode_operations;
1776 inode->i_fop = &ext3_dir_operations;
1777 inode->i_size = EXT3_I(inode)->i_disksize = inode->i_sb->s_blocksize;
1778 dir_block = ext3_bread (handle, inode, 0, 1, &err);
1780 drop_nlink(inode); /* is this nlink == 0? */
1781 unlock_new_inode(inode);
1782 ext3_mark_inode_dirty(handle, inode);
1786 BUFFER_TRACE(dir_block, "get_write_access");
1787 ext3_journal_get_write_access(handle, dir_block);
1788 de = (struct ext3_dir_entry_2 *) dir_block->b_data;
1789 de->inode = cpu_to_le32(inode->i_ino);
1791 de->rec_len = ext3_rec_len_to_disk(EXT3_DIR_REC_LEN(de->name_len));
1792 strcpy (de->name, ".");
1793 ext3_set_de_type(dir->i_sb, de, S_IFDIR);
1794 de = ext3_next_entry(de);
1795 de->inode = cpu_to_le32(dir->i_ino);
1796 de->rec_len = ext3_rec_len_to_disk(inode->i_sb->s_blocksize -
1797 EXT3_DIR_REC_LEN(1));
1799 strcpy (de->name, "..");
1800 ext3_set_de_type(dir->i_sb, de, S_IFDIR);
1802 BUFFER_TRACE(dir_block, "call ext3_journal_dirty_metadata");
1803 ext3_journal_dirty_metadata(handle, dir_block);
1805 ext3_mark_inode_dirty(handle, inode);
1806 err = ext3_add_entry (handle, dentry, inode);
1809 unlock_new_inode(inode);
1810 ext3_mark_inode_dirty(handle, inode);
1815 ext3_update_dx_flag(dir);
1816 ext3_mark_inode_dirty(handle, dir);
1817 d_instantiate(dentry, inode);
1818 unlock_new_inode(inode);
1820 ext3_journal_stop(handle);
1821 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1827 * routine to check that the specified directory is empty (for rmdir)
1829 static int empty_dir (struct inode * inode)
1831 unsigned long offset;
1832 struct buffer_head * bh;
1833 struct ext3_dir_entry_2 * de, * de1;
1834 struct super_block * sb;
1838 if (inode->i_size < EXT3_DIR_REC_LEN(1) + EXT3_DIR_REC_LEN(2) ||
1839 !(bh = ext3_bread (NULL, inode, 0, 0, &err))) {
1841 ext3_error(inode->i_sb, __func__,
1842 "error %d reading directory #%lu offset 0",
1845 ext3_warning(inode->i_sb, __func__,
1846 "bad directory (dir #%lu) - no data block",
1850 de = (struct ext3_dir_entry_2 *) bh->b_data;
1851 de1 = ext3_next_entry(de);
1852 if (le32_to_cpu(de->inode) != inode->i_ino ||
1853 !le32_to_cpu(de1->inode) ||
1854 strcmp (".", de->name) ||
1855 strcmp ("..", de1->name)) {
1856 ext3_warning (inode->i_sb, "empty_dir",
1857 "bad directory (dir #%lu) - no `.' or `..'",
1862 offset = ext3_rec_len_from_disk(de->rec_len) +
1863 ext3_rec_len_from_disk(de1->rec_len);
1864 de = ext3_next_entry(de1);
1865 while (offset < inode->i_size ) {
1867 (void *) de >= (void *) (bh->b_data+sb->s_blocksize)) {
1870 bh = ext3_bread (NULL, inode,
1871 offset >> EXT3_BLOCK_SIZE_BITS(sb), 0, &err);
1874 ext3_error(sb, __func__,
1875 "error %d reading directory"
1877 err, inode->i_ino, offset);
1878 offset += sb->s_blocksize;
1881 de = (struct ext3_dir_entry_2 *) bh->b_data;
1883 if (!ext3_check_dir_entry("empty_dir", inode, de, bh, offset)) {
1884 de = (struct ext3_dir_entry_2 *)(bh->b_data +
1886 offset = (offset | (sb->s_blocksize - 1)) + 1;
1889 if (le32_to_cpu(de->inode)) {
1893 offset += ext3_rec_len_from_disk(de->rec_len);
1894 de = ext3_next_entry(de);
1900 /* ext3_orphan_add() links an unlinked or truncated inode into a list of
1901 * such inodes, starting at the superblock, in case we crash before the
1902 * file is closed/deleted, or in case the inode truncate spans multiple
1903 * transactions and the last transaction is not recovered after a crash.
1905 * At filesystem recovery time, we walk this list deleting unlinked
1906 * inodes and truncating linked inodes in ext3_orphan_cleanup().
1908 int ext3_orphan_add(handle_t *handle, struct inode *inode)
1910 struct super_block *sb = inode->i_sb;
1911 struct ext3_iloc iloc;
1915 if (!list_empty(&EXT3_I(inode)->i_orphan))
1918 /* Orphan handling is only valid for files with data blocks
1919 * being truncated, or files being unlinked. */
1921 /* @@@ FIXME: Observation from aviro:
1922 * I think I can trigger J_ASSERT in ext3_orphan_add(). We block
1923 * here (on lock_super()), so race with ext3_link() which might bump
1924 * ->i_nlink. For, say it, character device. Not a regular file,
1925 * not a directory, not a symlink and ->i_nlink > 0.
1927 J_ASSERT ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
1928 S_ISLNK(inode->i_mode)) || inode->i_nlink == 0);
1930 BUFFER_TRACE(EXT3_SB(sb)->s_sbh, "get_write_access");
1931 err = ext3_journal_get_write_access(handle, EXT3_SB(sb)->s_sbh);
1935 err = ext3_reserve_inode_write(handle, inode, &iloc);
1939 /* Insert this inode at the head of the on-disk orphan list... */
1940 NEXT_ORPHAN(inode) = le32_to_cpu(EXT3_SB(sb)->s_es->s_last_orphan);
1941 EXT3_SB(sb)->s_es->s_last_orphan = cpu_to_le32(inode->i_ino);
1942 err = ext3_journal_dirty_metadata(handle, EXT3_SB(sb)->s_sbh);
1943 rc = ext3_mark_iloc_dirty(handle, inode, &iloc);
1947 /* Only add to the head of the in-memory list if all the
1948 * previous operations succeeded. If the orphan_add is going to
1949 * fail (possibly taking the journal offline), we can't risk
1950 * leaving the inode on the orphan list: stray orphan-list
1951 * entries can cause panics at unmount time.
1953 * This is safe: on error we're going to ignore the orphan list
1954 * anyway on the next recovery. */
1956 list_add(&EXT3_I(inode)->i_orphan, &EXT3_SB(sb)->s_orphan);
1958 jbd_debug(4, "superblock will point to %lu\n", inode->i_ino);
1959 jbd_debug(4, "orphan inode %lu will point to %d\n",
1960 inode->i_ino, NEXT_ORPHAN(inode));
1963 ext3_std_error(inode->i_sb, err);
1968 * ext3_orphan_del() removes an unlinked or truncated inode from the list
1969 * of such inodes stored on disk, because it is finally being cleaned up.
1971 int ext3_orphan_del(handle_t *handle, struct inode *inode)
1973 struct list_head *prev;
1974 struct ext3_inode_info *ei = EXT3_I(inode);
1975 struct ext3_sb_info *sbi;
1976 unsigned long ino_next;
1977 struct ext3_iloc iloc;
1980 lock_super(inode->i_sb);
1981 if (list_empty(&ei->i_orphan)) {
1982 unlock_super(inode->i_sb);
1986 ino_next = NEXT_ORPHAN(inode);
1987 prev = ei->i_orphan.prev;
1988 sbi = EXT3_SB(inode->i_sb);
1990 jbd_debug(4, "remove inode %lu from orphan list\n", inode->i_ino);
1992 list_del_init(&ei->i_orphan);
1994 /* If we're on an error path, we may not have a valid
1995 * transaction handle with which to update the orphan list on
1996 * disk, but we still need to remove the inode from the linked
1997 * list in memory. */
2001 err = ext3_reserve_inode_write(handle, inode, &iloc);
2005 if (prev == &sbi->s_orphan) {
2006 jbd_debug(4, "superblock will point to %lu\n", ino_next);
2007 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
2008 err = ext3_journal_get_write_access(handle, sbi->s_sbh);
2011 sbi->s_es->s_last_orphan = cpu_to_le32(ino_next);
2012 err = ext3_journal_dirty_metadata(handle, sbi->s_sbh);
2014 struct ext3_iloc iloc2;
2015 struct inode *i_prev =
2016 &list_entry(prev, struct ext3_inode_info, i_orphan)->vfs_inode;
2018 jbd_debug(4, "orphan inode %lu will point to %lu\n",
2019 i_prev->i_ino, ino_next);
2020 err = ext3_reserve_inode_write(handle, i_prev, &iloc2);
2023 NEXT_ORPHAN(i_prev) = ino_next;
2024 err = ext3_mark_iloc_dirty(handle, i_prev, &iloc2);
2028 NEXT_ORPHAN(inode) = 0;
2029 err = ext3_mark_iloc_dirty(handle, inode, &iloc);
2032 ext3_std_error(inode->i_sb, err);
2034 unlock_super(inode->i_sb);
2042 static int ext3_rmdir (struct inode * dir, struct dentry *dentry)
2045 struct inode * inode;
2046 struct buffer_head * bh;
2047 struct ext3_dir_entry_2 * de;
2050 /* Initialize quotas before so that eventual writes go in
2051 * separate transaction */
2052 vfs_dq_init(dentry->d_inode);
2053 handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS(dir->i_sb));
2055 return PTR_ERR(handle);
2058 bh = ext3_find_entry(dir, &dentry->d_name, &de);
2062 if (IS_DIRSYNC(dir))
2065 inode = dentry->d_inode;
2068 if (le32_to_cpu(de->inode) != inode->i_ino)
2071 retval = -ENOTEMPTY;
2072 if (!empty_dir (inode))
2075 retval = ext3_delete_entry(handle, dir, de, bh);
2078 if (inode->i_nlink != 2)
2079 ext3_warning (inode->i_sb, "ext3_rmdir",
2080 "empty directory has nlink!=2 (%d)",
2084 /* There's no need to set i_disksize: the fact that i_nlink is
2085 * zero will ensure that the right thing happens during any
2088 ext3_orphan_add(handle, inode);
2089 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
2090 ext3_mark_inode_dirty(handle, inode);
2092 ext3_update_dx_flag(dir);
2093 ext3_mark_inode_dirty(handle, dir);
2096 ext3_journal_stop(handle);
2101 static int ext3_unlink(struct inode * dir, struct dentry *dentry)
2104 struct inode * inode;
2105 struct buffer_head * bh;
2106 struct ext3_dir_entry_2 * de;
2109 /* Initialize quotas before so that eventual writes go
2110 * in separate transaction */
2111 vfs_dq_init(dentry->d_inode);
2112 handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS(dir->i_sb));
2114 return PTR_ERR(handle);
2116 if (IS_DIRSYNC(dir))
2120 bh = ext3_find_entry(dir, &dentry->d_name, &de);
2124 inode = dentry->d_inode;
2127 if (le32_to_cpu(de->inode) != inode->i_ino)
2130 if (!inode->i_nlink) {
2131 ext3_warning (inode->i_sb, "ext3_unlink",
2132 "Deleting nonexistent file (%lu), %d",
2133 inode->i_ino, inode->i_nlink);
2136 retval = ext3_delete_entry(handle, dir, de, bh);
2139 dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
2140 ext3_update_dx_flag(dir);
2141 ext3_mark_inode_dirty(handle, dir);
2143 if (!inode->i_nlink)
2144 ext3_orphan_add(handle, inode);
2145 inode->i_ctime = dir->i_ctime;
2146 ext3_mark_inode_dirty(handle, inode);
2150 ext3_journal_stop(handle);
2155 static int ext3_symlink (struct inode * dir,
2156 struct dentry *dentry, const char * symname)
2159 struct inode * inode;
2160 int l, err, retries = 0;
2162 l = strlen(symname)+1;
2163 if (l > dir->i_sb->s_blocksize)
2164 return -ENAMETOOLONG;
2167 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
2168 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 5 +
2169 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
2171 return PTR_ERR(handle);
2173 if (IS_DIRSYNC(dir))
2176 inode = ext3_new_inode (handle, dir, S_IFLNK|S_IRWXUGO);
2177 err = PTR_ERR(inode);
2181 if (l > sizeof (EXT3_I(inode)->i_data)) {
2182 inode->i_op = &ext3_symlink_inode_operations;
2183 ext3_set_aops(inode);
2185 * page_symlink() calls into ext3_prepare/commit_write.
2186 * We have a transaction open. All is sweetness. It also sets
2187 * i_size in generic_commit_write().
2189 err = __page_symlink(inode, symname, l, 1);
2192 unlock_new_inode(inode);
2193 ext3_mark_inode_dirty(handle, inode);
2198 inode->i_op = &ext3_fast_symlink_inode_operations;
2199 memcpy((char*)&EXT3_I(inode)->i_data,symname,l);
2200 inode->i_size = l-1;
2202 EXT3_I(inode)->i_disksize = inode->i_size;
2203 err = ext3_add_nondir(handle, dentry, inode);
2205 ext3_journal_stop(handle);
2206 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
2211 static int ext3_link (struct dentry * old_dentry,
2212 struct inode * dir, struct dentry *dentry)
2215 struct inode *inode = old_dentry->d_inode;
2216 int err, retries = 0;
2218 if (inode->i_nlink >= EXT3_LINK_MAX)
2221 * Return -ENOENT if we've raced with unlink and i_nlink is 0. Doing
2222 * otherwise has the potential to corrupt the orphan inode list.
2224 if (inode->i_nlink == 0)
2228 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
2229 EXT3_INDEX_EXTRA_TRANS_BLOCKS);
2231 return PTR_ERR(handle);
2233 if (IS_DIRSYNC(dir))
2236 inode->i_ctime = CURRENT_TIME_SEC;
2238 atomic_inc(&inode->i_count);
2240 err = ext3_add_entry(handle, dentry, inode);
2242 ext3_mark_inode_dirty(handle, inode);
2243 d_instantiate(dentry, inode);
2248 ext3_journal_stop(handle);
2249 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
2254 #define PARENT_INO(buffer) \
2255 (ext3_next_entry((struct ext3_dir_entry_2 *)(buffer))->inode)
2258 * Anybody can rename anything with this: the permission checks are left to the
2259 * higher-level routines.
2261 static int ext3_rename (struct inode * old_dir, struct dentry *old_dentry,
2262 struct inode * new_dir,struct dentry *new_dentry)
2265 struct inode * old_inode, * new_inode;
2266 struct buffer_head * old_bh, * new_bh, * dir_bh;
2267 struct ext3_dir_entry_2 * old_de, * new_de;
2270 old_bh = new_bh = dir_bh = NULL;
2272 /* Initialize quotas before so that eventual writes go
2273 * in separate transaction */
2274 if (new_dentry->d_inode)
2275 vfs_dq_init(new_dentry->d_inode);
2276 handle = ext3_journal_start(old_dir, 2 *
2277 EXT3_DATA_TRANS_BLOCKS(old_dir->i_sb) +
2278 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 2);
2280 return PTR_ERR(handle);
2282 if (IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir))
2285 old_bh = ext3_find_entry(old_dir, &old_dentry->d_name, &old_de);
2287 * Check for inode number is _not_ due to possible IO errors.
2288 * We might rmdir the source, keep it as pwd of some process
2289 * and merrily kill the link to whatever was created under the
2290 * same name. Goodbye sticky bit ;-<
2292 old_inode = old_dentry->d_inode;
2294 if (!old_bh || le32_to_cpu(old_de->inode) != old_inode->i_ino)
2297 new_inode = new_dentry->d_inode;
2298 new_bh = ext3_find_entry(new_dir, &new_dentry->d_name, &new_de);
2305 if (S_ISDIR(old_inode->i_mode)) {
2307 retval = -ENOTEMPTY;
2308 if (!empty_dir (new_inode))
2312 dir_bh = ext3_bread (handle, old_inode, 0, 0, &retval);
2315 if (le32_to_cpu(PARENT_INO(dir_bh->b_data)) != old_dir->i_ino)
2318 if (!new_inode && new_dir!=old_dir &&
2319 new_dir->i_nlink >= EXT3_LINK_MAX)
2323 retval = ext3_add_entry (handle, new_dentry, old_inode);
2327 BUFFER_TRACE(new_bh, "get write access");
2328 ext3_journal_get_write_access(handle, new_bh);
2329 new_de->inode = cpu_to_le32(old_inode->i_ino);
2330 if (EXT3_HAS_INCOMPAT_FEATURE(new_dir->i_sb,
2331 EXT3_FEATURE_INCOMPAT_FILETYPE))
2332 new_de->file_type = old_de->file_type;
2333 new_dir->i_version++;
2334 new_dir->i_ctime = new_dir->i_mtime = CURRENT_TIME_SEC;
2335 ext3_mark_inode_dirty(handle, new_dir);
2336 BUFFER_TRACE(new_bh, "call ext3_journal_dirty_metadata");
2337 ext3_journal_dirty_metadata(handle, new_bh);
2343 * Like most other Unix systems, set the ctime for inodes on a
2346 old_inode->i_ctime = CURRENT_TIME_SEC;
2347 ext3_mark_inode_dirty(handle, old_inode);
2352 if (le32_to_cpu(old_de->inode) != old_inode->i_ino ||
2353 old_de->name_len != old_dentry->d_name.len ||
2354 strncmp(old_de->name, old_dentry->d_name.name, old_de->name_len) ||
2355 (retval = ext3_delete_entry(handle, old_dir,
2356 old_de, old_bh)) == -ENOENT) {
2357 /* old_de could have moved from under us during htree split, so
2358 * make sure that we are deleting the right entry. We might
2359 * also be pointing to a stale entry in the unused part of
2360 * old_bh so just checking inum and the name isn't enough. */
2361 struct buffer_head *old_bh2;
2362 struct ext3_dir_entry_2 *old_de2;
2364 old_bh2 = ext3_find_entry(old_dir, &old_dentry->d_name,
2367 retval = ext3_delete_entry(handle, old_dir,
2373 ext3_warning(old_dir->i_sb, "ext3_rename",
2374 "Deleting old file (%lu), %d, error=%d",
2375 old_dir->i_ino, old_dir->i_nlink, retval);
2379 drop_nlink(new_inode);
2380 new_inode->i_ctime = CURRENT_TIME_SEC;
2382 old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME_SEC;
2383 ext3_update_dx_flag(old_dir);
2385 BUFFER_TRACE(dir_bh, "get_write_access");
2386 ext3_journal_get_write_access(handle, dir_bh);
2387 PARENT_INO(dir_bh->b_data) = cpu_to_le32(new_dir->i_ino);
2388 BUFFER_TRACE(dir_bh, "call ext3_journal_dirty_metadata");
2389 ext3_journal_dirty_metadata(handle, dir_bh);
2390 drop_nlink(old_dir);
2392 drop_nlink(new_inode);
2395 ext3_update_dx_flag(new_dir);
2396 ext3_mark_inode_dirty(handle, new_dir);
2399 ext3_mark_inode_dirty(handle, old_dir);
2401 ext3_mark_inode_dirty(handle, new_inode);
2402 if (!new_inode->i_nlink)
2403 ext3_orphan_add(handle, new_inode);
2411 ext3_journal_stop(handle);
2416 * directories can handle most operations...
2418 const struct inode_operations ext3_dir_inode_operations = {
2419 .create = ext3_create,
2420 .lookup = ext3_lookup,
2422 .unlink = ext3_unlink,
2423 .symlink = ext3_symlink,
2424 .mkdir = ext3_mkdir,
2425 .rmdir = ext3_rmdir,
2426 .mknod = ext3_mknod,
2427 .rename = ext3_rename,
2428 .setattr = ext3_setattr,
2429 #ifdef CONFIG_EXT3_FS_XATTR
2430 .setxattr = generic_setxattr,
2431 .getxattr = generic_getxattr,
2432 .listxattr = ext3_listxattr,
2433 .removexattr = generic_removexattr,
2435 .permission = ext3_permission,
2438 const struct inode_operations ext3_special_inode_operations = {
2439 .setattr = ext3_setattr,
2440 #ifdef CONFIG_EXT3_FS_XATTR
2441 .setxattr = generic_setxattr,
2442 .getxattr = generic_getxattr,
2443 .listxattr = ext3_listxattr,
2444 .removexattr = generic_removexattr,
2446 .permission = ext3_permission,