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