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