ext4: New rec_len encoding for very large blocksizes
[safe/jmp/linux-2.6] / fs / ext4 / namei.c
1 /*
2  *  linux/fs/ext4/namei.c
3  *
4  * Copyright (C) 1992, 1993, 1994, 1995
5  * Remy Card (card@masi.ibp.fr)
6  * Laboratoire MASI - Institut Blaise Pascal
7  * Universite Pierre et Marie Curie (Paris VI)
8  *
9  *  from
10  *
11  *  linux/fs/minix/namei.c
12  *
13  *  Copyright (C) 1991, 1992  Linus Torvalds
14  *
15  *  Big-endian to little-endian byte-swapping/bitmaps by
16  *        David S. Miller (davem@caip.rutgers.edu), 1995
17  *  Directory entry file type support and forward compatibility hooks
18  *      for B-tree directories by Theodore Ts'o (tytso@mit.edu), 1998
19  *  Hash Tree Directory indexing (c)
20  *      Daniel Phillips, 2001
21  *  Hash Tree Directory indexing porting
22  *      Christopher Li, 2002
23  *  Hash Tree Directory indexing cleanup
24  *      Theodore Ts'o, 2002
25  */
26
27 #include <linux/fs.h>
28 #include <linux/pagemap.h>
29 #include <linux/jbd2.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 "namei.h"
41 #include "xattr.h"
42 #include "acl.h"
43
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 #define NAMEI_RA_INDEX(c,b)  (((c) * NAMEI_RA_BLOCKS) + (b))
51
52 static struct buffer_head *ext4_append(handle_t *handle,
53                                         struct inode *inode,
54                                         ext4_lblk_t *block, int *err)
55 {
56         struct buffer_head *bh;
57
58         *block = inode->i_size >> inode->i_sb->s_blocksize_bits;
59
60         bh = ext4_bread(handle, inode, *block, 1, err);
61         if (bh) {
62                 inode->i_size += inode->i_sb->s_blocksize;
63                 EXT4_I(inode)->i_disksize = inode->i_size;
64                 *err = ext4_journal_get_write_access(handle, bh);
65                 if (*err) {
66                         brelse(bh);
67                         bh = NULL;
68                 }
69         }
70         return bh;
71 }
72
73 #ifndef assert
74 #define assert(test) J_ASSERT(test)
75 #endif
76
77 #ifdef DX_DEBUG
78 #define dxtrace(command) command
79 #else
80 #define dxtrace(command)
81 #endif
82
83 struct fake_dirent
84 {
85         __le32 inode;
86         __le16 rec_len;
87         u8 name_len;
88         u8 file_type;
89 };
90
91 struct dx_countlimit
92 {
93         __le16 limit;
94         __le16 count;
95 };
96
97 struct dx_entry
98 {
99         __le32 hash;
100         __le32 block;
101 };
102
103 /*
104  * dx_root_info is laid out so that if it should somehow get overlaid by a
105  * dirent the two low bits of the hash version will be zero.  Therefore, the
106  * hash version mod 4 should never be 0.  Sincerely, the paranoia department.
107  */
108
109 struct dx_root
110 {
111         struct fake_dirent dot;
112         char dot_name[4];
113         struct fake_dirent dotdot;
114         char dotdot_name[4];
115         struct dx_root_info
116         {
117                 __le32 reserved_zero;
118                 u8 hash_version;
119                 u8 info_length; /* 8 */
120                 u8 indirect_levels;
121                 u8 unused_flags;
122         }
123         info;
124         struct dx_entry entries[0];
125 };
126
127 struct dx_node
128 {
129         struct fake_dirent fake;
130         struct dx_entry entries[0];
131 };
132
133
134 struct dx_frame
135 {
136         struct buffer_head *bh;
137         struct dx_entry *entries;
138         struct dx_entry *at;
139 };
140
141 struct dx_map_entry
142 {
143         u32 hash;
144         u16 offs;
145         u16 size;
146 };
147
148 static inline ext4_lblk_t dx_get_block(struct dx_entry *entry);
149 static void dx_set_block(struct dx_entry *entry, ext4_lblk_t value);
150 static inline unsigned dx_get_hash(struct dx_entry *entry);
151 static void dx_set_hash(struct dx_entry *entry, unsigned value);
152 static unsigned dx_get_count(struct dx_entry *entries);
153 static unsigned dx_get_limit(struct dx_entry *entries);
154 static void dx_set_count(struct dx_entry *entries, unsigned value);
155 static void dx_set_limit(struct dx_entry *entries, unsigned value);
156 static unsigned dx_root_limit(struct inode *dir, unsigned infosize);
157 static unsigned dx_node_limit(struct inode *dir);
158 static struct dx_frame *dx_probe(const struct qstr *d_name,
159                                  struct inode *dir,
160                                  struct dx_hash_info *hinfo,
161                                  struct dx_frame *frame,
162                                  int *err);
163 static void dx_release(struct dx_frame *frames);
164 static int dx_make_map(struct ext4_dir_entry_2 *de, unsigned blocksize,
165                        struct dx_hash_info *hinfo, struct dx_map_entry map[]);
166 static void dx_sort_map(struct dx_map_entry *map, unsigned count);
167 static struct ext4_dir_entry_2 *dx_move_dirents(char *from, char *to,
168                 struct dx_map_entry *offsets, int count, unsigned blocksize);
169 static struct ext4_dir_entry_2* dx_pack_dirents(char *base, unsigned blocksize);
170 static void dx_insert_block(struct dx_frame *frame,
171                                         u32 hash, ext4_lblk_t block);
172 static int ext4_htree_next_block(struct inode *dir, __u32 hash,
173                                  struct dx_frame *frame,
174                                  struct dx_frame *frames,
175                                  __u32 *start_hash);
176 static struct buffer_head * ext4_dx_find_entry(struct inode *dir,
177                 const struct qstr *d_name,
178                 struct ext4_dir_entry_2 **res_dir,
179                 int *err);
180 static int ext4_dx_add_entry(handle_t *handle, struct dentry *dentry,
181                              struct inode *inode);
182
183 unsigned int ext4_rec_len_from_disk(__le16 dlen, unsigned blocksize)
184 {
185         unsigned len = le16_to_cpu(dlen);
186
187         if (len == EXT4_MAX_REC_LEN || len == 0)
188                 return blocksize;
189         return (len & 65532) | ((len & 3) << 16);
190 }
191   
192 __le16 ext4_rec_len_to_disk(unsigned len, unsigned blocksize)
193 {
194         if ((len > blocksize) || (blocksize > (1 << 18)) || (len & 3))
195                 BUG();
196         if (len < 65536)
197                 return cpu_to_le16(len);
198         if (len == blocksize) {
199                 if (blocksize == 65536)
200                         return cpu_to_le16(EXT4_MAX_REC_LEN);
201                 else 
202                         return cpu_to_le16(0);
203         }
204         return cpu_to_le16((len & 65532) | ((len >> 16) & 3));
205 }
206
207 /*
208  * p is at least 6 bytes before the end of page
209  */
210 static inline struct ext4_dir_entry_2 *
211 ext4_next_entry(struct ext4_dir_entry_2 *p, unsigned long blocksize)
212 {
213         return (struct ext4_dir_entry_2 *)((char *)p +
214                 ext4_rec_len_from_disk(p->rec_len, blocksize));
215 }
216
217 /*
218  * Future: use high four bits of block for coalesce-on-delete flags
219  * Mask them off for now.
220  */
221
222 static inline ext4_lblk_t dx_get_block(struct dx_entry *entry)
223 {
224         return le32_to_cpu(entry->block) & 0x00ffffff;
225 }
226
227 static inline void dx_set_block(struct dx_entry *entry, ext4_lblk_t value)
228 {
229         entry->block = cpu_to_le32(value);
230 }
231
232 static inline unsigned dx_get_hash(struct dx_entry *entry)
233 {
234         return le32_to_cpu(entry->hash);
235 }
236
237 static inline void dx_set_hash(struct dx_entry *entry, unsigned value)
238 {
239         entry->hash = cpu_to_le32(value);
240 }
241
242 static inline unsigned dx_get_count(struct dx_entry *entries)
243 {
244         return le16_to_cpu(((struct dx_countlimit *) entries)->count);
245 }
246
247 static inline unsigned dx_get_limit(struct dx_entry *entries)
248 {
249         return le16_to_cpu(((struct dx_countlimit *) entries)->limit);
250 }
251
252 static inline void dx_set_count(struct dx_entry *entries, unsigned value)
253 {
254         ((struct dx_countlimit *) entries)->count = cpu_to_le16(value);
255 }
256
257 static inline void dx_set_limit(struct dx_entry *entries, unsigned value)
258 {
259         ((struct dx_countlimit *) entries)->limit = cpu_to_le16(value);
260 }
261
262 static inline unsigned dx_root_limit(struct inode *dir, unsigned infosize)
263 {
264         unsigned entry_space = dir->i_sb->s_blocksize - EXT4_DIR_REC_LEN(1) -
265                 EXT4_DIR_REC_LEN(2) - infosize;
266         return entry_space / sizeof(struct dx_entry);
267 }
268
269 static inline unsigned dx_node_limit(struct inode *dir)
270 {
271         unsigned entry_space = dir->i_sb->s_blocksize - EXT4_DIR_REC_LEN(0);
272         return entry_space / sizeof(struct dx_entry);
273 }
274
275 /*
276  * Debug
277  */
278 #ifdef DX_DEBUG
279 static void dx_show_index(char * label, struct dx_entry *entries)
280 {
281         int i, n = dx_get_count (entries);
282         printk(KERN_DEBUG "%s index ", label);
283         for (i = 0; i < n; i++) {
284                 printk("%x->%lu ", i ? dx_get_hash(entries + i) :
285                                 0, (unsigned long)dx_get_block(entries + i));
286         }
287         printk("\n");
288 }
289
290 struct stats
291 {
292         unsigned names;
293         unsigned space;
294         unsigned bcount;
295 };
296
297 static struct stats dx_show_leaf(struct dx_hash_info *hinfo, struct ext4_dir_entry_2 *de,
298                                  int size, int show_names)
299 {
300         unsigned names = 0, space = 0;
301         char *base = (char *) de;
302         struct dx_hash_info h = *hinfo;
303
304         printk("names: ");
305         while ((char *) de < base + size)
306         {
307                 if (de->inode)
308                 {
309                         if (show_names)
310                         {
311                                 int len = de->name_len;
312                                 char *name = de->name;
313                                 while (len--) printk("%c", *name++);
314                                 ext4fs_dirhash(de->name, de->name_len, &h);
315                                 printk(":%x.%u ", h.hash,
316                                        ((char *) de - base));
317                         }
318                         space += EXT4_DIR_REC_LEN(de->name_len);
319                         names++;
320                 }
321                 de = ext4_next_entry(de, size);
322         }
323         printk("(%i)\n", names);
324         return (struct stats) { names, space, 1 };
325 }
326
327 struct stats dx_show_entries(struct dx_hash_info *hinfo, struct inode *dir,
328                              struct dx_entry *entries, int levels)
329 {
330         unsigned blocksize = dir->i_sb->s_blocksize;
331         unsigned count = dx_get_count(entries), names = 0, space = 0, i;
332         unsigned bcount = 0;
333         struct buffer_head *bh;
334         int err;
335         printk("%i indexed blocks...\n", count);
336         for (i = 0; i < count; i++, entries++)
337         {
338                 ext4_lblk_t block = dx_get_block(entries);
339                 ext4_lblk_t hash  = i ? dx_get_hash(entries): 0;
340                 u32 range = i < count - 1? (dx_get_hash(entries + 1) - hash): ~hash;
341                 struct stats stats;
342                 printk("%s%3u:%03u hash %8x/%8x ",levels?"":"   ", i, block, hash, range);
343                 if (!(bh = ext4_bread (NULL,dir, block, 0,&err))) continue;
344                 stats = levels?
345                    dx_show_entries(hinfo, dir, ((struct dx_node *) bh->b_data)->entries, levels - 1):
346                    dx_show_leaf(hinfo, (struct ext4_dir_entry_2 *) bh->b_data, blocksize, 0);
347                 names += stats.names;
348                 space += stats.space;
349                 bcount += stats.bcount;
350                 brelse(bh);
351         }
352         if (bcount)
353                 printk(KERN_DEBUG "%snames %u, fullness %u (%u%%)\n", 
354                        levels ? "" : "   ", names, space/bcount,
355                        (space/bcount)*100/blocksize);
356         return (struct stats) { names, space, bcount};
357 }
358 #endif /* DX_DEBUG */
359
360 /*
361  * Probe for a directory leaf block to search.
362  *
363  * dx_probe can return ERR_BAD_DX_DIR, which means there was a format
364  * error in the directory index, and the caller should fall back to
365  * searching the directory normally.  The callers of dx_probe **MUST**
366  * check for this error code, and make sure it never gets reflected
367  * back to userspace.
368  */
369 static struct dx_frame *
370 dx_probe(const struct qstr *d_name, struct inode *dir,
371          struct dx_hash_info *hinfo, struct dx_frame *frame_in, int *err)
372 {
373         unsigned count, indirect;
374         struct dx_entry *at, *entries, *p, *q, *m;
375         struct dx_root *root;
376         struct buffer_head *bh;
377         struct dx_frame *frame = frame_in;
378         u32 hash;
379
380         frame->bh = NULL;
381         if (!(bh = ext4_bread (NULL,dir, 0, 0, err)))
382                 goto fail;
383         root = (struct dx_root *) bh->b_data;
384         if (root->info.hash_version != DX_HASH_TEA &&
385             root->info.hash_version != DX_HASH_HALF_MD4 &&
386             root->info.hash_version != DX_HASH_LEGACY) {
387                 ext4_warning(dir->i_sb, __func__,
388                              "Unrecognised inode hash code %d",
389                              root->info.hash_version);
390                 brelse(bh);
391                 *err = ERR_BAD_DX_DIR;
392                 goto fail;
393         }
394         hinfo->hash_version = root->info.hash_version;
395         if (hinfo->hash_version <= DX_HASH_TEA)
396                 hinfo->hash_version += EXT4_SB(dir->i_sb)->s_hash_unsigned;
397         hinfo->seed = EXT4_SB(dir->i_sb)->s_hash_seed;
398         if (d_name)
399                 ext4fs_dirhash(d_name->name, d_name->len, hinfo);
400         hash = hinfo->hash;
401
402         if (root->info.unused_flags & 1) {
403                 ext4_warning(dir->i_sb, __func__,
404                              "Unimplemented inode hash flags: %#06x",
405                              root->info.unused_flags);
406                 brelse(bh);
407                 *err = ERR_BAD_DX_DIR;
408                 goto fail;
409         }
410
411         if ((indirect = root->info.indirect_levels) > 1) {
412                 ext4_warning(dir->i_sb, __func__,
413                              "Unimplemented inode hash depth: %#06x",
414                              root->info.indirect_levels);
415                 brelse(bh);
416                 *err = ERR_BAD_DX_DIR;
417                 goto fail;
418         }
419
420         entries = (struct dx_entry *) (((char *)&root->info) +
421                                        root->info.info_length);
422
423         if (dx_get_limit(entries) != dx_root_limit(dir,
424                                                    root->info.info_length)) {
425                 ext4_warning(dir->i_sb, __func__,
426                              "dx entry: limit != root limit");
427                 brelse(bh);
428                 *err = ERR_BAD_DX_DIR;
429                 goto fail;
430         }
431
432         dxtrace(printk("Look up %x", hash));
433         while (1)
434         {
435                 count = dx_get_count(entries);
436                 if (!count || count > dx_get_limit(entries)) {
437                         ext4_warning(dir->i_sb, __func__,
438                                      "dx entry: no count or count > limit");
439                         brelse(bh);
440                         *err = ERR_BAD_DX_DIR;
441                         goto fail2;
442                 }
443
444                 p = entries + 1;
445                 q = entries + count - 1;
446                 while (p <= q)
447                 {
448                         m = p + (q - p)/2;
449                         dxtrace(printk("."));
450                         if (dx_get_hash(m) > hash)
451                                 q = m - 1;
452                         else
453                                 p = m + 1;
454                 }
455
456                 if (0) // linear search cross check
457                 {
458                         unsigned n = count - 1;
459                         at = entries;
460                         while (n--)
461                         {
462                                 dxtrace(printk(","));
463                                 if (dx_get_hash(++at) > hash)
464                                 {
465                                         at--;
466                                         break;
467                                 }
468                         }
469                         assert (at == p - 1);
470                 }
471
472                 at = p - 1;
473                 dxtrace(printk(" %x->%u\n", at == entries? 0: dx_get_hash(at), dx_get_block(at)));
474                 frame->bh = bh;
475                 frame->entries = entries;
476                 frame->at = at;
477                 if (!indirect--) return frame;
478                 if (!(bh = ext4_bread (NULL,dir, dx_get_block(at), 0, err)))
479                         goto fail2;
480                 at = entries = ((struct dx_node *) bh->b_data)->entries;
481                 if (dx_get_limit(entries) != dx_node_limit (dir)) {
482                         ext4_warning(dir->i_sb, __func__,
483                                      "dx entry: limit != node limit");
484                         brelse(bh);
485                         *err = ERR_BAD_DX_DIR;
486                         goto fail2;
487                 }
488                 frame++;
489                 frame->bh = NULL;
490         }
491 fail2:
492         while (frame >= frame_in) {
493                 brelse(frame->bh);
494                 frame--;
495         }
496 fail:
497         if (*err == ERR_BAD_DX_DIR)
498                 ext4_warning(dir->i_sb, __func__,
499                              "Corrupt dir inode %ld, running e2fsck is "
500                              "recommended.", dir->i_ino);
501         return NULL;
502 }
503
504 static void dx_release (struct dx_frame *frames)
505 {
506         if (frames[0].bh == NULL)
507                 return;
508
509         if (((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels)
510                 brelse(frames[1].bh);
511         brelse(frames[0].bh);
512 }
513
514 /*
515  * This function increments the frame pointer to search the next leaf
516  * block, and reads in the necessary intervening nodes if the search
517  * should be necessary.  Whether or not the search is necessary is
518  * controlled by the hash parameter.  If the hash value is even, then
519  * the search is only continued if the next block starts with that
520  * hash value.  This is used if we are searching for a specific file.
521  *
522  * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
523  *
524  * This function returns 1 if the caller should continue to search,
525  * or 0 if it should not.  If there is an error reading one of the
526  * index blocks, it will a negative error code.
527  *
528  * If start_hash is non-null, it will be filled in with the starting
529  * hash of the next page.
530  */
531 static int ext4_htree_next_block(struct inode *dir, __u32 hash,
532                                  struct dx_frame *frame,
533                                  struct dx_frame *frames,
534                                  __u32 *start_hash)
535 {
536         struct dx_frame *p;
537         struct buffer_head *bh;
538         int err, num_frames = 0;
539         __u32 bhash;
540
541         p = frame;
542         /*
543          * Find the next leaf page by incrementing the frame pointer.
544          * If we run out of entries in the interior node, loop around and
545          * increment pointer in the parent node.  When we break out of
546          * this loop, num_frames indicates the number of interior
547          * nodes need to be read.
548          */
549         while (1) {
550                 if (++(p->at) < p->entries + dx_get_count(p->entries))
551                         break;
552                 if (p == frames)
553                         return 0;
554                 num_frames++;
555                 p--;
556         }
557
558         /*
559          * If the hash is 1, then continue only if the next page has a
560          * continuation hash of any value.  This is used for readdir
561          * handling.  Otherwise, check to see if the hash matches the
562          * desired contiuation hash.  If it doesn't, return since
563          * there's no point to read in the successive index pages.
564          */
565         bhash = dx_get_hash(p->at);
566         if (start_hash)
567                 *start_hash = bhash;
568         if ((hash & 1) == 0) {
569                 if ((bhash & ~1) != hash)
570                         return 0;
571         }
572         /*
573          * If the hash is HASH_NB_ALWAYS, we always go to the next
574          * block so no check is necessary
575          */
576         while (num_frames--) {
577                 if (!(bh = ext4_bread(NULL, dir, dx_get_block(p->at),
578                                       0, &err)))
579                         return err; /* Failure */
580                 p++;
581                 brelse(p->bh);
582                 p->bh = bh;
583                 p->at = p->entries = ((struct dx_node *) bh->b_data)->entries;
584         }
585         return 1;
586 }
587
588
589 /*
590  * This function fills a red-black tree with information from a
591  * directory block.  It returns the number directory entries loaded
592  * into the tree.  If there is an error it is returned in err.
593  */
594 static int htree_dirblock_to_tree(struct file *dir_file,
595                                   struct inode *dir, ext4_lblk_t block,
596                                   struct dx_hash_info *hinfo,
597                                   __u32 start_hash, __u32 start_minor_hash)
598 {
599         struct buffer_head *bh;
600         struct ext4_dir_entry_2 *de, *top;
601         int err, count = 0;
602
603         dxtrace(printk(KERN_INFO "In htree dirblock_to_tree: block %lu\n",
604                                                         (unsigned long)block));
605         if (!(bh = ext4_bread (NULL, dir, block, 0, &err)))
606                 return err;
607
608         de = (struct ext4_dir_entry_2 *) bh->b_data;
609         top = (struct ext4_dir_entry_2 *) ((char *) de +
610                                            dir->i_sb->s_blocksize -
611                                            EXT4_DIR_REC_LEN(0));
612         for (; de < top; de = ext4_next_entry(de, dir->i_sb->s_blocksize)) {
613                 if (!ext4_check_dir_entry("htree_dirblock_to_tree", dir, de, bh,
614                                         (block<<EXT4_BLOCK_SIZE_BITS(dir->i_sb))
615                                                 +((char *)de - bh->b_data))) {
616                         /* On error, skip the f_pos to the next block. */
617                         dir_file->f_pos = (dir_file->f_pos |
618                                         (dir->i_sb->s_blocksize - 1)) + 1;
619                         brelse(bh);
620                         return count;
621                 }
622                 ext4fs_dirhash(de->name, de->name_len, hinfo);
623                 if ((hinfo->hash < start_hash) ||
624                     ((hinfo->hash == start_hash) &&
625                      (hinfo->minor_hash < start_minor_hash)))
626                         continue;
627                 if (de->inode == 0)
628                         continue;
629                 if ((err = ext4_htree_store_dirent(dir_file,
630                                    hinfo->hash, hinfo->minor_hash, de)) != 0) {
631                         brelse(bh);
632                         return err;
633                 }
634                 count++;
635         }
636         brelse(bh);
637         return count;
638 }
639
640
641 /*
642  * This function fills a red-black tree with information from a
643  * directory.  We start scanning the directory in hash order, starting
644  * at start_hash and start_minor_hash.
645  *
646  * This function returns the number of entries inserted into the tree,
647  * or a negative error code.
648  */
649 int ext4_htree_fill_tree(struct file *dir_file, __u32 start_hash,
650                          __u32 start_minor_hash, __u32 *next_hash)
651 {
652         struct dx_hash_info hinfo;
653         struct ext4_dir_entry_2 *de;
654         struct dx_frame frames[2], *frame;
655         struct inode *dir;
656         ext4_lblk_t block;
657         int count = 0;
658         int ret, err;
659         __u32 hashval;
660
661         dxtrace(printk(KERN_DEBUG "In htree_fill_tree, start hash: %x:%x\n", 
662                        start_hash, start_minor_hash));
663         dir = dir_file->f_path.dentry->d_inode;
664         if (!(EXT4_I(dir)->i_flags & EXT4_INDEX_FL)) {
665                 hinfo.hash_version = EXT4_SB(dir->i_sb)->s_def_hash_version;
666                 if (hinfo.hash_version <= DX_HASH_TEA)
667                         hinfo.hash_version +=
668                                 EXT4_SB(dir->i_sb)->s_hash_unsigned;
669                 hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed;
670                 count = htree_dirblock_to_tree(dir_file, dir, 0, &hinfo,
671                                                start_hash, start_minor_hash);
672                 *next_hash = ~0;
673                 return count;
674         }
675         hinfo.hash = start_hash;
676         hinfo.minor_hash = 0;
677         frame = dx_probe(NULL, dir, &hinfo, frames, &err);
678         if (!frame)
679                 return err;
680
681         /* Add '.' and '..' from the htree header */
682         if (!start_hash && !start_minor_hash) {
683                 de = (struct ext4_dir_entry_2 *) frames[0].bh->b_data;
684                 if ((err = ext4_htree_store_dirent(dir_file, 0, 0, de)) != 0)
685                         goto errout;
686                 count++;
687         }
688         if (start_hash < 2 || (start_hash ==2 && start_minor_hash==0)) {
689                 de = (struct ext4_dir_entry_2 *) frames[0].bh->b_data;
690                 de = ext4_next_entry(de, dir->i_sb->s_blocksize);
691                 if ((err = ext4_htree_store_dirent(dir_file, 2, 0, de)) != 0)
692                         goto errout;
693                 count++;
694         }
695
696         while (1) {
697                 block = dx_get_block(frame->at);
698                 ret = htree_dirblock_to_tree(dir_file, dir, block, &hinfo,
699                                              start_hash, start_minor_hash);
700                 if (ret < 0) {
701                         err = ret;
702                         goto errout;
703                 }
704                 count += ret;
705                 hashval = ~0;
706                 ret = ext4_htree_next_block(dir, HASH_NB_ALWAYS,
707                                             frame, frames, &hashval);
708                 *next_hash = hashval;
709                 if (ret < 0) {
710                         err = ret;
711                         goto errout;
712                 }
713                 /*
714                  * Stop if:  (a) there are no more entries, or
715                  * (b) we have inserted at least one entry and the
716                  * next hash value is not a continuation
717                  */
718                 if ((ret == 0) ||
719                     (count && ((hashval & 1) == 0)))
720                         break;
721         }
722         dx_release(frames);
723         dxtrace(printk(KERN_DEBUG "Fill tree: returned %d entries, "
724                        "next hash: %x\n", count, *next_hash));
725         return count;
726 errout:
727         dx_release(frames);
728         return (err);
729 }
730
731
732 /*
733  * Directory block splitting, compacting
734  */
735
736 /*
737  * Create map of hash values, offsets, and sizes, stored at end of block.
738  * Returns number of entries mapped.
739  */
740 static int dx_make_map(struct ext4_dir_entry_2 *de, unsigned blocksize,
741                        struct dx_hash_info *hinfo,
742                        struct dx_map_entry *map_tail)
743 {
744         int count = 0;
745         char *base = (char *) de;
746         struct dx_hash_info h = *hinfo;
747
748         while ((char *) de < base + blocksize) {
749                 if (de->name_len && de->inode) {
750                         ext4fs_dirhash(de->name, de->name_len, &h);
751                         map_tail--;
752                         map_tail->hash = h.hash;
753                         map_tail->offs = (u16) ((char *) de - base);
754                         map_tail->size = le16_to_cpu(de->rec_len);
755                         count++;
756                         cond_resched();
757                 }
758                 /* XXX: do we need to check rec_len == 0 case? -Chris */
759                 de = ext4_next_entry(de, blocksize);
760         }
761         return count;
762 }
763
764 /* Sort map by hash value */
765 static void dx_sort_map (struct dx_map_entry *map, unsigned count)
766 {
767         struct dx_map_entry *p, *q, *top = map + count - 1;
768         int more;
769         /* Combsort until bubble sort doesn't suck */
770         while (count > 2) {
771                 count = count*10/13;
772                 if (count - 9 < 2) /* 9, 10 -> 11 */
773                         count = 11;
774                 for (p = top, q = p - count; q >= map; p--, q--)
775                         if (p->hash < q->hash)
776                                 swap(*p, *q);
777         }
778         /* Garden variety bubble sort */
779         do {
780                 more = 0;
781                 q = top;
782                 while (q-- > map) {
783                         if (q[1].hash >= q[0].hash)
784                                 continue;
785                         swap(*(q+1), *q);
786                         more = 1;
787                 }
788         } while(more);
789 }
790
791 static void dx_insert_block(struct dx_frame *frame, u32 hash, ext4_lblk_t block)
792 {
793         struct dx_entry *entries = frame->entries;
794         struct dx_entry *old = frame->at, *new = old + 1;
795         int count = dx_get_count(entries);
796
797         assert(count < dx_get_limit(entries));
798         assert(old < entries + count);
799         memmove(new + 1, new, (char *)(entries + count) - (char *)(new));
800         dx_set_hash(new, hash);
801         dx_set_block(new, block);
802         dx_set_count(entries, count + 1);
803 }
804
805 static void ext4_update_dx_flag(struct inode *inode)
806 {
807         if (!EXT4_HAS_COMPAT_FEATURE(inode->i_sb,
808                                      EXT4_FEATURE_COMPAT_DIR_INDEX))
809                 EXT4_I(inode)->i_flags &= ~EXT4_INDEX_FL;
810 }
811
812 /*
813  * NOTE! unlike strncmp, ext4_match returns 1 for success, 0 for failure.
814  *
815  * `len <= EXT4_NAME_LEN' is guaranteed by caller.
816  * `de != NULL' is guaranteed by caller.
817  */
818 static inline int ext4_match (int len, const char * const name,
819                               struct ext4_dir_entry_2 * de)
820 {
821         if (len != de->name_len)
822                 return 0;
823         if (!de->inode)
824                 return 0;
825         return !memcmp(name, de->name, len);
826 }
827
828 /*
829  * Returns 0 if not found, -1 on failure, and 1 on success
830  */
831 static inline int search_dirblock(struct buffer_head *bh,
832                                   struct inode *dir,
833                                   const struct qstr *d_name,
834                                   unsigned int offset,
835                                   struct ext4_dir_entry_2 ** res_dir)
836 {
837         struct ext4_dir_entry_2 * de;
838         char * dlimit;
839         int de_len;
840         const char *name = d_name->name;
841         int namelen = d_name->len;
842
843         de = (struct ext4_dir_entry_2 *) bh->b_data;
844         dlimit = bh->b_data + dir->i_sb->s_blocksize;
845         while ((char *) de < dlimit) {
846                 /* this code is executed quadratically often */
847                 /* do minimal checking `by hand' */
848
849                 if ((char *) de + namelen <= dlimit &&
850                     ext4_match (namelen, name, de)) {
851                         /* found a match - just to be sure, do a full check */
852                         if (!ext4_check_dir_entry("ext4_find_entry",
853                                                   dir, de, bh, offset))
854                                 return -1;
855                         *res_dir = de;
856                         return 1;
857                 }
858                 /* prevent looping on a bad block */
859                 de_len = ext4_rec_len_from_disk(de->rec_len,
860                                                 dir->i_sb->s_blocksize);
861                 if (de_len <= 0)
862                         return -1;
863                 offset += de_len;
864                 de = (struct ext4_dir_entry_2 *) ((char *) de + de_len);
865         }
866         return 0;
867 }
868
869
870 /*
871  *      ext4_find_entry()
872  *
873  * finds an entry in the specified directory with the wanted name. It
874  * returns the cache buffer in which the entry was found, and the entry
875  * itself (as a parameter - res_dir). It does NOT read the inode of the
876  * entry - you'll have to do that yourself if you want to.
877  *
878  * The returned buffer_head has ->b_count elevated.  The caller is expected
879  * to brelse() it when appropriate.
880  */
881 static struct buffer_head * ext4_find_entry (struct inode *dir,
882                                         const struct qstr *d_name,
883                                         struct ext4_dir_entry_2 ** res_dir)
884 {
885         struct super_block *sb;
886         struct buffer_head *bh_use[NAMEI_RA_SIZE];
887         struct buffer_head *bh, *ret = NULL;
888         ext4_lblk_t start, block, b;
889         int ra_max = 0;         /* Number of bh's in the readahead
890                                    buffer, bh_use[] */
891         int ra_ptr = 0;         /* Current index into readahead
892                                    buffer */
893         int num = 0;
894         ext4_lblk_t  nblocks;
895         int i, err;
896         int namelen;
897
898         *res_dir = NULL;
899         sb = dir->i_sb;
900         namelen = d_name->len;
901         if (namelen > EXT4_NAME_LEN)
902                 return NULL;
903         if (is_dx(dir)) {
904                 bh = ext4_dx_find_entry(dir, d_name, res_dir, &err);
905                 /*
906                  * On success, or if the error was file not found,
907                  * return.  Otherwise, fall back to doing a search the
908                  * old fashioned way.
909                  */
910                 if (bh || (err != ERR_BAD_DX_DIR))
911                         return bh;
912                 dxtrace(printk(KERN_DEBUG "ext4_find_entry: dx failed, "
913                                "falling back\n"));
914         }
915         nblocks = dir->i_size >> EXT4_BLOCK_SIZE_BITS(sb);
916         start = EXT4_I(dir)->i_dir_start_lookup;
917         if (start >= nblocks)
918                 start = 0;
919         block = start;
920 restart:
921         do {
922                 /*
923                  * We deal with the read-ahead logic here.
924                  */
925                 if (ra_ptr >= ra_max) {
926                         /* Refill the readahead buffer */
927                         ra_ptr = 0;
928                         b = block;
929                         for (ra_max = 0; ra_max < NAMEI_RA_SIZE; ra_max++) {
930                                 /*
931                                  * Terminate if we reach the end of the
932                                  * directory and must wrap, or if our
933                                  * search has finished at this block.
934                                  */
935                                 if (b >= nblocks || (num && block == start)) {
936                                         bh_use[ra_max] = NULL;
937                                         break;
938                                 }
939                                 num++;
940                                 bh = ext4_getblk(NULL, dir, b++, 0, &err);
941                                 bh_use[ra_max] = bh;
942                                 if (bh)
943                                         ll_rw_block(READ_META, 1, &bh);
944                         }
945                 }
946                 if ((bh = bh_use[ra_ptr++]) == NULL)
947                         goto next;
948                 wait_on_buffer(bh);
949                 if (!buffer_uptodate(bh)) {
950                         /* read error, skip block & hope for the best */
951                         ext4_error(sb, __func__, "reading directory #%lu "
952                                    "offset %lu", dir->i_ino,
953                                    (unsigned long)block);
954                         brelse(bh);
955                         goto next;
956                 }
957                 i = search_dirblock(bh, dir, d_name,
958                             block << EXT4_BLOCK_SIZE_BITS(sb), res_dir);
959                 if (i == 1) {
960                         EXT4_I(dir)->i_dir_start_lookup = block;
961                         ret = bh;
962                         goto cleanup_and_exit;
963                 } else {
964                         brelse(bh);
965                         if (i < 0)
966                                 goto cleanup_and_exit;
967                 }
968         next:
969                 if (++block >= nblocks)
970                         block = 0;
971         } while (block != start);
972
973         /*
974          * If the directory has grown while we were searching, then
975          * search the last part of the directory before giving up.
976          */
977         block = nblocks;
978         nblocks = dir->i_size >> EXT4_BLOCK_SIZE_BITS(sb);
979         if (block < nblocks) {
980                 start = 0;
981                 goto restart;
982         }
983
984 cleanup_and_exit:
985         /* Clean up the read-ahead blocks */
986         for (; ra_ptr < ra_max; ra_ptr++)
987                 brelse(bh_use[ra_ptr]);
988         return ret;
989 }
990
991 static struct buffer_head * ext4_dx_find_entry(struct inode *dir, const struct qstr *d_name,
992                        struct ext4_dir_entry_2 **res_dir, int *err)
993 {
994         struct super_block * sb;
995         struct dx_hash_info     hinfo;
996         u32 hash;
997         struct dx_frame frames[2], *frame;
998         struct ext4_dir_entry_2 *de, *top;
999         struct buffer_head *bh;
1000         ext4_lblk_t block;
1001         int retval;
1002         int namelen = d_name->len;
1003         const u8 *name = d_name->name;
1004
1005         sb = dir->i_sb;
1006         /* NFS may look up ".." - look at dx_root directory block */
1007         if (namelen > 2 || name[0] != '.'||(name[1] != '.' && name[1] != '\0')){
1008                 if (!(frame = dx_probe(d_name, dir, &hinfo, frames, err)))
1009                         return NULL;
1010         } else {
1011                 frame = frames;
1012                 frame->bh = NULL;                       /* for dx_release() */
1013                 frame->at = (struct dx_entry *)frames;  /* hack for zero entry*/
1014                 dx_set_block(frame->at, 0);             /* dx_root block is 0 */
1015         }
1016         hash = hinfo.hash;
1017         do {
1018                 block = dx_get_block(frame->at);
1019                 if (!(bh = ext4_bread (NULL,dir, block, 0, err)))
1020                         goto errout;
1021                 de = (struct ext4_dir_entry_2 *) bh->b_data;
1022                 top = (struct ext4_dir_entry_2 *) ((char *) de + sb->s_blocksize -
1023                                        EXT4_DIR_REC_LEN(0));
1024                 for (; de < top; de = ext4_next_entry(de, sb->s_blocksize)) {
1025                         int off = (block << EXT4_BLOCK_SIZE_BITS(sb))
1026                                   + ((char *) de - bh->b_data);
1027
1028                         if (!ext4_check_dir_entry(__func__, dir, de, bh, off)) {
1029                                 brelse(bh);
1030                                 *err = ERR_BAD_DX_DIR;
1031                                 goto errout;
1032                         }
1033
1034                         if (ext4_match(namelen, name, de)) {
1035                                 *res_dir = de;
1036                                 dx_release(frames);
1037                                 return bh;
1038                         }
1039                 }
1040                 brelse(bh);
1041                 /* Check to see if we should continue to search */
1042                 retval = ext4_htree_next_block(dir, hash, frame,
1043                                                frames, NULL);
1044                 if (retval < 0) {
1045                         ext4_warning(sb, __func__,
1046                              "error reading index page in directory #%lu",
1047                              dir->i_ino);
1048                         *err = retval;
1049                         goto errout;
1050                 }
1051         } while (retval == 1);
1052
1053         *err = -ENOENT;
1054 errout:
1055         dxtrace(printk(KERN_DEBUG "%s not found\n", name));
1056         dx_release (frames);
1057         return NULL;
1058 }
1059
1060 static struct dentry *ext4_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1061 {
1062         struct inode *inode;
1063         struct ext4_dir_entry_2 *de;
1064         struct buffer_head *bh;
1065
1066         if (dentry->d_name.len > EXT4_NAME_LEN)
1067                 return ERR_PTR(-ENAMETOOLONG);
1068
1069         bh = ext4_find_entry(dir, &dentry->d_name, &de);
1070         inode = NULL;
1071         if (bh) {
1072                 __u32 ino = le32_to_cpu(de->inode);
1073                 brelse(bh);
1074                 if (!ext4_valid_inum(dir->i_sb, ino)) {
1075                         ext4_error(dir->i_sb, "ext4_lookup",
1076                                    "bad inode number: %u", ino);
1077                         return ERR_PTR(-EIO);
1078                 }
1079                 inode = ext4_iget(dir->i_sb, ino);
1080                 if (IS_ERR(inode))
1081                         return ERR_CAST(inode);
1082         }
1083         return d_splice_alias(inode, dentry);
1084 }
1085
1086
1087 struct dentry *ext4_get_parent(struct dentry *child)
1088 {
1089         __u32 ino;
1090         struct inode *inode;
1091         static const struct qstr dotdot = {
1092                 .name = "..",
1093                 .len = 2,
1094         };
1095         struct ext4_dir_entry_2 * de;
1096         struct buffer_head *bh;
1097
1098         bh = ext4_find_entry(child->d_inode, &dotdot, &de);
1099         inode = NULL;
1100         if (!bh)
1101                 return ERR_PTR(-ENOENT);
1102         ino = le32_to_cpu(de->inode);
1103         brelse(bh);
1104
1105         if (!ext4_valid_inum(child->d_inode->i_sb, ino)) {
1106                 ext4_error(child->d_inode->i_sb, "ext4_get_parent",
1107                            "bad inode number: %u", ino);
1108                 return ERR_PTR(-EIO);
1109         }
1110
1111         return d_obtain_alias(ext4_iget(child->d_inode->i_sb, ino));
1112 }
1113
1114 #define S_SHIFT 12
1115 static unsigned char ext4_type_by_mode[S_IFMT >> S_SHIFT] = {
1116         [S_IFREG >> S_SHIFT]    = EXT4_FT_REG_FILE,
1117         [S_IFDIR >> S_SHIFT]    = EXT4_FT_DIR,
1118         [S_IFCHR >> S_SHIFT]    = EXT4_FT_CHRDEV,
1119         [S_IFBLK >> S_SHIFT]    = EXT4_FT_BLKDEV,
1120         [S_IFIFO >> S_SHIFT]    = EXT4_FT_FIFO,
1121         [S_IFSOCK >> S_SHIFT]   = EXT4_FT_SOCK,
1122         [S_IFLNK >> S_SHIFT]    = EXT4_FT_SYMLINK,
1123 };
1124
1125 static inline void ext4_set_de_type(struct super_block *sb,
1126                                 struct ext4_dir_entry_2 *de,
1127                                 umode_t mode) {
1128         if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FILETYPE))
1129                 de->file_type = ext4_type_by_mode[(mode & S_IFMT)>>S_SHIFT];
1130 }
1131
1132 /*
1133  * Move count entries from end of map between two memory locations.
1134  * Returns pointer to last entry moved.
1135  */
1136 static struct ext4_dir_entry_2 *
1137 dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count,
1138                 unsigned blocksize)
1139 {
1140         unsigned rec_len = 0;
1141
1142         while (count--) {
1143                 struct ext4_dir_entry_2 *de = (struct ext4_dir_entry_2 *) (from + map->offs);
1144                 rec_len = EXT4_DIR_REC_LEN(de->name_len);
1145                 memcpy (to, de, rec_len);
1146                 ((struct ext4_dir_entry_2 *) to)->rec_len =
1147                                 ext4_rec_len_to_disk(rec_len, blocksize);
1148                 de->inode = 0;
1149                 map++;
1150                 to += rec_len;
1151         }
1152         return (struct ext4_dir_entry_2 *) (to - rec_len);
1153 }
1154
1155 /*
1156  * Compact each dir entry in the range to the minimal rec_len.
1157  * Returns pointer to last entry in range.
1158  */
1159 static struct ext4_dir_entry_2* dx_pack_dirents(char *base, unsigned blocksize)
1160 {
1161         struct ext4_dir_entry_2 *next, *to, *prev, *de = (struct ext4_dir_entry_2 *) base;
1162         unsigned rec_len = 0;
1163
1164         prev = to = de;
1165         while ((char*)de < base + blocksize) {
1166                 next = ext4_next_entry(de, blocksize);
1167                 if (de->inode && de->name_len) {
1168                         rec_len = EXT4_DIR_REC_LEN(de->name_len);
1169                         if (de > to)
1170                                 memmove(to, de, rec_len);
1171                         to->rec_len = ext4_rec_len_to_disk(rec_len, blocksize);
1172                         prev = to;
1173                         to = (struct ext4_dir_entry_2 *) (((char *) to) + rec_len);
1174                 }
1175                 de = next;
1176         }
1177         return prev;
1178 }
1179
1180 /*
1181  * Split a full leaf block to make room for a new dir entry.
1182  * Allocate a new block, and move entries so that they are approx. equally full.
1183  * Returns pointer to de in block into which the new entry will be inserted.
1184  */
1185 static struct ext4_dir_entry_2 *do_split(handle_t *handle, struct inode *dir,
1186                         struct buffer_head **bh,struct dx_frame *frame,
1187                         struct dx_hash_info *hinfo, int *error)
1188 {
1189         unsigned blocksize = dir->i_sb->s_blocksize;
1190         unsigned count, continued;
1191         struct buffer_head *bh2;
1192         ext4_lblk_t newblock;
1193         u32 hash2;
1194         struct dx_map_entry *map;
1195         char *data1 = (*bh)->b_data, *data2;
1196         unsigned split, move, size;
1197         struct ext4_dir_entry_2 *de = NULL, *de2;
1198         int     err = 0, i;
1199
1200         bh2 = ext4_append (handle, dir, &newblock, &err);
1201         if (!(bh2)) {
1202                 brelse(*bh);
1203                 *bh = NULL;
1204                 goto errout;
1205         }
1206
1207         BUFFER_TRACE(*bh, "get_write_access");
1208         err = ext4_journal_get_write_access(handle, *bh);
1209         if (err)
1210                 goto journal_error;
1211
1212         BUFFER_TRACE(frame->bh, "get_write_access");
1213         err = ext4_journal_get_write_access(handle, frame->bh);
1214         if (err)
1215                 goto journal_error;
1216
1217         data2 = bh2->b_data;
1218
1219         /* create map in the end of data2 block */
1220         map = (struct dx_map_entry *) (data2 + blocksize);
1221         count = dx_make_map((struct ext4_dir_entry_2 *) data1,
1222                              blocksize, hinfo, map);
1223         map -= count;
1224         dx_sort_map(map, count);
1225         /* Split the existing block in the middle, size-wise */
1226         size = 0;
1227         move = 0;
1228         for (i = count-1; i >= 0; i--) {
1229                 /* is more than half of this entry in 2nd half of the block? */
1230                 if (size + map[i].size/2 > blocksize/2)
1231                         break;
1232                 size += map[i].size;
1233                 move++;
1234         }
1235         /* map index at which we will split */
1236         split = count - move;
1237         hash2 = map[split].hash;
1238         continued = hash2 == map[split - 1].hash;
1239         dxtrace(printk(KERN_INFO "Split block %lu at %x, %i/%i\n",
1240                         (unsigned long)dx_get_block(frame->at),
1241                                         hash2, split, count-split));
1242
1243         /* Fancy dance to stay within two buffers */
1244         de2 = dx_move_dirents(data1, data2, map + split, count - split, blocksize);
1245         de = dx_pack_dirents(data1, blocksize);
1246         de->rec_len = ext4_rec_len_to_disk(data1 + blocksize - (char *) de,
1247                                            blocksize);
1248         de2->rec_len = ext4_rec_len_to_disk(data2 + blocksize - (char *) de2,
1249                                             blocksize);
1250         dxtrace(dx_show_leaf (hinfo, (struct ext4_dir_entry_2 *) data1, blocksize, 1));
1251         dxtrace(dx_show_leaf (hinfo, (struct ext4_dir_entry_2 *) data2, blocksize, 1));
1252
1253         /* Which block gets the new entry? */
1254         if (hinfo->hash >= hash2)
1255         {
1256                 swap(*bh, bh2);
1257                 de = de2;
1258         }
1259         dx_insert_block(frame, hash2 + continued, newblock);
1260         err = ext4_handle_dirty_metadata(handle, dir, bh2);
1261         if (err)
1262                 goto journal_error;
1263         err = ext4_handle_dirty_metadata(handle, dir, frame->bh);
1264         if (err)
1265                 goto journal_error;
1266         brelse(bh2);
1267         dxtrace(dx_show_index("frame", frame->entries));
1268         return de;
1269
1270 journal_error:
1271         brelse(*bh);
1272         brelse(bh2);
1273         *bh = NULL;
1274         ext4_std_error(dir->i_sb, err);
1275 errout:
1276         *error = err;
1277         return NULL;
1278 }
1279
1280 /*
1281  * Add a new entry into a directory (leaf) block.  If de is non-NULL,
1282  * it points to a directory entry which is guaranteed to be large
1283  * enough for new directory entry.  If de is NULL, then
1284  * add_dirent_to_buf will attempt search the directory block for
1285  * space.  It will return -ENOSPC if no space is available, and -EIO
1286  * and -EEXIST if directory entry already exists.
1287  *
1288  * NOTE!  bh is NOT released in the case where ENOSPC is returned.  In
1289  * all other cases bh is released.
1290  */
1291 static int add_dirent_to_buf(handle_t *handle, struct dentry *dentry,
1292                              struct inode *inode, struct ext4_dir_entry_2 *de,
1293                              struct buffer_head *bh)
1294 {
1295         struct inode    *dir = dentry->d_parent->d_inode;
1296         const char      *name = dentry->d_name.name;
1297         int             namelen = dentry->d_name.len;
1298         unsigned int    offset = 0;
1299         unsigned int    blocksize = dir->i_sb->s_blocksize;
1300         unsigned short  reclen;
1301         int             nlen, rlen, err;
1302         char            *top;
1303
1304         reclen = EXT4_DIR_REC_LEN(namelen);
1305         if (!de) {
1306                 de = (struct ext4_dir_entry_2 *)bh->b_data;
1307                 top = bh->b_data + blocksize - reclen;
1308                 while ((char *) de <= top) {
1309                         if (!ext4_check_dir_entry("ext4_add_entry", dir, de,
1310                                                   bh, offset)) {
1311                                 brelse(bh);
1312                                 return -EIO;
1313                         }
1314                         if (ext4_match(namelen, name, de)) {
1315                                 brelse(bh);
1316                                 return -EEXIST;
1317                         }
1318                         nlen = EXT4_DIR_REC_LEN(de->name_len);
1319                         rlen = ext4_rec_len_from_disk(de->rec_len, blocksize);
1320                         if ((de->inode? rlen - nlen: rlen) >= reclen)
1321                                 break;
1322                         de = (struct ext4_dir_entry_2 *)((char *)de + rlen);
1323                         offset += rlen;
1324                 }
1325                 if ((char *) de > top)
1326                         return -ENOSPC;
1327         }
1328         BUFFER_TRACE(bh, "get_write_access");
1329         err = ext4_journal_get_write_access(handle, bh);
1330         if (err) {
1331                 ext4_std_error(dir->i_sb, err);
1332                 brelse(bh);
1333                 return err;
1334         }
1335
1336         /* By now the buffer is marked for journaling */
1337         nlen = EXT4_DIR_REC_LEN(de->name_len);
1338         rlen = ext4_rec_len_from_disk(de->rec_len, blocksize);
1339         if (de->inode) {
1340                 struct ext4_dir_entry_2 *de1 = (struct ext4_dir_entry_2 *)((char *)de + nlen);
1341                 de1->rec_len = ext4_rec_len_to_disk(rlen - nlen, blocksize);
1342                 de->rec_len = ext4_rec_len_to_disk(nlen, blocksize);
1343                 de = de1;
1344         }
1345         de->file_type = EXT4_FT_UNKNOWN;
1346         if (inode) {
1347                 de->inode = cpu_to_le32(inode->i_ino);
1348                 ext4_set_de_type(dir->i_sb, de, inode->i_mode);
1349         } else
1350                 de->inode = 0;
1351         de->name_len = namelen;
1352         memcpy(de->name, name, namelen);
1353         /*
1354          * XXX shouldn't update any times until successful
1355          * completion of syscall, but too many callers depend
1356          * on this.
1357          *
1358          * XXX similarly, too many callers depend on
1359          * ext4_new_inode() setting the times, but error
1360          * recovery deletes the inode, so the worst that can
1361          * happen is that the times are slightly out of date
1362          * and/or different from the directory change time.
1363          */
1364         dir->i_mtime = dir->i_ctime = ext4_current_time(dir);
1365         ext4_update_dx_flag(dir);
1366         dir->i_version++;
1367         ext4_mark_inode_dirty(handle, dir);
1368         BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
1369         err = ext4_handle_dirty_metadata(handle, dir, bh);
1370         if (err)
1371                 ext4_std_error(dir->i_sb, err);
1372         brelse(bh);
1373         return 0;
1374 }
1375
1376 /*
1377  * This converts a one block unindexed directory to a 3 block indexed
1378  * directory, and adds the dentry to the indexed directory.
1379  */
1380 static int make_indexed_dir(handle_t *handle, struct dentry *dentry,
1381                             struct inode *inode, struct buffer_head *bh)
1382 {
1383         struct inode    *dir = dentry->d_parent->d_inode;
1384         const char      *name = dentry->d_name.name;
1385         int             namelen = dentry->d_name.len;
1386         struct buffer_head *bh2;
1387         struct dx_root  *root;
1388         struct dx_frame frames[2], *frame;
1389         struct dx_entry *entries;
1390         struct ext4_dir_entry_2 *de, *de2;
1391         char            *data1, *top;
1392         unsigned        len;
1393         int             retval;
1394         unsigned        blocksize;
1395         struct dx_hash_info hinfo;
1396         ext4_lblk_t  block;
1397         struct fake_dirent *fde;
1398
1399         blocksize =  dir->i_sb->s_blocksize;
1400         dxtrace(printk(KERN_DEBUG "Creating index: inode %lu\n", dir->i_ino));
1401         retval = ext4_journal_get_write_access(handle, bh);
1402         if (retval) {
1403                 ext4_std_error(dir->i_sb, retval);
1404                 brelse(bh);
1405                 return retval;
1406         }
1407         root = (struct dx_root *) bh->b_data;
1408
1409         /* The 0th block becomes the root, move the dirents out */
1410         fde = &root->dotdot;
1411         de = (struct ext4_dir_entry_2 *)((char *)fde +
1412                 ext4_rec_len_from_disk(fde->rec_len, blocksize));
1413         if ((char *) de >= (((char *) root) + blocksize)) {
1414                 ext4_error(dir->i_sb, __func__,
1415                            "invalid rec_len for '..' in inode %lu",
1416                            dir->i_ino);
1417                 brelse(bh);
1418                 return -EIO;
1419         }
1420         len = ((char *) root) + blocksize - (char *) de;
1421
1422         /* Allocate new block for the 0th block's dirents */
1423         bh2 = ext4_append(handle, dir, &block, &retval);
1424         if (!(bh2)) {
1425                 brelse(bh);
1426                 return retval;
1427         }
1428         EXT4_I(dir)->i_flags |= EXT4_INDEX_FL;
1429         data1 = bh2->b_data;
1430
1431         memcpy (data1, de, len);
1432         de = (struct ext4_dir_entry_2 *) data1;
1433         top = data1 + len;
1434         while ((char *)(de2 = ext4_next_entry(de, blocksize)) < top)
1435                 de = de2;
1436         de->rec_len = ext4_rec_len_to_disk(data1 + blocksize - (char *) de,
1437                                            blocksize);
1438         /* Initialize the root; the dot dirents already exist */
1439         de = (struct ext4_dir_entry_2 *) (&root->dotdot);
1440         de->rec_len = ext4_rec_len_to_disk(blocksize - EXT4_DIR_REC_LEN(2),
1441                                            blocksize);
1442         memset (&root->info, 0, sizeof(root->info));
1443         root->info.info_length = sizeof(root->info);
1444         root->info.hash_version = EXT4_SB(dir->i_sb)->s_def_hash_version;
1445         entries = root->entries;
1446         dx_set_block(entries, 1);
1447         dx_set_count(entries, 1);
1448         dx_set_limit(entries, dx_root_limit(dir, sizeof(root->info)));
1449
1450         /* Initialize as for dx_probe */
1451         hinfo.hash_version = root->info.hash_version;
1452         if (hinfo.hash_version <= DX_HASH_TEA)
1453                 hinfo.hash_version += EXT4_SB(dir->i_sb)->s_hash_unsigned;
1454         hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed;
1455         ext4fs_dirhash(name, namelen, &hinfo);
1456         frame = frames;
1457         frame->entries = entries;
1458         frame->at = entries;
1459         frame->bh = bh;
1460         bh = bh2;
1461         de = do_split(handle,dir, &bh, frame, &hinfo, &retval);
1462         dx_release (frames);
1463         if (!(de))
1464                 return retval;
1465
1466         return add_dirent_to_buf(handle, dentry, inode, de, bh);
1467 }
1468
1469 /*
1470  *      ext4_add_entry()
1471  *
1472  * adds a file entry to the specified directory, using the same
1473  * semantics as ext4_find_entry(). It returns NULL if it failed.
1474  *
1475  * NOTE!! The inode part of 'de' is left at 0 - which means you
1476  * may not sleep between calling this and putting something into
1477  * the entry, as someone else might have used it while you slept.
1478  */
1479 static int ext4_add_entry(handle_t *handle, struct dentry *dentry,
1480                           struct inode *inode)
1481 {
1482         struct inode *dir = dentry->d_parent->d_inode;
1483         struct buffer_head *bh;
1484         struct ext4_dir_entry_2 *de;
1485         struct super_block *sb;
1486         int     retval;
1487         int     dx_fallback=0;
1488         unsigned blocksize;
1489         ext4_lblk_t block, blocks;
1490
1491         sb = dir->i_sb;
1492         blocksize = sb->s_blocksize;
1493         if (!dentry->d_name.len)
1494                 return -EINVAL;
1495         if (is_dx(dir)) {
1496                 retval = ext4_dx_add_entry(handle, dentry, inode);
1497                 if (!retval || (retval != ERR_BAD_DX_DIR))
1498                         return retval;
1499                 EXT4_I(dir)->i_flags &= ~EXT4_INDEX_FL;
1500                 dx_fallback++;
1501                 ext4_mark_inode_dirty(handle, dir);
1502         }
1503         blocks = dir->i_size >> sb->s_blocksize_bits;
1504         for (block = 0; block < blocks; block++) {
1505                 bh = ext4_bread(handle, dir, block, 0, &retval);
1506                 if(!bh)
1507                         return retval;
1508                 retval = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
1509                 if (retval != -ENOSPC)
1510                         return retval;
1511
1512                 if (blocks == 1 && !dx_fallback &&
1513                     EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_DIR_INDEX))
1514                         return make_indexed_dir(handle, dentry, inode, bh);
1515                 brelse(bh);
1516         }
1517         bh = ext4_append(handle, dir, &block, &retval);
1518         if (!bh)
1519                 return retval;
1520         de = (struct ext4_dir_entry_2 *) bh->b_data;
1521         de->inode = 0;
1522         de->rec_len = ext4_rec_len_to_disk(blocksize, blocksize);
1523         return add_dirent_to_buf(handle, dentry, inode, de, bh);
1524 }
1525
1526 /*
1527  * Returns 0 for success, or a negative error value
1528  */
1529 static int ext4_dx_add_entry(handle_t *handle, struct dentry *dentry,
1530                              struct inode *inode)
1531 {
1532         struct dx_frame frames[2], *frame;
1533         struct dx_entry *entries, *at;
1534         struct dx_hash_info hinfo;
1535         struct buffer_head *bh;
1536         struct inode *dir = dentry->d_parent->d_inode;
1537         struct super_block *sb = dir->i_sb;
1538         struct ext4_dir_entry_2 *de;
1539         int err;
1540
1541         frame = dx_probe(&dentry->d_name, dir, &hinfo, frames, &err);
1542         if (!frame)
1543                 return err;
1544         entries = frame->entries;
1545         at = frame->at;
1546
1547         if (!(bh = ext4_bread(handle,dir, dx_get_block(frame->at), 0, &err)))
1548                 goto cleanup;
1549
1550         BUFFER_TRACE(bh, "get_write_access");
1551         err = ext4_journal_get_write_access(handle, bh);
1552         if (err)
1553                 goto journal_error;
1554
1555         err = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
1556         if (err != -ENOSPC) {
1557                 bh = NULL;
1558                 goto cleanup;
1559         }
1560
1561         /* Block full, should compress but for now just split */
1562         dxtrace(printk(KERN_DEBUG "using %u of %u node entries\n",
1563                        dx_get_count(entries), dx_get_limit(entries)));
1564         /* Need to split index? */
1565         if (dx_get_count(entries) == dx_get_limit(entries)) {
1566                 ext4_lblk_t newblock;
1567                 unsigned icount = dx_get_count(entries);
1568                 int levels = frame - frames;
1569                 struct dx_entry *entries2;
1570                 struct dx_node *node2;
1571                 struct buffer_head *bh2;
1572
1573                 if (levels && (dx_get_count(frames->entries) ==
1574                                dx_get_limit(frames->entries))) {
1575                         ext4_warning(sb, __func__,
1576                                      "Directory index full!");
1577                         err = -ENOSPC;
1578                         goto cleanup;
1579                 }
1580                 bh2 = ext4_append (handle, dir, &newblock, &err);
1581                 if (!(bh2))
1582                         goto cleanup;
1583                 node2 = (struct dx_node *)(bh2->b_data);
1584                 entries2 = node2->entries;
1585                 node2->fake.rec_len = ext4_rec_len_to_disk(sb->s_blocksize,
1586                                                            sb->s_blocksize);
1587                 node2->fake.inode = 0;
1588                 BUFFER_TRACE(frame->bh, "get_write_access");
1589                 err = ext4_journal_get_write_access(handle, frame->bh);
1590                 if (err)
1591                         goto journal_error;
1592                 if (levels) {
1593                         unsigned icount1 = icount/2, icount2 = icount - icount1;
1594                         unsigned hash2 = dx_get_hash(entries + icount1);
1595                         dxtrace(printk(KERN_DEBUG "Split index %i/%i\n",
1596                                        icount1, icount2));
1597
1598                         BUFFER_TRACE(frame->bh, "get_write_access"); /* index root */
1599                         err = ext4_journal_get_write_access(handle,
1600                                                              frames[0].bh);
1601                         if (err)
1602                                 goto journal_error;
1603
1604                         memcpy((char *) entries2, (char *) (entries + icount1),
1605                                icount2 * sizeof(struct dx_entry));
1606                         dx_set_count(entries, icount1);
1607                         dx_set_count(entries2, icount2);
1608                         dx_set_limit(entries2, dx_node_limit(dir));
1609
1610                         /* Which index block gets the new entry? */
1611                         if (at - entries >= icount1) {
1612                                 frame->at = at = at - entries - icount1 + entries2;
1613                                 frame->entries = entries = entries2;
1614                                 swap(frame->bh, bh2);
1615                         }
1616                         dx_insert_block(frames + 0, hash2, newblock);
1617                         dxtrace(dx_show_index("node", frames[1].entries));
1618                         dxtrace(dx_show_index("node",
1619                                ((struct dx_node *) bh2->b_data)->entries));
1620                         err = ext4_handle_dirty_metadata(handle, inode, bh2);
1621                         if (err)
1622                                 goto journal_error;
1623                         brelse (bh2);
1624                 } else {
1625                         dxtrace(printk(KERN_DEBUG
1626                                        "Creating second level index...\n"));
1627                         memcpy((char *) entries2, (char *) entries,
1628                                icount * sizeof(struct dx_entry));
1629                         dx_set_limit(entries2, dx_node_limit(dir));
1630
1631                         /* Set up root */
1632                         dx_set_count(entries, 1);
1633                         dx_set_block(entries + 0, newblock);
1634                         ((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels = 1;
1635
1636                         /* Add new access path frame */
1637                         frame = frames + 1;
1638                         frame->at = at = at - entries + entries2;
1639                         frame->entries = entries = entries2;
1640                         frame->bh = bh2;
1641                         err = ext4_journal_get_write_access(handle,
1642                                                              frame->bh);
1643                         if (err)
1644                                 goto journal_error;
1645                 }
1646                 ext4_handle_dirty_metadata(handle, inode, frames[0].bh);
1647         }
1648         de = do_split(handle, dir, &bh, frame, &hinfo, &err);
1649         if (!de)
1650                 goto cleanup;
1651         err = add_dirent_to_buf(handle, dentry, inode, de, bh);
1652         bh = NULL;
1653         goto cleanup;
1654
1655 journal_error:
1656         ext4_std_error(dir->i_sb, err);
1657 cleanup:
1658         if (bh)
1659                 brelse(bh);
1660         dx_release(frames);
1661         return err;
1662 }
1663
1664 /*
1665  * ext4_delete_entry deletes a directory entry by merging it with the
1666  * previous entry
1667  */
1668 static int ext4_delete_entry(handle_t *handle,
1669                              struct inode *dir,
1670                              struct ext4_dir_entry_2 *de_del,
1671                              struct buffer_head *bh)
1672 {
1673         struct ext4_dir_entry_2 *de, *pde;
1674         unsigned int blocksize = dir->i_sb->s_blocksize;
1675         int i;
1676
1677         i = 0;
1678         pde = NULL;
1679         de = (struct ext4_dir_entry_2 *) bh->b_data;
1680         while (i < bh->b_size) {
1681                 if (!ext4_check_dir_entry("ext4_delete_entry", dir, de, bh, i))
1682                         return -EIO;
1683                 if (de == de_del)  {
1684                         BUFFER_TRACE(bh, "get_write_access");
1685                         ext4_journal_get_write_access(handle, bh);
1686                         if (pde)
1687                                 pde->rec_len = ext4_rec_len_to_disk(
1688                                         ext4_rec_len_from_disk(pde->rec_len,
1689                                                                blocksize) +
1690                                         ext4_rec_len_from_disk(de->rec_len,
1691                                                                blocksize),
1692                                         blocksize);
1693                         else
1694                                 de->inode = 0;
1695                         dir->i_version++;
1696                         BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
1697                         ext4_handle_dirty_metadata(handle, dir, bh);
1698                         return 0;
1699                 }
1700                 i += ext4_rec_len_from_disk(de->rec_len, blocksize);
1701                 pde = de;
1702                 de = ext4_next_entry(de, blocksize);
1703         }
1704         return -ENOENT;
1705 }
1706
1707 /*
1708  * DIR_NLINK feature is set if 1) nlinks > EXT4_LINK_MAX or 2) nlinks == 2,
1709  * since this indicates that nlinks count was previously 1.
1710  */
1711 static void ext4_inc_count(handle_t *handle, struct inode *inode)
1712 {
1713         inc_nlink(inode);
1714         if (is_dx(inode) && inode->i_nlink > 1) {
1715                 /* limit is 16-bit i_links_count */
1716                 if (inode->i_nlink >= EXT4_LINK_MAX || inode->i_nlink == 2) {
1717                         inode->i_nlink = 1;
1718                         EXT4_SET_RO_COMPAT_FEATURE(inode->i_sb,
1719                                               EXT4_FEATURE_RO_COMPAT_DIR_NLINK);
1720                 }
1721         }
1722 }
1723
1724 /*
1725  * If a directory had nlink == 1, then we should let it be 1. This indicates
1726  * directory has >EXT4_LINK_MAX subdirs.
1727  */
1728 static void ext4_dec_count(handle_t *handle, struct inode *inode)
1729 {
1730         drop_nlink(inode);
1731         if (S_ISDIR(inode->i_mode) && inode->i_nlink == 0)
1732                 inc_nlink(inode);
1733 }
1734
1735
1736 static int ext4_add_nondir(handle_t *handle,
1737                 struct dentry *dentry, struct inode *inode)
1738 {
1739         int err = ext4_add_entry(handle, dentry, inode);
1740         if (!err) {
1741                 ext4_mark_inode_dirty(handle, inode);
1742                 d_instantiate(dentry, inode);
1743                 unlock_new_inode(inode);
1744                 return 0;
1745         }
1746         drop_nlink(inode);
1747         unlock_new_inode(inode);
1748         iput(inode);
1749         return err;
1750 }
1751
1752 /*
1753  * By the time this is called, we already have created
1754  * the directory cache entry for the new file, but it
1755  * is so far negative - it has no inode.
1756  *
1757  * If the create succeeds, we fill in the inode information
1758  * with d_instantiate().
1759  */
1760 static int ext4_create(struct inode *dir, struct dentry *dentry, int mode,
1761                        struct nameidata *nd)
1762 {
1763         handle_t *handle;
1764         struct inode *inode;
1765         int err, retries = 0;
1766
1767 retry:
1768         handle = ext4_journal_start(dir, EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
1769                                         EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1770                                         2*EXT4_QUOTA_INIT_BLOCKS(dir->i_sb));
1771         if (IS_ERR(handle))
1772                 return PTR_ERR(handle);
1773
1774         if (IS_DIRSYNC(dir))
1775                 ext4_handle_sync(handle);
1776
1777         inode = ext4_new_inode (handle, dir, mode);
1778         err = PTR_ERR(inode);
1779         if (!IS_ERR(inode)) {
1780                 inode->i_op = &ext4_file_inode_operations;
1781                 inode->i_fop = &ext4_file_operations;
1782                 ext4_set_aops(inode);
1783                 err = ext4_add_nondir(handle, dentry, inode);
1784         }
1785         ext4_journal_stop(handle);
1786         if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
1787                 goto retry;
1788         return err;
1789 }
1790
1791 static int ext4_mknod(struct inode *dir, struct dentry *dentry,
1792                       int mode, dev_t rdev)
1793 {
1794         handle_t *handle;
1795         struct inode *inode;
1796         int err, retries = 0;
1797
1798         if (!new_valid_dev(rdev))
1799                 return -EINVAL;
1800
1801 retry:
1802         handle = ext4_journal_start(dir, EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
1803                                         EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1804                                         2*EXT4_QUOTA_INIT_BLOCKS(dir->i_sb));
1805         if (IS_ERR(handle))
1806                 return PTR_ERR(handle);
1807
1808         if (IS_DIRSYNC(dir))
1809                 ext4_handle_sync(handle);
1810
1811         inode = ext4_new_inode(handle, dir, mode);
1812         err = PTR_ERR(inode);
1813         if (!IS_ERR(inode)) {
1814                 init_special_inode(inode, inode->i_mode, rdev);
1815 #ifdef CONFIG_EXT4_FS_XATTR
1816                 inode->i_op = &ext4_special_inode_operations;
1817 #endif
1818                 err = ext4_add_nondir(handle, dentry, inode);
1819         }
1820         ext4_journal_stop(handle);
1821         if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
1822                 goto retry;
1823         return err;
1824 }
1825
1826 static int ext4_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1827 {
1828         handle_t *handle;
1829         struct inode *inode;
1830         struct buffer_head *dir_block;
1831         struct ext4_dir_entry_2 *de;
1832         unsigned int blocksize = dir->i_sb->s_blocksize;
1833         int err, retries = 0;
1834
1835         if (EXT4_DIR_LINK_MAX(dir))
1836                 return -EMLINK;
1837
1838 retry:
1839         handle = ext4_journal_start(dir, EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
1840                                         EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1841                                         2*EXT4_QUOTA_INIT_BLOCKS(dir->i_sb));
1842         if (IS_ERR(handle))
1843                 return PTR_ERR(handle);
1844
1845         if (IS_DIRSYNC(dir))
1846                 ext4_handle_sync(handle);
1847
1848         inode = ext4_new_inode(handle, dir, S_IFDIR | mode);
1849         err = PTR_ERR(inode);
1850         if (IS_ERR(inode))
1851                 goto out_stop;
1852
1853         inode->i_op = &ext4_dir_inode_operations;
1854         inode->i_fop = &ext4_dir_operations;
1855         inode->i_size = EXT4_I(inode)->i_disksize = inode->i_sb->s_blocksize;
1856         dir_block = ext4_bread(handle, inode, 0, 1, &err);
1857         if (!dir_block)
1858                 goto out_clear_inode;
1859         BUFFER_TRACE(dir_block, "get_write_access");
1860         ext4_journal_get_write_access(handle, dir_block);
1861         de = (struct ext4_dir_entry_2 *) dir_block->b_data;
1862         de->inode = cpu_to_le32(inode->i_ino);
1863         de->name_len = 1;
1864         de->rec_len = ext4_rec_len_to_disk(EXT4_DIR_REC_LEN(de->name_len),
1865                                            blocksize);
1866         strcpy(de->name, ".");
1867         ext4_set_de_type(dir->i_sb, de, S_IFDIR);
1868         de = ext4_next_entry(de, blocksize);
1869         de->inode = cpu_to_le32(dir->i_ino);
1870         de->rec_len = ext4_rec_len_to_disk(blocksize - EXT4_DIR_REC_LEN(1),
1871                                            blocksize);
1872         de->name_len = 2;
1873         strcpy(de->name, "..");
1874         ext4_set_de_type(dir->i_sb, de, S_IFDIR);
1875         inode->i_nlink = 2;
1876         BUFFER_TRACE(dir_block, "call ext4_handle_dirty_metadata");
1877         ext4_handle_dirty_metadata(handle, dir, dir_block);
1878         brelse(dir_block);
1879         ext4_mark_inode_dirty(handle, inode);
1880         err = ext4_add_entry(handle, dentry, inode);
1881         if (err) {
1882 out_clear_inode:
1883                 clear_nlink(inode);
1884                 unlock_new_inode(inode);
1885                 ext4_mark_inode_dirty(handle, inode);
1886                 iput(inode);
1887                 goto out_stop;
1888         }
1889         ext4_inc_count(handle, dir);
1890         ext4_update_dx_flag(dir);
1891         ext4_mark_inode_dirty(handle, dir);
1892         d_instantiate(dentry, inode);
1893         unlock_new_inode(inode);
1894 out_stop:
1895         ext4_journal_stop(handle);
1896         if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
1897                 goto retry;
1898         return err;
1899 }
1900
1901 /*
1902  * routine to check that the specified directory is empty (for rmdir)
1903  */
1904 static int empty_dir(struct inode *inode)
1905 {
1906         unsigned int offset;
1907         struct buffer_head *bh;
1908         struct ext4_dir_entry_2 *de, *de1;
1909         struct super_block *sb;
1910         int err = 0;
1911
1912         sb = inode->i_sb;
1913         if (inode->i_size < EXT4_DIR_REC_LEN(1) + EXT4_DIR_REC_LEN(2) ||
1914             !(bh = ext4_bread(NULL, inode, 0, 0, &err))) {
1915                 if (err)
1916                         ext4_error(inode->i_sb, __func__,
1917                                    "error %d reading directory #%lu offset 0",
1918                                    err, inode->i_ino);
1919                 else
1920                         ext4_warning(inode->i_sb, __func__,
1921                                      "bad directory (dir #%lu) - no data block",
1922                                      inode->i_ino);
1923                 return 1;
1924         }
1925         de = (struct ext4_dir_entry_2 *) bh->b_data;
1926         de1 = ext4_next_entry(de, sb->s_blocksize);
1927         if (le32_to_cpu(de->inode) != inode->i_ino ||
1928                         !le32_to_cpu(de1->inode) ||
1929                         strcmp(".", de->name) ||
1930                         strcmp("..", de1->name)) {
1931                 ext4_warning(inode->i_sb, "empty_dir",
1932                              "bad directory (dir #%lu) - no `.' or `..'",
1933                              inode->i_ino);
1934                 brelse(bh);
1935                 return 1;
1936         }
1937         offset = ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize) +
1938                  ext4_rec_len_from_disk(de1->rec_len, sb->s_blocksize);
1939         de = ext4_next_entry(de1, sb->s_blocksize);
1940         while (offset < inode->i_size) {
1941                 if (!bh ||
1942                         (void *) de >= (void *) (bh->b_data+sb->s_blocksize)) {
1943                         err = 0;
1944                         brelse(bh);
1945                         bh = ext4_bread(NULL, inode,
1946                                 offset >> EXT4_BLOCK_SIZE_BITS(sb), 0, &err);
1947                         if (!bh) {
1948                                 if (err)
1949                                         ext4_error(sb, __func__,
1950                                                    "error %d reading directory"
1951                                                    " #%lu offset %u",
1952                                                    err, inode->i_ino, offset);
1953                                 offset += sb->s_blocksize;
1954                                 continue;
1955                         }
1956                         de = (struct ext4_dir_entry_2 *) bh->b_data;
1957                 }
1958                 if (!ext4_check_dir_entry("empty_dir", inode, de, bh, offset)) {
1959                         de = (struct ext4_dir_entry_2 *)(bh->b_data +
1960                                                          sb->s_blocksize);
1961                         offset = (offset | (sb->s_blocksize - 1)) + 1;
1962                         continue;
1963                 }
1964                 if (le32_to_cpu(de->inode)) {
1965                         brelse(bh);
1966                         return 0;
1967                 }
1968                 offset += ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize);
1969                 de = ext4_next_entry(de, sb->s_blocksize);
1970         }
1971         brelse(bh);
1972         return 1;
1973 }
1974
1975 /* ext4_orphan_add() links an unlinked or truncated inode into a list of
1976  * such inodes, starting at the superblock, in case we crash before the
1977  * file is closed/deleted, or in case the inode truncate spans multiple
1978  * transactions and the last transaction is not recovered after a crash.
1979  *
1980  * At filesystem recovery time, we walk this list deleting unlinked
1981  * inodes and truncating linked inodes in ext4_orphan_cleanup().
1982  */
1983 int ext4_orphan_add(handle_t *handle, struct inode *inode)
1984 {
1985         struct super_block *sb = inode->i_sb;
1986         struct ext4_iloc iloc;
1987         int err = 0, rc;
1988
1989         if (!ext4_handle_valid(handle))
1990                 return 0;
1991
1992         lock_super(sb);
1993         if (!list_empty(&EXT4_I(inode)->i_orphan))
1994                 goto out_unlock;
1995
1996         /* Orphan handling is only valid for files with data blocks
1997          * being truncated, or files being unlinked. */
1998
1999         /* @@@ FIXME: Observation from aviro:
2000          * I think I can trigger J_ASSERT in ext4_orphan_add().  We block
2001          * here (on lock_super()), so race with ext4_link() which might bump
2002          * ->i_nlink. For, say it, character device. Not a regular file,
2003          * not a directory, not a symlink and ->i_nlink > 0.
2004          */
2005         J_ASSERT((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
2006                   S_ISLNK(inode->i_mode)) || inode->i_nlink == 0);
2007
2008         BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get_write_access");
2009         err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
2010         if (err)
2011                 goto out_unlock;
2012
2013         err = ext4_reserve_inode_write(handle, inode, &iloc);
2014         if (err)
2015                 goto out_unlock;
2016
2017         /* Insert this inode at the head of the on-disk orphan list... */
2018         NEXT_ORPHAN(inode) = le32_to_cpu(EXT4_SB(sb)->s_es->s_last_orphan);
2019         EXT4_SB(sb)->s_es->s_last_orphan = cpu_to_le32(inode->i_ino);
2020         err = ext4_handle_dirty_metadata(handle, inode, EXT4_SB(sb)->s_sbh);
2021         rc = ext4_mark_iloc_dirty(handle, inode, &iloc);
2022         if (!err)
2023                 err = rc;
2024
2025         /* Only add to the head of the in-memory list if all the
2026          * previous operations succeeded.  If the orphan_add is going to
2027          * fail (possibly taking the journal offline), we can't risk
2028          * leaving the inode on the orphan list: stray orphan-list
2029          * entries can cause panics at unmount time.
2030          *
2031          * This is safe: on error we're going to ignore the orphan list
2032          * anyway on the next recovery. */
2033         if (!err)
2034                 list_add(&EXT4_I(inode)->i_orphan, &EXT4_SB(sb)->s_orphan);
2035
2036         jbd_debug(4, "superblock will point to %lu\n", inode->i_ino);
2037         jbd_debug(4, "orphan inode %lu will point to %d\n",
2038                         inode->i_ino, NEXT_ORPHAN(inode));
2039 out_unlock:
2040         unlock_super(sb);
2041         ext4_std_error(inode->i_sb, err);
2042         return err;
2043 }
2044
2045 /*
2046  * ext4_orphan_del() removes an unlinked or truncated inode from the list
2047  * of such inodes stored on disk, because it is finally being cleaned up.
2048  */
2049 int ext4_orphan_del(handle_t *handle, struct inode *inode)
2050 {
2051         struct list_head *prev;
2052         struct ext4_inode_info *ei = EXT4_I(inode);
2053         struct ext4_sb_info *sbi;
2054         __u32 ino_next;
2055         struct ext4_iloc iloc;
2056         int err = 0;
2057
2058         if (!ext4_handle_valid(handle))
2059                 return 0;
2060
2061         lock_super(inode->i_sb);
2062         if (list_empty(&ei->i_orphan)) {
2063                 unlock_super(inode->i_sb);
2064                 return 0;
2065         }
2066
2067         ino_next = NEXT_ORPHAN(inode);
2068         prev = ei->i_orphan.prev;
2069         sbi = EXT4_SB(inode->i_sb);
2070
2071         jbd_debug(4, "remove inode %lu from orphan list\n", inode->i_ino);
2072
2073         list_del_init(&ei->i_orphan);
2074
2075         /* If we're on an error path, we may not have a valid
2076          * transaction handle with which to update the orphan list on
2077          * disk, but we still need to remove the inode from the linked
2078          * list in memory. */
2079         if (sbi->s_journal && !handle)
2080                 goto out;
2081
2082         err = ext4_reserve_inode_write(handle, inode, &iloc);
2083         if (err)
2084                 goto out_err;
2085
2086         if (prev == &sbi->s_orphan) {
2087                 jbd_debug(4, "superblock will point to %u\n", ino_next);
2088                 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
2089                 err = ext4_journal_get_write_access(handle, sbi->s_sbh);
2090                 if (err)
2091                         goto out_brelse;
2092                 sbi->s_es->s_last_orphan = cpu_to_le32(ino_next);
2093                 err = ext4_handle_dirty_metadata(handle, inode, sbi->s_sbh);
2094         } else {
2095                 struct ext4_iloc iloc2;
2096                 struct inode *i_prev =
2097                         &list_entry(prev, struct ext4_inode_info, i_orphan)->vfs_inode;
2098
2099                 jbd_debug(4, "orphan inode %lu will point to %u\n",
2100                           i_prev->i_ino, ino_next);
2101                 err = ext4_reserve_inode_write(handle, i_prev, &iloc2);
2102                 if (err)
2103                         goto out_brelse;
2104                 NEXT_ORPHAN(i_prev) = ino_next;
2105                 err = ext4_mark_iloc_dirty(handle, i_prev, &iloc2);
2106         }
2107         if (err)
2108                 goto out_brelse;
2109         NEXT_ORPHAN(inode) = 0;
2110         err = ext4_mark_iloc_dirty(handle, inode, &iloc);
2111
2112 out_err:
2113         ext4_std_error(inode->i_sb, err);
2114 out:
2115         unlock_super(inode->i_sb);
2116         return err;
2117
2118 out_brelse:
2119         brelse(iloc.bh);
2120         goto out_err;
2121 }
2122
2123 static int ext4_rmdir(struct inode *dir, struct dentry *dentry)
2124 {
2125         int retval;
2126         struct inode *inode;
2127         struct buffer_head *bh;
2128         struct ext4_dir_entry_2 *de;
2129         handle_t *handle;
2130
2131         /* Initialize quotas before so that eventual writes go in
2132          * separate transaction */
2133         vfs_dq_init(dentry->d_inode);
2134         handle = ext4_journal_start(dir, EXT4_DELETE_TRANS_BLOCKS(dir->i_sb));
2135         if (IS_ERR(handle))
2136                 return PTR_ERR(handle);
2137
2138         retval = -ENOENT;
2139         bh = ext4_find_entry(dir, &dentry->d_name, &de);
2140         if (!bh)
2141                 goto end_rmdir;
2142
2143         if (IS_DIRSYNC(dir))
2144                 ext4_handle_sync(handle);
2145
2146         inode = dentry->d_inode;
2147
2148         retval = -EIO;
2149         if (le32_to_cpu(de->inode) != inode->i_ino)
2150                 goto end_rmdir;
2151
2152         retval = -ENOTEMPTY;
2153         if (!empty_dir(inode))
2154                 goto end_rmdir;
2155
2156         retval = ext4_delete_entry(handle, dir, de, bh);
2157         if (retval)
2158                 goto end_rmdir;
2159         if (!EXT4_DIR_LINK_EMPTY(inode))
2160                 ext4_warning(inode->i_sb, "ext4_rmdir",
2161                              "empty directory has too many links (%d)",
2162                              inode->i_nlink);
2163         inode->i_version++;
2164         clear_nlink(inode);
2165         /* There's no need to set i_disksize: the fact that i_nlink is
2166          * zero will ensure that the right thing happens during any
2167          * recovery. */
2168         inode->i_size = 0;
2169         ext4_orphan_add(handle, inode);
2170         inode->i_ctime = dir->i_ctime = dir->i_mtime = ext4_current_time(inode);
2171         ext4_mark_inode_dirty(handle, inode);
2172         ext4_dec_count(handle, dir);
2173         ext4_update_dx_flag(dir);
2174         ext4_mark_inode_dirty(handle, dir);
2175
2176 end_rmdir:
2177         ext4_journal_stop(handle);
2178         brelse(bh);
2179         return retval;
2180 }
2181
2182 static int ext4_unlink(struct inode *dir, struct dentry *dentry)
2183 {
2184         int retval;
2185         struct inode *inode;
2186         struct buffer_head *bh;
2187         struct ext4_dir_entry_2 *de;
2188         handle_t *handle;
2189
2190         /* Initialize quotas before so that eventual writes go
2191          * in separate transaction */
2192         vfs_dq_init(dentry->d_inode);
2193         handle = ext4_journal_start(dir, EXT4_DELETE_TRANS_BLOCKS(dir->i_sb));
2194         if (IS_ERR(handle))
2195                 return PTR_ERR(handle);
2196
2197         if (IS_DIRSYNC(dir))
2198                 ext4_handle_sync(handle);
2199
2200         retval = -ENOENT;
2201         bh = ext4_find_entry(dir, &dentry->d_name, &de);
2202         if (!bh)
2203                 goto end_unlink;
2204
2205         inode = dentry->d_inode;
2206
2207         retval = -EIO;
2208         if (le32_to_cpu(de->inode) != inode->i_ino)
2209                 goto end_unlink;
2210
2211         if (!inode->i_nlink) {
2212                 ext4_warning(inode->i_sb, "ext4_unlink",
2213                              "Deleting nonexistent file (%lu), %d",
2214                              inode->i_ino, inode->i_nlink);
2215                 inode->i_nlink = 1;
2216         }
2217         retval = ext4_delete_entry(handle, dir, de, bh);
2218         if (retval)
2219                 goto end_unlink;
2220         dir->i_ctime = dir->i_mtime = ext4_current_time(dir);
2221         ext4_update_dx_flag(dir);
2222         ext4_mark_inode_dirty(handle, dir);
2223         drop_nlink(inode);
2224         if (!inode->i_nlink)
2225                 ext4_orphan_add(handle, inode);
2226         inode->i_ctime = ext4_current_time(inode);
2227         ext4_mark_inode_dirty(handle, inode);
2228         retval = 0;
2229
2230 end_unlink:
2231         ext4_journal_stop(handle);
2232         brelse(bh);
2233         return retval;
2234 }
2235
2236 static int ext4_symlink(struct inode *dir,
2237                         struct dentry *dentry, const char *symname)
2238 {
2239         handle_t *handle;
2240         struct inode *inode;
2241         int l, err, retries = 0;
2242
2243         l = strlen(symname)+1;
2244         if (l > dir->i_sb->s_blocksize)
2245                 return -ENAMETOOLONG;
2246
2247 retry:
2248         handle = ext4_journal_start(dir, EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
2249                                         EXT4_INDEX_EXTRA_TRANS_BLOCKS + 5 +
2250                                         2*EXT4_QUOTA_INIT_BLOCKS(dir->i_sb));
2251         if (IS_ERR(handle))
2252                 return PTR_ERR(handle);
2253
2254         if (IS_DIRSYNC(dir))
2255                 ext4_handle_sync(handle);
2256
2257         inode = ext4_new_inode(handle, dir, S_IFLNK|S_IRWXUGO);
2258         err = PTR_ERR(inode);
2259         if (IS_ERR(inode))
2260                 goto out_stop;
2261
2262         if (l > sizeof(EXT4_I(inode)->i_data)) {
2263                 inode->i_op = &ext4_symlink_inode_operations;
2264                 ext4_set_aops(inode);
2265                 /*
2266                  * page_symlink() calls into ext4_prepare/commit_write.
2267                  * We have a transaction open.  All is sweetness.  It also sets
2268                  * i_size in generic_commit_write().
2269                  */
2270                 err = __page_symlink(inode, symname, l, 1);
2271                 if (err) {
2272                         clear_nlink(inode);
2273                         unlock_new_inode(inode);
2274                         ext4_mark_inode_dirty(handle, inode);
2275                         iput(inode);
2276                         goto out_stop;
2277                 }
2278         } else {
2279                 /* clear the extent format for fast symlink */
2280                 EXT4_I(inode)->i_flags &= ~EXT4_EXTENTS_FL;
2281                 inode->i_op = &ext4_fast_symlink_inode_operations;
2282                 memcpy((char *)&EXT4_I(inode)->i_data, symname, l);
2283                 inode->i_size = l-1;
2284         }
2285         EXT4_I(inode)->i_disksize = inode->i_size;
2286         err = ext4_add_nondir(handle, dentry, inode);
2287 out_stop:
2288         ext4_journal_stop(handle);
2289         if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
2290                 goto retry;
2291         return err;
2292 }
2293
2294 static int ext4_link(struct dentry *old_dentry,
2295                      struct inode *dir, struct dentry *dentry)
2296 {
2297         handle_t *handle;
2298         struct inode *inode = old_dentry->d_inode;
2299         int err, retries = 0;
2300
2301         if (EXT4_DIR_LINK_MAX(inode))
2302                 return -EMLINK;
2303
2304         /*
2305          * Return -ENOENT if we've raced with unlink and i_nlink is 0.  Doing
2306          * otherwise has the potential to corrupt the orphan inode list.
2307          */
2308         if (inode->i_nlink == 0)
2309                 return -ENOENT;
2310
2311 retry:
2312         handle = ext4_journal_start(dir, EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
2313                                         EXT4_INDEX_EXTRA_TRANS_BLOCKS);
2314         if (IS_ERR(handle))
2315                 return PTR_ERR(handle);
2316
2317         if (IS_DIRSYNC(dir))
2318                 ext4_handle_sync(handle);
2319
2320         inode->i_ctime = ext4_current_time(inode);
2321         ext4_inc_count(handle, inode);
2322         atomic_inc(&inode->i_count);
2323
2324         err = ext4_add_entry(handle, dentry, inode);
2325         if (!err) {
2326                 ext4_mark_inode_dirty(handle, inode);
2327                 d_instantiate(dentry, inode);
2328         } else {
2329                 drop_nlink(inode);
2330                 iput(inode);
2331         }
2332         ext4_journal_stop(handle);
2333         if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
2334                 goto retry;
2335         return err;
2336 }
2337
2338 #define PARENT_INO(buffer, size) \
2339         (ext4_next_entry((struct ext4_dir_entry_2 *)(buffer), size)->inode)
2340
2341 /*
2342  * Anybody can rename anything with this: the permission checks are left to the
2343  * higher-level routines.
2344  */
2345 static int ext4_rename(struct inode *old_dir, struct dentry *old_dentry,
2346                        struct inode *new_dir, struct dentry *new_dentry)
2347 {
2348         handle_t *handle;
2349         struct inode *old_inode, *new_inode;
2350         struct buffer_head *old_bh, *new_bh, *dir_bh;
2351         struct ext4_dir_entry_2 *old_de, *new_de;
2352         int retval;
2353
2354         old_bh = new_bh = dir_bh = NULL;
2355
2356         /* Initialize quotas before so that eventual writes go
2357          * in separate transaction */
2358         if (new_dentry->d_inode)
2359                 vfs_dq_init(new_dentry->d_inode);
2360         handle = ext4_journal_start(old_dir, 2 *
2361                                         EXT4_DATA_TRANS_BLOCKS(old_dir->i_sb) +
2362                                         EXT4_INDEX_EXTRA_TRANS_BLOCKS + 2);
2363         if (IS_ERR(handle))
2364                 return PTR_ERR(handle);
2365
2366         if (IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir))
2367                 ext4_handle_sync(handle);
2368
2369         old_bh = ext4_find_entry(old_dir, &old_dentry->d_name, &old_de);
2370         /*
2371          *  Check for inode number is _not_ due to possible IO errors.
2372          *  We might rmdir the source, keep it as pwd of some process
2373          *  and merrily kill the link to whatever was created under the
2374          *  same name. Goodbye sticky bit ;-<
2375          */
2376         old_inode = old_dentry->d_inode;
2377         retval = -ENOENT;
2378         if (!old_bh || le32_to_cpu(old_de->inode) != old_inode->i_ino)
2379                 goto end_rename;
2380
2381         new_inode = new_dentry->d_inode;
2382         new_bh = ext4_find_entry(new_dir, &new_dentry->d_name, &new_de);
2383         if (new_bh) {
2384                 if (!new_inode) {
2385                         brelse(new_bh);
2386                         new_bh = NULL;
2387                 }
2388         }
2389         if (S_ISDIR(old_inode->i_mode)) {
2390                 if (new_inode) {
2391                         retval = -ENOTEMPTY;
2392                         if (!empty_dir(new_inode))
2393                                 goto end_rename;
2394                 }
2395                 retval = -EIO;
2396                 dir_bh = ext4_bread(handle, old_inode, 0, 0, &retval);
2397                 if (!dir_bh)
2398                         goto end_rename;
2399                 if (le32_to_cpu(PARENT_INO(dir_bh->b_data,
2400                                 old_dir->i_sb->s_blocksize)) != old_dir->i_ino)
2401                         goto end_rename;
2402                 retval = -EMLINK;
2403                 if (!new_inode && new_dir != old_dir &&
2404                                 new_dir->i_nlink >= EXT4_LINK_MAX)
2405                         goto end_rename;
2406         }
2407         if (!new_bh) {
2408                 retval = ext4_add_entry(handle, new_dentry, old_inode);
2409                 if (retval)
2410                         goto end_rename;
2411         } else {
2412                 BUFFER_TRACE(new_bh, "get write access");
2413                 ext4_journal_get_write_access(handle, new_bh);
2414                 new_de->inode = cpu_to_le32(old_inode->i_ino);
2415                 if (EXT4_HAS_INCOMPAT_FEATURE(new_dir->i_sb,
2416                                               EXT4_FEATURE_INCOMPAT_FILETYPE))
2417                         new_de->file_type = old_de->file_type;
2418                 new_dir->i_version++;
2419                 new_dir->i_ctime = new_dir->i_mtime =
2420                                         ext4_current_time(new_dir);
2421                 ext4_mark_inode_dirty(handle, new_dir);
2422                 BUFFER_TRACE(new_bh, "call ext4_handle_dirty_metadata");
2423                 ext4_handle_dirty_metadata(handle, new_dir, new_bh);
2424                 brelse(new_bh);
2425                 new_bh = NULL;
2426         }
2427
2428         /*
2429          * Like most other Unix systems, set the ctime for inodes on a
2430          * rename.
2431          */
2432         old_inode->i_ctime = ext4_current_time(old_inode);
2433         ext4_mark_inode_dirty(handle, old_inode);
2434
2435         /*
2436          * ok, that's it
2437          */
2438         if (le32_to_cpu(old_de->inode) != old_inode->i_ino ||
2439             old_de->name_len != old_dentry->d_name.len ||
2440             strncmp(old_de->name, old_dentry->d_name.name, old_de->name_len) ||
2441             (retval = ext4_delete_entry(handle, old_dir,
2442                                         old_de, old_bh)) == -ENOENT) {
2443                 /* old_de could have moved from under us during htree split, so
2444                  * make sure that we are deleting the right entry.  We might
2445                  * also be pointing to a stale entry in the unused part of
2446                  * old_bh so just checking inum and the name isn't enough. */
2447                 struct buffer_head *old_bh2;
2448                 struct ext4_dir_entry_2 *old_de2;
2449
2450                 old_bh2 = ext4_find_entry(old_dir, &old_dentry->d_name, &old_de2);
2451                 if (old_bh2) {
2452                         retval = ext4_delete_entry(handle, old_dir,
2453                                                    old_de2, old_bh2);
2454                         brelse(old_bh2);
2455                 }
2456         }
2457         if (retval) {
2458                 ext4_warning(old_dir->i_sb, "ext4_rename",
2459                                 "Deleting old file (%lu), %d, error=%d",
2460                                 old_dir->i_ino, old_dir->i_nlink, retval);
2461         }
2462
2463         if (new_inode) {
2464                 ext4_dec_count(handle, new_inode);
2465                 new_inode->i_ctime = ext4_current_time(new_inode);
2466         }
2467         old_dir->i_ctime = old_dir->i_mtime = ext4_current_time(old_dir);
2468         ext4_update_dx_flag(old_dir);
2469         if (dir_bh) {
2470                 BUFFER_TRACE(dir_bh, "get_write_access");
2471                 ext4_journal_get_write_access(handle, dir_bh);
2472                 PARENT_INO(dir_bh->b_data, new_dir->i_sb->s_blocksize) =
2473                                                 cpu_to_le32(new_dir->i_ino);
2474                 BUFFER_TRACE(dir_bh, "call ext4_handle_dirty_metadata");
2475                 ext4_handle_dirty_metadata(handle, old_dir, dir_bh);
2476                 ext4_dec_count(handle, old_dir);
2477                 if (new_inode) {
2478                         /* checked empty_dir above, can't have another parent,
2479                          * ext4_dec_count() won't work for many-linked dirs */
2480                         new_inode->i_nlink = 0;
2481                 } else {
2482                         ext4_inc_count(handle, new_dir);
2483                         ext4_update_dx_flag(new_dir);
2484                         ext4_mark_inode_dirty(handle, new_dir);
2485                 }
2486         }
2487         ext4_mark_inode_dirty(handle, old_dir);
2488         if (new_inode) {
2489                 ext4_mark_inode_dirty(handle, new_inode);
2490                 if (!new_inode->i_nlink)
2491                         ext4_orphan_add(handle, new_inode);
2492         }
2493         retval = 0;
2494
2495 end_rename:
2496         brelse(dir_bh);
2497         brelse(old_bh);
2498         brelse(new_bh);
2499         ext4_journal_stop(handle);
2500         return retval;
2501 }
2502
2503 /*
2504  * directories can handle most operations...
2505  */
2506 const struct inode_operations ext4_dir_inode_operations = {
2507         .create         = ext4_create,
2508         .lookup         = ext4_lookup,
2509         .link           = ext4_link,
2510         .unlink         = ext4_unlink,
2511         .symlink        = ext4_symlink,
2512         .mkdir          = ext4_mkdir,
2513         .rmdir          = ext4_rmdir,
2514         .mknod          = ext4_mknod,
2515         .rename         = ext4_rename,
2516         .setattr        = ext4_setattr,
2517 #ifdef CONFIG_EXT4_FS_XATTR
2518         .setxattr       = generic_setxattr,
2519         .getxattr       = generic_getxattr,
2520         .listxattr      = ext4_listxattr,
2521         .removexattr    = generic_removexattr,
2522 #endif
2523         .permission     = ext4_permission,
2524 };
2525
2526 const struct inode_operations ext4_special_inode_operations = {
2527         .setattr        = ext4_setattr,
2528 #ifdef CONFIG_EXT4_FS_XATTR
2529         .setxattr       = generic_setxattr,
2530         .getxattr       = generic_getxattr,
2531         .listxattr      = ext4_listxattr,
2532         .removexattr    = generic_removexattr,
2533 #endif
2534         .permission     = ext4_permission,
2535 };