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