v2.6.22.24-op1
[linux-2.6.22.y-op.git] / fs / ext3 / namei.c
blobe54eb5fa24928eb18df0622bc8616fb6f42dea8c
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/bio.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 u16 offs;
144 u16 size;
147 #ifdef CONFIG_EXT3_INDEX
148 static inline unsigned dx_get_block (struct dx_entry *entry);
149 static void dx_set_block (struct dx_entry *entry, unsigned value);
150 static inline unsigned dx_get_hash (struct dx_entry *entry);
151 static void dx_set_hash (struct dx_entry *entry, unsigned value);
152 static unsigned dx_get_count (struct dx_entry *entries);
153 static unsigned dx_get_limit (struct dx_entry *entries);
154 static void dx_set_count (struct dx_entry *entries, unsigned value);
155 static void dx_set_limit (struct dx_entry *entries, unsigned value);
156 static unsigned dx_root_limit (struct inode *dir, unsigned infosize);
157 static unsigned dx_node_limit (struct inode *dir);
158 static struct dx_frame *dx_probe(struct dentry *dentry,
159 struct inode *dir,
160 struct dx_hash_info *hinfo,
161 struct dx_frame *frame,
162 int *err);
163 static void dx_release (struct dx_frame *frames);
164 static int dx_make_map (struct ext3_dir_entry_2 *de, int size,
165 struct dx_hash_info *hinfo, struct dx_map_entry map[]);
166 static void dx_sort_map(struct dx_map_entry *map, unsigned count);
167 static struct ext3_dir_entry_2 *dx_move_dirents (char *from, char *to,
168 struct dx_map_entry *offsets, int count);
169 static struct ext3_dir_entry_2* dx_pack_dirents (char *base, int size);
170 static void dx_insert_block (struct dx_frame *frame, u32 hash, u32 block);
171 static int ext3_htree_next_block(struct inode *dir, __u32 hash,
172 struct dx_frame *frame,
173 struct dx_frame *frames,
174 __u32 *start_hash);
175 static struct buffer_head * ext3_dx_find_entry(struct dentry *dentry,
176 struct ext3_dir_entry_2 **res_dir, int *err);
177 static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry,
178 struct inode *inode);
181 * Future: use high four bits of block for coalesce-on-delete flags
182 * Mask them off for now.
185 static inline unsigned dx_get_block (struct dx_entry *entry)
187 return le32_to_cpu(entry->block) & 0x00ffffff;
190 static inline void dx_set_block (struct dx_entry *entry, unsigned value)
192 entry->block = cpu_to_le32(value);
195 static inline unsigned dx_get_hash (struct dx_entry *entry)
197 return le32_to_cpu(entry->hash);
200 static inline void dx_set_hash (struct dx_entry *entry, unsigned value)
202 entry->hash = cpu_to_le32(value);
205 static inline unsigned dx_get_count (struct dx_entry *entries)
207 return le16_to_cpu(((struct dx_countlimit *) entries)->count);
210 static inline unsigned dx_get_limit (struct dx_entry *entries)
212 return le16_to_cpu(((struct dx_countlimit *) entries)->limit);
215 static inline void dx_set_count (struct dx_entry *entries, unsigned value)
217 ((struct dx_countlimit *) entries)->count = cpu_to_le16(value);
220 static inline void dx_set_limit (struct dx_entry *entries, unsigned value)
222 ((struct dx_countlimit *) entries)->limit = cpu_to_le16(value);
225 static inline unsigned dx_root_limit (struct inode *dir, unsigned infosize)
227 unsigned entry_space = dir->i_sb->s_blocksize - EXT3_DIR_REC_LEN(1) -
228 EXT3_DIR_REC_LEN(2) - infosize;
229 return 0? 20: entry_space / sizeof(struct dx_entry);
232 static inline unsigned dx_node_limit (struct inode *dir)
234 unsigned entry_space = dir->i_sb->s_blocksize - EXT3_DIR_REC_LEN(0);
235 return 0? 22: entry_space / sizeof(struct dx_entry);
239 * Debug
241 #ifdef DX_DEBUG
242 static void dx_show_index (char * label, struct dx_entry *entries)
244 int i, n = dx_get_count (entries);
245 printk("%s index ", label);
246 for (i = 0; i < n; i++)
248 printk("%x->%u ", i? dx_get_hash(entries + i): 0, dx_get_block(entries + i));
250 printk("\n");
253 struct stats
255 unsigned names;
256 unsigned space;
257 unsigned bcount;
260 static struct stats dx_show_leaf(struct dx_hash_info *hinfo, struct ext3_dir_entry_2 *de,
261 int size, int show_names)
263 unsigned names = 0, space = 0;
264 char *base = (char *) de;
265 struct dx_hash_info h = *hinfo;
267 printk("names: ");
268 while ((char *) de < base + size)
270 if (de->inode)
272 if (show_names)
274 int len = de->name_len;
275 char *name = de->name;
276 while (len--) printk("%c", *name++);
277 ext3fs_dirhash(de->name, de->name_len, &h);
278 printk(":%x.%u ", h.hash,
279 ((char *) de - base));
281 space += EXT3_DIR_REC_LEN(de->name_len);
282 names++;
284 de = (struct ext3_dir_entry_2 *) ((char *) de + le16_to_cpu(de->rec_len));
286 printk("(%i)\n", names);
287 return (struct stats) { names, space, 1 };
290 struct stats dx_show_entries(struct dx_hash_info *hinfo, struct inode *dir,
291 struct dx_entry *entries, int levels)
293 unsigned blocksize = dir->i_sb->s_blocksize;
294 unsigned count = dx_get_count (entries), names = 0, space = 0, i;
295 unsigned bcount = 0;
296 struct buffer_head *bh;
297 int err;
298 printk("%i indexed blocks...\n", count);
299 for (i = 0; i < count; i++, entries++)
301 u32 block = dx_get_block(entries), hash = i? dx_get_hash(entries): 0;
302 u32 range = i < count - 1? (dx_get_hash(entries + 1) - hash): ~hash;
303 struct stats stats;
304 printk("%s%3u:%03u hash %8x/%8x ",levels?"":" ", i, block, hash, range);
305 if (!(bh = ext3_bread (NULL,dir, block, 0,&err))) continue;
306 stats = levels?
307 dx_show_entries(hinfo, dir, ((struct dx_node *) bh->b_data)->entries, levels - 1):
308 dx_show_leaf(hinfo, (struct ext3_dir_entry_2 *) bh->b_data, blocksize, 0);
309 names += stats.names;
310 space += stats.space;
311 bcount += stats.bcount;
312 brelse (bh);
314 if (bcount)
315 printk("%snames %u, fullness %u (%u%%)\n", levels?"":" ",
316 names, space/bcount,(space/bcount)*100/blocksize);
317 return (struct stats) { names, space, bcount};
319 #endif /* DX_DEBUG */
322 * Probe for a directory leaf block to search.
324 * dx_probe can return ERR_BAD_DX_DIR, which means there was a format
325 * error in the directory index, and the caller should fall back to
326 * searching the directory normally. The callers of dx_probe **MUST**
327 * check for this error code, and make sure it never gets reflected
328 * back to userspace.
330 static struct dx_frame *
331 dx_probe(struct dentry *dentry, struct inode *dir,
332 struct dx_hash_info *hinfo, struct dx_frame *frame_in, int *err)
334 unsigned count, indirect;
335 struct dx_entry *at, *entries, *p, *q, *m;
336 struct dx_root *root;
337 struct buffer_head *bh;
338 struct dx_frame *frame = frame_in;
339 u32 hash;
341 frame->bh = NULL;
342 if (dentry)
343 dir = dentry->d_parent->d_inode;
344 if (!(bh = ext3_bread (NULL,dir, 0, 0, err)))
345 goto fail;
346 root = (struct dx_root *) bh->b_data;
347 if (root->info.hash_version != DX_HASH_TEA &&
348 root->info.hash_version != DX_HASH_HALF_MD4 &&
349 root->info.hash_version != DX_HASH_LEGACY) {
350 ext3_warning(dir->i_sb, __FUNCTION__,
351 "Unrecognised inode hash code %d",
352 root->info.hash_version);
353 brelse(bh);
354 *err = ERR_BAD_DX_DIR;
355 goto fail;
357 hinfo->hash_version = root->info.hash_version;
358 hinfo->seed = EXT3_SB(dir->i_sb)->s_hash_seed;
359 if (dentry)
360 ext3fs_dirhash(dentry->d_name.name, dentry->d_name.len, hinfo);
361 hash = hinfo->hash;
363 if (root->info.unused_flags & 1) {
364 ext3_warning(dir->i_sb, __FUNCTION__,
365 "Unimplemented inode hash flags: %#06x",
366 root->info.unused_flags);
367 brelse(bh);
368 *err = ERR_BAD_DX_DIR;
369 goto fail;
372 if ((indirect = root->info.indirect_levels) > 1) {
373 ext3_warning(dir->i_sb, __FUNCTION__,
374 "Unimplemented inode hash depth: %#06x",
375 root->info.indirect_levels);
376 brelse(bh);
377 *err = ERR_BAD_DX_DIR;
378 goto fail;
381 entries = (struct dx_entry *) (((char *)&root->info) +
382 root->info.info_length);
384 if (dx_get_limit(entries) != dx_root_limit(dir,
385 root->info.info_length)) {
386 ext3_warning(dir->i_sb, __FUNCTION__,
387 "dx entry: limit != root limit");
388 brelse(bh);
389 *err = ERR_BAD_DX_DIR;
390 goto fail;
393 dxtrace (printk("Look up %x", hash));
394 while (1)
396 count = dx_get_count(entries);
397 if (!count || count > dx_get_limit(entries)) {
398 ext3_warning(dir->i_sb, __FUNCTION__,
399 "dx entry: no count or count > limit");
400 brelse(bh);
401 *err = ERR_BAD_DX_DIR;
402 goto fail2;
405 p = entries + 1;
406 q = entries + count - 1;
407 while (p <= q)
409 m = p + (q - p)/2;
410 dxtrace(printk("."));
411 if (dx_get_hash(m) > hash)
412 q = m - 1;
413 else
414 p = m + 1;
417 if (0) // linear search cross check
419 unsigned n = count - 1;
420 at = entries;
421 while (n--)
423 dxtrace(printk(","));
424 if (dx_get_hash(++at) > hash)
426 at--;
427 break;
430 assert (at == p - 1);
433 at = p - 1;
434 dxtrace(printk(" %x->%u\n", at == entries? 0: dx_get_hash(at), dx_get_block(at)));
435 frame->bh = bh;
436 frame->entries = entries;
437 frame->at = at;
438 if (!indirect--) return frame;
439 if (!(bh = ext3_bread (NULL,dir, dx_get_block(at), 0, err)))
440 goto fail2;
441 at = entries = ((struct dx_node *) bh->b_data)->entries;
442 if (dx_get_limit(entries) != dx_node_limit (dir)) {
443 ext3_warning(dir->i_sb, __FUNCTION__,
444 "dx entry: limit != node limit");
445 brelse(bh);
446 *err = ERR_BAD_DX_DIR;
447 goto fail2;
449 frame++;
450 frame->bh = NULL;
452 fail2:
453 while (frame >= frame_in) {
454 brelse(frame->bh);
455 frame--;
457 fail:
458 if (*err == ERR_BAD_DX_DIR)
459 ext3_warning(dir->i_sb, __FUNCTION__,
460 "Corrupt dir inode %ld, running e2fsck is "
461 "recommended.", dir->i_ino);
462 return NULL;
465 static void dx_release (struct dx_frame *frames)
467 if (frames[0].bh == NULL)
468 return;
470 if (((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels)
471 brelse(frames[1].bh);
472 brelse(frames[0].bh);
476 * This function increments the frame pointer to search the next leaf
477 * block, and reads in the necessary intervening nodes if the search
478 * should be necessary. Whether or not the search is necessary is
479 * controlled by the hash parameter. If the hash value is even, then
480 * the search is only continued if the next block starts with that
481 * hash value. This is used if we are searching for a specific file.
483 * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
485 * This function returns 1 if the caller should continue to search,
486 * or 0 if it should not. If there is an error reading one of the
487 * index blocks, it will a negative error code.
489 * If start_hash is non-null, it will be filled in with the starting
490 * hash of the next page.
492 static int ext3_htree_next_block(struct inode *dir, __u32 hash,
493 struct dx_frame *frame,
494 struct dx_frame *frames,
495 __u32 *start_hash)
497 struct dx_frame *p;
498 struct buffer_head *bh;
499 int err, num_frames = 0;
500 __u32 bhash;
502 p = frame;
504 * Find the next leaf page by incrementing the frame pointer.
505 * If we run out of entries in the interior node, loop around and
506 * increment pointer in the parent node. When we break out of
507 * this loop, num_frames indicates the number of interior
508 * nodes need to be read.
510 while (1) {
511 if (++(p->at) < p->entries + dx_get_count(p->entries))
512 break;
513 if (p == frames)
514 return 0;
515 num_frames++;
516 p--;
520 * If the hash is 1, then continue only if the next page has a
521 * continuation hash of any value. This is used for readdir
522 * handling. Otherwise, check to see if the hash matches the
523 * desired contiuation hash. If it doesn't, return since
524 * there's no point to read in the successive index pages.
526 bhash = dx_get_hash(p->at);
527 if (start_hash)
528 *start_hash = bhash;
529 if ((hash & 1) == 0) {
530 if ((bhash & ~1) != hash)
531 return 0;
534 * If the hash is HASH_NB_ALWAYS, we always go to the next
535 * block so no check is necessary
537 while (num_frames--) {
538 if (!(bh = ext3_bread(NULL, dir, dx_get_block(p->at),
539 0, &err)))
540 return err; /* Failure */
541 p++;
542 brelse (p->bh);
543 p->bh = bh;
544 p->at = p->entries = ((struct dx_node *) bh->b_data)->entries;
546 return 1;
551 * p is at least 6 bytes before the end of page
553 static inline struct ext3_dir_entry_2 *ext3_next_entry(struct ext3_dir_entry_2 *p)
555 return (struct ext3_dir_entry_2 *)((char*)p + le16_to_cpu(p->rec_len));
559 * This function fills a red-black tree with information from a
560 * directory block. It returns the number directory entries loaded
561 * into the tree. If there is an error it is returned in err.
563 static int htree_dirblock_to_tree(struct file *dir_file,
564 struct inode *dir, int block,
565 struct dx_hash_info *hinfo,
566 __u32 start_hash, __u32 start_minor_hash)
568 struct buffer_head *bh;
569 struct ext3_dir_entry_2 *de, *top;
570 int err, count = 0;
572 dxtrace(printk("In htree dirblock_to_tree: block %d\n", block));
573 if (!(bh = ext3_bread (NULL, dir, block, 0, &err)))
574 return err;
576 de = (struct ext3_dir_entry_2 *) bh->b_data;
577 top = (struct ext3_dir_entry_2 *) ((char *) de +
578 dir->i_sb->s_blocksize -
579 EXT3_DIR_REC_LEN(0));
580 for (; de < top; de = ext3_next_entry(de)) {
581 if (!ext3_check_dir_entry("htree_dirblock_to_tree", dir, de, bh,
582 (block<<EXT3_BLOCK_SIZE_BITS(dir->i_sb))
583 +((char *)de - bh->b_data))) {
584 /* On error, skip the f_pos to the next block. */
585 dir_file->f_pos = (dir_file->f_pos |
586 (dir->i_sb->s_blocksize - 1)) + 1;
587 brelse (bh);
588 return count;
590 ext3fs_dirhash(de->name, de->name_len, hinfo);
591 if ((hinfo->hash < start_hash) ||
592 ((hinfo->hash == start_hash) &&
593 (hinfo->minor_hash < start_minor_hash)))
594 continue;
595 if (de->inode == 0)
596 continue;
597 if ((err = ext3_htree_store_dirent(dir_file,
598 hinfo->hash, hinfo->minor_hash, de)) != 0) {
599 brelse(bh);
600 return err;
602 count++;
604 brelse(bh);
605 return count;
610 * This function fills a red-black tree with information from a
611 * directory. We start scanning the directory in hash order, starting
612 * at start_hash and start_minor_hash.
614 * This function returns the number of entries inserted into the tree,
615 * or a negative error code.
617 int ext3_htree_fill_tree(struct file *dir_file, __u32 start_hash,
618 __u32 start_minor_hash, __u32 *next_hash)
620 struct dx_hash_info hinfo;
621 struct ext3_dir_entry_2 *de;
622 struct dx_frame frames[2], *frame;
623 struct inode *dir;
624 int block, err;
625 int count = 0;
626 int ret;
627 __u32 hashval;
629 dxtrace(printk("In htree_fill_tree, start hash: %x:%x\n", start_hash,
630 start_minor_hash));
631 dir = dir_file->f_path.dentry->d_inode;
632 if (!(EXT3_I(dir)->i_flags & EXT3_INDEX_FL)) {
633 hinfo.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version;
634 hinfo.seed = EXT3_SB(dir->i_sb)->s_hash_seed;
635 count = htree_dirblock_to_tree(dir_file, dir, 0, &hinfo,
636 start_hash, start_minor_hash);
637 *next_hash = ~0;
638 return count;
640 hinfo.hash = start_hash;
641 hinfo.minor_hash = 0;
642 frame = dx_probe(NULL, dir_file->f_path.dentry->d_inode, &hinfo, frames, &err);
643 if (!frame)
644 return err;
646 /* Add '.' and '..' from the htree header */
647 if (!start_hash && !start_minor_hash) {
648 de = (struct ext3_dir_entry_2 *) frames[0].bh->b_data;
649 if ((err = ext3_htree_store_dirent(dir_file, 0, 0, de)) != 0)
650 goto errout;
651 count++;
653 if (start_hash < 2 || (start_hash ==2 && start_minor_hash==0)) {
654 de = (struct ext3_dir_entry_2 *) frames[0].bh->b_data;
655 de = ext3_next_entry(de);
656 if ((err = ext3_htree_store_dirent(dir_file, 2, 0, de)) != 0)
657 goto errout;
658 count++;
661 while (1) {
662 block = dx_get_block(frame->at);
663 ret = htree_dirblock_to_tree(dir_file, dir, block, &hinfo,
664 start_hash, start_minor_hash);
665 if (ret < 0) {
666 err = ret;
667 goto errout;
669 count += ret;
670 hashval = ~0;
671 ret = ext3_htree_next_block(dir, HASH_NB_ALWAYS,
672 frame, frames, &hashval);
673 *next_hash = hashval;
674 if (ret < 0) {
675 err = ret;
676 goto errout;
679 * Stop if: (a) there are no more entries, or
680 * (b) we have inserted at least one entry and the
681 * next hash value is not a continuation
683 if ((ret == 0) ||
684 (count && ((hashval & 1) == 0)))
685 break;
687 dx_release(frames);
688 dxtrace(printk("Fill tree: returned %d entries, next hash: %x\n",
689 count, *next_hash));
690 return count;
691 errout:
692 dx_release(frames);
693 return (err);
698 * Directory block splitting, compacting
702 * Create map of hash values, offsets, and sizes, stored at end of block.
703 * Returns number of entries mapped.
705 static int dx_make_map (struct ext3_dir_entry_2 *de, int size,
706 struct dx_hash_info *hinfo, struct dx_map_entry *map_tail)
708 int count = 0;
709 char *base = (char *) de;
710 struct dx_hash_info h = *hinfo;
712 while ((char *) de < base + size)
714 if (de->name_len && de->inode) {
715 ext3fs_dirhash(de->name, de->name_len, &h);
716 map_tail--;
717 map_tail->hash = h.hash;
718 map_tail->offs = (u16) ((char *) de - base);
719 map_tail->size = le16_to_cpu(de->rec_len);
720 count++;
721 cond_resched();
723 /* XXX: do we need to check rec_len == 0 case? -Chris */
724 de = (struct ext3_dir_entry_2 *) ((char *) de + le16_to_cpu(de->rec_len));
726 return count;
729 /* Sort map by hash value */
730 static void dx_sort_map (struct dx_map_entry *map, unsigned count)
732 struct dx_map_entry *p, *q, *top = map + count - 1;
733 int more;
734 /* Combsort until bubble sort doesn't suck */
735 while (count > 2)
737 count = count*10/13;
738 if (count - 9 < 2) /* 9, 10 -> 11 */
739 count = 11;
740 for (p = top, q = p - count; q >= map; p--, q--)
741 if (p->hash < q->hash)
742 swap(*p, *q);
744 /* Garden variety bubble sort */
745 do {
746 more = 0;
747 q = top;
748 while (q-- > map)
750 if (q[1].hash >= q[0].hash)
751 continue;
752 swap(*(q+1), *q);
753 more = 1;
755 } while(more);
758 static void dx_insert_block(struct dx_frame *frame, u32 hash, u32 block)
760 struct dx_entry *entries = frame->entries;
761 struct dx_entry *old = frame->at, *new = old + 1;
762 int count = dx_get_count(entries);
764 assert(count < dx_get_limit(entries));
765 assert(old < entries + count);
766 memmove(new + 1, new, (char *)(entries + count) - (char *)(new));
767 dx_set_hash(new, hash);
768 dx_set_block(new, block);
769 dx_set_count(entries, count + 1);
771 #endif
774 static void ext3_update_dx_flag(struct inode *inode)
776 if (!EXT3_HAS_COMPAT_FEATURE(inode->i_sb,
777 EXT3_FEATURE_COMPAT_DIR_INDEX))
778 EXT3_I(inode)->i_flags &= ~EXT3_INDEX_FL;
782 * NOTE! unlike strncmp, ext3_match returns 1 for success, 0 for failure.
784 * `len <= EXT3_NAME_LEN' is guaranteed by caller.
785 * `de != NULL' is guaranteed by caller.
787 static inline int ext3_match (int len, const char * const name,
788 struct ext3_dir_entry_2 * de)
790 if (len != de->name_len)
791 return 0;
792 if (!de->inode)
793 return 0;
794 return !memcmp(name, de->name, len);
798 * Returns 0 if not found, -1 on failure, and 1 on success
800 static inline int search_dirblock(struct buffer_head * bh,
801 struct inode *dir,
802 struct dentry *dentry,
803 unsigned long offset,
804 struct ext3_dir_entry_2 ** res_dir)
806 struct ext3_dir_entry_2 * de;
807 char * dlimit;
808 int de_len;
809 const char *name = dentry->d_name.name;
810 int namelen = dentry->d_name.len;
812 de = (struct ext3_dir_entry_2 *) bh->b_data;
813 dlimit = bh->b_data + dir->i_sb->s_blocksize;
814 while ((char *) de < dlimit) {
815 /* this code is executed quadratically often */
816 /* do minimal checking `by hand' */
818 if ((char *) de + namelen <= dlimit &&
819 ext3_match (namelen, name, de)) {
820 /* found a match - just to be sure, do a full check */
821 if (!ext3_check_dir_entry("ext3_find_entry",
822 dir, de, bh, offset))
823 return -1;
824 *res_dir = de;
825 return 1;
827 /* prevent looping on a bad block */
828 de_len = le16_to_cpu(de->rec_len);
829 if (de_len <= 0)
830 return -1;
831 offset += de_len;
832 de = (struct ext3_dir_entry_2 *) ((char *) de + de_len);
834 return 0;
839 * ext3_find_entry()
841 * finds an entry in the specified directory with the wanted name. It
842 * returns the cache buffer in which the entry was found, and the entry
843 * itself (as a parameter - res_dir). It does NOT read the inode of the
844 * entry - you'll have to do that yourself if you want to.
846 * The returned buffer_head has ->b_count elevated. The caller is expected
847 * to brelse() it when appropriate.
849 static struct buffer_head * ext3_find_entry (struct dentry *dentry,
850 struct ext3_dir_entry_2 ** res_dir)
852 struct super_block * sb;
853 struct buffer_head * bh_use[NAMEI_RA_SIZE];
854 struct buffer_head * bh, *ret = NULL;
855 unsigned long start, block, b;
856 int ra_max = 0; /* Number of bh's in the readahead
857 buffer, bh_use[] */
858 int ra_ptr = 0; /* Current index into readahead
859 buffer */
860 int num = 0;
861 int nblocks, i, err;
862 struct inode *dir = dentry->d_parent->d_inode;
863 int namelen;
864 const u8 *name;
865 unsigned blocksize;
867 *res_dir = NULL;
868 sb = dir->i_sb;
869 blocksize = sb->s_blocksize;
870 namelen = dentry->d_name.len;
871 name = dentry->d_name.name;
872 if (namelen > EXT3_NAME_LEN)
873 return NULL;
874 #ifdef CONFIG_EXT3_INDEX
875 if (is_dx(dir)) {
876 bh = ext3_dx_find_entry(dentry, res_dir, &err);
878 * On success, or if the error was file not found,
879 * return. Otherwise, fall back to doing a search the
880 * old fashioned way.
882 if (bh || (err != ERR_BAD_DX_DIR))
883 return bh;
884 dxtrace(printk("ext3_find_entry: dx failed, falling back\n"));
886 #endif
887 nblocks = dir->i_size >> EXT3_BLOCK_SIZE_BITS(sb);
888 start = EXT3_I(dir)->i_dir_start_lookup;
889 if (start >= nblocks)
890 start = 0;
891 block = start;
892 restart:
893 do {
895 * We deal with the read-ahead logic here.
897 if (ra_ptr >= ra_max) {
898 /* Refill the readahead buffer */
899 ra_ptr = 0;
900 b = block;
901 for (ra_max = 0; ra_max < NAMEI_RA_SIZE; ra_max++) {
903 * Terminate if we reach the end of the
904 * directory and must wrap, or if our
905 * search has finished at this block.
907 if (b >= nblocks || (num && block == start)) {
908 bh_use[ra_max] = NULL;
909 break;
911 num++;
912 bh = ext3_getblk(NULL, dir, b++, 0, &err);
913 bh_use[ra_max] = bh;
914 if (bh)
915 ll_rw_block(READ_META, 1, &bh);
918 if ((bh = bh_use[ra_ptr++]) == NULL)
919 goto next;
920 wait_on_buffer(bh);
921 if (!buffer_uptodate(bh)) {
922 /* read error, skip block & hope for the best */
923 ext3_error(sb, __FUNCTION__, "reading directory #%lu "
924 "offset %lu", dir->i_ino, block);
925 brelse(bh);
926 goto next;
928 i = search_dirblock(bh, dir, dentry,
929 block << EXT3_BLOCK_SIZE_BITS(sb), res_dir);
930 if (i == 1) {
931 EXT3_I(dir)->i_dir_start_lookup = block;
932 ret = bh;
933 goto cleanup_and_exit;
934 } else {
935 brelse(bh);
936 if (i < 0)
937 goto cleanup_and_exit;
939 next:
940 if (++block >= nblocks)
941 block = 0;
942 } while (block != start);
945 * If the directory has grown while we were searching, then
946 * search the last part of the directory before giving up.
948 block = nblocks;
949 nblocks = dir->i_size >> EXT3_BLOCK_SIZE_BITS(sb);
950 if (block < nblocks) {
951 start = 0;
952 goto restart;
955 cleanup_and_exit:
956 /* Clean up the read-ahead blocks */
957 for (; ra_ptr < ra_max; ra_ptr++)
958 brelse (bh_use[ra_ptr]);
959 return ret;
962 #ifdef CONFIG_EXT3_INDEX
963 static struct buffer_head * ext3_dx_find_entry(struct dentry *dentry,
964 struct ext3_dir_entry_2 **res_dir, int *err)
966 struct super_block * sb;
967 struct dx_hash_info hinfo;
968 u32 hash;
969 struct dx_frame frames[2], *frame;
970 struct ext3_dir_entry_2 *de, *top;
971 struct buffer_head *bh;
972 unsigned long block;
973 int retval;
974 int namelen = dentry->d_name.len;
975 const u8 *name = dentry->d_name.name;
976 struct inode *dir = dentry->d_parent->d_inode;
978 sb = dir->i_sb;
979 /* NFS may look up ".." - look at dx_root directory block */
980 if (namelen > 2 || name[0] != '.'||(name[1] != '.' && name[1] != '\0')){
981 if (!(frame = dx_probe(dentry, NULL, &hinfo, frames, err)))
982 return NULL;
983 } else {
984 frame = frames;
985 frame->bh = NULL; /* for dx_release() */
986 frame->at = (struct dx_entry *)frames; /* hack for zero entry*/
987 dx_set_block(frame->at, 0); /* dx_root block is 0 */
989 hash = hinfo.hash;
990 do {
991 block = dx_get_block(frame->at);
992 if (!(bh = ext3_bread (NULL,dir, block, 0, err)))
993 goto errout;
994 de = (struct ext3_dir_entry_2 *) bh->b_data;
995 top = (struct ext3_dir_entry_2 *) ((char *) de + sb->s_blocksize -
996 EXT3_DIR_REC_LEN(0));
997 for (; de < top; de = ext3_next_entry(de))
998 if (ext3_match (namelen, name, de)) {
999 if (!ext3_check_dir_entry("ext3_find_entry",
1000 dir, de, bh,
1001 (block<<EXT3_BLOCK_SIZE_BITS(sb))
1002 +((char *)de - bh->b_data))) {
1003 brelse (bh);
1004 *err = ERR_BAD_DX_DIR;
1005 goto errout;
1007 *res_dir = de;
1008 dx_release (frames);
1009 return bh;
1011 brelse (bh);
1012 /* Check to see if we should continue to search */
1013 retval = ext3_htree_next_block(dir, hash, frame,
1014 frames, NULL);
1015 if (retval < 0) {
1016 ext3_warning(sb, __FUNCTION__,
1017 "error reading index page in directory #%lu",
1018 dir->i_ino);
1019 *err = retval;
1020 goto errout;
1022 } while (retval == 1);
1024 *err = -ENOENT;
1025 errout:
1026 dxtrace(printk("%s not found\n", name));
1027 dx_release (frames);
1028 return NULL;
1030 #endif
1032 static struct dentry *ext3_lookup(struct inode * dir, struct dentry *dentry, struct nameidata *nd)
1034 struct inode * inode;
1035 struct ext3_dir_entry_2 * de;
1036 struct buffer_head * bh;
1038 if (dentry->d_name.len > EXT3_NAME_LEN)
1039 return ERR_PTR(-ENAMETOOLONG);
1041 bh = ext3_find_entry(dentry, &de);
1042 inode = NULL;
1043 if (bh) {
1044 unsigned long ino = le32_to_cpu(de->inode);
1045 brelse (bh);
1046 if (!ext3_valid_inum(dir->i_sb, ino)) {
1047 ext3_error(dir->i_sb, "ext3_lookup",
1048 "bad inode number: %lu", ino);
1049 inode = NULL;
1050 } else
1051 inode = iget(dir->i_sb, ino);
1053 if (!inode)
1054 return ERR_PTR(-EACCES);
1056 return d_splice_alias(inode, dentry);
1060 struct dentry *ext3_get_parent(struct dentry *child)
1062 unsigned long ino;
1063 struct dentry *parent;
1064 struct inode *inode;
1065 struct dentry dotdot;
1066 struct ext3_dir_entry_2 * de;
1067 struct buffer_head *bh;
1069 dotdot.d_name.name = "..";
1070 dotdot.d_name.len = 2;
1071 dotdot.d_parent = child; /* confusing, isn't it! */
1073 bh = ext3_find_entry(&dotdot, &de);
1074 inode = NULL;
1075 if (!bh)
1076 return ERR_PTR(-ENOENT);
1077 ino = le32_to_cpu(de->inode);
1078 brelse(bh);
1080 if (!ext3_valid_inum(child->d_inode->i_sb, ino)) {
1081 ext3_error(child->d_inode->i_sb, "ext3_get_parent",
1082 "bad inode number: %lu", ino);
1083 inode = NULL;
1084 } else
1085 inode = iget(child->d_inode->i_sb, ino);
1087 if (!inode)
1088 return ERR_PTR(-EACCES);
1090 parent = d_alloc_anon(inode);
1091 if (!parent) {
1092 iput(inode);
1093 parent = ERR_PTR(-ENOMEM);
1095 return parent;
1098 #define S_SHIFT 12
1099 static unsigned char ext3_type_by_mode[S_IFMT >> S_SHIFT] = {
1100 [S_IFREG >> S_SHIFT] = EXT3_FT_REG_FILE,
1101 [S_IFDIR >> S_SHIFT] = EXT3_FT_DIR,
1102 [S_IFCHR >> S_SHIFT] = EXT3_FT_CHRDEV,
1103 [S_IFBLK >> S_SHIFT] = EXT3_FT_BLKDEV,
1104 [S_IFIFO >> S_SHIFT] = EXT3_FT_FIFO,
1105 [S_IFSOCK >> S_SHIFT] = EXT3_FT_SOCK,
1106 [S_IFLNK >> S_SHIFT] = EXT3_FT_SYMLINK,
1109 static inline void ext3_set_de_type(struct super_block *sb,
1110 struct ext3_dir_entry_2 *de,
1111 umode_t mode) {
1112 if (EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_FILETYPE))
1113 de->file_type = ext3_type_by_mode[(mode & S_IFMT)>>S_SHIFT];
1116 #ifdef CONFIG_EXT3_INDEX
1118 * Move count entries from end of map between two memory locations.
1119 * Returns pointer to last entry moved.
1121 static struct ext3_dir_entry_2 *
1122 dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count)
1124 unsigned rec_len = 0;
1126 while (count--) {
1127 struct ext3_dir_entry_2 *de = (struct ext3_dir_entry_2 *) (from + map->offs);
1128 rec_len = EXT3_DIR_REC_LEN(de->name_len);
1129 memcpy (to, de, rec_len);
1130 ((struct ext3_dir_entry_2 *) to)->rec_len =
1131 cpu_to_le16(rec_len);
1132 de->inode = 0;
1133 map++;
1134 to += rec_len;
1136 return (struct ext3_dir_entry_2 *) (to - rec_len);
1140 * Compact each dir entry in the range to the minimal rec_len.
1141 * Returns pointer to last entry in range.
1143 static struct ext3_dir_entry_2* dx_pack_dirents(char *base, int size)
1145 struct ext3_dir_entry_2 *next, *to, *prev, *de = (struct ext3_dir_entry_2 *) base;
1146 unsigned rec_len = 0;
1148 prev = to = de;
1149 while ((char*)de < base + size) {
1150 next = (struct ext3_dir_entry_2 *) ((char *) de +
1151 le16_to_cpu(de->rec_len));
1152 if (de->inode && de->name_len) {
1153 rec_len = EXT3_DIR_REC_LEN(de->name_len);
1154 if (de > to)
1155 memmove(to, de, rec_len);
1156 to->rec_len = cpu_to_le16(rec_len);
1157 prev = to;
1158 to = (struct ext3_dir_entry_2 *) (((char *) to) + rec_len);
1160 de = next;
1162 return prev;
1166 * Split a full leaf block to make room for a new dir entry.
1167 * Allocate a new block, and move entries so that they are approx. equally full.
1168 * Returns pointer to de in block into which the new entry will be inserted.
1170 static struct ext3_dir_entry_2 *do_split(handle_t *handle, struct inode *dir,
1171 struct buffer_head **bh,struct dx_frame *frame,
1172 struct dx_hash_info *hinfo, int *error)
1174 unsigned blocksize = dir->i_sb->s_blocksize;
1175 unsigned count, continued;
1176 struct buffer_head *bh2;
1177 u32 newblock;
1178 u32 hash2;
1179 struct dx_map_entry *map;
1180 char *data1 = (*bh)->b_data, *data2;
1181 unsigned split, move, size, i;
1182 struct ext3_dir_entry_2 *de = NULL, *de2;
1183 int err = 0;
1185 bh2 = ext3_append (handle, dir, &newblock, &err);
1186 if (!(bh2)) {
1187 brelse(*bh);
1188 *bh = NULL;
1189 goto errout;
1192 BUFFER_TRACE(*bh, "get_write_access");
1193 err = ext3_journal_get_write_access(handle, *bh);
1194 if (err)
1195 goto journal_error;
1197 BUFFER_TRACE(frame->bh, "get_write_access");
1198 err = ext3_journal_get_write_access(handle, frame->bh);
1199 if (err)
1200 goto journal_error;
1202 data2 = bh2->b_data;
1204 /* create map in the end of data2 block */
1205 map = (struct dx_map_entry *) (data2 + blocksize);
1206 count = dx_make_map ((struct ext3_dir_entry_2 *) data1,
1207 blocksize, hinfo, map);
1208 map -= count;
1209 dx_sort_map (map, count);
1210 /* Split the existing block in the middle, size-wise */
1211 size = 0;
1212 move = 0;
1213 for (i = count-1; i >= 0; i--) {
1214 /* is more than half of this entry in 2nd half of the block? */
1215 if (size + map[i].size/2 > blocksize/2)
1216 break;
1217 size += map[i].size;
1218 move++;
1220 /* map index at which we will split */
1221 split = count - move;
1222 hash2 = map[split].hash;
1223 continued = hash2 == map[split - 1].hash;
1224 dxtrace(printk("Split block %i at %x, %i/%i\n",
1225 dx_get_block(frame->at), hash2, split, count-split));
1227 /* Fancy dance to stay within two buffers */
1228 de2 = dx_move_dirents(data1, data2, map + split, count - split);
1229 de = dx_pack_dirents(data1,blocksize);
1230 de->rec_len = cpu_to_le16(data1 + blocksize - (char *) de);
1231 de2->rec_len = cpu_to_le16(data2 + blocksize - (char *) de2);
1232 dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data1, blocksize, 1));
1233 dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data2, blocksize, 1));
1235 /* Which block gets the new entry? */
1236 if (hinfo->hash >= hash2)
1238 swap(*bh, bh2);
1239 de = de2;
1241 dx_insert_block (frame, hash2 + continued, newblock);
1242 err = ext3_journal_dirty_metadata (handle, bh2);
1243 if (err)
1244 goto journal_error;
1245 err = ext3_journal_dirty_metadata (handle, frame->bh);
1246 if (err)
1247 goto journal_error;
1248 brelse (bh2);
1249 dxtrace(dx_show_index ("frame", frame->entries));
1250 return de;
1252 journal_error:
1253 brelse(*bh);
1254 brelse(bh2);
1255 *bh = NULL;
1256 ext3_std_error(dir->i_sb, err);
1257 errout:
1258 *error = err;
1259 return NULL;
1261 #endif
1265 * Add a new entry into a directory (leaf) block. If de is non-NULL,
1266 * it points to a directory entry which is guaranteed to be large
1267 * enough for new directory entry. If de is NULL, then
1268 * add_dirent_to_buf will attempt search the directory block for
1269 * space. It will return -ENOSPC if no space is available, and -EIO
1270 * and -EEXIST if directory entry already exists.
1272 * NOTE! bh is NOT released in the case where ENOSPC is returned. In
1273 * all other cases bh is released.
1275 static int add_dirent_to_buf(handle_t *handle, struct dentry *dentry,
1276 struct inode *inode, struct ext3_dir_entry_2 *de,
1277 struct buffer_head * bh)
1279 struct inode *dir = dentry->d_parent->d_inode;
1280 const char *name = dentry->d_name.name;
1281 int namelen = dentry->d_name.len;
1282 unsigned long offset = 0;
1283 unsigned short reclen;
1284 int nlen, rlen, err;
1285 char *top;
1287 reclen = EXT3_DIR_REC_LEN(namelen);
1288 if (!de) {
1289 de = (struct ext3_dir_entry_2 *)bh->b_data;
1290 top = bh->b_data + dir->i_sb->s_blocksize - reclen;
1291 while ((char *) de <= top) {
1292 if (!ext3_check_dir_entry("ext3_add_entry", dir, de,
1293 bh, offset)) {
1294 brelse (bh);
1295 return -EIO;
1297 if (ext3_match (namelen, name, de)) {
1298 brelse (bh);
1299 return -EEXIST;
1301 nlen = EXT3_DIR_REC_LEN(de->name_len);
1302 rlen = le16_to_cpu(de->rec_len);
1303 if ((de->inode? rlen - nlen: rlen) >= reclen)
1304 break;
1305 de = (struct ext3_dir_entry_2 *)((char *)de + rlen);
1306 offset += rlen;
1308 if ((char *) de > top)
1309 return -ENOSPC;
1311 BUFFER_TRACE(bh, "get_write_access");
1312 err = ext3_journal_get_write_access(handle, bh);
1313 if (err) {
1314 ext3_std_error(dir->i_sb, err);
1315 brelse(bh);
1316 return err;
1319 /* By now the buffer is marked for journaling */
1320 nlen = EXT3_DIR_REC_LEN(de->name_len);
1321 rlen = le16_to_cpu(de->rec_len);
1322 if (de->inode) {
1323 struct ext3_dir_entry_2 *de1 = (struct ext3_dir_entry_2 *)((char *)de + nlen);
1324 de1->rec_len = cpu_to_le16(rlen - nlen);
1325 de->rec_len = cpu_to_le16(nlen);
1326 de = de1;
1328 de->file_type = EXT3_FT_UNKNOWN;
1329 if (inode) {
1330 de->inode = cpu_to_le32(inode->i_ino);
1331 ext3_set_de_type(dir->i_sb, de, inode->i_mode);
1332 } else
1333 de->inode = 0;
1334 de->name_len = namelen;
1335 memcpy (de->name, name, namelen);
1337 * XXX shouldn't update any times until successful
1338 * completion of syscall, but too many callers depend
1339 * on this.
1341 * XXX similarly, too many callers depend on
1342 * ext3_new_inode() setting the times, but error
1343 * recovery deletes the inode, so the worst that can
1344 * happen is that the times are slightly out of date
1345 * and/or different from the directory change time.
1347 dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC;
1348 ext3_update_dx_flag(dir);
1349 dir->i_version++;
1350 ext3_mark_inode_dirty(handle, dir);
1351 BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
1352 err = ext3_journal_dirty_metadata(handle, bh);
1353 if (err)
1354 ext3_std_error(dir->i_sb, err);
1355 brelse(bh);
1356 return 0;
1359 #ifdef CONFIG_EXT3_INDEX
1361 * This converts a one block unindexed directory to a 3 block indexed
1362 * directory, and adds the dentry to the indexed directory.
1364 static int make_indexed_dir(handle_t *handle, struct dentry *dentry,
1365 struct inode *inode, struct buffer_head *bh)
1367 struct inode *dir = dentry->d_parent->d_inode;
1368 const char *name = dentry->d_name.name;
1369 int namelen = dentry->d_name.len;
1370 struct buffer_head *bh2;
1371 struct dx_root *root;
1372 struct dx_frame frames[2], *frame;
1373 struct dx_entry *entries;
1374 struct ext3_dir_entry_2 *de, *de2;
1375 char *data1, *top;
1376 unsigned len;
1377 int retval;
1378 unsigned blocksize;
1379 struct dx_hash_info hinfo;
1380 u32 block;
1381 struct fake_dirent *fde;
1383 blocksize = dir->i_sb->s_blocksize;
1384 dxtrace(printk("Creating index\n"));
1385 retval = ext3_journal_get_write_access(handle, bh);
1386 if (retval) {
1387 ext3_std_error(dir->i_sb, retval);
1388 brelse(bh);
1389 return retval;
1391 root = (struct dx_root *) bh->b_data;
1393 bh2 = ext3_append (handle, dir, &block, &retval);
1394 if (!(bh2)) {
1395 brelse(bh);
1396 return retval;
1398 EXT3_I(dir)->i_flags |= EXT3_INDEX_FL;
1399 data1 = bh2->b_data;
1401 /* The 0th block becomes the root, move the dirents out */
1402 fde = &root->dotdot;
1403 de = (struct ext3_dir_entry_2 *)((char *)fde + le16_to_cpu(fde->rec_len));
1404 len = ((char *) root) + blocksize - (char *) de;
1405 memcpy (data1, de, len);
1406 de = (struct ext3_dir_entry_2 *) data1;
1407 top = data1 + len;
1408 while ((char *)(de2=(void*)de+le16_to_cpu(de->rec_len)) < top)
1409 de = de2;
1410 de->rec_len = cpu_to_le16(data1 + blocksize - (char *) de);
1411 /* Initialize the root; the dot dirents already exist */
1412 de = (struct ext3_dir_entry_2 *) (&root->dotdot);
1413 de->rec_len = cpu_to_le16(blocksize - EXT3_DIR_REC_LEN(2));
1414 memset (&root->info, 0, sizeof(root->info));
1415 root->info.info_length = sizeof(root->info);
1416 root->info.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version;
1417 entries = root->entries;
1418 dx_set_block (entries, 1);
1419 dx_set_count (entries, 1);
1420 dx_set_limit (entries, dx_root_limit(dir, sizeof(root->info)));
1422 /* Initialize as for dx_probe */
1423 hinfo.hash_version = root->info.hash_version;
1424 hinfo.seed = EXT3_SB(dir->i_sb)->s_hash_seed;
1425 ext3fs_dirhash(name, namelen, &hinfo);
1426 frame = frames;
1427 frame->entries = entries;
1428 frame->at = entries;
1429 frame->bh = bh;
1430 bh = bh2;
1431 de = do_split(handle,dir, &bh, frame, &hinfo, &retval);
1432 dx_release (frames);
1433 if (!(de))
1434 return retval;
1436 return add_dirent_to_buf(handle, dentry, inode, de, bh);
1438 #endif
1441 * ext3_add_entry()
1443 * adds a file entry to the specified directory, using the same
1444 * semantics as ext3_find_entry(). It returns NULL if it failed.
1446 * NOTE!! The inode part of 'de' is left at 0 - which means you
1447 * may not sleep between calling this and putting something into
1448 * the entry, as someone else might have used it while you slept.
1450 static int ext3_add_entry (handle_t *handle, struct dentry *dentry,
1451 struct inode *inode)
1453 struct inode *dir = dentry->d_parent->d_inode;
1454 unsigned long offset;
1455 struct buffer_head * bh;
1456 struct ext3_dir_entry_2 *de;
1457 struct super_block * sb;
1458 int retval;
1459 #ifdef CONFIG_EXT3_INDEX
1460 int dx_fallback=0;
1461 #endif
1462 unsigned blocksize;
1463 u32 block, blocks;
1465 sb = dir->i_sb;
1466 blocksize = sb->s_blocksize;
1467 if (!dentry->d_name.len)
1468 return -EINVAL;
1469 #ifdef CONFIG_EXT3_INDEX
1470 if (is_dx(dir)) {
1471 retval = ext3_dx_add_entry(handle, dentry, inode);
1472 if (!retval || (retval != ERR_BAD_DX_DIR))
1473 return retval;
1474 EXT3_I(dir)->i_flags &= ~EXT3_INDEX_FL;
1475 dx_fallback++;
1476 ext3_mark_inode_dirty(handle, dir);
1478 #endif
1479 blocks = dir->i_size >> sb->s_blocksize_bits;
1480 for (block = 0, offset = 0; block < blocks; block++) {
1481 bh = ext3_bread(handle, dir, block, 0, &retval);
1482 if(!bh)
1483 return retval;
1484 retval = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
1485 if (retval != -ENOSPC)
1486 return retval;
1488 #ifdef CONFIG_EXT3_INDEX
1489 if (blocks == 1 && !dx_fallback &&
1490 EXT3_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_DIR_INDEX))
1491 return make_indexed_dir(handle, dentry, inode, bh);
1492 #endif
1493 brelse(bh);
1495 bh = ext3_append(handle, dir, &block, &retval);
1496 if (!bh)
1497 return retval;
1498 de = (struct ext3_dir_entry_2 *) bh->b_data;
1499 de->inode = 0;
1500 de->rec_len = cpu_to_le16(blocksize);
1501 return add_dirent_to_buf(handle, dentry, inode, de, bh);
1504 #ifdef CONFIG_EXT3_INDEX
1506 * Returns 0 for success, or a negative error value
1508 static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry,
1509 struct inode *inode)
1511 struct dx_frame frames[2], *frame;
1512 struct dx_entry *entries, *at;
1513 struct dx_hash_info hinfo;
1514 struct buffer_head * bh;
1515 struct inode *dir = dentry->d_parent->d_inode;
1516 struct super_block * sb = dir->i_sb;
1517 struct ext3_dir_entry_2 *de;
1518 int err;
1520 frame = dx_probe(dentry, NULL, &hinfo, frames, &err);
1521 if (!frame)
1522 return err;
1523 entries = frame->entries;
1524 at = frame->at;
1526 if (!(bh = ext3_bread(handle,dir, dx_get_block(frame->at), 0, &err)))
1527 goto cleanup;
1529 BUFFER_TRACE(bh, "get_write_access");
1530 err = ext3_journal_get_write_access(handle, bh);
1531 if (err)
1532 goto journal_error;
1534 err = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
1535 if (err != -ENOSPC) {
1536 bh = NULL;
1537 goto cleanup;
1540 /* Block full, should compress but for now just split */
1541 dxtrace(printk("using %u of %u node entries\n",
1542 dx_get_count(entries), dx_get_limit(entries)));
1543 /* Need to split index? */
1544 if (dx_get_count(entries) == dx_get_limit(entries)) {
1545 u32 newblock;
1546 unsigned icount = dx_get_count(entries);
1547 int levels = frame - frames;
1548 struct dx_entry *entries2;
1549 struct dx_node *node2;
1550 struct buffer_head *bh2;
1552 if (levels && (dx_get_count(frames->entries) ==
1553 dx_get_limit(frames->entries))) {
1554 ext3_warning(sb, __FUNCTION__,
1555 "Directory index full!");
1556 err = -ENOSPC;
1557 goto cleanup;
1559 bh2 = ext3_append (handle, dir, &newblock, &err);
1560 if (!(bh2))
1561 goto cleanup;
1562 node2 = (struct dx_node *)(bh2->b_data);
1563 entries2 = node2->entries;
1564 node2->fake.rec_len = cpu_to_le16(sb->s_blocksize);
1565 node2->fake.inode = 0;
1566 BUFFER_TRACE(frame->bh, "get_write_access");
1567 err = ext3_journal_get_write_access(handle, frame->bh);
1568 if (err)
1569 goto journal_error;
1570 if (levels) {
1571 unsigned icount1 = icount/2, icount2 = icount - icount1;
1572 unsigned hash2 = dx_get_hash(entries + icount1);
1573 dxtrace(printk("Split index %i/%i\n", icount1, icount2));
1575 BUFFER_TRACE(frame->bh, "get_write_access"); /* index root */
1576 err = ext3_journal_get_write_access(handle,
1577 frames[0].bh);
1578 if (err)
1579 goto journal_error;
1581 memcpy ((char *) entries2, (char *) (entries + icount1),
1582 icount2 * sizeof(struct dx_entry));
1583 dx_set_count (entries, icount1);
1584 dx_set_count (entries2, icount2);
1585 dx_set_limit (entries2, dx_node_limit(dir));
1587 /* Which index block gets the new entry? */
1588 if (at - entries >= icount1) {
1589 frame->at = at = at - entries - icount1 + entries2;
1590 frame->entries = entries = entries2;
1591 swap(frame->bh, bh2);
1593 dx_insert_block (frames + 0, hash2, newblock);
1594 dxtrace(dx_show_index ("node", frames[1].entries));
1595 dxtrace(dx_show_index ("node",
1596 ((struct dx_node *) bh2->b_data)->entries));
1597 err = ext3_journal_dirty_metadata(handle, bh2);
1598 if (err)
1599 goto journal_error;
1600 brelse (bh2);
1601 } else {
1602 dxtrace(printk("Creating second level index...\n"));
1603 memcpy((char *) entries2, (char *) entries,
1604 icount * sizeof(struct dx_entry));
1605 dx_set_limit(entries2, dx_node_limit(dir));
1607 /* Set up root */
1608 dx_set_count(entries, 1);
1609 dx_set_block(entries + 0, newblock);
1610 ((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels = 1;
1612 /* Add new access path frame */
1613 frame = frames + 1;
1614 frame->at = at = at - entries + entries2;
1615 frame->entries = entries = entries2;
1616 frame->bh = bh2;
1617 err = ext3_journal_get_write_access(handle,
1618 frame->bh);
1619 if (err)
1620 goto journal_error;
1622 ext3_journal_dirty_metadata(handle, frames[0].bh);
1624 de = do_split(handle, dir, &bh, frame, &hinfo, &err);
1625 if (!de)
1626 goto cleanup;
1627 err = add_dirent_to_buf(handle, dentry, inode, de, bh);
1628 bh = NULL;
1629 goto cleanup;
1631 journal_error:
1632 ext3_std_error(dir->i_sb, err);
1633 cleanup:
1634 if (bh)
1635 brelse(bh);
1636 dx_release(frames);
1637 return err;
1639 #endif
1642 * ext3_delete_entry deletes a directory entry by merging it with the
1643 * previous entry
1645 static int ext3_delete_entry (handle_t *handle,
1646 struct inode * dir,
1647 struct ext3_dir_entry_2 * de_del,
1648 struct buffer_head * bh)
1650 struct ext3_dir_entry_2 * de, * pde;
1651 int i;
1653 i = 0;
1654 pde = NULL;
1655 de = (struct ext3_dir_entry_2 *) bh->b_data;
1656 while (i < bh->b_size) {
1657 if (!ext3_check_dir_entry("ext3_delete_entry", dir, de, bh, i))
1658 return -EIO;
1659 if (de == de_del) {
1660 BUFFER_TRACE(bh, "get_write_access");
1661 ext3_journal_get_write_access(handle, bh);
1662 if (pde)
1663 pde->rec_len =
1664 cpu_to_le16(le16_to_cpu(pde->rec_len) +
1665 le16_to_cpu(de->rec_len));
1666 else
1667 de->inode = 0;
1668 dir->i_version++;
1669 BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
1670 ext3_journal_dirty_metadata(handle, bh);
1671 return 0;
1673 i += le16_to_cpu(de->rec_len);
1674 pde = de;
1675 de = (struct ext3_dir_entry_2 *)
1676 ((char *) de + le16_to_cpu(de->rec_len));
1678 return -ENOENT;
1681 static int ext3_add_nondir(handle_t *handle,
1682 struct dentry *dentry, struct inode *inode)
1684 int err = ext3_add_entry(handle, dentry, inode);
1685 if (!err) {
1686 ext3_mark_inode_dirty(handle, inode);
1687 d_instantiate(dentry, inode);
1688 return 0;
1690 drop_nlink(inode);
1691 iput(inode);
1692 return err;
1696 * By the time this is called, we already have created
1697 * the directory cache entry for the new file, but it
1698 * is so far negative - it has no inode.
1700 * If the create succeeds, we fill in the inode information
1701 * with d_instantiate().
1703 static int ext3_create (struct inode * dir, struct dentry * dentry, int mode,
1704 struct nameidata *nd)
1706 handle_t *handle;
1707 struct inode * inode;
1708 int err, retries = 0;
1710 retry:
1711 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
1712 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1713 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
1714 if (IS_ERR(handle))
1715 return PTR_ERR(handle);
1717 if (IS_DIRSYNC(dir))
1718 handle->h_sync = 1;
1720 inode = ext3_new_inode (handle, dir, mode);
1721 err = PTR_ERR(inode);
1722 if (!IS_ERR(inode)) {
1723 inode->i_op = &ext3_file_inode_operations;
1724 inode->i_fop = &ext3_file_operations;
1725 ext3_set_aops(inode);
1726 err = ext3_add_nondir(handle, dentry, inode);
1728 ext3_journal_stop(handle);
1729 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1730 goto retry;
1731 return err;
1734 static int ext3_mknod (struct inode * dir, struct dentry *dentry,
1735 int mode, dev_t rdev)
1737 handle_t *handle;
1738 struct inode *inode;
1739 int err, retries = 0;
1741 if (!new_valid_dev(rdev))
1742 return -EINVAL;
1744 retry:
1745 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
1746 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1747 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
1748 if (IS_ERR(handle))
1749 return PTR_ERR(handle);
1751 if (IS_DIRSYNC(dir))
1752 handle->h_sync = 1;
1754 inode = ext3_new_inode (handle, dir, mode);
1755 err = PTR_ERR(inode);
1756 if (!IS_ERR(inode)) {
1757 init_special_inode(inode, inode->i_mode, rdev);
1758 #ifdef CONFIG_EXT3_FS_XATTR
1759 inode->i_op = &ext3_special_inode_operations;
1760 #endif
1761 err = ext3_add_nondir(handle, dentry, inode);
1763 ext3_journal_stop(handle);
1764 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1765 goto retry;
1766 return err;
1769 static int ext3_mkdir(struct inode * dir, struct dentry * dentry, int mode)
1771 handle_t *handle;
1772 struct inode * inode;
1773 struct buffer_head * dir_block;
1774 struct ext3_dir_entry_2 * de;
1775 int err, retries = 0;
1777 if (dir->i_nlink >= EXT3_LINK_MAX)
1778 return -EMLINK;
1780 retry:
1781 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
1782 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
1783 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
1784 if (IS_ERR(handle))
1785 return PTR_ERR(handle);
1787 if (IS_DIRSYNC(dir))
1788 handle->h_sync = 1;
1790 inode = ext3_new_inode (handle, dir, S_IFDIR | mode);
1791 err = PTR_ERR(inode);
1792 if (IS_ERR(inode))
1793 goto out_stop;
1795 inode->i_op = &ext3_dir_inode_operations;
1796 inode->i_fop = &ext3_dir_operations;
1797 inode->i_size = EXT3_I(inode)->i_disksize = inode->i_sb->s_blocksize;
1798 dir_block = ext3_bread (handle, inode, 0, 1, &err);
1799 if (!dir_block) {
1800 drop_nlink(inode); /* is this nlink == 0? */
1801 ext3_mark_inode_dirty(handle, inode);
1802 iput (inode);
1803 goto out_stop;
1805 BUFFER_TRACE(dir_block, "get_write_access");
1806 ext3_journal_get_write_access(handle, dir_block);
1807 de = (struct ext3_dir_entry_2 *) dir_block->b_data;
1808 de->inode = cpu_to_le32(inode->i_ino);
1809 de->name_len = 1;
1810 de->rec_len = cpu_to_le16(EXT3_DIR_REC_LEN(de->name_len));
1811 strcpy (de->name, ".");
1812 ext3_set_de_type(dir->i_sb, de, S_IFDIR);
1813 de = (struct ext3_dir_entry_2 *)
1814 ((char *) de + le16_to_cpu(de->rec_len));
1815 de->inode = cpu_to_le32(dir->i_ino);
1816 de->rec_len = cpu_to_le16(inode->i_sb->s_blocksize-EXT3_DIR_REC_LEN(1));
1817 de->name_len = 2;
1818 strcpy (de->name, "..");
1819 ext3_set_de_type(dir->i_sb, de, S_IFDIR);
1820 inode->i_nlink = 2;
1821 BUFFER_TRACE(dir_block, "call ext3_journal_dirty_metadata");
1822 ext3_journal_dirty_metadata(handle, dir_block);
1823 brelse (dir_block);
1824 ext3_mark_inode_dirty(handle, inode);
1825 err = ext3_add_entry (handle, dentry, inode);
1826 if (err) {
1827 inode->i_nlink = 0;
1828 ext3_mark_inode_dirty(handle, inode);
1829 iput (inode);
1830 goto out_stop;
1832 inc_nlink(dir);
1833 ext3_update_dx_flag(dir);
1834 ext3_mark_inode_dirty(handle, dir);
1835 d_instantiate(dentry, inode);
1836 out_stop:
1837 ext3_journal_stop(handle);
1838 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1839 goto retry;
1840 return err;
1844 * routine to check that the specified directory is empty (for rmdir)
1846 static int empty_dir (struct inode * inode)
1848 unsigned long offset;
1849 struct buffer_head * bh;
1850 struct ext3_dir_entry_2 * de, * de1;
1851 struct super_block * sb;
1852 int err = 0;
1854 sb = inode->i_sb;
1855 if (inode->i_size < EXT3_DIR_REC_LEN(1) + EXT3_DIR_REC_LEN(2) ||
1856 !(bh = ext3_bread (NULL, inode, 0, 0, &err))) {
1857 if (err)
1858 ext3_error(inode->i_sb, __FUNCTION__,
1859 "error %d reading directory #%lu offset 0",
1860 err, inode->i_ino);
1861 else
1862 ext3_warning(inode->i_sb, __FUNCTION__,
1863 "bad directory (dir #%lu) - no data block",
1864 inode->i_ino);
1865 return 1;
1867 de = (struct ext3_dir_entry_2 *) bh->b_data;
1868 de1 = (struct ext3_dir_entry_2 *)
1869 ((char *) de + le16_to_cpu(de->rec_len));
1870 if (le32_to_cpu(de->inode) != inode->i_ino ||
1871 !le32_to_cpu(de1->inode) ||
1872 strcmp (".", de->name) ||
1873 strcmp ("..", de1->name)) {
1874 ext3_warning (inode->i_sb, "empty_dir",
1875 "bad directory (dir #%lu) - no `.' or `..'",
1876 inode->i_ino);
1877 brelse (bh);
1878 return 1;
1880 offset = le16_to_cpu(de->rec_len) + le16_to_cpu(de1->rec_len);
1881 de = (struct ext3_dir_entry_2 *)
1882 ((char *) de1 + le16_to_cpu(de1->rec_len));
1883 while (offset < inode->i_size ) {
1884 if (!bh ||
1885 (void *) de >= (void *) (bh->b_data+sb->s_blocksize)) {
1886 err = 0;
1887 brelse (bh);
1888 bh = ext3_bread (NULL, inode,
1889 offset >> EXT3_BLOCK_SIZE_BITS(sb), 0, &err);
1890 if (!bh) {
1891 if (err)
1892 ext3_error(sb, __FUNCTION__,
1893 "error %d reading directory"
1894 " #%lu offset %lu",
1895 err, inode->i_ino, offset);
1896 offset += sb->s_blocksize;
1897 continue;
1899 de = (struct ext3_dir_entry_2 *) bh->b_data;
1901 if (!ext3_check_dir_entry("empty_dir", inode, de, bh, offset)) {
1902 de = (struct ext3_dir_entry_2 *)(bh->b_data +
1903 sb->s_blocksize);
1904 offset = (offset | (sb->s_blocksize - 1)) + 1;
1905 continue;
1907 if (le32_to_cpu(de->inode)) {
1908 brelse (bh);
1909 return 0;
1911 offset += le16_to_cpu(de->rec_len);
1912 de = (struct ext3_dir_entry_2 *)
1913 ((char *) de + le16_to_cpu(de->rec_len));
1915 brelse (bh);
1916 return 1;
1919 /* ext3_orphan_add() links an unlinked or truncated inode into a list of
1920 * such inodes, starting at the superblock, in case we crash before the
1921 * file is closed/deleted, or in case the inode truncate spans multiple
1922 * transactions and the last transaction is not recovered after a crash.
1924 * At filesystem recovery time, we walk this list deleting unlinked
1925 * inodes and truncating linked inodes in ext3_orphan_cleanup().
1927 int ext3_orphan_add(handle_t *handle, struct inode *inode)
1929 struct super_block *sb = inode->i_sb;
1930 struct ext3_iloc iloc;
1931 int err = 0, rc;
1933 lock_super(sb);
1934 if (!list_empty(&EXT3_I(inode)->i_orphan))
1935 goto out_unlock;
1937 /* Orphan handling is only valid for files with data blocks
1938 * being truncated, or files being unlinked. */
1940 /* @@@ FIXME: Observation from aviro:
1941 * I think I can trigger J_ASSERT in ext3_orphan_add(). We block
1942 * here (on lock_super()), so race with ext3_link() which might bump
1943 * ->i_nlink. For, say it, character device. Not a regular file,
1944 * not a directory, not a symlink and ->i_nlink > 0.
1946 J_ASSERT ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
1947 S_ISLNK(inode->i_mode)) || inode->i_nlink == 0);
1949 BUFFER_TRACE(EXT3_SB(sb)->s_sbh, "get_write_access");
1950 err = ext3_journal_get_write_access(handle, EXT3_SB(sb)->s_sbh);
1951 if (err)
1952 goto out_unlock;
1954 err = ext3_reserve_inode_write(handle, inode, &iloc);
1955 if (err)
1956 goto out_unlock;
1958 /* Insert this inode at the head of the on-disk orphan list... */
1959 NEXT_ORPHAN(inode) = le32_to_cpu(EXT3_SB(sb)->s_es->s_last_orphan);
1960 EXT3_SB(sb)->s_es->s_last_orphan = cpu_to_le32(inode->i_ino);
1961 err = ext3_journal_dirty_metadata(handle, EXT3_SB(sb)->s_sbh);
1962 rc = ext3_mark_iloc_dirty(handle, inode, &iloc);
1963 if (!err)
1964 err = rc;
1966 /* Only add to the head of the in-memory list if all the
1967 * previous operations succeeded. If the orphan_add is going to
1968 * fail (possibly taking the journal offline), we can't risk
1969 * leaving the inode on the orphan list: stray orphan-list
1970 * entries can cause panics at unmount time.
1972 * This is safe: on error we're going to ignore the orphan list
1973 * anyway on the next recovery. */
1974 if (!err)
1975 list_add(&EXT3_I(inode)->i_orphan, &EXT3_SB(sb)->s_orphan);
1977 jbd_debug(4, "superblock will point to %lu\n", inode->i_ino);
1978 jbd_debug(4, "orphan inode %lu will point to %d\n",
1979 inode->i_ino, NEXT_ORPHAN(inode));
1980 out_unlock:
1981 unlock_super(sb);
1982 ext3_std_error(inode->i_sb, err);
1983 return err;
1987 * ext3_orphan_del() removes an unlinked or truncated inode from the list
1988 * of such inodes stored on disk, because it is finally being cleaned up.
1990 int ext3_orphan_del(handle_t *handle, struct inode *inode)
1992 struct list_head *prev;
1993 struct ext3_inode_info *ei = EXT3_I(inode);
1994 struct ext3_sb_info *sbi;
1995 unsigned long ino_next;
1996 struct ext3_iloc iloc;
1997 int err = 0;
1999 lock_super(inode->i_sb);
2000 if (list_empty(&ei->i_orphan)) {
2001 unlock_super(inode->i_sb);
2002 return 0;
2005 ino_next = NEXT_ORPHAN(inode);
2006 prev = ei->i_orphan.prev;
2007 sbi = EXT3_SB(inode->i_sb);
2009 jbd_debug(4, "remove inode %lu from orphan list\n", inode->i_ino);
2011 list_del_init(&ei->i_orphan);
2013 /* If we're on an error path, we may not have a valid
2014 * transaction handle with which to update the orphan list on
2015 * disk, but we still need to remove the inode from the linked
2016 * list in memory. */
2017 if (!handle)
2018 goto out;
2020 err = ext3_reserve_inode_write(handle, inode, &iloc);
2021 if (err)
2022 goto out_err;
2024 if (prev == &sbi->s_orphan) {
2025 jbd_debug(4, "superblock will point to %lu\n", ino_next);
2026 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
2027 err = ext3_journal_get_write_access(handle, sbi->s_sbh);
2028 if (err)
2029 goto out_brelse;
2030 sbi->s_es->s_last_orphan = cpu_to_le32(ino_next);
2031 err = ext3_journal_dirty_metadata(handle, sbi->s_sbh);
2032 } else {
2033 struct ext3_iloc iloc2;
2034 struct inode *i_prev =
2035 &list_entry(prev, struct ext3_inode_info, i_orphan)->vfs_inode;
2037 jbd_debug(4, "orphan inode %lu will point to %lu\n",
2038 i_prev->i_ino, ino_next);
2039 err = ext3_reserve_inode_write(handle, i_prev, &iloc2);
2040 if (err)
2041 goto out_brelse;
2042 NEXT_ORPHAN(i_prev) = ino_next;
2043 err = ext3_mark_iloc_dirty(handle, i_prev, &iloc2);
2045 if (err)
2046 goto out_brelse;
2047 NEXT_ORPHAN(inode) = 0;
2048 err = ext3_mark_iloc_dirty(handle, inode, &iloc);
2050 out_err:
2051 ext3_std_error(inode->i_sb, err);
2052 out:
2053 unlock_super(inode->i_sb);
2054 return err;
2056 out_brelse:
2057 brelse(iloc.bh);
2058 goto out_err;
2061 static int ext3_rmdir (struct inode * dir, struct dentry *dentry)
2063 int retval;
2064 struct inode * inode;
2065 struct buffer_head * bh;
2066 struct ext3_dir_entry_2 * de;
2067 handle_t *handle;
2069 /* Initialize quotas before so that eventual writes go in
2070 * separate transaction */
2071 DQUOT_INIT(dentry->d_inode);
2072 handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS(dir->i_sb));
2073 if (IS_ERR(handle))
2074 return PTR_ERR(handle);
2076 retval = -ENOENT;
2077 bh = ext3_find_entry (dentry, &de);
2078 if (!bh)
2079 goto end_rmdir;
2081 if (IS_DIRSYNC(dir))
2082 handle->h_sync = 1;
2084 inode = dentry->d_inode;
2086 retval = -EIO;
2087 if (le32_to_cpu(de->inode) != inode->i_ino)
2088 goto end_rmdir;
2090 retval = -ENOTEMPTY;
2091 if (!empty_dir (inode))
2092 goto end_rmdir;
2094 retval = ext3_delete_entry(handle, dir, de, bh);
2095 if (retval)
2096 goto end_rmdir;
2097 if (inode->i_nlink != 2)
2098 ext3_warning (inode->i_sb, "ext3_rmdir",
2099 "empty directory has nlink!=2 (%d)",
2100 inode->i_nlink);
2101 inode->i_version++;
2102 clear_nlink(inode);
2103 /* There's no need to set i_disksize: the fact that i_nlink is
2104 * zero will ensure that the right thing happens during any
2105 * recovery. */
2106 inode->i_size = 0;
2107 ext3_orphan_add(handle, inode);
2108 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
2109 ext3_mark_inode_dirty(handle, inode);
2110 drop_nlink(dir);
2111 ext3_update_dx_flag(dir);
2112 ext3_mark_inode_dirty(handle, dir);
2114 end_rmdir:
2115 ext3_journal_stop(handle);
2116 brelse (bh);
2117 return retval;
2120 static int ext3_unlink(struct inode * dir, struct dentry *dentry)
2122 int retval;
2123 struct inode * inode;
2124 struct buffer_head * bh;
2125 struct ext3_dir_entry_2 * de;
2126 handle_t *handle;
2128 /* Initialize quotas before so that eventual writes go
2129 * in separate transaction */
2130 DQUOT_INIT(dentry->d_inode);
2131 handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS(dir->i_sb));
2132 if (IS_ERR(handle))
2133 return PTR_ERR(handle);
2135 if (IS_DIRSYNC(dir))
2136 handle->h_sync = 1;
2138 retval = -ENOENT;
2139 bh = ext3_find_entry (dentry, &de);
2140 if (!bh)
2141 goto end_unlink;
2143 inode = dentry->d_inode;
2145 retval = -EIO;
2146 if (le32_to_cpu(de->inode) != inode->i_ino)
2147 goto end_unlink;
2149 if (!inode->i_nlink) {
2150 ext3_warning (inode->i_sb, "ext3_unlink",
2151 "Deleting nonexistent file (%lu), %d",
2152 inode->i_ino, inode->i_nlink);
2153 inode->i_nlink = 1;
2155 retval = ext3_delete_entry(handle, dir, de, bh);
2156 if (retval)
2157 goto end_unlink;
2158 dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
2159 ext3_update_dx_flag(dir);
2160 ext3_mark_inode_dirty(handle, dir);
2161 drop_nlink(inode);
2162 if (!inode->i_nlink)
2163 ext3_orphan_add(handle, inode);
2164 inode->i_ctime = dir->i_ctime;
2165 ext3_mark_inode_dirty(handle, inode);
2166 retval = 0;
2168 end_unlink:
2169 ext3_journal_stop(handle);
2170 brelse (bh);
2171 return retval;
2174 static int ext3_symlink (struct inode * dir,
2175 struct dentry *dentry, const char * symname)
2177 handle_t *handle;
2178 struct inode * inode;
2179 int l, err, retries = 0;
2181 l = strlen(symname)+1;
2182 if (l > dir->i_sb->s_blocksize)
2183 return -ENAMETOOLONG;
2185 retry:
2186 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
2187 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 5 +
2188 2*EXT3_QUOTA_INIT_BLOCKS(dir->i_sb));
2189 if (IS_ERR(handle))
2190 return PTR_ERR(handle);
2192 if (IS_DIRSYNC(dir))
2193 handle->h_sync = 1;
2195 inode = ext3_new_inode (handle, dir, S_IFLNK|S_IRWXUGO);
2196 err = PTR_ERR(inode);
2197 if (IS_ERR(inode))
2198 goto out_stop;
2200 if (l > sizeof (EXT3_I(inode)->i_data)) {
2201 inode->i_op = &ext3_symlink_inode_operations;
2202 ext3_set_aops(inode);
2204 * page_symlink() calls into ext3_prepare/commit_write.
2205 * We have a transaction open. All is sweetness. It also sets
2206 * i_size in generic_commit_write().
2208 err = __page_symlink(inode, symname, l,
2209 mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS);
2210 if (err) {
2211 drop_nlink(inode);
2212 ext3_mark_inode_dirty(handle, inode);
2213 iput (inode);
2214 goto out_stop;
2216 } else {
2217 inode->i_op = &ext3_fast_symlink_inode_operations;
2218 memcpy((char*)&EXT3_I(inode)->i_data,symname,l);
2219 inode->i_size = l-1;
2221 EXT3_I(inode)->i_disksize = inode->i_size;
2222 err = ext3_add_nondir(handle, dentry, inode);
2223 out_stop:
2224 ext3_journal_stop(handle);
2225 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
2226 goto retry;
2227 return err;
2230 static int ext3_link (struct dentry * old_dentry,
2231 struct inode * dir, struct dentry *dentry)
2233 handle_t *handle;
2234 struct inode *inode = old_dentry->d_inode;
2235 int err, retries = 0;
2237 if (inode->i_nlink >= EXT3_LINK_MAX)
2238 return -EMLINK;
2240 * Return -ENOENT if we've raced with unlink and i_nlink is 0. Doing
2241 * otherwise has the potential to corrupt the orphan inode list.
2243 if (inode->i_nlink == 0)
2244 return -ENOENT;
2246 retry:
2247 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
2248 EXT3_INDEX_EXTRA_TRANS_BLOCKS);
2249 if (IS_ERR(handle))
2250 return PTR_ERR(handle);
2252 if (IS_DIRSYNC(dir))
2253 handle->h_sync = 1;
2255 inode->i_ctime = CURRENT_TIME_SEC;
2256 inc_nlink(inode);
2257 atomic_inc(&inode->i_count);
2259 err = ext3_add_nondir(handle, dentry, inode);
2260 ext3_journal_stop(handle);
2261 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
2262 goto retry;
2263 return err;
2266 #define PARENT_INO(buffer) \
2267 ((struct ext3_dir_entry_2 *) ((char *) buffer + \
2268 le16_to_cpu(((struct ext3_dir_entry_2 *) buffer)->rec_len)))->inode
2271 * Anybody can rename anything with this: the permission checks are left to the
2272 * higher-level routines.
2274 static int ext3_rename (struct inode * old_dir, struct dentry *old_dentry,
2275 struct inode * new_dir,struct dentry *new_dentry)
2277 handle_t *handle;
2278 struct inode * old_inode, * new_inode;
2279 struct buffer_head * old_bh, * new_bh, * dir_bh;
2280 struct ext3_dir_entry_2 * old_de, * new_de;
2281 int retval;
2283 old_bh = new_bh = dir_bh = NULL;
2285 /* Initialize quotas before so that eventual writes go
2286 * in separate transaction */
2287 if (new_dentry->d_inode)
2288 DQUOT_INIT(new_dentry->d_inode);
2289 handle = ext3_journal_start(old_dir, 2 *
2290 EXT3_DATA_TRANS_BLOCKS(old_dir->i_sb) +
2291 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 2);
2292 if (IS_ERR(handle))
2293 return PTR_ERR(handle);
2295 if (IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir))
2296 handle->h_sync = 1;
2298 old_bh = ext3_find_entry (old_dentry, &old_de);
2300 * Check for inode number is _not_ due to possible IO errors.
2301 * We might rmdir the source, keep it as pwd of some process
2302 * and merrily kill the link to whatever was created under the
2303 * same name. Goodbye sticky bit ;-<
2305 old_inode = old_dentry->d_inode;
2306 retval = -ENOENT;
2307 if (!old_bh || le32_to_cpu(old_de->inode) != old_inode->i_ino)
2308 goto end_rename;
2310 new_inode = new_dentry->d_inode;
2311 new_bh = ext3_find_entry (new_dentry, &new_de);
2312 if (new_bh) {
2313 if (!new_inode) {
2314 brelse (new_bh);
2315 new_bh = NULL;
2318 if (S_ISDIR(old_inode->i_mode)) {
2319 if (new_inode) {
2320 retval = -ENOTEMPTY;
2321 if (!empty_dir (new_inode))
2322 goto end_rename;
2324 retval = -EIO;
2325 dir_bh = ext3_bread (handle, old_inode, 0, 0, &retval);
2326 if (!dir_bh)
2327 goto end_rename;
2328 if (le32_to_cpu(PARENT_INO(dir_bh->b_data)) != old_dir->i_ino)
2329 goto end_rename;
2330 retval = -EMLINK;
2331 if (!new_inode && new_dir!=old_dir &&
2332 new_dir->i_nlink >= EXT3_LINK_MAX)
2333 goto end_rename;
2335 if (!new_bh) {
2336 retval = ext3_add_entry (handle, new_dentry, old_inode);
2337 if (retval)
2338 goto end_rename;
2339 } else {
2340 BUFFER_TRACE(new_bh, "get write access");
2341 ext3_journal_get_write_access(handle, new_bh);
2342 new_de->inode = cpu_to_le32(old_inode->i_ino);
2343 if (EXT3_HAS_INCOMPAT_FEATURE(new_dir->i_sb,
2344 EXT3_FEATURE_INCOMPAT_FILETYPE))
2345 new_de->file_type = old_de->file_type;
2346 new_dir->i_version++;
2347 BUFFER_TRACE(new_bh, "call ext3_journal_dirty_metadata");
2348 ext3_journal_dirty_metadata(handle, new_bh);
2349 brelse(new_bh);
2350 new_bh = NULL;
2354 * Like most other Unix systems, set the ctime for inodes on a
2355 * rename.
2357 old_inode->i_ctime = CURRENT_TIME_SEC;
2358 ext3_mark_inode_dirty(handle, old_inode);
2361 * ok, that's it
2363 if (le32_to_cpu(old_de->inode) != old_inode->i_ino ||
2364 old_de->name_len != old_dentry->d_name.len ||
2365 strncmp(old_de->name, old_dentry->d_name.name, old_de->name_len) ||
2366 (retval = ext3_delete_entry(handle, old_dir,
2367 old_de, old_bh)) == -ENOENT) {
2368 /* old_de could have moved from under us during htree split, so
2369 * make sure that we are deleting the right entry. We might
2370 * also be pointing to a stale entry in the unused part of
2371 * old_bh so just checking inum and the name isn't enough. */
2372 struct buffer_head *old_bh2;
2373 struct ext3_dir_entry_2 *old_de2;
2375 old_bh2 = ext3_find_entry(old_dentry, &old_de2);
2376 if (old_bh2) {
2377 retval = ext3_delete_entry(handle, old_dir,
2378 old_de2, old_bh2);
2379 brelse(old_bh2);
2382 if (retval) {
2383 ext3_warning(old_dir->i_sb, "ext3_rename",
2384 "Deleting old file (%lu), %d, error=%d",
2385 old_dir->i_ino, old_dir->i_nlink, retval);
2388 if (new_inode) {
2389 drop_nlink(new_inode);
2390 new_inode->i_ctime = CURRENT_TIME_SEC;
2392 old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME_SEC;
2393 ext3_update_dx_flag(old_dir);
2394 if (dir_bh) {
2395 BUFFER_TRACE(dir_bh, "get_write_access");
2396 ext3_journal_get_write_access(handle, dir_bh);
2397 PARENT_INO(dir_bh->b_data) = cpu_to_le32(new_dir->i_ino);
2398 BUFFER_TRACE(dir_bh, "call ext3_journal_dirty_metadata");
2399 ext3_journal_dirty_metadata(handle, dir_bh);
2400 drop_nlink(old_dir);
2401 if (new_inode) {
2402 drop_nlink(new_inode);
2403 } else {
2404 inc_nlink(new_dir);
2405 ext3_update_dx_flag(new_dir);
2406 ext3_mark_inode_dirty(handle, new_dir);
2409 ext3_mark_inode_dirty(handle, old_dir);
2410 if (new_inode) {
2411 ext3_mark_inode_dirty(handle, new_inode);
2412 if (!new_inode->i_nlink)
2413 ext3_orphan_add(handle, new_inode);
2415 retval = 0;
2417 end_rename:
2418 brelse (dir_bh);
2419 brelse (old_bh);
2420 brelse (new_bh);
2421 ext3_journal_stop(handle);
2422 return retval;
2426 * directories can handle most operations...
2428 const struct inode_operations ext3_dir_inode_operations = {
2429 .create = ext3_create,
2430 .lookup = ext3_lookup,
2431 .link = ext3_link,
2432 .unlink = ext3_unlink,
2433 .symlink = ext3_symlink,
2434 .mkdir = ext3_mkdir,
2435 .rmdir = ext3_rmdir,
2436 .mknod = ext3_mknod,
2437 .rename = ext3_rename,
2438 .setattr = ext3_setattr,
2439 #ifdef CONFIG_EXT3_FS_XATTR
2440 .setxattr = generic_setxattr,
2441 .getxattr = generic_getxattr,
2442 .listxattr = ext3_listxattr,
2443 .removexattr = generic_removexattr,
2444 #endif
2445 .permission = ext3_permission,
2448 const struct inode_operations ext3_special_inode_operations = {
2449 .setattr = ext3_setattr,
2450 #ifdef CONFIG_EXT3_FS_XATTR
2451 .setxattr = generic_setxattr,
2452 .getxattr = generic_getxattr,
2453 .listxattr = ext3_listxattr,
2454 .removexattr = generic_removexattr,
2455 #endif
2456 .permission = ext3_permission,