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