ext4: improve error handling from ext4_dirhash()
[linux-block.git] / fs / ext4 / namei.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
ac27a0ec 2/*
617ba13b 3 * linux/fs/ext4/namei.c
ac27a0ec
DK
4 *
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)
9 *
10 * from
11 *
12 * linux/fs/minix/namei.c
13 *
14 * Copyright (C) 1991, 1992 Linus Torvalds
15 *
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
25 * Theodore Ts'o, 2002
26 */
27
28#include <linux/fs.h>
29#include <linux/pagemap.h>
ac27a0ec 30#include <linux/time.h>
ac27a0ec
DK
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>
ae5e165d 37#include <linux/iversion.h>
b886ee3e 38#include <linux/unicode.h>
3dcf5451
CH
39#include "ext4.h"
40#include "ext4_jbd2.h"
ac27a0ec 41
ac27a0ec
DK
42#include "xattr.h"
43#include "acl.h"
44
0562e0ba 45#include <trace/events/ext4.h>
ac27a0ec
DK
46/*
47 * define how far ahead to read directories while searching them.
48 */
49#define NAMEI_RA_CHUNKS 2
50#define NAMEI_RA_BLOCKS 4
8c55e204 51#define NAMEI_RA_SIZE (NAMEI_RA_CHUNKS * NAMEI_RA_BLOCKS)
ac27a0ec 52
617ba13b 53static struct buffer_head *ext4_append(handle_t *handle,
ac27a0ec 54 struct inode *inode,
0f70b406 55 ext4_lblk_t *block)
ac27a0ec 56{
b8a04fe7 57 struct ext4_map_blocks map;
ac27a0ec 58 struct buffer_head *bh;
1c215028 59 int err;
ac27a0ec 60
df981d03
TT
61 if (unlikely(EXT4_SB(inode->i_sb)->s_max_dir_size_kb &&
62 ((inode->i_size >> 10) >=
0f70b406
TT
63 EXT4_SB(inode->i_sb)->s_max_dir_size_kb)))
64 return ERR_PTR(-ENOSPC);
df981d03 65
ac27a0ec 66 *block = inode->i_size >> inode->i_sb->s_blocksize_bits;
b8a04fe7
LC
67 map.m_lblk = *block;
68 map.m_len = 1;
69
70 /*
71 * We're appending new directory block. Make sure the block is not
72 * allocated yet, otherwise we will end up corrupting the
73 * directory.
74 */
75 err = ext4_map_blocks(NULL, inode, &map, 0);
76 if (err < 0)
77 return ERR_PTR(err);
78 if (err) {
79 EXT4_ERROR_INODE(inode, "Logical block already allocated");
80 return ERR_PTR(-EFSCORRUPTED);
81 }
ac27a0ec 82
c5e298ae 83 bh = ext4_bread(handle, inode, *block, EXT4_GET_BLOCKS_CREATE);
1c215028
TT
84 if (IS_ERR(bh))
85 return bh;
0f70b406
TT
86 inode->i_size += inode->i_sb->s_blocksize;
87 EXT4_I(inode)->i_disksize = inode->i_size;
7177dd00
ZC
88 err = ext4_mark_inode_dirty(handle, inode);
89 if (err)
90 goto out;
5d601255 91 BUFFER_TRACE(bh, "get_write_access");
188c299e
JK
92 err = ext4_journal_get_write_access(handle, inode->i_sb, bh,
93 EXT4_JTR_NONE);
7177dd00
ZC
94 if (err)
95 goto out;
ac27a0ec 96 return bh;
7177dd00
ZC
97
98out:
99 brelse(bh);
100 ext4_std_error(inode->i_sb, err);
101 return ERR_PTR(err);
ac27a0ec
DK
102}
103
dc6982ff
TT
104static int ext4_dx_csum_verify(struct inode *inode,
105 struct ext4_dir_entry *dirent);
106
4e19d6b6
TT
107/*
108 * Hints to ext4_read_dirblock regarding whether we expect a directory
109 * block being read to be an index block, or a block containing
110 * directory entries (and if the latter, whether it was found via a
111 * logical block in an htree index block). This is used to control
112 * what sort of sanity checkinig ext4_read_dirblock() will do on the
113 * directory block read from the storage device. EITHER will means
114 * the caller doesn't know what kind of directory block will be read,
115 * so no specific verification will be done.
116 */
dc6982ff 117typedef enum {
4e19d6b6 118 EITHER, INDEX, DIRENT, DIRENT_HTREE
dc6982ff
TT
119} dirblock_type_t;
120
121#define ext4_read_dirblock(inode, block, type) \
b03a2f7e 122 __ext4_read_dirblock((inode), (block), (type), __func__, __LINE__)
dc6982ff
TT
123
124static struct buffer_head *__ext4_read_dirblock(struct inode *inode,
b03a2f7e
AD
125 ext4_lblk_t block,
126 dirblock_type_t type,
127 const char *func,
128 unsigned int line)
dc6982ff
TT
129{
130 struct buffer_head *bh;
131 struct ext4_dir_entry *dirent;
1c215028 132 int is_dx_block = 0;
dc6982ff 133
61a1d87a 134 if (block >= inode->i_size >> inode->i_blkbits) {
65f8ea4c
LC
135 ext4_error_inode(inode, func, line, block,
136 "Attempting to read directory block (%u) that is past i_size (%llu)",
137 block, inode->i_size);
138 return ERR_PTR(-EFSCORRUPTED);
139 }
140
46f870d6
TT
141 if (ext4_simulate_fail(inode->i_sb, EXT4_SIM_DIRBLOCK_EIO))
142 bh = ERR_PTR(-EIO);
143 else
144 bh = ext4_bread(NULL, inode, block, 0);
1c215028 145 if (IS_ERR(bh)) {
b03a2f7e
AD
146 __ext4_warning(inode->i_sb, func, line,
147 "inode #%lu: lblock %lu: comm %s: "
148 "error %ld reading directory block",
149 inode->i_ino, (unsigned long)block,
150 current->comm, PTR_ERR(bh));
1c215028
TT
151
152 return bh;
153 }
4e19d6b6 154 if (!bh && (type == INDEX || type == DIRENT_HTREE)) {
b03a2f7e 155 ext4_error_inode(inode, func, line, block,
4e19d6b6
TT
156 "Directory hole found for htree %s block",
157 (type == INDEX) ? "index" : "leaf");
6a797d27 158 return ERR_PTR(-EFSCORRUPTED);
dc6982ff 159 }
4e19d6b6
TT
160 if (!bh)
161 return NULL;
dc6982ff
TT
162 dirent = (struct ext4_dir_entry *) bh->b_data;
163 /* Determine whether or not we have an index block */
164 if (is_dx(inode)) {
165 if (block == 0)
166 is_dx_block = 1;
167 else if (ext4_rec_len_from_disk(dirent->rec_len,
168 inode->i_sb->s_blocksize) ==
169 inode->i_sb->s_blocksize)
170 is_dx_block = 1;
171 }
172 if (!is_dx_block && type == INDEX) {
b03a2f7e 173 ext4_error_inode(inode, func, line, block,
dc6982ff 174 "directory leaf block found instead of index block");
de59fae0 175 brelse(bh);
6a797d27 176 return ERR_PTR(-EFSCORRUPTED);
dc6982ff 177 }
9aa5d32b 178 if (!ext4_has_metadata_csum(inode->i_sb) ||
dc6982ff
TT
179 buffer_verified(bh))
180 return bh;
181
182 /*
183 * An empty leaf block can get mistaken for a index block; for
184 * this reason, we can only check the index checksum when the
185 * caller is sure it should be an index block.
186 */
187 if (is_dx_block && type == INDEX) {
46f870d6
TT
188 if (ext4_dx_csum_verify(inode, dirent) &&
189 !ext4_simulate_fail(inode->i_sb, EXT4_SIM_DIRBLOCK_CRC))
dc6982ff
TT
190 set_buffer_verified(bh);
191 else {
54d3adbc
TT
192 ext4_error_inode_err(inode, func, line, block,
193 EFSBADCRC,
194 "Directory index failed checksum");
a871611b 195 brelse(bh);
6a797d27 196 return ERR_PTR(-EFSBADCRC);
a871611b 197 }
ac27a0ec 198 }
dc6982ff 199 if (!is_dx_block) {
46f870d6
TT
200 if (ext4_dirblock_csum_verify(inode, bh) &&
201 !ext4_simulate_fail(inode->i_sb, EXT4_SIM_DIRBLOCK_CRC))
dc6982ff
TT
202 set_buffer_verified(bh);
203 else {
54d3adbc
TT
204 ext4_error_inode_err(inode, func, line, block,
205 EFSBADCRC,
206 "Directory block failed checksum");
dc6982ff 207 brelse(bh);
6a797d27 208 return ERR_PTR(-EFSBADCRC);
dc6982ff 209 }
6d1ab10e 210 }
ac27a0ec
DK
211 return bh;
212}
213
ac27a0ec
DK
214#ifdef DX_DEBUG
215#define dxtrace(command) command
216#else
217#define dxtrace(command)
218#endif
219
220struct fake_dirent
221{
222 __le32 inode;
223 __le16 rec_len;
224 u8 name_len;
225 u8 file_type;
226};
227
228struct dx_countlimit
229{
230 __le16 limit;
231 __le16 count;
232};
233
234struct dx_entry
235{
236 __le32 hash;
237 __le32 block;
238};
239
240/*
241 * dx_root_info is laid out so that if it should somehow get overlaid by a
242 * dirent the two low bits of the hash version will be zero. Therefore, the
243 * hash version mod 4 should never be 0. Sincerely, the paranoia department.
244 */
245
246struct dx_root
247{
248 struct fake_dirent dot;
249 char dot_name[4];
250 struct fake_dirent dotdot;
251 char dotdot_name[4];
252 struct dx_root_info
253 {
254 __le32 reserved_zero;
255 u8 hash_version;
256 u8 info_length; /* 8 */
257 u8 indirect_levels;
258 u8 unused_flags;
259 }
260 info;
6cfb061f 261 struct dx_entry entries[];
ac27a0ec
DK
262};
263
264struct dx_node
265{
266 struct fake_dirent fake;
6cfb061f 267 struct dx_entry entries[];
ac27a0ec
DK
268};
269
270
271struct dx_frame
272{
273 struct buffer_head *bh;
274 struct dx_entry *entries;
275 struct dx_entry *at;
276};
277
278struct dx_map_entry
279{
280 u32 hash;
ef2b02d3
ES
281 u16 offs;
282 u16 size;
ac27a0ec
DK
283};
284
e6153918
DW
285/*
286 * This goes at the end of each htree block.
287 */
288struct dx_tail {
289 u32 dt_reserved;
290 __le32 dt_checksum; /* crc32c(uuid+inum+dirblock) */
291};
292
725d26d3
AK
293static inline ext4_lblk_t dx_get_block(struct dx_entry *entry);
294static void dx_set_block(struct dx_entry *entry, ext4_lblk_t value);
af5bc92d
TT
295static inline unsigned dx_get_hash(struct dx_entry *entry);
296static void dx_set_hash(struct dx_entry *entry, unsigned value);
297static unsigned dx_get_count(struct dx_entry *entries);
298static unsigned dx_get_limit(struct dx_entry *entries);
299static void dx_set_count(struct dx_entry *entries, unsigned value);
300static void dx_set_limit(struct dx_entry *entries, unsigned value);
301static unsigned dx_root_limit(struct inode *dir, unsigned infosize);
302static unsigned dx_node_limit(struct inode *dir);
5b643f9c 303static struct dx_frame *dx_probe(struct ext4_filename *fname,
ac27a0ec
DK
304 struct inode *dir,
305 struct dx_hash_info *hinfo,
dd73b5d5 306 struct dx_frame *frame);
af5bc92d 307static void dx_release(struct dx_frame *frames);
46c116b9
JK
308static int dx_make_map(struct inode *dir, struct buffer_head *bh,
309 struct dx_hash_info *hinfo,
310 struct dx_map_entry *map_tail);
ac27a0ec 311static void dx_sort_map(struct dx_map_entry *map, unsigned count);
471fbbea
DR
312static struct ext4_dir_entry_2 *dx_move_dirents(struct inode *dir, char *from,
313 char *to, struct dx_map_entry *offsets,
314 int count, unsigned int blocksize);
315static struct ext4_dir_entry_2 *dx_pack_dirents(struct inode *dir, char *base,
316 unsigned int blocksize);
725d26d3
AK
317static void dx_insert_block(struct dx_frame *frame,
318 u32 hash, ext4_lblk_t block);
617ba13b 319static int ext4_htree_next_block(struct inode *dir, __u32 hash,
ac27a0ec
DK
320 struct dx_frame *frame,
321 struct dx_frame *frames,
322 __u32 *start_hash);
f702ba0f 323static struct buffer_head * ext4_dx_find_entry(struct inode *dir,
5b643f9c 324 struct ext4_filename *fname,
537d8f93 325 struct ext4_dir_entry_2 **res_dir);
5b643f9c 326static int ext4_dx_add_entry(handle_t *handle, struct ext4_filename *fname,
56a04915 327 struct inode *dir, struct inode *inode);
ac27a0ec 328
dbe89444 329/* checksumming functions */
ddce3b94
TT
330void ext4_initialize_dirent_tail(struct buffer_head *bh,
331 unsigned int blocksize)
b0336e8d 332{
ddce3b94
TT
333 struct ext4_dir_entry_tail *t = EXT4_DIRENT_TAIL(bh->b_data, blocksize);
334
b0336e8d
DW
335 memset(t, 0, sizeof(struct ext4_dir_entry_tail));
336 t->det_rec_len = ext4_rec_len_to_disk(
337 sizeof(struct ext4_dir_entry_tail), blocksize);
338 t->det_reserved_ft = EXT4_FT_DIR_CSUM;
339}
340
341/* Walk through a dirent block to find a checksum "dirent" at the tail */
342static struct ext4_dir_entry_tail *get_dirent_tail(struct inode *inode,
f036adb3 343 struct buffer_head *bh)
b0336e8d
DW
344{
345 struct ext4_dir_entry_tail *t;
346
347#ifdef PARANOID
348 struct ext4_dir_entry *d, *top;
349
f036adb3
TT
350 d = (struct ext4_dir_entry *)bh->b_data;
351 top = (struct ext4_dir_entry *)(bh->b_data +
b0336e8d 352 (EXT4_BLOCK_SIZE(inode->i_sb) -
f036adb3 353 sizeof(struct ext4_dir_entry_tail)));
b0336e8d
DW
354 while (d < top && d->rec_len)
355 d = (struct ext4_dir_entry *)(((void *)d) +
356 le16_to_cpu(d->rec_len));
357
358 if (d != top)
359 return NULL;
360
361 t = (struct ext4_dir_entry_tail *)d;
362#else
f036adb3 363 t = EXT4_DIRENT_TAIL(bh->b_data, EXT4_BLOCK_SIZE(inode->i_sb));
b0336e8d
DW
364#endif
365
366 if (t->det_reserved_zero1 ||
367 le16_to_cpu(t->det_rec_len) != sizeof(struct ext4_dir_entry_tail) ||
368 t->det_reserved_zero2 ||
369 t->det_reserved_ft != EXT4_FT_DIR_CSUM)
370 return NULL;
371
372 return t;
373}
374
f036adb3 375static __le32 ext4_dirblock_csum(struct inode *inode, void *dirent, int size)
b0336e8d
DW
376{
377 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
378 struct ext4_inode_info *ei = EXT4_I(inode);
379 __u32 csum;
380
381 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)dirent, size);
382 return cpu_to_le32(csum);
383}
384
b03a2f7e
AD
385#define warn_no_space_for_csum(inode) \
386 __warn_no_space_for_csum((inode), __func__, __LINE__)
387
388static void __warn_no_space_for_csum(struct inode *inode, const char *func,
389 unsigned int line)
dffe9d8d 390{
b03a2f7e
AD
391 __ext4_warning_inode(inode, func, line,
392 "No space for directory leaf checksum. Please run e2fsck -D.");
dffe9d8d
TT
393}
394
f036adb3 395int ext4_dirblock_csum_verify(struct inode *inode, struct buffer_head *bh)
b0336e8d
DW
396{
397 struct ext4_dir_entry_tail *t;
398
9aa5d32b 399 if (!ext4_has_metadata_csum(inode->i_sb))
b0336e8d
DW
400 return 1;
401
f036adb3 402 t = get_dirent_tail(inode, bh);
b0336e8d 403 if (!t) {
dffe9d8d 404 warn_no_space_for_csum(inode);
b0336e8d
DW
405 return 0;
406 }
407
f036adb3 408 if (t->det_checksum != ext4_dirblock_csum(inode, bh->b_data,
ddce3b94 409 (char *)t - bh->b_data))
b0336e8d
DW
410 return 0;
411
412 return 1;
413}
414
f036adb3
TT
415static void ext4_dirblock_csum_set(struct inode *inode,
416 struct buffer_head *bh)
b0336e8d
DW
417{
418 struct ext4_dir_entry_tail *t;
419
9aa5d32b 420 if (!ext4_has_metadata_csum(inode->i_sb))
b0336e8d
DW
421 return;
422
f036adb3 423 t = get_dirent_tail(inode, bh);
b0336e8d 424 if (!t) {
dffe9d8d 425 warn_no_space_for_csum(inode);
b0336e8d
DW
426 return;
427 }
428
f036adb3 429 t->det_checksum = ext4_dirblock_csum(inode, bh->b_data,
ddce3b94 430 (char *)t - bh->b_data);
b0336e8d
DW
431}
432
f036adb3
TT
433int ext4_handle_dirty_dirblock(handle_t *handle,
434 struct inode *inode,
435 struct buffer_head *bh)
b0336e8d 436{
f036adb3 437 ext4_dirblock_csum_set(inode, bh);
b0336e8d
DW
438 return ext4_handle_dirty_metadata(handle, inode, bh);
439}
440
dbe89444
DW
441static struct dx_countlimit *get_dx_countlimit(struct inode *inode,
442 struct ext4_dir_entry *dirent,
443 int *offset)
444{
445 struct ext4_dir_entry *dp;
446 struct dx_root_info *root;
447 int count_offset;
448
449 if (le16_to_cpu(dirent->rec_len) == EXT4_BLOCK_SIZE(inode->i_sb))
450 count_offset = 8;
451 else if (le16_to_cpu(dirent->rec_len) == 12) {
452 dp = (struct ext4_dir_entry *)(((void *)dirent) + 12);
453 if (le16_to_cpu(dp->rec_len) !=
454 EXT4_BLOCK_SIZE(inode->i_sb) - 12)
455 return NULL;
456 root = (struct dx_root_info *)(((void *)dp + 12));
457 if (root->reserved_zero ||
458 root->info_length != sizeof(struct dx_root_info))
459 return NULL;
460 count_offset = 32;
461 } else
462 return NULL;
463
464 if (offset)
465 *offset = count_offset;
466 return (struct dx_countlimit *)(((void *)dirent) + count_offset);
467}
468
469static __le32 ext4_dx_csum(struct inode *inode, struct ext4_dir_entry *dirent,
470 int count_offset, int count, struct dx_tail *t)
471{
472 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
473 struct ext4_inode_info *ei = EXT4_I(inode);
d6a77105 474 __u32 csum;
dbe89444 475 int size;
b47820ed
DJ
476 __u32 dummy_csum = 0;
477 int offset = offsetof(struct dx_tail, dt_checksum);
dbe89444
DW
478
479 size = count_offset + (count * sizeof(struct dx_entry));
dbe89444 480 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)dirent, size);
b47820ed
DJ
481 csum = ext4_chksum(sbi, csum, (__u8 *)t, offset);
482 csum = ext4_chksum(sbi, csum, (__u8 *)&dummy_csum, sizeof(dummy_csum));
dbe89444
DW
483
484 return cpu_to_le32(csum);
485}
486
487static int ext4_dx_csum_verify(struct inode *inode,
488 struct ext4_dir_entry *dirent)
489{
490 struct dx_countlimit *c;
491 struct dx_tail *t;
492 int count_offset, limit, count;
493
9aa5d32b 494 if (!ext4_has_metadata_csum(inode->i_sb))
dbe89444
DW
495 return 1;
496
497 c = get_dx_countlimit(inode, dirent, &count_offset);
498 if (!c) {
499 EXT4_ERROR_INODE(inode, "dir seems corrupt? Run e2fsck -D.");
fa964540 500 return 0;
dbe89444
DW
501 }
502 limit = le16_to_cpu(c->limit);
503 count = le16_to_cpu(c->count);
504 if (count_offset + (limit * sizeof(struct dx_entry)) >
505 EXT4_BLOCK_SIZE(inode->i_sb) - sizeof(struct dx_tail)) {
dffe9d8d 506 warn_no_space_for_csum(inode);
fa964540 507 return 0;
dbe89444
DW
508 }
509 t = (struct dx_tail *)(((struct dx_entry *)c) + limit);
510
511 if (t->dt_checksum != ext4_dx_csum(inode, dirent, count_offset,
512 count, t))
513 return 0;
514 return 1;
515}
516
517static void ext4_dx_csum_set(struct inode *inode, struct ext4_dir_entry *dirent)
518{
519 struct dx_countlimit *c;
520 struct dx_tail *t;
521 int count_offset, limit, count;
522
9aa5d32b 523 if (!ext4_has_metadata_csum(inode->i_sb))
dbe89444
DW
524 return;
525
526 c = get_dx_countlimit(inode, dirent, &count_offset);
527 if (!c) {
528 EXT4_ERROR_INODE(inode, "dir seems corrupt? Run e2fsck -D.");
529 return;
530 }
531 limit = le16_to_cpu(c->limit);
532 count = le16_to_cpu(c->count);
533 if (count_offset + (limit * sizeof(struct dx_entry)) >
534 EXT4_BLOCK_SIZE(inode->i_sb) - sizeof(struct dx_tail)) {
dffe9d8d 535 warn_no_space_for_csum(inode);
dbe89444
DW
536 return;
537 }
538 t = (struct dx_tail *)(((struct dx_entry *)c) + limit);
539
540 t->dt_checksum = ext4_dx_csum(inode, dirent, count_offset, count, t);
541}
542
543static inline int ext4_handle_dirty_dx_node(handle_t *handle,
544 struct inode *inode,
545 struct buffer_head *bh)
546{
547 ext4_dx_csum_set(inode, (struct ext4_dir_entry *)bh->b_data);
548 return ext4_handle_dirty_metadata(handle, inode, bh);
549}
550
f795e140
LZ
551/*
552 * p is at least 6 bytes before the end of page
553 */
554static inline struct ext4_dir_entry_2 *
3d0518f4 555ext4_next_entry(struct ext4_dir_entry_2 *p, unsigned long blocksize)
f795e140
LZ
556{
557 return (struct ext4_dir_entry_2 *)((char *)p +
3d0518f4 558 ext4_rec_len_from_disk(p->rec_len, blocksize));
f795e140
LZ
559}
560
ac27a0ec
DK
561/*
562 * Future: use high four bits of block for coalesce-on-delete flags
563 * Mask them off for now.
564 */
565
725d26d3 566static inline ext4_lblk_t dx_get_block(struct dx_entry *entry)
ac27a0ec 567{
e08ac99f 568 return le32_to_cpu(entry->block) & 0x0fffffff;
ac27a0ec
DK
569}
570
725d26d3 571static inline void dx_set_block(struct dx_entry *entry, ext4_lblk_t value)
ac27a0ec
DK
572{
573 entry->block = cpu_to_le32(value);
574}
575
af5bc92d 576static inline unsigned dx_get_hash(struct dx_entry *entry)
ac27a0ec
DK
577{
578 return le32_to_cpu(entry->hash);
579}
580
af5bc92d 581static inline void dx_set_hash(struct dx_entry *entry, unsigned value)
ac27a0ec
DK
582{
583 entry->hash = cpu_to_le32(value);
584}
585
af5bc92d 586static inline unsigned dx_get_count(struct dx_entry *entries)
ac27a0ec
DK
587{
588 return le16_to_cpu(((struct dx_countlimit *) entries)->count);
589}
590
af5bc92d 591static inline unsigned dx_get_limit(struct dx_entry *entries)
ac27a0ec
DK
592{
593 return le16_to_cpu(((struct dx_countlimit *) entries)->limit);
594}
595
af5bc92d 596static inline void dx_set_count(struct dx_entry *entries, unsigned value)
ac27a0ec
DK
597{
598 ((struct dx_countlimit *) entries)->count = cpu_to_le16(value);
599}
600
af5bc92d 601static inline void dx_set_limit(struct dx_entry *entries, unsigned value)
ac27a0ec
DK
602{
603 ((struct dx_countlimit *) entries)->limit = cpu_to_le16(value);
604}
605
af5bc92d 606static inline unsigned dx_root_limit(struct inode *dir, unsigned infosize)
ac27a0ec 607{
471fbbea
DR
608 unsigned int entry_space = dir->i_sb->s_blocksize -
609 ext4_dir_rec_len(1, NULL) -
610 ext4_dir_rec_len(2, NULL) - infosize;
dbe89444 611
9aa5d32b 612 if (ext4_has_metadata_csum(dir->i_sb))
dbe89444 613 entry_space -= sizeof(struct dx_tail);
d9c769b7 614 return entry_space / sizeof(struct dx_entry);
ac27a0ec
DK
615}
616
af5bc92d 617static inline unsigned dx_node_limit(struct inode *dir)
ac27a0ec 618{
471fbbea
DR
619 unsigned int entry_space = dir->i_sb->s_blocksize -
620 ext4_dir_rec_len(0, dir);
dbe89444 621
9aa5d32b 622 if (ext4_has_metadata_csum(dir->i_sb))
dbe89444 623 entry_space -= sizeof(struct dx_tail);
d9c769b7 624 return entry_space / sizeof(struct dx_entry);
ac27a0ec
DK
625}
626
627/*
628 * Debug
629 */
630#ifdef DX_DEBUG
4776004f 631static void dx_show_index(char * label, struct dx_entry *entries)
ac27a0ec 632{
63f57933 633 int i, n = dx_get_count (entries);
d74f3d25 634 printk(KERN_DEBUG "%s index", label);
63f57933 635 for (i = 0; i < n; i++) {
d74f3d25
JP
636 printk(KERN_CONT " %x->%lu",
637 i ? dx_get_hash(entries + i) : 0,
638 (unsigned long)dx_get_block(entries + i));
63f57933 639 }
d74f3d25 640 printk(KERN_CONT "\n");
ac27a0ec
DK
641}
642
643struct stats
644{
645 unsigned names;
646 unsigned space;
647 unsigned bcount;
648};
649
b3098486
MH
650static struct stats dx_show_leaf(struct inode *dir,
651 struct dx_hash_info *hinfo,
652 struct ext4_dir_entry_2 *de,
653 int size, int show_names)
ac27a0ec
DK
654{
655 unsigned names = 0, space = 0;
656 char *base = (char *) de;
657 struct dx_hash_info h = *hinfo;
658
659 printk("names: ");
660 while ((char *) de < base + size)
661 {
662 if (de->inode)
663 {
664 if (show_names)
665 {
643fa961 666#ifdef CONFIG_FS_ENCRYPTION
b3098486
MH
667 int len;
668 char *name;
a7550b30
JK
669 struct fscrypt_str fname_crypto_str =
670 FSTR_INIT(NULL, 0);
c936e1ec 671 int res = 0;
b3098486
MH
672
673 name = de->name;
674 len = de->name_len;
91d0d892 675 if (!IS_ENCRYPTED(dir)) {
b3098486 676 /* Directory is not encrypted */
4b3cb1d1 677 (void) ext4fs_dirhash(dir, de->name,
b3098486
MH
678 de->name_len, &h);
679 printk("%*.s:(U)%x.%u ", len,
680 name, h.hash,
681 (unsigned) ((char *) de
682 - base));
683 } else {
a7550b30
JK
684 struct fscrypt_str de_name =
685 FSTR_INIT(name, len);
686
b3098486 687 /* Directory is encrypted */
a7550b30 688 res = fscrypt_fname_alloc_buffer(
8b10fe68 689 len, &fname_crypto_str);
ef1eb3aa 690 if (res)
b3098486
MH
691 printk(KERN_WARNING "Error "
692 "allocating crypto "
693 "buffer--skipping "
694 "crypto\n");
a7550b30
JK
695 res = fscrypt_fname_disk_to_usr(dir,
696 0, 0, &de_name,
697 &fname_crypto_str);
ef1eb3aa 698 if (res) {
b3098486
MH
699 printk(KERN_WARNING "Error "
700 "converting filename "
701 "from disk to usr"
702 "\n");
703 name = "??";
704 len = 2;
705 } else {
706 name = fname_crypto_str.name;
707 len = fname_crypto_str.len;
708 }
471fbbea
DR
709 if (IS_CASEFOLDED(dir))
710 h.hash = EXT4_DIRENT_HASH(de);
711 else
4b3cb1d1
TT
712 (void) ext4fs_dirhash(dir,
713 de->name,
714 de->name_len, &h);
b3098486
MH
715 printk("%*.s:(E)%x.%u ", len, name,
716 h.hash, (unsigned) ((char *) de
717 - base));
a7550b30
JK
718 fscrypt_fname_free_buffer(
719 &fname_crypto_str);
b3098486
MH
720 }
721#else
ac27a0ec
DK
722 int len = de->name_len;
723 char *name = de->name;
4b3cb1d1
TT
724 (void) ext4fs_dirhash(dir, de->name,
725 de->name_len, &h);
b3098486 726 printk("%*.s:%x.%u ", len, name, h.hash,
265c6a0f 727 (unsigned) ((char *) de - base));
b3098486 728#endif
ac27a0ec 729 }
471fbbea 730 space += ext4_dir_rec_len(de->name_len, dir);
ac27a0ec
DK
731 names++;
732 }
3d0518f4 733 de = ext4_next_entry(de, size);
ac27a0ec 734 }
d74f3d25 735 printk(KERN_CONT "(%i)\n", names);
ac27a0ec
DK
736 return (struct stats) { names, space, 1 };
737}
738
739struct stats dx_show_entries(struct dx_hash_info *hinfo, struct inode *dir,
740 struct dx_entry *entries, int levels)
741{
742 unsigned blocksize = dir->i_sb->s_blocksize;
af5bc92d 743 unsigned count = dx_get_count(entries), names = 0, space = 0, i;
ac27a0ec
DK
744 unsigned bcount = 0;
745 struct buffer_head *bh;
ac27a0ec
DK
746 printk("%i indexed blocks...\n", count);
747 for (i = 0; i < count; i++, entries++)
748 {
725d26d3
AK
749 ext4_lblk_t block = dx_get_block(entries);
750 ext4_lblk_t hash = i ? dx_get_hash(entries): 0;
ac27a0ec
DK
751 u32 range = i < count - 1? (dx_get_hash(entries + 1) - hash): ~hash;
752 struct stats stats;
753 printk("%s%3u:%03u hash %8x/%8x ",levels?"":" ", i, block, hash, range);
1c215028
TT
754 bh = ext4_bread(NULL,dir, block, 0);
755 if (!bh || IS_ERR(bh))
756 continue;
ac27a0ec
DK
757 stats = levels?
758 dx_show_entries(hinfo, dir, ((struct dx_node *) bh->b_data)->entries, levels - 1):
b3098486
MH
759 dx_show_leaf(dir, hinfo, (struct ext4_dir_entry_2 *)
760 bh->b_data, blocksize, 0);
ac27a0ec
DK
761 names += stats.names;
762 space += stats.space;
763 bcount += stats.bcount;
af5bc92d 764 brelse(bh);
ac27a0ec
DK
765 }
766 if (bcount)
60e6679e 767 printk(KERN_DEBUG "%snames %u, fullness %u (%u%%)\n",
4776004f
TT
768 levels ? "" : " ", names, space/bcount,
769 (space/bcount)*100/blocksize);
ac27a0ec
DK
770 return (struct stats) { names, space, bcount};
771}
c6c818e5
VT
772
773/*
774 * Linear search cross check
775 */
776static inline void htree_rep_invariant_check(struct dx_entry *at,
777 struct dx_entry *target,
778 u32 hash, unsigned int n)
779{
780 while (n--) {
781 dxtrace(printk(KERN_CONT ","));
782 if (dx_get_hash(++at) > hash) {
783 at--;
784 break;
785 }
786 }
787 ASSERT(at == target - 1);
788}
789#else /* DX_DEBUG */
790static inline void htree_rep_invariant_check(struct dx_entry *at,
791 struct dx_entry *target,
792 u32 hash, unsigned int n)
793{
794}
ac27a0ec
DK
795#endif /* DX_DEBUG */
796
797/*
798 * Probe for a directory leaf block to search.
799 *
800 * dx_probe can return ERR_BAD_DX_DIR, which means there was a format
801 * error in the directory index, and the caller should fall back to
802 * searching the directory normally. The callers of dx_probe **MUST**
803 * check for this error code, and make sure it never gets reflected
804 * back to userspace.
805 */
806static struct dx_frame *
5b643f9c 807dx_probe(struct ext4_filename *fname, struct inode *dir,
dd73b5d5 808 struct dx_hash_info *hinfo, struct dx_frame *frame_in)
ac27a0ec 809{
3ba733f8 810 unsigned count, indirect, level, i;
ac27a0ec
DK
811 struct dx_entry *at, *entries, *p, *q, *m;
812 struct dx_root *root;
ac27a0ec 813 struct dx_frame *frame = frame_in;
dd73b5d5 814 struct dx_frame *ret_err = ERR_PTR(ERR_BAD_DX_DIR);
ac27a0ec 815 u32 hash;
3ba733f8
JK
816 ext4_lblk_t block;
817 ext4_lblk_t blocks[EXT4_HTREE_LEVEL];
ac27a0ec 818
e08ac99f 819 memset(frame_in, 0, EXT4_HTREE_LEVEL * sizeof(frame_in[0]));
dd73b5d5
TT
820 frame->bh = ext4_read_dirblock(dir, 0, INDEX);
821 if (IS_ERR(frame->bh))
822 return (struct dx_frame *) frame->bh;
823
824 root = (struct dx_root *) frame->bh->b_data;
ac27a0ec
DK
825 if (root->info.hash_version != DX_HASH_TEA &&
826 root->info.hash_version != DX_HASH_HALF_MD4 &&
471fbbea
DR
827 root->info.hash_version != DX_HASH_LEGACY &&
828 root->info.hash_version != DX_HASH_SIPHASH) {
b03a2f7e
AD
829 ext4_warning_inode(dir, "Unrecognised inode hash code %u",
830 root->info.hash_version);
ac27a0ec
DK
831 goto fail;
832 }
471fbbea
DR
833 if (ext4_hash_in_dirent(dir)) {
834 if (root->info.hash_version != DX_HASH_SIPHASH) {
835 ext4_warning_inode(dir,
836 "Hash in dirent, but hash is not SIPHASH");
837 goto fail;
838 }
839 } else {
840 if (root->info.hash_version == DX_HASH_SIPHASH) {
841 ext4_warning_inode(dir,
842 "Hash code is SIPHASH, but hash not in dirent");
843 goto fail;
844 }
845 }
5b643f9c
TT
846 if (fname)
847 hinfo = &fname->hinfo;
ac27a0ec 848 hinfo->hash_version = root->info.hash_version;
f99b2589
TT
849 if (hinfo->hash_version <= DX_HASH_TEA)
850 hinfo->hash_version += EXT4_SB(dir->i_sb)->s_hash_unsigned;
617ba13b 851 hinfo->seed = EXT4_SB(dir->i_sb)->s_hash_seed;
1ae98e29
DR
852 /* hash is already computed for encrypted casefolded directory */
853 if (fname && fname_name(fname) &&
4b3cb1d1
TT
854 !(IS_ENCRYPTED(dir) && IS_CASEFOLDED(dir))) {
855 int ret = ext4fs_dirhash(dir, fname_name(fname),
856 fname_len(fname), hinfo);
857 if (ret < 0) {
858 ret_err = ERR_PTR(ret);
859 goto fail;
860 }
861 }
ac27a0ec
DK
862 hash = hinfo->hash;
863
864 if (root->info.unused_flags & 1) {
b03a2f7e
AD
865 ext4_warning_inode(dir, "Unimplemented hash flags: %#06x",
866 root->info.unused_flags);
ac27a0ec
DK
867 goto fail;
868 }
869
b03a2f7e 870 indirect = root->info.indirect_levels;
e08ac99f
AB
871 if (indirect >= ext4_dir_htree_level(dir->i_sb)) {
872 ext4_warning(dir->i_sb,
873 "Directory (ino: %lu) htree depth %#06x exceed"
874 "supported value", dir->i_ino,
875 ext4_dir_htree_level(dir->i_sb));
876 if (ext4_dir_htree_level(dir->i_sb) < EXT4_HTREE_LEVEL) {
877 ext4_warning(dir->i_sb, "Enable large directory "
878 "feature to access it");
879 }
ac27a0ec
DK
880 goto fail;
881 }
882
b03a2f7e
AD
883 entries = (struct dx_entry *)(((char *)&root->info) +
884 root->info.info_length);
3d82abae
ES
885
886 if (dx_get_limit(entries) != dx_root_limit(dir,
887 root->info.info_length)) {
b03a2f7e
AD
888 ext4_warning_inode(dir, "dx entry: limit %u != root limit %u",
889 dx_get_limit(entries),
890 dx_root_limit(dir, root->info.info_length));
3d82abae
ES
891 goto fail;
892 }
893
af5bc92d 894 dxtrace(printk("Look up %x", hash));
3ba733f8
JK
895 level = 0;
896 blocks[0] = 0;
dd73b5d5 897 while (1) {
ac27a0ec 898 count = dx_get_count(entries);
3d82abae 899 if (!count || count > dx_get_limit(entries)) {
b03a2f7e
AD
900 ext4_warning_inode(dir,
901 "dx entry: count %u beyond limit %u",
902 count, dx_get_limit(entries));
dd73b5d5 903 goto fail;
3d82abae
ES
904 }
905
ac27a0ec
DK
906 p = entries + 1;
907 q = entries + count - 1;
dd73b5d5 908 while (p <= q) {
b03a2f7e 909 m = p + (q - p) / 2;
d74f3d25 910 dxtrace(printk(KERN_CONT "."));
ac27a0ec
DK
911 if (dx_get_hash(m) > hash)
912 q = m - 1;
913 else
914 p = m + 1;
915 }
916
c6c818e5 917 htree_rep_invariant_check(entries, p, hash, count - 1);
ac27a0ec
DK
918
919 at = p - 1;
d74f3d25
JP
920 dxtrace(printk(KERN_CONT " %x->%u\n",
921 at == entries ? 0 : dx_get_hash(at),
b03a2f7e 922 dx_get_block(at)));
ac27a0ec
DK
923 frame->entries = entries;
924 frame->at = at;
3ba733f8
JK
925
926 block = dx_get_block(at);
927 for (i = 0; i <= level; i++) {
928 if (blocks[i] == block) {
929 ext4_warning_inode(dir,
930 "dx entry: tree cycle block %u points back to block %u",
931 blocks[level], block);
932 goto fail;
933 }
934 }
935 if (++level > indirect)
dd73b5d5 936 return frame;
3ba733f8 937 blocks[level] = block;
dd73b5d5 938 frame++;
3ba733f8 939 frame->bh = ext4_read_dirblock(dir, block, INDEX);
dd73b5d5
TT
940 if (IS_ERR(frame->bh)) {
941 ret_err = (struct dx_frame *) frame->bh;
942 frame->bh = NULL;
943 goto fail;
dbe89444 944 }
3ba733f8 945
dd73b5d5 946 entries = ((struct dx_node *) frame->bh->b_data)->entries;
dbe89444 947
b03a2f7e
AD
948 if (dx_get_limit(entries) != dx_node_limit(dir)) {
949 ext4_warning_inode(dir,
950 "dx entry: limit %u != node limit %u",
951 dx_get_limit(entries), dx_node_limit(dir));
dd73b5d5 952 goto fail;
3d82abae 953 }
ac27a0ec 954 }
dd73b5d5 955fail:
ac27a0ec
DK
956 while (frame >= frame_in) {
957 brelse(frame->bh);
958 frame--;
959 }
b3098486 960
dd73b5d5 961 if (ret_err == ERR_PTR(ERR_BAD_DX_DIR))
b03a2f7e
AD
962 ext4_warning_inode(dir,
963 "Corrupt directory, running e2fsck is recommended");
dd73b5d5 964 return ret_err;
ac27a0ec
DK
965}
966
b03a2f7e 967static void dx_release(struct dx_frame *frames)
ac27a0ec 968{
e08ac99f
AB
969 struct dx_root_info *info;
970 int i;
08fc98a4 971 unsigned int indirect_levels;
e08ac99f 972
ac27a0ec
DK
973 if (frames[0].bh == NULL)
974 return;
975
e08ac99f 976 info = &((struct dx_root *)frames[0].bh->b_data)->info;
08fc98a4
ST
977 /* save local copy, "info" may be freed after brelse() */
978 indirect_levels = info->indirect_levels;
979 for (i = 0; i <= indirect_levels; i++) {
e08ac99f
AB
980 if (frames[i].bh == NULL)
981 break;
982 brelse(frames[i].bh);
983 frames[i].bh = NULL;
984 }
ac27a0ec
DK
985}
986
987/*
988 * This function increments the frame pointer to search the next leaf
989 * block, and reads in the necessary intervening nodes if the search
990 * should be necessary. Whether or not the search is necessary is
991 * controlled by the hash parameter. If the hash value is even, then
992 * the search is only continued if the next block starts with that
993 * hash value. This is used if we are searching for a specific file.
994 *
995 * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
996 *
997 * This function returns 1 if the caller should continue to search,
998 * or 0 if it should not. If there is an error reading one of the
999 * index blocks, it will a negative error code.
1000 *
1001 * If start_hash is non-null, it will be filled in with the starting
1002 * hash of the next page.
1003 */
617ba13b 1004static int ext4_htree_next_block(struct inode *dir, __u32 hash,
ac27a0ec
DK
1005 struct dx_frame *frame,
1006 struct dx_frame *frames,
1007 __u32 *start_hash)
1008{
1009 struct dx_frame *p;
1010 struct buffer_head *bh;
dc6982ff 1011 int num_frames = 0;
ac27a0ec
DK
1012 __u32 bhash;
1013
1014 p = frame;
1015 /*
1016 * Find the next leaf page by incrementing the frame pointer.
1017 * If we run out of entries in the interior node, loop around and
1018 * increment pointer in the parent node. When we break out of
1019 * this loop, num_frames indicates the number of interior
1020 * nodes need to be read.
1021 */
1022 while (1) {
1023 if (++(p->at) < p->entries + dx_get_count(p->entries))
1024 break;
1025 if (p == frames)
1026 return 0;
1027 num_frames++;
1028 p--;
1029 }
1030
1031 /*
1032 * If the hash is 1, then continue only if the next page has a
1033 * continuation hash of any value. This is used for readdir
1034 * handling. Otherwise, check to see if the hash matches the
3088e5a5 1035 * desired continuation hash. If it doesn't, return since
ac27a0ec
DK
1036 * there's no point to read in the successive index pages.
1037 */
1038 bhash = dx_get_hash(p->at);
1039 if (start_hash)
1040 *start_hash = bhash;
1041 if ((hash & 1) == 0) {
1042 if ((bhash & ~1) != hash)
1043 return 0;
1044 }
1045 /*
1046 * If the hash is HASH_NB_ALWAYS, we always go to the next
1047 * block so no check is necessary
1048 */
1049 while (num_frames--) {
dc6982ff
TT
1050 bh = ext4_read_dirblock(dir, dx_get_block(p->at), INDEX);
1051 if (IS_ERR(bh))
1052 return PTR_ERR(bh);
ac27a0ec 1053 p++;
af5bc92d 1054 brelse(p->bh);
ac27a0ec
DK
1055 p->bh = bh;
1056 p->at = p->entries = ((struct dx_node *) bh->b_data)->entries;
1057 }
1058 return 1;
1059}
1060
1061
ac27a0ec
DK
1062/*
1063 * This function fills a red-black tree with information from a
1064 * directory block. It returns the number directory entries loaded
1065 * into the tree. If there is an error it is returned in err.
1066 */
1067static int htree_dirblock_to_tree(struct file *dir_file,
725d26d3 1068 struct inode *dir, ext4_lblk_t block,
ac27a0ec
DK
1069 struct dx_hash_info *hinfo,
1070 __u32 start_hash, __u32 start_minor_hash)
1071{
1072 struct buffer_head *bh;
617ba13b 1073 struct ext4_dir_entry_2 *de, *top;
90b0a973 1074 int err = 0, count = 0;
a7550b30 1075 struct fscrypt_str fname_crypto_str = FSTR_INIT(NULL, 0), tmp_str;
471fbbea 1076 int csum = ext4_has_metadata_csum(dir->i_sb);
ac27a0ec 1077
725d26d3
AK
1078 dxtrace(printk(KERN_INFO "In htree dirblock_to_tree: block %lu\n",
1079 (unsigned long)block));
4e19d6b6 1080 bh = ext4_read_dirblock(dir, block, DIRENT_HTREE);
dc6982ff
TT
1081 if (IS_ERR(bh))
1082 return PTR_ERR(bh);
b0336e8d 1083
617ba13b 1084 de = (struct ext4_dir_entry_2 *) bh->b_data;
471fbbea 1085 /* csum entries are not larger in the casefolded encrypted case */
617ba13b 1086 top = (struct ext4_dir_entry_2 *) ((char *) de +
ac27a0ec 1087 dir->i_sb->s_blocksize -
471fbbea
DR
1088 ext4_dir_rec_len(0,
1089 csum ? NULL : dir));
1f3862b5 1090 /* Check if the directory is encrypted */
592ddec7 1091 if (IS_ENCRYPTED(dir)) {
ec0caa97 1092 err = fscrypt_prepare_readdir(dir);
c936e1ec
TT
1093 if (err < 0) {
1094 brelse(bh);
1095 return err;
1096 }
8b10fe68
JL
1097 err = fscrypt_fname_alloc_buffer(EXT4_NAME_LEN,
1098 &fname_crypto_str);
1f3862b5 1099 if (err < 0) {
1f3862b5
MH
1100 brelse(bh);
1101 return err;
1102 }
1103 }
64c314ff 1104
3d0518f4 1105 for (; de < top; de = ext4_next_entry(de, dir->i_sb->s_blocksize)) {
f7c21177 1106 if (ext4_check_dir_entry(dir, NULL, de, bh,
226ba972 1107 bh->b_data, bh->b_size,
cad3f007
TT
1108 (block<<EXT4_BLOCK_SIZE_BITS(dir->i_sb))
1109 + ((char *)de - bh->b_data))) {
64cb9273
AV
1110 /* silently ignore the rest of the block */
1111 break;
e6c40211 1112 }
471fbbea
DR
1113 if (ext4_hash_in_dirent(dir)) {
1114 if (de->name_len && de->inode) {
1115 hinfo->hash = EXT4_DIRENT_HASH(de);
1116 hinfo->minor_hash = EXT4_DIRENT_MINOR_HASH(de);
1117 } else {
1118 hinfo->hash = 0;
1119 hinfo->minor_hash = 0;
1120 }
1121 } else {
4b3cb1d1
TT
1122 err = ext4fs_dirhash(dir, de->name,
1123 de->name_len, hinfo);
1124 if (err < 0) {
1125 count = err;
1126 goto errout;
1127 }
471fbbea 1128 }
ac27a0ec
DK
1129 if ((hinfo->hash < start_hash) ||
1130 ((hinfo->hash == start_hash) &&
1131 (hinfo->minor_hash < start_minor_hash)))
1132 continue;
1133 if (de->inode == 0)
1134 continue;
592ddec7 1135 if (!IS_ENCRYPTED(dir)) {
1f3862b5
MH
1136 tmp_str.name = de->name;
1137 tmp_str.len = de->name_len;
1138 err = ext4_htree_store_dirent(dir_file,
1139 hinfo->hash, hinfo->minor_hash, de,
1140 &tmp_str);
1141 } else {
d2299590 1142 int save_len = fname_crypto_str.len;
a7550b30
JK
1143 struct fscrypt_str de_name = FSTR_INIT(de->name,
1144 de->name_len);
d2299590 1145
1f3862b5 1146 /* Directory is encrypted */
a7550b30
JK
1147 err = fscrypt_fname_disk_to_usr(dir, hinfo->hash,
1148 hinfo->minor_hash, &de_name,
1149 &fname_crypto_str);
ef1eb3aa 1150 if (err) {
1f3862b5
MH
1151 count = err;
1152 goto errout;
1153 }
1154 err = ext4_htree_store_dirent(dir_file,
1155 hinfo->hash, hinfo->minor_hash, de,
1156 &fname_crypto_str);
d2299590 1157 fname_crypto_str.len = save_len;
1f3862b5 1158 }
2f61830a 1159 if (err != 0) {
1f3862b5
MH
1160 count = err;
1161 goto errout;
ac27a0ec
DK
1162 }
1163 count++;
1164 }
1f3862b5 1165errout:
ac27a0ec 1166 brelse(bh);
a7550b30 1167 fscrypt_fname_free_buffer(&fname_crypto_str);
ac27a0ec
DK
1168 return count;
1169}
1170
1171
1172/*
1173 * This function fills a red-black tree with information from a
1174 * directory. We start scanning the directory in hash order, starting
1175 * at start_hash and start_minor_hash.
1176 *
1177 * This function returns the number of entries inserted into the tree,
1178 * or a negative error code.
1179 */
617ba13b 1180int ext4_htree_fill_tree(struct file *dir_file, __u32 start_hash,
ac27a0ec
DK
1181 __u32 start_minor_hash, __u32 *next_hash)
1182{
1183 struct dx_hash_info hinfo;
617ba13b 1184 struct ext4_dir_entry_2 *de;
e08ac99f 1185 struct dx_frame frames[EXT4_HTREE_LEVEL], *frame;
ac27a0ec 1186 struct inode *dir;
725d26d3 1187 ext4_lblk_t block;
ac27a0ec 1188 int count = 0;
725d26d3 1189 int ret, err;
ac27a0ec 1190 __u32 hashval;
a7550b30 1191 struct fscrypt_str tmp_str;
ac27a0ec 1192
60e6679e 1193 dxtrace(printk(KERN_DEBUG "In htree_fill_tree, start hash: %x:%x\n",
4776004f 1194 start_hash, start_minor_hash));
496ad9aa 1195 dir = file_inode(dir_file);
12e9b892 1196 if (!(ext4_test_inode_flag(dir, EXT4_INODE_INDEX))) {
471fbbea
DR
1197 if (ext4_hash_in_dirent(dir))
1198 hinfo.hash_version = DX_HASH_SIPHASH;
1199 else
1200 hinfo.hash_version =
1201 EXT4_SB(dir->i_sb)->s_def_hash_version;
f99b2589
TT
1202 if (hinfo.hash_version <= DX_HASH_TEA)
1203 hinfo.hash_version +=
1204 EXT4_SB(dir->i_sb)->s_hash_unsigned;
617ba13b 1205 hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed;
8af0f082
TM
1206 if (ext4_has_inline_data(dir)) {
1207 int has_inline_data = 1;
7633b08b
TT
1208 count = ext4_inlinedir_to_tree(dir_file, dir, 0,
1209 &hinfo, start_hash,
1210 start_minor_hash,
1211 &has_inline_data);
8af0f082
TM
1212 if (has_inline_data) {
1213 *next_hash = ~0;
1214 return count;
1215 }
1216 }
ac27a0ec
DK
1217 count = htree_dirblock_to_tree(dir_file, dir, 0, &hinfo,
1218 start_hash, start_minor_hash);
1219 *next_hash = ~0;
1220 return count;
1221 }
1222 hinfo.hash = start_hash;
1223 hinfo.minor_hash = 0;
dd73b5d5
TT
1224 frame = dx_probe(NULL, dir, &hinfo, frames);
1225 if (IS_ERR(frame))
1226 return PTR_ERR(frame);
ac27a0ec
DK
1227
1228 /* Add '.' and '..' from the htree header */
1229 if (!start_hash && !start_minor_hash) {
617ba13b 1230 de = (struct ext4_dir_entry_2 *) frames[0].bh->b_data;
2f61830a
TT
1231 tmp_str.name = de->name;
1232 tmp_str.len = de->name_len;
1233 err = ext4_htree_store_dirent(dir_file, 0, 0,
1234 de, &tmp_str);
1235 if (err != 0)
ac27a0ec
DK
1236 goto errout;
1237 count++;
1238 }
1239 if (start_hash < 2 || (start_hash ==2 && start_minor_hash==0)) {
617ba13b 1240 de = (struct ext4_dir_entry_2 *) frames[0].bh->b_data;
3d0518f4 1241 de = ext4_next_entry(de, dir->i_sb->s_blocksize);
2f61830a
TT
1242 tmp_str.name = de->name;
1243 tmp_str.len = de->name_len;
1244 err = ext4_htree_store_dirent(dir_file, 2, 0,
1245 de, &tmp_str);
1246 if (err != 0)
ac27a0ec
DK
1247 goto errout;
1248 count++;
1249 }
1250
1251 while (1) {
1f60fbe7
TT
1252 if (fatal_signal_pending(current)) {
1253 err = -ERESTARTSYS;
1254 goto errout;
1255 }
1256 cond_resched();
ac27a0ec
DK
1257 block = dx_get_block(frame->at);
1258 ret = htree_dirblock_to_tree(dir_file, dir, block, &hinfo,
1259 start_hash, start_minor_hash);
1260 if (ret < 0) {
1261 err = ret;
1262 goto errout;
1263 }
1264 count += ret;
1265 hashval = ~0;
617ba13b 1266 ret = ext4_htree_next_block(dir, HASH_NB_ALWAYS,
ac27a0ec
DK
1267 frame, frames, &hashval);
1268 *next_hash = hashval;
1269 if (ret < 0) {
1270 err = ret;
1271 goto errout;
1272 }
1273 /*
1274 * Stop if: (a) there are no more entries, or
1275 * (b) we have inserted at least one entry and the
1276 * next hash value is not a continuation
1277 */
1278 if ((ret == 0) ||
1279 (count && ((hashval & 1) == 0)))
1280 break;
1281 }
1282 dx_release(frames);
4776004f
TT
1283 dxtrace(printk(KERN_DEBUG "Fill tree: returned %d entries, "
1284 "next hash: %x\n", count, *next_hash));
ac27a0ec
DK
1285 return count;
1286errout:
1287 dx_release(frames);
1288 return (err);
1289}
1290
7335cd3b
TM
1291static inline int search_dirblock(struct buffer_head *bh,
1292 struct inode *dir,
5b643f9c 1293 struct ext4_filename *fname,
7335cd3b
TM
1294 unsigned int offset,
1295 struct ext4_dir_entry_2 **res_dir)
1296{
5b643f9c 1297 return ext4_search_dir(bh, bh->b_data, dir->i_sb->s_blocksize, dir,
d6b97550 1298 fname, offset, res_dir);
7335cd3b
TM
1299}
1300
ac27a0ec
DK
1301/*
1302 * Directory block splitting, compacting
1303 */
1304
ef2b02d3
ES
1305/*
1306 * Create map of hash values, offsets, and sizes, stored at end of block.
1307 * Returns number of entries mapped.
1308 */
46c116b9
JK
1309static int dx_make_map(struct inode *dir, struct buffer_head *bh,
1310 struct dx_hash_info *hinfo,
8bad4597 1311 struct dx_map_entry *map_tail)
ac27a0ec
DK
1312{
1313 int count = 0;
46c116b9
JK
1314 struct ext4_dir_entry_2 *de = (struct ext4_dir_entry_2 *)bh->b_data;
1315 unsigned int buflen = bh->b_size;
1316 char *base = bh->b_data;
ac27a0ec
DK
1317 struct dx_hash_info h = *hinfo;
1318
46c116b9
JK
1319 if (ext4_has_metadata_csum(dir->i_sb))
1320 buflen -= sizeof(struct ext4_dir_entry_tail);
1321
1322 while ((char *) de < base + buflen) {
1323 if (ext4_check_dir_entry(dir, NULL, de, bh, base, buflen,
1324 ((char *)de) - base))
1325 return -EFSCORRUPTED;
ac27a0ec 1326 if (de->name_len && de->inode) {
471fbbea
DR
1327 if (ext4_hash_in_dirent(dir))
1328 h.hash = EXT4_DIRENT_HASH(de);
4b3cb1d1
TT
1329 else {
1330 int err = ext4fs_dirhash(dir, de->name,
1331 de->name_len, &h);
1332 if (err < 0)
1333 return err;
1334 }
ac27a0ec
DK
1335 map_tail--;
1336 map_tail->hash = h.hash;
9aee2286 1337 map_tail->offs = ((char *) de - base)>>2;
ef2b02d3 1338 map_tail->size = le16_to_cpu(de->rec_len);
ac27a0ec
DK
1339 count++;
1340 cond_resched();
1341 }
46c116b9 1342 de = ext4_next_entry(de, dir->i_sb->s_blocksize);
ac27a0ec
DK
1343 }
1344 return count;
1345}
1346
ef2b02d3 1347/* Sort map by hash value */
ac27a0ec
DK
1348static void dx_sort_map (struct dx_map_entry *map, unsigned count)
1349{
63f57933
AM
1350 struct dx_map_entry *p, *q, *top = map + count - 1;
1351 int more;
1352 /* Combsort until bubble sort doesn't suck */
1353 while (count > 2) {
1354 count = count*10/13;
1355 if (count - 9 < 2) /* 9, 10 -> 11 */
1356 count = 11;
1357 for (p = top, q = p - count; q >= map; p--, q--)
1358 if (p->hash < q->hash)
1359 swap(*p, *q);
1360 }
1361 /* Garden variety bubble sort */
1362 do {
1363 more = 0;
1364 q = top;
1365 while (q-- > map) {
1366 if (q[1].hash >= q[0].hash)
ac27a0ec 1367 continue;
63f57933
AM
1368 swap(*(q+1), *q);
1369 more = 1;
ac27a0ec
DK
1370 }
1371 } while(more);
1372}
1373
725d26d3 1374static void dx_insert_block(struct dx_frame *frame, u32 hash, ext4_lblk_t block)
ac27a0ec
DK
1375{
1376 struct dx_entry *entries = frame->entries;
1377 struct dx_entry *old = frame->at, *new = old + 1;
1378 int count = dx_get_count(entries);
1379
837c23fb
CX
1380 ASSERT(count < dx_get_limit(entries));
1381 ASSERT(old < entries + count);
ac27a0ec
DK
1382 memmove(new + 1, new, (char *)(entries + count) - (char *)(new));
1383 dx_set_hash(new, hash);
1384 dx_set_block(new, block);
1385 dx_set_count(entries, count + 1);
1386}
ac27a0ec 1387
5298d4bf 1388#if IS_ENABLED(CONFIG_UNICODE)
b886ee3e
GKB
1389/*
1390 * Test whether a case-insensitive directory entry matches the filename
3ae72562
GKB
1391 * being searched for. If quick is set, assume the name being looked up
1392 * is already in the casefolded form.
b886ee3e
GKB
1393 *
1394 * Returns: 0 if the directory entry matches, more than 0 if it
1395 * doesn't match or less than zero on error.
1396 */
471fbbea
DR
1397static int ext4_ci_compare(const struct inode *parent, const struct qstr *name,
1398 u8 *de_name, size_t de_name_len, bool quick)
b886ee3e 1399{
f8f4acb6
DR
1400 const struct super_block *sb = parent->i_sb;
1401 const struct unicode_map *um = sb->s_encoding;
471fbbea
DR
1402 struct fscrypt_str decrypted_name = FSTR_INIT(NULL, de_name_len);
1403 struct qstr entry = QSTR_INIT(de_name, de_name_len);
b886ee3e
GKB
1404 int ret;
1405
471fbbea
DR
1406 if (IS_ENCRYPTED(parent)) {
1407 const struct fscrypt_str encrypted_name =
1408 FSTR_INIT(de_name, de_name_len);
1409
1410 decrypted_name.name = kmalloc(de_name_len, GFP_KERNEL);
1411 if (!decrypted_name.name)
1412 return -ENOMEM;
1413 ret = fscrypt_fname_disk_to_usr(parent, 0, 0, &encrypted_name,
1414 &decrypted_name);
1415 if (ret < 0)
1416 goto out;
1417 entry.name = decrypted_name.name;
1418 entry.len = decrypted_name.len;
1419 }
1420
3ae72562 1421 if (quick)
471fbbea 1422 ret = utf8_strncasecmp_folded(um, name, &entry);
3ae72562 1423 else
471fbbea 1424 ret = utf8_strncasecmp(um, name, &entry);
b886ee3e
GKB
1425 if (ret < 0) {
1426 /* Handle invalid character sequence as either an error
1427 * or as an opaque byte sequence.
1428 */
f8f4acb6 1429 if (sb_has_strict_encoding(sb))
471fbbea
DR
1430 ret = -EINVAL;
1431 else if (name->len != entry.len)
1432 ret = 1;
1433 else
1434 ret = !!memcmp(name->name, entry.name, entry.len);
b886ee3e 1435 }
471fbbea
DR
1436out:
1437 kfree(decrypted_name.name);
b886ee3e
GKB
1438 return ret;
1439}
3ae72562 1440
1ae98e29
DR
1441int ext4_fname_setup_ci_filename(struct inode *dir, const struct qstr *iname,
1442 struct ext4_filename *name)
3ae72562 1443{
1ae98e29
DR
1444 struct fscrypt_str *cf_name = &name->cf_name;
1445 struct dx_hash_info *hinfo = &name->hinfo;
96fcaf86
GKB
1446 int len;
1447
63e7f128
DR
1448 if (!IS_CASEFOLDED(dir) || !dir->i_sb->s_encoding ||
1449 (IS_ENCRYPTED(dir) && !fscrypt_has_encryption_key(dir))) {
3ae72562 1450 cf_name->name = NULL;
1ae98e29 1451 return 0;
3ae72562
GKB
1452 }
1453
1454 cf_name->name = kmalloc(EXT4_NAME_LEN, GFP_NOFS);
1455 if (!cf_name->name)
1ae98e29 1456 return -ENOMEM;
3ae72562 1457
f8f4acb6 1458 len = utf8_casefold(dir->i_sb->s_encoding,
96fcaf86
GKB
1459 iname, cf_name->name,
1460 EXT4_NAME_LEN);
1461 if (len <= 0) {
3ae72562
GKB
1462 kfree(cf_name->name);
1463 cf_name->name = NULL;
1464 }
96fcaf86 1465 cf_name->len = (unsigned) len;
1ae98e29
DR
1466 if (!IS_ENCRYPTED(dir))
1467 return 0;
96fcaf86 1468
1ae98e29
DR
1469 hinfo->hash_version = DX_HASH_SIPHASH;
1470 hinfo->seed = NULL;
1471 if (cf_name->name)
4b3cb1d1 1472 return ext4fs_dirhash(dir, cf_name->name, cf_name->len, hinfo);
1ae98e29 1473 else
4b3cb1d1 1474 return ext4fs_dirhash(dir, iname->name, iname->len, hinfo);
3ae72562 1475}
b886ee3e
GKB
1476#endif
1477
ac27a0ec 1478/*
d9b9f8d5 1479 * Test whether a directory entry matches the filename being searched for.
ac27a0ec 1480 *
d9b9f8d5 1481 * Return: %true if the directory entry matches, otherwise %false.
ac27a0ec 1482 */
471fbbea 1483static bool ext4_match(struct inode *parent,
b886ee3e 1484 const struct ext4_filename *fname,
471fbbea 1485 struct ext4_dir_entry_2 *de)
ac27a0ec 1486{
067d1023 1487 struct fscrypt_name f;
1f3862b5 1488
ac27a0ec 1489 if (!de->inode)
d9b9f8d5 1490 return false;
1f3862b5 1491
067d1023
EB
1492 f.usr_fname = fname->usr_fname;
1493 f.disk_name = fname->disk_name;
643fa961 1494#ifdef CONFIG_FS_ENCRYPTION
067d1023 1495 f.crypto_buf = fname->crypto_buf;
1f3862b5 1496#endif
b886ee3e 1497
5298d4bf 1498#if IS_ENABLED(CONFIG_UNICODE)
63e7f128
DR
1499 if (parent->i_sb->s_encoding && IS_CASEFOLDED(parent) &&
1500 (!IS_ENCRYPTED(parent) || fscrypt_has_encryption_key(parent))) {
3ae72562
GKB
1501 if (fname->cf_name.name) {
1502 struct qstr cf = {.name = fname->cf_name.name,
1503 .len = fname->cf_name.len};
471fbbea 1504 if (IS_ENCRYPTED(parent)) {
1ae98e29
DR
1505 if (fname->hinfo.hash != EXT4_DIRENT_HASH(de) ||
1506 fname->hinfo.minor_hash !=
1507 EXT4_DIRENT_MINOR_HASH(de)) {
1508
d4ffeeb7 1509 return false;
1ae98e29 1510 }
471fbbea
DR
1511 }
1512 return !ext4_ci_compare(parent, &cf, de->name,
1513 de->name_len, true);
3ae72562 1514 }
471fbbea
DR
1515 return !ext4_ci_compare(parent, fname->usr_fname, de->name,
1516 de->name_len, false);
3ae72562 1517 }
b886ee3e
GKB
1518#endif
1519
067d1023 1520 return fscrypt_match_name(&f, de->name, de->name_len);
ac27a0ec
DK
1521}
1522
1523/*
1524 * Returns 0 if not found, -1 on failure, and 1 on success
1525 */
5b643f9c
TT
1526int ext4_search_dir(struct buffer_head *bh, char *search_buf, int buf_size,
1527 struct inode *dir, struct ext4_filename *fname,
5b643f9c 1528 unsigned int offset, struct ext4_dir_entry_2 **res_dir)
ac27a0ec 1529{
617ba13b 1530 struct ext4_dir_entry_2 * de;
ac27a0ec
DK
1531 char * dlimit;
1532 int de_len;
1f3862b5 1533
7335cd3b
TM
1534 de = (struct ext4_dir_entry_2 *)search_buf;
1535 dlimit = search_buf + buf_size;
c186f088 1536 while ((char *) de < dlimit - EXT4_BASE_DIR_LEN) {
ac27a0ec
DK
1537 /* this code is executed quadratically often */
1538 /* do minimal checking `by hand' */
c186f088 1539 if (de->name + de->name_len <= dlimit &&
b886ee3e 1540 ext4_match(dir, fname, de)) {
d9b9f8d5
EB
1541 /* found a match - just to be sure, do
1542 * a full check */
7303cb5b
JK
1543 if (ext4_check_dir_entry(dir, NULL, de, bh, search_buf,
1544 buf_size, offset))
d9b9f8d5
EB
1545 return -1;
1546 *res_dir = de;
1547 return 1;
ac27a0ec
DK
1548 }
1549 /* prevent looping on a bad block */
3d0518f4
WY
1550 de_len = ext4_rec_len_from_disk(de->rec_len,
1551 dir->i_sb->s_blocksize);
d9b9f8d5
EB
1552 if (de_len <= 0)
1553 return -1;
ac27a0ec 1554 offset += de_len;
617ba13b 1555 de = (struct ext4_dir_entry_2 *) ((char *) de + de_len);
ac27a0ec 1556 }
d9b9f8d5 1557 return 0;
ac27a0ec
DK
1558}
1559
c6af8803
DW
1560static int is_dx_internal_node(struct inode *dir, ext4_lblk_t block,
1561 struct ext4_dir_entry *de)
1562{
1563 struct super_block *sb = dir->i_sb;
1564
1565 if (!is_dx(dir))
1566 return 0;
1567 if (block == 0)
1568 return 1;
1569 if (de->inode == 0 &&
1570 ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize) ==
1571 sb->s_blocksize)
1572 return 1;
1573 return 0;
1574}
ac27a0ec
DK
1575
1576/*
b01531db 1577 * __ext4_find_entry()
ac27a0ec
DK
1578 *
1579 * finds an entry in the specified directory with the wanted name. It
1580 * returns the cache buffer in which the entry was found, and the entry
1581 * itself (as a parameter - res_dir). It does NOT read the inode of the
1582 * entry - you'll have to do that yourself if you want to.
1583 *
1584 * The returned buffer_head has ->b_count elevated. The caller is expected
1585 * to brelse() it when appropriate.
1586 */
b01531db
EB
1587static struct buffer_head *__ext4_find_entry(struct inode *dir,
1588 struct ext4_filename *fname,
1589 struct ext4_dir_entry_2 **res_dir,
1590 int *inlined)
ac27a0ec 1591{
af5bc92d
TT
1592 struct super_block *sb;
1593 struct buffer_head *bh_use[NAMEI_RA_SIZE];
1594 struct buffer_head *bh, *ret = NULL;
9699d4f9 1595 ext4_lblk_t start, block;
b01531db 1596 const u8 *name = fname->usr_fname->name;
9699d4f9 1597 size_t ra_max = 0; /* Number of bh's in the readahead
ac27a0ec 1598 buffer, bh_use[] */
9699d4f9 1599 size_t ra_ptr = 0; /* Current index into readahead
ac27a0ec 1600 buffer */
725d26d3 1601 ext4_lblk_t nblocks;
5b643f9c 1602 int i, namelen, retval;
ac27a0ec
DK
1603
1604 *res_dir = NULL;
1605 sb = dir->i_sb;
b01531db 1606 namelen = fname->usr_fname->len;
617ba13b 1607 if (namelen > EXT4_NAME_LEN)
ac27a0ec 1608 return NULL;
e8e948e7
TM
1609
1610 if (ext4_has_inline_data(dir)) {
1611 int has_inline_data = 1;
b01531db 1612 ret = ext4_find_inline_entry(dir, fname, res_dir,
e8e948e7 1613 &has_inline_data);
c9f62c8b
EW
1614 if (inlined)
1615 *inlined = has_inline_data;
1616 if (has_inline_data)
5b643f9c 1617 goto cleanup_and_exit;
e8e948e7
TM
1618 }
1619
8941ec8b 1620 if ((namelen <= 2) && (name[0] == '.') &&
6d5c3aa8 1621 (name[1] == '.' || name[1] == '\0')) {
8941ec8b
TT
1622 /*
1623 * "." or ".." will only be in the first block
1624 * NFS may look up ".."; "." should be handled by the VFS
1625 */
1626 block = start = 0;
1627 nblocks = 1;
1628 goto restart;
1629 }
ac27a0ec 1630 if (is_dx(dir)) {
b01531db 1631 ret = ext4_dx_find_entry(dir, fname, res_dir);
ac27a0ec
DK
1632 /*
1633 * On success, or if the error was file not found,
1634 * return. Otherwise, fall back to doing a search the
1635 * old fashioned way.
1636 */
5b643f9c
TT
1637 if (!IS_ERR(ret) || PTR_ERR(ret) != ERR_BAD_DX_DIR)
1638 goto cleanup_and_exit;
4776004f
TT
1639 dxtrace(printk(KERN_DEBUG "ext4_find_entry: dx failed, "
1640 "falling back\n"));
f39b3f45 1641 ret = NULL;
ac27a0ec 1642 }
617ba13b 1643 nblocks = dir->i_size >> EXT4_BLOCK_SIZE_BITS(sb);
9d5afec6
CR
1644 if (!nblocks) {
1645 ret = NULL;
1646 goto cleanup_and_exit;
1647 }
617ba13b 1648 start = EXT4_I(dir)->i_dir_start_lookup;
ac27a0ec
DK
1649 if (start >= nblocks)
1650 start = 0;
1651 block = start;
1652restart:
1653 do {
1654 /*
1655 * We deal with the read-ahead logic here.
1656 */
9424ef56 1657 cond_resched();
ac27a0ec
DK
1658 if (ra_ptr >= ra_max) {
1659 /* Refill the readahead buffer */
1660 ra_ptr = 0;
9699d4f9
TE
1661 if (block < start)
1662 ra_max = start - block;
1663 else
1664 ra_max = nblocks - block;
1665 ra_max = min(ra_max, ARRAY_SIZE(bh_use));
1666 retval = ext4_bread_batch(dir, block, ra_max,
1667 false /* wait */, bh_use);
1668 if (retval) {
1669 ret = ERR_PTR(retval);
1670 ra_max = 0;
1671 goto cleanup_and_exit;
ac27a0ec
DK
1672 }
1673 }
1674 if ((bh = bh_use[ra_ptr++]) == NULL)
1675 goto next;
1676 wait_on_buffer(bh);
1677 if (!buffer_uptodate(bh)) {
54d3adbc
TT
1678 EXT4_ERROR_INODE_ERR(dir, EIO,
1679 "reading directory lblock %lu",
1680 (unsigned long) block);
ac27a0ec 1681 brelse(bh);
6febe6f2
KK
1682 ret = ERR_PTR(-EIO);
1683 goto cleanup_and_exit;
ac27a0ec 1684 }
b0336e8d 1685 if (!buffer_verified(bh) &&
c6af8803
DW
1686 !is_dx_internal_node(dir, block,
1687 (struct ext4_dir_entry *)bh->b_data) &&
f036adb3 1688 !ext4_dirblock_csum_verify(dir, bh)) {
54d3adbc
TT
1689 EXT4_ERROR_INODE_ERR(dir, EFSBADCRC,
1690 "checksumming directory "
1691 "block %lu", (unsigned long)block);
b0336e8d 1692 brelse(bh);
bdddf342
TT
1693 ret = ERR_PTR(-EFSBADCRC);
1694 goto cleanup_and_exit;
b0336e8d
DW
1695 }
1696 set_buffer_verified(bh);
b01531db 1697 i = search_dirblock(bh, dir, fname,
617ba13b 1698 block << EXT4_BLOCK_SIZE_BITS(sb), res_dir);
ac27a0ec 1699 if (i == 1) {
617ba13b 1700 EXT4_I(dir)->i_dir_start_lookup = block;
ac27a0ec
DK
1701 ret = bh;
1702 goto cleanup_and_exit;
1703 } else {
1704 brelse(bh);
1705 if (i < 0)
1706 goto cleanup_and_exit;
1707 }
1708 next:
1709 if (++block >= nblocks)
1710 block = 0;
1711 } while (block != start);
1712
1713 /*
1714 * If the directory has grown while we were searching, then
1715 * search the last part of the directory before giving up.
1716 */
1717 block = nblocks;
617ba13b 1718 nblocks = dir->i_size >> EXT4_BLOCK_SIZE_BITS(sb);
ac27a0ec
DK
1719 if (block < nblocks) {
1720 start = 0;
1721 goto restart;
1722 }
1723
1724cleanup_and_exit:
1725 /* Clean up the read-ahead blocks */
1726 for (; ra_ptr < ra_max; ra_ptr++)
af5bc92d 1727 brelse(bh_use[ra_ptr]);
ac27a0ec
DK
1728 return ret;
1729}
1730
b01531db
EB
1731static struct buffer_head *ext4_find_entry(struct inode *dir,
1732 const struct qstr *d_name,
1733 struct ext4_dir_entry_2 **res_dir,
1734 int *inlined)
1735{
1736 int err;
1737 struct ext4_filename fname;
1738 struct buffer_head *bh;
1739
1740 err = ext4_fname_setup_filename(dir, d_name, 1, &fname);
1741 if (err == -ENOENT)
1742 return NULL;
1743 if (err)
1744 return ERR_PTR(err);
1745
1746 bh = __ext4_find_entry(dir, &fname, res_dir, inlined);
1747
1748 ext4_fname_free_filename(&fname);
1749 return bh;
1750}
1751
1752static struct buffer_head *ext4_lookup_entry(struct inode *dir,
1753 struct dentry *dentry,
1754 struct ext4_dir_entry_2 **res_dir)
1755{
1756 int err;
1757 struct ext4_filename fname;
1758 struct buffer_head *bh;
1759
1760 err = ext4_fname_prepare_lookup(dir, dentry, &fname);
bb9cd910 1761 generic_set_encrypted_ci_d_ops(dentry);
b01531db
EB
1762 if (err == -ENOENT)
1763 return NULL;
1764 if (err)
1765 return ERR_PTR(err);
1766
1767 bh = __ext4_find_entry(dir, &fname, res_dir, NULL);
1768
1769 ext4_fname_free_filename(&fname);
1770 return bh;
1771}
1772
5b643f9c
TT
1773static struct buffer_head * ext4_dx_find_entry(struct inode *dir,
1774 struct ext4_filename *fname,
1775 struct ext4_dir_entry_2 **res_dir)
ac27a0ec 1776{
8941ec8b 1777 struct super_block * sb = dir->i_sb;
e08ac99f 1778 struct dx_frame frames[EXT4_HTREE_LEVEL], *frame;
ac27a0ec 1779 struct buffer_head *bh;
725d26d3 1780 ext4_lblk_t block;
ac27a0ec 1781 int retval;
ac27a0ec 1782
643fa961 1783#ifdef CONFIG_FS_ENCRYPTION
1f3862b5
MH
1784 *res_dir = NULL;
1785#endif
5b643f9c 1786 frame = dx_probe(fname, dir, NULL, frames);
dd73b5d5
TT
1787 if (IS_ERR(frame))
1788 return (struct buffer_head *) frame;
ac27a0ec
DK
1789 do {
1790 block = dx_get_block(frame->at);
4e19d6b6 1791 bh = ext4_read_dirblock(dir, block, DIRENT_HTREE);
537d8f93 1792 if (IS_ERR(bh))
b0336e8d 1793 goto errout;
537d8f93 1794
d6b97550 1795 retval = search_dirblock(bh, dir, fname,
7845c049
TT
1796 block << EXT4_BLOCK_SIZE_BITS(sb),
1797 res_dir);
537d8f93
TT
1798 if (retval == 1)
1799 goto success;
af5bc92d 1800 brelse(bh);
7845c049 1801 if (retval == -1) {
537d8f93 1802 bh = ERR_PTR(ERR_BAD_DX_DIR);
7845c049
TT
1803 goto errout;
1804 }
1805
ac27a0ec 1806 /* Check to see if we should continue to search */
5b643f9c 1807 retval = ext4_htree_next_block(dir, fname->hinfo.hash, frame,
ac27a0ec
DK
1808 frames, NULL);
1809 if (retval < 0) {
b03a2f7e
AD
1810 ext4_warning_inode(dir,
1811 "error %d reading directory index block",
1812 retval);
537d8f93 1813 bh = ERR_PTR(retval);
ac27a0ec
DK
1814 goto errout;
1815 }
1816 } while (retval == 1);
1817
537d8f93 1818 bh = NULL;
ac27a0ec 1819errout:
d6b97550 1820 dxtrace(printk(KERN_DEBUG "%s not found\n", fname->usr_fname->name));
537d8f93
TT
1821success:
1822 dx_release(frames);
1823 return bh;
ac27a0ec 1824}
ac27a0ec 1825
00cd8dd3 1826static struct dentry *ext4_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
ac27a0ec 1827{
af5bc92d
TT
1828 struct inode *inode;
1829 struct ext4_dir_entry_2 *de;
1830 struct buffer_head *bh;
28b4c263 1831
89904275
EB
1832 if (dentry->d_name.len > EXT4_NAME_LEN)
1833 return ERR_PTR(-ENAMETOOLONG);
ac27a0ec 1834
b01531db 1835 bh = ext4_lookup_entry(dir, dentry, &de);
36de9286 1836 if (IS_ERR(bh))
e884bce1 1837 return ERR_CAST(bh);
ac27a0ec
DK
1838 inode = NULL;
1839 if (bh) {
498e5f24 1840 __u32 ino = le32_to_cpu(de->inode);
af5bc92d 1841 brelse(bh);
617ba13b 1842 if (!ext4_valid_inum(dir->i_sb, ino)) {
24676da4 1843 EXT4_ERROR_INODE(dir, "bad inode number: %u", ino);
6a797d27 1844 return ERR_PTR(-EFSCORRUPTED);
a6c15c2b 1845 }
7e936b73 1846 if (unlikely(ino == dir->i_ino)) {
a34e15cc
DH
1847 EXT4_ERROR_INODE(dir, "'%pd' linked to parent dir",
1848 dentry);
6a797d27 1849 return ERR_PTR(-EFSCORRUPTED);
7e936b73 1850 }
8a363970 1851 inode = ext4_iget(dir->i_sb, ino, EXT4_IGET_NORMAL);
a9049376
AV
1852 if (inode == ERR_PTR(-ESTALE)) {
1853 EXT4_ERROR_INODE(dir,
1854 "deleted inode referenced: %u",
1855 ino);
6a797d27 1856 return ERR_PTR(-EFSCORRUPTED);
e6f009b0 1857 }
592ddec7 1858 if (!IS_ERR(inode) && IS_ENCRYPTED(dir) &&
ff978b09 1859 (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode)) &&
a7550b30 1860 !fscrypt_has_permitted_context(dir, inode)) {
d9cdc903 1861 ext4_warning(inode->i_sb,
8d2ae1cb 1862 "Inconsistent encryption contexts: %lu/%lu",
8c68084b 1863 dir->i_ino, inode->i_ino);
dd01b690 1864 iput(inode);
d9cdc903
TT
1865 return ERR_PTR(-EPERM);
1866 }
ac27a0ec 1867 }
b886ee3e 1868
5298d4bf 1869#if IS_ENABLED(CONFIG_UNICODE)
b886ee3e
GKB
1870 if (!inode && IS_CASEFOLDED(dir)) {
1871 /* Eventually we want to call d_add_ci(dentry, NULL)
1872 * for negative dentries in the encoding case as
1873 * well. For now, prevent the negative dentry
1874 * from being cached.
1875 */
1876 return NULL;
1877 }
1878#endif
ac27a0ec
DK
1879 return d_splice_alias(inode, dentry);
1880}
1881
1882
617ba13b 1883struct dentry *ext4_get_parent(struct dentry *child)
ac27a0ec 1884{
498e5f24 1885 __u32 ino;
617ba13b 1886 struct ext4_dir_entry_2 * de;
ac27a0ec
DK
1887 struct buffer_head *bh;
1888
80e5d1ff 1889 bh = ext4_find_entry(d_inode(child), &dotdot_name, &de, NULL);
36de9286 1890 if (IS_ERR(bh))
e884bce1 1891 return ERR_CAST(bh);
ac27a0ec
DK
1892 if (!bh)
1893 return ERR_PTR(-ENOENT);
1894 ino = le32_to_cpu(de->inode);
1895 brelse(bh);
1896
fc64005c 1897 if (!ext4_valid_inum(child->d_sb, ino)) {
2b0143b5 1898 EXT4_ERROR_INODE(d_inode(child),
24676da4 1899 "bad parent inode number: %u", ino);
6a797d27 1900 return ERR_PTR(-EFSCORRUPTED);
a6c15c2b
VA
1901 }
1902
8a363970 1903 return d_obtain_alias(ext4_iget(child->d_sb, ino, EXT4_IGET_NORMAL));
ac27a0ec
DK
1904}
1905
ef2b02d3
ES
1906/*
1907 * Move count entries from end of map between two memory locations.
1908 * Returns pointer to last entry moved.
1909 */
617ba13b 1910static struct ext4_dir_entry_2 *
471fbbea
DR
1911dx_move_dirents(struct inode *dir, char *from, char *to,
1912 struct dx_map_entry *map, int count,
3d0518f4 1913 unsigned blocksize)
ac27a0ec
DK
1914{
1915 unsigned rec_len = 0;
1916
1917 while (count--) {
60e6679e 1918 struct ext4_dir_entry_2 *de = (struct ext4_dir_entry_2 *)
9aee2286 1919 (from + (map->offs<<2));
471fbbea
DR
1920 rec_len = ext4_dir_rec_len(de->name_len, dir);
1921
ac27a0ec 1922 memcpy (to, de, rec_len);
617ba13b 1923 ((struct ext4_dir_entry_2 *) to)->rec_len =
3d0518f4 1924 ext4_rec_len_to_disk(rec_len, blocksize);
6c091273
LR
1925
1926 /* wipe dir_entry excluding the rec_len field */
ac27a0ec 1927 de->inode = 0;
6c091273
LR
1928 memset(&de->name_len, 0, ext4_rec_len_from_disk(de->rec_len,
1929 blocksize) -
1930 offsetof(struct ext4_dir_entry_2,
1931 name_len));
1932
ac27a0ec
DK
1933 map++;
1934 to += rec_len;
1935 }
617ba13b 1936 return (struct ext4_dir_entry_2 *) (to - rec_len);
ac27a0ec
DK
1937}
1938
ef2b02d3
ES
1939/*
1940 * Compact each dir entry in the range to the minimal rec_len.
1941 * Returns pointer to last entry in range.
1942 */
471fbbea
DR
1943static struct ext4_dir_entry_2 *dx_pack_dirents(struct inode *dir, char *base,
1944 unsigned int blocksize)
ac27a0ec 1945{
617ba13b 1946 struct ext4_dir_entry_2 *next, *to, *prev, *de = (struct ext4_dir_entry_2 *) base;
ac27a0ec
DK
1947 unsigned rec_len = 0;
1948
1949 prev = to = de;
8bad4597 1950 while ((char*)de < base + blocksize) {
3d0518f4 1951 next = ext4_next_entry(de, blocksize);
ac27a0ec 1952 if (de->inode && de->name_len) {
471fbbea 1953 rec_len = ext4_dir_rec_len(de->name_len, dir);
ac27a0ec
DK
1954 if (de > to)
1955 memmove(to, de, rec_len);
3d0518f4 1956 to->rec_len = ext4_rec_len_to_disk(rec_len, blocksize);
ac27a0ec 1957 prev = to;
617ba13b 1958 to = (struct ext4_dir_entry_2 *) (((char *) to) + rec_len);
ac27a0ec
DK
1959 }
1960 de = next;
1961 }
1962 return prev;
1963}
1964
ef2b02d3
ES
1965/*
1966 * Split a full leaf block to make room for a new dir entry.
1967 * Allocate a new block, and move entries so that they are approx. equally full.
1968 * Returns pointer to de in block into which the new entry will be inserted.
1969 */
617ba13b 1970static struct ext4_dir_entry_2 *do_split(handle_t *handle, struct inode *dir,
ac27a0ec 1971 struct buffer_head **bh,struct dx_frame *frame,
f8b3b59d 1972 struct dx_hash_info *hinfo)
ac27a0ec
DK
1973{
1974 unsigned blocksize = dir->i_sb->s_blocksize;
bc75a6eb
DX
1975 unsigned continued;
1976 int count;
ac27a0ec 1977 struct buffer_head *bh2;
725d26d3 1978 ext4_lblk_t newblock;
ac27a0ec
DK
1979 u32 hash2;
1980 struct dx_map_entry *map;
1981 char *data1 = (*bh)->b_data, *data2;
59e315b4 1982 unsigned split, move, size;
617ba13b 1983 struct ext4_dir_entry_2 *de = NULL, *de2;
b0336e8d 1984 int csum_size = 0;
59e315b4 1985 int err = 0, i;
ac27a0ec 1986
9aa5d32b 1987 if (ext4_has_metadata_csum(dir->i_sb))
b0336e8d
DW
1988 csum_size = sizeof(struct ext4_dir_entry_tail);
1989
0f70b406
TT
1990 bh2 = ext4_append(handle, dir, &newblock);
1991 if (IS_ERR(bh2)) {
ac27a0ec
DK
1992 brelse(*bh);
1993 *bh = NULL;
f8b3b59d 1994 return (struct ext4_dir_entry_2 *) bh2;
ac27a0ec
DK
1995 }
1996
1997 BUFFER_TRACE(*bh, "get_write_access");
188c299e
JK
1998 err = ext4_journal_get_write_access(handle, dir->i_sb, *bh,
1999 EXT4_JTR_NONE);
fedee54d
DM
2000 if (err)
2001 goto journal_error;
2002
ac27a0ec 2003 BUFFER_TRACE(frame->bh, "get_write_access");
188c299e
JK
2004 err = ext4_journal_get_write_access(handle, dir->i_sb, frame->bh,
2005 EXT4_JTR_NONE);
ac27a0ec
DK
2006 if (err)
2007 goto journal_error;
2008
2009 data2 = bh2->b_data;
2010
2011 /* create map in the end of data2 block */
2012 map = (struct dx_map_entry *) (data2 + blocksize);
46c116b9
JK
2013 count = dx_make_map(dir, *bh, hinfo, map);
2014 if (count < 0) {
2015 err = count;
2016 goto journal_error;
2017 }
ac27a0ec 2018 map -= count;
af5bc92d 2019 dx_sort_map(map, count);
5872331b 2020 /* Ensure that neither split block is over half full */
ef2b02d3
ES
2021 size = 0;
2022 move = 0;
2023 for (i = count-1; i >= 0; i--) {
2024 /* is more than half of this entry in 2nd half of the block? */
2025 if (size + map[i].size/2 > blocksize/2)
2026 break;
2027 size += map[i].size;
2028 move++;
2029 }
5872331b
ES
2030 /*
2031 * map index at which we will split
2032 *
2033 * If the sum of active entries didn't exceed half the block size, just
2034 * split it in half by count; each resulting block will have at least
2035 * half the space free.
2036 */
2037 if (i > 0)
2038 split = count - move;
2039 else
2040 split = count/2;
2041
ac27a0ec
DK
2042 hash2 = map[split].hash;
2043 continued = hash2 == map[split - 1].hash;
725d26d3
AK
2044 dxtrace(printk(KERN_INFO "Split block %lu at %x, %i/%i\n",
2045 (unsigned long)dx_get_block(frame->at),
2046 hash2, split, count-split));
ac27a0ec
DK
2047
2048 /* Fancy dance to stay within two buffers */
471fbbea 2049 de2 = dx_move_dirents(dir, data1, data2, map + split, count - split,
1f3862b5 2050 blocksize);
471fbbea 2051 de = dx_pack_dirents(dir, data1, blocksize);
b0336e8d
DW
2052 de->rec_len = ext4_rec_len_to_disk(data1 + (blocksize - csum_size) -
2053 (char *) de,
3d0518f4 2054 blocksize);
b0336e8d
DW
2055 de2->rec_len = ext4_rec_len_to_disk(data2 + (blocksize - csum_size) -
2056 (char *) de2,
3d0518f4 2057 blocksize);
b0336e8d 2058 if (csum_size) {
ddce3b94
TT
2059 ext4_initialize_dirent_tail(*bh, blocksize);
2060 ext4_initialize_dirent_tail(bh2, blocksize);
b0336e8d
DW
2061 }
2062
b3098486
MH
2063 dxtrace(dx_show_leaf(dir, hinfo, (struct ext4_dir_entry_2 *) data1,
2064 blocksize, 1));
2065 dxtrace(dx_show_leaf(dir, hinfo, (struct ext4_dir_entry_2 *) data2,
2066 blocksize, 1));
ac27a0ec
DK
2067
2068 /* Which block gets the new entry? */
f8b3b59d 2069 if (hinfo->hash >= hash2) {
ac27a0ec
DK
2070 swap(*bh, bh2);
2071 de = de2;
2072 }
af5bc92d 2073 dx_insert_block(frame, hash2 + continued, newblock);
f036adb3 2074 err = ext4_handle_dirty_dirblock(handle, dir, bh2);
ac27a0ec
DK
2075 if (err)
2076 goto journal_error;
dbe89444 2077 err = ext4_handle_dirty_dx_node(handle, dir, frame->bh);
ac27a0ec
DK
2078 if (err)
2079 goto journal_error;
af5bc92d
TT
2080 brelse(bh2);
2081 dxtrace(dx_show_index("frame", frame->entries));
ac27a0ec 2082 return de;
fedee54d
DM
2083
2084journal_error:
2085 brelse(*bh);
2086 brelse(bh2);
2087 *bh = NULL;
2088 ext4_std_error(dir->i_sb, err);
f8b3b59d 2089 return ERR_PTR(err);
ac27a0ec 2090}
ac27a0ec 2091
978fef91
TM
2092int ext4_find_dest_de(struct inode *dir, struct inode *inode,
2093 struct buffer_head *bh,
2094 void *buf, int buf_size,
5b643f9c 2095 struct ext4_filename *fname,
978fef91
TM
2096 struct ext4_dir_entry_2 **dest_de)
2097{
2098 struct ext4_dir_entry_2 *de;
471fbbea 2099 unsigned short reclen = ext4_dir_rec_len(fname_len(fname), dir);
978fef91
TM
2100 int nlen, rlen;
2101 unsigned int offset = 0;
2102 char *top;
1f3862b5 2103
c30365b9 2104 de = buf;
978fef91
TM
2105 top = buf + buf_size - reclen;
2106 while ((char *) de <= top) {
2107 if (ext4_check_dir_entry(dir, NULL, de, bh,
d9b9f8d5
EB
2108 buf, buf_size, offset))
2109 return -EFSCORRUPTED;
b886ee3e 2110 if (ext4_match(dir, fname, de))
d9b9f8d5 2111 return -EEXIST;
471fbbea 2112 nlen = ext4_dir_rec_len(de->name_len, dir);
978fef91
TM
2113 rlen = ext4_rec_len_from_disk(de->rec_len, buf_size);
2114 if ((de->inode ? rlen - nlen : rlen) >= reclen)
2115 break;
2116 de = (struct ext4_dir_entry_2 *)((char *)de + rlen);
2117 offset += rlen;
2118 }
1f3862b5 2119 if ((char *) de > top)
d9b9f8d5
EB
2120 return -ENOSPC;
2121
2122 *dest_de = de;
2123 return 0;
978fef91
TM
2124}
2125
471fbbea
DR
2126void ext4_insert_dentry(struct inode *dir,
2127 struct inode *inode,
1bc0af60
EB
2128 struct ext4_dir_entry_2 *de,
2129 int buf_size,
2130 struct ext4_filename *fname)
978fef91
TM
2131{
2132
2133 int nlen, rlen;
2134
471fbbea 2135 nlen = ext4_dir_rec_len(de->name_len, dir);
978fef91
TM
2136 rlen = ext4_rec_len_from_disk(de->rec_len, buf_size);
2137 if (de->inode) {
2138 struct ext4_dir_entry_2 *de1 =
4bdfc873 2139 (struct ext4_dir_entry_2 *)((char *)de + nlen);
978fef91
TM
2140 de1->rec_len = ext4_rec_len_to_disk(rlen - nlen, buf_size);
2141 de->rec_len = ext4_rec_len_to_disk(nlen, buf_size);
2142 de = de1;
2143 }
2144 de->file_type = EXT4_FT_UNKNOWN;
2145 de->inode = cpu_to_le32(inode->i_ino);
2146 ext4_set_de_type(inode->i_sb, de, inode->i_mode);
5b643f9c
TT
2147 de->name_len = fname_len(fname);
2148 memcpy(de->name, fname_name(fname), fname_len(fname));
471fbbea 2149 if (ext4_hash_in_dirent(dir)) {
1ae98e29 2150 struct dx_hash_info *hinfo = &fname->hinfo;
471fbbea 2151
1ae98e29 2152 EXT4_DIRENT_HASHES(de)->hash = cpu_to_le32(hinfo->hash);
471fbbea 2153 EXT4_DIRENT_HASHES(de)->minor_hash =
1ae98e29 2154 cpu_to_le32(hinfo->minor_hash);
471fbbea 2155 }
978fef91 2156}
4bdfc873 2157
ac27a0ec
DK
2158/*
2159 * Add a new entry into a directory (leaf) block. If de is non-NULL,
2160 * it points to a directory entry which is guaranteed to be large
2161 * enough for new directory entry. If de is NULL, then
2162 * add_dirent_to_buf will attempt search the directory block for
2163 * space. It will return -ENOSPC if no space is available, and -EIO
2164 * and -EEXIST if directory entry already exists.
ac27a0ec 2165 */
5b643f9c
TT
2166static int add_dirent_to_buf(handle_t *handle, struct ext4_filename *fname,
2167 struct inode *dir,
617ba13b 2168 struct inode *inode, struct ext4_dir_entry_2 *de,
af5bc92d 2169 struct buffer_head *bh)
ac27a0ec 2170{
3d0518f4 2171 unsigned int blocksize = dir->i_sb->s_blocksize;
b0336e8d 2172 int csum_size = 0;
4209ae12 2173 int err, err2;
b0336e8d 2174
9aa5d32b 2175 if (ext4_has_metadata_csum(inode->i_sb))
b0336e8d 2176 csum_size = sizeof(struct ext4_dir_entry_tail);
ac27a0ec 2177
ac27a0ec 2178 if (!de) {
5b643f9c
TT
2179 err = ext4_find_dest_de(dir, inode, bh, bh->b_data,
2180 blocksize - csum_size, fname, &de);
978fef91
TM
2181 if (err)
2182 return err;
ac27a0ec
DK
2183 }
2184 BUFFER_TRACE(bh, "get_write_access");
188c299e
JK
2185 err = ext4_journal_get_write_access(handle, dir->i_sb, bh,
2186 EXT4_JTR_NONE);
ac27a0ec 2187 if (err) {
617ba13b 2188 ext4_std_error(dir->i_sb, err);
ac27a0ec
DK
2189 return err;
2190 }
2191
1bc0af60 2192 /* By now the buffer is marked for journaling */
471fbbea 2193 ext4_insert_dentry(dir, inode, de, blocksize, fname);
978fef91 2194
ac27a0ec
DK
2195 /*
2196 * XXX shouldn't update any times until successful
2197 * completion of syscall, but too many callers depend
2198 * on this.
2199 *
2200 * XXX similarly, too many callers depend on
617ba13b 2201 * ext4_new_inode() setting the times, but error
ac27a0ec
DK
2202 * recovery deletes the inode, so the worst that can
2203 * happen is that the times are slightly out of date
2204 * and/or different from the directory change time.
2205 */
eeca7ea1 2206 dir->i_mtime = dir->i_ctime = current_time(dir);
617ba13b 2207 ext4_update_dx_flag(dir);
e08ac99f 2208 inode_inc_iversion(dir);
4209ae12 2209 err2 = ext4_mark_inode_dirty(handle, dir);
0390131b 2210 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
f036adb3 2211 err = ext4_handle_dirty_dirblock(handle, dir, bh);
ac27a0ec 2212 if (err)
617ba13b 2213 ext4_std_error(dir->i_sb, err);
4209ae12 2214 return err ? err : err2;
ac27a0ec
DK
2215}
2216
ac27a0ec
DK
2217/*
2218 * This converts a one block unindexed directory to a 3 block indexed
2219 * directory, and adds the dentry to the indexed directory.
2220 */
5b643f9c 2221static int make_indexed_dir(handle_t *handle, struct ext4_filename *fname,
56a04915 2222 struct inode *dir,
ac27a0ec
DK
2223 struct inode *inode, struct buffer_head *bh)
2224{
ac27a0ec
DK
2225 struct buffer_head *bh2;
2226 struct dx_root *root;
e08ac99f 2227 struct dx_frame frames[EXT4_HTREE_LEVEL], *frame;
ac27a0ec 2228 struct dx_entry *entries;
617ba13b 2229 struct ext4_dir_entry_2 *de, *de2;
ddce3b94 2230 char *data2, *top;
ac27a0ec
DK
2231 unsigned len;
2232 int retval;
2233 unsigned blocksize;
725d26d3 2234 ext4_lblk_t block;
ac27a0ec 2235 struct fake_dirent *fde;
4bdfc873
MH
2236 int csum_size = 0;
2237
9aa5d32b 2238 if (ext4_has_metadata_csum(inode->i_sb))
b0336e8d 2239 csum_size = sizeof(struct ext4_dir_entry_tail);
ac27a0ec
DK
2240
2241 blocksize = dir->i_sb->s_blocksize;
e6b8bc09 2242 dxtrace(printk(KERN_DEBUG "Creating index: inode %lu\n", dir->i_ino));
5d601255 2243 BUFFER_TRACE(bh, "get_write_access");
188c299e
JK
2244 retval = ext4_journal_get_write_access(handle, dir->i_sb, bh,
2245 EXT4_JTR_NONE);
ac27a0ec 2246 if (retval) {
617ba13b 2247 ext4_std_error(dir->i_sb, retval);
ac27a0ec
DK
2248 brelse(bh);
2249 return retval;
2250 }
2251 root = (struct dx_root *) bh->b_data;
2252
e6b8bc09
TT
2253 /* The 0th block becomes the root, move the dirents out */
2254 fde = &root->dotdot;
2255 de = (struct ext4_dir_entry_2 *)((char *)fde +
3d0518f4 2256 ext4_rec_len_from_disk(fde->rec_len, blocksize));
e6b8bc09 2257 if ((char *) de >= (((char *) root) + blocksize)) {
24676da4 2258 EXT4_ERROR_INODE(dir, "invalid rec_len for '..'");
e6b8bc09 2259 brelse(bh);
6a797d27 2260 return -EFSCORRUPTED;
e6b8bc09 2261 }
b0336e8d 2262 len = ((char *) root) + (blocksize - csum_size) - (char *) de;
e6b8bc09
TT
2263
2264 /* Allocate new block for the 0th block's dirents */
0f70b406
TT
2265 bh2 = ext4_append(handle, dir, &block);
2266 if (IS_ERR(bh2)) {
ac27a0ec 2267 brelse(bh);
0f70b406 2268 return PTR_ERR(bh2);
ac27a0ec 2269 }
12e9b892 2270 ext4_set_inode_flag(dir, EXT4_INODE_INDEX);
ddce3b94 2271 data2 = bh2->b_data;
ac27a0ec 2272
ddce3b94 2273 memcpy(data2, de, len);
6c091273 2274 memset(de, 0, len); /* wipe old data */
ddce3b94
TT
2275 de = (struct ext4_dir_entry_2 *) data2;
2276 top = data2 + len;
17a0bc9b
LH
2277 while ((char *)(de2 = ext4_next_entry(de, blocksize)) < top) {
2278 if (ext4_check_dir_entry(dir, NULL, de, bh2, data2, len,
2279 (data2 + (blocksize - csum_size) -
2280 (char *) de))) {
2281 brelse(bh2);
2282 brelse(bh);
2283 return -EFSCORRUPTED;
2284 }
ac27a0ec 2285 de = de2;
17a0bc9b 2286 }
ddce3b94
TT
2287 de->rec_len = ext4_rec_len_to_disk(data2 + (blocksize - csum_size) -
2288 (char *) de, blocksize);
b0336e8d 2289
ddce3b94
TT
2290 if (csum_size)
2291 ext4_initialize_dirent_tail(bh2, blocksize);
b0336e8d 2292
ac27a0ec 2293 /* Initialize the root; the dot dirents already exist */
617ba13b 2294 de = (struct ext4_dir_entry_2 *) (&root->dotdot);
471fbbea
DR
2295 de->rec_len = ext4_rec_len_to_disk(
2296 blocksize - ext4_dir_rec_len(2, NULL), blocksize);
ac27a0ec
DK
2297 memset (&root->info, 0, sizeof(root->info));
2298 root->info.info_length = sizeof(root->info);
471fbbea
DR
2299 if (ext4_hash_in_dirent(dir))
2300 root->info.hash_version = DX_HASH_SIPHASH;
2301 else
2302 root->info.hash_version =
2303 EXT4_SB(dir->i_sb)->s_def_hash_version;
2304
ac27a0ec 2305 entries = root->entries;
af5bc92d
TT
2306 dx_set_block(entries, 1);
2307 dx_set_count(entries, 1);
2308 dx_set_limit(entries, dx_root_limit(dir, sizeof(root->info)));
ac27a0ec
DK
2309
2310 /* Initialize as for dx_probe */
5b643f9c
TT
2311 fname->hinfo.hash_version = root->info.hash_version;
2312 if (fname->hinfo.hash_version <= DX_HASH_TEA)
2313 fname->hinfo.hash_version += EXT4_SB(dir->i_sb)->s_hash_unsigned;
2314 fname->hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed;
1ae98e29
DR
2315
2316 /* casefolded encrypted hashes are computed on fname setup */
4b3cb1d1
TT
2317 if (!ext4_hash_in_dirent(dir)) {
2318 int err = ext4fs_dirhash(dir, fname_name(fname),
2319 fname_len(fname), &fname->hinfo);
2320 if (err < 0) {
2321 brelse(bh2);
2322 brelse(bh);
2323 return err;
2324 }
2325 }
6050d47a 2326 memset(frames, 0, sizeof(frames));
ac27a0ec
DK
2327 frame = frames;
2328 frame->entries = entries;
2329 frame->at = entries;
2330 frame->bh = bh;
6976a6f2 2331
6050d47a
JK
2332 retval = ext4_handle_dirty_dx_node(handle, dir, frame->bh);
2333 if (retval)
666245d9 2334 goto out_frames;
f036adb3 2335 retval = ext4_handle_dirty_dirblock(handle, dir, bh2);
6050d47a 2336 if (retval)
666245d9 2337 goto out_frames;
6976a6f2 2338
e81d4477 2339 de = do_split(handle,dir, &bh2, frame, &fname->hinfo);
f8b3b59d 2340 if (IS_ERR(de)) {
6050d47a
JK
2341 retval = PTR_ERR(de);
2342 goto out_frames;
7ad8e4e6 2343 }
ac27a0ec 2344
e81d4477 2345 retval = add_dirent_to_buf(handle, fname, dir, inode, de, bh2);
6050d47a
JK
2346out_frames:
2347 /*
2348 * Even if the block split failed, we have to properly write
2349 * out all the changes we did so far. Otherwise we can end up
2350 * with corrupted filesystem.
2351 */
e81d4477 2352 if (retval)
2353 ext4_mark_inode_dirty(handle, dir);
6050d47a 2354 dx_release(frames);
e81d4477 2355 brelse(bh2);
6050d47a 2356 return retval;
ac27a0ec 2357}
ac27a0ec
DK
2358
2359/*
617ba13b 2360 * ext4_add_entry()
ac27a0ec
DK
2361 *
2362 * adds a file entry to the specified directory, using the same
617ba13b 2363 * semantics as ext4_find_entry(). It returns NULL if it failed.
ac27a0ec
DK
2364 *
2365 * NOTE!! The inode part of 'de' is left at 0 - which means you
2366 * may not sleep between calling this and putting something into
2367 * the entry, as someone else might have used it while you slept.
2368 */
af5bc92d
TT
2369static int ext4_add_entry(handle_t *handle, struct dentry *dentry,
2370 struct inode *inode)
ac27a0ec 2371{
2b0143b5 2372 struct inode *dir = d_inode(dentry->d_parent);
e12fb972 2373 struct buffer_head *bh = NULL;
617ba13b 2374 struct ext4_dir_entry_2 *de;
af5bc92d 2375 struct super_block *sb;
5b643f9c 2376 struct ext4_filename fname;
ac27a0ec 2377 int retval;
ac27a0ec 2378 int dx_fallback=0;
ac27a0ec 2379 unsigned blocksize;
725d26d3 2380 ext4_lblk_t block, blocks;
b0336e8d
DW
2381 int csum_size = 0;
2382
9aa5d32b 2383 if (ext4_has_metadata_csum(inode->i_sb))
b0336e8d 2384 csum_size = sizeof(struct ext4_dir_entry_tail);
ac27a0ec
DK
2385
2386 sb = dir->i_sb;
2387 blocksize = sb->s_blocksize;
2388 if (!dentry->d_name.len)
2389 return -EINVAL;
3c47d541 2390
75d18cd1
EB
2391 if (fscrypt_is_nokey_name(dentry))
2392 return -ENOKEY;
2393
5298d4bf 2394#if IS_ENABLED(CONFIG_UNICODE)
f8f4acb6
DR
2395 if (sb_has_strict_encoding(sb) && IS_CASEFOLDED(dir) &&
2396 sb->s_encoding && utf8_validate(sb->s_encoding, &dentry->d_name))
b886ee3e
GKB
2397 return -EINVAL;
2398#endif
2399
5b643f9c
TT
2400 retval = ext4_fname_setup_filename(dir, &dentry->d_name, 0, &fname);
2401 if (retval)
2402 return retval;
2403
3c47d541 2404 if (ext4_has_inline_data(dir)) {
56a04915 2405 retval = ext4_try_add_inline_entry(handle, &fname, dir, inode);
3c47d541 2406 if (retval < 0)
5b643f9c 2407 goto out;
3c47d541
TM
2408 if (retval == 1) {
2409 retval = 0;
e12fb972 2410 goto out;
3c47d541
TM
2411 }
2412 }
2413
ac27a0ec 2414 if (is_dx(dir)) {
56a04915 2415 retval = ext4_dx_add_entry(handle, &fname, dir, inode);
ac27a0ec 2416 if (!retval || (retval != ERR_BAD_DX_DIR))
e12fb972 2417 goto out;
48a34311
JK
2418 /* Can we just ignore htree data? */
2419 if (ext4_has_metadata_csum(sb)) {
2420 EXT4_ERROR_INODE(dir,
2421 "Directory has corrupted htree index.");
2422 retval = -EFSCORRUPTED;
2423 goto out;
2424 }
12e9b892 2425 ext4_clear_inode_flag(dir, EXT4_INODE_INDEX);
ac27a0ec 2426 dx_fallback++;
4209ae12
HS
2427 retval = ext4_mark_inode_dirty(handle, dir);
2428 if (unlikely(retval))
2429 goto out;
ac27a0ec 2430 }
ac27a0ec 2431 blocks = dir->i_size >> sb->s_blocksize_bits;
498e5f24 2432 for (block = 0; block < blocks; block++) {
dc6982ff 2433 bh = ext4_read_dirblock(dir, block, DIRENT);
4e19d6b6
TT
2434 if (bh == NULL) {
2435 bh = ext4_bread(handle, dir, block,
2436 EXT4_GET_BLOCKS_CREATE);
2437 goto add_to_new_block;
2438 }
5b643f9c
TT
2439 if (IS_ERR(bh)) {
2440 retval = PTR_ERR(bh);
2441 bh = NULL;
2442 goto out;
2443 }
2444 retval = add_dirent_to_buf(handle, &fname, dir, inode,
2445 NULL, bh);
e12fb972
LC
2446 if (retval != -ENOSPC)
2447 goto out;
ac27a0ec 2448
ac27a0ec 2449 if (blocks == 1 && !dx_fallback &&
e2b911c5 2450 ext4_has_feature_dir_index(sb)) {
56a04915 2451 retval = make_indexed_dir(handle, &fname, dir,
5b643f9c 2452 inode, bh);
e12fb972
LC
2453 bh = NULL; /* make_indexed_dir releases bh */
2454 goto out;
2455 }
ac27a0ec
DK
2456 brelse(bh);
2457 }
0f70b406 2458 bh = ext4_append(handle, dir, &block);
4e19d6b6 2459add_to_new_block:
5b643f9c
TT
2460 if (IS_ERR(bh)) {
2461 retval = PTR_ERR(bh);
2462 bh = NULL;
2463 goto out;
2464 }
617ba13b 2465 de = (struct ext4_dir_entry_2 *) bh->b_data;
ac27a0ec 2466 de->inode = 0;
b0336e8d
DW
2467 de->rec_len = ext4_rec_len_to_disk(blocksize - csum_size, blocksize);
2468
ddce3b94
TT
2469 if (csum_size)
2470 ext4_initialize_dirent_tail(bh, blocksize);
b0336e8d 2471
5b643f9c 2472 retval = add_dirent_to_buf(handle, &fname, dir, inode, de, bh);
e12fb972 2473out:
5b643f9c 2474 ext4_fname_free_filename(&fname);
2de770a4 2475 brelse(bh);
14ece102
FM
2476 if (retval == 0)
2477 ext4_set_inode_state(inode, EXT4_STATE_NEWENTRY);
2de770a4 2478 return retval;
ac27a0ec
DK
2479}
2480
ac27a0ec
DK
2481/*
2482 * Returns 0 for success, or a negative error value
2483 */
5b643f9c 2484static int ext4_dx_add_entry(handle_t *handle, struct ext4_filename *fname,
56a04915 2485 struct inode *dir, struct inode *inode)
ac27a0ec 2486{
e08ac99f 2487 struct dx_frame frames[EXT4_HTREE_LEVEL], *frame;
ac27a0ec 2488 struct dx_entry *entries, *at;
af5bc92d 2489 struct buffer_head *bh;
af5bc92d 2490 struct super_block *sb = dir->i_sb;
617ba13b 2491 struct ext4_dir_entry_2 *de;
e08ac99f 2492 int restart;
ac27a0ec
DK
2493 int err;
2494
e08ac99f
AB
2495again:
2496 restart = 0;
5b643f9c 2497 frame = dx_probe(fname, dir, NULL, frames);
dd73b5d5
TT
2498 if (IS_ERR(frame))
2499 return PTR_ERR(frame);
ac27a0ec
DK
2500 entries = frame->entries;
2501 at = frame->at;
4e19d6b6 2502 bh = ext4_read_dirblock(dir, dx_get_block(frame->at), DIRENT_HTREE);
dc6982ff
TT
2503 if (IS_ERR(bh)) {
2504 err = PTR_ERR(bh);
2505 bh = NULL;
ac27a0ec 2506 goto cleanup;
6d1ab10e 2507 }
ac27a0ec
DK
2508
2509 BUFFER_TRACE(bh, "get_write_access");
188c299e 2510 err = ext4_journal_get_write_access(handle, sb, bh, EXT4_JTR_NONE);
ac27a0ec
DK
2511 if (err)
2512 goto journal_error;
2513
5b643f9c 2514 err = add_dirent_to_buf(handle, fname, dir, inode, NULL, bh);
2de770a4 2515 if (err != -ENOSPC)
ac27a0ec 2516 goto cleanup;
ac27a0ec 2517
e08ac99f 2518 err = 0;
ac27a0ec 2519 /* Block full, should compress but for now just split */
4776004f 2520 dxtrace(printk(KERN_DEBUG "using %u of %u node entries\n",
ac27a0ec
DK
2521 dx_get_count(entries), dx_get_limit(entries)));
2522 /* Need to split index? */
2523 if (dx_get_count(entries) == dx_get_limit(entries)) {
725d26d3 2524 ext4_lblk_t newblock;
e08ac99f
AB
2525 int levels = frame - frames + 1;
2526 unsigned int icount;
2527 int add_level = 1;
ac27a0ec
DK
2528 struct dx_entry *entries2;
2529 struct dx_node *node2;
2530 struct buffer_head *bh2;
2531
e08ac99f
AB
2532 while (frame > frames) {
2533 if (dx_get_count((frame - 1)->entries) <
2534 dx_get_limit((frame - 1)->entries)) {
2535 add_level = 0;
2536 break;
2537 }
2538 frame--; /* split higher index block */
2539 at = frame->at;
2540 entries = frame->entries;
2541 restart = 1;
2542 }
2543 if (add_level && levels == ext4_dir_htree_level(sb)) {
2544 ext4_warning(sb, "Directory (ino: %lu) index full, "
2545 "reach max htree level :%d",
2546 dir->i_ino, levels);
2547 if (ext4_dir_htree_level(sb) < EXT4_HTREE_LEVEL) {
2548 ext4_warning(sb, "Large directory feature is "
2549 "not enabled on this "
2550 "filesystem");
2551 }
ac27a0ec
DK
2552 err = -ENOSPC;
2553 goto cleanup;
2554 }
e08ac99f 2555 icount = dx_get_count(entries);
0f70b406
TT
2556 bh2 = ext4_append(handle, dir, &newblock);
2557 if (IS_ERR(bh2)) {
2558 err = PTR_ERR(bh2);
ac27a0ec 2559 goto cleanup;
0f70b406 2560 }
ac27a0ec
DK
2561 node2 = (struct dx_node *)(bh2->b_data);
2562 entries2 = node2->entries;
1f7bebb9 2563 memset(&node2->fake, 0, sizeof(struct fake_dirent));
3d0518f4
WY
2564 node2->fake.rec_len = ext4_rec_len_to_disk(sb->s_blocksize,
2565 sb->s_blocksize);
ac27a0ec 2566 BUFFER_TRACE(frame->bh, "get_write_access");
188c299e
JK
2567 err = ext4_journal_get_write_access(handle, sb, frame->bh,
2568 EXT4_JTR_NONE);
ac27a0ec
DK
2569 if (err)
2570 goto journal_error;
e08ac99f 2571 if (!add_level) {
ac27a0ec
DK
2572 unsigned icount1 = icount/2, icount2 = icount - icount1;
2573 unsigned hash2 = dx_get_hash(entries + icount1);
4776004f
TT
2574 dxtrace(printk(KERN_DEBUG "Split index %i/%i\n",
2575 icount1, icount2));
ac27a0ec
DK
2576
2577 BUFFER_TRACE(frame->bh, "get_write_access"); /* index root */
188c299e
JK
2578 err = ext4_journal_get_write_access(handle, sb,
2579 (frame - 1)->bh,
2580 EXT4_JTR_NONE);
ac27a0ec
DK
2581 if (err)
2582 goto journal_error;
2583
af5bc92d
TT
2584 memcpy((char *) entries2, (char *) (entries + icount1),
2585 icount2 * sizeof(struct dx_entry));
2586 dx_set_count(entries, icount1);
2587 dx_set_count(entries2, icount2);
2588 dx_set_limit(entries2, dx_node_limit(dir));
ac27a0ec
DK
2589
2590 /* Which index block gets the new entry? */
2591 if (at - entries >= icount1) {
b2d2e757 2592 frame->at = at - entries - icount1 + entries2;
ac27a0ec
DK
2593 frame->entries = entries = entries2;
2594 swap(frame->bh, bh2);
2595 }
e08ac99f
AB
2596 dx_insert_block((frame - 1), hash2, newblock);
2597 dxtrace(dx_show_index("node", frame->entries));
af5bc92d 2598 dxtrace(dx_show_index("node",
ac27a0ec 2599 ((struct dx_node *) bh2->b_data)->entries));
dbe89444 2600 err = ext4_handle_dirty_dx_node(handle, dir, bh2);
ac27a0ec
DK
2601 if (err)
2602 goto journal_error;
2603 brelse (bh2);
e08ac99f
AB
2604 err = ext4_handle_dirty_dx_node(handle, dir,
2605 (frame - 1)->bh);
2606 if (err)
2607 goto journal_error;
b5776e75
TT
2608 err = ext4_handle_dirty_dx_node(handle, dir,
2609 frame->bh);
877ba3f7 2610 if (restart || err)
e08ac99f 2611 goto journal_error;
ac27a0ec 2612 } else {
e08ac99f 2613 struct dx_root *dxroot;
ac27a0ec
DK
2614 memcpy((char *) entries2, (char *) entries,
2615 icount * sizeof(struct dx_entry));
2616 dx_set_limit(entries2, dx_node_limit(dir));
2617
2618 /* Set up root */
2619 dx_set_count(entries, 1);
2620 dx_set_block(entries + 0, newblock);
e08ac99f
AB
2621 dxroot = (struct dx_root *)frames[0].bh->b_data;
2622 dxroot->info.indirect_levels += 1;
2623 dxtrace(printk(KERN_DEBUG
2624 "Creating %d level index...\n",
799578ab 2625 dxroot->info.indirect_levels));
e08ac99f 2626 err = ext4_handle_dirty_dx_node(handle, dir, frame->bh);
ac27a0ec
DK
2627 if (err)
2628 goto journal_error;
e08ac99f
AB
2629 err = ext4_handle_dirty_dx_node(handle, dir, bh2);
2630 brelse(bh2);
2631 restart = 1;
2632 goto journal_error;
b4097142 2633 }
ac27a0ec 2634 }
5b643f9c 2635 de = do_split(handle, dir, &bh, frame, &fname->hinfo);
f8b3b59d
TT
2636 if (IS_ERR(de)) {
2637 err = PTR_ERR(de);
ac27a0ec 2638 goto cleanup;
f8b3b59d 2639 }
5b643f9c 2640 err = add_dirent_to_buf(handle, fname, dir, inode, de, bh);
ac27a0ec
DK
2641 goto cleanup;
2642
2643journal_error:
e08ac99f 2644 ext4_std_error(dir->i_sb, err); /* this is a no-op if err == 0 */
ac27a0ec 2645cleanup:
b1deefc9 2646 brelse(bh);
ac27a0ec 2647 dx_release(frames);
e08ac99f
AB
2648 /* @restart is true means htree-path has been changed, we need to
2649 * repeat dx_probe() to find out valid htree-path
2650 */
2651 if (restart && err == 0)
2652 goto again;
ac27a0ec
DK
2653 return err;
2654}
ac27a0ec
DK
2655
2656/*
05019a9e
TM
2657 * ext4_generic_delete_entry deletes a directory entry by merging it
2658 * with the previous entry
ac27a0ec 2659 */
2fe34d29 2660int ext4_generic_delete_entry(struct inode *dir,
05019a9e
TM
2661 struct ext4_dir_entry_2 *de_del,
2662 struct buffer_head *bh,
2663 void *entry_buf,
2664 int buf_size,
2665 int csum_size)
ac27a0ec 2666{
af5bc92d 2667 struct ext4_dir_entry_2 *de, *pde;
3d0518f4 2668 unsigned int blocksize = dir->i_sb->s_blocksize;
05019a9e 2669 int i;
b0336e8d 2670
ac27a0ec
DK
2671 i = 0;
2672 pde = NULL;
c30365b9 2673 de = entry_buf;
05019a9e 2674 while (i < buf_size - csum_size) {
226ba972 2675 if (ext4_check_dir_entry(dir, NULL, de, bh,
7303cb5b 2676 entry_buf, buf_size, i))
6a797d27 2677 return -EFSCORRUPTED;
ac27a0ec 2678 if (de == de_del) {
6c091273 2679 if (pde) {
a72d7f83 2680 pde->rec_len = ext4_rec_len_to_disk(
3d0518f4
WY
2681 ext4_rec_len_from_disk(pde->rec_len,
2682 blocksize) +
2683 ext4_rec_len_from_disk(de->rec_len,
2684 blocksize),
2685 blocksize);
6c091273
LR
2686
2687 /* wipe entire dir_entry */
2688 memset(de, 0, ext4_rec_len_from_disk(de->rec_len,
2689 blocksize));
2690 } else {
2691 /* wipe dir_entry excluding the rec_len field */
ac27a0ec 2692 de->inode = 0;
6c091273
LR
2693 memset(&de->name_len, 0,
2694 ext4_rec_len_from_disk(de->rec_len,
2695 blocksize) -
2696 offsetof(struct ext4_dir_entry_2,
2697 name_len));
2698 }
2699
e08ac99f 2700 inode_inc_iversion(dir);
ac27a0ec
DK
2701 return 0;
2702 }
3d0518f4 2703 i += ext4_rec_len_from_disk(de->rec_len, blocksize);
ac27a0ec 2704 pde = de;
3d0518f4 2705 de = ext4_next_entry(de, blocksize);
ac27a0ec
DK
2706 }
2707 return -ENOENT;
2708}
2709
05019a9e
TM
2710static int ext4_delete_entry(handle_t *handle,
2711 struct inode *dir,
2712 struct ext4_dir_entry_2 *de_del,
2713 struct buffer_head *bh)
2714{
2715 int err, csum_size = 0;
2716
9f40fe54
TM
2717 if (ext4_has_inline_data(dir)) {
2718 int has_inline_data = 1;
2719 err = ext4_delete_inline_entry(handle, dir, de_del, bh,
2720 &has_inline_data);
2721 if (has_inline_data)
2722 return err;
2723 }
2724
9aa5d32b 2725 if (ext4_has_metadata_csum(dir->i_sb))
05019a9e
TM
2726 csum_size = sizeof(struct ext4_dir_entry_tail);
2727
2728 BUFFER_TRACE(bh, "get_write_access");
188c299e
JK
2729 err = ext4_journal_get_write_access(handle, dir->i_sb, bh,
2730 EXT4_JTR_NONE);
05019a9e
TM
2731 if (unlikely(err))
2732 goto out;
2733
2fe34d29 2734 err = ext4_generic_delete_entry(dir, de_del, bh, bh->b_data,
05019a9e
TM
2735 dir->i_sb->s_blocksize, csum_size);
2736 if (err)
2737 goto out;
2738
2739 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
f036adb3 2740 err = ext4_handle_dirty_dirblock(handle, dir, bh);
05019a9e
TM
2741 if (unlikely(err))
2742 goto out;
2743
2744 return 0;
2745out:
2746 if (err != -ENOENT)
2747 ext4_std_error(dir->i_sb, err);
2748 return err;
2749}
2750
f8628a14 2751/*
c7414892
AD
2752 * Set directory link count to 1 if nlinks > EXT4_LINK_MAX, or if nlinks == 2
2753 * since this indicates that nlinks count was previously 1 to avoid overflowing
2754 * the 16-bit i_links_count field on disk. Directories with i_nlink == 1 mean
2755 * that subdirectory link counts are not being maintained accurately.
2756 *
2757 * The caller has already checked for i_nlink overflow in case the DIR_LINK
2758 * feature is not enabled and returned -EMLINK. The is_dx() check is a proxy
2759 * for checking S_ISDIR(inode) (since the INODE_INDEX feature will not be set
2760 * on regular files) and to avoid creating huge/slow non-HTREE directories.
f8628a14 2761 */
15ed2851 2762static void ext4_inc_count(struct inode *inode)
f8628a14
AD
2763{
2764 inc_nlink(inode);
c7414892
AD
2765 if (is_dx(inode) &&
2766 (inode->i_nlink > EXT4_LINK_MAX || inode->i_nlink == 2))
2767 set_nlink(inode, 1);
f8628a14
AD
2768}
2769
2770/*
2771 * If a directory had nlink == 1, then we should let it be 1. This indicates
2772 * directory has >EXT4_LINK_MAX subdirs.
2773 */
15ed2851 2774static void ext4_dec_count(struct inode *inode)
f8628a14 2775{
909a4cf1
AD
2776 if (!S_ISDIR(inode->i_mode) || inode->i_nlink > 2)
2777 drop_nlink(inode);
f8628a14
AD
2778}
2779
2780
9b88f9fb
JK
2781/*
2782 * Add non-directory inode to a directory. On success, the inode reference is
2783 * consumed by dentry is instantiation. This is also indicated by clearing of
2784 * *inodep pointer. On failure, the caller is responsible for dropping the
2785 * inode reference in the safe context.
2786 */
617ba13b 2787static int ext4_add_nondir(handle_t *handle,
9b88f9fb 2788 struct dentry *dentry, struct inode **inodep)
ac27a0ec 2789{
a9e26328 2790 struct inode *dir = d_inode(dentry->d_parent);
9b88f9fb 2791 struct inode *inode = *inodep;
617ba13b 2792 int err = ext4_add_entry(handle, dentry, inode);
ac27a0ec 2793 if (!err) {
4209ae12 2794 err = ext4_mark_inode_dirty(handle, inode);
a9e26328
JK
2795 if (IS_DIRSYNC(dir))
2796 ext4_handle_sync(handle);
1e2e547a 2797 d_instantiate_new(dentry, inode);
9b88f9fb 2798 *inodep = NULL;
4209ae12 2799 return err;
ac27a0ec 2800 }
731b9a54 2801 drop_nlink(inode);
9b88f9fb 2802 ext4_orphan_add(handle, inode);
6b38e842 2803 unlock_new_inode(inode);
ac27a0ec
DK
2804 return err;
2805}
2806
2807/*
2808 * By the time this is called, we already have created
2809 * the directory cache entry for the new file, but it
2810 * is so far negative - it has no inode.
2811 *
2812 * If the create succeeds, we fill in the inode information
2813 * with d_instantiate().
2814 */
6c960e68 2815static int ext4_create(struct mnt_idmap *idmap, struct inode *dir,
549c7297 2816 struct dentry *dentry, umode_t mode, bool excl)
ac27a0ec
DK
2817{
2818 handle_t *handle;
a80f7fcf 2819 struct inode *inode;
1139575a 2820 int err, credits, retries = 0;
ac27a0ec 2821
a7cdadee
JK
2822 err = dquot_initialize(dir);
2823 if (err)
2824 return err;
907f4554 2825
1139575a 2826 credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
eb9cc7e1 2827 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
ac27a0ec 2828retry:
f2d40141 2829 inode = ext4_new_inode_start_handle(idmap, dir, mode, &dentry->d_name,
14f3db55 2830 0, NULL, EXT4_HT_DIR, credits);
1139575a 2831 handle = ext4_journal_current_handle();
ac27a0ec
DK
2832 err = PTR_ERR(inode);
2833 if (!IS_ERR(inode)) {
617ba13b 2834 inode->i_op = &ext4_file_inode_operations;
be64f884 2835 inode->i_fop = &ext4_file_operations;
617ba13b 2836 ext4_set_aops(inode);
9b88f9fb 2837 err = ext4_add_nondir(handle, dentry, &inode);
a80f7fcf
HS
2838 if (!err)
2839 ext4_fc_track_create(handle, dentry);
ac27a0ec 2840 }
1139575a
TT
2841 if (handle)
2842 ext4_journal_stop(handle);
9b88f9fb
JK
2843 if (!IS_ERR_OR_NULL(inode))
2844 iput(inode);
617ba13b 2845 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
ac27a0ec
DK
2846 goto retry;
2847 return err;
2848}
2849
5ebb29be 2850static int ext4_mknod(struct mnt_idmap *idmap, struct inode *dir,
549c7297 2851 struct dentry *dentry, umode_t mode, dev_t rdev)
ac27a0ec
DK
2852{
2853 handle_t *handle;
a80f7fcf 2854 struct inode *inode;
1139575a 2855 int err, credits, retries = 0;
ac27a0ec 2856
a7cdadee
JK
2857 err = dquot_initialize(dir);
2858 if (err)
2859 return err;
907f4554 2860
1139575a 2861 credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
eb9cc7e1 2862 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
ac27a0ec 2863retry:
f2d40141 2864 inode = ext4_new_inode_start_handle(idmap, dir, mode, &dentry->d_name,
14f3db55 2865 0, NULL, EXT4_HT_DIR, credits);
1139575a 2866 handle = ext4_journal_current_handle();
ac27a0ec
DK
2867 err = PTR_ERR(inode);
2868 if (!IS_ERR(inode)) {
2869 init_special_inode(inode, inode->i_mode, rdev);
617ba13b 2870 inode->i_op = &ext4_special_inode_operations;
9b88f9fb 2871 err = ext4_add_nondir(handle, dentry, &inode);
aa75f4d3 2872 if (!err)
a80f7fcf 2873 ext4_fc_track_create(handle, dentry);
ac27a0ec 2874 }
1139575a
TT
2875 if (handle)
2876 ext4_journal_stop(handle);
9b88f9fb
JK
2877 if (!IS_ERR_OR_NULL(inode))
2878 iput(inode);
617ba13b 2879 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
ac27a0ec
DK
2880 goto retry;
2881 return err;
2882}
2883
011e2b71 2884static int ext4_tmpfile(struct mnt_idmap *idmap, struct inode *dir,
863f144f 2885 struct file *file, umode_t mode)
af51a2ac
AV
2886{
2887 handle_t *handle;
2888 struct inode *inode;
2889 int err, retries = 0;
2890
a7cdadee
JK
2891 err = dquot_initialize(dir);
2892 if (err)
2893 return err;
af51a2ac
AV
2894
2895retry:
f2d40141 2896 inode = ext4_new_inode_start_handle(idmap, dir, mode,
af51a2ac
AV
2897 NULL, 0, NULL,
2898 EXT4_HT_DIR,
2899 EXT4_MAXQUOTAS_INIT_BLOCKS(dir->i_sb) +
2900 4 + EXT4_XATTR_TRANS_BLOCKS);
2901 handle = ext4_journal_current_handle();
2902 err = PTR_ERR(inode);
2903 if (!IS_ERR(inode)) {
2904 inode->i_op = &ext4_file_inode_operations;
be64f884 2905 inode->i_fop = &ext4_file_operations;
af51a2ac 2906 ext4_set_aops(inode);
863f144f 2907 d_tmpfile(file, inode);
af51a2ac
AV
2908 err = ext4_orphan_add(handle, inode);
2909 if (err)
43ae9e3f 2910 goto err_unlock_inode;
af51a2ac 2911 mark_inode_dirty(inode);
af51a2ac
AV
2912 unlock_new_inode(inode);
2913 }
2914 if (handle)
2915 ext4_journal_stop(handle);
2916 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
2917 goto retry;
863f144f 2918 return finish_open_simple(file, err);
43ae9e3f 2919err_unlock_inode:
af51a2ac
AV
2920 ext4_journal_stop(handle);
2921 unlock_new_inode(inode);
af51a2ac
AV
2922 return err;
2923}
2924
a774f9c2
TM
2925struct ext4_dir_entry_2 *ext4_init_dot_dotdot(struct inode *inode,
2926 struct ext4_dir_entry_2 *de,
2927 int blocksize, int csum_size,
2928 unsigned int parent_ino, int dotdot_real_len)
2929{
2930 de->inode = cpu_to_le32(inode->i_ino);
2931 de->name_len = 1;
471fbbea 2932 de->rec_len = ext4_rec_len_to_disk(ext4_dir_rec_len(de->name_len, NULL),
a774f9c2
TM
2933 blocksize);
2934 strcpy(de->name, ".");
2935 ext4_set_de_type(inode->i_sb, de, S_IFDIR);
2936
2937 de = ext4_next_entry(de, blocksize);
2938 de->inode = cpu_to_le32(parent_ino);
2939 de->name_len = 2;
2940 if (!dotdot_real_len)
2941 de->rec_len = ext4_rec_len_to_disk(blocksize -
471fbbea 2942 (csum_size + ext4_dir_rec_len(1, NULL)),
a774f9c2
TM
2943 blocksize);
2944 else
2945 de->rec_len = ext4_rec_len_to_disk(
471fbbea
DR
2946 ext4_dir_rec_len(de->name_len, NULL),
2947 blocksize);
a774f9c2
TM
2948 strcpy(de->name, "..");
2949 ext4_set_de_type(inode->i_sb, de, S_IFDIR);
2950
2951 return ext4_next_entry(de, blocksize);
2952}
2953
8016e29f 2954int ext4_init_new_dir(handle_t *handle, struct inode *dir,
a774f9c2 2955 struct inode *inode)
ac27a0ec 2956{
dabd991f 2957 struct buffer_head *dir_block = NULL;
af5bc92d 2958 struct ext4_dir_entry_2 *de;
dc6982ff 2959 ext4_lblk_t block = 0;
3d0518f4 2960 unsigned int blocksize = dir->i_sb->s_blocksize;
b0336e8d 2961 int csum_size = 0;
a774f9c2 2962 int err;
ac27a0ec 2963
9aa5d32b 2964 if (ext4_has_metadata_csum(dir->i_sb))
b0336e8d
DW
2965 csum_size = sizeof(struct ext4_dir_entry_tail);
2966
3c47d541
TM
2967 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
2968 err = ext4_try_create_inline_dir(handle, dir, inode);
2969 if (err < 0 && err != -ENOSPC)
2970 goto out;
2971 if (!err)
2972 goto out;
2973 }
2974
dc6982ff 2975 inode->i_size = 0;
0f70b406
TT
2976 dir_block = ext4_append(handle, inode, &block);
2977 if (IS_ERR(dir_block))
2978 return PTR_ERR(dir_block);
a774f9c2
TM
2979 de = (struct ext4_dir_entry_2 *)dir_block->b_data;
2980 ext4_init_dot_dotdot(inode, de, blocksize, csum_size, dir->i_ino, 0);
2981 set_nlink(inode, 2);
ddce3b94
TT
2982 if (csum_size)
2983 ext4_initialize_dirent_tail(dir_block, blocksize);
a774f9c2
TM
2984
2985 BUFFER_TRACE(dir_block, "call ext4_handle_dirty_metadata");
f036adb3 2986 err = ext4_handle_dirty_dirblock(handle, inode, dir_block);
a774f9c2
TM
2987 if (err)
2988 goto out;
2989 set_buffer_verified(dir_block);
2990out:
2991 brelse(dir_block);
2992 return err;
2993}
2994
c54bd91e 2995static int ext4_mkdir(struct mnt_idmap *idmap, struct inode *dir,
549c7297 2996 struct dentry *dentry, umode_t mode)
a774f9c2
TM
2997{
2998 handle_t *handle;
2999 struct inode *inode;
4209ae12 3000 int err, err2 = 0, credits, retries = 0;
a774f9c2 3001
f8628a14 3002 if (EXT4_DIR_LINK_MAX(dir))
ac27a0ec
DK
3003 return -EMLINK;
3004
a7cdadee
JK
3005 err = dquot_initialize(dir);
3006 if (err)
3007 return err;
907f4554 3008
1139575a 3009 credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
eb9cc7e1 3010 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
ac27a0ec 3011retry:
f2d40141 3012 inode = ext4_new_inode_start_handle(idmap, dir, S_IFDIR | mode,
1139575a
TT
3013 &dentry->d_name,
3014 0, NULL, EXT4_HT_DIR, credits);
3015 handle = ext4_journal_current_handle();
ac27a0ec
DK
3016 err = PTR_ERR(inode);
3017 if (IS_ERR(inode))
3018 goto out_stop;
3019
617ba13b
MC
3020 inode->i_op = &ext4_dir_inode_operations;
3021 inode->i_fop = &ext4_dir_operations;
a774f9c2 3022 err = ext4_init_new_dir(handle, dir, inode);
dabd991f
NK
3023 if (err)
3024 goto out_clear_inode;
3025 err = ext4_mark_inode_dirty(handle, inode);
3026 if (!err)
3027 err = ext4_add_entry(handle, dentry, inode);
ac27a0ec 3028 if (err) {
4cdeed86
AK
3029out_clear_inode:
3030 clear_nlink(inode);
9b88f9fb 3031 ext4_orphan_add(handle, inode);
6b38e842 3032 unlock_new_inode(inode);
4209ae12
HS
3033 err2 = ext4_mark_inode_dirty(handle, inode);
3034 if (unlikely(err2))
3035 err = err2;
9b88f9fb 3036 ext4_journal_stop(handle);
af5bc92d 3037 iput(inode);
9b88f9fb 3038 goto out_retry;
ac27a0ec 3039 }
15ed2851 3040 ext4_inc_count(dir);
aa75f4d3 3041
617ba13b 3042 ext4_update_dx_flag(dir);
dabd991f
NK
3043 err = ext4_mark_inode_dirty(handle, dir);
3044 if (err)
3045 goto out_clear_inode;
1e2e547a 3046 d_instantiate_new(dentry, inode);
a80f7fcf 3047 ext4_fc_track_create(handle, dentry);
1139575a
TT
3048 if (IS_DIRSYNC(dir))
3049 ext4_handle_sync(handle);
3050
ac27a0ec 3051out_stop:
1139575a
TT
3052 if (handle)
3053 ext4_journal_stop(handle);
9b88f9fb 3054out_retry:
617ba13b 3055 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
ac27a0ec
DK
3056 goto retry;
3057 return err;
3058}
3059
3060/*
3061 * routine to check that the specified directory is empty (for rmdir)
3062 */
a7550b30 3063bool ext4_empty_dir(struct inode *inode)
ac27a0ec 3064{
498e5f24 3065 unsigned int offset;
af5bc92d 3066 struct buffer_head *bh;
64d4ce89 3067 struct ext4_dir_entry_2 *de;
af5bc92d 3068 struct super_block *sb;
ac27a0ec 3069
61f86638
TM
3070 if (ext4_has_inline_data(inode)) {
3071 int has_inline_data = 1;
a7550b30 3072 int ret;
61f86638 3073
a7550b30 3074 ret = empty_inline_dir(inode, &has_inline_data);
61f86638 3075 if (has_inline_data)
a7550b30 3076 return ret;
61f86638
TM
3077 }
3078
ac27a0ec 3079 sb = inode->i_sb;
471fbbea
DR
3080 if (inode->i_size < ext4_dir_rec_len(1, NULL) +
3081 ext4_dir_rec_len(2, NULL)) {
dc6982ff 3082 EXT4_ERROR_INODE(inode, "invalid size");
7aab5c84 3083 return false;
ac27a0ec 3084 }
4e19d6b6
TT
3085 /* The first directory block must not be a hole,
3086 * so treat it as DIRENT_HTREE
3087 */
3088 bh = ext4_read_dirblock(inode, 0, DIRENT_HTREE);
dc6982ff 3089 if (IS_ERR(bh))
7aab5c84 3090 return false;
dc6982ff 3091
617ba13b 3092 de = (struct ext4_dir_entry_2 *) bh->b_data;
64d4ce89
JK
3093 if (ext4_check_dir_entry(inode, NULL, de, bh, bh->b_data, bh->b_size,
3094 0) ||
3095 le32_to_cpu(de->inode) != inode->i_ino || strcmp(".", de->name)) {
3096 ext4_warning_inode(inode, "directory missing '.'");
3097 brelse(bh);
7aab5c84 3098 return false;
64d4ce89
JK
3099 }
3100 offset = ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize);
3101 de = ext4_next_entry(de, sb->s_blocksize);
3102 if (ext4_check_dir_entry(inode, NULL, de, bh, bh->b_data, bh->b_size,
3103 offset) ||
3104 le32_to_cpu(de->inode) == 0 || strcmp("..", de->name)) {
3105 ext4_warning_inode(inode, "directory missing '..'");
af5bc92d 3106 brelse(bh);
7aab5c84 3107 return false;
ac27a0ec 3108 }
64d4ce89 3109 offset += ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize);
af5bc92d 3110 while (offset < inode->i_size) {
64d4ce89 3111 if (!(offset & (sb->s_blocksize - 1))) {
24676da4 3112 unsigned int lblock;
af5bc92d 3113 brelse(bh);
24676da4 3114 lblock = offset >> EXT4_BLOCK_SIZE_BITS(sb);
dc6982ff 3115 bh = ext4_read_dirblock(inode, lblock, EITHER);
4e19d6b6
TT
3116 if (bh == NULL) {
3117 offset += sb->s_blocksize;
3118 continue;
3119 }
dc6982ff 3120 if (IS_ERR(bh))
7aab5c84 3121 return false;
ac27a0ec 3122 }
64d4ce89
JK
3123 de = (struct ext4_dir_entry_2 *) (bh->b_data +
3124 (offset & (sb->s_blocksize - 1)));
226ba972 3125 if (ext4_check_dir_entry(inode, NULL, de, bh,
b24e77ef
YB
3126 bh->b_data, bh->b_size, offset) ||
3127 le32_to_cpu(de->inode)) {
af5bc92d 3128 brelse(bh);
a7550b30 3129 return false;
ac27a0ec 3130 }
3d0518f4 3131 offset += ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize);
ac27a0ec 3132 }
af5bc92d 3133 brelse(bh);
a7550b30 3134 return true;
ac27a0ec
DK
3135}
3136
af5bc92d 3137static int ext4_rmdir(struct inode *dir, struct dentry *dentry)
ac27a0ec
DK
3138{
3139 int retval;
af5bc92d
TT
3140 struct inode *inode;
3141 struct buffer_head *bh;
3142 struct ext4_dir_entry_2 *de;
8dcfaad2 3143 handle_t *handle = NULL;
ac27a0ec 3144
0db1ff22
TT
3145 if (unlikely(ext4_forced_shutdown(EXT4_SB(dir->i_sb))))
3146 return -EIO;
3147
ac27a0ec
DK
3148 /* Initialize quotas before so that eventual writes go in
3149 * separate transaction */
a7cdadee
JK
3150 retval = dquot_initialize(dir);
3151 if (retval)
3152 return retval;
3153 retval = dquot_initialize(d_inode(dentry));
3154 if (retval)
3155 return retval;
907f4554 3156
ac27a0ec 3157 retval = -ENOENT;
32f7f22c 3158 bh = ext4_find_entry(dir, &dentry->d_name, &de, NULL);
36de9286
TT
3159 if (IS_ERR(bh))
3160 return PTR_ERR(bh);
ac27a0ec
DK
3161 if (!bh)
3162 goto end_rmdir;
3163
2b0143b5 3164 inode = d_inode(dentry);
ac27a0ec 3165
6a797d27 3166 retval = -EFSCORRUPTED;
ac27a0ec
DK
3167 if (le32_to_cpu(de->inode) != inode->i_ino)
3168 goto end_rmdir;
3169
3170 retval = -ENOTEMPTY;
e875a2dd 3171 if (!ext4_empty_dir(inode))
ac27a0ec
DK
3172 goto end_rmdir;
3173
8dcfaad2 3174 handle = ext4_journal_start(dir, EXT4_HT_DIR,
64044abf 3175 EXT4_DATA_TRANS_BLOCKS(dir->i_sb));
8dcfaad2
TT
3176 if (IS_ERR(handle)) {
3177 retval = PTR_ERR(handle);
3178 handle = NULL;
3179 goto end_rmdir;
3180 }
3181
3182 if (IS_DIRSYNC(dir))
3183 ext4_handle_sync(handle);
3184
617ba13b 3185 retval = ext4_delete_entry(handle, dir, de, bh);
ac27a0ec
DK
3186 if (retval)
3187 goto end_rmdir;
f8628a14 3188 if (!EXT4_DIR_LINK_EMPTY(inode))
b03a2f7e
AD
3189 ext4_warning_inode(inode,
3190 "empty directory '%.*s' has too many links (%u)",
3191 dentry->d_name.len, dentry->d_name.name,
af5bc92d 3192 inode->i_nlink);
ee73f9a5 3193 inode_inc_iversion(inode);
ac27a0ec
DK
3194 clear_nlink(inode);
3195 /* There's no need to set i_disksize: the fact that i_nlink is
3196 * zero will ensure that the right thing happens during any
3197 * recovery. */
3198 inode->i_size = 0;
617ba13b 3199 ext4_orphan_add(handle, inode);
eeca7ea1 3200 inode->i_ctime = dir->i_ctime = dir->i_mtime = current_time(inode);
4209ae12
HS
3201 retval = ext4_mark_inode_dirty(handle, inode);
3202 if (retval)
3203 goto end_rmdir;
15ed2851 3204 ext4_dec_count(dir);
617ba13b 3205 ext4_update_dx_flag(dir);
a80f7fcf 3206 ext4_fc_track_unlink(handle, dentry);
4209ae12 3207 retval = ext4_mark_inode_dirty(handle, dir);
ac27a0ec 3208
5298d4bf 3209#if IS_ENABLED(CONFIG_UNICODE)
b886ee3e
GKB
3210 /* VFS negative dentries are incompatible with Encoding and
3211 * Case-insensitiveness. Eventually we'll want avoid
3212 * invalidating the dentries here, alongside with returning the
3213 * negative dentries at ext4_lookup(), when it is better
3214 * supported by the VFS for the CI case.
3215 */
3216 if (IS_CASEFOLDED(dir))
3217 d_invalidate(dentry);
3218#endif
3219
ac27a0ec 3220end_rmdir:
af5bc92d 3221 brelse(bh);
8dcfaad2
TT
3222 if (handle)
3223 ext4_journal_stop(handle);
ac27a0ec
DK
3224 return retval;
3225}
3226
4c0d5778
EB
3227int __ext4_unlink(struct inode *dir, const struct qstr *d_name,
3228 struct inode *inode,
3229 struct dentry *dentry /* NULL during fast_commit recovery */)
ac27a0ec 3230{
8016e29f 3231 int retval = -ENOENT;
af5bc92d
TT
3232 struct buffer_head *bh;
3233 struct ext4_dir_entry_2 *de;
4c0d5778 3234 handle_t *handle;
8016e29f 3235 int skip_remove_dentry = 0;
ac27a0ec 3236
4c0d5778
EB
3237 /*
3238 * Keep this outside the transaction; it may have to set up the
3239 * directory's encryption key, which isn't GFP_NOFS-safe.
3240 */
8016e29f
HS
3241 bh = ext4_find_entry(dir, d_name, &de, NULL);
3242 if (IS_ERR(bh))
3243 return PTR_ERR(bh);
ac27a0ec 3244
8016e29f
HS
3245 if (!bh)
3246 return -ENOENT;
ac27a0ec 3247
e5f78159 3248 if (le32_to_cpu(de->inode) != inode->i_ino) {
8016e29f
HS
3249 /*
3250 * It's okay if we find dont find dentry which matches
3251 * the inode. That's because it might have gotten
3252 * renamed to a different inode number
3253 */
3254 if (EXT4_SB(inode->i_sb)->s_mount_state & EXT4_FC_REPLAY)
3255 skip_remove_dentry = 1;
3256 else
4c0d5778
EB
3257 goto out_bh;
3258 }
3259
3260 handle = ext4_journal_start(dir, EXT4_HT_DIR,
3261 EXT4_DATA_TRANS_BLOCKS(dir->i_sb));
3262 if (IS_ERR(handle)) {
3263 retval = PTR_ERR(handle);
3264 goto out_bh;
931b6864
TT
3265 }
3266
3267 if (IS_DIRSYNC(dir))
3268 ext4_handle_sync(handle);
3269
8016e29f
HS
3270 if (!skip_remove_dentry) {
3271 retval = ext4_delete_entry(handle, dir, de, bh);
3272 if (retval)
4c0d5778 3273 goto out_handle;
8016e29f
HS
3274 dir->i_ctime = dir->i_mtime = current_time(dir);
3275 ext4_update_dx_flag(dir);
3276 retval = ext4_mark_inode_dirty(handle, dir);
3277 if (retval)
4c0d5778 3278 goto out_handle;
8016e29f
HS
3279 } else {
3280 retval = 0;
3281 }
c7df4a1e
TT
3282 if (inode->i_nlink == 0)
3283 ext4_warning_inode(inode, "Deleting file '%.*s' with no links",
8016e29f 3284 d_name->len, d_name->name);
c7df4a1e
TT
3285 else
3286 drop_nlink(inode);
ac27a0ec 3287 if (!inode->i_nlink)
617ba13b 3288 ext4_orphan_add(handle, inode);
eeca7ea1 3289 inode->i_ctime = current_time(inode);
4209ae12 3290 retval = ext4_mark_inode_dirty(handle, inode);
4c0d5778
EB
3291 if (dentry && !retval)
3292 ext4_fc_track_unlink(handle, dentry);
3293out_handle:
3294 ext4_journal_stop(handle);
3295out_bh:
8016e29f
HS
3296 brelse(bh);
3297 return retval;
3298}
3299
3300static int ext4_unlink(struct inode *dir, struct dentry *dentry)
3301{
3302 int retval;
3303
3304 if (unlikely(ext4_forced_shutdown(EXT4_SB(dir->i_sb))))
3305 return -EIO;
3306
3307 trace_ext4_unlink_enter(dir, dentry);
3308 /*
3309 * Initialize quotas before so that eventual writes go
3310 * in separate transaction
3311 */
3312 retval = dquot_initialize(dir);
3313 if (retval)
3314 goto out_trace;
3315 retval = dquot_initialize(d_inode(dentry));
3316 if (retval)
3317 goto out_trace;
3318
4c0d5778 3319 retval = __ext4_unlink(dir, &dentry->d_name, d_inode(dentry), dentry);
5298d4bf 3320#if IS_ENABLED(CONFIG_UNICODE)
b886ee3e
GKB
3321 /* VFS negative dentries are incompatible with Encoding and
3322 * Case-insensitiveness. Eventually we'll want avoid
3323 * invalidating the dentries here, alongside with returning the
3324 * negative dentries at ext4_lookup(), when it is better
3325 * supported by the VFS for the CI case.
3326 */
3327 if (IS_CASEFOLDED(dir))
3328 d_invalidate(dentry);
3329#endif
3330
e5f78159 3331out_trace:
0562e0ba 3332 trace_ext4_unlink_exit(dentry, retval);
ac27a0ec
DK
3333 return retval;
3334}
3335
6493792d
ZY
3336static int ext4_init_symlink_block(handle_t *handle, struct inode *inode,
3337 struct fscrypt_str *disk_link)
3338{
3339 struct buffer_head *bh;
3340 char *kaddr;
3341 int err = 0;
3342
3343 bh = ext4_bread(handle, inode, 0, EXT4_GET_BLOCKS_CREATE);
3344 if (IS_ERR(bh))
3345 return PTR_ERR(bh);
3346
3347 BUFFER_TRACE(bh, "get_write_access");
3348 err = ext4_journal_get_write_access(handle, inode->i_sb, bh, EXT4_JTR_NONE);
3349 if (err)
3350 goto out;
3351
3352 kaddr = (char *)bh->b_data;
3353 memcpy(kaddr, disk_link->name, disk_link->len);
3354 inode->i_size = disk_link->len - 1;
3355 EXT4_I(inode)->i_disksize = inode->i_size;
3356 err = ext4_handle_dirty_metadata(handle, inode, bh);
3357out:
3358 brelse(bh);
3359 return err;
3360}
3361
7a77db95 3362static int ext4_symlink(struct mnt_idmap *idmap, struct inode *dir,
af5bc92d 3363 struct dentry *dentry, const char *symname)
ac27a0ec
DK
3364{
3365 handle_t *handle;
af5bc92d 3366 struct inode *inode;
f348c252 3367 int err, len = strlen(symname);
df5e6223 3368 int credits;
a7550b30 3369 struct fscrypt_str disk_link;
6493792d 3370 int retries = 0;
ac27a0ec 3371
0db1ff22
TT
3372 if (unlikely(ext4_forced_shutdown(EXT4_SB(dir->i_sb))))
3373 return -EIO;
3374
78e1060c
EB
3375 err = fscrypt_prepare_symlink(dir, symname, len, dir->i_sb->s_blocksize,
3376 &disk_link);
3377 if (err)
3378 return err;
ac27a0ec 3379
a7cdadee
JK
3380 err = dquot_initialize(dir);
3381 if (err)
78e1060c 3382 return err;
907f4554 3383
6493792d
ZY
3384 /*
3385 * EXT4_INDEX_EXTRA_TRANS_BLOCKS for addition of entry into the
3386 * directory. +3 for inode, inode bitmap, group descriptor allocation.
3387 * EXT4_DATA_TRANS_BLOCKS for the data block allocation and
3388 * modification.
3389 */
3390 credits = EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
3391 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3;
3392retry:
f2d40141 3393 inode = ext4_new_inode_start_handle(idmap, dir, S_IFLNK|S_IRWXUGO,
1139575a
TT
3394 &dentry->d_name, 0, NULL,
3395 EXT4_HT_DIR, credits);
3396 handle = ext4_journal_current_handle();
f348c252
TT
3397 if (IS_ERR(inode)) {
3398 if (handle)
3399 ext4_journal_stop(handle);
6493792d
ZY
3400 err = PTR_ERR(inode);
3401 goto out_retry;
f348c252
TT
3402 }
3403
78e1060c
EB
3404 if (IS_ENCRYPTED(inode)) {
3405 err = fscrypt_encrypt_symlink(inode, symname, len, &disk_link);
ef1eb3aa 3406 if (err)
f348c252 3407 goto err_drop_inode;
a7a67e8a 3408 inode->i_op = &ext4_encrypted_symlink_inode_operations;
6493792d
ZY
3409 } else {
3410 if ((disk_link.len > EXT4_N_BLOCKS * 4)) {
3411 inode->i_op = &ext4_symlink_inode_operations;
3412 } else {
3413 inode->i_op = &ext4_fast_symlink_inode_operations;
3414 inode->i_link = (char *)&EXT4_I(inode)->i_data;
3415 }
f348c252 3416 }
ac27a0ec 3417
f348c252 3418 if ((disk_link.len > EXT4_N_BLOCKS * 4)) {
6493792d
ZY
3419 /* alloc symlink block and fill it */
3420 err = ext4_init_symlink_block(handle, inode, &disk_link);
f348c252 3421 if (err)
df5e6223 3422 goto err_drop_inode;
ac27a0ec 3423 } else {
e65187e6 3424 /* clear the extent format for fast symlink */
12e9b892 3425 ext4_clear_inode_flag(inode, EXT4_INODE_EXTENTS);
f348c252
TT
3426 memcpy((char *)&EXT4_I(inode)->i_data, disk_link.name,
3427 disk_link.len);
3428 inode->i_size = disk_link.len - 1;
6493792d 3429 EXT4_I(inode)->i_disksize = inode->i_size;
ac27a0ec 3430 }
9b88f9fb 3431 err = ext4_add_nondir(handle, dentry, &inode);
1139575a
TT
3432 if (handle)
3433 ext4_journal_stop(handle);
784a0995 3434 iput(inode);
6493792d 3435 goto out_retry;
78e1060c 3436
df5e6223 3437err_drop_inode:
f348c252 3438 clear_nlink(inode);
6493792d 3439 ext4_orphan_add(handle, inode);
df5e6223 3440 unlock_new_inode(inode);
6493792d
ZY
3441 if (handle)
3442 ext4_journal_stop(handle);
df5e6223 3443 iput(inode);
6493792d
ZY
3444out_retry:
3445 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
3446 goto retry;
78e1060c
EB
3447 if (disk_link.name != (unsigned char *)symname)
3448 kfree(disk_link.name);
df5e6223 3449 return err;
ac27a0ec
DK
3450}
3451
8016e29f 3452int __ext4_link(struct inode *dir, struct inode *inode, struct dentry *dentry)
ac27a0ec
DK
3453{
3454 handle_t *handle;
ac27a0ec 3455 int err, retries = 0;
ac27a0ec 3456retry:
9924a92a
TT
3457 handle = ext4_journal_start(dir, EXT4_HT_DIR,
3458 (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
af51a2ac 3459 EXT4_INDEX_EXTRA_TRANS_BLOCKS) + 1);
ac27a0ec
DK
3460 if (IS_ERR(handle))
3461 return PTR_ERR(handle);
3462
3463 if (IS_DIRSYNC(dir))
0390131b 3464 ext4_handle_sync(handle);
ac27a0ec 3465
eeca7ea1 3466 inode->i_ctime = current_time(inode);
15ed2851 3467 ext4_inc_count(inode);
7de9c6ee 3468 ihold(inode);
ac27a0ec 3469
6b38e842
AV
3470 err = ext4_add_entry(handle, dentry, inode);
3471 if (!err) {
4209ae12 3472 err = ext4_mark_inode_dirty(handle, inode);
af51a2ac
AV
3473 /* this can happen only for tmpfile being
3474 * linked the first time
3475 */
3476 if (inode->i_nlink == 1)
3477 ext4_orphan_del(handle, inode);
6b38e842 3478 d_instantiate(dentry, inode);
a80f7fcf 3479 ext4_fc_track_link(handle, dentry);
6b38e842
AV
3480 } else {
3481 drop_nlink(inode);
3482 iput(inode);
3483 }
617ba13b
MC
3484 ext4_journal_stop(handle);
3485 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
ac27a0ec
DK
3486 goto retry;
3487 return err;
3488}
3489
8016e29f
HS
3490static int ext4_link(struct dentry *old_dentry,
3491 struct inode *dir, struct dentry *dentry)
3492{
3493 struct inode *inode = d_inode(old_dentry);
3494 int err;
3495
3496 if (inode->i_nlink >= EXT4_LINK_MAX)
3497 return -EMLINK;
3498
3499 err = fscrypt_prepare_link(old_dentry, dir, dentry);
3500 if (err)
3501 return err;
3502
3503 if ((ext4_test_inode_flag(dir, EXT4_INODE_PROJINHERIT)) &&
3504 (!projid_eq(EXT4_I(dir)->i_projid,
3505 EXT4_I(old_dentry->d_inode)->i_projid)))
3506 return -EXDEV;
3507
3508 err = dquot_initialize(dir);
3509 if (err)
3510 return err;
3511 return __ext4_link(dir, inode, dentry);
3512}
32f7f22c
TM
3513
3514/*
3515 * Try to find buffer head where contains the parent block.
3516 * It should be the inode block if it is inlined or the 1st block
3517 * if it is a normal dir.
3518 */
3519static struct buffer_head *ext4_get_first_dir_block(handle_t *handle,
3520 struct inode *inode,
3521 int *retval,
3522 struct ext4_dir_entry_2 **parent_de,
3523 int *inlined)
3524{
3525 struct buffer_head *bh;
3526
3527 if (!ext4_has_inline_data(inode)) {
0be698ec
YB
3528 struct ext4_dir_entry_2 *de;
3529 unsigned int offset;
3530
4e19d6b6
TT
3531 /* The first directory block must not be a hole, so
3532 * treat it as DIRENT_HTREE
3533 */
3534 bh = ext4_read_dirblock(inode, 0, DIRENT_HTREE);
dc6982ff
TT
3535 if (IS_ERR(bh)) {
3536 *retval = PTR_ERR(bh);
32f7f22c
TM
3537 return NULL;
3538 }
0be698ec
YB
3539
3540 de = (struct ext4_dir_entry_2 *) bh->b_data;
3541 if (ext4_check_dir_entry(inode, NULL, de, bh, bh->b_data,
3542 bh->b_size, 0) ||
3543 le32_to_cpu(de->inode) != inode->i_ino ||
3544 strcmp(".", de->name)) {
3545 EXT4_ERROR_INODE(inode, "directory missing '.'");
3546 brelse(bh);
3547 *retval = -EFSCORRUPTED;
3548 return NULL;
3549 }
3550 offset = ext4_rec_len_from_disk(de->rec_len,
3551 inode->i_sb->s_blocksize);
3552 de = ext4_next_entry(de, inode->i_sb->s_blocksize);
3553 if (ext4_check_dir_entry(inode, NULL, de, bh, bh->b_data,
3554 bh->b_size, offset) ||
3555 le32_to_cpu(de->inode) == 0 || strcmp("..", de->name)) {
3556 EXT4_ERROR_INODE(inode, "directory missing '..'");
3557 brelse(bh);
3558 *retval = -EFSCORRUPTED;
3559 return NULL;
3560 }
3561 *parent_de = de;
3562
32f7f22c
TM
3563 return bh;
3564 }
3565
3566 *inlined = 1;
3567 return ext4_get_first_inline_block(inode, parent_de, retval);
3568}
ac27a0ec 3569
c0d268c3
MS
3570struct ext4_renament {
3571 struct inode *dir;
3572 struct dentry *dentry;
3573 struct inode *inode;
bd42998a
MS
3574 bool is_dir;
3575 int dir_nlink_delta;
c0d268c3
MS
3576
3577 /* entry for "dentry" */
3578 struct buffer_head *bh;
3579 struct ext4_dir_entry_2 *de;
3580 int inlined;
3581
3582 /* entry for ".." in inode if it's a directory */
3583 struct buffer_head *dir_bh;
3584 struct ext4_dir_entry_2 *parent_de;
3585 int dir_inlined;
3586};
3587
bd1af145
MS
3588static int ext4_rename_dir_prepare(handle_t *handle, struct ext4_renament *ent)
3589{
3590 int retval;
3591
3592 ent->dir_bh = ext4_get_first_dir_block(handle, ent->inode,
3593 &retval, &ent->parent_de,
3594 &ent->dir_inlined);
3595 if (!ent->dir_bh)
3596 return retval;
3597 if (le32_to_cpu(ent->parent_de->inode) != ent->dir->i_ino)
6a797d27 3598 return -EFSCORRUPTED;
bd1af145 3599 BUFFER_TRACE(ent->dir_bh, "get_write_access");
188c299e
JK
3600 return ext4_journal_get_write_access(handle, ent->dir->i_sb,
3601 ent->dir_bh, EXT4_JTR_NONE);
bd1af145
MS
3602}
3603
3604static int ext4_rename_dir_finish(handle_t *handle, struct ext4_renament *ent,
3605 unsigned dir_ino)
3606{
3607 int retval;
3608
3609 ent->parent_de->inode = cpu_to_le32(dir_ino);
3610 BUFFER_TRACE(ent->dir_bh, "call ext4_handle_dirty_metadata");
3611 if (!ent->dir_inlined) {
3612 if (is_dx(ent->inode)) {
3613 retval = ext4_handle_dirty_dx_node(handle,
3614 ent->inode,
3615 ent->dir_bh);
3616 } else {
f036adb3
TT
3617 retval = ext4_handle_dirty_dirblock(handle, ent->inode,
3618 ent->dir_bh);
bd1af145
MS
3619 }
3620 } else {
3621 retval = ext4_mark_inode_dirty(handle, ent->inode);
3622 }
3623 if (retval) {
3624 ext4_std_error(ent->dir->i_sb, retval);
3625 return retval;
3626 }
3627 return 0;
3628}
3629
3630static int ext4_setent(handle_t *handle, struct ext4_renament *ent,
3631 unsigned ino, unsigned file_type)
3632{
4209ae12 3633 int retval, retval2;
bd1af145
MS
3634
3635 BUFFER_TRACE(ent->bh, "get write access");
188c299e
JK
3636 retval = ext4_journal_get_write_access(handle, ent->dir->i_sb, ent->bh,
3637 EXT4_JTR_NONE);
bd1af145
MS
3638 if (retval)
3639 return retval;
3640 ent->de->inode = cpu_to_le32(ino);
e2b911c5 3641 if (ext4_has_feature_filetype(ent->dir->i_sb))
bd1af145 3642 ent->de->file_type = file_type;
ee73f9a5 3643 inode_inc_iversion(ent->dir);
bd1af145 3644 ent->dir->i_ctime = ent->dir->i_mtime =
eeca7ea1 3645 current_time(ent->dir);
4209ae12 3646 retval = ext4_mark_inode_dirty(handle, ent->dir);
bd1af145
MS
3647 BUFFER_TRACE(ent->bh, "call ext4_handle_dirty_metadata");
3648 if (!ent->inlined) {
4209ae12
HS
3649 retval2 = ext4_handle_dirty_dirblock(handle, ent->dir, ent->bh);
3650 if (unlikely(retval2)) {
3651 ext4_std_error(ent->dir->i_sb, retval2);
3652 return retval2;
bd1af145
MS
3653 }
3654 }
4209ae12 3655 return retval;
bd1af145
MS
3656}
3657
b7ff91fd 3658static void ext4_resetent(handle_t *handle, struct ext4_renament *ent,
3659 unsigned ino, unsigned file_type)
3660{
3661 struct ext4_renament old = *ent;
3662 int retval = 0;
3663
3664 /*
3665 * old->de could have moved from under us during make indexed dir,
3666 * so the old->de may no longer valid and need to find it again
3667 * before reset old inode info.
3668 */
c9f62c8b
EW
3669 old.bh = ext4_find_entry(old.dir, &old.dentry->d_name, &old.de,
3670 &old.inlined);
b7ff91fd 3671 if (IS_ERR(old.bh))
3672 retval = PTR_ERR(old.bh);
3673 if (!old.bh)
3674 retval = -ENOENT;
3675 if (retval) {
3676 ext4_std_error(old.dir->i_sb, retval);
3677 return;
3678 }
3679
3680 ext4_setent(handle, &old, ino, file_type);
3681 brelse(old.bh);
3682}
3683
bd1af145
MS
3684static int ext4_find_delete_entry(handle_t *handle, struct inode *dir,
3685 const struct qstr *d_name)
3686{
3687 int retval = -ENOENT;
3688 struct buffer_head *bh;
3689 struct ext4_dir_entry_2 *de;
3690
3691 bh = ext4_find_entry(dir, d_name, &de, NULL);
36de9286
TT
3692 if (IS_ERR(bh))
3693 return PTR_ERR(bh);
bd1af145
MS
3694 if (bh) {
3695 retval = ext4_delete_entry(handle, dir, de, bh);
3696 brelse(bh);
3697 }
3698 return retval;
3699}
3700
d80d448c
DW
3701static void ext4_rename_delete(handle_t *handle, struct ext4_renament *ent,
3702 int force_reread)
bd1af145
MS
3703{
3704 int retval;
3705 /*
3706 * ent->de could have moved from under us during htree split, so make
3707 * sure that we are deleting the right entry. We might also be pointing
3708 * to a stale entry in the unused part of ent->bh so just checking inum
3709 * and the name isn't enough.
3710 */
3711 if (le32_to_cpu(ent->de->inode) != ent->inode->i_ino ||
3712 ent->de->name_len != ent->dentry->d_name.len ||
3713 strncmp(ent->de->name, ent->dentry->d_name.name,
d80d448c
DW
3714 ent->de->name_len) ||
3715 force_reread) {
bd1af145
MS
3716 retval = ext4_find_delete_entry(handle, ent->dir,
3717 &ent->dentry->d_name);
3718 } else {
3719 retval = ext4_delete_entry(handle, ent->dir, ent->de, ent->bh);
3720 if (retval == -ENOENT) {
3721 retval = ext4_find_delete_entry(handle, ent->dir,
3722 &ent->dentry->d_name);
3723 }
3724 }
3725
3726 if (retval) {
b03a2f7e
AD
3727 ext4_warning_inode(ent->dir,
3728 "Deleting old file: nlink %d, error=%d",
3729 ent->dir->i_nlink, retval);
bd1af145
MS
3730 }
3731}
3732
bd42998a
MS
3733static void ext4_update_dir_count(handle_t *handle, struct ext4_renament *ent)
3734{
3735 if (ent->dir_nlink_delta) {
3736 if (ent->dir_nlink_delta == -1)
15ed2851 3737 ext4_dec_count(ent->dir);
bd42998a 3738 else
15ed2851 3739 ext4_inc_count(ent->dir);
bd42998a
MS
3740 ext4_mark_inode_dirty(handle, ent->dir);
3741 }
3742}
3743
f2d40141 3744static struct inode *ext4_whiteout_for_rename(struct mnt_idmap *idmap,
14f3db55 3745 struct ext4_renament *ent,
cd808dec
MS
3746 int credits, handle_t **h)
3747{
3748 struct inode *wh;
3749 handle_t *handle;
3750 int retries = 0;
3751
3752 /*
3753 * for inode block, sb block, group summaries,
3754 * and inode bitmap
3755 */
3756 credits += (EXT4_MAXQUOTAS_TRANS_BLOCKS(ent->dir->i_sb) +
3757 EXT4_XATTR_TRANS_BLOCKS + 4);
3758retry:
f2d40141 3759 wh = ext4_new_inode_start_handle(idmap, ent->dir,
14f3db55 3760 S_IFCHR | WHITEOUT_MODE,
cd808dec
MS
3761 &ent->dentry->d_name, 0, NULL,
3762 EXT4_HT_DIR, credits);
3763
3764 handle = ext4_journal_current_handle();
3765 if (IS_ERR(wh)) {
3766 if (handle)
3767 ext4_journal_stop(handle);
3768 if (PTR_ERR(wh) == -ENOSPC &&
3769 ext4_should_retry_alloc(ent->dir->i_sb, &retries))
3770 goto retry;
3771 } else {
3772 *h = handle;
3773 init_special_inode(wh, wh->i_mode, WHITEOUT_DEV);
3774 wh->i_op = &ext4_special_inode_operations;
3775 }
3776 return wh;
3777}
3778
ac27a0ec
DK
3779/*
3780 * Anybody can rename anything with this: the permission checks are left to the
3781 * higher-level routines.
0e202704
TT
3782 *
3783 * n.b. old_{dentry,inode) refers to the source dentry/inode
3784 * while new_{dentry,inode) refers to the destination dentry/inode
3785 * This comes from rename(const char *oldpath, const char *newpath)
ac27a0ec 3786 */
f2d40141 3787static int ext4_rename(struct mnt_idmap *idmap, struct inode *old_dir,
14f3db55
CB
3788 struct dentry *old_dentry, struct inode *new_dir,
3789 struct dentry *new_dentry, unsigned int flags)
ac27a0ec 3790{
5b61de75 3791 handle_t *handle = NULL;
c0d268c3
MS
3792 struct ext4_renament old = {
3793 .dir = old_dir,
3794 .dentry = old_dentry,
2b0143b5 3795 .inode = d_inode(old_dentry),
c0d268c3
MS
3796 };
3797 struct ext4_renament new = {
3798 .dir = new_dir,
3799 .dentry = new_dentry,
2b0143b5 3800 .inode = d_inode(new_dentry),
c0d268c3 3801 };
d80d448c 3802 int force_reread;
0e202704 3803 int retval;
cd808dec
MS
3804 struct inode *whiteout = NULL;
3805 int credits;
3806 u8 old_file_type;
907f4554 3807
b50282f3
TT
3808 if (new.inode && new.inode->i_nlink == 0) {
3809 EXT4_ERROR_INODE(new.inode,
3810 "target of rename is already freed");
3811 return -EFSCORRUPTED;
3812 }
3813
040cb378
LX
3814 if ((ext4_test_inode_flag(new_dir, EXT4_INODE_PROJINHERIT)) &&
3815 (!projid_eq(EXT4_I(new_dir)->i_projid,
3816 EXT4_I(old_dentry->d_inode)->i_projid)))
3817 return -EXDEV;
3818
a7cdadee 3819 retval = dquot_initialize(old.dir);
fae381a3
YB
3820 if (retval)
3821 return retval;
3822 retval = dquot_initialize(old.inode);
a7cdadee
JK
3823 if (retval)
3824 return retval;
3825 retval = dquot_initialize(new.dir);
3826 if (retval)
3827 return retval;
ac27a0ec
DK
3828
3829 /* Initialize quotas before so that eventual writes go
3830 * in separate transaction */
a7cdadee
JK
3831 if (new.inode) {
3832 retval = dquot_initialize(new.inode);
3833 if (retval)
3834 return retval;
3835 }
ac27a0ec 3836
3c92792d
JK
3837 /*
3838 * We need to protect against old.inode directory getting converted
3839 * from inline directory format into a normal one.
3840 */
3841 if (S_ISDIR(old.inode->i_mode))
3842 inode_lock_nested(old.inode, I_MUTEX_NONDIR2);
3843
c9f62c8b
EW
3844 old.bh = ext4_find_entry(old.dir, &old.dentry->d_name, &old.de,
3845 &old.inlined);
3c92792d
JK
3846 if (IS_ERR(old.bh)) {
3847 retval = PTR_ERR(old.bh);
3848 goto unlock_moved_dir;
3849 }
3850
ac27a0ec
DK
3851 /*
3852 * Check for inode number is _not_ due to possible IO errors.
3853 * We might rmdir the source, keep it as pwd of some process
3854 * and merrily kill the link to whatever was created under the
3855 * same name. Goodbye sticky bit ;-<
3856 */
ac27a0ec 3857 retval = -ENOENT;
c0d268c3 3858 if (!old.bh || le32_to_cpu(old.de->inode) != old.inode->i_ino)
5dccdc5a 3859 goto release_bh;
ac27a0ec 3860
c0d268c3
MS
3861 new.bh = ext4_find_entry(new.dir, &new.dentry->d_name,
3862 &new.de, &new.inlined);
36de9286
TT
3863 if (IS_ERR(new.bh)) {
3864 retval = PTR_ERR(new.bh);
a9cfcd63 3865 new.bh = NULL;
5dccdc5a 3866 goto release_bh;
36de9286 3867 }
c0d268c3
MS
3868 if (new.bh) {
3869 if (!new.inode) {
3870 brelse(new.bh);
3871 new.bh = NULL;
ac27a0ec
DK
3872 }
3873 }
c0d268c3
MS
3874 if (new.inode && !test_opt(new.dir->i_sb, NO_AUTO_DA_ALLOC))
3875 ext4_alloc_da_blocks(old.inode);
5b61de75 3876
cd808dec
MS
3877 credits = (2 * EXT4_DATA_TRANS_BLOCKS(old.dir->i_sb) +
3878 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 2);
3879 if (!(flags & RENAME_WHITEOUT)) {
3880 handle = ext4_journal_start(old.dir, EXT4_HT_DIR, credits);
7071b715
KK
3881 if (IS_ERR(handle)) {
3882 retval = PTR_ERR(handle);
5dccdc5a 3883 goto release_bh;
7071b715 3884 }
cd808dec 3885 } else {
f2d40141 3886 whiteout = ext4_whiteout_for_rename(idmap, &old, credits, &handle);
7071b715
KK
3887 if (IS_ERR(whiteout)) {
3888 retval = PTR_ERR(whiteout);
5dccdc5a 3889 goto release_bh;
7071b715 3890 }
cd808dec 3891 }
5b61de75 3892
6b4b8e6b 3893 old_file_type = old.de->file_type;
c0d268c3 3894 if (IS_DIRSYNC(old.dir) || IS_DIRSYNC(new.dir))
5b61de75
TT
3895 ext4_handle_sync(handle);
3896
c0d268c3
MS
3897 if (S_ISDIR(old.inode->i_mode)) {
3898 if (new.inode) {
ac27a0ec 3899 retval = -ENOTEMPTY;
e875a2dd 3900 if (!ext4_empty_dir(new.inode))
ac27a0ec 3901 goto end_rename;
0d7d5d67
MS
3902 } else {
3903 retval = -EMLINK;
3904 if (new.dir != old.dir && EXT4_DIR_LINK_MAX(new.dir))
3905 goto end_rename;
ac27a0ec 3906 }
bd1af145 3907 retval = ext4_rename_dir_prepare(handle, &old);
70e42fea 3908 if (retval)
ef607893 3909 goto end_rename;
ac27a0ec 3910 }
d80d448c
DW
3911 /*
3912 * If we're renaming a file within an inline_data dir and adding or
3913 * setting the new dirent causes a conversion from inline_data to
3914 * extents/blockmap, we need to force the dirent delete code to
3915 * re-read the directory, or else we end up trying to delete a dirent
3916 * from what is now the extent tree root (or a block map).
3917 */
3918 force_reread = (new.dir->i_ino == old.dir->i_ino &&
3919 ext4_test_inode_flag(new.dir, EXT4_INODE_INLINE_DATA));
cd808dec 3920
cd808dec
MS
3921 if (whiteout) {
3922 /*
3923 * Do this before adding a new entry, so the old entry is sure
3924 * to be still pointing to the valid old entry.
3925 */
3926 retval = ext4_setent(handle, &old, whiteout->i_ino,
3927 EXT4_FT_CHRDEV);
3928 if (retval)
3929 goto end_rename;
4209ae12
HS
3930 retval = ext4_mark_inode_dirty(handle, whiteout);
3931 if (unlikely(retval))
3932 goto end_rename;
8210bb29 3933
cd808dec 3934 }
c0d268c3
MS
3935 if (!new.bh) {
3936 retval = ext4_add_entry(handle, new.dentry, old.inode);
ac27a0ec
DK
3937 if (retval)
3938 goto end_rename;
3939 } else {
bd1af145 3940 retval = ext4_setent(handle, &new,
cd808dec 3941 old.inode->i_ino, old_file_type);
ef607893
AG
3942 if (retval)
3943 goto end_rename;
ac27a0ec 3944 }
d80d448c
DW
3945 if (force_reread)
3946 force_reread = !ext4_test_inode_flag(new.dir,
3947 EXT4_INODE_INLINE_DATA);
ac27a0ec
DK
3948
3949 /*
3950 * Like most other Unix systems, set the ctime for inodes on a
3951 * rename.
3952 */
eeca7ea1 3953 old.inode->i_ctime = current_time(old.inode);
4209ae12
HS
3954 retval = ext4_mark_inode_dirty(handle, old.inode);
3955 if (unlikely(retval))
3956 goto end_rename;
ac27a0ec 3957
cd808dec
MS
3958 if (!whiteout) {
3959 /*
3960 * ok, that's it
3961 */
3962 ext4_rename_delete(handle, &old, force_reread);
3963 }
ac27a0ec 3964
c0d268c3 3965 if (new.inode) {
15ed2851 3966 ext4_dec_count(new.inode);
eeca7ea1 3967 new.inode->i_ctime = current_time(new.inode);
ac27a0ec 3968 }
eeca7ea1 3969 old.dir->i_ctime = old.dir->i_mtime = current_time(old.dir);
c0d268c3
MS
3970 ext4_update_dx_flag(old.dir);
3971 if (old.dir_bh) {
bd1af145
MS
3972 retval = ext4_rename_dir_finish(handle, &old, new.dir->i_ino);
3973 if (retval)
b4097142 3974 goto end_rename;
bd1af145 3975
15ed2851 3976 ext4_dec_count(old.dir);
c0d268c3 3977 if (new.inode) {
e875a2dd
MH
3978 /* checked ext4_empty_dir above, can't have another
3979 * parent, ext4_dec_count() won't work for many-linked
3980 * dirs */
c0d268c3 3981 clear_nlink(new.inode);
ac27a0ec 3982 } else {
15ed2851 3983 ext4_inc_count(new.dir);
c0d268c3 3984 ext4_update_dx_flag(new.dir);
4209ae12
HS
3985 retval = ext4_mark_inode_dirty(handle, new.dir);
3986 if (unlikely(retval))
3987 goto end_rename;
ac27a0ec
DK
3988 }
3989 }
4209ae12
HS
3990 retval = ext4_mark_inode_dirty(handle, old.dir);
3991 if (unlikely(retval))
3992 goto end_rename;
aa75f4d3
HS
3993
3994 if (S_ISDIR(old.inode->i_mode)) {
3995 /*
3996 * We disable fast commits here that's because the
3997 * replay code is not yet capable of changing dot dot
3998 * dirents in directories.
3999 */
4000 ext4_fc_mark_ineligible(old.inode->i_sb,
e85c81ba 4001 EXT4_FC_REASON_RENAME_DIR, handle);
aa75f4d3 4002 } else {
78be0471
RH
4003 struct super_block *sb = old.inode->i_sb;
4004
aa75f4d3 4005 if (new.inode)
a80f7fcf 4006 ext4_fc_track_unlink(handle, new.dentry);
78be0471
RH
4007 if (test_opt2(sb, JOURNAL_FAST_COMMIT) &&
4008 !(EXT4_SB(sb)->s_mount_state & EXT4_FC_REPLAY) &&
4009 !(ext4_test_mount_flag(sb, EXT4_MF_FC_INELIGIBLE))) {
4010 __ext4_fc_track_link(handle, old.inode, new.dentry);
4011 __ext4_fc_track_unlink(handle, old.inode, old.dentry);
4012 if (whiteout)
4013 __ext4_fc_track_create(handle, whiteout,
4014 old.dentry);
4015 }
aa75f4d3
HS
4016 }
4017
c0d268c3 4018 if (new.inode) {
4209ae12
HS
4019 retval = ext4_mark_inode_dirty(handle, new.inode);
4020 if (unlikely(retval))
4021 goto end_rename;
c0d268c3
MS
4022 if (!new.inode->i_nlink)
4023 ext4_orphan_add(handle, new.inode);
ac27a0ec
DK
4024 }
4025 retval = 0;
4026
4027end_rename:
cd808dec 4028 if (whiteout) {
6b4b8e6b 4029 if (retval) {
b7ff91fd 4030 ext4_resetent(handle, &old,
4031 old.inode->i_ino, old_file_type);
cd808dec 4032 drop_nlink(whiteout);
5dccdc5a 4033 ext4_orphan_add(handle, whiteout);
6b4b8e6b 4034 }
cd808dec 4035 unlock_new_inode(whiteout);
5dccdc5a 4036 ext4_journal_stop(handle);
cd808dec 4037 iput(whiteout);
5dccdc5a 4038 } else {
4039 ext4_journal_stop(handle);
cd808dec 4040 }
5dccdc5a 4041release_bh:
6b4b8e6b 4042 brelse(old.dir_bh);
4043 brelse(old.bh);
4044 brelse(new.bh);
3c92792d
JK
4045
4046unlock_moved_dir:
4047 if (S_ISDIR(old.inode->i_mode))
4048 inode_unlock(old.inode);
4049
ac27a0ec
DK
4050 return retval;
4051}
4052
bd42998a
MS
4053static int ext4_cross_rename(struct inode *old_dir, struct dentry *old_dentry,
4054 struct inode *new_dir, struct dentry *new_dentry)
4055{
4056 handle_t *handle = NULL;
4057 struct ext4_renament old = {
4058 .dir = old_dir,
4059 .dentry = old_dentry,
2b0143b5 4060 .inode = d_inode(old_dentry),
bd42998a
MS
4061 };
4062 struct ext4_renament new = {
4063 .dir = new_dir,
4064 .dentry = new_dentry,
2b0143b5 4065 .inode = d_inode(new_dentry),
bd42998a
MS
4066 };
4067 u8 new_file_type;
4068 int retval;
95582b00 4069 struct timespec64 ctime;
bd42998a 4070
040cb378
LX
4071 if ((ext4_test_inode_flag(new_dir, EXT4_INODE_PROJINHERIT) &&
4072 !projid_eq(EXT4_I(new_dir)->i_projid,
4073 EXT4_I(old_dentry->d_inode)->i_projid)) ||
4074 (ext4_test_inode_flag(old_dir, EXT4_INODE_PROJINHERIT) &&
4075 !projid_eq(EXT4_I(old_dir)->i_projid,
4076 EXT4_I(new_dentry->d_inode)->i_projid)))
4077 return -EXDEV;
4078
a7cdadee
JK
4079 retval = dquot_initialize(old.dir);
4080 if (retval)
4081 return retval;
4082 retval = dquot_initialize(new.dir);
4083 if (retval)
4084 return retval;
bd42998a
MS
4085
4086 old.bh = ext4_find_entry(old.dir, &old.dentry->d_name,
4087 &old.de, &old.inlined);
36de9286
TT
4088 if (IS_ERR(old.bh))
4089 return PTR_ERR(old.bh);
bd42998a
MS
4090 /*
4091 * Check for inode number is _not_ due to possible IO errors.
4092 * We might rmdir the source, keep it as pwd of some process
4093 * and merrily kill the link to whatever was created under the
4094 * same name. Goodbye sticky bit ;-<
4095 */
4096 retval = -ENOENT;
4097 if (!old.bh || le32_to_cpu(old.de->inode) != old.inode->i_ino)
4098 goto end_rename;
4099
4100 new.bh = ext4_find_entry(new.dir, &new.dentry->d_name,
4101 &new.de, &new.inlined);
36de9286
TT
4102 if (IS_ERR(new.bh)) {
4103 retval = PTR_ERR(new.bh);
a9cfcd63 4104 new.bh = NULL;
36de9286
TT
4105 goto end_rename;
4106 }
bd42998a
MS
4107
4108 /* RENAME_EXCHANGE case: old *and* new must both exist */
4109 if (!new.bh || le32_to_cpu(new.de->inode) != new.inode->i_ino)
4110 goto end_rename;
4111
4112 handle = ext4_journal_start(old.dir, EXT4_HT_DIR,
4113 (2 * EXT4_DATA_TRANS_BLOCKS(old.dir->i_sb) +
4114 2 * EXT4_INDEX_EXTRA_TRANS_BLOCKS + 2));
7071b715
KK
4115 if (IS_ERR(handle)) {
4116 retval = PTR_ERR(handle);
4117 handle = NULL;
4118 goto end_rename;
4119 }
bd42998a
MS
4120
4121 if (IS_DIRSYNC(old.dir) || IS_DIRSYNC(new.dir))
4122 ext4_handle_sync(handle);
4123
4124 if (S_ISDIR(old.inode->i_mode)) {
4125 old.is_dir = true;
4126 retval = ext4_rename_dir_prepare(handle, &old);
4127 if (retval)
4128 goto end_rename;
4129 }
4130 if (S_ISDIR(new.inode->i_mode)) {
4131 new.is_dir = true;
4132 retval = ext4_rename_dir_prepare(handle, &new);
4133 if (retval)
4134 goto end_rename;
4135 }
4136
4137 /*
4138 * Other than the special case of overwriting a directory, parents'
4139 * nlink only needs to be modified if this is a cross directory rename.
4140 */
4141 if (old.dir != new.dir && old.is_dir != new.is_dir) {
4142 old.dir_nlink_delta = old.is_dir ? -1 : 1;
4143 new.dir_nlink_delta = -old.dir_nlink_delta;
4144 retval = -EMLINK;
4145 if ((old.dir_nlink_delta > 0 && EXT4_DIR_LINK_MAX(old.dir)) ||
4146 (new.dir_nlink_delta > 0 && EXT4_DIR_LINK_MAX(new.dir)))
4147 goto end_rename;
4148 }
4149
4150 new_file_type = new.de->file_type;
4151 retval = ext4_setent(handle, &new, old.inode->i_ino, old.de->file_type);
4152 if (retval)
4153 goto end_rename;
4154
4155 retval = ext4_setent(handle, &old, new.inode->i_ino, new_file_type);
4156 if (retval)
4157 goto end_rename;
4158
4159 /*
4160 * Like most other Unix systems, set the ctime for inodes on a
4161 * rename.
4162 */
eeca7ea1
DD
4163 ctime = current_time(old.inode);
4164 old.inode->i_ctime = ctime;
4165 new.inode->i_ctime = ctime;
4209ae12
HS
4166 retval = ext4_mark_inode_dirty(handle, old.inode);
4167 if (unlikely(retval))
4168 goto end_rename;
4169 retval = ext4_mark_inode_dirty(handle, new.inode);
4170 if (unlikely(retval))
4171 goto end_rename;
aa75f4d3 4172 ext4_fc_mark_ineligible(new.inode->i_sb,
e85c81ba 4173 EXT4_FC_REASON_CROSS_RENAME, handle);
bd42998a
MS
4174 if (old.dir_bh) {
4175 retval = ext4_rename_dir_finish(handle, &old, new.dir->i_ino);
4176 if (retval)
4177 goto end_rename;
4178 }
4179 if (new.dir_bh) {
4180 retval = ext4_rename_dir_finish(handle, &new, old.dir->i_ino);
4181 if (retval)
4182 goto end_rename;
4183 }
4184 ext4_update_dir_count(handle, &old);
4185 ext4_update_dir_count(handle, &new);
4186 retval = 0;
4187
4188end_rename:
4189 brelse(old.dir_bh);
4190 brelse(new.dir_bh);
4191 brelse(old.bh);
4192 brelse(new.bh);
4193 if (handle)
4194 ext4_journal_stop(handle);
4195 return retval;
4196}
4197
e18275ae 4198static int ext4_rename2(struct mnt_idmap *idmap,
549c7297 4199 struct inode *old_dir, struct dentry *old_dentry,
0a7c3937
MS
4200 struct inode *new_dir, struct dentry *new_dentry,
4201 unsigned int flags)
4202{
07543d16
EB
4203 int err;
4204
0db1ff22
TT
4205 if (unlikely(ext4_forced_shutdown(EXT4_SB(old_dir->i_sb))))
4206 return -EIO;
4207
cd808dec 4208 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
0a7c3937
MS
4209 return -EINVAL;
4210
07543d16
EB
4211 err = fscrypt_prepare_rename(old_dir, old_dentry, new_dir, new_dentry,
4212 flags);
4213 if (err)
4214 return err;
4215
bd42998a
MS
4216 if (flags & RENAME_EXCHANGE) {
4217 return ext4_cross_rename(old_dir, old_dentry,
4218 new_dir, new_dentry);
4219 }
cd808dec 4220
f2d40141 4221 return ext4_rename(idmap, old_dir, old_dentry, new_dir, new_dentry, flags);
0a7c3937
MS
4222}
4223
ac27a0ec
DK
4224/*
4225 * directories can handle most operations...
4226 */
754661f1 4227const struct inode_operations ext4_dir_inode_operations = {
617ba13b
MC
4228 .create = ext4_create,
4229 .lookup = ext4_lookup,
4230 .link = ext4_link,
4231 .unlink = ext4_unlink,
4232 .symlink = ext4_symlink,
4233 .mkdir = ext4_mkdir,
4234 .rmdir = ext4_rmdir,
4235 .mknod = ext4_mknod,
af51a2ac 4236 .tmpfile = ext4_tmpfile,
2773bf00 4237 .rename = ext4_rename2,
617ba13b 4238 .setattr = ext4_setattr,
99652ea5 4239 .getattr = ext4_getattr,
617ba13b 4240 .listxattr = ext4_listxattr,
cac2f8b8 4241 .get_inode_acl = ext4_get_acl,
64e178a7 4242 .set_acl = ext4_set_acl,
abc8746e 4243 .fiemap = ext4_fiemap,
4db5c2e6
MS
4244 .fileattr_get = ext4_fileattr_get,
4245 .fileattr_set = ext4_fileattr_set,
ac27a0ec
DK
4246};
4247
754661f1 4248const struct inode_operations ext4_special_inode_operations = {
617ba13b 4249 .setattr = ext4_setattr,
99652ea5 4250 .getattr = ext4_getattr,
617ba13b 4251 .listxattr = ext4_listxattr,
cac2f8b8 4252 .get_inode_acl = ext4_get_acl,
64e178a7 4253 .set_acl = ext4_set_acl,
ac27a0ec 4254};