Merge with Linux 2.5.74.
[linux-2.6/linux-mips.git] / fs / ext3 / namei.c
blobae995cad505ac6161b854ea31c791bda41b34500
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>
39 #include "xattr.h"
40 #include "acl.h"
43 * define how far ahead to read directories while searching them.
45 #define NAMEI_RA_CHUNKS 2
46 #define NAMEI_RA_BLOCKS 4
47 #define NAMEI_RA_SIZE (NAMEI_RA_CHUNKS * NAMEI_RA_BLOCKS)
48 #define NAMEI_RA_INDEX(c,b) (((c) * NAMEI_RA_BLOCKS) + (b))
50 static struct buffer_head *ext3_append(handle_t *handle,
51 struct inode *inode,
52 u32 *block, int *err)
54 struct buffer_head *bh;
56 *block = inode->i_size >> inode->i_sb->s_blocksize_bits;
58 if ((bh = ext3_bread(handle, inode, *block, 1, err))) {
59 inode->i_size += inode->i_sb->s_blocksize;
60 EXT3_I(inode)->i_disksize = inode->i_size;
61 ext3_journal_get_write_access(handle,bh);
63 return bh;
66 #ifndef assert
67 #define assert(test) J_ASSERT(test)
68 #endif
70 #ifndef swap
71 #define swap(x, y) do { typeof(x) z = x; x = y; y = z; } while (0)
72 #endif
74 typedef struct { u32 v; } le_u32;
75 typedef struct { u16 v; } le_u16;
77 #ifdef DX_DEBUG
78 #define dxtrace(command) command
79 #else
80 #define dxtrace(command)
81 #endif
83 struct fake_dirent
85 /*le*/u32 inode;
86 /*le*/u16 rec_len;
87 u8 name_len;
88 u8 file_type;
91 struct dx_countlimit
93 le_u16 limit;
94 le_u16 count;
97 struct dx_entry
99 le_u32 hash;
100 le_u32 block;
104 * dx_root_info is laid out so that if it should somehow get overlaid by a
105 * dirent the two low bits of the hash version will be zero. Therefore, the
106 * hash version mod 4 should never be 0. Sincerely, the paranoia department.
109 struct dx_root
111 struct fake_dirent dot;
112 char dot_name[4];
113 struct fake_dirent dotdot;
114 char dotdot_name[4];
115 struct dx_root_info
117 le_u32 reserved_zero;
118 u8 hash_version;
119 u8 info_length; /* 8 */
120 u8 indirect_levels;
121 u8 unused_flags;
123 info;
124 struct dx_entry entries[0];
127 struct dx_node
129 struct fake_dirent fake;
130 struct dx_entry entries[0];
134 struct dx_frame
136 struct buffer_head *bh;
137 struct dx_entry *entries;
138 struct dx_entry *at;
141 struct dx_map_entry
143 u32 hash;
144 u32 offs;
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.v) & 0x00ffffff;
190 static inline void dx_set_block (struct dx_entry *entry, unsigned value)
192 entry->block.v = cpu_to_le32(value);
195 static inline unsigned dx_get_hash (struct dx_entry *entry)
197 return le32_to_cpu(entry->hash.v);
200 static inline void dx_set_hash (struct dx_entry *entry, unsigned value)
202 entry->hash.v = 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.v);
210 static inline unsigned dx_get_limit (struct dx_entry *entries)
212 return le16_to_cpu(((struct dx_countlimit *) entries)->limit.v);
215 static inline void dx_set_count (struct dx_entry *entries, unsigned value)
217 ((struct dx_countlimit *) entries)->count.v = cpu_to_le16(value);
220 static inline void dx_set_limit (struct dx_entry *entries, unsigned value)
222 ((struct dx_countlimit *) entries)->limit.v = 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);
383 assert(dx_get_limit(entries) == dx_root_limit(dir,
384 root->info.info_length));
385 dxtrace (printk("Look up %x", hash));
386 while (1)
388 count = dx_get_count(entries);
389 assert (count && count <= dx_get_limit(entries));
390 p = entries + 1;
391 q = entries + count - 1;
392 while (p <= q)
394 m = p + (q - p)/2;
395 dxtrace(printk("."));
396 if (dx_get_hash(m) > hash)
397 q = m - 1;
398 else
399 p = m + 1;
402 if (0) // linear search cross check
404 unsigned n = count - 1;
405 at = entries;
406 while (n--)
408 dxtrace(printk(","));
409 if (dx_get_hash(++at) > hash)
411 at--;
412 break;
415 assert (at == p - 1);
418 at = p - 1;
419 dxtrace(printk(" %x->%u\n", at == entries? 0: dx_get_hash(at), dx_get_block(at)));
420 frame->bh = bh;
421 frame->entries = entries;
422 frame->at = at;
423 if (!indirect--) return frame;
424 if (!(bh = ext3_bread (NULL,dir, dx_get_block(at), 0, err)))
425 goto fail2;
426 at = entries = ((struct dx_node *) bh->b_data)->entries;
427 assert (dx_get_limit(entries) == dx_node_limit (dir));
428 frame++;
430 fail2:
431 while (frame >= frame_in) {
432 brelse(frame->bh);
433 frame--;
435 fail:
436 return NULL;
439 static void dx_release (struct dx_frame *frames)
441 if (frames[0].bh == NULL)
442 return;
444 if (((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels)
445 brelse(frames[1].bh);
446 brelse(frames[0].bh);
450 * This function increments the frame pointer to search the next leaf
451 * block, and reads in the necessary intervening nodes if the search
452 * should be necessary. Whether or not the search is necessary is
453 * controlled by the hash parameter. If the hash value is even, then
454 * the search is only continued if the next block starts with that
455 * hash value. This is used if we are searching for a specific file.
457 * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
459 * This function returns 1 if the caller should continue to search,
460 * or 0 if it should not. If there is an error reading one of the
461 * index blocks, it will a negative error code.
463 * If start_hash is non-null, it will be filled in with the starting
464 * hash of the next page.
466 static int ext3_htree_next_block(struct inode *dir, __u32 hash,
467 struct dx_frame *frame,
468 struct dx_frame *frames,
469 __u32 *start_hash)
471 struct dx_frame *p;
472 struct buffer_head *bh;
473 int err, num_frames = 0;
474 __u32 bhash;
476 p = frame;
478 * Find the next leaf page by incrementing the frame pointer.
479 * If we run out of entries in the interior node, loop around and
480 * increment pointer in the parent node. When we break out of
481 * this loop, num_frames indicates the number of interior
482 * nodes need to be read.
484 while (1) {
485 if (++(p->at) < p->entries + dx_get_count(p->entries))
486 break;
487 if (p == frames)
488 return 0;
489 num_frames++;
490 p--;
494 * If the hash is 1, then continue only if the next page has a
495 * continuation hash of any value. This is used for readdir
496 * handling. Otherwise, check to see if the hash matches the
497 * desired contiuation hash. If it doesn't, return since
498 * there's no point to read in the successive index pages.
500 bhash = dx_get_hash(p->at);
501 if (start_hash)
502 *start_hash = bhash;
503 if ((hash & 1) == 0) {
504 if ((bhash & ~1) != hash)
505 return 0;
508 * If the hash is HASH_NB_ALWAYS, we always go to the next
509 * block so no check is necessary
511 while (num_frames--) {
512 if (!(bh = ext3_bread(NULL, dir, dx_get_block(p->at),
513 0, &err)))
514 return err; /* Failure */
515 p++;
516 brelse (p->bh);
517 p->bh = bh;
518 p->at = p->entries = ((struct dx_node *) bh->b_data)->entries;
520 return 1;
525 * p is at least 6 bytes before the end of page
527 static inline struct ext3_dir_entry_2 *ext3_next_entry(struct ext3_dir_entry_2 *p)
529 return (struct ext3_dir_entry_2 *)((char*)p + le16_to_cpu(p->rec_len));
533 * This function fills a red-black tree with information from a
534 * directory block. It returns the number directory entries loaded
535 * into the tree. If there is an error it is returned in err.
537 static int htree_dirblock_to_tree(struct file *dir_file,
538 struct inode *dir, int block,
539 struct dx_hash_info *hinfo,
540 __u32 start_hash, __u32 start_minor_hash)
542 struct buffer_head *bh;
543 struct ext3_dir_entry_2 *de, *top;
544 int err, count = 0;
546 dxtrace(printk("In htree dirblock_to_tree: block %d\n", block));
547 if (!(bh = ext3_bread (NULL, dir, block, 0, &err)))
548 return err;
550 de = (struct ext3_dir_entry_2 *) bh->b_data;
551 top = (struct ext3_dir_entry_2 *) ((char *) de +
552 dir->i_sb->s_blocksize -
553 EXT3_DIR_REC_LEN(0));
554 for (; de < top; de = ext3_next_entry(de)) {
555 ext3fs_dirhash(de->name, de->name_len, hinfo);
556 if ((hinfo->hash < start_hash) ||
557 ((hinfo->hash == start_hash) &&
558 (hinfo->minor_hash < start_minor_hash)))
559 continue;
560 if ((err = ext3_htree_store_dirent(dir_file,
561 hinfo->hash, hinfo->minor_hash, de)) != 0) {
562 brelse(bh);
563 return err;
565 count++;
567 brelse(bh);
568 return count;
573 * This function fills a red-black tree with information from a
574 * directory. We start scanning the directory in hash order, starting
575 * at start_hash and start_minor_hash.
577 * This function returns the number of entries inserted into the tree,
578 * or a negative error code.
580 int ext3_htree_fill_tree(struct file *dir_file, __u32 start_hash,
581 __u32 start_minor_hash, __u32 *next_hash)
583 struct dx_hash_info hinfo;
584 struct ext3_dir_entry_2 *de;
585 struct dx_frame frames[2], *frame;
586 struct inode *dir;
587 int block, err;
588 int count = 0;
589 int ret;
590 __u32 hashval;
592 dxtrace(printk("In htree_fill_tree, start hash: %x:%x\n", start_hash,
593 start_minor_hash));
594 dir = dir_file->f_dentry->d_inode;
595 if (!(EXT3_I(dir)->i_flags & EXT3_INDEX_FL)) {
596 hinfo.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version;
597 hinfo.seed = EXT3_SB(dir->i_sb)->s_hash_seed;
598 count = htree_dirblock_to_tree(dir_file, dir, 0, &hinfo,
599 start_hash, start_minor_hash);
600 *next_hash = ~0;
601 return count;
603 hinfo.hash = start_hash;
604 hinfo.minor_hash = 0;
605 frame = dx_probe(0, dir_file->f_dentry->d_inode, &hinfo, frames, &err);
606 if (!frame)
607 return err;
609 /* Add '.' and '..' from the htree header */
610 if (!start_hash && !start_minor_hash) {
611 de = (struct ext3_dir_entry_2 *) frames[0].bh->b_data;
612 if ((err = ext3_htree_store_dirent(dir_file, 0, 0, de)) != 0)
613 goto errout;
614 de = ext3_next_entry(de);
615 if ((err = ext3_htree_store_dirent(dir_file, 0, 0, de)) != 0)
616 goto errout;
617 count += 2;
620 while (1) {
621 block = dx_get_block(frame->at);
622 ret = htree_dirblock_to_tree(dir_file, dir, block, &hinfo,
623 start_hash, start_minor_hash);
624 if (ret < 0) {
625 err = ret;
626 goto errout;
628 count += ret;
629 hashval = ~0;
630 ret = ext3_htree_next_block(dir, HASH_NB_ALWAYS,
631 frame, frames, &hashval);
632 *next_hash = hashval;
633 if (ret < 0) {
634 err = ret;
635 goto errout;
638 * Stop if: (a) there are no more entries, or
639 * (b) we have inserted at least one entry and the
640 * next hash value is not a continuation
642 if ((ret == 0) ||
643 (count && ((hashval & 1) == 0)))
644 break;
646 dx_release(frames);
647 dxtrace(printk("Fill tree: returned %d entries, next hash: %x\n",
648 count, *next_hash));
649 return count;
650 errout:
651 dx_release(frames);
652 return (err);
657 * Directory block splitting, compacting
660 static int dx_make_map (struct ext3_dir_entry_2 *de, int size,
661 struct dx_hash_info *hinfo, struct dx_map_entry *map_tail)
663 int count = 0;
664 char *base = (char *) de;
665 struct dx_hash_info h = *hinfo;
667 while ((char *) de < base + size)
669 if (de->name_len && de->inode) {
670 ext3fs_dirhash(de->name, de->name_len, &h);
671 map_tail--;
672 map_tail->hash = h.hash;
673 map_tail->offs = (u32) ((char *) de - base);
674 count++;
676 /* XXX: do we need to check rec_len == 0 case? -Chris */
677 de = (struct ext3_dir_entry_2 *) ((char *) de + le16_to_cpu(de->rec_len));
679 return count;
682 static void dx_sort_map (struct dx_map_entry *map, unsigned count)
684 struct dx_map_entry *p, *q, *top = map + count - 1;
685 int more;
686 /* Combsort until bubble sort doesn't suck */
687 while (count > 2)
689 count = count*10/13;
690 if (count - 9 < 2) /* 9, 10 -> 11 */
691 count = 11;
692 for (p = top, q = p - count; q >= map; p--, q--)
693 if (p->hash < q->hash)
694 swap(*p, *q);
696 /* Garden variety bubble sort */
697 do {
698 more = 0;
699 q = top;
700 while (q-- > map)
702 if (q[1].hash >= q[0].hash)
703 continue;
704 swap(*(q+1), *q);
705 more = 1;
707 } while(more);
710 static void dx_insert_block(struct dx_frame *frame, u32 hash, u32 block)
712 struct dx_entry *entries = frame->entries;
713 struct dx_entry *old = frame->at, *new = old + 1;
714 int count = dx_get_count(entries);
716 assert(count < dx_get_limit(entries));
717 assert(old < entries + count);
718 memmove(new + 1, new, (char *)(entries + count) - (char *)(new));
719 dx_set_hash(new, hash);
720 dx_set_block(new, block);
721 dx_set_count(entries, count + 1);
723 #endif
726 static void ext3_update_dx_flag(struct inode *inode)
728 if (!EXT3_HAS_COMPAT_FEATURE(inode->i_sb,
729 EXT3_FEATURE_COMPAT_DIR_INDEX))
730 EXT3_I(inode)->i_flags &= ~EXT3_INDEX_FL;
734 * NOTE! unlike strncmp, ext3_match returns 1 for success, 0 for failure.
736 * `len <= EXT3_NAME_LEN' is guaranteed by caller.
737 * `de != NULL' is guaranteed by caller.
739 static inline int ext3_match (int len, const char * const name,
740 struct ext3_dir_entry_2 * de)
742 if (len != de->name_len)
743 return 0;
744 if (!de->inode)
745 return 0;
746 return !memcmp(name, de->name, len);
750 * Returns 0 if not found, -1 on failure, and 1 on success
752 static inline int search_dirblock(struct buffer_head * bh,
753 struct inode *dir,
754 struct dentry *dentry,
755 unsigned long offset,
756 struct ext3_dir_entry_2 ** res_dir)
758 struct ext3_dir_entry_2 * de;
759 char * dlimit;
760 int de_len;
761 const char *name = dentry->d_name.name;
762 int namelen = dentry->d_name.len;
764 de = (struct ext3_dir_entry_2 *) bh->b_data;
765 dlimit = bh->b_data + dir->i_sb->s_blocksize;
766 while ((char *) de < dlimit) {
767 /* this code is executed quadratically often */
768 /* do minimal checking `by hand' */
770 if ((char *) de + namelen <= dlimit &&
771 ext3_match (namelen, name, de)) {
772 /* found a match - just to be sure, do a full check */
773 if (!ext3_check_dir_entry("ext3_find_entry",
774 dir, de, bh, offset))
775 return -1;
776 *res_dir = de;
777 return 1;
779 /* prevent looping on a bad block */
780 de_len = le16_to_cpu(de->rec_len);
781 if (de_len <= 0)
782 return -1;
783 offset += de_len;
784 de = (struct ext3_dir_entry_2 *) ((char *) de + de_len);
786 return 0;
791 * ext3_find_entry()
793 * finds an entry in the specified directory with the wanted name. It
794 * returns the cache buffer in which the entry was found, and the entry
795 * itself (as a parameter - res_dir). It does NOT read the inode of the
796 * entry - you'll have to do that yourself if you want to.
798 * The returned buffer_head has ->b_count elevated. The caller is expected
799 * to brelse() it when appropriate.
801 static struct buffer_head * ext3_find_entry (struct dentry *dentry,
802 struct ext3_dir_entry_2 ** res_dir)
804 struct super_block * sb;
805 struct buffer_head * bh_use[NAMEI_RA_SIZE];
806 struct buffer_head * bh, *ret = NULL;
807 unsigned long start, block, b;
808 int ra_max = 0; /* Number of bh's in the readahead
809 buffer, bh_use[] */
810 int ra_ptr = 0; /* Current index into readahead
811 buffer */
812 int num = 0;
813 int nblocks, i, err;
814 struct inode *dir = dentry->d_parent->d_inode;
815 int namelen;
816 const u8 *name;
817 unsigned blocksize;
819 *res_dir = NULL;
820 sb = dir->i_sb;
821 blocksize = sb->s_blocksize;
822 namelen = dentry->d_name.len;
823 name = dentry->d_name.name;
824 if (namelen > EXT3_NAME_LEN)
825 return NULL;
826 #ifdef CONFIG_EXT3_INDEX
827 if (is_dx(dir)) {
828 bh = ext3_dx_find_entry(dentry, res_dir, &err);
830 * On success, or if the error was file not found,
831 * return. Otherwise, fall back to doing a search the
832 * old fashioned way.
834 if (bh || (err != ERR_BAD_DX_DIR))
835 return bh;
836 dxtrace(printk("ext3_find_entry: dx failed, falling back\n"));
838 #endif
839 nblocks = dir->i_size >> EXT3_BLOCK_SIZE_BITS(sb);
840 start = EXT3_I(dir)->i_dir_start_lookup;
841 if (start >= nblocks)
842 start = 0;
843 block = start;
844 restart:
845 do {
847 * We deal with the read-ahead logic here.
849 if (ra_ptr >= ra_max) {
850 /* Refill the readahead buffer */
851 ra_ptr = 0;
852 b = block;
853 for (ra_max = 0; ra_max < NAMEI_RA_SIZE; ra_max++) {
855 * Terminate if we reach the end of the
856 * directory and must wrap, or if our
857 * search has finished at this block.
859 if (b >= nblocks || (num && block == start)) {
860 bh_use[ra_max] = NULL;
861 break;
863 num++;
864 bh = ext3_getblk(NULL, dir, b++, 0, &err);
865 bh_use[ra_max] = bh;
866 if (bh)
867 ll_rw_block(READ, 1, &bh);
870 if ((bh = bh_use[ra_ptr++]) == NULL)
871 goto next;
872 wait_on_buffer(bh);
873 if (!buffer_uptodate(bh)) {
874 /* read error, skip block & hope for the best */
875 brelse(bh);
876 goto next;
878 i = search_dirblock(bh, dir, dentry,
879 block << EXT3_BLOCK_SIZE_BITS(sb), res_dir);
880 if (i == 1) {
881 EXT3_I(dir)->i_dir_start_lookup = block;
882 ret = bh;
883 goto cleanup_and_exit;
884 } else {
885 brelse(bh);
886 if (i < 0)
887 goto cleanup_and_exit;
889 next:
890 if (++block >= nblocks)
891 block = 0;
892 } while (block != start);
895 * If the directory has grown while we were searching, then
896 * search the last part of the directory before giving up.
898 block = nblocks;
899 nblocks = dir->i_size >> EXT3_BLOCK_SIZE_BITS(sb);
900 if (block < nblocks) {
901 start = 0;
902 goto restart;
905 cleanup_and_exit:
906 /* Clean up the read-ahead blocks */
907 for (; ra_ptr < ra_max; ra_ptr++)
908 brelse (bh_use[ra_ptr]);
909 return ret;
912 #ifdef CONFIG_EXT3_INDEX
913 static struct buffer_head * ext3_dx_find_entry(struct dentry *dentry,
914 struct ext3_dir_entry_2 **res_dir, int *err)
916 struct super_block * sb;
917 struct dx_hash_info hinfo;
918 u32 hash;
919 struct dx_frame frames[2], *frame;
920 struct ext3_dir_entry_2 *de, *top;
921 struct buffer_head *bh;
922 unsigned long block;
923 int retval;
924 int namelen = dentry->d_name.len;
925 const u8 *name = dentry->d_name.name;
926 struct inode *dir = dentry->d_parent->d_inode;
928 sb = dir->i_sb;
929 if (!(frame = dx_probe (dentry, 0, &hinfo, frames, err)))
930 return NULL;
931 hash = hinfo.hash;
932 do {
933 block = dx_get_block(frame->at);
934 if (!(bh = ext3_bread (NULL,dir, block, 0, err)))
935 goto errout;
936 de = (struct ext3_dir_entry_2 *) bh->b_data;
937 top = (struct ext3_dir_entry_2 *) ((char *) de + sb->s_blocksize -
938 EXT3_DIR_REC_LEN(0));
939 for (; de < top; de = ext3_next_entry(de))
940 if (ext3_match (namelen, name, de)) {
941 if (!ext3_check_dir_entry("ext3_find_entry",
942 dir, de, bh,
943 (block<<EXT3_BLOCK_SIZE_BITS(sb))
944 +((char *)de - bh->b_data))) {
945 brelse (bh);
946 goto errout;
948 *res_dir = de;
949 dx_release (frames);
950 return bh;
952 brelse (bh);
953 /* Check to see if we should continue to search */
954 retval = ext3_htree_next_block(dir, hash, frame,
955 frames, 0);
956 if (retval < 0) {
957 ext3_warning(sb, __FUNCTION__,
958 "error reading index page in directory #%lu",
959 dir->i_ino);
960 *err = retval;
961 goto errout;
963 } while (retval == 1);
965 *err = -ENOENT;
966 errout:
967 dxtrace(printk("%s not found\n", name));
968 dx_release (frames);
969 return NULL;
971 #endif
973 static struct dentry *ext3_lookup(struct inode * dir, struct dentry *dentry)
975 struct inode * inode;
976 struct ext3_dir_entry_2 * de;
977 struct buffer_head * bh;
979 if (dentry->d_name.len > EXT3_NAME_LEN)
980 return ERR_PTR(-ENAMETOOLONG);
982 bh = ext3_find_entry(dentry, &de);
983 inode = NULL;
984 if (bh) {
985 unsigned long ino = le32_to_cpu(de->inode);
986 brelse (bh);
987 inode = iget(dir->i_sb, ino);
989 if (!inode)
990 return ERR_PTR(-EACCES);
992 if (inode)
993 return d_splice_alias(inode, dentry);
994 d_add(dentry, inode);
995 return NULL;
999 struct dentry *ext3_get_parent(struct dentry *child)
1001 unsigned long ino;
1002 struct dentry *parent;
1003 struct inode *inode;
1004 struct dentry dotdot;
1005 struct ext3_dir_entry_2 * de;
1006 struct buffer_head *bh;
1008 dotdot.d_name.name = "..";
1009 dotdot.d_name.len = 2;
1010 dotdot.d_parent = child; /* confusing, isn't it! */
1012 bh = ext3_find_entry(&dotdot, &de);
1013 inode = NULL;
1014 if (!bh)
1015 return ERR_PTR(-ENOENT);
1016 ino = le32_to_cpu(de->inode);
1017 brelse(bh);
1018 inode = iget(child->d_inode->i_sb, ino);
1020 if (!inode)
1021 return ERR_PTR(-EACCES);
1023 parent = d_alloc_anon(inode);
1024 if (!parent) {
1025 iput(inode);
1026 parent = ERR_PTR(-ENOMEM);
1028 return parent;
1031 #define S_SHIFT 12
1032 static unsigned char ext3_type_by_mode[S_IFMT >> S_SHIFT] = {
1033 [S_IFREG >> S_SHIFT] = EXT3_FT_REG_FILE,
1034 [S_IFDIR >> S_SHIFT] = EXT3_FT_DIR,
1035 [S_IFCHR >> S_SHIFT] = EXT3_FT_CHRDEV,
1036 [S_IFBLK >> S_SHIFT] = EXT3_FT_BLKDEV,
1037 [S_IFIFO >> S_SHIFT] = EXT3_FT_FIFO,
1038 [S_IFSOCK >> S_SHIFT] = EXT3_FT_SOCK,
1039 [S_IFLNK >> S_SHIFT] = EXT3_FT_SYMLINK,
1042 static inline void ext3_set_de_type(struct super_block *sb,
1043 struct ext3_dir_entry_2 *de,
1044 umode_t mode) {
1045 if (EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_FILETYPE))
1046 de->file_type = ext3_type_by_mode[(mode & S_IFMT)>>S_SHIFT];
1049 #ifdef CONFIG_EXT3_INDEX
1050 static struct ext3_dir_entry_2 *
1051 dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count)
1053 unsigned rec_len = 0;
1055 while (count--) {
1056 struct ext3_dir_entry_2 *de = (struct ext3_dir_entry_2 *) (from + map->offs);
1057 rec_len = EXT3_DIR_REC_LEN(de->name_len);
1058 memcpy (to, de, rec_len);
1059 ((struct ext3_dir_entry_2 *) to)->rec_len =
1060 cpu_to_le16(rec_len);
1061 de->inode = 0;
1062 map++;
1063 to += rec_len;
1065 return (struct ext3_dir_entry_2 *) (to - rec_len);
1068 static struct ext3_dir_entry_2* dx_pack_dirents(char *base, int size)
1070 struct ext3_dir_entry_2 *next, *to, *prev, *de = (struct ext3_dir_entry_2 *) base;
1071 unsigned rec_len = 0;
1073 prev = to = de;
1074 while ((char*)de < base + size) {
1075 next = (struct ext3_dir_entry_2 *) ((char *) de +
1076 le16_to_cpu(de->rec_len));
1077 if (de->inode && de->name_len) {
1078 rec_len = EXT3_DIR_REC_LEN(de->name_len);
1079 if (de > to)
1080 memmove(to, de, rec_len);
1081 to->rec_len = cpu_to_le16(rec_len);
1082 prev = to;
1083 to = (struct ext3_dir_entry_2 *) (((char *) to) + rec_len);
1085 de = next;
1087 return prev;
1090 static struct ext3_dir_entry_2 *do_split(handle_t *handle, struct inode *dir,
1091 struct buffer_head **bh,struct dx_frame *frame,
1092 struct dx_hash_info *hinfo, int *error)
1094 unsigned blocksize = dir->i_sb->s_blocksize;
1095 unsigned count, continued;
1096 struct buffer_head *bh2;
1097 u32 newblock;
1098 u32 hash2;
1099 struct dx_map_entry *map;
1100 char *data1 = (*bh)->b_data, *data2;
1101 unsigned split;
1102 struct ext3_dir_entry_2 *de = NULL, *de2;
1103 int err;
1105 bh2 = ext3_append (handle, dir, &newblock, error);
1106 if (!(bh2)) {
1107 brelse(*bh);
1108 *bh = NULL;
1109 goto errout;
1112 BUFFER_TRACE(*bh, "get_write_access");
1113 err = ext3_journal_get_write_access(handle, *bh);
1114 if (err) {
1115 journal_error:
1116 brelse(*bh);
1117 brelse(bh2);
1118 *bh = NULL;
1119 ext3_std_error(dir->i_sb, err);
1120 goto errout;
1122 BUFFER_TRACE(frame->bh, "get_write_access");
1123 err = ext3_journal_get_write_access(handle, frame->bh);
1124 if (err)
1125 goto journal_error;
1127 data2 = bh2->b_data;
1129 /* create map in the end of data2 block */
1130 map = (struct dx_map_entry *) (data2 + blocksize);
1131 count = dx_make_map ((struct ext3_dir_entry_2 *) data1,
1132 blocksize, hinfo, map);
1133 map -= count;
1134 split = count/2; // need to adjust to actual middle
1135 dx_sort_map (map, count);
1136 hash2 = map[split].hash;
1137 continued = hash2 == map[split - 1].hash;
1138 dxtrace(printk("Split block %i at %x, %i/%i\n",
1139 dx_get_block(frame->at), hash2, split, count-split));
1141 /* Fancy dance to stay within two buffers */
1142 de2 = dx_move_dirents(data1, data2, map + split, count - split);
1143 de = dx_pack_dirents(data1,blocksize);
1144 de->rec_len = cpu_to_le16(data1 + blocksize - (char *) de);
1145 de2->rec_len = cpu_to_le16(data2 + blocksize - (char *) de2);
1146 dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data1, blocksize, 1));
1147 dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data2, blocksize, 1));
1149 /* Which block gets the new entry? */
1150 if (hinfo->hash >= hash2)
1152 swap(*bh, bh2);
1153 de = de2;
1155 dx_insert_block (frame, hash2 + continued, newblock);
1156 err = ext3_journal_dirty_metadata (handle, bh2);
1157 if (err)
1158 goto journal_error;
1159 err = ext3_journal_dirty_metadata (handle, frame->bh);
1160 if (err)
1161 goto journal_error;
1162 brelse (bh2);
1163 dxtrace(dx_show_index ("frame", frame->entries));
1164 errout:
1165 return de;
1167 #endif
1171 * Add a new entry into a directory (leaf) block. If de is non-NULL,
1172 * it points to a directory entry which is guaranteed to be large
1173 * enough for new directory entry. If de is NULL, then
1174 * add_dirent_to_buf will attempt search the directory block for
1175 * space. It will return -ENOSPC if no space is available, and -EIO
1176 * and -EEXIST if directory entry already exists.
1178 * NOTE! bh is NOT released in the case where ENOSPC is returned. In
1179 * all other cases bh is released.
1181 static int add_dirent_to_buf(handle_t *handle, struct dentry *dentry,
1182 struct inode *inode, struct ext3_dir_entry_2 *de,
1183 struct buffer_head * bh)
1185 struct inode *dir = dentry->d_parent->d_inode;
1186 const char *name = dentry->d_name.name;
1187 int namelen = dentry->d_name.len;
1188 unsigned long offset = 0;
1189 unsigned short reclen;
1190 int nlen, rlen, err;
1191 char *top;
1193 reclen = EXT3_DIR_REC_LEN(namelen);
1194 if (!de) {
1195 de = (struct ext3_dir_entry_2 *)bh->b_data;
1196 top = bh->b_data + dir->i_sb->s_blocksize - reclen;
1197 while ((char *) de <= top) {
1198 if (!ext3_check_dir_entry("ext3_add_entry", dir, de,
1199 bh, offset)) {
1200 brelse (bh);
1201 return -EIO;
1203 if (ext3_match (namelen, name, de)) {
1204 brelse (bh);
1205 return -EEXIST;
1207 nlen = EXT3_DIR_REC_LEN(de->name_len);
1208 rlen = le16_to_cpu(de->rec_len);
1209 if ((de->inode? rlen - nlen: rlen) >= reclen)
1210 break;
1211 de = (struct ext3_dir_entry_2 *)((char *)de + rlen);
1212 offset += rlen;
1214 if ((char *) de > top)
1215 return -ENOSPC;
1217 BUFFER_TRACE(bh, "get_write_access");
1218 err = ext3_journal_get_write_access(handle, bh);
1219 if (err) {
1220 ext3_std_error(dir->i_sb, err);
1221 brelse(bh);
1222 return err;
1225 /* By now the buffer is marked for journaling */
1226 nlen = EXT3_DIR_REC_LEN(de->name_len);
1227 rlen = le16_to_cpu(de->rec_len);
1228 if (de->inode) {
1229 struct ext3_dir_entry_2 *de1 = (struct ext3_dir_entry_2 *)((char *)de + nlen);
1230 de1->rec_len = cpu_to_le16(rlen - nlen);
1231 de->rec_len = cpu_to_le16(nlen);
1232 de = de1;
1234 de->file_type = EXT3_FT_UNKNOWN;
1235 if (inode) {
1236 de->inode = cpu_to_le32(inode->i_ino);
1237 ext3_set_de_type(dir->i_sb, de, inode->i_mode);
1238 } else
1239 de->inode = 0;
1240 de->name_len = namelen;
1241 memcpy (de->name, name, namelen);
1243 * XXX shouldn't update any times until successful
1244 * completion of syscall, but too many callers depend
1245 * on this.
1247 * XXX similarly, too many callers depend on
1248 * ext3_new_inode() setting the times, but error
1249 * recovery deletes the inode, so the worst that can
1250 * happen is that the times are slightly out of date
1251 * and/or different from the directory change time.
1253 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
1254 ext3_update_dx_flag(dir);
1255 dir->i_version++;
1256 ext3_mark_inode_dirty(handle, dir);
1257 BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
1258 err = ext3_journal_dirty_metadata(handle, bh);
1259 if (err)
1260 ext3_std_error(dir->i_sb, err);
1261 brelse(bh);
1262 return 0;
1265 #ifdef CONFIG_EXT3_INDEX
1267 * This converts a one block unindexed directory to a 3 block indexed
1268 * directory, and adds the dentry to the indexed directory.
1270 static int make_indexed_dir(handle_t *handle, struct dentry *dentry,
1271 struct inode *inode, struct buffer_head *bh)
1273 struct inode *dir = dentry->d_parent->d_inode;
1274 const char *name = dentry->d_name.name;
1275 int namelen = dentry->d_name.len;
1276 struct buffer_head *bh2;
1277 struct dx_root *root;
1278 struct dx_frame frames[2], *frame;
1279 struct dx_entry *entries;
1280 struct ext3_dir_entry_2 *de, *de2;
1281 char *data1, *top;
1282 unsigned len;
1283 int retval;
1284 unsigned blocksize;
1285 struct dx_hash_info hinfo;
1286 u32 block;
1288 blocksize = dir->i_sb->s_blocksize;
1289 dxtrace(printk("Creating index\n"));
1290 retval = ext3_journal_get_write_access(handle, bh);
1291 if (retval) {
1292 ext3_std_error(dir->i_sb, retval);
1293 brelse(bh);
1294 return retval;
1296 root = (struct dx_root *) bh->b_data;
1298 bh2 = ext3_append (handle, dir, &block, &retval);
1299 if (!(bh2)) {
1300 brelse(bh);
1301 return retval;
1303 EXT3_I(dir)->i_flags |= EXT3_INDEX_FL;
1304 data1 = bh2->b_data;
1306 /* The 0th block becomes the root, move the dirents out */
1307 de = (struct ext3_dir_entry_2 *) &root->info;
1308 len = ((char *) root) + blocksize - (char *) de;
1309 memcpy (data1, de, len);
1310 de = (struct ext3_dir_entry_2 *) data1;
1311 top = data1 + len;
1312 while (((char *) de2=(char*)de+le16_to_cpu(de->rec_len)) < top)
1313 de = de2;
1314 de->rec_len = cpu_to_le16(data1 + blocksize - (char *) de);
1315 /* Initialize the root; the dot dirents already exist */
1316 de = (struct ext3_dir_entry_2 *) (&root->dotdot);
1317 de->rec_len = cpu_to_le16(blocksize - EXT3_DIR_REC_LEN(2));
1318 memset (&root->info, 0, sizeof(root->info));
1319 root->info.info_length = sizeof(root->info);
1320 root->info.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version;
1321 entries = root->entries;
1322 dx_set_block (entries, 1);
1323 dx_set_count (entries, 1);
1324 dx_set_limit (entries, dx_root_limit(dir, sizeof(root->info)));
1326 /* Initialize as for dx_probe */
1327 hinfo.hash_version = root->info.hash_version;
1328 hinfo.seed = EXT3_SB(dir->i_sb)->s_hash_seed;
1329 ext3fs_dirhash(name, namelen, &hinfo);
1330 frame = frames;
1331 frame->entries = entries;
1332 frame->at = entries;
1333 frame->bh = bh;
1334 bh = bh2;
1335 de = do_split(handle,dir, &bh, frame, &hinfo, &retval);
1336 dx_release (frames);
1337 if (!(de))
1338 return retval;
1340 return add_dirent_to_buf(handle, dentry, inode, de, bh);
1342 #endif
1345 * ext3_add_entry()
1347 * adds a file entry to the specified directory, using the same
1348 * semantics as ext3_find_entry(). It returns NULL if it failed.
1350 * NOTE!! The inode part of 'de' is left at 0 - which means you
1351 * may not sleep between calling this and putting something into
1352 * the entry, as someone else might have used it while you slept.
1354 static int ext3_add_entry (handle_t *handle, struct dentry *dentry,
1355 struct inode *inode)
1357 struct inode *dir = dentry->d_parent->d_inode;
1358 unsigned long offset;
1359 struct buffer_head * bh;
1360 struct ext3_dir_entry_2 *de;
1361 struct super_block * sb;
1362 int retval;
1363 #ifdef CONFIG_EXT3_INDEX
1364 int dx_fallback=0;
1365 #endif
1366 unsigned blocksize;
1367 unsigned nlen, rlen;
1368 u32 block, blocks;
1370 sb = dir->i_sb;
1371 blocksize = sb->s_blocksize;
1372 if (!dentry->d_name.len)
1373 return -EINVAL;
1374 #ifdef CONFIG_EXT3_INDEX
1375 if (is_dx(dir)) {
1376 retval = ext3_dx_add_entry(handle, dentry, inode);
1377 if (!retval || (retval != ERR_BAD_DX_DIR))
1378 return retval;
1379 EXT3_I(dir)->i_flags &= ~EXT3_INDEX_FL;
1380 dx_fallback++;
1381 ext3_mark_inode_dirty(handle, dir);
1383 #endif
1384 blocks = dir->i_size >> sb->s_blocksize_bits;
1385 for (block = 0, offset = 0; block < blocks; block++) {
1386 bh = ext3_bread(handle, dir, block, 0, &retval);
1387 if(!bh)
1388 return retval;
1389 retval = add_dirent_to_buf(handle, dentry, inode, 0, bh);
1390 if (retval != -ENOSPC)
1391 return retval;
1393 #ifdef CONFIG_EXT3_INDEX
1394 if (blocks == 1 && !dx_fallback &&
1395 EXT3_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_DIR_INDEX))
1396 return make_indexed_dir(handle, dentry, inode, bh);
1397 #endif
1398 brelse(bh);
1400 bh = ext3_append(handle, dir, &block, &retval);
1401 if (!bh)
1402 return retval;
1403 de = (struct ext3_dir_entry_2 *) bh->b_data;
1404 de->inode = 0;
1405 de->rec_len = cpu_to_le16(rlen = blocksize);
1406 nlen = 0;
1407 return add_dirent_to_buf(handle, dentry, inode, de, bh);
1410 #ifdef CONFIG_EXT3_INDEX
1412 * Returns 0 for success, or a negative error value
1414 static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry,
1415 struct inode *inode)
1417 struct dx_frame frames[2], *frame;
1418 struct dx_entry *entries, *at;
1419 struct dx_hash_info hinfo;
1420 struct buffer_head * bh;
1421 struct inode *dir = dentry->d_parent->d_inode;
1422 struct super_block * sb = dir->i_sb;
1423 struct ext3_dir_entry_2 *de;
1424 int err;
1426 frame = dx_probe(dentry, 0, &hinfo, frames, &err);
1427 if (!frame)
1428 return err;
1429 entries = frame->entries;
1430 at = frame->at;
1432 if (!(bh = ext3_bread(handle,dir, dx_get_block(frame->at), 0, &err)))
1433 goto cleanup;
1435 BUFFER_TRACE(bh, "get_write_access");
1436 err = ext3_journal_get_write_access(handle, bh);
1437 if (err)
1438 goto journal_error;
1440 err = add_dirent_to_buf(handle, dentry, inode, 0, bh);
1441 if (err != -ENOSPC) {
1442 bh = 0;
1443 goto cleanup;
1446 /* Block full, should compress but for now just split */
1447 dxtrace(printk("using %u of %u node entries\n",
1448 dx_get_count(entries), dx_get_limit(entries)));
1449 /* Need to split index? */
1450 if (dx_get_count(entries) == dx_get_limit(entries)) {
1451 u32 newblock;
1452 unsigned icount = dx_get_count(entries);
1453 int levels = frame - frames;
1454 struct dx_entry *entries2;
1455 struct dx_node *node2;
1456 struct buffer_head *bh2;
1458 if (levels && (dx_get_count(frames->entries) ==
1459 dx_get_limit(frames->entries))) {
1460 ext3_warning(sb, __FUNCTION__,
1461 "Directory index full!\n");
1462 err = -ENOSPC;
1463 goto cleanup;
1465 bh2 = ext3_append (handle, dir, &newblock, &err);
1466 if (!(bh2))
1467 goto cleanup;
1468 node2 = (struct dx_node *)(bh2->b_data);
1469 entries2 = node2->entries;
1470 node2->fake.rec_len = cpu_to_le16(sb->s_blocksize);
1471 node2->fake.inode = 0;
1472 BUFFER_TRACE(frame->bh, "get_write_access");
1473 err = ext3_journal_get_write_access(handle, frame->bh);
1474 if (err)
1475 goto journal_error;
1476 if (levels) {
1477 unsigned icount1 = icount/2, icount2 = icount - icount1;
1478 unsigned hash2 = dx_get_hash(entries + icount1);
1479 dxtrace(printk("Split index %i/%i\n", icount1, icount2));
1481 BUFFER_TRACE(frame->bh, "get_write_access"); /* index root */
1482 err = ext3_journal_get_write_access(handle,
1483 frames[0].bh);
1484 if (err)
1485 goto journal_error;
1487 memcpy ((char *) entries2, (char *) (entries + icount1),
1488 icount2 * sizeof(struct dx_entry));
1489 dx_set_count (entries, icount1);
1490 dx_set_count (entries2, icount2);
1491 dx_set_limit (entries2, dx_node_limit(dir));
1493 /* Which index block gets the new entry? */
1494 if (at - entries >= icount1) {
1495 frame->at = at = at - entries - icount1 + entries2;
1496 frame->entries = entries = entries2;
1497 swap(frame->bh, bh2);
1499 dx_insert_block (frames + 0, hash2, newblock);
1500 dxtrace(dx_show_index ("node", frames[1].entries));
1501 dxtrace(dx_show_index ("node",
1502 ((struct dx_node *) bh2->b_data)->entries));
1503 err = ext3_journal_dirty_metadata(handle, bh2);
1504 if (err)
1505 goto journal_error;
1506 brelse (bh2);
1507 } else {
1508 dxtrace(printk("Creating second level index...\n"));
1509 memcpy((char *) entries2, (char *) entries,
1510 icount * sizeof(struct dx_entry));
1511 dx_set_limit(entries2, dx_node_limit(dir));
1513 /* Set up root */
1514 dx_set_count(entries, 1);
1515 dx_set_block(entries + 0, newblock);
1516 ((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels = 1;
1518 /* Add new access path frame */
1519 frame = frames + 1;
1520 frame->at = at = at - entries + entries2;
1521 frame->entries = entries = entries2;
1522 frame->bh = bh2;
1523 err = ext3_journal_get_write_access(handle,
1524 frame->bh);
1525 if (err)
1526 goto journal_error;
1528 ext3_journal_dirty_metadata(handle, frames[0].bh);
1530 de = do_split(handle, dir, &bh, frame, &hinfo, &err);
1531 if (!de)
1532 goto cleanup;
1533 err = add_dirent_to_buf(handle, dentry, inode, de, bh);
1534 bh = 0;
1535 goto cleanup;
1537 journal_error:
1538 ext3_std_error(dir->i_sb, err);
1539 cleanup:
1540 if (bh)
1541 brelse(bh);
1542 dx_release(frames);
1543 return err;
1545 #endif
1548 * ext3_delete_entry deletes a directory entry by merging it with the
1549 * previous entry
1551 static int ext3_delete_entry (handle_t *handle,
1552 struct inode * dir,
1553 struct ext3_dir_entry_2 * de_del,
1554 struct buffer_head * bh)
1556 struct ext3_dir_entry_2 * de, * pde;
1557 int i;
1559 i = 0;
1560 pde = NULL;
1561 de = (struct ext3_dir_entry_2 *) bh->b_data;
1562 while (i < bh->b_size) {
1563 if (!ext3_check_dir_entry("ext3_delete_entry", dir, de, bh, i))
1564 return -EIO;
1565 if (de == de_del) {
1566 BUFFER_TRACE(bh, "get_write_access");
1567 ext3_journal_get_write_access(handle, bh);
1568 if (pde)
1569 pde->rec_len =
1570 cpu_to_le16(le16_to_cpu(pde->rec_len) +
1571 le16_to_cpu(de->rec_len));
1572 else
1573 de->inode = 0;
1574 dir->i_version++;
1575 BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
1576 ext3_journal_dirty_metadata(handle, bh);
1577 return 0;
1579 i += le16_to_cpu(de->rec_len);
1580 pde = de;
1581 de = (struct ext3_dir_entry_2 *)
1582 ((char *) de + le16_to_cpu(de->rec_len));
1584 return -ENOENT;
1588 * ext3_mark_inode_dirty is somewhat expensive, so unlike ext2 we
1589 * do not perform it in these functions. We perform it at the call site,
1590 * if it is needed.
1592 static inline void ext3_inc_count(handle_t *handle, struct inode *inode)
1594 inode->i_nlink++;
1597 static inline void ext3_dec_count(handle_t *handle, struct inode *inode)
1599 inode->i_nlink--;
1602 static int ext3_add_nondir(handle_t *handle,
1603 struct dentry *dentry, struct inode *inode)
1605 int err = ext3_add_entry(handle, dentry, inode);
1606 if (!err) {
1607 err = ext3_mark_inode_dirty(handle, inode);
1608 if (!err) {
1609 d_instantiate(dentry, inode);
1610 return 0;
1613 ext3_dec_count(handle, inode);
1614 iput(inode);
1615 return err;
1619 * By the time this is called, we already have created
1620 * the directory cache entry for the new file, but it
1621 * is so far negative - it has no inode.
1623 * If the create succeeds, we fill in the inode information
1624 * with d_instantiate().
1626 static int ext3_create (struct inode * dir, struct dentry * dentry, int mode)
1628 handle_t *handle;
1629 struct inode * inode;
1630 int err;
1632 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS +
1633 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3);
1634 if (IS_ERR(handle))
1635 return PTR_ERR(handle);
1637 if (IS_DIRSYNC(dir))
1638 handle->h_sync = 1;
1640 inode = ext3_new_inode (handle, dir, mode);
1641 err = PTR_ERR(inode);
1642 if (!IS_ERR(inode)) {
1643 inode->i_op = &ext3_file_inode_operations;
1644 inode->i_fop = &ext3_file_operations;
1645 ext3_set_aops(inode);
1646 err = ext3_add_nondir(handle, dentry, inode);
1648 ext3_journal_stop(handle);
1649 return err;
1652 static int ext3_mknod (struct inode * dir, struct dentry *dentry,
1653 int mode, dev_t rdev)
1655 handle_t *handle;
1656 struct inode *inode;
1657 int err;
1659 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS +
1660 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3);
1661 if (IS_ERR(handle))
1662 return PTR_ERR(handle);
1664 if (IS_DIRSYNC(dir))
1665 handle->h_sync = 1;
1667 inode = ext3_new_inode (handle, dir, mode);
1668 err = PTR_ERR(inode);
1669 if (!IS_ERR(inode)) {
1670 init_special_inode(inode, inode->i_mode, rdev);
1671 #ifdef CONFIG_EXT3_FS_XATTR
1672 inode->i_op = &ext3_special_inode_operations;
1673 #endif
1674 err = ext3_add_nondir(handle, dentry, inode);
1676 ext3_journal_stop(handle);
1677 return err;
1680 static int ext3_mkdir(struct inode * dir, struct dentry * dentry, int mode)
1682 handle_t *handle;
1683 struct inode * inode;
1684 struct buffer_head * dir_block;
1685 struct ext3_dir_entry_2 * de;
1686 int err;
1688 if (dir->i_nlink >= EXT3_LINK_MAX)
1689 return -EMLINK;
1691 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS +
1692 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3);
1693 if (IS_ERR(handle))
1694 return PTR_ERR(handle);
1696 if (IS_DIRSYNC(dir))
1697 handle->h_sync = 1;
1699 inode = ext3_new_inode (handle, dir, S_IFDIR | mode);
1700 err = PTR_ERR(inode);
1701 if (IS_ERR(inode))
1702 goto out_stop;
1704 inode->i_op = &ext3_dir_inode_operations;
1705 inode->i_fop = &ext3_dir_operations;
1706 inode->i_size = EXT3_I(inode)->i_disksize = inode->i_sb->s_blocksize;
1707 dir_block = ext3_bread (handle, inode, 0, 1, &err);
1708 if (!dir_block) {
1709 inode->i_nlink--; /* is this nlink == 0? */
1710 ext3_mark_inode_dirty(handle, inode);
1711 iput (inode);
1712 goto out_stop;
1714 BUFFER_TRACE(dir_block, "get_write_access");
1715 ext3_journal_get_write_access(handle, dir_block);
1716 de = (struct ext3_dir_entry_2 *) dir_block->b_data;
1717 de->inode = cpu_to_le32(inode->i_ino);
1718 de->name_len = 1;
1719 de->rec_len = cpu_to_le16(EXT3_DIR_REC_LEN(de->name_len));
1720 strcpy (de->name, ".");
1721 ext3_set_de_type(dir->i_sb, de, S_IFDIR);
1722 de = (struct ext3_dir_entry_2 *)
1723 ((char *) de + le16_to_cpu(de->rec_len));
1724 de->inode = cpu_to_le32(dir->i_ino);
1725 de->rec_len = cpu_to_le16(inode->i_sb->s_blocksize-EXT3_DIR_REC_LEN(1));
1726 de->name_len = 2;
1727 strcpy (de->name, "..");
1728 ext3_set_de_type(dir->i_sb, de, S_IFDIR);
1729 inode->i_nlink = 2;
1730 BUFFER_TRACE(dir_block, "call ext3_journal_dirty_metadata");
1731 ext3_journal_dirty_metadata(handle, dir_block);
1732 brelse (dir_block);
1733 ext3_mark_inode_dirty(handle, inode);
1734 err = ext3_add_entry (handle, dentry, inode);
1735 if (err) {
1736 inode->i_nlink = 0;
1737 ext3_mark_inode_dirty(handle, inode);
1738 iput (inode);
1739 goto out_stop;
1741 dir->i_nlink++;
1742 ext3_update_dx_flag(dir);
1743 ext3_mark_inode_dirty(handle, dir);
1744 d_instantiate(dentry, inode);
1745 out_stop:
1746 ext3_journal_stop(handle);
1747 return err;
1751 * routine to check that the specified directory is empty (for rmdir)
1753 static int empty_dir (struct inode * inode)
1755 unsigned long offset;
1756 struct buffer_head * bh;
1757 struct ext3_dir_entry_2 * de, * de1;
1758 struct super_block * sb;
1759 int err;
1761 sb = inode->i_sb;
1762 if (inode->i_size < EXT3_DIR_REC_LEN(1) + EXT3_DIR_REC_LEN(2) ||
1763 !(bh = ext3_bread (NULL, inode, 0, 0, &err))) {
1764 ext3_warning (inode->i_sb, "empty_dir",
1765 "bad directory (dir #%lu) - no data block",
1766 inode->i_ino);
1767 return 1;
1769 de = (struct ext3_dir_entry_2 *) bh->b_data;
1770 de1 = (struct ext3_dir_entry_2 *)
1771 ((char *) de + le16_to_cpu(de->rec_len));
1772 if (le32_to_cpu(de->inode) != inode->i_ino ||
1773 !le32_to_cpu(de1->inode) ||
1774 strcmp (".", de->name) ||
1775 strcmp ("..", de1->name)) {
1776 ext3_warning (inode->i_sb, "empty_dir",
1777 "bad directory (dir #%lu) - no `.' or `..'",
1778 inode->i_ino);
1779 brelse (bh);
1780 return 1;
1782 offset = le16_to_cpu(de->rec_len) + le16_to_cpu(de1->rec_len);
1783 de = (struct ext3_dir_entry_2 *)
1784 ((char *) de1 + le16_to_cpu(de1->rec_len));
1785 while (offset < inode->i_size ) {
1786 if (!bh ||
1787 (void *) de >= (void *) (bh->b_data+sb->s_blocksize)) {
1788 brelse (bh);
1789 bh = ext3_bread (NULL, inode,
1790 offset >> EXT3_BLOCK_SIZE_BITS(sb), 0, &err);
1791 if (!bh) {
1792 #if 0
1793 ext3_error (sb, "empty_dir",
1794 "directory #%lu contains a hole at offset %lu",
1795 inode->i_ino, offset);
1796 #endif
1797 offset += sb->s_blocksize;
1798 continue;
1800 de = (struct ext3_dir_entry_2 *) bh->b_data;
1802 if (!ext3_check_dir_entry ("empty_dir", inode, de, bh,
1803 offset)) {
1804 brelse (bh);
1805 return 1;
1807 if (le32_to_cpu(de->inode)) {
1808 brelse (bh);
1809 return 0;
1811 offset += le16_to_cpu(de->rec_len);
1812 de = (struct ext3_dir_entry_2 *)
1813 ((char *) de + le16_to_cpu(de->rec_len));
1815 brelse (bh);
1816 return 1;
1819 /* ext3_orphan_add() links an unlinked or truncated inode into a list of
1820 * such inodes, starting at the superblock, in case we crash before the
1821 * file is closed/deleted, or in case the inode truncate spans multiple
1822 * transactions and the last transaction is not recovered after a crash.
1824 * At filesystem recovery time, we walk this list deleting unlinked
1825 * inodes and truncating linked inodes in ext3_orphan_cleanup().
1827 int ext3_orphan_add(handle_t *handle, struct inode *inode)
1829 struct super_block *sb = inode->i_sb;
1830 struct ext3_iloc iloc;
1831 int err = 0, rc;
1833 lock_super(sb);
1834 if (!list_empty(&EXT3_I(inode)->i_orphan))
1835 goto out_unlock;
1837 /* Orphan handling is only valid for files with data blocks
1838 * being truncated, or files being unlinked. */
1840 /* @@@ FIXME: Observation from aviro:
1841 * I think I can trigger J_ASSERT in ext3_orphan_add(). We block
1842 * here (on lock_super()), so race with ext3_link() which might bump
1843 * ->i_nlink. For, say it, character device. Not a regular file,
1844 * not a directory, not a symlink and ->i_nlink > 0.
1846 J_ASSERT ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
1847 S_ISLNK(inode->i_mode)) || inode->i_nlink == 0);
1849 BUFFER_TRACE(EXT3_SB(sb)->s_sbh, "get_write_access");
1850 err = ext3_journal_get_write_access(handle, EXT3_SB(sb)->s_sbh);
1851 if (err)
1852 goto out_unlock;
1854 err = ext3_reserve_inode_write(handle, inode, &iloc);
1855 if (err)
1856 goto out_unlock;
1858 /* Insert this inode at the head of the on-disk orphan list... */
1859 NEXT_ORPHAN(inode) = le32_to_cpu(EXT3_SB(sb)->s_es->s_last_orphan);
1860 EXT3_SB(sb)->s_es->s_last_orphan = cpu_to_le32(inode->i_ino);
1861 err = ext3_journal_dirty_metadata(handle, EXT3_SB(sb)->s_sbh);
1862 rc = ext3_mark_iloc_dirty(handle, inode, &iloc);
1863 if (!err)
1864 err = rc;
1866 /* Only add to the head of the in-memory list if all the
1867 * previous operations succeeded. If the orphan_add is going to
1868 * fail (possibly taking the journal offline), we can't risk
1869 * leaving the inode on the orphan list: stray orphan-list
1870 * entries can cause panics at unmount time.
1872 * This is safe: on error we're going to ignore the orphan list
1873 * anyway on the next recovery. */
1874 if (!err)
1875 list_add(&EXT3_I(inode)->i_orphan, &EXT3_SB(sb)->s_orphan);
1877 jbd_debug(4, "superblock will point to %ld\n", inode->i_ino);
1878 jbd_debug(4, "orphan inode %ld will point to %d\n",
1879 inode->i_ino, NEXT_ORPHAN(inode));
1880 out_unlock:
1881 unlock_super(sb);
1882 ext3_std_error(inode->i_sb, err);
1883 return err;
1887 * ext3_orphan_del() removes an unlinked or truncated inode from the list
1888 * of such inodes stored on disk, because it is finally being cleaned up.
1890 int ext3_orphan_del(handle_t *handle, struct inode *inode)
1892 struct list_head *prev;
1893 struct ext3_inode_info *ei = EXT3_I(inode);
1894 struct ext3_sb_info *sbi;
1895 unsigned long ino_next;
1896 struct ext3_iloc iloc;
1897 int err = 0;
1899 lock_super(inode->i_sb);
1900 if (list_empty(&ei->i_orphan)) {
1901 unlock_super(inode->i_sb);
1902 return 0;
1905 ino_next = NEXT_ORPHAN(inode);
1906 prev = ei->i_orphan.prev;
1907 sbi = EXT3_SB(inode->i_sb);
1909 jbd_debug(4, "remove inode %lu from orphan list\n", inode->i_ino);
1911 list_del_init(&ei->i_orphan);
1913 /* If we're on an error path, we may not have a valid
1914 * transaction handle with which to update the orphan list on
1915 * disk, but we still need to remove the inode from the linked
1916 * list in memory. */
1917 if (!handle)
1918 goto out;
1920 err = ext3_reserve_inode_write(handle, inode, &iloc);
1921 if (err)
1922 goto out_err;
1924 if (prev == &sbi->s_orphan) {
1925 jbd_debug(4, "superblock will point to %lu\n", ino_next);
1926 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
1927 err = ext3_journal_get_write_access(handle, sbi->s_sbh);
1928 if (err)
1929 goto out_brelse;
1930 sbi->s_es->s_last_orphan = cpu_to_le32(ino_next);
1931 err = ext3_journal_dirty_metadata(handle, sbi->s_sbh);
1932 } else {
1933 struct ext3_iloc iloc2;
1934 struct inode *i_prev =
1935 &list_entry(prev, struct ext3_inode_info, i_orphan)->vfs_inode;
1937 jbd_debug(4, "orphan inode %lu will point to %lu\n",
1938 i_prev->i_ino, ino_next);
1939 err = ext3_reserve_inode_write(handle, i_prev, &iloc2);
1940 if (err)
1941 goto out_brelse;
1942 NEXT_ORPHAN(i_prev) = ino_next;
1943 err = ext3_mark_iloc_dirty(handle, i_prev, &iloc2);
1945 if (err)
1946 goto out_brelse;
1947 NEXT_ORPHAN(inode) = 0;
1948 err = ext3_mark_iloc_dirty(handle, inode, &iloc);
1949 if (err)
1950 goto out_brelse;
1952 out_err:
1953 ext3_std_error(inode->i_sb, err);
1954 out:
1955 unlock_super(inode->i_sb);
1956 return err;
1958 out_brelse:
1959 brelse(iloc.bh);
1960 goto out_err;
1963 static int ext3_rmdir (struct inode * dir, struct dentry *dentry)
1965 int retval;
1966 struct inode * inode;
1967 struct buffer_head * bh;
1968 struct ext3_dir_entry_2 * de;
1969 handle_t *handle;
1971 handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS);
1972 if (IS_ERR(handle))
1973 return PTR_ERR(handle);
1975 retval = -ENOENT;
1976 bh = ext3_find_entry (dentry, &de);
1977 if (!bh)
1978 goto end_rmdir;
1980 if (IS_DIRSYNC(dir))
1981 handle->h_sync = 1;
1983 inode = dentry->d_inode;
1984 DQUOT_INIT(inode);
1986 retval = -EIO;
1987 if (le32_to_cpu(de->inode) != inode->i_ino)
1988 goto end_rmdir;
1990 retval = -ENOTEMPTY;
1991 if (!empty_dir (inode))
1992 goto end_rmdir;
1994 retval = ext3_delete_entry(handle, dir, de, bh);
1995 if (retval)
1996 goto end_rmdir;
1997 if (inode->i_nlink != 2)
1998 ext3_warning (inode->i_sb, "ext3_rmdir",
1999 "empty directory has nlink!=2 (%d)",
2000 inode->i_nlink);
2001 inode->i_version++;
2002 inode->i_nlink = 0;
2003 /* There's no need to set i_disksize: the fact that i_nlink is
2004 * zero will ensure that the right thing happens during any
2005 * recovery. */
2006 inode->i_size = 0;
2007 ext3_orphan_add(handle, inode);
2008 ext3_mark_inode_dirty(handle, inode);
2009 dir->i_nlink--;
2010 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
2011 ext3_update_dx_flag(dir);
2012 ext3_mark_inode_dirty(handle, dir);
2014 end_rmdir:
2015 ext3_journal_stop(handle);
2016 brelse (bh);
2017 return retval;
2020 static int ext3_unlink(struct inode * dir, struct dentry *dentry)
2022 int retval;
2023 struct inode * inode;
2024 struct buffer_head * bh;
2025 struct ext3_dir_entry_2 * de;
2026 handle_t *handle;
2028 handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS);
2029 if (IS_ERR(handle))
2030 return PTR_ERR(handle);
2032 if (IS_DIRSYNC(dir))
2033 handle->h_sync = 1;
2035 retval = -ENOENT;
2036 bh = ext3_find_entry (dentry, &de);
2037 if (!bh)
2038 goto end_unlink;
2040 inode = dentry->d_inode;
2041 DQUOT_INIT(inode);
2043 retval = -EIO;
2044 if (le32_to_cpu(de->inode) != inode->i_ino)
2045 goto end_unlink;
2047 if (!inode->i_nlink) {
2048 ext3_warning (inode->i_sb, "ext3_unlink",
2049 "Deleting nonexistent file (%lu), %d",
2050 inode->i_ino, inode->i_nlink);
2051 inode->i_nlink = 1;
2053 retval = ext3_delete_entry(handle, dir, de, bh);
2054 if (retval)
2055 goto end_unlink;
2056 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
2057 ext3_update_dx_flag(dir);
2058 ext3_mark_inode_dirty(handle, dir);
2059 inode->i_nlink--;
2060 if (!inode->i_nlink)
2061 ext3_orphan_add(handle, inode);
2062 ext3_mark_inode_dirty(handle, inode);
2063 inode->i_ctime = dir->i_ctime;
2064 retval = 0;
2066 end_unlink:
2067 ext3_journal_stop(handle);
2068 brelse (bh);
2069 return retval;
2072 static int ext3_symlink (struct inode * dir,
2073 struct dentry *dentry, const char * symname)
2075 handle_t *handle;
2076 struct inode * inode;
2077 int l, err;
2079 l = strlen(symname)+1;
2080 if (l > dir->i_sb->s_blocksize)
2081 return -ENAMETOOLONG;
2083 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS +
2084 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 5);
2085 if (IS_ERR(handle))
2086 return PTR_ERR(handle);
2088 if (IS_DIRSYNC(dir))
2089 handle->h_sync = 1;
2091 inode = ext3_new_inode (handle, dir, S_IFLNK|S_IRWXUGO);
2092 err = PTR_ERR(inode);
2093 if (IS_ERR(inode))
2094 goto out_stop;
2096 if (l > sizeof (EXT3_I(inode)->i_data)) {
2097 inode->i_op = &ext3_symlink_inode_operations;
2098 ext3_set_aops(inode);
2100 * page_symlink() calls into ext3_prepare/commit_write.
2101 * We have a transaction open. All is sweetness. It also sets
2102 * i_size in generic_commit_write().
2104 err = page_symlink(inode, symname, l);
2105 if (err) {
2106 ext3_dec_count(handle, inode);
2107 ext3_mark_inode_dirty(handle, inode);
2108 iput (inode);
2109 goto out_stop;
2111 } else {
2112 inode->i_op = &ext3_fast_symlink_inode_operations;
2113 memcpy((char*)&EXT3_I(inode)->i_data,symname,l);
2114 inode->i_size = l-1;
2116 EXT3_I(inode)->i_disksize = inode->i_size;
2117 err = ext3_add_nondir(handle, dentry, inode);
2118 out_stop:
2119 ext3_journal_stop(handle);
2120 return err;
2123 static int ext3_link (struct dentry * old_dentry,
2124 struct inode * dir, struct dentry *dentry)
2126 handle_t *handle;
2127 struct inode *inode = old_dentry->d_inode;
2128 int err;
2130 if (inode->i_nlink >= EXT3_LINK_MAX)
2131 return -EMLINK;
2133 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS +
2134 EXT3_INDEX_EXTRA_TRANS_BLOCKS);
2135 if (IS_ERR(handle))
2136 return PTR_ERR(handle);
2138 if (IS_DIRSYNC(dir))
2139 handle->h_sync = 1;
2141 inode->i_ctime = CURRENT_TIME;
2142 ext3_inc_count(handle, inode);
2143 atomic_inc(&inode->i_count);
2145 err = ext3_add_nondir(handle, dentry, inode);
2146 ext3_journal_stop(handle);
2147 return err;
2150 #define PARENT_INO(buffer) \
2151 ((struct ext3_dir_entry_2 *) ((char *) buffer + \
2152 le16_to_cpu(((struct ext3_dir_entry_2 *) buffer)->rec_len)))->inode
2155 * Anybody can rename anything with this: the permission checks are left to the
2156 * higher-level routines.
2158 static int ext3_rename (struct inode * old_dir, struct dentry *old_dentry,
2159 struct inode * new_dir,struct dentry *new_dentry)
2161 handle_t *handle;
2162 struct inode * old_inode, * new_inode;
2163 struct buffer_head * old_bh, * new_bh, * dir_bh;
2164 struct ext3_dir_entry_2 * old_de, * new_de;
2165 int retval;
2167 old_bh = new_bh = dir_bh = NULL;
2169 handle = ext3_journal_start(old_dir, 2 * EXT3_DATA_TRANS_BLOCKS +
2170 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 2);
2171 if (IS_ERR(handle))
2172 return PTR_ERR(handle);
2174 if (IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir))
2175 handle->h_sync = 1;
2177 old_bh = ext3_find_entry (old_dentry, &old_de);
2179 * Check for inode number is _not_ due to possible IO errors.
2180 * We might rmdir the source, keep it as pwd of some process
2181 * and merrily kill the link to whatever was created under the
2182 * same name. Goodbye sticky bit ;-<
2184 old_inode = old_dentry->d_inode;
2185 retval = -ENOENT;
2186 if (!old_bh || le32_to_cpu(old_de->inode) != old_inode->i_ino)
2187 goto end_rename;
2189 new_inode = new_dentry->d_inode;
2190 new_bh = ext3_find_entry (new_dentry, &new_de);
2191 if (new_bh) {
2192 if (!new_inode) {
2193 brelse (new_bh);
2194 new_bh = NULL;
2195 } else {
2196 DQUOT_INIT(new_inode);
2199 if (S_ISDIR(old_inode->i_mode)) {
2200 if (new_inode) {
2201 retval = -ENOTEMPTY;
2202 if (!empty_dir (new_inode))
2203 goto end_rename;
2205 retval = -EIO;
2206 dir_bh = ext3_bread (handle, old_inode, 0, 0, &retval);
2207 if (!dir_bh)
2208 goto end_rename;
2209 if (le32_to_cpu(PARENT_INO(dir_bh->b_data)) != old_dir->i_ino)
2210 goto end_rename;
2211 retval = -EMLINK;
2212 if (!new_inode && new_dir!=old_dir &&
2213 new_dir->i_nlink >= EXT3_LINK_MAX)
2214 goto end_rename;
2216 if (!new_bh) {
2217 retval = ext3_add_entry (handle, new_dentry, old_inode);
2218 if (retval)
2219 goto end_rename;
2220 } else {
2221 BUFFER_TRACE(new_bh, "get write access");
2222 BUFFER_TRACE(new_bh, "get_write_access");
2223 ext3_journal_get_write_access(handle, new_bh);
2224 new_de->inode = le32_to_cpu(old_inode->i_ino);
2225 if (EXT3_HAS_INCOMPAT_FEATURE(new_dir->i_sb,
2226 EXT3_FEATURE_INCOMPAT_FILETYPE))
2227 new_de->file_type = old_de->file_type;
2228 new_dir->i_version++;
2229 BUFFER_TRACE(new_bh, "call ext3_journal_dirty_metadata");
2230 ext3_journal_dirty_metadata(handle, new_bh);
2231 brelse(new_bh);
2232 new_bh = NULL;
2236 * Like most other Unix systems, set the ctime for inodes on a
2237 * rename.
2239 old_inode->i_ctime = CURRENT_TIME;
2240 ext3_mark_inode_dirty(handle, old_inode);
2243 * ok, that's it
2245 retval = ext3_delete_entry(handle, old_dir, old_de, old_bh);
2246 if (retval == -ENOENT) {
2248 * old_de could have moved out from under us.
2250 struct buffer_head *old_bh2;
2251 struct ext3_dir_entry_2 *old_de2;
2253 old_bh2 = ext3_find_entry(old_dentry, &old_de2);
2254 if (old_bh2) {
2255 retval = ext3_delete_entry(handle, old_dir,
2256 old_de2, old_bh2);
2257 brelse(old_bh2);
2260 if (retval) {
2261 ext3_warning(old_dir->i_sb, "ext3_rename",
2262 "Deleting old file (%lu), %d, error=%d",
2263 old_dir->i_ino, old_dir->i_nlink, retval);
2266 if (new_inode) {
2267 new_inode->i_nlink--;
2268 new_inode->i_ctime = CURRENT_TIME;
2270 old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME;
2271 ext3_update_dx_flag(old_dir);
2272 if (dir_bh) {
2273 BUFFER_TRACE(dir_bh, "get_write_access");
2274 ext3_journal_get_write_access(handle, dir_bh);
2275 PARENT_INO(dir_bh->b_data) = le32_to_cpu(new_dir->i_ino);
2276 BUFFER_TRACE(dir_bh, "call ext3_journal_dirty_metadata");
2277 ext3_journal_dirty_metadata(handle, dir_bh);
2278 old_dir->i_nlink--;
2279 if (new_inode) {
2280 new_inode->i_nlink--;
2281 } else {
2282 new_dir->i_nlink++;
2283 ext3_update_dx_flag(new_dir);
2284 ext3_mark_inode_dirty(handle, new_dir);
2287 ext3_mark_inode_dirty(handle, old_dir);
2288 if (new_inode) {
2289 ext3_mark_inode_dirty(handle, new_inode);
2290 if (!new_inode->i_nlink)
2291 ext3_orphan_add(handle, new_inode);
2293 retval = 0;
2295 end_rename:
2296 brelse (dir_bh);
2297 brelse (old_bh);
2298 brelse (new_bh);
2299 ext3_journal_stop(handle);
2300 return retval;
2304 * directories can handle most operations...
2306 struct inode_operations ext3_dir_inode_operations = {
2307 .create = ext3_create,
2308 .lookup = ext3_lookup,
2309 .link = ext3_link,
2310 .unlink = ext3_unlink,
2311 .symlink = ext3_symlink,
2312 .mkdir = ext3_mkdir,
2313 .rmdir = ext3_rmdir,
2314 .mknod = ext3_mknod,
2315 .rename = ext3_rename,
2316 .setattr = ext3_setattr,
2317 .setxattr = ext3_setxattr,
2318 .getxattr = ext3_getxattr,
2319 .listxattr = ext3_listxattr,
2320 .removexattr = ext3_removexattr,
2321 .permission = ext3_permission,
2324 struct inode_operations ext3_special_inode_operations = {
2325 .setattr = ext3_setattr,
2326 .setxattr = ext3_setxattr,
2327 .getxattr = ext3_getxattr,
2328 .listxattr = ext3_listxattr,
2329 .removexattr = ext3_removexattr,
2330 .permission = ext3_permission,