blob: 9cc0b2c9664fae0b75bf362ba0f3e288c868156e [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);
Bryan Donlande18f3b2009-04-02 16:57:15 -07001041 if (unlikely(IS_ERR(inode))) {
1042 if (PTR_ERR(inode) == -ESTALE) {
1043 ext3_error(dir->i_sb, __func__,
1044 "deleted inode referenced: %lu",
1045 ino);
1046 return ERR_PTR(-EIO);
1047 } else {
1048 return ERR_CAST(inode);
1049 }
1050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 }
Pekka Enbergba7fe362006-01-14 13:21:08 -08001052 return d_splice_alias(inode, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053}
1054
1055
1056struct dentry *ext3_get_parent(struct dentry *child)
1057{
1058 unsigned long ino;
Al Viro734711a2008-08-24 07:26:48 -04001059 struct qstr dotdot = {.name = "..", .len = 2};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 struct ext3_dir_entry_2 * de;
1061 struct buffer_head *bh;
1062
Al Viro734711a2008-08-24 07:26:48 -04001063 bh = ext3_find_entry(child->d_inode, &dotdot, &de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 if (!bh)
1065 return ERR_PTR(-ENOENT);
1066 ino = le32_to_cpu(de->inode);
1067 brelse(bh);
Neil Brown2ccb48e2006-07-30 03:03:01 -07001068
1069 if (!ext3_valid_inum(child->d_inode->i_sb, ino)) {
1070 ext3_error(child->d_inode->i_sb, "ext3_get_parent",
1071 "bad inode number: %lu", ino);
David Howells473043d2008-02-07 00:15:36 -08001072 return ERR_PTR(-EIO);
Vasily Averina6c15c22007-07-15 23:40:46 -07001073 }
1074
Christoph Hellwig44003722008-08-11 15:49:04 +02001075 return d_obtain_alias(ext3_iget(child->d_inode->i_sb, ino));
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001076}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078#define S_SHIFT 12
1079static unsigned char ext3_type_by_mode[S_IFMT >> S_SHIFT] = {
1080 [S_IFREG >> S_SHIFT] = EXT3_FT_REG_FILE,
1081 [S_IFDIR >> S_SHIFT] = EXT3_FT_DIR,
1082 [S_IFCHR >> S_SHIFT] = EXT3_FT_CHRDEV,
1083 [S_IFBLK >> S_SHIFT] = EXT3_FT_BLKDEV,
1084 [S_IFIFO >> S_SHIFT] = EXT3_FT_FIFO,
1085 [S_IFSOCK >> S_SHIFT] = EXT3_FT_SOCK,
1086 [S_IFLNK >> S_SHIFT] = EXT3_FT_SYMLINK,
1087};
1088
1089static inline void ext3_set_de_type(struct super_block *sb,
1090 struct ext3_dir_entry_2 *de,
1091 umode_t mode) {
1092 if (EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_FILETYPE))
1093 de->file_type = ext3_type_by_mode[(mode & S_IFMT)>>S_SHIFT];
1094}
1095
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001096/*
1097 * Move count entries from end of map between two memory locations.
1098 * Returns pointer to last entry moved.
1099 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100static struct ext3_dir_entry_2 *
1101dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count)
1102{
1103 unsigned rec_len = 0;
1104
1105 while (count--) {
1106 struct ext3_dir_entry_2 *de = (struct ext3_dir_entry_2 *) (from + map->offs);
1107 rec_len = EXT3_DIR_REC_LEN(de->name_len);
1108 memcpy (to, de, rec_len);
1109 ((struct ext3_dir_entry_2 *) to)->rec_len =
Jan Kara7c06a8d2007-11-14 17:00:19 -08001110 ext3_rec_len_to_disk(rec_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 de->inode = 0;
1112 map++;
1113 to += rec_len;
1114 }
1115 return (struct ext3_dir_entry_2 *) (to - rec_len);
1116}
1117
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001118/*
1119 * Compact each dir entry in the range to the minimal rec_len.
1120 * Returns pointer to last entry in range.
1121 */
Wei Yongjun45f90212009-04-02 16:57:14 -07001122static struct ext3_dir_entry_2 *dx_pack_dirents(char *base, unsigned blocksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123{
Wei Yongjun45f90212009-04-02 16:57:14 -07001124 struct ext3_dir_entry_2 *next, *to, *prev;
1125 struct ext3_dir_entry_2 *de = (struct ext3_dir_entry_2 *)base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 unsigned rec_len = 0;
1127
1128 prev = to = de;
Wei Yongjun45f90212009-04-02 16:57:14 -07001129 while ((char *)de < base + blocksize) {
Jan Kara7c06a8d2007-11-14 17:00:19 -08001130 next = ext3_next_entry(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 if (de->inode && de->name_len) {
1132 rec_len = EXT3_DIR_REC_LEN(de->name_len);
1133 if (de > to)
1134 memmove(to, de, rec_len);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001135 to->rec_len = ext3_rec_len_to_disk(rec_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 prev = to;
1137 to = (struct ext3_dir_entry_2 *) (((char *) to) + rec_len);
1138 }
1139 de = next;
1140 }
1141 return prev;
1142}
1143
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001144/*
1145 * Split a full leaf block to make room for a new dir entry.
1146 * Allocate a new block, and move entries so that they are approx. equally full.
1147 * Returns pointer to de in block into which the new entry will be inserted.
1148 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149static struct ext3_dir_entry_2 *do_split(handle_t *handle, struct inode *dir,
1150 struct buffer_head **bh,struct dx_frame *frame,
1151 struct dx_hash_info *hinfo, int *error)
1152{
1153 unsigned blocksize = dir->i_sb->s_blocksize;
1154 unsigned count, continued;
1155 struct buffer_head *bh2;
1156 u32 newblock;
1157 u32 hash2;
1158 struct dx_map_entry *map;
1159 char *data1 = (*bh)->b_data, *data2;
Theodore Ts'o59e315b2008-12-06 16:58:39 -05001160 unsigned split, move, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 struct ext3_dir_entry_2 *de = NULL, *de2;
Theodore Ts'o59e315b2008-12-06 16:58:39 -05001162 int err = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001164 bh2 = ext3_append (handle, dir, &newblock, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 if (!(bh2)) {
1166 brelse(*bh);
1167 *bh = NULL;
1168 goto errout;
1169 }
1170
1171 BUFFER_TRACE(*bh, "get_write_access");
1172 err = ext3_journal_get_write_access(handle, *bh);
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001173 if (err)
1174 goto journal_error;
1175
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 BUFFER_TRACE(frame->bh, "get_write_access");
1177 err = ext3_journal_get_write_access(handle, frame->bh);
1178 if (err)
1179 goto journal_error;
1180
1181 data2 = bh2->b_data;
1182
1183 /* create map in the end of data2 block */
1184 map = (struct dx_map_entry *) (data2 + blocksize);
1185 count = dx_make_map ((struct ext3_dir_entry_2 *) data1,
1186 blocksize, hinfo, map);
1187 map -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 dx_sort_map (map, count);
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001189 /* Split the existing block in the middle, size-wise */
1190 size = 0;
1191 move = 0;
1192 for (i = count-1; i >= 0; i--) {
1193 /* is more than half of this entry in 2nd half of the block? */
1194 if (size + map[i].size/2 > blocksize/2)
1195 break;
1196 size += map[i].size;
1197 move++;
1198 }
1199 /* map index at which we will split */
1200 split = count - move;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 hash2 = map[split].hash;
1202 continued = hash2 == map[split - 1].hash;
1203 dxtrace(printk("Split block %i at %x, %i/%i\n",
1204 dx_get_block(frame->at), hash2, split, count-split));
1205
1206 /* Fancy dance to stay within two buffers */
1207 de2 = dx_move_dirents(data1, data2, map + split, count - split);
1208 de = dx_pack_dirents(data1,blocksize);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001209 de->rec_len = ext3_rec_len_to_disk(data1 + blocksize - (char *) de);
1210 de2->rec_len = ext3_rec_len_to_disk(data2 + blocksize - (char *) de2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data1, blocksize, 1));
1212 dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data2, blocksize, 1));
1213
1214 /* Which block gets the new entry? */
1215 if (hinfo->hash >= hash2)
1216 {
1217 swap(*bh, bh2);
1218 de = de2;
1219 }
1220 dx_insert_block (frame, hash2 + continued, newblock);
1221 err = ext3_journal_dirty_metadata (handle, bh2);
1222 if (err)
1223 goto journal_error;
1224 err = ext3_journal_dirty_metadata (handle, frame->bh);
1225 if (err)
1226 goto journal_error;
1227 brelse (bh2);
1228 dxtrace(dx_show_index ("frame", frame->entries));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 return de;
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001230
1231journal_error:
1232 brelse(*bh);
1233 brelse(bh2);
1234 *bh = NULL;
1235 ext3_std_error(dir->i_sb, err);
1236errout:
1237 *error = err;
1238 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241
1242/*
1243 * Add a new entry into a directory (leaf) block. If de is non-NULL,
1244 * it points to a directory entry which is guaranteed to be large
1245 * enough for new directory entry. If de is NULL, then
1246 * add_dirent_to_buf will attempt search the directory block for
1247 * space. It will return -ENOSPC if no space is available, and -EIO
1248 * and -EEXIST if directory entry already exists.
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001249 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 * NOTE! bh is NOT released in the case where ENOSPC is returned. In
1251 * all other cases bh is released.
1252 */
1253static int add_dirent_to_buf(handle_t *handle, struct dentry *dentry,
1254 struct inode *inode, struct ext3_dir_entry_2 *de,
1255 struct buffer_head * bh)
1256{
1257 struct inode *dir = dentry->d_parent->d_inode;
1258 const char *name = dentry->d_name.name;
1259 int namelen = dentry->d_name.len;
1260 unsigned long offset = 0;
1261 unsigned short reclen;
1262 int nlen, rlen, err;
1263 char *top;
1264
1265 reclen = EXT3_DIR_REC_LEN(namelen);
1266 if (!de) {
1267 de = (struct ext3_dir_entry_2 *)bh->b_data;
1268 top = bh->b_data + dir->i_sb->s_blocksize - reclen;
1269 while ((char *) de <= top) {
1270 if (!ext3_check_dir_entry("ext3_add_entry", dir, de,
1271 bh, offset)) {
1272 brelse (bh);
1273 return -EIO;
1274 }
1275 if (ext3_match (namelen, name, de)) {
1276 brelse (bh);
1277 return -EEXIST;
1278 }
1279 nlen = EXT3_DIR_REC_LEN(de->name_len);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001280 rlen = ext3_rec_len_from_disk(de->rec_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 if ((de->inode? rlen - nlen: rlen) >= reclen)
1282 break;
1283 de = (struct ext3_dir_entry_2 *)((char *)de + rlen);
1284 offset += rlen;
1285 }
1286 if ((char *) de > top)
1287 return -ENOSPC;
1288 }
1289 BUFFER_TRACE(bh, "get_write_access");
1290 err = ext3_journal_get_write_access(handle, bh);
1291 if (err) {
1292 ext3_std_error(dir->i_sb, err);
1293 brelse(bh);
1294 return err;
1295 }
1296
1297 /* By now the buffer is marked for journaling */
1298 nlen = EXT3_DIR_REC_LEN(de->name_len);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001299 rlen = ext3_rec_len_from_disk(de->rec_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 if (de->inode) {
1301 struct ext3_dir_entry_2 *de1 = (struct ext3_dir_entry_2 *)((char *)de + nlen);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001302 de1->rec_len = ext3_rec_len_to_disk(rlen - nlen);
1303 de->rec_len = ext3_rec_len_to_disk(nlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 de = de1;
1305 }
1306 de->file_type = EXT3_FT_UNKNOWN;
1307 if (inode) {
1308 de->inode = cpu_to_le32(inode->i_ino);
1309 ext3_set_de_type(dir->i_sb, de, inode->i_mode);
1310 } else
1311 de->inode = 0;
1312 de->name_len = namelen;
1313 memcpy (de->name, name, namelen);
1314 /*
1315 * XXX shouldn't update any times until successful
1316 * completion of syscall, but too many callers depend
1317 * on this.
1318 *
1319 * XXX similarly, too many callers depend on
1320 * ext3_new_inode() setting the times, but error
1321 * recovery deletes the inode, so the worst that can
1322 * happen is that the times are slightly out of date
1323 * and/or different from the directory change time.
1324 */
1325 dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC;
1326 ext3_update_dx_flag(dir);
1327 dir->i_version++;
1328 ext3_mark_inode_dirty(handle, dir);
1329 BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
1330 err = ext3_journal_dirty_metadata(handle, bh);
1331 if (err)
1332 ext3_std_error(dir->i_sb, err);
1333 brelse(bh);
1334 return 0;
1335}
1336
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337/*
1338 * This converts a one block unindexed directory to a 3 block indexed
1339 * directory, and adds the dentry to the indexed directory.
1340 */
1341static int make_indexed_dir(handle_t *handle, struct dentry *dentry,
1342 struct inode *inode, struct buffer_head *bh)
1343{
1344 struct inode *dir = dentry->d_parent->d_inode;
1345 const char *name = dentry->d_name.name;
1346 int namelen = dentry->d_name.len;
1347 struct buffer_head *bh2;
1348 struct dx_root *root;
1349 struct dx_frame frames[2], *frame;
1350 struct dx_entry *entries;
1351 struct ext3_dir_entry_2 *de, *de2;
1352 char *data1, *top;
1353 unsigned len;
1354 int retval;
1355 unsigned blocksize;
1356 struct dx_hash_info hinfo;
1357 u32 block;
1358 struct fake_dirent *fde;
1359
1360 blocksize = dir->i_sb->s_blocksize;
Theodore Ts'oa21102b2009-01-16 11:13:47 -05001361 dxtrace(printk(KERN_DEBUG "Creating index: inode %lu\n", dir->i_ino));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 retval = ext3_journal_get_write_access(handle, bh);
1363 if (retval) {
1364 ext3_std_error(dir->i_sb, retval);
1365 brelse(bh);
1366 return retval;
1367 }
1368 root = (struct dx_root *) bh->b_data;
1369
Theodore Ts'oa21102b2009-01-16 11:13:47 -05001370 /* The 0th block becomes the root, move the dirents out */
1371 fde = &root->dotdot;
1372 de = (struct ext3_dir_entry_2 *)((char *)fde +
1373 ext3_rec_len_from_disk(fde->rec_len));
1374 if ((char *) de >= (((char *) root) + blocksize)) {
1375 ext3_error(dir->i_sb, __func__,
1376 "invalid rec_len for '..' in inode %lu",
1377 dir->i_ino);
1378 brelse(bh);
1379 return -EIO;
1380 }
1381 len = ((char *) root) + blocksize - (char *) de;
1382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 bh2 = ext3_append (handle, dir, &block, &retval);
1384 if (!(bh2)) {
1385 brelse(bh);
1386 return retval;
1387 }
1388 EXT3_I(dir)->i_flags |= EXT3_INDEX_FL;
1389 data1 = bh2->b_data;
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 memcpy (data1, de, len);
1392 de = (struct ext3_dir_entry_2 *) data1;
1393 top = data1 + len;
Jan Kara7c06a8d2007-11-14 17:00:19 -08001394 while ((char *)(de2 = ext3_next_entry(de)) < top)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 de = de2;
Jan Kara7c06a8d2007-11-14 17:00:19 -08001396 de->rec_len = ext3_rec_len_to_disk(data1 + blocksize - (char *) de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 /* Initialize the root; the dot dirents already exist */
1398 de = (struct ext3_dir_entry_2 *) (&root->dotdot);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001399 de->rec_len = ext3_rec_len_to_disk(blocksize - EXT3_DIR_REC_LEN(2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 memset (&root->info, 0, sizeof(root->info));
1401 root->info.info_length = sizeof(root->info);
1402 root->info.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version;
1403 entries = root->entries;
1404 dx_set_block (entries, 1);
1405 dx_set_count (entries, 1);
1406 dx_set_limit (entries, dx_root_limit(dir, sizeof(root->info)));
1407
1408 /* Initialize as for dx_probe */
1409 hinfo.hash_version = root->info.hash_version;
Theodore Ts'o5e1f8c92008-10-28 13:21:55 -04001410 if (hinfo.hash_version <= DX_HASH_TEA)
1411 hinfo.hash_version += EXT3_SB(dir->i_sb)->s_hash_unsigned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 hinfo.seed = EXT3_SB(dir->i_sb)->s_hash_seed;
1413 ext3fs_dirhash(name, namelen, &hinfo);
1414 frame = frames;
1415 frame->entries = entries;
1416 frame->at = entries;
1417 frame->bh = bh;
1418 bh = bh2;
1419 de = do_split(handle,dir, &bh, frame, &hinfo, &retval);
1420 dx_release (frames);
1421 if (!(de))
1422 return retval;
1423
1424 return add_dirent_to_buf(handle, dentry, inode, de, bh);
1425}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
1427/*
1428 * ext3_add_entry()
1429 *
1430 * adds a file entry to the specified directory, using the same
1431 * semantics as ext3_find_entry(). It returns NULL if it failed.
1432 *
1433 * NOTE!! The inode part of 'de' is left at 0 - which means you
1434 * may not sleep between calling this and putting something into
1435 * the entry, as someone else might have used it while you slept.
1436 */
1437static int ext3_add_entry (handle_t *handle, struct dentry *dentry,
1438 struct inode *inode)
1439{
1440 struct inode *dir = dentry->d_parent->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 struct buffer_head * bh;
1442 struct ext3_dir_entry_2 *de;
1443 struct super_block * sb;
1444 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 int dx_fallback=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 unsigned blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 u32 block, blocks;
1448
1449 sb = dir->i_sb;
1450 blocksize = sb->s_blocksize;
1451 if (!dentry->d_name.len)
1452 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 if (is_dx(dir)) {
1454 retval = ext3_dx_add_entry(handle, dentry, inode);
1455 if (!retval || (retval != ERR_BAD_DX_DIR))
1456 return retval;
1457 EXT3_I(dir)->i_flags &= ~EXT3_INDEX_FL;
1458 dx_fallback++;
1459 ext3_mark_inode_dirty(handle, dir);
1460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 blocks = dir->i_size >> sb->s_blocksize_bits;
Andi Kleen0411ba72010-06-10 13:10:53 +02001462 for (block = 0; block < blocks; block++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 bh = ext3_bread(handle, dir, block, 0, &retval);
1464 if(!bh)
1465 return retval;
1466 retval = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
1467 if (retval != -ENOSPC)
1468 return retval;
1469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 if (blocks == 1 && !dx_fallback &&
1471 EXT3_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_DIR_INDEX))
1472 return make_indexed_dir(handle, dentry, inode, bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 brelse(bh);
1474 }
1475 bh = ext3_append(handle, dir, &block, &retval);
1476 if (!bh)
1477 return retval;
1478 de = (struct ext3_dir_entry_2 *) bh->b_data;
1479 de->inode = 0;
Jan Kara7c06a8d2007-11-14 17:00:19 -08001480 de->rec_len = ext3_rec_len_to_disk(blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 return add_dirent_to_buf(handle, dentry, inode, de, bh);
1482}
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484/*
1485 * Returns 0 for success, or a negative error value
1486 */
1487static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry,
1488 struct inode *inode)
1489{
1490 struct dx_frame frames[2], *frame;
1491 struct dx_entry *entries, *at;
1492 struct dx_hash_info hinfo;
1493 struct buffer_head * bh;
1494 struct inode *dir = dentry->d_parent->d_inode;
1495 struct super_block * sb = dir->i_sb;
1496 struct ext3_dir_entry_2 *de;
1497 int err;
1498
Al Viro734711a2008-08-24 07:26:48 -04001499 frame = dx_probe(&dentry->d_name, dir, &hinfo, frames, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 if (!frame)
1501 return err;
1502 entries = frame->entries;
1503 at = frame->at;
1504
1505 if (!(bh = ext3_bread(handle,dir, dx_get_block(frame->at), 0, &err)))
1506 goto cleanup;
1507
1508 BUFFER_TRACE(bh, "get_write_access");
1509 err = ext3_journal_get_write_access(handle, bh);
1510 if (err)
1511 goto journal_error;
1512
1513 err = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
1514 if (err != -ENOSPC) {
1515 bh = NULL;
1516 goto cleanup;
1517 }
1518
1519 /* Block full, should compress but for now just split */
1520 dxtrace(printk("using %u of %u node entries\n",
1521 dx_get_count(entries), dx_get_limit(entries)));
1522 /* Need to split index? */
1523 if (dx_get_count(entries) == dx_get_limit(entries)) {
1524 u32 newblock;
1525 unsigned icount = dx_get_count(entries);
1526 int levels = frame - frames;
1527 struct dx_entry *entries2;
1528 struct dx_node *node2;
1529 struct buffer_head *bh2;
1530
1531 if (levels && (dx_get_count(frames->entries) ==
1532 dx_get_limit(frames->entries))) {
Harvey Harrisone05b6b52008-04-28 02:16:15 -07001533 ext3_warning(sb, __func__,
Glauber de Oliveira Costa9f406682006-01-08 01:03:22 -08001534 "Directory index full!");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 err = -ENOSPC;
1536 goto cleanup;
1537 }
1538 bh2 = ext3_append (handle, dir, &newblock, &err);
1539 if (!(bh2))
1540 goto cleanup;
1541 node2 = (struct dx_node *)(bh2->b_data);
1542 entries2 = node2->entries;
Jan Kara7c06a8d2007-11-14 17:00:19 -08001543 node2->fake.rec_len = ext3_rec_len_to_disk(sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 node2->fake.inode = 0;
1545 BUFFER_TRACE(frame->bh, "get_write_access");
1546 err = ext3_journal_get_write_access(handle, frame->bh);
1547 if (err)
1548 goto journal_error;
1549 if (levels) {
1550 unsigned icount1 = icount/2, icount2 = icount - icount1;
1551 unsigned hash2 = dx_get_hash(entries + icount1);
1552 dxtrace(printk("Split index %i/%i\n", icount1, icount2));
1553
1554 BUFFER_TRACE(frame->bh, "get_write_access"); /* index root */
1555 err = ext3_journal_get_write_access(handle,
1556 frames[0].bh);
1557 if (err)
1558 goto journal_error;
1559
1560 memcpy ((char *) entries2, (char *) (entries + icount1),
1561 icount2 * sizeof(struct dx_entry));
1562 dx_set_count (entries, icount1);
1563 dx_set_count (entries2, icount2);
1564 dx_set_limit (entries2, dx_node_limit(dir));
1565
1566 /* Which index block gets the new entry? */
1567 if (at - entries >= icount1) {
1568 frame->at = at = at - entries - icount1 + entries2;
1569 frame->entries = entries = entries2;
1570 swap(frame->bh, bh2);
1571 }
1572 dx_insert_block (frames + 0, hash2, newblock);
1573 dxtrace(dx_show_index ("node", frames[1].entries));
1574 dxtrace(dx_show_index ("node",
1575 ((struct dx_node *) bh2->b_data)->entries));
1576 err = ext3_journal_dirty_metadata(handle, bh2);
1577 if (err)
1578 goto journal_error;
1579 brelse (bh2);
1580 } else {
1581 dxtrace(printk("Creating second level index...\n"));
1582 memcpy((char *) entries2, (char *) entries,
1583 icount * sizeof(struct dx_entry));
1584 dx_set_limit(entries2, dx_node_limit(dir));
1585
1586 /* Set up root */
1587 dx_set_count(entries, 1);
1588 dx_set_block(entries + 0, newblock);
1589 ((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels = 1;
1590
1591 /* Add new access path frame */
1592 frame = frames + 1;
1593 frame->at = at = at - entries + entries2;
1594 frame->entries = entries = entries2;
1595 frame->bh = bh2;
1596 err = ext3_journal_get_write_access(handle,
1597 frame->bh);
1598 if (err)
1599 goto journal_error;
1600 }
1601 ext3_journal_dirty_metadata(handle, frames[0].bh);
1602 }
1603 de = do_split(handle, dir, &bh, frame, &hinfo, &err);
1604 if (!de)
1605 goto cleanup;
1606 err = add_dirent_to_buf(handle, dentry, inode, de, bh);
1607 bh = NULL;
1608 goto cleanup;
1609
1610journal_error:
1611 ext3_std_error(dir->i_sb, err);
1612cleanup:
1613 if (bh)
1614 brelse(bh);
1615 dx_release(frames);
1616 return err;
1617}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
1619/*
1620 * ext3_delete_entry deletes a directory entry by merging it with the
1621 * previous entry
1622 */
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001623static int ext3_delete_entry (handle_t *handle,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 struct inode * dir,
1625 struct ext3_dir_entry_2 * de_del,
1626 struct buffer_head * bh)
1627{
1628 struct ext3_dir_entry_2 * de, * pde;
1629 int i;
1630
1631 i = 0;
1632 pde = NULL;
1633 de = (struct ext3_dir_entry_2 *) bh->b_data;
1634 while (i < bh->b_size) {
1635 if (!ext3_check_dir_entry("ext3_delete_entry", dir, de, bh, i))
1636 return -EIO;
1637 if (de == de_del) {
Namhyung Kimfbcae8e2010-11-19 16:28:35 +09001638 int err;
1639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 BUFFER_TRACE(bh, "get_write_access");
Namhyung Kimfbcae8e2010-11-19 16:28:35 +09001641 err = ext3_journal_get_write_access(handle, bh);
1642 if (err)
1643 goto journal_error;
1644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 if (pde)
Jan Kara7c06a8d2007-11-14 17:00:19 -08001646 pde->rec_len = ext3_rec_len_to_disk(
1647 ext3_rec_len_from_disk(pde->rec_len) +
1648 ext3_rec_len_from_disk(de->rec_len));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 else
1650 de->inode = 0;
1651 dir->i_version++;
1652 BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
Namhyung Kimfbcae8e2010-11-19 16:28:35 +09001653 err = ext3_journal_dirty_metadata(handle, bh);
1654 if (err) {
1655journal_error:
1656 ext3_std_error(dir->i_sb, err);
1657 return err;
1658 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 return 0;
1660 }
Jan Kara7c06a8d2007-11-14 17:00:19 -08001661 i += ext3_rec_len_from_disk(de->rec_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 pde = de;
Jan Kara7c06a8d2007-11-14 17:00:19 -08001663 de = ext3_next_entry(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 }
1665 return -ENOENT;
1666}
1667
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668static int ext3_add_nondir(handle_t *handle,
1669 struct dentry *dentry, struct inode *inode)
1670{
1671 int err = ext3_add_entry(handle, dentry, inode);
1672 if (!err) {
1673 ext3_mark_inode_dirty(handle, inode);
1674 d_instantiate(dentry, inode);
Al Viroc38012d2008-12-30 02:02:50 -05001675 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 return 0;
1677 }
Eric Sandeen731b9a52007-02-10 01:46:16 -08001678 drop_nlink(inode);
Al Viroc38012d2008-12-30 02:02:50 -05001679 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 iput(inode);
1681 return err;
1682}
1683
1684/*
1685 * By the time this is called, we already have created
1686 * the directory cache entry for the new file, but it
1687 * is so far negative - it has no inode.
1688 *
1689 * If the create succeeds, we fill in the inode information
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001690 * with d_instantiate().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 */
1692static int ext3_create (struct inode * dir, struct dentry * dentry, int mode,
1693 struct nameidata *nd)
1694{
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001695 handle_t *handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 struct inode * inode;
1697 int err, retries = 0;
1698
Christoph Hellwig871a2932010-03-03 09:05:07 -05001699 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05001700
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701retry:
Jan Kara1f545872005-06-23 22:01:04 -07001702 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
Dmitry Monakhovc4590012009-12-09 03:05:30 +03001704 EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 if (IS_ERR(handle))
1706 return PTR_ERR(handle);
1707
1708 if (IS_DIRSYNC(dir))
1709 handle->h_sync = 1;
1710
1711 inode = ext3_new_inode (handle, dir, mode);
1712 err = PTR_ERR(inode);
1713 if (!IS_ERR(inode)) {
1714 inode->i_op = &ext3_file_inode_operations;
1715 inode->i_fop = &ext3_file_operations;
1716 ext3_set_aops(inode);
1717 err = ext3_add_nondir(handle, dentry, inode);
1718 }
1719 ext3_journal_stop(handle);
1720 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1721 goto retry;
1722 return err;
1723}
1724
1725static int ext3_mknod (struct inode * dir, struct dentry *dentry,
1726 int mode, dev_t rdev)
1727{
1728 handle_t *handle;
1729 struct inode *inode;
1730 int err, retries = 0;
1731
1732 if (!new_valid_dev(rdev))
1733 return -EINVAL;
1734
Christoph Hellwig871a2932010-03-03 09:05:07 -05001735 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05001736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737retry:
Jan Kara1f545872005-06-23 22:01:04 -07001738 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
Dave Kleikampe9ad5622006-09-27 01:49:35 -07001739 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
Dmitry Monakhovc4590012009-12-09 03:05:30 +03001740 EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 if (IS_ERR(handle))
1742 return PTR_ERR(handle);
1743
1744 if (IS_DIRSYNC(dir))
1745 handle->h_sync = 1;
1746
1747 inode = ext3_new_inode (handle, dir, mode);
1748 err = PTR_ERR(inode);
1749 if (!IS_ERR(inode)) {
1750 init_special_inode(inode, inode->i_mode, rdev);
1751#ifdef CONFIG_EXT3_FS_XATTR
1752 inode->i_op = &ext3_special_inode_operations;
1753#endif
1754 err = ext3_add_nondir(handle, dentry, inode);
1755 }
1756 ext3_journal_stop(handle);
1757 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1758 goto retry;
1759 return err;
1760}
1761
1762static int ext3_mkdir(struct inode * dir, struct dentry * dentry, int mode)
1763{
1764 handle_t *handle;
1765 struct inode * inode;
Namhyung Kim2b543ed2010-11-16 20:18:12 +09001766 struct buffer_head * dir_block = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 struct ext3_dir_entry_2 * de;
1768 int err, retries = 0;
1769
1770 if (dir->i_nlink >= EXT3_LINK_MAX)
1771 return -EMLINK;
1772
Christoph Hellwig871a2932010-03-03 09:05:07 -05001773 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05001774
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775retry:
Jan Kara1f545872005-06-23 22:01:04 -07001776 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
Dmitry Monakhovc4590012009-12-09 03:05:30 +03001778 EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 if (IS_ERR(handle))
1780 return PTR_ERR(handle);
1781
1782 if (IS_DIRSYNC(dir))
1783 handle->h_sync = 1;
1784
1785 inode = ext3_new_inode (handle, dir, S_IFDIR | mode);
1786 err = PTR_ERR(inode);
1787 if (IS_ERR(inode))
1788 goto out_stop;
1789
1790 inode->i_op = &ext3_dir_inode_operations;
1791 inode->i_fop = &ext3_dir_operations;
1792 inode->i_size = EXT3_I(inode)->i_disksize = inode->i_sb->s_blocksize;
1793 dir_block = ext3_bread (handle, inode, 0, 1, &err);
Namhyung Kim2b543ed2010-11-16 20:18:12 +09001794 if (!dir_block)
1795 goto out_clear_inode;
1796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 BUFFER_TRACE(dir_block, "get_write_access");
Namhyung Kim2b543ed2010-11-16 20:18:12 +09001798 err = ext3_journal_get_write_access(handle, dir_block);
1799 if (err)
1800 goto out_clear_inode;
1801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 de = (struct ext3_dir_entry_2 *) dir_block->b_data;
1803 de->inode = cpu_to_le32(inode->i_ino);
1804 de->name_len = 1;
Jan Kara7c06a8d2007-11-14 17:00:19 -08001805 de->rec_len = ext3_rec_len_to_disk(EXT3_DIR_REC_LEN(de->name_len));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 strcpy (de->name, ".");
1807 ext3_set_de_type(dir->i_sb, de, S_IFDIR);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001808 de = ext3_next_entry(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 de->inode = cpu_to_le32(dir->i_ino);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001810 de->rec_len = ext3_rec_len_to_disk(inode->i_sb->s_blocksize -
1811 EXT3_DIR_REC_LEN(1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 de->name_len = 2;
1813 strcpy (de->name, "..");
1814 ext3_set_de_type(dir->i_sb, de, S_IFDIR);
1815 inode->i_nlink = 2;
1816 BUFFER_TRACE(dir_block, "call ext3_journal_dirty_metadata");
Namhyung Kim2b543ed2010-11-16 20:18:12 +09001817 err = ext3_journal_dirty_metadata(handle, dir_block);
1818 if (err)
1819 goto out_clear_inode;
1820
1821 err = ext3_mark_inode_dirty(handle, inode);
1822 if (!err)
1823 err = ext3_add_entry (handle, dentry, inode);
1824
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 if (err) {
Namhyung Kim2b543ed2010-11-16 20:18:12 +09001826out_clear_inode:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 inode->i_nlink = 0;
Al Viroc38012d2008-12-30 02:02:50 -05001828 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 ext3_mark_inode_dirty(handle, inode);
1830 iput (inode);
1831 goto out_stop;
1832 }
Dave Hansend8c76e62006-09-30 23:29:04 -07001833 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 ext3_update_dx_flag(dir);
Namhyung Kim2b543ed2010-11-16 20:18:12 +09001835 err = ext3_mark_inode_dirty(handle, dir);
1836 if (err)
1837 goto out_clear_inode;
1838
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 d_instantiate(dentry, inode);
Al Viroc38012d2008-12-30 02:02:50 -05001840 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841out_stop:
Namhyung Kim2b543ed2010-11-16 20:18:12 +09001842 brelse(dir_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 ext3_journal_stop(handle);
1844 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1845 goto retry;
1846 return err;
1847}
1848
1849/*
1850 * routine to check that the specified directory is empty (for rmdir)
1851 */
1852static int empty_dir (struct inode * inode)
1853{
1854 unsigned long offset;
1855 struct buffer_head * bh;
1856 struct ext3_dir_entry_2 * de, * de1;
1857 struct super_block * sb;
1858 int err = 0;
1859
1860 sb = inode->i_sb;
1861 if (inode->i_size < EXT3_DIR_REC_LEN(1) + EXT3_DIR_REC_LEN(2) ||
1862 !(bh = ext3_bread (NULL, inode, 0, 0, &err))) {
1863 if (err)
Harvey Harrisone05b6b52008-04-28 02:16:15 -07001864 ext3_error(inode->i_sb, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 "error %d reading directory #%lu offset 0",
1866 err, inode->i_ino);
1867 else
Harvey Harrisone05b6b52008-04-28 02:16:15 -07001868 ext3_warning(inode->i_sb, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 "bad directory (dir #%lu) - no data block",
1870 inode->i_ino);
1871 return 1;
1872 }
1873 de = (struct ext3_dir_entry_2 *) bh->b_data;
Jan Kara7c06a8d2007-11-14 17:00:19 -08001874 de1 = ext3_next_entry(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 if (le32_to_cpu(de->inode) != inode->i_ino ||
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001876 !le32_to_cpu(de1->inode) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 strcmp (".", de->name) ||
1878 strcmp ("..", de1->name)) {
Dave Kleikampe9ad5622006-09-27 01:49:35 -07001879 ext3_warning (inode->i_sb, "empty_dir",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 "bad directory (dir #%lu) - no `.' or `..'",
1881 inode->i_ino);
1882 brelse (bh);
1883 return 1;
1884 }
Jan Kara7c06a8d2007-11-14 17:00:19 -08001885 offset = ext3_rec_len_from_disk(de->rec_len) +
1886 ext3_rec_len_from_disk(de1->rec_len);
1887 de = ext3_next_entry(de1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 while (offset < inode->i_size ) {
1889 if (!bh ||
1890 (void *) de >= (void *) (bh->b_data+sb->s_blocksize)) {
1891 err = 0;
1892 brelse (bh);
1893 bh = ext3_bread (NULL, inode,
1894 offset >> EXT3_BLOCK_SIZE_BITS(sb), 0, &err);
1895 if (!bh) {
1896 if (err)
Harvey Harrisone05b6b52008-04-28 02:16:15 -07001897 ext3_error(sb, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 "error %d reading directory"
1899 " #%lu offset %lu",
1900 err, inode->i_ino, offset);
1901 offset += sb->s_blocksize;
1902 continue;
1903 }
1904 de = (struct ext3_dir_entry_2 *) bh->b_data;
1905 }
1906 if (!ext3_check_dir_entry("empty_dir", inode, de, bh, offset)) {
1907 de = (struct ext3_dir_entry_2 *)(bh->b_data +
1908 sb->s_blocksize);
1909 offset = (offset | (sb->s_blocksize - 1)) + 1;
1910 continue;
1911 }
1912 if (le32_to_cpu(de->inode)) {
1913 brelse (bh);
1914 return 0;
1915 }
Jan Kara7c06a8d2007-11-14 17:00:19 -08001916 offset += ext3_rec_len_from_disk(de->rec_len);
1917 de = ext3_next_entry(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 }
1919 brelse (bh);
1920 return 1;
1921}
1922
1923/* ext3_orphan_add() links an unlinked or truncated inode into a list of
1924 * such inodes, starting at the superblock, in case we crash before the
1925 * file is closed/deleted, or in case the inode truncate spans multiple
1926 * transactions and the last transaction is not recovered after a crash.
1927 *
1928 * At filesystem recovery time, we walk this list deleting unlinked
1929 * inodes and truncating linked inodes in ext3_orphan_cleanup().
1930 */
1931int ext3_orphan_add(handle_t *handle, struct inode *inode)
1932{
1933 struct super_block *sb = inode->i_sb;
1934 struct ext3_iloc iloc;
1935 int err = 0, rc;
1936
Eric Sandeenb8a052d2009-12-14 13:00:30 -06001937 mutex_lock(&EXT3_SB(sb)->s_orphan_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 if (!list_empty(&EXT3_I(inode)->i_orphan))
1939 goto out_unlock;
1940
1941 /* Orphan handling is only valid for files with data blocks
1942 * being truncated, or files being unlinked. */
1943
1944 /* @@@ FIXME: Observation from aviro:
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001945 * I think I can trigger J_ASSERT in ext3_orphan_add(). We block
Eric Sandeenb8a052d2009-12-14 13:00:30 -06001946 * here (on s_orphan_lock), so race with ext3_link() which might bump
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 * ->i_nlink. For, say it, character device. Not a regular file,
1948 * not a directory, not a symlink and ->i_nlink > 0.
Eric Sandeenb8a052d2009-12-14 13:00:30 -06001949 *
1950 * tytso, 4/25/2009: I'm not sure how that could happen;
1951 * shouldn't the fs core protect us from these sort of
1952 * unlink()/link() races?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 */
1954 J_ASSERT ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
1955 S_ISLNK(inode->i_mode)) || inode->i_nlink == 0);
1956
1957 BUFFER_TRACE(EXT3_SB(sb)->s_sbh, "get_write_access");
1958 err = ext3_journal_get_write_access(handle, EXT3_SB(sb)->s_sbh);
1959 if (err)
1960 goto out_unlock;
1961
1962 err = ext3_reserve_inode_write(handle, inode, &iloc);
1963 if (err)
1964 goto out_unlock;
1965
1966 /* Insert this inode at the head of the on-disk orphan list... */
1967 NEXT_ORPHAN(inode) = le32_to_cpu(EXT3_SB(sb)->s_es->s_last_orphan);
1968 EXT3_SB(sb)->s_es->s_last_orphan = cpu_to_le32(inode->i_ino);
1969 err = ext3_journal_dirty_metadata(handle, EXT3_SB(sb)->s_sbh);
1970 rc = ext3_mark_iloc_dirty(handle, inode, &iloc);
1971 if (!err)
1972 err = rc;
1973
1974 /* Only add to the head of the in-memory list if all the
1975 * previous operations succeeded. If the orphan_add is going to
1976 * fail (possibly taking the journal offline), we can't risk
1977 * leaving the inode on the orphan list: stray orphan-list
1978 * entries can cause panics at unmount time.
1979 *
1980 * This is safe: on error we're going to ignore the orphan list
1981 * anyway on the next recovery. */
1982 if (!err)
1983 list_add(&EXT3_I(inode)->i_orphan, &EXT3_SB(sb)->s_orphan);
1984
Eric Sandeeneee194e2006-09-27 01:49:30 -07001985 jbd_debug(4, "superblock will point to %lu\n", inode->i_ino);
1986 jbd_debug(4, "orphan inode %lu will point to %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 inode->i_ino, NEXT_ORPHAN(inode));
1988out_unlock:
Eric Sandeenb8a052d2009-12-14 13:00:30 -06001989 mutex_unlock(&EXT3_SB(sb)->s_orphan_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 ext3_std_error(inode->i_sb, err);
1991 return err;
1992}
1993
1994/*
1995 * ext3_orphan_del() removes an unlinked or truncated inode from the list
1996 * of such inodes stored on disk, because it is finally being cleaned up.
1997 */
1998int ext3_orphan_del(handle_t *handle, struct inode *inode)
1999{
2000 struct list_head *prev;
2001 struct ext3_inode_info *ei = EXT3_I(inode);
2002 struct ext3_sb_info *sbi;
2003 unsigned long ino_next;
2004 struct ext3_iloc iloc;
2005 int err = 0;
2006
Eric Sandeenb8a052d2009-12-14 13:00:30 -06002007 mutex_lock(&EXT3_SB(inode->i_sb)->s_orphan_lock);
2008 if (list_empty(&ei->i_orphan))
2009 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
2011 ino_next = NEXT_ORPHAN(inode);
2012 prev = ei->i_orphan.prev;
2013 sbi = EXT3_SB(inode->i_sb);
2014
2015 jbd_debug(4, "remove inode %lu from orphan list\n", inode->i_ino);
2016
2017 list_del_init(&ei->i_orphan);
2018
2019 /* If we're on an error path, we may not have a valid
2020 * transaction handle with which to update the orphan list on
2021 * disk, but we still need to remove the inode from the linked
2022 * list in memory. */
2023 if (!handle)
2024 goto out;
2025
2026 err = ext3_reserve_inode_write(handle, inode, &iloc);
2027 if (err)
2028 goto out_err;
2029
2030 if (prev == &sbi->s_orphan) {
2031 jbd_debug(4, "superblock will point to %lu\n", ino_next);
2032 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
2033 err = ext3_journal_get_write_access(handle, sbi->s_sbh);
2034 if (err)
2035 goto out_brelse;
2036 sbi->s_es->s_last_orphan = cpu_to_le32(ino_next);
2037 err = ext3_journal_dirty_metadata(handle, sbi->s_sbh);
2038 } else {
2039 struct ext3_iloc iloc2;
2040 struct inode *i_prev =
2041 &list_entry(prev, struct ext3_inode_info, i_orphan)->vfs_inode;
2042
2043 jbd_debug(4, "orphan inode %lu will point to %lu\n",
2044 i_prev->i_ino, ino_next);
2045 err = ext3_reserve_inode_write(handle, i_prev, &iloc2);
2046 if (err)
2047 goto out_brelse;
2048 NEXT_ORPHAN(i_prev) = ino_next;
2049 err = ext3_mark_iloc_dirty(handle, i_prev, &iloc2);
2050 }
2051 if (err)
2052 goto out_brelse;
2053 NEXT_ORPHAN(inode) = 0;
2054 err = ext3_mark_iloc_dirty(handle, inode, &iloc);
2055
2056out_err:
2057 ext3_std_error(inode->i_sb, err);
2058out:
Eric Sandeenb8a052d2009-12-14 13:00:30 -06002059 mutex_unlock(&EXT3_SB(inode->i_sb)->s_orphan_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 return err;
2061
2062out_brelse:
2063 brelse(iloc.bh);
2064 goto out_err;
2065}
2066
2067static int ext3_rmdir (struct inode * dir, struct dentry *dentry)
2068{
2069 int retval;
2070 struct inode * inode;
2071 struct buffer_head * bh;
2072 struct ext3_dir_entry_2 * de;
2073 handle_t *handle;
2074
2075 /* Initialize quotas before so that eventual writes go in
2076 * separate transaction */
Christoph Hellwig871a2932010-03-03 09:05:07 -05002077 dquot_initialize(dir);
2078 dquot_initialize(dentry->d_inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002079
Jan Kara1f545872005-06-23 22:01:04 -07002080 handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS(dir->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 if (IS_ERR(handle))
2082 return PTR_ERR(handle);
2083
2084 retval = -ENOENT;
Al Viro734711a2008-08-24 07:26:48 -04002085 bh = ext3_find_entry(dir, &dentry->d_name, &de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 if (!bh)
2087 goto end_rmdir;
2088
2089 if (IS_DIRSYNC(dir))
2090 handle->h_sync = 1;
2091
2092 inode = dentry->d_inode;
2093
2094 retval = -EIO;
2095 if (le32_to_cpu(de->inode) != inode->i_ino)
2096 goto end_rmdir;
2097
2098 retval = -ENOTEMPTY;
2099 if (!empty_dir (inode))
2100 goto end_rmdir;
2101
2102 retval = ext3_delete_entry(handle, dir, de, bh);
2103 if (retval)
2104 goto end_rmdir;
2105 if (inode->i_nlink != 2)
2106 ext3_warning (inode->i_sb, "ext3_rmdir",
2107 "empty directory has nlink!=2 (%d)",
2108 inode->i_nlink);
2109 inode->i_version++;
Dave Hansence71ec32006-09-30 23:29:06 -07002110 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 /* There's no need to set i_disksize: the fact that i_nlink is
2112 * zero will ensure that the right thing happens during any
2113 * recovery. */
2114 inode->i_size = 0;
2115 ext3_orphan_add(handle, inode);
2116 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
2117 ext3_mark_inode_dirty(handle, inode);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002118 drop_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 ext3_update_dx_flag(dir);
2120 ext3_mark_inode_dirty(handle, dir);
2121
2122end_rmdir:
2123 ext3_journal_stop(handle);
2124 brelse (bh);
2125 return retval;
2126}
2127
2128static int ext3_unlink(struct inode * dir, struct dentry *dentry)
2129{
2130 int retval;
2131 struct inode * inode;
2132 struct buffer_head * bh;
2133 struct ext3_dir_entry_2 * de;
2134 handle_t *handle;
2135
2136 /* Initialize quotas before so that eventual writes go
2137 * in separate transaction */
Christoph Hellwig871a2932010-03-03 09:05:07 -05002138 dquot_initialize(dir);
2139 dquot_initialize(dentry->d_inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002140
Jan Kara1f545872005-06-23 22:01:04 -07002141 handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS(dir->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 if (IS_ERR(handle))
2143 return PTR_ERR(handle);
2144
2145 if (IS_DIRSYNC(dir))
2146 handle->h_sync = 1;
2147
2148 retval = -ENOENT;
Al Viro734711a2008-08-24 07:26:48 -04002149 bh = ext3_find_entry(dir, &dentry->d_name, &de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 if (!bh)
2151 goto end_unlink;
2152
2153 inode = dentry->d_inode;
2154
2155 retval = -EIO;
2156 if (le32_to_cpu(de->inode) != inode->i_ino)
2157 goto end_unlink;
2158
2159 if (!inode->i_nlink) {
2160 ext3_warning (inode->i_sb, "ext3_unlink",
2161 "Deleting nonexistent file (%lu), %d",
2162 inode->i_ino, inode->i_nlink);
2163 inode->i_nlink = 1;
2164 }
2165 retval = ext3_delete_entry(handle, dir, de, bh);
2166 if (retval)
2167 goto end_unlink;
2168 dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
2169 ext3_update_dx_flag(dir);
2170 ext3_mark_inode_dirty(handle, dir);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002171 drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 if (!inode->i_nlink)
2173 ext3_orphan_add(handle, inode);
2174 inode->i_ctime = dir->i_ctime;
2175 ext3_mark_inode_dirty(handle, inode);
2176 retval = 0;
2177
2178end_unlink:
2179 ext3_journal_stop(handle);
2180 brelse (bh);
2181 return retval;
2182}
2183
2184static int ext3_symlink (struct inode * dir,
2185 struct dentry *dentry, const char * symname)
2186{
2187 handle_t *handle;
2188 struct inode * inode;
2189 int l, err, retries = 0;
2190
2191 l = strlen(symname)+1;
2192 if (l > dir->i_sb->s_blocksize)
2193 return -ENAMETOOLONG;
2194
Christoph Hellwig871a2932010-03-03 09:05:07 -05002195 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002196
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197retry:
Jan Kara1f545872005-06-23 22:01:04 -07002198 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
Dave Kleikampe9ad5622006-09-27 01:49:35 -07002199 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 5 +
Dmitry Monakhovc4590012009-12-09 03:05:30 +03002200 EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 if (IS_ERR(handle))
2202 return PTR_ERR(handle);
2203
2204 if (IS_DIRSYNC(dir))
2205 handle->h_sync = 1;
2206
2207 inode = ext3_new_inode (handle, dir, S_IFLNK|S_IRWXUGO);
2208 err = PTR_ERR(inode);
2209 if (IS_ERR(inode))
2210 goto out_stop;
2211
2212 if (l > sizeof (EXT3_I(inode)->i_data)) {
2213 inode->i_op = &ext3_symlink_inode_operations;
2214 ext3_set_aops(inode);
2215 /*
2216 * page_symlink() calls into ext3_prepare/commit_write.
2217 * We have a transaction open. All is sweetness. It also sets
2218 * i_size in generic_commit_write().
2219 */
Nick Piggin54566b22009-01-04 12:00:53 -08002220 err = __page_symlink(inode, symname, l, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 if (err) {
Eric Sandeen731b9a52007-02-10 01:46:16 -08002222 drop_nlink(inode);
Al Viroc38012d2008-12-30 02:02:50 -05002223 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 ext3_mark_inode_dirty(handle, inode);
2225 iput (inode);
2226 goto out_stop;
2227 }
2228 } else {
2229 inode->i_op = &ext3_fast_symlink_inode_operations;
2230 memcpy((char*)&EXT3_I(inode)->i_data,symname,l);
2231 inode->i_size = l-1;
2232 }
2233 EXT3_I(inode)->i_disksize = inode->i_size;
2234 err = ext3_add_nondir(handle, dentry, inode);
2235out_stop:
2236 ext3_journal_stop(handle);
2237 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
2238 goto retry;
2239 return err;
2240}
2241
2242static int ext3_link (struct dentry * old_dentry,
2243 struct inode * dir, struct dentry *dentry)
2244{
2245 handle_t *handle;
2246 struct inode *inode = old_dentry->d_inode;
2247 int err, retries = 0;
2248
2249 if (inode->i_nlink >= EXT3_LINK_MAX)
2250 return -EMLINK;
Christoph Hellwig907f4552010-03-03 09:05:06 -05002251
Christoph Hellwig871a2932010-03-03 09:05:07 -05002252 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002253
Eric Sandeen2988a772007-02-10 01:46:16 -08002254 /*
2255 * Return -ENOENT if we've raced with unlink and i_nlink is 0. Doing
2256 * otherwise has the potential to corrupt the orphan inode list.
2257 */
2258 if (inode->i_nlink == 0)
2259 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
2261retry:
Jan Kara1f545872005-06-23 22:01:04 -07002262 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 EXT3_INDEX_EXTRA_TRANS_BLOCKS);
2264 if (IS_ERR(handle))
2265 return PTR_ERR(handle);
2266
2267 if (IS_DIRSYNC(dir))
2268 handle->h_sync = 1;
2269
2270 inode->i_ctime = CURRENT_TIME_SEC;
Eric Sandeen731b9a52007-02-10 01:46:16 -08002271 inc_nlink(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04002272 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
Al Viroc38012d2008-12-30 02:02:50 -05002274 err = ext3_add_entry(handle, dentry, inode);
2275 if (!err) {
2276 ext3_mark_inode_dirty(handle, inode);
2277 d_instantiate(dentry, inode);
2278 } else {
2279 drop_nlink(inode);
2280 iput(inode);
2281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 ext3_journal_stop(handle);
2283 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
2284 goto retry;
2285 return err;
2286}
2287
2288#define PARENT_INO(buffer) \
Jan Kara7c06a8d2007-11-14 17:00:19 -08002289 (ext3_next_entry((struct ext3_dir_entry_2 *)(buffer))->inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
2291/*
2292 * Anybody can rename anything with this: the permission checks are left to the
2293 * higher-level routines.
2294 */
2295static int ext3_rename (struct inode * old_dir, struct dentry *old_dentry,
2296 struct inode * new_dir,struct dentry *new_dentry)
2297{
2298 handle_t *handle;
2299 struct inode * old_inode, * new_inode;
2300 struct buffer_head * old_bh, * new_bh, * dir_bh;
2301 struct ext3_dir_entry_2 * old_de, * new_de;
Theodore Ts'oe7c8f502009-04-03 01:34:49 -04002302 int retval, flush_file = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
Christoph Hellwig871a2932010-03-03 09:05:07 -05002304 dquot_initialize(old_dir);
2305 dquot_initialize(new_dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002306
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 old_bh = new_bh = dir_bh = NULL;
2308
2309 /* Initialize quotas before so that eventual writes go
2310 * in separate transaction */
2311 if (new_dentry->d_inode)
Christoph Hellwig871a2932010-03-03 09:05:07 -05002312 dquot_initialize(new_dentry->d_inode);
Jan Kara1f545872005-06-23 22:01:04 -07002313 handle = ext3_journal_start(old_dir, 2 *
2314 EXT3_DATA_TRANS_BLOCKS(old_dir->i_sb) +
Dave Kleikampe9ad5622006-09-27 01:49:35 -07002315 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 if (IS_ERR(handle))
2317 return PTR_ERR(handle);
2318
2319 if (IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir))
2320 handle->h_sync = 1;
2321
Al Viro734711a2008-08-24 07:26:48 -04002322 old_bh = ext3_find_entry(old_dir, &old_dentry->d_name, &old_de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 /*
2324 * Check for inode number is _not_ due to possible IO errors.
2325 * We might rmdir the source, keep it as pwd of some process
2326 * and merrily kill the link to whatever was created under the
2327 * same name. Goodbye sticky bit ;-<
2328 */
2329 old_inode = old_dentry->d_inode;
2330 retval = -ENOENT;
2331 if (!old_bh || le32_to_cpu(old_de->inode) != old_inode->i_ino)
2332 goto end_rename;
2333
2334 new_inode = new_dentry->d_inode;
Al Viro734711a2008-08-24 07:26:48 -04002335 new_bh = ext3_find_entry(new_dir, &new_dentry->d_name, &new_de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 if (new_bh) {
2337 if (!new_inode) {
2338 brelse (new_bh);
2339 new_bh = NULL;
2340 }
2341 }
2342 if (S_ISDIR(old_inode->i_mode)) {
2343 if (new_inode) {
2344 retval = -ENOTEMPTY;
2345 if (!empty_dir (new_inode))
2346 goto end_rename;
2347 }
2348 retval = -EIO;
2349 dir_bh = ext3_bread (handle, old_inode, 0, 0, &retval);
2350 if (!dir_bh)
2351 goto end_rename;
2352 if (le32_to_cpu(PARENT_INO(dir_bh->b_data)) != old_dir->i_ino)
2353 goto end_rename;
2354 retval = -EMLINK;
2355 if (!new_inode && new_dir!=old_dir &&
2356 new_dir->i_nlink >= EXT3_LINK_MAX)
2357 goto end_rename;
2358 }
2359 if (!new_bh) {
2360 retval = ext3_add_entry (handle, new_dentry, old_inode);
2361 if (retval)
2362 goto end_rename;
2363 } else {
2364 BUFFER_TRACE(new_bh, "get write access");
2365 ext3_journal_get_write_access(handle, new_bh);
2366 new_de->inode = cpu_to_le32(old_inode->i_ino);
2367 if (EXT3_HAS_INCOMPAT_FEATURE(new_dir->i_sb,
2368 EXT3_FEATURE_INCOMPAT_FILETYPE))
2369 new_de->file_type = old_de->file_type;
2370 new_dir->i_version++;
Jan Kara0b230762008-04-28 02:16:12 -07002371 new_dir->i_ctime = new_dir->i_mtime = CURRENT_TIME_SEC;
2372 ext3_mark_inode_dirty(handle, new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 BUFFER_TRACE(new_bh, "call ext3_journal_dirty_metadata");
2374 ext3_journal_dirty_metadata(handle, new_bh);
2375 brelse(new_bh);
2376 new_bh = NULL;
2377 }
2378
2379 /*
2380 * Like most other Unix systems, set the ctime for inodes on a
2381 * rename.
2382 */
2383 old_inode->i_ctime = CURRENT_TIME_SEC;
2384 ext3_mark_inode_dirty(handle, old_inode);
2385
2386 /*
2387 * ok, that's it
2388 */
2389 if (le32_to_cpu(old_de->inode) != old_inode->i_ino ||
2390 old_de->name_len != old_dentry->d_name.len ||
2391 strncmp(old_de->name, old_dentry->d_name.name, old_de->name_len) ||
2392 (retval = ext3_delete_entry(handle, old_dir,
2393 old_de, old_bh)) == -ENOENT) {
2394 /* old_de could have moved from under us during htree split, so
2395 * make sure that we are deleting the right entry. We might
2396 * also be pointing to a stale entry in the unused part of
2397 * old_bh so just checking inum and the name isn't enough. */
2398 struct buffer_head *old_bh2;
2399 struct ext3_dir_entry_2 *old_de2;
2400
Al Viro734711a2008-08-24 07:26:48 -04002401 old_bh2 = ext3_find_entry(old_dir, &old_dentry->d_name,
2402 &old_de2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 if (old_bh2) {
2404 retval = ext3_delete_entry(handle, old_dir,
2405 old_de2, old_bh2);
2406 brelse(old_bh2);
2407 }
2408 }
2409 if (retval) {
2410 ext3_warning(old_dir->i_sb, "ext3_rename",
2411 "Deleting old file (%lu), %d, error=%d",
2412 old_dir->i_ino, old_dir->i_nlink, retval);
2413 }
2414
2415 if (new_inode) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002416 drop_nlink(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 new_inode->i_ctime = CURRENT_TIME_SEC;
2418 }
2419 old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME_SEC;
2420 ext3_update_dx_flag(old_dir);
2421 if (dir_bh) {
2422 BUFFER_TRACE(dir_bh, "get_write_access");
2423 ext3_journal_get_write_access(handle, dir_bh);
2424 PARENT_INO(dir_bh->b_data) = cpu_to_le32(new_dir->i_ino);
2425 BUFFER_TRACE(dir_bh, "call ext3_journal_dirty_metadata");
2426 ext3_journal_dirty_metadata(handle, dir_bh);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002427 drop_nlink(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 if (new_inode) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002429 drop_nlink(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 } else {
Dave Hansend8c76e62006-09-30 23:29:04 -07002431 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 ext3_update_dx_flag(new_dir);
2433 ext3_mark_inode_dirty(handle, new_dir);
2434 }
2435 }
2436 ext3_mark_inode_dirty(handle, old_dir);
2437 if (new_inode) {
2438 ext3_mark_inode_dirty(handle, new_inode);
2439 if (!new_inode->i_nlink)
2440 ext3_orphan_add(handle, new_inode);
Theodore Ts'oe7c8f502009-04-03 01:34:49 -04002441 if (ext3_should_writeback_data(new_inode))
2442 flush_file = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 }
2444 retval = 0;
2445
2446end_rename:
2447 brelse (dir_bh);
2448 brelse (old_bh);
2449 brelse (new_bh);
2450 ext3_journal_stop(handle);
Theodore Ts'oe7c8f502009-04-03 01:34:49 -04002451 if (retval == 0 && flush_file)
2452 filemap_flush(old_inode->i_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 return retval;
2454}
2455
2456/*
2457 * directories can handle most operations...
2458 */
Arjan van de Ven754661f2007-02-12 00:55:38 -08002459const struct inode_operations ext3_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 .create = ext3_create,
2461 .lookup = ext3_lookup,
2462 .link = ext3_link,
2463 .unlink = ext3_unlink,
2464 .symlink = ext3_symlink,
2465 .mkdir = ext3_mkdir,
2466 .rmdir = ext3_rmdir,
2467 .mknod = ext3_mknod,
2468 .rename = ext3_rename,
2469 .setattr = ext3_setattr,
2470#ifdef CONFIG_EXT3_FS_XATTR
2471 .setxattr = generic_setxattr,
2472 .getxattr = generic_getxattr,
2473 .listxattr = ext3_listxattr,
2474 .removexattr = generic_removexattr,
2475#endif
Linus Torvalds1d5ccd12009-08-28 12:12:24 -07002476 .check_acl = ext3_check_acl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477};
2478
Arjan van de Ven754661f2007-02-12 00:55:38 -08002479const struct inode_operations ext3_special_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 .setattr = ext3_setattr,
2481#ifdef CONFIG_EXT3_FS_XATTR
2482 .setxattr = generic_setxattr,
2483 .getxattr = generic_getxattr,
2484 .listxattr = ext3_listxattr,
2485 .removexattr = generic_removexattr,
2486#endif
Linus Torvalds1d5ccd12009-08-28 12:12:24 -07002487 .check_acl = ext3_check_acl,
Mingming Caoae6ddcc2006-09-27 01:49:27 -07002488};