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