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