1 // SPDX-License-Identifier: GPL-2.0
3 * linux/fs/ext4/namei.c
5 * Copyright (C) 1992, 1993, 1994, 1995
6 * Remy Card (card@masi.ibp.fr)
7 * Laboratoire MASI - Institut Blaise Pascal
8 * Universite Pierre et Marie Curie (Paris VI)
12 * linux/fs/minix/namei.c
14 * Copyright (C) 1991, 1992 Linus Torvalds
16 * Big-endian to little-endian byte-swapping/bitmaps by
17 * David S. Miller (davem@caip.rutgers.edu), 1995
18 * Directory entry file type support and forward compatibility hooks
19 * for B-tree directories by Theodore Ts'o (tytso@mit.edu), 1998
20 * Hash Tree Directory indexing (c)
21 * Daniel Phillips, 2001
22 * Hash Tree Directory indexing porting
23 * Christopher Li, 2002
24 * Hash Tree Directory indexing cleanup
29 #include <linux/pagemap.h>
30 #include <linux/time.h>
31 #include <linux/fcntl.h>
32 #include <linux/stat.h>
33 #include <linux/string.h>
34 #include <linux/quotaops.h>
35 #include <linux/buffer_head.h>
36 #include <linux/bio.h>
37 #include <linux/iversion.h>
39 #include "ext4_jbd2.h"
44 #include <trace/events/ext4.h>
46 * define how far ahead to read directories while searching them.
48 #define NAMEI_RA_CHUNKS 2
49 #define NAMEI_RA_BLOCKS 4
50 #define NAMEI_RA_SIZE (NAMEI_RA_CHUNKS * NAMEI_RA_BLOCKS)
52 static struct buffer_head
*ext4_append(handle_t
*handle
,
56 struct buffer_head
*bh
;
59 if (unlikely(EXT4_SB(inode
->i_sb
)->s_max_dir_size_kb
&&
60 ((inode
->i_size
>> 10) >=
61 EXT4_SB(inode
->i_sb
)->s_max_dir_size_kb
)))
62 return ERR_PTR(-ENOSPC
);
64 *block
= inode
->i_size
>> inode
->i_sb
->s_blocksize_bits
;
66 bh
= ext4_bread(handle
, inode
, *block
, EXT4_GET_BLOCKS_CREATE
);
69 inode
->i_size
+= inode
->i_sb
->s_blocksize
;
70 EXT4_I(inode
)->i_disksize
= inode
->i_size
;
71 BUFFER_TRACE(bh
, "get_write_access");
72 err
= ext4_journal_get_write_access(handle
, bh
);
75 ext4_std_error(inode
->i_sb
, err
);
81 static int ext4_dx_csum_verify(struct inode
*inode
,
82 struct ext4_dir_entry
*dirent
);
85 * Hints to ext4_read_dirblock regarding whether we expect a directory
86 * block being read to be an index block, or a block containing
87 * directory entries (and if the latter, whether it was found via a
88 * logical block in an htree index block). This is used to control
89 * what sort of sanity checkinig ext4_read_dirblock() will do on the
90 * directory block read from the storage device. EITHER will means
91 * the caller doesn't know what kind of directory block will be read,
92 * so no specific verification will be done.
95 EITHER
, INDEX
, DIRENT
, DIRENT_HTREE
98 #define ext4_read_dirblock(inode, block, type) \
99 __ext4_read_dirblock((inode), (block), (type), __func__, __LINE__)
101 static struct buffer_head
*__ext4_read_dirblock(struct inode
*inode
,
103 dirblock_type_t type
,
107 struct buffer_head
*bh
;
108 struct ext4_dir_entry
*dirent
;
111 bh
= ext4_bread(NULL
, inode
, block
, 0);
113 __ext4_warning(inode
->i_sb
, func
, line
,
114 "inode #%lu: lblock %lu: comm %s: "
115 "error %ld reading directory block",
116 inode
->i_ino
, (unsigned long)block
,
117 current
->comm
, PTR_ERR(bh
));
121 if (!bh
&& (type
== INDEX
|| type
== DIRENT_HTREE
)) {
122 ext4_error_inode(inode
, func
, line
, block
,
123 "Directory hole found for htree %s block",
124 (type
== INDEX
) ? "index" : "leaf");
125 return ERR_PTR(-EFSCORRUPTED
);
129 dirent
= (struct ext4_dir_entry
*) bh
->b_data
;
130 /* Determine whether or not we have an index block */
134 else if (ext4_rec_len_from_disk(dirent
->rec_len
,
135 inode
->i_sb
->s_blocksize
) ==
136 inode
->i_sb
->s_blocksize
)
139 if (!is_dx_block
&& type
== INDEX
) {
140 ext4_error_inode(inode
, func
, line
, block
,
141 "directory leaf block found instead of index block");
143 return ERR_PTR(-EFSCORRUPTED
);
145 if (!ext4_has_metadata_csum(inode
->i_sb
) ||
150 * An empty leaf block can get mistaken for a index block; for
151 * this reason, we can only check the index checksum when the
152 * caller is sure it should be an index block.
154 if (is_dx_block
&& type
== INDEX
) {
155 if (ext4_dx_csum_verify(inode
, dirent
))
156 set_buffer_verified(bh
);
158 ext4_error_inode(inode
, func
, line
, block
,
159 "Directory index failed checksum");
161 return ERR_PTR(-EFSBADCRC
);
165 if (ext4_dirent_csum_verify(inode
, dirent
))
166 set_buffer_verified(bh
);
168 ext4_error_inode(inode
, func
, line
, block
,
169 "Directory block failed checksum");
171 return ERR_PTR(-EFSBADCRC
);
178 #define assert(test) J_ASSERT(test)
182 #define dxtrace(command) command
184 #define dxtrace(command)
208 * dx_root_info is laid out so that if it should somehow get overlaid by a
209 * dirent the two low bits of the hash version will be zero. Therefore, the
210 * hash version mod 4 should never be 0. Sincerely, the paranoia department.
215 struct fake_dirent dot
;
217 struct fake_dirent dotdot
;
221 __le32 reserved_zero
;
223 u8 info_length
; /* 8 */
228 struct dx_entry entries
[0];
233 struct fake_dirent fake
;
234 struct dx_entry entries
[0];
240 struct buffer_head
*bh
;
241 struct dx_entry
*entries
;
253 * This goes at the end of each htree block.
257 __le32 dt_checksum
; /* crc32c(uuid+inum+dirblock) */
260 static inline ext4_lblk_t
dx_get_block(struct dx_entry
*entry
);
261 static void dx_set_block(struct dx_entry
*entry
, ext4_lblk_t value
);
262 static inline unsigned dx_get_hash(struct dx_entry
*entry
);
263 static void dx_set_hash(struct dx_entry
*entry
, unsigned value
);
264 static unsigned dx_get_count(struct dx_entry
*entries
);
265 static unsigned dx_get_limit(struct dx_entry
*entries
);
266 static void dx_set_count(struct dx_entry
*entries
, unsigned value
);
267 static void dx_set_limit(struct dx_entry
*entries
, unsigned value
);
268 static unsigned dx_root_limit(struct inode
*dir
, unsigned infosize
);
269 static unsigned dx_node_limit(struct inode
*dir
);
270 static struct dx_frame
*dx_probe(struct ext4_filename
*fname
,
272 struct dx_hash_info
*hinfo
,
273 struct dx_frame
*frame
);
274 static void dx_release(struct dx_frame
*frames
);
275 static int dx_make_map(struct inode
*dir
, struct ext4_dir_entry_2
*de
,
276 unsigned blocksize
, struct dx_hash_info
*hinfo
,
277 struct dx_map_entry map
[]);
278 static void dx_sort_map(struct dx_map_entry
*map
, unsigned count
);
279 static struct ext4_dir_entry_2
*dx_move_dirents(char *from
, char *to
,
280 struct dx_map_entry
*offsets
, int count
, unsigned blocksize
);
281 static struct ext4_dir_entry_2
* dx_pack_dirents(char *base
, unsigned blocksize
);
282 static void dx_insert_block(struct dx_frame
*frame
,
283 u32 hash
, ext4_lblk_t block
);
284 static int ext4_htree_next_block(struct inode
*dir
, __u32 hash
,
285 struct dx_frame
*frame
,
286 struct dx_frame
*frames
,
288 static struct buffer_head
* ext4_dx_find_entry(struct inode
*dir
,
289 struct ext4_filename
*fname
,
290 struct ext4_dir_entry_2
**res_dir
);
291 static int ext4_dx_add_entry(handle_t
*handle
, struct ext4_filename
*fname
,
292 struct inode
*dir
, struct inode
*inode
);
294 /* checksumming functions */
295 void initialize_dirent_tail(struct ext4_dir_entry_tail
*t
,
296 unsigned int blocksize
)
298 memset(t
, 0, sizeof(struct ext4_dir_entry_tail
));
299 t
->det_rec_len
= ext4_rec_len_to_disk(
300 sizeof(struct ext4_dir_entry_tail
), blocksize
);
301 t
->det_reserved_ft
= EXT4_FT_DIR_CSUM
;
304 /* Walk through a dirent block to find a checksum "dirent" at the tail */
305 static struct ext4_dir_entry_tail
*get_dirent_tail(struct inode
*inode
,
306 struct ext4_dir_entry
*de
)
308 struct ext4_dir_entry_tail
*t
;
311 struct ext4_dir_entry
*d
, *top
;
314 top
= (struct ext4_dir_entry
*)(((void *)de
) +
315 (EXT4_BLOCK_SIZE(inode
->i_sb
) -
316 sizeof(struct ext4_dir_entry_tail
)));
317 while (d
< top
&& d
->rec_len
)
318 d
= (struct ext4_dir_entry
*)(((void *)d
) +
319 le16_to_cpu(d
->rec_len
));
324 t
= (struct ext4_dir_entry_tail
*)d
;
326 t
= EXT4_DIRENT_TAIL(de
, EXT4_BLOCK_SIZE(inode
->i_sb
));
329 if (t
->det_reserved_zero1
||
330 le16_to_cpu(t
->det_rec_len
) != sizeof(struct ext4_dir_entry_tail
) ||
331 t
->det_reserved_zero2
||
332 t
->det_reserved_ft
!= EXT4_FT_DIR_CSUM
)
338 static __le32
ext4_dirent_csum(struct inode
*inode
,
339 struct ext4_dir_entry
*dirent
, int size
)
341 struct ext4_sb_info
*sbi
= EXT4_SB(inode
->i_sb
);
342 struct ext4_inode_info
*ei
= EXT4_I(inode
);
345 csum
= ext4_chksum(sbi
, ei
->i_csum_seed
, (__u8
*)dirent
, size
);
346 return cpu_to_le32(csum
);
349 #define warn_no_space_for_csum(inode) \
350 __warn_no_space_for_csum((inode), __func__, __LINE__)
352 static void __warn_no_space_for_csum(struct inode
*inode
, const char *func
,
355 __ext4_warning_inode(inode
, func
, line
,
356 "No space for directory leaf checksum. Please run e2fsck -D.");
359 int ext4_dirent_csum_verify(struct inode
*inode
, struct ext4_dir_entry
*dirent
)
361 struct ext4_dir_entry_tail
*t
;
363 if (!ext4_has_metadata_csum(inode
->i_sb
))
366 t
= get_dirent_tail(inode
, dirent
);
368 warn_no_space_for_csum(inode
);
372 if (t
->det_checksum
!= ext4_dirent_csum(inode
, dirent
,
373 (void *)t
- (void *)dirent
))
379 static void ext4_dirent_csum_set(struct inode
*inode
,
380 struct ext4_dir_entry
*dirent
)
382 struct ext4_dir_entry_tail
*t
;
384 if (!ext4_has_metadata_csum(inode
->i_sb
))
387 t
= get_dirent_tail(inode
, dirent
);
389 warn_no_space_for_csum(inode
);
393 t
->det_checksum
= ext4_dirent_csum(inode
, dirent
,
394 (void *)t
- (void *)dirent
);
397 int ext4_handle_dirty_dirent_node(handle_t
*handle
,
399 struct buffer_head
*bh
)
401 ext4_dirent_csum_set(inode
, (struct ext4_dir_entry
*)bh
->b_data
);
402 return ext4_handle_dirty_metadata(handle
, inode
, bh
);
405 static struct dx_countlimit
*get_dx_countlimit(struct inode
*inode
,
406 struct ext4_dir_entry
*dirent
,
409 struct ext4_dir_entry
*dp
;
410 struct dx_root_info
*root
;
413 if (le16_to_cpu(dirent
->rec_len
) == EXT4_BLOCK_SIZE(inode
->i_sb
))
415 else if (le16_to_cpu(dirent
->rec_len
) == 12) {
416 dp
= (struct ext4_dir_entry
*)(((void *)dirent
) + 12);
417 if (le16_to_cpu(dp
->rec_len
) !=
418 EXT4_BLOCK_SIZE(inode
->i_sb
) - 12)
420 root
= (struct dx_root_info
*)(((void *)dp
+ 12));
421 if (root
->reserved_zero
||
422 root
->info_length
!= sizeof(struct dx_root_info
))
429 *offset
= count_offset
;
430 return (struct dx_countlimit
*)(((void *)dirent
) + count_offset
);
433 static __le32
ext4_dx_csum(struct inode
*inode
, struct ext4_dir_entry
*dirent
,
434 int count_offset
, int count
, struct dx_tail
*t
)
436 struct ext4_sb_info
*sbi
= EXT4_SB(inode
->i_sb
);
437 struct ext4_inode_info
*ei
= EXT4_I(inode
);
440 __u32 dummy_csum
= 0;
441 int offset
= offsetof(struct dx_tail
, dt_checksum
);
443 size
= count_offset
+ (count
* sizeof(struct dx_entry
));
444 csum
= ext4_chksum(sbi
, ei
->i_csum_seed
, (__u8
*)dirent
, size
);
445 csum
= ext4_chksum(sbi
, csum
, (__u8
*)t
, offset
);
446 csum
= ext4_chksum(sbi
, csum
, (__u8
*)&dummy_csum
, sizeof(dummy_csum
));
448 return cpu_to_le32(csum
);
451 static int ext4_dx_csum_verify(struct inode
*inode
,
452 struct ext4_dir_entry
*dirent
)
454 struct dx_countlimit
*c
;
456 int count_offset
, limit
, count
;
458 if (!ext4_has_metadata_csum(inode
->i_sb
))
461 c
= get_dx_countlimit(inode
, dirent
, &count_offset
);
463 EXT4_ERROR_INODE(inode
, "dir seems corrupt? Run e2fsck -D.");
466 limit
= le16_to_cpu(c
->limit
);
467 count
= le16_to_cpu(c
->count
);
468 if (count_offset
+ (limit
* sizeof(struct dx_entry
)) >
469 EXT4_BLOCK_SIZE(inode
->i_sb
) - sizeof(struct dx_tail
)) {
470 warn_no_space_for_csum(inode
);
473 t
= (struct dx_tail
*)(((struct dx_entry
*)c
) + limit
);
475 if (t
->dt_checksum
!= ext4_dx_csum(inode
, dirent
, count_offset
,
481 static void ext4_dx_csum_set(struct inode
*inode
, struct ext4_dir_entry
*dirent
)
483 struct dx_countlimit
*c
;
485 int count_offset
, limit
, count
;
487 if (!ext4_has_metadata_csum(inode
->i_sb
))
490 c
= get_dx_countlimit(inode
, dirent
, &count_offset
);
492 EXT4_ERROR_INODE(inode
, "dir seems corrupt? Run e2fsck -D.");
495 limit
= le16_to_cpu(c
->limit
);
496 count
= le16_to_cpu(c
->count
);
497 if (count_offset
+ (limit
* sizeof(struct dx_entry
)) >
498 EXT4_BLOCK_SIZE(inode
->i_sb
) - sizeof(struct dx_tail
)) {
499 warn_no_space_for_csum(inode
);
502 t
= (struct dx_tail
*)(((struct dx_entry
*)c
) + limit
);
504 t
->dt_checksum
= ext4_dx_csum(inode
, dirent
, count_offset
, count
, t
);
507 static inline int ext4_handle_dirty_dx_node(handle_t
*handle
,
509 struct buffer_head
*bh
)
511 ext4_dx_csum_set(inode
, (struct ext4_dir_entry
*)bh
->b_data
);
512 return ext4_handle_dirty_metadata(handle
, inode
, bh
);
516 * p is at least 6 bytes before the end of page
518 static inline struct ext4_dir_entry_2
*
519 ext4_next_entry(struct ext4_dir_entry_2
*p
, unsigned long blocksize
)
521 return (struct ext4_dir_entry_2
*)((char *)p
+
522 ext4_rec_len_from_disk(p
->rec_len
, blocksize
));
526 * Future: use high four bits of block for coalesce-on-delete flags
527 * Mask them off for now.
530 static inline ext4_lblk_t
dx_get_block(struct dx_entry
*entry
)
532 return le32_to_cpu(entry
->block
) & 0x0fffffff;
535 static inline void dx_set_block(struct dx_entry
*entry
, ext4_lblk_t value
)
537 entry
->block
= cpu_to_le32(value
);
540 static inline unsigned dx_get_hash(struct dx_entry
*entry
)
542 return le32_to_cpu(entry
->hash
);
545 static inline void dx_set_hash(struct dx_entry
*entry
, unsigned value
)
547 entry
->hash
= cpu_to_le32(value
);
550 static inline unsigned dx_get_count(struct dx_entry
*entries
)
552 return le16_to_cpu(((struct dx_countlimit
*) entries
)->count
);
555 static inline unsigned dx_get_limit(struct dx_entry
*entries
)
557 return le16_to_cpu(((struct dx_countlimit
*) entries
)->limit
);
560 static inline void dx_set_count(struct dx_entry
*entries
, unsigned value
)
562 ((struct dx_countlimit
*) entries
)->count
= cpu_to_le16(value
);
565 static inline void dx_set_limit(struct dx_entry
*entries
, unsigned value
)
567 ((struct dx_countlimit
*) entries
)->limit
= cpu_to_le16(value
);
570 static inline unsigned dx_root_limit(struct inode
*dir
, unsigned infosize
)
572 unsigned entry_space
= dir
->i_sb
->s_blocksize
- EXT4_DIR_REC_LEN(1) -
573 EXT4_DIR_REC_LEN(2) - infosize
;
575 if (ext4_has_metadata_csum(dir
->i_sb
))
576 entry_space
-= sizeof(struct dx_tail
);
577 return entry_space
/ sizeof(struct dx_entry
);
580 static inline unsigned dx_node_limit(struct inode
*dir
)
582 unsigned entry_space
= dir
->i_sb
->s_blocksize
- EXT4_DIR_REC_LEN(0);
584 if (ext4_has_metadata_csum(dir
->i_sb
))
585 entry_space
-= sizeof(struct dx_tail
);
586 return entry_space
/ sizeof(struct dx_entry
);
593 static void dx_show_index(char * label
, struct dx_entry
*entries
)
595 int i
, n
= dx_get_count (entries
);
596 printk(KERN_DEBUG
"%s index", label
);
597 for (i
= 0; i
< n
; i
++) {
598 printk(KERN_CONT
" %x->%lu",
599 i
? dx_get_hash(entries
+ i
) : 0,
600 (unsigned long)dx_get_block(entries
+ i
));
602 printk(KERN_CONT
"\n");
612 static struct stats
dx_show_leaf(struct inode
*dir
,
613 struct dx_hash_info
*hinfo
,
614 struct ext4_dir_entry_2
*de
,
615 int size
, int show_names
)
617 unsigned names
= 0, space
= 0;
618 char *base
= (char *) de
;
619 struct dx_hash_info h
= *hinfo
;
622 while ((char *) de
< base
+ size
)
628 #ifdef CONFIG_EXT4_FS_ENCRYPTION
631 struct fscrypt_str fname_crypto_str
=
637 if (ext4_encrypted_inode(dir
))
638 res
= fscrypt_get_encryption_info(dir
);
640 printk(KERN_WARNING
"Error setting up"
641 " fname crypto: %d\n", res
);
643 if (!fscrypt_has_encryption_key(dir
)) {
644 /* Directory is not encrypted */
645 ext4fs_dirhash(de
->name
,
647 printk("%*.s:(U)%x.%u ", len
,
649 (unsigned) ((char *) de
652 struct fscrypt_str de_name
=
653 FSTR_INIT(name
, len
);
655 /* Directory is encrypted */
656 res
= fscrypt_fname_alloc_buffer(
660 printk(KERN_WARNING
"Error "
664 res
= fscrypt_fname_disk_to_usr(dir
,
668 printk(KERN_WARNING
"Error "
669 "converting filename "
675 name
= fname_crypto_str
.name
;
676 len
= fname_crypto_str
.len
;
678 ext4fs_dirhash(de
->name
, de
->name_len
,
680 printk("%*.s:(E)%x.%u ", len
, name
,
681 h
.hash
, (unsigned) ((char *) de
683 fscrypt_fname_free_buffer(
687 int len
= de
->name_len
;
688 char *name
= de
->name
;
689 ext4fs_dirhash(de
->name
, de
->name_len
, &h
);
690 printk("%*.s:%x.%u ", len
, name
, h
.hash
,
691 (unsigned) ((char *) de
- base
));
694 space
+= EXT4_DIR_REC_LEN(de
->name_len
);
697 de
= ext4_next_entry(de
, size
);
699 printk(KERN_CONT
"(%i)\n", names
);
700 return (struct stats
) { names
, space
, 1 };
703 struct stats
dx_show_entries(struct dx_hash_info
*hinfo
, struct inode
*dir
,
704 struct dx_entry
*entries
, int levels
)
706 unsigned blocksize
= dir
->i_sb
->s_blocksize
;
707 unsigned count
= dx_get_count(entries
), names
= 0, space
= 0, i
;
709 struct buffer_head
*bh
;
710 printk("%i indexed blocks...\n", count
);
711 for (i
= 0; i
< count
; i
++, entries
++)
713 ext4_lblk_t block
= dx_get_block(entries
);
714 ext4_lblk_t hash
= i
? dx_get_hash(entries
): 0;
715 u32 range
= i
< count
- 1? (dx_get_hash(entries
+ 1) - hash
): ~hash
;
717 printk("%s%3u:%03u hash %8x/%8x ",levels
?"":" ", i
, block
, hash
, range
);
718 bh
= ext4_bread(NULL
,dir
, block
, 0);
719 if (!bh
|| IS_ERR(bh
))
722 dx_show_entries(hinfo
, dir
, ((struct dx_node
*) bh
->b_data
)->entries
, levels
- 1):
723 dx_show_leaf(dir
, hinfo
, (struct ext4_dir_entry_2
*)
724 bh
->b_data
, blocksize
, 0);
725 names
+= stats
.names
;
726 space
+= stats
.space
;
727 bcount
+= stats
.bcount
;
731 printk(KERN_DEBUG
"%snames %u, fullness %u (%u%%)\n",
732 levels
? "" : " ", names
, space
/bcount
,
733 (space
/bcount
)*100/blocksize
);
734 return (struct stats
) { names
, space
, bcount
};
736 #endif /* DX_DEBUG */
739 * Probe for a directory leaf block to search.
741 * dx_probe can return ERR_BAD_DX_DIR, which means there was a format
742 * error in the directory index, and the caller should fall back to
743 * searching the directory normally. The callers of dx_probe **MUST**
744 * check for this error code, and make sure it never gets reflected
747 static struct dx_frame
*
748 dx_probe(struct ext4_filename
*fname
, struct inode
*dir
,
749 struct dx_hash_info
*hinfo
, struct dx_frame
*frame_in
)
751 unsigned count
, indirect
;
752 struct dx_entry
*at
, *entries
, *p
, *q
, *m
;
753 struct dx_root
*root
;
754 struct dx_frame
*frame
= frame_in
;
755 struct dx_frame
*ret_err
= ERR_PTR(ERR_BAD_DX_DIR
);
758 memset(frame_in
, 0, EXT4_HTREE_LEVEL
* sizeof(frame_in
[0]));
759 frame
->bh
= ext4_read_dirblock(dir
, 0, INDEX
);
760 if (IS_ERR(frame
->bh
))
761 return (struct dx_frame
*) frame
->bh
;
763 root
= (struct dx_root
*) frame
->bh
->b_data
;
764 if (root
->info
.hash_version
!= DX_HASH_TEA
&&
765 root
->info
.hash_version
!= DX_HASH_HALF_MD4
&&
766 root
->info
.hash_version
!= DX_HASH_LEGACY
) {
767 ext4_warning_inode(dir
, "Unrecognised inode hash code %u",
768 root
->info
.hash_version
);
772 hinfo
= &fname
->hinfo
;
773 hinfo
->hash_version
= root
->info
.hash_version
;
774 if (hinfo
->hash_version
<= DX_HASH_TEA
)
775 hinfo
->hash_version
+= EXT4_SB(dir
->i_sb
)->s_hash_unsigned
;
776 hinfo
->seed
= EXT4_SB(dir
->i_sb
)->s_hash_seed
;
777 if (fname
&& fname_name(fname
))
778 ext4fs_dirhash(fname_name(fname
), fname_len(fname
), hinfo
);
781 if (root
->info
.unused_flags
& 1) {
782 ext4_warning_inode(dir
, "Unimplemented hash flags: %#06x",
783 root
->info
.unused_flags
);
787 indirect
= root
->info
.indirect_levels
;
788 if (indirect
>= ext4_dir_htree_level(dir
->i_sb
)) {
789 ext4_warning(dir
->i_sb
,
790 "Directory (ino: %lu) htree depth %#06x exceed"
791 "supported value", dir
->i_ino
,
792 ext4_dir_htree_level(dir
->i_sb
));
793 if (ext4_dir_htree_level(dir
->i_sb
) < EXT4_HTREE_LEVEL
) {
794 ext4_warning(dir
->i_sb
, "Enable large directory "
795 "feature to access it");
800 entries
= (struct dx_entry
*)(((char *)&root
->info
) +
801 root
->info
.info_length
);
803 if (dx_get_limit(entries
) != dx_root_limit(dir
,
804 root
->info
.info_length
)) {
805 ext4_warning_inode(dir
, "dx entry: limit %u != root limit %u",
806 dx_get_limit(entries
),
807 dx_root_limit(dir
, root
->info
.info_length
));
811 dxtrace(printk("Look up %x", hash
));
813 count
= dx_get_count(entries
);
814 if (!count
|| count
> dx_get_limit(entries
)) {
815 ext4_warning_inode(dir
,
816 "dx entry: count %u beyond limit %u",
817 count
, dx_get_limit(entries
));
822 q
= entries
+ count
- 1;
825 dxtrace(printk(KERN_CONT
"."));
826 if (dx_get_hash(m
) > hash
)
832 if (0) { // linear search cross check
833 unsigned n
= count
- 1;
837 dxtrace(printk(KERN_CONT
","));
838 if (dx_get_hash(++at
) > hash
)
844 assert (at
== p
- 1);
848 dxtrace(printk(KERN_CONT
" %x->%u\n",
849 at
== entries
? 0 : dx_get_hash(at
),
851 frame
->entries
= entries
;
856 frame
->bh
= ext4_read_dirblock(dir
, dx_get_block(at
), INDEX
);
857 if (IS_ERR(frame
->bh
)) {
858 ret_err
= (struct dx_frame
*) frame
->bh
;
862 entries
= ((struct dx_node
*) frame
->bh
->b_data
)->entries
;
864 if (dx_get_limit(entries
) != dx_node_limit(dir
)) {
865 ext4_warning_inode(dir
,
866 "dx entry: limit %u != node limit %u",
867 dx_get_limit(entries
), dx_node_limit(dir
));
872 while (frame
>= frame_in
) {
877 if (ret_err
== ERR_PTR(ERR_BAD_DX_DIR
))
878 ext4_warning_inode(dir
,
879 "Corrupt directory, running e2fsck is recommended");
883 static void dx_release(struct dx_frame
*frames
)
885 struct dx_root_info
*info
;
887 unsigned int indirect_levels
;
889 if (frames
[0].bh
== NULL
)
892 info
= &((struct dx_root
*)frames
[0].bh
->b_data
)->info
;
893 /* save local copy, "info" may be freed after brelse() */
894 indirect_levels
= info
->indirect_levels
;
895 for (i
= 0; i
<= indirect_levels
; i
++) {
896 if (frames
[i
].bh
== NULL
)
898 brelse(frames
[i
].bh
);
904 * This function increments the frame pointer to search the next leaf
905 * block, and reads in the necessary intervening nodes if the search
906 * should be necessary. Whether or not the search is necessary is
907 * controlled by the hash parameter. If the hash value is even, then
908 * the search is only continued if the next block starts with that
909 * hash value. This is used if we are searching for a specific file.
911 * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
913 * This function returns 1 if the caller should continue to search,
914 * or 0 if it should not. If there is an error reading one of the
915 * index blocks, it will a negative error code.
917 * If start_hash is non-null, it will be filled in with the starting
918 * hash of the next page.
920 static int ext4_htree_next_block(struct inode
*dir
, __u32 hash
,
921 struct dx_frame
*frame
,
922 struct dx_frame
*frames
,
926 struct buffer_head
*bh
;
932 * Find the next leaf page by incrementing the frame pointer.
933 * If we run out of entries in the interior node, loop around and
934 * increment pointer in the parent node. When we break out of
935 * this loop, num_frames indicates the number of interior
936 * nodes need to be read.
939 if (++(p
->at
) < p
->entries
+ dx_get_count(p
->entries
))
948 * If the hash is 1, then continue only if the next page has a
949 * continuation hash of any value. This is used for readdir
950 * handling. Otherwise, check to see if the hash matches the
951 * desired contiuation hash. If it doesn't, return since
952 * there's no point to read in the successive index pages.
954 bhash
= dx_get_hash(p
->at
);
957 if ((hash
& 1) == 0) {
958 if ((bhash
& ~1) != hash
)
962 * If the hash is HASH_NB_ALWAYS, we always go to the next
963 * block so no check is necessary
965 while (num_frames
--) {
966 bh
= ext4_read_dirblock(dir
, dx_get_block(p
->at
), INDEX
);
972 p
->at
= p
->entries
= ((struct dx_node
*) bh
->b_data
)->entries
;
979 * This function fills a red-black tree with information from a
980 * directory block. It returns the number directory entries loaded
981 * into the tree. If there is an error it is returned in err.
983 static int htree_dirblock_to_tree(struct file
*dir_file
,
984 struct inode
*dir
, ext4_lblk_t block
,
985 struct dx_hash_info
*hinfo
,
986 __u32 start_hash
, __u32 start_minor_hash
)
988 struct buffer_head
*bh
;
989 struct ext4_dir_entry_2
*de
, *top
;
990 int err
= 0, count
= 0;
991 struct fscrypt_str fname_crypto_str
= FSTR_INIT(NULL
, 0), tmp_str
;
993 dxtrace(printk(KERN_INFO
"In htree dirblock_to_tree: block %lu\n",
994 (unsigned long)block
));
995 bh
= ext4_read_dirblock(dir
, block
, DIRENT_HTREE
);
999 de
= (struct ext4_dir_entry_2
*) bh
->b_data
;
1000 top
= (struct ext4_dir_entry_2
*) ((char *) de
+
1001 dir
->i_sb
->s_blocksize
-
1002 EXT4_DIR_REC_LEN(0));
1003 #ifdef CONFIG_EXT4_FS_ENCRYPTION
1004 /* Check if the directory is encrypted */
1005 if (ext4_encrypted_inode(dir
)) {
1006 err
= fscrypt_get_encryption_info(dir
);
1011 err
= fscrypt_fname_alloc_buffer(dir
, EXT4_NAME_LEN
,
1019 for (; de
< top
; de
= ext4_next_entry(de
, dir
->i_sb
->s_blocksize
)) {
1020 if (ext4_check_dir_entry(dir
, NULL
, de
, bh
,
1021 bh
->b_data
, bh
->b_size
,
1022 (block
<<EXT4_BLOCK_SIZE_BITS(dir
->i_sb
))
1023 + ((char *)de
- bh
->b_data
))) {
1024 /* silently ignore the rest of the block */
1027 ext4fs_dirhash(de
->name
, de
->name_len
, hinfo
);
1028 if ((hinfo
->hash
< start_hash
) ||
1029 ((hinfo
->hash
== start_hash
) &&
1030 (hinfo
->minor_hash
< start_minor_hash
)))
1034 if (!ext4_encrypted_inode(dir
)) {
1035 tmp_str
.name
= de
->name
;
1036 tmp_str
.len
= de
->name_len
;
1037 err
= ext4_htree_store_dirent(dir_file
,
1038 hinfo
->hash
, hinfo
->minor_hash
, de
,
1041 int save_len
= fname_crypto_str
.len
;
1042 struct fscrypt_str de_name
= FSTR_INIT(de
->name
,
1045 /* Directory is encrypted */
1046 err
= fscrypt_fname_disk_to_usr(dir
, hinfo
->hash
,
1047 hinfo
->minor_hash
, &de_name
,
1053 err
= ext4_htree_store_dirent(dir_file
,
1054 hinfo
->hash
, hinfo
->minor_hash
, de
,
1056 fname_crypto_str
.len
= save_len
;
1066 #ifdef CONFIG_EXT4_FS_ENCRYPTION
1067 fscrypt_fname_free_buffer(&fname_crypto_str
);
1074 * This function fills a red-black tree with information from a
1075 * directory. We start scanning the directory in hash order, starting
1076 * at start_hash and start_minor_hash.
1078 * This function returns the number of entries inserted into the tree,
1079 * or a negative error code.
1081 int ext4_htree_fill_tree(struct file
*dir_file
, __u32 start_hash
,
1082 __u32 start_minor_hash
, __u32
*next_hash
)
1084 struct dx_hash_info hinfo
;
1085 struct ext4_dir_entry_2
*de
;
1086 struct dx_frame frames
[EXT4_HTREE_LEVEL
], *frame
;
1092 struct fscrypt_str tmp_str
;
1094 dxtrace(printk(KERN_DEBUG
"In htree_fill_tree, start hash: %x:%x\n",
1095 start_hash
, start_minor_hash
));
1096 dir
= file_inode(dir_file
);
1097 if (!(ext4_test_inode_flag(dir
, EXT4_INODE_INDEX
))) {
1098 hinfo
.hash_version
= EXT4_SB(dir
->i_sb
)->s_def_hash_version
;
1099 if (hinfo
.hash_version
<= DX_HASH_TEA
)
1100 hinfo
.hash_version
+=
1101 EXT4_SB(dir
->i_sb
)->s_hash_unsigned
;
1102 hinfo
.seed
= EXT4_SB(dir
->i_sb
)->s_hash_seed
;
1103 if (ext4_has_inline_data(dir
)) {
1104 int has_inline_data
= 1;
1105 count
= htree_inlinedir_to_tree(dir_file
, dir
, 0,
1109 if (has_inline_data
) {
1114 count
= htree_dirblock_to_tree(dir_file
, dir
, 0, &hinfo
,
1115 start_hash
, start_minor_hash
);
1119 hinfo
.hash
= start_hash
;
1120 hinfo
.minor_hash
= 0;
1121 frame
= dx_probe(NULL
, dir
, &hinfo
, frames
);
1123 return PTR_ERR(frame
);
1125 /* Add '.' and '..' from the htree header */
1126 if (!start_hash
&& !start_minor_hash
) {
1127 de
= (struct ext4_dir_entry_2
*) frames
[0].bh
->b_data
;
1128 tmp_str
.name
= de
->name
;
1129 tmp_str
.len
= de
->name_len
;
1130 err
= ext4_htree_store_dirent(dir_file
, 0, 0,
1136 if (start_hash
< 2 || (start_hash
==2 && start_minor_hash
==0)) {
1137 de
= (struct ext4_dir_entry_2
*) frames
[0].bh
->b_data
;
1138 de
= ext4_next_entry(de
, dir
->i_sb
->s_blocksize
);
1139 tmp_str
.name
= de
->name
;
1140 tmp_str
.len
= de
->name_len
;
1141 err
= ext4_htree_store_dirent(dir_file
, 2, 0,
1149 if (fatal_signal_pending(current
)) {
1154 block
= dx_get_block(frame
->at
);
1155 ret
= htree_dirblock_to_tree(dir_file
, dir
, block
, &hinfo
,
1156 start_hash
, start_minor_hash
);
1163 ret
= ext4_htree_next_block(dir
, HASH_NB_ALWAYS
,
1164 frame
, frames
, &hashval
);
1165 *next_hash
= hashval
;
1171 * Stop if: (a) there are no more entries, or
1172 * (b) we have inserted at least one entry and the
1173 * next hash value is not a continuation
1176 (count
&& ((hashval
& 1) == 0)))
1180 dxtrace(printk(KERN_DEBUG
"Fill tree: returned %d entries, "
1181 "next hash: %x\n", count
, *next_hash
));
1188 static inline int search_dirblock(struct buffer_head
*bh
,
1190 struct ext4_filename
*fname
,
1191 unsigned int offset
,
1192 struct ext4_dir_entry_2
**res_dir
)
1194 return ext4_search_dir(bh
, bh
->b_data
, dir
->i_sb
->s_blocksize
, dir
,
1195 fname
, offset
, res_dir
);
1199 * Directory block splitting, compacting
1203 * Create map of hash values, offsets, and sizes, stored at end of block.
1204 * Returns number of entries mapped.
1206 static int dx_make_map(struct inode
*dir
, struct ext4_dir_entry_2
*de
,
1207 unsigned blocksize
, struct dx_hash_info
*hinfo
,
1208 struct dx_map_entry
*map_tail
)
1211 char *base
= (char *) de
;
1212 struct dx_hash_info h
= *hinfo
;
1214 while ((char *) de
< base
+ blocksize
) {
1215 if (de
->name_len
&& de
->inode
) {
1216 ext4fs_dirhash(de
->name
, de
->name_len
, &h
);
1218 map_tail
->hash
= h
.hash
;
1219 map_tail
->offs
= ((char *) de
- base
)>>2;
1220 map_tail
->size
= le16_to_cpu(de
->rec_len
);
1224 /* XXX: do we need to check rec_len == 0 case? -Chris */
1225 de
= ext4_next_entry(de
, blocksize
);
1230 /* Sort map by hash value */
1231 static void dx_sort_map (struct dx_map_entry
*map
, unsigned count
)
1233 struct dx_map_entry
*p
, *q
, *top
= map
+ count
- 1;
1235 /* Combsort until bubble sort doesn't suck */
1237 count
= count
*10/13;
1238 if (count
- 9 < 2) /* 9, 10 -> 11 */
1240 for (p
= top
, q
= p
- count
; q
>= map
; p
--, q
--)
1241 if (p
->hash
< q
->hash
)
1244 /* Garden variety bubble sort */
1249 if (q
[1].hash
>= q
[0].hash
)
1257 static void dx_insert_block(struct dx_frame
*frame
, u32 hash
, ext4_lblk_t block
)
1259 struct dx_entry
*entries
= frame
->entries
;
1260 struct dx_entry
*old
= frame
->at
, *new = old
+ 1;
1261 int count
= dx_get_count(entries
);
1263 assert(count
< dx_get_limit(entries
));
1264 assert(old
< entries
+ count
);
1265 memmove(new + 1, new, (char *)(entries
+ count
) - (char *)(new));
1266 dx_set_hash(new, hash
);
1267 dx_set_block(new, block
);
1268 dx_set_count(entries
, count
+ 1);
1272 * Test whether a directory entry matches the filename being searched for.
1274 * Return: %true if the directory entry matches, otherwise %false.
1276 static inline bool ext4_match(const struct ext4_filename
*fname
,
1277 const struct ext4_dir_entry_2
*de
)
1279 struct fscrypt_name f
;
1284 f
.usr_fname
= fname
->usr_fname
;
1285 f
.disk_name
= fname
->disk_name
;
1286 #ifdef CONFIG_EXT4_FS_ENCRYPTION
1287 f
.crypto_buf
= fname
->crypto_buf
;
1289 return fscrypt_match_name(&f
, de
->name
, de
->name_len
);
1293 * Returns 0 if not found, -1 on failure, and 1 on success
1295 int ext4_search_dir(struct buffer_head
*bh
, char *search_buf
, int buf_size
,
1296 struct inode
*dir
, struct ext4_filename
*fname
,
1297 unsigned int offset
, struct ext4_dir_entry_2
**res_dir
)
1299 struct ext4_dir_entry_2
* de
;
1303 de
= (struct ext4_dir_entry_2
*)search_buf
;
1304 dlimit
= search_buf
+ buf_size
;
1305 while ((char *) de
< dlimit
) {
1306 /* this code is executed quadratically often */
1307 /* do minimal checking `by hand' */
1308 if ((char *) de
+ de
->name_len
<= dlimit
&&
1309 ext4_match(fname
, de
)) {
1310 /* found a match - just to be sure, do
1312 if (ext4_check_dir_entry(dir
, NULL
, de
, bh
, bh
->b_data
,
1313 bh
->b_size
, offset
))
1318 /* prevent looping on a bad block */
1319 de_len
= ext4_rec_len_from_disk(de
->rec_len
,
1320 dir
->i_sb
->s_blocksize
);
1324 de
= (struct ext4_dir_entry_2
*) ((char *) de
+ de_len
);
1329 static int is_dx_internal_node(struct inode
*dir
, ext4_lblk_t block
,
1330 struct ext4_dir_entry
*de
)
1332 struct super_block
*sb
= dir
->i_sb
;
1338 if (de
->inode
== 0 &&
1339 ext4_rec_len_from_disk(de
->rec_len
, sb
->s_blocksize
) ==
1348 * finds an entry in the specified directory with the wanted name. It
1349 * returns the cache buffer in which the entry was found, and the entry
1350 * itself (as a parameter - res_dir). It does NOT read the inode of the
1351 * entry - you'll have to do that yourself if you want to.
1353 * The returned buffer_head has ->b_count elevated. The caller is expected
1354 * to brelse() it when appropriate.
1356 static struct buffer_head
* ext4_find_entry (struct inode
*dir
,
1357 const struct qstr
*d_name
,
1358 struct ext4_dir_entry_2
**res_dir
,
1361 struct super_block
*sb
;
1362 struct buffer_head
*bh_use
[NAMEI_RA_SIZE
];
1363 struct buffer_head
*bh
, *ret
= NULL
;
1364 ext4_lblk_t start
, block
;
1365 const u8
*name
= d_name
->name
;
1366 size_t ra_max
= 0; /* Number of bh's in the readahead
1368 size_t ra_ptr
= 0; /* Current index into readahead
1370 ext4_lblk_t nblocks
;
1371 int i
, namelen
, retval
;
1372 struct ext4_filename fname
;
1376 namelen
= d_name
->len
;
1377 if (namelen
> EXT4_NAME_LEN
)
1380 retval
= ext4_fname_setup_filename(dir
, d_name
, 1, &fname
);
1381 if (retval
== -ENOENT
)
1384 return ERR_PTR(retval
);
1386 if (ext4_has_inline_data(dir
)) {
1387 int has_inline_data
= 1;
1388 ret
= ext4_find_inline_entry(dir
, &fname
, res_dir
,
1390 if (has_inline_data
) {
1393 goto cleanup_and_exit
;
1397 if ((namelen
<= 2) && (name
[0] == '.') &&
1398 (name
[1] == '.' || name
[1] == '\0')) {
1400 * "." or ".." will only be in the first block
1401 * NFS may look up ".."; "." should be handled by the VFS
1408 ret
= ext4_dx_find_entry(dir
, &fname
, res_dir
);
1410 * On success, or if the error was file not found,
1411 * return. Otherwise, fall back to doing a search the
1412 * old fashioned way.
1414 if (!IS_ERR(ret
) || PTR_ERR(ret
) != ERR_BAD_DX_DIR
)
1415 goto cleanup_and_exit
;
1416 dxtrace(printk(KERN_DEBUG
"ext4_find_entry: dx failed, "
1420 nblocks
= dir
->i_size
>> EXT4_BLOCK_SIZE_BITS(sb
);
1423 goto cleanup_and_exit
;
1425 start
= EXT4_I(dir
)->i_dir_start_lookup
;
1426 if (start
>= nblocks
)
1432 * We deal with the read-ahead logic here.
1435 if (ra_ptr
>= ra_max
) {
1436 /* Refill the readahead buffer */
1439 ra_max
= start
- block
;
1441 ra_max
= nblocks
- block
;
1442 ra_max
= min(ra_max
, ARRAY_SIZE(bh_use
));
1443 retval
= ext4_bread_batch(dir
, block
, ra_max
,
1444 false /* wait */, bh_use
);
1446 ret
= ERR_PTR(retval
);
1448 goto cleanup_and_exit
;
1451 if ((bh
= bh_use
[ra_ptr
++]) == NULL
)
1454 if (!buffer_uptodate(bh
)) {
1455 EXT4_ERROR_INODE(dir
, "reading directory lblock %lu",
1456 (unsigned long) block
);
1458 ret
= ERR_PTR(-EIO
);
1459 goto cleanup_and_exit
;
1461 if (!buffer_verified(bh
) &&
1462 !is_dx_internal_node(dir
, block
,
1463 (struct ext4_dir_entry
*)bh
->b_data
) &&
1464 !ext4_dirent_csum_verify(dir
,
1465 (struct ext4_dir_entry
*)bh
->b_data
)) {
1466 EXT4_ERROR_INODE(dir
, "checksumming directory "
1467 "block %lu", (unsigned long)block
);
1469 ret
= ERR_PTR(-EFSBADCRC
);
1470 goto cleanup_and_exit
;
1472 set_buffer_verified(bh
);
1473 i
= search_dirblock(bh
, dir
, &fname
,
1474 block
<< EXT4_BLOCK_SIZE_BITS(sb
), res_dir
);
1476 EXT4_I(dir
)->i_dir_start_lookup
= block
;
1478 goto cleanup_and_exit
;
1482 goto cleanup_and_exit
;
1485 if (++block
>= nblocks
)
1487 } while (block
!= start
);
1490 * If the directory has grown while we were searching, then
1491 * search the last part of the directory before giving up.
1494 nblocks
= dir
->i_size
>> EXT4_BLOCK_SIZE_BITS(sb
);
1495 if (block
< nblocks
) {
1501 /* Clean up the read-ahead blocks */
1502 for (; ra_ptr
< ra_max
; ra_ptr
++)
1503 brelse(bh_use
[ra_ptr
]);
1504 ext4_fname_free_filename(&fname
);
1508 static struct buffer_head
* ext4_dx_find_entry(struct inode
*dir
,
1509 struct ext4_filename
*fname
,
1510 struct ext4_dir_entry_2
**res_dir
)
1512 struct super_block
* sb
= dir
->i_sb
;
1513 struct dx_frame frames
[EXT4_HTREE_LEVEL
], *frame
;
1514 struct buffer_head
*bh
;
1518 #ifdef CONFIG_EXT4_FS_ENCRYPTION
1521 frame
= dx_probe(fname
, dir
, NULL
, frames
);
1523 return (struct buffer_head
*) frame
;
1525 block
= dx_get_block(frame
->at
);
1526 bh
= ext4_read_dirblock(dir
, block
, DIRENT_HTREE
);
1530 retval
= search_dirblock(bh
, dir
, fname
,
1531 block
<< EXT4_BLOCK_SIZE_BITS(sb
),
1537 bh
= ERR_PTR(ERR_BAD_DX_DIR
);
1541 /* Check to see if we should continue to search */
1542 retval
= ext4_htree_next_block(dir
, fname
->hinfo
.hash
, frame
,
1545 ext4_warning_inode(dir
,
1546 "error %d reading directory index block",
1548 bh
= ERR_PTR(retval
);
1551 } while (retval
== 1);
1555 dxtrace(printk(KERN_DEBUG
"%s not found\n", fname
->usr_fname
->name
));
1561 static struct dentry
*ext4_lookup(struct inode
*dir
, struct dentry
*dentry
, unsigned int flags
)
1563 struct inode
*inode
;
1564 struct ext4_dir_entry_2
*de
;
1565 struct buffer_head
*bh
;
1568 err
= fscrypt_prepare_lookup(dir
, dentry
, flags
);
1570 return ERR_PTR(err
);
1572 if (dentry
->d_name
.len
> EXT4_NAME_LEN
)
1573 return ERR_PTR(-ENAMETOOLONG
);
1575 bh
= ext4_find_entry(dir
, &dentry
->d_name
, &de
, NULL
);
1577 return (struct dentry
*) bh
;
1580 __u32 ino
= le32_to_cpu(de
->inode
);
1582 if (!ext4_valid_inum(dir
->i_sb
, ino
)) {
1583 EXT4_ERROR_INODE(dir
, "bad inode number: %u", ino
);
1584 return ERR_PTR(-EFSCORRUPTED
);
1586 if (unlikely(ino
== dir
->i_ino
)) {
1587 EXT4_ERROR_INODE(dir
, "'%pd' linked to parent dir",
1589 return ERR_PTR(-EFSCORRUPTED
);
1591 inode
= ext4_iget(dir
->i_sb
, ino
, EXT4_IGET_NORMAL
);
1592 if (inode
== ERR_PTR(-ESTALE
)) {
1593 EXT4_ERROR_INODE(dir
,
1594 "deleted inode referenced: %u",
1596 return ERR_PTR(-EFSCORRUPTED
);
1598 if (!IS_ERR(inode
) && ext4_encrypted_inode(dir
) &&
1599 (S_ISDIR(inode
->i_mode
) || S_ISLNK(inode
->i_mode
)) &&
1600 !fscrypt_has_permitted_context(dir
, inode
)) {
1601 ext4_warning(inode
->i_sb
,
1602 "Inconsistent encryption contexts: %lu/%lu",
1603 dir
->i_ino
, inode
->i_ino
);
1605 return ERR_PTR(-EPERM
);
1608 return d_splice_alias(inode
, dentry
);
1612 struct dentry
*ext4_get_parent(struct dentry
*child
)
1615 static const struct qstr dotdot
= QSTR_INIT("..", 2);
1616 struct ext4_dir_entry_2
* de
;
1617 struct buffer_head
*bh
;
1619 bh
= ext4_find_entry(d_inode(child
), &dotdot
, &de
, NULL
);
1621 return (struct dentry
*) bh
;
1623 return ERR_PTR(-ENOENT
);
1624 ino
= le32_to_cpu(de
->inode
);
1627 if (!ext4_valid_inum(child
->d_sb
, ino
)) {
1628 EXT4_ERROR_INODE(d_inode(child
),
1629 "bad parent inode number: %u", ino
);
1630 return ERR_PTR(-EFSCORRUPTED
);
1633 return d_obtain_alias(ext4_iget(child
->d_sb
, ino
, EXT4_IGET_NORMAL
));
1637 * Move count entries from end of map between two memory locations.
1638 * Returns pointer to last entry moved.
1640 static struct ext4_dir_entry_2
*
1641 dx_move_dirents(char *from
, char *to
, struct dx_map_entry
*map
, int count
,
1644 unsigned rec_len
= 0;
1647 struct ext4_dir_entry_2
*de
= (struct ext4_dir_entry_2
*)
1648 (from
+ (map
->offs
<<2));
1649 rec_len
= EXT4_DIR_REC_LEN(de
->name_len
);
1650 memcpy (to
, de
, rec_len
);
1651 ((struct ext4_dir_entry_2
*) to
)->rec_len
=
1652 ext4_rec_len_to_disk(rec_len
, blocksize
);
1657 return (struct ext4_dir_entry_2
*) (to
- rec_len
);
1661 * Compact each dir entry in the range to the minimal rec_len.
1662 * Returns pointer to last entry in range.
1664 static struct ext4_dir_entry_2
* dx_pack_dirents(char *base
, unsigned blocksize
)
1666 struct ext4_dir_entry_2
*next
, *to
, *prev
, *de
= (struct ext4_dir_entry_2
*) base
;
1667 unsigned rec_len
= 0;
1670 while ((char*)de
< base
+ blocksize
) {
1671 next
= ext4_next_entry(de
, blocksize
);
1672 if (de
->inode
&& de
->name_len
) {
1673 rec_len
= EXT4_DIR_REC_LEN(de
->name_len
);
1675 memmove(to
, de
, rec_len
);
1676 to
->rec_len
= ext4_rec_len_to_disk(rec_len
, blocksize
);
1678 to
= (struct ext4_dir_entry_2
*) (((char *) to
) + rec_len
);
1686 * Split a full leaf block to make room for a new dir entry.
1687 * Allocate a new block, and move entries so that they are approx. equally full.
1688 * Returns pointer to de in block into which the new entry will be inserted.
1690 static struct ext4_dir_entry_2
*do_split(handle_t
*handle
, struct inode
*dir
,
1691 struct buffer_head
**bh
,struct dx_frame
*frame
,
1692 struct dx_hash_info
*hinfo
)
1694 unsigned blocksize
= dir
->i_sb
->s_blocksize
;
1695 unsigned count
, continued
;
1696 struct buffer_head
*bh2
;
1697 ext4_lblk_t newblock
;
1699 struct dx_map_entry
*map
;
1700 char *data1
= (*bh
)->b_data
, *data2
;
1701 unsigned split
, move
, size
;
1702 struct ext4_dir_entry_2
*de
= NULL
, *de2
;
1703 struct ext4_dir_entry_tail
*t
;
1707 if (ext4_has_metadata_csum(dir
->i_sb
))
1708 csum_size
= sizeof(struct ext4_dir_entry_tail
);
1710 bh2
= ext4_append(handle
, dir
, &newblock
);
1714 return (struct ext4_dir_entry_2
*) bh2
;
1717 BUFFER_TRACE(*bh
, "get_write_access");
1718 err
= ext4_journal_get_write_access(handle
, *bh
);
1722 BUFFER_TRACE(frame
->bh
, "get_write_access");
1723 err
= ext4_journal_get_write_access(handle
, frame
->bh
);
1727 data2
= bh2
->b_data
;
1729 /* create map in the end of data2 block */
1730 map
= (struct dx_map_entry
*) (data2
+ blocksize
);
1731 count
= dx_make_map(dir
, (struct ext4_dir_entry_2
*) data1
,
1732 blocksize
, hinfo
, map
);
1734 dx_sort_map(map
, count
);
1735 /* Split the existing block in the middle, size-wise */
1738 for (i
= count
-1; i
>= 0; i
--) {
1739 /* is more than half of this entry in 2nd half of the block? */
1740 if (size
+ map
[i
].size
/2 > blocksize
/2)
1742 size
+= map
[i
].size
;
1745 /* map index at which we will split */
1746 split
= count
- move
;
1747 hash2
= map
[split
].hash
;
1748 continued
= hash2
== map
[split
- 1].hash
;
1749 dxtrace(printk(KERN_INFO
"Split block %lu at %x, %i/%i\n",
1750 (unsigned long)dx_get_block(frame
->at
),
1751 hash2
, split
, count
-split
));
1753 /* Fancy dance to stay within two buffers */
1754 de2
= dx_move_dirents(data1
, data2
, map
+ split
, count
- split
,
1756 de
= dx_pack_dirents(data1
, blocksize
);
1757 de
->rec_len
= ext4_rec_len_to_disk(data1
+ (blocksize
- csum_size
) -
1760 de2
->rec_len
= ext4_rec_len_to_disk(data2
+ (blocksize
- csum_size
) -
1764 t
= EXT4_DIRENT_TAIL(data2
, blocksize
);
1765 initialize_dirent_tail(t
, blocksize
);
1767 t
= EXT4_DIRENT_TAIL(data1
, blocksize
);
1768 initialize_dirent_tail(t
, blocksize
);
1771 dxtrace(dx_show_leaf(dir
, hinfo
, (struct ext4_dir_entry_2
*) data1
,
1773 dxtrace(dx_show_leaf(dir
, hinfo
, (struct ext4_dir_entry_2
*) data2
,
1776 /* Which block gets the new entry? */
1777 if (hinfo
->hash
>= hash2
) {
1781 dx_insert_block(frame
, hash2
+ continued
, newblock
);
1782 err
= ext4_handle_dirty_dirent_node(handle
, dir
, bh2
);
1785 err
= ext4_handle_dirty_dx_node(handle
, dir
, frame
->bh
);
1789 dxtrace(dx_show_index("frame", frame
->entries
));
1796 ext4_std_error(dir
->i_sb
, err
);
1797 return ERR_PTR(err
);
1800 int ext4_find_dest_de(struct inode
*dir
, struct inode
*inode
,
1801 struct buffer_head
*bh
,
1802 void *buf
, int buf_size
,
1803 struct ext4_filename
*fname
,
1804 struct ext4_dir_entry_2
**dest_de
)
1806 struct ext4_dir_entry_2
*de
;
1807 unsigned short reclen
= EXT4_DIR_REC_LEN(fname_len(fname
));
1809 unsigned int offset
= 0;
1812 de
= (struct ext4_dir_entry_2
*)buf
;
1813 top
= buf
+ buf_size
- reclen
;
1814 while ((char *) de
<= top
) {
1815 if (ext4_check_dir_entry(dir
, NULL
, de
, bh
,
1816 buf
, buf_size
, offset
))
1817 return -EFSCORRUPTED
;
1818 if (ext4_match(fname
, de
))
1820 nlen
= EXT4_DIR_REC_LEN(de
->name_len
);
1821 rlen
= ext4_rec_len_from_disk(de
->rec_len
, buf_size
);
1822 if ((de
->inode
? rlen
- nlen
: rlen
) >= reclen
)
1824 de
= (struct ext4_dir_entry_2
*)((char *)de
+ rlen
);
1827 if ((char *) de
> top
)
1834 void ext4_insert_dentry(struct inode
*inode
,
1835 struct ext4_dir_entry_2
*de
,
1837 struct ext4_filename
*fname
)
1842 nlen
= EXT4_DIR_REC_LEN(de
->name_len
);
1843 rlen
= ext4_rec_len_from_disk(de
->rec_len
, buf_size
);
1845 struct ext4_dir_entry_2
*de1
=
1846 (struct ext4_dir_entry_2
*)((char *)de
+ nlen
);
1847 de1
->rec_len
= ext4_rec_len_to_disk(rlen
- nlen
, buf_size
);
1848 de
->rec_len
= ext4_rec_len_to_disk(nlen
, buf_size
);
1851 de
->file_type
= EXT4_FT_UNKNOWN
;
1852 de
->inode
= cpu_to_le32(inode
->i_ino
);
1853 ext4_set_de_type(inode
->i_sb
, de
, inode
->i_mode
);
1854 de
->name_len
= fname_len(fname
);
1855 memcpy(de
->name
, fname_name(fname
), fname_len(fname
));
1859 * Add a new entry into a directory (leaf) block. If de is non-NULL,
1860 * it points to a directory entry which is guaranteed to be large
1861 * enough for new directory entry. If de is NULL, then
1862 * add_dirent_to_buf will attempt search the directory block for
1863 * space. It will return -ENOSPC if no space is available, and -EIO
1864 * and -EEXIST if directory entry already exists.
1866 static int add_dirent_to_buf(handle_t
*handle
, struct ext4_filename
*fname
,
1868 struct inode
*inode
, struct ext4_dir_entry_2
*de
,
1869 struct buffer_head
*bh
)
1871 unsigned int blocksize
= dir
->i_sb
->s_blocksize
;
1875 if (ext4_has_metadata_csum(inode
->i_sb
))
1876 csum_size
= sizeof(struct ext4_dir_entry_tail
);
1879 err
= ext4_find_dest_de(dir
, inode
, bh
, bh
->b_data
,
1880 blocksize
- csum_size
, fname
, &de
);
1884 BUFFER_TRACE(bh
, "get_write_access");
1885 err
= ext4_journal_get_write_access(handle
, bh
);
1887 ext4_std_error(dir
->i_sb
, err
);
1891 /* By now the buffer is marked for journaling */
1892 ext4_insert_dentry(inode
, de
, blocksize
, fname
);
1895 * XXX shouldn't update any times until successful
1896 * completion of syscall, but too many callers depend
1899 * XXX similarly, too many callers depend on
1900 * ext4_new_inode() setting the times, but error
1901 * recovery deletes the inode, so the worst that can
1902 * happen is that the times are slightly out of date
1903 * and/or different from the directory change time.
1905 dir
->i_mtime
= dir
->i_ctime
= current_time(dir
);
1906 ext4_update_dx_flag(dir
);
1907 inode_inc_iversion(dir
);
1908 ext4_mark_inode_dirty(handle
, dir
);
1909 BUFFER_TRACE(bh
, "call ext4_handle_dirty_metadata");
1910 err
= ext4_handle_dirty_dirent_node(handle
, dir
, bh
);
1912 ext4_std_error(dir
->i_sb
, err
);
1917 * This converts a one block unindexed directory to a 3 block indexed
1918 * directory, and adds the dentry to the indexed directory.
1920 static int make_indexed_dir(handle_t
*handle
, struct ext4_filename
*fname
,
1922 struct inode
*inode
, struct buffer_head
*bh
)
1924 struct buffer_head
*bh2
;
1925 struct dx_root
*root
;
1926 struct dx_frame frames
[EXT4_HTREE_LEVEL
], *frame
;
1927 struct dx_entry
*entries
;
1928 struct ext4_dir_entry_2
*de
, *de2
;
1929 struct ext4_dir_entry_tail
*t
;
1935 struct fake_dirent
*fde
;
1938 if (ext4_has_metadata_csum(inode
->i_sb
))
1939 csum_size
= sizeof(struct ext4_dir_entry_tail
);
1941 blocksize
= dir
->i_sb
->s_blocksize
;
1942 dxtrace(printk(KERN_DEBUG
"Creating index: inode %lu\n", dir
->i_ino
));
1943 BUFFER_TRACE(bh
, "get_write_access");
1944 retval
= ext4_journal_get_write_access(handle
, bh
);
1946 ext4_std_error(dir
->i_sb
, retval
);
1950 root
= (struct dx_root
*) bh
->b_data
;
1952 /* The 0th block becomes the root, move the dirents out */
1953 fde
= &root
->dotdot
;
1954 de
= (struct ext4_dir_entry_2
*)((char *)fde
+
1955 ext4_rec_len_from_disk(fde
->rec_len
, blocksize
));
1956 if ((char *) de
>= (((char *) root
) + blocksize
)) {
1957 EXT4_ERROR_INODE(dir
, "invalid rec_len for '..'");
1959 return -EFSCORRUPTED
;
1961 len
= ((char *) root
) + (blocksize
- csum_size
) - (char *) de
;
1963 /* Allocate new block for the 0th block's dirents */
1964 bh2
= ext4_append(handle
, dir
, &block
);
1967 return PTR_ERR(bh2
);
1969 ext4_set_inode_flag(dir
, EXT4_INODE_INDEX
);
1970 data1
= bh2
->b_data
;
1972 memcpy (data1
, de
, len
);
1973 de
= (struct ext4_dir_entry_2
*) data1
;
1975 while ((char *)(de2
= ext4_next_entry(de
, blocksize
)) < top
)
1977 de
->rec_len
= ext4_rec_len_to_disk(data1
+ (blocksize
- csum_size
) -
1982 t
= EXT4_DIRENT_TAIL(data1
, blocksize
);
1983 initialize_dirent_tail(t
, blocksize
);
1986 /* Initialize the root; the dot dirents already exist */
1987 de
= (struct ext4_dir_entry_2
*) (&root
->dotdot
);
1988 de
->rec_len
= ext4_rec_len_to_disk(blocksize
- EXT4_DIR_REC_LEN(2),
1990 memset (&root
->info
, 0, sizeof(root
->info
));
1991 root
->info
.info_length
= sizeof(root
->info
);
1992 root
->info
.hash_version
= EXT4_SB(dir
->i_sb
)->s_def_hash_version
;
1993 entries
= root
->entries
;
1994 dx_set_block(entries
, 1);
1995 dx_set_count(entries
, 1);
1996 dx_set_limit(entries
, dx_root_limit(dir
, sizeof(root
->info
)));
1998 /* Initialize as for dx_probe */
1999 fname
->hinfo
.hash_version
= root
->info
.hash_version
;
2000 if (fname
->hinfo
.hash_version
<= DX_HASH_TEA
)
2001 fname
->hinfo
.hash_version
+= EXT4_SB(dir
->i_sb
)->s_hash_unsigned
;
2002 fname
->hinfo
.seed
= EXT4_SB(dir
->i_sb
)->s_hash_seed
;
2003 ext4fs_dirhash(fname_name(fname
), fname_len(fname
), &fname
->hinfo
);
2005 memset(frames
, 0, sizeof(frames
));
2007 frame
->entries
= entries
;
2008 frame
->at
= entries
;
2011 retval
= ext4_handle_dirty_dx_node(handle
, dir
, frame
->bh
);
2014 retval
= ext4_handle_dirty_dirent_node(handle
, dir
, bh2
);
2018 de
= do_split(handle
,dir
, &bh2
, frame
, &fname
->hinfo
);
2020 retval
= PTR_ERR(de
);
2024 retval
= add_dirent_to_buf(handle
, fname
, dir
, inode
, de
, bh2
);
2027 * Even if the block split failed, we have to properly write
2028 * out all the changes we did so far. Otherwise we can end up
2029 * with corrupted filesystem.
2032 ext4_mark_inode_dirty(handle
, dir
);
2041 * adds a file entry to the specified directory, using the same
2042 * semantics as ext4_find_entry(). It returns NULL if it failed.
2044 * NOTE!! The inode part of 'de' is left at 0 - which means you
2045 * may not sleep between calling this and putting something into
2046 * the entry, as someone else might have used it while you slept.
2048 static int ext4_add_entry(handle_t
*handle
, struct dentry
*dentry
,
2049 struct inode
*inode
)
2051 struct inode
*dir
= d_inode(dentry
->d_parent
);
2052 struct buffer_head
*bh
= NULL
;
2053 struct ext4_dir_entry_2
*de
;
2054 struct ext4_dir_entry_tail
*t
;
2055 struct super_block
*sb
;
2056 struct ext4_filename fname
;
2060 ext4_lblk_t block
, blocks
;
2063 if (ext4_has_metadata_csum(inode
->i_sb
))
2064 csum_size
= sizeof(struct ext4_dir_entry_tail
);
2067 blocksize
= sb
->s_blocksize
;
2068 if (!dentry
->d_name
.len
)
2071 retval
= ext4_fname_setup_filename(dir
, &dentry
->d_name
, 0, &fname
);
2075 if (ext4_has_inline_data(dir
)) {
2076 retval
= ext4_try_add_inline_entry(handle
, &fname
, dir
, inode
);
2086 retval
= ext4_dx_add_entry(handle
, &fname
, dir
, inode
);
2087 if (!retval
|| (retval
!= ERR_BAD_DX_DIR
))
2089 /* Can we just ignore htree data? */
2090 if (ext4_has_metadata_csum(sb
)) {
2091 EXT4_ERROR_INODE(dir
,
2092 "Directory has corrupted htree index.");
2093 retval
= -EFSCORRUPTED
;
2096 ext4_clear_inode_flag(dir
, EXT4_INODE_INDEX
);
2098 ext4_mark_inode_dirty(handle
, dir
);
2100 blocks
= dir
->i_size
>> sb
->s_blocksize_bits
;
2101 for (block
= 0; block
< blocks
; block
++) {
2102 bh
= ext4_read_dirblock(dir
, block
, DIRENT
);
2104 bh
= ext4_bread(handle
, dir
, block
,
2105 EXT4_GET_BLOCKS_CREATE
);
2106 goto add_to_new_block
;
2109 retval
= PTR_ERR(bh
);
2113 retval
= add_dirent_to_buf(handle
, &fname
, dir
, inode
,
2115 if (retval
!= -ENOSPC
)
2118 if (blocks
== 1 && !dx_fallback
&&
2119 ext4_has_feature_dir_index(sb
)) {
2120 retval
= make_indexed_dir(handle
, &fname
, dir
,
2122 bh
= NULL
; /* make_indexed_dir releases bh */
2127 bh
= ext4_append(handle
, dir
, &block
);
2130 retval
= PTR_ERR(bh
);
2134 de
= (struct ext4_dir_entry_2
*) bh
->b_data
;
2136 de
->rec_len
= ext4_rec_len_to_disk(blocksize
- csum_size
, blocksize
);
2139 t
= EXT4_DIRENT_TAIL(bh
->b_data
, blocksize
);
2140 initialize_dirent_tail(t
, blocksize
);
2143 retval
= add_dirent_to_buf(handle
, &fname
, dir
, inode
, de
, bh
);
2145 ext4_fname_free_filename(&fname
);
2148 ext4_set_inode_state(inode
, EXT4_STATE_NEWENTRY
);
2153 * Returns 0 for success, or a negative error value
2155 static int ext4_dx_add_entry(handle_t
*handle
, struct ext4_filename
*fname
,
2156 struct inode
*dir
, struct inode
*inode
)
2158 struct dx_frame frames
[EXT4_HTREE_LEVEL
], *frame
;
2159 struct dx_entry
*entries
, *at
;
2160 struct buffer_head
*bh
;
2161 struct super_block
*sb
= dir
->i_sb
;
2162 struct ext4_dir_entry_2
*de
;
2168 frame
= dx_probe(fname
, dir
, NULL
, frames
);
2170 return PTR_ERR(frame
);
2171 entries
= frame
->entries
;
2173 bh
= ext4_read_dirblock(dir
, dx_get_block(frame
->at
), DIRENT_HTREE
);
2180 BUFFER_TRACE(bh
, "get_write_access");
2181 err
= ext4_journal_get_write_access(handle
, bh
);
2185 err
= add_dirent_to_buf(handle
, fname
, dir
, inode
, NULL
, bh
);
2190 /* Block full, should compress but for now just split */
2191 dxtrace(printk(KERN_DEBUG
"using %u of %u node entries\n",
2192 dx_get_count(entries
), dx_get_limit(entries
)));
2193 /* Need to split index? */
2194 if (dx_get_count(entries
) == dx_get_limit(entries
)) {
2195 ext4_lblk_t newblock
;
2196 int levels
= frame
- frames
+ 1;
2197 unsigned int icount
;
2199 struct dx_entry
*entries2
;
2200 struct dx_node
*node2
;
2201 struct buffer_head
*bh2
;
2203 while (frame
> frames
) {
2204 if (dx_get_count((frame
- 1)->entries
) <
2205 dx_get_limit((frame
- 1)->entries
)) {
2209 frame
--; /* split higher index block */
2211 entries
= frame
->entries
;
2214 if (add_level
&& levels
== ext4_dir_htree_level(sb
)) {
2215 ext4_warning(sb
, "Directory (ino: %lu) index full, "
2216 "reach max htree level :%d",
2217 dir
->i_ino
, levels
);
2218 if (ext4_dir_htree_level(sb
) < EXT4_HTREE_LEVEL
) {
2219 ext4_warning(sb
, "Large directory feature is "
2220 "not enabled on this "
2226 icount
= dx_get_count(entries
);
2227 bh2
= ext4_append(handle
, dir
, &newblock
);
2232 node2
= (struct dx_node
*)(bh2
->b_data
);
2233 entries2
= node2
->entries
;
2234 memset(&node2
->fake
, 0, sizeof(struct fake_dirent
));
2235 node2
->fake
.rec_len
= ext4_rec_len_to_disk(sb
->s_blocksize
,
2237 BUFFER_TRACE(frame
->bh
, "get_write_access");
2238 err
= ext4_journal_get_write_access(handle
, frame
->bh
);
2242 unsigned icount1
= icount
/2, icount2
= icount
- icount1
;
2243 unsigned hash2
= dx_get_hash(entries
+ icount1
);
2244 dxtrace(printk(KERN_DEBUG
"Split index %i/%i\n",
2247 BUFFER_TRACE(frame
->bh
, "get_write_access"); /* index root */
2248 err
= ext4_journal_get_write_access(handle
,
2253 memcpy((char *) entries2
, (char *) (entries
+ icount1
),
2254 icount2
* sizeof(struct dx_entry
));
2255 dx_set_count(entries
, icount1
);
2256 dx_set_count(entries2
, icount2
);
2257 dx_set_limit(entries2
, dx_node_limit(dir
));
2259 /* Which index block gets the new entry? */
2260 if (at
- entries
>= icount1
) {
2261 frame
->at
= at
= at
- entries
- icount1
+ entries2
;
2262 frame
->entries
= entries
= entries2
;
2263 swap(frame
->bh
, bh2
);
2265 dx_insert_block((frame
- 1), hash2
, newblock
);
2266 dxtrace(dx_show_index("node", frame
->entries
));
2267 dxtrace(dx_show_index("node",
2268 ((struct dx_node
*) bh2
->b_data
)->entries
));
2269 err
= ext4_handle_dirty_dx_node(handle
, dir
, bh2
);
2273 err
= ext4_handle_dirty_dx_node(handle
, dir
,
2278 err
= ext4_handle_dirty_dx_node(handle
, dir
,
2283 struct dx_root
*dxroot
;
2284 memcpy((char *) entries2
, (char *) entries
,
2285 icount
* sizeof(struct dx_entry
));
2286 dx_set_limit(entries2
, dx_node_limit(dir
));
2289 dx_set_count(entries
, 1);
2290 dx_set_block(entries
+ 0, newblock
);
2291 dxroot
= (struct dx_root
*)frames
[0].bh
->b_data
;
2292 dxroot
->info
.indirect_levels
+= 1;
2293 dxtrace(printk(KERN_DEBUG
2294 "Creating %d level index...\n",
2295 dxroot
->info
.indirect_levels
));
2296 err
= ext4_handle_dirty_dx_node(handle
, dir
, frame
->bh
);
2299 err
= ext4_handle_dirty_dx_node(handle
, dir
, bh2
);
2305 de
= do_split(handle
, dir
, &bh
, frame
, &fname
->hinfo
);
2310 err
= add_dirent_to_buf(handle
, fname
, dir
, inode
, de
, bh
);
2314 ext4_std_error(dir
->i_sb
, err
); /* this is a no-op if err == 0 */
2318 /* @restart is true means htree-path has been changed, we need to
2319 * repeat dx_probe() to find out valid htree-path
2321 if (restart
&& err
== 0)
2327 * ext4_generic_delete_entry deletes a directory entry by merging it
2328 * with the previous entry
2330 int ext4_generic_delete_entry(handle_t
*handle
,
2332 struct ext4_dir_entry_2
*de_del
,
2333 struct buffer_head
*bh
,
2338 struct ext4_dir_entry_2
*de
, *pde
;
2339 unsigned int blocksize
= dir
->i_sb
->s_blocksize
;
2344 de
= (struct ext4_dir_entry_2
*)entry_buf
;
2345 while (i
< buf_size
- csum_size
) {
2346 if (ext4_check_dir_entry(dir
, NULL
, de
, bh
,
2347 bh
->b_data
, bh
->b_size
, i
))
2348 return -EFSCORRUPTED
;
2351 pde
->rec_len
= ext4_rec_len_to_disk(
2352 ext4_rec_len_from_disk(pde
->rec_len
,
2354 ext4_rec_len_from_disk(de
->rec_len
,
2359 inode_inc_iversion(dir
);
2362 i
+= ext4_rec_len_from_disk(de
->rec_len
, blocksize
);
2364 de
= ext4_next_entry(de
, blocksize
);
2369 static int ext4_delete_entry(handle_t
*handle
,
2371 struct ext4_dir_entry_2
*de_del
,
2372 struct buffer_head
*bh
)
2374 int err
, csum_size
= 0;
2376 if (ext4_has_inline_data(dir
)) {
2377 int has_inline_data
= 1;
2378 err
= ext4_delete_inline_entry(handle
, dir
, de_del
, bh
,
2380 if (has_inline_data
)
2384 if (ext4_has_metadata_csum(dir
->i_sb
))
2385 csum_size
= sizeof(struct ext4_dir_entry_tail
);
2387 BUFFER_TRACE(bh
, "get_write_access");
2388 err
= ext4_journal_get_write_access(handle
, bh
);
2392 err
= ext4_generic_delete_entry(handle
, dir
, de_del
,
2394 dir
->i_sb
->s_blocksize
, csum_size
);
2398 BUFFER_TRACE(bh
, "call ext4_handle_dirty_metadata");
2399 err
= ext4_handle_dirty_dirent_node(handle
, dir
, bh
);
2406 ext4_std_error(dir
->i_sb
, err
);
2411 * Set directory link count to 1 if nlinks > EXT4_LINK_MAX, or if nlinks == 2
2412 * since this indicates that nlinks count was previously 1 to avoid overflowing
2413 * the 16-bit i_links_count field on disk. Directories with i_nlink == 1 mean
2414 * that subdirectory link counts are not being maintained accurately.
2416 * The caller has already checked for i_nlink overflow in case the DIR_LINK
2417 * feature is not enabled and returned -EMLINK. The is_dx() check is a proxy
2418 * for checking S_ISDIR(inode) (since the INODE_INDEX feature will not be set
2419 * on regular files) and to avoid creating huge/slow non-HTREE directories.
2421 static void ext4_inc_count(handle_t
*handle
, struct inode
*inode
)
2425 (inode
->i_nlink
> EXT4_LINK_MAX
|| inode
->i_nlink
== 2))
2426 set_nlink(inode
, 1);
2430 * If a directory had nlink == 1, then we should let it be 1. This indicates
2431 * directory has >EXT4_LINK_MAX subdirs.
2433 static void ext4_dec_count(handle_t
*handle
, struct inode
*inode
)
2435 if (!S_ISDIR(inode
->i_mode
) || inode
->i_nlink
> 2)
2440 static int ext4_add_nondir(handle_t
*handle
,
2441 struct dentry
*dentry
, struct inode
*inode
)
2443 int err
= ext4_add_entry(handle
, dentry
, inode
);
2445 ext4_mark_inode_dirty(handle
, inode
);
2446 d_instantiate_new(dentry
, inode
);
2450 unlock_new_inode(inode
);
2456 * By the time this is called, we already have created
2457 * the directory cache entry for the new file, but it
2458 * is so far negative - it has no inode.
2460 * If the create succeeds, we fill in the inode information
2461 * with d_instantiate().
2463 static int ext4_create(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
,
2467 struct inode
*inode
;
2468 int err
, credits
, retries
= 0;
2470 err
= dquot_initialize(dir
);
2474 credits
= (EXT4_DATA_TRANS_BLOCKS(dir
->i_sb
) +
2475 EXT4_INDEX_EXTRA_TRANS_BLOCKS
+ 3);
2477 inode
= ext4_new_inode_start_handle(dir
, mode
, &dentry
->d_name
, 0,
2478 NULL
, EXT4_HT_DIR
, credits
);
2479 handle
= ext4_journal_current_handle();
2480 err
= PTR_ERR(inode
);
2481 if (!IS_ERR(inode
)) {
2482 inode
->i_op
= &ext4_file_inode_operations
;
2483 inode
->i_fop
= &ext4_file_operations
;
2484 ext4_set_aops(inode
);
2485 err
= ext4_add_nondir(handle
, dentry
, inode
);
2486 if (!err
&& IS_DIRSYNC(dir
))
2487 ext4_handle_sync(handle
);
2490 ext4_journal_stop(handle
);
2491 if (err
== -ENOSPC
&& ext4_should_retry_alloc(dir
->i_sb
, &retries
))
2496 static int ext4_mknod(struct inode
*dir
, struct dentry
*dentry
,
2497 umode_t mode
, dev_t rdev
)
2500 struct inode
*inode
;
2501 int err
, credits
, retries
= 0;
2503 err
= dquot_initialize(dir
);
2507 credits
= (EXT4_DATA_TRANS_BLOCKS(dir
->i_sb
) +
2508 EXT4_INDEX_EXTRA_TRANS_BLOCKS
+ 3);
2510 inode
= ext4_new_inode_start_handle(dir
, mode
, &dentry
->d_name
, 0,
2511 NULL
, EXT4_HT_DIR
, credits
);
2512 handle
= ext4_journal_current_handle();
2513 err
= PTR_ERR(inode
);
2514 if (!IS_ERR(inode
)) {
2515 init_special_inode(inode
, inode
->i_mode
, rdev
);
2516 inode
->i_op
= &ext4_special_inode_operations
;
2517 err
= ext4_add_nondir(handle
, dentry
, inode
);
2518 if (!err
&& IS_DIRSYNC(dir
))
2519 ext4_handle_sync(handle
);
2522 ext4_journal_stop(handle
);
2523 if (err
== -ENOSPC
&& ext4_should_retry_alloc(dir
->i_sb
, &retries
))
2528 static int ext4_tmpfile(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
)
2531 struct inode
*inode
;
2532 int err
, retries
= 0;
2534 err
= dquot_initialize(dir
);
2539 inode
= ext4_new_inode_start_handle(dir
, mode
,
2542 EXT4_MAXQUOTAS_INIT_BLOCKS(dir
->i_sb
) +
2543 4 + EXT4_XATTR_TRANS_BLOCKS
);
2544 handle
= ext4_journal_current_handle();
2545 err
= PTR_ERR(inode
);
2546 if (!IS_ERR(inode
)) {
2547 inode
->i_op
= &ext4_file_inode_operations
;
2548 inode
->i_fop
= &ext4_file_operations
;
2549 ext4_set_aops(inode
);
2550 d_tmpfile(dentry
, inode
);
2551 err
= ext4_orphan_add(handle
, inode
);
2553 goto err_unlock_inode
;
2554 mark_inode_dirty(inode
);
2555 unlock_new_inode(inode
);
2558 ext4_journal_stop(handle
);
2559 if (err
== -ENOSPC
&& ext4_should_retry_alloc(dir
->i_sb
, &retries
))
2563 ext4_journal_stop(handle
);
2564 unlock_new_inode(inode
);
2568 struct ext4_dir_entry_2
*ext4_init_dot_dotdot(struct inode
*inode
,
2569 struct ext4_dir_entry_2
*de
,
2570 int blocksize
, int csum_size
,
2571 unsigned int parent_ino
, int dotdot_real_len
)
2573 de
->inode
= cpu_to_le32(inode
->i_ino
);
2575 de
->rec_len
= ext4_rec_len_to_disk(EXT4_DIR_REC_LEN(de
->name_len
),
2577 strcpy(de
->name
, ".");
2578 ext4_set_de_type(inode
->i_sb
, de
, S_IFDIR
);
2580 de
= ext4_next_entry(de
, blocksize
);
2581 de
->inode
= cpu_to_le32(parent_ino
);
2583 if (!dotdot_real_len
)
2584 de
->rec_len
= ext4_rec_len_to_disk(blocksize
-
2585 (csum_size
+ EXT4_DIR_REC_LEN(1)),
2588 de
->rec_len
= ext4_rec_len_to_disk(
2589 EXT4_DIR_REC_LEN(de
->name_len
), blocksize
);
2590 strcpy(de
->name
, "..");
2591 ext4_set_de_type(inode
->i_sb
, de
, S_IFDIR
);
2593 return ext4_next_entry(de
, blocksize
);
2596 static int ext4_init_new_dir(handle_t
*handle
, struct inode
*dir
,
2597 struct inode
*inode
)
2599 struct buffer_head
*dir_block
= NULL
;
2600 struct ext4_dir_entry_2
*de
;
2601 struct ext4_dir_entry_tail
*t
;
2602 ext4_lblk_t block
= 0;
2603 unsigned int blocksize
= dir
->i_sb
->s_blocksize
;
2607 if (ext4_has_metadata_csum(dir
->i_sb
))
2608 csum_size
= sizeof(struct ext4_dir_entry_tail
);
2610 if (ext4_test_inode_state(inode
, EXT4_STATE_MAY_INLINE_DATA
)) {
2611 err
= ext4_try_create_inline_dir(handle
, dir
, inode
);
2612 if (err
< 0 && err
!= -ENOSPC
)
2619 dir_block
= ext4_append(handle
, inode
, &block
);
2620 if (IS_ERR(dir_block
))
2621 return PTR_ERR(dir_block
);
2622 de
= (struct ext4_dir_entry_2
*)dir_block
->b_data
;
2623 ext4_init_dot_dotdot(inode
, de
, blocksize
, csum_size
, dir
->i_ino
, 0);
2624 set_nlink(inode
, 2);
2626 t
= EXT4_DIRENT_TAIL(dir_block
->b_data
, blocksize
);
2627 initialize_dirent_tail(t
, blocksize
);
2630 BUFFER_TRACE(dir_block
, "call ext4_handle_dirty_metadata");
2631 err
= ext4_handle_dirty_dirent_node(handle
, inode
, dir_block
);
2634 set_buffer_verified(dir_block
);
2640 static int ext4_mkdir(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
)
2643 struct inode
*inode
;
2644 int err
, credits
, retries
= 0;
2646 if (EXT4_DIR_LINK_MAX(dir
))
2649 err
= dquot_initialize(dir
);
2653 credits
= (EXT4_DATA_TRANS_BLOCKS(dir
->i_sb
) +
2654 EXT4_INDEX_EXTRA_TRANS_BLOCKS
+ 3);
2656 inode
= ext4_new_inode_start_handle(dir
, S_IFDIR
| mode
,
2658 0, NULL
, EXT4_HT_DIR
, credits
);
2659 handle
= ext4_journal_current_handle();
2660 err
= PTR_ERR(inode
);
2664 inode
->i_op
= &ext4_dir_inode_operations
;
2665 inode
->i_fop
= &ext4_dir_operations
;
2666 err
= ext4_init_new_dir(handle
, dir
, inode
);
2668 goto out_clear_inode
;
2669 err
= ext4_mark_inode_dirty(handle
, inode
);
2671 err
= ext4_add_entry(handle
, dentry
, inode
);
2675 unlock_new_inode(inode
);
2676 ext4_mark_inode_dirty(handle
, inode
);
2680 ext4_inc_count(handle
, dir
);
2681 ext4_update_dx_flag(dir
);
2682 err
= ext4_mark_inode_dirty(handle
, dir
);
2684 goto out_clear_inode
;
2685 d_instantiate_new(dentry
, inode
);
2686 if (IS_DIRSYNC(dir
))
2687 ext4_handle_sync(handle
);
2691 ext4_journal_stop(handle
);
2692 if (err
== -ENOSPC
&& ext4_should_retry_alloc(dir
->i_sb
, &retries
))
2698 * routine to check that the specified directory is empty (for rmdir)
2700 bool ext4_empty_dir(struct inode
*inode
)
2702 unsigned int offset
;
2703 struct buffer_head
*bh
;
2704 struct ext4_dir_entry_2
*de
;
2705 struct super_block
*sb
;
2707 if (ext4_has_inline_data(inode
)) {
2708 int has_inline_data
= 1;
2711 ret
= empty_inline_dir(inode
, &has_inline_data
);
2712 if (has_inline_data
)
2717 if (inode
->i_size
< EXT4_DIR_REC_LEN(1) + EXT4_DIR_REC_LEN(2)) {
2718 EXT4_ERROR_INODE(inode
, "invalid size");
2721 /* The first directory block must not be a hole,
2722 * so treat it as DIRENT_HTREE
2724 bh
= ext4_read_dirblock(inode
, 0, DIRENT_HTREE
);
2728 de
= (struct ext4_dir_entry_2
*) bh
->b_data
;
2729 if (ext4_check_dir_entry(inode
, NULL
, de
, bh
, bh
->b_data
, bh
->b_size
,
2731 le32_to_cpu(de
->inode
) != inode
->i_ino
|| strcmp(".", de
->name
)) {
2732 ext4_warning_inode(inode
, "directory missing '.'");
2736 offset
= ext4_rec_len_from_disk(de
->rec_len
, sb
->s_blocksize
);
2737 de
= ext4_next_entry(de
, sb
->s_blocksize
);
2738 if (ext4_check_dir_entry(inode
, NULL
, de
, bh
, bh
->b_data
, bh
->b_size
,
2740 le32_to_cpu(de
->inode
) == 0 || strcmp("..", de
->name
)) {
2741 ext4_warning_inode(inode
, "directory missing '..'");
2745 offset
+= ext4_rec_len_from_disk(de
->rec_len
, sb
->s_blocksize
);
2746 while (offset
< inode
->i_size
) {
2747 if (!(offset
& (sb
->s_blocksize
- 1))) {
2748 unsigned int lblock
;
2750 lblock
= offset
>> EXT4_BLOCK_SIZE_BITS(sb
);
2751 bh
= ext4_read_dirblock(inode
, lblock
, EITHER
);
2753 offset
+= sb
->s_blocksize
;
2759 de
= (struct ext4_dir_entry_2
*) (bh
->b_data
+
2760 (offset
& (sb
->s_blocksize
- 1)));
2761 if (ext4_check_dir_entry(inode
, NULL
, de
, bh
,
2762 bh
->b_data
, bh
->b_size
, offset
)) {
2763 offset
= (offset
| (sb
->s_blocksize
- 1)) + 1;
2766 if (le32_to_cpu(de
->inode
)) {
2770 offset
+= ext4_rec_len_from_disk(de
->rec_len
, sb
->s_blocksize
);
2777 * ext4_orphan_add() links an unlinked or truncated inode into a list of
2778 * such inodes, starting at the superblock, in case we crash before the
2779 * file is closed/deleted, or in case the inode truncate spans multiple
2780 * transactions and the last transaction is not recovered after a crash.
2782 * At filesystem recovery time, we walk this list deleting unlinked
2783 * inodes and truncating linked inodes in ext4_orphan_cleanup().
2785 * Orphan list manipulation functions must be called under i_mutex unless
2786 * we are just creating the inode or deleting it.
2788 int ext4_orphan_add(handle_t
*handle
, struct inode
*inode
)
2790 struct super_block
*sb
= inode
->i_sb
;
2791 struct ext4_sb_info
*sbi
= EXT4_SB(sb
);
2792 struct ext4_iloc iloc
;
2796 if (!sbi
->s_journal
|| is_bad_inode(inode
))
2799 WARN_ON_ONCE(!(inode
->i_state
& (I_NEW
| I_FREEING
)) &&
2800 !inode_is_locked(inode
));
2802 * Exit early if inode already is on orphan list. This is a big speedup
2803 * since we don't have to contend on the global s_orphan_lock.
2805 if (!list_empty(&EXT4_I(inode
)->i_orphan
))
2809 * Orphan handling is only valid for files with data blocks
2810 * being truncated, or files being unlinked. Note that we either
2811 * hold i_mutex, or the inode can not be referenced from outside,
2812 * so i_nlink should not be bumped due to race
2814 J_ASSERT((S_ISREG(inode
->i_mode
) || S_ISDIR(inode
->i_mode
) ||
2815 S_ISLNK(inode
->i_mode
)) || inode
->i_nlink
== 0);
2817 BUFFER_TRACE(sbi
->s_sbh
, "get_write_access");
2818 err
= ext4_journal_get_write_access(handle
, sbi
->s_sbh
);
2822 err
= ext4_reserve_inode_write(handle
, inode
, &iloc
);
2826 mutex_lock(&sbi
->s_orphan_lock
);
2828 * Due to previous errors inode may be already a part of on-disk
2829 * orphan list. If so skip on-disk list modification.
2831 if (!NEXT_ORPHAN(inode
) || NEXT_ORPHAN(inode
) >
2832 (le32_to_cpu(sbi
->s_es
->s_inodes_count
))) {
2833 /* Insert this inode at the head of the on-disk orphan list */
2834 NEXT_ORPHAN(inode
) = le32_to_cpu(sbi
->s_es
->s_last_orphan
);
2835 sbi
->s_es
->s_last_orphan
= cpu_to_le32(inode
->i_ino
);
2838 list_add(&EXT4_I(inode
)->i_orphan
, &sbi
->s_orphan
);
2839 mutex_unlock(&sbi
->s_orphan_lock
);
2842 err
= ext4_handle_dirty_super(handle
, sb
);
2843 rc
= ext4_mark_iloc_dirty(handle
, inode
, &iloc
);
2848 * We have to remove inode from in-memory list if
2849 * addition to on disk orphan list failed. Stray orphan
2850 * list entries can cause panics at unmount time.
2852 mutex_lock(&sbi
->s_orphan_lock
);
2853 list_del_init(&EXT4_I(inode
)->i_orphan
);
2854 mutex_unlock(&sbi
->s_orphan_lock
);
2859 jbd_debug(4, "superblock will point to %lu\n", inode
->i_ino
);
2860 jbd_debug(4, "orphan inode %lu will point to %d\n",
2861 inode
->i_ino
, NEXT_ORPHAN(inode
));
2863 ext4_std_error(sb
, err
);
2868 * ext4_orphan_del() removes an unlinked or truncated inode from the list
2869 * of such inodes stored on disk, because it is finally being cleaned up.
2871 int ext4_orphan_del(handle_t
*handle
, struct inode
*inode
)
2873 struct list_head
*prev
;
2874 struct ext4_inode_info
*ei
= EXT4_I(inode
);
2875 struct ext4_sb_info
*sbi
= EXT4_SB(inode
->i_sb
);
2877 struct ext4_iloc iloc
;
2880 if (!sbi
->s_journal
&& !(sbi
->s_mount_state
& EXT4_ORPHAN_FS
))
2883 WARN_ON_ONCE(!(inode
->i_state
& (I_NEW
| I_FREEING
)) &&
2884 !inode_is_locked(inode
));
2885 /* Do this quick check before taking global s_orphan_lock. */
2886 if (list_empty(&ei
->i_orphan
))
2890 /* Grab inode buffer early before taking global s_orphan_lock */
2891 err
= ext4_reserve_inode_write(handle
, inode
, &iloc
);
2894 mutex_lock(&sbi
->s_orphan_lock
);
2895 jbd_debug(4, "remove inode %lu from orphan list\n", inode
->i_ino
);
2897 prev
= ei
->i_orphan
.prev
;
2898 list_del_init(&ei
->i_orphan
);
2900 /* If we're on an error path, we may not have a valid
2901 * transaction handle with which to update the orphan list on
2902 * disk, but we still need to remove the inode from the linked
2903 * list in memory. */
2904 if (!handle
|| err
) {
2905 mutex_unlock(&sbi
->s_orphan_lock
);
2909 ino_next
= NEXT_ORPHAN(inode
);
2910 if (prev
== &sbi
->s_orphan
) {
2911 jbd_debug(4, "superblock will point to %u\n", ino_next
);
2912 BUFFER_TRACE(sbi
->s_sbh
, "get_write_access");
2913 err
= ext4_journal_get_write_access(handle
, sbi
->s_sbh
);
2915 mutex_unlock(&sbi
->s_orphan_lock
);
2918 sbi
->s_es
->s_last_orphan
= cpu_to_le32(ino_next
);
2919 mutex_unlock(&sbi
->s_orphan_lock
);
2920 err
= ext4_handle_dirty_super(handle
, inode
->i_sb
);
2922 struct ext4_iloc iloc2
;
2923 struct inode
*i_prev
=
2924 &list_entry(prev
, struct ext4_inode_info
, i_orphan
)->vfs_inode
;
2926 jbd_debug(4, "orphan inode %lu will point to %u\n",
2927 i_prev
->i_ino
, ino_next
);
2928 err
= ext4_reserve_inode_write(handle
, i_prev
, &iloc2
);
2930 mutex_unlock(&sbi
->s_orphan_lock
);
2933 NEXT_ORPHAN(i_prev
) = ino_next
;
2934 err
= ext4_mark_iloc_dirty(handle
, i_prev
, &iloc2
);
2935 mutex_unlock(&sbi
->s_orphan_lock
);
2939 NEXT_ORPHAN(inode
) = 0;
2940 err
= ext4_mark_iloc_dirty(handle
, inode
, &iloc
);
2942 ext4_std_error(inode
->i_sb
, err
);
2950 static int ext4_rmdir(struct inode
*dir
, struct dentry
*dentry
)
2953 struct inode
*inode
;
2954 struct buffer_head
*bh
;
2955 struct ext4_dir_entry_2
*de
;
2956 handle_t
*handle
= NULL
;
2958 if (unlikely(ext4_forced_shutdown(EXT4_SB(dir
->i_sb
))))
2961 /* Initialize quotas before so that eventual writes go in
2962 * separate transaction */
2963 retval
= dquot_initialize(dir
);
2966 retval
= dquot_initialize(d_inode(dentry
));
2971 bh
= ext4_find_entry(dir
, &dentry
->d_name
, &de
, NULL
);
2977 inode
= d_inode(dentry
);
2979 retval
= -EFSCORRUPTED
;
2980 if (le32_to_cpu(de
->inode
) != inode
->i_ino
)
2983 retval
= -ENOTEMPTY
;
2984 if (!ext4_empty_dir(inode
))
2987 handle
= ext4_journal_start(dir
, EXT4_HT_DIR
,
2988 EXT4_DATA_TRANS_BLOCKS(dir
->i_sb
));
2989 if (IS_ERR(handle
)) {
2990 retval
= PTR_ERR(handle
);
2995 if (IS_DIRSYNC(dir
))
2996 ext4_handle_sync(handle
);
2998 retval
= ext4_delete_entry(handle
, dir
, de
, bh
);
3001 if (!EXT4_DIR_LINK_EMPTY(inode
))
3002 ext4_warning_inode(inode
,
3003 "empty directory '%.*s' has too many links (%u)",
3004 dentry
->d_name
.len
, dentry
->d_name
.name
,
3006 inode_inc_iversion(inode
);
3008 /* There's no need to set i_disksize: the fact that i_nlink is
3009 * zero will ensure that the right thing happens during any
3012 ext4_orphan_add(handle
, inode
);
3013 inode
->i_ctime
= dir
->i_ctime
= dir
->i_mtime
= current_time(inode
);
3014 ext4_mark_inode_dirty(handle
, inode
);
3015 ext4_dec_count(handle
, dir
);
3016 ext4_update_dx_flag(dir
);
3017 ext4_mark_inode_dirty(handle
, dir
);
3022 ext4_journal_stop(handle
);
3026 static int ext4_unlink(struct inode
*dir
, struct dentry
*dentry
)
3029 struct inode
*inode
;
3030 struct buffer_head
*bh
;
3031 struct ext4_dir_entry_2
*de
;
3032 handle_t
*handle
= NULL
;
3034 if (unlikely(ext4_forced_shutdown(EXT4_SB(dir
->i_sb
))))
3037 trace_ext4_unlink_enter(dir
, dentry
);
3038 /* Initialize quotas before so that eventual writes go
3039 * in separate transaction */
3040 retval
= dquot_initialize(dir
);
3043 retval
= dquot_initialize(d_inode(dentry
));
3048 bh
= ext4_find_entry(dir
, &dentry
->d_name
, &de
, NULL
);
3054 inode
= d_inode(dentry
);
3056 retval
= -EFSCORRUPTED
;
3057 if (le32_to_cpu(de
->inode
) != inode
->i_ino
)
3060 handle
= ext4_journal_start(dir
, EXT4_HT_DIR
,
3061 EXT4_DATA_TRANS_BLOCKS(dir
->i_sb
));
3062 if (IS_ERR(handle
)) {
3063 retval
= PTR_ERR(handle
);
3068 if (IS_DIRSYNC(dir
))
3069 ext4_handle_sync(handle
);
3071 retval
= ext4_delete_entry(handle
, dir
, de
, bh
);
3074 dir
->i_ctime
= dir
->i_mtime
= current_time(dir
);
3075 ext4_update_dx_flag(dir
);
3076 ext4_mark_inode_dirty(handle
, dir
);
3077 if (inode
->i_nlink
== 0)
3078 ext4_warning_inode(inode
, "Deleting file '%.*s' with no links",
3079 dentry
->d_name
.len
, dentry
->d_name
.name
);
3082 if (!inode
->i_nlink
)
3083 ext4_orphan_add(handle
, inode
);
3084 inode
->i_ctime
= current_time(inode
);
3085 ext4_mark_inode_dirty(handle
, inode
);
3090 ext4_journal_stop(handle
);
3091 trace_ext4_unlink_exit(dentry
, retval
);
3095 static int ext4_symlink(struct inode
*dir
,
3096 struct dentry
*dentry
, const char *symname
)
3099 struct inode
*inode
;
3100 int err
, len
= strlen(symname
);
3102 struct fscrypt_str disk_link
;
3104 if (unlikely(ext4_forced_shutdown(EXT4_SB(dir
->i_sb
))))
3107 err
= fscrypt_prepare_symlink(dir
, symname
, len
, dir
->i_sb
->s_blocksize
,
3112 err
= dquot_initialize(dir
);
3116 if ((disk_link
.len
> EXT4_N_BLOCKS
* 4)) {
3118 * For non-fast symlinks, we just allocate inode and put it on
3119 * orphan list in the first transaction => we need bitmap,
3120 * group descriptor, sb, inode block, quota blocks, and
3121 * possibly selinux xattr blocks.
3123 credits
= 4 + EXT4_MAXQUOTAS_INIT_BLOCKS(dir
->i_sb
) +
3124 EXT4_XATTR_TRANS_BLOCKS
;
3127 * Fast symlink. We have to add entry to directory
3128 * (EXT4_DATA_TRANS_BLOCKS + EXT4_INDEX_EXTRA_TRANS_BLOCKS),
3129 * allocate new inode (bitmap, group descriptor, inode block,
3130 * quota blocks, sb is already counted in previous macros).
3132 credits
= EXT4_DATA_TRANS_BLOCKS(dir
->i_sb
) +
3133 EXT4_INDEX_EXTRA_TRANS_BLOCKS
+ 3;
3136 inode
= ext4_new_inode_start_handle(dir
, S_IFLNK
|S_IRWXUGO
,
3137 &dentry
->d_name
, 0, NULL
,
3138 EXT4_HT_DIR
, credits
);
3139 handle
= ext4_journal_current_handle();
3140 if (IS_ERR(inode
)) {
3142 ext4_journal_stop(handle
);
3143 return PTR_ERR(inode
);
3146 if (IS_ENCRYPTED(inode
)) {
3147 err
= fscrypt_encrypt_symlink(inode
, symname
, len
, &disk_link
);
3149 goto err_drop_inode
;
3150 inode
->i_op
= &ext4_encrypted_symlink_inode_operations
;
3153 if ((disk_link
.len
> EXT4_N_BLOCKS
* 4)) {
3154 if (!IS_ENCRYPTED(inode
))
3155 inode
->i_op
= &ext4_symlink_inode_operations
;
3156 inode_nohighmem(inode
);
3157 ext4_set_aops(inode
);
3159 * We cannot call page_symlink() with transaction started
3160 * because it calls into ext4_write_begin() which can wait
3161 * for transaction commit if we are running out of space
3162 * and thus we deadlock. So we have to stop transaction now
3163 * and restart it when symlink contents is written.
3165 * To keep fs consistent in case of crash, we have to put inode
3166 * to orphan list in the mean time.
3169 err
= ext4_orphan_add(handle
, inode
);
3170 ext4_journal_stop(handle
);
3173 goto err_drop_inode
;
3174 err
= __page_symlink(inode
, disk_link
.name
, disk_link
.len
, 1);
3176 goto err_drop_inode
;
3178 * Now inode is being linked into dir (EXT4_DATA_TRANS_BLOCKS
3179 * + EXT4_INDEX_EXTRA_TRANS_BLOCKS), inode is also modified
3181 handle
= ext4_journal_start(dir
, EXT4_HT_DIR
,
3182 EXT4_DATA_TRANS_BLOCKS(dir
->i_sb
) +
3183 EXT4_INDEX_EXTRA_TRANS_BLOCKS
+ 1);
3184 if (IS_ERR(handle
)) {
3185 err
= PTR_ERR(handle
);
3187 goto err_drop_inode
;
3189 set_nlink(inode
, 1);
3190 err
= ext4_orphan_del(handle
, inode
);
3192 goto err_drop_inode
;
3194 /* clear the extent format for fast symlink */
3195 ext4_clear_inode_flag(inode
, EXT4_INODE_EXTENTS
);
3196 if (!IS_ENCRYPTED(inode
)) {
3197 inode
->i_op
= &ext4_fast_symlink_inode_operations
;
3198 inode
->i_link
= (char *)&EXT4_I(inode
)->i_data
;
3200 memcpy((char *)&EXT4_I(inode
)->i_data
, disk_link
.name
,
3202 inode
->i_size
= disk_link
.len
- 1;
3204 EXT4_I(inode
)->i_disksize
= inode
->i_size
;
3205 err
= ext4_add_nondir(handle
, dentry
, inode
);
3206 if (!err
&& IS_DIRSYNC(dir
))
3207 ext4_handle_sync(handle
);
3210 ext4_journal_stop(handle
);
3211 goto out_free_encrypted_link
;
3215 ext4_journal_stop(handle
);
3217 unlock_new_inode(inode
);
3219 out_free_encrypted_link
:
3220 if (disk_link
.name
!= (unsigned char *)symname
)
3221 kfree(disk_link
.name
);
3225 static int ext4_link(struct dentry
*old_dentry
,
3226 struct inode
*dir
, struct dentry
*dentry
)
3229 struct inode
*inode
= d_inode(old_dentry
);
3230 int err
, retries
= 0;
3232 if (inode
->i_nlink
>= EXT4_LINK_MAX
)
3235 err
= fscrypt_prepare_link(old_dentry
, dir
, dentry
);
3239 if ((ext4_test_inode_flag(dir
, EXT4_INODE_PROJINHERIT
)) &&
3240 (!projid_eq(EXT4_I(dir
)->i_projid
,
3241 EXT4_I(old_dentry
->d_inode
)->i_projid
)))
3244 err
= dquot_initialize(dir
);
3249 handle
= ext4_journal_start(dir
, EXT4_HT_DIR
,
3250 (EXT4_DATA_TRANS_BLOCKS(dir
->i_sb
) +
3251 EXT4_INDEX_EXTRA_TRANS_BLOCKS
) + 1);
3253 return PTR_ERR(handle
);
3255 if (IS_DIRSYNC(dir
))
3256 ext4_handle_sync(handle
);
3258 inode
->i_ctime
= current_time(inode
);
3259 ext4_inc_count(handle
, inode
);
3262 err
= ext4_add_entry(handle
, dentry
, inode
);
3264 ext4_mark_inode_dirty(handle
, inode
);
3265 /* this can happen only for tmpfile being
3266 * linked the first time
3268 if (inode
->i_nlink
== 1)
3269 ext4_orphan_del(handle
, inode
);
3270 d_instantiate(dentry
, inode
);
3275 ext4_journal_stop(handle
);
3276 if (err
== -ENOSPC
&& ext4_should_retry_alloc(dir
->i_sb
, &retries
))
3283 * Try to find buffer head where contains the parent block.
3284 * It should be the inode block if it is inlined or the 1st block
3285 * if it is a normal dir.
3287 static struct buffer_head
*ext4_get_first_dir_block(handle_t
*handle
,
3288 struct inode
*inode
,
3290 struct ext4_dir_entry_2
**parent_de
,
3293 struct buffer_head
*bh
;
3295 if (!ext4_has_inline_data(inode
)) {
3296 /* The first directory block must not be a hole, so
3297 * treat it as DIRENT_HTREE
3299 bh
= ext4_read_dirblock(inode
, 0, DIRENT_HTREE
);
3301 *retval
= PTR_ERR(bh
);
3304 *parent_de
= ext4_next_entry(
3305 (struct ext4_dir_entry_2
*)bh
->b_data
,
3306 inode
->i_sb
->s_blocksize
);
3311 return ext4_get_first_inline_block(inode
, parent_de
, retval
);
3314 struct ext4_renament
{
3316 struct dentry
*dentry
;
3317 struct inode
*inode
;
3319 int dir_nlink_delta
;
3321 /* entry for "dentry" */
3322 struct buffer_head
*bh
;
3323 struct ext4_dir_entry_2
*de
;
3326 /* entry for ".." in inode if it's a directory */
3327 struct buffer_head
*dir_bh
;
3328 struct ext4_dir_entry_2
*parent_de
;
3332 static int ext4_rename_dir_prepare(handle_t
*handle
, struct ext4_renament
*ent
)
3336 ent
->dir_bh
= ext4_get_first_dir_block(handle
, ent
->inode
,
3337 &retval
, &ent
->parent_de
,
3341 if (le32_to_cpu(ent
->parent_de
->inode
) != ent
->dir
->i_ino
)
3342 return -EFSCORRUPTED
;
3343 BUFFER_TRACE(ent
->dir_bh
, "get_write_access");
3344 return ext4_journal_get_write_access(handle
, ent
->dir_bh
);
3347 static int ext4_rename_dir_finish(handle_t
*handle
, struct ext4_renament
*ent
,
3352 ent
->parent_de
->inode
= cpu_to_le32(dir_ino
);
3353 BUFFER_TRACE(ent
->dir_bh
, "call ext4_handle_dirty_metadata");
3354 if (!ent
->dir_inlined
) {
3355 if (is_dx(ent
->inode
)) {
3356 retval
= ext4_handle_dirty_dx_node(handle
,
3360 retval
= ext4_handle_dirty_dirent_node(handle
,
3365 retval
= ext4_mark_inode_dirty(handle
, ent
->inode
);
3368 ext4_std_error(ent
->dir
->i_sb
, retval
);
3374 static int ext4_setent(handle_t
*handle
, struct ext4_renament
*ent
,
3375 unsigned ino
, unsigned file_type
)
3379 BUFFER_TRACE(ent
->bh
, "get write access");
3380 retval
= ext4_journal_get_write_access(handle
, ent
->bh
);
3383 ent
->de
->inode
= cpu_to_le32(ino
);
3384 if (ext4_has_feature_filetype(ent
->dir
->i_sb
))
3385 ent
->de
->file_type
= file_type
;
3386 inode_inc_iversion(ent
->dir
);
3387 ent
->dir
->i_ctime
= ent
->dir
->i_mtime
=
3388 current_time(ent
->dir
);
3389 ext4_mark_inode_dirty(handle
, ent
->dir
);
3390 BUFFER_TRACE(ent
->bh
, "call ext4_handle_dirty_metadata");
3391 if (!ent
->inlined
) {
3392 retval
= ext4_handle_dirty_dirent_node(handle
,
3394 if (unlikely(retval
)) {
3395 ext4_std_error(ent
->dir
->i_sb
, retval
);
3405 static int ext4_find_delete_entry(handle_t
*handle
, struct inode
*dir
,
3406 const struct qstr
*d_name
)
3408 int retval
= -ENOENT
;
3409 struct buffer_head
*bh
;
3410 struct ext4_dir_entry_2
*de
;
3412 bh
= ext4_find_entry(dir
, d_name
, &de
, NULL
);
3416 retval
= ext4_delete_entry(handle
, dir
, de
, bh
);
3422 static void ext4_rename_delete(handle_t
*handle
, struct ext4_renament
*ent
,
3427 * ent->de could have moved from under us during htree split, so make
3428 * sure that we are deleting the right entry. We might also be pointing
3429 * to a stale entry in the unused part of ent->bh so just checking inum
3430 * and the name isn't enough.
3432 if (le32_to_cpu(ent
->de
->inode
) != ent
->inode
->i_ino
||
3433 ent
->de
->name_len
!= ent
->dentry
->d_name
.len
||
3434 strncmp(ent
->de
->name
, ent
->dentry
->d_name
.name
,
3435 ent
->de
->name_len
) ||
3437 retval
= ext4_find_delete_entry(handle
, ent
->dir
,
3438 &ent
->dentry
->d_name
);
3440 retval
= ext4_delete_entry(handle
, ent
->dir
, ent
->de
, ent
->bh
);
3441 if (retval
== -ENOENT
) {
3442 retval
= ext4_find_delete_entry(handle
, ent
->dir
,
3443 &ent
->dentry
->d_name
);
3448 ext4_warning_inode(ent
->dir
,
3449 "Deleting old file: nlink %d, error=%d",
3450 ent
->dir
->i_nlink
, retval
);
3454 static void ext4_update_dir_count(handle_t
*handle
, struct ext4_renament
*ent
)
3456 if (ent
->dir_nlink_delta
) {
3457 if (ent
->dir_nlink_delta
== -1)
3458 ext4_dec_count(handle
, ent
->dir
);
3460 ext4_inc_count(handle
, ent
->dir
);
3461 ext4_mark_inode_dirty(handle
, ent
->dir
);
3465 static struct inode
*ext4_whiteout_for_rename(struct ext4_renament
*ent
,
3466 int credits
, handle_t
**h
)
3473 * for inode block, sb block, group summaries,
3476 credits
+= (EXT4_MAXQUOTAS_TRANS_BLOCKS(ent
->dir
->i_sb
) +
3477 EXT4_XATTR_TRANS_BLOCKS
+ 4);
3479 wh
= ext4_new_inode_start_handle(ent
->dir
, S_IFCHR
| WHITEOUT_MODE
,
3480 &ent
->dentry
->d_name
, 0, NULL
,
3481 EXT4_HT_DIR
, credits
);
3483 handle
= ext4_journal_current_handle();
3486 ext4_journal_stop(handle
);
3487 if (PTR_ERR(wh
) == -ENOSPC
&&
3488 ext4_should_retry_alloc(ent
->dir
->i_sb
, &retries
))
3492 init_special_inode(wh
, wh
->i_mode
, WHITEOUT_DEV
);
3493 wh
->i_op
= &ext4_special_inode_operations
;
3499 * Anybody can rename anything with this: the permission checks are left to the
3500 * higher-level routines.
3502 * n.b. old_{dentry,inode) refers to the source dentry/inode
3503 * while new_{dentry,inode) refers to the destination dentry/inode
3504 * This comes from rename(const char *oldpath, const char *newpath)
3506 static int ext4_rename(struct inode
*old_dir
, struct dentry
*old_dentry
,
3507 struct inode
*new_dir
, struct dentry
*new_dentry
,
3510 handle_t
*handle
= NULL
;
3511 struct ext4_renament old
= {
3513 .dentry
= old_dentry
,
3514 .inode
= d_inode(old_dentry
),
3516 struct ext4_renament
new = {
3518 .dentry
= new_dentry
,
3519 .inode
= d_inode(new_dentry
),
3523 struct inode
*whiteout
= NULL
;
3527 if (new.inode
&& new.inode
->i_nlink
== 0) {
3528 EXT4_ERROR_INODE(new.inode
,
3529 "target of rename is already freed");
3530 return -EFSCORRUPTED
;
3533 if ((ext4_test_inode_flag(new_dir
, EXT4_INODE_PROJINHERIT
)) &&
3534 (!projid_eq(EXT4_I(new_dir
)->i_projid
,
3535 EXT4_I(old_dentry
->d_inode
)->i_projid
)))
3538 retval
= dquot_initialize(old
.dir
);
3541 retval
= dquot_initialize(new.dir
);
3545 /* Initialize quotas before so that eventual writes go
3546 * in separate transaction */
3548 retval
= dquot_initialize(new.inode
);
3553 old
.bh
= ext4_find_entry(old
.dir
, &old
.dentry
->d_name
, &old
.de
, NULL
);
3555 return PTR_ERR(old
.bh
);
3557 * Check for inode number is _not_ due to possible IO errors.
3558 * We might rmdir the source, keep it as pwd of some process
3559 * and merrily kill the link to whatever was created under the
3560 * same name. Goodbye sticky bit ;-<
3563 if (!old
.bh
|| le32_to_cpu(old
.de
->inode
) != old
.inode
->i_ino
)
3566 new.bh
= ext4_find_entry(new.dir
, &new.dentry
->d_name
,
3567 &new.de
, &new.inlined
);
3568 if (IS_ERR(new.bh
)) {
3569 retval
= PTR_ERR(new.bh
);
3579 if (new.inode
&& !test_opt(new.dir
->i_sb
, NO_AUTO_DA_ALLOC
))
3580 ext4_alloc_da_blocks(old
.inode
);
3582 credits
= (2 * EXT4_DATA_TRANS_BLOCKS(old
.dir
->i_sb
) +
3583 EXT4_INDEX_EXTRA_TRANS_BLOCKS
+ 2);
3584 if (!(flags
& RENAME_WHITEOUT
)) {
3585 handle
= ext4_journal_start(old
.dir
, EXT4_HT_DIR
, credits
);
3586 if (IS_ERR(handle
)) {
3587 retval
= PTR_ERR(handle
);
3592 whiteout
= ext4_whiteout_for_rename(&old
, credits
, &handle
);
3593 if (IS_ERR(whiteout
)) {
3594 retval
= PTR_ERR(whiteout
);
3600 if (IS_DIRSYNC(old
.dir
) || IS_DIRSYNC(new.dir
))
3601 ext4_handle_sync(handle
);
3603 if (S_ISDIR(old
.inode
->i_mode
)) {
3605 retval
= -ENOTEMPTY
;
3606 if (!ext4_empty_dir(new.inode
))
3610 if (new.dir
!= old
.dir
&& EXT4_DIR_LINK_MAX(new.dir
))
3613 retval
= ext4_rename_dir_prepare(handle
, &old
);
3618 * If we're renaming a file within an inline_data dir and adding or
3619 * setting the new dirent causes a conversion from inline_data to
3620 * extents/blockmap, we need to force the dirent delete code to
3621 * re-read the directory, or else we end up trying to delete a dirent
3622 * from what is now the extent tree root (or a block map).
3624 force_reread
= (new.dir
->i_ino
== old
.dir
->i_ino
&&
3625 ext4_test_inode_flag(new.dir
, EXT4_INODE_INLINE_DATA
));
3627 old_file_type
= old
.de
->file_type
;
3630 * Do this before adding a new entry, so the old entry is sure
3631 * to be still pointing to the valid old entry.
3633 retval
= ext4_setent(handle
, &old
, whiteout
->i_ino
,
3637 ext4_mark_inode_dirty(handle
, whiteout
);
3640 retval
= ext4_add_entry(handle
, new.dentry
, old
.inode
);
3644 retval
= ext4_setent(handle
, &new,
3645 old
.inode
->i_ino
, old_file_type
);
3650 force_reread
= !ext4_test_inode_flag(new.dir
,
3651 EXT4_INODE_INLINE_DATA
);
3654 * Like most other Unix systems, set the ctime for inodes on a
3657 old
.inode
->i_ctime
= current_time(old
.inode
);
3658 ext4_mark_inode_dirty(handle
, old
.inode
);
3664 ext4_rename_delete(handle
, &old
, force_reread
);
3668 ext4_dec_count(handle
, new.inode
);
3669 new.inode
->i_ctime
= current_time(new.inode
);
3671 old
.dir
->i_ctime
= old
.dir
->i_mtime
= current_time(old
.dir
);
3672 ext4_update_dx_flag(old
.dir
);
3674 retval
= ext4_rename_dir_finish(handle
, &old
, new.dir
->i_ino
);
3678 ext4_dec_count(handle
, old
.dir
);
3680 /* checked ext4_empty_dir above, can't have another
3681 * parent, ext4_dec_count() won't work for many-linked
3683 clear_nlink(new.inode
);
3685 ext4_inc_count(handle
, new.dir
);
3686 ext4_update_dx_flag(new.dir
);
3687 ext4_mark_inode_dirty(handle
, new.dir
);
3690 ext4_mark_inode_dirty(handle
, old
.dir
);
3692 ext4_mark_inode_dirty(handle
, new.inode
);
3693 if (!new.inode
->i_nlink
)
3694 ext4_orphan_add(handle
, new.inode
);
3704 drop_nlink(whiteout
);
3705 unlock_new_inode(whiteout
);
3709 ext4_journal_stop(handle
);
3713 static int ext4_cross_rename(struct inode
*old_dir
, struct dentry
*old_dentry
,
3714 struct inode
*new_dir
, struct dentry
*new_dentry
)
3716 handle_t
*handle
= NULL
;
3717 struct ext4_renament old
= {
3719 .dentry
= old_dentry
,
3720 .inode
= d_inode(old_dentry
),
3722 struct ext4_renament
new = {
3724 .dentry
= new_dentry
,
3725 .inode
= d_inode(new_dentry
),
3729 struct timespec64 ctime
;
3731 if ((ext4_test_inode_flag(new_dir
, EXT4_INODE_PROJINHERIT
) &&
3732 !projid_eq(EXT4_I(new_dir
)->i_projid
,
3733 EXT4_I(old_dentry
->d_inode
)->i_projid
)) ||
3734 (ext4_test_inode_flag(old_dir
, EXT4_INODE_PROJINHERIT
) &&
3735 !projid_eq(EXT4_I(old_dir
)->i_projid
,
3736 EXT4_I(new_dentry
->d_inode
)->i_projid
)))
3739 retval
= dquot_initialize(old
.dir
);
3742 retval
= dquot_initialize(new.dir
);
3746 old
.bh
= ext4_find_entry(old
.dir
, &old
.dentry
->d_name
,
3747 &old
.de
, &old
.inlined
);
3749 return PTR_ERR(old
.bh
);
3751 * Check for inode number is _not_ due to possible IO errors.
3752 * We might rmdir the source, keep it as pwd of some process
3753 * and merrily kill the link to whatever was created under the
3754 * same name. Goodbye sticky bit ;-<
3757 if (!old
.bh
|| le32_to_cpu(old
.de
->inode
) != old
.inode
->i_ino
)
3760 new.bh
= ext4_find_entry(new.dir
, &new.dentry
->d_name
,
3761 &new.de
, &new.inlined
);
3762 if (IS_ERR(new.bh
)) {
3763 retval
= PTR_ERR(new.bh
);
3768 /* RENAME_EXCHANGE case: old *and* new must both exist */
3769 if (!new.bh
|| le32_to_cpu(new.de
->inode
) != new.inode
->i_ino
)
3772 handle
= ext4_journal_start(old
.dir
, EXT4_HT_DIR
,
3773 (2 * EXT4_DATA_TRANS_BLOCKS(old
.dir
->i_sb
) +
3774 2 * EXT4_INDEX_EXTRA_TRANS_BLOCKS
+ 2));
3775 if (IS_ERR(handle
)) {
3776 retval
= PTR_ERR(handle
);
3781 if (IS_DIRSYNC(old
.dir
) || IS_DIRSYNC(new.dir
))
3782 ext4_handle_sync(handle
);
3784 if (S_ISDIR(old
.inode
->i_mode
)) {
3786 retval
= ext4_rename_dir_prepare(handle
, &old
);
3790 if (S_ISDIR(new.inode
->i_mode
)) {
3792 retval
= ext4_rename_dir_prepare(handle
, &new);
3798 * Other than the special case of overwriting a directory, parents'
3799 * nlink only needs to be modified if this is a cross directory rename.
3801 if (old
.dir
!= new.dir
&& old
.is_dir
!= new.is_dir
) {
3802 old
.dir_nlink_delta
= old
.is_dir
? -1 : 1;
3803 new.dir_nlink_delta
= -old
.dir_nlink_delta
;
3805 if ((old
.dir_nlink_delta
> 0 && EXT4_DIR_LINK_MAX(old
.dir
)) ||
3806 (new.dir_nlink_delta
> 0 && EXT4_DIR_LINK_MAX(new.dir
)))
3810 new_file_type
= new.de
->file_type
;
3811 retval
= ext4_setent(handle
, &new, old
.inode
->i_ino
, old
.de
->file_type
);
3815 retval
= ext4_setent(handle
, &old
, new.inode
->i_ino
, new_file_type
);
3820 * Like most other Unix systems, set the ctime for inodes on a
3823 ctime
= current_time(old
.inode
);
3824 old
.inode
->i_ctime
= ctime
;
3825 new.inode
->i_ctime
= ctime
;
3826 ext4_mark_inode_dirty(handle
, old
.inode
);
3827 ext4_mark_inode_dirty(handle
, new.inode
);
3830 retval
= ext4_rename_dir_finish(handle
, &old
, new.dir
->i_ino
);
3835 retval
= ext4_rename_dir_finish(handle
, &new, old
.dir
->i_ino
);
3839 ext4_update_dir_count(handle
, &old
);
3840 ext4_update_dir_count(handle
, &new);
3849 ext4_journal_stop(handle
);
3853 static int ext4_rename2(struct inode
*old_dir
, struct dentry
*old_dentry
,
3854 struct inode
*new_dir
, struct dentry
*new_dentry
,
3859 if (unlikely(ext4_forced_shutdown(EXT4_SB(old_dir
->i_sb
))))
3862 if (flags
& ~(RENAME_NOREPLACE
| RENAME_EXCHANGE
| RENAME_WHITEOUT
))
3865 err
= fscrypt_prepare_rename(old_dir
, old_dentry
, new_dir
, new_dentry
,
3870 if (flags
& RENAME_EXCHANGE
) {
3871 return ext4_cross_rename(old_dir
, old_dentry
,
3872 new_dir
, new_dentry
);
3875 return ext4_rename(old_dir
, old_dentry
, new_dir
, new_dentry
, flags
);
3879 * directories can handle most operations...
3881 const struct inode_operations ext4_dir_inode_operations
= {
3882 .create
= ext4_create
,
3883 .lookup
= ext4_lookup
,
3885 .unlink
= ext4_unlink
,
3886 .symlink
= ext4_symlink
,
3887 .mkdir
= ext4_mkdir
,
3888 .rmdir
= ext4_rmdir
,
3889 .mknod
= ext4_mknod
,
3890 .tmpfile
= ext4_tmpfile
,
3891 .rename
= ext4_rename2
,
3892 .setattr
= ext4_setattr
,
3893 .getattr
= ext4_getattr
,
3894 .listxattr
= ext4_listxattr
,
3895 .get_acl
= ext4_get_acl
,
3896 .set_acl
= ext4_set_acl
,
3897 .fiemap
= ext4_fiemap
,
3900 const struct inode_operations ext4_special_inode_operations
= {
3901 .setattr
= ext4_setattr
,
3902 .getattr
= ext4_getattr
,
3903 .listxattr
= ext4_listxattr
,
3904 .get_acl
= ext4_get_acl
,
3905 .set_acl
= ext4_set_acl
,