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