2 * linux/fs/ext3/namei.c
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
11 * linux/fs/minix/namei.c
13 * Copyright (C) 1991, 1992 Linus Torvalds
15 * Big-endian to little-endian byte-swapping/bitmaps by
16 * David S. Miller (davem@caip.rutgers.edu), 1995
17 * Directory entry file type support and forward compatibility hooks
18 * for B-tree directories by Theodore Ts'o (tytso@mit.edu), 1998
19 * Hash Tree Directory indexing (c)
20 * Daniel Phillips, 2001
21 * Hash Tree Directory indexing porting
22 * Christopher Li, 2002
23 * Hash Tree Directory indexing cleanup
28 #include <linux/pagemap.h>
29 #include <linux/jbd.h>
30 #include <linux/time.h>
31 #include <linux/ext3_fs.h>
32 #include <linux/ext3_jbd.h>
33 #include <linux/fcntl.h>
34 #include <linux/stat.h>
35 #include <linux/string.h>
36 #include <linux/quotaops.h>
37 #include <linux/buffer_head.h>
38 #include <linux/bio.h>
45 * define how far ahead to read directories while searching them.
47 #define NAMEI_RA_CHUNKS 2
48 #define NAMEI_RA_BLOCKS 4
49 #define NAMEI_RA_SIZE (NAMEI_RA_CHUNKS * NAMEI_RA_BLOCKS)
50 #define NAMEI_RA_INDEX(c,b) (((c) * NAMEI_RA_BLOCKS) + (b))
52 static struct buffer_head
*ext3_append(handle_t
*handle
,
56 struct buffer_head
*bh
;
58 *block
= inode
->i_size
>> inode
->i_sb
->s_blocksize_bits
;
60 if ((bh
= ext3_bread(handle
, inode
, *block
, 1, err
))) {
61 inode
->i_size
+= inode
->i_sb
->s_blocksize
;
62 EXT3_I(inode
)->i_disksize
= inode
->i_size
;
63 ext3_journal_get_write_access(handle
,bh
);
69 #define assert(test) J_ASSERT(test)
73 #define swap(x, y) do { typeof(x) z = x; x = y; y = z; } while (0)
77 #define dxtrace(command) command
79 #define dxtrace(command)
103 * dx_root_info is laid out so that if it should somehow get overlaid by a
104 * dirent the two low bits of the hash version will be zero. Therefore, the
105 * hash version mod 4 should never be 0. Sincerely, the paranoia department.
110 struct fake_dirent dot
;
112 struct fake_dirent dotdot
;
116 __le32 reserved_zero
;
118 u8 info_length
; /* 8 */
123 struct dx_entry entries
[0];
128 struct fake_dirent fake
;
129 struct dx_entry entries
[0];
135 struct buffer_head
*bh
;
136 struct dx_entry
*entries
;
147 #ifdef CONFIG_EXT3_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 ext3_dir_entry_2
*de
, int size
,
165 struct dx_hash_info
*hinfo
, struct dx_map_entry map
[]);
166 static void dx_sort_map(struct dx_map_entry
*map
, unsigned count
);
167 static struct ext3_dir_entry_2
*dx_move_dirents (char *from
, char *to
,
168 struct dx_map_entry
*offsets
, int count
);
169 static struct ext3_dir_entry_2
* dx_pack_dirents (char *base
, int size
);
170 static void dx_insert_block (struct dx_frame
*frame
, u32 hash
, u32 block
);
171 static int ext3_htree_next_block(struct inode
*dir
, __u32 hash
,
172 struct dx_frame
*frame
,
173 struct dx_frame
*frames
,
175 static struct buffer_head
* ext3_dx_find_entry(struct dentry
*dentry
,
176 struct ext3_dir_entry_2
**res_dir
, int *err
);
177 static int ext3_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
- EXT3_DIR_REC_LEN(1) -
228 EXT3_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
- EXT3_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
++)
248 printk("%x->%u ", i
? dx_get_hash(entries
+ i
): 0, dx_get_block(entries
+ i
));
260 static struct stats
dx_show_leaf(struct dx_hash_info
*hinfo
, struct ext3_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 ext3fs_dirhash(de
->name
, de
->name_len
, &h
);
278 printk(":%x.%u ", h
.hash
,
279 ((char *) de
- base
));
281 space
+= EXT3_DIR_REC_LEN(de
->name_len
);
284 de
= (struct ext3_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
= ext3_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 ext3_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
= ext3_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 ext3_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
= EXT3_SB(dir
->i_sb
)->s_hash_seed
;
360 ext3fs_dirhash(dentry
->d_name
.name
, dentry
->d_name
.len
, hinfo
);
363 if (root
->info
.unused_flags
& 1) {
364 ext3_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 ext3_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
);
384 if (dx_get_limit(entries
) != dx_root_limit(dir
,
385 root
->info
.info_length
)) {
386 ext3_warning(dir
->i_sb
, __FUNCTION__
,
387 "dx entry: limit != root limit");
389 *err
= ERR_BAD_DX_DIR
;
393 dxtrace (printk("Look up %x", hash
));
396 count
= dx_get_count(entries
);
397 if (!count
|| count
> dx_get_limit(entries
)) {
398 ext3_warning(dir
->i_sb
, __FUNCTION__
,
399 "dx entry: no count or count > limit");
401 *err
= ERR_BAD_DX_DIR
;
406 q
= entries
+ count
- 1;
410 dxtrace(printk("."));
411 if (dx_get_hash(m
) > hash
)
417 if (0) // linear search cross check
419 unsigned n
= count
- 1;
423 dxtrace(printk(","));
424 if (dx_get_hash(++at
) > hash
)
430 assert (at
== p
- 1);
434 dxtrace(printk(" %x->%u\n", at
== entries
? 0: dx_get_hash(at
), dx_get_block(at
)));
436 frame
->entries
= entries
;
438 if (!indirect
--) return frame
;
439 if (!(bh
= ext3_bread (NULL
,dir
, dx_get_block(at
), 0, err
)))
441 at
= entries
= ((struct dx_node
*) bh
->b_data
)->entries
;
442 if (dx_get_limit(entries
) != dx_node_limit (dir
)) {
443 ext3_warning(dir
->i_sb
, __FUNCTION__
,
444 "dx entry: limit != node limit");
446 *err
= ERR_BAD_DX_DIR
;
453 while (frame
>= frame_in
) {
458 if (*err
== ERR_BAD_DX_DIR
)
459 ext3_warning(dir
->i_sb
, __FUNCTION__
,
460 "Corrupt dir inode %ld, running e2fsck is "
461 "recommended.", dir
->i_ino
);
465 static void dx_release (struct dx_frame
*frames
)
467 if (frames
[0].bh
== NULL
)
470 if (((struct dx_root
*) frames
[0].bh
->b_data
)->info
.indirect_levels
)
471 brelse(frames
[1].bh
);
472 brelse(frames
[0].bh
);
476 * This function increments the frame pointer to search the next leaf
477 * block, and reads in the necessary intervening nodes if the search
478 * should be necessary. Whether or not the search is necessary is
479 * controlled by the hash parameter. If the hash value is even, then
480 * the search is only continued if the next block starts with that
481 * hash value. This is used if we are searching for a specific file.
483 * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
485 * This function returns 1 if the caller should continue to search,
486 * or 0 if it should not. If there is an error reading one of the
487 * index blocks, it will a negative error code.
489 * If start_hash is non-null, it will be filled in with the starting
490 * hash of the next page.
492 static int ext3_htree_next_block(struct inode
*dir
, __u32 hash
,
493 struct dx_frame
*frame
,
494 struct dx_frame
*frames
,
498 struct buffer_head
*bh
;
499 int err
, num_frames
= 0;
504 * Find the next leaf page by incrementing the frame pointer.
505 * If we run out of entries in the interior node, loop around and
506 * increment pointer in the parent node. When we break out of
507 * this loop, num_frames indicates the number of interior
508 * nodes need to be read.
511 if (++(p
->at
) < p
->entries
+ dx_get_count(p
->entries
))
520 * If the hash is 1, then continue only if the next page has a
521 * continuation hash of any value. This is used for readdir
522 * handling. Otherwise, check to see if the hash matches the
523 * desired contiuation hash. If it doesn't, return since
524 * there's no point to read in the successive index pages.
526 bhash
= dx_get_hash(p
->at
);
529 if ((hash
& 1) == 0) {
530 if ((bhash
& ~1) != hash
)
534 * If the hash is HASH_NB_ALWAYS, we always go to the next
535 * block so no check is necessary
537 while (num_frames
--) {
538 if (!(bh
= ext3_bread(NULL
, dir
, dx_get_block(p
->at
),
540 return err
; /* Failure */
544 p
->at
= p
->entries
= ((struct dx_node
*) bh
->b_data
)->entries
;
551 * p is at least 6 bytes before the end of page
553 static inline struct ext3_dir_entry_2
*ext3_next_entry(struct ext3_dir_entry_2
*p
)
555 return (struct ext3_dir_entry_2
*)((char*)p
+ le16_to_cpu(p
->rec_len
));
559 * This function fills a red-black tree with information from a
560 * directory block. It returns the number directory entries loaded
561 * into the tree. If there is an error it is returned in err.
563 static int htree_dirblock_to_tree(struct file
*dir_file
,
564 struct inode
*dir
, int block
,
565 struct dx_hash_info
*hinfo
,
566 __u32 start_hash
, __u32 start_minor_hash
)
568 struct buffer_head
*bh
;
569 struct ext3_dir_entry_2
*de
, *top
;
572 dxtrace(printk("In htree dirblock_to_tree: block %d\n", block
));
573 if (!(bh
= ext3_bread (NULL
, dir
, block
, 0, &err
)))
576 de
= (struct ext3_dir_entry_2
*) bh
->b_data
;
577 top
= (struct ext3_dir_entry_2
*) ((char *) de
+
578 dir
->i_sb
->s_blocksize
-
579 EXT3_DIR_REC_LEN(0));
580 for (; de
< top
; de
= ext3_next_entry(de
)) {
581 if (!ext3_check_dir_entry("htree_dirblock_to_tree", dir
, de
, bh
,
582 (block
<<EXT3_BLOCK_SIZE_BITS(dir
->i_sb
))
583 +((char *)de
- bh
->b_data
))) {
584 /* On error, skip the f_pos to the next block. */
585 dir_file
->f_pos
= (dir_file
->f_pos
|
586 (dir
->i_sb
->s_blocksize
- 1)) + 1;
590 ext3fs_dirhash(de
->name
, de
->name_len
, hinfo
);
591 if ((hinfo
->hash
< start_hash
) ||
592 ((hinfo
->hash
== start_hash
) &&
593 (hinfo
->minor_hash
< start_minor_hash
)))
597 if ((err
= ext3_htree_store_dirent(dir_file
,
598 hinfo
->hash
, hinfo
->minor_hash
, de
)) != 0) {
610 * This function fills a red-black tree with information from a
611 * directory. We start scanning the directory in hash order, starting
612 * at start_hash and start_minor_hash.
614 * This function returns the number of entries inserted into the tree,
615 * or a negative error code.
617 int ext3_htree_fill_tree(struct file
*dir_file
, __u32 start_hash
,
618 __u32 start_minor_hash
, __u32
*next_hash
)
620 struct dx_hash_info hinfo
;
621 struct ext3_dir_entry_2
*de
;
622 struct dx_frame frames
[2], *frame
;
629 dxtrace(printk("In htree_fill_tree, start hash: %x:%x\n", start_hash
,
631 dir
= dir_file
->f_path
.dentry
->d_inode
;
632 if (!(EXT3_I(dir
)->i_flags
& EXT3_INDEX_FL
)) {
633 hinfo
.hash_version
= EXT3_SB(dir
->i_sb
)->s_def_hash_version
;
634 hinfo
.seed
= EXT3_SB(dir
->i_sb
)->s_hash_seed
;
635 count
= htree_dirblock_to_tree(dir_file
, dir
, 0, &hinfo
,
636 start_hash
, start_minor_hash
);
640 hinfo
.hash
= start_hash
;
641 hinfo
.minor_hash
= 0;
642 frame
= dx_probe(NULL
, dir_file
->f_path
.dentry
->d_inode
, &hinfo
, frames
, &err
);
646 /* Add '.' and '..' from the htree header */
647 if (!start_hash
&& !start_minor_hash
) {
648 de
= (struct ext3_dir_entry_2
*) frames
[0].bh
->b_data
;
649 if ((err
= ext3_htree_store_dirent(dir_file
, 0, 0, de
)) != 0)
653 if (start_hash
< 2 || (start_hash
==2 && start_minor_hash
==0)) {
654 de
= (struct ext3_dir_entry_2
*) frames
[0].bh
->b_data
;
655 de
= ext3_next_entry(de
);
656 if ((err
= ext3_htree_store_dirent(dir_file
, 2, 0, de
)) != 0)
662 block
= dx_get_block(frame
->at
);
663 ret
= htree_dirblock_to_tree(dir_file
, dir
, block
, &hinfo
,
664 start_hash
, start_minor_hash
);
671 ret
= ext3_htree_next_block(dir
, HASH_NB_ALWAYS
,
672 frame
, frames
, &hashval
);
673 *next_hash
= hashval
;
679 * Stop if: (a) there are no more entries, or
680 * (b) we have inserted at least one entry and the
681 * next hash value is not a continuation
684 (count
&& ((hashval
& 1) == 0)))
688 dxtrace(printk("Fill tree: returned %d entries, next hash: %x\n",
698 * Directory block splitting, compacting
702 * Create map of hash values, offsets, and sizes, stored at end of block.
703 * Returns number of entries mapped.
705 static int dx_make_map (struct ext3_dir_entry_2
*de
, int size
,
706 struct dx_hash_info
*hinfo
, struct dx_map_entry
*map_tail
)
709 char *base
= (char *) de
;
710 struct dx_hash_info h
= *hinfo
;
712 while ((char *) de
< base
+ size
)
714 if (de
->name_len
&& de
->inode
) {
715 ext3fs_dirhash(de
->name
, de
->name_len
, &h
);
717 map_tail
->hash
= h
.hash
;
718 map_tail
->offs
= (u16
) ((char *) de
- base
);
719 map_tail
->size
= le16_to_cpu(de
->rec_len
);
723 /* XXX: do we need to check rec_len == 0 case? -Chris */
724 de
= (struct ext3_dir_entry_2
*) ((char *) de
+ le16_to_cpu(de
->rec_len
));
729 /* Sort map by hash value */
730 static void dx_sort_map (struct dx_map_entry
*map
, unsigned count
)
732 struct dx_map_entry
*p
, *q
, *top
= map
+ count
- 1;
734 /* Combsort until bubble sort doesn't suck */
738 if (count
- 9 < 2) /* 9, 10 -> 11 */
740 for (p
= top
, q
= p
- count
; q
>= map
; p
--, q
--)
741 if (p
->hash
< q
->hash
)
744 /* Garden variety bubble sort */
750 if (q
[1].hash
>= q
[0].hash
)
758 static void dx_insert_block(struct dx_frame
*frame
, u32 hash
, u32 block
)
760 struct dx_entry
*entries
= frame
->entries
;
761 struct dx_entry
*old
= frame
->at
, *new = old
+ 1;
762 int count
= dx_get_count(entries
);
764 assert(count
< dx_get_limit(entries
));
765 assert(old
< entries
+ count
);
766 memmove(new + 1, new, (char *)(entries
+ count
) - (char *)(new));
767 dx_set_hash(new, hash
);
768 dx_set_block(new, block
);
769 dx_set_count(entries
, count
+ 1);
774 static void ext3_update_dx_flag(struct inode
*inode
)
776 if (!EXT3_HAS_COMPAT_FEATURE(inode
->i_sb
,
777 EXT3_FEATURE_COMPAT_DIR_INDEX
))
778 EXT3_I(inode
)->i_flags
&= ~EXT3_INDEX_FL
;
782 * NOTE! unlike strncmp, ext3_match returns 1 for success, 0 for failure.
784 * `len <= EXT3_NAME_LEN' is guaranteed by caller.
785 * `de != NULL' is guaranteed by caller.
787 static inline int ext3_match (int len
, const char * const name
,
788 struct ext3_dir_entry_2
* de
)
790 if (len
!= de
->name_len
)
794 return !memcmp(name
, de
->name
, len
);
798 * Returns 0 if not found, -1 on failure, and 1 on success
800 static inline int search_dirblock(struct buffer_head
* bh
,
802 struct dentry
*dentry
,
803 unsigned long offset
,
804 struct ext3_dir_entry_2
** res_dir
)
806 struct ext3_dir_entry_2
* de
;
809 const char *name
= dentry
->d_name
.name
;
810 int namelen
= dentry
->d_name
.len
;
812 de
= (struct ext3_dir_entry_2
*) bh
->b_data
;
813 dlimit
= bh
->b_data
+ dir
->i_sb
->s_blocksize
;
814 while ((char *) de
< dlimit
) {
815 /* this code is executed quadratically often */
816 /* do minimal checking `by hand' */
818 if ((char *) de
+ namelen
<= dlimit
&&
819 ext3_match (namelen
, name
, de
)) {
820 /* found a match - just to be sure, do a full check */
821 if (!ext3_check_dir_entry("ext3_find_entry",
822 dir
, de
, bh
, offset
))
827 /* prevent looping on a bad block */
828 de_len
= le16_to_cpu(de
->rec_len
);
832 de
= (struct ext3_dir_entry_2
*) ((char *) de
+ de_len
);
841 * finds an entry in the specified directory with the wanted name. It
842 * returns the cache buffer in which the entry was found, and the entry
843 * itself (as a parameter - res_dir). It does NOT read the inode of the
844 * entry - you'll have to do that yourself if you want to.
846 * The returned buffer_head has ->b_count elevated. The caller is expected
847 * to brelse() it when appropriate.
849 static struct buffer_head
* ext3_find_entry (struct dentry
*dentry
,
850 struct ext3_dir_entry_2
** res_dir
)
852 struct super_block
* sb
;
853 struct buffer_head
* bh_use
[NAMEI_RA_SIZE
];
854 struct buffer_head
* bh
, *ret
= NULL
;
855 unsigned long start
, block
, b
;
856 int ra_max
= 0; /* Number of bh's in the readahead
858 int ra_ptr
= 0; /* Current index into readahead
862 struct inode
*dir
= dentry
->d_parent
->d_inode
;
869 blocksize
= sb
->s_blocksize
;
870 namelen
= dentry
->d_name
.len
;
871 name
= dentry
->d_name
.name
;
872 if (namelen
> EXT3_NAME_LEN
)
874 #ifdef CONFIG_EXT3_INDEX
876 bh
= ext3_dx_find_entry(dentry
, res_dir
, &err
);
878 * On success, or if the error was file not found,
879 * return. Otherwise, fall back to doing a search the
882 if (bh
|| (err
!= ERR_BAD_DX_DIR
))
884 dxtrace(printk("ext3_find_entry: dx failed, falling back\n"));
887 nblocks
= dir
->i_size
>> EXT3_BLOCK_SIZE_BITS(sb
);
888 start
= EXT3_I(dir
)->i_dir_start_lookup
;
889 if (start
>= nblocks
)
895 * We deal with the read-ahead logic here.
897 if (ra_ptr
>= ra_max
) {
898 /* Refill the readahead buffer */
901 for (ra_max
= 0; ra_max
< NAMEI_RA_SIZE
; ra_max
++) {
903 * Terminate if we reach the end of the
904 * directory and must wrap, or if our
905 * search has finished at this block.
907 if (b
>= nblocks
|| (num
&& block
== start
)) {
908 bh_use
[ra_max
] = NULL
;
912 bh
= ext3_getblk(NULL
, dir
, b
++, 0, &err
);
915 ll_rw_block(READ_META
, 1, &bh
);
918 if ((bh
= bh_use
[ra_ptr
++]) == NULL
)
921 if (!buffer_uptodate(bh
)) {
922 /* read error, skip block & hope for the best */
923 ext3_error(sb
, __FUNCTION__
, "reading directory #%lu "
924 "offset %lu", dir
->i_ino
, block
);
928 i
= search_dirblock(bh
, dir
, dentry
,
929 block
<< EXT3_BLOCK_SIZE_BITS(sb
), res_dir
);
931 EXT3_I(dir
)->i_dir_start_lookup
= block
;
933 goto cleanup_and_exit
;
937 goto cleanup_and_exit
;
940 if (++block
>= nblocks
)
942 } while (block
!= start
);
945 * If the directory has grown while we were searching, then
946 * search the last part of the directory before giving up.
949 nblocks
= dir
->i_size
>> EXT3_BLOCK_SIZE_BITS(sb
);
950 if (block
< nblocks
) {
956 /* Clean up the read-ahead blocks */
957 for (; ra_ptr
< ra_max
; ra_ptr
++)
958 brelse (bh_use
[ra_ptr
]);
962 #ifdef CONFIG_EXT3_INDEX
963 static struct buffer_head
* ext3_dx_find_entry(struct dentry
*dentry
,
964 struct ext3_dir_entry_2
**res_dir
, int *err
)
966 struct super_block
* sb
;
967 struct dx_hash_info hinfo
;
969 struct dx_frame frames
[2], *frame
;
970 struct ext3_dir_entry_2
*de
, *top
;
971 struct buffer_head
*bh
;
974 int namelen
= dentry
->d_name
.len
;
975 const u8
*name
= dentry
->d_name
.name
;
976 struct inode
*dir
= dentry
->d_parent
->d_inode
;
979 /* NFS may look up ".." - look at dx_root directory block */
980 if (namelen
> 2 || name
[0] != '.'||(name
[1] != '.' && name
[1] != '\0')){
981 if (!(frame
= dx_probe(dentry
, NULL
, &hinfo
, frames
, err
)))
985 frame
->bh
= NULL
; /* for dx_release() */
986 frame
->at
= (struct dx_entry
*)frames
; /* hack for zero entry*/
987 dx_set_block(frame
->at
, 0); /* dx_root block is 0 */
991 block
= dx_get_block(frame
->at
);
992 if (!(bh
= ext3_bread (NULL
,dir
, block
, 0, err
)))
994 de
= (struct ext3_dir_entry_2
*) bh
->b_data
;
995 top
= (struct ext3_dir_entry_2
*) ((char *) de
+ sb
->s_blocksize
-
996 EXT3_DIR_REC_LEN(0));
997 for (; de
< top
; de
= ext3_next_entry(de
))
998 if (ext3_match (namelen
, name
, de
)) {
999 if (!ext3_check_dir_entry("ext3_find_entry",
1001 (block
<<EXT3_BLOCK_SIZE_BITS(sb
))
1002 +((char *)de
- bh
->b_data
))) {
1004 *err
= ERR_BAD_DX_DIR
;
1008 dx_release (frames
);
1012 /* Check to see if we should continue to search */
1013 retval
= ext3_htree_next_block(dir
, hash
, frame
,
1016 ext3_warning(sb
, __FUNCTION__
,
1017 "error reading index page in directory #%lu",
1022 } while (retval
== 1);
1026 dxtrace(printk("%s not found\n", name
));
1027 dx_release (frames
);
1032 static struct dentry
*ext3_lookup(struct inode
* dir
, struct dentry
*dentry
, struct nameidata
*nd
)
1034 struct inode
* inode
;
1035 struct ext3_dir_entry_2
* de
;
1036 struct buffer_head
* bh
;
1038 if (dentry
->d_name
.len
> EXT3_NAME_LEN
)
1039 return ERR_PTR(-ENAMETOOLONG
);
1041 bh
= ext3_find_entry(dentry
, &de
);
1044 unsigned long ino
= le32_to_cpu(de
->inode
);
1046 if (!ext3_valid_inum(dir
->i_sb
, ino
)) {
1047 ext3_error(dir
->i_sb
, "ext3_lookup",
1048 "bad inode number: %lu", ino
);
1051 inode
= iget(dir
->i_sb
, ino
);
1054 return ERR_PTR(-EACCES
);
1056 if (is_bad_inode(inode
)) {
1058 return ERR_PTR(-ENOENT
);
1061 return d_splice_alias(inode
, dentry
);
1065 struct dentry
*ext3_get_parent(struct dentry
*child
)
1068 struct dentry
*parent
;
1069 struct inode
*inode
;
1070 struct dentry dotdot
;
1071 struct ext3_dir_entry_2
* de
;
1072 struct buffer_head
*bh
;
1074 dotdot
.d_name
.name
= "..";
1075 dotdot
.d_name
.len
= 2;
1076 dotdot
.d_parent
= child
; /* confusing, isn't it! */
1078 bh
= ext3_find_entry(&dotdot
, &de
);
1081 return ERR_PTR(-ENOENT
);
1082 ino
= le32_to_cpu(de
->inode
);
1085 if (!ext3_valid_inum(child
->d_inode
->i_sb
, ino
)) {
1086 ext3_error(child
->d_inode
->i_sb
, "ext3_get_parent",
1087 "bad inode number: %lu", ino
);
1090 inode
= iget(child
->d_inode
->i_sb
, ino
);
1093 return ERR_PTR(-EACCES
);
1095 if (is_bad_inode(inode
)) {
1097 return ERR_PTR(-ENOENT
);
1100 parent
= d_alloc_anon(inode
);
1103 parent
= ERR_PTR(-ENOMEM
);
1109 static unsigned char ext3_type_by_mode
[S_IFMT
>> S_SHIFT
] = {
1110 [S_IFREG
>> S_SHIFT
] = EXT3_FT_REG_FILE
,
1111 [S_IFDIR
>> S_SHIFT
] = EXT3_FT_DIR
,
1112 [S_IFCHR
>> S_SHIFT
] = EXT3_FT_CHRDEV
,
1113 [S_IFBLK
>> S_SHIFT
] = EXT3_FT_BLKDEV
,
1114 [S_IFIFO
>> S_SHIFT
] = EXT3_FT_FIFO
,
1115 [S_IFSOCK
>> S_SHIFT
] = EXT3_FT_SOCK
,
1116 [S_IFLNK
>> S_SHIFT
] = EXT3_FT_SYMLINK
,
1119 static inline void ext3_set_de_type(struct super_block
*sb
,
1120 struct ext3_dir_entry_2
*de
,
1122 if (EXT3_HAS_INCOMPAT_FEATURE(sb
, EXT3_FEATURE_INCOMPAT_FILETYPE
))
1123 de
->file_type
= ext3_type_by_mode
[(mode
& S_IFMT
)>>S_SHIFT
];
1126 #ifdef CONFIG_EXT3_INDEX
1128 * Move count entries from end of map between two memory locations.
1129 * Returns pointer to last entry moved.
1131 static struct ext3_dir_entry_2
*
1132 dx_move_dirents(char *from
, char *to
, struct dx_map_entry
*map
, int count
)
1134 unsigned rec_len
= 0;
1137 struct ext3_dir_entry_2
*de
= (struct ext3_dir_entry_2
*) (from
+ map
->offs
);
1138 rec_len
= EXT3_DIR_REC_LEN(de
->name_len
);
1139 memcpy (to
, de
, rec_len
);
1140 ((struct ext3_dir_entry_2
*) to
)->rec_len
=
1141 cpu_to_le16(rec_len
);
1146 return (struct ext3_dir_entry_2
*) (to
- rec_len
);
1150 * Compact each dir entry in the range to the minimal rec_len.
1151 * Returns pointer to last entry in range.
1153 static struct ext3_dir_entry_2
* dx_pack_dirents(char *base
, int size
)
1155 struct ext3_dir_entry_2
*next
, *to
, *prev
, *de
= (struct ext3_dir_entry_2
*) base
;
1156 unsigned rec_len
= 0;
1159 while ((char*)de
< base
+ size
) {
1160 next
= (struct ext3_dir_entry_2
*) ((char *) de
+
1161 le16_to_cpu(de
->rec_len
));
1162 if (de
->inode
&& de
->name_len
) {
1163 rec_len
= EXT3_DIR_REC_LEN(de
->name_len
);
1165 memmove(to
, de
, rec_len
);
1166 to
->rec_len
= cpu_to_le16(rec_len
);
1168 to
= (struct ext3_dir_entry_2
*) (((char *) to
) + rec_len
);
1176 * Split a full leaf block to make room for a new dir entry.
1177 * Allocate a new block, and move entries so that they are approx. equally full.
1178 * Returns pointer to de in block into which the new entry will be inserted.
1180 static struct ext3_dir_entry_2
*do_split(handle_t
*handle
, struct inode
*dir
,
1181 struct buffer_head
**bh
,struct dx_frame
*frame
,
1182 struct dx_hash_info
*hinfo
, int *error
)
1184 unsigned blocksize
= dir
->i_sb
->s_blocksize
;
1185 unsigned count
, continued
;
1186 struct buffer_head
*bh2
;
1189 struct dx_map_entry
*map
;
1190 char *data1
= (*bh
)->b_data
, *data2
;
1191 unsigned split
, move
, size
, i
;
1192 struct ext3_dir_entry_2
*de
= NULL
, *de2
;
1195 bh2
= ext3_append (handle
, dir
, &newblock
, &err
);
1202 BUFFER_TRACE(*bh
, "get_write_access");
1203 err
= ext3_journal_get_write_access(handle
, *bh
);
1207 BUFFER_TRACE(frame
->bh
, "get_write_access");
1208 err
= ext3_journal_get_write_access(handle
, frame
->bh
);
1212 data2
= bh2
->b_data
;
1214 /* create map in the end of data2 block */
1215 map
= (struct dx_map_entry
*) (data2
+ blocksize
);
1216 count
= dx_make_map ((struct ext3_dir_entry_2
*) data1
,
1217 blocksize
, hinfo
, map
);
1219 dx_sort_map (map
, count
);
1220 /* Split the existing block in the middle, size-wise */
1223 for (i
= count
-1; i
>= 0; i
--) {
1224 /* is more than half of this entry in 2nd half of the block? */
1225 if (size
+ map
[i
].size
/2 > blocksize
/2)
1227 size
+= map
[i
].size
;
1230 /* map index at which we will split */
1231 split
= count
- move
;
1232 hash2
= map
[split
].hash
;
1233 continued
= hash2
== map
[split
- 1].hash
;
1234 dxtrace(printk("Split block %i at %x, %i/%i\n",
1235 dx_get_block(frame
->at
), hash2
, split
, count
-split
));
1237 /* Fancy dance to stay within two buffers */
1238 de2
= dx_move_dirents(data1
, data2
, map
+ split
, count
- split
);
1239 de
= dx_pack_dirents(data1
,blocksize
);
1240 de
->rec_len
= cpu_to_le16(data1
+ blocksize
- (char *) de
);
1241 de2
->rec_len
= cpu_to_le16(data2
+ blocksize
- (char *) de2
);
1242 dxtrace(dx_show_leaf (hinfo
, (struct ext3_dir_entry_2
*) data1
, blocksize
, 1));
1243 dxtrace(dx_show_leaf (hinfo
, (struct ext3_dir_entry_2
*) data2
, blocksize
, 1));
1245 /* Which block gets the new entry? */
1246 if (hinfo
->hash
>= hash2
)
1251 dx_insert_block (frame
, hash2
+ continued
, newblock
);
1252 err
= ext3_journal_dirty_metadata (handle
, bh2
);
1255 err
= ext3_journal_dirty_metadata (handle
, frame
->bh
);
1259 dxtrace(dx_show_index ("frame", frame
->entries
));
1266 ext3_std_error(dir
->i_sb
, err
);
1275 * Add a new entry into a directory (leaf) block. If de is non-NULL,
1276 * it points to a directory entry which is guaranteed to be large
1277 * enough for new directory entry. If de is NULL, then
1278 * add_dirent_to_buf will attempt search the directory block for
1279 * space. It will return -ENOSPC if no space is available, and -EIO
1280 * and -EEXIST if directory entry already exists.
1282 * NOTE! bh is NOT released in the case where ENOSPC is returned. In
1283 * all other cases bh is released.
1285 static int add_dirent_to_buf(handle_t
*handle
, struct dentry
*dentry
,
1286 struct inode
*inode
, struct ext3_dir_entry_2
*de
,
1287 struct buffer_head
* bh
)
1289 struct inode
*dir
= dentry
->d_parent
->d_inode
;
1290 const char *name
= dentry
->d_name
.name
;
1291 int namelen
= dentry
->d_name
.len
;
1292 unsigned long offset
= 0;
1293 unsigned short reclen
;
1294 int nlen
, rlen
, err
;
1297 reclen
= EXT3_DIR_REC_LEN(namelen
);
1299 de
= (struct ext3_dir_entry_2
*)bh
->b_data
;
1300 top
= bh
->b_data
+ dir
->i_sb
->s_blocksize
- reclen
;
1301 while ((char *) de
<= top
) {
1302 if (!ext3_check_dir_entry("ext3_add_entry", dir
, de
,
1307 if (ext3_match (namelen
, name
, de
)) {
1311 nlen
= EXT3_DIR_REC_LEN(de
->name_len
);
1312 rlen
= le16_to_cpu(de
->rec_len
);
1313 if ((de
->inode
? rlen
- nlen
: rlen
) >= reclen
)
1315 de
= (struct ext3_dir_entry_2
*)((char *)de
+ rlen
);
1318 if ((char *) de
> top
)
1321 BUFFER_TRACE(bh
, "get_write_access");
1322 err
= ext3_journal_get_write_access(handle
, bh
);
1324 ext3_std_error(dir
->i_sb
, err
);
1329 /* By now the buffer is marked for journaling */
1330 nlen
= EXT3_DIR_REC_LEN(de
->name_len
);
1331 rlen
= le16_to_cpu(de
->rec_len
);
1333 struct ext3_dir_entry_2
*de1
= (struct ext3_dir_entry_2
*)((char *)de
+ nlen
);
1334 de1
->rec_len
= cpu_to_le16(rlen
- nlen
);
1335 de
->rec_len
= cpu_to_le16(nlen
);
1338 de
->file_type
= EXT3_FT_UNKNOWN
;
1340 de
->inode
= cpu_to_le32(inode
->i_ino
);
1341 ext3_set_de_type(dir
->i_sb
, de
, inode
->i_mode
);
1344 de
->name_len
= namelen
;
1345 memcpy (de
->name
, name
, namelen
);
1347 * XXX shouldn't update any times until successful
1348 * completion of syscall, but too many callers depend
1351 * XXX similarly, too many callers depend on
1352 * ext3_new_inode() setting the times, but error
1353 * recovery deletes the inode, so the worst that can
1354 * happen is that the times are slightly out of date
1355 * and/or different from the directory change time.
1357 dir
->i_mtime
= dir
->i_ctime
= CURRENT_TIME_SEC
;
1358 ext3_update_dx_flag(dir
);
1360 ext3_mark_inode_dirty(handle
, dir
);
1361 BUFFER_TRACE(bh
, "call ext3_journal_dirty_metadata");
1362 err
= ext3_journal_dirty_metadata(handle
, bh
);
1364 ext3_std_error(dir
->i_sb
, err
);
1369 #ifdef CONFIG_EXT3_INDEX
1371 * This converts a one block unindexed directory to a 3 block indexed
1372 * directory, and adds the dentry to the indexed directory.
1374 static int make_indexed_dir(handle_t
*handle
, struct dentry
*dentry
,
1375 struct inode
*inode
, struct buffer_head
*bh
)
1377 struct inode
*dir
= dentry
->d_parent
->d_inode
;
1378 const char *name
= dentry
->d_name
.name
;
1379 int namelen
= dentry
->d_name
.len
;
1380 struct buffer_head
*bh2
;
1381 struct dx_root
*root
;
1382 struct dx_frame frames
[2], *frame
;
1383 struct dx_entry
*entries
;
1384 struct ext3_dir_entry_2
*de
, *de2
;
1389 struct dx_hash_info hinfo
;
1391 struct fake_dirent
*fde
;
1393 blocksize
= dir
->i_sb
->s_blocksize
;
1394 dxtrace(printk("Creating index\n"));
1395 retval
= ext3_journal_get_write_access(handle
, bh
);
1397 ext3_std_error(dir
->i_sb
, retval
);
1401 root
= (struct dx_root
*) bh
->b_data
;
1403 bh2
= ext3_append (handle
, dir
, &block
, &retval
);
1408 EXT3_I(dir
)->i_flags
|= EXT3_INDEX_FL
;
1409 data1
= bh2
->b_data
;
1411 /* The 0th block becomes the root, move the dirents out */
1412 fde
= &root
->dotdot
;
1413 de
= (struct ext3_dir_entry_2
*)((char *)fde
+ le16_to_cpu(fde
->rec_len
));
1414 len
= ((char *) root
) + blocksize
- (char *) de
;
1415 memcpy (data1
, de
, len
);
1416 de
= (struct ext3_dir_entry_2
*) data1
;
1418 while ((char *)(de2
=(void*)de
+le16_to_cpu(de
->rec_len
)) < top
)
1420 de
->rec_len
= cpu_to_le16(data1
+ blocksize
- (char *) de
);
1421 /* Initialize the root; the dot dirents already exist */
1422 de
= (struct ext3_dir_entry_2
*) (&root
->dotdot
);
1423 de
->rec_len
= cpu_to_le16(blocksize
- EXT3_DIR_REC_LEN(2));
1424 memset (&root
->info
, 0, sizeof(root
->info
));
1425 root
->info
.info_length
= sizeof(root
->info
);
1426 root
->info
.hash_version
= EXT3_SB(dir
->i_sb
)->s_def_hash_version
;
1427 entries
= root
->entries
;
1428 dx_set_block (entries
, 1);
1429 dx_set_count (entries
, 1);
1430 dx_set_limit (entries
, dx_root_limit(dir
, sizeof(root
->info
)));
1432 /* Initialize as for dx_probe */
1433 hinfo
.hash_version
= root
->info
.hash_version
;
1434 hinfo
.seed
= EXT3_SB(dir
->i_sb
)->s_hash_seed
;
1435 ext3fs_dirhash(name
, namelen
, &hinfo
);
1437 frame
->entries
= entries
;
1438 frame
->at
= entries
;
1441 de
= do_split(handle
,dir
, &bh
, frame
, &hinfo
, &retval
);
1442 dx_release (frames
);
1446 return add_dirent_to_buf(handle
, dentry
, inode
, de
, bh
);
1453 * adds a file entry to the specified directory, using the same
1454 * semantics as ext3_find_entry(). It returns NULL if it failed.
1456 * NOTE!! The inode part of 'de' is left at 0 - which means you
1457 * may not sleep between calling this and putting something into
1458 * the entry, as someone else might have used it while you slept.
1460 static int ext3_add_entry (handle_t
*handle
, struct dentry
*dentry
,
1461 struct inode
*inode
)
1463 struct inode
*dir
= dentry
->d_parent
->d_inode
;
1464 unsigned long offset
;
1465 struct buffer_head
* bh
;
1466 struct ext3_dir_entry_2
*de
;
1467 struct super_block
* sb
;
1469 #ifdef CONFIG_EXT3_INDEX
1476 blocksize
= sb
->s_blocksize
;
1477 if (!dentry
->d_name
.len
)
1479 #ifdef CONFIG_EXT3_INDEX
1481 retval
= ext3_dx_add_entry(handle
, dentry
, inode
);
1482 if (!retval
|| (retval
!= ERR_BAD_DX_DIR
))
1484 EXT3_I(dir
)->i_flags
&= ~EXT3_INDEX_FL
;
1486 ext3_mark_inode_dirty(handle
, dir
);
1489 blocks
= dir
->i_size
>> sb
->s_blocksize_bits
;
1490 for (block
= 0, offset
= 0; block
< blocks
; block
++) {
1491 bh
= ext3_bread(handle
, dir
, block
, 0, &retval
);
1494 retval
= add_dirent_to_buf(handle
, dentry
, inode
, NULL
, bh
);
1495 if (retval
!= -ENOSPC
)
1498 #ifdef CONFIG_EXT3_INDEX
1499 if (blocks
== 1 && !dx_fallback
&&
1500 EXT3_HAS_COMPAT_FEATURE(sb
, EXT3_FEATURE_COMPAT_DIR_INDEX
))
1501 return make_indexed_dir(handle
, dentry
, inode
, bh
);
1505 bh
= ext3_append(handle
, dir
, &block
, &retval
);
1508 de
= (struct ext3_dir_entry_2
*) bh
->b_data
;
1510 de
->rec_len
= cpu_to_le16(blocksize
);
1511 return add_dirent_to_buf(handle
, dentry
, inode
, de
, bh
);
1514 #ifdef CONFIG_EXT3_INDEX
1516 * Returns 0 for success, or a negative error value
1518 static int ext3_dx_add_entry(handle_t
*handle
, struct dentry
*dentry
,
1519 struct inode
*inode
)
1521 struct dx_frame frames
[2], *frame
;
1522 struct dx_entry
*entries
, *at
;
1523 struct dx_hash_info hinfo
;
1524 struct buffer_head
* bh
;
1525 struct inode
*dir
= dentry
->d_parent
->d_inode
;
1526 struct super_block
* sb
= dir
->i_sb
;
1527 struct ext3_dir_entry_2
*de
;
1530 frame
= dx_probe(dentry
, NULL
, &hinfo
, frames
, &err
);
1533 entries
= frame
->entries
;
1536 if (!(bh
= ext3_bread(handle
,dir
, dx_get_block(frame
->at
), 0, &err
)))
1539 BUFFER_TRACE(bh
, "get_write_access");
1540 err
= ext3_journal_get_write_access(handle
, bh
);
1544 err
= add_dirent_to_buf(handle
, dentry
, inode
, NULL
, bh
);
1545 if (err
!= -ENOSPC
) {
1550 /* Block full, should compress but for now just split */
1551 dxtrace(printk("using %u of %u node entries\n",
1552 dx_get_count(entries
), dx_get_limit(entries
)));
1553 /* Need to split index? */
1554 if (dx_get_count(entries
) == dx_get_limit(entries
)) {
1556 unsigned icount
= dx_get_count(entries
);
1557 int levels
= frame
- frames
;
1558 struct dx_entry
*entries2
;
1559 struct dx_node
*node2
;
1560 struct buffer_head
*bh2
;
1562 if (levels
&& (dx_get_count(frames
->entries
) ==
1563 dx_get_limit(frames
->entries
))) {
1564 ext3_warning(sb
, __FUNCTION__
,
1565 "Directory index full!");
1569 bh2
= ext3_append (handle
, dir
, &newblock
, &err
);
1572 node2
= (struct dx_node
*)(bh2
->b_data
);
1573 entries2
= node2
->entries
;
1574 node2
->fake
.rec_len
= cpu_to_le16(sb
->s_blocksize
);
1575 node2
->fake
.inode
= 0;
1576 BUFFER_TRACE(frame
->bh
, "get_write_access");
1577 err
= ext3_journal_get_write_access(handle
, frame
->bh
);
1581 unsigned icount1
= icount
/2, icount2
= icount
- icount1
;
1582 unsigned hash2
= dx_get_hash(entries
+ icount1
);
1583 dxtrace(printk("Split index %i/%i\n", icount1
, icount2
));
1585 BUFFER_TRACE(frame
->bh
, "get_write_access"); /* index root */
1586 err
= ext3_journal_get_write_access(handle
,
1591 memcpy ((char *) entries2
, (char *) (entries
+ icount1
),
1592 icount2
* sizeof(struct dx_entry
));
1593 dx_set_count (entries
, icount1
);
1594 dx_set_count (entries2
, icount2
);
1595 dx_set_limit (entries2
, dx_node_limit(dir
));
1597 /* Which index block gets the new entry? */
1598 if (at
- entries
>= icount1
) {
1599 frame
->at
= at
= at
- entries
- icount1
+ entries2
;
1600 frame
->entries
= entries
= entries2
;
1601 swap(frame
->bh
, bh2
);
1603 dx_insert_block (frames
+ 0, hash2
, newblock
);
1604 dxtrace(dx_show_index ("node", frames
[1].entries
));
1605 dxtrace(dx_show_index ("node",
1606 ((struct dx_node
*) bh2
->b_data
)->entries
));
1607 err
= ext3_journal_dirty_metadata(handle
, bh2
);
1612 dxtrace(printk("Creating second level index...\n"));
1613 memcpy((char *) entries2
, (char *) entries
,
1614 icount
* sizeof(struct dx_entry
));
1615 dx_set_limit(entries2
, dx_node_limit(dir
));
1618 dx_set_count(entries
, 1);
1619 dx_set_block(entries
+ 0, newblock
);
1620 ((struct dx_root
*) frames
[0].bh
->b_data
)->info
.indirect_levels
= 1;
1622 /* Add new access path frame */
1624 frame
->at
= at
= at
- entries
+ entries2
;
1625 frame
->entries
= entries
= entries2
;
1627 err
= ext3_journal_get_write_access(handle
,
1632 ext3_journal_dirty_metadata(handle
, frames
[0].bh
);
1634 de
= do_split(handle
, dir
, &bh
, frame
, &hinfo
, &err
);
1637 err
= add_dirent_to_buf(handle
, dentry
, inode
, de
, bh
);
1642 ext3_std_error(dir
->i_sb
, err
);
1652 * ext3_delete_entry deletes a directory entry by merging it with the
1655 static int ext3_delete_entry (handle_t
*handle
,
1657 struct ext3_dir_entry_2
* de_del
,
1658 struct buffer_head
* bh
)
1660 struct ext3_dir_entry_2
* de
, * pde
;
1665 de
= (struct ext3_dir_entry_2
*) bh
->b_data
;
1666 while (i
< bh
->b_size
) {
1667 if (!ext3_check_dir_entry("ext3_delete_entry", dir
, de
, bh
, i
))
1670 BUFFER_TRACE(bh
, "get_write_access");
1671 ext3_journal_get_write_access(handle
, bh
);
1674 cpu_to_le16(le16_to_cpu(pde
->rec_len
) +
1675 le16_to_cpu(de
->rec_len
));
1679 BUFFER_TRACE(bh
, "call ext3_journal_dirty_metadata");
1680 ext3_journal_dirty_metadata(handle
, bh
);
1683 i
+= le16_to_cpu(de
->rec_len
);
1685 de
= (struct ext3_dir_entry_2
*)
1686 ((char *) de
+ le16_to_cpu(de
->rec_len
));
1691 static int ext3_add_nondir(handle_t
*handle
,
1692 struct dentry
*dentry
, struct inode
*inode
)
1694 int err
= ext3_add_entry(handle
, dentry
, inode
);
1696 ext3_mark_inode_dirty(handle
, inode
);
1697 d_instantiate(dentry
, inode
);
1706 * By the time this is called, we already have created
1707 * the directory cache entry for the new file, but it
1708 * is so far negative - it has no inode.
1710 * If the create succeeds, we fill in the inode information
1711 * with d_instantiate().
1713 static int ext3_create (struct inode
* dir
, struct dentry
* dentry
, int mode
,
1714 struct nameidata
*nd
)
1717 struct inode
* inode
;
1718 int err
, retries
= 0;
1721 handle
= ext3_journal_start(dir
, EXT3_DATA_TRANS_BLOCKS(dir
->i_sb
) +
1722 EXT3_INDEX_EXTRA_TRANS_BLOCKS
+ 3 +
1723 2*EXT3_QUOTA_INIT_BLOCKS(dir
->i_sb
));
1725 return PTR_ERR(handle
);
1727 if (IS_DIRSYNC(dir
))
1730 inode
= ext3_new_inode (handle
, dir
, mode
);
1731 err
= PTR_ERR(inode
);
1732 if (!IS_ERR(inode
)) {
1733 inode
->i_op
= &ext3_file_inode_operations
;
1734 inode
->i_fop
= &ext3_file_operations
;
1735 ext3_set_aops(inode
);
1736 err
= ext3_add_nondir(handle
, dentry
, inode
);
1738 ext3_journal_stop(handle
);
1739 if (err
== -ENOSPC
&& ext3_should_retry_alloc(dir
->i_sb
, &retries
))
1744 static int ext3_mknod (struct inode
* dir
, struct dentry
*dentry
,
1745 int mode
, dev_t rdev
)
1748 struct inode
*inode
;
1749 int err
, retries
= 0;
1751 if (!new_valid_dev(rdev
))
1755 handle
= ext3_journal_start(dir
, EXT3_DATA_TRANS_BLOCKS(dir
->i_sb
) +
1756 EXT3_INDEX_EXTRA_TRANS_BLOCKS
+ 3 +
1757 2*EXT3_QUOTA_INIT_BLOCKS(dir
->i_sb
));
1759 return PTR_ERR(handle
);
1761 if (IS_DIRSYNC(dir
))
1764 inode
= ext3_new_inode (handle
, dir
, mode
);
1765 err
= PTR_ERR(inode
);
1766 if (!IS_ERR(inode
)) {
1767 init_special_inode(inode
, inode
->i_mode
, rdev
);
1768 #ifdef CONFIG_EXT3_FS_XATTR
1769 inode
->i_op
= &ext3_special_inode_operations
;
1771 err
= ext3_add_nondir(handle
, dentry
, inode
);
1773 ext3_journal_stop(handle
);
1774 if (err
== -ENOSPC
&& ext3_should_retry_alloc(dir
->i_sb
, &retries
))
1779 static int ext3_mkdir(struct inode
* dir
, struct dentry
* dentry
, int mode
)
1782 struct inode
* inode
;
1783 struct buffer_head
* dir_block
;
1784 struct ext3_dir_entry_2
* de
;
1785 int err
, retries
= 0;
1787 if (dir
->i_nlink
>= EXT3_LINK_MAX
)
1791 handle
= ext3_journal_start(dir
, EXT3_DATA_TRANS_BLOCKS(dir
->i_sb
) +
1792 EXT3_INDEX_EXTRA_TRANS_BLOCKS
+ 3 +
1793 2*EXT3_QUOTA_INIT_BLOCKS(dir
->i_sb
));
1795 return PTR_ERR(handle
);
1797 if (IS_DIRSYNC(dir
))
1800 inode
= ext3_new_inode (handle
, dir
, S_IFDIR
| mode
);
1801 err
= PTR_ERR(inode
);
1805 inode
->i_op
= &ext3_dir_inode_operations
;
1806 inode
->i_fop
= &ext3_dir_operations
;
1807 inode
->i_size
= EXT3_I(inode
)->i_disksize
= inode
->i_sb
->s_blocksize
;
1808 dir_block
= ext3_bread (handle
, inode
, 0, 1, &err
);
1810 drop_nlink(inode
); /* is this nlink == 0? */
1811 ext3_mark_inode_dirty(handle
, inode
);
1815 BUFFER_TRACE(dir_block
, "get_write_access");
1816 ext3_journal_get_write_access(handle
, dir_block
);
1817 de
= (struct ext3_dir_entry_2
*) dir_block
->b_data
;
1818 de
->inode
= cpu_to_le32(inode
->i_ino
);
1820 de
->rec_len
= cpu_to_le16(EXT3_DIR_REC_LEN(de
->name_len
));
1821 strcpy (de
->name
, ".");
1822 ext3_set_de_type(dir
->i_sb
, de
, S_IFDIR
);
1823 de
= (struct ext3_dir_entry_2
*)
1824 ((char *) de
+ le16_to_cpu(de
->rec_len
));
1825 de
->inode
= cpu_to_le32(dir
->i_ino
);
1826 de
->rec_len
= cpu_to_le16(inode
->i_sb
->s_blocksize
-EXT3_DIR_REC_LEN(1));
1828 strcpy (de
->name
, "..");
1829 ext3_set_de_type(dir
->i_sb
, de
, S_IFDIR
);
1831 BUFFER_TRACE(dir_block
, "call ext3_journal_dirty_metadata");
1832 ext3_journal_dirty_metadata(handle
, dir_block
);
1834 ext3_mark_inode_dirty(handle
, inode
);
1835 err
= ext3_add_entry (handle
, dentry
, inode
);
1838 ext3_mark_inode_dirty(handle
, inode
);
1843 ext3_update_dx_flag(dir
);
1844 ext3_mark_inode_dirty(handle
, dir
);
1845 d_instantiate(dentry
, inode
);
1847 ext3_journal_stop(handle
);
1848 if (err
== -ENOSPC
&& ext3_should_retry_alloc(dir
->i_sb
, &retries
))
1854 * routine to check that the specified directory is empty (for rmdir)
1856 static int empty_dir (struct inode
* inode
)
1858 unsigned long offset
;
1859 struct buffer_head
* bh
;
1860 struct ext3_dir_entry_2
* de
, * de1
;
1861 struct super_block
* sb
;
1865 if (inode
->i_size
< EXT3_DIR_REC_LEN(1) + EXT3_DIR_REC_LEN(2) ||
1866 !(bh
= ext3_bread (NULL
, inode
, 0, 0, &err
))) {
1868 ext3_error(inode
->i_sb
, __FUNCTION__
,
1869 "error %d reading directory #%lu offset 0",
1872 ext3_warning(inode
->i_sb
, __FUNCTION__
,
1873 "bad directory (dir #%lu) - no data block",
1877 de
= (struct ext3_dir_entry_2
*) bh
->b_data
;
1878 de1
= (struct ext3_dir_entry_2
*)
1879 ((char *) de
+ le16_to_cpu(de
->rec_len
));
1880 if (le32_to_cpu(de
->inode
) != inode
->i_ino
||
1881 !le32_to_cpu(de1
->inode
) ||
1882 strcmp (".", de
->name
) ||
1883 strcmp ("..", de1
->name
)) {
1884 ext3_warning (inode
->i_sb
, "empty_dir",
1885 "bad directory (dir #%lu) - no `.' or `..'",
1890 offset
= le16_to_cpu(de
->rec_len
) + le16_to_cpu(de1
->rec_len
);
1891 de
= (struct ext3_dir_entry_2
*)
1892 ((char *) de1
+ le16_to_cpu(de1
->rec_len
));
1893 while (offset
< inode
->i_size
) {
1895 (void *) de
>= (void *) (bh
->b_data
+sb
->s_blocksize
)) {
1898 bh
= ext3_bread (NULL
, inode
,
1899 offset
>> EXT3_BLOCK_SIZE_BITS(sb
), 0, &err
);
1902 ext3_error(sb
, __FUNCTION__
,
1903 "error %d reading directory"
1905 err
, inode
->i_ino
, offset
);
1906 offset
+= sb
->s_blocksize
;
1909 de
= (struct ext3_dir_entry_2
*) bh
->b_data
;
1911 if (!ext3_check_dir_entry("empty_dir", inode
, de
, bh
, offset
)) {
1912 de
= (struct ext3_dir_entry_2
*)(bh
->b_data
+
1914 offset
= (offset
| (sb
->s_blocksize
- 1)) + 1;
1917 if (le32_to_cpu(de
->inode
)) {
1921 offset
+= le16_to_cpu(de
->rec_len
);
1922 de
= (struct ext3_dir_entry_2
*)
1923 ((char *) de
+ le16_to_cpu(de
->rec_len
));
1929 /* ext3_orphan_add() links an unlinked or truncated inode into a list of
1930 * such inodes, starting at the superblock, in case we crash before the
1931 * file is closed/deleted, or in case the inode truncate spans multiple
1932 * transactions and the last transaction is not recovered after a crash.
1934 * At filesystem recovery time, we walk this list deleting unlinked
1935 * inodes and truncating linked inodes in ext3_orphan_cleanup().
1937 int ext3_orphan_add(handle_t
*handle
, struct inode
*inode
)
1939 struct super_block
*sb
= inode
->i_sb
;
1940 struct ext3_iloc iloc
;
1944 if (!list_empty(&EXT3_I(inode
)->i_orphan
))
1947 /* Orphan handling is only valid for files with data blocks
1948 * being truncated, or files being unlinked. */
1950 /* @@@ FIXME: Observation from aviro:
1951 * I think I can trigger J_ASSERT in ext3_orphan_add(). We block
1952 * here (on lock_super()), so race with ext3_link() which might bump
1953 * ->i_nlink. For, say it, character device. Not a regular file,
1954 * not a directory, not a symlink and ->i_nlink > 0.
1956 J_ASSERT ((S_ISREG(inode
->i_mode
) || S_ISDIR(inode
->i_mode
) ||
1957 S_ISLNK(inode
->i_mode
)) || inode
->i_nlink
== 0);
1959 BUFFER_TRACE(EXT3_SB(sb
)->s_sbh
, "get_write_access");
1960 err
= ext3_journal_get_write_access(handle
, EXT3_SB(sb
)->s_sbh
);
1964 err
= ext3_reserve_inode_write(handle
, inode
, &iloc
);
1968 /* Insert this inode at the head of the on-disk orphan list... */
1969 NEXT_ORPHAN(inode
) = le32_to_cpu(EXT3_SB(sb
)->s_es
->s_last_orphan
);
1970 EXT3_SB(sb
)->s_es
->s_last_orphan
= cpu_to_le32(inode
->i_ino
);
1971 err
= ext3_journal_dirty_metadata(handle
, EXT3_SB(sb
)->s_sbh
);
1972 rc
= ext3_mark_iloc_dirty(handle
, inode
, &iloc
);
1976 /* Only add to the head of the in-memory list if all the
1977 * previous operations succeeded. If the orphan_add is going to
1978 * fail (possibly taking the journal offline), we can't risk
1979 * leaving the inode on the orphan list: stray orphan-list
1980 * entries can cause panics at unmount time.
1982 * This is safe: on error we're going to ignore the orphan list
1983 * anyway on the next recovery. */
1985 list_add(&EXT3_I(inode
)->i_orphan
, &EXT3_SB(sb
)->s_orphan
);
1987 jbd_debug(4, "superblock will point to %lu\n", inode
->i_ino
);
1988 jbd_debug(4, "orphan inode %lu will point to %d\n",
1989 inode
->i_ino
, NEXT_ORPHAN(inode
));
1992 ext3_std_error(inode
->i_sb
, err
);
1997 * ext3_orphan_del() removes an unlinked or truncated inode from the list
1998 * of such inodes stored on disk, because it is finally being cleaned up.
2000 int ext3_orphan_del(handle_t
*handle
, struct inode
*inode
)
2002 struct list_head
*prev
;
2003 struct ext3_inode_info
*ei
= EXT3_I(inode
);
2004 struct ext3_sb_info
*sbi
;
2005 unsigned long ino_next
;
2006 struct ext3_iloc iloc
;
2009 lock_super(inode
->i_sb
);
2010 if (list_empty(&ei
->i_orphan
)) {
2011 unlock_super(inode
->i_sb
);
2015 ino_next
= NEXT_ORPHAN(inode
);
2016 prev
= ei
->i_orphan
.prev
;
2017 sbi
= EXT3_SB(inode
->i_sb
);
2019 jbd_debug(4, "remove inode %lu from orphan list\n", inode
->i_ino
);
2021 list_del_init(&ei
->i_orphan
);
2023 /* If we're on an error path, we may not have a valid
2024 * transaction handle with which to update the orphan list on
2025 * disk, but we still need to remove the inode from the linked
2026 * list in memory. */
2030 err
= ext3_reserve_inode_write(handle
, inode
, &iloc
);
2034 if (prev
== &sbi
->s_orphan
) {
2035 jbd_debug(4, "superblock will point to %lu\n", ino_next
);
2036 BUFFER_TRACE(sbi
->s_sbh
, "get_write_access");
2037 err
= ext3_journal_get_write_access(handle
, sbi
->s_sbh
);
2040 sbi
->s_es
->s_last_orphan
= cpu_to_le32(ino_next
);
2041 err
= ext3_journal_dirty_metadata(handle
, sbi
->s_sbh
);
2043 struct ext3_iloc iloc2
;
2044 struct inode
*i_prev
=
2045 &list_entry(prev
, struct ext3_inode_info
, i_orphan
)->vfs_inode
;
2047 jbd_debug(4, "orphan inode %lu will point to %lu\n",
2048 i_prev
->i_ino
, ino_next
);
2049 err
= ext3_reserve_inode_write(handle
, i_prev
, &iloc2
);
2052 NEXT_ORPHAN(i_prev
) = ino_next
;
2053 err
= ext3_mark_iloc_dirty(handle
, i_prev
, &iloc2
);
2057 NEXT_ORPHAN(inode
) = 0;
2058 err
= ext3_mark_iloc_dirty(handle
, inode
, &iloc
);
2061 ext3_std_error(inode
->i_sb
, err
);
2063 unlock_super(inode
->i_sb
);
2071 static int ext3_rmdir (struct inode
* dir
, struct dentry
*dentry
)
2074 struct inode
* inode
;
2075 struct buffer_head
* bh
;
2076 struct ext3_dir_entry_2
* de
;
2079 /* Initialize quotas before so that eventual writes go in
2080 * separate transaction */
2081 DQUOT_INIT(dentry
->d_inode
);
2082 handle
= ext3_journal_start(dir
, EXT3_DELETE_TRANS_BLOCKS(dir
->i_sb
));
2084 return PTR_ERR(handle
);
2087 bh
= ext3_find_entry (dentry
, &de
);
2091 if (IS_DIRSYNC(dir
))
2094 inode
= dentry
->d_inode
;
2097 if (le32_to_cpu(de
->inode
) != inode
->i_ino
)
2100 retval
= -ENOTEMPTY
;
2101 if (!empty_dir (inode
))
2104 retval
= ext3_delete_entry(handle
, dir
, de
, bh
);
2107 if (inode
->i_nlink
!= 2)
2108 ext3_warning (inode
->i_sb
, "ext3_rmdir",
2109 "empty directory has nlink!=2 (%d)",
2113 /* There's no need to set i_disksize: the fact that i_nlink is
2114 * zero will ensure that the right thing happens during any
2117 ext3_orphan_add(handle
, inode
);
2118 inode
->i_ctime
= dir
->i_ctime
= dir
->i_mtime
= CURRENT_TIME_SEC
;
2119 ext3_mark_inode_dirty(handle
, inode
);
2121 ext3_update_dx_flag(dir
);
2122 ext3_mark_inode_dirty(handle
, dir
);
2125 ext3_journal_stop(handle
);
2130 static int ext3_unlink(struct inode
* dir
, struct dentry
*dentry
)
2133 struct inode
* inode
;
2134 struct buffer_head
* bh
;
2135 struct ext3_dir_entry_2
* de
;
2138 /* Initialize quotas before so that eventual writes go
2139 * in separate transaction */
2140 DQUOT_INIT(dentry
->d_inode
);
2141 handle
= ext3_journal_start(dir
, EXT3_DELETE_TRANS_BLOCKS(dir
->i_sb
));
2143 return PTR_ERR(handle
);
2145 if (IS_DIRSYNC(dir
))
2149 bh
= ext3_find_entry (dentry
, &de
);
2153 inode
= dentry
->d_inode
;
2156 if (le32_to_cpu(de
->inode
) != inode
->i_ino
)
2159 if (!inode
->i_nlink
) {
2160 ext3_warning (inode
->i_sb
, "ext3_unlink",
2161 "Deleting nonexistent file (%lu), %d",
2162 inode
->i_ino
, inode
->i_nlink
);
2165 retval
= ext3_delete_entry(handle
, dir
, de
, bh
);
2168 dir
->i_ctime
= dir
->i_mtime
= CURRENT_TIME_SEC
;
2169 ext3_update_dx_flag(dir
);
2170 ext3_mark_inode_dirty(handle
, dir
);
2172 if (!inode
->i_nlink
)
2173 ext3_orphan_add(handle
, inode
);
2174 inode
->i_ctime
= dir
->i_ctime
;
2175 ext3_mark_inode_dirty(handle
, inode
);
2179 ext3_journal_stop(handle
);
2184 static int ext3_symlink (struct inode
* dir
,
2185 struct dentry
*dentry
, const char * symname
)
2188 struct inode
* inode
;
2189 int l
, err
, retries
= 0;
2191 l
= strlen(symname
)+1;
2192 if (l
> dir
->i_sb
->s_blocksize
)
2193 return -ENAMETOOLONG
;
2196 handle
= ext3_journal_start(dir
, EXT3_DATA_TRANS_BLOCKS(dir
->i_sb
) +
2197 EXT3_INDEX_EXTRA_TRANS_BLOCKS
+ 5 +
2198 2*EXT3_QUOTA_INIT_BLOCKS(dir
->i_sb
));
2200 return PTR_ERR(handle
);
2202 if (IS_DIRSYNC(dir
))
2205 inode
= ext3_new_inode (handle
, dir
, S_IFLNK
|S_IRWXUGO
);
2206 err
= PTR_ERR(inode
);
2210 if (l
> sizeof (EXT3_I(inode
)->i_data
)) {
2211 inode
->i_op
= &ext3_symlink_inode_operations
;
2212 ext3_set_aops(inode
);
2214 * page_symlink() calls into ext3_prepare/commit_write.
2215 * We have a transaction open. All is sweetness. It also sets
2216 * i_size in generic_commit_write().
2218 err
= __page_symlink(inode
, symname
, l
,
2219 mapping_gfp_mask(inode
->i_mapping
) & ~__GFP_FS
);
2222 ext3_mark_inode_dirty(handle
, inode
);
2227 inode
->i_op
= &ext3_fast_symlink_inode_operations
;
2228 memcpy((char*)&EXT3_I(inode
)->i_data
,symname
,l
);
2229 inode
->i_size
= l
-1;
2231 EXT3_I(inode
)->i_disksize
= inode
->i_size
;
2232 err
= ext3_add_nondir(handle
, dentry
, inode
);
2234 ext3_journal_stop(handle
);
2235 if (err
== -ENOSPC
&& ext3_should_retry_alloc(dir
->i_sb
, &retries
))
2240 static int ext3_link (struct dentry
* old_dentry
,
2241 struct inode
* dir
, struct dentry
*dentry
)
2244 struct inode
*inode
= old_dentry
->d_inode
;
2245 int err
, retries
= 0;
2247 if (inode
->i_nlink
>= EXT3_LINK_MAX
)
2250 * Return -ENOENT if we've raced with unlink and i_nlink is 0. Doing
2251 * otherwise has the potential to corrupt the orphan inode list.
2253 if (inode
->i_nlink
== 0)
2257 handle
= ext3_journal_start(dir
, EXT3_DATA_TRANS_BLOCKS(dir
->i_sb
) +
2258 EXT3_INDEX_EXTRA_TRANS_BLOCKS
);
2260 return PTR_ERR(handle
);
2262 if (IS_DIRSYNC(dir
))
2265 inode
->i_ctime
= CURRENT_TIME_SEC
;
2267 atomic_inc(&inode
->i_count
);
2269 err
= ext3_add_nondir(handle
, dentry
, inode
);
2270 ext3_journal_stop(handle
);
2271 if (err
== -ENOSPC
&& ext3_should_retry_alloc(dir
->i_sb
, &retries
))
2276 #define PARENT_INO(buffer) \
2277 ((struct ext3_dir_entry_2 *) ((char *) buffer + \
2278 le16_to_cpu(((struct ext3_dir_entry_2 *) buffer)->rec_len)))->inode
2281 * Anybody can rename anything with this: the permission checks are left to the
2282 * higher-level routines.
2284 static int ext3_rename (struct inode
* old_dir
, struct dentry
*old_dentry
,
2285 struct inode
* new_dir
,struct dentry
*new_dentry
)
2288 struct inode
* old_inode
, * new_inode
;
2289 struct buffer_head
* old_bh
, * new_bh
, * dir_bh
;
2290 struct ext3_dir_entry_2
* old_de
, * new_de
;
2293 old_bh
= new_bh
= dir_bh
= NULL
;
2295 /* Initialize quotas before so that eventual writes go
2296 * in separate transaction */
2297 if (new_dentry
->d_inode
)
2298 DQUOT_INIT(new_dentry
->d_inode
);
2299 handle
= ext3_journal_start(old_dir
, 2 *
2300 EXT3_DATA_TRANS_BLOCKS(old_dir
->i_sb
) +
2301 EXT3_INDEX_EXTRA_TRANS_BLOCKS
+ 2);
2303 return PTR_ERR(handle
);
2305 if (IS_DIRSYNC(old_dir
) || IS_DIRSYNC(new_dir
))
2308 old_bh
= ext3_find_entry (old_dentry
, &old_de
);
2310 * Check for inode number is _not_ due to possible IO errors.
2311 * We might rmdir the source, keep it as pwd of some process
2312 * and merrily kill the link to whatever was created under the
2313 * same name. Goodbye sticky bit ;-<
2315 old_inode
= old_dentry
->d_inode
;
2317 if (!old_bh
|| le32_to_cpu(old_de
->inode
) != old_inode
->i_ino
)
2320 new_inode
= new_dentry
->d_inode
;
2321 new_bh
= ext3_find_entry (new_dentry
, &new_de
);
2328 if (S_ISDIR(old_inode
->i_mode
)) {
2330 retval
= -ENOTEMPTY
;
2331 if (!empty_dir (new_inode
))
2335 dir_bh
= ext3_bread (handle
, old_inode
, 0, 0, &retval
);
2338 if (le32_to_cpu(PARENT_INO(dir_bh
->b_data
)) != old_dir
->i_ino
)
2341 if (!new_inode
&& new_dir
!=old_dir
&&
2342 new_dir
->i_nlink
>= EXT3_LINK_MAX
)
2346 retval
= ext3_add_entry (handle
, new_dentry
, old_inode
);
2350 BUFFER_TRACE(new_bh
, "get write access");
2351 ext3_journal_get_write_access(handle
, new_bh
);
2352 new_de
->inode
= cpu_to_le32(old_inode
->i_ino
);
2353 if (EXT3_HAS_INCOMPAT_FEATURE(new_dir
->i_sb
,
2354 EXT3_FEATURE_INCOMPAT_FILETYPE
))
2355 new_de
->file_type
= old_de
->file_type
;
2356 new_dir
->i_version
++;
2357 BUFFER_TRACE(new_bh
, "call ext3_journal_dirty_metadata");
2358 ext3_journal_dirty_metadata(handle
, new_bh
);
2364 * Like most other Unix systems, set the ctime for inodes on a
2367 old_inode
->i_ctime
= CURRENT_TIME_SEC
;
2368 ext3_mark_inode_dirty(handle
, old_inode
);
2373 if (le32_to_cpu(old_de
->inode
) != old_inode
->i_ino
||
2374 old_de
->name_len
!= old_dentry
->d_name
.len
||
2375 strncmp(old_de
->name
, old_dentry
->d_name
.name
, old_de
->name_len
) ||
2376 (retval
= ext3_delete_entry(handle
, old_dir
,
2377 old_de
, old_bh
)) == -ENOENT
) {
2378 /* old_de could have moved from under us during htree split, so
2379 * make sure that we are deleting the right entry. We might
2380 * also be pointing to a stale entry in the unused part of
2381 * old_bh so just checking inum and the name isn't enough. */
2382 struct buffer_head
*old_bh2
;
2383 struct ext3_dir_entry_2
*old_de2
;
2385 old_bh2
= ext3_find_entry(old_dentry
, &old_de2
);
2387 retval
= ext3_delete_entry(handle
, old_dir
,
2393 ext3_warning(old_dir
->i_sb
, "ext3_rename",
2394 "Deleting old file (%lu), %d, error=%d",
2395 old_dir
->i_ino
, old_dir
->i_nlink
, retval
);
2399 drop_nlink(new_inode
);
2400 new_inode
->i_ctime
= CURRENT_TIME_SEC
;
2402 old_dir
->i_ctime
= old_dir
->i_mtime
= CURRENT_TIME_SEC
;
2403 ext3_update_dx_flag(old_dir
);
2405 BUFFER_TRACE(dir_bh
, "get_write_access");
2406 ext3_journal_get_write_access(handle
, dir_bh
);
2407 PARENT_INO(dir_bh
->b_data
) = cpu_to_le32(new_dir
->i_ino
);
2408 BUFFER_TRACE(dir_bh
, "call ext3_journal_dirty_metadata");
2409 ext3_journal_dirty_metadata(handle
, dir_bh
);
2410 drop_nlink(old_dir
);
2412 drop_nlink(new_inode
);
2415 ext3_update_dx_flag(new_dir
);
2416 ext3_mark_inode_dirty(handle
, new_dir
);
2419 ext3_mark_inode_dirty(handle
, old_dir
);
2421 ext3_mark_inode_dirty(handle
, new_inode
);
2422 if (!new_inode
->i_nlink
)
2423 ext3_orphan_add(handle
, new_inode
);
2431 ext3_journal_stop(handle
);
2436 * directories can handle most operations...
2438 const struct inode_operations ext3_dir_inode_operations
= {
2439 .create
= ext3_create
,
2440 .lookup
= ext3_lookup
,
2442 .unlink
= ext3_unlink
,
2443 .symlink
= ext3_symlink
,
2444 .mkdir
= ext3_mkdir
,
2445 .rmdir
= ext3_rmdir
,
2446 .mknod
= ext3_mknod
,
2447 .rename
= ext3_rename
,
2448 .setattr
= ext3_setattr
,
2449 #ifdef CONFIG_EXT3_FS_XATTR
2450 .setxattr
= generic_setxattr
,
2451 .getxattr
= generic_getxattr
,
2452 .listxattr
= ext3_listxattr
,
2453 .removexattr
= generic_removexattr
,
2455 .permission
= ext3_permission
,
2458 const struct inode_operations ext3_special_inode_operations
= {
2459 .setattr
= ext3_setattr
,
2460 #ifdef CONFIG_EXT3_FS_XATTR
2461 .setxattr
= generic_setxattr
,
2462 .getxattr
= generic_getxattr
,
2463 .listxattr
= ext3_listxattr
,
2464 .removexattr
= generic_removexattr
,
2466 .permission
= ext3_permission
,