Linux 2.6.16.61-rc1
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / ext3 / namei.c
blob3035dd4b6407240cbbad69abe3deb310b88f20ec
1 /*
2 * linux/fs/ext3/namei.c
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)
9 * from
11 * linux/fs/minix/namei.c
13 * Copyright (C) 1991, 1992 Linus Torvalds
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
27 #include <linux/fs.h>
28 #include <linux/pagemap.h>
29 #include <linux/jbd.h>
30 #include <linux/time.h>
31 #include <linux/ext3_fs.h>
32 #include <linux/ext3_jbd.h>
33 #include <linux/fcntl.h>
34 #include <linux/stat.h>
35 #include <linux/string.h>
36 #include <linux/quotaops.h>
37 #include <linux/buffer_head.h>
38 #include <linux/smp_lock.h>
40 #include "namei.h"
41 #include "xattr.h"
42 #include "acl.h"
45 * define how far ahead to read directories while searching them.
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))
52 static struct buffer_head *ext3_append(handle_t *handle,
53 struct inode *inode,
54 u32 *block, int *err)
56 struct buffer_head *bh;
58 *block = inode->i_size >> inode->i_sb->s_blocksize_bits;
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);
65 return bh;
68 #ifndef assert
69 #define assert(test) J_ASSERT(test)
70 #endif
72 #ifndef swap
73 #define swap(x, y) do { typeof(x) z = x; x = y; y = z; } while (0)
74 #endif
76 #ifdef DX_DEBUG
77 #define dxtrace(command) command
78 #else
79 #define dxtrace(command)
80 #endif
82 struct fake_dirent
84 __le32 inode;
85 __le16 rec_len;
86 u8 name_len;
87 u8 file_type;
90 struct dx_countlimit
92 __le16 limit;
93 __le16 count;
96 struct dx_entry
98 __le32 hash;
99 __le32 block;
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.
108 struct dx_root
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
116 __le32 reserved_zero;
117 u8 hash_version;
118 u8 info_length; /* 8 */
119 u8 indirect_levels;
120 u8 unused_flags;
122 info;
123 struct dx_entry entries[0];
126 struct dx_node
128 struct fake_dirent fake;
129 struct dx_entry entries[0];
133 struct dx_frame
135 struct buffer_head *bh;
136 struct dx_entry *entries;
137 struct dx_entry *at;
140 struct dx_map_entry
142 u32 hash;
143 u32 offs;
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);
180 * Future: use high four bits of block for coalesce-on-delete flags
181 * Mask them off for now.
184 static inline unsigned dx_get_block (struct dx_entry *entry)
186 return le32_to_cpu(entry->block) & 0x00ffffff;
189 static inline void dx_set_block (struct dx_entry *entry, unsigned value)
191 entry->block = cpu_to_le32(value);
194 static inline unsigned dx_get_hash (struct dx_entry *entry)
196 return le32_to_cpu(entry->hash);
199 static inline void dx_set_hash (struct dx_entry *entry, unsigned value)
201 entry->hash = cpu_to_le32(value);
204 static inline unsigned dx_get_count (struct dx_entry *entries)
206 return le16_to_cpu(((struct dx_countlimit *) entries)->count);
209 static inline unsigned dx_get_limit (struct dx_entry *entries)
211 return le16_to_cpu(((struct dx_countlimit *) entries)->limit);
214 static inline void dx_set_count (struct dx_entry *entries, unsigned value)
216 ((struct dx_countlimit *) entries)->count = cpu_to_le16(value);
219 static inline void dx_set_limit (struct dx_entry *entries, unsigned value)
221 ((struct dx_countlimit *) entries)->limit = cpu_to_le16(value);
224 static inline unsigned dx_root_limit (struct inode *dir, unsigned infosize)
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);
231 static inline unsigned dx_node_limit (struct inode *dir)
233 unsigned entry_space = dir->i_sb->s_blocksize - EXT3_DIR_REC_LEN(0);
234 return 0? 22: entry_space / sizeof(struct dx_entry);
238 * Debug
240 #ifdef DX_DEBUG
241 static void dx_show_index (char * label, struct dx_entry *entries)
243 int i, n = dx_get_count (entries);
244 printk("%s index ", label);
245 for (i = 0; i < n; i++)
247 printk("%x->%u ", i? dx_get_hash(entries + i): 0, dx_get_block(entries + i));
249 printk("\n");
252 struct stats
254 unsigned names;
255 unsigned space;
256 unsigned bcount;
259 static struct stats dx_show_leaf(struct dx_hash_info *hinfo, struct ext3_dir_entry_2 *de,
260 int size, int show_names)
262 unsigned names = 0, space = 0;
263 char *base = (char *) de;
264 struct dx_hash_info h = *hinfo;
266 printk("names: ");
267 while ((char *) de < base + size)
269 if (de->inode)
271 if (show_names)
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));
280 space += EXT3_DIR_REC_LEN(de->name_len);
281 names++;
283 de = (struct ext3_dir_entry_2 *) ((char *) de + le16_to_cpu(de->rec_len));
285 printk("(%i)\n", names);
286 return (struct stats) { names, space, 1 };
289 struct stats dx_show_entries(struct dx_hash_info *hinfo, struct inode *dir,
290 struct dx_entry *entries, int levels)
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++)
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);
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};
318 #endif /* DX_DEBUG */
321 * Probe for a directory leaf block to search.
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.
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)
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;
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;
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;
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;
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;
380 entries = (struct dx_entry *) (((char *)&root->info) +
381 root->info.info_length);
382 assert(dx_get_limit(entries) == dx_root_limit(dir,
383 root->info.info_length));
384 dxtrace (printk("Look up %x", hash));
385 while (1)
387 count = dx_get_count(entries);
388 assert (count && count <= dx_get_limit(entries));
389 p = entries + 1;
390 q = entries + count - 1;
391 while (p <= q)
393 m = p + (q - p)/2;
394 dxtrace(printk("."));
395 if (dx_get_hash(m) > hash)
396 q = m - 1;
397 else
398 p = m + 1;
401 if (0) // linear search cross check
403 unsigned n = count - 1;
404 at = entries;
405 while (n--)
407 dxtrace(printk(","));
408 if (dx_get_hash(++at) > hash)
410 at--;
411 break;
414 assert (at == p - 1);
417 at = p - 1;
418 dxtrace(printk(" %x->%u\n", at == entries? 0: dx_get_hash(at), dx_get_block(at)));
419 frame->bh = bh;
420 frame->entries = entries;
421 frame->at = at;
422 if (!indirect--) return frame;
423 if (!(bh = ext3_bread (NULL,dir, dx_get_block(at), 0, err)))
424 goto fail2;
425 at = entries = ((struct dx_node *) bh->b_data)->entries;
426 assert (dx_get_limit(entries) == dx_node_limit (dir));
427 frame++;
429 fail2:
430 while (frame >= frame_in) {
431 brelse(frame->bh);
432 frame--;
434 fail:
435 return NULL;
438 static void dx_release (struct dx_frame *frames)
440 if (frames[0].bh == NULL)
441 return;
443 if (((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels)
444 brelse(frames[1].bh);
445 brelse(frames[0].bh);
449 * This function increments the frame pointer to search the next leaf
450 * block, and reads in the necessary intervening nodes if the search
451 * should be necessary. Whether or not the search is necessary is
452 * controlled by the hash parameter. If the hash value is even, then
453 * the search is only continued if the next block starts with that
454 * hash value. This is used if we are searching for a specific file.
456 * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
458 * This function returns 1 if the caller should continue to search,
459 * or 0 if it should not. If there is an error reading one of the
460 * index blocks, it will a negative error code.
462 * If start_hash is non-null, it will be filled in with the starting
463 * hash of the next page.
465 static int ext3_htree_next_block(struct inode *dir, __u32 hash,
466 struct dx_frame *frame,
467 struct dx_frame *frames,
468 __u32 *start_hash)
470 struct dx_frame *p;
471 struct buffer_head *bh;
472 int err, num_frames = 0;
473 __u32 bhash;
475 p = frame;
477 * Find the next leaf page by incrementing the frame pointer.
478 * If we run out of entries in the interior node, loop around and
479 * increment pointer in the parent node. When we break out of
480 * this loop, num_frames indicates the number of interior
481 * nodes need to be read.
483 while (1) {
484 if (++(p->at) < p->entries + dx_get_count(p->entries))
485 break;
486 if (p == frames)
487 return 0;
488 num_frames++;
489 p--;
493 * If the hash is 1, then continue only if the next page has a
494 * continuation hash of any value. This is used for readdir
495 * handling. Otherwise, check to see if the hash matches the
496 * desired contiuation hash. If it doesn't, return since
497 * there's no point to read in the successive index pages.
499 bhash = dx_get_hash(p->at);
500 if (start_hash)
501 *start_hash = bhash;
502 if ((hash & 1) == 0) {
503 if ((bhash & ~1) != hash)
504 return 0;
507 * If the hash is HASH_NB_ALWAYS, we always go to the next
508 * block so no check is necessary
510 while (num_frames--) {
511 if (!(bh = ext3_bread(NULL, dir, dx_get_block(p->at),
512 0, &err)))
513 return err; /* Failure */
514 p++;
515 brelse (p->bh);
516 p->bh = bh;
517 p->at = p->entries = ((struct dx_node *) bh->b_data)->entries;
519 return 1;
524 * p is at least 6 bytes before the end of page
526 static inline struct ext3_dir_entry_2 *ext3_next_entry(struct ext3_dir_entry_2 *p)
528 return (struct ext3_dir_entry_2 *)((char*)p + le16_to_cpu(p->rec_len));
532 * This function fills a red-black tree with information from a
533 * directory block. It returns the number directory entries loaded
534 * into the tree. If there is an error it is returned in err.
536 static int htree_dirblock_to_tree(struct file *dir_file,
537 struct inode *dir, int block,
538 struct dx_hash_info *hinfo,
539 __u32 start_hash, __u32 start_minor_hash)
541 struct buffer_head *bh;
542 struct ext3_dir_entry_2 *de, *top;
543 int err, count = 0;
545 dxtrace(printk("In htree dirblock_to_tree: block %d\n", block));
546 if (!(bh = ext3_bread (NULL, dir, block, 0, &err)))
547 return err;
549 de = (struct ext3_dir_entry_2 *) bh->b_data;
550 top = (struct ext3_dir_entry_2 *) ((char *) de +
551 dir->i_sb->s_blocksize -
552 EXT3_DIR_REC_LEN(0));
553 for (; de < top; de = ext3_next_entry(de)) {
554 if (!ext3_check_dir_entry("htree_dirblock_to_tree", dir, de, bh,
555 (block<<EXT3_BLOCK_SIZE_BITS(dir->i_sb))
556 +((char *)de - bh->b_data))) {
557 /* On error, skip the f_pos to the next block. */
558 dir_file->f_pos = (dir_file->f_pos |
559 (dir->i_sb->s_blocksize - 1)) + 1;
560 brelse (bh);
561 return count;
563 ext3fs_dirhash(de->name, de->name_len, hinfo);
564 if ((hinfo->hash < start_hash) ||
565 ((hinfo->hash == start_hash) &&
566 (hinfo->minor_hash < start_minor_hash)))
567 continue;
568 if (de->inode == 0)
569 continue;
570 if ((err = ext3_htree_store_dirent(dir_file,
571 hinfo->hash, hinfo->minor_hash, de)) != 0) {
572 brelse(bh);
573 return err;
575 count++;
577 brelse(bh);
578 return count;
583 * This function fills a red-black tree with information from a
584 * directory. We start scanning the directory in hash order, starting
585 * at start_hash and start_minor_hash.
587 * This function returns the number of entries inserted into the tree,
588 * or a negative error code.
590 int ext3_htree_fill_tree(struct file *dir_file, __u32 start_hash,
591 __u32 start_minor_hash, __u32 *next_hash)
593 struct dx_hash_info hinfo;
594 struct ext3_dir_entry_2 *de;
595 struct dx_frame frames[2], *frame;
596 struct inode *dir;
597 int block, err;
598 int count = 0;
599 int ret;
600 __u32 hashval;
602 dxtrace(printk("In htree_fill_tree, start hash: %x:%x\n", start_hash,
603 start_minor_hash));
604 dir = dir_file->f_dentry->d_inode;
605 if (!(EXT3_I(dir)->i_flags & EXT3_INDEX_FL)) {
606 hinfo.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version;
607 hinfo.seed = EXT3_SB(dir->i_sb)->s_hash_seed;
608 count = htree_dirblock_to_tree(dir_file, dir, 0, &hinfo,
609 start_hash, start_minor_hash);
610 *next_hash = ~0;
611 return count;
613 hinfo.hash = start_hash;
614 hinfo.minor_hash = 0;
615 frame = dx_probe(NULL, dir_file->f_dentry->d_inode, &hinfo, frames, &err);
616 if (!frame)
617 return err;
619 /* Add '.' and '..' from the htree header */
620 if (!start_hash && !start_minor_hash) {
621 de = (struct ext3_dir_entry_2 *) frames[0].bh->b_data;
622 if ((err = ext3_htree_store_dirent(dir_file, 0, 0, de)) != 0)
623 goto errout;
624 count++;
626 if (start_hash < 2 || (start_hash ==2 && start_minor_hash==0)) {
627 de = (struct ext3_dir_entry_2 *) frames[0].bh->b_data;
628 de = ext3_next_entry(de);
629 if ((err = ext3_htree_store_dirent(dir_file, 2, 0, de)) != 0)
630 goto errout;
631 count++;
634 while (1) {
635 block = dx_get_block(frame->at);
636 ret = htree_dirblock_to_tree(dir_file, dir, block, &hinfo,
637 start_hash, start_minor_hash);
638 if (ret < 0) {
639 err = ret;
640 goto errout;
642 count += ret;
643 hashval = ~0;
644 ret = ext3_htree_next_block(dir, HASH_NB_ALWAYS,
645 frame, frames, &hashval);
646 *next_hash = hashval;
647 if (ret < 0) {
648 err = ret;
649 goto errout;
652 * Stop if: (a) there are no more entries, or
653 * (b) we have inserted at least one entry and the
654 * next hash value is not a continuation
656 if ((ret == 0) ||
657 (count && ((hashval & 1) == 0)))
658 break;
660 dx_release(frames);
661 dxtrace(printk("Fill tree: returned %d entries, next hash: %x\n",
662 count, *next_hash));
663 return count;
664 errout:
665 dx_release(frames);
666 return (err);
671 * Directory block splitting, compacting
674 static int dx_make_map (struct ext3_dir_entry_2 *de, int size,
675 struct dx_hash_info *hinfo, struct dx_map_entry *map_tail)
677 int count = 0;
678 char *base = (char *) de;
679 struct dx_hash_info h = *hinfo;
681 while ((char *) de < base + size)
683 if (de->name_len && de->inode) {
684 ext3fs_dirhash(de->name, de->name_len, &h);
685 map_tail--;
686 map_tail->hash = h.hash;
687 map_tail->offs = (u32) ((char *) de - base);
688 count++;
689 cond_resched();
691 /* XXX: do we need to check rec_len == 0 case? -Chris */
692 de = (struct ext3_dir_entry_2 *) ((char *) de + le16_to_cpu(de->rec_len));
694 return count;
697 static void dx_sort_map (struct dx_map_entry *map, unsigned count)
699 struct dx_map_entry *p, *q, *top = map + count - 1;
700 int more;
701 /* Combsort until bubble sort doesn't suck */
702 while (count > 2)
704 count = count*10/13;
705 if (count - 9 < 2) /* 9, 10 -> 11 */
706 count = 11;
707 for (p = top, q = p - count; q >= map; p--, q--)
708 if (p->hash < q->hash)
709 swap(*p, *q);
711 /* Garden variety bubble sort */
712 do {
713 more = 0;
714 q = top;
715 while (q-- > map)
717 if (q[1].hash >= q[0].hash)
718 continue;
719 swap(*(q+1), *q);
720 more = 1;
722 } while(more);
725 static void dx_insert_block(struct dx_frame *frame, u32 hash, u32 block)
727 struct dx_entry *entries = frame->entries;
728 struct dx_entry *old = frame->at, *new = old + 1;
729 int count = dx_get_count(entries);
731 assert(count < dx_get_limit(entries));
732 assert(old < entries + count);
733 memmove(new + 1, new, (char *)(entries + count) - (char *)(new));
734 dx_set_hash(new, hash);
735 dx_set_block(new, block);
736 dx_set_count(entries, count + 1);
738 #endif
741 static void ext3_update_dx_flag(struct inode *inode)
743 if (!EXT3_HAS_COMPAT_FEATURE(inode->i_sb,
744 EXT3_FEATURE_COMPAT_DIR_INDEX))
745 EXT3_I(inode)->i_flags &= ~EXT3_INDEX_FL;
749 * NOTE! unlike strncmp, ext3_match returns 1 for success, 0 for failure.
751 * `len <= EXT3_NAME_LEN' is guaranteed by caller.
752 * `de != NULL' is guaranteed by caller.
754 static inline int ext3_match (int len, const char * const name,
755 struct ext3_dir_entry_2 * de)
757 if (len != de->name_len)
758 return 0;
759 if (!de->inode)
760 return 0;
761 return !memcmp(name, de->name, len);
765 * Returns 0 if not found, -1 on failure, and 1 on success
767 static inline int search_dirblock(struct buffer_head * bh,
768 struct inode *dir,
769 struct dentry *dentry,
770 unsigned long offset,
771 struct ext3_dir_entry_2 ** res_dir)
773 struct ext3_dir_entry_2 * de;
774 char * dlimit;
775 int de_len;
776 const char *name = dentry->d_name.name;
777 int namelen = dentry->d_name.len;
779 de = (struct ext3_dir_entry_2 *) bh->b_data;
780 dlimit = bh->b_data + dir->i_sb->s_blocksize;
781 while ((char *) de < dlimit) {
782 /* this code is executed quadratically often */
783 /* do minimal checking `by hand' */
785 if ((char *) de + namelen <= dlimit &&
786 ext3_match (namelen, name, de)) {
787 /* found a match - just to be sure, do a full check */
788 if (!ext3_check_dir_entry("ext3_find_entry",
789 dir, de, bh, offset))
790 return -1;
791 *res_dir = de;
792 return 1;
794 /* prevent looping on a bad block */
795 de_len = le16_to_cpu(de->rec_len);
796 if (de_len <= 0)
797 return -1;
798 offset += de_len;
799 de = (struct ext3_dir_entry_2 *) ((char *) de + de_len);
801 return 0;
806 * ext3_find_entry()
808 * finds an entry in the specified directory with the wanted name. It
809 * returns the cache buffer in which the entry was found, and the entry
810 * itself (as a parameter - res_dir). It does NOT read the inode of the
811 * entry - you'll have to do that yourself if you want to.
813 * The returned buffer_head has ->b_count elevated. The caller is expected
814 * to brelse() it when appropriate.
816 static struct buffer_head * ext3_find_entry (struct dentry *dentry,
817 struct ext3_dir_entry_2 ** res_dir)
819 struct super_block * sb;
820 struct buffer_head * bh_use[NAMEI_RA_SIZE];
821 struct buffer_head * bh, *ret = NULL;
822 unsigned long start, block, b;
823 int ra_max = 0; /* Number of bh's in the readahead
824 buffer, bh_use[] */
825 int ra_ptr = 0; /* Current index into readahead
826 buffer */
827 int num = 0;
828 int nblocks, i, err;
829 struct inode *dir = dentry->d_parent->d_inode;
830 int namelen;
831 const u8 *name;
832 unsigned blocksize;
834 *res_dir = NULL;
835 sb = dir->i_sb;
836 blocksize = sb->s_blocksize;
837 namelen = dentry->d_name.len;
838 name = dentry->d_name.name;
839 if (namelen > EXT3_NAME_LEN)
840 return NULL;
841 #ifdef CONFIG_EXT3_INDEX
842 if (is_dx(dir)) {
843 bh = ext3_dx_find_entry(dentry, res_dir, &err);
845 * On success, or if the error was file not found,
846 * return. Otherwise, fall back to doing a search the
847 * old fashioned way.
849 if (bh || (err != ERR_BAD_DX_DIR))
850 return bh;
851 dxtrace(printk("ext3_find_entry: dx failed, falling back\n"));
853 #endif
854 nblocks = dir->i_size >> EXT3_BLOCK_SIZE_BITS(sb);
855 start = EXT3_I(dir)->i_dir_start_lookup;
856 if (start >= nblocks)
857 start = 0;
858 block = start;
859 restart:
860 do {
862 * We deal with the read-ahead logic here.
864 if (ra_ptr >= ra_max) {
865 /* Refill the readahead buffer */
866 ra_ptr = 0;
867 b = block;
868 for (ra_max = 0; ra_max < NAMEI_RA_SIZE; ra_max++) {
870 * Terminate if we reach the end of the
871 * directory and must wrap, or if our
872 * search has finished at this block.
874 if (b >= nblocks || (num && block == start)) {
875 bh_use[ra_max] = NULL;
876 break;
878 num++;
879 bh = ext3_getblk(NULL, dir, b++, 0, &err);
880 bh_use[ra_max] = bh;
881 if (bh)
882 ll_rw_block(READ, 1, &bh);
885 if ((bh = bh_use[ra_ptr++]) == NULL)
886 goto next;
887 wait_on_buffer(bh);
888 if (!buffer_uptodate(bh)) {
889 /* read error, skip block & hope for the best */
890 ext3_error(sb, __FUNCTION__, "reading directory #%lu "
891 "offset %lu", dir->i_ino, block);
892 brelse(bh);
893 goto next;
895 i = search_dirblock(bh, dir, dentry,
896 block << EXT3_BLOCK_SIZE_BITS(sb), res_dir);
897 if (i == 1) {
898 EXT3_I(dir)->i_dir_start_lookup = block;
899 ret = bh;
900 goto cleanup_and_exit;
901 } else {
902 brelse(bh);
903 if (i < 0)
904 goto cleanup_and_exit;
906 next:
907 if (++block >= nblocks)
908 block = 0;
909 } while (block != start);
912 * If the directory has grown while we were searching, then
913 * search the last part of the directory before giving up.
915 block = nblocks;
916 nblocks = dir->i_size >> EXT3_BLOCK_SIZE_BITS(sb);
917 if (block < nblocks) {
918 start = 0;
919 goto restart;
922 cleanup_and_exit:
923 /* Clean up the read-ahead blocks */
924 for (; ra_ptr < ra_max; ra_ptr++)
925 brelse (bh_use[ra_ptr]);
926 return ret;
929 #ifdef CONFIG_EXT3_INDEX
930 static struct buffer_head * ext3_dx_find_entry(struct dentry *dentry,
931 struct ext3_dir_entry_2 **res_dir, int *err)
933 struct super_block * sb;
934 struct dx_hash_info hinfo;
935 u32 hash;
936 struct dx_frame frames[2], *frame;
937 struct ext3_dir_entry_2 *de, *top;
938 struct buffer_head *bh;
939 unsigned long block;
940 int retval;
941 int namelen = dentry->d_name.len;
942 const u8 *name = dentry->d_name.name;
943 struct inode *dir = dentry->d_parent->d_inode;
945 sb = dir->i_sb;
946 /* NFS may look up ".." - look at dx_root directory block */
947 if (namelen > 2 || name[0] != '.'||(name[1] != '.' && name[1] != '\0')){
948 if (!(frame = dx_probe(dentry, NULL, &hinfo, frames, err)))
949 return NULL;
950 } else {
951 frame = frames;
952 frame->bh = NULL; /* for dx_release() */
953 frame->at = (struct dx_entry *)frames; /* hack for zero entry*/
954 dx_set_block(frame->at, 0); /* dx_root block is 0 */
956 hash = hinfo.hash;
957 do {
958 block = dx_get_block(frame->at);
959 if (!(bh = ext3_bread (NULL,dir, block, 0, err)))
960 goto errout;
961 de = (struct ext3_dir_entry_2 *) bh->b_data;
962 top = (struct ext3_dir_entry_2 *) ((char *) de + sb->s_blocksize -
963 EXT3_DIR_REC_LEN(0));
964 for (; de < top; de = ext3_next_entry(de))
965 if (ext3_match (namelen, name, de)) {
966 if (!ext3_check_dir_entry("ext3_find_entry",
967 dir, de, bh,
968 (block<<EXT3_BLOCK_SIZE_BITS(sb))
969 +((char *)de - bh->b_data))) {
970 brelse (bh);
971 goto errout;
973 *res_dir = de;
974 dx_release (frames);
975 return bh;
977 brelse (bh);
978 /* Check to see if we should continue to search */
979 retval = ext3_htree_next_block(dir, hash, frame,
980 frames, NULL);
981 if (retval < 0) {
982 ext3_warning(sb, __FUNCTION__,
983 "error reading index page in directory #%lu",
984 dir->i_ino);
985 *err = retval;
986 goto errout;
988 } while (retval == 1);
990 *err = -ENOENT;
991 errout:
992 dxtrace(printk("%s not found\n", name));
993 dx_release (frames);
994 return NULL;
996 #endif
998 static struct dentry *ext3_lookup(struct inode * dir, struct dentry *dentry, struct nameidata *nd)
1000 struct inode * inode;
1001 struct ext3_dir_entry_2 * de;
1002 struct buffer_head * bh;
1004 if (dentry->d_name.len > EXT3_NAME_LEN)
1005 return ERR_PTR(-ENAMETOOLONG);
1007 bh = ext3_find_entry(dentry, &de);
1008 inode = NULL;
1009 if (bh) {
1010 unsigned long ino = le32_to_cpu(de->inode);
1011 brelse (bh);
1012 if (!ext3_valid_inum(dir->i_sb, ino)) {
1013 ext3_error(dir->i_sb, "ext3_lookup",
1014 "bad inode number: %lu", ino);
1015 inode = NULL;
1016 } else
1017 inode = iget(dir->i_sb, ino);
1019 if (!inode)
1020 return ERR_PTR(-EACCES);
1022 return d_splice_alias(inode, dentry);
1026 struct dentry *ext3_get_parent(struct dentry *child)
1028 unsigned long ino;
1029 struct dentry *parent;
1030 struct inode *inode;
1031 struct dentry dotdot;
1032 struct ext3_dir_entry_2 * de;
1033 struct buffer_head *bh;
1035 dotdot.d_name.name = "..";
1036 dotdot.d_name.len = 2;
1037 dotdot.d_parent = child; /* confusing, isn't it! */
1039 bh = ext3_find_entry(&dotdot, &de);
1040 inode = NULL;
1041 if (!bh)
1042 return ERR_PTR(-ENOENT);
1043 ino = le32_to_cpu(de->inode);
1044 brelse(bh);
1046 if (!ext3_valid_inum(child->d_inode->i_sb, ino)) {
1047 ext3_error(child->d_inode->i_sb, "ext3_get_parent",
1048 "bad inode number: %lu", ino);
1049 inode = NULL;
1050 } else
1051 inode = iget(child->d_inode->i_sb, ino);
1053 if (!inode)
1054 return ERR_PTR(-EACCES);
1056 parent = d_alloc_anon(inode);
1057 if (!parent) {
1058 iput(inode);
1059 parent = ERR_PTR(-ENOMEM);
1061 return parent;
1064 #define S_SHIFT 12
1065 static unsigned char ext3_type_by_mode[S_IFMT >> S_SHIFT] = {
1066 [S_IFREG >> S_SHIFT] = EXT3_FT_REG_FILE,
1067 [S_IFDIR >> S_SHIFT] = EXT3_FT_DIR,
1068 [S_IFCHR >> S_SHIFT] = EXT3_FT_CHRDEV,
1069 [S_IFBLK >> S_SHIFT] = EXT3_FT_BLKDEV,
1070 [S_IFIFO >> S_SHIFT] = EXT3_FT_FIFO,
1071 [S_IFSOCK >> S_SHIFT] = EXT3_FT_SOCK,
1072 [S_IFLNK >> S_SHIFT] = EXT3_FT_SYMLINK,
1075 static inline void ext3_set_de_type(struct super_block *sb,
1076 struct ext3_dir_entry_2 *de,
1077 umode_t mode) {
1078 if (EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_FILETYPE))
1079 de->file_type = ext3_type_by_mode[(mode & S_IFMT)>>S_SHIFT];
1082 #ifdef CONFIG_EXT3_INDEX
1083 static struct ext3_dir_entry_2 *
1084 dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count)
1086 unsigned rec_len = 0;
1088 while (count--) {
1089 struct ext3_dir_entry_2 *de = (struct ext3_dir_entry_2 *) (from + map->offs);
1090 rec_len = EXT3_DIR_REC_LEN(de->name_len);
1091 memcpy (to, de, rec_len);
1092 ((struct ext3_dir_entry_2 *) to)->rec_len =
1093 cpu_to_le16(rec_len);
1094 de->inode = 0;
1095 map++;
1096 to += rec_len;
1098 return (struct ext3_dir_entry_2 *) (to - rec_len);
1101 static struct ext3_dir_entry_2* dx_pack_dirents(char *base, int size)
1103 struct ext3_dir_entry_2 *next, *to, *prev, *de = (struct ext3_dir_entry_2 *) base;
1104 unsigned rec_len = 0;
1106 prev = to = de;
1107 while ((char*)de < base + size) {
1108 next = (struct ext3_dir_entry_2 *) ((char *) de +
1109 le16_to_cpu(de->rec_len));
1110 if (de->inode && de->name_len) {
1111 rec_len = EXT3_DIR_REC_LEN(de->name_len);
1112 if (de > to)
1113 memmove(to, de, rec_len);
1114 to->rec_len = cpu_to_le16(rec_len);
1115 prev = to;
1116 to = (struct ext3_dir_entry_2 *) (((char *) to) + rec_len);
1118 de = next;
1120 return prev;
1123 static struct ext3_dir_entry_2 *do_split(handle_t *handle, struct inode *dir,
1124 struct buffer_head **bh,struct dx_frame *frame,
1125 struct dx_hash_info *hinfo, int *error)
1127 unsigned blocksize = dir->i_sb->s_blocksize;
1128 unsigned count, continued;
1129 struct buffer_head *bh2;
1130 u32 newblock;
1131 u32 hash2;
1132 struct dx_map_entry *map;
1133 char *data1 = (*bh)->b_data, *data2;
1134 unsigned split;
1135 struct ext3_dir_entry_2 *de = NULL, *de2;
1136 int err;
1138 bh2 = ext3_append (handle, dir, &newblock, error);
1139 if (!(bh2)) {
1140 brelse(*bh);
1141 *bh = NULL;
1142 goto errout;
1145 BUFFER_TRACE(*bh, "get_write_access");
1146 err = ext3_journal_get_write_access(handle, *bh);
1147 if (err) {
1148 journal_error:
1149 brelse(*bh);
1150 brelse(bh2);
1151 *bh = NULL;
1152 ext3_std_error(dir->i_sb, err);
1153 goto errout;
1155 BUFFER_TRACE(frame->bh, "get_write_access");
1156 err = ext3_journal_get_write_access(handle, frame->bh);
1157 if (err)
1158 goto journal_error;
1160 data2 = bh2->b_data;
1162 /* create map in the end of data2 block */
1163 map = (struct dx_map_entry *) (data2 + blocksize);
1164 count = dx_make_map ((struct ext3_dir_entry_2 *) data1,
1165 blocksize, hinfo, map);
1166 map -= count;
1167 split = count/2; // need to adjust to actual middle
1168 dx_sort_map (map, count);
1169 hash2 = map[split].hash;
1170 continued = hash2 == map[split - 1].hash;
1171 dxtrace(printk("Split block %i at %x, %i/%i\n",
1172 dx_get_block(frame->at), hash2, split, count-split));
1174 /* Fancy dance to stay within two buffers */
1175 de2 = dx_move_dirents(data1, data2, map + split, count - split);
1176 de = dx_pack_dirents(data1,blocksize);
1177 de->rec_len = cpu_to_le16(data1 + blocksize - (char *) de);
1178 de2->rec_len = cpu_to_le16(data2 + blocksize - (char *) de2);
1179 dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data1, blocksize, 1));
1180 dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data2, blocksize, 1));
1182 /* Which block gets the new entry? */
1183 if (hinfo->hash >= hash2)
1185 swap(*bh, bh2);
1186 de = de2;
1188 dx_insert_block (frame, hash2 + continued, newblock);
1189 err = ext3_journal_dirty_metadata (handle, bh2);
1190 if (err)
1191 goto journal_error;
1192 err = ext3_journal_dirty_metadata (handle, frame->bh);
1193 if (err)
1194 goto journal_error;
1195 brelse (bh2);
1196 dxtrace(dx_show_index ("frame", frame->entries));
1197 errout:
1198 return de;
1200 #endif
1204 * Add a new entry into a directory (leaf) block. If de is non-NULL,
1205 * it points to a directory entry which is guaranteed to be large
1206 * enough for new directory entry. If de is NULL, then
1207 * add_dirent_to_buf will attempt search the directory block for
1208 * space. It will return -ENOSPC if no space is available, and -EIO
1209 * and -EEXIST if directory entry already exists.
1211 * NOTE! bh is NOT released in the case where ENOSPC is returned. In
1212 * all other cases bh is released.
1214 static int add_dirent_to_buf(handle_t *handle, struct dentry *dentry,
1215 struct inode *inode, struct ext3_dir_entry_2 *de,
1216 struct buffer_head * bh)
1218 struct inode *dir = dentry->d_parent->d_inode;
1219 const char *name = dentry->d_name.name;
1220 int namelen = dentry->d_name.len;
1221 unsigned long offset = 0;
1222 unsigned short reclen;
1223 int nlen, rlen, err;
1224 char *top;
1226 reclen = EXT3_DIR_REC_LEN(namelen);
1227 if (!de) {
1228 de = (struct ext3_dir_entry_2 *)bh->b_data;
1229 top = bh->b_data + dir->i_sb->s_blocksize - reclen;
1230 while ((char *) de <= top) {
1231 if (!ext3_check_dir_entry("ext3_add_entry", dir, de,
1232 bh, offset)) {
1233 brelse (bh);
1234 return -EIO;
1236 if (ext3_match (namelen, name, de)) {
1237 brelse (bh);
1238 return -EEXIST;
1240 nlen = EXT3_DIR_REC_LEN(de->name_len);
1241 rlen = le16_to_cpu(de->rec_len);
1242 if ((de->inode? rlen - nlen: rlen) >= reclen)
1243 break;
1244 de = (struct ext3_dir_entry_2 *)((char *)de + rlen);
1245 offset += rlen;
1247 if ((char *) de > top)
1248 return -ENOSPC;
1250 BUFFER_TRACE(bh, "get_write_access");
1251 err = ext3_journal_get_write_access(handle, bh);
1252 if (err) {
1253 ext3_std_error(dir->i_sb, err);
1254 brelse(bh);
1255 return err;
1258 /* By now the buffer is marked for journaling */
1259 nlen = EXT3_DIR_REC_LEN(de->name_len);
1260 rlen = le16_to_cpu(de->rec_len);
1261 if (de->inode) {
1262 struct ext3_dir_entry_2 *de1 = (struct ext3_dir_entry_2 *)((char *)de + nlen);
1263 de1->rec_len = cpu_to_le16(rlen - nlen);
1264 de->rec_len = cpu_to_le16(nlen);
1265 de = de1;
1267 de->file_type = EXT3_FT_UNKNOWN;
1268 if (inode) {
1269 de->inode = cpu_to_le32(inode->i_ino);
1270 ext3_set_de_type(dir->i_sb, de, inode->i_mode);
1271 } else
1272 de->inode = 0;
1273 de->name_len = namelen;
1274 memcpy (de->name, name, namelen);
1276 * XXX shouldn't update any times until successful
1277 * completion of syscall, but too many callers depend
1278 * on this.
1280 * XXX similarly, too many callers depend on
1281 * ext3_new_inode() setting the times, but error
1282 * recovery deletes the inode, so the worst that can
1283 * happen is that the times are slightly out of date
1284 * and/or different from the directory change time.
1286 dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC;
1287 ext3_update_dx_flag(dir);
1288 dir->i_version++;
1289 ext3_mark_inode_dirty(handle, dir);
1290 BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
1291 err = ext3_journal_dirty_metadata(handle, bh);
1292 if (err)
1293 ext3_std_error(dir->i_sb, err);
1294 brelse(bh);
1295 return 0;
1298 #ifdef CONFIG_EXT3_INDEX
1300 * This converts a one block unindexed directory to a 3 block indexed
1301 * directory, and adds the dentry to the indexed directory.
1303 static int make_indexed_dir(handle_t *handle, struct dentry *dentry,
1304 struct inode *inode, struct buffer_head *bh)
1306 struct inode *dir = dentry->d_parent->d_inode;
1307 const char *name = dentry->d_name.name;
1308 int namelen = dentry->d_name.len;
1309 struct buffer_head *bh2;
1310 struct dx_root *root;
1311 struct dx_frame frames[2], *frame;
1312 struct dx_entry *entries;
1313 struct ext3_dir_entry_2 *de, *de2;
1314 char *data1, *top;
1315 unsigned len;
1316 int retval;
1317 unsigned blocksize;
1318 struct dx_hash_info hinfo;
1319 u32 block;
1320 struct fake_dirent *fde;
1322 blocksize = dir->i_sb->s_blocksize;
1323 dxtrace(printk("Creating index\n"));
1324 retval = ext3_journal_get_write_access(handle, bh);
1325 if (retval) {
1326 ext3_std_error(dir->i_sb, retval);
1327 brelse(bh);
1328 return retval;
1330 root = (struct dx_root *) bh->b_data;
1332 bh2 = ext3_append (handle, dir, &block, &retval);
1333 if (!(bh2)) {
1334 brelse(bh);
1335 return retval;
1337 EXT3_I(dir)->i_flags |= EXT3_INDEX_FL;
1338 data1 = bh2->b_data;
1340 /* The 0th block becomes the root, move the dirents out */
1341 fde = &root->dotdot;
1342 de = (struct ext3_dir_entry_2 *)((char *)fde + le16_to_cpu(fde->rec_len));
1343 len = ((char *) root) + blocksize - (char *) de;
1344 memcpy (data1, de, len);
1345 de = (struct ext3_dir_entry_2 *) data1;
1346 top = data1 + len;
1347 while ((char *)(de2=(void*)de+le16_to_cpu(de->rec_len)) < top)
1348 de = de2;
1349 de->rec_len = cpu_to_le16(data1 + blocksize - (char *) de);
1350 /* Initialize the root; the dot dirents already exist */
1351 de = (struct ext3_dir_entry_2 *) (&root->dotdot);
1352 de->rec_len = cpu_to_le16(blocksize - EXT3_DIR_REC_LEN(2));
1353 memset (&root->info, 0, sizeof(root->info));
1354 root->info.info_length = sizeof(root->info);
1355 root->info.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version;
1356 entries = root->entries;
1357 dx_set_block (entries, 1);
1358 dx_set_count (entries, 1);
1359 dx_set_limit (entries, dx_root_limit(dir, sizeof(root->info)));
1361 /* Initialize as for dx_probe */
1362 hinfo.hash_version = root->info.hash_version;
1363 hinfo.seed = EXT3_SB(dir->i_sb)->s_hash_seed;
1364 ext3fs_dirhash(name, namelen, &hinfo);
1365 frame = frames;
1366 frame->entries = entries;
1367 frame->at = entries;
1368 frame->bh = bh;
1369 bh = bh2;
1370 de = do_split(handle,dir, &bh, frame, &hinfo, &retval);
1371 dx_release (frames);
1372 if (!(de))
1373 return retval;
1375 return add_dirent_to_buf(handle, dentry, inode, de, bh);
1377 #endif
1380 * ext3_add_entry()
1382 * adds a file entry to the specified directory, using the same
1383 * semantics as ext3_find_entry(). It returns NULL if it failed.
1385 * NOTE!! The inode part of 'de' is left at 0 - which means you
1386 * may not sleep between calling this and putting something into
1387 * the entry, as someone else might have used it while you slept.
1389 static int ext3_add_entry (handle_t *handle, struct dentry *dentry,
1390 struct inode *inode)
1392 struct inode *dir = dentry->d_parent->d_inode;
1393 unsigned long offset;
1394 struct buffer_head * bh;
1395 struct ext3_dir_entry_2 *de;
1396 struct super_block * sb;
1397 int retval;
1398 #ifdef CONFIG_EXT3_INDEX
1399 int dx_fallback=0;
1400 #endif
1401 unsigned blocksize;
1402 unsigned nlen, rlen;
1403 u32 block, blocks;
1405 sb = dir->i_sb;
1406 blocksize = sb->s_blocksize;
1407 if (!dentry->d_name.len)
1408 return -EINVAL;
1409 #ifdef CONFIG_EXT3_INDEX
1410 if (is_dx(dir)) {
1411 retval = ext3_dx_add_entry(handle, dentry, inode);
1412 if (!retval || (retval != ERR_BAD_DX_DIR))
1413 return retval;
1414 EXT3_I(dir)->i_flags &= ~EXT3_INDEX_FL;
1415 dx_fallback++;
1416 ext3_mark_inode_dirty(handle, dir);
1418 #endif
1419 blocks = dir->i_size >> sb->s_blocksize_bits;
1420 for (block = 0, offset = 0; block < blocks; block++) {
1421 bh = ext3_bread(handle, dir, block, 0, &retval);
1422 if(!bh)
1423 return retval;
1424 retval = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
1425 if (retval != -ENOSPC)
1426 return retval;
1428 #ifdef CONFIG_EXT3_INDEX
1429 if (blocks == 1 && !dx_fallback &&
1430 EXT3_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_DIR_INDEX))
1431 return make_indexed_dir(handle, dentry, inode, bh);
1432 #endif
1433 brelse(bh);
1435 bh = ext3_append(handle, dir, &block, &retval);
1436 if (!bh)
1437 return retval;
1438 de = (struct ext3_dir_entry_2 *) bh->b_data;
1439 de->inode = 0;
1440 de->rec_len = cpu_to_le16(rlen = blocksize);
1441 nlen = 0;
1442 return add_dirent_to_buf(handle, dentry, inode, de, bh);
1445 #ifdef CONFIG_EXT3_INDEX
1447 * Returns 0 for success, or a negative error value
1449 static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry,
1450 struct inode *inode)
1452 struct dx_frame frames[2], *frame;
1453 struct dx_entry *entries, *at;
1454 struct dx_hash_info hinfo;
1455 struct buffer_head * bh;
1456 struct inode *dir = dentry->d_parent->d_inode;
1457 struct super_block * sb = dir->i_sb;
1458 struct ext3_dir_entry_2 *de;
1459 int err;
1461 frame = dx_probe(dentry, NULL, &hinfo, frames, &err);
1462 if (!frame)
1463 return err;
1464 entries = frame->entries;
1465 at = frame->at;
1467 if (!(bh = ext3_bread(handle,dir, dx_get_block(frame->at), 0, &err)))
1468 goto cleanup;
1470 BUFFER_TRACE(bh, "get_write_access");
1471 err = ext3_journal_get_write_access(handle, bh);
1472 if (err)
1473 goto journal_error;
1475 err = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
1476 if (err != -ENOSPC) {
1477 bh = NULL;
1478 goto cleanup;
1481 /* Block full, should compress but for now just split */
1482 dxtrace(printk("using %u of %u node entries\n",
1483 dx_get_count(entries), dx_get_limit(entries)));
1484 /* Need to split index? */
1485 if (dx_get_count(entries) == dx_get_limit(entries)) {
1486 u32 newblock;
1487 unsigned icount = dx_get_count(entries);
1488 int levels = frame - frames;
1489 struct dx_entry *entries2;
1490 struct dx_node *node2;
1491 struct buffer_head *bh2;
1493 if (levels && (dx_get_count(frames->entries) ==
1494 dx_get_limit(frames->entries))) {
1495 ext3_warning(sb, __FUNCTION__,
1496 "Directory index full!");
1497 err = -ENOSPC;
1498 goto cleanup;
1500 bh2 = ext3_append (handle, dir, &newblock, &err);
1501 if (!(bh2))
1502 goto cleanup;
1503 node2 = (struct dx_node *)(bh2->b_data);
1504 entries2 = node2->entries;
1505 node2->fake.rec_len = cpu_to_le16(sb->s_blocksize);
1506 node2->fake.inode = 0;
1507 BUFFER_TRACE(frame->bh, "get_write_access");
1508 err = ext3_journal_get_write_access(handle, frame->bh);
1509 if (err)
1510 goto journal_error;
1511 if (levels) {
1512 unsigned icount1 = icount/2, icount2 = icount - icount1;
1513 unsigned hash2 = dx_get_hash(entries + icount1);
1514 dxtrace(printk("Split index %i/%i\n", icount1, icount2));
1516 BUFFER_TRACE(frame->bh, "get_write_access"); /* index root */
1517 err = ext3_journal_get_write_access(handle,
1518 frames[0].bh);
1519 if (err)
1520 goto journal_error;
1522 memcpy ((char *) entries2, (char *) (entries + icount1),
1523 icount2 * sizeof(struct dx_entry));
1524 dx_set_count (entries, icount1);
1525 dx_set_count (entries2, icount2);
1526 dx_set_limit (entries2, dx_node_limit(dir));
1528 /* Which index block gets the new entry? */
1529 if (at - entries >= icount1) {
1530 frame->at = at = at - entries - icount1 + entries2;
1531 frame->entries = entries = entries2;
1532 swap(frame->bh, bh2);
1534 dx_insert_block (frames + 0, hash2, newblock);
1535 dxtrace(dx_show_index ("node", frames[1].entries));
1536 dxtrace(dx_show_index ("node",
1537 ((struct dx_node *) bh2->b_data)->entries));
1538 err = ext3_journal_dirty_metadata(handle, bh2);
1539 if (err)
1540 goto journal_error;
1541 brelse (bh2);
1542 } else {
1543 dxtrace(printk("Creating second level index...\n"));
1544 memcpy((char *) entries2, (char *) entries,
1545 icount * sizeof(struct dx_entry));
1546 dx_set_limit(entries2, dx_node_limit(dir));
1548 /* Set up root */
1549 dx_set_count(entries, 1);
1550 dx_set_block(entries + 0, newblock);
1551 ((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels = 1;
1553 /* Add new access path frame */
1554 frame = frames + 1;
1555 frame->at = at = at - entries + entries2;
1556 frame->entries = entries = entries2;
1557 frame->bh = bh2;
1558 err = ext3_journal_get_write_access(handle,
1559 frame->bh);
1560 if (err)
1561 goto journal_error;
1563 ext3_journal_dirty_metadata(handle, frames[0].bh);
1565 de = do_split(handle, dir, &bh, frame, &hinfo, &err);
1566 if (!de)
1567 goto cleanup;
1568 err = add_dirent_to_buf(handle, dentry, inode, de, bh);
1569 bh = NULL;
1570 goto cleanup;
1572 journal_error:
1573 ext3_std_error(dir->i_sb, err);
1574 cleanup:
1575 if (bh)
1576 brelse(bh);
1577 dx_release(frames);
1578 return err;
1580 #endif
1583 * ext3_delete_entry deletes a directory entry by merging it with the
1584 * previous entry
1586 static int ext3_delete_entry (handle_t *handle,
1587 struct inode * dir,
1588 struct ext3_dir_entry_2 * de_del,
1589 struct buffer_head * bh)
1591 struct ext3_dir_entry_2 * de, * pde;
1592 int i;
1594 i = 0;
1595 pde = NULL;
1596 de = (struct ext3_dir_entry_2 *) bh->b_data;
1597 while (i < bh->b_size) {
1598 if (!ext3_check_dir_entry("ext3_delete_entry", dir, de, bh, i))
1599 return -EIO;
1600 if (de == de_del) {
1601 BUFFER_TRACE(bh, "get_write_access");
1602 ext3_journal_get_write_access(handle, bh);
1603 if (pde)
1604 pde->rec_len =
1605 cpu_to_le16(le16_to_cpu(pde->rec_len) +
1606 le16_to_cpu(de->rec_len));
1607 else
1608 de->inode = 0;
1609 dir->i_version++;
1610 BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
1611 ext3_journal_dirty_metadata(handle, bh);
1612 return 0;
1614 i += le16_to_cpu(de->rec_len);
1615 pde = de;
1616 de = (struct ext3_dir_entry_2 *)
1617 ((char *) de + le16_to_cpu(de->rec_len));
1619 return -ENOENT;
1623 * ext3_mark_inode_dirty is somewhat expensive, so unlike ext2 we
1624 * do not perform it in these functions. We perform it at the call site,
1625 * if it is needed.
1627 static inline void ext3_inc_count(handle_t *handle, struct inode *inode)
1629 inode->i_nlink++;
1632 static inline void ext3_dec_count(handle_t *handle, struct inode *inode)
1634 inode->i_nlink--;
1637 static int ext3_add_nondir(handle_t *handle,
1638 struct dentry *dentry, struct inode *inode)
1640 int err = ext3_add_entry(handle, dentry, inode);
1641 if (!err) {
1642 ext3_mark_inode_dirty(handle, inode);
1643 d_instantiate(dentry, inode);
1644 return 0;
1646 ext3_dec_count(handle, inode);
1647 iput(inode);
1648 return err;
1652 * By the time this is called, we already have created
1653 * the directory cache entry for the new file, but it
1654 * is so far negative - it has no inode.
1656 * If the create succeeds, we fill in the inode information
1657 * with d_instantiate().
1659 static int ext3_create (struct inode * dir, struct dentry * dentry, int mode,
1660 struct nameidata *nd)
1662 handle_t *handle;
1663 struct inode * inode;
1664 int err, retries = 0;
1666 retry:
1667 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
1668 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1669 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
1670 if (IS_ERR(handle))
1671 return PTR_ERR(handle);
1673 if (IS_DIRSYNC(dir))
1674 handle->h_sync = 1;
1676 inode = ext3_new_inode (handle, dir, mode);
1677 err = PTR_ERR(inode);
1678 if (!IS_ERR(inode)) {
1679 inode->i_op = &ext3_file_inode_operations;
1680 inode->i_fop = &ext3_file_operations;
1681 ext3_set_aops(inode);
1682 err = ext3_add_nondir(handle, dentry, inode);
1684 ext3_journal_stop(handle);
1685 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1686 goto retry;
1687 return err;
1690 static int ext3_mknod (struct inode * dir, struct dentry *dentry,
1691 int mode, dev_t rdev)
1693 handle_t *handle;
1694 struct inode *inode;
1695 int err, retries = 0;
1697 if (!new_valid_dev(rdev))
1698 return -EINVAL;
1700 retry:
1701 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
1702 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1703 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
1704 if (IS_ERR(handle))
1705 return PTR_ERR(handle);
1707 if (IS_DIRSYNC(dir))
1708 handle->h_sync = 1;
1710 inode = ext3_new_inode (handle, dir, mode);
1711 err = PTR_ERR(inode);
1712 if (!IS_ERR(inode)) {
1713 init_special_inode(inode, inode->i_mode, rdev);
1714 #ifdef CONFIG_EXT3_FS_XATTR
1715 inode->i_op = &ext3_special_inode_operations;
1716 #endif
1717 err = ext3_add_nondir(handle, dentry, inode);
1719 ext3_journal_stop(handle);
1720 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1721 goto retry;
1722 return err;
1725 static int ext3_mkdir(struct inode * dir, struct dentry * dentry, int mode)
1727 handle_t *handle;
1728 struct inode * inode;
1729 struct buffer_head * dir_block;
1730 struct ext3_dir_entry_2 * de;
1731 int err, retries = 0;
1733 if (dir->i_nlink >= EXT3_LINK_MAX)
1734 return -EMLINK;
1736 retry:
1737 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
1738 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1739 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
1740 if (IS_ERR(handle))
1741 return PTR_ERR(handle);
1743 if (IS_DIRSYNC(dir))
1744 handle->h_sync = 1;
1746 inode = ext3_new_inode (handle, dir, S_IFDIR | mode);
1747 err = PTR_ERR(inode);
1748 if (IS_ERR(inode))
1749 goto out_stop;
1751 inode->i_op = &ext3_dir_inode_operations;
1752 inode->i_fop = &ext3_dir_operations;
1753 inode->i_size = EXT3_I(inode)->i_disksize = inode->i_sb->s_blocksize;
1754 dir_block = ext3_bread (handle, inode, 0, 1, &err);
1755 if (!dir_block) {
1756 inode->i_nlink--; /* is this nlink == 0? */
1757 ext3_mark_inode_dirty(handle, inode);
1758 iput (inode);
1759 goto out_stop;
1761 BUFFER_TRACE(dir_block, "get_write_access");
1762 ext3_journal_get_write_access(handle, dir_block);
1763 de = (struct ext3_dir_entry_2 *) dir_block->b_data;
1764 de->inode = cpu_to_le32(inode->i_ino);
1765 de->name_len = 1;
1766 de->rec_len = cpu_to_le16(EXT3_DIR_REC_LEN(de->name_len));
1767 strcpy (de->name, ".");
1768 ext3_set_de_type(dir->i_sb, de, S_IFDIR);
1769 de = (struct ext3_dir_entry_2 *)
1770 ((char *) de + le16_to_cpu(de->rec_len));
1771 de->inode = cpu_to_le32(dir->i_ino);
1772 de->rec_len = cpu_to_le16(inode->i_sb->s_blocksize-EXT3_DIR_REC_LEN(1));
1773 de->name_len = 2;
1774 strcpy (de->name, "..");
1775 ext3_set_de_type(dir->i_sb, de, S_IFDIR);
1776 inode->i_nlink = 2;
1777 BUFFER_TRACE(dir_block, "call ext3_journal_dirty_metadata");
1778 ext3_journal_dirty_metadata(handle, dir_block);
1779 brelse (dir_block);
1780 ext3_mark_inode_dirty(handle, inode);
1781 err = ext3_add_entry (handle, dentry, inode);
1782 if (err) {
1783 inode->i_nlink = 0;
1784 ext3_mark_inode_dirty(handle, inode);
1785 iput (inode);
1786 goto out_stop;
1788 dir->i_nlink++;
1789 ext3_update_dx_flag(dir);
1790 ext3_mark_inode_dirty(handle, dir);
1791 d_instantiate(dentry, inode);
1792 out_stop:
1793 ext3_journal_stop(handle);
1794 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1795 goto retry;
1796 return err;
1800 * routine to check that the specified directory is empty (for rmdir)
1802 static int empty_dir (struct inode * inode)
1804 unsigned long offset;
1805 struct buffer_head * bh;
1806 struct ext3_dir_entry_2 * de, * de1;
1807 struct super_block * sb;
1808 int err = 0;
1810 sb = inode->i_sb;
1811 if (inode->i_size < EXT3_DIR_REC_LEN(1) + EXT3_DIR_REC_LEN(2) ||
1812 !(bh = ext3_bread (NULL, inode, 0, 0, &err))) {
1813 if (err)
1814 ext3_error(inode->i_sb, __FUNCTION__,
1815 "error %d reading directory #%lu offset 0",
1816 err, inode->i_ino);
1817 else
1818 ext3_warning(inode->i_sb, __FUNCTION__,
1819 "bad directory (dir #%lu) - no data block",
1820 inode->i_ino);
1821 return 1;
1823 de = (struct ext3_dir_entry_2 *) bh->b_data;
1824 de1 = (struct ext3_dir_entry_2 *)
1825 ((char *) de + le16_to_cpu(de->rec_len));
1826 if (le32_to_cpu(de->inode) != inode->i_ino ||
1827 !le32_to_cpu(de1->inode) ||
1828 strcmp (".", de->name) ||
1829 strcmp ("..", de1->name)) {
1830 ext3_warning (inode->i_sb, "empty_dir",
1831 "bad directory (dir #%lu) - no `.' or `..'",
1832 inode->i_ino);
1833 brelse (bh);
1834 return 1;
1836 offset = le16_to_cpu(de->rec_len) + le16_to_cpu(de1->rec_len);
1837 de = (struct ext3_dir_entry_2 *)
1838 ((char *) de1 + le16_to_cpu(de1->rec_len));
1839 while (offset < inode->i_size ) {
1840 if (!bh ||
1841 (void *) de >= (void *) (bh->b_data+sb->s_blocksize)) {
1842 err = 0;
1843 brelse (bh);
1844 bh = ext3_bread (NULL, inode,
1845 offset >> EXT3_BLOCK_SIZE_BITS(sb), 0, &err);
1846 if (!bh) {
1847 if (err)
1848 ext3_error(sb, __FUNCTION__,
1849 "error %d reading directory"
1850 " #%lu offset %lu",
1851 err, inode->i_ino, offset);
1852 offset += sb->s_blocksize;
1853 continue;
1855 de = (struct ext3_dir_entry_2 *) bh->b_data;
1857 if (!ext3_check_dir_entry("empty_dir", inode, de, bh, offset)) {
1858 de = (struct ext3_dir_entry_2 *)(bh->b_data +
1859 sb->s_blocksize);
1860 offset = (offset | (sb->s_blocksize - 1)) + 1;
1861 continue;
1863 if (le32_to_cpu(de->inode)) {
1864 brelse (bh);
1865 return 0;
1867 offset += le16_to_cpu(de->rec_len);
1868 de = (struct ext3_dir_entry_2 *)
1869 ((char *) de + le16_to_cpu(de->rec_len));
1871 brelse (bh);
1872 return 1;
1875 /* ext3_orphan_add() links an unlinked or truncated inode into a list of
1876 * such inodes, starting at the superblock, in case we crash before the
1877 * file is closed/deleted, or in case the inode truncate spans multiple
1878 * transactions and the last transaction is not recovered after a crash.
1880 * At filesystem recovery time, we walk this list deleting unlinked
1881 * inodes and truncating linked inodes in ext3_orphan_cleanup().
1883 int ext3_orphan_add(handle_t *handle, struct inode *inode)
1885 struct super_block *sb = inode->i_sb;
1886 struct ext3_iloc iloc;
1887 int err = 0, rc;
1889 lock_super(sb);
1890 if (!list_empty(&EXT3_I(inode)->i_orphan))
1891 goto out_unlock;
1893 /* Orphan handling is only valid for files with data blocks
1894 * being truncated, or files being unlinked. */
1896 /* @@@ FIXME: Observation from aviro:
1897 * I think I can trigger J_ASSERT in ext3_orphan_add(). We block
1898 * here (on lock_super()), so race with ext3_link() which might bump
1899 * ->i_nlink. For, say it, character device. Not a regular file,
1900 * not a directory, not a symlink and ->i_nlink > 0.
1902 J_ASSERT ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
1903 S_ISLNK(inode->i_mode)) || inode->i_nlink == 0);
1905 BUFFER_TRACE(EXT3_SB(sb)->s_sbh, "get_write_access");
1906 err = ext3_journal_get_write_access(handle, EXT3_SB(sb)->s_sbh);
1907 if (err)
1908 goto out_unlock;
1910 err = ext3_reserve_inode_write(handle, inode, &iloc);
1911 if (err)
1912 goto out_unlock;
1914 /* Insert this inode at the head of the on-disk orphan list... */
1915 NEXT_ORPHAN(inode) = le32_to_cpu(EXT3_SB(sb)->s_es->s_last_orphan);
1916 EXT3_SB(sb)->s_es->s_last_orphan = cpu_to_le32(inode->i_ino);
1917 err = ext3_journal_dirty_metadata(handle, EXT3_SB(sb)->s_sbh);
1918 rc = ext3_mark_iloc_dirty(handle, inode, &iloc);
1919 if (!err)
1920 err = rc;
1922 /* Only add to the head of the in-memory list if all the
1923 * previous operations succeeded. If the orphan_add is going to
1924 * fail (possibly taking the journal offline), we can't risk
1925 * leaving the inode on the orphan list: stray orphan-list
1926 * entries can cause panics at unmount time.
1928 * This is safe: on error we're going to ignore the orphan list
1929 * anyway on the next recovery. */
1930 if (!err)
1931 list_add(&EXT3_I(inode)->i_orphan, &EXT3_SB(sb)->s_orphan);
1933 jbd_debug(4, "superblock will point to %ld\n", inode->i_ino);
1934 jbd_debug(4, "orphan inode %ld will point to %d\n",
1935 inode->i_ino, NEXT_ORPHAN(inode));
1936 out_unlock:
1937 unlock_super(sb);
1938 ext3_std_error(inode->i_sb, err);
1939 return err;
1943 * ext3_orphan_del() removes an unlinked or truncated inode from the list
1944 * of such inodes stored on disk, because it is finally being cleaned up.
1946 int ext3_orphan_del(handle_t *handle, struct inode *inode)
1948 struct list_head *prev;
1949 struct ext3_inode_info *ei = EXT3_I(inode);
1950 struct ext3_sb_info *sbi;
1951 unsigned long ino_next;
1952 struct ext3_iloc iloc;
1953 int err = 0;
1955 lock_super(inode->i_sb);
1956 if (list_empty(&ei->i_orphan)) {
1957 unlock_super(inode->i_sb);
1958 return 0;
1961 ino_next = NEXT_ORPHAN(inode);
1962 prev = ei->i_orphan.prev;
1963 sbi = EXT3_SB(inode->i_sb);
1965 jbd_debug(4, "remove inode %lu from orphan list\n", inode->i_ino);
1967 list_del_init(&ei->i_orphan);
1969 /* If we're on an error path, we may not have a valid
1970 * transaction handle with which to update the orphan list on
1971 * disk, but we still need to remove the inode from the linked
1972 * list in memory. */
1973 if (!handle)
1974 goto out;
1976 err = ext3_reserve_inode_write(handle, inode, &iloc);
1977 if (err)
1978 goto out_err;
1980 if (prev == &sbi->s_orphan) {
1981 jbd_debug(4, "superblock will point to %lu\n", ino_next);
1982 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
1983 err = ext3_journal_get_write_access(handle, sbi->s_sbh);
1984 if (err)
1985 goto out_brelse;
1986 sbi->s_es->s_last_orphan = cpu_to_le32(ino_next);
1987 err = ext3_journal_dirty_metadata(handle, sbi->s_sbh);
1988 } else {
1989 struct ext3_iloc iloc2;
1990 struct inode *i_prev =
1991 &list_entry(prev, struct ext3_inode_info, i_orphan)->vfs_inode;
1993 jbd_debug(4, "orphan inode %lu will point to %lu\n",
1994 i_prev->i_ino, ino_next);
1995 err = ext3_reserve_inode_write(handle, i_prev, &iloc2);
1996 if (err)
1997 goto out_brelse;
1998 NEXT_ORPHAN(i_prev) = ino_next;
1999 err = ext3_mark_iloc_dirty(handle, i_prev, &iloc2);
2001 if (err)
2002 goto out_brelse;
2003 NEXT_ORPHAN(inode) = 0;
2004 err = ext3_mark_iloc_dirty(handle, inode, &iloc);
2006 out_err:
2007 ext3_std_error(inode->i_sb, err);
2008 out:
2009 unlock_super(inode->i_sb);
2010 return err;
2012 out_brelse:
2013 brelse(iloc.bh);
2014 goto out_err;
2017 static int ext3_rmdir (struct inode * dir, struct dentry *dentry)
2019 int retval;
2020 struct inode * inode;
2021 struct buffer_head * bh;
2022 struct ext3_dir_entry_2 * de;
2023 handle_t *handle;
2025 /* Initialize quotas before so that eventual writes go in
2026 * separate transaction */
2027 DQUOT_INIT(dentry->d_inode);
2028 handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS(dir->i_sb));
2029 if (IS_ERR(handle))
2030 return PTR_ERR(handle);
2032 retval = -ENOENT;
2033 bh = ext3_find_entry (dentry, &de);
2034 if (!bh)
2035 goto end_rmdir;
2037 if (IS_DIRSYNC(dir))
2038 handle->h_sync = 1;
2040 inode = dentry->d_inode;
2042 retval = -EIO;
2043 if (le32_to_cpu(de->inode) != inode->i_ino)
2044 goto end_rmdir;
2046 retval = -ENOTEMPTY;
2047 if (!empty_dir (inode))
2048 goto end_rmdir;
2050 retval = ext3_delete_entry(handle, dir, de, bh);
2051 if (retval)
2052 goto end_rmdir;
2053 if (inode->i_nlink != 2)
2054 ext3_warning (inode->i_sb, "ext3_rmdir",
2055 "empty directory has nlink!=2 (%d)",
2056 inode->i_nlink);
2057 inode->i_version++;
2058 inode->i_nlink = 0;
2059 /* There's no need to set i_disksize: the fact that i_nlink is
2060 * zero will ensure that the right thing happens during any
2061 * recovery. */
2062 inode->i_size = 0;
2063 ext3_orphan_add(handle, inode);
2064 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
2065 ext3_mark_inode_dirty(handle, inode);
2066 dir->i_nlink--;
2067 ext3_update_dx_flag(dir);
2068 ext3_mark_inode_dirty(handle, dir);
2070 end_rmdir:
2071 ext3_journal_stop(handle);
2072 brelse (bh);
2073 return retval;
2076 static int ext3_unlink(struct inode * dir, struct dentry *dentry)
2078 int retval;
2079 struct inode * inode;
2080 struct buffer_head * bh;
2081 struct ext3_dir_entry_2 * de;
2082 handle_t *handle;
2084 /* Initialize quotas before so that eventual writes go
2085 * in separate transaction */
2086 DQUOT_INIT(dentry->d_inode);
2087 handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS(dir->i_sb));
2088 if (IS_ERR(handle))
2089 return PTR_ERR(handle);
2091 if (IS_DIRSYNC(dir))
2092 handle->h_sync = 1;
2094 retval = -ENOENT;
2095 bh = ext3_find_entry (dentry, &de);
2096 if (!bh)
2097 goto end_unlink;
2099 inode = dentry->d_inode;
2101 retval = -EIO;
2102 if (le32_to_cpu(de->inode) != inode->i_ino)
2103 goto end_unlink;
2105 if (!inode->i_nlink) {
2106 ext3_warning (inode->i_sb, "ext3_unlink",
2107 "Deleting nonexistent file (%lu), %d",
2108 inode->i_ino, inode->i_nlink);
2109 inode->i_nlink = 1;
2111 retval = ext3_delete_entry(handle, dir, de, bh);
2112 if (retval)
2113 goto end_unlink;
2114 dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
2115 ext3_update_dx_flag(dir);
2116 ext3_mark_inode_dirty(handle, dir);
2117 inode->i_nlink--;
2118 if (!inode->i_nlink)
2119 ext3_orphan_add(handle, inode);
2120 inode->i_ctime = dir->i_ctime;
2121 ext3_mark_inode_dirty(handle, inode);
2122 retval = 0;
2124 end_unlink:
2125 ext3_journal_stop(handle);
2126 brelse (bh);
2127 return retval;
2130 static int ext3_symlink (struct inode * dir,
2131 struct dentry *dentry, const char * symname)
2133 handle_t *handle;
2134 struct inode * inode;
2135 int l, err, retries = 0;
2137 l = strlen(symname)+1;
2138 if (l > dir->i_sb->s_blocksize)
2139 return -ENAMETOOLONG;
2141 retry:
2142 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
2143 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 5 +
2144 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
2145 if (IS_ERR(handle))
2146 return PTR_ERR(handle);
2148 if (IS_DIRSYNC(dir))
2149 handle->h_sync = 1;
2151 inode = ext3_new_inode (handle, dir, S_IFLNK|S_IRWXUGO);
2152 err = PTR_ERR(inode);
2153 if (IS_ERR(inode))
2154 goto out_stop;
2156 if (l > sizeof (EXT3_I(inode)->i_data)) {
2157 inode->i_op = &ext3_symlink_inode_operations;
2158 ext3_set_aops(inode);
2160 * page_symlink() calls into ext3_prepare/commit_write.
2161 * We have a transaction open. All is sweetness. It also sets
2162 * i_size in generic_commit_write().
2164 err = __page_symlink(inode, symname, l,
2165 mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS);
2166 if (err) {
2167 ext3_dec_count(handle, inode);
2168 ext3_mark_inode_dirty(handle, inode);
2169 iput (inode);
2170 goto out_stop;
2172 } else {
2173 inode->i_op = &ext3_fast_symlink_inode_operations;
2174 memcpy((char*)&EXT3_I(inode)->i_data,symname,l);
2175 inode->i_size = l-1;
2177 EXT3_I(inode)->i_disksize = inode->i_size;
2178 err = ext3_add_nondir(handle, dentry, inode);
2179 out_stop:
2180 ext3_journal_stop(handle);
2181 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
2182 goto retry;
2183 return err;
2186 static int ext3_link (struct dentry * old_dentry,
2187 struct inode * dir, struct dentry *dentry)
2189 handle_t *handle;
2190 struct inode *inode = old_dentry->d_inode;
2191 int err, retries = 0;
2193 if (inode->i_nlink >= EXT3_LINK_MAX)
2194 return -EMLINK;
2196 retry:
2197 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
2198 EXT3_INDEX_EXTRA_TRANS_BLOCKS);
2199 if (IS_ERR(handle))
2200 return PTR_ERR(handle);
2202 if (IS_DIRSYNC(dir))
2203 handle->h_sync = 1;
2205 inode->i_ctime = CURRENT_TIME_SEC;
2206 ext3_inc_count(handle, inode);
2207 atomic_inc(&inode->i_count);
2209 err = ext3_add_nondir(handle, dentry, inode);
2210 ext3_journal_stop(handle);
2211 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
2212 goto retry;
2213 return err;
2216 #define PARENT_INO(buffer) \
2217 ((struct ext3_dir_entry_2 *) ((char *) buffer + \
2218 le16_to_cpu(((struct ext3_dir_entry_2 *) buffer)->rec_len)))->inode
2221 * Anybody can rename anything with this: the permission checks are left to the
2222 * higher-level routines.
2224 static int ext3_rename (struct inode * old_dir, struct dentry *old_dentry,
2225 struct inode * new_dir,struct dentry *new_dentry)
2227 handle_t *handle;
2228 struct inode * old_inode, * new_inode;
2229 struct buffer_head * old_bh, * new_bh, * dir_bh;
2230 struct ext3_dir_entry_2 * old_de, * new_de;
2231 int retval;
2233 old_bh = new_bh = dir_bh = NULL;
2235 /* Initialize quotas before so that eventual writes go
2236 * in separate transaction */
2237 if (new_dentry->d_inode)
2238 DQUOT_INIT(new_dentry->d_inode);
2239 handle = ext3_journal_start(old_dir, 2 *
2240 EXT3_DATA_TRANS_BLOCKS(old_dir->i_sb) +
2241 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 2);
2242 if (IS_ERR(handle))
2243 return PTR_ERR(handle);
2245 if (IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir))
2246 handle->h_sync = 1;
2248 old_bh = ext3_find_entry (old_dentry, &old_de);
2250 * Check for inode number is _not_ due to possible IO errors.
2251 * We might rmdir the source, keep it as pwd of some process
2252 * and merrily kill the link to whatever was created under the
2253 * same name. Goodbye sticky bit ;-<
2255 old_inode = old_dentry->d_inode;
2256 retval = -ENOENT;
2257 if (!old_bh || le32_to_cpu(old_de->inode) != old_inode->i_ino)
2258 goto end_rename;
2260 new_inode = new_dentry->d_inode;
2261 new_bh = ext3_find_entry (new_dentry, &new_de);
2262 if (new_bh) {
2263 if (!new_inode) {
2264 brelse (new_bh);
2265 new_bh = NULL;
2268 if (S_ISDIR(old_inode->i_mode)) {
2269 if (new_inode) {
2270 retval = -ENOTEMPTY;
2271 if (!empty_dir (new_inode))
2272 goto end_rename;
2274 retval = -EIO;
2275 dir_bh = ext3_bread (handle, old_inode, 0, 0, &retval);
2276 if (!dir_bh)
2277 goto end_rename;
2278 if (le32_to_cpu(PARENT_INO(dir_bh->b_data)) != old_dir->i_ino)
2279 goto end_rename;
2280 retval = -EMLINK;
2281 if (!new_inode && new_dir!=old_dir &&
2282 new_dir->i_nlink >= EXT3_LINK_MAX)
2283 goto end_rename;
2285 if (!new_bh) {
2286 retval = ext3_add_entry (handle, new_dentry, old_inode);
2287 if (retval)
2288 goto end_rename;
2289 } else {
2290 BUFFER_TRACE(new_bh, "get write access");
2291 ext3_journal_get_write_access(handle, new_bh);
2292 new_de->inode = cpu_to_le32(old_inode->i_ino);
2293 if (EXT3_HAS_INCOMPAT_FEATURE(new_dir->i_sb,
2294 EXT3_FEATURE_INCOMPAT_FILETYPE))
2295 new_de->file_type = old_de->file_type;
2296 new_dir->i_version++;
2297 BUFFER_TRACE(new_bh, "call ext3_journal_dirty_metadata");
2298 ext3_journal_dirty_metadata(handle, new_bh);
2299 brelse(new_bh);
2300 new_bh = NULL;
2304 * Like most other Unix systems, set the ctime for inodes on a
2305 * rename.
2307 old_inode->i_ctime = CURRENT_TIME_SEC;
2308 ext3_mark_inode_dirty(handle, old_inode);
2311 * ok, that's it
2313 if (le32_to_cpu(old_de->inode) != old_inode->i_ino ||
2314 old_de->name_len != old_dentry->d_name.len ||
2315 strncmp(old_de->name, old_dentry->d_name.name, old_de->name_len) ||
2316 (retval = ext3_delete_entry(handle, old_dir,
2317 old_de, old_bh)) == -ENOENT) {
2318 /* old_de could have moved from under us during htree split, so
2319 * make sure that we are deleting the right entry. We might
2320 * also be pointing to a stale entry in the unused part of
2321 * old_bh so just checking inum and the name isn't enough. */
2322 struct buffer_head *old_bh2;
2323 struct ext3_dir_entry_2 *old_de2;
2325 old_bh2 = ext3_find_entry(old_dentry, &old_de2);
2326 if (old_bh2) {
2327 retval = ext3_delete_entry(handle, old_dir,
2328 old_de2, old_bh2);
2329 brelse(old_bh2);
2332 if (retval) {
2333 ext3_warning(old_dir->i_sb, "ext3_rename",
2334 "Deleting old file (%lu), %d, error=%d",
2335 old_dir->i_ino, old_dir->i_nlink, retval);
2338 if (new_inode) {
2339 new_inode->i_nlink--;
2340 new_inode->i_ctime = CURRENT_TIME_SEC;
2342 old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME_SEC;
2343 ext3_update_dx_flag(old_dir);
2344 if (dir_bh) {
2345 BUFFER_TRACE(dir_bh, "get_write_access");
2346 ext3_journal_get_write_access(handle, dir_bh);
2347 PARENT_INO(dir_bh->b_data) = cpu_to_le32(new_dir->i_ino);
2348 BUFFER_TRACE(dir_bh, "call ext3_journal_dirty_metadata");
2349 ext3_journal_dirty_metadata(handle, dir_bh);
2350 old_dir->i_nlink--;
2351 if (new_inode) {
2352 new_inode->i_nlink--;
2353 } else {
2354 new_dir->i_nlink++;
2355 ext3_update_dx_flag(new_dir);
2356 ext3_mark_inode_dirty(handle, new_dir);
2359 ext3_mark_inode_dirty(handle, old_dir);
2360 if (new_inode) {
2361 ext3_mark_inode_dirty(handle, new_inode);
2362 if (!new_inode->i_nlink)
2363 ext3_orphan_add(handle, new_inode);
2365 retval = 0;
2367 end_rename:
2368 brelse (dir_bh);
2369 brelse (old_bh);
2370 brelse (new_bh);
2371 ext3_journal_stop(handle);
2372 return retval;
2376 * directories can handle most operations...
2378 struct inode_operations ext3_dir_inode_operations = {
2379 .create = ext3_create,
2380 .lookup = ext3_lookup,
2381 .link = ext3_link,
2382 .unlink = ext3_unlink,
2383 .symlink = ext3_symlink,
2384 .mkdir = ext3_mkdir,
2385 .rmdir = ext3_rmdir,
2386 .mknod = ext3_mknod,
2387 .rename = ext3_rename,
2388 .setattr = ext3_setattr,
2389 #ifdef CONFIG_EXT3_FS_XATTR
2390 .setxattr = generic_setxattr,
2391 .getxattr = generic_getxattr,
2392 .listxattr = ext3_listxattr,
2393 .removexattr = generic_removexattr,
2394 #endif
2395 .permission = ext3_permission,
2398 struct inode_operations ext3_special_inode_operations = {
2399 .setattr = ext3_setattr,
2400 #ifdef CONFIG_EXT3_FS_XATTR
2401 .setxattr = generic_setxattr,
2402 .getxattr = generic_getxattr,
2403 .listxattr = ext3_listxattr,
2404 .removexattr = generic_removexattr,
2405 #endif
2406 .permission = ext3_permission,