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>
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
*ext4_append(handle_t
*handle
,
54 ext4_lblk_t
*block
, int *err
)
56 struct buffer_head
*bh
;
58 *block
= inode
->i_size
>> inode
->i_sb
->s_blocksize_bits
;
60 if ((bh
= ext4_bread(handle
, inode
, *block
, 1, err
))) {
61 inode
->i_size
+= inode
->i_sb
->s_blocksize
;
62 EXT4_I(inode
)->i_disksize
= inode
->i_size
;
63 ext4_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
;
147 static inline ext4_lblk_t
dx_get_block(struct dx_entry
*entry
);
148 static void dx_set_block(struct dx_entry
*entry
, ext4_lblk_t 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 ext4_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 ext4_dir_entry_2
*dx_move_dirents (char *from
, char *to
,
167 struct dx_map_entry
*offsets
, int count
);
168 static struct ext4_dir_entry_2
* dx_pack_dirents (char *base
, int size
);
169 static void dx_insert_block(struct dx_frame
*frame
,
170 u32 hash
, ext4_lblk_t 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 ext4_lblk_t
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
, ext4_lblk_t 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->%lu ", i
? dx_get_hash(entries
+ i
) :
248 0, (unsigned long)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
= ext4_next_entry(de
);
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 ext4_lblk_t block
= dx_get_block(entries
);
302 ext4_lblk_t hash
= i
? dx_get_hash(entries
): 0;
303 u32 range
= i
< count
- 1? (dx_get_hash(entries
+ 1) - hash
): ~hash
;
305 printk("%s%3u:%03u hash %8x/%8x ",levels
?"":" ", i
, block
, hash
, range
);
306 if (!(bh
= ext4_bread (NULL
,dir
, block
, 0,&err
))) continue;
308 dx_show_entries(hinfo
, dir
, ((struct dx_node
*) bh
->b_data
)->entries
, levels
- 1):
309 dx_show_leaf(hinfo
, (struct ext4_dir_entry_2
*) bh
->b_data
, blocksize
, 0);
310 names
+= stats
.names
;
311 space
+= stats
.space
;
312 bcount
+= stats
.bcount
;
316 printk("%snames %u, fullness %u (%u%%)\n", levels
?"":" ",
317 names
, space
/bcount
,(space
/bcount
)*100/blocksize
);
318 return (struct stats
) { names
, space
, bcount
};
320 #endif /* DX_DEBUG */
323 * Probe for a directory leaf block to search.
325 * dx_probe can return ERR_BAD_DX_DIR, which means there was a format
326 * error in the directory index, and the caller should fall back to
327 * searching the directory normally. The callers of dx_probe **MUST**
328 * check for this error code, and make sure it never gets reflected
331 static struct dx_frame
*
332 dx_probe(struct dentry
*dentry
, struct inode
*dir
,
333 struct dx_hash_info
*hinfo
, struct dx_frame
*frame_in
, int *err
)
335 unsigned count
, indirect
;
336 struct dx_entry
*at
, *entries
, *p
, *q
, *m
;
337 struct dx_root
*root
;
338 struct buffer_head
*bh
;
339 struct dx_frame
*frame
= frame_in
;
344 dir
= dentry
->d_parent
->d_inode
;
345 if (!(bh
= ext4_bread (NULL
,dir
, 0, 0, err
)))
347 root
= (struct dx_root
*) bh
->b_data
;
348 if (root
->info
.hash_version
!= DX_HASH_TEA
&&
349 root
->info
.hash_version
!= DX_HASH_HALF_MD4
&&
350 root
->info
.hash_version
!= DX_HASH_LEGACY
) {
351 ext4_warning(dir
->i_sb
, __FUNCTION__
,
352 "Unrecognised inode hash code %d",
353 root
->info
.hash_version
);
355 *err
= ERR_BAD_DX_DIR
;
358 hinfo
->hash_version
= root
->info
.hash_version
;
359 hinfo
->seed
= EXT4_SB(dir
->i_sb
)->s_hash_seed
;
361 ext4fs_dirhash(dentry
->d_name
.name
, dentry
->d_name
.len
, hinfo
);
364 if (root
->info
.unused_flags
& 1) {
365 ext4_warning(dir
->i_sb
, __FUNCTION__
,
366 "Unimplemented inode hash flags: %#06x",
367 root
->info
.unused_flags
);
369 *err
= ERR_BAD_DX_DIR
;
373 if ((indirect
= root
->info
.indirect_levels
) > 1) {
374 ext4_warning(dir
->i_sb
, __FUNCTION__
,
375 "Unimplemented inode hash depth: %#06x",
376 root
->info
.indirect_levels
);
378 *err
= ERR_BAD_DX_DIR
;
382 entries
= (struct dx_entry
*) (((char *)&root
->info
) +
383 root
->info
.info_length
);
385 if (dx_get_limit(entries
) != dx_root_limit(dir
,
386 root
->info
.info_length
)) {
387 ext4_warning(dir
->i_sb
, __FUNCTION__
,
388 "dx entry: limit != root limit");
390 *err
= ERR_BAD_DX_DIR
;
394 dxtrace (printk("Look up %x", hash
));
397 count
= dx_get_count(entries
);
398 if (!count
|| count
> dx_get_limit(entries
)) {
399 ext4_warning(dir
->i_sb
, __FUNCTION__
,
400 "dx entry: no count or count > limit");
402 *err
= ERR_BAD_DX_DIR
;
407 q
= entries
+ count
- 1;
411 dxtrace(printk("."));
412 if (dx_get_hash(m
) > hash
)
418 if (0) // linear search cross check
420 unsigned n
= count
- 1;
424 dxtrace(printk(","));
425 if (dx_get_hash(++at
) > hash
)
431 assert (at
== p
- 1);
435 dxtrace(printk(" %x->%u\n", at
== entries
? 0: dx_get_hash(at
), dx_get_block(at
)));
437 frame
->entries
= entries
;
439 if (!indirect
--) return frame
;
440 if (!(bh
= ext4_bread (NULL
,dir
, dx_get_block(at
), 0, err
)))
442 at
= entries
= ((struct dx_node
*) bh
->b_data
)->entries
;
443 if (dx_get_limit(entries
) != dx_node_limit (dir
)) {
444 ext4_warning(dir
->i_sb
, __FUNCTION__
,
445 "dx entry: limit != node limit");
447 *err
= ERR_BAD_DX_DIR
;
454 while (frame
>= frame_in
) {
459 if (*err
== ERR_BAD_DX_DIR
)
460 ext4_warning(dir
->i_sb
, __FUNCTION__
,
461 "Corrupt dir inode %ld, running e2fsck is "
462 "recommended.", dir
->i_ino
);
466 static void dx_release (struct dx_frame
*frames
)
468 if (frames
[0].bh
== NULL
)
471 if (((struct dx_root
*) frames
[0].bh
->b_data
)->info
.indirect_levels
)
472 brelse(frames
[1].bh
);
473 brelse(frames
[0].bh
);
477 * This function increments the frame pointer to search the next leaf
478 * block, and reads in the necessary intervening nodes if the search
479 * should be necessary. Whether or not the search is necessary is
480 * controlled by the hash parameter. If the hash value is even, then
481 * the search is only continued if the next block starts with that
482 * hash value. This is used if we are searching for a specific file.
484 * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
486 * This function returns 1 if the caller should continue to search,
487 * or 0 if it should not. If there is an error reading one of the
488 * index blocks, it will a negative error code.
490 * If start_hash is non-null, it will be filled in with the starting
491 * hash of the next page.
493 static int ext4_htree_next_block(struct inode
*dir
, __u32 hash
,
494 struct dx_frame
*frame
,
495 struct dx_frame
*frames
,
499 struct buffer_head
*bh
;
500 int err
, num_frames
= 0;
505 * Find the next leaf page by incrementing the frame pointer.
506 * If we run out of entries in the interior node, loop around and
507 * increment pointer in the parent node. When we break out of
508 * this loop, num_frames indicates the number of interior
509 * nodes need to be read.
512 if (++(p
->at
) < p
->entries
+ dx_get_count(p
->entries
))
521 * If the hash is 1, then continue only if the next page has a
522 * continuation hash of any value. This is used for readdir
523 * handling. Otherwise, check to see if the hash matches the
524 * desired contiuation hash. If it doesn't, return since
525 * there's no point to read in the successive index pages.
527 bhash
= dx_get_hash(p
->at
);
530 if ((hash
& 1) == 0) {
531 if ((bhash
& ~1) != hash
)
535 * If the hash is HASH_NB_ALWAYS, we always go to the next
536 * block so no check is necessary
538 while (num_frames
--) {
539 if (!(bh
= ext4_bread(NULL
, dir
, dx_get_block(p
->at
),
541 return err
; /* Failure */
545 p
->at
= p
->entries
= ((struct dx_node
*) bh
->b_data
)->entries
;
552 * p is at least 6 bytes before the end of page
554 static inline struct ext4_dir_entry_2
*ext4_next_entry(struct ext4_dir_entry_2
*p
)
556 return (struct ext4_dir_entry_2
*)((char *)p
+
557 ext4_rec_len_from_disk(p
->rec_len
));
561 * This function fills a red-black tree with information from a
562 * directory block. It returns the number directory entries loaded
563 * into the tree. If there is an error it is returned in err.
565 static int htree_dirblock_to_tree(struct file
*dir_file
,
566 struct inode
*dir
, ext4_lblk_t block
,
567 struct dx_hash_info
*hinfo
,
568 __u32 start_hash
, __u32 start_minor_hash
)
570 struct buffer_head
*bh
;
571 struct ext4_dir_entry_2
*de
, *top
;
574 dxtrace(printk(KERN_INFO
"In htree dirblock_to_tree: block %lu\n",
575 (unsigned long)block
));
576 if (!(bh
= ext4_bread (NULL
, dir
, block
, 0, &err
)))
579 de
= (struct ext4_dir_entry_2
*) bh
->b_data
;
580 top
= (struct ext4_dir_entry_2
*) ((char *) de
+
581 dir
->i_sb
->s_blocksize
-
582 EXT4_DIR_REC_LEN(0));
583 for (; de
< top
; de
= ext4_next_entry(de
)) {
584 if (!ext4_check_dir_entry("htree_dirblock_to_tree", dir
, de
, bh
,
585 (block
<<EXT4_BLOCK_SIZE_BITS(dir
->i_sb
))
586 +((char *)de
- bh
->b_data
))) {
587 /* On error, skip the f_pos to the next block. */
588 dir_file
->f_pos
= (dir_file
->f_pos
|
589 (dir
->i_sb
->s_blocksize
- 1)) + 1;
593 ext4fs_dirhash(de
->name
, de
->name_len
, hinfo
);
594 if ((hinfo
->hash
< start_hash
) ||
595 ((hinfo
->hash
== start_hash
) &&
596 (hinfo
->minor_hash
< start_minor_hash
)))
600 if ((err
= ext4_htree_store_dirent(dir_file
,
601 hinfo
->hash
, hinfo
->minor_hash
, de
)) != 0) {
613 * This function fills a red-black tree with information from a
614 * directory. We start scanning the directory in hash order, starting
615 * at start_hash and start_minor_hash.
617 * This function returns the number of entries inserted into the tree,
618 * or a negative error code.
620 int ext4_htree_fill_tree(struct file
*dir_file
, __u32 start_hash
,
621 __u32 start_minor_hash
, __u32
*next_hash
)
623 struct dx_hash_info hinfo
;
624 struct ext4_dir_entry_2
*de
;
625 struct dx_frame frames
[2], *frame
;
632 dxtrace(printk("In htree_fill_tree, start hash: %x:%x\n", start_hash
,
634 dir
= dir_file
->f_path
.dentry
->d_inode
;
635 if (!(EXT4_I(dir
)->i_flags
& EXT4_INDEX_FL
)) {
636 hinfo
.hash_version
= EXT4_SB(dir
->i_sb
)->s_def_hash_version
;
637 hinfo
.seed
= EXT4_SB(dir
->i_sb
)->s_hash_seed
;
638 count
= htree_dirblock_to_tree(dir_file
, dir
, 0, &hinfo
,
639 start_hash
, start_minor_hash
);
643 hinfo
.hash
= start_hash
;
644 hinfo
.minor_hash
= 0;
645 frame
= dx_probe(NULL
, dir_file
->f_path
.dentry
->d_inode
, &hinfo
, frames
, &err
);
649 /* Add '.' and '..' from the htree header */
650 if (!start_hash
&& !start_minor_hash
) {
651 de
= (struct ext4_dir_entry_2
*) frames
[0].bh
->b_data
;
652 if ((err
= ext4_htree_store_dirent(dir_file
, 0, 0, de
)) != 0)
656 if (start_hash
< 2 || (start_hash
==2 && start_minor_hash
==0)) {
657 de
= (struct ext4_dir_entry_2
*) frames
[0].bh
->b_data
;
658 de
= ext4_next_entry(de
);
659 if ((err
= ext4_htree_store_dirent(dir_file
, 2, 0, de
)) != 0)
665 block
= dx_get_block(frame
->at
);
666 ret
= htree_dirblock_to_tree(dir_file
, dir
, block
, &hinfo
,
667 start_hash
, start_minor_hash
);
674 ret
= ext4_htree_next_block(dir
, HASH_NB_ALWAYS
,
675 frame
, frames
, &hashval
);
676 *next_hash
= hashval
;
682 * Stop if: (a) there are no more entries, or
683 * (b) we have inserted at least one entry and the
684 * next hash value is not a continuation
687 (count
&& ((hashval
& 1) == 0)))
691 dxtrace(printk("Fill tree: returned %d entries, next hash: %x\n",
701 * Directory block splitting, compacting
705 * Create map of hash values, offsets, and sizes, stored at end of block.
706 * Returns number of entries mapped.
708 static int dx_make_map (struct ext4_dir_entry_2
*de
, int size
,
709 struct dx_hash_info
*hinfo
, struct dx_map_entry
*map_tail
)
712 char *base
= (char *) de
;
713 struct dx_hash_info h
= *hinfo
;
715 while ((char *) de
< base
+ size
)
717 if (de
->name_len
&& de
->inode
) {
718 ext4fs_dirhash(de
->name
, de
->name_len
, &h
);
720 map_tail
->hash
= h
.hash
;
721 map_tail
->offs
= (u16
) ((char *) de
- base
);
722 map_tail
->size
= le16_to_cpu(de
->rec_len
);
726 /* XXX: do we need to check rec_len == 0 case? -Chris */
727 de
= ext4_next_entry(de
);
732 /* Sort map by hash value */
733 static void dx_sort_map (struct dx_map_entry
*map
, unsigned count
)
735 struct dx_map_entry
*p
, *q
, *top
= map
+ count
- 1;
737 /* Combsort until bubble sort doesn't suck */
740 if (count
- 9 < 2) /* 9, 10 -> 11 */
742 for (p
= top
, q
= p
- count
; q
>= map
; p
--, q
--)
743 if (p
->hash
< q
->hash
)
746 /* Garden variety bubble sort */
751 if (q
[1].hash
>= q
[0].hash
)
759 static void dx_insert_block(struct dx_frame
*frame
, u32 hash
, ext4_lblk_t block
)
761 struct dx_entry
*entries
= frame
->entries
;
762 struct dx_entry
*old
= frame
->at
, *new = old
+ 1;
763 int count
= dx_get_count(entries
);
765 assert(count
< dx_get_limit(entries
));
766 assert(old
< entries
+ count
);
767 memmove(new + 1, new, (char *)(entries
+ count
) - (char *)(new));
768 dx_set_hash(new, hash
);
769 dx_set_block(new, block
);
770 dx_set_count(entries
, count
+ 1);
773 static void ext4_update_dx_flag(struct inode
*inode
)
775 if (!EXT4_HAS_COMPAT_FEATURE(inode
->i_sb
,
776 EXT4_FEATURE_COMPAT_DIR_INDEX
))
777 EXT4_I(inode
)->i_flags
&= ~EXT4_INDEX_FL
;
781 * NOTE! unlike strncmp, ext4_match returns 1 for success, 0 for failure.
783 * `len <= EXT4_NAME_LEN' is guaranteed by caller.
784 * `de != NULL' is guaranteed by caller.
786 static inline int ext4_match (int len
, const char * const name
,
787 struct ext4_dir_entry_2
* de
)
789 if (len
!= de
->name_len
)
793 return !memcmp(name
, de
->name
, len
);
797 * Returns 0 if not found, -1 on failure, and 1 on success
799 static inline int search_dirblock(struct buffer_head
* bh
,
801 struct dentry
*dentry
,
802 unsigned long offset
,
803 struct ext4_dir_entry_2
** res_dir
)
805 struct ext4_dir_entry_2
* de
;
808 const char *name
= dentry
->d_name
.name
;
809 int namelen
= dentry
->d_name
.len
;
811 de
= (struct ext4_dir_entry_2
*) bh
->b_data
;
812 dlimit
= bh
->b_data
+ dir
->i_sb
->s_blocksize
;
813 while ((char *) de
< dlimit
) {
814 /* this code is executed quadratically often */
815 /* do minimal checking `by hand' */
817 if ((char *) de
+ namelen
<= dlimit
&&
818 ext4_match (namelen
, name
, de
)) {
819 /* found a match - just to be sure, do a full check */
820 if (!ext4_check_dir_entry("ext4_find_entry",
821 dir
, de
, bh
, offset
))
826 /* prevent looping on a bad block */
827 de_len
= ext4_rec_len_from_disk(de
->rec_len
);
831 de
= (struct ext4_dir_entry_2
*) ((char *) de
+ de_len
);
840 * finds an entry in the specified directory with the wanted name. It
841 * returns the cache buffer in which the entry was found, and the entry
842 * itself (as a parameter - res_dir). It does NOT read the inode of the
843 * entry - you'll have to do that yourself if you want to.
845 * The returned buffer_head has ->b_count elevated. The caller is expected
846 * to brelse() it when appropriate.
848 static struct buffer_head
* ext4_find_entry (struct dentry
*dentry
,
849 struct ext4_dir_entry_2
** res_dir
)
851 struct super_block
* sb
;
852 struct buffer_head
* bh_use
[NAMEI_RA_SIZE
];
853 struct buffer_head
* bh
, *ret
= NULL
;
854 ext4_lblk_t start
, block
, b
;
855 int ra_max
= 0; /* Number of bh's in the readahead
857 int ra_ptr
= 0; /* Current index into readahead
862 struct inode
*dir
= dentry
->d_parent
->d_inode
;
867 namelen
= dentry
->d_name
.len
;
868 if (namelen
> EXT4_NAME_LEN
)
871 bh
= ext4_dx_find_entry(dentry
, res_dir
, &err
);
873 * On success, or if the error was file not found,
874 * return. Otherwise, fall back to doing a search the
877 if (bh
|| (err
!= ERR_BAD_DX_DIR
))
879 dxtrace(printk("ext4_find_entry: dx failed, falling back\n"));
881 nblocks
= dir
->i_size
>> EXT4_BLOCK_SIZE_BITS(sb
);
882 start
= EXT4_I(dir
)->i_dir_start_lookup
;
883 if (start
>= nblocks
)
889 * We deal with the read-ahead logic here.
891 if (ra_ptr
>= ra_max
) {
892 /* Refill the readahead buffer */
895 for (ra_max
= 0; ra_max
< NAMEI_RA_SIZE
; ra_max
++) {
897 * Terminate if we reach the end of the
898 * directory and must wrap, or if our
899 * search has finished at this block.
901 if (b
>= nblocks
|| (num
&& block
== start
)) {
902 bh_use
[ra_max
] = NULL
;
906 bh
= ext4_getblk(NULL
, dir
, b
++, 0, &err
);
909 ll_rw_block(READ_META
, 1, &bh
);
912 if ((bh
= bh_use
[ra_ptr
++]) == NULL
)
915 if (!buffer_uptodate(bh
)) {
916 /* read error, skip block & hope for the best */
917 ext4_error(sb
, __FUNCTION__
, "reading directory #%lu "
918 "offset %lu", dir
->i_ino
,
919 (unsigned long)block
);
923 i
= search_dirblock(bh
, dir
, dentry
,
924 block
<< EXT4_BLOCK_SIZE_BITS(sb
), res_dir
);
926 EXT4_I(dir
)->i_dir_start_lookup
= block
;
928 goto cleanup_and_exit
;
932 goto cleanup_and_exit
;
935 if (++block
>= nblocks
)
937 } while (block
!= start
);
940 * If the directory has grown while we were searching, then
941 * search the last part of the directory before giving up.
944 nblocks
= dir
->i_size
>> EXT4_BLOCK_SIZE_BITS(sb
);
945 if (block
< nblocks
) {
951 /* Clean up the read-ahead blocks */
952 for (; ra_ptr
< ra_max
; ra_ptr
++)
953 brelse (bh_use
[ra_ptr
]);
957 static struct buffer_head
* ext4_dx_find_entry(struct dentry
*dentry
,
958 struct ext4_dir_entry_2
**res_dir
, int *err
)
960 struct super_block
* sb
;
961 struct dx_hash_info hinfo
;
963 struct dx_frame frames
[2], *frame
;
964 struct ext4_dir_entry_2
*de
, *top
;
965 struct buffer_head
*bh
;
968 int namelen
= dentry
->d_name
.len
;
969 const u8
*name
= dentry
->d_name
.name
;
970 struct inode
*dir
= dentry
->d_parent
->d_inode
;
973 /* NFS may look up ".." - look at dx_root directory block */
974 if (namelen
> 2 || name
[0] != '.'||(name
[1] != '.' && name
[1] != '\0')){
975 if (!(frame
= dx_probe(dentry
, NULL
, &hinfo
, frames
, err
)))
979 frame
->bh
= NULL
; /* for dx_release() */
980 frame
->at
= (struct dx_entry
*)frames
; /* hack for zero entry*/
981 dx_set_block(frame
->at
, 0); /* dx_root block is 0 */
985 block
= dx_get_block(frame
->at
);
986 if (!(bh
= ext4_bread (NULL
,dir
, block
, 0, err
)))
988 de
= (struct ext4_dir_entry_2
*) bh
->b_data
;
989 top
= (struct ext4_dir_entry_2
*) ((char *) de
+ sb
->s_blocksize
-
990 EXT4_DIR_REC_LEN(0));
991 for (; de
< top
; de
= ext4_next_entry(de
))
992 if (ext4_match (namelen
, name
, de
)) {
993 if (!ext4_check_dir_entry("ext4_find_entry",
995 (block
<<EXT4_BLOCK_SIZE_BITS(sb
))
996 +((char *)de
- bh
->b_data
))) {
998 *err
= ERR_BAD_DX_DIR
;
1002 dx_release (frames
);
1006 /* Check to see if we should continue to search */
1007 retval
= ext4_htree_next_block(dir
, hash
, frame
,
1010 ext4_warning(sb
, __FUNCTION__
,
1011 "error reading index page in directory #%lu",
1016 } while (retval
== 1);
1020 dxtrace(printk("%s not found\n", name
));
1021 dx_release (frames
);
1025 static struct dentry
*ext4_lookup(struct inode
* dir
, struct dentry
*dentry
, struct nameidata
*nd
)
1027 struct inode
* inode
;
1028 struct ext4_dir_entry_2
* de
;
1029 struct buffer_head
* bh
;
1031 if (dentry
->d_name
.len
> EXT4_NAME_LEN
)
1032 return ERR_PTR(-ENAMETOOLONG
);
1034 bh
= ext4_find_entry(dentry
, &de
);
1037 unsigned long ino
= le32_to_cpu(de
->inode
);
1039 if (!ext4_valid_inum(dir
->i_sb
, ino
)) {
1040 ext4_error(dir
->i_sb
, "ext4_lookup",
1041 "bad inode number: %lu", ino
);
1042 return ERR_PTR(-EIO
);
1044 inode
= ext4_iget(dir
->i_sb
, ino
);
1046 return ERR_CAST(inode
);
1048 return d_splice_alias(inode
, dentry
);
1052 struct dentry
*ext4_get_parent(struct dentry
*child
)
1055 struct dentry
*parent
;
1056 struct inode
*inode
;
1057 struct dentry dotdot
;
1058 struct ext4_dir_entry_2
* de
;
1059 struct buffer_head
*bh
;
1061 dotdot
.d_name
.name
= "..";
1062 dotdot
.d_name
.len
= 2;
1063 dotdot
.d_parent
= child
; /* confusing, isn't it! */
1065 bh
= ext4_find_entry(&dotdot
, &de
);
1068 return ERR_PTR(-ENOENT
);
1069 ino
= le32_to_cpu(de
->inode
);
1072 if (!ext4_valid_inum(child
->d_inode
->i_sb
, ino
)) {
1073 ext4_error(child
->d_inode
->i_sb
, "ext4_get_parent",
1074 "bad inode number: %lu", ino
);
1075 return ERR_PTR(-EIO
);
1078 inode
= ext4_iget(child
->d_inode
->i_sb
, ino
);
1080 return ERR_CAST(inode
);
1082 parent
= d_alloc_anon(inode
);
1085 parent
= ERR_PTR(-ENOMEM
);
1091 static unsigned char ext4_type_by_mode
[S_IFMT
>> S_SHIFT
] = {
1092 [S_IFREG
>> S_SHIFT
] = EXT4_FT_REG_FILE
,
1093 [S_IFDIR
>> S_SHIFT
] = EXT4_FT_DIR
,
1094 [S_IFCHR
>> S_SHIFT
] = EXT4_FT_CHRDEV
,
1095 [S_IFBLK
>> S_SHIFT
] = EXT4_FT_BLKDEV
,
1096 [S_IFIFO
>> S_SHIFT
] = EXT4_FT_FIFO
,
1097 [S_IFSOCK
>> S_SHIFT
] = EXT4_FT_SOCK
,
1098 [S_IFLNK
>> S_SHIFT
] = EXT4_FT_SYMLINK
,
1101 static inline void ext4_set_de_type(struct super_block
*sb
,
1102 struct ext4_dir_entry_2
*de
,
1104 if (EXT4_HAS_INCOMPAT_FEATURE(sb
, EXT4_FEATURE_INCOMPAT_FILETYPE
))
1105 de
->file_type
= ext4_type_by_mode
[(mode
& S_IFMT
)>>S_SHIFT
];
1109 * Move count entries from end of map between two memory locations.
1110 * Returns pointer to last entry moved.
1112 static struct ext4_dir_entry_2
*
1113 dx_move_dirents(char *from
, char *to
, struct dx_map_entry
*map
, int count
)
1115 unsigned rec_len
= 0;
1118 struct ext4_dir_entry_2
*de
= (struct ext4_dir_entry_2
*) (from
+ map
->offs
);
1119 rec_len
= EXT4_DIR_REC_LEN(de
->name_len
);
1120 memcpy (to
, de
, rec_len
);
1121 ((struct ext4_dir_entry_2
*) to
)->rec_len
=
1122 ext4_rec_len_to_disk(rec_len
);
1127 return (struct ext4_dir_entry_2
*) (to
- rec_len
);
1131 * Compact each dir entry in the range to the minimal rec_len.
1132 * Returns pointer to last entry in range.
1134 static struct ext4_dir_entry_2
* dx_pack_dirents(char *base
, int size
)
1136 struct ext4_dir_entry_2
*next
, *to
, *prev
, *de
= (struct ext4_dir_entry_2
*) base
;
1137 unsigned rec_len
= 0;
1140 while ((char*)de
< base
+ size
) {
1141 next
= ext4_next_entry(de
);
1142 if (de
->inode
&& de
->name_len
) {
1143 rec_len
= EXT4_DIR_REC_LEN(de
->name_len
);
1145 memmove(to
, de
, rec_len
);
1146 to
->rec_len
= ext4_rec_len_to_disk(rec_len
);
1148 to
= (struct ext4_dir_entry_2
*) (((char *) to
) + rec_len
);
1156 * Split a full leaf block to make room for a new dir entry.
1157 * Allocate a new block, and move entries so that they are approx. equally full.
1158 * Returns pointer to de in block into which the new entry will be inserted.
1160 static struct ext4_dir_entry_2
*do_split(handle_t
*handle
, struct inode
*dir
,
1161 struct buffer_head
**bh
,struct dx_frame
*frame
,
1162 struct dx_hash_info
*hinfo
, int *error
)
1164 unsigned blocksize
= dir
->i_sb
->s_blocksize
;
1165 unsigned count
, continued
;
1166 struct buffer_head
*bh2
;
1167 ext4_lblk_t newblock
;
1169 struct dx_map_entry
*map
;
1170 char *data1
= (*bh
)->b_data
, *data2
;
1171 unsigned split
, move
, size
, i
;
1172 struct ext4_dir_entry_2
*de
= NULL
, *de2
;
1175 bh2
= ext4_append (handle
, dir
, &newblock
, &err
);
1182 BUFFER_TRACE(*bh
, "get_write_access");
1183 err
= ext4_journal_get_write_access(handle
, *bh
);
1187 BUFFER_TRACE(frame
->bh
, "get_write_access");
1188 err
= ext4_journal_get_write_access(handle
, frame
->bh
);
1192 data2
= bh2
->b_data
;
1194 /* create map in the end of data2 block */
1195 map
= (struct dx_map_entry
*) (data2
+ blocksize
);
1196 count
= dx_make_map ((struct ext4_dir_entry_2
*) data1
,
1197 blocksize
, hinfo
, map
);
1199 dx_sort_map (map
, count
);
1200 /* Split the existing block in the middle, size-wise */
1203 for (i
= count
-1; i
>= 0; i
--) {
1204 /* is more than half of this entry in 2nd half of the block? */
1205 if (size
+ map
[i
].size
/2 > blocksize
/2)
1207 size
+= map
[i
].size
;
1210 /* map index at which we will split */
1211 split
= count
- move
;
1212 hash2
= map
[split
].hash
;
1213 continued
= hash2
== map
[split
- 1].hash
;
1214 dxtrace(printk(KERN_INFO
"Split block %lu at %x, %i/%i\n",
1215 (unsigned long)dx_get_block(frame
->at
),
1216 hash2
, split
, count
-split
));
1218 /* Fancy dance to stay within two buffers */
1219 de2
= dx_move_dirents(data1
, data2
, map
+ split
, count
- split
);
1220 de
= dx_pack_dirents(data1
,blocksize
);
1221 de
->rec_len
= ext4_rec_len_to_disk(data1
+ blocksize
- (char *) de
);
1222 de2
->rec_len
= ext4_rec_len_to_disk(data2
+ blocksize
- (char *) de2
);
1223 dxtrace(dx_show_leaf (hinfo
, (struct ext4_dir_entry_2
*) data1
, blocksize
, 1));
1224 dxtrace(dx_show_leaf (hinfo
, (struct ext4_dir_entry_2
*) data2
, blocksize
, 1));
1226 /* Which block gets the new entry? */
1227 if (hinfo
->hash
>= hash2
)
1232 dx_insert_block (frame
, hash2
+ continued
, newblock
);
1233 err
= ext4_journal_dirty_metadata (handle
, bh2
);
1236 err
= ext4_journal_dirty_metadata (handle
, frame
->bh
);
1240 dxtrace(dx_show_index ("frame", frame
->entries
));
1247 ext4_std_error(dir
->i_sb
, err
);
1254 * Add a new entry into a directory (leaf) block. If de is non-NULL,
1255 * it points to a directory entry which is guaranteed to be large
1256 * enough for new directory entry. If de is NULL, then
1257 * add_dirent_to_buf will attempt search the directory block for
1258 * space. It will return -ENOSPC if no space is available, and -EIO
1259 * and -EEXIST if directory entry already exists.
1261 * NOTE! bh is NOT released in the case where ENOSPC is returned. In
1262 * all other cases bh is released.
1264 static int add_dirent_to_buf(handle_t
*handle
, struct dentry
*dentry
,
1265 struct inode
*inode
, struct ext4_dir_entry_2
*de
,
1266 struct buffer_head
* bh
)
1268 struct inode
*dir
= dentry
->d_parent
->d_inode
;
1269 const char *name
= dentry
->d_name
.name
;
1270 int namelen
= dentry
->d_name
.len
;
1271 unsigned long offset
= 0;
1272 unsigned short reclen
;
1273 int nlen
, rlen
, err
;
1276 reclen
= EXT4_DIR_REC_LEN(namelen
);
1278 de
= (struct ext4_dir_entry_2
*)bh
->b_data
;
1279 top
= bh
->b_data
+ dir
->i_sb
->s_blocksize
- reclen
;
1280 while ((char *) de
<= top
) {
1281 if (!ext4_check_dir_entry("ext4_add_entry", dir
, de
,
1286 if (ext4_match (namelen
, name
, de
)) {
1290 nlen
= EXT4_DIR_REC_LEN(de
->name_len
);
1291 rlen
= ext4_rec_len_from_disk(de
->rec_len
);
1292 if ((de
->inode
? rlen
- nlen
: rlen
) >= reclen
)
1294 de
= (struct ext4_dir_entry_2
*)((char *)de
+ rlen
);
1297 if ((char *) de
> top
)
1300 BUFFER_TRACE(bh
, "get_write_access");
1301 err
= ext4_journal_get_write_access(handle
, bh
);
1303 ext4_std_error(dir
->i_sb
, err
);
1308 /* By now the buffer is marked for journaling */
1309 nlen
= EXT4_DIR_REC_LEN(de
->name_len
);
1310 rlen
= ext4_rec_len_from_disk(de
->rec_len
);
1312 struct ext4_dir_entry_2
*de1
= (struct ext4_dir_entry_2
*)((char *)de
+ nlen
);
1313 de1
->rec_len
= ext4_rec_len_to_disk(rlen
- nlen
);
1314 de
->rec_len
= ext4_rec_len_to_disk(nlen
);
1317 de
->file_type
= EXT4_FT_UNKNOWN
;
1319 de
->inode
= cpu_to_le32(inode
->i_ino
);
1320 ext4_set_de_type(dir
->i_sb
, de
, inode
->i_mode
);
1323 de
->name_len
= namelen
;
1324 memcpy (de
->name
, name
, namelen
);
1326 * XXX shouldn't update any times until successful
1327 * completion of syscall, but too many callers depend
1330 * XXX similarly, too many callers depend on
1331 * ext4_new_inode() setting the times, but error
1332 * recovery deletes the inode, so the worst that can
1333 * happen is that the times are slightly out of date
1334 * and/or different from the directory change time.
1336 dir
->i_mtime
= dir
->i_ctime
= ext4_current_time(dir
);
1337 ext4_update_dx_flag(dir
);
1339 ext4_mark_inode_dirty(handle
, dir
);
1340 BUFFER_TRACE(bh
, "call ext4_journal_dirty_metadata");
1341 err
= ext4_journal_dirty_metadata(handle
, bh
);
1343 ext4_std_error(dir
->i_sb
, err
);
1349 * This converts a one block unindexed directory to a 3 block indexed
1350 * directory, and adds the dentry to the indexed directory.
1352 static int make_indexed_dir(handle_t
*handle
, struct dentry
*dentry
,
1353 struct inode
*inode
, struct buffer_head
*bh
)
1355 struct inode
*dir
= dentry
->d_parent
->d_inode
;
1356 const char *name
= dentry
->d_name
.name
;
1357 int namelen
= dentry
->d_name
.len
;
1358 struct buffer_head
*bh2
;
1359 struct dx_root
*root
;
1360 struct dx_frame frames
[2], *frame
;
1361 struct dx_entry
*entries
;
1362 struct ext4_dir_entry_2
*de
, *de2
;
1367 struct dx_hash_info hinfo
;
1369 struct fake_dirent
*fde
;
1371 blocksize
= dir
->i_sb
->s_blocksize
;
1372 dxtrace(printk("Creating index\n"));
1373 retval
= ext4_journal_get_write_access(handle
, bh
);
1375 ext4_std_error(dir
->i_sb
, retval
);
1379 root
= (struct dx_root
*) bh
->b_data
;
1381 bh2
= ext4_append (handle
, dir
, &block
, &retval
);
1386 EXT4_I(dir
)->i_flags
|= EXT4_INDEX_FL
;
1387 data1
= bh2
->b_data
;
1389 /* The 0th block becomes the root, move the dirents out */
1390 fde
= &root
->dotdot
;
1391 de
= (struct ext4_dir_entry_2
*)((char *)fde
+
1392 ext4_rec_len_from_disk(fde
->rec_len
));
1393 len
= ((char *) root
) + blocksize
- (char *) de
;
1394 memcpy (data1
, de
, len
);
1395 de
= (struct ext4_dir_entry_2
*) data1
;
1397 while ((char *)(de2
= ext4_next_entry(de
)) < top
)
1399 de
->rec_len
= ext4_rec_len_to_disk(data1
+ blocksize
- (char *) de
);
1400 /* Initialize the root; the dot dirents already exist */
1401 de
= (struct ext4_dir_entry_2
*) (&root
->dotdot
);
1402 de
->rec_len
= ext4_rec_len_to_disk(blocksize
- EXT4_DIR_REC_LEN(2));
1403 memset (&root
->info
, 0, sizeof(root
->info
));
1404 root
->info
.info_length
= sizeof(root
->info
);
1405 root
->info
.hash_version
= EXT4_SB(dir
->i_sb
)->s_def_hash_version
;
1406 entries
= root
->entries
;
1407 dx_set_block (entries
, 1);
1408 dx_set_count (entries
, 1);
1409 dx_set_limit (entries
, dx_root_limit(dir
, sizeof(root
->info
)));
1411 /* Initialize as for dx_probe */
1412 hinfo
.hash_version
= root
->info
.hash_version
;
1413 hinfo
.seed
= EXT4_SB(dir
->i_sb
)->s_hash_seed
;
1414 ext4fs_dirhash(name
, namelen
, &hinfo
);
1416 frame
->entries
= entries
;
1417 frame
->at
= entries
;
1420 de
= do_split(handle
,dir
, &bh
, frame
, &hinfo
, &retval
);
1421 dx_release (frames
);
1425 return add_dirent_to_buf(handle
, dentry
, inode
, de
, bh
);
1431 * adds a file entry to the specified directory, using the same
1432 * semantics as ext4_find_entry(). It returns NULL if it failed.
1434 * NOTE!! The inode part of 'de' is left at 0 - which means you
1435 * may not sleep between calling this and putting something into
1436 * the entry, as someone else might have used it while you slept.
1438 static int ext4_add_entry (handle_t
*handle
, struct dentry
*dentry
,
1439 struct inode
*inode
)
1441 struct inode
*dir
= dentry
->d_parent
->d_inode
;
1442 unsigned long offset
;
1443 struct buffer_head
* bh
;
1444 struct ext4_dir_entry_2
*de
;
1445 struct super_block
* sb
;
1449 ext4_lblk_t block
, blocks
;
1452 blocksize
= sb
->s_blocksize
;
1453 if (!dentry
->d_name
.len
)
1456 retval
= ext4_dx_add_entry(handle
, dentry
, inode
);
1457 if (!retval
|| (retval
!= ERR_BAD_DX_DIR
))
1459 EXT4_I(dir
)->i_flags
&= ~EXT4_INDEX_FL
;
1461 ext4_mark_inode_dirty(handle
, dir
);
1463 blocks
= dir
->i_size
>> sb
->s_blocksize_bits
;
1464 for (block
= 0, offset
= 0; block
< blocks
; block
++) {
1465 bh
= ext4_bread(handle
, dir
, block
, 0, &retval
);
1468 retval
= add_dirent_to_buf(handle
, dentry
, inode
, NULL
, bh
);
1469 if (retval
!= -ENOSPC
)
1472 if (blocks
== 1 && !dx_fallback
&&
1473 EXT4_HAS_COMPAT_FEATURE(sb
, EXT4_FEATURE_COMPAT_DIR_INDEX
))
1474 return make_indexed_dir(handle
, dentry
, inode
, bh
);
1477 bh
= ext4_append(handle
, dir
, &block
, &retval
);
1480 de
= (struct ext4_dir_entry_2
*) bh
->b_data
;
1482 de
->rec_len
= ext4_rec_len_to_disk(blocksize
);
1483 return add_dirent_to_buf(handle
, dentry
, inode
, de
, bh
);
1487 * Returns 0 for success, or a negative error value
1489 static int ext4_dx_add_entry(handle_t
*handle
, struct dentry
*dentry
,
1490 struct inode
*inode
)
1492 struct dx_frame frames
[2], *frame
;
1493 struct dx_entry
*entries
, *at
;
1494 struct dx_hash_info hinfo
;
1495 struct buffer_head
* bh
;
1496 struct inode
*dir
= dentry
->d_parent
->d_inode
;
1497 struct super_block
* sb
= dir
->i_sb
;
1498 struct ext4_dir_entry_2
*de
;
1501 frame
= dx_probe(dentry
, NULL
, &hinfo
, frames
, &err
);
1504 entries
= frame
->entries
;
1507 if (!(bh
= ext4_bread(handle
,dir
, dx_get_block(frame
->at
), 0, &err
)))
1510 BUFFER_TRACE(bh
, "get_write_access");
1511 err
= ext4_journal_get_write_access(handle
, bh
);
1515 err
= add_dirent_to_buf(handle
, dentry
, inode
, NULL
, bh
);
1516 if (err
!= -ENOSPC
) {
1521 /* Block full, should compress but for now just split */
1522 dxtrace(printk("using %u of %u node entries\n",
1523 dx_get_count(entries
), dx_get_limit(entries
)));
1524 /* Need to split index? */
1525 if (dx_get_count(entries
) == dx_get_limit(entries
)) {
1526 ext4_lblk_t newblock
;
1527 unsigned icount
= dx_get_count(entries
);
1528 int levels
= frame
- frames
;
1529 struct dx_entry
*entries2
;
1530 struct dx_node
*node2
;
1531 struct buffer_head
*bh2
;
1533 if (levels
&& (dx_get_count(frames
->entries
) ==
1534 dx_get_limit(frames
->entries
))) {
1535 ext4_warning(sb
, __FUNCTION__
,
1536 "Directory index full!");
1540 bh2
= ext4_append (handle
, dir
, &newblock
, &err
);
1543 node2
= (struct dx_node
*)(bh2
->b_data
);
1544 entries2
= node2
->entries
;
1545 node2
->fake
.rec_len
= ext4_rec_len_to_disk(sb
->s_blocksize
);
1546 node2
->fake
.inode
= 0;
1547 BUFFER_TRACE(frame
->bh
, "get_write_access");
1548 err
= ext4_journal_get_write_access(handle
, frame
->bh
);
1552 unsigned icount1
= icount
/2, icount2
= icount
- icount1
;
1553 unsigned hash2
= dx_get_hash(entries
+ icount1
);
1554 dxtrace(printk("Split index %i/%i\n", icount1
, icount2
));
1556 BUFFER_TRACE(frame
->bh
, "get_write_access"); /* index root */
1557 err
= ext4_journal_get_write_access(handle
,
1562 memcpy ((char *) entries2
, (char *) (entries
+ icount1
),
1563 icount2
* sizeof(struct dx_entry
));
1564 dx_set_count (entries
, icount1
);
1565 dx_set_count (entries2
, icount2
);
1566 dx_set_limit (entries2
, dx_node_limit(dir
));
1568 /* Which index block gets the new entry? */
1569 if (at
- entries
>= icount1
) {
1570 frame
->at
= at
= at
- entries
- icount1
+ entries2
;
1571 frame
->entries
= entries
= entries2
;
1572 swap(frame
->bh
, bh2
);
1574 dx_insert_block (frames
+ 0, hash2
, newblock
);
1575 dxtrace(dx_show_index ("node", frames
[1].entries
));
1576 dxtrace(dx_show_index ("node",
1577 ((struct dx_node
*) bh2
->b_data
)->entries
));
1578 err
= ext4_journal_dirty_metadata(handle
, bh2
);
1583 dxtrace(printk("Creating second level index...\n"));
1584 memcpy((char *) entries2
, (char *) entries
,
1585 icount
* sizeof(struct dx_entry
));
1586 dx_set_limit(entries2
, dx_node_limit(dir
));
1589 dx_set_count(entries
, 1);
1590 dx_set_block(entries
+ 0, newblock
);
1591 ((struct dx_root
*) frames
[0].bh
->b_data
)->info
.indirect_levels
= 1;
1593 /* Add new access path frame */
1595 frame
->at
= at
= at
- entries
+ entries2
;
1596 frame
->entries
= entries
= entries2
;
1598 err
= ext4_journal_get_write_access(handle
,
1603 ext4_journal_dirty_metadata(handle
, frames
[0].bh
);
1605 de
= do_split(handle
, dir
, &bh
, frame
, &hinfo
, &err
);
1608 err
= add_dirent_to_buf(handle
, dentry
, inode
, de
, bh
);
1613 ext4_std_error(dir
->i_sb
, err
);
1622 * ext4_delete_entry deletes a directory entry by merging it with the
1625 static int ext4_delete_entry (handle_t
*handle
,
1627 struct ext4_dir_entry_2
* de_del
,
1628 struct buffer_head
* bh
)
1630 struct ext4_dir_entry_2
* de
, * pde
;
1635 de
= (struct ext4_dir_entry_2
*) bh
->b_data
;
1636 while (i
< bh
->b_size
) {
1637 if (!ext4_check_dir_entry("ext4_delete_entry", dir
, de
, bh
, i
))
1640 BUFFER_TRACE(bh
, "get_write_access");
1641 ext4_journal_get_write_access(handle
, bh
);
1643 pde
->rec_len
= ext4_rec_len_to_disk(
1644 ext4_rec_len_from_disk(pde
->rec_len
) +
1645 ext4_rec_len_from_disk(de
->rec_len
));
1649 BUFFER_TRACE(bh
, "call ext4_journal_dirty_metadata");
1650 ext4_journal_dirty_metadata(handle
, bh
);
1653 i
+= ext4_rec_len_from_disk(de
->rec_len
);
1655 de
= ext4_next_entry(de
);
1661 * DIR_NLINK feature is set if 1) nlinks > EXT4_LINK_MAX or 2) nlinks == 2,
1662 * since this indicates that nlinks count was previously 1.
1664 static void ext4_inc_count(handle_t
*handle
, struct inode
*inode
)
1667 if (is_dx(inode
) && inode
->i_nlink
> 1) {
1668 /* limit is 16-bit i_links_count */
1669 if (inode
->i_nlink
>= EXT4_LINK_MAX
|| inode
->i_nlink
== 2) {
1671 EXT4_SET_RO_COMPAT_FEATURE(inode
->i_sb
,
1672 EXT4_FEATURE_RO_COMPAT_DIR_NLINK
);
1678 * If a directory had nlink == 1, then we should let it be 1. This indicates
1679 * directory has >EXT4_LINK_MAX subdirs.
1681 static void ext4_dec_count(handle_t
*handle
, struct inode
*inode
)
1684 if (S_ISDIR(inode
->i_mode
) && inode
->i_nlink
== 0)
1689 static int ext4_add_nondir(handle_t
*handle
,
1690 struct dentry
*dentry
, struct inode
*inode
)
1692 int err
= ext4_add_entry(handle
, dentry
, inode
);
1694 ext4_mark_inode_dirty(handle
, inode
);
1695 d_instantiate(dentry
, inode
);
1704 * By the time this is called, we already have created
1705 * the directory cache entry for the new file, but it
1706 * is so far negative - it has no inode.
1708 * If the create succeeds, we fill in the inode information
1709 * with d_instantiate().
1711 static int ext4_create (struct inode
* dir
, struct dentry
* dentry
, int mode
,
1712 struct nameidata
*nd
)
1715 struct inode
* inode
;
1716 int err
, retries
= 0;
1719 handle
= ext4_journal_start(dir
, EXT4_DATA_TRANS_BLOCKS(dir
->i_sb
) +
1720 EXT4_INDEX_EXTRA_TRANS_BLOCKS
+ 3 +
1721 2*EXT4_QUOTA_INIT_BLOCKS(dir
->i_sb
));
1723 return PTR_ERR(handle
);
1725 if (IS_DIRSYNC(dir
))
1728 inode
= ext4_new_inode (handle
, dir
, mode
);
1729 err
= PTR_ERR(inode
);
1730 if (!IS_ERR(inode
)) {
1731 inode
->i_op
= &ext4_file_inode_operations
;
1732 inode
->i_fop
= &ext4_file_operations
;
1733 ext4_set_aops(inode
);
1734 err
= ext4_add_nondir(handle
, dentry
, inode
);
1736 ext4_journal_stop(handle
);
1737 if (err
== -ENOSPC
&& ext4_should_retry_alloc(dir
->i_sb
, &retries
))
1742 static int ext4_mknod (struct inode
* dir
, struct dentry
*dentry
,
1743 int mode
, dev_t rdev
)
1746 struct inode
*inode
;
1747 int err
, retries
= 0;
1749 if (!new_valid_dev(rdev
))
1753 handle
= ext4_journal_start(dir
, EXT4_DATA_TRANS_BLOCKS(dir
->i_sb
) +
1754 EXT4_INDEX_EXTRA_TRANS_BLOCKS
+ 3 +
1755 2*EXT4_QUOTA_INIT_BLOCKS(dir
->i_sb
));
1757 return PTR_ERR(handle
);
1759 if (IS_DIRSYNC(dir
))
1762 inode
= ext4_new_inode (handle
, dir
, mode
);
1763 err
= PTR_ERR(inode
);
1764 if (!IS_ERR(inode
)) {
1765 init_special_inode(inode
, inode
->i_mode
, rdev
);
1766 #ifdef CONFIG_EXT4DEV_FS_XATTR
1767 inode
->i_op
= &ext4_special_inode_operations
;
1769 err
= ext4_add_nondir(handle
, dentry
, inode
);
1771 ext4_journal_stop(handle
);
1772 if (err
== -ENOSPC
&& ext4_should_retry_alloc(dir
->i_sb
, &retries
))
1777 static int ext4_mkdir(struct inode
* dir
, struct dentry
* dentry
, int mode
)
1780 struct inode
* inode
;
1781 struct buffer_head
* dir_block
;
1782 struct ext4_dir_entry_2
* de
;
1783 int err
, retries
= 0;
1785 if (EXT4_DIR_LINK_MAX(dir
))
1789 handle
= ext4_journal_start(dir
, EXT4_DATA_TRANS_BLOCKS(dir
->i_sb
) +
1790 EXT4_INDEX_EXTRA_TRANS_BLOCKS
+ 3 +
1791 2*EXT4_QUOTA_INIT_BLOCKS(dir
->i_sb
));
1793 return PTR_ERR(handle
);
1795 if (IS_DIRSYNC(dir
))
1798 inode
= ext4_new_inode (handle
, dir
, S_IFDIR
| mode
);
1799 err
= PTR_ERR(inode
);
1803 inode
->i_op
= &ext4_dir_inode_operations
;
1804 inode
->i_fop
= &ext4_dir_operations
;
1805 inode
->i_size
= EXT4_I(inode
)->i_disksize
= inode
->i_sb
->s_blocksize
;
1806 dir_block
= ext4_bread (handle
, inode
, 0, 1, &err
);
1808 goto out_clear_inode
;
1809 BUFFER_TRACE(dir_block
, "get_write_access");
1810 ext4_journal_get_write_access(handle
, dir_block
);
1811 de
= (struct ext4_dir_entry_2
*) dir_block
->b_data
;
1812 de
->inode
= cpu_to_le32(inode
->i_ino
);
1814 de
->rec_len
= ext4_rec_len_to_disk(EXT4_DIR_REC_LEN(de
->name_len
));
1815 strcpy (de
->name
, ".");
1816 ext4_set_de_type(dir
->i_sb
, de
, S_IFDIR
);
1817 de
= ext4_next_entry(de
);
1818 de
->inode
= cpu_to_le32(dir
->i_ino
);
1819 de
->rec_len
= ext4_rec_len_to_disk(inode
->i_sb
->s_blocksize
-
1820 EXT4_DIR_REC_LEN(1));
1822 strcpy (de
->name
, "..");
1823 ext4_set_de_type(dir
->i_sb
, de
, S_IFDIR
);
1825 BUFFER_TRACE(dir_block
, "call ext4_journal_dirty_metadata");
1826 ext4_journal_dirty_metadata(handle
, dir_block
);
1828 ext4_mark_inode_dirty(handle
, inode
);
1829 err
= ext4_add_entry (handle
, dentry
, inode
);
1833 ext4_mark_inode_dirty(handle
, inode
);
1837 ext4_inc_count(handle
, dir
);
1838 ext4_update_dx_flag(dir
);
1839 ext4_mark_inode_dirty(handle
, dir
);
1840 d_instantiate(dentry
, inode
);
1842 ext4_journal_stop(handle
);
1843 if (err
== -ENOSPC
&& ext4_should_retry_alloc(dir
->i_sb
, &retries
))
1849 * routine to check that the specified directory is empty (for rmdir)
1851 static int empty_dir (struct inode
* inode
)
1853 unsigned long offset
;
1854 struct buffer_head
* bh
;
1855 struct ext4_dir_entry_2
* de
, * de1
;
1856 struct super_block
* sb
;
1860 if (inode
->i_size
< EXT4_DIR_REC_LEN(1) + EXT4_DIR_REC_LEN(2) ||
1861 !(bh
= ext4_bread (NULL
, inode
, 0, 0, &err
))) {
1863 ext4_error(inode
->i_sb
, __FUNCTION__
,
1864 "error %d reading directory #%lu offset 0",
1867 ext4_warning(inode
->i_sb
, __FUNCTION__
,
1868 "bad directory (dir #%lu) - no data block",
1872 de
= (struct ext4_dir_entry_2
*) bh
->b_data
;
1873 de1
= ext4_next_entry(de
);
1874 if (le32_to_cpu(de
->inode
) != inode
->i_ino
||
1875 !le32_to_cpu(de1
->inode
) ||
1876 strcmp (".", de
->name
) ||
1877 strcmp ("..", de1
->name
)) {
1878 ext4_warning (inode
->i_sb
, "empty_dir",
1879 "bad directory (dir #%lu) - no `.' or `..'",
1884 offset
= ext4_rec_len_from_disk(de
->rec_len
) +
1885 ext4_rec_len_from_disk(de1
->rec_len
);
1886 de
= ext4_next_entry(de1
);
1887 while (offset
< inode
->i_size
) {
1889 (void *) de
>= (void *) (bh
->b_data
+sb
->s_blocksize
)) {
1892 bh
= ext4_bread (NULL
, inode
,
1893 offset
>> EXT4_BLOCK_SIZE_BITS(sb
), 0, &err
);
1896 ext4_error(sb
, __FUNCTION__
,
1897 "error %d reading directory"
1899 err
, inode
->i_ino
, offset
);
1900 offset
+= sb
->s_blocksize
;
1903 de
= (struct ext4_dir_entry_2
*) bh
->b_data
;
1905 if (!ext4_check_dir_entry("empty_dir", inode
, de
, bh
, offset
)) {
1906 de
= (struct ext4_dir_entry_2
*)(bh
->b_data
+
1908 offset
= (offset
| (sb
->s_blocksize
- 1)) + 1;
1911 if (le32_to_cpu(de
->inode
)) {
1915 offset
+= ext4_rec_len_from_disk(de
->rec_len
);
1916 de
= ext4_next_entry(de
);
1922 /* ext4_orphan_add() links an unlinked or truncated inode into a list of
1923 * such inodes, starting at the superblock, in case we crash before the
1924 * file is closed/deleted, or in case the inode truncate spans multiple
1925 * transactions and the last transaction is not recovered after a crash.
1927 * At filesystem recovery time, we walk this list deleting unlinked
1928 * inodes and truncating linked inodes in ext4_orphan_cleanup().
1930 int ext4_orphan_add(handle_t
*handle
, struct inode
*inode
)
1932 struct super_block
*sb
= inode
->i_sb
;
1933 struct ext4_iloc iloc
;
1937 if (!list_empty(&EXT4_I(inode
)->i_orphan
))
1940 /* Orphan handling is only valid for files with data blocks
1941 * being truncated, or files being unlinked. */
1943 /* @@@ FIXME: Observation from aviro:
1944 * I think I can trigger J_ASSERT in ext4_orphan_add(). We block
1945 * here (on lock_super()), so race with ext4_link() which might bump
1946 * ->i_nlink. For, say it, character device. Not a regular file,
1947 * not a directory, not a symlink and ->i_nlink > 0.
1949 J_ASSERT ((S_ISREG(inode
->i_mode
) || S_ISDIR(inode
->i_mode
) ||
1950 S_ISLNK(inode
->i_mode
)) || inode
->i_nlink
== 0);
1952 BUFFER_TRACE(EXT4_SB(sb
)->s_sbh
, "get_write_access");
1953 err
= ext4_journal_get_write_access(handle
, EXT4_SB(sb
)->s_sbh
);
1957 err
= ext4_reserve_inode_write(handle
, inode
, &iloc
);
1961 /* Insert this inode at the head of the on-disk orphan list... */
1962 NEXT_ORPHAN(inode
) = le32_to_cpu(EXT4_SB(sb
)->s_es
->s_last_orphan
);
1963 EXT4_SB(sb
)->s_es
->s_last_orphan
= cpu_to_le32(inode
->i_ino
);
1964 err
= ext4_journal_dirty_metadata(handle
, EXT4_SB(sb
)->s_sbh
);
1965 rc
= ext4_mark_iloc_dirty(handle
, inode
, &iloc
);
1969 /* Only add to the head of the in-memory list if all the
1970 * previous operations succeeded. If the orphan_add is going to
1971 * fail (possibly taking the journal offline), we can't risk
1972 * leaving the inode on the orphan list: stray orphan-list
1973 * entries can cause panics at unmount time.
1975 * This is safe: on error we're going to ignore the orphan list
1976 * anyway on the next recovery. */
1978 list_add(&EXT4_I(inode
)->i_orphan
, &EXT4_SB(sb
)->s_orphan
);
1980 jbd_debug(4, "superblock will point to %lu\n", inode
->i_ino
);
1981 jbd_debug(4, "orphan inode %lu will point to %d\n",
1982 inode
->i_ino
, NEXT_ORPHAN(inode
));
1985 ext4_std_error(inode
->i_sb
, err
);
1990 * ext4_orphan_del() removes an unlinked or truncated inode from the list
1991 * of such inodes stored on disk, because it is finally being cleaned up.
1993 int ext4_orphan_del(handle_t
*handle
, struct inode
*inode
)
1995 struct list_head
*prev
;
1996 struct ext4_inode_info
*ei
= EXT4_I(inode
);
1997 struct ext4_sb_info
*sbi
;
1998 unsigned long ino_next
;
1999 struct ext4_iloc iloc
;
2002 lock_super(inode
->i_sb
);
2003 if (list_empty(&ei
->i_orphan
)) {
2004 unlock_super(inode
->i_sb
);
2008 ino_next
= NEXT_ORPHAN(inode
);
2009 prev
= ei
->i_orphan
.prev
;
2010 sbi
= EXT4_SB(inode
->i_sb
);
2012 jbd_debug(4, "remove inode %lu from orphan list\n", inode
->i_ino
);
2014 list_del_init(&ei
->i_orphan
);
2016 /* If we're on an error path, we may not have a valid
2017 * transaction handle with which to update the orphan list on
2018 * disk, but we still need to remove the inode from the linked
2019 * list in memory. */
2023 err
= ext4_reserve_inode_write(handle
, inode
, &iloc
);
2027 if (prev
== &sbi
->s_orphan
) {
2028 jbd_debug(4, "superblock will point to %lu\n", ino_next
);
2029 BUFFER_TRACE(sbi
->s_sbh
, "get_write_access");
2030 err
= ext4_journal_get_write_access(handle
, sbi
->s_sbh
);
2033 sbi
->s_es
->s_last_orphan
= cpu_to_le32(ino_next
);
2034 err
= ext4_journal_dirty_metadata(handle
, sbi
->s_sbh
);
2036 struct ext4_iloc iloc2
;
2037 struct inode
*i_prev
=
2038 &list_entry(prev
, struct ext4_inode_info
, i_orphan
)->vfs_inode
;
2040 jbd_debug(4, "orphan inode %lu will point to %lu\n",
2041 i_prev
->i_ino
, ino_next
);
2042 err
= ext4_reserve_inode_write(handle
, i_prev
, &iloc2
);
2045 NEXT_ORPHAN(i_prev
) = ino_next
;
2046 err
= ext4_mark_iloc_dirty(handle
, i_prev
, &iloc2
);
2050 NEXT_ORPHAN(inode
) = 0;
2051 err
= ext4_mark_iloc_dirty(handle
, inode
, &iloc
);
2054 ext4_std_error(inode
->i_sb
, err
);
2056 unlock_super(inode
->i_sb
);
2064 static int ext4_rmdir (struct inode
* dir
, struct dentry
*dentry
)
2067 struct inode
* inode
;
2068 struct buffer_head
* bh
;
2069 struct ext4_dir_entry_2
* de
;
2072 /* Initialize quotas before so that eventual writes go in
2073 * separate transaction */
2074 DQUOT_INIT(dentry
->d_inode
);
2075 handle
= ext4_journal_start(dir
, EXT4_DELETE_TRANS_BLOCKS(dir
->i_sb
));
2077 return PTR_ERR(handle
);
2080 bh
= ext4_find_entry (dentry
, &de
);
2084 if (IS_DIRSYNC(dir
))
2087 inode
= dentry
->d_inode
;
2090 if (le32_to_cpu(de
->inode
) != inode
->i_ino
)
2093 retval
= -ENOTEMPTY
;
2094 if (!empty_dir (inode
))
2097 retval
= ext4_delete_entry(handle
, dir
, de
, bh
);
2100 if (!EXT4_DIR_LINK_EMPTY(inode
))
2101 ext4_warning (inode
->i_sb
, "ext4_rmdir",
2102 "empty directory has too many links (%d)",
2106 /* There's no need to set i_disksize: the fact that i_nlink is
2107 * zero will ensure that the right thing happens during any
2110 ext4_orphan_add(handle
, inode
);
2111 inode
->i_ctime
= dir
->i_ctime
= dir
->i_mtime
= ext4_current_time(inode
);
2112 ext4_mark_inode_dirty(handle
, inode
);
2113 ext4_dec_count(handle
, dir
);
2114 ext4_update_dx_flag(dir
);
2115 ext4_mark_inode_dirty(handle
, dir
);
2118 ext4_journal_stop(handle
);
2123 static int ext4_unlink(struct inode
* dir
, struct dentry
*dentry
)
2126 struct inode
* inode
;
2127 struct buffer_head
* bh
;
2128 struct ext4_dir_entry_2
* de
;
2131 /* Initialize quotas before so that eventual writes go
2132 * in separate transaction */
2133 DQUOT_INIT(dentry
->d_inode
);
2134 handle
= ext4_journal_start(dir
, EXT4_DELETE_TRANS_BLOCKS(dir
->i_sb
));
2136 return PTR_ERR(handle
);
2138 if (IS_DIRSYNC(dir
))
2142 bh
= ext4_find_entry (dentry
, &de
);
2146 inode
= dentry
->d_inode
;
2149 if (le32_to_cpu(de
->inode
) != inode
->i_ino
)
2152 if (!inode
->i_nlink
) {
2153 ext4_warning (inode
->i_sb
, "ext4_unlink",
2154 "Deleting nonexistent file (%lu), %d",
2155 inode
->i_ino
, inode
->i_nlink
);
2158 retval
= ext4_delete_entry(handle
, dir
, de
, bh
);
2161 dir
->i_ctime
= dir
->i_mtime
= ext4_current_time(dir
);
2162 ext4_update_dx_flag(dir
);
2163 ext4_mark_inode_dirty(handle
, dir
);
2165 if (!inode
->i_nlink
)
2166 ext4_orphan_add(handle
, inode
);
2167 inode
->i_ctime
= ext4_current_time(inode
);
2168 ext4_mark_inode_dirty(handle
, inode
);
2172 ext4_journal_stop(handle
);
2177 static int ext4_symlink (struct inode
* dir
,
2178 struct dentry
*dentry
, const char * symname
)
2181 struct inode
* inode
;
2182 int l
, err
, retries
= 0;
2184 l
= strlen(symname
)+1;
2185 if (l
> dir
->i_sb
->s_blocksize
)
2186 return -ENAMETOOLONG
;
2189 handle
= ext4_journal_start(dir
, EXT4_DATA_TRANS_BLOCKS(dir
->i_sb
) +
2190 EXT4_INDEX_EXTRA_TRANS_BLOCKS
+ 5 +
2191 2*EXT4_QUOTA_INIT_BLOCKS(dir
->i_sb
));
2193 return PTR_ERR(handle
);
2195 if (IS_DIRSYNC(dir
))
2198 inode
= ext4_new_inode (handle
, dir
, S_IFLNK
|S_IRWXUGO
);
2199 err
= PTR_ERR(inode
);
2203 if (l
> sizeof (EXT4_I(inode
)->i_data
)) {
2204 inode
->i_op
= &ext4_symlink_inode_operations
;
2205 ext4_set_aops(inode
);
2207 * page_symlink() calls into ext4_prepare/commit_write.
2208 * We have a transaction open. All is sweetness. It also sets
2209 * i_size in generic_commit_write().
2211 err
= __page_symlink(inode
, symname
, l
,
2212 mapping_gfp_mask(inode
->i_mapping
) & ~__GFP_FS
);
2215 ext4_mark_inode_dirty(handle
, inode
);
2220 inode
->i_op
= &ext4_fast_symlink_inode_operations
;
2221 memcpy((char*)&EXT4_I(inode
)->i_data
,symname
,l
);
2222 inode
->i_size
= l
-1;
2223 EXT4_I(inode
)->i_flags
&= ~EXT4_EXTENTS_FL
;
2225 EXT4_I(inode
)->i_disksize
= inode
->i_size
;
2226 err
= ext4_add_nondir(handle
, dentry
, inode
);
2228 ext4_journal_stop(handle
);
2229 if (err
== -ENOSPC
&& ext4_should_retry_alloc(dir
->i_sb
, &retries
))
2234 static int ext4_link (struct dentry
* old_dentry
,
2235 struct inode
* dir
, struct dentry
*dentry
)
2238 struct inode
*inode
= old_dentry
->d_inode
;
2239 int err
, retries
= 0;
2241 if (EXT4_DIR_LINK_MAX(inode
))
2245 * Return -ENOENT if we've raced with unlink and i_nlink is 0. Doing
2246 * otherwise has the potential to corrupt the orphan inode list.
2248 if (inode
->i_nlink
== 0)
2252 handle
= ext4_journal_start(dir
, EXT4_DATA_TRANS_BLOCKS(dir
->i_sb
) +
2253 EXT4_INDEX_EXTRA_TRANS_BLOCKS
);
2255 return PTR_ERR(handle
);
2257 if (IS_DIRSYNC(dir
))
2260 inode
->i_ctime
= ext4_current_time(inode
);
2261 ext4_inc_count(handle
, inode
);
2262 atomic_inc(&inode
->i_count
);
2264 err
= ext4_add_nondir(handle
, dentry
, inode
);
2265 ext4_journal_stop(handle
);
2266 if (err
== -ENOSPC
&& ext4_should_retry_alloc(dir
->i_sb
, &retries
))
2271 #define PARENT_INO(buffer) \
2272 (ext4_next_entry((struct ext4_dir_entry_2 *)(buffer))->inode)
2275 * Anybody can rename anything with this: the permission checks are left to the
2276 * higher-level routines.
2278 static int ext4_rename (struct inode
* old_dir
, struct dentry
*old_dentry
,
2279 struct inode
* new_dir
,struct dentry
*new_dentry
)
2282 struct inode
* old_inode
, * new_inode
;
2283 struct buffer_head
* old_bh
, * new_bh
, * dir_bh
;
2284 struct ext4_dir_entry_2
* old_de
, * new_de
;
2287 old_bh
= new_bh
= dir_bh
= NULL
;
2289 /* Initialize quotas before so that eventual writes go
2290 * in separate transaction */
2291 if (new_dentry
->d_inode
)
2292 DQUOT_INIT(new_dentry
->d_inode
);
2293 handle
= ext4_journal_start(old_dir
, 2 *
2294 EXT4_DATA_TRANS_BLOCKS(old_dir
->i_sb
) +
2295 EXT4_INDEX_EXTRA_TRANS_BLOCKS
+ 2);
2297 return PTR_ERR(handle
);
2299 if (IS_DIRSYNC(old_dir
) || IS_DIRSYNC(new_dir
))
2302 old_bh
= ext4_find_entry (old_dentry
, &old_de
);
2304 * Check for inode number is _not_ due to possible IO errors.
2305 * We might rmdir the source, keep it as pwd of some process
2306 * and merrily kill the link to whatever was created under the
2307 * same name. Goodbye sticky bit ;-<
2309 old_inode
= old_dentry
->d_inode
;
2311 if (!old_bh
|| le32_to_cpu(old_de
->inode
) != old_inode
->i_ino
)
2314 new_inode
= new_dentry
->d_inode
;
2315 new_bh
= ext4_find_entry (new_dentry
, &new_de
);
2322 if (S_ISDIR(old_inode
->i_mode
)) {
2324 retval
= -ENOTEMPTY
;
2325 if (!empty_dir (new_inode
))
2329 dir_bh
= ext4_bread (handle
, old_inode
, 0, 0, &retval
);
2332 if (le32_to_cpu(PARENT_INO(dir_bh
->b_data
)) != old_dir
->i_ino
)
2335 if (!new_inode
&& new_dir
!=old_dir
&&
2336 new_dir
->i_nlink
>= EXT4_LINK_MAX
)
2340 retval
= ext4_add_entry (handle
, new_dentry
, old_inode
);
2344 BUFFER_TRACE(new_bh
, "get write access");
2345 ext4_journal_get_write_access(handle
, new_bh
);
2346 new_de
->inode
= cpu_to_le32(old_inode
->i_ino
);
2347 if (EXT4_HAS_INCOMPAT_FEATURE(new_dir
->i_sb
,
2348 EXT4_FEATURE_INCOMPAT_FILETYPE
))
2349 new_de
->file_type
= old_de
->file_type
;
2350 new_dir
->i_version
++;
2351 BUFFER_TRACE(new_bh
, "call ext4_journal_dirty_metadata");
2352 ext4_journal_dirty_metadata(handle
, new_bh
);
2358 * Like most other Unix systems, set the ctime for inodes on a
2361 old_inode
->i_ctime
= ext4_current_time(old_inode
);
2362 ext4_mark_inode_dirty(handle
, old_inode
);
2367 if (le32_to_cpu(old_de
->inode
) != old_inode
->i_ino
||
2368 old_de
->name_len
!= old_dentry
->d_name
.len
||
2369 strncmp(old_de
->name
, old_dentry
->d_name
.name
, old_de
->name_len
) ||
2370 (retval
= ext4_delete_entry(handle
, old_dir
,
2371 old_de
, old_bh
)) == -ENOENT
) {
2372 /* old_de could have moved from under us during htree split, so
2373 * make sure that we are deleting the right entry. We might
2374 * also be pointing to a stale entry in the unused part of
2375 * old_bh so just checking inum and the name isn't enough. */
2376 struct buffer_head
*old_bh2
;
2377 struct ext4_dir_entry_2
*old_de2
;
2379 old_bh2
= ext4_find_entry(old_dentry
, &old_de2
);
2381 retval
= ext4_delete_entry(handle
, old_dir
,
2387 ext4_warning(old_dir
->i_sb
, "ext4_rename",
2388 "Deleting old file (%lu), %d, error=%d",
2389 old_dir
->i_ino
, old_dir
->i_nlink
, retval
);
2393 ext4_dec_count(handle
, new_inode
);
2394 new_inode
->i_ctime
= ext4_current_time(new_inode
);
2396 old_dir
->i_ctime
= old_dir
->i_mtime
= ext4_current_time(old_dir
);
2397 ext4_update_dx_flag(old_dir
);
2399 BUFFER_TRACE(dir_bh
, "get_write_access");
2400 ext4_journal_get_write_access(handle
, dir_bh
);
2401 PARENT_INO(dir_bh
->b_data
) = cpu_to_le32(new_dir
->i_ino
);
2402 BUFFER_TRACE(dir_bh
, "call ext4_journal_dirty_metadata");
2403 ext4_journal_dirty_metadata(handle
, dir_bh
);
2404 ext4_dec_count(handle
, old_dir
);
2406 /* checked empty_dir above, can't have another parent,
2407 * ext4_dec_count() won't work for many-linked dirs */
2408 new_inode
->i_nlink
= 0;
2410 ext4_inc_count(handle
, new_dir
);
2411 ext4_update_dx_flag(new_dir
);
2412 ext4_mark_inode_dirty(handle
, new_dir
);
2415 ext4_mark_inode_dirty(handle
, old_dir
);
2417 ext4_mark_inode_dirty(handle
, new_inode
);
2418 if (!new_inode
->i_nlink
)
2419 ext4_orphan_add(handle
, new_inode
);
2427 ext4_journal_stop(handle
);
2432 * directories can handle most operations...
2434 const struct inode_operations ext4_dir_inode_operations
= {
2435 .create
= ext4_create
,
2436 .lookup
= ext4_lookup
,
2438 .unlink
= ext4_unlink
,
2439 .symlink
= ext4_symlink
,
2440 .mkdir
= ext4_mkdir
,
2441 .rmdir
= ext4_rmdir
,
2442 .mknod
= ext4_mknod
,
2443 .rename
= ext4_rename
,
2444 .setattr
= ext4_setattr
,
2445 #ifdef CONFIG_EXT4DEV_FS_XATTR
2446 .setxattr
= generic_setxattr
,
2447 .getxattr
= generic_getxattr
,
2448 .listxattr
= ext4_listxattr
,
2449 .removexattr
= generic_removexattr
,
2451 .permission
= ext4_permission
,
2454 const struct inode_operations ext4_special_inode_operations
= {
2455 .setattr
= ext4_setattr
,
2456 #ifdef CONFIG_EXT4DEV_FS_XATTR
2457 .setxattr
= generic_setxattr
,
2458 .getxattr
= generic_getxattr
,
2459 .listxattr
= ext4_listxattr
,
2460 .removexattr
= generic_removexattr
,
2462 .permission
= ext4_permission
,