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