2 * linux/fs/ext3/namei.c
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
11 * linux/fs/minix/namei.c
13 * Copyright (C) 1991, 1992 Linus Torvalds
15 * Big-endian to little-endian byte-swapping/bitmaps by
16 * David S. Miller (davem@caip.rutgers.edu), 1995
17 * Directory entry file type support and forward compatibility hooks
18 * for B-tree directories by Theodore Ts'o (tytso@mit.edu), 1998
19 * Hash Tree Directory indexing (c)
20 * Daniel Phillips, 2001
21 * Hash Tree Directory indexing porting
22 * Christopher Li, 2002
23 * Hash Tree Directory indexing cleanup
28 #include <linux/pagemap.h>
29 #include <linux/jbd.h>
30 #include <linux/time.h>
31 #include <linux/ext3_fs.h>
32 #include <linux/ext3_jbd.h>
33 #include <linux/fcntl.h>
34 #include <linux/stat.h>
35 #include <linux/string.h>
36 #include <linux/quotaops.h>
37 #include <linux/buffer_head.h>
38 #include <linux/smp_lock.h>
43 * define how far ahead to read directories while searching them.
45 #define NAMEI_RA_CHUNKS 2
46 #define NAMEI_RA_BLOCKS 4
47 #define NAMEI_RA_SIZE (NAMEI_RA_CHUNKS * NAMEI_RA_BLOCKS)
48 #define NAMEI_RA_INDEX(c,b) (((c) * NAMEI_RA_BLOCKS) + (b))
50 static struct buffer_head
*ext3_append(handle_t
*handle
,
54 struct buffer_head
*bh
;
56 *block
= inode
->i_size
>> inode
->i_sb
->s_blocksize_bits
;
58 if ((bh
= ext3_bread(handle
, inode
, *block
, 1, err
))) {
59 inode
->i_size
+= inode
->i_sb
->s_blocksize
;
60 EXT3_I(inode
)->i_disksize
= inode
->i_size
;
61 ext3_journal_get_write_access(handle
,bh
);
67 #define assert(test) J_ASSERT(test)
71 #define swap(x, y) do { typeof(x) z = x; x = y; y = z; } while (0)
75 #define dxtrace(command) command
77 #define dxtrace(command)
101 * dx_root_info is laid out so that if it should somehow get overlaid by a
102 * dirent the two low bits of the hash version will be zero. Therefore, the
103 * hash version mod 4 should never be 0. Sincerely, the paranoia department.
108 struct fake_dirent dot
;
110 struct fake_dirent dotdot
;
114 __le32 reserved_zero
;
116 u8 info_length
; /* 8 */
121 struct dx_entry entries
[0];
126 struct fake_dirent fake
;
127 struct dx_entry entries
[0];
133 struct buffer_head
*bh
;
134 struct dx_entry
*entries
;
144 #ifdef CONFIG_EXT3_INDEX
145 static inline unsigned dx_get_block (struct dx_entry
*entry
);
146 static void dx_set_block (struct dx_entry
*entry
, unsigned value
);
147 static inline unsigned dx_get_hash (struct dx_entry
*entry
);
148 static void dx_set_hash (struct dx_entry
*entry
, unsigned value
);
149 static unsigned dx_get_count (struct dx_entry
*entries
);
150 static unsigned dx_get_limit (struct dx_entry
*entries
);
151 static void dx_set_count (struct dx_entry
*entries
, unsigned value
);
152 static void dx_set_limit (struct dx_entry
*entries
, unsigned value
);
153 static unsigned dx_root_limit (struct inode
*dir
, unsigned infosize
);
154 static unsigned dx_node_limit (struct inode
*dir
);
155 static struct dx_frame
*dx_probe(struct dentry
*dentry
,
157 struct dx_hash_info
*hinfo
,
158 struct dx_frame
*frame
,
160 static void dx_release (struct dx_frame
*frames
);
161 static int dx_make_map (struct ext3_dir_entry_2
*de
, int size
,
162 struct dx_hash_info
*hinfo
, struct dx_map_entry map
[]);
163 static void dx_sort_map(struct dx_map_entry
*map
, unsigned count
);
164 static struct ext3_dir_entry_2
*dx_move_dirents (char *from
, char *to
,
165 struct dx_map_entry
*offsets
, int count
);
166 static struct ext3_dir_entry_2
* dx_pack_dirents (char *base
, int size
);
167 static void dx_insert_block (struct dx_frame
*frame
, u32 hash
, u32 block
);
168 static int ext3_htree_next_block(struct inode
*dir
, __u32 hash
,
169 struct dx_frame
*frame
,
170 struct dx_frame
*frames
,
172 static struct buffer_head
* ext3_dx_find_entry(struct dentry
*dentry
,
173 struct ext3_dir_entry_2
**res_dir
, int *err
);
174 static int ext3_dx_add_entry(handle_t
*handle
, struct dentry
*dentry
,
175 struct inode
*inode
);
178 * Future: use high four bits of block for coalesce-on-delete flags
179 * Mask them off for now.
182 static inline unsigned dx_get_block (struct dx_entry
*entry
)
184 return le32_to_cpu(entry
->block
) & 0x00ffffff;
187 static inline void dx_set_block (struct dx_entry
*entry
, unsigned value
)
189 entry
->block
= cpu_to_le32(value
);
192 static inline unsigned dx_get_hash (struct dx_entry
*entry
)
194 return le32_to_cpu(entry
->hash
);
197 static inline void dx_set_hash (struct dx_entry
*entry
, unsigned value
)
199 entry
->hash
= cpu_to_le32(value
);
202 static inline unsigned dx_get_count (struct dx_entry
*entries
)
204 return le16_to_cpu(((struct dx_countlimit
*) entries
)->count
);
207 static inline unsigned dx_get_limit (struct dx_entry
*entries
)
209 return le16_to_cpu(((struct dx_countlimit
*) entries
)->limit
);
212 static inline void dx_set_count (struct dx_entry
*entries
, unsigned value
)
214 ((struct dx_countlimit
*) entries
)->count
= cpu_to_le16(value
);
217 static inline void dx_set_limit (struct dx_entry
*entries
, unsigned value
)
219 ((struct dx_countlimit
*) entries
)->limit
= cpu_to_le16(value
);
222 static inline unsigned dx_root_limit (struct inode
*dir
, unsigned infosize
)
224 unsigned entry_space
= dir
->i_sb
->s_blocksize
- EXT3_DIR_REC_LEN(1) -
225 EXT3_DIR_REC_LEN(2) - infosize
;
226 return 0? 20: entry_space
/ sizeof(struct dx_entry
);
229 static inline unsigned dx_node_limit (struct inode
*dir
)
231 unsigned entry_space
= dir
->i_sb
->s_blocksize
- EXT3_DIR_REC_LEN(0);
232 return 0? 22: entry_space
/ sizeof(struct dx_entry
);
239 static void dx_show_index (char * label
, struct dx_entry
*entries
)
241 int i
, n
= dx_get_count (entries
);
242 printk("%s index ", label
);
243 for (i
= 0; i
< n
; i
++)
245 printk("%x->%u ", i
? dx_get_hash(entries
+ i
): 0, dx_get_block(entries
+ i
));
257 static struct stats
dx_show_leaf(struct dx_hash_info
*hinfo
, struct ext3_dir_entry_2
*de
,
258 int size
, int show_names
)
260 unsigned names
= 0, space
= 0;
261 char *base
= (char *) de
;
262 struct dx_hash_info h
= *hinfo
;
265 while ((char *) de
< base
+ size
)
271 int len
= de
->name_len
;
272 char *name
= de
->name
;
273 while (len
--) printk("%c", *name
++);
274 ext3fs_dirhash(de
->name
, de
->name_len
, &h
);
275 printk(":%x.%u ", h
.hash
,
276 ((char *) de
- base
));
278 space
+= EXT3_DIR_REC_LEN(de
->name_len
);
281 de
= (struct ext3_dir_entry_2
*) ((char *) de
+ le16_to_cpu(de
->rec_len
));
283 printk("(%i)\n", names
);
284 return (struct stats
) { names
, space
, 1 };
287 struct stats
dx_show_entries(struct dx_hash_info
*hinfo
, struct inode
*dir
,
288 struct dx_entry
*entries
, int levels
)
290 unsigned blocksize
= dir
->i_sb
->s_blocksize
;
291 unsigned count
= dx_get_count (entries
), names
= 0, space
= 0, i
;
293 struct buffer_head
*bh
;
295 printk("%i indexed blocks...\n", count
);
296 for (i
= 0; i
< count
; i
++, entries
++)
298 u32 block
= dx_get_block(entries
), hash
= i
? dx_get_hash(entries
): 0;
299 u32 range
= i
< count
- 1? (dx_get_hash(entries
+ 1) - hash
): ~hash
;
301 printk("%s%3u:%03u hash %8x/%8x ",levels
?"":" ", i
, block
, hash
, range
);
302 if (!(bh
= ext3_bread (NULL
,dir
, block
, 0,&err
))) continue;
304 dx_show_entries(hinfo
, dir
, ((struct dx_node
*) bh
->b_data
)->entries
, levels
- 1):
305 dx_show_leaf(hinfo
, (struct ext3_dir_entry_2
*) bh
->b_data
, blocksize
, 0);
306 names
+= stats
.names
;
307 space
+= stats
.space
;
308 bcount
+= stats
.bcount
;
312 printk("%snames %u, fullness %u (%u%%)\n", levels
?"":" ",
313 names
, space
/bcount
,(space
/bcount
)*100/blocksize
);
314 return (struct stats
) { names
, space
, bcount
};
316 #endif /* DX_DEBUG */
319 * Probe for a directory leaf block to search.
321 * dx_probe can return ERR_BAD_DX_DIR, which means there was a format
322 * error in the directory index, and the caller should fall back to
323 * searching the directory normally. The callers of dx_probe **MUST**
324 * check for this error code, and make sure it never gets reflected
327 static struct dx_frame
*
328 dx_probe(struct dentry
*dentry
, struct inode
*dir
,
329 struct dx_hash_info
*hinfo
, struct dx_frame
*frame_in
, int *err
)
331 unsigned count
, indirect
;
332 struct dx_entry
*at
, *entries
, *p
, *q
, *m
;
333 struct dx_root
*root
;
334 struct buffer_head
*bh
;
335 struct dx_frame
*frame
= frame_in
;
340 dir
= dentry
->d_parent
->d_inode
;
341 if (!(bh
= ext3_bread (NULL
,dir
, 0, 0, err
)))
343 root
= (struct dx_root
*) bh
->b_data
;
344 if (root
->info
.hash_version
!= DX_HASH_TEA
&&
345 root
->info
.hash_version
!= DX_HASH_HALF_MD4
&&
346 root
->info
.hash_version
!= DX_HASH_LEGACY
) {
347 ext3_warning(dir
->i_sb
, __FUNCTION__
,
348 "Unrecognised inode hash code %d",
349 root
->info
.hash_version
);
351 *err
= ERR_BAD_DX_DIR
;
354 hinfo
->hash_version
= root
->info
.hash_version
;
355 hinfo
->seed
= EXT3_SB(dir
->i_sb
)->s_hash_seed
;
357 ext3fs_dirhash(dentry
->d_name
.name
, dentry
->d_name
.len
, hinfo
);
360 if (root
->info
.unused_flags
& 1) {
361 ext3_warning(dir
->i_sb
, __FUNCTION__
,
362 "Unimplemented inode hash flags: %#06x",
363 root
->info
.unused_flags
);
365 *err
= ERR_BAD_DX_DIR
;
369 if ((indirect
= root
->info
.indirect_levels
) > 1) {
370 ext3_warning(dir
->i_sb
, __FUNCTION__
,
371 "Unimplemented inode hash depth: %#06x",
372 root
->info
.indirect_levels
);
374 *err
= ERR_BAD_DX_DIR
;
378 entries
= (struct dx_entry
*) (((char *)&root
->info
) +
379 root
->info
.info_length
);
380 assert(dx_get_limit(entries
) == dx_root_limit(dir
,
381 root
->info
.info_length
));
382 dxtrace (printk("Look up %x", hash
));
385 count
= dx_get_count(entries
);
386 assert (count
&& count
<= dx_get_limit(entries
));
388 q
= entries
+ count
- 1;
392 dxtrace(printk("."));
393 if (dx_get_hash(m
) > hash
)
399 if (0) // linear search cross check
401 unsigned n
= count
- 1;
405 dxtrace(printk(","));
406 if (dx_get_hash(++at
) > hash
)
412 assert (at
== p
- 1);
416 dxtrace(printk(" %x->%u\n", at
== entries
? 0: dx_get_hash(at
), dx_get_block(at
)));
418 frame
->entries
= entries
;
420 if (!indirect
--) return frame
;
421 if (!(bh
= ext3_bread (NULL
,dir
, dx_get_block(at
), 0, err
)))
423 at
= entries
= ((struct dx_node
*) bh
->b_data
)->entries
;
424 assert (dx_get_limit(entries
) == dx_node_limit (dir
));
428 while (frame
>= frame_in
) {
436 static void dx_release (struct dx_frame
*frames
)
438 if (frames
[0].bh
== NULL
)
441 if (((struct dx_root
*) frames
[0].bh
->b_data
)->info
.indirect_levels
)
442 brelse(frames
[1].bh
);
443 brelse(frames
[0].bh
);
447 * This function increments the frame pointer to search the next leaf
448 * block, and reads in the necessary intervening nodes if the search
449 * should be necessary. Whether or not the search is necessary is
450 * controlled by the hash parameter. If the hash value is even, then
451 * the search is only continued if the next block starts with that
452 * hash value. This is used if we are searching for a specific file.
454 * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
456 * This function returns 1 if the caller should continue to search,
457 * or 0 if it should not. If there is an error reading one of the
458 * index blocks, it will a negative error code.
460 * If start_hash is non-null, it will be filled in with the starting
461 * hash of the next page.
463 static int ext3_htree_next_block(struct inode
*dir
, __u32 hash
,
464 struct dx_frame
*frame
,
465 struct dx_frame
*frames
,
469 struct buffer_head
*bh
;
470 int err
, num_frames
= 0;
475 * Find the next leaf page by incrementing the frame pointer.
476 * If we run out of entries in the interior node, loop around and
477 * increment pointer in the parent node. When we break out of
478 * this loop, num_frames indicates the number of interior
479 * nodes need to be read.
482 if (++(p
->at
) < p
->entries
+ dx_get_count(p
->entries
))
491 * If the hash is 1, then continue only if the next page has a
492 * continuation hash of any value. This is used for readdir
493 * handling. Otherwise, check to see if the hash matches the
494 * desired contiuation hash. If it doesn't, return since
495 * there's no point to read in the successive index pages.
497 bhash
= dx_get_hash(p
->at
);
500 if ((hash
& 1) == 0) {
501 if ((bhash
& ~1) != hash
)
505 * If the hash is HASH_NB_ALWAYS, we always go to the next
506 * block so no check is necessary
508 while (num_frames
--) {
509 if (!(bh
= ext3_bread(NULL
, dir
, dx_get_block(p
->at
),
511 return err
; /* Failure */
515 p
->at
= p
->entries
= ((struct dx_node
*) bh
->b_data
)->entries
;
522 * p is at least 6 bytes before the end of page
524 static inline struct ext3_dir_entry_2
*ext3_next_entry(struct ext3_dir_entry_2
*p
)
526 return (struct ext3_dir_entry_2
*)((char*)p
+ le16_to_cpu(p
->rec_len
));
530 * This function fills a red-black tree with information from a
531 * directory block. It returns the number directory entries loaded
532 * into the tree. If there is an error it is returned in err.
534 static int htree_dirblock_to_tree(struct file
*dir_file
,
535 struct inode
*dir
, int block
,
536 struct dx_hash_info
*hinfo
,
537 __u32 start_hash
, __u32 start_minor_hash
)
539 struct buffer_head
*bh
;
540 struct ext3_dir_entry_2
*de
, *top
;
543 dxtrace(printk("In htree dirblock_to_tree: block %d\n", block
));
544 if (!(bh
= ext3_bread (NULL
, dir
, block
, 0, &err
)))
547 de
= (struct ext3_dir_entry_2
*) bh
->b_data
;
548 top
= (struct ext3_dir_entry_2
*) ((char *) de
+
549 dir
->i_sb
->s_blocksize
-
550 EXT3_DIR_REC_LEN(0));
551 for (; de
< top
; de
= ext3_next_entry(de
)) {
552 ext3fs_dirhash(de
->name
, de
->name_len
, hinfo
);
553 if ((hinfo
->hash
< start_hash
) ||
554 ((hinfo
->hash
== start_hash
) &&
555 (hinfo
->minor_hash
< start_minor_hash
)))
559 if ((err
= ext3_htree_store_dirent(dir_file
,
560 hinfo
->hash
, hinfo
->minor_hash
, de
)) != 0) {
572 * This function fills a red-black tree with information from a
573 * directory. We start scanning the directory in hash order, starting
574 * at start_hash and start_minor_hash.
576 * This function returns the number of entries inserted into the tree,
577 * or a negative error code.
579 int ext3_htree_fill_tree(struct file
*dir_file
, __u32 start_hash
,
580 __u32 start_minor_hash
, __u32
*next_hash
)
582 struct dx_hash_info hinfo
;
583 struct ext3_dir_entry_2
*de
;
584 struct dx_frame frames
[2], *frame
;
591 dxtrace(printk("In htree_fill_tree, start hash: %x:%x\n", start_hash
,
593 dir
= dir_file
->f_dentry
->d_inode
;
594 if (!(EXT3_I(dir
)->i_flags
& EXT3_INDEX_FL
)) {
595 hinfo
.hash_version
= EXT3_SB(dir
->i_sb
)->s_def_hash_version
;
596 hinfo
.seed
= EXT3_SB(dir
->i_sb
)->s_hash_seed
;
597 count
= htree_dirblock_to_tree(dir_file
, dir
, 0, &hinfo
,
598 start_hash
, start_minor_hash
);
602 hinfo
.hash
= start_hash
;
603 hinfo
.minor_hash
= 0;
604 frame
= dx_probe(NULL
, dir_file
->f_dentry
->d_inode
, &hinfo
, frames
, &err
);
608 /* Add '.' and '..' from the htree header */
609 if (!start_hash
&& !start_minor_hash
) {
610 de
= (struct ext3_dir_entry_2
*) frames
[0].bh
->b_data
;
611 if ((err
= ext3_htree_store_dirent(dir_file
, 0, 0, de
)) != 0)
615 if (start_hash
< 2 || (start_hash
==2 && start_minor_hash
==0)) {
616 de
= (struct ext3_dir_entry_2
*) frames
[0].bh
->b_data
;
617 de
= ext3_next_entry(de
);
618 if ((err
= ext3_htree_store_dirent(dir_file
, 2, 0, de
)) != 0)
624 block
= dx_get_block(frame
->at
);
625 ret
= htree_dirblock_to_tree(dir_file
, dir
, block
, &hinfo
,
626 start_hash
, start_minor_hash
);
633 ret
= ext3_htree_next_block(dir
, HASH_NB_ALWAYS
,
634 frame
, frames
, &hashval
);
635 *next_hash
= hashval
;
641 * Stop if: (a) there are no more entries, or
642 * (b) we have inserted at least one entry and the
643 * next hash value is not a continuation
646 (count
&& ((hashval
& 1) == 0)))
650 dxtrace(printk("Fill tree: returned %d entries, next hash: %x\n",
660 * Directory block splitting, compacting
663 static int dx_make_map (struct ext3_dir_entry_2
*de
, int size
,
664 struct dx_hash_info
*hinfo
, struct dx_map_entry
*map_tail
)
667 char *base
= (char *) de
;
668 struct dx_hash_info h
= *hinfo
;
670 while ((char *) de
< base
+ size
)
672 if (de
->name_len
&& de
->inode
) {
673 ext3fs_dirhash(de
->name
, de
->name_len
, &h
);
675 map_tail
->hash
= h
.hash
;
676 map_tail
->offs
= (u32
) ((char *) de
- base
);
680 /* XXX: do we need to check rec_len == 0 case? -Chris */
681 de
= (struct ext3_dir_entry_2
*) ((char *) de
+ le16_to_cpu(de
->rec_len
));
686 static void dx_sort_map (struct dx_map_entry
*map
, unsigned count
)
688 struct dx_map_entry
*p
, *q
, *top
= map
+ count
- 1;
690 /* Combsort until bubble sort doesn't suck */
694 if (count
- 9 < 2) /* 9, 10 -> 11 */
696 for (p
= top
, q
= p
- count
; q
>= map
; p
--, q
--)
697 if (p
->hash
< q
->hash
)
700 /* Garden variety bubble sort */
706 if (q
[1].hash
>= q
[0].hash
)
714 static void dx_insert_block(struct dx_frame
*frame
, u32 hash
, u32 block
)
716 struct dx_entry
*entries
= frame
->entries
;
717 struct dx_entry
*old
= frame
->at
, *new = old
+ 1;
718 int count
= dx_get_count(entries
);
720 assert(count
< dx_get_limit(entries
));
721 assert(old
< entries
+ count
);
722 memmove(new + 1, new, (char *)(entries
+ count
) - (char *)(new));
723 dx_set_hash(new, hash
);
724 dx_set_block(new, block
);
725 dx_set_count(entries
, count
+ 1);
730 static void ext3_update_dx_flag(struct inode
*inode
)
732 if (!EXT3_HAS_COMPAT_FEATURE(inode
->i_sb
,
733 EXT3_FEATURE_COMPAT_DIR_INDEX
))
734 EXT3_I(inode
)->i_flags
&= ~EXT3_INDEX_FL
;
738 * NOTE! unlike strncmp, ext3_match returns 1 for success, 0 for failure.
740 * `len <= EXT3_NAME_LEN' is guaranteed by caller.
741 * `de != NULL' is guaranteed by caller.
743 static inline int ext3_match (int len
, const char * const name
,
744 struct ext3_dir_entry_2
* de
)
746 if (len
!= de
->name_len
)
750 return !memcmp(name
, de
->name
, len
);
754 * Returns 0 if not found, -1 on failure, and 1 on success
756 static inline int search_dirblock(struct buffer_head
* bh
,
758 struct dentry
*dentry
,
759 unsigned long offset
,
760 struct ext3_dir_entry_2
** res_dir
)
762 struct ext3_dir_entry_2
* de
;
765 const char *name
= dentry
->d_name
.name
;
766 int namelen
= dentry
->d_name
.len
;
768 de
= (struct ext3_dir_entry_2
*) bh
->b_data
;
769 dlimit
= bh
->b_data
+ dir
->i_sb
->s_blocksize
;
770 while ((char *) de
< dlimit
) {
771 /* this code is executed quadratically often */
772 /* do minimal checking `by hand' */
774 if ((char *) de
+ namelen
<= dlimit
&&
775 ext3_match (namelen
, name
, de
)) {
776 /* found a match - just to be sure, do a full check */
777 if (!ext3_check_dir_entry("ext3_find_entry",
778 dir
, de
, bh
, offset
))
783 /* prevent looping on a bad block */
784 de_len
= le16_to_cpu(de
->rec_len
);
788 de
= (struct ext3_dir_entry_2
*) ((char *) de
+ de_len
);
797 * finds an entry in the specified directory with the wanted name. It
798 * returns the cache buffer in which the entry was found, and the entry
799 * itself (as a parameter - res_dir). It does NOT read the inode of the
800 * entry - you'll have to do that yourself if you want to.
802 * The returned buffer_head has ->b_count elevated. The caller is expected
803 * to brelse() it when appropriate.
805 static struct buffer_head
* ext3_find_entry (struct dentry
*dentry
,
806 struct ext3_dir_entry_2
** res_dir
)
808 struct super_block
* sb
;
809 struct buffer_head
* bh_use
[NAMEI_RA_SIZE
];
810 struct buffer_head
* bh
, *ret
= NULL
;
811 unsigned long start
, block
, b
;
812 int ra_max
= 0; /* Number of bh's in the readahead
814 int ra_ptr
= 0; /* Current index into readahead
818 struct inode
*dir
= dentry
->d_parent
->d_inode
;
825 blocksize
= sb
->s_blocksize
;
826 namelen
= dentry
->d_name
.len
;
827 name
= dentry
->d_name
.name
;
828 if (namelen
> EXT3_NAME_LEN
)
830 #ifdef CONFIG_EXT3_INDEX
832 bh
= ext3_dx_find_entry(dentry
, res_dir
, &err
);
834 * On success, or if the error was file not found,
835 * return. Otherwise, fall back to doing a search the
838 if (bh
|| (err
!= ERR_BAD_DX_DIR
))
840 dxtrace(printk("ext3_find_entry: dx failed, falling back\n"));
843 nblocks
= dir
->i_size
>> EXT3_BLOCK_SIZE_BITS(sb
);
844 start
= EXT3_I(dir
)->i_dir_start_lookup
;
845 if (start
>= nblocks
)
851 * We deal with the read-ahead logic here.
853 if (ra_ptr
>= ra_max
) {
854 /* Refill the readahead buffer */
857 for (ra_max
= 0; ra_max
< NAMEI_RA_SIZE
; ra_max
++) {
859 * Terminate if we reach the end of the
860 * directory and must wrap, or if our
861 * search has finished at this block.
863 if (b
>= nblocks
|| (num
&& block
== start
)) {
864 bh_use
[ra_max
] = NULL
;
868 bh
= ext3_getblk(NULL
, dir
, b
++, 0, &err
);
871 ll_rw_block(READ
, 1, &bh
);
874 if ((bh
= bh_use
[ra_ptr
++]) == NULL
)
877 if (!buffer_uptodate(bh
)) {
878 /* read error, skip block & hope for the best */
879 ext3_error(sb
, __FUNCTION__
, "reading directory #%lu "
880 "offset %lu", dir
->i_ino
, block
);
884 i
= search_dirblock(bh
, dir
, dentry
,
885 block
<< EXT3_BLOCK_SIZE_BITS(sb
), res_dir
);
887 EXT3_I(dir
)->i_dir_start_lookup
= block
;
889 goto cleanup_and_exit
;
893 goto cleanup_and_exit
;
896 if (++block
>= nblocks
)
898 } while (block
!= start
);
901 * If the directory has grown while we were searching, then
902 * search the last part of the directory before giving up.
905 nblocks
= dir
->i_size
>> EXT3_BLOCK_SIZE_BITS(sb
);
906 if (block
< nblocks
) {
912 /* Clean up the read-ahead blocks */
913 for (; ra_ptr
< ra_max
; ra_ptr
++)
914 brelse (bh_use
[ra_ptr
]);
918 #ifdef CONFIG_EXT3_INDEX
919 static struct buffer_head
* ext3_dx_find_entry(struct dentry
*dentry
,
920 struct ext3_dir_entry_2
**res_dir
, int *err
)
922 struct super_block
* sb
;
923 struct dx_hash_info hinfo
;
925 struct dx_frame frames
[2], *frame
;
926 struct ext3_dir_entry_2
*de
, *top
;
927 struct buffer_head
*bh
;
930 int namelen
= dentry
->d_name
.len
;
931 const u8
*name
= dentry
->d_name
.name
;
932 struct inode
*dir
= dentry
->d_parent
->d_inode
;
935 if (!(frame
= dx_probe(dentry
, NULL
, &hinfo
, frames
, err
)))
939 block
= dx_get_block(frame
->at
);
940 if (!(bh
= ext3_bread (NULL
,dir
, block
, 0, err
)))
942 de
= (struct ext3_dir_entry_2
*) bh
->b_data
;
943 top
= (struct ext3_dir_entry_2
*) ((char *) de
+ sb
->s_blocksize
-
944 EXT3_DIR_REC_LEN(0));
945 for (; de
< top
; de
= ext3_next_entry(de
))
946 if (ext3_match (namelen
, name
, de
)) {
947 if (!ext3_check_dir_entry("ext3_find_entry",
949 (block
<<EXT3_BLOCK_SIZE_BITS(sb
))
950 +((char *)de
- bh
->b_data
))) {
959 /* Check to see if we should continue to search */
960 retval
= ext3_htree_next_block(dir
, hash
, frame
,
963 ext3_warning(sb
, __FUNCTION__
,
964 "error reading index page in directory #%lu",
969 } while (retval
== 1);
973 dxtrace(printk("%s not found\n", name
));
979 static struct dentry
*ext3_lookup(struct inode
* dir
, struct dentry
*dentry
, struct nameidata
*nd
)
981 struct inode
* inode
;
982 struct ext3_dir_entry_2
* de
;
983 struct buffer_head
* bh
;
985 if (dentry
->d_name
.len
> EXT3_NAME_LEN
)
986 return ERR_PTR(-ENAMETOOLONG
);
988 bh
= ext3_find_entry(dentry
, &de
);
991 unsigned long ino
= le32_to_cpu(de
->inode
);
993 inode
= iget(dir
->i_sb
, ino
);
996 return ERR_PTR(-EACCES
);
999 return d_splice_alias(inode
, dentry
);
1000 d_add(dentry
, inode
);
1005 struct dentry
*ext3_get_parent(struct dentry
*child
)
1008 struct dentry
*parent
;
1009 struct inode
*inode
;
1010 struct dentry dotdot
;
1011 struct ext3_dir_entry_2
* de
;
1012 struct buffer_head
*bh
;
1014 dotdot
.d_name
.name
= "..";
1015 dotdot
.d_name
.len
= 2;
1016 dotdot
.d_parent
= child
; /* confusing, isn't it! */
1018 bh
= ext3_find_entry(&dotdot
, &de
);
1021 return ERR_PTR(-ENOENT
);
1022 ino
= le32_to_cpu(de
->inode
);
1024 inode
= iget(child
->d_inode
->i_sb
, ino
);
1027 return ERR_PTR(-EACCES
);
1029 parent
= d_alloc_anon(inode
);
1032 parent
= ERR_PTR(-ENOMEM
);
1038 static unsigned char ext3_type_by_mode
[S_IFMT
>> S_SHIFT
] = {
1039 [S_IFREG
>> S_SHIFT
] = EXT3_FT_REG_FILE
,
1040 [S_IFDIR
>> S_SHIFT
] = EXT3_FT_DIR
,
1041 [S_IFCHR
>> S_SHIFT
] = EXT3_FT_CHRDEV
,
1042 [S_IFBLK
>> S_SHIFT
] = EXT3_FT_BLKDEV
,
1043 [S_IFIFO
>> S_SHIFT
] = EXT3_FT_FIFO
,
1044 [S_IFSOCK
>> S_SHIFT
] = EXT3_FT_SOCK
,
1045 [S_IFLNK
>> S_SHIFT
] = EXT3_FT_SYMLINK
,
1048 static inline void ext3_set_de_type(struct super_block
*sb
,
1049 struct ext3_dir_entry_2
*de
,
1051 if (EXT3_HAS_INCOMPAT_FEATURE(sb
, EXT3_FEATURE_INCOMPAT_FILETYPE
))
1052 de
->file_type
= ext3_type_by_mode
[(mode
& S_IFMT
)>>S_SHIFT
];
1055 #ifdef CONFIG_EXT3_INDEX
1056 static struct ext3_dir_entry_2
*
1057 dx_move_dirents(char *from
, char *to
, struct dx_map_entry
*map
, int count
)
1059 unsigned rec_len
= 0;
1062 struct ext3_dir_entry_2
*de
= (struct ext3_dir_entry_2
*) (from
+ map
->offs
);
1063 rec_len
= EXT3_DIR_REC_LEN(de
->name_len
);
1064 memcpy (to
, de
, rec_len
);
1065 ((struct ext3_dir_entry_2
*) to
)->rec_len
=
1066 cpu_to_le16(rec_len
);
1071 return (struct ext3_dir_entry_2
*) (to
- rec_len
);
1074 static struct ext3_dir_entry_2
* dx_pack_dirents(char *base
, int size
)
1076 struct ext3_dir_entry_2
*next
, *to
, *prev
, *de
= (struct ext3_dir_entry_2
*) base
;
1077 unsigned rec_len
= 0;
1080 while ((char*)de
< base
+ size
) {
1081 next
= (struct ext3_dir_entry_2
*) ((char *) de
+
1082 le16_to_cpu(de
->rec_len
));
1083 if (de
->inode
&& de
->name_len
) {
1084 rec_len
= EXT3_DIR_REC_LEN(de
->name_len
);
1086 memmove(to
, de
, rec_len
);
1087 to
->rec_len
= cpu_to_le16(rec_len
);
1089 to
= (struct ext3_dir_entry_2
*) (((char *) to
) + rec_len
);
1096 static struct ext3_dir_entry_2
*do_split(handle_t
*handle
, struct inode
*dir
,
1097 struct buffer_head
**bh
,struct dx_frame
*frame
,
1098 struct dx_hash_info
*hinfo
, int *error
)
1100 unsigned blocksize
= dir
->i_sb
->s_blocksize
;
1101 unsigned count
, continued
;
1102 struct buffer_head
*bh2
;
1105 struct dx_map_entry
*map
;
1106 char *data1
= (*bh
)->b_data
, *data2
;
1108 struct ext3_dir_entry_2
*de
= NULL
, *de2
;
1111 bh2
= ext3_append (handle
, dir
, &newblock
, error
);
1118 BUFFER_TRACE(*bh
, "get_write_access");
1119 err
= ext3_journal_get_write_access(handle
, *bh
);
1125 ext3_std_error(dir
->i_sb
, err
);
1128 BUFFER_TRACE(frame
->bh
, "get_write_access");
1129 err
= ext3_journal_get_write_access(handle
, frame
->bh
);
1133 data2
= bh2
->b_data
;
1135 /* create map in the end of data2 block */
1136 map
= (struct dx_map_entry
*) (data2
+ blocksize
);
1137 count
= dx_make_map ((struct ext3_dir_entry_2
*) data1
,
1138 blocksize
, hinfo
, map
);
1140 split
= count
/2; // need to adjust to actual middle
1141 dx_sort_map (map
, count
);
1142 hash2
= map
[split
].hash
;
1143 continued
= hash2
== map
[split
- 1].hash
;
1144 dxtrace(printk("Split block %i at %x, %i/%i\n",
1145 dx_get_block(frame
->at
), hash2
, split
, count
-split
));
1147 /* Fancy dance to stay within two buffers */
1148 de2
= dx_move_dirents(data1
, data2
, map
+ split
, count
- split
);
1149 de
= dx_pack_dirents(data1
,blocksize
);
1150 de
->rec_len
= cpu_to_le16(data1
+ blocksize
- (char *) de
);
1151 de2
->rec_len
= cpu_to_le16(data2
+ blocksize
- (char *) de2
);
1152 dxtrace(dx_show_leaf (hinfo
, (struct ext3_dir_entry_2
*) data1
, blocksize
, 1));
1153 dxtrace(dx_show_leaf (hinfo
, (struct ext3_dir_entry_2
*) data2
, blocksize
, 1));
1155 /* Which block gets the new entry? */
1156 if (hinfo
->hash
>= hash2
)
1161 dx_insert_block (frame
, hash2
+ continued
, newblock
);
1162 err
= ext3_journal_dirty_metadata (handle
, bh2
);
1165 err
= ext3_journal_dirty_metadata (handle
, frame
->bh
);
1169 dxtrace(dx_show_index ("frame", frame
->entries
));
1177 * Add a new entry into a directory (leaf) block. If de is non-NULL,
1178 * it points to a directory entry which is guaranteed to be large
1179 * enough for new directory entry. If de is NULL, then
1180 * add_dirent_to_buf will attempt search the directory block for
1181 * space. It will return -ENOSPC if no space is available, and -EIO
1182 * and -EEXIST if directory entry already exists.
1184 * NOTE! bh is NOT released in the case where ENOSPC is returned. In
1185 * all other cases bh is released.
1187 static int add_dirent_to_buf(handle_t
*handle
, struct dentry
*dentry
,
1188 struct inode
*inode
, struct ext3_dir_entry_2
*de
,
1189 struct buffer_head
* bh
)
1191 struct inode
*dir
= dentry
->d_parent
->d_inode
;
1192 const char *name
= dentry
->d_name
.name
;
1193 int namelen
= dentry
->d_name
.len
;
1194 unsigned long offset
= 0;
1195 unsigned short reclen
;
1196 int nlen
, rlen
, err
;
1199 reclen
= EXT3_DIR_REC_LEN(namelen
);
1201 de
= (struct ext3_dir_entry_2
*)bh
->b_data
;
1202 top
= bh
->b_data
+ dir
->i_sb
->s_blocksize
- reclen
;
1203 while ((char *) de
<= top
) {
1204 if (!ext3_check_dir_entry("ext3_add_entry", dir
, de
,
1209 if (ext3_match (namelen
, name
, de
)) {
1213 nlen
= EXT3_DIR_REC_LEN(de
->name_len
);
1214 rlen
= le16_to_cpu(de
->rec_len
);
1215 if ((de
->inode
? rlen
- nlen
: rlen
) >= reclen
)
1217 de
= (struct ext3_dir_entry_2
*)((char *)de
+ rlen
);
1220 if ((char *) de
> top
)
1223 BUFFER_TRACE(bh
, "get_write_access");
1224 err
= ext3_journal_get_write_access(handle
, bh
);
1226 ext3_std_error(dir
->i_sb
, err
);
1231 /* By now the buffer is marked for journaling */
1232 nlen
= EXT3_DIR_REC_LEN(de
->name_len
);
1233 rlen
= le16_to_cpu(de
->rec_len
);
1235 struct ext3_dir_entry_2
*de1
= (struct ext3_dir_entry_2
*)((char *)de
+ nlen
);
1236 de1
->rec_len
= cpu_to_le16(rlen
- nlen
);
1237 de
->rec_len
= cpu_to_le16(nlen
);
1240 de
->file_type
= EXT3_FT_UNKNOWN
;
1242 de
->inode
= cpu_to_le32(inode
->i_ino
);
1243 ext3_set_de_type(dir
->i_sb
, de
, inode
->i_mode
);
1246 de
->name_len
= namelen
;
1247 memcpy (de
->name
, name
, namelen
);
1249 * XXX shouldn't update any times until successful
1250 * completion of syscall, but too many callers depend
1253 * XXX similarly, too many callers depend on
1254 * ext3_new_inode() setting the times, but error
1255 * recovery deletes the inode, so the worst that can
1256 * happen is that the times are slightly out of date
1257 * and/or different from the directory change time.
1259 dir
->i_mtime
= dir
->i_ctime
= CURRENT_TIME_SEC
;
1260 ext3_update_dx_flag(dir
);
1262 ext3_mark_inode_dirty(handle
, dir
);
1263 BUFFER_TRACE(bh
, "call ext3_journal_dirty_metadata");
1264 err
= ext3_journal_dirty_metadata(handle
, bh
);
1266 ext3_std_error(dir
->i_sb
, err
);
1271 #ifdef CONFIG_EXT3_INDEX
1273 * This converts a one block unindexed directory to a 3 block indexed
1274 * directory, and adds the dentry to the indexed directory.
1276 static int make_indexed_dir(handle_t
*handle
, struct dentry
*dentry
,
1277 struct inode
*inode
, struct buffer_head
*bh
)
1279 struct inode
*dir
= dentry
->d_parent
->d_inode
;
1280 const char *name
= dentry
->d_name
.name
;
1281 int namelen
= dentry
->d_name
.len
;
1282 struct buffer_head
*bh2
;
1283 struct dx_root
*root
;
1284 struct dx_frame frames
[2], *frame
;
1285 struct dx_entry
*entries
;
1286 struct ext3_dir_entry_2
*de
, *de2
;
1291 struct dx_hash_info hinfo
;
1293 struct fake_dirent
*fde
;
1295 blocksize
= dir
->i_sb
->s_blocksize
;
1296 dxtrace(printk("Creating index\n"));
1297 retval
= ext3_journal_get_write_access(handle
, bh
);
1299 ext3_std_error(dir
->i_sb
, retval
);
1303 root
= (struct dx_root
*) bh
->b_data
;
1305 bh2
= ext3_append (handle
, dir
, &block
, &retval
);
1310 EXT3_I(dir
)->i_flags
|= EXT3_INDEX_FL
;
1311 data1
= bh2
->b_data
;
1313 /* The 0th block becomes the root, move the dirents out */
1314 fde
= &root
->dotdot
;
1315 de
= (struct ext3_dir_entry_2
*)((char *)fde
+ le16_to_cpu(fde
->rec_len
));
1316 len
= ((char *) root
) + blocksize
- (char *) de
;
1317 memcpy (data1
, de
, len
);
1318 de
= (struct ext3_dir_entry_2
*) data1
;
1320 while ((char *)(de2
=(void*)de
+le16_to_cpu(de
->rec_len
)) < top
)
1322 de
->rec_len
= cpu_to_le16(data1
+ blocksize
- (char *) de
);
1323 /* Initialize the root; the dot dirents already exist */
1324 de
= (struct ext3_dir_entry_2
*) (&root
->dotdot
);
1325 de
->rec_len
= cpu_to_le16(blocksize
- EXT3_DIR_REC_LEN(2));
1326 memset (&root
->info
, 0, sizeof(root
->info
));
1327 root
->info
.info_length
= sizeof(root
->info
);
1328 root
->info
.hash_version
= EXT3_SB(dir
->i_sb
)->s_def_hash_version
;
1329 entries
= root
->entries
;
1330 dx_set_block (entries
, 1);
1331 dx_set_count (entries
, 1);
1332 dx_set_limit (entries
, dx_root_limit(dir
, sizeof(root
->info
)));
1334 /* Initialize as for dx_probe */
1335 hinfo
.hash_version
= root
->info
.hash_version
;
1336 hinfo
.seed
= EXT3_SB(dir
->i_sb
)->s_hash_seed
;
1337 ext3fs_dirhash(name
, namelen
, &hinfo
);
1339 frame
->entries
= entries
;
1340 frame
->at
= entries
;
1343 de
= do_split(handle
,dir
, &bh
, frame
, &hinfo
, &retval
);
1344 dx_release (frames
);
1348 return add_dirent_to_buf(handle
, dentry
, inode
, de
, bh
);
1355 * adds a file entry to the specified directory, using the same
1356 * semantics as ext3_find_entry(). It returns NULL if it failed.
1358 * NOTE!! The inode part of 'de' is left at 0 - which means you
1359 * may not sleep between calling this and putting something into
1360 * the entry, as someone else might have used it while you slept.
1362 static int ext3_add_entry (handle_t
*handle
, struct dentry
*dentry
,
1363 struct inode
*inode
)
1365 struct inode
*dir
= dentry
->d_parent
->d_inode
;
1366 unsigned long offset
;
1367 struct buffer_head
* bh
;
1368 struct ext3_dir_entry_2
*de
;
1369 struct super_block
* sb
;
1371 #ifdef CONFIG_EXT3_INDEX
1375 unsigned nlen
, rlen
;
1379 blocksize
= sb
->s_blocksize
;
1380 if (!dentry
->d_name
.len
)
1382 #ifdef CONFIG_EXT3_INDEX
1384 retval
= ext3_dx_add_entry(handle
, dentry
, inode
);
1385 if (!retval
|| (retval
!= ERR_BAD_DX_DIR
))
1387 EXT3_I(dir
)->i_flags
&= ~EXT3_INDEX_FL
;
1389 ext3_mark_inode_dirty(handle
, dir
);
1392 blocks
= dir
->i_size
>> sb
->s_blocksize_bits
;
1393 for (block
= 0, offset
= 0; block
< blocks
; block
++) {
1394 bh
= ext3_bread(handle
, dir
, block
, 0, &retval
);
1397 retval
= add_dirent_to_buf(handle
, dentry
, inode
, NULL
, bh
);
1398 if (retval
!= -ENOSPC
)
1401 #ifdef CONFIG_EXT3_INDEX
1402 if (blocks
== 1 && !dx_fallback
&&
1403 EXT3_HAS_COMPAT_FEATURE(sb
, EXT3_FEATURE_COMPAT_DIR_INDEX
))
1404 return make_indexed_dir(handle
, dentry
, inode
, bh
);
1408 bh
= ext3_append(handle
, dir
, &block
, &retval
);
1411 de
= (struct ext3_dir_entry_2
*) bh
->b_data
;
1413 de
->rec_len
= cpu_to_le16(rlen
= blocksize
);
1415 return add_dirent_to_buf(handle
, dentry
, inode
, de
, bh
);
1418 #ifdef CONFIG_EXT3_INDEX
1420 * Returns 0 for success, or a negative error value
1422 static int ext3_dx_add_entry(handle_t
*handle
, struct dentry
*dentry
,
1423 struct inode
*inode
)
1425 struct dx_frame frames
[2], *frame
;
1426 struct dx_entry
*entries
, *at
;
1427 struct dx_hash_info hinfo
;
1428 struct buffer_head
* bh
;
1429 struct inode
*dir
= dentry
->d_parent
->d_inode
;
1430 struct super_block
* sb
= dir
->i_sb
;
1431 struct ext3_dir_entry_2
*de
;
1434 frame
= dx_probe(dentry
, NULL
, &hinfo
, frames
, &err
);
1437 entries
= frame
->entries
;
1440 if (!(bh
= ext3_bread(handle
,dir
, dx_get_block(frame
->at
), 0, &err
)))
1443 BUFFER_TRACE(bh
, "get_write_access");
1444 err
= ext3_journal_get_write_access(handle
, bh
);
1448 err
= add_dirent_to_buf(handle
, dentry
, inode
, NULL
, bh
);
1449 if (err
!= -ENOSPC
) {
1454 /* Block full, should compress but for now just split */
1455 dxtrace(printk("using %u of %u node entries\n",
1456 dx_get_count(entries
), dx_get_limit(entries
)));
1457 /* Need to split index? */
1458 if (dx_get_count(entries
) == dx_get_limit(entries
)) {
1460 unsigned icount
= dx_get_count(entries
);
1461 int levels
= frame
- frames
;
1462 struct dx_entry
*entries2
;
1463 struct dx_node
*node2
;
1464 struct buffer_head
*bh2
;
1466 if (levels
&& (dx_get_count(frames
->entries
) ==
1467 dx_get_limit(frames
->entries
))) {
1468 ext3_warning(sb
, __FUNCTION__
,
1469 "Directory index full!\n");
1473 bh2
= ext3_append (handle
, dir
, &newblock
, &err
);
1476 node2
= (struct dx_node
*)(bh2
->b_data
);
1477 entries2
= node2
->entries
;
1478 node2
->fake
.rec_len
= cpu_to_le16(sb
->s_blocksize
);
1479 node2
->fake
.inode
= 0;
1480 BUFFER_TRACE(frame
->bh
, "get_write_access");
1481 err
= ext3_journal_get_write_access(handle
, frame
->bh
);
1485 unsigned icount1
= icount
/2, icount2
= icount
- icount1
;
1486 unsigned hash2
= dx_get_hash(entries
+ icount1
);
1487 dxtrace(printk("Split index %i/%i\n", icount1
, icount2
));
1489 BUFFER_TRACE(frame
->bh
, "get_write_access"); /* index root */
1490 err
= ext3_journal_get_write_access(handle
,
1495 memcpy ((char *) entries2
, (char *) (entries
+ icount1
),
1496 icount2
* sizeof(struct dx_entry
));
1497 dx_set_count (entries
, icount1
);
1498 dx_set_count (entries2
, icount2
);
1499 dx_set_limit (entries2
, dx_node_limit(dir
));
1501 /* Which index block gets the new entry? */
1502 if (at
- entries
>= icount1
) {
1503 frame
->at
= at
= at
- entries
- icount1
+ entries2
;
1504 frame
->entries
= entries
= entries2
;
1505 swap(frame
->bh
, bh2
);
1507 dx_insert_block (frames
+ 0, hash2
, newblock
);
1508 dxtrace(dx_show_index ("node", frames
[1].entries
));
1509 dxtrace(dx_show_index ("node",
1510 ((struct dx_node
*) bh2
->b_data
)->entries
));
1511 err
= ext3_journal_dirty_metadata(handle
, bh2
);
1516 dxtrace(printk("Creating second level index...\n"));
1517 memcpy((char *) entries2
, (char *) entries
,
1518 icount
* sizeof(struct dx_entry
));
1519 dx_set_limit(entries2
, dx_node_limit(dir
));
1522 dx_set_count(entries
, 1);
1523 dx_set_block(entries
+ 0, newblock
);
1524 ((struct dx_root
*) frames
[0].bh
->b_data
)->info
.indirect_levels
= 1;
1526 /* Add new access path frame */
1528 frame
->at
= at
= at
- entries
+ entries2
;
1529 frame
->entries
= entries
= entries2
;
1531 err
= ext3_journal_get_write_access(handle
,
1536 ext3_journal_dirty_metadata(handle
, frames
[0].bh
);
1538 de
= do_split(handle
, dir
, &bh
, frame
, &hinfo
, &err
);
1541 err
= add_dirent_to_buf(handle
, dentry
, inode
, de
, bh
);
1546 ext3_std_error(dir
->i_sb
, err
);
1556 * ext3_delete_entry deletes a directory entry by merging it with the
1559 static int ext3_delete_entry (handle_t
*handle
,
1561 struct ext3_dir_entry_2
* de_del
,
1562 struct buffer_head
* bh
)
1564 struct ext3_dir_entry_2
* de
, * pde
;
1569 de
= (struct ext3_dir_entry_2
*) bh
->b_data
;
1570 while (i
< bh
->b_size
) {
1571 if (!ext3_check_dir_entry("ext3_delete_entry", dir
, de
, bh
, i
))
1574 BUFFER_TRACE(bh
, "get_write_access");
1575 ext3_journal_get_write_access(handle
, bh
);
1578 cpu_to_le16(le16_to_cpu(pde
->rec_len
) +
1579 le16_to_cpu(de
->rec_len
));
1583 BUFFER_TRACE(bh
, "call ext3_journal_dirty_metadata");
1584 ext3_journal_dirty_metadata(handle
, bh
);
1587 i
+= le16_to_cpu(de
->rec_len
);
1589 de
= (struct ext3_dir_entry_2
*)
1590 ((char *) de
+ le16_to_cpu(de
->rec_len
));
1596 * ext3_mark_inode_dirty is somewhat expensive, so unlike ext2 we
1597 * do not perform it in these functions. We perform it at the call site,
1600 static inline void ext3_inc_count(handle_t
*handle
, struct inode
*inode
)
1605 static inline void ext3_dec_count(handle_t
*handle
, struct inode
*inode
)
1610 static int ext3_add_nondir(handle_t
*handle
,
1611 struct dentry
*dentry
, struct inode
*inode
)
1613 int err
= ext3_add_entry(handle
, dentry
, inode
);
1615 ext3_mark_inode_dirty(handle
, inode
);
1616 d_instantiate(dentry
, inode
);
1619 ext3_dec_count(handle
, inode
);
1625 * By the time this is called, we already have created
1626 * the directory cache entry for the new file, but it
1627 * is so far negative - it has no inode.
1629 * If the create succeeds, we fill in the inode information
1630 * with d_instantiate().
1632 static int ext3_create (struct inode
* dir
, struct dentry
* dentry
, int mode
,
1633 struct nameidata
*nd
)
1636 struct inode
* inode
;
1637 int err
, retries
= 0;
1640 handle
= ext3_journal_start(dir
, EXT3_DATA_TRANS_BLOCKS
+
1641 EXT3_INDEX_EXTRA_TRANS_BLOCKS
+ 3 +
1642 2*EXT3_QUOTA_INIT_BLOCKS
);
1644 return PTR_ERR(handle
);
1646 if (IS_DIRSYNC(dir
))
1649 inode
= ext3_new_inode (handle
, dir
, mode
);
1650 err
= PTR_ERR(inode
);
1651 if (!IS_ERR(inode
)) {
1652 inode
->i_op
= &ext3_file_inode_operations
;
1653 inode
->i_fop
= &ext3_file_operations
;
1654 ext3_set_aops(inode
);
1655 err
= ext3_add_nondir(handle
, dentry
, inode
);
1657 ext3_journal_stop(handle
);
1658 if (err
== -ENOSPC
&& ext3_should_retry_alloc(dir
->i_sb
, &retries
))
1663 static int ext3_mknod (struct inode
* dir
, struct dentry
*dentry
,
1664 int mode
, dev_t rdev
)
1667 struct inode
*inode
;
1668 int err
, retries
= 0;
1670 if (!new_valid_dev(rdev
))
1674 handle
= ext3_journal_start(dir
, EXT3_DATA_TRANS_BLOCKS
+
1675 EXT3_INDEX_EXTRA_TRANS_BLOCKS
+ 3 +
1676 2*EXT3_QUOTA_INIT_BLOCKS
);
1678 return PTR_ERR(handle
);
1680 if (IS_DIRSYNC(dir
))
1683 inode
= ext3_new_inode (handle
, dir
, mode
);
1684 err
= PTR_ERR(inode
);
1685 if (!IS_ERR(inode
)) {
1686 init_special_inode(inode
, inode
->i_mode
, rdev
);
1687 #ifdef CONFIG_EXT3_FS_XATTR
1688 inode
->i_op
= &ext3_special_inode_operations
;
1690 err
= ext3_add_nondir(handle
, dentry
, inode
);
1692 ext3_journal_stop(handle
);
1693 if (err
== -ENOSPC
&& ext3_should_retry_alloc(dir
->i_sb
, &retries
))
1698 static int ext3_mkdir(struct inode
* dir
, struct dentry
* dentry
, int mode
)
1701 struct inode
* inode
;
1702 struct buffer_head
* dir_block
;
1703 struct ext3_dir_entry_2
* de
;
1704 int err
, retries
= 0;
1706 if (dir
->i_nlink
>= EXT3_LINK_MAX
)
1710 handle
= ext3_journal_start(dir
, EXT3_DATA_TRANS_BLOCKS
+
1711 EXT3_INDEX_EXTRA_TRANS_BLOCKS
+ 3 +
1712 2*EXT3_QUOTA_INIT_BLOCKS
);
1714 return PTR_ERR(handle
);
1716 if (IS_DIRSYNC(dir
))
1719 inode
= ext3_new_inode (handle
, dir
, S_IFDIR
| mode
);
1720 err
= PTR_ERR(inode
);
1724 inode
->i_op
= &ext3_dir_inode_operations
;
1725 inode
->i_fop
= &ext3_dir_operations
;
1726 inode
->i_size
= EXT3_I(inode
)->i_disksize
= inode
->i_sb
->s_blocksize
;
1727 dir_block
= ext3_bread (handle
, inode
, 0, 1, &err
);
1729 inode
->i_nlink
--; /* is this nlink == 0? */
1730 ext3_mark_inode_dirty(handle
, inode
);
1734 BUFFER_TRACE(dir_block
, "get_write_access");
1735 ext3_journal_get_write_access(handle
, dir_block
);
1736 de
= (struct ext3_dir_entry_2
*) dir_block
->b_data
;
1737 de
->inode
= cpu_to_le32(inode
->i_ino
);
1739 de
->rec_len
= cpu_to_le16(EXT3_DIR_REC_LEN(de
->name_len
));
1740 strcpy (de
->name
, ".");
1741 ext3_set_de_type(dir
->i_sb
, de
, S_IFDIR
);
1742 de
= (struct ext3_dir_entry_2
*)
1743 ((char *) de
+ le16_to_cpu(de
->rec_len
));
1744 de
->inode
= cpu_to_le32(dir
->i_ino
);
1745 de
->rec_len
= cpu_to_le16(inode
->i_sb
->s_blocksize
-EXT3_DIR_REC_LEN(1));
1747 strcpy (de
->name
, "..");
1748 ext3_set_de_type(dir
->i_sb
, de
, S_IFDIR
);
1750 BUFFER_TRACE(dir_block
, "call ext3_journal_dirty_metadata");
1751 ext3_journal_dirty_metadata(handle
, dir_block
);
1753 ext3_mark_inode_dirty(handle
, inode
);
1754 err
= ext3_add_entry (handle
, dentry
, inode
);
1757 ext3_mark_inode_dirty(handle
, inode
);
1762 ext3_update_dx_flag(dir
);
1763 ext3_mark_inode_dirty(handle
, dir
);
1764 d_instantiate(dentry
, inode
);
1766 ext3_journal_stop(handle
);
1767 if (err
== -ENOSPC
&& ext3_should_retry_alloc(dir
->i_sb
, &retries
))
1773 * routine to check that the specified directory is empty (for rmdir)
1775 static int empty_dir (struct inode
* inode
)
1777 unsigned long offset
;
1778 struct buffer_head
* bh
;
1779 struct ext3_dir_entry_2
* de
, * de1
;
1780 struct super_block
* sb
;
1784 if (inode
->i_size
< EXT3_DIR_REC_LEN(1) + EXT3_DIR_REC_LEN(2) ||
1785 !(bh
= ext3_bread (NULL
, inode
, 0, 0, &err
))) {
1787 ext3_error(inode
->i_sb
, __FUNCTION__
,
1788 "error %d reading directory #%lu offset 0",
1791 ext3_warning(inode
->i_sb
, __FUNCTION__
,
1792 "bad directory (dir #%lu) - no data block",
1796 de
= (struct ext3_dir_entry_2
*) bh
->b_data
;
1797 de1
= (struct ext3_dir_entry_2
*)
1798 ((char *) de
+ le16_to_cpu(de
->rec_len
));
1799 if (le32_to_cpu(de
->inode
) != inode
->i_ino
||
1800 !le32_to_cpu(de1
->inode
) ||
1801 strcmp (".", de
->name
) ||
1802 strcmp ("..", de1
->name
)) {
1803 ext3_warning (inode
->i_sb
, "empty_dir",
1804 "bad directory (dir #%lu) - no `.' or `..'",
1809 offset
= le16_to_cpu(de
->rec_len
) + le16_to_cpu(de1
->rec_len
);
1810 de
= (struct ext3_dir_entry_2
*)
1811 ((char *) de1
+ le16_to_cpu(de1
->rec_len
));
1812 while (offset
< inode
->i_size
) {
1814 (void *) de
>= (void *) (bh
->b_data
+sb
->s_blocksize
)) {
1817 bh
= ext3_bread (NULL
, inode
,
1818 offset
>> EXT3_BLOCK_SIZE_BITS(sb
), 0, &err
);
1821 ext3_error(sb
, __FUNCTION__
,
1822 "error %d reading directory"
1824 err
, inode
->i_ino
, offset
);
1825 offset
+= sb
->s_blocksize
;
1828 de
= (struct ext3_dir_entry_2
*) bh
->b_data
;
1830 if (!ext3_check_dir_entry("empty_dir", inode
, de
, bh
, offset
)) {
1831 de
= (struct ext3_dir_entry_2
*)(bh
->b_data
+
1833 offset
= (offset
| (sb
->s_blocksize
- 1)) + 1;
1836 if (le32_to_cpu(de
->inode
)) {
1840 offset
+= le16_to_cpu(de
->rec_len
);
1841 de
= (struct ext3_dir_entry_2
*)
1842 ((char *) de
+ le16_to_cpu(de
->rec_len
));
1848 /* ext3_orphan_add() links an unlinked or truncated inode into a list of
1849 * such inodes, starting at the superblock, in case we crash before the
1850 * file is closed/deleted, or in case the inode truncate spans multiple
1851 * transactions and the last transaction is not recovered after a crash.
1853 * At filesystem recovery time, we walk this list deleting unlinked
1854 * inodes and truncating linked inodes in ext3_orphan_cleanup().
1856 int ext3_orphan_add(handle_t
*handle
, struct inode
*inode
)
1858 struct super_block
*sb
= inode
->i_sb
;
1859 struct ext3_iloc iloc
;
1863 if (!list_empty(&EXT3_I(inode
)->i_orphan
))
1866 /* Orphan handling is only valid for files with data blocks
1867 * being truncated, or files being unlinked. */
1869 /* @@@ FIXME: Observation from aviro:
1870 * I think I can trigger J_ASSERT in ext3_orphan_add(). We block
1871 * here (on lock_super()), so race with ext3_link() which might bump
1872 * ->i_nlink. For, say it, character device. Not a regular file,
1873 * not a directory, not a symlink and ->i_nlink > 0.
1875 J_ASSERT ((S_ISREG(inode
->i_mode
) || S_ISDIR(inode
->i_mode
) ||
1876 S_ISLNK(inode
->i_mode
)) || inode
->i_nlink
== 0);
1878 BUFFER_TRACE(EXT3_SB(sb
)->s_sbh
, "get_write_access");
1879 err
= ext3_journal_get_write_access(handle
, EXT3_SB(sb
)->s_sbh
);
1883 err
= ext3_reserve_inode_write(handle
, inode
, &iloc
);
1887 /* Insert this inode at the head of the on-disk orphan list... */
1888 NEXT_ORPHAN(inode
) = le32_to_cpu(EXT3_SB(sb
)->s_es
->s_last_orphan
);
1889 EXT3_SB(sb
)->s_es
->s_last_orphan
= cpu_to_le32(inode
->i_ino
);
1890 err
= ext3_journal_dirty_metadata(handle
, EXT3_SB(sb
)->s_sbh
);
1891 rc
= ext3_mark_iloc_dirty(handle
, inode
, &iloc
);
1895 /* Only add to the head of the in-memory list if all the
1896 * previous operations succeeded. If the orphan_add is going to
1897 * fail (possibly taking the journal offline), we can't risk
1898 * leaving the inode on the orphan list: stray orphan-list
1899 * entries can cause panics at unmount time.
1901 * This is safe: on error we're going to ignore the orphan list
1902 * anyway on the next recovery. */
1904 list_add(&EXT3_I(inode
)->i_orphan
, &EXT3_SB(sb
)->s_orphan
);
1906 jbd_debug(4, "superblock will point to %ld\n", inode
->i_ino
);
1907 jbd_debug(4, "orphan inode %ld will point to %d\n",
1908 inode
->i_ino
, NEXT_ORPHAN(inode
));
1911 ext3_std_error(inode
->i_sb
, err
);
1916 * ext3_orphan_del() removes an unlinked or truncated inode from the list
1917 * of such inodes stored on disk, because it is finally being cleaned up.
1919 int ext3_orphan_del(handle_t
*handle
, struct inode
*inode
)
1921 struct list_head
*prev
;
1922 struct ext3_inode_info
*ei
= EXT3_I(inode
);
1923 struct ext3_sb_info
*sbi
;
1924 unsigned long ino_next
;
1925 struct ext3_iloc iloc
;
1928 lock_super(inode
->i_sb
);
1929 if (list_empty(&ei
->i_orphan
)) {
1930 unlock_super(inode
->i_sb
);
1934 ino_next
= NEXT_ORPHAN(inode
);
1935 prev
= ei
->i_orphan
.prev
;
1936 sbi
= EXT3_SB(inode
->i_sb
);
1938 jbd_debug(4, "remove inode %lu from orphan list\n", inode
->i_ino
);
1940 list_del_init(&ei
->i_orphan
);
1942 /* If we're on an error path, we may not have a valid
1943 * transaction handle with which to update the orphan list on
1944 * disk, but we still need to remove the inode from the linked
1945 * list in memory. */
1949 err
= ext3_reserve_inode_write(handle
, inode
, &iloc
);
1953 if (prev
== &sbi
->s_orphan
) {
1954 jbd_debug(4, "superblock will point to %lu\n", ino_next
);
1955 BUFFER_TRACE(sbi
->s_sbh
, "get_write_access");
1956 err
= ext3_journal_get_write_access(handle
, sbi
->s_sbh
);
1959 sbi
->s_es
->s_last_orphan
= cpu_to_le32(ino_next
);
1960 err
= ext3_journal_dirty_metadata(handle
, sbi
->s_sbh
);
1962 struct ext3_iloc iloc2
;
1963 struct inode
*i_prev
=
1964 &list_entry(prev
, struct ext3_inode_info
, i_orphan
)->vfs_inode
;
1966 jbd_debug(4, "orphan inode %lu will point to %lu\n",
1967 i_prev
->i_ino
, ino_next
);
1968 err
= ext3_reserve_inode_write(handle
, i_prev
, &iloc2
);
1971 NEXT_ORPHAN(i_prev
) = ino_next
;
1972 err
= ext3_mark_iloc_dirty(handle
, i_prev
, &iloc2
);
1976 NEXT_ORPHAN(inode
) = 0;
1977 err
= ext3_mark_iloc_dirty(handle
, inode
, &iloc
);
1980 ext3_std_error(inode
->i_sb
, err
);
1982 unlock_super(inode
->i_sb
);
1990 static int ext3_rmdir (struct inode
* dir
, struct dentry
*dentry
)
1993 struct inode
* inode
;
1994 struct buffer_head
* bh
;
1995 struct ext3_dir_entry_2
* de
;
1998 /* Initialize quotas before so that eventual writes go in
1999 * separate transaction */
2000 DQUOT_INIT(dentry
->d_inode
);
2001 handle
= ext3_journal_start(dir
, EXT3_DELETE_TRANS_BLOCKS
);
2003 return PTR_ERR(handle
);
2006 bh
= ext3_find_entry (dentry
, &de
);
2010 if (IS_DIRSYNC(dir
))
2013 inode
= dentry
->d_inode
;
2016 if (le32_to_cpu(de
->inode
) != inode
->i_ino
)
2019 retval
= -ENOTEMPTY
;
2020 if (!empty_dir (inode
))
2023 retval
= ext3_delete_entry(handle
, dir
, de
, bh
);
2026 if (inode
->i_nlink
!= 2)
2027 ext3_warning (inode
->i_sb
, "ext3_rmdir",
2028 "empty directory has nlink!=2 (%d)",
2032 /* There's no need to set i_disksize: the fact that i_nlink is
2033 * zero will ensure that the right thing happens during any
2036 ext3_orphan_add(handle
, inode
);
2037 inode
->i_ctime
= dir
->i_ctime
= dir
->i_mtime
= CURRENT_TIME_SEC
;
2038 ext3_mark_inode_dirty(handle
, inode
);
2040 ext3_update_dx_flag(dir
);
2041 ext3_mark_inode_dirty(handle
, dir
);
2044 ext3_journal_stop(handle
);
2049 static int ext3_unlink(struct inode
* dir
, struct dentry
*dentry
)
2052 struct inode
* inode
;
2053 struct buffer_head
* bh
;
2054 struct ext3_dir_entry_2
* de
;
2057 /* Initialize quotas before so that eventual writes go
2058 * in separate transaction */
2059 DQUOT_INIT(dentry
->d_inode
);
2060 handle
= ext3_journal_start(dir
, EXT3_DELETE_TRANS_BLOCKS
);
2062 return PTR_ERR(handle
);
2064 if (IS_DIRSYNC(dir
))
2068 bh
= ext3_find_entry (dentry
, &de
);
2072 inode
= dentry
->d_inode
;
2075 if (le32_to_cpu(de
->inode
) != inode
->i_ino
)
2078 if (!inode
->i_nlink
) {
2079 ext3_warning (inode
->i_sb
, "ext3_unlink",
2080 "Deleting nonexistent file (%lu), %d",
2081 inode
->i_ino
, inode
->i_nlink
);
2084 retval
= ext3_delete_entry(handle
, dir
, de
, bh
);
2087 dir
->i_ctime
= dir
->i_mtime
= CURRENT_TIME_SEC
;
2088 ext3_update_dx_flag(dir
);
2089 ext3_mark_inode_dirty(handle
, dir
);
2091 if (!inode
->i_nlink
)
2092 ext3_orphan_add(handle
, inode
);
2093 inode
->i_ctime
= dir
->i_ctime
;
2094 ext3_mark_inode_dirty(handle
, inode
);
2098 ext3_journal_stop(handle
);
2103 static int ext3_symlink (struct inode
* dir
,
2104 struct dentry
*dentry
, const char * symname
)
2107 struct inode
* inode
;
2108 int l
, err
, retries
= 0;
2110 l
= strlen(symname
)+1;
2111 if (l
> dir
->i_sb
->s_blocksize
)
2112 return -ENAMETOOLONG
;
2115 handle
= ext3_journal_start(dir
, EXT3_DATA_TRANS_BLOCKS
+
2116 EXT3_INDEX_EXTRA_TRANS_BLOCKS
+ 5 +
2117 2*EXT3_QUOTA_INIT_BLOCKS
);
2119 return PTR_ERR(handle
);
2121 if (IS_DIRSYNC(dir
))
2124 inode
= ext3_new_inode (handle
, dir
, S_IFLNK
|S_IRWXUGO
);
2125 err
= PTR_ERR(inode
);
2129 if (l
> sizeof (EXT3_I(inode
)->i_data
)) {
2130 inode
->i_op
= &ext3_symlink_inode_operations
;
2131 ext3_set_aops(inode
);
2133 * page_symlink() calls into ext3_prepare/commit_write.
2134 * We have a transaction open. All is sweetness. It also sets
2135 * i_size in generic_commit_write().
2137 err
= page_symlink(inode
, symname
, l
);
2139 ext3_dec_count(handle
, inode
);
2140 ext3_mark_inode_dirty(handle
, inode
);
2145 inode
->i_op
= &ext3_fast_symlink_inode_operations
;
2146 memcpy((char*)&EXT3_I(inode
)->i_data
,symname
,l
);
2147 inode
->i_size
= l
-1;
2149 EXT3_I(inode
)->i_disksize
= inode
->i_size
;
2150 err
= ext3_add_nondir(handle
, dentry
, inode
);
2152 ext3_journal_stop(handle
);
2153 if (err
== -ENOSPC
&& ext3_should_retry_alloc(dir
->i_sb
, &retries
))
2158 static int ext3_link (struct dentry
* old_dentry
,
2159 struct inode
* dir
, struct dentry
*dentry
)
2162 struct inode
*inode
= old_dentry
->d_inode
;
2163 int err
, retries
= 0;
2165 if (inode
->i_nlink
>= EXT3_LINK_MAX
)
2169 handle
= ext3_journal_start(dir
, EXT3_DATA_TRANS_BLOCKS
+
2170 EXT3_INDEX_EXTRA_TRANS_BLOCKS
);
2172 return PTR_ERR(handle
);
2174 if (IS_DIRSYNC(dir
))
2177 inode
->i_ctime
= CURRENT_TIME_SEC
;
2178 ext3_inc_count(handle
, inode
);
2179 atomic_inc(&inode
->i_count
);
2181 err
= ext3_add_nondir(handle
, dentry
, inode
);
2182 ext3_journal_stop(handle
);
2183 if (err
== -ENOSPC
&& ext3_should_retry_alloc(dir
->i_sb
, &retries
))
2188 #define PARENT_INO(buffer) \
2189 ((struct ext3_dir_entry_2 *) ((char *) buffer + \
2190 le16_to_cpu(((struct ext3_dir_entry_2 *) buffer)->rec_len)))->inode
2193 * Anybody can rename anything with this: the permission checks are left to the
2194 * higher-level routines.
2196 static int ext3_rename (struct inode
* old_dir
, struct dentry
*old_dentry
,
2197 struct inode
* new_dir
,struct dentry
*new_dentry
)
2200 struct inode
* old_inode
, * new_inode
;
2201 struct buffer_head
* old_bh
, * new_bh
, * dir_bh
;
2202 struct ext3_dir_entry_2
* old_de
, * new_de
;
2205 old_bh
= new_bh
= dir_bh
= NULL
;
2207 /* Initialize quotas before so that eventual writes go
2208 * in separate transaction */
2209 if (new_dentry
->d_inode
)
2210 DQUOT_INIT(new_dentry
->d_inode
);
2211 handle
= ext3_journal_start(old_dir
, 2 * EXT3_DATA_TRANS_BLOCKS
+
2212 EXT3_INDEX_EXTRA_TRANS_BLOCKS
+ 2);
2214 return PTR_ERR(handle
);
2216 if (IS_DIRSYNC(old_dir
) || IS_DIRSYNC(new_dir
))
2219 old_bh
= ext3_find_entry (old_dentry
, &old_de
);
2221 * Check for inode number is _not_ due to possible IO errors.
2222 * We might rmdir the source, keep it as pwd of some process
2223 * and merrily kill the link to whatever was created under the
2224 * same name. Goodbye sticky bit ;-<
2226 old_inode
= old_dentry
->d_inode
;
2228 if (!old_bh
|| le32_to_cpu(old_de
->inode
) != old_inode
->i_ino
)
2231 new_inode
= new_dentry
->d_inode
;
2232 new_bh
= ext3_find_entry (new_dentry
, &new_de
);
2239 if (S_ISDIR(old_inode
->i_mode
)) {
2241 retval
= -ENOTEMPTY
;
2242 if (!empty_dir (new_inode
))
2246 dir_bh
= ext3_bread (handle
, old_inode
, 0, 0, &retval
);
2249 if (le32_to_cpu(PARENT_INO(dir_bh
->b_data
)) != old_dir
->i_ino
)
2252 if (!new_inode
&& new_dir
!=old_dir
&&
2253 new_dir
->i_nlink
>= EXT3_LINK_MAX
)
2257 retval
= ext3_add_entry (handle
, new_dentry
, old_inode
);
2261 BUFFER_TRACE(new_bh
, "get write access");
2262 ext3_journal_get_write_access(handle
, new_bh
);
2263 new_de
->inode
= cpu_to_le32(old_inode
->i_ino
);
2264 if (EXT3_HAS_INCOMPAT_FEATURE(new_dir
->i_sb
,
2265 EXT3_FEATURE_INCOMPAT_FILETYPE
))
2266 new_de
->file_type
= old_de
->file_type
;
2267 new_dir
->i_version
++;
2268 BUFFER_TRACE(new_bh
, "call ext3_journal_dirty_metadata");
2269 ext3_journal_dirty_metadata(handle
, new_bh
);
2275 * Like most other Unix systems, set the ctime for inodes on a
2278 old_inode
->i_ctime
= CURRENT_TIME_SEC
;
2279 ext3_mark_inode_dirty(handle
, old_inode
);
2284 if (le32_to_cpu(old_de
->inode
) != old_inode
->i_ino
||
2285 old_de
->name_len
!= old_dentry
->d_name
.len
||
2286 strncmp(old_de
->name
, old_dentry
->d_name
.name
, old_de
->name_len
) ||
2287 (retval
= ext3_delete_entry(handle
, old_dir
,
2288 old_de
, old_bh
)) == -ENOENT
) {
2289 /* old_de could have moved from under us during htree split, so
2290 * make sure that we are deleting the right entry. We might
2291 * also be pointing to a stale entry in the unused part of
2292 * old_bh so just checking inum and the name isn't enough. */
2293 struct buffer_head
*old_bh2
;
2294 struct ext3_dir_entry_2
*old_de2
;
2296 old_bh2
= ext3_find_entry(old_dentry
, &old_de2
);
2298 retval
= ext3_delete_entry(handle
, old_dir
,
2304 ext3_warning(old_dir
->i_sb
, "ext3_rename",
2305 "Deleting old file (%lu), %d, error=%d",
2306 old_dir
->i_ino
, old_dir
->i_nlink
, retval
);
2310 new_inode
->i_nlink
--;
2311 new_inode
->i_ctime
= CURRENT_TIME_SEC
;
2313 old_dir
->i_ctime
= old_dir
->i_mtime
= CURRENT_TIME_SEC
;
2314 ext3_update_dx_flag(old_dir
);
2316 BUFFER_TRACE(dir_bh
, "get_write_access");
2317 ext3_journal_get_write_access(handle
, dir_bh
);
2318 PARENT_INO(dir_bh
->b_data
) = cpu_to_le32(new_dir
->i_ino
);
2319 BUFFER_TRACE(dir_bh
, "call ext3_journal_dirty_metadata");
2320 ext3_journal_dirty_metadata(handle
, dir_bh
);
2323 new_inode
->i_nlink
--;
2326 ext3_update_dx_flag(new_dir
);
2327 ext3_mark_inode_dirty(handle
, new_dir
);
2330 ext3_mark_inode_dirty(handle
, old_dir
);
2332 ext3_mark_inode_dirty(handle
, new_inode
);
2333 if (!new_inode
->i_nlink
)
2334 ext3_orphan_add(handle
, new_inode
);
2342 ext3_journal_stop(handle
);
2347 * directories can handle most operations...
2349 struct inode_operations ext3_dir_inode_operations
= {
2350 .create
= ext3_create
,
2351 .lookup
= ext3_lookup
,
2353 .unlink
= ext3_unlink
,
2354 .symlink
= ext3_symlink
,
2355 .mkdir
= ext3_mkdir
,
2356 .rmdir
= ext3_rmdir
,
2357 .mknod
= ext3_mknod
,
2358 .rename
= ext3_rename
,
2359 .setattr
= ext3_setattr
,
2360 #ifdef CONFIG_EXT3_FS_XATTR
2361 .setxattr
= generic_setxattr
,
2362 .getxattr
= generic_getxattr
,
2363 .listxattr
= ext3_listxattr
,
2364 .removexattr
= generic_removexattr
,
2366 .permission
= ext3_permission
,
2369 struct inode_operations ext3_special_inode_operations
= {
2370 .setattr
= ext3_setattr
,
2371 #ifdef CONFIG_EXT3_FS_XATTR
2372 .setxattr
= generic_setxattr
,
2373 .getxattr
= generic_getxattr
,
2374 .listxattr
= ext3_listxattr
,
2375 .removexattr
= generic_removexattr
,
2377 .permission
= ext3_permission
,