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