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