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