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 0? 20: 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 0? 22: 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 if (ext3_match (namelen, name, de)) {
996 if (!ext3_check_dir_entry("ext3_find_entry",
998 (block<<EXT3_BLOCK_SIZE_BITS(sb))
999 +((char *)de - bh->b_data))) {
1001 *err = ERR_BAD_DX_DIR;
1005 dx_release (frames);
1009 /* Check to see if we should continue to search */
1010 retval = ext3_htree_next_block(dir, hash, frame,
1013 ext3_warning(sb, __func__,
1014 "error reading index page in directory #%lu",
1019 } while (retval == 1);
1023 dxtrace(printk("%s not found\n", name));
1024 dx_release (frames);
1028 static struct dentry *ext3_lookup(struct inode * dir, struct dentry *dentry, struct nameidata *nd)
1030 struct inode * inode;
1031 struct ext3_dir_entry_2 * de;
1032 struct buffer_head * bh;
1034 if (dentry->d_name.len > EXT3_NAME_LEN)
1035 return ERR_PTR(-ENAMETOOLONG);
1037 bh = ext3_find_entry(dentry, &de);
1040 unsigned long ino = le32_to_cpu(de->inode);
1042 if (!ext3_valid_inum(dir->i_sb, ino)) {
1043 ext3_error(dir->i_sb, "ext3_lookup",
1044 "bad inode number: %lu", ino);
1045 return ERR_PTR(-EIO);
1047 inode = ext3_iget(dir->i_sb, ino);
1049 return ERR_CAST(inode);
1051 return d_splice_alias(inode, dentry);
1055 struct dentry *ext3_get_parent(struct dentry *child)
1058 struct dentry *parent;
1059 struct inode *inode;
1060 struct dentry dotdot;
1061 struct ext3_dir_entry_2 * de;
1062 struct buffer_head *bh;
1064 dotdot.d_name.name = "..";
1065 dotdot.d_name.len = 2;
1066 dotdot.d_parent = child; /* confusing, isn't it! */
1068 bh = ext3_find_entry(&dotdot, &de);
1071 return ERR_PTR(-ENOENT);
1072 ino = le32_to_cpu(de->inode);
1075 if (!ext3_valid_inum(child->d_inode->i_sb, ino)) {
1076 ext3_error(child->d_inode->i_sb, "ext3_get_parent",
1077 "bad inode number: %lu", ino);
1078 return ERR_PTR(-EIO);
1081 inode = ext3_iget(child->d_inode->i_sb, ino);
1083 return ERR_CAST(inode);
1085 parent = d_alloc_anon(inode);
1088 parent = ERR_PTR(-ENOMEM);
1094 static unsigned char ext3_type_by_mode[S_IFMT >> S_SHIFT] = {
1095 [S_IFREG >> S_SHIFT] = EXT3_FT_REG_FILE,
1096 [S_IFDIR >> S_SHIFT] = EXT3_FT_DIR,
1097 [S_IFCHR >> S_SHIFT] = EXT3_FT_CHRDEV,
1098 [S_IFBLK >> S_SHIFT] = EXT3_FT_BLKDEV,
1099 [S_IFIFO >> S_SHIFT] = EXT3_FT_FIFO,
1100 [S_IFSOCK >> S_SHIFT] = EXT3_FT_SOCK,
1101 [S_IFLNK >> S_SHIFT] = EXT3_FT_SYMLINK,
1104 static inline void ext3_set_de_type(struct super_block *sb,
1105 struct ext3_dir_entry_2 *de,
1107 if (EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_FILETYPE))
1108 de->file_type = ext3_type_by_mode[(mode & S_IFMT)>>S_SHIFT];
1112 * Move count entries from end of map between two memory locations.
1113 * Returns pointer to last entry moved.
1115 static struct ext3_dir_entry_2 *
1116 dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count)
1118 unsigned rec_len = 0;
1121 struct ext3_dir_entry_2 *de = (struct ext3_dir_entry_2 *) (from + map->offs);
1122 rec_len = EXT3_DIR_REC_LEN(de->name_len);
1123 memcpy (to, de, rec_len);
1124 ((struct ext3_dir_entry_2 *) to)->rec_len =
1125 ext3_rec_len_to_disk(rec_len);
1130 return (struct ext3_dir_entry_2 *) (to - rec_len);
1134 * Compact each dir entry in the range to the minimal rec_len.
1135 * Returns pointer to last entry in range.
1137 static struct ext3_dir_entry_2* dx_pack_dirents(char *base, int size)
1139 struct ext3_dir_entry_2 *next, *to, *prev, *de = (struct ext3_dir_entry_2 *) base;
1140 unsigned rec_len = 0;
1143 while ((char*)de < base + size) {
1144 next = ext3_next_entry(de);
1145 if (de->inode && de->name_len) {
1146 rec_len = EXT3_DIR_REC_LEN(de->name_len);
1148 memmove(to, de, rec_len);
1149 to->rec_len = ext3_rec_len_to_disk(rec_len);
1151 to = (struct ext3_dir_entry_2 *) (((char *) to) + rec_len);
1159 * Split a full leaf block to make room for a new dir entry.
1160 * Allocate a new block, and move entries so that they are approx. equally full.
1161 * Returns pointer to de in block into which the new entry will be inserted.
1163 static struct ext3_dir_entry_2 *do_split(handle_t *handle, struct inode *dir,
1164 struct buffer_head **bh,struct dx_frame *frame,
1165 struct dx_hash_info *hinfo, int *error)
1167 unsigned blocksize = dir->i_sb->s_blocksize;
1168 unsigned count, continued;
1169 struct buffer_head *bh2;
1172 struct dx_map_entry *map;
1173 char *data1 = (*bh)->b_data, *data2;
1174 unsigned split, move, size, i;
1175 struct ext3_dir_entry_2 *de = NULL, *de2;
1178 bh2 = ext3_append (handle, dir, &newblock, &err);
1185 BUFFER_TRACE(*bh, "get_write_access");
1186 err = ext3_journal_get_write_access(handle, *bh);
1190 BUFFER_TRACE(frame->bh, "get_write_access");
1191 err = ext3_journal_get_write_access(handle, frame->bh);
1195 data2 = bh2->b_data;
1197 /* create map in the end of data2 block */
1198 map = (struct dx_map_entry *) (data2 + blocksize);
1199 count = dx_make_map ((struct ext3_dir_entry_2 *) data1,
1200 blocksize, hinfo, map);
1202 dx_sort_map (map, count);
1203 /* Split the existing block in the middle, size-wise */
1206 for (i = count-1; i >= 0; i--) {
1207 /* is more than half of this entry in 2nd half of the block? */
1208 if (size + map[i].size/2 > blocksize/2)
1210 size += map[i].size;
1213 /* map index at which we will split */
1214 split = count - move;
1215 hash2 = map[split].hash;
1216 continued = hash2 == map[split - 1].hash;
1217 dxtrace(printk("Split block %i at %x, %i/%i\n",
1218 dx_get_block(frame->at), hash2, split, count-split));
1220 /* Fancy dance to stay within two buffers */
1221 de2 = dx_move_dirents(data1, data2, map + split, count - split);
1222 de = dx_pack_dirents(data1,blocksize);
1223 de->rec_len = ext3_rec_len_to_disk(data1 + blocksize - (char *) de);
1224 de2->rec_len = ext3_rec_len_to_disk(data2 + blocksize - (char *) de2);
1225 dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data1, blocksize, 1));
1226 dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data2, blocksize, 1));
1228 /* Which block gets the new entry? */
1229 if (hinfo->hash >= hash2)
1234 dx_insert_block (frame, hash2 + continued, newblock);
1235 err = ext3_journal_dirty_metadata (handle, bh2);
1238 err = ext3_journal_dirty_metadata (handle, frame->bh);
1242 dxtrace(dx_show_index ("frame", frame->entries));
1249 ext3_std_error(dir->i_sb, err);
1257 * Add a new entry into a directory (leaf) block. If de is non-NULL,
1258 * it points to a directory entry which is guaranteed to be large
1259 * enough for new directory entry. If de is NULL, then
1260 * add_dirent_to_buf will attempt search the directory block for
1261 * space. It will return -ENOSPC if no space is available, and -EIO
1262 * and -EEXIST if directory entry already exists.
1264 * NOTE! bh is NOT released in the case where ENOSPC is returned. In
1265 * all other cases bh is released.
1267 static int add_dirent_to_buf(handle_t *handle, struct dentry *dentry,
1268 struct inode *inode, struct ext3_dir_entry_2 *de,
1269 struct buffer_head * bh)
1271 struct inode *dir = dentry->d_parent->d_inode;
1272 const char *name = dentry->d_name.name;
1273 int namelen = dentry->d_name.len;
1274 unsigned long offset = 0;
1275 unsigned short reclen;
1276 int nlen, rlen, err;
1279 reclen = EXT3_DIR_REC_LEN(namelen);
1281 de = (struct ext3_dir_entry_2 *)bh->b_data;
1282 top = bh->b_data + dir->i_sb->s_blocksize - reclen;
1283 while ((char *) de <= top) {
1284 if (!ext3_check_dir_entry("ext3_add_entry", dir, de,
1289 if (ext3_match (namelen, name, de)) {
1293 nlen = EXT3_DIR_REC_LEN(de->name_len);
1294 rlen = ext3_rec_len_from_disk(de->rec_len);
1295 if ((de->inode? rlen - nlen: rlen) >= reclen)
1297 de = (struct ext3_dir_entry_2 *)((char *)de + rlen);
1300 if ((char *) de > top)
1303 BUFFER_TRACE(bh, "get_write_access");
1304 err = ext3_journal_get_write_access(handle, bh);
1306 ext3_std_error(dir->i_sb, err);
1311 /* By now the buffer is marked for journaling */
1312 nlen = EXT3_DIR_REC_LEN(de->name_len);
1313 rlen = ext3_rec_len_from_disk(de->rec_len);
1315 struct ext3_dir_entry_2 *de1 = (struct ext3_dir_entry_2 *)((char *)de + nlen);
1316 de1->rec_len = ext3_rec_len_to_disk(rlen - nlen);
1317 de->rec_len = ext3_rec_len_to_disk(nlen);
1320 de->file_type = EXT3_FT_UNKNOWN;
1322 de->inode = cpu_to_le32(inode->i_ino);
1323 ext3_set_de_type(dir->i_sb, de, inode->i_mode);
1326 de->name_len = namelen;
1327 memcpy (de->name, name, namelen);
1329 * XXX shouldn't update any times until successful
1330 * completion of syscall, but too many callers depend
1333 * XXX similarly, too many callers depend on
1334 * ext3_new_inode() setting the times, but error
1335 * recovery deletes the inode, so the worst that can
1336 * happen is that the times are slightly out of date
1337 * and/or different from the directory change time.
1339 dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC;
1340 ext3_update_dx_flag(dir);
1342 ext3_mark_inode_dirty(handle, dir);
1343 BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
1344 err = ext3_journal_dirty_metadata(handle, bh);
1346 ext3_std_error(dir->i_sb, err);
1352 * This converts a one block unindexed directory to a 3 block indexed
1353 * directory, and adds the dentry to the indexed directory.
1355 static int make_indexed_dir(handle_t *handle, struct dentry *dentry,
1356 struct inode *inode, struct buffer_head *bh)
1358 struct inode *dir = dentry->d_parent->d_inode;
1359 const char *name = dentry->d_name.name;
1360 int namelen = dentry->d_name.len;
1361 struct buffer_head *bh2;
1362 struct dx_root *root;
1363 struct dx_frame frames[2], *frame;
1364 struct dx_entry *entries;
1365 struct ext3_dir_entry_2 *de, *de2;
1370 struct dx_hash_info hinfo;
1372 struct fake_dirent *fde;
1374 blocksize = dir->i_sb->s_blocksize;
1375 dxtrace(printk("Creating index\n"));
1376 retval = ext3_journal_get_write_access(handle, bh);
1378 ext3_std_error(dir->i_sb, retval);
1382 root = (struct dx_root *) bh->b_data;
1384 bh2 = ext3_append (handle, dir, &block, &retval);
1389 EXT3_I(dir)->i_flags |= EXT3_INDEX_FL;
1390 data1 = bh2->b_data;
1392 /* The 0th block becomes the root, move the dirents out */
1393 fde = &root->dotdot;
1394 de = (struct ext3_dir_entry_2 *)((char *)fde +
1395 ext3_rec_len_from_disk(fde->rec_len));
1396 len = ((char *) root) + blocksize - (char *) de;
1397 memcpy (data1, de, len);
1398 de = (struct ext3_dir_entry_2 *) data1;
1400 while ((char *)(de2 = ext3_next_entry(de)) < top)
1402 de->rec_len = ext3_rec_len_to_disk(data1 + blocksize - (char *) de);
1403 /* Initialize the root; the dot dirents already exist */
1404 de = (struct ext3_dir_entry_2 *) (&root->dotdot);
1405 de->rec_len = ext3_rec_len_to_disk(blocksize - EXT3_DIR_REC_LEN(2));
1406 memset (&root->info, 0, sizeof(root->info));
1407 root->info.info_length = sizeof(root->info);
1408 root->info.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version;
1409 entries = root->entries;
1410 dx_set_block (entries, 1);
1411 dx_set_count (entries, 1);
1412 dx_set_limit (entries, dx_root_limit(dir, sizeof(root->info)));
1414 /* Initialize as for dx_probe */
1415 hinfo.hash_version = root->info.hash_version;
1416 hinfo.seed = EXT3_SB(dir->i_sb)->s_hash_seed;
1417 ext3fs_dirhash(name, namelen, &hinfo);
1419 frame->entries = entries;
1420 frame->at = entries;
1423 de = do_split(handle,dir, &bh, frame, &hinfo, &retval);
1424 dx_release (frames);
1428 return add_dirent_to_buf(handle, dentry, inode, de, bh);
1434 * adds a file entry to the specified directory, using the same
1435 * semantics as ext3_find_entry(). It returns NULL if it failed.
1437 * NOTE!! The inode part of 'de' is left at 0 - which means you
1438 * may not sleep between calling this and putting something into
1439 * the entry, as someone else might have used it while you slept.
1441 static int ext3_add_entry (handle_t *handle, struct dentry *dentry,
1442 struct inode *inode)
1444 struct inode *dir = dentry->d_parent->d_inode;
1445 unsigned long offset;
1446 struct buffer_head * bh;
1447 struct ext3_dir_entry_2 *de;
1448 struct super_block * sb;
1455 blocksize = sb->s_blocksize;
1456 if (!dentry->d_name.len)
1459 retval = ext3_dx_add_entry(handle, dentry, inode);
1460 if (!retval || (retval != ERR_BAD_DX_DIR))
1462 EXT3_I(dir)->i_flags &= ~EXT3_INDEX_FL;
1464 ext3_mark_inode_dirty(handle, dir);
1466 blocks = dir->i_size >> sb->s_blocksize_bits;
1467 for (block = 0, offset = 0; block < blocks; block++) {
1468 bh = ext3_bread(handle, dir, block, 0, &retval);
1471 retval = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
1472 if (retval != -ENOSPC)
1475 if (blocks == 1 && !dx_fallback &&
1476 EXT3_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_DIR_INDEX))
1477 return make_indexed_dir(handle, dentry, inode, bh);
1480 bh = ext3_append(handle, dir, &block, &retval);
1483 de = (struct ext3_dir_entry_2 *) bh->b_data;
1485 de->rec_len = ext3_rec_len_to_disk(blocksize);
1486 return add_dirent_to_buf(handle, dentry, inode, de, bh);
1490 * Returns 0 for success, or a negative error value
1492 static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry,
1493 struct inode *inode)
1495 struct dx_frame frames[2], *frame;
1496 struct dx_entry *entries, *at;
1497 struct dx_hash_info hinfo;
1498 struct buffer_head * bh;
1499 struct inode *dir = dentry->d_parent->d_inode;
1500 struct super_block * sb = dir->i_sb;
1501 struct ext3_dir_entry_2 *de;
1504 frame = dx_probe(dentry, NULL, &hinfo, frames, &err);
1507 entries = frame->entries;
1510 if (!(bh = ext3_bread(handle,dir, dx_get_block(frame->at), 0, &err)))
1513 BUFFER_TRACE(bh, "get_write_access");
1514 err = ext3_journal_get_write_access(handle, bh);
1518 err = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
1519 if (err != -ENOSPC) {
1524 /* Block full, should compress but for now just split */
1525 dxtrace(printk("using %u of %u node entries\n",
1526 dx_get_count(entries), dx_get_limit(entries)));
1527 /* Need to split index? */
1528 if (dx_get_count(entries) == dx_get_limit(entries)) {
1530 unsigned icount = dx_get_count(entries);
1531 int levels = frame - frames;
1532 struct dx_entry *entries2;
1533 struct dx_node *node2;
1534 struct buffer_head *bh2;
1536 if (levels && (dx_get_count(frames->entries) ==
1537 dx_get_limit(frames->entries))) {
1538 ext3_warning(sb, __func__,
1539 "Directory index full!");
1543 bh2 = ext3_append (handle, dir, &newblock, &err);
1546 node2 = (struct dx_node *)(bh2->b_data);
1547 entries2 = node2->entries;
1548 node2->fake.rec_len = ext3_rec_len_to_disk(sb->s_blocksize);
1549 node2->fake.inode = 0;
1550 BUFFER_TRACE(frame->bh, "get_write_access");
1551 err = ext3_journal_get_write_access(handle, frame->bh);
1555 unsigned icount1 = icount/2, icount2 = icount - icount1;
1556 unsigned hash2 = dx_get_hash(entries + icount1);
1557 dxtrace(printk("Split index %i/%i\n", icount1, icount2));
1559 BUFFER_TRACE(frame->bh, "get_write_access"); /* index root */
1560 err = ext3_journal_get_write_access(handle,
1565 memcpy ((char *) entries2, (char *) (entries + icount1),
1566 icount2 * sizeof(struct dx_entry));
1567 dx_set_count (entries, icount1);
1568 dx_set_count (entries2, icount2);
1569 dx_set_limit (entries2, dx_node_limit(dir));
1571 /* Which index block gets the new entry? */
1572 if (at - entries >= icount1) {
1573 frame->at = at = at - entries - icount1 + entries2;
1574 frame->entries = entries = entries2;
1575 swap(frame->bh, bh2);
1577 dx_insert_block (frames + 0, hash2, newblock);
1578 dxtrace(dx_show_index ("node", frames[1].entries));
1579 dxtrace(dx_show_index ("node",
1580 ((struct dx_node *) bh2->b_data)->entries));
1581 err = ext3_journal_dirty_metadata(handle, bh2);
1586 dxtrace(printk("Creating second level index...\n"));
1587 memcpy((char *) entries2, (char *) entries,
1588 icount * sizeof(struct dx_entry));
1589 dx_set_limit(entries2, dx_node_limit(dir));
1592 dx_set_count(entries, 1);
1593 dx_set_block(entries + 0, newblock);
1594 ((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels = 1;
1596 /* Add new access path frame */
1598 frame->at = at = at - entries + entries2;
1599 frame->entries = entries = entries2;
1601 err = ext3_journal_get_write_access(handle,
1606 ext3_journal_dirty_metadata(handle, frames[0].bh);
1608 de = do_split(handle, dir, &bh, frame, &hinfo, &err);
1611 err = add_dirent_to_buf(handle, dentry, inode, de, bh);
1616 ext3_std_error(dir->i_sb, err);
1625 * ext3_delete_entry deletes a directory entry by merging it with the
1628 static int ext3_delete_entry (handle_t *handle,
1630 struct ext3_dir_entry_2 * de_del,
1631 struct buffer_head * bh)
1633 struct ext3_dir_entry_2 * de, * pde;
1638 de = (struct ext3_dir_entry_2 *) bh->b_data;
1639 while (i < bh->b_size) {
1640 if (!ext3_check_dir_entry("ext3_delete_entry", dir, de, bh, i))
1643 BUFFER_TRACE(bh, "get_write_access");
1644 ext3_journal_get_write_access(handle, bh);
1646 pde->rec_len = ext3_rec_len_to_disk(
1647 ext3_rec_len_from_disk(pde->rec_len) +
1648 ext3_rec_len_from_disk(de->rec_len));
1652 BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
1653 ext3_journal_dirty_metadata(handle, bh);
1656 i += ext3_rec_len_from_disk(de->rec_len);
1658 de = ext3_next_entry(de);
1663 static int ext3_add_nondir(handle_t *handle,
1664 struct dentry *dentry, struct inode *inode)
1666 int err = ext3_add_entry(handle, dentry, inode);
1668 ext3_mark_inode_dirty(handle, inode);
1669 d_instantiate(dentry, inode);
1678 * By the time this is called, we already have created
1679 * the directory cache entry for the new file, but it
1680 * is so far negative - it has no inode.
1682 * If the create succeeds, we fill in the inode information
1683 * with d_instantiate().
1685 static int ext3_create (struct inode * dir, struct dentry * dentry, int mode,
1686 struct nameidata *nd)
1689 struct inode * inode;
1690 int err, retries = 0;
1693 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
1694 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1695 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
1697 return PTR_ERR(handle);
1699 if (IS_DIRSYNC(dir))
1702 inode = ext3_new_inode (handle, dir, mode);
1703 err = PTR_ERR(inode);
1704 if (!IS_ERR(inode)) {
1705 inode->i_op = &ext3_file_inode_operations;
1706 inode->i_fop = &ext3_file_operations;
1707 ext3_set_aops(inode);
1708 err = ext3_add_nondir(handle, dentry, inode);
1710 ext3_journal_stop(handle);
1711 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1716 static int ext3_mknod (struct inode * dir, struct dentry *dentry,
1717 int mode, dev_t rdev)
1720 struct inode *inode;
1721 int err, retries = 0;
1723 if (!new_valid_dev(rdev))
1727 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
1728 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1729 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
1731 return PTR_ERR(handle);
1733 if (IS_DIRSYNC(dir))
1736 inode = ext3_new_inode (handle, dir, mode);
1737 err = PTR_ERR(inode);
1738 if (!IS_ERR(inode)) {
1739 init_special_inode(inode, inode->i_mode, rdev);
1740 #ifdef CONFIG_EXT3_FS_XATTR
1741 inode->i_op = &ext3_special_inode_operations;
1743 err = ext3_add_nondir(handle, dentry, inode);
1745 ext3_journal_stop(handle);
1746 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1751 static int ext3_mkdir(struct inode * dir, struct dentry * dentry, int mode)
1754 struct inode * inode;
1755 struct buffer_head * dir_block;
1756 struct ext3_dir_entry_2 * de;
1757 int err, retries = 0;
1759 if (dir->i_nlink >= EXT3_LINK_MAX)
1763 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
1764 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1765 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
1767 return PTR_ERR(handle);
1769 if (IS_DIRSYNC(dir))
1772 inode = ext3_new_inode (handle, dir, S_IFDIR | mode);
1773 err = PTR_ERR(inode);
1777 inode->i_op = &ext3_dir_inode_operations;
1778 inode->i_fop = &ext3_dir_operations;
1779 inode->i_size = EXT3_I(inode)->i_disksize = inode->i_sb->s_blocksize;
1780 dir_block = ext3_bread (handle, inode, 0, 1, &err);
1782 drop_nlink(inode); /* is this nlink == 0? */
1783 ext3_mark_inode_dirty(handle, inode);
1787 BUFFER_TRACE(dir_block, "get_write_access");
1788 ext3_journal_get_write_access(handle, dir_block);
1789 de = (struct ext3_dir_entry_2 *) dir_block->b_data;
1790 de->inode = cpu_to_le32(inode->i_ino);
1792 de->rec_len = ext3_rec_len_to_disk(EXT3_DIR_REC_LEN(de->name_len));
1793 strcpy (de->name, ".");
1794 ext3_set_de_type(dir->i_sb, de, S_IFDIR);
1795 de = ext3_next_entry(de);
1796 de->inode = cpu_to_le32(dir->i_ino);
1797 de->rec_len = ext3_rec_len_to_disk(inode->i_sb->s_blocksize -
1798 EXT3_DIR_REC_LEN(1));
1800 strcpy (de->name, "..");
1801 ext3_set_de_type(dir->i_sb, de, S_IFDIR);
1803 BUFFER_TRACE(dir_block, "call ext3_journal_dirty_metadata");
1804 ext3_journal_dirty_metadata(handle, dir_block);
1806 ext3_mark_inode_dirty(handle, inode);
1807 err = ext3_add_entry (handle, dentry, 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);
1819 ext3_journal_stop(handle);
1820 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1826 * routine to check that the specified directory is empty (for rmdir)
1828 static int empty_dir (struct inode * inode)
1830 unsigned long offset;
1831 struct buffer_head * bh;
1832 struct ext3_dir_entry_2 * de, * de1;
1833 struct super_block * sb;
1837 if (inode->i_size < EXT3_DIR_REC_LEN(1) + EXT3_DIR_REC_LEN(2) ||
1838 !(bh = ext3_bread (NULL, inode, 0, 0, &err))) {
1840 ext3_error(inode->i_sb, __func__,
1841 "error %d reading directory #%lu offset 0",
1844 ext3_warning(inode->i_sb, __func__,
1845 "bad directory (dir #%lu) - no data block",
1849 de = (struct ext3_dir_entry_2 *) bh->b_data;
1850 de1 = ext3_next_entry(de);
1851 if (le32_to_cpu(de->inode) != inode->i_ino ||
1852 !le32_to_cpu(de1->inode) ||
1853 strcmp (".", de->name) ||
1854 strcmp ("..", de1->name)) {
1855 ext3_warning (inode->i_sb, "empty_dir",
1856 "bad directory (dir #%lu) - no `.' or `..'",
1861 offset = ext3_rec_len_from_disk(de->rec_len) +
1862 ext3_rec_len_from_disk(de1->rec_len);
1863 de = ext3_next_entry(de1);
1864 while (offset < inode->i_size ) {
1866 (void *) de >= (void *) (bh->b_data+sb->s_blocksize)) {
1869 bh = ext3_bread (NULL, inode,
1870 offset >> EXT3_BLOCK_SIZE_BITS(sb), 0, &err);
1873 ext3_error(sb, __func__,
1874 "error %d reading directory"
1876 err, inode->i_ino, offset);
1877 offset += sb->s_blocksize;
1880 de = (struct ext3_dir_entry_2 *) bh->b_data;
1882 if (!ext3_check_dir_entry("empty_dir", inode, de, bh, offset)) {
1883 de = (struct ext3_dir_entry_2 *)(bh->b_data +
1885 offset = (offset | (sb->s_blocksize - 1)) + 1;
1888 if (le32_to_cpu(de->inode)) {
1892 offset += ext3_rec_len_from_disk(de->rec_len);
1893 de = ext3_next_entry(de);
1899 /* ext3_orphan_add() links an unlinked or truncated inode into a list of
1900 * such inodes, starting at the superblock, in case we crash before the
1901 * file is closed/deleted, or in case the inode truncate spans multiple
1902 * transactions and the last transaction is not recovered after a crash.
1904 * At filesystem recovery time, we walk this list deleting unlinked
1905 * inodes and truncating linked inodes in ext3_orphan_cleanup().
1907 int ext3_orphan_add(handle_t *handle, struct inode *inode)
1909 struct super_block *sb = inode->i_sb;
1910 struct ext3_iloc iloc;
1914 if (!list_empty(&EXT3_I(inode)->i_orphan))
1917 /* Orphan handling is only valid for files with data blocks
1918 * being truncated, or files being unlinked. */
1920 /* @@@ FIXME: Observation from aviro:
1921 * I think I can trigger J_ASSERT in ext3_orphan_add(). We block
1922 * here (on lock_super()), so race with ext3_link() which might bump
1923 * ->i_nlink. For, say it, character device. Not a regular file,
1924 * not a directory, not a symlink and ->i_nlink > 0.
1926 J_ASSERT ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
1927 S_ISLNK(inode->i_mode)) || inode->i_nlink == 0);
1929 BUFFER_TRACE(EXT3_SB(sb)->s_sbh, "get_write_access");
1930 err = ext3_journal_get_write_access(handle, EXT3_SB(sb)->s_sbh);
1934 err = ext3_reserve_inode_write(handle, inode, &iloc);
1938 /* Insert this inode at the head of the on-disk orphan list... */
1939 NEXT_ORPHAN(inode) = le32_to_cpu(EXT3_SB(sb)->s_es->s_last_orphan);
1940 EXT3_SB(sb)->s_es->s_last_orphan = cpu_to_le32(inode->i_ino);
1941 err = ext3_journal_dirty_metadata(handle, EXT3_SB(sb)->s_sbh);
1942 rc = ext3_mark_iloc_dirty(handle, inode, &iloc);
1946 /* Only add to the head of the in-memory list if all the
1947 * previous operations succeeded. If the orphan_add is going to
1948 * fail (possibly taking the journal offline), we can't risk
1949 * leaving the inode on the orphan list: stray orphan-list
1950 * entries can cause panics at unmount time.
1952 * This is safe: on error we're going to ignore the orphan list
1953 * anyway on the next recovery. */
1955 list_add(&EXT3_I(inode)->i_orphan, &EXT3_SB(sb)->s_orphan);
1957 jbd_debug(4, "superblock will point to %lu\n", inode->i_ino);
1958 jbd_debug(4, "orphan inode %lu will point to %d\n",
1959 inode->i_ino, NEXT_ORPHAN(inode));
1962 ext3_std_error(inode->i_sb, err);
1967 * ext3_orphan_del() removes an unlinked or truncated inode from the list
1968 * of such inodes stored on disk, because it is finally being cleaned up.
1970 int ext3_orphan_del(handle_t *handle, struct inode *inode)
1972 struct list_head *prev;
1973 struct ext3_inode_info *ei = EXT3_I(inode);
1974 struct ext3_sb_info *sbi;
1975 unsigned long ino_next;
1976 struct ext3_iloc iloc;
1979 lock_super(inode->i_sb);
1980 if (list_empty(&ei->i_orphan)) {
1981 unlock_super(inode->i_sb);
1985 ino_next = NEXT_ORPHAN(inode);
1986 prev = ei->i_orphan.prev;
1987 sbi = EXT3_SB(inode->i_sb);
1989 jbd_debug(4, "remove inode %lu from orphan list\n", inode->i_ino);
1991 list_del_init(&ei->i_orphan);
1993 /* If we're on an error path, we may not have a valid
1994 * transaction handle with which to update the orphan list on
1995 * disk, but we still need to remove the inode from the linked
1996 * list in memory. */
2000 err = ext3_reserve_inode_write(handle, inode, &iloc);
2004 if (prev == &sbi->s_orphan) {
2005 jbd_debug(4, "superblock will point to %lu\n", ino_next);
2006 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
2007 err = ext3_journal_get_write_access(handle, sbi->s_sbh);
2010 sbi->s_es->s_last_orphan = cpu_to_le32(ino_next);
2011 err = ext3_journal_dirty_metadata(handle, sbi->s_sbh);
2013 struct ext3_iloc iloc2;
2014 struct inode *i_prev =
2015 &list_entry(prev, struct ext3_inode_info, i_orphan)->vfs_inode;
2017 jbd_debug(4, "orphan inode %lu will point to %lu\n",
2018 i_prev->i_ino, ino_next);
2019 err = ext3_reserve_inode_write(handle, i_prev, &iloc2);
2022 NEXT_ORPHAN(i_prev) = ino_next;
2023 err = ext3_mark_iloc_dirty(handle, i_prev, &iloc2);
2027 NEXT_ORPHAN(inode) = 0;
2028 err = ext3_mark_iloc_dirty(handle, inode, &iloc);
2031 ext3_std_error(inode->i_sb, err);
2033 unlock_super(inode->i_sb);
2041 static int ext3_rmdir (struct inode * dir, struct dentry *dentry)
2044 struct inode * inode;
2045 struct buffer_head * bh;
2046 struct ext3_dir_entry_2 * de;
2049 /* Initialize quotas before so that eventual writes go in
2050 * separate transaction */
2051 DQUOT_INIT(dentry->d_inode);
2052 handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS(dir->i_sb));
2054 return PTR_ERR(handle);
2057 bh = ext3_find_entry (dentry, &de);
2061 if (IS_DIRSYNC(dir))
2064 inode = dentry->d_inode;
2067 if (le32_to_cpu(de->inode) != inode->i_ino)
2070 retval = -ENOTEMPTY;
2071 if (!empty_dir (inode))
2074 retval = ext3_delete_entry(handle, dir, de, bh);
2077 if (inode->i_nlink != 2)
2078 ext3_warning (inode->i_sb, "ext3_rmdir",
2079 "empty directory has nlink!=2 (%d)",
2083 /* There's no need to set i_disksize: the fact that i_nlink is
2084 * zero will ensure that the right thing happens during any
2087 ext3_orphan_add(handle, inode);
2088 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
2089 ext3_mark_inode_dirty(handle, inode);
2091 ext3_update_dx_flag(dir);
2092 ext3_mark_inode_dirty(handle, dir);
2095 ext3_journal_stop(handle);
2100 static int ext3_unlink(struct inode * dir, struct dentry *dentry)
2103 struct inode * inode;
2104 struct buffer_head * bh;
2105 struct ext3_dir_entry_2 * de;
2108 /* Initialize quotas before so that eventual writes go
2109 * in separate transaction */
2110 DQUOT_INIT(dentry->d_inode);
2111 handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS(dir->i_sb));
2113 return PTR_ERR(handle);
2115 if (IS_DIRSYNC(dir))
2119 bh = ext3_find_entry (dentry, &de);
2123 inode = dentry->d_inode;
2126 if (le32_to_cpu(de->inode) != inode->i_ino)
2129 if (!inode->i_nlink) {
2130 ext3_warning (inode->i_sb, "ext3_unlink",
2131 "Deleting nonexistent file (%lu), %d",
2132 inode->i_ino, inode->i_nlink);
2135 retval = ext3_delete_entry(handle, dir, de, bh);
2138 dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
2139 ext3_update_dx_flag(dir);
2140 ext3_mark_inode_dirty(handle, dir);
2142 if (!inode->i_nlink)
2143 ext3_orphan_add(handle, inode);
2144 inode->i_ctime = dir->i_ctime;
2145 ext3_mark_inode_dirty(handle, inode);
2149 ext3_journal_stop(handle);
2154 static int ext3_symlink (struct inode * dir,
2155 struct dentry *dentry, const char * symname)
2158 struct inode * inode;
2159 int l, err, retries = 0;
2161 l = strlen(symname)+1;
2162 if (l > dir->i_sb->s_blocksize)
2163 return -ENAMETOOLONG;
2166 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
2167 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 5 +
2168 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
2170 return PTR_ERR(handle);
2172 if (IS_DIRSYNC(dir))
2175 inode = ext3_new_inode (handle, dir, S_IFLNK|S_IRWXUGO);
2176 err = PTR_ERR(inode);
2180 if (l > sizeof (EXT3_I(inode)->i_data)) {
2181 inode->i_op = &ext3_symlink_inode_operations;
2182 ext3_set_aops(inode);
2184 * page_symlink() calls into ext3_prepare/commit_write.
2185 * We have a transaction open. All is sweetness. It also sets
2186 * i_size in generic_commit_write().
2188 err = __page_symlink(inode, symname, l,
2189 mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS);
2192 ext3_mark_inode_dirty(handle, inode);
2197 inode->i_op = &ext3_fast_symlink_inode_operations;
2198 memcpy((char*)&EXT3_I(inode)->i_data,symname,l);
2199 inode->i_size = l-1;
2201 EXT3_I(inode)->i_disksize = inode->i_size;
2202 err = ext3_add_nondir(handle, dentry, inode);
2204 ext3_journal_stop(handle);
2205 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
2210 static int ext3_link (struct dentry * old_dentry,
2211 struct inode * dir, struct dentry *dentry)
2214 struct inode *inode = old_dentry->d_inode;
2215 int err, retries = 0;
2217 if (inode->i_nlink >= EXT3_LINK_MAX)
2220 * Return -ENOENT if we've raced with unlink and i_nlink is 0. Doing
2221 * otherwise has the potential to corrupt the orphan inode list.
2223 if (inode->i_nlink == 0)
2227 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
2228 EXT3_INDEX_EXTRA_TRANS_BLOCKS);
2230 return PTR_ERR(handle);
2232 if (IS_DIRSYNC(dir))
2235 inode->i_ctime = CURRENT_TIME_SEC;
2237 atomic_inc(&inode->i_count);
2239 err = ext3_add_nondir(handle, dentry, inode);
2240 ext3_journal_stop(handle);
2241 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
2246 #define PARENT_INO(buffer) \
2247 (ext3_next_entry((struct ext3_dir_entry_2 *)(buffer))->inode)
2250 * Anybody can rename anything with this: the permission checks are left to the
2251 * higher-level routines.
2253 static int ext3_rename (struct inode * old_dir, struct dentry *old_dentry,
2254 struct inode * new_dir,struct dentry *new_dentry)
2257 struct inode * old_inode, * new_inode;
2258 struct buffer_head * old_bh, * new_bh, * dir_bh;
2259 struct ext3_dir_entry_2 * old_de, * new_de;
2262 old_bh = new_bh = dir_bh = NULL;
2264 /* Initialize quotas before so that eventual writes go
2265 * in separate transaction */
2266 if (new_dentry->d_inode)
2267 DQUOT_INIT(new_dentry->d_inode);
2268 handle = ext3_journal_start(old_dir, 2 *
2269 EXT3_DATA_TRANS_BLOCKS(old_dir->i_sb) +
2270 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 2);
2272 return PTR_ERR(handle);
2274 if (IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir))
2277 old_bh = ext3_find_entry (old_dentry, &old_de);
2279 * Check for inode number is _not_ due to possible IO errors.
2280 * We might rmdir the source, keep it as pwd of some process
2281 * and merrily kill the link to whatever was created under the
2282 * same name. Goodbye sticky bit ;-<
2284 old_inode = old_dentry->d_inode;
2286 if (!old_bh || le32_to_cpu(old_de->inode) != old_inode->i_ino)
2289 new_inode = new_dentry->d_inode;
2290 new_bh = ext3_find_entry (new_dentry, &new_de);
2297 if (S_ISDIR(old_inode->i_mode)) {
2299 retval = -ENOTEMPTY;
2300 if (!empty_dir (new_inode))
2304 dir_bh = ext3_bread (handle, old_inode, 0, 0, &retval);
2307 if (le32_to_cpu(PARENT_INO(dir_bh->b_data)) != old_dir->i_ino)
2310 if (!new_inode && new_dir!=old_dir &&
2311 new_dir->i_nlink >= EXT3_LINK_MAX)
2315 retval = ext3_add_entry (handle, new_dentry, old_inode);
2319 BUFFER_TRACE(new_bh, "get write access");
2320 ext3_journal_get_write_access(handle, new_bh);
2321 new_de->inode = cpu_to_le32(old_inode->i_ino);
2322 if (EXT3_HAS_INCOMPAT_FEATURE(new_dir->i_sb,
2323 EXT3_FEATURE_INCOMPAT_FILETYPE))
2324 new_de->file_type = old_de->file_type;
2325 new_dir->i_version++;
2326 new_dir->i_ctime = new_dir->i_mtime = CURRENT_TIME_SEC;
2327 ext3_mark_inode_dirty(handle, new_dir);
2328 BUFFER_TRACE(new_bh, "call ext3_journal_dirty_metadata");
2329 ext3_journal_dirty_metadata(handle, new_bh);
2335 * Like most other Unix systems, set the ctime for inodes on a
2338 old_inode->i_ctime = CURRENT_TIME_SEC;
2339 ext3_mark_inode_dirty(handle, old_inode);
2344 if (le32_to_cpu(old_de->inode) != old_inode->i_ino ||
2345 old_de->name_len != old_dentry->d_name.len ||
2346 strncmp(old_de->name, old_dentry->d_name.name, old_de->name_len) ||
2347 (retval = ext3_delete_entry(handle, old_dir,
2348 old_de, old_bh)) == -ENOENT) {
2349 /* old_de could have moved from under us during htree split, so
2350 * make sure that we are deleting the right entry. We might
2351 * also be pointing to a stale entry in the unused part of
2352 * old_bh so just checking inum and the name isn't enough. */
2353 struct buffer_head *old_bh2;
2354 struct ext3_dir_entry_2 *old_de2;
2356 old_bh2 = ext3_find_entry(old_dentry, &old_de2);
2358 retval = ext3_delete_entry(handle, old_dir,
2364 ext3_warning(old_dir->i_sb, "ext3_rename",
2365 "Deleting old file (%lu), %d, error=%d",
2366 old_dir->i_ino, old_dir->i_nlink, retval);
2370 drop_nlink(new_inode);
2371 new_inode->i_ctime = CURRENT_TIME_SEC;
2373 old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME_SEC;
2374 ext3_update_dx_flag(old_dir);
2376 BUFFER_TRACE(dir_bh, "get_write_access");
2377 ext3_journal_get_write_access(handle, dir_bh);
2378 PARENT_INO(dir_bh->b_data) = cpu_to_le32(new_dir->i_ino);
2379 BUFFER_TRACE(dir_bh, "call ext3_journal_dirty_metadata");
2380 ext3_journal_dirty_metadata(handle, dir_bh);
2381 drop_nlink(old_dir);
2383 drop_nlink(new_inode);
2386 ext3_update_dx_flag(new_dir);
2387 ext3_mark_inode_dirty(handle, new_dir);
2390 ext3_mark_inode_dirty(handle, old_dir);
2392 ext3_mark_inode_dirty(handle, new_inode);
2393 if (!new_inode->i_nlink)
2394 ext3_orphan_add(handle, new_inode);
2402 ext3_journal_stop(handle);
2407 * directories can handle most operations...
2409 const struct inode_operations ext3_dir_inode_operations = {
2410 .create = ext3_create,
2411 .lookup = ext3_lookup,
2413 .unlink = ext3_unlink,
2414 .symlink = ext3_symlink,
2415 .mkdir = ext3_mkdir,
2416 .rmdir = ext3_rmdir,
2417 .mknod = ext3_mknod,
2418 .rename = ext3_rename,
2419 .setattr = ext3_setattr,
2420 #ifdef CONFIG_EXT3_FS_XATTR
2421 .setxattr = generic_setxattr,
2422 .getxattr = generic_getxattr,
2423 .listxattr = ext3_listxattr,
2424 .removexattr = generic_removexattr,
2426 .permission = ext3_permission,
2429 const struct inode_operations ext3_special_inode_operations = {
2430 .setattr = ext3_setattr,
2431 #ifdef CONFIG_EXT3_FS_XATTR
2432 .setxattr = generic_setxattr,
2433 .getxattr = generic_getxattr,
2434 .listxattr = ext3_listxattr,
2435 .removexattr = generic_removexattr,
2437 .permission = ext3_permission,