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