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 static inline unsigned dx_get_block (struct dx_entry
*entry
);
148 static void dx_set_block (struct dx_entry
*entry
, unsigned value
);
149 static inline unsigned dx_get_hash (struct dx_entry
*entry
);
150 static void dx_set_hash (struct dx_entry
*entry
, unsigned value
);
151 static unsigned dx_get_count (struct dx_entry
*entries
);
152 static unsigned dx_get_limit (struct dx_entry
*entries
);
153 static void dx_set_count (struct dx_entry
*entries
, unsigned value
);
154 static void dx_set_limit (struct dx_entry
*entries
, unsigned value
);
155 static unsigned dx_root_limit (struct inode
*dir
, unsigned infosize
);
156 static unsigned dx_node_limit (struct inode
*dir
);
157 static struct dx_frame
*dx_probe(struct dentry
*dentry
,
159 struct dx_hash_info
*hinfo
,
160 struct dx_frame
*frame
,
162 static void dx_release (struct dx_frame
*frames
);
163 static int dx_make_map (struct ext3_dir_entry_2
*de
, int size
,
164 struct dx_hash_info
*hinfo
, struct dx_map_entry map
[]);
165 static void dx_sort_map(struct dx_map_entry
*map
, unsigned count
);
166 static struct ext3_dir_entry_2
*dx_move_dirents (char *from
, char *to
,
167 struct dx_map_entry
*offsets
, int count
);
168 static struct ext3_dir_entry_2
* dx_pack_dirents (char *base
, int size
);
169 static void dx_insert_block (struct dx_frame
*frame
, u32 hash
, u32 block
);
170 static int ext3_htree_next_block(struct inode
*dir
, __u32 hash
,
171 struct dx_frame
*frame
,
172 struct dx_frame
*frames
,
174 static struct buffer_head
* ext3_dx_find_entry(struct dentry
*dentry
,
175 struct ext3_dir_entry_2
**res_dir
, int *err
);
176 static int ext3_dx_add_entry(handle_t
*handle
, struct dentry
*dentry
,
177 struct inode
*inode
);
180 * p is at least 6 bytes before the end of page
182 static inline struct ext3_dir_entry_2
*
183 ext3_next_entry(struct ext3_dir_entry_2
*p
)
185 return (struct ext3_dir_entry_2
*)((char *)p
+
186 ext3_rec_len_from_disk(p
->rec_len
));
190 * Future: use high four bits of block for coalesce-on-delete flags
191 * Mask them off for now.
194 static inline unsigned dx_get_block (struct dx_entry
*entry
)
196 return le32_to_cpu(entry
->block
) & 0x00ffffff;
199 static inline void dx_set_block (struct dx_entry
*entry
, unsigned value
)
201 entry
->block
= cpu_to_le32(value
);
204 static inline unsigned dx_get_hash (struct dx_entry
*entry
)
206 return le32_to_cpu(entry
->hash
);
209 static inline void dx_set_hash (struct dx_entry
*entry
, unsigned value
)
211 entry
->hash
= cpu_to_le32(value
);
214 static inline unsigned dx_get_count (struct dx_entry
*entries
)
216 return le16_to_cpu(((struct dx_countlimit
*) entries
)->count
);
219 static inline unsigned dx_get_limit (struct dx_entry
*entries
)
221 return le16_to_cpu(((struct dx_countlimit
*) entries
)->limit
);
224 static inline void dx_set_count (struct dx_entry
*entries
, unsigned value
)
226 ((struct dx_countlimit
*) entries
)->count
= cpu_to_le16(value
);
229 static inline void dx_set_limit (struct dx_entry
*entries
, unsigned value
)
231 ((struct dx_countlimit
*) entries
)->limit
= cpu_to_le16(value
);
234 static inline unsigned dx_root_limit (struct inode
*dir
, unsigned infosize
)
236 unsigned entry_space
= dir
->i_sb
->s_blocksize
- EXT3_DIR_REC_LEN(1) -
237 EXT3_DIR_REC_LEN(2) - infosize
;
238 return 0? 20: entry_space
/ sizeof(struct dx_entry
);
241 static inline unsigned dx_node_limit (struct inode
*dir
)
243 unsigned entry_space
= dir
->i_sb
->s_blocksize
- EXT3_DIR_REC_LEN(0);
244 return 0? 22: entry_space
/ sizeof(struct dx_entry
);
251 static void dx_show_index (char * label
, struct dx_entry
*entries
)
253 int i
, n
= dx_get_count (entries
);
254 printk("%s index ", label
);
255 for (i
= 0; i
< n
; i
++)
257 printk("%x->%u ", i
? dx_get_hash(entries
+ i
): 0, dx_get_block(entries
+ i
));
269 static struct stats
dx_show_leaf(struct dx_hash_info
*hinfo
, struct ext3_dir_entry_2
*de
,
270 int size
, int show_names
)
272 unsigned names
= 0, space
= 0;
273 char *base
= (char *) de
;
274 struct dx_hash_info h
= *hinfo
;
277 while ((char *) de
< base
+ size
)
283 int len
= de
->name_len
;
284 char *name
= de
->name
;
285 while (len
--) printk("%c", *name
++);
286 ext3fs_dirhash(de
->name
, de
->name_len
, &h
);
287 printk(":%x.%u ", h
.hash
,
288 ((char *) de
- base
));
290 space
+= EXT3_DIR_REC_LEN(de
->name_len
);
293 de
= ext3_next_entry(de
);
295 printk("(%i)\n", names
);
296 return (struct stats
) { names
, space
, 1 };
299 struct stats
dx_show_entries(struct dx_hash_info
*hinfo
, struct inode
*dir
,
300 struct dx_entry
*entries
, int levels
)
302 unsigned blocksize
= dir
->i_sb
->s_blocksize
;
303 unsigned count
= dx_get_count (entries
), names
= 0, space
= 0, i
;
305 struct buffer_head
*bh
;
307 printk("%i indexed blocks...\n", count
);
308 for (i
= 0; i
< count
; i
++, entries
++)
310 u32 block
= dx_get_block(entries
), hash
= i
? dx_get_hash(entries
): 0;
311 u32 range
= i
< count
- 1? (dx_get_hash(entries
+ 1) - hash
): ~hash
;
313 printk("%s%3u:%03u hash %8x/%8x ",levels
?"":" ", i
, block
, hash
, range
);
314 if (!(bh
= ext3_bread (NULL
,dir
, block
, 0,&err
))) continue;
316 dx_show_entries(hinfo
, dir
, ((struct dx_node
*) bh
->b_data
)->entries
, levels
- 1):
317 dx_show_leaf(hinfo
, (struct ext3_dir_entry_2
*) bh
->b_data
, blocksize
, 0);
318 names
+= stats
.names
;
319 space
+= stats
.space
;
320 bcount
+= stats
.bcount
;
324 printk("%snames %u, fullness %u (%u%%)\n", levels
?"":" ",
325 names
, space
/bcount
,(space
/bcount
)*100/blocksize
);
326 return (struct stats
) { names
, space
, bcount
};
328 #endif /* DX_DEBUG */
331 * Probe for a directory leaf block to search.
333 * dx_probe can return ERR_BAD_DX_DIR, which means there was a format
334 * error in the directory index, and the caller should fall back to
335 * searching the directory normally. The callers of dx_probe **MUST**
336 * check for this error code, and make sure it never gets reflected
339 static struct dx_frame
*
340 dx_probe(struct dentry
*dentry
, struct inode
*dir
,
341 struct dx_hash_info
*hinfo
, struct dx_frame
*frame_in
, int *err
)
343 unsigned count
, indirect
;
344 struct dx_entry
*at
, *entries
, *p
, *q
, *m
;
345 struct dx_root
*root
;
346 struct buffer_head
*bh
;
347 struct dx_frame
*frame
= frame_in
;
352 dir
= dentry
->d_parent
->d_inode
;
353 if (!(bh
= ext3_bread (NULL
,dir
, 0, 0, err
)))
355 root
= (struct dx_root
*) bh
->b_data
;
356 if (root
->info
.hash_version
!= DX_HASH_TEA
&&
357 root
->info
.hash_version
!= DX_HASH_HALF_MD4
&&
358 root
->info
.hash_version
!= DX_HASH_LEGACY
) {
359 ext3_warning(dir
->i_sb
, __FUNCTION__
,
360 "Unrecognised inode hash code %d",
361 root
->info
.hash_version
);
363 *err
= ERR_BAD_DX_DIR
;
366 hinfo
->hash_version
= root
->info
.hash_version
;
367 hinfo
->seed
= EXT3_SB(dir
->i_sb
)->s_hash_seed
;
369 ext3fs_dirhash(dentry
->d_name
.name
, dentry
->d_name
.len
, hinfo
);
372 if (root
->info
.unused_flags
& 1) {
373 ext3_warning(dir
->i_sb
, __FUNCTION__
,
374 "Unimplemented inode hash flags: %#06x",
375 root
->info
.unused_flags
);
377 *err
= ERR_BAD_DX_DIR
;
381 if ((indirect
= root
->info
.indirect_levels
) > 1) {
382 ext3_warning(dir
->i_sb
, __FUNCTION__
,
383 "Unimplemented inode hash depth: %#06x",
384 root
->info
.indirect_levels
);
386 *err
= ERR_BAD_DX_DIR
;
390 entries
= (struct dx_entry
*) (((char *)&root
->info
) +
391 root
->info
.info_length
);
393 if (dx_get_limit(entries
) != dx_root_limit(dir
,
394 root
->info
.info_length
)) {
395 ext3_warning(dir
->i_sb
, __FUNCTION__
,
396 "dx entry: limit != root limit");
398 *err
= ERR_BAD_DX_DIR
;
402 dxtrace (printk("Look up %x", hash
));
405 count
= dx_get_count(entries
);
406 if (!count
|| count
> dx_get_limit(entries
)) {
407 ext3_warning(dir
->i_sb
, __FUNCTION__
,
408 "dx entry: no count or count > limit");
410 *err
= ERR_BAD_DX_DIR
;
415 q
= entries
+ count
- 1;
419 dxtrace(printk("."));
420 if (dx_get_hash(m
) > hash
)
426 if (0) // linear search cross check
428 unsigned n
= count
- 1;
432 dxtrace(printk(","));
433 if (dx_get_hash(++at
) > hash
)
439 assert (at
== p
- 1);
443 dxtrace(printk(" %x->%u\n", at
== entries
? 0: dx_get_hash(at
), dx_get_block(at
)));
445 frame
->entries
= entries
;
447 if (!indirect
--) return frame
;
448 if (!(bh
= ext3_bread (NULL
,dir
, dx_get_block(at
), 0, err
)))
450 at
= entries
= ((struct dx_node
*) bh
->b_data
)->entries
;
451 if (dx_get_limit(entries
) != dx_node_limit (dir
)) {
452 ext3_warning(dir
->i_sb
, __FUNCTION__
,
453 "dx entry: limit != node limit");
455 *err
= ERR_BAD_DX_DIR
;
462 while (frame
>= frame_in
) {
467 if (*err
== ERR_BAD_DX_DIR
)
468 ext3_warning(dir
->i_sb
, __FUNCTION__
,
469 "Corrupt dir inode %ld, running e2fsck is "
470 "recommended.", dir
->i_ino
);
474 static void dx_release (struct dx_frame
*frames
)
476 if (frames
[0].bh
== NULL
)
479 if (((struct dx_root
*) frames
[0].bh
->b_data
)->info
.indirect_levels
)
480 brelse(frames
[1].bh
);
481 brelse(frames
[0].bh
);
485 * This function increments the frame pointer to search the next leaf
486 * block, and reads in the necessary intervening nodes if the search
487 * should be necessary. Whether or not the search is necessary is
488 * controlled by the hash parameter. If the hash value is even, then
489 * the search is only continued if the next block starts with that
490 * hash value. This is used if we are searching for a specific file.
492 * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
494 * This function returns 1 if the caller should continue to search,
495 * or 0 if it should not. If there is an error reading one of the
496 * index blocks, it will a negative error code.
498 * If start_hash is non-null, it will be filled in with the starting
499 * hash of the next page.
501 static int ext3_htree_next_block(struct inode
*dir
, __u32 hash
,
502 struct dx_frame
*frame
,
503 struct dx_frame
*frames
,
507 struct buffer_head
*bh
;
508 int err
, num_frames
= 0;
513 * Find the next leaf page by incrementing the frame pointer.
514 * If we run out of entries in the interior node, loop around and
515 * increment pointer in the parent node. When we break out of
516 * this loop, num_frames indicates the number of interior
517 * nodes need to be read.
520 if (++(p
->at
) < p
->entries
+ dx_get_count(p
->entries
))
529 * If the hash is 1, then continue only if the next page has a
530 * continuation hash of any value. This is used for readdir
531 * handling. Otherwise, check to see if the hash matches the
532 * desired contiuation hash. If it doesn't, return since
533 * there's no point to read in the successive index pages.
535 bhash
= dx_get_hash(p
->at
);
538 if ((hash
& 1) == 0) {
539 if ((bhash
& ~1) != hash
)
543 * If the hash is HASH_NB_ALWAYS, we always go to the next
544 * block so no check is necessary
546 while (num_frames
--) {
547 if (!(bh
= ext3_bread(NULL
, dir
, dx_get_block(p
->at
),
549 return err
; /* Failure */
553 p
->at
= p
->entries
= ((struct dx_node
*) bh
->b_data
)->entries
;
560 * This function fills a red-black tree with information from a
561 * directory block. It returns the number directory entries loaded
562 * into the tree. If there is an error it is returned in err.
564 static int htree_dirblock_to_tree(struct file
*dir_file
,
565 struct inode
*dir
, int block
,
566 struct dx_hash_info
*hinfo
,
567 __u32 start_hash
, __u32 start_minor_hash
)
569 struct buffer_head
*bh
;
570 struct ext3_dir_entry_2
*de
, *top
;
573 dxtrace(printk("In htree dirblock_to_tree: block %d\n", block
));
574 if (!(bh
= ext3_bread (NULL
, dir
, block
, 0, &err
)))
577 de
= (struct ext3_dir_entry_2
*) bh
->b_data
;
578 top
= (struct ext3_dir_entry_2
*) ((char *) de
+
579 dir
->i_sb
->s_blocksize
-
580 EXT3_DIR_REC_LEN(0));
581 for (; de
< top
; de
= ext3_next_entry(de
)) {
582 if (!ext3_check_dir_entry("htree_dirblock_to_tree", dir
, de
, bh
,
583 (block
<<EXT3_BLOCK_SIZE_BITS(dir
->i_sb
))
584 +((char *)de
- bh
->b_data
))) {
585 /* On error, skip the f_pos to the next block. */
586 dir_file
->f_pos
= (dir_file
->f_pos
|
587 (dir
->i_sb
->s_blocksize
- 1)) + 1;
591 ext3fs_dirhash(de
->name
, de
->name_len
, hinfo
);
592 if ((hinfo
->hash
< start_hash
) ||
593 ((hinfo
->hash
== start_hash
) &&
594 (hinfo
->minor_hash
< start_minor_hash
)))
598 if ((err
= ext3_htree_store_dirent(dir_file
,
599 hinfo
->hash
, hinfo
->minor_hash
, de
)) != 0) {
611 * This function fills a red-black tree with information from a
612 * directory. We start scanning the directory in hash order, starting
613 * at start_hash and start_minor_hash.
615 * This function returns the number of entries inserted into the tree,
616 * or a negative error code.
618 int ext3_htree_fill_tree(struct file
*dir_file
, __u32 start_hash
,
619 __u32 start_minor_hash
, __u32
*next_hash
)
621 struct dx_hash_info hinfo
;
622 struct ext3_dir_entry_2
*de
;
623 struct dx_frame frames
[2], *frame
;
630 dxtrace(printk("In htree_fill_tree, start hash: %x:%x\n", start_hash
,
632 dir
= dir_file
->f_path
.dentry
->d_inode
;
633 if (!(EXT3_I(dir
)->i_flags
& EXT3_INDEX_FL
)) {
634 hinfo
.hash_version
= EXT3_SB(dir
->i_sb
)->s_def_hash_version
;
635 hinfo
.seed
= EXT3_SB(dir
->i_sb
)->s_hash_seed
;
636 count
= htree_dirblock_to_tree(dir_file
, dir
, 0, &hinfo
,
637 start_hash
, start_minor_hash
);
641 hinfo
.hash
= start_hash
;
642 hinfo
.minor_hash
= 0;
643 frame
= dx_probe(NULL
, dir_file
->f_path
.dentry
->d_inode
, &hinfo
, frames
, &err
);
647 /* Add '.' and '..' from the htree header */
648 if (!start_hash
&& !start_minor_hash
) {
649 de
= (struct ext3_dir_entry_2
*) frames
[0].bh
->b_data
;
650 if ((err
= ext3_htree_store_dirent(dir_file
, 0, 0, de
)) != 0)
654 if (start_hash
< 2 || (start_hash
==2 && start_minor_hash
==0)) {
655 de
= (struct ext3_dir_entry_2
*) frames
[0].bh
->b_data
;
656 de
= ext3_next_entry(de
);
657 if ((err
= ext3_htree_store_dirent(dir_file
, 2, 0, de
)) != 0)
663 block
= dx_get_block(frame
->at
);
664 ret
= htree_dirblock_to_tree(dir_file
, dir
, block
, &hinfo
,
665 start_hash
, start_minor_hash
);
672 ret
= ext3_htree_next_block(dir
, HASH_NB_ALWAYS
,
673 frame
, frames
, &hashval
);
674 *next_hash
= hashval
;
680 * Stop if: (a) there are no more entries, or
681 * (b) we have inserted at least one entry and the
682 * next hash value is not a continuation
685 (count
&& ((hashval
& 1) == 0)))
689 dxtrace(printk("Fill tree: returned %d entries, next hash: %x\n",
699 * Directory block splitting, compacting
703 * Create map of hash values, offsets, and sizes, stored at end of block.
704 * Returns number of entries mapped.
706 static int dx_make_map (struct ext3_dir_entry_2
*de
, int size
,
707 struct dx_hash_info
*hinfo
, struct dx_map_entry
*map_tail
)
710 char *base
= (char *) de
;
711 struct dx_hash_info h
= *hinfo
;
713 while ((char *) de
< base
+ size
)
715 if (de
->name_len
&& de
->inode
) {
716 ext3fs_dirhash(de
->name
, de
->name_len
, &h
);
718 map_tail
->hash
= h
.hash
;
719 map_tail
->offs
= (u16
) ((char *) de
- base
);
720 map_tail
->size
= le16_to_cpu(de
->rec_len
);
724 /* XXX: do we need to check rec_len == 0 case? -Chris */
725 de
= ext3_next_entry(de
);
730 /* Sort map by hash value */
731 static void dx_sort_map (struct dx_map_entry
*map
, unsigned count
)
733 struct dx_map_entry
*p
, *q
, *top
= map
+ count
- 1;
735 /* Combsort until bubble sort doesn't suck */
739 if (count
- 9 < 2) /* 9, 10 -> 11 */
741 for (p
= top
, q
= p
- count
; q
>= map
; p
--, q
--)
742 if (p
->hash
< q
->hash
)
745 /* Garden variety bubble sort */
751 if (q
[1].hash
>= q
[0].hash
)
759 static void dx_insert_block(struct dx_frame
*frame
, u32 hash
, u32 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 ext3_update_dx_flag(struct inode
*inode
)
775 if (!EXT3_HAS_COMPAT_FEATURE(inode
->i_sb
,
776 EXT3_FEATURE_COMPAT_DIR_INDEX
))
777 EXT3_I(inode
)->i_flags
&= ~EXT3_INDEX_FL
;
781 * NOTE! unlike strncmp, ext3_match returns 1 for success, 0 for failure.
783 * `len <= EXT3_NAME_LEN' is guaranteed by caller.
784 * `de != NULL' is guaranteed by caller.
786 static inline int ext3_match (int len
, const char * const name
,
787 struct ext3_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 ext3_dir_entry_2
** res_dir
)
805 struct ext3_dir_entry_2
* de
;
808 const char *name
= dentry
->d_name
.name
;
809 int namelen
= dentry
->d_name
.len
;
811 de
= (struct ext3_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 ext3_match (namelen
, name
, de
)) {
819 /* found a match - just to be sure, do a full check */
820 if (!ext3_check_dir_entry("ext3_find_entry",
821 dir
, de
, bh
, offset
))
826 /* prevent looping on a bad block */
827 de_len
= ext3_rec_len_from_disk(de
->rec_len
);
831 de
= (struct ext3_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
* ext3_find_entry (struct dentry
*dentry
,
849 struct ext3_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 unsigned long start
, block
, b
;
855 int ra_max
= 0; /* Number of bh's in the readahead
857 int ra_ptr
= 0; /* Current index into readahead
861 struct inode
*dir
= dentry
->d_parent
->d_inode
;
868 blocksize
= sb
->s_blocksize
;
869 namelen
= dentry
->d_name
.len
;
870 name
= dentry
->d_name
.name
;
871 if (namelen
> EXT3_NAME_LEN
)
874 bh
= ext3_dx_find_entry(dentry
, res_dir
, &err
);
876 * On success, or if the error was file not found,
877 * return. Otherwise, fall back to doing a search the
880 if (bh
|| (err
!= ERR_BAD_DX_DIR
))
882 dxtrace(printk("ext3_find_entry: dx failed, falling back\n"));
884 nblocks
= dir
->i_size
>> EXT3_BLOCK_SIZE_BITS(sb
);
885 start
= EXT3_I(dir
)->i_dir_start_lookup
;
886 if (start
>= nblocks
)
892 * We deal with the read-ahead logic here.
894 if (ra_ptr
>= ra_max
) {
895 /* Refill the readahead buffer */
898 for (ra_max
= 0; ra_max
< NAMEI_RA_SIZE
; ra_max
++) {
900 * Terminate if we reach the end of the
901 * directory and must wrap, or if our
902 * search has finished at this block.
904 if (b
>= nblocks
|| (num
&& block
== start
)) {
905 bh_use
[ra_max
] = NULL
;
909 bh
= ext3_getblk(NULL
, dir
, b
++, 0, &err
);
912 ll_rw_block(READ_META
, 1, &bh
);
915 if ((bh
= bh_use
[ra_ptr
++]) == NULL
)
918 if (!buffer_uptodate(bh
)) {
919 /* read error, skip block & hope for the best */
920 ext3_error(sb
, __FUNCTION__
, "reading directory #%lu "
921 "offset %lu", dir
->i_ino
, block
);
925 i
= search_dirblock(bh
, dir
, dentry
,
926 block
<< EXT3_BLOCK_SIZE_BITS(sb
), res_dir
);
928 EXT3_I(dir
)->i_dir_start_lookup
= block
;
930 goto cleanup_and_exit
;
934 goto cleanup_and_exit
;
937 if (++block
>= nblocks
)
939 } while (block
!= start
);
942 * If the directory has grown while we were searching, then
943 * search the last part of the directory before giving up.
946 nblocks
= dir
->i_size
>> EXT3_BLOCK_SIZE_BITS(sb
);
947 if (block
< nblocks
) {
953 /* Clean up the read-ahead blocks */
954 for (; ra_ptr
< ra_max
; ra_ptr
++)
955 brelse (bh_use
[ra_ptr
]);
959 static struct buffer_head
* ext3_dx_find_entry(struct dentry
*dentry
,
960 struct ext3_dir_entry_2
**res_dir
, int *err
)
962 struct super_block
* sb
;
963 struct dx_hash_info hinfo
;
965 struct dx_frame frames
[2], *frame
;
966 struct ext3_dir_entry_2
*de
, *top
;
967 struct buffer_head
*bh
;
970 int namelen
= dentry
->d_name
.len
;
971 const u8
*name
= dentry
->d_name
.name
;
972 struct inode
*dir
= dentry
->d_parent
->d_inode
;
975 /* NFS may look up ".." - look at dx_root directory block */
976 if (namelen
> 2 || name
[0] != '.'||(name
[1] != '.' && name
[1] != '\0')){
977 if (!(frame
= dx_probe(dentry
, NULL
, &hinfo
, frames
, err
)))
981 frame
->bh
= NULL
; /* for dx_release() */
982 frame
->at
= (struct dx_entry
*)frames
; /* hack for zero entry*/
983 dx_set_block(frame
->at
, 0); /* dx_root block is 0 */
987 block
= dx_get_block(frame
->at
);
988 if (!(bh
= ext3_bread (NULL
,dir
, block
, 0, err
)))
990 de
= (struct ext3_dir_entry_2
*) bh
->b_data
;
991 top
= (struct ext3_dir_entry_2
*) ((char *) de
+ sb
->s_blocksize
-
992 EXT3_DIR_REC_LEN(0));
993 for (; de
< top
; de
= ext3_next_entry(de
))
994 if (ext3_match (namelen
, name
, de
)) {
995 if (!ext3_check_dir_entry("ext3_find_entry",
997 (block
<<EXT3_BLOCK_SIZE_BITS(sb
))
998 +((char *)de
- bh
->b_data
))) {
1000 *err
= ERR_BAD_DX_DIR
;
1004 dx_release (frames
);
1008 /* Check to see if we should continue to search */
1009 retval
= ext3_htree_next_block(dir
, hash
, frame
,
1012 ext3_warning(sb
, __FUNCTION__
,
1013 "error reading index page in directory #%lu",
1018 } while (retval
== 1);
1022 dxtrace(printk("%s not found\n", name
));
1023 dx_release (frames
);
1027 static struct dentry
*ext3_lookup(struct inode
* dir
, struct dentry
*dentry
, struct nameidata
*nd
)
1029 struct inode
* inode
;
1030 struct ext3_dir_entry_2
* de
;
1031 struct buffer_head
* bh
;
1033 if (dentry
->d_name
.len
> EXT3_NAME_LEN
)
1034 return ERR_PTR(-ENAMETOOLONG
);
1036 bh
= ext3_find_entry(dentry
, &de
);
1039 unsigned long ino
= le32_to_cpu(de
->inode
);
1041 if (!ext3_valid_inum(dir
->i_sb
, ino
)) {
1042 ext3_error(dir
->i_sb
, "ext3_lookup",
1043 "bad inode number: %lu", ino
);
1046 inode
= iget(dir
->i_sb
, ino
);
1049 return ERR_PTR(-EACCES
);
1051 if (is_bad_inode(inode
)) {
1053 return ERR_PTR(-ENOENT
);
1056 return d_splice_alias(inode
, dentry
);
1060 struct dentry
*ext3_get_parent(struct dentry
*child
)
1063 struct dentry
*parent
;
1064 struct inode
*inode
;
1065 struct dentry dotdot
;
1066 struct ext3_dir_entry_2
* de
;
1067 struct buffer_head
*bh
;
1069 dotdot
.d_name
.name
= "..";
1070 dotdot
.d_name
.len
= 2;
1071 dotdot
.d_parent
= child
; /* confusing, isn't it! */
1073 bh
= ext3_find_entry(&dotdot
, &de
);
1076 return ERR_PTR(-ENOENT
);
1077 ino
= le32_to_cpu(de
->inode
);
1080 if (!ext3_valid_inum(child
->d_inode
->i_sb
, ino
)) {
1081 ext3_error(child
->d_inode
->i_sb
, "ext3_get_parent",
1082 "bad inode number: %lu", ino
);
1085 inode
= iget(child
->d_inode
->i_sb
, ino
);
1088 return ERR_PTR(-EACCES
);
1090 if (is_bad_inode(inode
)) {
1092 return ERR_PTR(-ENOENT
);
1095 parent
= d_alloc_anon(inode
);
1098 parent
= ERR_PTR(-ENOMEM
);
1104 static unsigned char ext3_type_by_mode
[S_IFMT
>> S_SHIFT
] = {
1105 [S_IFREG
>> S_SHIFT
] = EXT3_FT_REG_FILE
,
1106 [S_IFDIR
>> S_SHIFT
] = EXT3_FT_DIR
,
1107 [S_IFCHR
>> S_SHIFT
] = EXT3_FT_CHRDEV
,
1108 [S_IFBLK
>> S_SHIFT
] = EXT3_FT_BLKDEV
,
1109 [S_IFIFO
>> S_SHIFT
] = EXT3_FT_FIFO
,
1110 [S_IFSOCK
>> S_SHIFT
] = EXT3_FT_SOCK
,
1111 [S_IFLNK
>> S_SHIFT
] = EXT3_FT_SYMLINK
,
1114 static inline void ext3_set_de_type(struct super_block
*sb
,
1115 struct ext3_dir_entry_2
*de
,
1117 if (EXT3_HAS_INCOMPAT_FEATURE(sb
, EXT3_FEATURE_INCOMPAT_FILETYPE
))
1118 de
->file_type
= ext3_type_by_mode
[(mode
& S_IFMT
)>>S_SHIFT
];
1122 * Move count entries from end of map between two memory locations.
1123 * Returns pointer to last entry moved.
1125 static struct ext3_dir_entry_2
*
1126 dx_move_dirents(char *from
, char *to
, struct dx_map_entry
*map
, int count
)
1128 unsigned rec_len
= 0;
1131 struct ext3_dir_entry_2
*de
= (struct ext3_dir_entry_2
*) (from
+ map
->offs
);
1132 rec_len
= EXT3_DIR_REC_LEN(de
->name_len
);
1133 memcpy (to
, de
, rec_len
);
1134 ((struct ext3_dir_entry_2
*) to
)->rec_len
=
1135 ext3_rec_len_to_disk(rec_len
);
1140 return (struct ext3_dir_entry_2
*) (to
- rec_len
);
1144 * Compact each dir entry in the range to the minimal rec_len.
1145 * Returns pointer to last entry in range.
1147 static struct ext3_dir_entry_2
* dx_pack_dirents(char *base
, int size
)
1149 struct ext3_dir_entry_2
*next
, *to
, *prev
, *de
= (struct ext3_dir_entry_2
*) base
;
1150 unsigned rec_len
= 0;
1153 while ((char*)de
< base
+ size
) {
1154 next
= ext3_next_entry(de
);
1155 if (de
->inode
&& de
->name_len
) {
1156 rec_len
= EXT3_DIR_REC_LEN(de
->name_len
);
1158 memmove(to
, de
, rec_len
);
1159 to
->rec_len
= ext3_rec_len_to_disk(rec_len
);
1161 to
= (struct ext3_dir_entry_2
*) (((char *) to
) + rec_len
);
1169 * Split a full leaf block to make room for a new dir entry.
1170 * Allocate a new block, and move entries so that they are approx. equally full.
1171 * Returns pointer to de in block into which the new entry will be inserted.
1173 static struct ext3_dir_entry_2
*do_split(handle_t
*handle
, struct inode
*dir
,
1174 struct buffer_head
**bh
,struct dx_frame
*frame
,
1175 struct dx_hash_info
*hinfo
, int *error
)
1177 unsigned blocksize
= dir
->i_sb
->s_blocksize
;
1178 unsigned count
, continued
;
1179 struct buffer_head
*bh2
;
1182 struct dx_map_entry
*map
;
1183 char *data1
= (*bh
)->b_data
, *data2
;
1184 unsigned split
, move
, size
, i
;
1185 struct ext3_dir_entry_2
*de
= NULL
, *de2
;
1188 bh2
= ext3_append (handle
, dir
, &newblock
, &err
);
1195 BUFFER_TRACE(*bh
, "get_write_access");
1196 err
= ext3_journal_get_write_access(handle
, *bh
);
1200 BUFFER_TRACE(frame
->bh
, "get_write_access");
1201 err
= ext3_journal_get_write_access(handle
, frame
->bh
);
1205 data2
= bh2
->b_data
;
1207 /* create map in the end of data2 block */
1208 map
= (struct dx_map_entry
*) (data2
+ blocksize
);
1209 count
= dx_make_map ((struct ext3_dir_entry_2
*) data1
,
1210 blocksize
, hinfo
, map
);
1212 dx_sort_map (map
, count
);
1213 /* Split the existing block in the middle, size-wise */
1216 for (i
= count
-1; i
>= 0; i
--) {
1217 /* is more than half of this entry in 2nd half of the block? */
1218 if (size
+ map
[i
].size
/2 > blocksize
/2)
1220 size
+= map
[i
].size
;
1223 /* map index at which we will split */
1224 split
= count
- move
;
1225 hash2
= map
[split
].hash
;
1226 continued
= hash2
== map
[split
- 1].hash
;
1227 dxtrace(printk("Split block %i at %x, %i/%i\n",
1228 dx_get_block(frame
->at
), hash2
, split
, count
-split
));
1230 /* Fancy dance to stay within two buffers */
1231 de2
= dx_move_dirents(data1
, data2
, map
+ split
, count
- split
);
1232 de
= dx_pack_dirents(data1
,blocksize
);
1233 de
->rec_len
= ext3_rec_len_to_disk(data1
+ blocksize
- (char *) de
);
1234 de2
->rec_len
= ext3_rec_len_to_disk(data2
+ blocksize
- (char *) de2
);
1235 dxtrace(dx_show_leaf (hinfo
, (struct ext3_dir_entry_2
*) data1
, blocksize
, 1));
1236 dxtrace(dx_show_leaf (hinfo
, (struct ext3_dir_entry_2
*) data2
, blocksize
, 1));
1238 /* Which block gets the new entry? */
1239 if (hinfo
->hash
>= hash2
)
1244 dx_insert_block (frame
, hash2
+ continued
, newblock
);
1245 err
= ext3_journal_dirty_metadata (handle
, bh2
);
1248 err
= ext3_journal_dirty_metadata (handle
, frame
->bh
);
1252 dxtrace(dx_show_index ("frame", frame
->entries
));
1259 ext3_std_error(dir
->i_sb
, err
);
1267 * Add a new entry into a directory (leaf) block. If de is non-NULL,
1268 * it points to a directory entry which is guaranteed to be large
1269 * enough for new directory entry. If de is NULL, then
1270 * add_dirent_to_buf will attempt search the directory block for
1271 * space. It will return -ENOSPC if no space is available, and -EIO
1272 * and -EEXIST if directory entry already exists.
1274 * NOTE! bh is NOT released in the case where ENOSPC is returned. In
1275 * all other cases bh is released.
1277 static int add_dirent_to_buf(handle_t
*handle
, struct dentry
*dentry
,
1278 struct inode
*inode
, struct ext3_dir_entry_2
*de
,
1279 struct buffer_head
* bh
)
1281 struct inode
*dir
= dentry
->d_parent
->d_inode
;
1282 const char *name
= dentry
->d_name
.name
;
1283 int namelen
= dentry
->d_name
.len
;
1284 unsigned long offset
= 0;
1285 unsigned short reclen
;
1286 int nlen
, rlen
, err
;
1289 reclen
= EXT3_DIR_REC_LEN(namelen
);
1291 de
= (struct ext3_dir_entry_2
*)bh
->b_data
;
1292 top
= bh
->b_data
+ dir
->i_sb
->s_blocksize
- reclen
;
1293 while ((char *) de
<= top
) {
1294 if (!ext3_check_dir_entry("ext3_add_entry", dir
, de
,
1299 if (ext3_match (namelen
, name
, de
)) {
1303 nlen
= EXT3_DIR_REC_LEN(de
->name_len
);
1304 rlen
= ext3_rec_len_from_disk(de
->rec_len
);
1305 if ((de
->inode
? rlen
- nlen
: rlen
) >= reclen
)
1307 de
= (struct ext3_dir_entry_2
*)((char *)de
+ rlen
);
1310 if ((char *) de
> top
)
1313 BUFFER_TRACE(bh
, "get_write_access");
1314 err
= ext3_journal_get_write_access(handle
, bh
);
1316 ext3_std_error(dir
->i_sb
, err
);
1321 /* By now the buffer is marked for journaling */
1322 nlen
= EXT3_DIR_REC_LEN(de
->name_len
);
1323 rlen
= ext3_rec_len_from_disk(de
->rec_len
);
1325 struct ext3_dir_entry_2
*de1
= (struct ext3_dir_entry_2
*)((char *)de
+ nlen
);
1326 de1
->rec_len
= ext3_rec_len_to_disk(rlen
- nlen
);
1327 de
->rec_len
= ext3_rec_len_to_disk(nlen
);
1330 de
->file_type
= EXT3_FT_UNKNOWN
;
1332 de
->inode
= cpu_to_le32(inode
->i_ino
);
1333 ext3_set_de_type(dir
->i_sb
, de
, inode
->i_mode
);
1336 de
->name_len
= namelen
;
1337 memcpy (de
->name
, name
, namelen
);
1339 * XXX shouldn't update any times until successful
1340 * completion of syscall, but too many callers depend
1343 * XXX similarly, too many callers depend on
1344 * ext3_new_inode() setting the times, but error
1345 * recovery deletes the inode, so the worst that can
1346 * happen is that the times are slightly out of date
1347 * and/or different from the directory change time.
1349 dir
->i_mtime
= dir
->i_ctime
= CURRENT_TIME_SEC
;
1350 ext3_update_dx_flag(dir
);
1352 ext3_mark_inode_dirty(handle
, dir
);
1353 BUFFER_TRACE(bh
, "call ext3_journal_dirty_metadata");
1354 err
= ext3_journal_dirty_metadata(handle
, bh
);
1356 ext3_std_error(dir
->i_sb
, err
);
1362 * This converts a one block unindexed directory to a 3 block indexed
1363 * directory, and adds the dentry to the indexed directory.
1365 static int make_indexed_dir(handle_t
*handle
, struct dentry
*dentry
,
1366 struct inode
*inode
, struct buffer_head
*bh
)
1368 struct inode
*dir
= dentry
->d_parent
->d_inode
;
1369 const char *name
= dentry
->d_name
.name
;
1370 int namelen
= dentry
->d_name
.len
;
1371 struct buffer_head
*bh2
;
1372 struct dx_root
*root
;
1373 struct dx_frame frames
[2], *frame
;
1374 struct dx_entry
*entries
;
1375 struct ext3_dir_entry_2
*de
, *de2
;
1380 struct dx_hash_info hinfo
;
1382 struct fake_dirent
*fde
;
1384 blocksize
= dir
->i_sb
->s_blocksize
;
1385 dxtrace(printk("Creating index\n"));
1386 retval
= ext3_journal_get_write_access(handle
, bh
);
1388 ext3_std_error(dir
->i_sb
, retval
);
1392 root
= (struct dx_root
*) bh
->b_data
;
1394 bh2
= ext3_append (handle
, dir
, &block
, &retval
);
1399 EXT3_I(dir
)->i_flags
|= EXT3_INDEX_FL
;
1400 data1
= bh2
->b_data
;
1402 /* The 0th block becomes the root, move the dirents out */
1403 fde
= &root
->dotdot
;
1404 de
= (struct ext3_dir_entry_2
*)((char *)fde
+
1405 ext3_rec_len_from_disk(fde
->rec_len
));
1406 len
= ((char *) root
) + blocksize
- (char *) de
;
1407 memcpy (data1
, de
, len
);
1408 de
= (struct ext3_dir_entry_2
*) data1
;
1410 while ((char *)(de2
= ext3_next_entry(de
)) < top
)
1412 de
->rec_len
= ext3_rec_len_to_disk(data1
+ blocksize
- (char *) de
);
1413 /* Initialize the root; the dot dirents already exist */
1414 de
= (struct ext3_dir_entry_2
*) (&root
->dotdot
);
1415 de
->rec_len
= ext3_rec_len_to_disk(blocksize
- EXT3_DIR_REC_LEN(2));
1416 memset (&root
->info
, 0, sizeof(root
->info
));
1417 root
->info
.info_length
= sizeof(root
->info
);
1418 root
->info
.hash_version
= EXT3_SB(dir
->i_sb
)->s_def_hash_version
;
1419 entries
= root
->entries
;
1420 dx_set_block (entries
, 1);
1421 dx_set_count (entries
, 1);
1422 dx_set_limit (entries
, dx_root_limit(dir
, sizeof(root
->info
)));
1424 /* Initialize as for dx_probe */
1425 hinfo
.hash_version
= root
->info
.hash_version
;
1426 hinfo
.seed
= EXT3_SB(dir
->i_sb
)->s_hash_seed
;
1427 ext3fs_dirhash(name
, namelen
, &hinfo
);
1429 frame
->entries
= entries
;
1430 frame
->at
= entries
;
1433 de
= do_split(handle
,dir
, &bh
, frame
, &hinfo
, &retval
);
1434 dx_release (frames
);
1438 return add_dirent_to_buf(handle
, dentry
, inode
, de
, bh
);
1444 * adds a file entry to the specified directory, using the same
1445 * semantics as ext3_find_entry(). It returns NULL if it failed.
1447 * NOTE!! The inode part of 'de' is left at 0 - which means you
1448 * may not sleep between calling this and putting something into
1449 * the entry, as someone else might have used it while you slept.
1451 static int ext3_add_entry (handle_t
*handle
, struct dentry
*dentry
,
1452 struct inode
*inode
)
1454 struct inode
*dir
= dentry
->d_parent
->d_inode
;
1455 unsigned long offset
;
1456 struct buffer_head
* bh
;
1457 struct ext3_dir_entry_2
*de
;
1458 struct super_block
* sb
;
1465 blocksize
= sb
->s_blocksize
;
1466 if (!dentry
->d_name
.len
)
1469 retval
= ext3_dx_add_entry(handle
, dentry
, inode
);
1470 if (!retval
|| (retval
!= ERR_BAD_DX_DIR
))
1472 EXT3_I(dir
)->i_flags
&= ~EXT3_INDEX_FL
;
1474 ext3_mark_inode_dirty(handle
, dir
);
1476 blocks
= dir
->i_size
>> sb
->s_blocksize_bits
;
1477 for (block
= 0, offset
= 0; block
< blocks
; block
++) {
1478 bh
= ext3_bread(handle
, dir
, block
, 0, &retval
);
1481 retval
= add_dirent_to_buf(handle
, dentry
, inode
, NULL
, bh
);
1482 if (retval
!= -ENOSPC
)
1485 if (blocks
== 1 && !dx_fallback
&&
1486 EXT3_HAS_COMPAT_FEATURE(sb
, EXT3_FEATURE_COMPAT_DIR_INDEX
))
1487 return make_indexed_dir(handle
, dentry
, inode
, bh
);
1490 bh
= ext3_append(handle
, dir
, &block
, &retval
);
1493 de
= (struct ext3_dir_entry_2
*) bh
->b_data
;
1495 de
->rec_len
= ext3_rec_len_to_disk(blocksize
);
1496 return add_dirent_to_buf(handle
, dentry
, inode
, de
, bh
);
1500 * Returns 0 for success, or a negative error value
1502 static int ext3_dx_add_entry(handle_t
*handle
, struct dentry
*dentry
,
1503 struct inode
*inode
)
1505 struct dx_frame frames
[2], *frame
;
1506 struct dx_entry
*entries
, *at
;
1507 struct dx_hash_info hinfo
;
1508 struct buffer_head
* bh
;
1509 struct inode
*dir
= dentry
->d_parent
->d_inode
;
1510 struct super_block
* sb
= dir
->i_sb
;
1511 struct ext3_dir_entry_2
*de
;
1514 frame
= dx_probe(dentry
, NULL
, &hinfo
, frames
, &err
);
1517 entries
= frame
->entries
;
1520 if (!(bh
= ext3_bread(handle
,dir
, dx_get_block(frame
->at
), 0, &err
)))
1523 BUFFER_TRACE(bh
, "get_write_access");
1524 err
= ext3_journal_get_write_access(handle
, bh
);
1528 err
= add_dirent_to_buf(handle
, dentry
, inode
, NULL
, bh
);
1529 if (err
!= -ENOSPC
) {
1534 /* Block full, should compress but for now just split */
1535 dxtrace(printk("using %u of %u node entries\n",
1536 dx_get_count(entries
), dx_get_limit(entries
)));
1537 /* Need to split index? */
1538 if (dx_get_count(entries
) == dx_get_limit(entries
)) {
1540 unsigned icount
= dx_get_count(entries
);
1541 int levels
= frame
- frames
;
1542 struct dx_entry
*entries2
;
1543 struct dx_node
*node2
;
1544 struct buffer_head
*bh2
;
1546 if (levels
&& (dx_get_count(frames
->entries
) ==
1547 dx_get_limit(frames
->entries
))) {
1548 ext3_warning(sb
, __FUNCTION__
,
1549 "Directory index full!");
1553 bh2
= ext3_append (handle
, dir
, &newblock
, &err
);
1556 node2
= (struct dx_node
*)(bh2
->b_data
);
1557 entries2
= node2
->entries
;
1558 node2
->fake
.rec_len
= ext3_rec_len_to_disk(sb
->s_blocksize
);
1559 node2
->fake
.inode
= 0;
1560 BUFFER_TRACE(frame
->bh
, "get_write_access");
1561 err
= ext3_journal_get_write_access(handle
, frame
->bh
);
1565 unsigned icount1
= icount
/2, icount2
= icount
- icount1
;
1566 unsigned hash2
= dx_get_hash(entries
+ icount1
);
1567 dxtrace(printk("Split index %i/%i\n", icount1
, icount2
));
1569 BUFFER_TRACE(frame
->bh
, "get_write_access"); /* index root */
1570 err
= ext3_journal_get_write_access(handle
,
1575 memcpy ((char *) entries2
, (char *) (entries
+ icount1
),
1576 icount2
* sizeof(struct dx_entry
));
1577 dx_set_count (entries
, icount1
);
1578 dx_set_count (entries2
, icount2
);
1579 dx_set_limit (entries2
, dx_node_limit(dir
));
1581 /* Which index block gets the new entry? */
1582 if (at
- entries
>= icount1
) {
1583 frame
->at
= at
= at
- entries
- icount1
+ entries2
;
1584 frame
->entries
= entries
= entries2
;
1585 swap(frame
->bh
, bh2
);
1587 dx_insert_block (frames
+ 0, hash2
, newblock
);
1588 dxtrace(dx_show_index ("node", frames
[1].entries
));
1589 dxtrace(dx_show_index ("node",
1590 ((struct dx_node
*) bh2
->b_data
)->entries
));
1591 err
= ext3_journal_dirty_metadata(handle
, bh2
);
1596 dxtrace(printk("Creating second level index...\n"));
1597 memcpy((char *) entries2
, (char *) entries
,
1598 icount
* sizeof(struct dx_entry
));
1599 dx_set_limit(entries2
, dx_node_limit(dir
));
1602 dx_set_count(entries
, 1);
1603 dx_set_block(entries
+ 0, newblock
);
1604 ((struct dx_root
*) frames
[0].bh
->b_data
)->info
.indirect_levels
= 1;
1606 /* Add new access path frame */
1608 frame
->at
= at
= at
- entries
+ entries2
;
1609 frame
->entries
= entries
= entries2
;
1611 err
= ext3_journal_get_write_access(handle
,
1616 ext3_journal_dirty_metadata(handle
, frames
[0].bh
);
1618 de
= do_split(handle
, dir
, &bh
, frame
, &hinfo
, &err
);
1621 err
= add_dirent_to_buf(handle
, dentry
, inode
, de
, bh
);
1626 ext3_std_error(dir
->i_sb
, err
);
1635 * ext3_delete_entry deletes a directory entry by merging it with the
1638 static int ext3_delete_entry (handle_t
*handle
,
1640 struct ext3_dir_entry_2
* de_del
,
1641 struct buffer_head
* bh
)
1643 struct ext3_dir_entry_2
* de
, * pde
;
1648 de
= (struct ext3_dir_entry_2
*) bh
->b_data
;
1649 while (i
< bh
->b_size
) {
1650 if (!ext3_check_dir_entry("ext3_delete_entry", dir
, de
, bh
, i
))
1653 BUFFER_TRACE(bh
, "get_write_access");
1654 ext3_journal_get_write_access(handle
, bh
);
1656 pde
->rec_len
= ext3_rec_len_to_disk(
1657 ext3_rec_len_from_disk(pde
->rec_len
) +
1658 ext3_rec_len_from_disk(de
->rec_len
));
1662 BUFFER_TRACE(bh
, "call ext3_journal_dirty_metadata");
1663 ext3_journal_dirty_metadata(handle
, bh
);
1666 i
+= ext3_rec_len_from_disk(de
->rec_len
);
1668 de
= ext3_next_entry(de
);
1673 static int ext3_add_nondir(handle_t
*handle
,
1674 struct dentry
*dentry
, struct inode
*inode
)
1676 int err
= ext3_add_entry(handle
, dentry
, inode
);
1678 ext3_mark_inode_dirty(handle
, inode
);
1679 d_instantiate(dentry
, inode
);
1688 * By the time this is called, we already have created
1689 * the directory cache entry for the new file, but it
1690 * is so far negative - it has no inode.
1692 * If the create succeeds, we fill in the inode information
1693 * with d_instantiate().
1695 static int ext3_create (struct inode
* dir
, struct dentry
* dentry
, int mode
,
1696 struct nameidata
*nd
)
1699 struct inode
* inode
;
1700 int err
, retries
= 0;
1703 handle
= ext3_journal_start(dir
, EXT3_DATA_TRANS_BLOCKS(dir
->i_sb
) +
1704 EXT3_INDEX_EXTRA_TRANS_BLOCKS
+ 3 +
1705 2*EXT3_QUOTA_INIT_BLOCKS(dir
->i_sb
));
1707 return PTR_ERR(handle
);
1709 if (IS_DIRSYNC(dir
))
1712 inode
= ext3_new_inode (handle
, dir
, mode
);
1713 err
= PTR_ERR(inode
);
1714 if (!IS_ERR(inode
)) {
1715 inode
->i_op
= &ext3_file_inode_operations
;
1716 inode
->i_fop
= &ext3_file_operations
;
1717 ext3_set_aops(inode
);
1718 err
= ext3_add_nondir(handle
, dentry
, inode
);
1720 ext3_journal_stop(handle
);
1721 if (err
== -ENOSPC
&& ext3_should_retry_alloc(dir
->i_sb
, &retries
))
1726 static int ext3_mknod (struct inode
* dir
, struct dentry
*dentry
,
1727 int mode
, dev_t rdev
)
1730 struct inode
*inode
;
1731 int err
, retries
= 0;
1733 if (!new_valid_dev(rdev
))
1737 handle
= ext3_journal_start(dir
, EXT3_DATA_TRANS_BLOCKS(dir
->i_sb
) +
1738 EXT3_INDEX_EXTRA_TRANS_BLOCKS
+ 3 +
1739 2*EXT3_QUOTA_INIT_BLOCKS(dir
->i_sb
));
1741 return PTR_ERR(handle
);
1743 if (IS_DIRSYNC(dir
))
1746 inode
= ext3_new_inode (handle
, dir
, mode
);
1747 err
= PTR_ERR(inode
);
1748 if (!IS_ERR(inode
)) {
1749 init_special_inode(inode
, inode
->i_mode
, rdev
);
1750 #ifdef CONFIG_EXT3_FS_XATTR
1751 inode
->i_op
= &ext3_special_inode_operations
;
1753 err
= ext3_add_nondir(handle
, dentry
, inode
);
1755 ext3_journal_stop(handle
);
1756 if (err
== -ENOSPC
&& ext3_should_retry_alloc(dir
->i_sb
, &retries
))
1761 static int ext3_mkdir(struct inode
* dir
, struct dentry
* dentry
, int mode
)
1764 struct inode
* inode
;
1765 struct buffer_head
* dir_block
;
1766 struct ext3_dir_entry_2
* de
;
1767 int err
, retries
= 0;
1769 if (dir
->i_nlink
>= EXT3_LINK_MAX
)
1773 handle
= ext3_journal_start(dir
, EXT3_DATA_TRANS_BLOCKS(dir
->i_sb
) +
1774 EXT3_INDEX_EXTRA_TRANS_BLOCKS
+ 3 +
1775 2*EXT3_QUOTA_INIT_BLOCKS(dir
->i_sb
));
1777 return PTR_ERR(handle
);
1779 if (IS_DIRSYNC(dir
))
1782 inode
= ext3_new_inode (handle
, dir
, S_IFDIR
| mode
);
1783 err
= PTR_ERR(inode
);
1787 inode
->i_op
= &ext3_dir_inode_operations
;
1788 inode
->i_fop
= &ext3_dir_operations
;
1789 inode
->i_size
= EXT3_I(inode
)->i_disksize
= inode
->i_sb
->s_blocksize
;
1790 dir_block
= ext3_bread (handle
, inode
, 0, 1, &err
);
1792 drop_nlink(inode
); /* is this nlink == 0? */
1793 ext3_mark_inode_dirty(handle
, inode
);
1797 BUFFER_TRACE(dir_block
, "get_write_access");
1798 ext3_journal_get_write_access(handle
, dir_block
);
1799 de
= (struct ext3_dir_entry_2
*) dir_block
->b_data
;
1800 de
->inode
= cpu_to_le32(inode
->i_ino
);
1802 de
->rec_len
= ext3_rec_len_to_disk(EXT3_DIR_REC_LEN(de
->name_len
));
1803 strcpy (de
->name
, ".");
1804 ext3_set_de_type(dir
->i_sb
, de
, S_IFDIR
);
1805 de
= ext3_next_entry(de
);
1806 de
->inode
= cpu_to_le32(dir
->i_ino
);
1807 de
->rec_len
= ext3_rec_len_to_disk(inode
->i_sb
->s_blocksize
-
1808 EXT3_DIR_REC_LEN(1));
1810 strcpy (de
->name
, "..");
1811 ext3_set_de_type(dir
->i_sb
, de
, S_IFDIR
);
1813 BUFFER_TRACE(dir_block
, "call ext3_journal_dirty_metadata");
1814 ext3_journal_dirty_metadata(handle
, dir_block
);
1816 ext3_mark_inode_dirty(handle
, inode
);
1817 err
= ext3_add_entry (handle
, dentry
, inode
);
1820 ext3_mark_inode_dirty(handle
, inode
);
1825 ext3_update_dx_flag(dir
);
1826 ext3_mark_inode_dirty(handle
, dir
);
1827 d_instantiate(dentry
, inode
);
1829 ext3_journal_stop(handle
);
1830 if (err
== -ENOSPC
&& ext3_should_retry_alloc(dir
->i_sb
, &retries
))
1836 * routine to check that the specified directory is empty (for rmdir)
1838 static int empty_dir (struct inode
* inode
)
1840 unsigned long offset
;
1841 struct buffer_head
* bh
;
1842 struct ext3_dir_entry_2
* de
, * de1
;
1843 struct super_block
* sb
;
1847 if (inode
->i_size
< EXT3_DIR_REC_LEN(1) + EXT3_DIR_REC_LEN(2) ||
1848 !(bh
= ext3_bread (NULL
, inode
, 0, 0, &err
))) {
1850 ext3_error(inode
->i_sb
, __FUNCTION__
,
1851 "error %d reading directory #%lu offset 0",
1854 ext3_warning(inode
->i_sb
, __FUNCTION__
,
1855 "bad directory (dir #%lu) - no data block",
1859 de
= (struct ext3_dir_entry_2
*) bh
->b_data
;
1860 de1
= ext3_next_entry(de
);
1861 if (le32_to_cpu(de
->inode
) != inode
->i_ino
||
1862 !le32_to_cpu(de1
->inode
) ||
1863 strcmp (".", de
->name
) ||
1864 strcmp ("..", de1
->name
)) {
1865 ext3_warning (inode
->i_sb
, "empty_dir",
1866 "bad directory (dir #%lu) - no `.' or `..'",
1871 offset
= ext3_rec_len_from_disk(de
->rec_len
) +
1872 ext3_rec_len_from_disk(de1
->rec_len
);
1873 de
= ext3_next_entry(de1
);
1874 while (offset
< inode
->i_size
) {
1876 (void *) de
>= (void *) (bh
->b_data
+sb
->s_blocksize
)) {
1879 bh
= ext3_bread (NULL
, inode
,
1880 offset
>> EXT3_BLOCK_SIZE_BITS(sb
), 0, &err
);
1883 ext3_error(sb
, __FUNCTION__
,
1884 "error %d reading directory"
1886 err
, inode
->i_ino
, offset
);
1887 offset
+= sb
->s_blocksize
;
1890 de
= (struct ext3_dir_entry_2
*) bh
->b_data
;
1892 if (!ext3_check_dir_entry("empty_dir", inode
, de
, bh
, offset
)) {
1893 de
= (struct ext3_dir_entry_2
*)(bh
->b_data
+
1895 offset
= (offset
| (sb
->s_blocksize
- 1)) + 1;
1898 if (le32_to_cpu(de
->inode
)) {
1902 offset
+= ext3_rec_len_from_disk(de
->rec_len
);
1903 de
= ext3_next_entry(de
);
1909 /* ext3_orphan_add() links an unlinked or truncated inode into a list of
1910 * such inodes, starting at the superblock, in case we crash before the
1911 * file is closed/deleted, or in case the inode truncate spans multiple
1912 * transactions and the last transaction is not recovered after a crash.
1914 * At filesystem recovery time, we walk this list deleting unlinked
1915 * inodes and truncating linked inodes in ext3_orphan_cleanup().
1917 int ext3_orphan_add(handle_t
*handle
, struct inode
*inode
)
1919 struct super_block
*sb
= inode
->i_sb
;
1920 struct ext3_iloc iloc
;
1924 if (!list_empty(&EXT3_I(inode
)->i_orphan
))
1927 /* Orphan handling is only valid for files with data blocks
1928 * being truncated, or files being unlinked. */
1930 /* @@@ FIXME: Observation from aviro:
1931 * I think I can trigger J_ASSERT in ext3_orphan_add(). We block
1932 * here (on lock_super()), so race with ext3_link() which might bump
1933 * ->i_nlink. For, say it, character device. Not a regular file,
1934 * not a directory, not a symlink and ->i_nlink > 0.
1936 J_ASSERT ((S_ISREG(inode
->i_mode
) || S_ISDIR(inode
->i_mode
) ||
1937 S_ISLNK(inode
->i_mode
)) || inode
->i_nlink
== 0);
1939 BUFFER_TRACE(EXT3_SB(sb
)->s_sbh
, "get_write_access");
1940 err
= ext3_journal_get_write_access(handle
, EXT3_SB(sb
)->s_sbh
);
1944 err
= ext3_reserve_inode_write(handle
, inode
, &iloc
);
1948 /* Insert this inode at the head of the on-disk orphan list... */
1949 NEXT_ORPHAN(inode
) = le32_to_cpu(EXT3_SB(sb
)->s_es
->s_last_orphan
);
1950 EXT3_SB(sb
)->s_es
->s_last_orphan
= cpu_to_le32(inode
->i_ino
);
1951 err
= ext3_journal_dirty_metadata(handle
, EXT3_SB(sb
)->s_sbh
);
1952 rc
= ext3_mark_iloc_dirty(handle
, inode
, &iloc
);
1956 /* Only add to the head of the in-memory list if all the
1957 * previous operations succeeded. If the orphan_add is going to
1958 * fail (possibly taking the journal offline), we can't risk
1959 * leaving the inode on the orphan list: stray orphan-list
1960 * entries can cause panics at unmount time.
1962 * This is safe: on error we're going to ignore the orphan list
1963 * anyway on the next recovery. */
1965 list_add(&EXT3_I(inode
)->i_orphan
, &EXT3_SB(sb
)->s_orphan
);
1967 jbd_debug(4, "superblock will point to %lu\n", inode
->i_ino
);
1968 jbd_debug(4, "orphan inode %lu will point to %d\n",
1969 inode
->i_ino
, NEXT_ORPHAN(inode
));
1972 ext3_std_error(inode
->i_sb
, err
);
1977 * ext3_orphan_del() removes an unlinked or truncated inode from the list
1978 * of such inodes stored on disk, because it is finally being cleaned up.
1980 int ext3_orphan_del(handle_t
*handle
, struct inode
*inode
)
1982 struct list_head
*prev
;
1983 struct ext3_inode_info
*ei
= EXT3_I(inode
);
1984 struct ext3_sb_info
*sbi
;
1985 unsigned long ino_next
;
1986 struct ext3_iloc iloc
;
1989 lock_super(inode
->i_sb
);
1990 if (list_empty(&ei
->i_orphan
)) {
1991 unlock_super(inode
->i_sb
);
1995 ino_next
= NEXT_ORPHAN(inode
);
1996 prev
= ei
->i_orphan
.prev
;
1997 sbi
= EXT3_SB(inode
->i_sb
);
1999 jbd_debug(4, "remove inode %lu from orphan list\n", inode
->i_ino
);
2001 list_del_init(&ei
->i_orphan
);
2003 /* If we're on an error path, we may not have a valid
2004 * transaction handle with which to update the orphan list on
2005 * disk, but we still need to remove the inode from the linked
2006 * list in memory. */
2010 err
= ext3_reserve_inode_write(handle
, inode
, &iloc
);
2014 if (prev
== &sbi
->s_orphan
) {
2015 jbd_debug(4, "superblock will point to %lu\n", ino_next
);
2016 BUFFER_TRACE(sbi
->s_sbh
, "get_write_access");
2017 err
= ext3_journal_get_write_access(handle
, sbi
->s_sbh
);
2020 sbi
->s_es
->s_last_orphan
= cpu_to_le32(ino_next
);
2021 err
= ext3_journal_dirty_metadata(handle
, sbi
->s_sbh
);
2023 struct ext3_iloc iloc2
;
2024 struct inode
*i_prev
=
2025 &list_entry(prev
, struct ext3_inode_info
, i_orphan
)->vfs_inode
;
2027 jbd_debug(4, "orphan inode %lu will point to %lu\n",
2028 i_prev
->i_ino
, ino_next
);
2029 err
= ext3_reserve_inode_write(handle
, i_prev
, &iloc2
);
2032 NEXT_ORPHAN(i_prev
) = ino_next
;
2033 err
= ext3_mark_iloc_dirty(handle
, i_prev
, &iloc2
);
2037 NEXT_ORPHAN(inode
) = 0;
2038 err
= ext3_mark_iloc_dirty(handle
, inode
, &iloc
);
2041 ext3_std_error(inode
->i_sb
, err
);
2043 unlock_super(inode
->i_sb
);
2051 static int ext3_rmdir (struct inode
* dir
, struct dentry
*dentry
)
2054 struct inode
* inode
;
2055 struct buffer_head
* bh
;
2056 struct ext3_dir_entry_2
* de
;
2059 /* Initialize quotas before so that eventual writes go in
2060 * separate transaction */
2061 DQUOT_INIT(dentry
->d_inode
);
2062 handle
= ext3_journal_start(dir
, EXT3_DELETE_TRANS_BLOCKS(dir
->i_sb
));
2064 return PTR_ERR(handle
);
2067 bh
= ext3_find_entry (dentry
, &de
);
2071 if (IS_DIRSYNC(dir
))
2074 inode
= dentry
->d_inode
;
2077 if (le32_to_cpu(de
->inode
) != inode
->i_ino
)
2080 retval
= -ENOTEMPTY
;
2081 if (!empty_dir (inode
))
2084 retval
= ext3_delete_entry(handle
, dir
, de
, bh
);
2087 if (inode
->i_nlink
!= 2)
2088 ext3_warning (inode
->i_sb
, "ext3_rmdir",
2089 "empty directory has nlink!=2 (%d)",
2093 /* There's no need to set i_disksize: the fact that i_nlink is
2094 * zero will ensure that the right thing happens during any
2097 ext3_orphan_add(handle
, inode
);
2098 inode
->i_ctime
= dir
->i_ctime
= dir
->i_mtime
= CURRENT_TIME_SEC
;
2099 ext3_mark_inode_dirty(handle
, inode
);
2101 ext3_update_dx_flag(dir
);
2102 ext3_mark_inode_dirty(handle
, dir
);
2105 ext3_journal_stop(handle
);
2110 static int ext3_unlink(struct inode
* dir
, struct dentry
*dentry
)
2113 struct inode
* inode
;
2114 struct buffer_head
* bh
;
2115 struct ext3_dir_entry_2
* de
;
2118 /* Initialize quotas before so that eventual writes go
2119 * in separate transaction */
2120 DQUOT_INIT(dentry
->d_inode
);
2121 handle
= ext3_journal_start(dir
, EXT3_DELETE_TRANS_BLOCKS(dir
->i_sb
));
2123 return PTR_ERR(handle
);
2125 if (IS_DIRSYNC(dir
))
2129 bh
= ext3_find_entry (dentry
, &de
);
2133 inode
= dentry
->d_inode
;
2136 if (le32_to_cpu(de
->inode
) != inode
->i_ino
)
2139 if (!inode
->i_nlink
) {
2140 ext3_warning (inode
->i_sb
, "ext3_unlink",
2141 "Deleting nonexistent file (%lu), %d",
2142 inode
->i_ino
, inode
->i_nlink
);
2145 retval
= ext3_delete_entry(handle
, dir
, de
, bh
);
2148 dir
->i_ctime
= dir
->i_mtime
= CURRENT_TIME_SEC
;
2149 ext3_update_dx_flag(dir
);
2150 ext3_mark_inode_dirty(handle
, dir
);
2152 if (!inode
->i_nlink
)
2153 ext3_orphan_add(handle
, inode
);
2154 inode
->i_ctime
= dir
->i_ctime
;
2155 ext3_mark_inode_dirty(handle
, inode
);
2159 ext3_journal_stop(handle
);
2164 static int ext3_symlink (struct inode
* dir
,
2165 struct dentry
*dentry
, const char * symname
)
2168 struct inode
* inode
;
2169 int l
, err
, retries
= 0;
2171 l
= strlen(symname
)+1;
2172 if (l
> dir
->i_sb
->s_blocksize
)
2173 return -ENAMETOOLONG
;
2176 handle
= ext3_journal_start(dir
, EXT3_DATA_TRANS_BLOCKS(dir
->i_sb
) +
2177 EXT3_INDEX_EXTRA_TRANS_BLOCKS
+ 5 +
2178 2*EXT3_QUOTA_INIT_BLOCKS(dir
->i_sb
));
2180 return PTR_ERR(handle
);
2182 if (IS_DIRSYNC(dir
))
2185 inode
= ext3_new_inode (handle
, dir
, S_IFLNK
|S_IRWXUGO
);
2186 err
= PTR_ERR(inode
);
2190 if (l
> sizeof (EXT3_I(inode
)->i_data
)) {
2191 inode
->i_op
= &ext3_symlink_inode_operations
;
2192 ext3_set_aops(inode
);
2194 * page_symlink() calls into ext3_prepare/commit_write.
2195 * We have a transaction open. All is sweetness. It also sets
2196 * i_size in generic_commit_write().
2198 err
= __page_symlink(inode
, symname
, l
,
2199 mapping_gfp_mask(inode
->i_mapping
) & ~__GFP_FS
);
2202 ext3_mark_inode_dirty(handle
, inode
);
2207 inode
->i_op
= &ext3_fast_symlink_inode_operations
;
2208 memcpy((char*)&EXT3_I(inode
)->i_data
,symname
,l
);
2209 inode
->i_size
= l
-1;
2211 EXT3_I(inode
)->i_disksize
= inode
->i_size
;
2212 err
= ext3_add_nondir(handle
, dentry
, inode
);
2214 ext3_journal_stop(handle
);
2215 if (err
== -ENOSPC
&& ext3_should_retry_alloc(dir
->i_sb
, &retries
))
2220 static int ext3_link (struct dentry
* old_dentry
,
2221 struct inode
* dir
, struct dentry
*dentry
)
2224 struct inode
*inode
= old_dentry
->d_inode
;
2225 int err
, retries
= 0;
2227 if (inode
->i_nlink
>= EXT3_LINK_MAX
)
2230 * Return -ENOENT if we've raced with unlink and i_nlink is 0. Doing
2231 * otherwise has the potential to corrupt the orphan inode list.
2233 if (inode
->i_nlink
== 0)
2237 handle
= ext3_journal_start(dir
, EXT3_DATA_TRANS_BLOCKS(dir
->i_sb
) +
2238 EXT3_INDEX_EXTRA_TRANS_BLOCKS
);
2240 return PTR_ERR(handle
);
2242 if (IS_DIRSYNC(dir
))
2245 inode
->i_ctime
= CURRENT_TIME_SEC
;
2247 atomic_inc(&inode
->i_count
);
2249 err
= ext3_add_nondir(handle
, dentry
, inode
);
2250 ext3_journal_stop(handle
);
2251 if (err
== -ENOSPC
&& ext3_should_retry_alloc(dir
->i_sb
, &retries
))
2256 #define PARENT_INO(buffer) \
2257 (ext3_next_entry((struct ext3_dir_entry_2 *)(buffer))->inode)
2260 * Anybody can rename anything with this: the permission checks are left to the
2261 * higher-level routines.
2263 static int ext3_rename (struct inode
* old_dir
, struct dentry
*old_dentry
,
2264 struct inode
* new_dir
,struct dentry
*new_dentry
)
2267 struct inode
* old_inode
, * new_inode
;
2268 struct buffer_head
* old_bh
, * new_bh
, * dir_bh
;
2269 struct ext3_dir_entry_2
* old_de
, * new_de
;
2272 old_bh
= new_bh
= dir_bh
= NULL
;
2274 /* Initialize quotas before so that eventual writes go
2275 * in separate transaction */
2276 if (new_dentry
->d_inode
)
2277 DQUOT_INIT(new_dentry
->d_inode
);
2278 handle
= ext3_journal_start(old_dir
, 2 *
2279 EXT3_DATA_TRANS_BLOCKS(old_dir
->i_sb
) +
2280 EXT3_INDEX_EXTRA_TRANS_BLOCKS
+ 2);
2282 return PTR_ERR(handle
);
2284 if (IS_DIRSYNC(old_dir
) || IS_DIRSYNC(new_dir
))
2287 old_bh
= ext3_find_entry (old_dentry
, &old_de
);
2289 * Check for inode number is _not_ due to possible IO errors.
2290 * We might rmdir the source, keep it as pwd of some process
2291 * and merrily kill the link to whatever was created under the
2292 * same name. Goodbye sticky bit ;-<
2294 old_inode
= old_dentry
->d_inode
;
2296 if (!old_bh
|| le32_to_cpu(old_de
->inode
) != old_inode
->i_ino
)
2299 new_inode
= new_dentry
->d_inode
;
2300 new_bh
= ext3_find_entry (new_dentry
, &new_de
);
2307 if (S_ISDIR(old_inode
->i_mode
)) {
2309 retval
= -ENOTEMPTY
;
2310 if (!empty_dir (new_inode
))
2314 dir_bh
= ext3_bread (handle
, old_inode
, 0, 0, &retval
);
2317 if (le32_to_cpu(PARENT_INO(dir_bh
->b_data
)) != old_dir
->i_ino
)
2320 if (!new_inode
&& new_dir
!=old_dir
&&
2321 new_dir
->i_nlink
>= EXT3_LINK_MAX
)
2325 retval
= ext3_add_entry (handle
, new_dentry
, old_inode
);
2329 BUFFER_TRACE(new_bh
, "get write access");
2330 ext3_journal_get_write_access(handle
, new_bh
);
2331 new_de
->inode
= cpu_to_le32(old_inode
->i_ino
);
2332 if (EXT3_HAS_INCOMPAT_FEATURE(new_dir
->i_sb
,
2333 EXT3_FEATURE_INCOMPAT_FILETYPE
))
2334 new_de
->file_type
= old_de
->file_type
;
2335 new_dir
->i_version
++;
2336 BUFFER_TRACE(new_bh
, "call ext3_journal_dirty_metadata");
2337 ext3_journal_dirty_metadata(handle
, new_bh
);
2343 * Like most other Unix systems, set the ctime for inodes on a
2346 old_inode
->i_ctime
= CURRENT_TIME_SEC
;
2347 ext3_mark_inode_dirty(handle
, old_inode
);
2352 if (le32_to_cpu(old_de
->inode
) != old_inode
->i_ino
||
2353 old_de
->name_len
!= old_dentry
->d_name
.len
||
2354 strncmp(old_de
->name
, old_dentry
->d_name
.name
, old_de
->name_len
) ||
2355 (retval
= ext3_delete_entry(handle
, old_dir
,
2356 old_de
, old_bh
)) == -ENOENT
) {
2357 /* old_de could have moved from under us during htree split, so
2358 * make sure that we are deleting the right entry. We might
2359 * also be pointing to a stale entry in the unused part of
2360 * old_bh so just checking inum and the name isn't enough. */
2361 struct buffer_head
*old_bh2
;
2362 struct ext3_dir_entry_2
*old_de2
;
2364 old_bh2
= ext3_find_entry(old_dentry
, &old_de2
);
2366 retval
= ext3_delete_entry(handle
, old_dir
,
2372 ext3_warning(old_dir
->i_sb
, "ext3_rename",
2373 "Deleting old file (%lu), %d, error=%d",
2374 old_dir
->i_ino
, old_dir
->i_nlink
, retval
);
2378 drop_nlink(new_inode
);
2379 new_inode
->i_ctime
= CURRENT_TIME_SEC
;
2381 old_dir
->i_ctime
= old_dir
->i_mtime
= CURRENT_TIME_SEC
;
2382 ext3_update_dx_flag(old_dir
);
2384 BUFFER_TRACE(dir_bh
, "get_write_access");
2385 ext3_journal_get_write_access(handle
, dir_bh
);
2386 PARENT_INO(dir_bh
->b_data
) = cpu_to_le32(new_dir
->i_ino
);
2387 BUFFER_TRACE(dir_bh
, "call ext3_journal_dirty_metadata");
2388 ext3_journal_dirty_metadata(handle
, dir_bh
);
2389 drop_nlink(old_dir
);
2391 drop_nlink(new_inode
);
2394 ext3_update_dx_flag(new_dir
);
2395 ext3_mark_inode_dirty(handle
, new_dir
);
2398 ext3_mark_inode_dirty(handle
, old_dir
);
2400 ext3_mark_inode_dirty(handle
, new_inode
);
2401 if (!new_inode
->i_nlink
)
2402 ext3_orphan_add(handle
, new_inode
);
2410 ext3_journal_stop(handle
);
2415 * directories can handle most operations...
2417 const struct inode_operations ext3_dir_inode_operations
= {
2418 .create
= ext3_create
,
2419 .lookup
= ext3_lookup
,
2421 .unlink
= ext3_unlink
,
2422 .symlink
= ext3_symlink
,
2423 .mkdir
= ext3_mkdir
,
2424 .rmdir
= ext3_rmdir
,
2425 .mknod
= ext3_mknod
,
2426 .rename
= ext3_rename
,
2427 .setattr
= ext3_setattr
,
2428 #ifdef CONFIG_EXT3_FS_XATTR
2429 .setxattr
= generic_setxattr
,
2430 .getxattr
= generic_getxattr
,
2431 .listxattr
= ext3_listxattr
,
2432 .removexattr
= generic_removexattr
,
2434 .permission
= ext3_permission
,
2437 const struct inode_operations ext3_special_inode_operations
= {
2438 .setattr
= ext3_setattr
,
2439 #ifdef CONFIG_EXT3_FS_XATTR
2440 .setxattr
= generic_setxattr
,
2441 .getxattr
= generic_getxattr
,
2442 .listxattr
= ext3_listxattr
,
2443 .removexattr
= generic_removexattr
,
2445 .permission
= ext3_permission
,