blob: e8e211795e9f3cf13a34c12e1376efcde034fa54 [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>
Lukas Czerner785c4bc2011-05-23 18:33:01 +020039#include <trace/events/ext3.h>
Ben Dooks381be252005-10-30 15:02:56 -080040
41#include "namei.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "xattr.h"
43#include "acl.h"
44
45/*
46 * define how far ahead to read directories while searching them.
47 */
48#define NAMEI_RA_CHUNKS 2
49#define NAMEI_RA_BLOCKS 4
50#define NAMEI_RA_SIZE (NAMEI_RA_CHUNKS * NAMEI_RA_BLOCKS)
51#define NAMEI_RA_INDEX(c,b) (((c) * NAMEI_RA_BLOCKS) + (b))
52
53static struct buffer_head *ext3_append(handle_t *handle,
54 struct inode *inode,
55 u32 *block, int *err)
56{
57 struct buffer_head *bh;
58
59 *block = inode->i_size >> inode->i_sb->s_blocksize_bits;
60
Akinobu Mita33575f82008-04-28 02:16:08 -070061 bh = ext3_bread(handle, inode, *block, 1, err);
62 if (bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 inode->i_size += inode->i_sb->s_blocksize;
64 EXT3_I(inode)->i_disksize = inode->i_size;
Akinobu Mita33575f82008-04-28 02:16:08 -070065 *err = ext3_journal_get_write_access(handle, bh);
66 if (*err) {
67 brelse(bh);
68 bh = NULL;
69 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 }
71 return bh;
72}
73
74#ifndef assert
75#define assert(test) J_ASSERT(test)
76#endif
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#ifdef DX_DEBUG
79#define dxtrace(command) command
80#else
Mingming Caoae6ddcc2006-09-27 01:49:27 -070081#define dxtrace(command)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#endif
83
84struct fake_dirent
85{
86 __le32 inode;
87 __le16 rec_len;
88 u8 name_len;
89 u8 file_type;
90};
91
92struct dx_countlimit
93{
94 __le16 limit;
95 __le16 count;
96};
97
98struct dx_entry
99{
100 __le32 hash;
101 __le32 block;
102};
103
104/*
105 * dx_root_info is laid out so that if it should somehow get overlaid by a
106 * dirent the two low bits of the hash version will be zero. Therefore, the
107 * hash version mod 4 should never be 0. Sincerely, the paranoia department.
108 */
109
110struct dx_root
111{
112 struct fake_dirent dot;
113 char dot_name[4];
114 struct fake_dirent dotdot;
115 char dotdot_name[4];
116 struct dx_root_info
117 {
118 __le32 reserved_zero;
119 u8 hash_version;
120 u8 info_length; /* 8 */
121 u8 indirect_levels;
122 u8 unused_flags;
123 }
124 info;
125 struct dx_entry entries[0];
126};
127
128struct dx_node
129{
130 struct fake_dirent fake;
131 struct dx_entry entries[0];
132};
133
134
135struct dx_frame
136{
137 struct buffer_head *bh;
138 struct dx_entry *entries;
139 struct dx_entry *at;
140};
141
142struct dx_map_entry
143{
144 u32 hash;
Eric Sandeenef2b02d2007-09-18 22:46:42 -0700145 u16 offs;
146 u16 size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147};
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149static inline unsigned dx_get_block (struct dx_entry *entry);
150static void dx_set_block (struct dx_entry *entry, unsigned value);
151static inline unsigned dx_get_hash (struct dx_entry *entry);
152static void dx_set_hash (struct dx_entry *entry, unsigned value);
153static unsigned dx_get_count (struct dx_entry *entries);
154static unsigned dx_get_limit (struct dx_entry *entries);
155static void dx_set_count (struct dx_entry *entries, unsigned value);
156static void dx_set_limit (struct dx_entry *entries, unsigned value);
157static unsigned dx_root_limit (struct inode *dir, unsigned infosize);
158static unsigned dx_node_limit (struct inode *dir);
Al Viro734711a2008-08-24 07:26:48 -0400159static struct dx_frame *dx_probe(struct qstr *entry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 struct inode *dir,
161 struct dx_hash_info *hinfo,
162 struct dx_frame *frame,
163 int *err);
164static void dx_release (struct dx_frame *frames);
Wei Yongjun45f90212009-04-02 16:57:14 -0700165static int dx_make_map(struct ext3_dir_entry_2 *de, unsigned blocksize,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 struct dx_hash_info *hinfo, struct dx_map_entry map[]);
167static void dx_sort_map(struct dx_map_entry *map, unsigned count);
168static struct ext3_dir_entry_2 *dx_move_dirents (char *from, char *to,
169 struct dx_map_entry *offsets, int count);
Wei Yongjun45f90212009-04-02 16:57:14 -0700170static struct ext3_dir_entry_2 *dx_pack_dirents(char *base, unsigned blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171static void dx_insert_block (struct dx_frame *frame, u32 hash, u32 block);
172static int ext3_htree_next_block(struct inode *dir, __u32 hash,
173 struct dx_frame *frame,
Mingming Caoae6ddcc2006-09-27 01:49:27 -0700174 struct dx_frame *frames,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 __u32 *start_hash);
Al Viro734711a2008-08-24 07:26:48 -0400176static struct buffer_head * ext3_dx_find_entry(struct inode *dir,
177 struct qstr *entry, struct ext3_dir_entry_2 **res_dir,
178 int *err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry,
180 struct inode *inode);
181
182/*
Jan Kara7c06a8d2007-11-14 17:00:19 -0800183 * p is at least 6 bytes before the end of page
184 */
185static inline struct ext3_dir_entry_2 *
186ext3_next_entry(struct ext3_dir_entry_2 *p)
187{
188 return (struct ext3_dir_entry_2 *)((char *)p +
189 ext3_rec_len_from_disk(p->rec_len));
190}
191
192/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 * Future: use high four bits of block for coalesce-on-delete flags
194 * Mask them off for now.
195 */
196
197static inline unsigned dx_get_block (struct dx_entry *entry)
198{
199 return le32_to_cpu(entry->block) & 0x00ffffff;
200}
201
202static inline void dx_set_block (struct dx_entry *entry, unsigned value)
203{
204 entry->block = cpu_to_le32(value);
205}
206
207static inline unsigned dx_get_hash (struct dx_entry *entry)
208{
209 return le32_to_cpu(entry->hash);
210}
211
212static inline void dx_set_hash (struct dx_entry *entry, unsigned value)
213{
214 entry->hash = cpu_to_le32(value);
215}
216
217static inline unsigned dx_get_count (struct dx_entry *entries)
218{
219 return le16_to_cpu(((struct dx_countlimit *) entries)->count);
220}
221
222static inline unsigned dx_get_limit (struct dx_entry *entries)
223{
224 return le16_to_cpu(((struct dx_countlimit *) entries)->limit);
225}
226
227static inline void dx_set_count (struct dx_entry *entries, unsigned value)
228{
229 ((struct dx_countlimit *) entries)->count = cpu_to_le16(value);
230}
231
232static inline void dx_set_limit (struct dx_entry *entries, unsigned value)
233{
234 ((struct dx_countlimit *) entries)->limit = cpu_to_le16(value);
235}
236
237static inline unsigned dx_root_limit (struct inode *dir, unsigned infosize)
238{
239 unsigned entry_space = dir->i_sb->s_blocksize - EXT3_DIR_REC_LEN(1) -
240 EXT3_DIR_REC_LEN(2) - infosize;
Li Zefan8ef27202008-07-25 01:46:29 -0700241 return entry_space / sizeof(struct dx_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
244static inline unsigned dx_node_limit (struct inode *dir)
245{
246 unsigned entry_space = dir->i_sb->s_blocksize - EXT3_DIR_REC_LEN(0);
Li Zefan8ef27202008-07-25 01:46:29 -0700247 return entry_space / sizeof(struct dx_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
250/*
251 * Debug
252 */
253#ifdef DX_DEBUG
254static void dx_show_index (char * label, struct dx_entry *entries)
255{
256 int i, n = dx_get_count (entries);
257 printk("%s index ", label);
258 for (i = 0; i < n; i++)
259 {
260 printk("%x->%u ", i? dx_get_hash(entries + i): 0, dx_get_block(entries + i));
261 }
262 printk("\n");
263}
264
265struct stats
Mingming Caoae6ddcc2006-09-27 01:49:27 -0700266{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 unsigned names;
268 unsigned space;
269 unsigned bcount;
270};
271
272static struct stats dx_show_leaf(struct dx_hash_info *hinfo, struct ext3_dir_entry_2 *de,
273 int size, int show_names)
274{
275 unsigned names = 0, space = 0;
276 char *base = (char *) de;
277 struct dx_hash_info h = *hinfo;
278
279 printk("names: ");
280 while ((char *) de < base + size)
281 {
282 if (de->inode)
283 {
284 if (show_names)
285 {
286 int len = de->name_len;
287 char *name = de->name;
288 while (len--) printk("%c", *name++);
289 ext3fs_dirhash(de->name, de->name_len, &h);
290 printk(":%x.%u ", h.hash,
Bernd Schubertc878c732011-07-20 23:16:33 +0200291 (unsigned) ((char *) de - base));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293 space += EXT3_DIR_REC_LEN(de->name_len);
Dave Kleikampe9ad5622006-09-27 01:49:35 -0700294 names++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 }
Jan Kara7c06a8d2007-11-14 17:00:19 -0800296 de = ext3_next_entry(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
298 printk("(%i)\n", names);
299 return (struct stats) { names, space, 1 };
300}
301
302struct stats dx_show_entries(struct dx_hash_info *hinfo, struct inode *dir,
303 struct dx_entry *entries, int levels)
304{
305 unsigned blocksize = dir->i_sb->s_blocksize;
306 unsigned count = dx_get_count (entries), names = 0, space = 0, i;
307 unsigned bcount = 0;
308 struct buffer_head *bh;
309 int err;
310 printk("%i indexed blocks...\n", count);
311 for (i = 0; i < count; i++, entries++)
312 {
313 u32 block = dx_get_block(entries), hash = i? dx_get_hash(entries): 0;
314 u32 range = i < count - 1? (dx_get_hash(entries + 1) - hash): ~hash;
315 struct stats stats;
316 printk("%s%3u:%03u hash %8x/%8x ",levels?"":" ", i, block, hash, range);
317 if (!(bh = ext3_bread (NULL,dir, block, 0,&err))) continue;
318 stats = levels?
319 dx_show_entries(hinfo, dir, ((struct dx_node *) bh->b_data)->entries, levels - 1):
320 dx_show_leaf(hinfo, (struct ext3_dir_entry_2 *) bh->b_data, blocksize, 0);
321 names += stats.names;
322 space += stats.space;
323 bcount += stats.bcount;
324 brelse (bh);
325 }
326 if (bcount)
327 printk("%snames %u, fullness %u (%u%%)\n", levels?"":" ",
328 names, space/bcount,(space/bcount)*100/blocksize);
329 return (struct stats) { names, space, bcount};
330}
331#endif /* DX_DEBUG */
332
333/*
334 * Probe for a directory leaf block to search.
335 *
336 * dx_probe can return ERR_BAD_DX_DIR, which means there was a format
337 * error in the directory index, and the caller should fall back to
338 * searching the directory normally. The callers of dx_probe **MUST**
339 * check for this error code, and make sure it never gets reflected
340 * back to userspace.
341 */
342static struct dx_frame *
Al Viro734711a2008-08-24 07:26:48 -0400343dx_probe(struct qstr *entry, struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 struct dx_hash_info *hinfo, struct dx_frame *frame_in, int *err)
345{
346 unsigned count, indirect;
347 struct dx_entry *at, *entries, *p, *q, *m;
348 struct dx_root *root;
349 struct buffer_head *bh;
350 struct dx_frame *frame = frame_in;
351 u32 hash;
352
353 frame->bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (!(bh = ext3_bread (NULL,dir, 0, 0, err)))
355 goto fail;
356 root = (struct dx_root *) bh->b_data;
357 if (root->info.hash_version != DX_HASH_TEA &&
358 root->info.hash_version != DX_HASH_HALF_MD4 &&
359 root->info.hash_version != DX_HASH_LEGACY) {
Harvey Harrisone05b6b52008-04-28 02:16:15 -0700360 ext3_warning(dir->i_sb, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 "Unrecognised inode hash code %d",
362 root->info.hash_version);
363 brelse(bh);
364 *err = ERR_BAD_DX_DIR;
365 goto fail;
366 }
367 hinfo->hash_version = root->info.hash_version;
Theodore Ts'o5e1f8c92008-10-28 13:21:55 -0400368 if (hinfo->hash_version <= DX_HASH_TEA)
369 hinfo->hash_version += EXT3_SB(dir->i_sb)->s_hash_unsigned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 hinfo->seed = EXT3_SB(dir->i_sb)->s_hash_seed;
Al Viro734711a2008-08-24 07:26:48 -0400371 if (entry)
372 ext3fs_dirhash(entry->name, entry->len, hinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 hash = hinfo->hash;
374
375 if (root->info.unused_flags & 1) {
Harvey Harrisone05b6b52008-04-28 02:16:15 -0700376 ext3_warning(dir->i_sb, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 "Unimplemented inode hash flags: %#06x",
378 root->info.unused_flags);
379 brelse(bh);
380 *err = ERR_BAD_DX_DIR;
381 goto fail;
382 }
383
384 if ((indirect = root->info.indirect_levels) > 1) {
Harvey Harrisone05b6b52008-04-28 02:16:15 -0700385 ext3_warning(dir->i_sb, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 "Unimplemented inode hash depth: %#06x",
387 root->info.indirect_levels);
388 brelse(bh);
389 *err = ERR_BAD_DX_DIR;
390 goto fail;
391 }
392
393 entries = (struct dx_entry *) (((char *)&root->info) +
394 root->info.info_length);
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700395
396 if (dx_get_limit(entries) != dx_root_limit(dir,
397 root->info.info_length)) {
Harvey Harrisone05b6b52008-04-28 02:16:15 -0700398 ext3_warning(dir->i_sb, __func__,
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700399 "dx entry: limit != root limit");
400 brelse(bh);
401 *err = ERR_BAD_DX_DIR;
402 goto fail;
403 }
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 dxtrace (printk("Look up %x", hash));
406 while (1)
407 {
408 count = dx_get_count(entries);
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700409 if (!count || count > dx_get_limit(entries)) {
Harvey Harrisone05b6b52008-04-28 02:16:15 -0700410 ext3_warning(dir->i_sb, __func__,
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700411 "dx entry: no count or count > limit");
412 brelse(bh);
413 *err = ERR_BAD_DX_DIR;
414 goto fail2;
415 }
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 p = entries + 1;
418 q = entries + count - 1;
419 while (p <= q)
420 {
421 m = p + (q - p)/2;
422 dxtrace(printk("."));
423 if (dx_get_hash(m) > hash)
424 q = m - 1;
425 else
426 p = m + 1;
427 }
428
429 if (0) // linear search cross check
430 {
431 unsigned n = count - 1;
432 at = entries;
433 while (n--)
434 {
435 dxtrace(printk(","));
436 if (dx_get_hash(++at) > hash)
437 {
438 at--;
439 break;
440 }
441 }
442 assert (at == p - 1);
443 }
444
445 at = p - 1;
446 dxtrace(printk(" %x->%u\n", at == entries? 0: dx_get_hash(at), dx_get_block(at)));
447 frame->bh = bh;
448 frame->entries = entries;
449 frame->at = at;
450 if (!indirect--) return frame;
451 if (!(bh = ext3_bread (NULL,dir, dx_get_block(at), 0, err)))
452 goto fail2;
453 at = entries = ((struct dx_node *) bh->b_data)->entries;
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700454 if (dx_get_limit(entries) != dx_node_limit (dir)) {
Harvey Harrisone05b6b52008-04-28 02:16:15 -0700455 ext3_warning(dir->i_sb, __func__,
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700456 "dx entry: limit != node limit");
457 brelse(bh);
458 *err = ERR_BAD_DX_DIR;
459 goto fail2;
460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 frame++;
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700462 frame->bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
464fail2:
465 while (frame >= frame_in) {
466 brelse(frame->bh);
467 frame--;
468 }
469fail:
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700470 if (*err == ERR_BAD_DX_DIR)
Harvey Harrisone05b6b52008-04-28 02:16:15 -0700471 ext3_warning(dir->i_sb, __func__,
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700472 "Corrupt dir inode %ld, running e2fsck is "
473 "recommended.", dir->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return NULL;
475}
476
477static void dx_release (struct dx_frame *frames)
478{
479 if (frames[0].bh == NULL)
480 return;
481
482 if (((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels)
483 brelse(frames[1].bh);
484 brelse(frames[0].bh);
485}
486
487/*
488 * This function increments the frame pointer to search the next leaf
489 * block, and reads in the necessary intervening nodes if the search
490 * should be necessary. Whether or not the search is necessary is
491 * controlled by the hash parameter. If the hash value is even, then
492 * the search is only continued if the next block starts with that
493 * hash value. This is used if we are searching for a specific file.
494 *
495 * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
496 *
497 * This function returns 1 if the caller should continue to search,
498 * or 0 if it should not. If there is an error reading one of the
499 * index blocks, it will a negative error code.
500 *
501 * If start_hash is non-null, it will be filled in with the starting
502 * hash of the next page.
503 */
504static int ext3_htree_next_block(struct inode *dir, __u32 hash,
505 struct dx_frame *frame,
Mingming Caoae6ddcc2006-09-27 01:49:27 -0700506 struct dx_frame *frames,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 __u32 *start_hash)
508{
509 struct dx_frame *p;
510 struct buffer_head *bh;
511 int err, num_frames = 0;
512 __u32 bhash;
513
514 p = frame;
515 /*
516 * Find the next leaf page by incrementing the frame pointer.
517 * If we run out of entries in the interior node, loop around and
518 * increment pointer in the parent node. When we break out of
519 * this loop, num_frames indicates the number of interior
520 * nodes need to be read.
521 */
522 while (1) {
523 if (++(p->at) < p->entries + dx_get_count(p->entries))
524 break;
525 if (p == frames)
526 return 0;
527 num_frames++;
528 p--;
529 }
530
531 /*
532 * If the hash is 1, then continue only if the next page has a
533 * continuation hash of any value. This is used for readdir
534 * handling. Otherwise, check to see if the hash matches the
535 * desired contiuation hash. If it doesn't, return since
536 * there's no point to read in the successive index pages.
537 */
538 bhash = dx_get_hash(p->at);
539 if (start_hash)
540 *start_hash = bhash;
541 if ((hash & 1) == 0) {
542 if ((bhash & ~1) != hash)
543 return 0;
544 }
545 /*
546 * If the hash is HASH_NB_ALWAYS, we always go to the next
547 * block so no check is necessary
548 */
549 while (num_frames--) {
550 if (!(bh = ext3_bread(NULL, dir, dx_get_block(p->at),
551 0, &err)))
552 return err; /* Failure */
553 p++;
554 brelse (p->bh);
555 p->bh = bh;
556 p->at = p->entries = ((struct dx_node *) bh->b_data)->entries;
557 }
558 return 1;
559}
560
561
562/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 * This function fills a red-black tree with information from a
564 * directory block. It returns the number directory entries loaded
565 * into the tree. If there is an error it is returned in err.
566 */
567static int htree_dirblock_to_tree(struct file *dir_file,
568 struct inode *dir, int block,
569 struct dx_hash_info *hinfo,
570 __u32 start_hash, __u32 start_minor_hash)
571{
572 struct buffer_head *bh;
573 struct ext3_dir_entry_2 *de, *top;
574 int err, count = 0;
575
576 dxtrace(printk("In htree dirblock_to_tree: block %d\n", block));
577 if (!(bh = ext3_bread (NULL, dir, block, 0, &err)))
578 return err;
579
580 de = (struct ext3_dir_entry_2 *) bh->b_data;
581 top = (struct ext3_dir_entry_2 *) ((char *) de +
582 dir->i_sb->s_blocksize -
583 EXT3_DIR_REC_LEN(0));
584 for (; de < top; de = ext3_next_entry(de)) {
Eric Sandeen40b85132006-12-06 20:36:26 -0800585 if (!ext3_check_dir_entry("htree_dirblock_to_tree", dir, de, bh,
586 (block<<EXT3_BLOCK_SIZE_BITS(dir->i_sb))
587 +((char *)de - bh->b_data))) {
588 /* On error, skip the f_pos to the next block. */
589 dir_file->f_pos = (dir_file->f_pos |
590 (dir->i_sb->s_blocksize - 1)) + 1;
591 brelse (bh);
592 return count;
593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 ext3fs_dirhash(de->name, de->name_len, hinfo);
595 if ((hinfo->hash < start_hash) ||
596 ((hinfo->hash == start_hash) &&
597 (hinfo->minor_hash < start_minor_hash)))
598 continue;
599 if (de->inode == 0)
600 continue;
601 if ((err = ext3_htree_store_dirent(dir_file,
602 hinfo->hash, hinfo->minor_hash, de)) != 0) {
603 brelse(bh);
604 return err;
605 }
606 count++;
607 }
608 brelse(bh);
609 return count;
610}
611
612
613/*
614 * This function fills a red-black tree with information from a
615 * directory. We start scanning the directory in hash order, starting
616 * at start_hash and start_minor_hash.
617 *
618 * This function returns the number of entries inserted into the tree,
619 * or a negative error code.
620 */
621int ext3_htree_fill_tree(struct file *dir_file, __u32 start_hash,
622 __u32 start_minor_hash, __u32 *next_hash)
623{
624 struct dx_hash_info hinfo;
625 struct ext3_dir_entry_2 *de;
626 struct dx_frame frames[2], *frame;
627 struct inode *dir;
628 int block, err;
629 int count = 0;
630 int ret;
631 __u32 hashval;
632
633 dxtrace(printk("In htree_fill_tree, start hash: %x:%x\n", start_hash,
634 start_minor_hash));
Josef "Jeff" Sipekfe21a692006-12-08 02:36:38 -0800635 dir = dir_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 if (!(EXT3_I(dir)->i_flags & EXT3_INDEX_FL)) {
637 hinfo.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version;
Theodore Ts'o5e1f8c92008-10-28 13:21:55 -0400638 if (hinfo.hash_version <= DX_HASH_TEA)
639 hinfo.hash_version +=
640 EXT3_SB(dir->i_sb)->s_hash_unsigned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 hinfo.seed = EXT3_SB(dir->i_sb)->s_hash_seed;
642 count = htree_dirblock_to_tree(dir_file, dir, 0, &hinfo,
643 start_hash, start_minor_hash);
644 *next_hash = ~0;
645 return count;
646 }
647 hinfo.hash = start_hash;
648 hinfo.minor_hash = 0;
Josef "Jeff" Sipekfe21a692006-12-08 02:36:38 -0800649 frame = dx_probe(NULL, dir_file->f_path.dentry->d_inode, &hinfo, frames, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if (!frame)
651 return err;
652
653 /* Add '.' and '..' from the htree header */
654 if (!start_hash && !start_minor_hash) {
655 de = (struct ext3_dir_entry_2 *) frames[0].bh->b_data;
656 if ((err = ext3_htree_store_dirent(dir_file, 0, 0, de)) != 0)
657 goto errout;
658 count++;
659 }
660 if (start_hash < 2 || (start_hash ==2 && start_minor_hash==0)) {
661 de = (struct ext3_dir_entry_2 *) frames[0].bh->b_data;
662 de = ext3_next_entry(de);
663 if ((err = ext3_htree_store_dirent(dir_file, 2, 0, de)) != 0)
664 goto errout;
665 count++;
666 }
667
668 while (1) {
669 block = dx_get_block(frame->at);
670 ret = htree_dirblock_to_tree(dir_file, dir, block, &hinfo,
671 start_hash, start_minor_hash);
672 if (ret < 0) {
673 err = ret;
674 goto errout;
675 }
676 count += ret;
677 hashval = ~0;
Mingming Caoae6ddcc2006-09-27 01:49:27 -0700678 ret = ext3_htree_next_block(dir, HASH_NB_ALWAYS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 frame, frames, &hashval);
680 *next_hash = hashval;
681 if (ret < 0) {
682 err = ret;
683 goto errout;
684 }
685 /*
686 * Stop if: (a) there are no more entries, or
687 * (b) we have inserted at least one entry and the
688 * next hash value is not a continuation
689 */
690 if ((ret == 0) ||
691 (count && ((hashval & 1) == 0)))
692 break;
693 }
694 dx_release(frames);
Mingming Caoae6ddcc2006-09-27 01:49:27 -0700695 dxtrace(printk("Fill tree: returned %d entries, next hash: %x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 count, *next_hash));
697 return count;
698errout:
699 dx_release(frames);
700 return (err);
701}
702
703
704/*
705 * Directory block splitting, compacting
706 */
707
Eric Sandeenef2b02d2007-09-18 22:46:42 -0700708/*
709 * Create map of hash values, offsets, and sizes, stored at end of block.
710 * Returns number of entries mapped.
711 */
Wei Yongjun45f90212009-04-02 16:57:14 -0700712static int dx_make_map(struct ext3_dir_entry_2 *de, unsigned blocksize,
713 struct dx_hash_info *hinfo, struct dx_map_entry *map_tail)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
715 int count = 0;
716 char *base = (char *) de;
717 struct dx_hash_info h = *hinfo;
718
Wei Yongjun45f90212009-04-02 16:57:14 -0700719 while ((char *) de < base + blocksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 {
721 if (de->name_len && de->inode) {
722 ext3fs_dirhash(de->name, de->name_len, &h);
723 map_tail--;
724 map_tail->hash = h.hash;
Eric Sandeenef2b02d2007-09-18 22:46:42 -0700725 map_tail->offs = (u16) ((char *) de - base);
726 map_tail->size = le16_to_cpu(de->rec_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 count++;
728 cond_resched();
729 }
730 /* XXX: do we need to check rec_len == 0 case? -Chris */
Jan Kara7c06a8d2007-11-14 17:00:19 -0800731 de = ext3_next_entry(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 }
733 return count;
734}
735
Eric Sandeenef2b02d2007-09-18 22:46:42 -0700736/* Sort map by hash value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737static void dx_sort_map (struct dx_map_entry *map, unsigned count)
738{
739 struct dx_map_entry *p, *q, *top = map + count - 1;
740 int more;
741 /* Combsort until bubble sort doesn't suck */
742 while (count > 2)
743 {
744 count = count*10/13;
745 if (count - 9 < 2) /* 9, 10 -> 11 */
746 count = 11;
747 for (p = top, q = p - count; q >= map; p--, q--)
748 if (p->hash < q->hash)
749 swap(*p, *q);
750 }
751 /* Garden variety bubble sort */
752 do {
753 more = 0;
754 q = top;
755 while (q-- > map)
756 {
757 if (q[1].hash >= q[0].hash)
758 continue;
759 swap(*(q+1), *q);
760 more = 1;
761 }
762 } while(more);
763}
764
765static void dx_insert_block(struct dx_frame *frame, u32 hash, u32 block)
766{
767 struct dx_entry *entries = frame->entries;
768 struct dx_entry *old = frame->at, *new = old + 1;
769 int count = dx_get_count(entries);
770
771 assert(count < dx_get_limit(entries));
772 assert(old < entries + count);
773 memmove(new + 1, new, (char *)(entries + count) - (char *)(new));
774 dx_set_hash(new, hash);
775 dx_set_block(new, block);
776 dx_set_count(entries, count + 1);
777}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779static void ext3_update_dx_flag(struct inode *inode)
780{
781 if (!EXT3_HAS_COMPAT_FEATURE(inode->i_sb,
782 EXT3_FEATURE_COMPAT_DIR_INDEX))
783 EXT3_I(inode)->i_flags &= ~EXT3_INDEX_FL;
784}
785
786/*
787 * NOTE! unlike strncmp, ext3_match returns 1 for success, 0 for failure.
788 *
789 * `len <= EXT3_NAME_LEN' is guaranteed by caller.
790 * `de != NULL' is guaranteed by caller.
791 */
792static inline int ext3_match (int len, const char * const name,
793 struct ext3_dir_entry_2 * de)
794{
795 if (len != de->name_len)
796 return 0;
797 if (!de->inode)
798 return 0;
799 return !memcmp(name, de->name, len);
800}
801
802/*
803 * Returns 0 if not found, -1 on failure, and 1 on success
804 */
805static inline int search_dirblock(struct buffer_head * bh,
806 struct inode *dir,
Al Viro734711a2008-08-24 07:26:48 -0400807 struct qstr *child,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 unsigned long offset,
809 struct ext3_dir_entry_2 ** res_dir)
810{
811 struct ext3_dir_entry_2 * de;
812 char * dlimit;
813 int de_len;
Al Viro734711a2008-08-24 07:26:48 -0400814 const char *name = child->name;
815 int namelen = child->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 de = (struct ext3_dir_entry_2 *) bh->b_data;
818 dlimit = bh->b_data + dir->i_sb->s_blocksize;
819 while ((char *) de < dlimit) {
820 /* this code is executed quadratically often */
821 /* do minimal checking `by hand' */
822
823 if ((char *) de + namelen <= dlimit &&
824 ext3_match (namelen, name, de)) {
825 /* found a match - just to be sure, do a full check */
826 if (!ext3_check_dir_entry("ext3_find_entry",
827 dir, de, bh, offset))
828 return -1;
829 *res_dir = de;
830 return 1;
831 }
832 /* prevent looping on a bad block */
Jan Kara7c06a8d2007-11-14 17:00:19 -0800833 de_len = ext3_rec_len_from_disk(de->rec_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 if (de_len <= 0)
835 return -1;
836 offset += de_len;
837 de = (struct ext3_dir_entry_2 *) ((char *) de + de_len);
838 }
839 return 0;
840}
841
842
843/*
844 * ext3_find_entry()
845 *
846 * finds an entry in the specified directory with the wanted name. It
847 * returns the cache buffer in which the entry was found, and the entry
848 * itself (as a parameter - res_dir). It does NOT read the inode of the
849 * entry - you'll have to do that yourself if you want to.
850 *
851 * The returned buffer_head has ->b_count elevated. The caller is expected
852 * to brelse() it when appropriate.
853 */
Al Viro734711a2008-08-24 07:26:48 -0400854static struct buffer_head *ext3_find_entry(struct inode *dir,
855 struct qstr *entry,
856 struct ext3_dir_entry_2 **res_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
858 struct super_block * sb;
859 struct buffer_head * bh_use[NAMEI_RA_SIZE];
860 struct buffer_head * bh, *ret = NULL;
861 unsigned long start, block, b;
Theodore Ts'of0cad892010-10-16 19:36:59 -0400862 const u8 *name = entry->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 int ra_max = 0; /* Number of bh's in the readahead
864 buffer, bh_use[] */
865 int ra_ptr = 0; /* Current index into readahead
866 buffer */
867 int num = 0;
868 int nblocks, i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 int namelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 *res_dir = NULL;
872 sb = dir->i_sb;
Al Viro734711a2008-08-24 07:26:48 -0400873 namelen = entry->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 if (namelen > EXT3_NAME_LEN)
875 return NULL;
Theodore Ts'of0cad892010-10-16 19:36:59 -0400876 if ((namelen <= 2) && (name[0] == '.') &&
877 (name[1] == '.' || name[1] == 0)) {
878 /*
879 * "." or ".." will only be in the first block
880 * NFS may look up ".."; "." should be handled by the VFS
881 */
882 block = start = 0;
883 nblocks = 1;
884 goto restart;
885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 if (is_dx(dir)) {
Al Viro734711a2008-08-24 07:26:48 -0400887 bh = ext3_dx_find_entry(dir, entry, res_dir, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 /*
889 * On success, or if the error was file not found,
890 * return. Otherwise, fall back to doing a search the
891 * old fashioned way.
892 */
893 if (bh || (err != ERR_BAD_DX_DIR))
894 return bh;
895 dxtrace(printk("ext3_find_entry: dx failed, falling back\n"));
896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 nblocks = dir->i_size >> EXT3_BLOCK_SIZE_BITS(sb);
898 start = EXT3_I(dir)->i_dir_start_lookup;
899 if (start >= nblocks)
900 start = 0;
901 block = start;
902restart:
903 do {
904 /*
905 * We deal with the read-ahead logic here.
906 */
907 if (ra_ptr >= ra_max) {
908 /* Refill the readahead buffer */
909 ra_ptr = 0;
910 b = block;
911 for (ra_max = 0; ra_max < NAMEI_RA_SIZE; ra_max++) {
912 /*
913 * Terminate if we reach the end of the
914 * directory and must wrap, or if our
915 * search has finished at this block.
916 */
917 if (b >= nblocks || (num && block == start)) {
918 bh_use[ra_max] = NULL;
919 break;
920 }
921 num++;
922 bh = ext3_getblk(NULL, dir, b++, 0, &err);
923 bh_use[ra_max] = bh;
Zheng Liud03e1292011-12-05 15:55:11 +0800924 if (bh && !bh_uptodate_or_lock(bh)) {
925 get_bh(bh);
926 bh->b_end_io = end_buffer_read_sync;
927 submit_bh(READ | REQ_META | REQ_PRIO,
928 bh);
929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 }
931 }
932 if ((bh = bh_use[ra_ptr++]) == NULL)
933 goto next;
934 wait_on_buffer(bh);
935 if (!buffer_uptodate(bh)) {
936 /* read error, skip block & hope for the best */
Harvey Harrisone05b6b52008-04-28 02:16:15 -0700937 ext3_error(sb, __func__, "reading directory #%lu "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 "offset %lu", dir->i_ino, block);
939 brelse(bh);
940 goto next;
941 }
Al Viro734711a2008-08-24 07:26:48 -0400942 i = search_dirblock(bh, dir, entry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 block << EXT3_BLOCK_SIZE_BITS(sb), res_dir);
944 if (i == 1) {
945 EXT3_I(dir)->i_dir_start_lookup = block;
946 ret = bh;
947 goto cleanup_and_exit;
948 } else {
949 brelse(bh);
950 if (i < 0)
951 goto cleanup_and_exit;
952 }
953 next:
954 if (++block >= nblocks)
955 block = 0;
956 } while (block != start);
957
958 /*
959 * If the directory has grown while we were searching, then
960 * search the last part of the directory before giving up.
961 */
962 block = nblocks;
963 nblocks = dir->i_size >> EXT3_BLOCK_SIZE_BITS(sb);
964 if (block < nblocks) {
965 start = 0;
966 goto restart;
967 }
968
969cleanup_and_exit:
970 /* Clean up the read-ahead blocks */
971 for (; ra_ptr < ra_max; ra_ptr++)
972 brelse (bh_use[ra_ptr]);
973 return ret;
974}
975
Al Viro734711a2008-08-24 07:26:48 -0400976static struct buffer_head * ext3_dx_find_entry(struct inode *dir,
977 struct qstr *entry, struct ext3_dir_entry_2 **res_dir,
978 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979{
Theodore Ts'of0cad892010-10-16 19:36:59 -0400980 struct super_block *sb = dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 struct dx_hash_info hinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 struct dx_frame frames[2], *frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 struct buffer_head *bh;
984 unsigned long block;
985 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Theodore Ts'of0cad892010-10-16 19:36:59 -0400987 if (!(frame = dx_probe(entry, dir, &hinfo, frames, err)))
988 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 do {
990 block = dx_get_block(frame->at);
991 if (!(bh = ext3_bread (NULL,dir, block, 0, err)))
992 goto errout;
Duane Griffin275c0a82008-07-25 01:46:31 -0700993
Theodore Ts'o5026e902010-10-16 19:37:00 -0400994 retval = search_dirblock(bh, dir, entry,
995 block << EXT3_BLOCK_SIZE_BITS(sb),
996 res_dir);
997 if (retval == 1) {
998 dx_release(frames);
999 return bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 }
Theodore Ts'o5026e902010-10-16 19:37:00 -04001001 brelse(bh);
1002 if (retval == -1) {
1003 *err = ERR_BAD_DX_DIR;
1004 goto errout;
1005 }
1006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 /* Check to see if we should continue to search */
Theodore Ts'of0cad892010-10-16 19:36:59 -04001008 retval = ext3_htree_next_block(dir, hinfo.hash, frame,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 frames, NULL);
1010 if (retval < 0) {
Harvey Harrisone05b6b52008-04-28 02:16:15 -07001011 ext3_warning(sb, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 "error reading index page in directory #%lu",
1013 dir->i_ino);
1014 *err = retval;
1015 goto errout;
1016 }
1017 } while (retval == 1);
1018
1019 *err = -ENOENT;
1020errout:
Bernd Schubertc878c732011-07-20 23:16:33 +02001021 dxtrace(printk("%s not found\n", entry->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 dx_release (frames);
1023 return NULL;
1024}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026static struct dentry *ext3_lookup(struct inode * dir, struct dentry *dentry, struct nameidata *nd)
1027{
1028 struct inode * inode;
1029 struct ext3_dir_entry_2 * de;
1030 struct buffer_head * bh;
1031
1032 if (dentry->d_name.len > EXT3_NAME_LEN)
1033 return ERR_PTR(-ENAMETOOLONG);
1034
Al Viro734711a2008-08-24 07:26:48 -04001035 bh = ext3_find_entry(dir, &dentry->d_name, &de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 inode = NULL;
1037 if (bh) {
1038 unsigned long ino = le32_to_cpu(de->inode);
1039 brelse (bh);
Neil Brown2ccb48e2006-07-30 03:03:01 -07001040 if (!ext3_valid_inum(dir->i_sb, ino)) {
1041 ext3_error(dir->i_sb, "ext3_lookup",
1042 "bad inode number: %lu", ino);
David Howells473043d2008-02-07 00:15:36 -08001043 return ERR_PTR(-EIO);
Vasily Averina6c15c22007-07-15 23:40:46 -07001044 }
David Howells473043d2008-02-07 00:15:36 -08001045 inode = ext3_iget(dir->i_sb, ino);
Al Viroa9049372011-07-08 21:20:11 -04001046 if (inode == ERR_PTR(-ESTALE)) {
1047 ext3_error(dir->i_sb, __func__,
1048 "deleted inode referenced: %lu",
1049 ino);
1050 return ERR_PTR(-EIO);
Bryan Donlande18f3b2009-04-02 16:57:15 -07001051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 }
Pekka Enbergba7fe362006-01-14 13:21:08 -08001053 return d_splice_alias(inode, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054}
1055
1056
1057struct dentry *ext3_get_parent(struct dentry *child)
1058{
1059 unsigned long ino;
Al Viro734711a2008-08-24 07:26:48 -04001060 struct qstr dotdot = {.name = "..", .len = 2};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 struct ext3_dir_entry_2 * de;
1062 struct buffer_head *bh;
1063
Al Viro734711a2008-08-24 07:26:48 -04001064 bh = ext3_find_entry(child->d_inode, &dotdot, &de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 if (!bh)
1066 return ERR_PTR(-ENOENT);
1067 ino = le32_to_cpu(de->inode);
1068 brelse(bh);
Neil Brown2ccb48e2006-07-30 03:03:01 -07001069
1070 if (!ext3_valid_inum(child->d_inode->i_sb, ino)) {
1071 ext3_error(child->d_inode->i_sb, "ext3_get_parent",
1072 "bad inode number: %lu", ino);
David Howells473043d2008-02-07 00:15:36 -08001073 return ERR_PTR(-EIO);
Vasily Averina6c15c22007-07-15 23:40:46 -07001074 }
1075
Christoph Hellwig44003722008-08-11 15:49:04 +02001076 return d_obtain_alias(ext3_iget(child->d_inode->i_sb, ino));
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001077}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
1079#define S_SHIFT 12
1080static unsigned char ext3_type_by_mode[S_IFMT >> S_SHIFT] = {
1081 [S_IFREG >> S_SHIFT] = EXT3_FT_REG_FILE,
1082 [S_IFDIR >> S_SHIFT] = EXT3_FT_DIR,
1083 [S_IFCHR >> S_SHIFT] = EXT3_FT_CHRDEV,
1084 [S_IFBLK >> S_SHIFT] = EXT3_FT_BLKDEV,
1085 [S_IFIFO >> S_SHIFT] = EXT3_FT_FIFO,
1086 [S_IFSOCK >> S_SHIFT] = EXT3_FT_SOCK,
1087 [S_IFLNK >> S_SHIFT] = EXT3_FT_SYMLINK,
1088};
1089
1090static inline void ext3_set_de_type(struct super_block *sb,
1091 struct ext3_dir_entry_2 *de,
1092 umode_t mode) {
1093 if (EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_FILETYPE))
1094 de->file_type = ext3_type_by_mode[(mode & S_IFMT)>>S_SHIFT];
1095}
1096
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001097/*
1098 * Move count entries from end of map between two memory locations.
1099 * Returns pointer to last entry moved.
1100 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101static struct ext3_dir_entry_2 *
1102dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count)
1103{
1104 unsigned rec_len = 0;
1105
1106 while (count--) {
1107 struct ext3_dir_entry_2 *de = (struct ext3_dir_entry_2 *) (from + map->offs);
1108 rec_len = EXT3_DIR_REC_LEN(de->name_len);
1109 memcpy (to, de, rec_len);
1110 ((struct ext3_dir_entry_2 *) to)->rec_len =
Jan Kara7c06a8d2007-11-14 17:00:19 -08001111 ext3_rec_len_to_disk(rec_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 de->inode = 0;
1113 map++;
1114 to += rec_len;
1115 }
1116 return (struct ext3_dir_entry_2 *) (to - rec_len);
1117}
1118
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001119/*
1120 * Compact each dir entry in the range to the minimal rec_len.
1121 * Returns pointer to last entry in range.
1122 */
Wei Yongjun45f90212009-04-02 16:57:14 -07001123static struct ext3_dir_entry_2 *dx_pack_dirents(char *base, unsigned blocksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124{
Wei Yongjun45f90212009-04-02 16:57:14 -07001125 struct ext3_dir_entry_2 *next, *to, *prev;
1126 struct ext3_dir_entry_2 *de = (struct ext3_dir_entry_2 *)base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 unsigned rec_len = 0;
1128
1129 prev = to = de;
Wei Yongjun45f90212009-04-02 16:57:14 -07001130 while ((char *)de < base + blocksize) {
Jan Kara7c06a8d2007-11-14 17:00:19 -08001131 next = ext3_next_entry(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 if (de->inode && de->name_len) {
1133 rec_len = EXT3_DIR_REC_LEN(de->name_len);
1134 if (de > to)
1135 memmove(to, de, rec_len);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001136 to->rec_len = ext3_rec_len_to_disk(rec_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 prev = to;
1138 to = (struct ext3_dir_entry_2 *) (((char *) to) + rec_len);
1139 }
1140 de = next;
1141 }
1142 return prev;
1143}
1144
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001145/*
1146 * Split a full leaf block to make room for a new dir entry.
1147 * Allocate a new block, and move entries so that they are approx. equally full.
1148 * Returns pointer to de in block into which the new entry will be inserted.
1149 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150static struct ext3_dir_entry_2 *do_split(handle_t *handle, struct inode *dir,
1151 struct buffer_head **bh,struct dx_frame *frame,
1152 struct dx_hash_info *hinfo, int *error)
1153{
1154 unsigned blocksize = dir->i_sb->s_blocksize;
1155 unsigned count, continued;
1156 struct buffer_head *bh2;
1157 u32 newblock;
1158 u32 hash2;
1159 struct dx_map_entry *map;
1160 char *data1 = (*bh)->b_data, *data2;
Theodore Ts'o59e315b2008-12-06 16:58:39 -05001161 unsigned split, move, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 struct ext3_dir_entry_2 *de = NULL, *de2;
Theodore Ts'o59e315b2008-12-06 16:58:39 -05001163 int err = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001165 bh2 = ext3_append (handle, dir, &newblock, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 if (!(bh2)) {
1167 brelse(*bh);
1168 *bh = NULL;
1169 goto errout;
1170 }
1171
1172 BUFFER_TRACE(*bh, "get_write_access");
1173 err = ext3_journal_get_write_access(handle, *bh);
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001174 if (err)
1175 goto journal_error;
1176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 BUFFER_TRACE(frame->bh, "get_write_access");
1178 err = ext3_journal_get_write_access(handle, frame->bh);
1179 if (err)
1180 goto journal_error;
1181
1182 data2 = bh2->b_data;
1183
1184 /* create map in the end of data2 block */
1185 map = (struct dx_map_entry *) (data2 + blocksize);
1186 count = dx_make_map ((struct ext3_dir_entry_2 *) data1,
1187 blocksize, hinfo, map);
1188 map -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 dx_sort_map (map, count);
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001190 /* Split the existing block in the middle, size-wise */
1191 size = 0;
1192 move = 0;
1193 for (i = count-1; i >= 0; i--) {
1194 /* is more than half of this entry in 2nd half of the block? */
1195 if (size + map[i].size/2 > blocksize/2)
1196 break;
1197 size += map[i].size;
1198 move++;
1199 }
1200 /* map index at which we will split */
1201 split = count - move;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 hash2 = map[split].hash;
1203 continued = hash2 == map[split - 1].hash;
1204 dxtrace(printk("Split block %i at %x, %i/%i\n",
1205 dx_get_block(frame->at), hash2, split, count-split));
1206
1207 /* Fancy dance to stay within two buffers */
1208 de2 = dx_move_dirents(data1, data2, map + split, count - split);
1209 de = dx_pack_dirents(data1,blocksize);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001210 de->rec_len = ext3_rec_len_to_disk(data1 + blocksize - (char *) de);
1211 de2->rec_len = ext3_rec_len_to_disk(data2 + blocksize - (char *) de2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data1, blocksize, 1));
1213 dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data2, blocksize, 1));
1214
1215 /* Which block gets the new entry? */
1216 if (hinfo->hash >= hash2)
1217 {
1218 swap(*bh, bh2);
1219 de = de2;
1220 }
1221 dx_insert_block (frame, hash2 + continued, newblock);
1222 err = ext3_journal_dirty_metadata (handle, bh2);
1223 if (err)
1224 goto journal_error;
1225 err = ext3_journal_dirty_metadata (handle, frame->bh);
1226 if (err)
1227 goto journal_error;
1228 brelse (bh2);
1229 dxtrace(dx_show_index ("frame", frame->entries));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 return de;
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001231
1232journal_error:
1233 brelse(*bh);
1234 brelse(bh2);
1235 *bh = NULL;
1236 ext3_std_error(dir->i_sb, err);
1237errout:
1238 *error = err;
1239 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
1242
1243/*
1244 * Add a new entry into a directory (leaf) block. If de is non-NULL,
1245 * it points to a directory entry which is guaranteed to be large
1246 * enough for new directory entry. If de is NULL, then
1247 * add_dirent_to_buf will attempt search the directory block for
1248 * space. It will return -ENOSPC if no space is available, and -EIO
1249 * and -EEXIST if directory entry already exists.
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001250 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 * NOTE! bh is NOT released in the case where ENOSPC is returned. In
1252 * all other cases bh is released.
1253 */
1254static int add_dirent_to_buf(handle_t *handle, struct dentry *dentry,
1255 struct inode *inode, struct ext3_dir_entry_2 *de,
1256 struct buffer_head * bh)
1257{
1258 struct inode *dir = dentry->d_parent->d_inode;
1259 const char *name = dentry->d_name.name;
1260 int namelen = dentry->d_name.len;
1261 unsigned long offset = 0;
1262 unsigned short reclen;
1263 int nlen, rlen, err;
1264 char *top;
1265
1266 reclen = EXT3_DIR_REC_LEN(namelen);
1267 if (!de) {
1268 de = (struct ext3_dir_entry_2 *)bh->b_data;
1269 top = bh->b_data + dir->i_sb->s_blocksize - reclen;
1270 while ((char *) de <= top) {
1271 if (!ext3_check_dir_entry("ext3_add_entry", dir, de,
1272 bh, offset)) {
1273 brelse (bh);
1274 return -EIO;
1275 }
1276 if (ext3_match (namelen, name, de)) {
1277 brelse (bh);
1278 return -EEXIST;
1279 }
1280 nlen = EXT3_DIR_REC_LEN(de->name_len);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001281 rlen = ext3_rec_len_from_disk(de->rec_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 if ((de->inode? rlen - nlen: rlen) >= reclen)
1283 break;
1284 de = (struct ext3_dir_entry_2 *)((char *)de + rlen);
1285 offset += rlen;
1286 }
1287 if ((char *) de > top)
1288 return -ENOSPC;
1289 }
1290 BUFFER_TRACE(bh, "get_write_access");
1291 err = ext3_journal_get_write_access(handle, bh);
1292 if (err) {
1293 ext3_std_error(dir->i_sb, err);
1294 brelse(bh);
1295 return err;
1296 }
1297
1298 /* By now the buffer is marked for journaling */
1299 nlen = EXT3_DIR_REC_LEN(de->name_len);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001300 rlen = ext3_rec_len_from_disk(de->rec_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 if (de->inode) {
1302 struct ext3_dir_entry_2 *de1 = (struct ext3_dir_entry_2 *)((char *)de + nlen);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001303 de1->rec_len = ext3_rec_len_to_disk(rlen - nlen);
1304 de->rec_len = ext3_rec_len_to_disk(nlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 de = de1;
1306 }
1307 de->file_type = EXT3_FT_UNKNOWN;
1308 if (inode) {
1309 de->inode = cpu_to_le32(inode->i_ino);
1310 ext3_set_de_type(dir->i_sb, de, inode->i_mode);
1311 } else
1312 de->inode = 0;
1313 de->name_len = namelen;
1314 memcpy (de->name, name, namelen);
1315 /*
1316 * XXX shouldn't update any times until successful
1317 * completion of syscall, but too many callers depend
1318 * on this.
1319 *
1320 * XXX similarly, too many callers depend on
1321 * ext3_new_inode() setting the times, but error
1322 * recovery deletes the inode, so the worst that can
1323 * happen is that the times are slightly out of date
1324 * and/or different from the directory change time.
1325 */
1326 dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC;
1327 ext3_update_dx_flag(dir);
1328 dir->i_version++;
1329 ext3_mark_inode_dirty(handle, dir);
1330 BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
1331 err = ext3_journal_dirty_metadata(handle, bh);
1332 if (err)
1333 ext3_std_error(dir->i_sb, err);
1334 brelse(bh);
1335 return 0;
1336}
1337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338/*
1339 * This converts a one block unindexed directory to a 3 block indexed
1340 * directory, and adds the dentry to the indexed directory.
1341 */
1342static int make_indexed_dir(handle_t *handle, struct dentry *dentry,
1343 struct inode *inode, struct buffer_head *bh)
1344{
1345 struct inode *dir = dentry->d_parent->d_inode;
1346 const char *name = dentry->d_name.name;
1347 int namelen = dentry->d_name.len;
1348 struct buffer_head *bh2;
1349 struct dx_root *root;
1350 struct dx_frame frames[2], *frame;
1351 struct dx_entry *entries;
1352 struct ext3_dir_entry_2 *de, *de2;
1353 char *data1, *top;
1354 unsigned len;
1355 int retval;
1356 unsigned blocksize;
1357 struct dx_hash_info hinfo;
1358 u32 block;
1359 struct fake_dirent *fde;
1360
1361 blocksize = dir->i_sb->s_blocksize;
Theodore Ts'oa21102b2009-01-16 11:13:47 -05001362 dxtrace(printk(KERN_DEBUG "Creating index: inode %lu\n", dir->i_ino));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 retval = ext3_journal_get_write_access(handle, bh);
1364 if (retval) {
1365 ext3_std_error(dir->i_sb, retval);
1366 brelse(bh);
1367 return retval;
1368 }
1369 root = (struct dx_root *) bh->b_data;
1370
Theodore Ts'oa21102b2009-01-16 11:13:47 -05001371 /* The 0th block becomes the root, move the dirents out */
1372 fde = &root->dotdot;
1373 de = (struct ext3_dir_entry_2 *)((char *)fde +
1374 ext3_rec_len_from_disk(fde->rec_len));
1375 if ((char *) de >= (((char *) root) + blocksize)) {
1376 ext3_error(dir->i_sb, __func__,
1377 "invalid rec_len for '..' in inode %lu",
1378 dir->i_ino);
1379 brelse(bh);
1380 return -EIO;
1381 }
1382 len = ((char *) root) + blocksize - (char *) de;
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 bh2 = ext3_append (handle, dir, &block, &retval);
1385 if (!(bh2)) {
1386 brelse(bh);
1387 return retval;
1388 }
1389 EXT3_I(dir)->i_flags |= EXT3_INDEX_FL;
1390 data1 = bh2->b_data;
1391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 memcpy (data1, de, len);
1393 de = (struct ext3_dir_entry_2 *) data1;
1394 top = data1 + len;
Jan Kara7c06a8d2007-11-14 17:00:19 -08001395 while ((char *)(de2 = ext3_next_entry(de)) < top)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 de = de2;
Jan Kara7c06a8d2007-11-14 17:00:19 -08001397 de->rec_len = ext3_rec_len_to_disk(data1 + blocksize - (char *) de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 /* Initialize the root; the dot dirents already exist */
1399 de = (struct ext3_dir_entry_2 *) (&root->dotdot);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001400 de->rec_len = ext3_rec_len_to_disk(blocksize - EXT3_DIR_REC_LEN(2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 memset (&root->info, 0, sizeof(root->info));
1402 root->info.info_length = sizeof(root->info);
1403 root->info.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version;
1404 entries = root->entries;
1405 dx_set_block (entries, 1);
1406 dx_set_count (entries, 1);
1407 dx_set_limit (entries, dx_root_limit(dir, sizeof(root->info)));
1408
1409 /* Initialize as for dx_probe */
1410 hinfo.hash_version = root->info.hash_version;
Theodore Ts'o5e1f8c92008-10-28 13:21:55 -04001411 if (hinfo.hash_version <= DX_HASH_TEA)
1412 hinfo.hash_version += EXT3_SB(dir->i_sb)->s_hash_unsigned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 hinfo.seed = EXT3_SB(dir->i_sb)->s_hash_seed;
1414 ext3fs_dirhash(name, namelen, &hinfo);
1415 frame = frames;
1416 frame->entries = entries;
1417 frame->at = entries;
1418 frame->bh = bh;
1419 bh = bh2;
Jan Kara86c4f6d82011-04-27 18:20:44 +02001420 /*
1421 * Mark buffers dirty here so that if do_split() fails we write a
1422 * consistent set of buffers to disk.
1423 */
1424 ext3_journal_dirty_metadata(handle, frame->bh);
1425 ext3_journal_dirty_metadata(handle, bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 de = do_split(handle,dir, &bh, frame, &hinfo, &retval);
Jan Kara86c4f6d82011-04-27 18:20:44 +02001427 if (!de) {
1428 ext3_mark_inode_dirty(handle, dir);
1429 dx_release(frames);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 return retval;
Jan Kara86c4f6d82011-04-27 18:20:44 +02001431 }
1432 dx_release(frames);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
1434 return add_dirent_to_buf(handle, dentry, inode, de, bh);
1435}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
1437/*
1438 * ext3_add_entry()
1439 *
1440 * adds a file entry to the specified directory, using the same
1441 * semantics as ext3_find_entry(). It returns NULL if it failed.
1442 *
1443 * NOTE!! The inode part of 'de' is left at 0 - which means you
1444 * may not sleep between calling this and putting something into
1445 * the entry, as someone else might have used it while you slept.
1446 */
1447static int ext3_add_entry (handle_t *handle, struct dentry *dentry,
1448 struct inode *inode)
1449{
1450 struct inode *dir = dentry->d_parent->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 struct buffer_head * bh;
1452 struct ext3_dir_entry_2 *de;
1453 struct super_block * sb;
1454 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 int dx_fallback=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 unsigned blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 u32 block, blocks;
1458
1459 sb = dir->i_sb;
1460 blocksize = sb->s_blocksize;
1461 if (!dentry->d_name.len)
1462 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 if (is_dx(dir)) {
1464 retval = ext3_dx_add_entry(handle, dentry, inode);
1465 if (!retval || (retval != ERR_BAD_DX_DIR))
1466 return retval;
1467 EXT3_I(dir)->i_flags &= ~EXT3_INDEX_FL;
1468 dx_fallback++;
1469 ext3_mark_inode_dirty(handle, dir);
1470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 blocks = dir->i_size >> sb->s_blocksize_bits;
Andi Kleen0411ba72010-06-10 13:10:53 +02001472 for (block = 0; block < blocks; block++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 bh = ext3_bread(handle, dir, block, 0, &retval);
1474 if(!bh)
1475 return retval;
1476 retval = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
1477 if (retval != -ENOSPC)
1478 return retval;
1479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 if (blocks == 1 && !dx_fallback &&
1481 EXT3_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_DIR_INDEX))
1482 return make_indexed_dir(handle, dentry, inode, bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 brelse(bh);
1484 }
1485 bh = ext3_append(handle, dir, &block, &retval);
1486 if (!bh)
1487 return retval;
1488 de = (struct ext3_dir_entry_2 *) bh->b_data;
1489 de->inode = 0;
Jan Kara7c06a8d2007-11-14 17:00:19 -08001490 de->rec_len = ext3_rec_len_to_disk(blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 return add_dirent_to_buf(handle, dentry, inode, de, bh);
1492}
1493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494/*
1495 * Returns 0 for success, or a negative error value
1496 */
1497static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry,
1498 struct inode *inode)
1499{
1500 struct dx_frame frames[2], *frame;
1501 struct dx_entry *entries, *at;
1502 struct dx_hash_info hinfo;
1503 struct buffer_head * bh;
1504 struct inode *dir = dentry->d_parent->d_inode;
1505 struct super_block * sb = dir->i_sb;
1506 struct ext3_dir_entry_2 *de;
1507 int err;
1508
Al Viro734711a2008-08-24 07:26:48 -04001509 frame = dx_probe(&dentry->d_name, dir, &hinfo, frames, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 if (!frame)
1511 return err;
1512 entries = frame->entries;
1513 at = frame->at;
1514
1515 if (!(bh = ext3_bread(handle,dir, dx_get_block(frame->at), 0, &err)))
1516 goto cleanup;
1517
1518 BUFFER_TRACE(bh, "get_write_access");
1519 err = ext3_journal_get_write_access(handle, bh);
1520 if (err)
1521 goto journal_error;
1522
1523 err = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
1524 if (err != -ENOSPC) {
1525 bh = NULL;
1526 goto cleanup;
1527 }
1528
1529 /* Block full, should compress but for now just split */
1530 dxtrace(printk("using %u of %u node entries\n",
1531 dx_get_count(entries), dx_get_limit(entries)));
1532 /* Need to split index? */
1533 if (dx_get_count(entries) == dx_get_limit(entries)) {
1534 u32 newblock;
1535 unsigned icount = dx_get_count(entries);
1536 int levels = frame - frames;
1537 struct dx_entry *entries2;
1538 struct dx_node *node2;
1539 struct buffer_head *bh2;
1540
1541 if (levels && (dx_get_count(frames->entries) ==
1542 dx_get_limit(frames->entries))) {
Harvey Harrisone05b6b52008-04-28 02:16:15 -07001543 ext3_warning(sb, __func__,
Glauber de Oliveira Costa9f406682006-01-08 01:03:22 -08001544 "Directory index full!");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 err = -ENOSPC;
1546 goto cleanup;
1547 }
1548 bh2 = ext3_append (handle, dir, &newblock, &err);
1549 if (!(bh2))
1550 goto cleanup;
1551 node2 = (struct dx_node *)(bh2->b_data);
1552 entries2 = node2->entries;
Eric Sandeend7433142011-03-04 16:04:08 -06001553 memset(&node2->fake, 0, sizeof(struct fake_dirent));
Jan Kara7c06a8d2007-11-14 17:00:19 -08001554 node2->fake.rec_len = ext3_rec_len_to_disk(sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 BUFFER_TRACE(frame->bh, "get_write_access");
1556 err = ext3_journal_get_write_access(handle, frame->bh);
1557 if (err)
1558 goto journal_error;
1559 if (levels) {
1560 unsigned icount1 = icount/2, icount2 = icount - icount1;
1561 unsigned hash2 = dx_get_hash(entries + icount1);
1562 dxtrace(printk("Split index %i/%i\n", icount1, icount2));
1563
1564 BUFFER_TRACE(frame->bh, "get_write_access"); /* index root */
1565 err = ext3_journal_get_write_access(handle,
1566 frames[0].bh);
1567 if (err)
1568 goto journal_error;
1569
1570 memcpy ((char *) entries2, (char *) (entries + icount1),
1571 icount2 * sizeof(struct dx_entry));
1572 dx_set_count (entries, icount1);
1573 dx_set_count (entries2, icount2);
1574 dx_set_limit (entries2, dx_node_limit(dir));
1575
1576 /* Which index block gets the new entry? */
1577 if (at - entries >= icount1) {
1578 frame->at = at = at - entries - icount1 + entries2;
1579 frame->entries = entries = entries2;
1580 swap(frame->bh, bh2);
1581 }
1582 dx_insert_block (frames + 0, hash2, newblock);
1583 dxtrace(dx_show_index ("node", frames[1].entries));
1584 dxtrace(dx_show_index ("node",
1585 ((struct dx_node *) bh2->b_data)->entries));
1586 err = ext3_journal_dirty_metadata(handle, bh2);
1587 if (err)
1588 goto journal_error;
1589 brelse (bh2);
1590 } else {
1591 dxtrace(printk("Creating second level index...\n"));
1592 memcpy((char *) entries2, (char *) entries,
1593 icount * sizeof(struct dx_entry));
1594 dx_set_limit(entries2, dx_node_limit(dir));
1595
1596 /* Set up root */
1597 dx_set_count(entries, 1);
1598 dx_set_block(entries + 0, newblock);
1599 ((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels = 1;
1600
1601 /* Add new access path frame */
1602 frame = frames + 1;
1603 frame->at = at = at - entries + entries2;
1604 frame->entries = entries = entries2;
1605 frame->bh = bh2;
1606 err = ext3_journal_get_write_access(handle,
1607 frame->bh);
1608 if (err)
1609 goto journal_error;
1610 }
Namhyung Kim156e7432010-11-25 01:53:13 +09001611 err = ext3_journal_dirty_metadata(handle, frames[0].bh);
1612 if (err)
1613 goto journal_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 }
1615 de = do_split(handle, dir, &bh, frame, &hinfo, &err);
1616 if (!de)
1617 goto cleanup;
1618 err = add_dirent_to_buf(handle, dentry, inode, de, bh);
1619 bh = NULL;
1620 goto cleanup;
1621
1622journal_error:
1623 ext3_std_error(dir->i_sb, err);
1624cleanup:
1625 if (bh)
1626 brelse(bh);
1627 dx_release(frames);
1628 return err;
1629}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
1631/*
1632 * ext3_delete_entry deletes a directory entry by merging it with the
1633 * previous entry
1634 */
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001635static int ext3_delete_entry (handle_t *handle,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 struct inode * dir,
1637 struct ext3_dir_entry_2 * de_del,
1638 struct buffer_head * bh)
1639{
1640 struct ext3_dir_entry_2 * de, * pde;
1641 int i;
1642
1643 i = 0;
1644 pde = NULL;
1645 de = (struct ext3_dir_entry_2 *) bh->b_data;
1646 while (i < bh->b_size) {
1647 if (!ext3_check_dir_entry("ext3_delete_entry", dir, de, bh, i))
1648 return -EIO;
1649 if (de == de_del) {
Namhyung Kimfbcae8e2010-11-19 16:28:35 +09001650 int err;
1651
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 BUFFER_TRACE(bh, "get_write_access");
Namhyung Kimfbcae8e2010-11-19 16:28:35 +09001653 err = ext3_journal_get_write_access(handle, bh);
1654 if (err)
1655 goto journal_error;
1656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 if (pde)
Jan Kara7c06a8d2007-11-14 17:00:19 -08001658 pde->rec_len = ext3_rec_len_to_disk(
1659 ext3_rec_len_from_disk(pde->rec_len) +
1660 ext3_rec_len_from_disk(de->rec_len));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 else
1662 de->inode = 0;
1663 dir->i_version++;
1664 BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
Namhyung Kimfbcae8e2010-11-19 16:28:35 +09001665 err = ext3_journal_dirty_metadata(handle, bh);
1666 if (err) {
1667journal_error:
1668 ext3_std_error(dir->i_sb, err);
1669 return err;
1670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 return 0;
1672 }
Jan Kara7c06a8d2007-11-14 17:00:19 -08001673 i += ext3_rec_len_from_disk(de->rec_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 pde = de;
Jan Kara7c06a8d2007-11-14 17:00:19 -08001675 de = ext3_next_entry(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 }
1677 return -ENOENT;
1678}
1679
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680static int ext3_add_nondir(handle_t *handle,
1681 struct dentry *dentry, struct inode *inode)
1682{
1683 int err = ext3_add_entry(handle, dentry, inode);
1684 if (!err) {
1685 ext3_mark_inode_dirty(handle, inode);
1686 d_instantiate(dentry, inode);
Al Viroc38012d2008-12-30 02:02:50 -05001687 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 return 0;
1689 }
Eric Sandeen731b9a52007-02-10 01:46:16 -08001690 drop_nlink(inode);
Al Viroc38012d2008-12-30 02:02:50 -05001691 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 iput(inode);
1693 return err;
1694}
1695
1696/*
1697 * By the time this is called, we already have created
1698 * the directory cache entry for the new file, but it
1699 * is so far negative - it has no inode.
1700 *
1701 * If the create succeeds, we fill in the inode information
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001702 * with d_instantiate().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 */
Al Viro4acdaf22011-07-26 01:42:34 -04001704static int ext3_create (struct inode * dir, struct dentry * dentry, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 struct nameidata *nd)
1706{
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001707 handle_t *handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 struct inode * inode;
1709 int err, retries = 0;
1710
Christoph Hellwig871a2932010-03-03 09:05:07 -05001711 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05001712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713retry:
Jan Kara1f545872005-06-23 22:01:04 -07001714 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
Dmitry Monakhovc4590012009-12-09 03:05:30 +03001716 EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 if (IS_ERR(handle))
1718 return PTR_ERR(handle);
1719
1720 if (IS_DIRSYNC(dir))
1721 handle->h_sync = 1;
1722
Eric Paris2a7dba32011-02-01 11:05:39 -05001723 inode = ext3_new_inode (handle, dir, &dentry->d_name, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 err = PTR_ERR(inode);
1725 if (!IS_ERR(inode)) {
1726 inode->i_op = &ext3_file_inode_operations;
1727 inode->i_fop = &ext3_file_operations;
1728 ext3_set_aops(inode);
1729 err = ext3_add_nondir(handle, dentry, inode);
1730 }
1731 ext3_journal_stop(handle);
1732 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1733 goto retry;
1734 return err;
1735}
1736
1737static int ext3_mknod (struct inode * dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04001738 umode_t mode, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739{
1740 handle_t *handle;
1741 struct inode *inode;
1742 int err, retries = 0;
1743
1744 if (!new_valid_dev(rdev))
1745 return -EINVAL;
1746
Christoph Hellwig871a2932010-03-03 09:05:07 -05001747 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05001748
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749retry:
Jan Kara1f545872005-06-23 22:01:04 -07001750 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
Dave Kleikampe9ad5622006-09-27 01:49:35 -07001751 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
Dmitry Monakhovc4590012009-12-09 03:05:30 +03001752 EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 if (IS_ERR(handle))
1754 return PTR_ERR(handle);
1755
1756 if (IS_DIRSYNC(dir))
1757 handle->h_sync = 1;
1758
Eric Paris2a7dba32011-02-01 11:05:39 -05001759 inode = ext3_new_inode (handle, dir, &dentry->d_name, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 err = PTR_ERR(inode);
1761 if (!IS_ERR(inode)) {
1762 init_special_inode(inode, inode->i_mode, rdev);
1763#ifdef CONFIG_EXT3_FS_XATTR
1764 inode->i_op = &ext3_special_inode_operations;
1765#endif
1766 err = ext3_add_nondir(handle, dentry, inode);
1767 }
1768 ext3_journal_stop(handle);
1769 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1770 goto retry;
1771 return err;
1772}
1773
Al Viro18bb1db2011-07-26 01:41:39 -04001774static int ext3_mkdir(struct inode * dir, struct dentry * dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775{
1776 handle_t *handle;
1777 struct inode * inode;
Namhyung Kim2b543ed2010-11-16 20:18:12 +09001778 struct buffer_head * dir_block = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 struct ext3_dir_entry_2 * de;
1780 int err, retries = 0;
1781
1782 if (dir->i_nlink >= EXT3_LINK_MAX)
1783 return -EMLINK;
1784
Christoph Hellwig871a2932010-03-03 09:05:07 -05001785 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05001786
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787retry:
Jan Kara1f545872005-06-23 22:01:04 -07001788 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
Dmitry Monakhovc4590012009-12-09 03:05:30 +03001790 EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 if (IS_ERR(handle))
1792 return PTR_ERR(handle);
1793
1794 if (IS_DIRSYNC(dir))
1795 handle->h_sync = 1;
1796
Eric Paris2a7dba32011-02-01 11:05:39 -05001797 inode = ext3_new_inode (handle, dir, &dentry->d_name, S_IFDIR | mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 err = PTR_ERR(inode);
1799 if (IS_ERR(inode))
1800 goto out_stop;
1801
1802 inode->i_op = &ext3_dir_inode_operations;
1803 inode->i_fop = &ext3_dir_operations;
1804 inode->i_size = EXT3_I(inode)->i_disksize = inode->i_sb->s_blocksize;
1805 dir_block = ext3_bread (handle, inode, 0, 1, &err);
Namhyung Kim2b543ed2010-11-16 20:18:12 +09001806 if (!dir_block)
1807 goto out_clear_inode;
1808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 BUFFER_TRACE(dir_block, "get_write_access");
Namhyung Kim2b543ed2010-11-16 20:18:12 +09001810 err = ext3_journal_get_write_access(handle, dir_block);
1811 if (err)
1812 goto out_clear_inode;
1813
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 de = (struct ext3_dir_entry_2 *) dir_block->b_data;
1815 de->inode = cpu_to_le32(inode->i_ino);
1816 de->name_len = 1;
Jan Kara7c06a8d2007-11-14 17:00:19 -08001817 de->rec_len = ext3_rec_len_to_disk(EXT3_DIR_REC_LEN(de->name_len));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 strcpy (de->name, ".");
1819 ext3_set_de_type(dir->i_sb, de, S_IFDIR);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001820 de = ext3_next_entry(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 de->inode = cpu_to_le32(dir->i_ino);
Jan Kara7c06a8d2007-11-14 17:00:19 -08001822 de->rec_len = ext3_rec_len_to_disk(inode->i_sb->s_blocksize -
1823 EXT3_DIR_REC_LEN(1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 de->name_len = 2;
1825 strcpy (de->name, "..");
1826 ext3_set_de_type(dir->i_sb, de, S_IFDIR);
Miklos Szeredibfe86842011-10-28 14:13:29 +02001827 set_nlink(inode, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 BUFFER_TRACE(dir_block, "call ext3_journal_dirty_metadata");
Namhyung Kim2b543ed2010-11-16 20:18:12 +09001829 err = ext3_journal_dirty_metadata(handle, dir_block);
1830 if (err)
1831 goto out_clear_inode;
1832
1833 err = ext3_mark_inode_dirty(handle, inode);
1834 if (!err)
1835 err = ext3_add_entry (handle, dentry, inode);
1836
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 if (err) {
Namhyung Kim2b543ed2010-11-16 20:18:12 +09001838out_clear_inode:
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +02001839 clear_nlink(inode);
Al Viroc38012d2008-12-30 02:02:50 -05001840 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 ext3_mark_inode_dirty(handle, inode);
1842 iput (inode);
1843 goto out_stop;
1844 }
Dave Hansend8c76e62006-09-30 23:29:04 -07001845 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 ext3_update_dx_flag(dir);
Namhyung Kim2b543ed2010-11-16 20:18:12 +09001847 err = ext3_mark_inode_dirty(handle, dir);
1848 if (err)
1849 goto out_clear_inode;
1850
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 d_instantiate(dentry, inode);
Al Viroc38012d2008-12-30 02:02:50 -05001852 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853out_stop:
Namhyung Kim2b543ed2010-11-16 20:18:12 +09001854 brelse(dir_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 ext3_journal_stop(handle);
1856 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
1857 goto retry;
1858 return err;
1859}
1860
1861/*
1862 * routine to check that the specified directory is empty (for rmdir)
1863 */
1864static int empty_dir (struct inode * inode)
1865{
1866 unsigned long offset;
1867 struct buffer_head * bh;
1868 struct ext3_dir_entry_2 * de, * de1;
1869 struct super_block * sb;
1870 int err = 0;
1871
1872 sb = inode->i_sb;
1873 if (inode->i_size < EXT3_DIR_REC_LEN(1) + EXT3_DIR_REC_LEN(2) ||
1874 !(bh = ext3_bread (NULL, inode, 0, 0, &err))) {
1875 if (err)
Harvey Harrisone05b6b52008-04-28 02:16:15 -07001876 ext3_error(inode->i_sb, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 "error %d reading directory #%lu offset 0",
1878 err, inode->i_ino);
1879 else
Harvey Harrisone05b6b52008-04-28 02:16:15 -07001880 ext3_warning(inode->i_sb, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 "bad directory (dir #%lu) - no data block",
1882 inode->i_ino);
1883 return 1;
1884 }
1885 de = (struct ext3_dir_entry_2 *) bh->b_data;
Jan Kara7c06a8d2007-11-14 17:00:19 -08001886 de1 = ext3_next_entry(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 if (le32_to_cpu(de->inode) != inode->i_ino ||
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001888 !le32_to_cpu(de1->inode) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 strcmp (".", de->name) ||
1890 strcmp ("..", de1->name)) {
Dave Kleikampe9ad5622006-09-27 01:49:35 -07001891 ext3_warning (inode->i_sb, "empty_dir",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 "bad directory (dir #%lu) - no `.' or `..'",
1893 inode->i_ino);
1894 brelse (bh);
1895 return 1;
1896 }
Jan Kara7c06a8d2007-11-14 17:00:19 -08001897 offset = ext3_rec_len_from_disk(de->rec_len) +
1898 ext3_rec_len_from_disk(de1->rec_len);
1899 de = ext3_next_entry(de1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 while (offset < inode->i_size ) {
1901 if (!bh ||
1902 (void *) de >= (void *) (bh->b_data+sb->s_blocksize)) {
1903 err = 0;
1904 brelse (bh);
1905 bh = ext3_bread (NULL, inode,
1906 offset >> EXT3_BLOCK_SIZE_BITS(sb), 0, &err);
1907 if (!bh) {
1908 if (err)
Harvey Harrisone05b6b52008-04-28 02:16:15 -07001909 ext3_error(sb, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 "error %d reading directory"
1911 " #%lu offset %lu",
1912 err, inode->i_ino, offset);
1913 offset += sb->s_blocksize;
1914 continue;
1915 }
1916 de = (struct ext3_dir_entry_2 *) bh->b_data;
1917 }
1918 if (!ext3_check_dir_entry("empty_dir", inode, de, bh, offset)) {
1919 de = (struct ext3_dir_entry_2 *)(bh->b_data +
1920 sb->s_blocksize);
1921 offset = (offset | (sb->s_blocksize - 1)) + 1;
1922 continue;
1923 }
1924 if (le32_to_cpu(de->inode)) {
1925 brelse (bh);
1926 return 0;
1927 }
Jan Kara7c06a8d2007-11-14 17:00:19 -08001928 offset += ext3_rec_len_from_disk(de->rec_len);
1929 de = ext3_next_entry(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 }
1931 brelse (bh);
1932 return 1;
1933}
1934
1935/* ext3_orphan_add() links an unlinked or truncated inode into a list of
1936 * such inodes, starting at the superblock, in case we crash before the
1937 * file is closed/deleted, or in case the inode truncate spans multiple
1938 * transactions and the last transaction is not recovered after a crash.
1939 *
1940 * At filesystem recovery time, we walk this list deleting unlinked
1941 * inodes and truncating linked inodes in ext3_orphan_cleanup().
1942 */
1943int ext3_orphan_add(handle_t *handle, struct inode *inode)
1944{
1945 struct super_block *sb = inode->i_sb;
1946 struct ext3_iloc iloc;
1947 int err = 0, rc;
1948
Eric Sandeenb8a052d2009-12-14 13:00:30 -06001949 mutex_lock(&EXT3_SB(sb)->s_orphan_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 if (!list_empty(&EXT3_I(inode)->i_orphan))
1951 goto out_unlock;
1952
1953 /* Orphan handling is only valid for files with data blocks
1954 * being truncated, or files being unlinked. */
1955
1956 /* @@@ FIXME: Observation from aviro:
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001957 * I think I can trigger J_ASSERT in ext3_orphan_add(). We block
Eric Sandeenb8a052d2009-12-14 13:00:30 -06001958 * here (on s_orphan_lock), so race with ext3_link() which might bump
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 * ->i_nlink. For, say it, character device. Not a regular file,
1960 * not a directory, not a symlink and ->i_nlink > 0.
Eric Sandeenb8a052d2009-12-14 13:00:30 -06001961 *
1962 * tytso, 4/25/2009: I'm not sure how that could happen;
1963 * shouldn't the fs core protect us from these sort of
1964 * unlink()/link() races?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 */
1966 J_ASSERT ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
1967 S_ISLNK(inode->i_mode)) || inode->i_nlink == 0);
1968
1969 BUFFER_TRACE(EXT3_SB(sb)->s_sbh, "get_write_access");
1970 err = ext3_journal_get_write_access(handle, EXT3_SB(sb)->s_sbh);
1971 if (err)
1972 goto out_unlock;
1973
1974 err = ext3_reserve_inode_write(handle, inode, &iloc);
1975 if (err)
1976 goto out_unlock;
1977
1978 /* Insert this inode at the head of the on-disk orphan list... */
1979 NEXT_ORPHAN(inode) = le32_to_cpu(EXT3_SB(sb)->s_es->s_last_orphan);
1980 EXT3_SB(sb)->s_es->s_last_orphan = cpu_to_le32(inode->i_ino);
1981 err = ext3_journal_dirty_metadata(handle, EXT3_SB(sb)->s_sbh);
1982 rc = ext3_mark_iloc_dirty(handle, inode, &iloc);
1983 if (!err)
1984 err = rc;
1985
1986 /* Only add to the head of the in-memory list if all the
1987 * previous operations succeeded. If the orphan_add is going to
1988 * fail (possibly taking the journal offline), we can't risk
1989 * leaving the inode on the orphan list: stray orphan-list
1990 * entries can cause panics at unmount time.
1991 *
1992 * This is safe: on error we're going to ignore the orphan list
1993 * anyway on the next recovery. */
1994 if (!err)
1995 list_add(&EXT3_I(inode)->i_orphan, &EXT3_SB(sb)->s_orphan);
1996
Eric Sandeeneee194e2006-09-27 01:49:30 -07001997 jbd_debug(4, "superblock will point to %lu\n", inode->i_ino);
1998 jbd_debug(4, "orphan inode %lu will point to %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 inode->i_ino, NEXT_ORPHAN(inode));
2000out_unlock:
Eric Sandeenb8a052d2009-12-14 13:00:30 -06002001 mutex_unlock(&EXT3_SB(sb)->s_orphan_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 ext3_std_error(inode->i_sb, err);
2003 return err;
2004}
2005
2006/*
2007 * ext3_orphan_del() removes an unlinked or truncated inode from the list
2008 * of such inodes stored on disk, because it is finally being cleaned up.
2009 */
2010int ext3_orphan_del(handle_t *handle, struct inode *inode)
2011{
2012 struct list_head *prev;
2013 struct ext3_inode_info *ei = EXT3_I(inode);
2014 struct ext3_sb_info *sbi;
2015 unsigned long ino_next;
2016 struct ext3_iloc iloc;
2017 int err = 0;
2018
Eric Sandeenb8a052d2009-12-14 13:00:30 -06002019 mutex_lock(&EXT3_SB(inode->i_sb)->s_orphan_lock);
2020 if (list_empty(&ei->i_orphan))
2021 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
2023 ino_next = NEXT_ORPHAN(inode);
2024 prev = ei->i_orphan.prev;
2025 sbi = EXT3_SB(inode->i_sb);
2026
2027 jbd_debug(4, "remove inode %lu from orphan list\n", inode->i_ino);
2028
2029 list_del_init(&ei->i_orphan);
2030
2031 /* If we're on an error path, we may not have a valid
2032 * transaction handle with which to update the orphan list on
2033 * disk, but we still need to remove the inode from the linked
2034 * list in memory. */
2035 if (!handle)
2036 goto out;
2037
2038 err = ext3_reserve_inode_write(handle, inode, &iloc);
2039 if (err)
2040 goto out_err;
2041
2042 if (prev == &sbi->s_orphan) {
2043 jbd_debug(4, "superblock will point to %lu\n", ino_next);
2044 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
2045 err = ext3_journal_get_write_access(handle, sbi->s_sbh);
2046 if (err)
2047 goto out_brelse;
2048 sbi->s_es->s_last_orphan = cpu_to_le32(ino_next);
2049 err = ext3_journal_dirty_metadata(handle, sbi->s_sbh);
2050 } else {
2051 struct ext3_iloc iloc2;
2052 struct inode *i_prev =
2053 &list_entry(prev, struct ext3_inode_info, i_orphan)->vfs_inode;
2054
2055 jbd_debug(4, "orphan inode %lu will point to %lu\n",
2056 i_prev->i_ino, ino_next);
2057 err = ext3_reserve_inode_write(handle, i_prev, &iloc2);
2058 if (err)
2059 goto out_brelse;
2060 NEXT_ORPHAN(i_prev) = ino_next;
2061 err = ext3_mark_iloc_dirty(handle, i_prev, &iloc2);
2062 }
2063 if (err)
2064 goto out_brelse;
2065 NEXT_ORPHAN(inode) = 0;
2066 err = ext3_mark_iloc_dirty(handle, inode, &iloc);
2067
2068out_err:
2069 ext3_std_error(inode->i_sb, err);
2070out:
Eric Sandeenb8a052d2009-12-14 13:00:30 -06002071 mutex_unlock(&EXT3_SB(inode->i_sb)->s_orphan_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 return err;
2073
2074out_brelse:
2075 brelse(iloc.bh);
2076 goto out_err;
2077}
2078
2079static int ext3_rmdir (struct inode * dir, struct dentry *dentry)
2080{
2081 int retval;
2082 struct inode * inode;
2083 struct buffer_head * bh;
2084 struct ext3_dir_entry_2 * de;
2085 handle_t *handle;
2086
2087 /* Initialize quotas before so that eventual writes go in
2088 * separate transaction */
Christoph Hellwig871a2932010-03-03 09:05:07 -05002089 dquot_initialize(dir);
2090 dquot_initialize(dentry->d_inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002091
Jan Kara1f545872005-06-23 22:01:04 -07002092 handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS(dir->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 if (IS_ERR(handle))
2094 return PTR_ERR(handle);
2095
2096 retval = -ENOENT;
Al Viro734711a2008-08-24 07:26:48 -04002097 bh = ext3_find_entry(dir, &dentry->d_name, &de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 if (!bh)
2099 goto end_rmdir;
2100
2101 if (IS_DIRSYNC(dir))
2102 handle->h_sync = 1;
2103
2104 inode = dentry->d_inode;
2105
2106 retval = -EIO;
2107 if (le32_to_cpu(de->inode) != inode->i_ino)
2108 goto end_rmdir;
2109
2110 retval = -ENOTEMPTY;
2111 if (!empty_dir (inode))
2112 goto end_rmdir;
2113
2114 retval = ext3_delete_entry(handle, dir, de, bh);
2115 if (retval)
2116 goto end_rmdir;
2117 if (inode->i_nlink != 2)
2118 ext3_warning (inode->i_sb, "ext3_rmdir",
2119 "empty directory has nlink!=2 (%d)",
2120 inode->i_nlink);
2121 inode->i_version++;
Dave Hansence71ec32006-09-30 23:29:06 -07002122 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 /* There's no need to set i_disksize: the fact that i_nlink is
2124 * zero will ensure that the right thing happens during any
2125 * recovery. */
2126 inode->i_size = 0;
2127 ext3_orphan_add(handle, inode);
2128 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
2129 ext3_mark_inode_dirty(handle, inode);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002130 drop_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 ext3_update_dx_flag(dir);
2132 ext3_mark_inode_dirty(handle, dir);
2133
2134end_rmdir:
2135 ext3_journal_stop(handle);
2136 brelse (bh);
2137 return retval;
2138}
2139
2140static int ext3_unlink(struct inode * dir, struct dentry *dentry)
2141{
2142 int retval;
2143 struct inode * inode;
2144 struct buffer_head * bh;
2145 struct ext3_dir_entry_2 * de;
2146 handle_t *handle;
2147
Lukas Czerner785c4bc2011-05-23 18:33:01 +02002148 trace_ext3_unlink_enter(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 /* Initialize quotas before so that eventual writes go
2150 * in separate transaction */
Christoph Hellwig871a2932010-03-03 09:05:07 -05002151 dquot_initialize(dir);
2152 dquot_initialize(dentry->d_inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002153
Jan Kara1f545872005-06-23 22:01:04 -07002154 handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS(dir->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 if (IS_ERR(handle))
2156 return PTR_ERR(handle);
2157
2158 if (IS_DIRSYNC(dir))
2159 handle->h_sync = 1;
2160
2161 retval = -ENOENT;
Al Viro734711a2008-08-24 07:26:48 -04002162 bh = ext3_find_entry(dir, &dentry->d_name, &de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 if (!bh)
2164 goto end_unlink;
2165
2166 inode = dentry->d_inode;
2167
2168 retval = -EIO;
2169 if (le32_to_cpu(de->inode) != inode->i_ino)
2170 goto end_unlink;
2171
2172 if (!inode->i_nlink) {
2173 ext3_warning (inode->i_sb, "ext3_unlink",
2174 "Deleting nonexistent file (%lu), %d",
2175 inode->i_ino, inode->i_nlink);
Miklos Szeredibfe86842011-10-28 14:13:29 +02002176 set_nlink(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 }
2178 retval = ext3_delete_entry(handle, dir, de, bh);
2179 if (retval)
2180 goto end_unlink;
2181 dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
2182 ext3_update_dx_flag(dir);
2183 ext3_mark_inode_dirty(handle, dir);
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002184 drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 if (!inode->i_nlink)
2186 ext3_orphan_add(handle, inode);
2187 inode->i_ctime = dir->i_ctime;
2188 ext3_mark_inode_dirty(handle, inode);
2189 retval = 0;
2190
2191end_unlink:
2192 ext3_journal_stop(handle);
2193 brelse (bh);
Lukas Czerner785c4bc2011-05-23 18:33:01 +02002194 trace_ext3_unlink_exit(dentry, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 return retval;
2196}
2197
2198static int ext3_symlink (struct inode * dir,
2199 struct dentry *dentry, const char * symname)
2200{
2201 handle_t *handle;
2202 struct inode * inode;
2203 int l, err, retries = 0;
Jan Karaae548702011-04-21 23:47:16 +02002204 int credits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
2206 l = strlen(symname)+1;
2207 if (l > dir->i_sb->s_blocksize)
2208 return -ENAMETOOLONG;
2209
Christoph Hellwig871a2932010-03-03 09:05:07 -05002210 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002211
Jan Karaae548702011-04-21 23:47:16 +02002212 if (l > EXT3_N_BLOCKS * 4) {
2213 /*
2214 * For non-fast symlinks, we just allocate inode and put it on
2215 * orphan list in the first transaction => we need bitmap,
Eric Sandeend2db60d2011-08-11 09:51:46 -05002216 * group descriptor, sb, inode block, quota blocks, and
2217 * possibly selinux xattr blocks.
Jan Karaae548702011-04-21 23:47:16 +02002218 */
Eric Sandeend2db60d2011-08-11 09:51:46 -05002219 credits = 4 + EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb) +
2220 EXT3_XATTR_TRANS_BLOCKS;
Jan Karaae548702011-04-21 23:47:16 +02002221 } else {
2222 /*
2223 * Fast symlink. We have to add entry to directory
2224 * (EXT3_DATA_TRANS_BLOCKS + EXT3_INDEX_EXTRA_TRANS_BLOCKS),
2225 * allocate new inode (bitmap, group descriptor, inode block,
2226 * quota blocks, sb is already counted in previous macros).
2227 */
2228 credits = EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
2229 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
2230 EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb);
2231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232retry:
Jan Karaae548702011-04-21 23:47:16 +02002233 handle = ext3_journal_start(dir, credits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 if (IS_ERR(handle))
2235 return PTR_ERR(handle);
2236
2237 if (IS_DIRSYNC(dir))
2238 handle->h_sync = 1;
2239
Eric Paris2a7dba32011-02-01 11:05:39 -05002240 inode = ext3_new_inode (handle, dir, &dentry->d_name, S_IFLNK|S_IRWXUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 err = PTR_ERR(inode);
2242 if (IS_ERR(inode))
2243 goto out_stop;
2244
Jan Karaae548702011-04-21 23:47:16 +02002245 if (l > EXT3_N_BLOCKS * 4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 inode->i_op = &ext3_symlink_inode_operations;
2247 ext3_set_aops(inode);
2248 /*
Jan Karaae548702011-04-21 23:47:16 +02002249 * We cannot call page_symlink() with transaction started
2250 * because it calls into ext3_write_begin() which acquires page
2251 * lock which ranks below transaction start (and it can also
2252 * wait for journal commit if we are running out of space). So
2253 * we have to stop transaction now and restart it when symlink
2254 * contents is written.
2255 *
2256 * To keep fs consistent in case of crash, we have to put inode
2257 * to orphan list in the mean time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 */
Jan Karaae548702011-04-21 23:47:16 +02002259 drop_nlink(inode);
2260 err = ext3_orphan_add(handle, inode);
2261 ext3_journal_stop(handle);
2262 if (err)
2263 goto err_drop_inode;
Nick Piggin54566b22009-01-04 12:00:53 -08002264 err = __page_symlink(inode, symname, l, 1);
Jan Karaae548702011-04-21 23:47:16 +02002265 if (err)
2266 goto err_drop_inode;
2267 /*
2268 * Now inode is being linked into dir (EXT3_DATA_TRANS_BLOCKS
2269 * + EXT3_INDEX_EXTRA_TRANS_BLOCKS), inode is also modified
2270 */
2271 handle = ext3_journal_start(dir,
2272 EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
2273 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 1);
2274 if (IS_ERR(handle)) {
2275 err = PTR_ERR(handle);
2276 goto err_drop_inode;
2277 }
Al Viro0ce8c0102012-01-08 19:50:23 -05002278 set_nlink(inode, 1);
Jan Karaae548702011-04-21 23:47:16 +02002279 err = ext3_orphan_del(handle, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 if (err) {
Jan Karaae548702011-04-21 23:47:16 +02002281 ext3_journal_stop(handle);
Eric Sandeen731b9a52007-02-10 01:46:16 -08002282 drop_nlink(inode);
Jan Karaae548702011-04-21 23:47:16 +02002283 goto err_drop_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 }
2285 } else {
2286 inode->i_op = &ext3_fast_symlink_inode_operations;
2287 memcpy((char*)&EXT3_I(inode)->i_data,symname,l);
2288 inode->i_size = l-1;
2289 }
2290 EXT3_I(inode)->i_disksize = inode->i_size;
2291 err = ext3_add_nondir(handle, dentry, inode);
2292out_stop:
2293 ext3_journal_stop(handle);
2294 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
2295 goto retry;
2296 return err;
Jan Karaae548702011-04-21 23:47:16 +02002297err_drop_inode:
2298 unlock_new_inode(inode);
Jan Kara86c4f6d82011-04-27 18:20:44 +02002299 iput(inode);
Jan Karaae548702011-04-21 23:47:16 +02002300 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301}
2302
2303static int ext3_link (struct dentry * old_dentry,
2304 struct inode * dir, struct dentry *dentry)
2305{
2306 handle_t *handle;
2307 struct inode *inode = old_dentry->d_inode;
2308 int err, retries = 0;
2309
2310 if (inode->i_nlink >= EXT3_LINK_MAX)
2311 return -EMLINK;
Christoph Hellwig907f4552010-03-03 09:05:06 -05002312
Christoph Hellwig871a2932010-03-03 09:05:07 -05002313 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002314
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315retry:
Jan Kara1f545872005-06-23 22:01:04 -07002316 handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 EXT3_INDEX_EXTRA_TRANS_BLOCKS);
2318 if (IS_ERR(handle))
2319 return PTR_ERR(handle);
2320
2321 if (IS_DIRSYNC(dir))
2322 handle->h_sync = 1;
2323
2324 inode->i_ctime = CURRENT_TIME_SEC;
Eric Sandeen731b9a52007-02-10 01:46:16 -08002325 inc_nlink(inode);
Al Viro7de9c6e2010-10-23 11:11:40 -04002326 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Al Viroc38012d2008-12-30 02:02:50 -05002328 err = ext3_add_entry(handle, dentry, inode);
2329 if (!err) {
2330 ext3_mark_inode_dirty(handle, inode);
2331 d_instantiate(dentry, inode);
2332 } else {
2333 drop_nlink(inode);
2334 iput(inode);
2335 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 ext3_journal_stop(handle);
2337 if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
2338 goto retry;
2339 return err;
2340}
2341
2342#define PARENT_INO(buffer) \
Jan Kara7c06a8d2007-11-14 17:00:19 -08002343 (ext3_next_entry((struct ext3_dir_entry_2 *)(buffer))->inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
2345/*
2346 * Anybody can rename anything with this: the permission checks are left to the
2347 * higher-level routines.
2348 */
2349static int ext3_rename (struct inode * old_dir, struct dentry *old_dentry,
2350 struct inode * new_dir,struct dentry *new_dentry)
2351{
2352 handle_t *handle;
2353 struct inode * old_inode, * new_inode;
2354 struct buffer_head * old_bh, * new_bh, * dir_bh;
2355 struct ext3_dir_entry_2 * old_de, * new_de;
Theodore Ts'oe7c8f502009-04-03 01:34:49 -04002356 int retval, flush_file = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
Christoph Hellwig871a2932010-03-03 09:05:07 -05002358 dquot_initialize(old_dir);
2359 dquot_initialize(new_dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002360
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 old_bh = new_bh = dir_bh = NULL;
2362
2363 /* Initialize quotas before so that eventual writes go
2364 * in separate transaction */
2365 if (new_dentry->d_inode)
Christoph Hellwig871a2932010-03-03 09:05:07 -05002366 dquot_initialize(new_dentry->d_inode);
Jan Kara1f545872005-06-23 22:01:04 -07002367 handle = ext3_journal_start(old_dir, 2 *
2368 EXT3_DATA_TRANS_BLOCKS(old_dir->i_sb) +
Dave Kleikampe9ad5622006-09-27 01:49:35 -07002369 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 if (IS_ERR(handle))
2371 return PTR_ERR(handle);
2372
2373 if (IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir))
2374 handle->h_sync = 1;
2375
Al Viro734711a2008-08-24 07:26:48 -04002376 old_bh = ext3_find_entry(old_dir, &old_dentry->d_name, &old_de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 /*
2378 * Check for inode number is _not_ due to possible IO errors.
2379 * We might rmdir the source, keep it as pwd of some process
2380 * and merrily kill the link to whatever was created under the
2381 * same name. Goodbye sticky bit ;-<
2382 */
2383 old_inode = old_dentry->d_inode;
2384 retval = -ENOENT;
2385 if (!old_bh || le32_to_cpu(old_de->inode) != old_inode->i_ino)
2386 goto end_rename;
2387
2388 new_inode = new_dentry->d_inode;
Al Viro734711a2008-08-24 07:26:48 -04002389 new_bh = ext3_find_entry(new_dir, &new_dentry->d_name, &new_de);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 if (new_bh) {
2391 if (!new_inode) {
2392 brelse (new_bh);
2393 new_bh = NULL;
2394 }
2395 }
2396 if (S_ISDIR(old_inode->i_mode)) {
2397 if (new_inode) {
2398 retval = -ENOTEMPTY;
2399 if (!empty_dir (new_inode))
2400 goto end_rename;
2401 }
2402 retval = -EIO;
2403 dir_bh = ext3_bread (handle, old_inode, 0, 0, &retval);
2404 if (!dir_bh)
2405 goto end_rename;
2406 if (le32_to_cpu(PARENT_INO(dir_bh->b_data)) != old_dir->i_ino)
2407 goto end_rename;
2408 retval = -EMLINK;
2409 if (!new_inode && new_dir!=old_dir &&
2410 new_dir->i_nlink >= EXT3_LINK_MAX)
2411 goto end_rename;
2412 }
2413 if (!new_bh) {
2414 retval = ext3_add_entry (handle, new_dentry, old_inode);
2415 if (retval)
2416 goto end_rename;
2417 } else {
2418 BUFFER_TRACE(new_bh, "get write access");
Namhyung Kimad1857a2010-11-23 13:30:33 +09002419 retval = ext3_journal_get_write_access(handle, new_bh);
2420 if (retval)
2421 goto journal_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 new_de->inode = cpu_to_le32(old_inode->i_ino);
2423 if (EXT3_HAS_INCOMPAT_FEATURE(new_dir->i_sb,
2424 EXT3_FEATURE_INCOMPAT_FILETYPE))
2425 new_de->file_type = old_de->file_type;
2426 new_dir->i_version++;
Jan Kara0b230762008-04-28 02:16:12 -07002427 new_dir->i_ctime = new_dir->i_mtime = CURRENT_TIME_SEC;
2428 ext3_mark_inode_dirty(handle, new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 BUFFER_TRACE(new_bh, "call ext3_journal_dirty_metadata");
Namhyung Kimad1857a2010-11-23 13:30:33 +09002430 retval = ext3_journal_dirty_metadata(handle, new_bh);
2431 if (retval)
2432 goto journal_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 brelse(new_bh);
2434 new_bh = NULL;
2435 }
2436
2437 /*
2438 * Like most other Unix systems, set the ctime for inodes on a
2439 * rename.
2440 */
2441 old_inode->i_ctime = CURRENT_TIME_SEC;
2442 ext3_mark_inode_dirty(handle, old_inode);
2443
2444 /*
2445 * ok, that's it
2446 */
2447 if (le32_to_cpu(old_de->inode) != old_inode->i_ino ||
2448 old_de->name_len != old_dentry->d_name.len ||
2449 strncmp(old_de->name, old_dentry->d_name.name, old_de->name_len) ||
2450 (retval = ext3_delete_entry(handle, old_dir,
2451 old_de, old_bh)) == -ENOENT) {
2452 /* old_de could have moved from under us during htree split, so
2453 * make sure that we are deleting the right entry. We might
2454 * also be pointing to a stale entry in the unused part of
2455 * old_bh so just checking inum and the name isn't enough. */
2456 struct buffer_head *old_bh2;
2457 struct ext3_dir_entry_2 *old_de2;
2458
Al Viro734711a2008-08-24 07:26:48 -04002459 old_bh2 = ext3_find_entry(old_dir, &old_dentry->d_name,
2460 &old_de2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 if (old_bh2) {
2462 retval = ext3_delete_entry(handle, old_dir,
2463 old_de2, old_bh2);
2464 brelse(old_bh2);
2465 }
2466 }
2467 if (retval) {
2468 ext3_warning(old_dir->i_sb, "ext3_rename",
2469 "Deleting old file (%lu), %d, error=%d",
2470 old_dir->i_ino, old_dir->i_nlink, retval);
2471 }
2472
2473 if (new_inode) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002474 drop_nlink(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 new_inode->i_ctime = CURRENT_TIME_SEC;
2476 }
2477 old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME_SEC;
2478 ext3_update_dx_flag(old_dir);
2479 if (dir_bh) {
2480 BUFFER_TRACE(dir_bh, "get_write_access");
Namhyung Kimad1857a2010-11-23 13:30:33 +09002481 retval = ext3_journal_get_write_access(handle, dir_bh);
2482 if (retval)
2483 goto journal_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 PARENT_INO(dir_bh->b_data) = cpu_to_le32(new_dir->i_ino);
2485 BUFFER_TRACE(dir_bh, "call ext3_journal_dirty_metadata");
Namhyung Kimad1857a2010-11-23 13:30:33 +09002486 retval = ext3_journal_dirty_metadata(handle, dir_bh);
2487 if (retval) {
2488journal_error:
2489 ext3_std_error(new_dir->i_sb, retval);
2490 goto end_rename;
2491 }
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002492 drop_nlink(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 if (new_inode) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -07002494 drop_nlink(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 } else {
Dave Hansend8c76e62006-09-30 23:29:04 -07002496 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 ext3_update_dx_flag(new_dir);
2498 ext3_mark_inode_dirty(handle, new_dir);
2499 }
2500 }
2501 ext3_mark_inode_dirty(handle, old_dir);
2502 if (new_inode) {
2503 ext3_mark_inode_dirty(handle, new_inode);
2504 if (!new_inode->i_nlink)
2505 ext3_orphan_add(handle, new_inode);
Theodore Ts'oe7c8f502009-04-03 01:34:49 -04002506 if (ext3_should_writeback_data(new_inode))
2507 flush_file = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 }
2509 retval = 0;
2510
2511end_rename:
2512 brelse (dir_bh);
2513 brelse (old_bh);
2514 brelse (new_bh);
2515 ext3_journal_stop(handle);
Theodore Ts'oe7c8f502009-04-03 01:34:49 -04002516 if (retval == 0 && flush_file)
2517 filemap_flush(old_inode->i_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 return retval;
2519}
2520
2521/*
2522 * directories can handle most operations...
2523 */
Arjan van de Ven754661f2007-02-12 00:55:38 -08002524const struct inode_operations ext3_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 .create = ext3_create,
2526 .lookup = ext3_lookup,
2527 .link = ext3_link,
2528 .unlink = ext3_unlink,
2529 .symlink = ext3_symlink,
2530 .mkdir = ext3_mkdir,
2531 .rmdir = ext3_rmdir,
2532 .mknod = ext3_mknod,
2533 .rename = ext3_rename,
2534 .setattr = ext3_setattr,
2535#ifdef CONFIG_EXT3_FS_XATTR
2536 .setxattr = generic_setxattr,
2537 .getxattr = generic_getxattr,
2538 .listxattr = ext3_listxattr,
2539 .removexattr = generic_removexattr,
2540#endif
Christoph Hellwig4e34e712011-07-23 17:37:31 +02002541 .get_acl = ext3_get_acl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542};
2543
Arjan van de Ven754661f2007-02-12 00:55:38 -08002544const struct inode_operations ext3_special_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 .setattr = ext3_setattr,
2546#ifdef CONFIG_EXT3_FS_XATTR
2547 .setxattr = generic_setxattr,
2548 .getxattr = generic_getxattr,
2549 .listxattr = ext3_listxattr,
2550 .removexattr = generic_removexattr,
2551#endif
Christoph Hellwig4e34e712011-07-23 17:37:31 +02002552 .get_acl = ext3_get_acl,
Mingming Caoae6ddcc2006-09-27 01:49:27 -07002553};