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