blob: c095cf5640c79c4462ed0a60cd7aed5fd8c5472f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/ext3/namei.c
3 *
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
8 *
9 * from
10 *
11 * linux/fs/minix/namei.c
12 *
13 * Copyright (C) 1991, 1992 Linus Torvalds
14 *
15 * Big-endian to little-endian byte-swapping/bitmaps by
16 * David S. Miller (davem@caip.rutgers.edu), 1995
17 * Directory entry file type support and forward compatibility hooks
Dave Kleikampe9ad5622006-09-27 01:49:35 -070018 * for B-tree directories by Theodore Ts'o (tytso@mit.edu), 1998
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * Hash Tree Directory indexing (c)
Dave Kleikampe9ad5622006-09-27 01:49:35 -070020 * Daniel Phillips, 2001
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * Hash Tree Directory indexing porting
Dave Kleikampe9ad5622006-09-27 01:49:35 -070022 * Christopher Li, 2002
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * Hash Tree Directory indexing cleanup
Dave Kleikampe9ad5622006-09-27 01:49:35 -070024 * Theodore Ts'o, 2002
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 */
26
27#include <linux/fs.h>
28#include <linux/pagemap.h>
29#include <linux/jbd.h>
30#include <linux/time.h>
31#include <linux/ext3_fs.h>
32#include <linux/ext3_jbd.h>
33#include <linux/fcntl.h>
34#include <linux/stat.h>
35#include <linux/string.h>
36#include <linux/quotaops.h>
37#include <linux/buffer_head.h>
Jens Axboecaa38fb2006-07-23 01:41:26 +020038#include <linux/bio.h>
Ben Dooks381be2542005-10-30 15:02:56 -080039
40#include "namei.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#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
49#define NAMEI_RA_SIZE (NAMEI_RA_CHUNKS * NAMEI_RA_BLOCKS)
50#define NAMEI_RA_INDEX(c,b) (((c) * NAMEI_RA_BLOCKS) + (b))
51
52static struct buffer_head *ext3_append(handle_t *handle,
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
Akinobu Mita33575f82008-04-28 02:16:08 -070060 bh = ext3_bread(handle, inode, *block, 1, err);
61 if (bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 inode->i_size += inode->i_sb->s_blocksize;
63 EXT3_I(inode)->i_disksize = inode->i_size;
Akinobu Mita33575f82008-04-28 02:16:08 -070064 *err = ext3_journal_get_write_access(handle, bh);
65 if (*err) {
66 brelse(bh);
67 bh = NULL;
68 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 }
70 return bh;
71}
72
73#ifndef assert
74#define assert(test) J_ASSERT(test)
75#endif
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#ifdef DX_DEBUG
78#define dxtrace(command) command
79#else
Mingming Caoae6ddcc2006-09-27 01:49:27 -070080#define dxtrace(command)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#endif
82
83struct fake_dirent
84{
85 __le32 inode;
86 __le16 rec_len;
87 u8 name_len;
88 u8 file_type;
89};
90
91struct dx_countlimit
92{
93 __le16 limit;
94 __le16 count;
95};
96
97struct dx_entry
98{
99 __le32 hash;
100 __le32 block;
101};
102
103/*
104 * dx_root_info is laid out so that if it should somehow get overlaid by a
105 * dirent the two low bits of the hash version will be zero. Therefore, the
106 * hash version mod 4 should never be 0. Sincerely, the paranoia department.
107 */
108
109struct dx_root
110{
111 struct fake_dirent dot;
112 char dot_name[4];
113 struct fake_dirent dotdot;
114 char dotdot_name[4];
115 struct dx_root_info
116 {
117 __le32 reserved_zero;
118 u8 hash_version;
119 u8 info_length; /* 8 */
120 u8 indirect_levels;
121 u8 unused_flags;
122 }
123 info;
124 struct dx_entry entries[0];
125};
126
127struct dx_node
128{
129 struct fake_dirent fake;
130 struct dx_entry entries[0];
131};
132
133
134struct dx_frame
135{
136 struct buffer_head *bh;
137 struct dx_entry *entries;
138 struct dx_entry *at;
139};
140
141struct dx_map_entry
142{
143 u32 hash;
Eric Sandeenef2b02d2007-09-18 22:46:42 -0700144 u16 offs;
145 u16 size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146};
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148static inline unsigned dx_get_block (struct dx_entry *entry);
149static void dx_set_block (struct dx_entry *entry, unsigned value);
150static inline unsigned dx_get_hash (struct dx_entry *entry);
151static void dx_set_hash (struct dx_entry *entry, unsigned value);
152static unsigned dx_get_count (struct dx_entry *entries);
153static unsigned dx_get_limit (struct dx_entry *entries);
154static void dx_set_count (struct dx_entry *entries, unsigned value);
155static void dx_set_limit (struct dx_entry *entries, unsigned value);
156static unsigned dx_root_limit (struct inode *dir, unsigned infosize);
157static unsigned dx_node_limit (struct inode *dir);
Al Viro734711a2008-08-24 07:26:48 -0400158static struct dx_frame *dx_probe(struct qstr *entry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 struct inode *dir,
160 struct dx_hash_info *hinfo,
161 struct dx_frame *frame,
162 int *err);
163static void dx_release (struct dx_frame *frames);
Wei Yongjun45f90212009-04-02 16:57:14 -0700164static int dx_make_map(struct ext3_dir_entry_2 *de, unsigned blocksize,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 struct dx_hash_info *hinfo, struct dx_map_entry map[]);
166static void dx_sort_map(struct dx_map_entry *map, unsigned count);
167static struct ext3_dir_entry_2 *dx_move_dirents (char *from, char *to,
168 struct dx_map_entry *offsets, int count);
Wei Yongjun45f90212009-04-02 16:57:14 -0700169static struct ext3_dir_entry_2 *dx_pack_dirents(char *base, unsigned blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170static void dx_insert_block (struct dx_frame *frame, u32 hash, u32 block);
171static int ext3_htree_next_block(struct inode *dir, __u32 hash,
172 struct dx_frame *frame,
Mingming Caoae6ddcc2006-09-27 01:49:27 -0700173 struct dx_frame *frames,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 __u32 *start_hash);
Al Viro734711a2008-08-24 07:26:48 -0400175static struct buffer_head * ext3_dx_find_entry(struct inode *dir,
176 struct qstr *entry, struct ext3_dir_entry_2 **res_dir,
177 int *err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry,
179 struct inode *inode);
180
181/*
Jan Kara7c06a8d2007-11-14 17:00:19 -0800182 * p is at least 6 bytes before the end of page
183 */
184static inline struct ext3_dir_entry_2 *
185ext3_next_entry(struct ext3_dir_entry_2 *p)
186{
187 return (struct ext3_dir_entry_2 *)((char *)p +
188 ext3_rec_len_from_disk(p->rec_len));
189}
190
191/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 * Future: use high four bits of block for coalesce-on-delete flags
193 * Mask them off for now.
194 */
195
196static inline unsigned dx_get_block (struct dx_entry *entry)
197{
198 return le32_to_cpu(entry->block) & 0x00ffffff;
199}
200
201static inline void dx_set_block (struct dx_entry *entry, unsigned value)
202{
203 entry->block = cpu_to_le32(value);
204}
205
206static inline unsigned dx_get_hash (struct dx_entry *entry)
207{
208 return le32_to_cpu(entry->hash);
209}
210
211static inline void dx_set_hash (struct dx_entry *entry, unsigned value)
212{
213 entry->hash = cpu_to_le32(value);
214}
215
216static inline unsigned dx_get_count (struct dx_entry *entries)
217{
218 return le16_to_cpu(((struct dx_countlimit *) entries)->count);
219}
220
221static inline unsigned dx_get_limit (struct dx_entry *entries)
222{
223 return le16_to_cpu(((struct dx_countlimit *) entries)->limit);
224}
225
226static inline void dx_set_count (struct dx_entry *entries, unsigned value)
227{
228 ((struct dx_countlimit *) entries)->count = cpu_to_le16(value);
229}
230
231static inline void dx_set_limit (struct dx_entry *entries, unsigned value)
232{
233 ((struct dx_countlimit *) entries)->limit = cpu_to_le16(value);
234}
235
236static inline unsigned dx_root_limit (struct inode *dir, unsigned infosize)
237{
238 unsigned entry_space = dir->i_sb->s_blocksize - EXT3_DIR_REC_LEN(1) -
239 EXT3_DIR_REC_LEN(2) - infosize;
Li Zefan8ef27202008-07-25 01:46:29 -0700240 return entry_space / sizeof(struct dx_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
243static inline unsigned dx_node_limit (struct inode *dir)
244{
245 unsigned entry_space = dir->i_sb->s_blocksize - EXT3_DIR_REC_LEN(0);
Li Zefan8ef27202008-07-25 01:46:29 -0700246 return entry_space / sizeof(struct dx_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
249/*
250 * Debug
251 */
252#ifdef DX_DEBUG
253static void dx_show_index (char * label, struct dx_entry *entries)
254{
255 int i, n = dx_get_count (entries);
256 printk("%s index ", label);
257 for (i = 0; i < n; i++)
258 {
259 printk("%x->%u ", i? dx_get_hash(entries + i): 0, dx_get_block(entries + i));
260 }
261 printk("\n");
262}
263
264struct stats
Mingming Caoae6ddcc2006-09-27 01:49:27 -0700265{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 unsigned names;
267 unsigned space;
268 unsigned bcount;
269};
270
271static struct stats dx_show_leaf(struct dx_hash_info *hinfo, struct ext3_dir_entry_2 *de,
272 int size, int show_names)
273{
274 unsigned names = 0, space = 0;
275 char *base = (char *) de;
276 struct dx_hash_info h = *hinfo;
277
278 printk("names: ");
279 while ((char *) de < base + size)
280 {
281 if (de->inode)
282 {
283 if (show_names)
284 {
285 int len = de->name_len;
286 char *name = de->name;
287 while (len--) printk("%c", *name++);
288 ext3fs_dirhash(de->name, de->name_len, &h);
289 printk(":%x.%u ", h.hash,
290 ((char *) de - base));
291 }
292 space += EXT3_DIR_REC_LEN(de->name_len);
Dave Kleikampe9ad5622006-09-27 01:49:35 -0700293 names++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
Jan Kara7c06a8d2007-11-14 17:00:19 -0800295 de = ext3_next_entry(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
297 printk("(%i)\n", names);
298 return (struct stats) { names, space, 1 };
299}
300
301struct stats dx_show_entries(struct dx_hash_info *hinfo, struct inode *dir,
302 struct dx_entry *entries, int levels)
303{
304 unsigned blocksize = dir->i_sb->s_blocksize;
305 unsigned count = dx_get_count (entries), names = 0, space = 0, i;
306 unsigned bcount = 0;
307 struct buffer_head *bh;
308 int err;
309 printk("%i indexed blocks...\n", count);
310 for (i = 0; i < count; i++, entries++)
311 {
312 u32 block = dx_get_block(entries), hash = i? dx_get_hash(entries): 0;
313 u32 range = i < count - 1? (dx_get_hash(entries + 1) - hash): ~hash;
314 struct stats stats;
315 printk("%s%3u:%03u hash %8x/%8x ",levels?"":" ", i, block, hash, range);
316 if (!(bh = ext3_bread (NULL,dir, block, 0,&err))) continue;
317 stats = levels?
318 dx_show_entries(hinfo, dir, ((struct dx_node *) bh->b_data)->entries, levels - 1):
319 dx_show_leaf(hinfo, (struct ext3_dir_entry_2 *) bh->b_data, blocksize, 0);
320 names += stats.names;
321 space += stats.space;
322 bcount += stats.bcount;
323 brelse (bh);
324 }
325 if (bcount)
326 printk("%snames %u, fullness %u (%u%%)\n", levels?"":" ",
327 names, space/bcount,(space/bcount)*100/blocksize);
328 return (struct stats) { names, space, bcount};
329}
330#endif /* DX_DEBUG */
331
332/*
333 * Probe for a directory leaf block to search.
334 *
335 * dx_probe can return ERR_BAD_DX_DIR, which means there was a format
336 * error in the directory index, and the caller should fall back to
337 * searching the directory normally. The callers of dx_probe **MUST**
338 * check for this error code, and make sure it never gets reflected
339 * back to userspace.
340 */
341static struct dx_frame *
Al Viro734711a2008-08-24 07:26:48 -0400342dx_probe(struct qstr *entry, struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 struct dx_hash_info *hinfo, struct dx_frame *frame_in, int *err)
344{
345 unsigned count, indirect;
346 struct dx_entry *at, *entries, *p, *q, *m;
347 struct dx_root *root;
348 struct buffer_head *bh;
349 struct dx_frame *frame = frame_in;
350 u32 hash;
351
352 frame->bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 if (!(bh = ext3_bread (NULL,dir, 0, 0, err)))
354 goto fail;
355 root = (struct dx_root *) bh->b_data;
356 if (root->info.hash_version != DX_HASH_TEA &&
357 root->info.hash_version != DX_HASH_HALF_MD4 &&
358 root->info.hash_version != DX_HASH_LEGACY) {
Harvey Harrisone05b6b52008-04-28 02:16:15 -0700359 ext3_warning(dir->i_sb, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 "Unrecognised inode hash code %d",
361 root->info.hash_version);
362 brelse(bh);
363 *err = ERR_BAD_DX_DIR;
364 goto fail;
365 }
366 hinfo->hash_version = root->info.hash_version;
Theodore Ts'o5e1f8c92008-10-28 13:21:55 -0400367 if (hinfo->hash_version <= DX_HASH_TEA)
368 hinfo->hash_version += EXT3_SB(dir->i_sb)->s_hash_unsigned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 hinfo->seed = EXT3_SB(dir->i_sb)->s_hash_seed;
Al Viro734711a2008-08-24 07:26:48 -0400370 if (entry)
371 ext3fs_dirhash(entry->name, entry->len, hinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 hash = hinfo->hash;
373
374 if (root->info.unused_flags & 1) {
Harvey Harrisone05b6b52008-04-28 02:16:15 -0700375 ext3_warning(dir->i_sb, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 "Unimplemented inode hash flags: %#06x",
377 root->info.unused_flags);
378 brelse(bh);
379 *err = ERR_BAD_DX_DIR;
380 goto fail;
381 }
382
383 if ((indirect = root->info.indirect_levels) > 1) {
Harvey Harrisone05b6b52008-04-28 02:16:15 -0700384 ext3_warning(dir->i_sb, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 "Unimplemented inode hash depth: %#06x",
386 root->info.indirect_levels);
387 brelse(bh);
388 *err = ERR_BAD_DX_DIR;
389 goto fail;
390 }
391
392 entries = (struct dx_entry *) (((char *)&root->info) +
393 root->info.info_length);
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700394
395 if (dx_get_limit(entries) != dx_root_limit(dir,
396 root->info.info_length)) {
Harvey Harrisone05b6b52008-04-28 02:16:15 -0700397 ext3_warning(dir->i_sb, __func__,
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700398 "dx entry: limit != root limit");
399 brelse(bh);
400 *err = ERR_BAD_DX_DIR;
401 goto fail;
402 }
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 dxtrace (printk("Look up %x", hash));
405 while (1)
406 {
407 count = dx_get_count(entries);
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700408 if (!count || count > dx_get_limit(entries)) {
Harvey Harrisone05b6b52008-04-28 02:16:15 -0700409 ext3_warning(dir->i_sb, __func__,
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700410 "dx entry: no count or count > limit");
411 brelse(bh);
412 *err = ERR_BAD_DX_DIR;
413 goto fail2;
414 }
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 p = entries + 1;
417 q = entries + count - 1;
418 while (p <= q)
419 {
420 m = p + (q - p)/2;
421 dxtrace(printk("."));
422 if (dx_get_hash(m) > hash)
423 q = m - 1;
424 else
425 p = m + 1;
426 }
427
428 if (0) // linear search cross check
429 {
430 unsigned n = count - 1;
431 at = entries;
432 while (n--)
433 {
434 dxtrace(printk(","));
435 if (dx_get_hash(++at) > hash)
436 {
437 at--;
438 break;
439 }
440 }
441 assert (at == p - 1);
442 }
443
444 at = p - 1;
445 dxtrace(printk(" %x->%u\n", at == entries? 0: dx_get_hash(at), dx_get_block(at)));
446 frame->bh = bh;
447 frame->entries = entries;
448 frame->at = at;
449 if (!indirect--) return frame;
450 if (!(bh = ext3_bread (NULL,dir, dx_get_block(at), 0, err)))
451 goto fail2;
452 at = entries = ((struct dx_node *) bh->b_data)->entries;
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700453 if (dx_get_limit(entries) != dx_node_limit (dir)) {
Harvey Harrisone05b6b52008-04-28 02:16:15 -0700454 ext3_warning(dir->i_sb, __func__,
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700455 "dx entry: limit != node limit");
456 brelse(bh);
457 *err = ERR_BAD_DX_DIR;
458 goto fail2;
459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 frame++;
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700461 frame->bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
463fail2:
464 while (frame >= frame_in) {
465 brelse(frame->bh);
466 frame--;
467 }
468fail:
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700469 if (*err == ERR_BAD_DX_DIR)
Harvey Harrisone05b6b52008-04-28 02:16:15 -0700470 ext3_warning(dir->i_sb, __func__,
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700471 "Corrupt dir inode %ld, running e2fsck is "
472 "recommended.", dir->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 return NULL;
474}
475
476static void dx_release (struct dx_frame *frames)
477{
478 if (frames[0].bh == NULL)
479 return;
480
481 if (((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels)
482 brelse(frames[1].bh);
483 brelse(frames[0].bh);
484}
485
486/*
487 * This function increments the frame pointer to search the next leaf
488 * block, and reads in the necessary intervening nodes if the search
489 * should be necessary. Whether or not the search is necessary is
490 * controlled by the hash parameter. If the hash value is even, then
491 * the search is only continued if the next block starts with that
492 * hash value. This is used if we are searching for a specific file.
493 *
494 * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
495 *
496 * This function returns 1 if the caller should continue to search,
497 * or 0 if it should not. If there is an error reading one of the
498 * index blocks, it will a negative error code.
499 *
500 * If start_hash is non-null, it will be filled in with the starting
501 * hash of the next page.
502 */
503static int ext3_htree_next_block(struct inode *dir, __u32 hash,
504 struct dx_frame *frame,
Mingming Caoae6ddcc2006-09-27 01:49:27 -0700505 struct dx_frame *frames,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 __u32 *start_hash)
507{
508 struct dx_frame *p;
509 struct buffer_head *bh;
510 int err, num_frames = 0;
511 __u32 bhash;
512
513 p = frame;
514 /*
515 * Find the next leaf page by incrementing the frame pointer.
516 * If we run out of entries in the interior node, loop around and
517 * increment pointer in the parent node. When we break out of
518 * this loop, num_frames indicates the number of interior
519 * nodes need to be read.
520 */
521 while (1) {
522 if (++(p->at) < p->entries + dx_get_count(p->entries))
523 break;
524 if (p == frames)
525 return 0;
526 num_frames++;
527 p--;
528 }
529
530 /*
531 * If the hash is 1, then continue only if the next page has a
532 * continuation hash of any value. This is used for readdir
533 * handling. Otherwise, check to see if the hash matches the
534 * desired contiuation hash. If it doesn't, return since
535 * there's no point to read in the successive index pages.
536 */
537 bhash = dx_get_hash(p->at);
538 if (start_hash)
539 *start_hash = bhash;
540 if ((hash & 1) == 0) {
541 if ((bhash & ~1) != hash)
542 return 0;
543 }
544 /*
545 * If the hash is HASH_NB_ALWAYS, we always go to the next
546 * block so no check is necessary
547 */
548 while (num_frames--) {
549 if (!(bh = ext3_bread(NULL, dir, dx_get_block(p->at),
550 0, &err)))
551 return err; /* Failure */
552 p++;
553 brelse (p->bh);
554 p->bh = bh;
555 p->at = p->entries = ((struct dx_node *) bh->b_data)->entries;
556 }
557 return 1;
558}
559
560
561/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 * This function fills a red-black tree with information from a
563 * directory block. It returns the number directory entries loaded
564 * into the tree. If there is an error it is returned in err.
565 */
566static int htree_dirblock_to_tree(struct file *dir_file,
567 struct inode *dir, int block,
568 struct dx_hash_info *hinfo,
569 __u32 start_hash, __u32 start_minor_hash)
570{
571 struct buffer_head *bh;
572 struct ext3_dir_entry_2 *de, *top;
573 int err, count = 0;
574
575 dxtrace(printk("In htree dirblock_to_tree: block %d\n", block));
576 if (!(bh = ext3_bread (NULL, dir, block, 0, &err)))
577 return err;
578
579 de = (struct ext3_dir_entry_2 *) bh->b_data;
580 top = (struct ext3_dir_entry_2 *) ((char *) de +
581 dir->i_sb->s_blocksize -
582 EXT3_DIR_REC_LEN(0));
583 for (; de < top; de = ext3_next_entry(de)) {
Eric Sandeen40b85132006-12-06 20:36:26 -0800584 if (!ext3_check_dir_entry("htree_dirblock_to_tree", dir, de, bh,
585 (block<<EXT3_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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 ext3fs_dirhash(de->name, de->name_len, hinfo);
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;
600 if ((err = ext3_htree_store_dirent(dir_file,
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 */
620int ext3_htree_fill_tree(struct file *dir_file, __u32 start_hash,
621 __u32 start_minor_hash, __u32 *next_hash)
622{
623 struct dx_hash_info hinfo;
624 struct ext3_dir_entry_2 *de;
625 struct dx_frame frames[2], *frame;
626 struct inode *dir;
627 int block, err;
628 int count = 0;
629 int ret;
630 __u32 hashval;
631
632 dxtrace(printk("In htree_fill_tree, start hash: %x:%x\n", start_hash,
633 start_minor_hash));
Josef "Jeff" Sipekfe21a692006-12-08 02:36:38 -0800634 dir = dir_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 if (!(EXT3_I(dir)->i_flags & EXT3_INDEX_FL)) {
636 hinfo.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version;
Theodore Ts'o5e1f8c92008-10-28 13:21:55 -0400637 if (hinfo.hash_version <= DX_HASH_TEA)
638 hinfo.hash_version +=
639 EXT3_SB(dir->i_sb)->s_hash_unsigned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 hinfo.seed = EXT3_SB(dir->i_sb)->s_hash_seed;
641 count = htree_dirblock_to_tree(dir_file, dir, 0, &hinfo,
642 start_hash, start_minor_hash);
643 *next_hash = ~0;
644 return count;
645 }
646 hinfo.hash = start_hash;
647 hinfo.minor_hash = 0;
Josef "Jeff" Sipekfe21a692006-12-08 02:36:38 -0800648 frame = dx_probe(NULL, dir_file->f_path.dentry->d_inode, &hinfo, frames, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 if (!frame)
650 return err;
651
652 /* Add '.' and '..' from the htree header */
653 if (!start_hash && !start_minor_hash) {
654 de = (struct ext3_dir_entry_2 *) frames[0].bh->b_data;
655 if ((err = ext3_htree_store_dirent(dir_file, 0, 0, de)) != 0)
656 goto errout;
657 count++;
658 }
659 if (start_hash < 2 || (start_hash ==2 && start_minor_hash==0)) {
660 de = (struct ext3_dir_entry_2 *) frames[0].bh->b_data;
661 de = ext3_next_entry(de);
662 if ((err = ext3_htree_store_dirent(dir_file, 2, 0, de)) != 0)
663 goto errout;
664 count++;
665 }
666
667 while (1) {
668 block = dx_get_block(frame->at);
669 ret = htree_dirblock_to_tree(dir_file, dir, block, &hinfo,
670 start_hash, start_minor_hash);
671 if (ret < 0) {
672 err = ret;
673 goto errout;
674 }
675 count += ret;
676 hashval = ~0;
Mingming Caoae6ddcc2006-09-27 01:49:27 -0700677 ret = ext3_htree_next_block(dir, HASH_NB_ALWAYS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 frame, frames, &hashval);
679 *next_hash = hashval;
680 if (ret < 0) {
681 err = ret;
682 goto errout;
683 }
684 /*
685 * Stop if: (a) there are no more entries, or
686 * (b) we have inserted at least one entry and the
687 * next hash value is not a continuation
688 */
689 if ((ret == 0) ||
690 (count && ((hashval & 1) == 0)))
691 break;
692 }
693 dx_release(frames);
Mingming Caoae6ddcc2006-09-27 01:49:27 -0700694 dxtrace(printk("Fill tree: returned %d entries, next hash: %x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 count, *next_hash));
696 return count;
697errout:
698 dx_release(frames);
699 return (err);
700}
701
702
703/*
704 * Directory block splitting, compacting
705 */
706
Eric Sandeenef2b02d2007-09-18 22:46:42 -0700707/*
708 * Create map of hash values, offsets, and sizes, stored at end of block.
709 * Returns number of entries mapped.
710 */
Wei Yongjun45f90212009-04-02 16:57:14 -0700711static int dx_make_map(struct ext3_dir_entry_2 *de, unsigned blocksize,
712 struct dx_hash_info *hinfo, struct dx_map_entry *map_tail)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
714 int count = 0;
715 char *base = (char *) de;
716 struct dx_hash_info h = *hinfo;
717
Wei Yongjun45f90212009-04-02 16:57:14 -0700718 while ((char *) de < base + blocksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 {
720 if (de->name_len && de->inode) {
721 ext3fs_dirhash(de->name, de->name_len, &h);
722 map_tail--;
723 map_tail->hash = h.hash;
Eric Sandeenef2b02d2007-09-18 22:46:42 -0700724 map_tail->offs = (u16) ((char *) de - base);
725 map_tail->size = le16_to_cpu(de->rec_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 count++;
727 cond_resched();
728 }
729 /* XXX: do we need to check rec_len == 0 case? -Chris */
Jan Kara7c06a8d2007-11-14 17:00:19 -0800730 de = ext3_next_entry(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 }
732 return count;
733}
734
Eric Sandeenef2b02d2007-09-18 22:46:42 -0700735/* Sort map by hash value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736static void dx_sort_map (struct dx_map_entry *map, unsigned count)
737{
738 struct dx_map_entry *p, *q, *top = map + count - 1;
739 int more;
740 /* Combsort until bubble sort doesn't suck */
741 while (count > 2)
742 {
743 count = count*10/13;
744 if (count - 9 < 2) /* 9, 10 -> 11 */
745 count = 11;
746 for (p = top, q = p - count; q >= map; p--, q--)
747 if (p->hash < q->hash)
748 swap(*p, *q);
749 }
750 /* Garden variety bubble sort */
751 do {
752 more = 0;
753 q = top;
754 while (q-- > map)
755 {
756 if (q[1].hash >= q[0].hash)
757 continue;
758 swap(*(q+1), *q);
759 more = 1;
760 }
761 } while(more);
762}
763
764static void dx_insert_block(struct dx_frame *frame, u32 hash, u32 block)
765{
766 struct dx_entry *entries = frame->entries;
767 struct dx_entry *old = frame->at, *new = old + 1;
768 int count = dx_get_count(entries);
769
770 assert(count < dx_get_limit(entries));
771 assert(old < entries + count);
772 memmove(new + 1, new, (char *)(entries + count) - (char *)(new));
773 dx_set_hash(new, hash);
774 dx_set_block(new, block);
775 dx_set_count(entries, count + 1);
776}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778static void ext3_update_dx_flag(struct inode *inode)
779{
780 if (!EXT3_HAS_COMPAT_FEATURE(inode->i_sb,
781 EXT3_FEATURE_COMPAT_DIR_INDEX))
782 EXT3_I(inode)->i_flags &= ~EXT3_INDEX_FL;
783}
784
785/*
786 * NOTE! unlike strncmp, ext3_match returns 1 for success, 0 for failure.
787 *
788 * `len <= EXT3_NAME_LEN' is guaranteed by caller.
789 * `de != NULL' is guaranteed by caller.
790 */
791static inline int ext3_match (int len, const char * const name,
792 struct ext3_dir_entry_2 * de)
793{
794 if (len != de->name_len)
795 return 0;
796 if (!de->inode)
797 return 0;
798 return !memcmp(name, de->name, len);
799}
800
801/*
802 * Returns 0 if not found, -1 on failure, and 1 on success
803 */
804static inline int search_dirblock(struct buffer_head * bh,
805 struct inode *dir,
Al Viro734711a2008-08-24 07:26:48 -0400806 struct qstr *child,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 unsigned long offset,
808 struct ext3_dir_entry_2 ** res_dir)
809{
810 struct ext3_dir_entry_2 * de;
811 char * dlimit;
812 int de_len;
Al Viro734711a2008-08-24 07:26:48 -0400813 const char *name = child->name;
814 int namelen = child->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 de = (struct ext3_dir_entry_2 *) bh->b_data;
817 dlimit = bh->b_data + dir->i_sb->s_blocksize;
818 while ((char *) de < dlimit) {
819 /* this code is executed quadratically often */
820 /* do minimal checking `by hand' */
821
822 if ((char *) de + namelen <= dlimit &&
823 ext3_match (namelen, name, de)) {
824 /* found a match - just to be sure, do a full check */
825 if (!ext3_check_dir_entry("ext3_find_entry",
826 dir, de, bh, offset))
827 return -1;
828 *res_dir = de;
829 return 1;
830 }
831 /* prevent looping on a bad block */
Jan Kara7c06a8d2007-11-14 17:00:19 -0800832 de_len = ext3_rec_len_from_disk(de->rec_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 if (de_len <= 0)
834 return -1;
835 offset += de_len;
836 de = (struct ext3_dir_entry_2 *) ((char *) de + de_len);
837 }
838 return 0;
839}
840
841
842/*
843 * ext3_find_entry()
844 *
845 * finds an entry in the specified directory with the wanted name. It
846 * returns the cache buffer in which the entry was found, and the entry
847 * itself (as a parameter - res_dir). It does NOT read the inode of the
848 * entry - you'll have to do that yourself if you want to.
849 *
850 * The returned buffer_head has ->b_count elevated. The caller is expected
851 * to brelse() it when appropriate.
852 */
Al Viro734711a2008-08-24 07:26:48 -0400853static struct buffer_head *ext3_find_entry(struct inode *dir,
854 struct qstr *entry,
855 struct ext3_dir_entry_2 **res_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
857 struct super_block * sb;
858 struct buffer_head * bh_use[NAMEI_RA_SIZE];
859 struct buffer_head * bh, *ret = NULL;
860 unsigned long start, block, b;
Theodore Ts'of0cad892010-10-16 19:36:59 -0400861 const u8 *name = entry->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 int ra_max = 0; /* Number of bh's in the readahead
863 buffer, bh_use[] */
864 int ra_ptr = 0; /* Current index into readahead
865 buffer */
866 int num = 0;
867 int nblocks, i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 int namelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 *res_dir = NULL;
871 sb = dir->i_sb;
Al Viro734711a2008-08-24 07:26:48 -0400872 namelen = entry->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 if (namelen > EXT3_NAME_LEN)
874 return NULL;
Theodore Ts'of0cad892010-10-16 19:36:59 -0400875 if ((namelen <= 2) && (name[0] == '.') &&
876 (name[1] == '.' || name[1] == 0)) {
877 /*
878 * "." or ".." will only be in the first block
879 * NFS may look up ".."; "." should be handled by the VFS
880 */
881 block = start = 0;
882 nblocks = 1;
883 goto restart;
884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 if (is_dx(dir)) {
Al Viro734711a2008-08-24 07:26:48 -0400886 bh = ext3_dx_find_entry(dir, entry, res_dir, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 /*
888 * On success, or if the error was file not found,
889 * return. Otherwise, fall back to doing a search the
890 * old fashioned way.
891 */
892 if (bh || (err != ERR_BAD_DX_DIR))
893 return bh;
894 dxtrace(printk("ext3_find_entry: dx failed, falling back\n"));
895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 nblocks = dir->i_size >> EXT3_BLOCK_SIZE_BITS(sb);
897 start = EXT3_I(dir)->i_dir_start_lookup;
898 if (start >= nblocks)
899 start = 0;
900 block = start;
901restart:
902 do {
903 /*
904 * We deal with the read-ahead logic here.
905 */
906 if (ra_ptr >= ra_max) {
907 /* Refill the readahead buffer */
908 ra_ptr = 0;
909 b = block;
910 for (ra_max = 0; ra_max < NAMEI_RA_SIZE; ra_max++) {
911 /*
912 * Terminate if we reach the end of the
913 * directory and must wrap, or if our
914 * search has finished at this block.
915 */
916 if (b >= nblocks || (num && block == start)) {
917 bh_use[ra_max] = NULL;
918 break;
919 }
920 num++;
921 bh = ext3_getblk(NULL, dir, b++, 0, &err);
922 bh_use[ra_max] = bh;
923 if (bh)
Jens Axboecaa38fb2006-07-23 01:41:26 +0200924 ll_rw_block(READ_META, 1, &bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 }
926 }
927 if ((bh = bh_use[ra_ptr++]) == NULL)
928 goto next;
929 wait_on_buffer(bh);
930 if (!buffer_uptodate(bh)) {
931 /* read error, skip block & hope for the best */
Harvey Harrisone05b6b52008-04-28 02:16:15 -0700932 ext3_error(sb, __func__, "reading directory #%lu "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 "offset %lu", dir->i_ino, block);
934 brelse(bh);
935 goto next;
936 }
Al Viro734711a2008-08-24 07:26:48 -0400937 i = search_dirblock(bh, dir, entry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 block << EXT3_BLOCK_SIZE_BITS(sb), res_dir);
939 if (i == 1) {
940 EXT3_I(dir)->i_dir_start_lookup = block;
941 ret = bh;
942 goto cleanup_and_exit;
943 } else {
944 brelse(bh);
945 if (i < 0)
946 goto cleanup_and_exit;
947 }
948 next:
949 if (++block >= nblocks)
950 block = 0;
951 } while (block != start);
952
953 /*
954 * If the directory has grown while we were searching, then
955 * search the last part of the directory before giving up.
956 */
957 block = nblocks;
958 nblocks = dir->i_size >> EXT3_BLOCK_SIZE_BITS(sb);
959 if (block < nblocks) {
960 start = 0;
961 goto restart;
962 }
963
964cleanup_and_exit:
965 /* Clean up the read-ahead blocks */
966 for (; ra_ptr < ra_max; ra_ptr++)
967 brelse (bh_use[ra_ptr]);
968 return ret;
969}
970
Al Viro734711a2008-08-24 07:26:48 -0400971static struct buffer_head * ext3_dx_find_entry(struct inode *dir,
972 struct qstr *entry, struct ext3_dir_entry_2 **res_dir,
973 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
Theodore Ts'of0cad892010-10-16 19:36:59 -0400975 struct super_block *sb = dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 struct dx_hash_info hinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 struct dx_frame frames[2], *frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 struct buffer_head *bh;
979 unsigned long block;
980 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Theodore Ts'of0cad892010-10-16 19:36:59 -0400982 if (!(frame = dx_probe(entry, dir, &hinfo, frames, err)))
983 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 do {
985 block = dx_get_block(frame->at);
986 if (!(bh = ext3_bread (NULL,dir, block, 0, err)))
987 goto errout;
Duane Griffin275c0a82008-07-25 01:46:31 -0700988
Theodore Ts'o5026e902010-10-16 19:37:00 -0400989 retval = search_dirblock(bh, dir, entry,
990 block << EXT3_BLOCK_SIZE_BITS(sb),
991 res_dir);
992 if (retval == 1) {
993 dx_release(frames);
994 return bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 }
Theodore Ts'o5026e902010-10-16 19:37:00 -0400996 brelse(bh);
997 if (retval == -1) {
998 *err = ERR_BAD_DX_DIR;
999 goto errout;
1000 }
1001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 /* Check to see if we should continue to search */
Theodore Ts'of0cad892010-10-16 19:36:59 -04001003 retval = ext3_htree_next_block(dir, hinfo.hash, frame,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 frames, NULL);
1005 if (retval < 0) {
Harvey Harrisone05b6b52008-04-28 02:16:15 -07001006 ext3_warning(sb, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 "error reading index page in directory #%lu",
1008 dir->i_ino);
1009 *err = retval;
1010 goto errout;
1011 }
1012 } while (retval == 1);
1013
1014 *err = -ENOENT;
1015errout:
1016 dxtrace(printk("%s not found\n", name));
1017 dx_release (frames);
1018 return NULL;
1019}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021static struct dentry *ext3_lookup(struct inode * dir, struct dentry *dentry, struct nameidata *nd)
1022{
1023 struct inode * inode;
1024 struct ext3_dir_entry_2 * de;
1025 struct buffer_head * bh;
1026
1027 if (dentry->d_name.len > EXT3_NAME_LEN)
1028 return ERR_PTR(-ENAMETOOLONG);
1029
Al Viro734711a2008-08-24 07:26:48 -04001030 bh = ext3_find_entry(dir, &dentry->d_name, &de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 inode = NULL;
1032 if (bh) {
1033 unsigned long ino = le32_to_cpu(de->inode);
1034 brelse (bh);
Neil Brown2ccb48e2006-07-30 03:03:01 -07001035 if (!ext3_valid_inum(dir->i_sb, ino)) {
1036 ext3_error(dir->i_sb, "ext3_lookup",
1037 "bad inode number: %lu", ino);
David Howells473043d2008-02-07 00:15:36 -08001038 return ERR_PTR(-EIO);
Vasily Averina6c15c22007-07-15 23:40:46 -07001039 }
David Howells473043d2008-02-07 00:15:36 -08001040 inode = ext3_iget(dir->i_sb, ino);
Al Viroa9049372011-07-08 21:20:11 -04001041 if (inode == ERR_PTR(-ESTALE)) {
1042 ext3_error(dir->i_sb, __func__,
1043 "deleted inode referenced: %lu",
1044 ino);
1045 return ERR_PTR(-EIO);
Bryan Donlande18f3b2009-04-02 16:57:15 -07001046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 }
Pekka Enbergba7fe362006-01-14 13:21:08 -08001048 return d_splice_alias(inode, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049}
1050
1051
1052struct dentry *ext3_get_parent(struct dentry *child)
1053{
1054 unsigned long ino;
Al Viro734711a2008-08-24 07:26:48 -04001055 struct qstr dotdot = {.name = "..", .len = 2};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 struct ext3_dir_entry_2 * de;
1057 struct buffer_head *bh;
1058
Al Viro734711a2008-08-24 07:26:48 -04001059 bh = ext3_find_entry(child->d_inode, &dotdot, &de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 if (!bh)
1061 return ERR_PTR(-ENOENT);
1062 ino = le32_to_cpu(de->inode);
1063 brelse(bh);
Neil Brown2ccb48e2006-07-30 03:03:01 -07001064
1065 if (!ext3_valid_inum(child->d_inode->i_sb, ino)) {
1066 ext3_error(child->d_inode->i_sb, "ext3_get_parent",
1067 "bad inode number: %lu", ino);
David Howells473043d2008-02-07 00:15:36 -08001068 return ERR_PTR(-EIO);
Vasily Averina6c15c22007-07-15 23:40:46 -07001069 }
1070
Christoph Hellwig44003722008-08-11 15:49:04 +02001071 return d_obtain_alias(ext3_iget(child->d_inode->i_sb, ino));
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001072}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074#define S_SHIFT 12
1075static unsigned char ext3_type_by_mode[S_IFMT >> S_SHIFT] = {
1076 [S_IFREG >> S_SHIFT] = EXT3_FT_REG_FILE,
1077 [S_IFDIR >> S_SHIFT] = EXT3_FT_DIR,
1078 [S_IFCHR >> S_SHIFT] = EXT3_FT_CHRDEV,
1079 [S_IFBLK >> S_SHIFT] = EXT3_FT_BLKDEV,
1080 [S_IFIFO >> S_SHIFT] = EXT3_FT_FIFO,
1081 [S_IFSOCK >> S_SHIFT] = EXT3_FT_SOCK,
1082 [S_IFLNK >> S_SHIFT] = EXT3_FT_SYMLINK,
1083};
1084
1085static inline void ext3_set_de_type(struct super_block *sb,
1086 struct ext3_dir_entry_2 *de,
1087 umode_t mode) {
1088 if (EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_FILETYPE))
1089 de->file_type = ext3_type_by_mode[(mode & S_IFMT)>>S_SHIFT];
1090}
1091
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001092/*
1093 * Move count entries from end of map between two memory locations.
1094 * Returns pointer to last entry moved.
1095 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096static struct ext3_dir_entry_2 *
1097dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count)
1098{
1099 unsigned rec_len = 0;
1100
1101 while (count--) {
1102 struct ext3_dir_entry_2 *de = (struct ext3_dir_entry_2 *) (from + map->offs);
1103 rec_len = EXT3_DIR_REC_LEN(de->name_len);
1104 memcpy (to, de, rec_len);
1105 ((struct ext3_dir_entry_2 *) to)->rec_len =
Jan Kara7c06a8d2007-11-14 17:00:19 -08001106 ext3_rec_len_to_disk(rec_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 de->inode = 0;
1108 map++;
1109 to += rec_len;
1110 }
1111 return (struct ext3_dir_entry_2 *) (to - rec_len);
1112}
1113
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001114/*
1115 * Compact each dir entry in the range to the minimal rec_len.
1116 * Returns pointer to last entry in range.
1117 */
Wei Yongjun45f90212009-04-02 16:57:14 -07001118static struct ext3_dir_entry_2 *dx_pack_dirents(char *base, unsigned blocksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
Wei Yongjun45f90212009-04-02 16:57:14 -07001120 struct ext3_dir_entry_2 *next, *to, *prev;
1121 struct ext3_dir_entry_2 *de = (struct ext3_dir_entry_2 *)base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 unsigned rec_len = 0;
1123
1124 prev = to = de;
Wei Yongjun45f90212009-04-02 16:57:14 -07001125 while ((char *)de < base + blocksize) {
Jan Kara7c06a8d2007-11-14 17:00:19 -08001126 next = ext3_next_entry(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 if (de->inode && de->name_len) {
1128 rec_len = EXT3_DIR_REC_LEN(de->name_len);
1129 if (de > to)
1130 memmove(to, de, rec_len);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001131 to->rec_len = ext3_rec_len_to_disk(rec_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 prev = to;
1133 to = (struct ext3_dir_entry_2 *) (((char *) to) + rec_len);
1134 }
1135 de = next;
1136 }
1137 return prev;
1138}
1139
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001140/*
1141 * Split a full leaf block to make room for a new dir entry.
1142 * Allocate a new block, and move entries so that they are approx. equally full.
1143 * Returns pointer to de in block into which the new entry will be inserted.
1144 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145static struct ext3_dir_entry_2 *do_split(handle_t *handle, struct inode *dir,
1146 struct buffer_head **bh,struct dx_frame *frame,
1147 struct dx_hash_info *hinfo, int *error)
1148{
1149 unsigned blocksize = dir->i_sb->s_blocksize;
1150 unsigned count, continued;
1151 struct buffer_head *bh2;
1152 u32 newblock;
1153 u32 hash2;
1154 struct dx_map_entry *map;
1155 char *data1 = (*bh)->b_data, *data2;
Theodore Ts'o59e315b2008-12-06 16:58:39 -05001156 unsigned split, move, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 struct ext3_dir_entry_2 *de = NULL, *de2;
Theodore Ts'o59e315b2008-12-06 16:58:39 -05001158 int err = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001160 bh2 = ext3_append (handle, dir, &newblock, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 if (!(bh2)) {
1162 brelse(*bh);
1163 *bh = NULL;
1164 goto errout;
1165 }
1166
1167 BUFFER_TRACE(*bh, "get_write_access");
1168 err = ext3_journal_get_write_access(handle, *bh);
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001169 if (err)
1170 goto journal_error;
1171
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 BUFFER_TRACE(frame->bh, "get_write_access");
1173 err = ext3_journal_get_write_access(handle, frame->bh);
1174 if (err)
1175 goto journal_error;
1176
1177 data2 = bh2->b_data;
1178
1179 /* create map in the end of data2 block */
1180 map = (struct dx_map_entry *) (data2 + blocksize);
1181 count = dx_make_map ((struct ext3_dir_entry_2 *) data1,
1182 blocksize, hinfo, map);
1183 map -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 dx_sort_map (map, count);
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001185 /* Split the existing block in the middle, size-wise */
1186 size = 0;
1187 move = 0;
1188 for (i = count-1; i >= 0; i--) {
1189 /* is more than half of this entry in 2nd half of the block? */
1190 if (size + map[i].size/2 > blocksize/2)
1191 break;
1192 size += map[i].size;
1193 move++;
1194 }
1195 /* map index at which we will split */
1196 split = count - move;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 hash2 = map[split].hash;
1198 continued = hash2 == map[split - 1].hash;
1199 dxtrace(printk("Split block %i at %x, %i/%i\n",
1200 dx_get_block(frame->at), hash2, split, count-split));
1201
1202 /* Fancy dance to stay within two buffers */
1203 de2 = dx_move_dirents(data1, data2, map + split, count - split);
1204 de = dx_pack_dirents(data1,blocksize);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001205 de->rec_len = ext3_rec_len_to_disk(data1 + blocksize - (char *) de);
1206 de2->rec_len = ext3_rec_len_to_disk(data2 + blocksize - (char *) de2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data1, blocksize, 1));
1208 dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data2, blocksize, 1));
1209
1210 /* Which block gets the new entry? */
1211 if (hinfo->hash >= hash2)
1212 {
1213 swap(*bh, bh2);
1214 de = de2;
1215 }
1216 dx_insert_block (frame, hash2 + continued, newblock);
1217 err = ext3_journal_dirty_metadata (handle, bh2);
1218 if (err)
1219 goto journal_error;
1220 err = ext3_journal_dirty_metadata (handle, frame->bh);
1221 if (err)
1222 goto journal_error;
1223 brelse (bh2);
1224 dxtrace(dx_show_index ("frame", frame->entries));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 return de;
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001226
1227journal_error:
1228 brelse(*bh);
1229 brelse(bh2);
1230 *bh = NULL;
1231 ext3_std_error(dir->i_sb, err);
1232errout:
1233 *error = err;
1234 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
1237
1238/*
1239 * Add a new entry into a directory (leaf) block. If de is non-NULL,
1240 * it points to a directory entry which is guaranteed to be large
1241 * enough for new directory entry. If de is NULL, then
1242 * add_dirent_to_buf will attempt search the directory block for
1243 * space. It will return -ENOSPC if no space is available, and -EIO
1244 * and -EEXIST if directory entry already exists.
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001245 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 * NOTE! bh is NOT released in the case where ENOSPC is returned. In
1247 * all other cases bh is released.
1248 */
1249static int add_dirent_to_buf(handle_t *handle, struct dentry *dentry,
1250 struct inode *inode, struct ext3_dir_entry_2 *de,
1251 struct buffer_head * bh)
1252{
1253 struct inode *dir = dentry->d_parent->d_inode;
1254 const char *name = dentry->d_name.name;
1255 int namelen = dentry->d_name.len;
1256 unsigned long offset = 0;
1257 unsigned short reclen;
1258 int nlen, rlen, err;
1259 char *top;
1260
1261 reclen = EXT3_DIR_REC_LEN(namelen);
1262 if (!de) {
1263 de = (struct ext3_dir_entry_2 *)bh->b_data;
1264 top = bh->b_data + dir->i_sb->s_blocksize - reclen;
1265 while ((char *) de <= top) {
1266 if (!ext3_check_dir_entry("ext3_add_entry", dir, de,
1267 bh, offset)) {
1268 brelse (bh);
1269 return -EIO;
1270 }
1271 if (ext3_match (namelen, name, de)) {
1272 brelse (bh);
1273 return -EEXIST;
1274 }
1275 nlen = EXT3_DIR_REC_LEN(de->name_len);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001276 rlen = ext3_rec_len_from_disk(de->rec_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 if ((de->inode? rlen - nlen: rlen) >= reclen)
1278 break;
1279 de = (struct ext3_dir_entry_2 *)((char *)de + rlen);
1280 offset += rlen;
1281 }
1282 if ((char *) de > top)
1283 return -ENOSPC;
1284 }
1285 BUFFER_TRACE(bh, "get_write_access");
1286 err = ext3_journal_get_write_access(handle, bh);
1287 if (err) {
1288 ext3_std_error(dir->i_sb, err);
1289 brelse(bh);
1290 return err;
1291 }
1292
1293 /* By now the buffer is marked for journaling */
1294 nlen = EXT3_DIR_REC_LEN(de->name_len);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001295 rlen = ext3_rec_len_from_disk(de->rec_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 if (de->inode) {
1297 struct ext3_dir_entry_2 *de1 = (struct ext3_dir_entry_2 *)((char *)de + nlen);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001298 de1->rec_len = ext3_rec_len_to_disk(rlen - nlen);
1299 de->rec_len = ext3_rec_len_to_disk(nlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 de = de1;
1301 }
1302 de->file_type = EXT3_FT_UNKNOWN;
1303 if (inode) {
1304 de->inode = cpu_to_le32(inode->i_ino);
1305 ext3_set_de_type(dir->i_sb, de, inode->i_mode);
1306 } else
1307 de->inode = 0;
1308 de->name_len = namelen;
1309 memcpy (de->name, name, namelen);
1310 /*
1311 * XXX shouldn't update any times until successful
1312 * completion of syscall, but too many callers depend
1313 * on this.
1314 *
1315 * XXX similarly, too many callers depend on
1316 * ext3_new_inode() setting the times, but error
1317 * recovery deletes the inode, so the worst that can
1318 * happen is that the times are slightly out of date
1319 * and/or different from the directory change time.
1320 */
1321 dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC;
1322 ext3_update_dx_flag(dir);
1323 dir->i_version++;
1324 ext3_mark_inode_dirty(handle, dir);
1325 BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
1326 err = ext3_journal_dirty_metadata(handle, bh);
1327 if (err)
1328 ext3_std_error(dir->i_sb, err);
1329 brelse(bh);
1330 return 0;
1331}
1332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333/*
1334 * This converts a one block unindexed directory to a 3 block indexed
1335 * directory, and adds the dentry to the indexed directory.
1336 */
1337static int make_indexed_dir(handle_t *handle, struct dentry *dentry,
1338 struct inode *inode, struct buffer_head *bh)
1339{
1340 struct inode *dir = dentry->d_parent->d_inode;
1341 const char *name = dentry->d_name.name;
1342 int namelen = dentry->d_name.len;
1343 struct buffer_head *bh2;
1344 struct dx_root *root;
1345 struct dx_frame frames[2], *frame;
1346 struct dx_entry *entries;
1347 struct ext3_dir_entry_2 *de, *de2;
1348 char *data1, *top;
1349 unsigned len;
1350 int retval;
1351 unsigned blocksize;
1352 struct dx_hash_info hinfo;
1353 u32 block;
1354 struct fake_dirent *fde;
1355
1356 blocksize = dir->i_sb->s_blocksize;
Theodore Ts'oa21102b2009-01-16 11:13:47 -05001357 dxtrace(printk(KERN_DEBUG "Creating index: inode %lu\n", dir->i_ino));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 retval = ext3_journal_get_write_access(handle, bh);
1359 if (retval) {
1360 ext3_std_error(dir->i_sb, retval);
1361 brelse(bh);
1362 return retval;
1363 }
1364 root = (struct dx_root *) bh->b_data;
1365
Theodore Ts'oa21102b2009-01-16 11:13:47 -05001366 /* The 0th block becomes the root, move the dirents out */
1367 fde = &root->dotdot;
1368 de = (struct ext3_dir_entry_2 *)((char *)fde +
1369 ext3_rec_len_from_disk(fde->rec_len));
1370 if ((char *) de >= (((char *) root) + blocksize)) {
1371 ext3_error(dir->i_sb, __func__,
1372 "invalid rec_len for '..' in inode %lu",
1373 dir->i_ino);
1374 brelse(bh);
1375 return -EIO;
1376 }
1377 len = ((char *) root) + blocksize - (char *) de;
1378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 bh2 = ext3_append (handle, dir, &block, &retval);
1380 if (!(bh2)) {
1381 brelse(bh);
1382 return retval;
1383 }
1384 EXT3_I(dir)->i_flags |= EXT3_INDEX_FL;
1385 data1 = bh2->b_data;
1386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 memcpy (data1, de, len);
1388 de = (struct ext3_dir_entry_2 *) data1;
1389 top = data1 + len;
Jan Kara7c06a8d2007-11-14 17:00:19 -08001390 while ((char *)(de2 = ext3_next_entry(de)) < top)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 de = de2;
Jan Kara7c06a8d2007-11-14 17:00:19 -08001392 de->rec_len = ext3_rec_len_to_disk(data1 + blocksize - (char *) de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 /* Initialize the root; the dot dirents already exist */
1394 de = (struct ext3_dir_entry_2 *) (&root->dotdot);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001395 de->rec_len = ext3_rec_len_to_disk(blocksize - EXT3_DIR_REC_LEN(2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 memset (&root->info, 0, sizeof(root->info));
1397 root->info.info_length = sizeof(root->info);
1398 root->info.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version;
1399 entries = root->entries;
1400 dx_set_block (entries, 1);
1401 dx_set_count (entries, 1);
1402 dx_set_limit (entries, dx_root_limit(dir, sizeof(root->info)));
1403
1404 /* Initialize as for dx_probe */
1405 hinfo.hash_version = root->info.hash_version;
Theodore Ts'o5e1f8c92008-10-28 13:21:55 -04001406 if (hinfo.hash_version <= DX_HASH_TEA)
1407 hinfo.hash_version += EXT3_SB(dir->i_sb)->s_hash_unsigned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 hinfo.seed = EXT3_SB(dir->i_sb)->s_hash_seed;
1409 ext3fs_dirhash(name, namelen, &hinfo);
1410 frame = frames;
1411 frame->entries = entries;
1412 frame->at = entries;
1413 frame->bh = bh;
1414 bh = bh2;
Jan Kara86c4f6d82011-04-27 18:20:44 +02001415 /*
1416 * Mark buffers dirty here so that if do_split() fails we write a
1417 * consistent set of buffers to disk.
1418 */
1419 ext3_journal_dirty_metadata(handle, frame->bh);
1420 ext3_journal_dirty_metadata(handle, bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 de = do_split(handle,dir, &bh, frame, &hinfo, &retval);
Jan Kara86c4f6d82011-04-27 18:20:44 +02001422 if (!de) {
1423 ext3_mark_inode_dirty(handle, dir);
1424 dx_release(frames);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 return retval;
Jan Kara86c4f6d82011-04-27 18:20:44 +02001426 }
1427 dx_release(frames);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
1429 return add_dirent_to_buf(handle, dentry, inode, de, bh);
1430}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
1432/*
1433 * ext3_add_entry()
1434 *
1435 * adds a file entry to the specified directory, using the same
1436 * semantics as ext3_find_entry(). It returns NULL if it failed.
1437 *
1438 * NOTE!! The inode part of 'de' is left at 0 - which means you
1439 * may not sleep between calling this and putting something into
1440 * the entry, as someone else might have used it while you slept.
1441 */
1442static int ext3_add_entry (handle_t *handle, struct dentry *dentry,
1443 struct inode *inode)
1444{
1445 struct inode *dir = dentry->d_parent->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 struct buffer_head * bh;
1447 struct ext3_dir_entry_2 *de;
1448 struct super_block * sb;
1449 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 int dx_fallback=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 unsigned blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 u32 block, blocks;
1453
1454 sb = dir->i_sb;
1455 blocksize = sb->s_blocksize;
1456 if (!dentry->d_name.len)
1457 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 if (is_dx(dir)) {
1459 retval = ext3_dx_add_entry(handle, dentry, inode);
1460 if (!retval || (retval != ERR_BAD_DX_DIR))
1461 return retval;
1462 EXT3_I(dir)->i_flags &= ~EXT3_INDEX_FL;
1463 dx_fallback++;
1464 ext3_mark_inode_dirty(handle, dir);
1465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 blocks = dir->i_size >> sb->s_blocksize_bits;
Andi Kleen0411ba72010-06-10 13:10:53 +02001467 for (block = 0; block < blocks; block++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 bh = ext3_bread(handle, dir, block, 0, &retval);
1469 if(!bh)
1470 return retval;
1471 retval = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
1472 if (retval != -ENOSPC)
1473 return retval;
1474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 if (blocks == 1 && !dx_fallback &&
1476 EXT3_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_DIR_INDEX))
1477 return make_indexed_dir(handle, dentry, inode, bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 brelse(bh);
1479 }
1480 bh = ext3_append(handle, dir, &block, &retval);
1481 if (!bh)
1482 return retval;
1483 de = (struct ext3_dir_entry_2 *) bh->b_data;
1484 de->inode = 0;
Jan Kara7c06a8d2007-11-14 17:00:19 -08001485 de->rec_len = ext3_rec_len_to_disk(blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 return add_dirent_to_buf(handle, dentry, inode, de, bh);
1487}
1488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489/*
1490 * Returns 0 for success, or a negative error value
1491 */
1492static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry,
1493 struct inode *inode)
1494{
1495 struct dx_frame frames[2], *frame;
1496 struct dx_entry *entries, *at;
1497 struct dx_hash_info hinfo;
1498 struct buffer_head * bh;
1499 struct inode *dir = dentry->d_parent->d_inode;
1500 struct super_block * sb = dir->i_sb;
1501 struct ext3_dir_entry_2 *de;
1502 int err;
1503
Al Viro734711a2008-08-24 07:26:48 -04001504 frame = dx_probe(&dentry->d_name, dir, &hinfo, frames, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 if (!frame)
1506 return err;
1507 entries = frame->entries;
1508 at = frame->at;
1509
1510 if (!(bh = ext3_bread(handle,dir, dx_get_block(frame->at), 0, &err)))
1511 goto cleanup;
1512
1513 BUFFER_TRACE(bh, "get_write_access");
1514 err = ext3_journal_get_write_access(handle, bh);
1515 if (err)
1516 goto journal_error;
1517
1518 err = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
1519 if (err != -ENOSPC) {
1520 bh = NULL;
1521 goto cleanup;
1522 }
1523
1524 /* Block full, should compress but for now just split */
1525 dxtrace(printk("using %u of %u node entries\n",
1526 dx_get_count(entries), dx_get_limit(entries)));
1527 /* Need to split index? */
1528 if (dx_get_count(entries) == dx_get_limit(entries)) {
1529 u32 newblock;
1530 unsigned icount = dx_get_count(entries);
1531 int levels = frame - frames;
1532 struct dx_entry *entries2;
1533 struct dx_node *node2;
1534 struct buffer_head *bh2;
1535
1536 if (levels && (dx_get_count(frames->entries) ==
1537 dx_get_limit(frames->entries))) {
Harvey Harrisone05b6b52008-04-28 02:16:15 -07001538 ext3_warning(sb, __func__,
Glauber de Oliveira Costa9f406682006-01-08 01:03:22 -08001539 "Directory index full!");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 err = -ENOSPC;
1541 goto cleanup;
1542 }
1543 bh2 = ext3_append (handle, dir, &newblock, &err);
1544 if (!(bh2))
1545 goto cleanup;
1546 node2 = (struct dx_node *)(bh2->b_data);
1547 entries2 = node2->entries;
Eric Sandeend7433142011-03-04 16:04:08 -06001548 memset(&node2->fake, 0, sizeof(struct fake_dirent));
Jan Kara7c06a8d2007-11-14 17:00:19 -08001549 node2->fake.rec_len = ext3_rec_len_to_disk(sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 BUFFER_TRACE(frame->bh, "get_write_access");
1551 err = ext3_journal_get_write_access(handle, frame->bh);
1552 if (err)
1553 goto journal_error;
1554 if (levels) {
1555 unsigned icount1 = icount/2, icount2 = icount - icount1;
1556 unsigned hash2 = dx_get_hash(entries + icount1);
1557 dxtrace(printk("Split index %i/%i\n", icount1, icount2));
1558
1559 BUFFER_TRACE(frame->bh, "get_write_access"); /* index root */
1560 err = ext3_journal_get_write_access(handle,
1561 frames[0].bh);
1562 if (err)
1563 goto journal_error;
1564
1565 memcpy ((char *) entries2, (char *) (entries + icount1),
1566 icount2 * sizeof(struct dx_entry));
1567 dx_set_count (entries, icount1);
1568 dx_set_count (entries2, icount2);
1569 dx_set_limit (entries2, dx_node_limit(dir));
1570
1571 /* Which index block gets the new entry? */
1572 if (at - entries >= icount1) {
1573 frame->at = at = at - entries - icount1 + entries2;
1574 frame->entries = entries = entries2;
1575 swap(frame->bh, bh2);
1576 }
1577 dx_insert_block (frames + 0, hash2, newblock);
1578 dxtrace(dx_show_index ("node", frames[1].entries));
1579 dxtrace(dx_show_index ("node",
1580 ((struct dx_node *) bh2->b_data)->entries));
1581 err = ext3_journal_dirty_metadata(handle, bh2);
1582 if (err)
1583 goto journal_error;
1584 brelse (bh2);
1585 } else {
1586 dxtrace(printk("Creating second level index...\n"));
1587 memcpy((char *) entries2, (char *) entries,
1588 icount * sizeof(struct dx_entry));
1589 dx_set_limit(entries2, dx_node_limit(dir));
1590
1591 /* Set up root */
1592 dx_set_count(entries, 1);
1593 dx_set_block(entries + 0, newblock);
1594 ((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels = 1;
1595
1596 /* Add new access path frame */
1597 frame = frames + 1;
1598 frame->at = at = at - entries + entries2;
1599 frame->entries = entries = entries2;
1600 frame->bh = bh2;
1601 err = ext3_journal_get_write_access(handle,
1602 frame->bh);
1603 if (err)
1604 goto journal_error;
1605 }
Namhyung Kim156e7432010-11-25 01:53:13 +09001606 err = ext3_journal_dirty_metadata(handle, frames[0].bh);
1607 if (err)
1608 goto journal_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 }
1610 de = do_split(handle, dir, &bh, frame, &hinfo, &err);
1611 if (!de)
1612 goto cleanup;
1613 err = add_dirent_to_buf(handle, dentry, inode, de, bh);
1614 bh = NULL;
1615 goto cleanup;
1616
1617journal_error:
1618 ext3_std_error(dir->i_sb, err);
1619cleanup:
1620 if (bh)
1621 brelse(bh);
1622 dx_release(frames);
1623 return err;
1624}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
1626/*
1627 * ext3_delete_entry deletes a directory entry by merging it with the
1628 * previous entry
1629 */
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001630static int ext3_delete_entry (handle_t *handle,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 struct inode * dir,
1632 struct ext3_dir_entry_2 * de_del,
1633 struct buffer_head * bh)
1634{
1635 struct ext3_dir_entry_2 * de, * pde;
1636 int i;
1637
1638 i = 0;
1639 pde = NULL;
1640 de = (struct ext3_dir_entry_2 *) bh->b_data;
1641 while (i < bh->b_size) {
1642 if (!ext3_check_dir_entry("ext3_delete_entry", dir, de, bh, i))
1643 return -EIO;
1644 if (de == de_del) {
Namhyung Kimfbcae8e2010-11-19 16:28:35 +09001645 int err;
1646
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 BUFFER_TRACE(bh, "get_write_access");
Namhyung Kimfbcae8e2010-11-19 16:28:35 +09001648 err = ext3_journal_get_write_access(handle, bh);
1649 if (err)
1650 goto journal_error;
1651
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 if (pde)
Jan Kara7c06a8d2007-11-14 17:00:19 -08001653 pde->rec_len = ext3_rec_len_to_disk(
1654 ext3_rec_len_from_disk(pde->rec_len) +
1655 ext3_rec_len_from_disk(de->rec_len));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 else
1657 de->inode = 0;
1658 dir->i_version++;
1659 BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
Namhyung Kimfbcae8e2010-11-19 16:28:35 +09001660 err = ext3_journal_dirty_metadata(handle, bh);
1661 if (err) {
1662journal_error:
1663 ext3_std_error(dir->i_sb, err);
1664 return err;
1665 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 return 0;
1667 }
Jan Kara7c06a8d2007-11-14 17:00:19 -08001668 i += ext3_rec_len_from_disk(de->rec_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 pde = de;
Jan Kara7c06a8d2007-11-14 17:00:19 -08001670 de = ext3_next_entry(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 }
1672 return -ENOENT;
1673}
1674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675static int ext3_add_nondir(handle_t *handle,
1676 struct dentry *dentry, struct inode *inode)
1677{
1678 int err = ext3_add_entry(handle, dentry, inode);
1679 if (!err) {
1680 ext3_mark_inode_dirty(handle, inode);
1681 d_instantiate(dentry, inode);
Al Viroc38012d2008-12-30 02:02:50 -05001682 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 return 0;
1684 }
Eric Sandeen731b9a52007-02-10 01:46:16 -08001685 drop_nlink(inode);
Al Viroc38012d2008-12-30 02:02:50 -05001686 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 iput(inode);
1688 return err;
1689}
1690
1691/*
1692 * By the time this is called, we already have created
1693 * the directory cache entry for the new file, but it
1694 * is so far negative - it has no inode.
1695 *
1696 * If the create succeeds, we fill in the inode information
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001697 * with d_instantiate().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 */
1699static int ext3_create (struct inode * dir, struct dentry * dentry, int mode,
1700 struct nameidata *nd)
1701{
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001702 handle_t *handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 struct inode * inode;
1704 int err, retries = 0;
1705
Christoph Hellwig871a2932010-03-03 09:05:07 -05001706 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05001707
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708retry:
Jan Kara1f545872005-06-23 22:01:04 -07001709 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
Dmitry Monakhovc4590012009-12-09 03:05:30 +03001711 EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 if (IS_ERR(handle))
1713 return PTR_ERR(handle);
1714
1715 if (IS_DIRSYNC(dir))
1716 handle->h_sync = 1;
1717
Eric Paris2a7dba32011-02-01 11:05:39 -05001718 inode = ext3_new_inode (handle, dir, &dentry->d_name, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 err = PTR_ERR(inode);
1720 if (!IS_ERR(inode)) {
1721 inode->i_op = &ext3_file_inode_operations;
1722 inode->i_fop = &ext3_file_operations;
1723 ext3_set_aops(inode);
1724 err = ext3_add_nondir(handle, dentry, inode);
1725 }
1726 ext3_journal_stop(handle);
1727 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1728 goto retry;
1729 return err;
1730}
1731
1732static int ext3_mknod (struct inode * dir, struct dentry *dentry,
1733 int mode, dev_t rdev)
1734{
1735 handle_t *handle;
1736 struct inode *inode;
1737 int err, retries = 0;
1738
1739 if (!new_valid_dev(rdev))
1740 return -EINVAL;
1741
Christoph Hellwig871a2932010-03-03 09:05:07 -05001742 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05001743
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744retry:
Jan Kara1f545872005-06-23 22:01:04 -07001745 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
Dave Kleikampe9ad5622006-09-27 01:49:35 -07001746 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
Dmitry Monakhovc4590012009-12-09 03:05:30 +03001747 EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 if (IS_ERR(handle))
1749 return PTR_ERR(handle);
1750
1751 if (IS_DIRSYNC(dir))
1752 handle->h_sync = 1;
1753
Eric Paris2a7dba32011-02-01 11:05:39 -05001754 inode = ext3_new_inode (handle, dir, &dentry->d_name, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 err = PTR_ERR(inode);
1756 if (!IS_ERR(inode)) {
1757 init_special_inode(inode, inode->i_mode, rdev);
1758#ifdef CONFIG_EXT3_FS_XATTR
1759 inode->i_op = &ext3_special_inode_operations;
1760#endif
1761 err = ext3_add_nondir(handle, dentry, inode);
1762 }
1763 ext3_journal_stop(handle);
1764 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1765 goto retry;
1766 return err;
1767}
1768
1769static int ext3_mkdir(struct inode * dir, struct dentry * dentry, int mode)
1770{
1771 handle_t *handle;
1772 struct inode * inode;
Namhyung Kim2b543ed2010-11-16 20:18:12 +09001773 struct buffer_head * dir_block = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 struct ext3_dir_entry_2 * de;
1775 int err, retries = 0;
1776
1777 if (dir->i_nlink >= EXT3_LINK_MAX)
1778 return -EMLINK;
1779
Christoph Hellwig871a2932010-03-03 09:05:07 -05001780 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05001781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782retry:
Jan Kara1f545872005-06-23 22:01:04 -07001783 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
Dmitry Monakhovc4590012009-12-09 03:05:30 +03001785 EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 if (IS_ERR(handle))
1787 return PTR_ERR(handle);
1788
1789 if (IS_DIRSYNC(dir))
1790 handle->h_sync = 1;
1791
Eric Paris2a7dba32011-02-01 11:05:39 -05001792 inode = ext3_new_inode (handle, dir, &dentry->d_name, S_IFDIR | mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 err = PTR_ERR(inode);
1794 if (IS_ERR(inode))
1795 goto out_stop;
1796
1797 inode->i_op = &ext3_dir_inode_operations;
1798 inode->i_fop = &ext3_dir_operations;
1799 inode->i_size = EXT3_I(inode)->i_disksize = inode->i_sb->s_blocksize;
1800 dir_block = ext3_bread (handle, inode, 0, 1, &err);
Namhyung Kim2b543ed2010-11-16 20:18:12 +09001801 if (!dir_block)
1802 goto out_clear_inode;
1803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 BUFFER_TRACE(dir_block, "get_write_access");
Namhyung Kim2b543ed2010-11-16 20:18:12 +09001805 err = ext3_journal_get_write_access(handle, dir_block);
1806 if (err)
1807 goto out_clear_inode;
1808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 de = (struct ext3_dir_entry_2 *) dir_block->b_data;
1810 de->inode = cpu_to_le32(inode->i_ino);
1811 de->name_len = 1;
Jan Kara7c06a8d2007-11-14 17:00:19 -08001812 de->rec_len = ext3_rec_len_to_disk(EXT3_DIR_REC_LEN(de->name_len));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 strcpy (de->name, ".");
1814 ext3_set_de_type(dir->i_sb, de, S_IFDIR);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001815 de = ext3_next_entry(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 de->inode = cpu_to_le32(dir->i_ino);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001817 de->rec_len = ext3_rec_len_to_disk(inode->i_sb->s_blocksize -
1818 EXT3_DIR_REC_LEN(1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 de->name_len = 2;
1820 strcpy (de->name, "..");
1821 ext3_set_de_type(dir->i_sb, de, S_IFDIR);
1822 inode->i_nlink = 2;
1823 BUFFER_TRACE(dir_block, "call ext3_journal_dirty_metadata");
Namhyung Kim2b543ed2010-11-16 20:18:12 +09001824 err = ext3_journal_dirty_metadata(handle, dir_block);
1825 if (err)
1826 goto out_clear_inode;
1827
1828 err = ext3_mark_inode_dirty(handle, inode);
1829 if (!err)
1830 err = ext3_add_entry (handle, dentry, inode);
1831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 if (err) {
Namhyung Kim2b543ed2010-11-16 20:18:12 +09001833out_clear_inode:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 inode->i_nlink = 0;
Al Viroc38012d2008-12-30 02:02:50 -05001835 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 ext3_mark_inode_dirty(handle, inode);
1837 iput (inode);
1838 goto out_stop;
1839 }
Dave Hansend8c76e62006-09-30 23:29:04 -07001840 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 ext3_update_dx_flag(dir);
Namhyung Kim2b543ed2010-11-16 20:18:12 +09001842 err = ext3_mark_inode_dirty(handle, dir);
1843 if (err)
1844 goto out_clear_inode;
1845
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 d_instantiate(dentry, inode);
Al Viroc38012d2008-12-30 02:02:50 -05001847 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848out_stop:
Namhyung Kim2b543ed2010-11-16 20:18:12 +09001849 brelse(dir_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 ext3_journal_stop(handle);
1851 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1852 goto retry;
1853 return err;
1854}
1855
1856/*
1857 * routine to check that the specified directory is empty (for rmdir)
1858 */
1859static int empty_dir (struct inode * inode)
1860{
1861 unsigned long offset;
1862 struct buffer_head * bh;
1863 struct ext3_dir_entry_2 * de, * de1;
1864 struct super_block * sb;
1865 int err = 0;
1866
1867 sb = inode->i_sb;
1868 if (inode->i_size < EXT3_DIR_REC_LEN(1) + EXT3_DIR_REC_LEN(2) ||
1869 !(bh = ext3_bread (NULL, inode, 0, 0, &err))) {
1870 if (err)
Harvey Harrisone05b6b52008-04-28 02:16:15 -07001871 ext3_error(inode->i_sb, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 "error %d reading directory #%lu offset 0",
1873 err, inode->i_ino);
1874 else
Harvey Harrisone05b6b52008-04-28 02:16:15 -07001875 ext3_warning(inode->i_sb, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 "bad directory (dir #%lu) - no data block",
1877 inode->i_ino);
1878 return 1;
1879 }
1880 de = (struct ext3_dir_entry_2 *) bh->b_data;
Jan Kara7c06a8d2007-11-14 17:00:19 -08001881 de1 = ext3_next_entry(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 if (le32_to_cpu(de->inode) != inode->i_ino ||
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001883 !le32_to_cpu(de1->inode) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 strcmp (".", de->name) ||
1885 strcmp ("..", de1->name)) {
Dave Kleikampe9ad5622006-09-27 01:49:35 -07001886 ext3_warning (inode->i_sb, "empty_dir",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 "bad directory (dir #%lu) - no `.' or `..'",
1888 inode->i_ino);
1889 brelse (bh);
1890 return 1;
1891 }
Jan Kara7c06a8d2007-11-14 17:00:19 -08001892 offset = ext3_rec_len_from_disk(de->rec_len) +
1893 ext3_rec_len_from_disk(de1->rec_len);
1894 de = ext3_next_entry(de1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 while (offset < inode->i_size ) {
1896 if (!bh ||
1897 (void *) de >= (void *) (bh->b_data+sb->s_blocksize)) {
1898 err = 0;
1899 brelse (bh);
1900 bh = ext3_bread (NULL, inode,
1901 offset >> EXT3_BLOCK_SIZE_BITS(sb), 0, &err);
1902 if (!bh) {
1903 if (err)
Harvey Harrisone05b6b52008-04-28 02:16:15 -07001904 ext3_error(sb, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 "error %d reading directory"
1906 " #%lu offset %lu",
1907 err, inode->i_ino, offset);
1908 offset += sb->s_blocksize;
1909 continue;
1910 }
1911 de = (struct ext3_dir_entry_2 *) bh->b_data;
1912 }
1913 if (!ext3_check_dir_entry("empty_dir", inode, de, bh, offset)) {
1914 de = (struct ext3_dir_entry_2 *)(bh->b_data +
1915 sb->s_blocksize);
1916 offset = (offset | (sb->s_blocksize - 1)) + 1;
1917 continue;
1918 }
1919 if (le32_to_cpu(de->inode)) {
1920 brelse (bh);
1921 return 0;
1922 }
Jan Kara7c06a8d2007-11-14 17:00:19 -08001923 offset += ext3_rec_len_from_disk(de->rec_len);
1924 de = ext3_next_entry(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 }
1926 brelse (bh);
1927 return 1;
1928}
1929
1930/* ext3_orphan_add() links an unlinked or truncated inode into a list of
1931 * such inodes, starting at the superblock, in case we crash before the
1932 * file is closed/deleted, or in case the inode truncate spans multiple
1933 * transactions and the last transaction is not recovered after a crash.
1934 *
1935 * At filesystem recovery time, we walk this list deleting unlinked
1936 * inodes and truncating linked inodes in ext3_orphan_cleanup().
1937 */
1938int ext3_orphan_add(handle_t *handle, struct inode *inode)
1939{
1940 struct super_block *sb = inode->i_sb;
1941 struct ext3_iloc iloc;
1942 int err = 0, rc;
1943
Eric Sandeenb8a052d2009-12-14 13:00:30 -06001944 mutex_lock(&EXT3_SB(sb)->s_orphan_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 if (!list_empty(&EXT3_I(inode)->i_orphan))
1946 goto out_unlock;
1947
1948 /* Orphan handling is only valid for files with data blocks
1949 * being truncated, or files being unlinked. */
1950
1951 /* @@@ FIXME: Observation from aviro:
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001952 * I think I can trigger J_ASSERT in ext3_orphan_add(). We block
Eric Sandeenb8a052d2009-12-14 13:00:30 -06001953 * here (on s_orphan_lock), so race with ext3_link() which might bump
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 * ->i_nlink. For, say it, character device. Not a regular file,
1955 * not a directory, not a symlink and ->i_nlink > 0.
Eric Sandeenb8a052d2009-12-14 13:00:30 -06001956 *
1957 * tytso, 4/25/2009: I'm not sure how that could happen;
1958 * shouldn't the fs core protect us from these sort of
1959 * unlink()/link() races?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 */
1961 J_ASSERT ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
1962 S_ISLNK(inode->i_mode)) || inode->i_nlink == 0);
1963
1964 BUFFER_TRACE(EXT3_SB(sb)->s_sbh, "get_write_access");
1965 err = ext3_journal_get_write_access(handle, EXT3_SB(sb)->s_sbh);
1966 if (err)
1967 goto out_unlock;
1968
1969 err = ext3_reserve_inode_write(handle, inode, &iloc);
1970 if (err)
1971 goto out_unlock;
1972
1973 /* Insert this inode at the head of the on-disk orphan list... */
1974 NEXT_ORPHAN(inode) = le32_to_cpu(EXT3_SB(sb)->s_es->s_last_orphan);
1975 EXT3_SB(sb)->s_es->s_last_orphan = cpu_to_le32(inode->i_ino);
1976 err = ext3_journal_dirty_metadata(handle, EXT3_SB(sb)->s_sbh);
1977 rc = ext3_mark_iloc_dirty(handle, inode, &iloc);
1978 if (!err)
1979 err = rc;
1980
1981 /* Only add to the head of the in-memory list if all the
1982 * previous operations succeeded. If the orphan_add is going to
1983 * fail (possibly taking the journal offline), we can't risk
1984 * leaving the inode on the orphan list: stray orphan-list
1985 * entries can cause panics at unmount time.
1986 *
1987 * This is safe: on error we're going to ignore the orphan list
1988 * anyway on the next recovery. */
1989 if (!err)
1990 list_add(&EXT3_I(inode)->i_orphan, &EXT3_SB(sb)->s_orphan);
1991
Eric Sandeeneee194e2006-09-27 01:49:30 -07001992 jbd_debug(4, "superblock will point to %lu\n", inode->i_ino);
1993 jbd_debug(4, "orphan inode %lu will point to %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 inode->i_ino, NEXT_ORPHAN(inode));
1995out_unlock:
Eric Sandeenb8a052d2009-12-14 13:00:30 -06001996 mutex_unlock(&EXT3_SB(sb)->s_orphan_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 ext3_std_error(inode->i_sb, err);
1998 return err;
1999}
2000
2001/*
2002 * ext3_orphan_del() removes an unlinked or truncated inode from the list
2003 * of such inodes stored on disk, because it is finally being cleaned up.
2004 */
2005int ext3_orphan_del(handle_t *handle, struct inode *inode)
2006{
2007 struct list_head *prev;
2008 struct ext3_inode_info *ei = EXT3_I(inode);
2009 struct ext3_sb_info *sbi;
2010 unsigned long ino_next;
2011 struct ext3_iloc iloc;
2012 int err = 0;
2013
Eric Sandeenb8a052d2009-12-14 13:00:30 -06002014 mutex_lock(&EXT3_SB(inode->i_sb)->s_orphan_lock);
2015 if (list_empty(&ei->i_orphan))
2016 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
2018 ino_next = NEXT_ORPHAN(inode);
2019 prev = ei->i_orphan.prev;
2020 sbi = EXT3_SB(inode->i_sb);
2021
2022 jbd_debug(4, "remove inode %lu from orphan list\n", inode->i_ino);
2023
2024 list_del_init(&ei->i_orphan);
2025
2026 /* If we're on an error path, we may not have a valid
2027 * transaction handle with which to update the orphan list on
2028 * disk, but we still need to remove the inode from the linked
2029 * list in memory. */
2030 if (!handle)
2031 goto out;
2032
2033 err = ext3_reserve_inode_write(handle, inode, &iloc);
2034 if (err)
2035 goto out_err;
2036
2037 if (prev == &sbi->s_orphan) {
2038 jbd_debug(4, "superblock will point to %lu\n", ino_next);
2039 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
2040 err = ext3_journal_get_write_access(handle, sbi->s_sbh);
2041 if (err)
2042 goto out_brelse;
2043 sbi->s_es->s_last_orphan = cpu_to_le32(ino_next);
2044 err = ext3_journal_dirty_metadata(handle, sbi->s_sbh);
2045 } else {
2046 struct ext3_iloc iloc2;
2047 struct inode *i_prev =
2048 &list_entry(prev, struct ext3_inode_info, i_orphan)->vfs_inode;
2049
2050 jbd_debug(4, "orphan inode %lu will point to %lu\n",
2051 i_prev->i_ino, ino_next);
2052 err = ext3_reserve_inode_write(handle, i_prev, &iloc2);
2053 if (err)
2054 goto out_brelse;
2055 NEXT_ORPHAN(i_prev) = ino_next;
2056 err = ext3_mark_iloc_dirty(handle, i_prev, &iloc2);
2057 }
2058 if (err)
2059 goto out_brelse;
2060 NEXT_ORPHAN(inode) = 0;
2061 err = ext3_mark_iloc_dirty(handle, inode, &iloc);
2062
2063out_err:
2064 ext3_std_error(inode->i_sb, err);
2065out:
Eric Sandeenb8a052d2009-12-14 13:00:30 -06002066 mutex_unlock(&EXT3_SB(inode->i_sb)->s_orphan_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 return err;
2068
2069out_brelse:
2070 brelse(iloc.bh);
2071 goto out_err;
2072}
2073
2074static int ext3_rmdir (struct inode * dir, struct dentry *dentry)
2075{
2076 int retval;
2077 struct inode * inode;
2078 struct buffer_head * bh;
2079 struct ext3_dir_entry_2 * de;
2080 handle_t *handle;
2081
2082 /* Initialize quotas before so that eventual writes go in
2083 * separate transaction */
Christoph Hellwig871a2932010-03-03 09:05:07 -05002084 dquot_initialize(dir);
2085 dquot_initialize(dentry->d_inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002086
Jan Kara1f545872005-06-23 22:01:04 -07002087 handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS(dir->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 if (IS_ERR(handle))
2089 return PTR_ERR(handle);
2090
2091 retval = -ENOENT;
Al Viro734711a2008-08-24 07:26:48 -04002092 bh = ext3_find_entry(dir, &dentry->d_name, &de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 if (!bh)
2094 goto end_rmdir;
2095
2096 if (IS_DIRSYNC(dir))
2097 handle->h_sync = 1;
2098
2099 inode = dentry->d_inode;
2100
2101 retval = -EIO;
2102 if (le32_to_cpu(de->inode) != inode->i_ino)
2103 goto end_rmdir;
2104
2105 retval = -ENOTEMPTY;
2106 if (!empty_dir (inode))
2107 goto end_rmdir;
2108
2109 retval = ext3_delete_entry(handle, dir, de, bh);
2110 if (retval)
2111 goto end_rmdir;
2112 if (inode->i_nlink != 2)
2113 ext3_warning (inode->i_sb, "ext3_rmdir",
2114 "empty directory has nlink!=2 (%d)",
2115 inode->i_nlink);
2116 inode->i_version++;
Dave Hansence71ec32006-09-30 23:29:06 -07002117 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 /* There's no need to set i_disksize: the fact that i_nlink is
2119 * zero will ensure that the right thing happens during any
2120 * recovery. */
2121 inode->i_size = 0;
2122 ext3_orphan_add(handle, inode);
2123 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
2124 ext3_mark_inode_dirty(handle, inode);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002125 drop_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 ext3_update_dx_flag(dir);
2127 ext3_mark_inode_dirty(handle, dir);
2128
2129end_rmdir:
2130 ext3_journal_stop(handle);
2131 brelse (bh);
2132 return retval;
2133}
2134
2135static int ext3_unlink(struct inode * dir, struct dentry *dentry)
2136{
2137 int retval;
2138 struct inode * inode;
2139 struct buffer_head * bh;
2140 struct ext3_dir_entry_2 * de;
2141 handle_t *handle;
2142
2143 /* Initialize quotas before so that eventual writes go
2144 * in separate transaction */
Christoph Hellwig871a2932010-03-03 09:05:07 -05002145 dquot_initialize(dir);
2146 dquot_initialize(dentry->d_inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002147
Jan Kara1f545872005-06-23 22:01:04 -07002148 handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS(dir->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 if (IS_ERR(handle))
2150 return PTR_ERR(handle);
2151
2152 if (IS_DIRSYNC(dir))
2153 handle->h_sync = 1;
2154
2155 retval = -ENOENT;
Al Viro734711a2008-08-24 07:26:48 -04002156 bh = ext3_find_entry(dir, &dentry->d_name, &de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 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) {
2167 ext3_warning (inode->i_sb, "ext3_unlink",
2168 "Deleting nonexistent file (%lu), %d",
2169 inode->i_ino, inode->i_nlink);
2170 inode->i_nlink = 1;
2171 }
2172 retval = ext3_delete_entry(handle, dir, de, bh);
2173 if (retval)
2174 goto end_unlink;
2175 dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
2176 ext3_update_dx_flag(dir);
2177 ext3_mark_inode_dirty(handle, dir);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002178 drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 if (!inode->i_nlink)
2180 ext3_orphan_add(handle, inode);
2181 inode->i_ctime = dir->i_ctime;
2182 ext3_mark_inode_dirty(handle, inode);
2183 retval = 0;
2184
2185end_unlink:
2186 ext3_journal_stop(handle);
2187 brelse (bh);
2188 return retval;
2189}
2190
2191static int ext3_symlink (struct inode * dir,
2192 struct dentry *dentry, const char * symname)
2193{
2194 handle_t *handle;
2195 struct inode * inode;
2196 int l, err, retries = 0;
Jan Karaae54870a2011-04-21 23:47:16 +02002197 int credits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
2199 l = strlen(symname)+1;
2200 if (l > dir->i_sb->s_blocksize)
2201 return -ENAMETOOLONG;
2202
Christoph Hellwig871a2932010-03-03 09:05:07 -05002203 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002204
Jan Karaae54870a2011-04-21 23:47:16 +02002205 if (l > EXT3_N_BLOCKS * 4) {
2206 /*
2207 * For non-fast symlinks, we just allocate inode and put it on
2208 * orphan list in the first transaction => we need bitmap,
2209 * group descriptor, sb, inode block, quota blocks.
2210 */
2211 credits = 4 + EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb);
2212 } else {
2213 /*
2214 * Fast symlink. We have to add entry to directory
2215 * (EXT3_DATA_TRANS_BLOCKS + EXT3_INDEX_EXTRA_TRANS_BLOCKS),
2216 * allocate new inode (bitmap, group descriptor, inode block,
2217 * quota blocks, sb is already counted in previous macros).
2218 */
2219 credits = EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
2220 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
2221 EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb);
2222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223retry:
Jan Karaae54870a2011-04-21 23:47:16 +02002224 handle = ext3_journal_start(dir, credits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 if (IS_ERR(handle))
2226 return PTR_ERR(handle);
2227
2228 if (IS_DIRSYNC(dir))
2229 handle->h_sync = 1;
2230
Eric Paris2a7dba32011-02-01 11:05:39 -05002231 inode = ext3_new_inode (handle, dir, &dentry->d_name, S_IFLNK|S_IRWXUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 err = PTR_ERR(inode);
2233 if (IS_ERR(inode))
2234 goto out_stop;
2235
Jan Karaae54870a2011-04-21 23:47:16 +02002236 if (l > EXT3_N_BLOCKS * 4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 inode->i_op = &ext3_symlink_inode_operations;
2238 ext3_set_aops(inode);
2239 /*
Jan Karaae54870a2011-04-21 23:47:16 +02002240 * We cannot call page_symlink() with transaction started
2241 * because it calls into ext3_write_begin() which acquires page
2242 * lock which ranks below transaction start (and it can also
2243 * wait for journal commit if we are running out of space). So
2244 * we have to stop transaction now and restart it when symlink
2245 * contents is written.
2246 *
2247 * To keep fs consistent in case of crash, we have to put inode
2248 * to orphan list in the mean time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 */
Jan Karaae54870a2011-04-21 23:47:16 +02002250 drop_nlink(inode);
2251 err = ext3_orphan_add(handle, inode);
2252 ext3_journal_stop(handle);
2253 if (err)
2254 goto err_drop_inode;
Nick Piggin54566b22009-01-04 12:00:53 -08002255 err = __page_symlink(inode, symname, l, 1);
Jan Karaae54870a2011-04-21 23:47:16 +02002256 if (err)
2257 goto err_drop_inode;
2258 /*
2259 * Now inode is being linked into dir (EXT3_DATA_TRANS_BLOCKS
2260 * + EXT3_INDEX_EXTRA_TRANS_BLOCKS), inode is also modified
2261 */
2262 handle = ext3_journal_start(dir,
2263 EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
2264 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 1);
2265 if (IS_ERR(handle)) {
2266 err = PTR_ERR(handle);
2267 goto err_drop_inode;
2268 }
2269 inc_nlink(inode);
2270 err = ext3_orphan_del(handle, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 if (err) {
Jan Karaae54870a2011-04-21 23:47:16 +02002272 ext3_journal_stop(handle);
Eric Sandeen731b9a52007-02-10 01:46:16 -08002273 drop_nlink(inode);
Jan Karaae54870a2011-04-21 23:47:16 +02002274 goto err_drop_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 }
2276 } else {
2277 inode->i_op = &ext3_fast_symlink_inode_operations;
2278 memcpy((char*)&EXT3_I(inode)->i_data,symname,l);
2279 inode->i_size = l-1;
2280 }
2281 EXT3_I(inode)->i_disksize = inode->i_size;
2282 err = ext3_add_nondir(handle, dentry, inode);
2283out_stop:
2284 ext3_journal_stop(handle);
2285 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
2286 goto retry;
2287 return err;
Jan Karaae54870a2011-04-21 23:47:16 +02002288err_drop_inode:
2289 unlock_new_inode(inode);
Jan Kara86c4f6d82011-04-27 18:20:44 +02002290 iput(inode);
Jan Karaae54870a2011-04-21 23:47:16 +02002291 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292}
2293
2294static int ext3_link (struct dentry * old_dentry,
2295 struct inode * dir, struct dentry *dentry)
2296{
2297 handle_t *handle;
2298 struct inode *inode = old_dentry->d_inode;
2299 int err, retries = 0;
2300
2301 if (inode->i_nlink >= EXT3_LINK_MAX)
2302 return -EMLINK;
Christoph Hellwig907f4552010-03-03 09:05:06 -05002303
Christoph Hellwig871a2932010-03-03 09:05:07 -05002304 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002305
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306retry:
Jan Kara1f545872005-06-23 22:01:04 -07002307 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 EXT3_INDEX_EXTRA_TRANS_BLOCKS);
2309 if (IS_ERR(handle))
2310 return PTR_ERR(handle);
2311
2312 if (IS_DIRSYNC(dir))
2313 handle->h_sync = 1;
2314
2315 inode->i_ctime = CURRENT_TIME_SEC;
Eric Sandeen731b9a52007-02-10 01:46:16 -08002316 inc_nlink(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04002317 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
Al Viroc38012d2008-12-30 02:02:50 -05002319 err = ext3_add_entry(handle, dentry, inode);
2320 if (!err) {
2321 ext3_mark_inode_dirty(handle, inode);
2322 d_instantiate(dentry, inode);
2323 } else {
2324 drop_nlink(inode);
2325 iput(inode);
2326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 ext3_journal_stop(handle);
2328 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
2329 goto retry;
2330 return err;
2331}
2332
2333#define PARENT_INO(buffer) \
Jan Kara7c06a8d2007-11-14 17:00:19 -08002334 (ext3_next_entry((struct ext3_dir_entry_2 *)(buffer))->inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
2336/*
2337 * Anybody can rename anything with this: the permission checks are left to the
2338 * higher-level routines.
2339 */
2340static int ext3_rename (struct inode * old_dir, struct dentry *old_dentry,
2341 struct inode * new_dir,struct dentry *new_dentry)
2342{
2343 handle_t *handle;
2344 struct inode * old_inode, * new_inode;
2345 struct buffer_head * old_bh, * new_bh, * dir_bh;
2346 struct ext3_dir_entry_2 * old_de, * new_de;
Theodore Ts'oe7c8f502009-04-03 01:34:49 -04002347 int retval, flush_file = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348
Christoph Hellwig871a2932010-03-03 09:05:07 -05002349 dquot_initialize(old_dir);
2350 dquot_initialize(new_dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002351
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 old_bh = new_bh = dir_bh = NULL;
2353
2354 /* Initialize quotas before so that eventual writes go
2355 * in separate transaction */
2356 if (new_dentry->d_inode)
Christoph Hellwig871a2932010-03-03 09:05:07 -05002357 dquot_initialize(new_dentry->d_inode);
Jan Kara1f545872005-06-23 22:01:04 -07002358 handle = ext3_journal_start(old_dir, 2 *
2359 EXT3_DATA_TRANS_BLOCKS(old_dir->i_sb) +
Dave Kleikampe9ad5622006-09-27 01:49:35 -07002360 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 if (IS_ERR(handle))
2362 return PTR_ERR(handle);
2363
2364 if (IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir))
2365 handle->h_sync = 1;
2366
Al Viro734711a2008-08-24 07:26:48 -04002367 old_bh = ext3_find_entry(old_dir, &old_dentry->d_name, &old_de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 /*
2369 * Check for inode number is _not_ due to possible IO errors.
2370 * We might rmdir the source, keep it as pwd of some process
2371 * and merrily kill the link to whatever was created under the
2372 * same name. Goodbye sticky bit ;-<
2373 */
2374 old_inode = old_dentry->d_inode;
2375 retval = -ENOENT;
2376 if (!old_bh || le32_to_cpu(old_de->inode) != old_inode->i_ino)
2377 goto end_rename;
2378
2379 new_inode = new_dentry->d_inode;
Al Viro734711a2008-08-24 07:26:48 -04002380 new_bh = ext3_find_entry(new_dir, &new_dentry->d_name, &new_de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 if (new_bh) {
2382 if (!new_inode) {
2383 brelse (new_bh);
2384 new_bh = NULL;
2385 }
2386 }
2387 if (S_ISDIR(old_inode->i_mode)) {
2388 if (new_inode) {
2389 retval = -ENOTEMPTY;
2390 if (!empty_dir (new_inode))
2391 goto end_rename;
2392 }
2393 retval = -EIO;
2394 dir_bh = ext3_bread (handle, old_inode, 0, 0, &retval);
2395 if (!dir_bh)
2396 goto end_rename;
2397 if (le32_to_cpu(PARENT_INO(dir_bh->b_data)) != old_dir->i_ino)
2398 goto end_rename;
2399 retval = -EMLINK;
2400 if (!new_inode && new_dir!=old_dir &&
2401 new_dir->i_nlink >= EXT3_LINK_MAX)
2402 goto end_rename;
2403 }
2404 if (!new_bh) {
2405 retval = ext3_add_entry (handle, new_dentry, old_inode);
2406 if (retval)
2407 goto end_rename;
2408 } else {
2409 BUFFER_TRACE(new_bh, "get write access");
Namhyung Kimad1857a2010-11-23 13:30:33 +09002410 retval = ext3_journal_get_write_access(handle, new_bh);
2411 if (retval)
2412 goto journal_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 new_de->inode = cpu_to_le32(old_inode->i_ino);
2414 if (EXT3_HAS_INCOMPAT_FEATURE(new_dir->i_sb,
2415 EXT3_FEATURE_INCOMPAT_FILETYPE))
2416 new_de->file_type = old_de->file_type;
2417 new_dir->i_version++;
Jan Kara0b230762008-04-28 02:16:12 -07002418 new_dir->i_ctime = new_dir->i_mtime = CURRENT_TIME_SEC;
2419 ext3_mark_inode_dirty(handle, new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 BUFFER_TRACE(new_bh, "call ext3_journal_dirty_metadata");
Namhyung Kimad1857a2010-11-23 13:30:33 +09002421 retval = ext3_journal_dirty_metadata(handle, new_bh);
2422 if (retval)
2423 goto journal_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 brelse(new_bh);
2425 new_bh = NULL;
2426 }
2427
2428 /*
2429 * Like most other Unix systems, set the ctime for inodes on a
2430 * rename.
2431 */
2432 old_inode->i_ctime = CURRENT_TIME_SEC;
2433 ext3_mark_inode_dirty(handle, old_inode);
2434
2435 /*
2436 * ok, that's it
2437 */
2438 if (le32_to_cpu(old_de->inode) != old_inode->i_ino ||
2439 old_de->name_len != old_dentry->d_name.len ||
2440 strncmp(old_de->name, old_dentry->d_name.name, old_de->name_len) ||
2441 (retval = ext3_delete_entry(handle, old_dir,
2442 old_de, old_bh)) == -ENOENT) {
2443 /* old_de could have moved from under us during htree split, so
2444 * make sure that we are deleting the right entry. We might
2445 * also be pointing to a stale entry in the unused part of
2446 * old_bh so just checking inum and the name isn't enough. */
2447 struct buffer_head *old_bh2;
2448 struct ext3_dir_entry_2 *old_de2;
2449
Al Viro734711a2008-08-24 07:26:48 -04002450 old_bh2 = ext3_find_entry(old_dir, &old_dentry->d_name,
2451 &old_de2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 if (old_bh2) {
2453 retval = ext3_delete_entry(handle, old_dir,
2454 old_de2, old_bh2);
2455 brelse(old_bh2);
2456 }
2457 }
2458 if (retval) {
2459 ext3_warning(old_dir->i_sb, "ext3_rename",
2460 "Deleting old file (%lu), %d, error=%d",
2461 old_dir->i_ino, old_dir->i_nlink, retval);
2462 }
2463
2464 if (new_inode) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002465 drop_nlink(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 new_inode->i_ctime = CURRENT_TIME_SEC;
2467 }
2468 old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME_SEC;
2469 ext3_update_dx_flag(old_dir);
2470 if (dir_bh) {
2471 BUFFER_TRACE(dir_bh, "get_write_access");
Namhyung Kimad1857a2010-11-23 13:30:33 +09002472 retval = ext3_journal_get_write_access(handle, dir_bh);
2473 if (retval)
2474 goto journal_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 PARENT_INO(dir_bh->b_data) = cpu_to_le32(new_dir->i_ino);
2476 BUFFER_TRACE(dir_bh, "call ext3_journal_dirty_metadata");
Namhyung Kimad1857a2010-11-23 13:30:33 +09002477 retval = ext3_journal_dirty_metadata(handle, dir_bh);
2478 if (retval) {
2479journal_error:
2480 ext3_std_error(new_dir->i_sb, retval);
2481 goto end_rename;
2482 }
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002483 drop_nlink(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 if (new_inode) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002485 drop_nlink(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 } else {
Dave Hansend8c76e62006-09-30 23:29:04 -07002487 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 ext3_update_dx_flag(new_dir);
2489 ext3_mark_inode_dirty(handle, new_dir);
2490 }
2491 }
2492 ext3_mark_inode_dirty(handle, old_dir);
2493 if (new_inode) {
2494 ext3_mark_inode_dirty(handle, new_inode);
2495 if (!new_inode->i_nlink)
2496 ext3_orphan_add(handle, new_inode);
Theodore Ts'oe7c8f502009-04-03 01:34:49 -04002497 if (ext3_should_writeback_data(new_inode))
2498 flush_file = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 }
2500 retval = 0;
2501
2502end_rename:
2503 brelse (dir_bh);
2504 brelse (old_bh);
2505 brelse (new_bh);
2506 ext3_journal_stop(handle);
Theodore Ts'oe7c8f502009-04-03 01:34:49 -04002507 if (retval == 0 && flush_file)
2508 filemap_flush(old_inode->i_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 return retval;
2510}
2511
2512/*
2513 * directories can handle most operations...
2514 */
Arjan van de Ven754661f2007-02-12 00:55:38 -08002515const struct inode_operations ext3_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 .create = ext3_create,
2517 .lookup = ext3_lookup,
2518 .link = ext3_link,
2519 .unlink = ext3_unlink,
2520 .symlink = ext3_symlink,
2521 .mkdir = ext3_mkdir,
2522 .rmdir = ext3_rmdir,
2523 .mknod = ext3_mknod,
2524 .rename = ext3_rename,
2525 .setattr = ext3_setattr,
2526#ifdef CONFIG_EXT3_FS_XATTR
2527 .setxattr = generic_setxattr,
2528 .getxattr = generic_getxattr,
2529 .listxattr = ext3_listxattr,
2530 .removexattr = generic_removexattr,
2531#endif
Linus Torvalds1d5ccd12009-08-28 12:12:24 -07002532 .check_acl = ext3_check_acl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533};
2534
Arjan van de Ven754661f2007-02-12 00:55:38 -08002535const struct inode_operations ext3_special_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 .setattr = ext3_setattr,
2537#ifdef CONFIG_EXT3_FS_XATTR
2538 .setxattr = generic_setxattr,
2539 .getxattr = generic_getxattr,
2540 .listxattr = ext3_listxattr,
2541 .removexattr = generic_removexattr,
2542#endif
Linus Torvalds1d5ccd12009-08-28 12:12:24 -07002543 .check_acl = ext3_check_acl,
Mingming Caoae6ddcc2006-09-27 01:49:27 -07002544};