2 * linux/fs/ext4/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/jbd2.h>
30 #include <linux/time.h>
31 #include <linux/ext4_fs.h>
32 #include <linux/ext4_jbd2.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>
39 #include <linux/smp_lock.h>
46 * define how far ahead to read directories while searching them.
48 #define NAMEI_RA_CHUNKS 2
49 #define NAMEI_RA_BLOCKS 4
50 #define NAMEI_RA_SIZE (NAMEI_RA_CHUNKS * NAMEI_RA_BLOCKS)
51 #define NAMEI_RA_INDEX(c,b) (((c) * NAMEI_RA_BLOCKS) + (b))
53 static struct buffer_head *ext4_append(handle_t *handle,
57 struct buffer_head *bh;
59 *block = inode->i_size >> inode->i_sb->s_blocksize_bits;
61 if ((bh = ext4_bread(handle, inode, *block, 1, err))) {
62 inode->i_size += inode->i_sb->s_blocksize;
63 EXT4_I(inode)->i_disksize = inode->i_size;
64 ext4_journal_get_write_access(handle,bh);
70 #define assert(test) J_ASSERT(test)
74 #define swap(x, y) do { typeof(x) z = x; x = y; y = z; } while (0)
78 #define dxtrace(command) command
80 #define dxtrace(command)
104 * dx_root_info is laid out so that if it should somehow get overlaid by a
105 * dirent the two low bits of the hash version will be zero. Therefore, the
106 * hash version mod 4 should never be 0. Sincerely, the paranoia department.
111 struct fake_dirent dot;
113 struct fake_dirent dotdot;
117 __le32 reserved_zero;
119 u8 info_length; /* 8 */
124 struct dx_entry entries[0];
129 struct fake_dirent fake;
130 struct dx_entry entries[0];
136 struct buffer_head *bh;
137 struct dx_entry *entries;
147 #ifdef CONFIG_EXT4_INDEX
148 static inline unsigned dx_get_block (struct dx_entry *entry);
149 static void dx_set_block (struct dx_entry *entry, unsigned value);
150 static inline unsigned dx_get_hash (struct dx_entry *entry);
151 static void dx_set_hash (struct dx_entry *entry, unsigned value);
152 static unsigned dx_get_count (struct dx_entry *entries);
153 static unsigned dx_get_limit (struct dx_entry *entries);
154 static void dx_set_count (struct dx_entry *entries, unsigned value);
155 static void dx_set_limit (struct dx_entry *entries, unsigned value);
156 static unsigned dx_root_limit (struct inode *dir, unsigned infosize);
157 static unsigned dx_node_limit (struct inode *dir);
158 static struct dx_frame *dx_probe(struct dentry *dentry,
160 struct dx_hash_info *hinfo,
161 struct dx_frame *frame,
163 static void dx_release (struct dx_frame *frames);
164 static int dx_make_map (struct ext4_dir_entry_2 *de, int size,
165 struct dx_hash_info *hinfo, struct dx_map_entry map[]);
166 static void dx_sort_map(struct dx_map_entry *map, unsigned count);
167 static struct ext4_dir_entry_2 *dx_move_dirents (char *from, char *to,
168 struct dx_map_entry *offsets, int count);
169 static struct ext4_dir_entry_2* dx_pack_dirents (char *base, int size);
170 static void dx_insert_block (struct dx_frame *frame, u32 hash, u32 block);
171 static int ext4_htree_next_block(struct inode *dir, __u32 hash,
172 struct dx_frame *frame,
173 struct dx_frame *frames,
175 static struct buffer_head * ext4_dx_find_entry(struct dentry *dentry,
176 struct ext4_dir_entry_2 **res_dir, int *err);
177 static int ext4_dx_add_entry(handle_t *handle, struct dentry *dentry,
178 struct inode *inode);
181 * Future: use high four bits of block for coalesce-on-delete flags
182 * Mask them off for now.
185 static inline unsigned dx_get_block (struct dx_entry *entry)
187 return le32_to_cpu(entry->block) & 0x00ffffff;
190 static inline void dx_set_block (struct dx_entry *entry, unsigned value)
192 entry->block = cpu_to_le32(value);
195 static inline unsigned dx_get_hash (struct dx_entry *entry)
197 return le32_to_cpu(entry->hash);
200 static inline void dx_set_hash (struct dx_entry *entry, unsigned value)
202 entry->hash = cpu_to_le32(value);
205 static inline unsigned dx_get_count (struct dx_entry *entries)
207 return le16_to_cpu(((struct dx_countlimit *) entries)->count);
210 static inline unsigned dx_get_limit (struct dx_entry *entries)
212 return le16_to_cpu(((struct dx_countlimit *) entries)->limit);
215 static inline void dx_set_count (struct dx_entry *entries, unsigned value)
217 ((struct dx_countlimit *) entries)->count = cpu_to_le16(value);
220 static inline void dx_set_limit (struct dx_entry *entries, unsigned value)
222 ((struct dx_countlimit *) entries)->limit = cpu_to_le16(value);
225 static inline unsigned dx_root_limit (struct inode *dir, unsigned infosize)
227 unsigned entry_space = dir->i_sb->s_blocksize - EXT4_DIR_REC_LEN(1) -
228 EXT4_DIR_REC_LEN(2) - infosize;
229 return 0? 20: entry_space / sizeof(struct dx_entry);
232 static inline unsigned dx_node_limit (struct inode *dir)
234 unsigned entry_space = dir->i_sb->s_blocksize - EXT4_DIR_REC_LEN(0);
235 return 0? 22: entry_space / sizeof(struct dx_entry);
242 static void dx_show_index (char * label, struct dx_entry *entries)
244 int i, n = dx_get_count (entries);
245 printk("%s index ", label);
246 for (i = 0; i < n; i++) {
247 printk("%x->%u ", i? dx_get_hash(entries + i) :
248 0, dx_get_block(entries + i));
260 static struct stats dx_show_leaf(struct dx_hash_info *hinfo, struct ext4_dir_entry_2 *de,
261 int size, int show_names)
263 unsigned names = 0, space = 0;
264 char *base = (char *) de;
265 struct dx_hash_info h = *hinfo;
268 while ((char *) de < base + size)
274 int len = de->name_len;
275 char *name = de->name;
276 while (len--) printk("%c", *name++);
277 ext4fs_dirhash(de->name, de->name_len, &h);
278 printk(":%x.%u ", h.hash,
279 ((char *) de - base));
281 space += EXT4_DIR_REC_LEN(de->name_len);
284 de = (struct ext4_dir_entry_2 *) ((char *) de + le16_to_cpu(de->rec_len));
286 printk("(%i)\n", names);
287 return (struct stats) { names, space, 1 };
290 struct stats dx_show_entries(struct dx_hash_info *hinfo, struct inode *dir,
291 struct dx_entry *entries, int levels)
293 unsigned blocksize = dir->i_sb->s_blocksize;
294 unsigned count = dx_get_count (entries), names = 0, space = 0, i;
296 struct buffer_head *bh;
298 printk("%i indexed blocks...\n", count);
299 for (i = 0; i < count; i++, entries++)
301 u32 block = dx_get_block(entries), hash = i? dx_get_hash(entries): 0;
302 u32 range = i < count - 1? (dx_get_hash(entries + 1) - hash): ~hash;
304 printk("%s%3u:%03u hash %8x/%8x ",levels?"":" ", i, block, hash, range);
305 if (!(bh = ext4_bread (NULL,dir, block, 0,&err))) continue;
307 dx_show_entries(hinfo, dir, ((struct dx_node *) bh->b_data)->entries, levels - 1):
308 dx_show_leaf(hinfo, (struct ext4_dir_entry_2 *) bh->b_data, blocksize, 0);
309 names += stats.names;
310 space += stats.space;
311 bcount += stats.bcount;
315 printk("%snames %u, fullness %u (%u%%)\n", levels?"":" ",
316 names, space/bcount,(space/bcount)*100/blocksize);
317 return (struct stats) { names, space, bcount};
319 #endif /* DX_DEBUG */
322 * Probe for a directory leaf block to search.
324 * dx_probe can return ERR_BAD_DX_DIR, which means there was a format
325 * error in the directory index, and the caller should fall back to
326 * searching the directory normally. The callers of dx_probe **MUST**
327 * check for this error code, and make sure it never gets reflected
330 static struct dx_frame *
331 dx_probe(struct dentry *dentry, struct inode *dir,
332 struct dx_hash_info *hinfo, struct dx_frame *frame_in, int *err)
334 unsigned count, indirect;
335 struct dx_entry *at, *entries, *p, *q, *m;
336 struct dx_root *root;
337 struct buffer_head *bh;
338 struct dx_frame *frame = frame_in;
343 dir = dentry->d_parent->d_inode;
344 if (!(bh = ext4_bread (NULL,dir, 0, 0, err)))
346 root = (struct dx_root *) bh->b_data;
347 if (root->info.hash_version != DX_HASH_TEA &&
348 root->info.hash_version != DX_HASH_HALF_MD4 &&
349 root->info.hash_version != DX_HASH_LEGACY) {
350 ext4_warning(dir->i_sb, __FUNCTION__,
351 "Unrecognised inode hash code %d",
352 root->info.hash_version);
354 *err = ERR_BAD_DX_DIR;
357 hinfo->hash_version = root->info.hash_version;
358 hinfo->seed = EXT4_SB(dir->i_sb)->s_hash_seed;
360 ext4fs_dirhash(dentry->d_name.name, dentry->d_name.len, hinfo);
363 if (root->info.unused_flags & 1) {
364 ext4_warning(dir->i_sb, __FUNCTION__,
365 "Unimplemented inode hash flags: %#06x",
366 root->info.unused_flags);
368 *err = ERR_BAD_DX_DIR;
372 if ((indirect = root->info.indirect_levels) > 1) {
373 ext4_warning(dir->i_sb, __FUNCTION__,
374 "Unimplemented inode hash depth: %#06x",
375 root->info.indirect_levels);
377 *err = ERR_BAD_DX_DIR;
381 entries = (struct dx_entry *) (((char *)&root->info) +
382 root->info.info_length);
383 assert(dx_get_limit(entries) == dx_root_limit(dir,
384 root->info.info_length));
385 dxtrace (printk("Look up %x", hash));
388 count = dx_get_count(entries);
389 assert (count && count <= dx_get_limit(entries));
391 q = entries + count - 1;
395 dxtrace(printk("."));
396 if (dx_get_hash(m) > hash)
402 if (0) // linear search cross check
404 unsigned n = count - 1;
408 dxtrace(printk(","));
409 if (dx_get_hash(++at) > hash)
415 assert (at == p - 1);
419 dxtrace(printk(" %x->%u\n", at == entries? 0: dx_get_hash(at), dx_get_block(at)));
421 frame->entries = entries;
423 if (!indirect--) return frame;
424 if (!(bh = ext4_bread (NULL,dir, dx_get_block(at), 0, err)))
426 at = entries = ((struct dx_node *) bh->b_data)->entries;
427 assert (dx_get_limit(entries) == dx_node_limit (dir));
431 while (frame >= frame_in) {
439 static void dx_release (struct dx_frame *frames)
441 if (frames[0].bh == NULL)
444 if (((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels)
445 brelse(frames[1].bh);
446 brelse(frames[0].bh);
450 * This function increments the frame pointer to search the next leaf
451 * block, and reads in the necessary intervening nodes if the search
452 * should be necessary. Whether or not the search is necessary is
453 * controlled by the hash parameter. If the hash value is even, then
454 * the search is only continued if the next block starts with that
455 * hash value. This is used if we are searching for a specific file.
457 * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
459 * This function returns 1 if the caller should continue to search,
460 * or 0 if it should not. If there is an error reading one of the
461 * index blocks, it will a negative error code.
463 * If start_hash is non-null, it will be filled in with the starting
464 * hash of the next page.
466 static int ext4_htree_next_block(struct inode *dir, __u32 hash,
467 struct dx_frame *frame,
468 struct dx_frame *frames,
472 struct buffer_head *bh;
473 int err, num_frames = 0;
478 * Find the next leaf page by incrementing the frame pointer.
479 * If we run out of entries in the interior node, loop around and
480 * increment pointer in the parent node. When we break out of
481 * this loop, num_frames indicates the number of interior
482 * nodes need to be read.
485 if (++(p->at) < p->entries + dx_get_count(p->entries))
494 * If the hash is 1, then continue only if the next page has a
495 * continuation hash of any value. This is used for readdir
496 * handling. Otherwise, check to see if the hash matches the
497 * desired contiuation hash. If it doesn't, return since
498 * there's no point to read in the successive index pages.
500 bhash = dx_get_hash(p->at);
503 if ((hash & 1) == 0) {
504 if ((bhash & ~1) != hash)
508 * If the hash is HASH_NB_ALWAYS, we always go to the next
509 * block so no check is necessary
511 while (num_frames--) {
512 if (!(bh = ext4_bread(NULL, dir, dx_get_block(p->at),
514 return err; /* Failure */
518 p->at = p->entries = ((struct dx_node *) bh->b_data)->entries;
525 * p is at least 6 bytes before the end of page
527 static inline struct ext4_dir_entry_2 *ext4_next_entry(struct ext4_dir_entry_2 *p)
529 return (struct ext4_dir_entry_2 *)((char*)p + le16_to_cpu(p->rec_len));
533 * This function fills a red-black tree with information from a
534 * directory block. It returns the number directory entries loaded
535 * into the tree. If there is an error it is returned in err.
537 static int htree_dirblock_to_tree(struct file *dir_file,
538 struct inode *dir, int block,
539 struct dx_hash_info *hinfo,
540 __u32 start_hash, __u32 start_minor_hash)
542 struct buffer_head *bh;
543 struct ext4_dir_entry_2 *de, *top;
546 dxtrace(printk("In htree dirblock_to_tree: block %d\n", block));
547 if (!(bh = ext4_bread (NULL, dir, block, 0, &err)))
550 de = (struct ext4_dir_entry_2 *) bh->b_data;
551 top = (struct ext4_dir_entry_2 *) ((char *) de +
552 dir->i_sb->s_blocksize -
553 EXT4_DIR_REC_LEN(0));
554 for (; de < top; de = ext4_next_entry(de)) {
555 if (!ext4_check_dir_entry("htree_dirblock_to_tree", dir, de, bh,
556 (block<<EXT4_BLOCK_SIZE_BITS(dir->i_sb))
557 +((char *)de - bh->b_data))) {
558 /* On error, skip the f_pos to the next block. */
559 dir_file->f_pos = (dir_file->f_pos |
560 (dir->i_sb->s_blocksize - 1)) + 1;
564 ext4fs_dirhash(de->name, de->name_len, hinfo);
565 if ((hinfo->hash < start_hash) ||
566 ((hinfo->hash == start_hash) &&
567 (hinfo->minor_hash < start_minor_hash)))
571 if ((err = ext4_htree_store_dirent(dir_file,
572 hinfo->hash, hinfo->minor_hash, de)) != 0) {
584 * This function fills a red-black tree with information from a
585 * directory. We start scanning the directory in hash order, starting
586 * at start_hash and start_minor_hash.
588 * This function returns the number of entries inserted into the tree,
589 * or a negative error code.
591 int ext4_htree_fill_tree(struct file *dir_file, __u32 start_hash,
592 __u32 start_minor_hash, __u32 *next_hash)
594 struct dx_hash_info hinfo;
595 struct ext4_dir_entry_2 *de;
596 struct dx_frame frames[2], *frame;
603 dxtrace(printk("In htree_fill_tree, start hash: %x:%x\n", start_hash,
605 dir = dir_file->f_dentry->d_inode;
606 if (!(EXT4_I(dir)->i_flags & EXT4_INDEX_FL)) {
607 hinfo.hash_version = EXT4_SB(dir->i_sb)->s_def_hash_version;
608 hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed;
609 count = htree_dirblock_to_tree(dir_file, dir, 0, &hinfo,
610 start_hash, start_minor_hash);
614 hinfo.hash = start_hash;
615 hinfo.minor_hash = 0;
616 frame = dx_probe(NULL, dir_file->f_dentry->d_inode, &hinfo, frames, &err);
620 /* Add '.' and '..' from the htree header */
621 if (!start_hash && !start_minor_hash) {
622 de = (struct ext4_dir_entry_2 *) frames[0].bh->b_data;
623 if ((err = ext4_htree_store_dirent(dir_file, 0, 0, de)) != 0)
627 if (start_hash < 2 || (start_hash ==2 && start_minor_hash==0)) {
628 de = (struct ext4_dir_entry_2 *) frames[0].bh->b_data;
629 de = ext4_next_entry(de);
630 if ((err = ext4_htree_store_dirent(dir_file, 2, 0, de)) != 0)
636 block = dx_get_block(frame->at);
637 ret = htree_dirblock_to_tree(dir_file, dir, block, &hinfo,
638 start_hash, start_minor_hash);
645 ret = ext4_htree_next_block(dir, HASH_NB_ALWAYS,
646 frame, frames, &hashval);
647 *next_hash = hashval;
653 * Stop if: (a) there are no more entries, or
654 * (b) we have inserted at least one entry and the
655 * next hash value is not a continuation
658 (count && ((hashval & 1) == 0)))
662 dxtrace(printk("Fill tree: returned %d entries, next hash: %x\n",
672 * Directory block splitting, compacting
675 static int dx_make_map (struct ext4_dir_entry_2 *de, int size,
676 struct dx_hash_info *hinfo, struct dx_map_entry *map_tail)
679 char *base = (char *) de;
680 struct dx_hash_info h = *hinfo;
682 while ((char *) de < base + size)
684 if (de->name_len && de->inode) {
685 ext4fs_dirhash(de->name, de->name_len, &h);
687 map_tail->hash = h.hash;
688 map_tail->offs = (u32) ((char *) de - base);
692 /* XXX: do we need to check rec_len == 0 case? -Chris */
693 de = (struct ext4_dir_entry_2 *) ((char *) de + le16_to_cpu(de->rec_len));
698 static void dx_sort_map (struct dx_map_entry *map, unsigned count)
700 struct dx_map_entry *p, *q, *top = map + count - 1;
702 /* Combsort until bubble sort doesn't suck */
705 if (count - 9 < 2) /* 9, 10 -> 11 */
707 for (p = top, q = p - count; q >= map; p--, q--)
708 if (p->hash < q->hash)
711 /* Garden variety bubble sort */
716 if (q[1].hash >= q[0].hash)
724 static void dx_insert_block(struct dx_frame *frame, u32 hash, u32 block)
726 struct dx_entry *entries = frame->entries;
727 struct dx_entry *old = frame->at, *new = old + 1;
728 int count = dx_get_count(entries);
730 assert(count < dx_get_limit(entries));
731 assert(old < entries + count);
732 memmove(new + 1, new, (char *)(entries + count) - (char *)(new));
733 dx_set_hash(new, hash);
734 dx_set_block(new, block);
735 dx_set_count(entries, count + 1);
740 static void ext4_update_dx_flag(struct inode *inode)
742 if (!EXT4_HAS_COMPAT_FEATURE(inode->i_sb,
743 EXT4_FEATURE_COMPAT_DIR_INDEX))
744 EXT4_I(inode)->i_flags &= ~EXT4_INDEX_FL;
748 * NOTE! unlike strncmp, ext4_match returns 1 for success, 0 for failure.
750 * `len <= EXT4_NAME_LEN' is guaranteed by caller.
751 * `de != NULL' is guaranteed by caller.
753 static inline int ext4_match (int len, const char * const name,
754 struct ext4_dir_entry_2 * de)
756 if (len != de->name_len)
760 return !memcmp(name, de->name, len);
764 * Returns 0 if not found, -1 on failure, and 1 on success
766 static inline int search_dirblock(struct buffer_head * bh,
768 struct dentry *dentry,
769 unsigned long offset,
770 struct ext4_dir_entry_2 ** res_dir)
772 struct ext4_dir_entry_2 * de;
775 const char *name = dentry->d_name.name;
776 int namelen = dentry->d_name.len;
778 de = (struct ext4_dir_entry_2 *) bh->b_data;
779 dlimit = bh->b_data + dir->i_sb->s_blocksize;
780 while ((char *) de < dlimit) {
781 /* this code is executed quadratically often */
782 /* do minimal checking `by hand' */
784 if ((char *) de + namelen <= dlimit &&
785 ext4_match (namelen, name, de)) {
786 /* found a match - just to be sure, do a full check */
787 if (!ext4_check_dir_entry("ext4_find_entry",
788 dir, de, bh, offset))
793 /* prevent looping on a bad block */
794 de_len = le16_to_cpu(de->rec_len);
798 de = (struct ext4_dir_entry_2 *) ((char *) de + de_len);
807 * finds an entry in the specified directory with the wanted name. It
808 * returns the cache buffer in which the entry was found, and the entry
809 * itself (as a parameter - res_dir). It does NOT read the inode of the
810 * entry - you'll have to do that yourself if you want to.
812 * The returned buffer_head has ->b_count elevated. The caller is expected
813 * to brelse() it when appropriate.
815 static struct buffer_head * ext4_find_entry (struct dentry *dentry,
816 struct ext4_dir_entry_2 ** res_dir)
818 struct super_block * sb;
819 struct buffer_head * bh_use[NAMEI_RA_SIZE];
820 struct buffer_head * bh, *ret = NULL;
821 unsigned long start, block, b;
822 int ra_max = 0; /* Number of bh's in the readahead
824 int ra_ptr = 0; /* Current index into readahead
828 struct inode *dir = dentry->d_parent->d_inode;
835 blocksize = sb->s_blocksize;
836 namelen = dentry->d_name.len;
837 name = dentry->d_name.name;
838 if (namelen > EXT4_NAME_LEN)
840 #ifdef CONFIG_EXT4_INDEX
842 bh = ext4_dx_find_entry(dentry, res_dir, &err);
844 * On success, or if the error was file not found,
845 * return. Otherwise, fall back to doing a search the
848 if (bh || (err != ERR_BAD_DX_DIR))
850 dxtrace(printk("ext4_find_entry: dx failed, falling back\n"));
853 nblocks = dir->i_size >> EXT4_BLOCK_SIZE_BITS(sb);
854 start = EXT4_I(dir)->i_dir_start_lookup;
855 if (start >= nblocks)
861 * We deal with the read-ahead logic here.
863 if (ra_ptr >= ra_max) {
864 /* Refill the readahead buffer */
867 for (ra_max = 0; ra_max < NAMEI_RA_SIZE; ra_max++) {
869 * Terminate if we reach the end of the
870 * directory and must wrap, or if our
871 * search has finished at this block.
873 if (b >= nblocks || (num && block == start)) {
874 bh_use[ra_max] = NULL;
878 bh = ext4_getblk(NULL, dir, b++, 0, &err);
881 ll_rw_block(READ_META, 1, &bh);
884 if ((bh = bh_use[ra_ptr++]) == NULL)
887 if (!buffer_uptodate(bh)) {
888 /* read error, skip block & hope for the best */
889 ext4_error(sb, __FUNCTION__, "reading directory #%lu "
890 "offset %lu", dir->i_ino, block);
894 i = search_dirblock(bh, dir, dentry,
895 block << EXT4_BLOCK_SIZE_BITS(sb), res_dir);
897 EXT4_I(dir)->i_dir_start_lookup = block;
899 goto cleanup_and_exit;
903 goto cleanup_and_exit;
906 if (++block >= nblocks)
908 } while (block != start);
911 * If the directory has grown while we were searching, then
912 * search the last part of the directory before giving up.
915 nblocks = dir->i_size >> EXT4_BLOCK_SIZE_BITS(sb);
916 if (block < nblocks) {
922 /* Clean up the read-ahead blocks */
923 for (; ra_ptr < ra_max; ra_ptr++)
924 brelse (bh_use[ra_ptr]);
928 #ifdef CONFIG_EXT4_INDEX
929 static struct buffer_head * ext4_dx_find_entry(struct dentry *dentry,
930 struct ext4_dir_entry_2 **res_dir, int *err)
932 struct super_block * sb;
933 struct dx_hash_info hinfo;
935 struct dx_frame frames[2], *frame;
936 struct ext4_dir_entry_2 *de, *top;
937 struct buffer_head *bh;
940 int namelen = dentry->d_name.len;
941 const u8 *name = dentry->d_name.name;
942 struct inode *dir = dentry->d_parent->d_inode;
945 /* NFS may look up ".." - look at dx_root directory block */
946 if (namelen > 2 || name[0] != '.'||(name[1] != '.' && name[1] != '\0')){
947 if (!(frame = dx_probe(dentry, NULL, &hinfo, frames, err)))
951 frame->bh = NULL; /* for dx_release() */
952 frame->at = (struct dx_entry *)frames; /* hack for zero entry*/
953 dx_set_block(frame->at, 0); /* dx_root block is 0 */
957 block = dx_get_block(frame->at);
958 if (!(bh = ext4_bread (NULL,dir, block, 0, err)))
960 de = (struct ext4_dir_entry_2 *) bh->b_data;
961 top = (struct ext4_dir_entry_2 *) ((char *) de + sb->s_blocksize -
962 EXT4_DIR_REC_LEN(0));
963 for (; de < top; de = ext4_next_entry(de))
964 if (ext4_match (namelen, name, de)) {
965 if (!ext4_check_dir_entry("ext4_find_entry",
967 (block<<EXT4_BLOCK_SIZE_BITS(sb))
968 +((char *)de - bh->b_data))) {
977 /* Check to see if we should continue to search */
978 retval = ext4_htree_next_block(dir, hash, frame,
981 ext4_warning(sb, __FUNCTION__,
982 "error reading index page in directory #%lu",
987 } while (retval == 1);
991 dxtrace(printk("%s not found\n", name));
997 static struct dentry *ext4_lookup(struct inode * dir, struct dentry *dentry, struct nameidata *nd)
999 struct inode * inode;
1000 struct ext4_dir_entry_2 * de;
1001 struct buffer_head * bh;
1003 if (dentry->d_name.len > EXT4_NAME_LEN)
1004 return ERR_PTR(-ENAMETOOLONG);
1006 bh = ext4_find_entry(dentry, &de);
1009 unsigned long ino = le32_to_cpu(de->inode);
1011 if (!ext4_valid_inum(dir->i_sb, ino)) {
1012 ext4_error(dir->i_sb, "ext4_lookup",
1013 "bad inode number: %lu", ino);
1016 inode = iget(dir->i_sb, ino);
1019 return ERR_PTR(-EACCES);
1021 return d_splice_alias(inode, dentry);
1025 struct dentry *ext4_get_parent(struct dentry *child)
1028 struct dentry *parent;
1029 struct inode *inode;
1030 struct dentry dotdot;
1031 struct ext4_dir_entry_2 * de;
1032 struct buffer_head *bh;
1034 dotdot.d_name.name = "..";
1035 dotdot.d_name.len = 2;
1036 dotdot.d_parent = child; /* confusing, isn't it! */
1038 bh = ext4_find_entry(&dotdot, &de);
1041 return ERR_PTR(-ENOENT);
1042 ino = le32_to_cpu(de->inode);
1045 if (!ext4_valid_inum(child->d_inode->i_sb, ino)) {
1046 ext4_error(child->d_inode->i_sb, "ext4_get_parent",
1047 "bad inode number: %lu", ino);
1050 inode = iget(child->d_inode->i_sb, ino);
1053 return ERR_PTR(-EACCES);
1055 parent = d_alloc_anon(inode);
1058 parent = ERR_PTR(-ENOMEM);
1064 static unsigned char ext4_type_by_mode[S_IFMT >> S_SHIFT] = {
1065 [S_IFREG >> S_SHIFT] = EXT4_FT_REG_FILE,
1066 [S_IFDIR >> S_SHIFT] = EXT4_FT_DIR,
1067 [S_IFCHR >> S_SHIFT] = EXT4_FT_CHRDEV,
1068 [S_IFBLK >> S_SHIFT] = EXT4_FT_BLKDEV,
1069 [S_IFIFO >> S_SHIFT] = EXT4_FT_FIFO,
1070 [S_IFSOCK >> S_SHIFT] = EXT4_FT_SOCK,
1071 [S_IFLNK >> S_SHIFT] = EXT4_FT_SYMLINK,
1074 static inline void ext4_set_de_type(struct super_block *sb,
1075 struct ext4_dir_entry_2 *de,
1077 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FILETYPE))
1078 de->file_type = ext4_type_by_mode[(mode & S_IFMT)>>S_SHIFT];
1081 #ifdef CONFIG_EXT4_INDEX
1082 static struct ext4_dir_entry_2 *
1083 dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count)
1085 unsigned rec_len = 0;
1088 struct ext4_dir_entry_2 *de = (struct ext4_dir_entry_2 *) (from + map->offs);
1089 rec_len = EXT4_DIR_REC_LEN(de->name_len);
1090 memcpy (to, de, rec_len);
1091 ((struct ext4_dir_entry_2 *) to)->rec_len =
1092 cpu_to_le16(rec_len);
1097 return (struct ext4_dir_entry_2 *) (to - rec_len);
1100 static struct ext4_dir_entry_2* dx_pack_dirents(char *base, int size)
1102 struct ext4_dir_entry_2 *next, *to, *prev, *de = (struct ext4_dir_entry_2 *) base;
1103 unsigned rec_len = 0;
1106 while ((char*)de < base + size) {
1107 next = (struct ext4_dir_entry_2 *) ((char *) de +
1108 le16_to_cpu(de->rec_len));
1109 if (de->inode && de->name_len) {
1110 rec_len = EXT4_DIR_REC_LEN(de->name_len);
1112 memmove(to, de, rec_len);
1113 to->rec_len = cpu_to_le16(rec_len);
1115 to = (struct ext4_dir_entry_2 *) (((char *) to) + rec_len);
1122 static struct ext4_dir_entry_2 *do_split(handle_t *handle, struct inode *dir,
1123 struct buffer_head **bh,struct dx_frame *frame,
1124 struct dx_hash_info *hinfo, int *error)
1126 unsigned blocksize = dir->i_sb->s_blocksize;
1127 unsigned count, continued;
1128 struct buffer_head *bh2;
1131 struct dx_map_entry *map;
1132 char *data1 = (*bh)->b_data, *data2;
1134 struct ext4_dir_entry_2 *de = NULL, *de2;
1137 bh2 = ext4_append (handle, dir, &newblock, error);
1144 BUFFER_TRACE(*bh, "get_write_access");
1145 err = ext4_journal_get_write_access(handle, *bh);
1151 ext4_std_error(dir->i_sb, err);
1154 BUFFER_TRACE(frame->bh, "get_write_access");
1155 err = ext4_journal_get_write_access(handle, frame->bh);
1159 data2 = bh2->b_data;
1161 /* create map in the end of data2 block */
1162 map = (struct dx_map_entry *) (data2 + blocksize);
1163 count = dx_make_map ((struct ext4_dir_entry_2 *) data1,
1164 blocksize, hinfo, map);
1166 split = count/2; // need to adjust to actual middle
1167 dx_sort_map (map, count);
1168 hash2 = map[split].hash;
1169 continued = hash2 == map[split - 1].hash;
1170 dxtrace(printk("Split block %i at %x, %i/%i\n",
1171 dx_get_block(frame->at), hash2, split, count-split));
1173 /* Fancy dance to stay within two buffers */
1174 de2 = dx_move_dirents(data1, data2, map + split, count - split);
1175 de = dx_pack_dirents(data1,blocksize);
1176 de->rec_len = cpu_to_le16(data1 + blocksize - (char *) de);
1177 de2->rec_len = cpu_to_le16(data2 + blocksize - (char *) de2);
1178 dxtrace(dx_show_leaf (hinfo, (struct ext4_dir_entry_2 *) data1, blocksize, 1));
1179 dxtrace(dx_show_leaf (hinfo, (struct ext4_dir_entry_2 *) data2, blocksize, 1));
1181 /* Which block gets the new entry? */
1182 if (hinfo->hash >= hash2)
1187 dx_insert_block (frame, hash2 + continued, newblock);
1188 err = ext4_journal_dirty_metadata (handle, bh2);
1191 err = ext4_journal_dirty_metadata (handle, frame->bh);
1195 dxtrace(dx_show_index ("frame", frame->entries));
1203 * Add a new entry into a directory (leaf) block. If de is non-NULL,
1204 * it points to a directory entry which is guaranteed to be large
1205 * enough for new directory entry. If de is NULL, then
1206 * add_dirent_to_buf will attempt search the directory block for
1207 * space. It will return -ENOSPC if no space is available, and -EIO
1208 * and -EEXIST if directory entry already exists.
1210 * NOTE! bh is NOT released in the case where ENOSPC is returned. In
1211 * all other cases bh is released.
1213 static int add_dirent_to_buf(handle_t *handle, struct dentry *dentry,
1214 struct inode *inode, struct ext4_dir_entry_2 *de,
1215 struct buffer_head * bh)
1217 struct inode *dir = dentry->d_parent->d_inode;
1218 const char *name = dentry->d_name.name;
1219 int namelen = dentry->d_name.len;
1220 unsigned long offset = 0;
1221 unsigned short reclen;
1222 int nlen, rlen, err;
1225 reclen = EXT4_DIR_REC_LEN(namelen);
1227 de = (struct ext4_dir_entry_2 *)bh->b_data;
1228 top = bh->b_data + dir->i_sb->s_blocksize - reclen;
1229 while ((char *) de <= top) {
1230 if (!ext4_check_dir_entry("ext4_add_entry", dir, de,
1235 if (ext4_match (namelen, name, de)) {
1239 nlen = EXT4_DIR_REC_LEN(de->name_len);
1240 rlen = le16_to_cpu(de->rec_len);
1241 if ((de->inode? rlen - nlen: rlen) >= reclen)
1243 de = (struct ext4_dir_entry_2 *)((char *)de + rlen);
1246 if ((char *) de > top)
1249 BUFFER_TRACE(bh, "get_write_access");
1250 err = ext4_journal_get_write_access(handle, bh);
1252 ext4_std_error(dir->i_sb, err);
1257 /* By now the buffer is marked for journaling */
1258 nlen = EXT4_DIR_REC_LEN(de->name_len);
1259 rlen = le16_to_cpu(de->rec_len);
1261 struct ext4_dir_entry_2 *de1 = (struct ext4_dir_entry_2 *)((char *)de + nlen);
1262 de1->rec_len = cpu_to_le16(rlen - nlen);
1263 de->rec_len = cpu_to_le16(nlen);
1266 de->file_type = EXT4_FT_UNKNOWN;
1268 de->inode = cpu_to_le32(inode->i_ino);
1269 ext4_set_de_type(dir->i_sb, de, inode->i_mode);
1272 de->name_len = namelen;
1273 memcpy (de->name, name, namelen);
1275 * XXX shouldn't update any times until successful
1276 * completion of syscall, but too many callers depend
1279 * XXX similarly, too many callers depend on
1280 * ext4_new_inode() setting the times, but error
1281 * recovery deletes the inode, so the worst that can
1282 * happen is that the times are slightly out of date
1283 * and/or different from the directory change time.
1285 dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC;
1286 ext4_update_dx_flag(dir);
1288 ext4_mark_inode_dirty(handle, dir);
1289 BUFFER_TRACE(bh, "call ext4_journal_dirty_metadata");
1290 err = ext4_journal_dirty_metadata(handle, bh);
1292 ext4_std_error(dir->i_sb, err);
1297 #ifdef CONFIG_EXT4_INDEX
1299 * This converts a one block unindexed directory to a 3 block indexed
1300 * directory, and adds the dentry to the indexed directory.
1302 static int make_indexed_dir(handle_t *handle, struct dentry *dentry,
1303 struct inode *inode, struct buffer_head *bh)
1305 struct inode *dir = dentry->d_parent->d_inode;
1306 const char *name = dentry->d_name.name;
1307 int namelen = dentry->d_name.len;
1308 struct buffer_head *bh2;
1309 struct dx_root *root;
1310 struct dx_frame frames[2], *frame;
1311 struct dx_entry *entries;
1312 struct ext4_dir_entry_2 *de, *de2;
1317 struct dx_hash_info hinfo;
1319 struct fake_dirent *fde;
1321 blocksize = dir->i_sb->s_blocksize;
1322 dxtrace(printk("Creating index\n"));
1323 retval = ext4_journal_get_write_access(handle, bh);
1325 ext4_std_error(dir->i_sb, retval);
1329 root = (struct dx_root *) bh->b_data;
1331 bh2 = ext4_append (handle, dir, &block, &retval);
1336 EXT4_I(dir)->i_flags |= EXT4_INDEX_FL;
1337 data1 = bh2->b_data;
1339 /* The 0th block becomes the root, move the dirents out */
1340 fde = &root->dotdot;
1341 de = (struct ext4_dir_entry_2 *)((char *)fde + le16_to_cpu(fde->rec_len));
1342 len = ((char *) root) + blocksize - (char *) de;
1343 memcpy (data1, de, len);
1344 de = (struct ext4_dir_entry_2 *) data1;
1346 while ((char *)(de2=(void*)de+le16_to_cpu(de->rec_len)) < top)
1348 de->rec_len = cpu_to_le16(data1 + blocksize - (char *) de);
1349 /* Initialize the root; the dot dirents already exist */
1350 de = (struct ext4_dir_entry_2 *) (&root->dotdot);
1351 de->rec_len = cpu_to_le16(blocksize - EXT4_DIR_REC_LEN(2));
1352 memset (&root->info, 0, sizeof(root->info));
1353 root->info.info_length = sizeof(root->info);
1354 root->info.hash_version = EXT4_SB(dir->i_sb)->s_def_hash_version;
1355 entries = root->entries;
1356 dx_set_block (entries, 1);
1357 dx_set_count (entries, 1);
1358 dx_set_limit (entries, dx_root_limit(dir, sizeof(root->info)));
1360 /* Initialize as for dx_probe */
1361 hinfo.hash_version = root->info.hash_version;
1362 hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed;
1363 ext4fs_dirhash(name, namelen, &hinfo);
1365 frame->entries = entries;
1366 frame->at = entries;
1369 de = do_split(handle,dir, &bh, frame, &hinfo, &retval);
1370 dx_release (frames);
1374 return add_dirent_to_buf(handle, dentry, inode, de, bh);
1381 * adds a file entry to the specified directory, using the same
1382 * semantics as ext4_find_entry(). It returns NULL if it failed.
1384 * NOTE!! The inode part of 'de' is left at 0 - which means you
1385 * may not sleep between calling this and putting something into
1386 * the entry, as someone else might have used it while you slept.
1388 static int ext4_add_entry (handle_t *handle, struct dentry *dentry,
1389 struct inode *inode)
1391 struct inode *dir = dentry->d_parent->d_inode;
1392 unsigned long offset;
1393 struct buffer_head * bh;
1394 struct ext4_dir_entry_2 *de;
1395 struct super_block * sb;
1397 #ifdef CONFIG_EXT4_INDEX
1404 blocksize = sb->s_blocksize;
1405 if (!dentry->d_name.len)
1407 #ifdef CONFIG_EXT4_INDEX
1409 retval = ext4_dx_add_entry(handle, dentry, inode);
1410 if (!retval || (retval != ERR_BAD_DX_DIR))
1412 EXT4_I(dir)->i_flags &= ~EXT4_INDEX_FL;
1414 ext4_mark_inode_dirty(handle, dir);
1417 blocks = dir->i_size >> sb->s_blocksize_bits;
1418 for (block = 0, offset = 0; block < blocks; block++) {
1419 bh = ext4_bread(handle, dir, block, 0, &retval);
1422 retval = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
1423 if (retval != -ENOSPC)
1426 #ifdef CONFIG_EXT4_INDEX
1427 if (blocks == 1 && !dx_fallback &&
1428 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_DIR_INDEX))
1429 return make_indexed_dir(handle, dentry, inode, bh);
1433 bh = ext4_append(handle, dir, &block, &retval);
1436 de = (struct ext4_dir_entry_2 *) bh->b_data;
1438 de->rec_len = cpu_to_le16(blocksize);
1439 return add_dirent_to_buf(handle, dentry, inode, de, bh);
1442 #ifdef CONFIG_EXT4_INDEX
1444 * Returns 0 for success, or a negative error value
1446 static int ext4_dx_add_entry(handle_t *handle, struct dentry *dentry,
1447 struct inode *inode)
1449 struct dx_frame frames[2], *frame;
1450 struct dx_entry *entries, *at;
1451 struct dx_hash_info hinfo;
1452 struct buffer_head * bh;
1453 struct inode *dir = dentry->d_parent->d_inode;
1454 struct super_block * sb = dir->i_sb;
1455 struct ext4_dir_entry_2 *de;
1458 frame = dx_probe(dentry, NULL, &hinfo, frames, &err);
1461 entries = frame->entries;
1464 if (!(bh = ext4_bread(handle,dir, dx_get_block(frame->at), 0, &err)))
1467 BUFFER_TRACE(bh, "get_write_access");
1468 err = ext4_journal_get_write_access(handle, bh);
1472 err = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
1473 if (err != -ENOSPC) {
1478 /* Block full, should compress but for now just split */
1479 dxtrace(printk("using %u of %u node entries\n",
1480 dx_get_count(entries), dx_get_limit(entries)));
1481 /* Need to split index? */
1482 if (dx_get_count(entries) == dx_get_limit(entries)) {
1484 unsigned icount = dx_get_count(entries);
1485 int levels = frame - frames;
1486 struct dx_entry *entries2;
1487 struct dx_node *node2;
1488 struct buffer_head *bh2;
1490 if (levels && (dx_get_count(frames->entries) ==
1491 dx_get_limit(frames->entries))) {
1492 ext4_warning(sb, __FUNCTION__,
1493 "Directory index full!");
1497 bh2 = ext4_append (handle, dir, &newblock, &err);
1500 node2 = (struct dx_node *)(bh2->b_data);
1501 entries2 = node2->entries;
1502 node2->fake.rec_len = cpu_to_le16(sb->s_blocksize);
1503 node2->fake.inode = 0;
1504 BUFFER_TRACE(frame->bh, "get_write_access");
1505 err = ext4_journal_get_write_access(handle, frame->bh);
1509 unsigned icount1 = icount/2, icount2 = icount - icount1;
1510 unsigned hash2 = dx_get_hash(entries + icount1);
1511 dxtrace(printk("Split index %i/%i\n", icount1, icount2));
1513 BUFFER_TRACE(frame->bh, "get_write_access"); /* index root */
1514 err = ext4_journal_get_write_access(handle,
1519 memcpy ((char *) entries2, (char *) (entries + icount1),
1520 icount2 * sizeof(struct dx_entry));
1521 dx_set_count (entries, icount1);
1522 dx_set_count (entries2, icount2);
1523 dx_set_limit (entries2, dx_node_limit(dir));
1525 /* Which index block gets the new entry? */
1526 if (at - entries >= icount1) {
1527 frame->at = at = at - entries - icount1 + entries2;
1528 frame->entries = entries = entries2;
1529 swap(frame->bh, bh2);
1531 dx_insert_block (frames + 0, hash2, newblock);
1532 dxtrace(dx_show_index ("node", frames[1].entries));
1533 dxtrace(dx_show_index ("node",
1534 ((struct dx_node *) bh2->b_data)->entries));
1535 err = ext4_journal_dirty_metadata(handle, bh2);
1540 dxtrace(printk("Creating second level index...\n"));
1541 memcpy((char *) entries2, (char *) entries,
1542 icount * sizeof(struct dx_entry));
1543 dx_set_limit(entries2, dx_node_limit(dir));
1546 dx_set_count(entries, 1);
1547 dx_set_block(entries + 0, newblock);
1548 ((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels = 1;
1550 /* Add new access path frame */
1552 frame->at = at = at - entries + entries2;
1553 frame->entries = entries = entries2;
1555 err = ext4_journal_get_write_access(handle,
1560 ext4_journal_dirty_metadata(handle, frames[0].bh);
1562 de = do_split(handle, dir, &bh, frame, &hinfo, &err);
1565 err = add_dirent_to_buf(handle, dentry, inode, de, bh);
1570 ext4_std_error(dir->i_sb, err);
1580 * ext4_delete_entry deletes a directory entry by merging it with the
1583 static int ext4_delete_entry (handle_t *handle,
1585 struct ext4_dir_entry_2 * de_del,
1586 struct buffer_head * bh)
1588 struct ext4_dir_entry_2 * de, * pde;
1593 de = (struct ext4_dir_entry_2 *) bh->b_data;
1594 while (i < bh->b_size) {
1595 if (!ext4_check_dir_entry("ext4_delete_entry", dir, de, bh, i))
1598 BUFFER_TRACE(bh, "get_write_access");
1599 ext4_journal_get_write_access(handle, bh);
1602 cpu_to_le16(le16_to_cpu(pde->rec_len) +
1603 le16_to_cpu(de->rec_len));
1607 BUFFER_TRACE(bh, "call ext4_journal_dirty_metadata");
1608 ext4_journal_dirty_metadata(handle, bh);
1611 i += le16_to_cpu(de->rec_len);
1613 de = (struct ext4_dir_entry_2 *)
1614 ((char *) de + le16_to_cpu(de->rec_len));
1620 * ext4_mark_inode_dirty is somewhat expensive, so unlike ext2 we
1621 * do not perform it in these functions. We perform it at the call site,
1624 static inline void ext4_inc_count(handle_t *handle, struct inode *inode)
1629 static inline void ext4_dec_count(handle_t *handle, struct inode *inode)
1634 static int ext4_add_nondir(handle_t *handle,
1635 struct dentry *dentry, struct inode *inode)
1637 int err = ext4_add_entry(handle, dentry, inode);
1639 ext4_mark_inode_dirty(handle, inode);
1640 d_instantiate(dentry, inode);
1643 ext4_dec_count(handle, inode);
1649 * By the time this is called, we already have created
1650 * the directory cache entry for the new file, but it
1651 * is so far negative - it has no inode.
1653 * If the create succeeds, we fill in the inode information
1654 * with d_instantiate().
1656 static int ext4_create (struct inode * dir, struct dentry * dentry, int mode,
1657 struct nameidata *nd)
1660 struct inode * inode;
1661 int err, retries = 0;
1664 handle = ext4_journal_start(dir, EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
1665 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1666 2*EXT4_QUOTA_INIT_BLOCKS(dir->i_sb));
1668 return PTR_ERR(handle);
1670 if (IS_DIRSYNC(dir))
1673 inode = ext4_new_inode (handle, dir, mode);
1674 err = PTR_ERR(inode);
1675 if (!IS_ERR(inode)) {
1676 inode->i_op = &ext4_file_inode_operations;
1677 inode->i_fop = &ext4_file_operations;
1678 ext4_set_aops(inode);
1679 err = ext4_add_nondir(handle, dentry, inode);
1681 ext4_journal_stop(handle);
1682 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
1687 static int ext4_mknod (struct inode * dir, struct dentry *dentry,
1688 int mode, dev_t rdev)
1691 struct inode *inode;
1692 int err, retries = 0;
1694 if (!new_valid_dev(rdev))
1698 handle = ext4_journal_start(dir, EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
1699 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1700 2*EXT4_QUOTA_INIT_BLOCKS(dir->i_sb));
1702 return PTR_ERR(handle);
1704 if (IS_DIRSYNC(dir))
1707 inode = ext4_new_inode (handle, dir, mode);
1708 err = PTR_ERR(inode);
1709 if (!IS_ERR(inode)) {
1710 init_special_inode(inode, inode->i_mode, rdev);
1711 #ifdef CONFIG_EXT4DEV_FS_XATTR
1712 inode->i_op = &ext4_special_inode_operations;
1714 err = ext4_add_nondir(handle, dentry, inode);
1716 ext4_journal_stop(handle);
1717 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
1722 static int ext4_mkdir(struct inode * dir, struct dentry * dentry, int mode)
1725 struct inode * inode;
1726 struct buffer_head * dir_block;
1727 struct ext4_dir_entry_2 * de;
1728 int err, retries = 0;
1730 if (dir->i_nlink >= EXT4_LINK_MAX)
1734 handle = ext4_journal_start(dir, EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
1735 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1736 2*EXT4_QUOTA_INIT_BLOCKS(dir->i_sb));
1738 return PTR_ERR(handle);
1740 if (IS_DIRSYNC(dir))
1743 inode = ext4_new_inode (handle, dir, S_IFDIR | mode);
1744 err = PTR_ERR(inode);
1748 inode->i_op = &ext4_dir_inode_operations;
1749 inode->i_fop = &ext4_dir_operations;
1750 inode->i_size = EXT4_I(inode)->i_disksize = inode->i_sb->s_blocksize;
1751 dir_block = ext4_bread (handle, inode, 0, 1, &err);
1753 drop_nlink(inode); /* is this nlink == 0? */
1754 ext4_mark_inode_dirty(handle, inode);
1758 BUFFER_TRACE(dir_block, "get_write_access");
1759 ext4_journal_get_write_access(handle, dir_block);
1760 de = (struct ext4_dir_entry_2 *) dir_block->b_data;
1761 de->inode = cpu_to_le32(inode->i_ino);
1763 de->rec_len = cpu_to_le16(EXT4_DIR_REC_LEN(de->name_len));
1764 strcpy (de->name, ".");
1765 ext4_set_de_type(dir->i_sb, de, S_IFDIR);
1766 de = (struct ext4_dir_entry_2 *)
1767 ((char *) de + le16_to_cpu(de->rec_len));
1768 de->inode = cpu_to_le32(dir->i_ino);
1769 de->rec_len = cpu_to_le16(inode->i_sb->s_blocksize-EXT4_DIR_REC_LEN(1));
1771 strcpy (de->name, "..");
1772 ext4_set_de_type(dir->i_sb, de, S_IFDIR);
1774 BUFFER_TRACE(dir_block, "call ext4_journal_dirty_metadata");
1775 ext4_journal_dirty_metadata(handle, dir_block);
1777 ext4_mark_inode_dirty(handle, inode);
1778 err = ext4_add_entry (handle, dentry, inode);
1781 ext4_mark_inode_dirty(handle, inode);
1786 ext4_update_dx_flag(dir);
1787 ext4_mark_inode_dirty(handle, dir);
1788 d_instantiate(dentry, inode);
1790 ext4_journal_stop(handle);
1791 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
1797 * routine to check that the specified directory is empty (for rmdir)
1799 static int empty_dir (struct inode * inode)
1801 unsigned long offset;
1802 struct buffer_head * bh;
1803 struct ext4_dir_entry_2 * de, * de1;
1804 struct super_block * sb;
1808 if (inode->i_size < EXT4_DIR_REC_LEN(1) + EXT4_DIR_REC_LEN(2) ||
1809 !(bh = ext4_bread (NULL, inode, 0, 0, &err))) {
1811 ext4_error(inode->i_sb, __FUNCTION__,
1812 "error %d reading directory #%lu offset 0",
1815 ext4_warning(inode->i_sb, __FUNCTION__,
1816 "bad directory (dir #%lu) - no data block",
1820 de = (struct ext4_dir_entry_2 *) bh->b_data;
1821 de1 = (struct ext4_dir_entry_2 *)
1822 ((char *) de + le16_to_cpu(de->rec_len));
1823 if (le32_to_cpu(de->inode) != inode->i_ino ||
1824 !le32_to_cpu(de1->inode) ||
1825 strcmp (".", de->name) ||
1826 strcmp ("..", de1->name)) {
1827 ext4_warning (inode->i_sb, "empty_dir",
1828 "bad directory (dir #%lu) - no `.' or `..'",
1833 offset = le16_to_cpu(de->rec_len) + le16_to_cpu(de1->rec_len);
1834 de = (struct ext4_dir_entry_2 *)
1835 ((char *) de1 + le16_to_cpu(de1->rec_len));
1836 while (offset < inode->i_size ) {
1838 (void *) de >= (void *) (bh->b_data+sb->s_blocksize)) {
1841 bh = ext4_bread (NULL, inode,
1842 offset >> EXT4_BLOCK_SIZE_BITS(sb), 0, &err);
1845 ext4_error(sb, __FUNCTION__,
1846 "error %d reading directory"
1848 err, inode->i_ino, offset);
1849 offset += sb->s_blocksize;
1852 de = (struct ext4_dir_entry_2 *) bh->b_data;
1854 if (!ext4_check_dir_entry("empty_dir", inode, de, bh, offset)) {
1855 de = (struct ext4_dir_entry_2 *)(bh->b_data +
1857 offset = (offset | (sb->s_blocksize - 1)) + 1;
1860 if (le32_to_cpu(de->inode)) {
1864 offset += le16_to_cpu(de->rec_len);
1865 de = (struct ext4_dir_entry_2 *)
1866 ((char *) de + le16_to_cpu(de->rec_len));
1872 /* ext4_orphan_add() links an unlinked or truncated inode into a list of
1873 * such inodes, starting at the superblock, in case we crash before the
1874 * file is closed/deleted, or in case the inode truncate spans multiple
1875 * transactions and the last transaction is not recovered after a crash.
1877 * At filesystem recovery time, we walk this list deleting unlinked
1878 * inodes and truncating linked inodes in ext4_orphan_cleanup().
1880 int ext4_orphan_add(handle_t *handle, struct inode *inode)
1882 struct super_block *sb = inode->i_sb;
1883 struct ext4_iloc iloc;
1887 if (!list_empty(&EXT4_I(inode)->i_orphan))
1890 /* Orphan handling is only valid for files with data blocks
1891 * being truncated, or files being unlinked. */
1893 /* @@@ FIXME: Observation from aviro:
1894 * I think I can trigger J_ASSERT in ext4_orphan_add(). We block
1895 * here (on lock_super()), so race with ext4_link() which might bump
1896 * ->i_nlink. For, say it, character device. Not a regular file,
1897 * not a directory, not a symlink and ->i_nlink > 0.
1899 J_ASSERT ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
1900 S_ISLNK(inode->i_mode)) || inode->i_nlink == 0);
1902 BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get_write_access");
1903 err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
1907 err = ext4_reserve_inode_write(handle, inode, &iloc);
1911 /* Insert this inode at the head of the on-disk orphan list... */
1912 NEXT_ORPHAN(inode) = le32_to_cpu(EXT4_SB(sb)->s_es->s_last_orphan);
1913 EXT4_SB(sb)->s_es->s_last_orphan = cpu_to_le32(inode->i_ino);
1914 err = ext4_journal_dirty_metadata(handle, EXT4_SB(sb)->s_sbh);
1915 rc = ext4_mark_iloc_dirty(handle, inode, &iloc);
1919 /* Only add to the head of the in-memory list if all the
1920 * previous operations succeeded. If the orphan_add is going to
1921 * fail (possibly taking the journal offline), we can't risk
1922 * leaving the inode on the orphan list: stray orphan-list
1923 * entries can cause panics at unmount time.
1925 * This is safe: on error we're going to ignore the orphan list
1926 * anyway on the next recovery. */
1928 list_add(&EXT4_I(inode)->i_orphan, &EXT4_SB(sb)->s_orphan);
1930 jbd_debug(4, "superblock will point to %lu\n", inode->i_ino);
1931 jbd_debug(4, "orphan inode %lu will point to %d\n",
1932 inode->i_ino, NEXT_ORPHAN(inode));
1935 ext4_std_error(inode->i_sb, err);
1940 * ext4_orphan_del() removes an unlinked or truncated inode from the list
1941 * of such inodes stored on disk, because it is finally being cleaned up.
1943 int ext4_orphan_del(handle_t *handle, struct inode *inode)
1945 struct list_head *prev;
1946 struct ext4_inode_info *ei = EXT4_I(inode);
1947 struct ext4_sb_info *sbi;
1948 unsigned long ino_next;
1949 struct ext4_iloc iloc;
1952 lock_super(inode->i_sb);
1953 if (list_empty(&ei->i_orphan)) {
1954 unlock_super(inode->i_sb);
1958 ino_next = NEXT_ORPHAN(inode);
1959 prev = ei->i_orphan.prev;
1960 sbi = EXT4_SB(inode->i_sb);
1962 jbd_debug(4, "remove inode %lu from orphan list\n", inode->i_ino);
1964 list_del_init(&ei->i_orphan);
1966 /* If we're on an error path, we may not have a valid
1967 * transaction handle with which to update the orphan list on
1968 * disk, but we still need to remove the inode from the linked
1969 * list in memory. */
1973 err = ext4_reserve_inode_write(handle, inode, &iloc);
1977 if (prev == &sbi->s_orphan) {
1978 jbd_debug(4, "superblock will point to %lu\n", ino_next);
1979 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
1980 err = ext4_journal_get_write_access(handle, sbi->s_sbh);
1983 sbi->s_es->s_last_orphan = cpu_to_le32(ino_next);
1984 err = ext4_journal_dirty_metadata(handle, sbi->s_sbh);
1986 struct ext4_iloc iloc2;
1987 struct inode *i_prev =
1988 &list_entry(prev, struct ext4_inode_info, i_orphan)->vfs_inode;
1990 jbd_debug(4, "orphan inode %lu will point to %lu\n",
1991 i_prev->i_ino, ino_next);
1992 err = ext4_reserve_inode_write(handle, i_prev, &iloc2);
1995 NEXT_ORPHAN(i_prev) = ino_next;
1996 err = ext4_mark_iloc_dirty(handle, i_prev, &iloc2);
2000 NEXT_ORPHAN(inode) = 0;
2001 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
2004 ext4_std_error(inode->i_sb, err);
2006 unlock_super(inode->i_sb);
2014 static int ext4_rmdir (struct inode * dir, struct dentry *dentry)
2017 struct inode * inode;
2018 struct buffer_head * bh;
2019 struct ext4_dir_entry_2 * de;
2022 /* Initialize quotas before so that eventual writes go in
2023 * separate transaction */
2024 DQUOT_INIT(dentry->d_inode);
2025 handle = ext4_journal_start(dir, EXT4_DELETE_TRANS_BLOCKS(dir->i_sb));
2027 return PTR_ERR(handle);
2030 bh = ext4_find_entry (dentry, &de);
2034 if (IS_DIRSYNC(dir))
2037 inode = dentry->d_inode;
2040 if (le32_to_cpu(de->inode) != inode->i_ino)
2043 retval = -ENOTEMPTY;
2044 if (!empty_dir (inode))
2047 retval = ext4_delete_entry(handle, dir, de, bh);
2050 if (inode->i_nlink != 2)
2051 ext4_warning (inode->i_sb, "ext4_rmdir",
2052 "empty directory has nlink!=2 (%d)",
2056 /* There's no need to set i_disksize: the fact that i_nlink is
2057 * zero will ensure that the right thing happens during any
2060 ext4_orphan_add(handle, inode);
2061 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
2062 ext4_mark_inode_dirty(handle, inode);
2064 ext4_update_dx_flag(dir);
2065 ext4_mark_inode_dirty(handle, dir);
2068 ext4_journal_stop(handle);
2073 static int ext4_unlink(struct inode * dir, struct dentry *dentry)
2076 struct inode * inode;
2077 struct buffer_head * bh;
2078 struct ext4_dir_entry_2 * de;
2081 /* Initialize quotas before so that eventual writes go
2082 * in separate transaction */
2083 DQUOT_INIT(dentry->d_inode);
2084 handle = ext4_journal_start(dir, EXT4_DELETE_TRANS_BLOCKS(dir->i_sb));
2086 return PTR_ERR(handle);
2088 if (IS_DIRSYNC(dir))
2092 bh = ext4_find_entry (dentry, &de);
2096 inode = dentry->d_inode;
2099 if (le32_to_cpu(de->inode) != inode->i_ino)
2102 if (!inode->i_nlink) {
2103 ext4_warning (inode->i_sb, "ext4_unlink",
2104 "Deleting nonexistent file (%lu), %d",
2105 inode->i_ino, inode->i_nlink);
2108 retval = ext4_delete_entry(handle, dir, de, bh);
2111 dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
2112 ext4_update_dx_flag(dir);
2113 ext4_mark_inode_dirty(handle, dir);
2115 if (!inode->i_nlink)
2116 ext4_orphan_add(handle, inode);
2117 inode->i_ctime = dir->i_ctime;
2118 ext4_mark_inode_dirty(handle, inode);
2122 ext4_journal_stop(handle);
2127 static int ext4_symlink (struct inode * dir,
2128 struct dentry *dentry, const char * symname)
2131 struct inode * inode;
2132 int l, err, retries = 0;
2134 l = strlen(symname)+1;
2135 if (l > dir->i_sb->s_blocksize)
2136 return -ENAMETOOLONG;
2139 handle = ext4_journal_start(dir, EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
2140 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 5 +
2141 2*EXT4_QUOTA_INIT_BLOCKS(dir->i_sb));
2143 return PTR_ERR(handle);
2145 if (IS_DIRSYNC(dir))
2148 inode = ext4_new_inode (handle, dir, S_IFLNK|S_IRWXUGO);
2149 err = PTR_ERR(inode);
2153 if (l > sizeof (EXT4_I(inode)->i_data)) {
2154 inode->i_op = &ext4_symlink_inode_operations;
2155 ext4_set_aops(inode);
2157 * page_symlink() calls into ext4_prepare/commit_write.
2158 * We have a transaction open. All is sweetness. It also sets
2159 * i_size in generic_commit_write().
2161 err = __page_symlink(inode, symname, l,
2162 mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS);
2164 ext4_dec_count(handle, inode);
2165 ext4_mark_inode_dirty(handle, inode);
2170 inode->i_op = &ext4_fast_symlink_inode_operations;
2171 memcpy((char*)&EXT4_I(inode)->i_data,symname,l);
2172 inode->i_size = l-1;
2174 EXT4_I(inode)->i_disksize = inode->i_size;
2175 err = ext4_add_nondir(handle, dentry, inode);
2177 ext4_journal_stop(handle);
2178 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
2183 static int ext4_link (struct dentry * old_dentry,
2184 struct inode * dir, struct dentry *dentry)
2187 struct inode *inode = old_dentry->d_inode;
2188 int err, retries = 0;
2190 if (inode->i_nlink >= EXT4_LINK_MAX)
2194 handle = ext4_journal_start(dir, EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
2195 EXT4_INDEX_EXTRA_TRANS_BLOCKS);
2197 return PTR_ERR(handle);
2199 if (IS_DIRSYNC(dir))
2202 inode->i_ctime = CURRENT_TIME_SEC;
2203 ext4_inc_count(handle, inode);
2204 atomic_inc(&inode->i_count);
2206 err = ext4_add_nondir(handle, dentry, inode);
2207 ext4_journal_stop(handle);
2208 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
2213 #define PARENT_INO(buffer) \
2214 ((struct ext4_dir_entry_2 *) ((char *) buffer + \
2215 le16_to_cpu(((struct ext4_dir_entry_2 *) buffer)->rec_len)))->inode
2218 * Anybody can rename anything with this: the permission checks are left to the
2219 * higher-level routines.
2221 static int ext4_rename (struct inode * old_dir, struct dentry *old_dentry,
2222 struct inode * new_dir,struct dentry *new_dentry)
2225 struct inode * old_inode, * new_inode;
2226 struct buffer_head * old_bh, * new_bh, * dir_bh;
2227 struct ext4_dir_entry_2 * old_de, * new_de;
2230 old_bh = new_bh = dir_bh = NULL;
2232 /* Initialize quotas before so that eventual writes go
2233 * in separate transaction */
2234 if (new_dentry->d_inode)
2235 DQUOT_INIT(new_dentry->d_inode);
2236 handle = ext4_journal_start(old_dir, 2 *
2237 EXT4_DATA_TRANS_BLOCKS(old_dir->i_sb) +
2238 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 2);
2240 return PTR_ERR(handle);
2242 if (IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir))
2245 old_bh = ext4_find_entry (old_dentry, &old_de);
2247 * Check for inode number is _not_ due to possible IO errors.
2248 * We might rmdir the source, keep it as pwd of some process
2249 * and merrily kill the link to whatever was created under the
2250 * same name. Goodbye sticky bit ;-<
2252 old_inode = old_dentry->d_inode;
2254 if (!old_bh || le32_to_cpu(old_de->inode) != old_inode->i_ino)
2257 new_inode = new_dentry->d_inode;
2258 new_bh = ext4_find_entry (new_dentry, &new_de);
2265 if (S_ISDIR(old_inode->i_mode)) {
2267 retval = -ENOTEMPTY;
2268 if (!empty_dir (new_inode))
2272 dir_bh = ext4_bread (handle, old_inode, 0, 0, &retval);
2275 if (le32_to_cpu(PARENT_INO(dir_bh->b_data)) != old_dir->i_ino)
2278 if (!new_inode && new_dir!=old_dir &&
2279 new_dir->i_nlink >= EXT4_LINK_MAX)
2283 retval = ext4_add_entry (handle, new_dentry, old_inode);
2287 BUFFER_TRACE(new_bh, "get write access");
2288 ext4_journal_get_write_access(handle, new_bh);
2289 new_de->inode = cpu_to_le32(old_inode->i_ino);
2290 if (EXT4_HAS_INCOMPAT_FEATURE(new_dir->i_sb,
2291 EXT4_FEATURE_INCOMPAT_FILETYPE))
2292 new_de->file_type = old_de->file_type;
2293 new_dir->i_version++;
2294 BUFFER_TRACE(new_bh, "call ext4_journal_dirty_metadata");
2295 ext4_journal_dirty_metadata(handle, new_bh);
2301 * Like most other Unix systems, set the ctime for inodes on a
2304 old_inode->i_ctime = CURRENT_TIME_SEC;
2305 ext4_mark_inode_dirty(handle, old_inode);
2310 if (le32_to_cpu(old_de->inode) != old_inode->i_ino ||
2311 old_de->name_len != old_dentry->d_name.len ||
2312 strncmp(old_de->name, old_dentry->d_name.name, old_de->name_len) ||
2313 (retval = ext4_delete_entry(handle, old_dir,
2314 old_de, old_bh)) == -ENOENT) {
2315 /* old_de could have moved from under us during htree split, so
2316 * make sure that we are deleting the right entry. We might
2317 * also be pointing to a stale entry in the unused part of
2318 * old_bh so just checking inum and the name isn't enough. */
2319 struct buffer_head *old_bh2;
2320 struct ext4_dir_entry_2 *old_de2;
2322 old_bh2 = ext4_find_entry(old_dentry, &old_de2);
2324 retval = ext4_delete_entry(handle, old_dir,
2330 ext4_warning(old_dir->i_sb, "ext4_rename",
2331 "Deleting old file (%lu), %d, error=%d",
2332 old_dir->i_ino, old_dir->i_nlink, retval);
2336 drop_nlink(new_inode);
2337 new_inode->i_ctime = CURRENT_TIME_SEC;
2339 old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME_SEC;
2340 ext4_update_dx_flag(old_dir);
2342 BUFFER_TRACE(dir_bh, "get_write_access");
2343 ext4_journal_get_write_access(handle, dir_bh);
2344 PARENT_INO(dir_bh->b_data) = cpu_to_le32(new_dir->i_ino);
2345 BUFFER_TRACE(dir_bh, "call ext4_journal_dirty_metadata");
2346 ext4_journal_dirty_metadata(handle, dir_bh);
2347 drop_nlink(old_dir);
2349 drop_nlink(new_inode);
2352 ext4_update_dx_flag(new_dir);
2353 ext4_mark_inode_dirty(handle, new_dir);
2356 ext4_mark_inode_dirty(handle, old_dir);
2358 ext4_mark_inode_dirty(handle, new_inode);
2359 if (!new_inode->i_nlink)
2360 ext4_orphan_add(handle, new_inode);
2368 ext4_journal_stop(handle);
2373 * directories can handle most operations...
2375 struct inode_operations ext4_dir_inode_operations = {
2376 .create = ext4_create,
2377 .lookup = ext4_lookup,
2379 .unlink = ext4_unlink,
2380 .symlink = ext4_symlink,
2381 .mkdir = ext4_mkdir,
2382 .rmdir = ext4_rmdir,
2383 .mknod = ext4_mknod,
2384 .rename = ext4_rename,
2385 .setattr = ext4_setattr,
2386 #ifdef CONFIG_EXT4DEV_FS_XATTR
2387 .setxattr = generic_setxattr,
2388 .getxattr = generic_getxattr,
2389 .listxattr = ext4_listxattr,
2390 .removexattr = generic_removexattr,
2392 .permission = ext4_permission,
2395 struct inode_operations ext4_special_inode_operations = {
2396 .setattr = ext4_setattr,
2397 #ifdef CONFIG_EXT4DEV_FS_XATTR
2398 .setxattr = generic_setxattr,
2399 .getxattr = generic_getxattr,
2400 .listxattr = ext4_listxattr,
2401 .removexattr = generic_removexattr,
2403 .permission = ext4_permission,