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/smp_lock.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 if ((bh = ext3_bread(handle, inode, *block, 1, err))) {
61 inode->i_size += inode->i_sb->s_blocksize;
62 EXT3_I(inode)->i_disksize = inode->i_size;
63 ext3_journal_get_write_access(handle,bh);
69 #define assert(test) J_ASSERT(test)
73 #define swap(x, y) do { typeof(x) z = x; x = y; y = z; } while (0)
77 #define dxtrace(command) command
79 #define dxtrace(command)
103 * dx_root_info is laid out so that if it should somehow get overlaid by a
104 * dirent the two low bits of the hash version will be zero. Therefore, the
105 * hash version mod 4 should never be 0. Sincerely, the paranoia department.
110 struct fake_dirent dot;
112 struct fake_dirent dotdot;
116 __le32 reserved_zero;
118 u8 info_length; /* 8 */
123 struct dx_entry entries[0];
128 struct fake_dirent fake;
129 struct dx_entry entries[0];
135 struct buffer_head *bh;
136 struct dx_entry *entries;
146 #ifdef CONFIG_EXT3_INDEX
147 static inline unsigned dx_get_block (struct dx_entry *entry);
148 static void dx_set_block (struct dx_entry *entry, unsigned value);
149 static inline unsigned dx_get_hash (struct dx_entry *entry);
150 static void dx_set_hash (struct dx_entry *entry, unsigned value);
151 static unsigned dx_get_count (struct dx_entry *entries);
152 static unsigned dx_get_limit (struct dx_entry *entries);
153 static void dx_set_count (struct dx_entry *entries, unsigned value);
154 static void dx_set_limit (struct dx_entry *entries, unsigned value);
155 static unsigned dx_root_limit (struct inode *dir, unsigned infosize);
156 static unsigned dx_node_limit (struct inode *dir);
157 static struct dx_frame *dx_probe(struct dentry *dentry,
159 struct dx_hash_info *hinfo,
160 struct dx_frame *frame,
162 static void dx_release (struct dx_frame *frames);
163 static int dx_make_map (struct ext3_dir_entry_2 *de, int size,
164 struct dx_hash_info *hinfo, struct dx_map_entry map[]);
165 static void dx_sort_map(struct dx_map_entry *map, unsigned count);
166 static struct ext3_dir_entry_2 *dx_move_dirents (char *from, char *to,
167 struct dx_map_entry *offsets, int count);
168 static struct ext3_dir_entry_2* dx_pack_dirents (char *base, int size);
169 static void dx_insert_block (struct dx_frame *frame, u32 hash, u32 block);
170 static int ext3_htree_next_block(struct inode *dir, __u32 hash,
171 struct dx_frame *frame,
172 struct dx_frame *frames,
174 static struct buffer_head * ext3_dx_find_entry(struct dentry *dentry,
175 struct ext3_dir_entry_2 **res_dir, int *err);
176 static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry,
177 struct inode *inode);
180 * Future: use high four bits of block for coalesce-on-delete flags
181 * Mask them off for now.
184 static inline unsigned dx_get_block (struct dx_entry *entry)
186 return le32_to_cpu(entry->block) & 0x00ffffff;
189 static inline void dx_set_block (struct dx_entry *entry, unsigned value)
191 entry->block = cpu_to_le32(value);
194 static inline unsigned dx_get_hash (struct dx_entry *entry)
196 return le32_to_cpu(entry->hash);
199 static inline void dx_set_hash (struct dx_entry *entry, unsigned value)
201 entry->hash = cpu_to_le32(value);
204 static inline unsigned dx_get_count (struct dx_entry *entries)
206 return le16_to_cpu(((struct dx_countlimit *) entries)->count);
209 static inline unsigned dx_get_limit (struct dx_entry *entries)
211 return le16_to_cpu(((struct dx_countlimit *) entries)->limit);
214 static inline void dx_set_count (struct dx_entry *entries, unsigned value)
216 ((struct dx_countlimit *) entries)->count = cpu_to_le16(value);
219 static inline void dx_set_limit (struct dx_entry *entries, unsigned value)
221 ((struct dx_countlimit *) entries)->limit = cpu_to_le16(value);
224 static inline unsigned dx_root_limit (struct inode *dir, unsigned infosize)
226 unsigned entry_space = dir->i_sb->s_blocksize - EXT3_DIR_REC_LEN(1) -
227 EXT3_DIR_REC_LEN(2) - infosize;
228 return 0? 20: entry_space / sizeof(struct dx_entry);
231 static inline unsigned dx_node_limit (struct inode *dir)
233 unsigned entry_space = dir->i_sb->s_blocksize - EXT3_DIR_REC_LEN(0);
234 return 0? 22: entry_space / sizeof(struct dx_entry);
241 static void dx_show_index (char * label, struct dx_entry *entries)
243 int i, n = dx_get_count (entries);
244 printk("%s index ", label);
245 for (i = 0; i < n; i++)
247 printk("%x->%u ", i? dx_get_hash(entries + i): 0, dx_get_block(entries + i));
259 static struct stats dx_show_leaf(struct dx_hash_info *hinfo, struct ext3_dir_entry_2 *de,
260 int size, int show_names)
262 unsigned names = 0, space = 0;
263 char *base = (char *) de;
264 struct dx_hash_info h = *hinfo;
267 while ((char *) de < base + size)
273 int len = de->name_len;
274 char *name = de->name;
275 while (len--) printk("%c", *name++);
276 ext3fs_dirhash(de->name, de->name_len, &h);
277 printk(":%x.%u ", h.hash,
278 ((char *) de - base));
280 space += EXT3_DIR_REC_LEN(de->name_len);
283 de = (struct ext3_dir_entry_2 *) ((char *) de + le16_to_cpu(de->rec_len));
285 printk("(%i)\n", names);
286 return (struct stats) { names, space, 1 };
289 struct stats dx_show_entries(struct dx_hash_info *hinfo, struct inode *dir,
290 struct dx_entry *entries, int levels)
292 unsigned blocksize = dir->i_sb->s_blocksize;
293 unsigned count = dx_get_count (entries), names = 0, space = 0, i;
295 struct buffer_head *bh;
297 printk("%i indexed blocks...\n", count);
298 for (i = 0; i < count; i++, entries++)
300 u32 block = dx_get_block(entries), hash = i? dx_get_hash(entries): 0;
301 u32 range = i < count - 1? (dx_get_hash(entries + 1) - hash): ~hash;
303 printk("%s%3u:%03u hash %8x/%8x ",levels?"":" ", i, block, hash, range);
304 if (!(bh = ext3_bread (NULL,dir, block, 0,&err))) continue;
306 dx_show_entries(hinfo, dir, ((struct dx_node *) bh->b_data)->entries, levels - 1):
307 dx_show_leaf(hinfo, (struct ext3_dir_entry_2 *) bh->b_data, blocksize, 0);
308 names += stats.names;
309 space += stats.space;
310 bcount += stats.bcount;
314 printk("%snames %u, fullness %u (%u%%)\n", levels?"":" ",
315 names, space/bcount,(space/bcount)*100/blocksize);
316 return (struct stats) { names, space, bcount};
318 #endif /* DX_DEBUG */
321 * Probe for a directory leaf block to search.
323 * dx_probe can return ERR_BAD_DX_DIR, which means there was a format
324 * error in the directory index, and the caller should fall back to
325 * searching the directory normally. The callers of dx_probe **MUST**
326 * check for this error code, and make sure it never gets reflected
329 static struct dx_frame *
330 dx_probe(struct dentry *dentry, struct inode *dir,
331 struct dx_hash_info *hinfo, struct dx_frame *frame_in, int *err)
333 unsigned count, indirect;
334 struct dx_entry *at, *entries, *p, *q, *m;
335 struct dx_root *root;
336 struct buffer_head *bh;
337 struct dx_frame *frame = frame_in;
342 dir = dentry->d_parent->d_inode;
343 if (!(bh = ext3_bread (NULL,dir, 0, 0, err)))
345 root = (struct dx_root *) bh->b_data;
346 if (root->info.hash_version != DX_HASH_TEA &&
347 root->info.hash_version != DX_HASH_HALF_MD4 &&
348 root->info.hash_version != DX_HASH_LEGACY) {
349 ext3_warning(dir->i_sb, __FUNCTION__,
350 "Unrecognised inode hash code %d",
351 root->info.hash_version);
353 *err = ERR_BAD_DX_DIR;
356 hinfo->hash_version = root->info.hash_version;
357 hinfo->seed = EXT3_SB(dir->i_sb)->s_hash_seed;
359 ext3fs_dirhash(dentry->d_name.name, dentry->d_name.len, hinfo);
362 if (root->info.unused_flags & 1) {
363 ext3_warning(dir->i_sb, __FUNCTION__,
364 "Unimplemented inode hash flags: %#06x",
365 root->info.unused_flags);
367 *err = ERR_BAD_DX_DIR;
371 if ((indirect = root->info.indirect_levels) > 1) {
372 ext3_warning(dir->i_sb, __FUNCTION__,
373 "Unimplemented inode hash depth: %#06x",
374 root->info.indirect_levels);
376 *err = ERR_BAD_DX_DIR;
380 entries = (struct dx_entry *) (((char *)&root->info) +
381 root->info.info_length);
382 assert(dx_get_limit(entries) == dx_root_limit(dir,
383 root->info.info_length));
384 dxtrace (printk("Look up %x", hash));
387 count = dx_get_count(entries);
388 assert (count && count <= dx_get_limit(entries));
390 q = entries + count - 1;
394 dxtrace(printk("."));
395 if (dx_get_hash(m) > hash)
401 if (0) // linear search cross check
403 unsigned n = count - 1;
407 dxtrace(printk(","));
408 if (dx_get_hash(++at) > hash)
414 assert (at == p - 1);
418 dxtrace(printk(" %x->%u\n", at == entries? 0: dx_get_hash(at), dx_get_block(at)));
420 frame->entries = entries;
422 if (!indirect--) return frame;
423 if (!(bh = ext3_bread (NULL,dir, dx_get_block(at), 0, err)))
425 at = entries = ((struct dx_node *) bh->b_data)->entries;
426 assert (dx_get_limit(entries) == dx_node_limit (dir));
430 while (frame >= frame_in) {
438 static void dx_release (struct dx_frame *frames)
440 if (frames[0].bh == NULL)
443 if (((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels)
444 brelse(frames[1].bh);
445 brelse(frames[0].bh);
449 * This function increments the frame pointer to search the next leaf
450 * block, and reads in the necessary intervening nodes if the search
451 * should be necessary. Whether or not the search is necessary is
452 * controlled by the hash parameter. If the hash value is even, then
453 * the search is only continued if the next block starts with that
454 * hash value. This is used if we are searching for a specific file.
456 * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
458 * This function returns 1 if the caller should continue to search,
459 * or 0 if it should not. If there is an error reading one of the
460 * index blocks, it will a negative error code.
462 * If start_hash is non-null, it will be filled in with the starting
463 * hash of the next page.
465 static int ext3_htree_next_block(struct inode *dir, __u32 hash,
466 struct dx_frame *frame,
467 struct dx_frame *frames,
471 struct buffer_head *bh;
472 int err, num_frames = 0;
477 * Find the next leaf page by incrementing the frame pointer.
478 * If we run out of entries in the interior node, loop around and
479 * increment pointer in the parent node. When we break out of
480 * this loop, num_frames indicates the number of interior
481 * nodes need to be read.
484 if (++(p->at) < p->entries + dx_get_count(p->entries))
493 * If the hash is 1, then continue only if the next page has a
494 * continuation hash of any value. This is used for readdir
495 * handling. Otherwise, check to see if the hash matches the
496 * desired contiuation hash. If it doesn't, return since
497 * there's no point to read in the successive index pages.
499 bhash = dx_get_hash(p->at);
502 if ((hash & 1) == 0) {
503 if ((bhash & ~1) != hash)
507 * If the hash is HASH_NB_ALWAYS, we always go to the next
508 * block so no check is necessary
510 while (num_frames--) {
511 if (!(bh = ext3_bread(NULL, dir, dx_get_block(p->at),
513 return err; /* Failure */
517 p->at = p->entries = ((struct dx_node *) bh->b_data)->entries;
524 * p is at least 6 bytes before the end of page
526 static inline struct ext3_dir_entry_2 *ext3_next_entry(struct ext3_dir_entry_2 *p)
528 return (struct ext3_dir_entry_2 *)((char*)p + le16_to_cpu(p->rec_len));
532 * This function fills a red-black tree with information from a
533 * directory block. It returns the number directory entries loaded
534 * into the tree. If there is an error it is returned in err.
536 static int htree_dirblock_to_tree(struct file *dir_file,
537 struct inode *dir, int block,
538 struct dx_hash_info *hinfo,
539 __u32 start_hash, __u32 start_minor_hash)
541 struct buffer_head *bh;
542 struct ext3_dir_entry_2 *de, *top;
545 dxtrace(printk("In htree dirblock_to_tree: block %d\n", block));
546 if (!(bh = ext3_bread (NULL, dir, block, 0, &err)))
549 de = (struct ext3_dir_entry_2 *) bh->b_data;
550 top = (struct ext3_dir_entry_2 *) ((char *) de +
551 dir->i_sb->s_blocksize -
552 EXT3_DIR_REC_LEN(0));
553 for (; de < top; de = ext3_next_entry(de)) {
554 ext3fs_dirhash(de->name, de->name_len, hinfo);
555 if ((hinfo->hash < start_hash) ||
556 ((hinfo->hash == start_hash) &&
557 (hinfo->minor_hash < start_minor_hash)))
561 if ((err = ext3_htree_store_dirent(dir_file,
562 hinfo->hash, hinfo->minor_hash, de)) != 0) {
574 * This function fills a red-black tree with information from a
575 * directory. We start scanning the directory in hash order, starting
576 * at start_hash and start_minor_hash.
578 * This function returns the number of entries inserted into the tree,
579 * or a negative error code.
581 int ext3_htree_fill_tree(struct file *dir_file, __u32 start_hash,
582 __u32 start_minor_hash, __u32 *next_hash)
584 struct dx_hash_info hinfo;
585 struct ext3_dir_entry_2 *de;
586 struct dx_frame frames[2], *frame;
593 dxtrace(printk("In htree_fill_tree, start hash: %x:%x\n", start_hash,
595 dir = dir_file->f_dentry->d_inode;
596 if (!(EXT3_I(dir)->i_flags & EXT3_INDEX_FL)) {
597 hinfo.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version;
598 hinfo.seed = EXT3_SB(dir->i_sb)->s_hash_seed;
599 count = htree_dirblock_to_tree(dir_file, dir, 0, &hinfo,
600 start_hash, start_minor_hash);
604 hinfo.hash = start_hash;
605 hinfo.minor_hash = 0;
606 frame = dx_probe(NULL, dir_file->f_dentry->d_inode, &hinfo, frames, &err);
610 /* Add '.' and '..' from the htree header */
611 if (!start_hash && !start_minor_hash) {
612 de = (struct ext3_dir_entry_2 *) frames[0].bh->b_data;
613 if ((err = ext3_htree_store_dirent(dir_file, 0, 0, de)) != 0)
617 if (start_hash < 2 || (start_hash ==2 && start_minor_hash==0)) {
618 de = (struct ext3_dir_entry_2 *) frames[0].bh->b_data;
619 de = ext3_next_entry(de);
620 if ((err = ext3_htree_store_dirent(dir_file, 2, 0, de)) != 0)
626 block = dx_get_block(frame->at);
627 ret = htree_dirblock_to_tree(dir_file, dir, block, &hinfo,
628 start_hash, start_minor_hash);
635 ret = ext3_htree_next_block(dir, HASH_NB_ALWAYS,
636 frame, frames, &hashval);
637 *next_hash = hashval;
643 * Stop if: (a) there are no more entries, or
644 * (b) we have inserted at least one entry and the
645 * next hash value is not a continuation
648 (count && ((hashval & 1) == 0)))
652 dxtrace(printk("Fill tree: returned %d entries, next hash: %x\n",
662 * Directory block splitting, compacting
665 static int dx_make_map (struct ext3_dir_entry_2 *de, int size,
666 struct dx_hash_info *hinfo, struct dx_map_entry *map_tail)
669 char *base = (char *) de;
670 struct dx_hash_info h = *hinfo;
672 while ((char *) de < base + size)
674 if (de->name_len && de->inode) {
675 ext3fs_dirhash(de->name, de->name_len, &h);
677 map_tail->hash = h.hash;
678 map_tail->offs = (u32) ((char *) de - base);
682 /* XXX: do we need to check rec_len == 0 case? -Chris */
683 de = (struct ext3_dir_entry_2 *) ((char *) de + le16_to_cpu(de->rec_len));
688 static void dx_sort_map (struct dx_map_entry *map, unsigned count)
690 struct dx_map_entry *p, *q, *top = map + count - 1;
692 /* Combsort until bubble sort doesn't suck */
696 if (count - 9 < 2) /* 9, 10 -> 11 */
698 for (p = top, q = p - count; q >= map; p--, q--)
699 if (p->hash < q->hash)
702 /* Garden variety bubble sort */
708 if (q[1].hash >= q[0].hash)
716 static void dx_insert_block(struct dx_frame *frame, u32 hash, u32 block)
718 struct dx_entry *entries = frame->entries;
719 struct dx_entry *old = frame->at, *new = old + 1;
720 int count = dx_get_count(entries);
722 assert(count < dx_get_limit(entries));
723 assert(old < entries + count);
724 memmove(new + 1, new, (char *)(entries + count) - (char *)(new));
725 dx_set_hash(new, hash);
726 dx_set_block(new, block);
727 dx_set_count(entries, count + 1);
732 static void ext3_update_dx_flag(struct inode *inode)
734 if (!EXT3_HAS_COMPAT_FEATURE(inode->i_sb,
735 EXT3_FEATURE_COMPAT_DIR_INDEX))
736 EXT3_I(inode)->i_flags &= ~EXT3_INDEX_FL;
740 * NOTE! unlike strncmp, ext3_match returns 1 for success, 0 for failure.
742 * `len <= EXT3_NAME_LEN' is guaranteed by caller.
743 * `de != NULL' is guaranteed by caller.
745 static inline int ext3_match (int len, const char * const name,
746 struct ext3_dir_entry_2 * de)
748 if (len != de->name_len)
752 return !memcmp(name, de->name, len);
756 * Returns 0 if not found, -1 on failure, and 1 on success
758 static inline int search_dirblock(struct buffer_head * bh,
760 struct dentry *dentry,
761 unsigned long offset,
762 struct ext3_dir_entry_2 ** res_dir)
764 struct ext3_dir_entry_2 * de;
767 const char *name = dentry->d_name.name;
768 int namelen = dentry->d_name.len;
770 de = (struct ext3_dir_entry_2 *) bh->b_data;
771 dlimit = bh->b_data + dir->i_sb->s_blocksize;
772 while ((char *) de < dlimit) {
773 /* this code is executed quadratically often */
774 /* do minimal checking `by hand' */
776 if ((char *) de + namelen <= dlimit &&
777 ext3_match (namelen, name, de)) {
778 /* found a match - just to be sure, do a full check */
779 if (!ext3_check_dir_entry("ext3_find_entry",
780 dir, de, bh, offset))
785 /* prevent looping on a bad block */
786 de_len = le16_to_cpu(de->rec_len);
790 de = (struct ext3_dir_entry_2 *) ((char *) de + de_len);
799 * finds an entry in the specified directory with the wanted name. It
800 * returns the cache buffer in which the entry was found, and the entry
801 * itself (as a parameter - res_dir). It does NOT read the inode of the
802 * entry - you'll have to do that yourself if you want to.
804 * The returned buffer_head has ->b_count elevated. The caller is expected
805 * to brelse() it when appropriate.
807 static struct buffer_head * ext3_find_entry (struct dentry *dentry,
808 struct ext3_dir_entry_2 ** res_dir)
810 struct super_block * sb;
811 struct buffer_head * bh_use[NAMEI_RA_SIZE];
812 struct buffer_head * bh, *ret = NULL;
813 unsigned long start, block, b;
814 int ra_max = 0; /* Number of bh's in the readahead
816 int ra_ptr = 0; /* Current index into readahead
820 struct inode *dir = dentry->d_parent->d_inode;
827 blocksize = sb->s_blocksize;
828 namelen = dentry->d_name.len;
829 name = dentry->d_name.name;
830 if (namelen > EXT3_NAME_LEN)
832 #ifdef CONFIG_EXT3_INDEX
834 bh = ext3_dx_find_entry(dentry, res_dir, &err);
836 * On success, or if the error was file not found,
837 * return. Otherwise, fall back to doing a search the
840 if (bh || (err != ERR_BAD_DX_DIR))
842 dxtrace(printk("ext3_find_entry: dx failed, falling back\n"));
845 nblocks = dir->i_size >> EXT3_BLOCK_SIZE_BITS(sb);
846 start = EXT3_I(dir)->i_dir_start_lookup;
847 if (start >= nblocks)
853 * We deal with the read-ahead logic here.
855 if (ra_ptr >= ra_max) {
856 /* Refill the readahead buffer */
859 for (ra_max = 0; ra_max < NAMEI_RA_SIZE; ra_max++) {
861 * Terminate if we reach the end of the
862 * directory and must wrap, or if our
863 * search has finished at this block.
865 if (b >= nblocks || (num && block == start)) {
866 bh_use[ra_max] = NULL;
870 bh = ext3_getblk(NULL, dir, b++, 0, &err);
873 ll_rw_block(READ, 1, &bh);
876 if ((bh = bh_use[ra_ptr++]) == NULL)
879 if (!buffer_uptodate(bh)) {
880 /* read error, skip block & hope for the best */
881 ext3_error(sb, __FUNCTION__, "reading directory #%lu "
882 "offset %lu", dir->i_ino, block);
886 i = search_dirblock(bh, dir, dentry,
887 block << EXT3_BLOCK_SIZE_BITS(sb), res_dir);
889 EXT3_I(dir)->i_dir_start_lookup = block;
891 goto cleanup_and_exit;
895 goto cleanup_and_exit;
898 if (++block >= nblocks)
900 } while (block != start);
903 * If the directory has grown while we were searching, then
904 * search the last part of the directory before giving up.
907 nblocks = dir->i_size >> EXT3_BLOCK_SIZE_BITS(sb);
908 if (block < nblocks) {
914 /* Clean up the read-ahead blocks */
915 for (; ra_ptr < ra_max; ra_ptr++)
916 brelse (bh_use[ra_ptr]);
920 #ifdef CONFIG_EXT3_INDEX
921 static struct buffer_head * ext3_dx_find_entry(struct dentry *dentry,
922 struct ext3_dir_entry_2 **res_dir, int *err)
924 struct super_block * sb;
925 struct dx_hash_info hinfo;
927 struct dx_frame frames[2], *frame;
928 struct ext3_dir_entry_2 *de, *top;
929 struct buffer_head *bh;
932 int namelen = dentry->d_name.len;
933 const u8 *name = dentry->d_name.name;
934 struct inode *dir = dentry->d_parent->d_inode;
937 /* NFS may look up ".." - look at dx_root directory block */
938 if (namelen > 2 || name[0] != '.'||(name[1] != '.' && name[1] != '\0')){
939 if (!(frame = dx_probe(dentry, NULL, &hinfo, frames, err)))
943 frame->bh = NULL; /* for dx_release() */
944 frame->at = (struct dx_entry *)frames; /* hack for zero entry*/
945 dx_set_block(frame->at, 0); /* dx_root block is 0 */
949 block = dx_get_block(frame->at);
950 if (!(bh = ext3_bread (NULL,dir, block, 0, err)))
952 de = (struct ext3_dir_entry_2 *) bh->b_data;
953 top = (struct ext3_dir_entry_2 *) ((char *) de + sb->s_blocksize -
954 EXT3_DIR_REC_LEN(0));
955 for (; de < top; de = ext3_next_entry(de))
956 if (ext3_match (namelen, name, de)) {
957 if (!ext3_check_dir_entry("ext3_find_entry",
959 (block<<EXT3_BLOCK_SIZE_BITS(sb))
960 +((char *)de - bh->b_data))) {
969 /* Check to see if we should continue to search */
970 retval = ext3_htree_next_block(dir, hash, frame,
973 ext3_warning(sb, __FUNCTION__,
974 "error reading index page in directory #%lu",
979 } while (retval == 1);
983 dxtrace(printk("%s not found\n", name));
989 static struct dentry *ext3_lookup(struct inode * dir, struct dentry *dentry, struct nameidata *nd)
991 struct inode * inode;
992 struct ext3_dir_entry_2 * de;
993 struct buffer_head * bh;
995 if (dentry->d_name.len > EXT3_NAME_LEN)
996 return ERR_PTR(-ENAMETOOLONG);
998 bh = ext3_find_entry(dentry, &de);
1001 unsigned long ino = le32_to_cpu(de->inode);
1003 inode = iget(dir->i_sb, ino);
1006 return ERR_PTR(-EACCES);
1008 return d_splice_alias(inode, dentry);
1012 struct dentry *ext3_get_parent(struct dentry *child)
1015 struct dentry *parent;
1016 struct inode *inode;
1017 struct dentry dotdot;
1018 struct ext3_dir_entry_2 * de;
1019 struct buffer_head *bh;
1021 dotdot.d_name.name = "..";
1022 dotdot.d_name.len = 2;
1023 dotdot.d_parent = child; /* confusing, isn't it! */
1025 bh = ext3_find_entry(&dotdot, &de);
1028 return ERR_PTR(-ENOENT);
1029 ino = le32_to_cpu(de->inode);
1031 inode = iget(child->d_inode->i_sb, ino);
1034 return ERR_PTR(-EACCES);
1036 parent = d_alloc_anon(inode);
1039 parent = ERR_PTR(-ENOMEM);
1045 static unsigned char ext3_type_by_mode[S_IFMT >> S_SHIFT] = {
1046 [S_IFREG >> S_SHIFT] = EXT3_FT_REG_FILE,
1047 [S_IFDIR >> S_SHIFT] = EXT3_FT_DIR,
1048 [S_IFCHR >> S_SHIFT] = EXT3_FT_CHRDEV,
1049 [S_IFBLK >> S_SHIFT] = EXT3_FT_BLKDEV,
1050 [S_IFIFO >> S_SHIFT] = EXT3_FT_FIFO,
1051 [S_IFSOCK >> S_SHIFT] = EXT3_FT_SOCK,
1052 [S_IFLNK >> S_SHIFT] = EXT3_FT_SYMLINK,
1055 static inline void ext3_set_de_type(struct super_block *sb,
1056 struct ext3_dir_entry_2 *de,
1058 if (EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_FILETYPE))
1059 de->file_type = ext3_type_by_mode[(mode & S_IFMT)>>S_SHIFT];
1062 #ifdef CONFIG_EXT3_INDEX
1063 static struct ext3_dir_entry_2 *
1064 dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count)
1066 unsigned rec_len = 0;
1069 struct ext3_dir_entry_2 *de = (struct ext3_dir_entry_2 *) (from + map->offs);
1070 rec_len = EXT3_DIR_REC_LEN(de->name_len);
1071 memcpy (to, de, rec_len);
1072 ((struct ext3_dir_entry_2 *) to)->rec_len =
1073 cpu_to_le16(rec_len);
1078 return (struct ext3_dir_entry_2 *) (to - rec_len);
1081 static struct ext3_dir_entry_2* dx_pack_dirents(char *base, int size)
1083 struct ext3_dir_entry_2 *next, *to, *prev, *de = (struct ext3_dir_entry_2 *) base;
1084 unsigned rec_len = 0;
1087 while ((char*)de < base + size) {
1088 next = (struct ext3_dir_entry_2 *) ((char *) de +
1089 le16_to_cpu(de->rec_len));
1090 if (de->inode && de->name_len) {
1091 rec_len = EXT3_DIR_REC_LEN(de->name_len);
1093 memmove(to, de, rec_len);
1094 to->rec_len = cpu_to_le16(rec_len);
1096 to = (struct ext3_dir_entry_2 *) (((char *) to) + rec_len);
1103 static struct ext3_dir_entry_2 *do_split(handle_t *handle, struct inode *dir,
1104 struct buffer_head **bh,struct dx_frame *frame,
1105 struct dx_hash_info *hinfo, int *error)
1107 unsigned blocksize = dir->i_sb->s_blocksize;
1108 unsigned count, continued;
1109 struct buffer_head *bh2;
1112 struct dx_map_entry *map;
1113 char *data1 = (*bh)->b_data, *data2;
1115 struct ext3_dir_entry_2 *de = NULL, *de2;
1118 bh2 = ext3_append (handle, dir, &newblock, error);
1125 BUFFER_TRACE(*bh, "get_write_access");
1126 err = ext3_journal_get_write_access(handle, *bh);
1132 ext3_std_error(dir->i_sb, err);
1135 BUFFER_TRACE(frame->bh, "get_write_access");
1136 err = ext3_journal_get_write_access(handle, frame->bh);
1140 data2 = bh2->b_data;
1142 /* create map in the end of data2 block */
1143 map = (struct dx_map_entry *) (data2 + blocksize);
1144 count = dx_make_map ((struct ext3_dir_entry_2 *) data1,
1145 blocksize, hinfo, map);
1147 split = count/2; // need to adjust to actual middle
1148 dx_sort_map (map, count);
1149 hash2 = map[split].hash;
1150 continued = hash2 == map[split - 1].hash;
1151 dxtrace(printk("Split block %i at %x, %i/%i\n",
1152 dx_get_block(frame->at), hash2, split, count-split));
1154 /* Fancy dance to stay within two buffers */
1155 de2 = dx_move_dirents(data1, data2, map + split, count - split);
1156 de = dx_pack_dirents(data1,blocksize);
1157 de->rec_len = cpu_to_le16(data1 + blocksize - (char *) de);
1158 de2->rec_len = cpu_to_le16(data2 + blocksize - (char *) de2);
1159 dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data1, blocksize, 1));
1160 dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data2, blocksize, 1));
1162 /* Which block gets the new entry? */
1163 if (hinfo->hash >= hash2)
1168 dx_insert_block (frame, hash2 + continued, newblock);
1169 err = ext3_journal_dirty_metadata (handle, bh2);
1172 err = ext3_journal_dirty_metadata (handle, frame->bh);
1176 dxtrace(dx_show_index ("frame", frame->entries));
1184 * Add a new entry into a directory (leaf) block. If de is non-NULL,
1185 * it points to a directory entry which is guaranteed to be large
1186 * enough for new directory entry. If de is NULL, then
1187 * add_dirent_to_buf will attempt search the directory block for
1188 * space. It will return -ENOSPC if no space is available, and -EIO
1189 * and -EEXIST if directory entry already exists.
1191 * NOTE! bh is NOT released in the case where ENOSPC is returned. In
1192 * all other cases bh is released.
1194 static int add_dirent_to_buf(handle_t *handle, struct dentry *dentry,
1195 struct inode *inode, struct ext3_dir_entry_2 *de,
1196 struct buffer_head * bh)
1198 struct inode *dir = dentry->d_parent->d_inode;
1199 const char *name = dentry->d_name.name;
1200 int namelen = dentry->d_name.len;
1201 unsigned long offset = 0;
1202 unsigned short reclen;
1203 int nlen, rlen, err;
1206 reclen = EXT3_DIR_REC_LEN(namelen);
1208 de = (struct ext3_dir_entry_2 *)bh->b_data;
1209 top = bh->b_data + dir->i_sb->s_blocksize - reclen;
1210 while ((char *) de <= top) {
1211 if (!ext3_check_dir_entry("ext3_add_entry", dir, de,
1216 if (ext3_match (namelen, name, de)) {
1220 nlen = EXT3_DIR_REC_LEN(de->name_len);
1221 rlen = le16_to_cpu(de->rec_len);
1222 if ((de->inode? rlen - nlen: rlen) >= reclen)
1224 de = (struct ext3_dir_entry_2 *)((char *)de + rlen);
1227 if ((char *) de > top)
1230 BUFFER_TRACE(bh, "get_write_access");
1231 err = ext3_journal_get_write_access(handle, bh);
1233 ext3_std_error(dir->i_sb, err);
1238 /* By now the buffer is marked for journaling */
1239 nlen = EXT3_DIR_REC_LEN(de->name_len);
1240 rlen = le16_to_cpu(de->rec_len);
1242 struct ext3_dir_entry_2 *de1 = (struct ext3_dir_entry_2 *)((char *)de + nlen);
1243 de1->rec_len = cpu_to_le16(rlen - nlen);
1244 de->rec_len = cpu_to_le16(nlen);
1247 de->file_type = EXT3_FT_UNKNOWN;
1249 de->inode = cpu_to_le32(inode->i_ino);
1250 ext3_set_de_type(dir->i_sb, de, inode->i_mode);
1253 de->name_len = namelen;
1254 memcpy (de->name, name, namelen);
1256 * XXX shouldn't update any times until successful
1257 * completion of syscall, but too many callers depend
1260 * XXX similarly, too many callers depend on
1261 * ext3_new_inode() setting the times, but error
1262 * recovery deletes the inode, so the worst that can
1263 * happen is that the times are slightly out of date
1264 * and/or different from the directory change time.
1266 dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC;
1267 ext3_update_dx_flag(dir);
1269 ext3_mark_inode_dirty(handle, dir);
1270 BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
1271 err = ext3_journal_dirty_metadata(handle, bh);
1273 ext3_std_error(dir->i_sb, err);
1278 #ifdef CONFIG_EXT3_INDEX
1280 * This converts a one block unindexed directory to a 3 block indexed
1281 * directory, and adds the dentry to the indexed directory.
1283 static int make_indexed_dir(handle_t *handle, struct dentry *dentry,
1284 struct inode *inode, struct buffer_head *bh)
1286 struct inode *dir = dentry->d_parent->d_inode;
1287 const char *name = dentry->d_name.name;
1288 int namelen = dentry->d_name.len;
1289 struct buffer_head *bh2;
1290 struct dx_root *root;
1291 struct dx_frame frames[2], *frame;
1292 struct dx_entry *entries;
1293 struct ext3_dir_entry_2 *de, *de2;
1298 struct dx_hash_info hinfo;
1300 struct fake_dirent *fde;
1302 blocksize = dir->i_sb->s_blocksize;
1303 dxtrace(printk("Creating index\n"));
1304 retval = ext3_journal_get_write_access(handle, bh);
1306 ext3_std_error(dir->i_sb, retval);
1310 root = (struct dx_root *) bh->b_data;
1312 bh2 = ext3_append (handle, dir, &block, &retval);
1317 EXT3_I(dir)->i_flags |= EXT3_INDEX_FL;
1318 data1 = bh2->b_data;
1320 /* The 0th block becomes the root, move the dirents out */
1321 fde = &root->dotdot;
1322 de = (struct ext3_dir_entry_2 *)((char *)fde + le16_to_cpu(fde->rec_len));
1323 len = ((char *) root) + blocksize - (char *) de;
1324 memcpy (data1, de, len);
1325 de = (struct ext3_dir_entry_2 *) data1;
1327 while ((char *)(de2=(void*)de+le16_to_cpu(de->rec_len)) < top)
1329 de->rec_len = cpu_to_le16(data1 + blocksize - (char *) de);
1330 /* Initialize the root; the dot dirents already exist */
1331 de = (struct ext3_dir_entry_2 *) (&root->dotdot);
1332 de->rec_len = cpu_to_le16(blocksize - EXT3_DIR_REC_LEN(2));
1333 memset (&root->info, 0, sizeof(root->info));
1334 root->info.info_length = sizeof(root->info);
1335 root->info.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version;
1336 entries = root->entries;
1337 dx_set_block (entries, 1);
1338 dx_set_count (entries, 1);
1339 dx_set_limit (entries, dx_root_limit(dir, sizeof(root->info)));
1341 /* Initialize as for dx_probe */
1342 hinfo.hash_version = root->info.hash_version;
1343 hinfo.seed = EXT3_SB(dir->i_sb)->s_hash_seed;
1344 ext3fs_dirhash(name, namelen, &hinfo);
1346 frame->entries = entries;
1347 frame->at = entries;
1350 de = do_split(handle,dir, &bh, frame, &hinfo, &retval);
1351 dx_release (frames);
1355 return add_dirent_to_buf(handle, dentry, inode, de, bh);
1362 * adds a file entry to the specified directory, using the same
1363 * semantics as ext3_find_entry(). It returns NULL if it failed.
1365 * NOTE!! The inode part of 'de' is left at 0 - which means you
1366 * may not sleep between calling this and putting something into
1367 * the entry, as someone else might have used it while you slept.
1369 static int ext3_add_entry (handle_t *handle, struct dentry *dentry,
1370 struct inode *inode)
1372 struct inode *dir = dentry->d_parent->d_inode;
1373 unsigned long offset;
1374 struct buffer_head * bh;
1375 struct ext3_dir_entry_2 *de;
1376 struct super_block * sb;
1378 #ifdef CONFIG_EXT3_INDEX
1385 blocksize = sb->s_blocksize;
1386 if (!dentry->d_name.len)
1388 #ifdef CONFIG_EXT3_INDEX
1390 retval = ext3_dx_add_entry(handle, dentry, inode);
1391 if (!retval || (retval != ERR_BAD_DX_DIR))
1393 EXT3_I(dir)->i_flags &= ~EXT3_INDEX_FL;
1395 ext3_mark_inode_dirty(handle, dir);
1398 blocks = dir->i_size >> sb->s_blocksize_bits;
1399 for (block = 0, offset = 0; block < blocks; block++) {
1400 bh = ext3_bread(handle, dir, block, 0, &retval);
1403 retval = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
1404 if (retval != -ENOSPC)
1407 #ifdef CONFIG_EXT3_INDEX
1408 if (blocks == 1 && !dx_fallback &&
1409 EXT3_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_DIR_INDEX))
1410 return make_indexed_dir(handle, dentry, inode, bh);
1414 bh = ext3_append(handle, dir, &block, &retval);
1417 de = (struct ext3_dir_entry_2 *) bh->b_data;
1419 de->rec_len = cpu_to_le16(blocksize);
1420 return add_dirent_to_buf(handle, dentry, inode, de, bh);
1423 #ifdef CONFIG_EXT3_INDEX
1425 * Returns 0 for success, or a negative error value
1427 static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry,
1428 struct inode *inode)
1430 struct dx_frame frames[2], *frame;
1431 struct dx_entry *entries, *at;
1432 struct dx_hash_info hinfo;
1433 struct buffer_head * bh;
1434 struct inode *dir = dentry->d_parent->d_inode;
1435 struct super_block * sb = dir->i_sb;
1436 struct ext3_dir_entry_2 *de;
1439 frame = dx_probe(dentry, NULL, &hinfo, frames, &err);
1442 entries = frame->entries;
1445 if (!(bh = ext3_bread(handle,dir, dx_get_block(frame->at), 0, &err)))
1448 BUFFER_TRACE(bh, "get_write_access");
1449 err = ext3_journal_get_write_access(handle, bh);
1453 err = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
1454 if (err != -ENOSPC) {
1459 /* Block full, should compress but for now just split */
1460 dxtrace(printk("using %u of %u node entries\n",
1461 dx_get_count(entries), dx_get_limit(entries)));
1462 /* Need to split index? */
1463 if (dx_get_count(entries) == dx_get_limit(entries)) {
1465 unsigned icount = dx_get_count(entries);
1466 int levels = frame - frames;
1467 struct dx_entry *entries2;
1468 struct dx_node *node2;
1469 struct buffer_head *bh2;
1471 if (levels && (dx_get_count(frames->entries) ==
1472 dx_get_limit(frames->entries))) {
1473 ext3_warning(sb, __FUNCTION__,
1474 "Directory index full!");
1478 bh2 = ext3_append (handle, dir, &newblock, &err);
1481 node2 = (struct dx_node *)(bh2->b_data);
1482 entries2 = node2->entries;
1483 node2->fake.rec_len = cpu_to_le16(sb->s_blocksize);
1484 node2->fake.inode = 0;
1485 BUFFER_TRACE(frame->bh, "get_write_access");
1486 err = ext3_journal_get_write_access(handle, frame->bh);
1490 unsigned icount1 = icount/2, icount2 = icount - icount1;
1491 unsigned hash2 = dx_get_hash(entries + icount1);
1492 dxtrace(printk("Split index %i/%i\n", icount1, icount2));
1494 BUFFER_TRACE(frame->bh, "get_write_access"); /* index root */
1495 err = ext3_journal_get_write_access(handle,
1500 memcpy ((char *) entries2, (char *) (entries + icount1),
1501 icount2 * sizeof(struct dx_entry));
1502 dx_set_count (entries, icount1);
1503 dx_set_count (entries2, icount2);
1504 dx_set_limit (entries2, dx_node_limit(dir));
1506 /* Which index block gets the new entry? */
1507 if (at - entries >= icount1) {
1508 frame->at = at = at - entries - icount1 + entries2;
1509 frame->entries = entries = entries2;
1510 swap(frame->bh, bh2);
1512 dx_insert_block (frames + 0, hash2, newblock);
1513 dxtrace(dx_show_index ("node", frames[1].entries));
1514 dxtrace(dx_show_index ("node",
1515 ((struct dx_node *) bh2->b_data)->entries));
1516 err = ext3_journal_dirty_metadata(handle, bh2);
1521 dxtrace(printk("Creating second level index...\n"));
1522 memcpy((char *) entries2, (char *) entries,
1523 icount * sizeof(struct dx_entry));
1524 dx_set_limit(entries2, dx_node_limit(dir));
1527 dx_set_count(entries, 1);
1528 dx_set_block(entries + 0, newblock);
1529 ((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels = 1;
1531 /* Add new access path frame */
1533 frame->at = at = at - entries + entries2;
1534 frame->entries = entries = entries2;
1536 err = ext3_journal_get_write_access(handle,
1541 ext3_journal_dirty_metadata(handle, frames[0].bh);
1543 de = do_split(handle, dir, &bh, frame, &hinfo, &err);
1546 err = add_dirent_to_buf(handle, dentry, inode, de, bh);
1551 ext3_std_error(dir->i_sb, err);
1561 * ext3_delete_entry deletes a directory entry by merging it with the
1564 static int ext3_delete_entry (handle_t *handle,
1566 struct ext3_dir_entry_2 * de_del,
1567 struct buffer_head * bh)
1569 struct ext3_dir_entry_2 * de, * pde;
1574 de = (struct ext3_dir_entry_2 *) bh->b_data;
1575 while (i < bh->b_size) {
1576 if (!ext3_check_dir_entry("ext3_delete_entry", dir, de, bh, i))
1579 BUFFER_TRACE(bh, "get_write_access");
1580 ext3_journal_get_write_access(handle, bh);
1583 cpu_to_le16(le16_to_cpu(pde->rec_len) +
1584 le16_to_cpu(de->rec_len));
1588 BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
1589 ext3_journal_dirty_metadata(handle, bh);
1592 i += le16_to_cpu(de->rec_len);
1594 de = (struct ext3_dir_entry_2 *)
1595 ((char *) de + le16_to_cpu(de->rec_len));
1601 * ext3_mark_inode_dirty is somewhat expensive, so unlike ext2 we
1602 * do not perform it in these functions. We perform it at the call site,
1605 static inline void ext3_inc_count(handle_t *handle, struct inode *inode)
1610 static inline void ext3_dec_count(handle_t *handle, struct inode *inode)
1615 static int ext3_add_nondir(handle_t *handle,
1616 struct dentry *dentry, struct inode *inode)
1618 int err = ext3_add_entry(handle, dentry, inode);
1620 ext3_mark_inode_dirty(handle, inode);
1621 d_instantiate(dentry, inode);
1624 ext3_dec_count(handle, inode);
1630 * By the time this is called, we already have created
1631 * the directory cache entry for the new file, but it
1632 * is so far negative - it has no inode.
1634 * If the create succeeds, we fill in the inode information
1635 * with d_instantiate().
1637 static int ext3_create (struct inode * dir, struct dentry * dentry, int mode,
1638 struct nameidata *nd)
1641 struct inode * inode;
1642 int err, retries = 0;
1645 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
1646 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1647 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
1649 return PTR_ERR(handle);
1651 if (IS_DIRSYNC(dir))
1654 inode = ext3_new_inode (handle, dir, mode);
1655 err = PTR_ERR(inode);
1656 if (!IS_ERR(inode)) {
1657 inode->i_op = &ext3_file_inode_operations;
1658 inode->i_fop = &ext3_file_operations;
1659 ext3_set_aops(inode);
1660 err = ext3_add_nondir(handle, dentry, inode);
1662 ext3_journal_stop(handle);
1663 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1668 static int ext3_mknod (struct inode * dir, struct dentry *dentry,
1669 int mode, dev_t rdev)
1672 struct inode *inode;
1673 int err, retries = 0;
1675 if (!new_valid_dev(rdev))
1679 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
1680 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1681 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
1683 return PTR_ERR(handle);
1685 if (IS_DIRSYNC(dir))
1688 inode = ext3_new_inode (handle, dir, mode);
1689 err = PTR_ERR(inode);
1690 if (!IS_ERR(inode)) {
1691 init_special_inode(inode, inode->i_mode, rdev);
1692 #ifdef CONFIG_EXT3_FS_XATTR
1693 inode->i_op = &ext3_special_inode_operations;
1695 err = ext3_add_nondir(handle, dentry, inode);
1697 ext3_journal_stop(handle);
1698 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1703 static int ext3_mkdir(struct inode * dir, struct dentry * dentry, int mode)
1706 struct inode * inode;
1707 struct buffer_head * dir_block;
1708 struct ext3_dir_entry_2 * de;
1709 int err, retries = 0;
1711 if (dir->i_nlink >= EXT3_LINK_MAX)
1715 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
1716 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1717 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
1719 return PTR_ERR(handle);
1721 if (IS_DIRSYNC(dir))
1724 inode = ext3_new_inode (handle, dir, S_IFDIR | mode);
1725 err = PTR_ERR(inode);
1729 inode->i_op = &ext3_dir_inode_operations;
1730 inode->i_fop = &ext3_dir_operations;
1731 inode->i_size = EXT3_I(inode)->i_disksize = inode->i_sb->s_blocksize;
1732 dir_block = ext3_bread (handle, inode, 0, 1, &err);
1734 inode->i_nlink--; /* is this nlink == 0? */
1735 ext3_mark_inode_dirty(handle, inode);
1739 BUFFER_TRACE(dir_block, "get_write_access");
1740 ext3_journal_get_write_access(handle, dir_block);
1741 de = (struct ext3_dir_entry_2 *) dir_block->b_data;
1742 de->inode = cpu_to_le32(inode->i_ino);
1744 de->rec_len = cpu_to_le16(EXT3_DIR_REC_LEN(de->name_len));
1745 strcpy (de->name, ".");
1746 ext3_set_de_type(dir->i_sb, de, S_IFDIR);
1747 de = (struct ext3_dir_entry_2 *)
1748 ((char *) de + le16_to_cpu(de->rec_len));
1749 de->inode = cpu_to_le32(dir->i_ino);
1750 de->rec_len = cpu_to_le16(inode->i_sb->s_blocksize-EXT3_DIR_REC_LEN(1));
1752 strcpy (de->name, "..");
1753 ext3_set_de_type(dir->i_sb, de, S_IFDIR);
1755 BUFFER_TRACE(dir_block, "call ext3_journal_dirty_metadata");
1756 ext3_journal_dirty_metadata(handle, dir_block);
1758 ext3_mark_inode_dirty(handle, inode);
1759 err = ext3_add_entry (handle, dentry, inode);
1762 ext3_mark_inode_dirty(handle, inode);
1767 ext3_update_dx_flag(dir);
1768 ext3_mark_inode_dirty(handle, dir);
1769 d_instantiate(dentry, inode);
1771 ext3_journal_stop(handle);
1772 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1778 * routine to check that the specified directory is empty (for rmdir)
1780 static int empty_dir (struct inode * inode)
1782 unsigned long offset;
1783 struct buffer_head * bh;
1784 struct ext3_dir_entry_2 * de, * de1;
1785 struct super_block * sb;
1789 if (inode->i_size < EXT3_DIR_REC_LEN(1) + EXT3_DIR_REC_LEN(2) ||
1790 !(bh = ext3_bread (NULL, inode, 0, 0, &err))) {
1792 ext3_error(inode->i_sb, __FUNCTION__,
1793 "error %d reading directory #%lu offset 0",
1796 ext3_warning(inode->i_sb, __FUNCTION__,
1797 "bad directory (dir #%lu) - no data block",
1801 de = (struct ext3_dir_entry_2 *) bh->b_data;
1802 de1 = (struct ext3_dir_entry_2 *)
1803 ((char *) de + le16_to_cpu(de->rec_len));
1804 if (le32_to_cpu(de->inode) != inode->i_ino ||
1805 !le32_to_cpu(de1->inode) ||
1806 strcmp (".", de->name) ||
1807 strcmp ("..", de1->name)) {
1808 ext3_warning (inode->i_sb, "empty_dir",
1809 "bad directory (dir #%lu) - no `.' or `..'",
1814 offset = le16_to_cpu(de->rec_len) + le16_to_cpu(de1->rec_len);
1815 de = (struct ext3_dir_entry_2 *)
1816 ((char *) de1 + le16_to_cpu(de1->rec_len));
1817 while (offset < inode->i_size ) {
1819 (void *) de >= (void *) (bh->b_data+sb->s_blocksize)) {
1822 bh = ext3_bread (NULL, inode,
1823 offset >> EXT3_BLOCK_SIZE_BITS(sb), 0, &err);
1826 ext3_error(sb, __FUNCTION__,
1827 "error %d reading directory"
1829 err, inode->i_ino, offset);
1830 offset += sb->s_blocksize;
1833 de = (struct ext3_dir_entry_2 *) bh->b_data;
1835 if (!ext3_check_dir_entry("empty_dir", inode, de, bh, offset)) {
1836 de = (struct ext3_dir_entry_2 *)(bh->b_data +
1838 offset = (offset | (sb->s_blocksize - 1)) + 1;
1841 if (le32_to_cpu(de->inode)) {
1845 offset += le16_to_cpu(de->rec_len);
1846 de = (struct ext3_dir_entry_2 *)
1847 ((char *) de + le16_to_cpu(de->rec_len));
1853 /* ext3_orphan_add() links an unlinked or truncated inode into a list of
1854 * such inodes, starting at the superblock, in case we crash before the
1855 * file is closed/deleted, or in case the inode truncate spans multiple
1856 * transactions and the last transaction is not recovered after a crash.
1858 * At filesystem recovery time, we walk this list deleting unlinked
1859 * inodes and truncating linked inodes in ext3_orphan_cleanup().
1861 int ext3_orphan_add(handle_t *handle, struct inode *inode)
1863 struct super_block *sb = inode->i_sb;
1864 struct ext3_iloc iloc;
1868 if (!list_empty(&EXT3_I(inode)->i_orphan))
1871 /* Orphan handling is only valid for files with data blocks
1872 * being truncated, or files being unlinked. */
1874 /* @@@ FIXME: Observation from aviro:
1875 * I think I can trigger J_ASSERT in ext3_orphan_add(). We block
1876 * here (on lock_super()), so race with ext3_link() which might bump
1877 * ->i_nlink. For, say it, character device. Not a regular file,
1878 * not a directory, not a symlink and ->i_nlink > 0.
1880 J_ASSERT ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
1881 S_ISLNK(inode->i_mode)) || inode->i_nlink == 0);
1883 BUFFER_TRACE(EXT3_SB(sb)->s_sbh, "get_write_access");
1884 err = ext3_journal_get_write_access(handle, EXT3_SB(sb)->s_sbh);
1888 err = ext3_reserve_inode_write(handle, inode, &iloc);
1892 /* Insert this inode at the head of the on-disk orphan list... */
1893 NEXT_ORPHAN(inode) = le32_to_cpu(EXT3_SB(sb)->s_es->s_last_orphan);
1894 EXT3_SB(sb)->s_es->s_last_orphan = cpu_to_le32(inode->i_ino);
1895 err = ext3_journal_dirty_metadata(handle, EXT3_SB(sb)->s_sbh);
1896 rc = ext3_mark_iloc_dirty(handle, inode, &iloc);
1900 /* Only add to the head of the in-memory list if all the
1901 * previous operations succeeded. If the orphan_add is going to
1902 * fail (possibly taking the journal offline), we can't risk
1903 * leaving the inode on the orphan list: stray orphan-list
1904 * entries can cause panics at unmount time.
1906 * This is safe: on error we're going to ignore the orphan list
1907 * anyway on the next recovery. */
1909 list_add(&EXT3_I(inode)->i_orphan, &EXT3_SB(sb)->s_orphan);
1911 jbd_debug(4, "superblock will point to %ld\n", inode->i_ino);
1912 jbd_debug(4, "orphan inode %ld will point to %d\n",
1913 inode->i_ino, NEXT_ORPHAN(inode));
1916 ext3_std_error(inode->i_sb, err);
1921 * ext3_orphan_del() removes an unlinked or truncated inode from the list
1922 * of such inodes stored on disk, because it is finally being cleaned up.
1924 int ext3_orphan_del(handle_t *handle, struct inode *inode)
1926 struct list_head *prev;
1927 struct ext3_inode_info *ei = EXT3_I(inode);
1928 struct ext3_sb_info *sbi;
1929 unsigned long ino_next;
1930 struct ext3_iloc iloc;
1933 lock_super(inode->i_sb);
1934 if (list_empty(&ei->i_orphan)) {
1935 unlock_super(inode->i_sb);
1939 ino_next = NEXT_ORPHAN(inode);
1940 prev = ei->i_orphan.prev;
1941 sbi = EXT3_SB(inode->i_sb);
1943 jbd_debug(4, "remove inode %lu from orphan list\n", inode->i_ino);
1945 list_del_init(&ei->i_orphan);
1947 /* If we're on an error path, we may not have a valid
1948 * transaction handle with which to update the orphan list on
1949 * disk, but we still need to remove the inode from the linked
1950 * list in memory. */
1954 err = ext3_reserve_inode_write(handle, inode, &iloc);
1958 if (prev == &sbi->s_orphan) {
1959 jbd_debug(4, "superblock will point to %lu\n", ino_next);
1960 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
1961 err = ext3_journal_get_write_access(handle, sbi->s_sbh);
1964 sbi->s_es->s_last_orphan = cpu_to_le32(ino_next);
1965 err = ext3_journal_dirty_metadata(handle, sbi->s_sbh);
1967 struct ext3_iloc iloc2;
1968 struct inode *i_prev =
1969 &list_entry(prev, struct ext3_inode_info, i_orphan)->vfs_inode;
1971 jbd_debug(4, "orphan inode %lu will point to %lu\n",
1972 i_prev->i_ino, ino_next);
1973 err = ext3_reserve_inode_write(handle, i_prev, &iloc2);
1976 NEXT_ORPHAN(i_prev) = ino_next;
1977 err = ext3_mark_iloc_dirty(handle, i_prev, &iloc2);
1981 NEXT_ORPHAN(inode) = 0;
1982 err = ext3_mark_iloc_dirty(handle, inode, &iloc);
1985 ext3_std_error(inode->i_sb, err);
1987 unlock_super(inode->i_sb);
1995 static int ext3_rmdir (struct inode * dir, struct dentry *dentry)
1998 struct inode * inode;
1999 struct buffer_head * bh;
2000 struct ext3_dir_entry_2 * de;
2003 /* Initialize quotas before so that eventual writes go in
2004 * separate transaction */
2005 DQUOT_INIT(dentry->d_inode);
2006 handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS(dir->i_sb));
2008 return PTR_ERR(handle);
2011 bh = ext3_find_entry (dentry, &de);
2015 if (IS_DIRSYNC(dir))
2018 inode = dentry->d_inode;
2021 if (le32_to_cpu(de->inode) != inode->i_ino)
2024 retval = -ENOTEMPTY;
2025 if (!empty_dir (inode))
2028 retval = ext3_delete_entry(handle, dir, de, bh);
2031 if (inode->i_nlink != 2)
2032 ext3_warning (inode->i_sb, "ext3_rmdir",
2033 "empty directory has nlink!=2 (%d)",
2037 /* There's no need to set i_disksize: the fact that i_nlink is
2038 * zero will ensure that the right thing happens during any
2041 ext3_orphan_add(handle, inode);
2042 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
2043 ext3_mark_inode_dirty(handle, inode);
2045 ext3_update_dx_flag(dir);
2046 ext3_mark_inode_dirty(handle, dir);
2049 ext3_journal_stop(handle);
2054 static int ext3_unlink(struct inode * dir, struct dentry *dentry)
2057 struct inode * inode;
2058 struct buffer_head * bh;
2059 struct ext3_dir_entry_2 * de;
2062 /* Initialize quotas before so that eventual writes go
2063 * in separate transaction */
2064 DQUOT_INIT(dentry->d_inode);
2065 handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS(dir->i_sb));
2067 return PTR_ERR(handle);
2069 if (IS_DIRSYNC(dir))
2073 bh = ext3_find_entry (dentry, &de);
2077 inode = dentry->d_inode;
2080 if (le32_to_cpu(de->inode) != inode->i_ino)
2083 if (!inode->i_nlink) {
2084 ext3_warning (inode->i_sb, "ext3_unlink",
2085 "Deleting nonexistent file (%lu), %d",
2086 inode->i_ino, inode->i_nlink);
2089 retval = ext3_delete_entry(handle, dir, de, bh);
2092 dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
2093 ext3_update_dx_flag(dir);
2094 ext3_mark_inode_dirty(handle, dir);
2096 if (!inode->i_nlink)
2097 ext3_orphan_add(handle, inode);
2098 inode->i_ctime = dir->i_ctime;
2099 ext3_mark_inode_dirty(handle, inode);
2103 ext3_journal_stop(handle);
2108 static int ext3_symlink (struct inode * dir,
2109 struct dentry *dentry, const char * symname)
2112 struct inode * inode;
2113 int l, err, retries = 0;
2115 l = strlen(symname)+1;
2116 if (l > dir->i_sb->s_blocksize)
2117 return -ENAMETOOLONG;
2120 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
2121 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 5 +
2122 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
2124 return PTR_ERR(handle);
2126 if (IS_DIRSYNC(dir))
2129 inode = ext3_new_inode (handle, dir, S_IFLNK|S_IRWXUGO);
2130 err = PTR_ERR(inode);
2134 if (l > sizeof (EXT3_I(inode)->i_data)) {
2135 inode->i_op = &ext3_symlink_inode_operations;
2136 ext3_set_aops(inode);
2138 * page_symlink() calls into ext3_prepare/commit_write.
2139 * We have a transaction open. All is sweetness. It also sets
2140 * i_size in generic_commit_write().
2142 err = __page_symlink(inode, symname, l,
2143 mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS);
2145 ext3_dec_count(handle, inode);
2146 ext3_mark_inode_dirty(handle, inode);
2151 inode->i_op = &ext3_fast_symlink_inode_operations;
2152 memcpy((char*)&EXT3_I(inode)->i_data,symname,l);
2153 inode->i_size = l-1;
2155 EXT3_I(inode)->i_disksize = inode->i_size;
2156 err = ext3_add_nondir(handle, dentry, inode);
2158 ext3_journal_stop(handle);
2159 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
2164 static int ext3_link (struct dentry * old_dentry,
2165 struct inode * dir, struct dentry *dentry)
2168 struct inode *inode = old_dentry->d_inode;
2169 int err, retries = 0;
2171 if (inode->i_nlink >= EXT3_LINK_MAX)
2175 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
2176 EXT3_INDEX_EXTRA_TRANS_BLOCKS);
2178 return PTR_ERR(handle);
2180 if (IS_DIRSYNC(dir))
2183 inode->i_ctime = CURRENT_TIME_SEC;
2184 ext3_inc_count(handle, inode);
2185 atomic_inc(&inode->i_count);
2187 err = ext3_add_nondir(handle, dentry, inode);
2188 ext3_journal_stop(handle);
2189 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
2194 #define PARENT_INO(buffer) \
2195 ((struct ext3_dir_entry_2 *) ((char *) buffer + \
2196 le16_to_cpu(((struct ext3_dir_entry_2 *) buffer)->rec_len)))->inode
2199 * Anybody can rename anything with this: the permission checks are left to the
2200 * higher-level routines.
2202 static int ext3_rename (struct inode * old_dir, struct dentry *old_dentry,
2203 struct inode * new_dir,struct dentry *new_dentry)
2206 struct inode * old_inode, * new_inode;
2207 struct buffer_head * old_bh, * new_bh, * dir_bh;
2208 struct ext3_dir_entry_2 * old_de, * new_de;
2211 old_bh = new_bh = dir_bh = NULL;
2213 /* Initialize quotas before so that eventual writes go
2214 * in separate transaction */
2215 if (new_dentry->d_inode)
2216 DQUOT_INIT(new_dentry->d_inode);
2217 handle = ext3_journal_start(old_dir, 2 *
2218 EXT3_DATA_TRANS_BLOCKS(old_dir->i_sb) +
2219 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 2);
2221 return PTR_ERR(handle);
2223 if (IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir))
2226 old_bh = ext3_find_entry (old_dentry, &old_de);
2228 * Check for inode number is _not_ due to possible IO errors.
2229 * We might rmdir the source, keep it as pwd of some process
2230 * and merrily kill the link to whatever was created under the
2231 * same name. Goodbye sticky bit ;-<
2233 old_inode = old_dentry->d_inode;
2235 if (!old_bh || le32_to_cpu(old_de->inode) != old_inode->i_ino)
2238 new_inode = new_dentry->d_inode;
2239 new_bh = ext3_find_entry (new_dentry, &new_de);
2246 if (S_ISDIR(old_inode->i_mode)) {
2248 retval = -ENOTEMPTY;
2249 if (!empty_dir (new_inode))
2253 dir_bh = ext3_bread (handle, old_inode, 0, 0, &retval);
2256 if (le32_to_cpu(PARENT_INO(dir_bh->b_data)) != old_dir->i_ino)
2259 if (!new_inode && new_dir!=old_dir &&
2260 new_dir->i_nlink >= EXT3_LINK_MAX)
2264 retval = ext3_add_entry (handle, new_dentry, old_inode);
2268 BUFFER_TRACE(new_bh, "get write access");
2269 ext3_journal_get_write_access(handle, new_bh);
2270 new_de->inode = cpu_to_le32(old_inode->i_ino);
2271 if (EXT3_HAS_INCOMPAT_FEATURE(new_dir->i_sb,
2272 EXT3_FEATURE_INCOMPAT_FILETYPE))
2273 new_de->file_type = old_de->file_type;
2274 new_dir->i_version++;
2275 BUFFER_TRACE(new_bh, "call ext3_journal_dirty_metadata");
2276 ext3_journal_dirty_metadata(handle, new_bh);
2282 * Like most other Unix systems, set the ctime for inodes on a
2285 old_inode->i_ctime = CURRENT_TIME_SEC;
2286 ext3_mark_inode_dirty(handle, old_inode);
2291 if (le32_to_cpu(old_de->inode) != old_inode->i_ino ||
2292 old_de->name_len != old_dentry->d_name.len ||
2293 strncmp(old_de->name, old_dentry->d_name.name, old_de->name_len) ||
2294 (retval = ext3_delete_entry(handle, old_dir,
2295 old_de, old_bh)) == -ENOENT) {
2296 /* old_de could have moved from under us during htree split, so
2297 * make sure that we are deleting the right entry. We might
2298 * also be pointing to a stale entry in the unused part of
2299 * old_bh so just checking inum and the name isn't enough. */
2300 struct buffer_head *old_bh2;
2301 struct ext3_dir_entry_2 *old_de2;
2303 old_bh2 = ext3_find_entry(old_dentry, &old_de2);
2305 retval = ext3_delete_entry(handle, old_dir,
2311 ext3_warning(old_dir->i_sb, "ext3_rename",
2312 "Deleting old file (%lu), %d, error=%d",
2313 old_dir->i_ino, old_dir->i_nlink, retval);
2317 new_inode->i_nlink--;
2318 new_inode->i_ctime = CURRENT_TIME_SEC;
2320 old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME_SEC;
2321 ext3_update_dx_flag(old_dir);
2323 BUFFER_TRACE(dir_bh, "get_write_access");
2324 ext3_journal_get_write_access(handle, dir_bh);
2325 PARENT_INO(dir_bh->b_data) = cpu_to_le32(new_dir->i_ino);
2326 BUFFER_TRACE(dir_bh, "call ext3_journal_dirty_metadata");
2327 ext3_journal_dirty_metadata(handle, dir_bh);
2330 new_inode->i_nlink--;
2333 ext3_update_dx_flag(new_dir);
2334 ext3_mark_inode_dirty(handle, new_dir);
2337 ext3_mark_inode_dirty(handle, old_dir);
2339 ext3_mark_inode_dirty(handle, new_inode);
2340 if (!new_inode->i_nlink)
2341 ext3_orphan_add(handle, new_inode);
2349 ext3_journal_stop(handle);
2354 * directories can handle most operations...
2356 struct inode_operations ext3_dir_inode_operations = {
2357 .create = ext3_create,
2358 .lookup = ext3_lookup,
2360 .unlink = ext3_unlink,
2361 .symlink = ext3_symlink,
2362 .mkdir = ext3_mkdir,
2363 .rmdir = ext3_rmdir,
2364 .mknod = ext3_mknod,
2365 .rename = ext3_rename,
2366 .setattr = ext3_setattr,
2367 #ifdef CONFIG_EXT3_FS_XATTR
2368 .setxattr = generic_setxattr,
2369 .getxattr = generic_getxattr,
2370 .listxattr = ext3_listxattr,
2371 .removexattr = generic_removexattr,
2373 .permission = ext3_permission,
2376 struct inode_operations ext3_special_inode_operations = {
2377 .setattr = ext3_setattr,
2378 #ifdef CONFIG_EXT3_FS_XATTR
2379 .setxattr = generic_setxattr,
2380 .getxattr = generic_getxattr,
2381 .listxattr = ext3_listxattr,
2382 .removexattr = generic_removexattr,
2384 .permission = ext3_permission,