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