blob: dec92b675b353e7fd5c2e02061d6a8d32bfdc861 [file] [log] [blame]
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001/*
Mingming Cao617ba132006-10-11 01:20:53 -07002 * linux/fs/ext4/namei.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003 *
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
8 *
9 * from
10 *
11 * linux/fs/minix/namei.c
12 *
13 * Copyright (C) 1991, 1992 Linus Torvalds
14 *
15 * Big-endian to little-endian byte-swapping/bitmaps by
16 * David S. Miller (davem@caip.rutgers.edu), 1995
17 * Directory entry file type support and forward compatibility hooks
18 * for B-tree directories by Theodore Ts'o (tytso@mit.edu), 1998
19 * Hash Tree Directory indexing (c)
20 * Daniel Phillips, 2001
21 * Hash Tree Directory indexing porting
22 * Christopher Li, 2002
23 * Hash Tree Directory indexing cleanup
24 * Theodore Ts'o, 2002
25 */
26
27#include <linux/fs.h>
28#include <linux/pagemap.h>
Mingming Caodab291a2006-10-11 01:21:01 -070029#include <linux/jbd2.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070030#include <linux/time.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070031#include <linux/fcntl.h>
32#include <linux/stat.h>
33#include <linux/string.h>
34#include <linux/quotaops.h>
35#include <linux/buffer_head.h>
36#include <linux/bio.h>
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040037#include "ext4.h"
38#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070039
Dave Kleikampac27a0e2006-10-11 01:20:50 -070040#include "xattr.h"
41#include "acl.h"
42
Jiaying Zhang0562e0b2011-03-21 21:38:05 -040043#include <trace/events/ext4.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070044/*
45 * define how far ahead to read directories while searching them.
46 */
47#define NAMEI_RA_CHUNKS 2
48#define NAMEI_RA_BLOCKS 4
Dave Kleikamp8c55e202007-05-24 13:04:54 -040049#define NAMEI_RA_SIZE (NAMEI_RA_CHUNKS * NAMEI_RA_BLOCKS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070050
Mingming Cao617ba132006-10-11 01:20:53 -070051static struct buffer_head *ext4_append(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070052 struct inode *inode,
Theodore Ts'o0f70b402013-02-15 03:35:57 -050053 ext4_lblk_t *block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070054{
55 struct buffer_head *bh;
Theodore Ts'o1c215022014-08-29 20:52:15 -040056 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -070057
Theodore Ts'odf981d02012-08-17 09:48:17 -040058 if (unlikely(EXT4_SB(inode->i_sb)->s_max_dir_size_kb &&
59 ((inode->i_size >> 10) >=
Theodore Ts'o0f70b402013-02-15 03:35:57 -050060 EXT4_SB(inode->i_sb)->s_max_dir_size_kb)))
61 return ERR_PTR(-ENOSPC);
Theodore Ts'odf981d02012-08-17 09:48:17 -040062
Dave Kleikampac27a0e2006-10-11 01:20:50 -070063 *block = inode->i_size >> inode->i_sb->s_blocksize_bits;
64
Theodore Ts'o1c215022014-08-29 20:52:15 -040065 bh = ext4_bread(handle, inode, *block, 1);
66 if (IS_ERR(bh))
67 return bh;
Theodore Ts'o0f70b402013-02-15 03:35:57 -050068 inode->i_size += inode->i_sb->s_blocksize;
69 EXT4_I(inode)->i_disksize = inode->i_size;
liang xie5d601252014-05-12 22:06:43 -040070 BUFFER_TRACE(bh, "get_write_access");
Theodore Ts'o0f70b402013-02-15 03:35:57 -050071 err = ext4_journal_get_write_access(handle, bh);
72 if (err) {
73 brelse(bh);
74 ext4_std_error(inode->i_sb, err);
75 return ERR_PTR(err);
Carlos Maiolino6d1ab102012-09-27 09:31:33 -040076 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -070077 return bh;
78}
79
Theodore Ts'odc6982f2013-02-14 23:59:26 -050080static int ext4_dx_csum_verify(struct inode *inode,
81 struct ext4_dir_entry *dirent);
82
83typedef enum {
84 EITHER, INDEX, DIRENT
85} dirblock_type_t;
86
87#define ext4_read_dirblock(inode, block, type) \
88 __ext4_read_dirblock((inode), (block), (type), __LINE__)
89
90static struct buffer_head *__ext4_read_dirblock(struct inode *inode,
91 ext4_lblk_t block,
92 dirblock_type_t type,
93 unsigned int line)
94{
95 struct buffer_head *bh;
96 struct ext4_dir_entry *dirent;
Theodore Ts'o1c215022014-08-29 20:52:15 -040097 int is_dx_block = 0;
Theodore Ts'odc6982f2013-02-14 23:59:26 -050098
Theodore Ts'o1c215022014-08-29 20:52:15 -040099 bh = ext4_bread(NULL, inode, block, 0);
100 if (IS_ERR(bh)) {
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500101 __ext4_warning(inode->i_sb, __func__, line,
Theodore Ts'o1c215022014-08-29 20:52:15 -0400102 "error %ld reading directory block "
103 "(ino %lu, block %lu)", PTR_ERR(bh), inode->i_ino,
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500104 (unsigned long) block);
Theodore Ts'o1c215022014-08-29 20:52:15 -0400105
106 return bh;
107 }
108 if (!bh) {
109 ext4_error_inode(inode, __func__, line, block, "Directory hole found");
110 return ERR_PTR(-EIO);
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500111 }
112 dirent = (struct ext4_dir_entry *) bh->b_data;
113 /* Determine whether or not we have an index block */
114 if (is_dx(inode)) {
115 if (block == 0)
116 is_dx_block = 1;
117 else if (ext4_rec_len_from_disk(dirent->rec_len,
118 inode->i_sb->s_blocksize) ==
119 inode->i_sb->s_blocksize)
120 is_dx_block = 1;
121 }
122 if (!is_dx_block && type == INDEX) {
123 ext4_error_inode(inode, __func__, line, block,
124 "directory leaf block found instead of index block");
125 return ERR_PTR(-EIO);
126 }
127 if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
128 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM) ||
129 buffer_verified(bh))
130 return bh;
131
132 /*
133 * An empty leaf block can get mistaken for a index block; for
134 * this reason, we can only check the index checksum when the
135 * caller is sure it should be an index block.
136 */
137 if (is_dx_block && type == INDEX) {
138 if (ext4_dx_csum_verify(inode, dirent))
139 set_buffer_verified(bh);
140 else {
141 ext4_error_inode(inode, __func__, line, block,
142 "Directory index failed checksum");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700143 brelse(bh);
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500144 return ERR_PTR(-EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700145 }
146 }
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500147 if (!is_dx_block) {
148 if (ext4_dirent_csum_verify(inode, dirent))
149 set_buffer_verified(bh);
150 else {
151 ext4_error_inode(inode, __func__, line, block,
152 "Directory block failed checksum");
153 brelse(bh);
154 return ERR_PTR(-EIO);
155 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700156 }
157 return bh;
158}
159
160#ifndef assert
161#define assert(test) J_ASSERT(test)
162#endif
163
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700164#ifdef DX_DEBUG
165#define dxtrace(command) command
166#else
167#define dxtrace(command)
168#endif
169
170struct fake_dirent
171{
172 __le32 inode;
173 __le16 rec_len;
174 u8 name_len;
175 u8 file_type;
176};
177
178struct dx_countlimit
179{
180 __le16 limit;
181 __le16 count;
182};
183
184struct dx_entry
185{
186 __le32 hash;
187 __le32 block;
188};
189
190/*
191 * dx_root_info is laid out so that if it should somehow get overlaid by a
192 * dirent the two low bits of the hash version will be zero. Therefore, the
193 * hash version mod 4 should never be 0. Sincerely, the paranoia department.
194 */
195
196struct dx_root
197{
198 struct fake_dirent dot;
199 char dot_name[4];
200 struct fake_dirent dotdot;
201 char dotdot_name[4];
202 struct dx_root_info
203 {
204 __le32 reserved_zero;
205 u8 hash_version;
206 u8 info_length; /* 8 */
207 u8 indirect_levels;
208 u8 unused_flags;
209 }
210 info;
211 struct dx_entry entries[0];
212};
213
214struct dx_node
215{
216 struct fake_dirent fake;
217 struct dx_entry entries[0];
218};
219
220
221struct dx_frame
222{
223 struct buffer_head *bh;
224 struct dx_entry *entries;
225 struct dx_entry *at;
226};
227
228struct dx_map_entry
229{
230 u32 hash;
Eric Sandeenef2b02d2007-09-18 22:46:42 -0700231 u16 offs;
232 u16 size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700233};
234
Darrick J. Wonge6153912012-04-29 18:23:10 -0400235/*
236 * This goes at the end of each htree block.
237 */
238struct dx_tail {
239 u32 dt_reserved;
240 __le32 dt_checksum; /* crc32c(uuid+inum+dirblock) */
241};
242
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500243static inline ext4_lblk_t dx_get_block(struct dx_entry *entry);
244static void dx_set_block(struct dx_entry *entry, ext4_lblk_t value);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400245static inline unsigned dx_get_hash(struct dx_entry *entry);
246static void dx_set_hash(struct dx_entry *entry, unsigned value);
247static unsigned dx_get_count(struct dx_entry *entries);
248static unsigned dx_get_limit(struct dx_entry *entries);
249static void dx_set_count(struct dx_entry *entries, unsigned value);
250static void dx_set_limit(struct dx_entry *entries, unsigned value);
251static unsigned dx_root_limit(struct inode *dir, unsigned infosize);
252static unsigned dx_node_limit(struct inode *dir);
Theodore Ts'of702ba02008-09-22 15:21:01 -0400253static struct dx_frame *dx_probe(const struct qstr *d_name,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700254 struct inode *dir,
255 struct dx_hash_info *hinfo,
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400256 struct dx_frame *frame);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400257static void dx_release(struct dx_frame *frames);
Theodore Ts'o8bad4592009-02-14 21:46:54 -0500258static int dx_make_map(struct ext4_dir_entry_2 *de, unsigned blocksize,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400259 struct dx_hash_info *hinfo, struct dx_map_entry map[]);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700260static void dx_sort_map(struct dx_map_entry *map, unsigned count);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400261static struct ext4_dir_entry_2 *dx_move_dirents(char *from, char *to,
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500262 struct dx_map_entry *offsets, int count, unsigned blocksize);
Theodore Ts'o8bad4592009-02-14 21:46:54 -0500263static struct ext4_dir_entry_2* dx_pack_dirents(char *base, unsigned blocksize);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500264static void dx_insert_block(struct dx_frame *frame,
265 u32 hash, ext4_lblk_t block);
Mingming Cao617ba132006-10-11 01:20:53 -0700266static int ext4_htree_next_block(struct inode *dir, __u32 hash,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700267 struct dx_frame *frame,
268 struct dx_frame *frames,
269 __u32 *start_hash);
Theodore Ts'of702ba02008-09-22 15:21:01 -0400270static struct buffer_head * ext4_dx_find_entry(struct inode *dir,
271 const struct qstr *d_name,
Theodore Ts'o537d8f92014-08-29 20:49:51 -0400272 struct ext4_dir_entry_2 **res_dir);
Mingming Cao617ba132006-10-11 01:20:53 -0700273static int ext4_dx_add_entry(handle_t *handle, struct dentry *dentry,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700274 struct inode *inode);
275
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400276/* checksumming functions */
Tao Ma3c47d542012-12-10 14:05:59 -0500277void initialize_dirent_tail(struct ext4_dir_entry_tail *t,
278 unsigned int blocksize)
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400279{
280 memset(t, 0, sizeof(struct ext4_dir_entry_tail));
281 t->det_rec_len = ext4_rec_len_to_disk(
282 sizeof(struct ext4_dir_entry_tail), blocksize);
283 t->det_reserved_ft = EXT4_FT_DIR_CSUM;
284}
285
286/* Walk through a dirent block to find a checksum "dirent" at the tail */
287static struct ext4_dir_entry_tail *get_dirent_tail(struct inode *inode,
288 struct ext4_dir_entry *de)
289{
290 struct ext4_dir_entry_tail *t;
291
292#ifdef PARANOID
293 struct ext4_dir_entry *d, *top;
294
295 d = de;
296 top = (struct ext4_dir_entry *)(((void *)de) +
297 (EXT4_BLOCK_SIZE(inode->i_sb) -
298 sizeof(struct ext4_dir_entry_tail)));
299 while (d < top && d->rec_len)
300 d = (struct ext4_dir_entry *)(((void *)d) +
301 le16_to_cpu(d->rec_len));
302
303 if (d != top)
304 return NULL;
305
306 t = (struct ext4_dir_entry_tail *)d;
307#else
308 t = EXT4_DIRENT_TAIL(de, EXT4_BLOCK_SIZE(inode->i_sb));
309#endif
310
311 if (t->det_reserved_zero1 ||
312 le16_to_cpu(t->det_rec_len) != sizeof(struct ext4_dir_entry_tail) ||
313 t->det_reserved_zero2 ||
314 t->det_reserved_ft != EXT4_FT_DIR_CSUM)
315 return NULL;
316
317 return t;
318}
319
320static __le32 ext4_dirent_csum(struct inode *inode,
321 struct ext4_dir_entry *dirent, int size)
322{
323 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
324 struct ext4_inode_info *ei = EXT4_I(inode);
325 __u32 csum;
326
327 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)dirent, size);
328 return cpu_to_le32(csum);
329}
330
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500331static void warn_no_space_for_csum(struct inode *inode)
332{
333 ext4_warning(inode->i_sb, "no space in directory inode %lu leaf for "
334 "checksum. Please run e2fsck -D.", inode->i_ino);
335}
336
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400337int ext4_dirent_csum_verify(struct inode *inode, struct ext4_dir_entry *dirent)
338{
339 struct ext4_dir_entry_tail *t;
340
341 if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
342 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
343 return 1;
344
345 t = get_dirent_tail(inode, dirent);
346 if (!t) {
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500347 warn_no_space_for_csum(inode);
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400348 return 0;
349 }
350
351 if (t->det_checksum != ext4_dirent_csum(inode, dirent,
352 (void *)t - (void *)dirent))
353 return 0;
354
355 return 1;
356}
357
358static void ext4_dirent_csum_set(struct inode *inode,
359 struct ext4_dir_entry *dirent)
360{
361 struct ext4_dir_entry_tail *t;
362
363 if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
364 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
365 return;
366
367 t = get_dirent_tail(inode, dirent);
368 if (!t) {
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500369 warn_no_space_for_csum(inode);
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400370 return;
371 }
372
373 t->det_checksum = ext4_dirent_csum(inode, dirent,
374 (void *)t - (void *)dirent);
375}
376
Tao Ma3c47d542012-12-10 14:05:59 -0500377int ext4_handle_dirty_dirent_node(handle_t *handle,
378 struct inode *inode,
379 struct buffer_head *bh)
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400380{
381 ext4_dirent_csum_set(inode, (struct ext4_dir_entry *)bh->b_data);
382 return ext4_handle_dirty_metadata(handle, inode, bh);
383}
384
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400385static struct dx_countlimit *get_dx_countlimit(struct inode *inode,
386 struct ext4_dir_entry *dirent,
387 int *offset)
388{
389 struct ext4_dir_entry *dp;
390 struct dx_root_info *root;
391 int count_offset;
392
393 if (le16_to_cpu(dirent->rec_len) == EXT4_BLOCK_SIZE(inode->i_sb))
394 count_offset = 8;
395 else if (le16_to_cpu(dirent->rec_len) == 12) {
396 dp = (struct ext4_dir_entry *)(((void *)dirent) + 12);
397 if (le16_to_cpu(dp->rec_len) !=
398 EXT4_BLOCK_SIZE(inode->i_sb) - 12)
399 return NULL;
400 root = (struct dx_root_info *)(((void *)dp + 12));
401 if (root->reserved_zero ||
402 root->info_length != sizeof(struct dx_root_info))
403 return NULL;
404 count_offset = 32;
405 } else
406 return NULL;
407
408 if (offset)
409 *offset = count_offset;
410 return (struct dx_countlimit *)(((void *)dirent) + count_offset);
411}
412
413static __le32 ext4_dx_csum(struct inode *inode, struct ext4_dir_entry *dirent,
414 int count_offset, int count, struct dx_tail *t)
415{
416 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
417 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'od6a77102013-04-09 23:59:55 -0400418 __u32 csum;
419 __le32 save_csum;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400420 int size;
421
422 size = count_offset + (count * sizeof(struct dx_entry));
Theodore Ts'od6a77102013-04-09 23:59:55 -0400423 save_csum = t->dt_checksum;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400424 t->dt_checksum = 0;
425 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)dirent, size);
426 csum = ext4_chksum(sbi, csum, (__u8 *)t, sizeof(struct dx_tail));
Theodore Ts'od6a77102013-04-09 23:59:55 -0400427 t->dt_checksum = save_csum;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400428
429 return cpu_to_le32(csum);
430}
431
432static int ext4_dx_csum_verify(struct inode *inode,
433 struct ext4_dir_entry *dirent)
434{
435 struct dx_countlimit *c;
436 struct dx_tail *t;
437 int count_offset, limit, count;
438
439 if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
440 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
441 return 1;
442
443 c = get_dx_countlimit(inode, dirent, &count_offset);
444 if (!c) {
445 EXT4_ERROR_INODE(inode, "dir seems corrupt? Run e2fsck -D.");
446 return 1;
447 }
448 limit = le16_to_cpu(c->limit);
449 count = le16_to_cpu(c->count);
450 if (count_offset + (limit * sizeof(struct dx_entry)) >
451 EXT4_BLOCK_SIZE(inode->i_sb) - sizeof(struct dx_tail)) {
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500452 warn_no_space_for_csum(inode);
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400453 return 1;
454 }
455 t = (struct dx_tail *)(((struct dx_entry *)c) + limit);
456
457 if (t->dt_checksum != ext4_dx_csum(inode, dirent, count_offset,
458 count, t))
459 return 0;
460 return 1;
461}
462
463static void ext4_dx_csum_set(struct inode *inode, struct ext4_dir_entry *dirent)
464{
465 struct dx_countlimit *c;
466 struct dx_tail *t;
467 int count_offset, limit, count;
468
469 if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
470 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
471 return;
472
473 c = get_dx_countlimit(inode, dirent, &count_offset);
474 if (!c) {
475 EXT4_ERROR_INODE(inode, "dir seems corrupt? Run e2fsck -D.");
476 return;
477 }
478 limit = le16_to_cpu(c->limit);
479 count = le16_to_cpu(c->count);
480 if (count_offset + (limit * sizeof(struct dx_entry)) >
481 EXT4_BLOCK_SIZE(inode->i_sb) - sizeof(struct dx_tail)) {
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500482 warn_no_space_for_csum(inode);
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400483 return;
484 }
485 t = (struct dx_tail *)(((struct dx_entry *)c) + limit);
486
487 t->dt_checksum = ext4_dx_csum(inode, dirent, count_offset, count, t);
488}
489
490static inline int ext4_handle_dirty_dx_node(handle_t *handle,
491 struct inode *inode,
492 struct buffer_head *bh)
493{
494 ext4_dx_csum_set(inode, (struct ext4_dir_entry *)bh->b_data);
495 return ext4_handle_dirty_metadata(handle, inode, bh);
496}
497
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700498/*
Li Zefanf795e142008-07-11 19:27:31 -0400499 * p is at least 6 bytes before the end of page
500 */
501static inline struct ext4_dir_entry_2 *
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500502ext4_next_entry(struct ext4_dir_entry_2 *p, unsigned long blocksize)
Li Zefanf795e142008-07-11 19:27:31 -0400503{
504 return (struct ext4_dir_entry_2 *)((char *)p +
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500505 ext4_rec_len_from_disk(p->rec_len, blocksize));
Li Zefanf795e142008-07-11 19:27:31 -0400506}
507
508/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700509 * Future: use high four bits of block for coalesce-on-delete flags
510 * Mask them off for now.
511 */
512
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500513static inline ext4_lblk_t dx_get_block(struct dx_entry *entry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700514{
515 return le32_to_cpu(entry->block) & 0x00ffffff;
516}
517
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500518static inline void dx_set_block(struct dx_entry *entry, ext4_lblk_t value)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700519{
520 entry->block = cpu_to_le32(value);
521}
522
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400523static inline unsigned dx_get_hash(struct dx_entry *entry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700524{
525 return le32_to_cpu(entry->hash);
526}
527
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400528static inline void dx_set_hash(struct dx_entry *entry, unsigned value)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700529{
530 entry->hash = cpu_to_le32(value);
531}
532
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400533static inline unsigned dx_get_count(struct dx_entry *entries)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700534{
535 return le16_to_cpu(((struct dx_countlimit *) entries)->count);
536}
537
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400538static inline unsigned dx_get_limit(struct dx_entry *entries)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700539{
540 return le16_to_cpu(((struct dx_countlimit *) entries)->limit);
541}
542
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400543static inline void dx_set_count(struct dx_entry *entries, unsigned value)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700544{
545 ((struct dx_countlimit *) entries)->count = cpu_to_le16(value);
546}
547
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400548static inline void dx_set_limit(struct dx_entry *entries, unsigned value)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700549{
550 ((struct dx_countlimit *) entries)->limit = cpu_to_le16(value);
551}
552
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400553static inline unsigned dx_root_limit(struct inode *dir, unsigned infosize)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700554{
Mingming Cao617ba132006-10-11 01:20:53 -0700555 unsigned entry_space = dir->i_sb->s_blocksize - EXT4_DIR_REC_LEN(1) -
556 EXT4_DIR_REC_LEN(2) - infosize;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400557
558 if (EXT4_HAS_RO_COMPAT_FEATURE(dir->i_sb,
559 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
560 entry_space -= sizeof(struct dx_tail);
Li Zefand9c769b2008-07-11 19:27:31 -0400561 return entry_space / sizeof(struct dx_entry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700562}
563
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400564static inline unsigned dx_node_limit(struct inode *dir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700565{
Mingming Cao617ba132006-10-11 01:20:53 -0700566 unsigned entry_space = dir->i_sb->s_blocksize - EXT4_DIR_REC_LEN(0);
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400567
568 if (EXT4_HAS_RO_COMPAT_FEATURE(dir->i_sb,
569 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
570 entry_space -= sizeof(struct dx_tail);
Li Zefand9c769b2008-07-11 19:27:31 -0400571 return entry_space / sizeof(struct dx_entry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700572}
573
574/*
575 * Debug
576 */
577#ifdef DX_DEBUG
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400578static void dx_show_index(char * label, struct dx_entry *entries)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700579{
Andrew Morton63f57932006-10-11 01:21:24 -0700580 int i, n = dx_get_count (entries);
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400581 printk(KERN_DEBUG "%s index ", label);
Andrew Morton63f57932006-10-11 01:21:24 -0700582 for (i = 0; i < n; i++) {
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400583 printk("%x->%lu ", i ? dx_get_hash(entries + i) :
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500584 0, (unsigned long)dx_get_block(entries + i));
Andrew Morton63f57932006-10-11 01:21:24 -0700585 }
586 printk("\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700587}
588
589struct stats
590{
591 unsigned names;
592 unsigned space;
593 unsigned bcount;
594};
595
Mingming Cao617ba132006-10-11 01:20:53 -0700596static struct stats dx_show_leaf(struct dx_hash_info *hinfo, struct ext4_dir_entry_2 *de,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700597 int size, int show_names)
598{
599 unsigned names = 0, space = 0;
600 char *base = (char *) de;
601 struct dx_hash_info h = *hinfo;
602
603 printk("names: ");
604 while ((char *) de < base + size)
605 {
606 if (de->inode)
607 {
608 if (show_names)
609 {
610 int len = de->name_len;
611 char *name = de->name;
612 while (len--) printk("%c", *name++);
Mingming Cao617ba132006-10-11 01:20:53 -0700613 ext4fs_dirhash(de->name, de->name_len, &h);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700614 printk(":%x.%u ", h.hash,
Bernd Schubert265c6a02011-07-16 19:41:23 -0400615 (unsigned) ((char *) de - base));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700616 }
Mingming Cao617ba132006-10-11 01:20:53 -0700617 space += EXT4_DIR_REC_LEN(de->name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700618 names++;
619 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500620 de = ext4_next_entry(de, size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700621 }
622 printk("(%i)\n", names);
623 return (struct stats) { names, space, 1 };
624}
625
626struct stats dx_show_entries(struct dx_hash_info *hinfo, struct inode *dir,
627 struct dx_entry *entries, int levels)
628{
629 unsigned blocksize = dir->i_sb->s_blocksize;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400630 unsigned count = dx_get_count(entries), names = 0, space = 0, i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700631 unsigned bcount = 0;
632 struct buffer_head *bh;
633 int err;
634 printk("%i indexed blocks...\n", count);
635 for (i = 0; i < count; i++, entries++)
636 {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500637 ext4_lblk_t block = dx_get_block(entries);
638 ext4_lblk_t hash = i ? dx_get_hash(entries): 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700639 u32 range = i < count - 1? (dx_get_hash(entries + 1) - hash): ~hash;
640 struct stats stats;
641 printk("%s%3u:%03u hash %8x/%8x ",levels?"":" ", i, block, hash, range);
Theodore Ts'o1c215022014-08-29 20:52:15 -0400642 bh = ext4_bread(NULL,dir, block, 0);
643 if (!bh || IS_ERR(bh))
644 continue;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700645 stats = levels?
646 dx_show_entries(hinfo, dir, ((struct dx_node *) bh->b_data)->entries, levels - 1):
Mingming Cao617ba132006-10-11 01:20:53 -0700647 dx_show_leaf(hinfo, (struct ext4_dir_entry_2 *) bh->b_data, blocksize, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700648 names += stats.names;
649 space += stats.space;
650 bcount += stats.bcount;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400651 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700652 }
653 if (bcount)
Theodore Ts'o60e66792010-05-17 07:00:00 -0400654 printk(KERN_DEBUG "%snames %u, fullness %u (%u%%)\n",
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400655 levels ? "" : " ", names, space/bcount,
656 (space/bcount)*100/blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700657 return (struct stats) { names, space, bcount};
658}
659#endif /* DX_DEBUG */
660
661/*
662 * Probe for a directory leaf block to search.
663 *
664 * dx_probe can return ERR_BAD_DX_DIR, which means there was a format
665 * error in the directory index, and the caller should fall back to
666 * searching the directory normally. The callers of dx_probe **MUST**
667 * check for this error code, and make sure it never gets reflected
668 * back to userspace.
669 */
670static struct dx_frame *
Theodore Ts'of702ba02008-09-22 15:21:01 -0400671dx_probe(const struct qstr *d_name, struct inode *dir,
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400672 struct dx_hash_info *hinfo, struct dx_frame *frame_in)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700673{
674 unsigned count, indirect;
675 struct dx_entry *at, *entries, *p, *q, *m;
676 struct dx_root *root;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700677 struct dx_frame *frame = frame_in;
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400678 struct dx_frame *ret_err = ERR_PTR(ERR_BAD_DX_DIR);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700679 u32 hash;
680
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400681 frame->bh = ext4_read_dirblock(dir, 0, INDEX);
682 if (IS_ERR(frame->bh))
683 return (struct dx_frame *) frame->bh;
684
685 root = (struct dx_root *) frame->bh->b_data;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700686 if (root->info.hash_version != DX_HASH_TEA &&
687 root->info.hash_version != DX_HASH_HALF_MD4 &&
688 root->info.hash_version != DX_HASH_LEGACY) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500689 ext4_warning(dir->i_sb, "Unrecognised inode hash code %d",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700690 root->info.hash_version);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700691 goto fail;
692 }
693 hinfo->hash_version = root->info.hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -0400694 if (hinfo->hash_version <= DX_HASH_TEA)
695 hinfo->hash_version += EXT4_SB(dir->i_sb)->s_hash_unsigned;
Mingming Cao617ba132006-10-11 01:20:53 -0700696 hinfo->seed = EXT4_SB(dir->i_sb)->s_hash_seed;
Theodore Ts'of702ba02008-09-22 15:21:01 -0400697 if (d_name)
698 ext4fs_dirhash(d_name->name, d_name->len, hinfo);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700699 hash = hinfo->hash;
700
701 if (root->info.unused_flags & 1) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500702 ext4_warning(dir->i_sb, "Unimplemented inode hash flags: %#06x",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700703 root->info.unused_flags);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700704 goto fail;
705 }
706
707 if ((indirect = root->info.indirect_levels) > 1) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500708 ext4_warning(dir->i_sb, "Unimplemented inode hash depth: %#06x",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700709 root->info.indirect_levels);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700710 goto fail;
711 }
712
713 entries = (struct dx_entry *) (((char *)&root->info) +
714 root->info.info_length);
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700715
716 if (dx_get_limit(entries) != dx_root_limit(dir,
717 root->info.info_length)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500718 ext4_warning(dir->i_sb, "dx entry: limit != root limit");
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700719 goto fail;
720 }
721
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400722 dxtrace(printk("Look up %x", hash));
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400723 while (1) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700724 count = dx_get_count(entries);
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700725 if (!count || count > dx_get_limit(entries)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500726 ext4_warning(dir->i_sb,
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700727 "dx entry: no count or count > limit");
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400728 goto fail;
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700729 }
730
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700731 p = entries + 1;
732 q = entries + count - 1;
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400733 while (p <= q) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700734 m = p + (q - p)/2;
735 dxtrace(printk("."));
736 if (dx_get_hash(m) > hash)
737 q = m - 1;
738 else
739 p = m + 1;
740 }
741
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400742 if (0) { // linear search cross check
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700743 unsigned n = count - 1;
744 at = entries;
745 while (n--)
746 {
747 dxtrace(printk(","));
748 if (dx_get_hash(++at) > hash)
749 {
750 at--;
751 break;
752 }
753 }
754 assert (at == p - 1);
755 }
756
757 at = p - 1;
758 dxtrace(printk(" %x->%u\n", at == entries? 0: dx_get_hash(at), dx_get_block(at)));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700759 frame->entries = entries;
760 frame->at = at;
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400761 if (!indirect--)
762 return frame;
763 frame++;
764 frame->bh = ext4_read_dirblock(dir, dx_get_block(at), INDEX);
765 if (IS_ERR(frame->bh)) {
766 ret_err = (struct dx_frame *) frame->bh;
767 frame->bh = NULL;
768 goto fail;
Carlos Maiolino6d1ab102012-09-27 09:31:33 -0400769 }
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400770 entries = ((struct dx_node *) frame->bh->b_data)->entries;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400771
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700772 if (dx_get_limit(entries) != dx_node_limit (dir)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500773 ext4_warning(dir->i_sb,
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700774 "dx entry: limit != node limit");
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400775 goto fail;
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700776 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700777 }
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400778fail:
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700779 while (frame >= frame_in) {
780 brelse(frame->bh);
781 frame--;
782 }
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400783 if (ret_err == ERR_PTR(ERR_BAD_DX_DIR))
Eric Sandeen12062dd2010-02-15 14:19:27 -0500784 ext4_warning(dir->i_sb,
Zheng Liu9ee49302012-02-20 23:09:36 -0500785 "Corrupt dir inode %lu, running e2fsck is "
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700786 "recommended.", dir->i_ino);
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400787 return ret_err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700788}
789
790static void dx_release (struct dx_frame *frames)
791{
792 if (frames[0].bh == NULL)
793 return;
794
795 if (((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels)
796 brelse(frames[1].bh);
797 brelse(frames[0].bh);
798}
799
800/*
801 * This function increments the frame pointer to search the next leaf
802 * block, and reads in the necessary intervening nodes if the search
803 * should be necessary. Whether or not the search is necessary is
804 * controlled by the hash parameter. If the hash value is even, then
805 * the search is only continued if the next block starts with that
806 * hash value. This is used if we are searching for a specific file.
807 *
808 * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
809 *
810 * This function returns 1 if the caller should continue to search,
811 * or 0 if it should not. If there is an error reading one of the
812 * index blocks, it will a negative error code.
813 *
814 * If start_hash is non-null, it will be filled in with the starting
815 * hash of the next page.
816 */
Mingming Cao617ba132006-10-11 01:20:53 -0700817static int ext4_htree_next_block(struct inode *dir, __u32 hash,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700818 struct dx_frame *frame,
819 struct dx_frame *frames,
820 __u32 *start_hash)
821{
822 struct dx_frame *p;
823 struct buffer_head *bh;
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500824 int num_frames = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700825 __u32 bhash;
826
827 p = frame;
828 /*
829 * Find the next leaf page by incrementing the frame pointer.
830 * If we run out of entries in the interior node, loop around and
831 * increment pointer in the parent node. When we break out of
832 * this loop, num_frames indicates the number of interior
833 * nodes need to be read.
834 */
835 while (1) {
836 if (++(p->at) < p->entries + dx_get_count(p->entries))
837 break;
838 if (p == frames)
839 return 0;
840 num_frames++;
841 p--;
842 }
843
844 /*
845 * If the hash is 1, then continue only if the next page has a
846 * continuation hash of any value. This is used for readdir
847 * handling. Otherwise, check to see if the hash matches the
848 * desired contiuation hash. If it doesn't, return since
849 * there's no point to read in the successive index pages.
850 */
851 bhash = dx_get_hash(p->at);
852 if (start_hash)
853 *start_hash = bhash;
854 if ((hash & 1) == 0) {
855 if ((bhash & ~1) != hash)
856 return 0;
857 }
858 /*
859 * If the hash is HASH_NB_ALWAYS, we always go to the next
860 * block so no check is necessary
861 */
862 while (num_frames--) {
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500863 bh = ext4_read_dirblock(dir, dx_get_block(p->at), INDEX);
864 if (IS_ERR(bh))
865 return PTR_ERR(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700866 p++;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400867 brelse(p->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700868 p->bh = bh;
869 p->at = p->entries = ((struct dx_node *) bh->b_data)->entries;
870 }
871 return 1;
872}
873
874
875/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700876 * This function fills a red-black tree with information from a
877 * directory block. It returns the number directory entries loaded
878 * into the tree. If there is an error it is returned in err.
879 */
880static int htree_dirblock_to_tree(struct file *dir_file,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500881 struct inode *dir, ext4_lblk_t block,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700882 struct dx_hash_info *hinfo,
883 __u32 start_hash, __u32 start_minor_hash)
884{
885 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -0700886 struct ext4_dir_entry_2 *de, *top;
Carlos Maiolino90b0a972012-09-17 23:39:12 -0400887 int err = 0, count = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700888
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500889 dxtrace(printk(KERN_INFO "In htree dirblock_to_tree: block %lu\n",
890 (unsigned long)block));
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500891 bh = ext4_read_dirblock(dir, block, DIRENT);
892 if (IS_ERR(bh))
893 return PTR_ERR(bh);
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400894
Mingming Cao617ba132006-10-11 01:20:53 -0700895 de = (struct ext4_dir_entry_2 *) bh->b_data;
896 top = (struct ext4_dir_entry_2 *) ((char *) de +
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700897 dir->i_sb->s_blocksize -
Mingming Cao617ba132006-10-11 01:20:53 -0700898 EXT4_DIR_REC_LEN(0));
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500899 for (; de < top; de = ext4_next_entry(de, dir->i_sb->s_blocksize)) {
Theodore Ts'of7c21172011-01-10 12:10:55 -0500900 if (ext4_check_dir_entry(dir, NULL, de, bh,
Tao Ma226ba972012-12-10 14:05:58 -0500901 bh->b_data, bh->b_size,
Theodore Ts'ocad3f002010-12-19 22:07:02 -0500902 (block<<EXT4_BLOCK_SIZE_BITS(dir->i_sb))
903 + ((char *)de - bh->b_data))) {
Al Viro64cb9272013-07-01 08:12:38 -0400904 /* silently ignore the rest of the block */
905 break;
Eric Sandeene6c40212006-12-06 20:36:28 -0800906 }
Mingming Cao617ba132006-10-11 01:20:53 -0700907 ext4fs_dirhash(de->name, de->name_len, hinfo);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700908 if ((hinfo->hash < start_hash) ||
909 ((hinfo->hash == start_hash) &&
910 (hinfo->minor_hash < start_minor_hash)))
911 continue;
912 if (de->inode == 0)
913 continue;
Mingming Cao617ba132006-10-11 01:20:53 -0700914 if ((err = ext4_htree_store_dirent(dir_file,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700915 hinfo->hash, hinfo->minor_hash, de)) != 0) {
916 brelse(bh);
917 return err;
918 }
919 count++;
920 }
921 brelse(bh);
922 return count;
923}
924
925
926/*
927 * This function fills a red-black tree with information from a
928 * directory. We start scanning the directory in hash order, starting
929 * at start_hash and start_minor_hash.
930 *
931 * This function returns the number of entries inserted into the tree,
932 * or a negative error code.
933 */
Mingming Cao617ba132006-10-11 01:20:53 -0700934int ext4_htree_fill_tree(struct file *dir_file, __u32 start_hash,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700935 __u32 start_minor_hash, __u32 *next_hash)
936{
937 struct dx_hash_info hinfo;
Mingming Cao617ba132006-10-11 01:20:53 -0700938 struct ext4_dir_entry_2 *de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700939 struct dx_frame frames[2], *frame;
940 struct inode *dir;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500941 ext4_lblk_t block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700942 int count = 0;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500943 int ret, err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700944 __u32 hashval;
945
Theodore Ts'o60e66792010-05-17 07:00:00 -0400946 dxtrace(printk(KERN_DEBUG "In htree_fill_tree, start hash: %x:%x\n",
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400947 start_hash, start_minor_hash));
Al Viro496ad9a2013-01-23 17:07:38 -0500948 dir = file_inode(dir_file);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400949 if (!(ext4_test_inode_flag(dir, EXT4_INODE_INDEX))) {
Mingming Cao617ba132006-10-11 01:20:53 -0700950 hinfo.hash_version = EXT4_SB(dir->i_sb)->s_def_hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -0400951 if (hinfo.hash_version <= DX_HASH_TEA)
952 hinfo.hash_version +=
953 EXT4_SB(dir->i_sb)->s_hash_unsigned;
Mingming Cao617ba132006-10-11 01:20:53 -0700954 hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed;
Tao Ma8af0f082013-04-19 17:53:09 -0400955 if (ext4_has_inline_data(dir)) {
956 int has_inline_data = 1;
957 count = htree_inlinedir_to_tree(dir_file, dir, 0,
958 &hinfo, start_hash,
959 start_minor_hash,
960 &has_inline_data);
961 if (has_inline_data) {
962 *next_hash = ~0;
963 return count;
964 }
965 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700966 count = htree_dirblock_to_tree(dir_file, dir, 0, &hinfo,
967 start_hash, start_minor_hash);
968 *next_hash = ~0;
969 return count;
970 }
971 hinfo.hash = start_hash;
972 hinfo.minor_hash = 0;
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400973 frame = dx_probe(NULL, dir, &hinfo, frames);
974 if (IS_ERR(frame))
975 return PTR_ERR(frame);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700976
977 /* Add '.' and '..' from the htree header */
978 if (!start_hash && !start_minor_hash) {
Mingming Cao617ba132006-10-11 01:20:53 -0700979 de = (struct ext4_dir_entry_2 *) frames[0].bh->b_data;
980 if ((err = ext4_htree_store_dirent(dir_file, 0, 0, de)) != 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700981 goto errout;
982 count++;
983 }
984 if (start_hash < 2 || (start_hash ==2 && start_minor_hash==0)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700985 de = (struct ext4_dir_entry_2 *) frames[0].bh->b_data;
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500986 de = ext4_next_entry(de, dir->i_sb->s_blocksize);
Mingming Cao617ba132006-10-11 01:20:53 -0700987 if ((err = ext4_htree_store_dirent(dir_file, 2, 0, de)) != 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700988 goto errout;
989 count++;
990 }
991
992 while (1) {
993 block = dx_get_block(frame->at);
994 ret = htree_dirblock_to_tree(dir_file, dir, block, &hinfo,
995 start_hash, start_minor_hash);
996 if (ret < 0) {
997 err = ret;
998 goto errout;
999 }
1000 count += ret;
1001 hashval = ~0;
Mingming Cao617ba132006-10-11 01:20:53 -07001002 ret = ext4_htree_next_block(dir, HASH_NB_ALWAYS,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001003 frame, frames, &hashval);
1004 *next_hash = hashval;
1005 if (ret < 0) {
1006 err = ret;
1007 goto errout;
1008 }
1009 /*
1010 * Stop if: (a) there are no more entries, or
1011 * (b) we have inserted at least one entry and the
1012 * next hash value is not a continuation
1013 */
1014 if ((ret == 0) ||
1015 (count && ((hashval & 1) == 0)))
1016 break;
1017 }
1018 dx_release(frames);
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001019 dxtrace(printk(KERN_DEBUG "Fill tree: returned %d entries, "
1020 "next hash: %x\n", count, *next_hash));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001021 return count;
1022errout:
1023 dx_release(frames);
1024 return (err);
1025}
1026
Tao Ma7335cd32012-12-10 14:05:59 -05001027static inline int search_dirblock(struct buffer_head *bh,
1028 struct inode *dir,
1029 const struct qstr *d_name,
1030 unsigned int offset,
1031 struct ext4_dir_entry_2 **res_dir)
1032{
1033 return search_dir(bh, bh->b_data, dir->i_sb->s_blocksize, dir,
1034 d_name, offset, res_dir);
1035}
1036
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001037/*
1038 * Directory block splitting, compacting
1039 */
1040
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001041/*
1042 * Create map of hash values, offsets, and sizes, stored at end of block.
1043 * Returns number of entries mapped.
1044 */
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001045static int dx_make_map(struct ext4_dir_entry_2 *de, unsigned blocksize,
1046 struct dx_hash_info *hinfo,
1047 struct dx_map_entry *map_tail)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001048{
1049 int count = 0;
1050 char *base = (char *) de;
1051 struct dx_hash_info h = *hinfo;
1052
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001053 while ((char *) de < base + blocksize) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001054 if (de->name_len && de->inode) {
Mingming Cao617ba132006-10-11 01:20:53 -07001055 ext4fs_dirhash(de->name, de->name_len, &h);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001056 map_tail--;
1057 map_tail->hash = h.hash;
Toshiyuki Okajima9aee2282009-06-08 12:41:35 -04001058 map_tail->offs = ((char *) de - base)>>2;
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001059 map_tail->size = le16_to_cpu(de->rec_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001060 count++;
1061 cond_resched();
1062 }
1063 /* XXX: do we need to check rec_len == 0 case? -Chris */
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001064 de = ext4_next_entry(de, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001065 }
1066 return count;
1067}
1068
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001069/* Sort map by hash value */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001070static void dx_sort_map (struct dx_map_entry *map, unsigned count)
1071{
Andrew Morton63f57932006-10-11 01:21:24 -07001072 struct dx_map_entry *p, *q, *top = map + count - 1;
1073 int more;
1074 /* Combsort until bubble sort doesn't suck */
1075 while (count > 2) {
1076 count = count*10/13;
1077 if (count - 9 < 2) /* 9, 10 -> 11 */
1078 count = 11;
1079 for (p = top, q = p - count; q >= map; p--, q--)
1080 if (p->hash < q->hash)
1081 swap(*p, *q);
1082 }
1083 /* Garden variety bubble sort */
1084 do {
1085 more = 0;
1086 q = top;
1087 while (q-- > map) {
1088 if (q[1].hash >= q[0].hash)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001089 continue;
Andrew Morton63f57932006-10-11 01:21:24 -07001090 swap(*(q+1), *q);
1091 more = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001092 }
1093 } while(more);
1094}
1095
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001096static void dx_insert_block(struct dx_frame *frame, u32 hash, ext4_lblk_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001097{
1098 struct dx_entry *entries = frame->entries;
1099 struct dx_entry *old = frame->at, *new = old + 1;
1100 int count = dx_get_count(entries);
1101
1102 assert(count < dx_get_limit(entries));
1103 assert(old < entries + count);
1104 memmove(new + 1, new, (char *)(entries + count) - (char *)(new));
1105 dx_set_hash(new, hash);
1106 dx_set_block(new, block);
1107 dx_set_count(entries, count + 1);
1108}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001109
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001110/*
Mingming Cao617ba132006-10-11 01:20:53 -07001111 * NOTE! unlike strncmp, ext4_match returns 1 for success, 0 for failure.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001112 *
Mingming Cao617ba132006-10-11 01:20:53 -07001113 * `len <= EXT4_NAME_LEN' is guaranteed by caller.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001114 * `de != NULL' is guaranteed by caller.
1115 */
Mingming Cao617ba132006-10-11 01:20:53 -07001116static inline int ext4_match (int len, const char * const name,
1117 struct ext4_dir_entry_2 * de)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001118{
1119 if (len != de->name_len)
1120 return 0;
1121 if (!de->inode)
1122 return 0;
1123 return !memcmp(name, de->name, len);
1124}
1125
1126/*
1127 * Returns 0 if not found, -1 on failure, and 1 on success
1128 */
Tao Ma7335cd32012-12-10 14:05:59 -05001129int search_dir(struct buffer_head *bh,
1130 char *search_buf,
1131 int buf_size,
1132 struct inode *dir,
1133 const struct qstr *d_name,
1134 unsigned int offset,
1135 struct ext4_dir_entry_2 **res_dir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001136{
Mingming Cao617ba132006-10-11 01:20:53 -07001137 struct ext4_dir_entry_2 * de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001138 char * dlimit;
1139 int de_len;
Theodore Ts'of702ba02008-09-22 15:21:01 -04001140 const char *name = d_name->name;
1141 int namelen = d_name->len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001142
Tao Ma7335cd32012-12-10 14:05:59 -05001143 de = (struct ext4_dir_entry_2 *)search_buf;
1144 dlimit = search_buf + buf_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001145 while ((char *) de < dlimit) {
1146 /* this code is executed quadratically often */
1147 /* do minimal checking `by hand' */
1148
1149 if ((char *) de + namelen <= dlimit &&
Mingming Cao617ba132006-10-11 01:20:53 -07001150 ext4_match (namelen, name, de)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001151 /* found a match - just to be sure, do a full check */
Tao Ma226ba972012-12-10 14:05:58 -05001152 if (ext4_check_dir_entry(dir, NULL, de, bh, bh->b_data,
1153 bh->b_size, offset))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001154 return -1;
1155 *res_dir = de;
1156 return 1;
1157 }
1158 /* prevent looping on a bad block */
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001159 de_len = ext4_rec_len_from_disk(de->rec_len,
1160 dir->i_sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001161 if (de_len <= 0)
1162 return -1;
1163 offset += de_len;
Mingming Cao617ba132006-10-11 01:20:53 -07001164 de = (struct ext4_dir_entry_2 *) ((char *) de + de_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001165 }
1166 return 0;
1167}
1168
Darrick J. Wongc6af8802012-11-12 23:51:02 -05001169static int is_dx_internal_node(struct inode *dir, ext4_lblk_t block,
1170 struct ext4_dir_entry *de)
1171{
1172 struct super_block *sb = dir->i_sb;
1173
1174 if (!is_dx(dir))
1175 return 0;
1176 if (block == 0)
1177 return 1;
1178 if (de->inode == 0 &&
1179 ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize) ==
1180 sb->s_blocksize)
1181 return 1;
1182 return 0;
1183}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001184
1185/*
Mingming Cao617ba132006-10-11 01:20:53 -07001186 * ext4_find_entry()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001187 *
1188 * finds an entry in the specified directory with the wanted name. It
1189 * returns the cache buffer in which the entry was found, and the entry
1190 * itself (as a parameter - res_dir). It does NOT read the inode of the
1191 * entry - you'll have to do that yourself if you want to.
1192 *
1193 * The returned buffer_head has ->b_count elevated. The caller is expected
1194 * to brelse() it when appropriate.
1195 */
Theodore Ts'of702ba02008-09-22 15:21:01 -04001196static struct buffer_head * ext4_find_entry (struct inode *dir,
1197 const struct qstr *d_name,
Tao Ma32f7f222012-12-10 14:06:01 -05001198 struct ext4_dir_entry_2 **res_dir,
1199 int *inlined)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001200{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001201 struct super_block *sb;
1202 struct buffer_head *bh_use[NAMEI_RA_SIZE];
1203 struct buffer_head *bh, *ret = NULL;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001204 ext4_lblk_t start, block, b;
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001205 const u8 *name = d_name->name;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001206 int ra_max = 0; /* Number of bh's in the readahead
1207 buffer, bh_use[] */
1208 int ra_ptr = 0; /* Current index into readahead
1209 buffer */
1210 int num = 0;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001211 ext4_lblk_t nblocks;
Theodore Ts'o10560082014-08-29 20:51:32 -04001212 int i, namelen;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001213
1214 *res_dir = NULL;
1215 sb = dir->i_sb;
Theodore Ts'of702ba02008-09-22 15:21:01 -04001216 namelen = d_name->len;
Mingming Cao617ba132006-10-11 01:20:53 -07001217 if (namelen > EXT4_NAME_LEN)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001218 return NULL;
Tao Mae8e948e2012-12-10 14:06:00 -05001219
1220 if (ext4_has_inline_data(dir)) {
1221 int has_inline_data = 1;
1222 ret = ext4_find_inline_entry(dir, d_name, res_dir,
1223 &has_inline_data);
Tao Ma32f7f222012-12-10 14:06:01 -05001224 if (has_inline_data) {
1225 if (inlined)
1226 *inlined = 1;
Tao Mae8e948e2012-12-10 14:06:00 -05001227 return ret;
Tao Ma32f7f222012-12-10 14:06:01 -05001228 }
Tao Mae8e948e2012-12-10 14:06:00 -05001229 }
1230
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001231 if ((namelen <= 2) && (name[0] == '.') &&
Aaro Koskinen6d5c3aa2010-12-14 21:45:31 -05001232 (name[1] == '.' || name[1] == '\0')) {
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001233 /*
1234 * "." or ".." will only be in the first block
1235 * NFS may look up ".."; "." should be handled by the VFS
1236 */
1237 block = start = 0;
1238 nblocks = 1;
1239 goto restart;
1240 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001241 if (is_dx(dir)) {
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001242 bh = ext4_dx_find_entry(dir, d_name, res_dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001243 /*
1244 * On success, or if the error was file not found,
1245 * return. Otherwise, fall back to doing a search the
1246 * old fashioned way.
1247 */
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001248 if (!IS_ERR(bh) || PTR_ERR(bh) != ERR_BAD_DX_DIR)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001249 return bh;
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001250 dxtrace(printk(KERN_DEBUG "ext4_find_entry: dx failed, "
1251 "falling back\n"));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001252 }
Mingming Cao617ba132006-10-11 01:20:53 -07001253 nblocks = dir->i_size >> EXT4_BLOCK_SIZE_BITS(sb);
1254 start = EXT4_I(dir)->i_dir_start_lookup;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001255 if (start >= nblocks)
1256 start = 0;
1257 block = start;
1258restart:
1259 do {
1260 /*
1261 * We deal with the read-ahead logic here.
1262 */
1263 if (ra_ptr >= ra_max) {
1264 /* Refill the readahead buffer */
1265 ra_ptr = 0;
1266 b = block;
1267 for (ra_max = 0; ra_max < NAMEI_RA_SIZE; ra_max++) {
1268 /*
1269 * Terminate if we reach the end of the
1270 * directory and must wrap, or if our
1271 * search has finished at this block.
1272 */
1273 if (b >= nblocks || (num && block == start)) {
1274 bh_use[ra_max] = NULL;
1275 break;
1276 }
1277 num++;
Theodore Ts'o10560082014-08-29 20:51:32 -04001278 bh = ext4_getblk(NULL, dir, b++, 0);
1279 if (unlikely(IS_ERR(bh))) {
Theodore Ts'o36de9282014-08-23 17:47:19 -04001280 if (ra_max == 0)
Theodore Ts'o10560082014-08-29 20:51:32 -04001281 return bh;
Theodore Ts'o36de9282014-08-23 17:47:19 -04001282 break;
1283 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001284 bh_use[ra_max] = bh;
1285 if (bh)
Christoph Hellwig65299a32011-08-23 14:50:29 +02001286 ll_rw_block(READ | REQ_META | REQ_PRIO,
1287 1, &bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001288 }
1289 }
1290 if ((bh = bh_use[ra_ptr++]) == NULL)
1291 goto next;
1292 wait_on_buffer(bh);
1293 if (!buffer_uptodate(bh)) {
1294 /* read error, skip block & hope for the best */
Theodore Ts'o24676da2010-05-16 21:00:00 -04001295 EXT4_ERROR_INODE(dir, "reading directory lblock %lu",
1296 (unsigned long) block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001297 brelse(bh);
1298 goto next;
1299 }
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001300 if (!buffer_verified(bh) &&
Darrick J. Wongc6af8802012-11-12 23:51:02 -05001301 !is_dx_internal_node(dir, block,
1302 (struct ext4_dir_entry *)bh->b_data) &&
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001303 !ext4_dirent_csum_verify(dir,
1304 (struct ext4_dir_entry *)bh->b_data)) {
1305 EXT4_ERROR_INODE(dir, "checksumming directory "
1306 "block %lu", (unsigned long)block);
1307 brelse(bh);
1308 goto next;
1309 }
1310 set_buffer_verified(bh);
Theodore Ts'of702ba02008-09-22 15:21:01 -04001311 i = search_dirblock(bh, dir, d_name,
Mingming Cao617ba132006-10-11 01:20:53 -07001312 block << EXT4_BLOCK_SIZE_BITS(sb), res_dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001313 if (i == 1) {
Mingming Cao617ba132006-10-11 01:20:53 -07001314 EXT4_I(dir)->i_dir_start_lookup = block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001315 ret = bh;
1316 goto cleanup_and_exit;
1317 } else {
1318 brelse(bh);
1319 if (i < 0)
1320 goto cleanup_and_exit;
1321 }
1322 next:
1323 if (++block >= nblocks)
1324 block = 0;
1325 } while (block != start);
1326
1327 /*
1328 * If the directory has grown while we were searching, then
1329 * search the last part of the directory before giving up.
1330 */
1331 block = nblocks;
Mingming Cao617ba132006-10-11 01:20:53 -07001332 nblocks = dir->i_size >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001333 if (block < nblocks) {
1334 start = 0;
1335 goto restart;
1336 }
1337
1338cleanup_and_exit:
1339 /* Clean up the read-ahead blocks */
1340 for (; ra_ptr < ra_max; ra_ptr++)
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001341 brelse(bh_use[ra_ptr]);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001342 return ret;
1343}
1344
Theodore Ts'of702ba02008-09-22 15:21:01 -04001345static struct buffer_head * ext4_dx_find_entry(struct inode *dir, const struct qstr *d_name,
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001346 struct ext4_dir_entry_2 **res_dir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001347{
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001348 struct super_block * sb = dir->i_sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001349 struct dx_hash_info hinfo;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001350 struct dx_frame frames[2], *frame;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001351 struct buffer_head *bh;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001352 ext4_lblk_t block;
Theodore Ts'odd73b5d2014-08-29 20:52:17 -04001353 int retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001354
Theodore Ts'odd73b5d2014-08-29 20:52:17 -04001355 frame = dx_probe(d_name, dir, &hinfo, frames);
1356 if (IS_ERR(frame))
1357 return (struct buffer_head *) frame;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001358 do {
1359 block = dx_get_block(frame->at);
Theodore Ts'odc6982f2013-02-14 23:59:26 -05001360 bh = ext4_read_dirblock(dir, block, DIRENT);
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001361 if (IS_ERR(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001362 goto errout;
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001363
Theodore Ts'o7845c042010-10-27 21:30:08 -04001364 retval = search_dirblock(bh, dir, d_name,
1365 block << EXT4_BLOCK_SIZE_BITS(sb),
1366 res_dir);
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001367 if (retval == 1)
1368 goto success;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001369 brelse(bh);
Theodore Ts'o7845c042010-10-27 21:30:08 -04001370 if (retval == -1) {
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001371 bh = ERR_PTR(ERR_BAD_DX_DIR);
Theodore Ts'o7845c042010-10-27 21:30:08 -04001372 goto errout;
1373 }
1374
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001375 /* Check to see if we should continue to search */
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001376 retval = ext4_htree_next_block(dir, hinfo.hash, frame,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001377 frames, NULL);
1378 if (retval < 0) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05001379 ext4_warning(sb,
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001380 "error %d reading index page in directory #%lu",
1381 retval, dir->i_ino);
1382 bh = ERR_PTR(retval);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001383 goto errout;
1384 }
1385 } while (retval == 1);
1386
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001387 bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001388errout:
Bernd Schubert265c6a02011-07-16 19:41:23 -04001389 dxtrace(printk(KERN_DEBUG "%s not found\n", d_name->name));
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001390success:
1391 dx_release(frames);
1392 return bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001393}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001394
Al Viro00cd8dd2012-06-10 17:13:09 -04001395static struct dentry *ext4_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001396{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001397 struct inode *inode;
1398 struct ext4_dir_entry_2 *de;
1399 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001400
Mingming Cao617ba132006-10-11 01:20:53 -07001401 if (dentry->d_name.len > EXT4_NAME_LEN)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001402 return ERR_PTR(-ENAMETOOLONG);
1403
Tao Ma32f7f222012-12-10 14:06:01 -05001404 bh = ext4_find_entry(dir, &dentry->d_name, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04001405 if (IS_ERR(bh))
1406 return (struct dentry *) bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001407 inode = NULL;
1408 if (bh) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001409 __u32 ino = le32_to_cpu(de->inode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001410 brelse(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07001411 if (!ext4_valid_inum(dir->i_sb, ino)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001412 EXT4_ERROR_INODE(dir, "bad inode number: %u", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -08001413 return ERR_PTR(-EIO);
Vasily Averina6c15c22007-07-15 23:40:46 -07001414 }
Andreas Dilger7e936b72012-05-28 17:02:25 -04001415 if (unlikely(ino == dir->i_ino)) {
David Howellsa34e15c2014-01-06 14:04:23 -05001416 EXT4_ERROR_INODE(dir, "'%pd' linked to parent dir",
1417 dentry);
Andreas Dilger7e936b72012-05-28 17:02:25 -04001418 return ERR_PTR(-EIO);
1419 }
David Howells1d1fe1e2008-02-07 00:15:37 -08001420 inode = ext4_iget(dir->i_sb, ino);
Al Viroa9049372011-07-08 21:20:11 -04001421 if (inode == ERR_PTR(-ESTALE)) {
1422 EXT4_ERROR_INODE(dir,
1423 "deleted inode referenced: %u",
1424 ino);
1425 return ERR_PTR(-EIO);
Bryan Donlane6f009b2009-02-22 21:20:25 -05001426 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001427 }
1428 return d_splice_alias(inode, dentry);
1429}
1430
1431
Mingming Cao617ba132006-10-11 01:20:53 -07001432struct dentry *ext4_get_parent(struct dentry *child)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001433{
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001434 __u32 ino;
Linus Torvalds26fe5752012-05-10 13:14:12 -07001435 static const struct qstr dotdot = QSTR_INIT("..", 2);
Mingming Cao617ba132006-10-11 01:20:53 -07001436 struct ext4_dir_entry_2 * de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001437 struct buffer_head *bh;
1438
Tao Ma32f7f222012-12-10 14:06:01 -05001439 bh = ext4_find_entry(child->d_inode, &dotdot, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04001440 if (IS_ERR(bh))
1441 return (struct dentry *) bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001442 if (!bh)
1443 return ERR_PTR(-ENOENT);
1444 ino = le32_to_cpu(de->inode);
1445 brelse(bh);
1446
Mingming Cao617ba132006-10-11 01:20:53 -07001447 if (!ext4_valid_inum(child->d_inode->i_sb, ino)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001448 EXT4_ERROR_INODE(child->d_inode,
1449 "bad parent inode number: %u", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -08001450 return ERR_PTR(-EIO);
Vasily Averina6c15c22007-07-15 23:40:46 -07001451 }
1452
Christoph Hellwig44003722008-08-11 15:49:04 +02001453 return d_obtain_alias(ext4_iget(child->d_inode->i_sb, ino));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001454}
1455
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001456/*
1457 * Move count entries from end of map between two memory locations.
1458 * Returns pointer to last entry moved.
1459 */
Mingming Cao617ba132006-10-11 01:20:53 -07001460static struct ext4_dir_entry_2 *
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001461dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count,
1462 unsigned blocksize)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001463{
1464 unsigned rec_len = 0;
1465
1466 while (count--) {
Theodore Ts'o60e66792010-05-17 07:00:00 -04001467 struct ext4_dir_entry_2 *de = (struct ext4_dir_entry_2 *)
Toshiyuki Okajima9aee2282009-06-08 12:41:35 -04001468 (from + (map->offs<<2));
Mingming Cao617ba132006-10-11 01:20:53 -07001469 rec_len = EXT4_DIR_REC_LEN(de->name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001470 memcpy (to, de, rec_len);
Mingming Cao617ba132006-10-11 01:20:53 -07001471 ((struct ext4_dir_entry_2 *) to)->rec_len =
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001472 ext4_rec_len_to_disk(rec_len, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001473 de->inode = 0;
1474 map++;
1475 to += rec_len;
1476 }
Mingming Cao617ba132006-10-11 01:20:53 -07001477 return (struct ext4_dir_entry_2 *) (to - rec_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001478}
1479
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001480/*
1481 * Compact each dir entry in the range to the minimal rec_len.
1482 * Returns pointer to last entry in range.
1483 */
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001484static struct ext4_dir_entry_2* dx_pack_dirents(char *base, unsigned blocksize)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001485{
Mingming Cao617ba132006-10-11 01:20:53 -07001486 struct ext4_dir_entry_2 *next, *to, *prev, *de = (struct ext4_dir_entry_2 *) base;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001487 unsigned rec_len = 0;
1488
1489 prev = to = de;
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001490 while ((char*)de < base + blocksize) {
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001491 next = ext4_next_entry(de, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001492 if (de->inode && de->name_len) {
Mingming Cao617ba132006-10-11 01:20:53 -07001493 rec_len = EXT4_DIR_REC_LEN(de->name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001494 if (de > to)
1495 memmove(to, de, rec_len);
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001496 to->rec_len = ext4_rec_len_to_disk(rec_len, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001497 prev = to;
Mingming Cao617ba132006-10-11 01:20:53 -07001498 to = (struct ext4_dir_entry_2 *) (((char *) to) + rec_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001499 }
1500 de = next;
1501 }
1502 return prev;
1503}
1504
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001505/*
1506 * Split a full leaf block to make room for a new dir entry.
1507 * Allocate a new block, and move entries so that they are approx. equally full.
1508 * Returns pointer to de in block into which the new entry will be inserted.
1509 */
Mingming Cao617ba132006-10-11 01:20:53 -07001510static struct ext4_dir_entry_2 *do_split(handle_t *handle, struct inode *dir,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001511 struct buffer_head **bh,struct dx_frame *frame,
Theodore Ts'of8b3b592014-08-29 20:52:18 -04001512 struct dx_hash_info *hinfo)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001513{
1514 unsigned blocksize = dir->i_sb->s_blocksize;
1515 unsigned count, continued;
1516 struct buffer_head *bh2;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001517 ext4_lblk_t newblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001518 u32 hash2;
1519 struct dx_map_entry *map;
1520 char *data1 = (*bh)->b_data, *data2;
Theodore Ts'o59e315b2008-12-06 16:58:39 -05001521 unsigned split, move, size;
Mingming Cao617ba132006-10-11 01:20:53 -07001522 struct ext4_dir_entry_2 *de = NULL, *de2;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001523 struct ext4_dir_entry_tail *t;
1524 int csum_size = 0;
Theodore Ts'o59e315b2008-12-06 16:58:39 -05001525 int err = 0, i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001526
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001527 if (EXT4_HAS_RO_COMPAT_FEATURE(dir->i_sb,
1528 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
1529 csum_size = sizeof(struct ext4_dir_entry_tail);
1530
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001531 bh2 = ext4_append(handle, dir, &newblock);
1532 if (IS_ERR(bh2)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001533 brelse(*bh);
1534 *bh = NULL;
Theodore Ts'of8b3b592014-08-29 20:52:18 -04001535 return (struct ext4_dir_entry_2 *) bh2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001536 }
1537
1538 BUFFER_TRACE(*bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001539 err = ext4_journal_get_write_access(handle, *bh);
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001540 if (err)
1541 goto journal_error;
1542
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001543 BUFFER_TRACE(frame->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001544 err = ext4_journal_get_write_access(handle, frame->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001545 if (err)
1546 goto journal_error;
1547
1548 data2 = bh2->b_data;
1549
1550 /* create map in the end of data2 block */
1551 map = (struct dx_map_entry *) (data2 + blocksize);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001552 count = dx_make_map((struct ext4_dir_entry_2 *) data1,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001553 blocksize, hinfo, map);
1554 map -= count;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001555 dx_sort_map(map, count);
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001556 /* Split the existing block in the middle, size-wise */
1557 size = 0;
1558 move = 0;
1559 for (i = count-1; i >= 0; i--) {
1560 /* is more than half of this entry in 2nd half of the block? */
1561 if (size + map[i].size/2 > blocksize/2)
1562 break;
1563 size += map[i].size;
1564 move++;
1565 }
1566 /* map index at which we will split */
1567 split = count - move;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001568 hash2 = map[split].hash;
1569 continued = hash2 == map[split - 1].hash;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001570 dxtrace(printk(KERN_INFO "Split block %lu at %x, %i/%i\n",
1571 (unsigned long)dx_get_block(frame->at),
1572 hash2, split, count-split));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001573
1574 /* Fancy dance to stay within two buffers */
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001575 de2 = dx_move_dirents(data1, data2, map + split, count - split, blocksize);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001576 de = dx_pack_dirents(data1, blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001577 de->rec_len = ext4_rec_len_to_disk(data1 + (blocksize - csum_size) -
1578 (char *) de,
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001579 blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001580 de2->rec_len = ext4_rec_len_to_disk(data2 + (blocksize - csum_size) -
1581 (char *) de2,
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001582 blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001583 if (csum_size) {
1584 t = EXT4_DIRENT_TAIL(data2, blocksize);
1585 initialize_dirent_tail(t, blocksize);
1586
1587 t = EXT4_DIRENT_TAIL(data1, blocksize);
1588 initialize_dirent_tail(t, blocksize);
1589 }
1590
Mingming Cao617ba132006-10-11 01:20:53 -07001591 dxtrace(dx_show_leaf (hinfo, (struct ext4_dir_entry_2 *) data1, blocksize, 1));
1592 dxtrace(dx_show_leaf (hinfo, (struct ext4_dir_entry_2 *) data2, blocksize, 1));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001593
1594 /* Which block gets the new entry? */
Theodore Ts'of8b3b592014-08-29 20:52:18 -04001595 if (hinfo->hash >= hash2) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001596 swap(*bh, bh2);
1597 de = de2;
1598 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001599 dx_insert_block(frame, hash2 + continued, newblock);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001600 err = ext4_handle_dirty_dirent_node(handle, dir, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001601 if (err)
1602 goto journal_error;
Darrick J. Wongdbe89442012-04-29 18:39:10 -04001603 err = ext4_handle_dirty_dx_node(handle, dir, frame->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001604 if (err)
1605 goto journal_error;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001606 brelse(bh2);
1607 dxtrace(dx_show_index("frame", frame->entries));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001608 return de;
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001609
1610journal_error:
1611 brelse(*bh);
1612 brelse(bh2);
1613 *bh = NULL;
1614 ext4_std_error(dir->i_sb, err);
Theodore Ts'of8b3b592014-08-29 20:52:18 -04001615 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001616}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001617
Tao Ma978fef92012-12-10 14:05:58 -05001618int ext4_find_dest_de(struct inode *dir, struct inode *inode,
1619 struct buffer_head *bh,
1620 void *buf, int buf_size,
1621 const char *name, int namelen,
1622 struct ext4_dir_entry_2 **dest_de)
1623{
1624 struct ext4_dir_entry_2 *de;
1625 unsigned short reclen = EXT4_DIR_REC_LEN(namelen);
1626 int nlen, rlen;
1627 unsigned int offset = 0;
1628 char *top;
1629
1630 de = (struct ext4_dir_entry_2 *)buf;
1631 top = buf + buf_size - reclen;
1632 while ((char *) de <= top) {
1633 if (ext4_check_dir_entry(dir, NULL, de, bh,
1634 buf, buf_size, offset))
1635 return -EIO;
1636 if (ext4_match(namelen, name, de))
1637 return -EEXIST;
1638 nlen = EXT4_DIR_REC_LEN(de->name_len);
1639 rlen = ext4_rec_len_from_disk(de->rec_len, buf_size);
1640 if ((de->inode ? rlen - nlen : rlen) >= reclen)
1641 break;
1642 de = (struct ext4_dir_entry_2 *)((char *)de + rlen);
1643 offset += rlen;
1644 }
1645 if ((char *) de > top)
1646 return -ENOSPC;
1647
1648 *dest_de = de;
1649 return 0;
1650}
1651
1652void ext4_insert_dentry(struct inode *inode,
1653 struct ext4_dir_entry_2 *de,
1654 int buf_size,
1655 const char *name, int namelen)
1656{
1657
1658 int nlen, rlen;
1659
1660 nlen = EXT4_DIR_REC_LEN(de->name_len);
1661 rlen = ext4_rec_len_from_disk(de->rec_len, buf_size);
1662 if (de->inode) {
1663 struct ext4_dir_entry_2 *de1 =
1664 (struct ext4_dir_entry_2 *)((char *)de + nlen);
1665 de1->rec_len = ext4_rec_len_to_disk(rlen - nlen, buf_size);
1666 de->rec_len = ext4_rec_len_to_disk(nlen, buf_size);
1667 de = de1;
1668 }
1669 de->file_type = EXT4_FT_UNKNOWN;
1670 de->inode = cpu_to_le32(inode->i_ino);
1671 ext4_set_de_type(inode->i_sb, de, inode->i_mode);
1672 de->name_len = namelen;
1673 memcpy(de->name, name, namelen);
1674}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001675/*
1676 * Add a new entry into a directory (leaf) block. If de is non-NULL,
1677 * it points to a directory entry which is guaranteed to be large
1678 * enough for new directory entry. If de is NULL, then
1679 * add_dirent_to_buf will attempt search the directory block for
1680 * space. It will return -ENOSPC if no space is available, and -EIO
1681 * and -EEXIST if directory entry already exists.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001682 */
1683static int add_dirent_to_buf(handle_t *handle, struct dentry *dentry,
Mingming Cao617ba132006-10-11 01:20:53 -07001684 struct inode *inode, struct ext4_dir_entry_2 *de,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001685 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001686{
1687 struct inode *dir = dentry->d_parent->d_inode;
1688 const char *name = dentry->d_name.name;
1689 int namelen = dentry->d_name.len;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001690 unsigned int blocksize = dir->i_sb->s_blocksize;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001691 int csum_size = 0;
Tao Ma978fef92012-12-10 14:05:58 -05001692 int err;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001693
1694 if (EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
1695 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
1696 csum_size = sizeof(struct ext4_dir_entry_tail);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001697
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001698 if (!de) {
Tao Ma978fef92012-12-10 14:05:58 -05001699 err = ext4_find_dest_de(dir, inode,
1700 bh, bh->b_data, blocksize - csum_size,
1701 name, namelen, &de);
1702 if (err)
1703 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001704 }
1705 BUFFER_TRACE(bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001706 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001707 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07001708 ext4_std_error(dir->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001709 return err;
1710 }
1711
1712 /* By now the buffer is marked for journaling */
Tao Ma978fef92012-12-10 14:05:58 -05001713 ext4_insert_dentry(inode, de, blocksize, name, namelen);
1714
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001715 /*
1716 * XXX shouldn't update any times until successful
1717 * completion of syscall, but too many callers depend
1718 * on this.
1719 *
1720 * XXX similarly, too many callers depend on
Mingming Cao617ba132006-10-11 01:20:53 -07001721 * ext4_new_inode() setting the times, but error
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001722 * recovery deletes the inode, so the worst that can
1723 * happen is that the times are slightly out of date
1724 * and/or different from the directory change time.
1725 */
Kalpak Shahef7f3832007-07-18 09:15:20 -04001726 dir->i_mtime = dir->i_ctime = ext4_current_time(dir);
Mingming Cao617ba132006-10-11 01:20:53 -07001727 ext4_update_dx_flag(dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001728 dir->i_version++;
Mingming Cao617ba132006-10-11 01:20:53 -07001729 ext4_mark_inode_dirty(handle, dir);
Frank Mayhar03901312009-01-07 00:06:22 -05001730 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001731 err = ext4_handle_dirty_dirent_node(handle, dir, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001732 if (err)
Mingming Cao617ba132006-10-11 01:20:53 -07001733 ext4_std_error(dir->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001734 return 0;
1735}
1736
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001737/*
1738 * This converts a one block unindexed directory to a 3 block indexed
1739 * directory, and adds the dentry to the indexed directory.
1740 */
1741static int make_indexed_dir(handle_t *handle, struct dentry *dentry,
1742 struct inode *inode, struct buffer_head *bh)
1743{
1744 struct inode *dir = dentry->d_parent->d_inode;
1745 const char *name = dentry->d_name.name;
1746 int namelen = dentry->d_name.len;
1747 struct buffer_head *bh2;
1748 struct dx_root *root;
1749 struct dx_frame frames[2], *frame;
1750 struct dx_entry *entries;
Mingming Cao617ba132006-10-11 01:20:53 -07001751 struct ext4_dir_entry_2 *de, *de2;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001752 struct ext4_dir_entry_tail *t;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001753 char *data1, *top;
1754 unsigned len;
1755 int retval;
1756 unsigned blocksize;
1757 struct dx_hash_info hinfo;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001758 ext4_lblk_t block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001759 struct fake_dirent *fde;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001760 int csum_size = 0;
1761
1762 if (EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
1763 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
1764 csum_size = sizeof(struct ext4_dir_entry_tail);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001765
1766 blocksize = dir->i_sb->s_blocksize;
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001767 dxtrace(printk(KERN_DEBUG "Creating index: inode %lu\n", dir->i_ino));
liang xie5d601252014-05-12 22:06:43 -04001768 BUFFER_TRACE(bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001769 retval = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001770 if (retval) {
Mingming Cao617ba132006-10-11 01:20:53 -07001771 ext4_std_error(dir->i_sb, retval);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001772 brelse(bh);
1773 return retval;
1774 }
1775 root = (struct dx_root *) bh->b_data;
1776
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001777 /* The 0th block becomes the root, move the dirents out */
1778 fde = &root->dotdot;
1779 de = (struct ext4_dir_entry_2 *)((char *)fde +
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001780 ext4_rec_len_from_disk(fde->rec_len, blocksize));
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001781 if ((char *) de >= (((char *) root) + blocksize)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001782 EXT4_ERROR_INODE(dir, "invalid rec_len for '..'");
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001783 brelse(bh);
1784 return -EIO;
1785 }
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001786 len = ((char *) root) + (blocksize - csum_size) - (char *) de;
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001787
1788 /* Allocate new block for the 0th block's dirents */
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001789 bh2 = ext4_append(handle, dir, &block);
1790 if (IS_ERR(bh2)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001791 brelse(bh);
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001792 return PTR_ERR(bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001793 }
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04001794 ext4_set_inode_flag(dir, EXT4_INODE_INDEX);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001795 data1 = bh2->b_data;
1796
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001797 memcpy (data1, de, len);
Mingming Cao617ba132006-10-11 01:20:53 -07001798 de = (struct ext4_dir_entry_2 *) data1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001799 top = data1 + len;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001800 while ((char *)(de2 = ext4_next_entry(de, blocksize)) < top)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001801 de = de2;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001802 de->rec_len = ext4_rec_len_to_disk(data1 + (blocksize - csum_size) -
1803 (char *) de,
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001804 blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001805
1806 if (csum_size) {
1807 t = EXT4_DIRENT_TAIL(data1, blocksize);
1808 initialize_dirent_tail(t, blocksize);
1809 }
1810
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001811 /* Initialize the root; the dot dirents already exist */
Mingming Cao617ba132006-10-11 01:20:53 -07001812 de = (struct ext4_dir_entry_2 *) (&root->dotdot);
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001813 de->rec_len = ext4_rec_len_to_disk(blocksize - EXT4_DIR_REC_LEN(2),
1814 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001815 memset (&root->info, 0, sizeof(root->info));
1816 root->info.info_length = sizeof(root->info);
Mingming Cao617ba132006-10-11 01:20:53 -07001817 root->info.hash_version = EXT4_SB(dir->i_sb)->s_def_hash_version;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001818 entries = root->entries;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001819 dx_set_block(entries, 1);
1820 dx_set_count(entries, 1);
1821 dx_set_limit(entries, dx_root_limit(dir, sizeof(root->info)));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001822
1823 /* Initialize as for dx_probe */
1824 hinfo.hash_version = root->info.hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -04001825 if (hinfo.hash_version <= DX_HASH_TEA)
1826 hinfo.hash_version += EXT4_SB(dir->i_sb)->s_hash_unsigned;
Mingming Cao617ba132006-10-11 01:20:53 -07001827 hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed;
1828 ext4fs_dirhash(name, namelen, &hinfo);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001829 frame = frames;
1830 frame->entries = entries;
1831 frame->at = entries;
1832 frame->bh = bh;
1833 bh = bh2;
Allison Henderson6976a6f2011-05-15 00:19:41 -04001834
Darrick J. Wongdbe89442012-04-29 18:39:10 -04001835 ext4_handle_dirty_dx_node(handle, dir, frame->bh);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001836 ext4_handle_dirty_dirent_node(handle, dir, bh);
Allison Henderson6976a6f2011-05-15 00:19:41 -04001837
Theodore Ts'of8b3b592014-08-29 20:52:18 -04001838 de = do_split(handle,dir, &bh, frame, &hinfo);
1839 if (IS_ERR(de)) {
Jan Kara7ad8e4e2011-05-03 11:05:55 -04001840 /*
1841 * Even if the block split failed, we have to properly write
1842 * out all the changes we did so far. Otherwise we can end up
1843 * with corrupted filesystem.
1844 */
1845 ext4_mark_inode_dirty(handle, dir);
Jan Kara7ad8e4e2011-05-03 11:05:55 -04001846 dx_release(frames);
Theodore Ts'of8b3b592014-08-29 20:52:18 -04001847 return PTR_ERR(de);
Jan Kara7ad8e4e2011-05-03 11:05:55 -04001848 }
1849 dx_release(frames);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001850
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001851 retval = add_dirent_to_buf(handle, dentry, inode, de, bh);
1852 brelse(bh);
1853 return retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001854}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001855
1856/*
Mingming Cao617ba132006-10-11 01:20:53 -07001857 * ext4_add_entry()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001858 *
1859 * adds a file entry to the specified directory, using the same
Mingming Cao617ba132006-10-11 01:20:53 -07001860 * semantics as ext4_find_entry(). It returns NULL if it failed.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001861 *
1862 * NOTE!! The inode part of 'de' is left at 0 - which means you
1863 * may not sleep between calling this and putting something into
1864 * the entry, as someone else might have used it while you slept.
1865 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001866static int ext4_add_entry(handle_t *handle, struct dentry *dentry,
1867 struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001868{
1869 struct inode *dir = dentry->d_parent->d_inode;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001870 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -07001871 struct ext4_dir_entry_2 *de;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001872 struct ext4_dir_entry_tail *t;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001873 struct super_block *sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001874 int retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001875 int dx_fallback=0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001876 unsigned blocksize;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001877 ext4_lblk_t block, blocks;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001878 int csum_size = 0;
1879
1880 if (EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
1881 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
1882 csum_size = sizeof(struct ext4_dir_entry_tail);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001883
1884 sb = dir->i_sb;
1885 blocksize = sb->s_blocksize;
1886 if (!dentry->d_name.len)
1887 return -EINVAL;
Tao Ma3c47d542012-12-10 14:05:59 -05001888
1889 if (ext4_has_inline_data(dir)) {
1890 retval = ext4_try_add_inline_entry(handle, dentry, inode);
1891 if (retval < 0)
1892 return retval;
1893 if (retval == 1) {
1894 retval = 0;
1895 return retval;
1896 }
1897 }
1898
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001899 if (is_dx(dir)) {
Mingming Cao617ba132006-10-11 01:20:53 -07001900 retval = ext4_dx_add_entry(handle, dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001901 if (!retval || (retval != ERR_BAD_DX_DIR))
1902 return retval;
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04001903 ext4_clear_inode_flag(dir, EXT4_INODE_INDEX);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001904 dx_fallback++;
Mingming Cao617ba132006-10-11 01:20:53 -07001905 ext4_mark_inode_dirty(handle, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001906 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001907 blocks = dir->i_size >> sb->s_blocksize_bits;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001908 for (block = 0; block < blocks; block++) {
Theodore Ts'odc6982f2013-02-14 23:59:26 -05001909 bh = ext4_read_dirblock(dir, block, DIRENT);
1910 if (IS_ERR(bh))
1911 return PTR_ERR(bh);
1912
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001913 retval = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001914 if (retval != -ENOSPC) {
1915 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001916 return retval;
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001917 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001918
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001919 if (blocks == 1 && !dx_fallback &&
Theodore Ts'o1e424a32009-11-08 15:45:44 -05001920 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_DIR_INDEX))
1921 return make_indexed_dir(handle, dentry, inode, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001922 brelse(bh);
1923 }
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001924 bh = ext4_append(handle, dir, &block);
1925 if (IS_ERR(bh))
1926 return PTR_ERR(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07001927 de = (struct ext4_dir_entry_2 *) bh->b_data;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001928 de->inode = 0;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001929 de->rec_len = ext4_rec_len_to_disk(blocksize - csum_size, blocksize);
1930
1931 if (csum_size) {
1932 t = EXT4_DIRENT_TAIL(bh->b_data, blocksize);
1933 initialize_dirent_tail(t, blocksize);
1934 }
1935
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001936 retval = add_dirent_to_buf(handle, dentry, inode, de, bh);
1937 brelse(bh);
Frank Mayhar14ece102010-05-17 08:00:00 -04001938 if (retval == 0)
1939 ext4_set_inode_state(inode, EXT4_STATE_NEWENTRY);
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001940 return retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001941}
1942
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001943/*
1944 * Returns 0 for success, or a negative error value
1945 */
Mingming Cao617ba132006-10-11 01:20:53 -07001946static int ext4_dx_add_entry(handle_t *handle, struct dentry *dentry,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001947 struct inode *inode)
1948{
1949 struct dx_frame frames[2], *frame;
1950 struct dx_entry *entries, *at;
1951 struct dx_hash_info hinfo;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001952 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001953 struct inode *dir = dentry->d_parent->d_inode;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001954 struct super_block *sb = dir->i_sb;
Mingming Cao617ba132006-10-11 01:20:53 -07001955 struct ext4_dir_entry_2 *de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001956 int err;
1957
Theodore Ts'odd73b5d2014-08-29 20:52:17 -04001958 frame = dx_probe(&dentry->d_name, dir, &hinfo, frames);
1959 if (IS_ERR(frame))
1960 return PTR_ERR(frame);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001961 entries = frame->entries;
1962 at = frame->at;
Theodore Ts'odc6982f2013-02-14 23:59:26 -05001963 bh = ext4_read_dirblock(dir, dx_get_block(frame->at), DIRENT);
1964 if (IS_ERR(bh)) {
1965 err = PTR_ERR(bh);
1966 bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001967 goto cleanup;
Carlos Maiolino6d1ab102012-09-27 09:31:33 -04001968 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001969
1970 BUFFER_TRACE(bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001971 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001972 if (err)
1973 goto journal_error;
1974
1975 err = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001976 if (err != -ENOSPC)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001977 goto cleanup;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001978
1979 /* Block full, should compress but for now just split */
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001980 dxtrace(printk(KERN_DEBUG "using %u of %u node entries\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001981 dx_get_count(entries), dx_get_limit(entries)));
1982 /* Need to split index? */
1983 if (dx_get_count(entries) == dx_get_limit(entries)) {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001984 ext4_lblk_t newblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001985 unsigned icount = dx_get_count(entries);
1986 int levels = frame - frames;
1987 struct dx_entry *entries2;
1988 struct dx_node *node2;
1989 struct buffer_head *bh2;
1990
1991 if (levels && (dx_get_count(frames->entries) ==
1992 dx_get_limit(frames->entries))) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05001993 ext4_warning(sb, "Directory index full!");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001994 err = -ENOSPC;
1995 goto cleanup;
1996 }
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001997 bh2 = ext4_append(handle, dir, &newblock);
1998 if (IS_ERR(bh2)) {
1999 err = PTR_ERR(bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002000 goto cleanup;
Theodore Ts'o0f70b402013-02-15 03:35:57 -05002001 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002002 node2 = (struct dx_node *)(bh2->b_data);
2003 entries2 = node2->entries;
Andreas Schlick1f7bebb2009-09-10 23:16:07 -04002004 memset(&node2->fake, 0, sizeof(struct fake_dirent));
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002005 node2->fake.rec_len = ext4_rec_len_to_disk(sb->s_blocksize,
2006 sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002007 BUFFER_TRACE(frame->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07002008 err = ext4_journal_get_write_access(handle, frame->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002009 if (err)
2010 goto journal_error;
2011 if (levels) {
2012 unsigned icount1 = icount/2, icount2 = icount - icount1;
2013 unsigned hash2 = dx_get_hash(entries + icount1);
Theodore Ts'o4776004f2008-09-08 23:00:52 -04002014 dxtrace(printk(KERN_DEBUG "Split index %i/%i\n",
2015 icount1, icount2));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002016
2017 BUFFER_TRACE(frame->bh, "get_write_access"); /* index root */
Mingming Cao617ba132006-10-11 01:20:53 -07002018 err = ext4_journal_get_write_access(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002019 frames[0].bh);
2020 if (err)
2021 goto journal_error;
2022
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002023 memcpy((char *) entries2, (char *) (entries + icount1),
2024 icount2 * sizeof(struct dx_entry));
2025 dx_set_count(entries, icount1);
2026 dx_set_count(entries2, icount2);
2027 dx_set_limit(entries2, dx_node_limit(dir));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002028
2029 /* Which index block gets the new entry? */
2030 if (at - entries >= icount1) {
2031 frame->at = at = at - entries - icount1 + entries2;
2032 frame->entries = entries = entries2;
2033 swap(frame->bh, bh2);
2034 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002035 dx_insert_block(frames + 0, hash2, newblock);
2036 dxtrace(dx_show_index("node", frames[1].entries));
2037 dxtrace(dx_show_index("node",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002038 ((struct dx_node *) bh2->b_data)->entries));
Darrick J. Wongdbe89442012-04-29 18:39:10 -04002039 err = ext4_handle_dirty_dx_node(handle, dir, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002040 if (err)
2041 goto journal_error;
2042 brelse (bh2);
2043 } else {
Theodore Ts'o4776004f2008-09-08 23:00:52 -04002044 dxtrace(printk(KERN_DEBUG
2045 "Creating second level index...\n"));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002046 memcpy((char *) entries2, (char *) entries,
2047 icount * sizeof(struct dx_entry));
2048 dx_set_limit(entries2, dx_node_limit(dir));
2049
2050 /* Set up root */
2051 dx_set_count(entries, 1);
2052 dx_set_block(entries + 0, newblock);
2053 ((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels = 1;
2054
2055 /* Add new access path frame */
2056 frame = frames + 1;
2057 frame->at = at = at - entries + entries2;
2058 frame->entries = entries = entries2;
2059 frame->bh = bh2;
Mingming Cao617ba132006-10-11 01:20:53 -07002060 err = ext4_journal_get_write_access(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002061 frame->bh);
2062 if (err)
2063 goto journal_error;
2064 }
Darrick J. Wongdbe89442012-04-29 18:39:10 -04002065 err = ext4_handle_dirty_dx_node(handle, dir, frames[0].bh);
Theodore Ts'ob4097142011-01-10 12:46:59 -05002066 if (err) {
2067 ext4_std_error(inode->i_sb, err);
2068 goto cleanup;
2069 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002070 }
Theodore Ts'of8b3b592014-08-29 20:52:18 -04002071 de = do_split(handle, dir, &bh, frame, &hinfo);
2072 if (IS_ERR(de)) {
2073 err = PTR_ERR(de);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002074 goto cleanup;
Theodore Ts'of8b3b592014-08-29 20:52:18 -04002075 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002076 err = add_dirent_to_buf(handle, dentry, inode, de, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002077 goto cleanup;
2078
2079journal_error:
Mingming Cao617ba132006-10-11 01:20:53 -07002080 ext4_std_error(dir->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002081cleanup:
Guo Chaob1deefc2013-01-28 21:41:02 -05002082 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002083 dx_release(frames);
2084 return err;
2085}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002086
2087/*
Tao Ma05019a92012-12-10 14:06:00 -05002088 * ext4_generic_delete_entry deletes a directory entry by merging it
2089 * with the previous entry
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002090 */
Tao Ma05019a92012-12-10 14:06:00 -05002091int ext4_generic_delete_entry(handle_t *handle,
2092 struct inode *dir,
2093 struct ext4_dir_entry_2 *de_del,
2094 struct buffer_head *bh,
2095 void *entry_buf,
2096 int buf_size,
2097 int csum_size)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002098{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002099 struct ext4_dir_entry_2 *de, *pde;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002100 unsigned int blocksize = dir->i_sb->s_blocksize;
Tao Ma05019a92012-12-10 14:06:00 -05002101 int i;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002102
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002103 i = 0;
2104 pde = NULL;
Tao Ma05019a92012-12-10 14:06:00 -05002105 de = (struct ext4_dir_entry_2 *)entry_buf;
2106 while (i < buf_size - csum_size) {
Tao Ma226ba972012-12-10 14:05:58 -05002107 if (ext4_check_dir_entry(dir, NULL, de, bh,
2108 bh->b_data, bh->b_size, i))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002109 return -EIO;
2110 if (de == de_del) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002111 if (pde)
Jan Karaa72d7f82008-01-28 23:58:27 -05002112 pde->rec_len = ext4_rec_len_to_disk(
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002113 ext4_rec_len_from_disk(pde->rec_len,
2114 blocksize) +
2115 ext4_rec_len_from_disk(de->rec_len,
2116 blocksize),
2117 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002118 else
2119 de->inode = 0;
2120 dir->i_version++;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002121 return 0;
2122 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002123 i += ext4_rec_len_from_disk(de->rec_len, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002124 pde = de;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002125 de = ext4_next_entry(de, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002126 }
2127 return -ENOENT;
2128}
2129
Tao Ma05019a92012-12-10 14:06:00 -05002130static int ext4_delete_entry(handle_t *handle,
2131 struct inode *dir,
2132 struct ext4_dir_entry_2 *de_del,
2133 struct buffer_head *bh)
2134{
2135 int err, csum_size = 0;
2136
Tao Ma9f40fe52012-12-10 14:06:00 -05002137 if (ext4_has_inline_data(dir)) {
2138 int has_inline_data = 1;
2139 err = ext4_delete_inline_entry(handle, dir, de_del, bh,
2140 &has_inline_data);
2141 if (has_inline_data)
2142 return err;
2143 }
2144
Tao Ma05019a92012-12-10 14:06:00 -05002145 if (EXT4_HAS_RO_COMPAT_FEATURE(dir->i_sb,
2146 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
2147 csum_size = sizeof(struct ext4_dir_entry_tail);
2148
2149 BUFFER_TRACE(bh, "get_write_access");
2150 err = ext4_journal_get_write_access(handle, bh);
2151 if (unlikely(err))
2152 goto out;
2153
2154 err = ext4_generic_delete_entry(handle, dir, de_del,
2155 bh, bh->b_data,
2156 dir->i_sb->s_blocksize, csum_size);
2157 if (err)
2158 goto out;
2159
2160 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
2161 err = ext4_handle_dirty_dirent_node(handle, dir, bh);
2162 if (unlikely(err))
2163 goto out;
2164
2165 return 0;
2166out:
2167 if (err != -ENOENT)
2168 ext4_std_error(dir->i_sb, err);
2169 return err;
2170}
2171
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002172/*
2173 * DIR_NLINK feature is set if 1) nlinks > EXT4_LINK_MAX or 2) nlinks == 2,
2174 * since this indicates that nlinks count was previously 1.
2175 */
2176static void ext4_inc_count(handle_t *handle, struct inode *inode)
2177{
2178 inc_nlink(inode);
2179 if (is_dx(inode) && inode->i_nlink > 1) {
2180 /* limit is 16-bit i_links_count */
2181 if (inode->i_nlink >= EXT4_LINK_MAX || inode->i_nlink == 2) {
Miklos Szeredibfe86842011-10-28 14:13:29 +02002182 set_nlink(inode, 1);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002183 EXT4_SET_RO_COMPAT_FEATURE(inode->i_sb,
2184 EXT4_FEATURE_RO_COMPAT_DIR_NLINK);
2185 }
2186 }
2187}
2188
2189/*
2190 * If a directory had nlink == 1, then we should let it be 1. This indicates
2191 * directory has >EXT4_LINK_MAX subdirs.
2192 */
2193static void ext4_dec_count(handle_t *handle, struct inode *inode)
2194{
Andreas Dilger909a4cf2011-10-26 03:22:31 -04002195 if (!S_ISDIR(inode->i_mode) || inode->i_nlink > 2)
2196 drop_nlink(inode);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002197}
2198
2199
Mingming Cao617ba132006-10-11 01:20:53 -07002200static int ext4_add_nondir(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002201 struct dentry *dentry, struct inode *inode)
2202{
Mingming Cao617ba132006-10-11 01:20:53 -07002203 int err = ext4_add_entry(handle, dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002204 if (!err) {
Mingming Cao617ba132006-10-11 01:20:53 -07002205 ext4_mark_inode_dirty(handle, inode);
Al Viro6b38e842008-12-30 02:03:31 -05002206 unlock_new_inode(inode);
Al Viro8fc37ec2012-07-19 09:18:15 +04002207 d_instantiate(dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002208 return 0;
2209 }
Eric Sandeen731b9a52007-02-10 01:46:16 -08002210 drop_nlink(inode);
Al Viro6b38e842008-12-30 02:03:31 -05002211 unlock_new_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002212 iput(inode);
2213 return err;
2214}
2215
2216/*
2217 * By the time this is called, we already have created
2218 * the directory cache entry for the new file, but it
2219 * is so far negative - it has no inode.
2220 *
2221 * If the create succeeds, we fill in the inode information
2222 * with d_instantiate().
2223 */
Al Viro4acdaf22011-07-26 01:42:34 -04002224static int ext4_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -04002225 bool excl)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002226{
2227 handle_t *handle;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002228 struct inode *inode;
Theodore Ts'o11395752013-02-09 16:27:09 -05002229 int err, credits, retries = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002230
Christoph Hellwig871a2932010-03-03 09:05:07 -05002231 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002232
Theodore Ts'o11395752013-02-09 16:27:09 -05002233 credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002234 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002235retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002236 inode = ext4_new_inode_start_handle(dir, mode, &dentry->d_name, 0,
2237 NULL, EXT4_HT_DIR, credits);
2238 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002239 err = PTR_ERR(inode);
2240 if (!IS_ERR(inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002241 inode->i_op = &ext4_file_inode_operations;
2242 inode->i_fop = &ext4_file_operations;
2243 ext4_set_aops(inode);
2244 err = ext4_add_nondir(handle, dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002245 if (!err && IS_DIRSYNC(dir))
2246 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002247 }
Theodore Ts'o11395752013-02-09 16:27:09 -05002248 if (handle)
2249 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002250 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002251 goto retry;
2252 return err;
2253}
2254
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002255static int ext4_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04002256 umode_t mode, dev_t rdev)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002257{
2258 handle_t *handle;
2259 struct inode *inode;
Theodore Ts'o11395752013-02-09 16:27:09 -05002260 int err, credits, retries = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002261
2262 if (!new_valid_dev(rdev))
2263 return -EINVAL;
2264
Christoph Hellwig871a2932010-03-03 09:05:07 -05002265 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002266
Theodore Ts'o11395752013-02-09 16:27:09 -05002267 credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002268 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002269retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002270 inode = ext4_new_inode_start_handle(dir, mode, &dentry->d_name, 0,
2271 NULL, EXT4_HT_DIR, credits);
2272 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002273 err = PTR_ERR(inode);
2274 if (!IS_ERR(inode)) {
2275 init_special_inode(inode, inode->i_mode, rdev);
Mingming Cao617ba132006-10-11 01:20:53 -07002276 inode->i_op = &ext4_special_inode_operations;
Mingming Cao617ba132006-10-11 01:20:53 -07002277 err = ext4_add_nondir(handle, dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002278 if (!err && IS_DIRSYNC(dir))
2279 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002280 }
Theodore Ts'o11395752013-02-09 16:27:09 -05002281 if (handle)
2282 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002283 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002284 goto retry;
2285 return err;
2286}
2287
Al Viroaf51a2a2013-06-29 13:23:08 +04002288static int ext4_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
2289{
2290 handle_t *handle;
2291 struct inode *inode;
2292 int err, retries = 0;
2293
2294 dquot_initialize(dir);
2295
2296retry:
2297 inode = ext4_new_inode_start_handle(dir, mode,
2298 NULL, 0, NULL,
2299 EXT4_HT_DIR,
2300 EXT4_MAXQUOTAS_INIT_BLOCKS(dir->i_sb) +
2301 4 + EXT4_XATTR_TRANS_BLOCKS);
2302 handle = ext4_journal_current_handle();
2303 err = PTR_ERR(inode);
2304 if (!IS_ERR(inode)) {
2305 inode->i_op = &ext4_file_inode_operations;
2306 inode->i_fop = &ext4_file_operations;
2307 ext4_set_aops(inode);
Zheng Liue94bd342013-07-20 21:58:38 -04002308 d_tmpfile(dentry, inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002309 err = ext4_orphan_add(handle, inode);
2310 if (err)
Miklos Szeredi43ae9e32013-10-10 16:48:19 +02002311 goto err_unlock_inode;
Al Viroaf51a2a2013-06-29 13:23:08 +04002312 mark_inode_dirty(inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002313 unlock_new_inode(inode);
2314 }
2315 if (handle)
2316 ext4_journal_stop(handle);
2317 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
2318 goto retry;
2319 return err;
Miklos Szeredi43ae9e32013-10-10 16:48:19 +02002320err_unlock_inode:
Al Viroaf51a2a2013-06-29 13:23:08 +04002321 ext4_journal_stop(handle);
2322 unlock_new_inode(inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002323 return err;
2324}
2325
Tao Maa774f9c2012-12-10 14:05:57 -05002326struct ext4_dir_entry_2 *ext4_init_dot_dotdot(struct inode *inode,
2327 struct ext4_dir_entry_2 *de,
2328 int blocksize, int csum_size,
2329 unsigned int parent_ino, int dotdot_real_len)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002330{
Tao Maa774f9c2012-12-10 14:05:57 -05002331 de->inode = cpu_to_le32(inode->i_ino);
2332 de->name_len = 1;
2333 de->rec_len = ext4_rec_len_to_disk(EXT4_DIR_REC_LEN(de->name_len),
2334 blocksize);
2335 strcpy(de->name, ".");
2336 ext4_set_de_type(inode->i_sb, de, S_IFDIR);
2337
2338 de = ext4_next_entry(de, blocksize);
2339 de->inode = cpu_to_le32(parent_ino);
2340 de->name_len = 2;
2341 if (!dotdot_real_len)
2342 de->rec_len = ext4_rec_len_to_disk(blocksize -
2343 (csum_size + EXT4_DIR_REC_LEN(1)),
2344 blocksize);
2345 else
2346 de->rec_len = ext4_rec_len_to_disk(
2347 EXT4_DIR_REC_LEN(de->name_len), blocksize);
2348 strcpy(de->name, "..");
2349 ext4_set_de_type(inode->i_sb, de, S_IFDIR);
2350
2351 return ext4_next_entry(de, blocksize);
2352}
2353
2354static int ext4_init_new_dir(handle_t *handle, struct inode *dir,
2355 struct inode *inode)
2356{
Namhyung Kimdabd9912011-01-10 12:11:16 -05002357 struct buffer_head *dir_block = NULL;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002358 struct ext4_dir_entry_2 *de;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002359 struct ext4_dir_entry_tail *t;
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002360 ext4_lblk_t block = 0;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002361 unsigned int blocksize = dir->i_sb->s_blocksize;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002362 int csum_size = 0;
Tao Maa774f9c2012-12-10 14:05:57 -05002363 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002364
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002365 if (EXT4_HAS_RO_COMPAT_FEATURE(dir->i_sb,
2366 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
2367 csum_size = sizeof(struct ext4_dir_entry_tail);
2368
Tao Ma3c47d542012-12-10 14:05:59 -05002369 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
2370 err = ext4_try_create_inline_dir(handle, dir, inode);
2371 if (err < 0 && err != -ENOSPC)
2372 goto out;
2373 if (!err)
2374 goto out;
2375 }
2376
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002377 inode->i_size = 0;
Theodore Ts'o0f70b402013-02-15 03:35:57 -05002378 dir_block = ext4_append(handle, inode, &block);
2379 if (IS_ERR(dir_block))
2380 return PTR_ERR(dir_block);
Tao Maa774f9c2012-12-10 14:05:57 -05002381 BUFFER_TRACE(dir_block, "get_write_access");
2382 err = ext4_journal_get_write_access(handle, dir_block);
2383 if (err)
2384 goto out;
2385 de = (struct ext4_dir_entry_2 *)dir_block->b_data;
2386 ext4_init_dot_dotdot(inode, de, blocksize, csum_size, dir->i_ino, 0);
2387 set_nlink(inode, 2);
2388 if (csum_size) {
2389 t = EXT4_DIRENT_TAIL(dir_block->b_data, blocksize);
2390 initialize_dirent_tail(t, blocksize);
2391 }
2392
2393 BUFFER_TRACE(dir_block, "call ext4_handle_dirty_metadata");
2394 err = ext4_handle_dirty_dirent_node(handle, inode, dir_block);
2395 if (err)
2396 goto out;
2397 set_buffer_verified(dir_block);
2398out:
2399 brelse(dir_block);
2400 return err;
2401}
2402
2403static int ext4_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
2404{
2405 handle_t *handle;
2406 struct inode *inode;
Theodore Ts'o11395752013-02-09 16:27:09 -05002407 int err, credits, retries = 0;
Tao Maa774f9c2012-12-10 14:05:57 -05002408
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002409 if (EXT4_DIR_LINK_MAX(dir))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002410 return -EMLINK;
2411
Christoph Hellwig871a2932010-03-03 09:05:07 -05002412 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002413
Theodore Ts'o11395752013-02-09 16:27:09 -05002414 credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002415 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002416retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002417 inode = ext4_new_inode_start_handle(dir, S_IFDIR | mode,
2418 &dentry->d_name,
2419 0, NULL, EXT4_HT_DIR, credits);
2420 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002421 err = PTR_ERR(inode);
2422 if (IS_ERR(inode))
2423 goto out_stop;
2424
Mingming Cao617ba132006-10-11 01:20:53 -07002425 inode->i_op = &ext4_dir_inode_operations;
2426 inode->i_fop = &ext4_dir_operations;
Tao Maa774f9c2012-12-10 14:05:57 -05002427 err = ext4_init_new_dir(handle, dir, inode);
Namhyung Kimdabd9912011-01-10 12:11:16 -05002428 if (err)
2429 goto out_clear_inode;
Namhyung Kimdabd9912011-01-10 12:11:16 -05002430 err = ext4_mark_inode_dirty(handle, inode);
2431 if (!err)
2432 err = ext4_add_entry(handle, dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002433 if (err) {
Aneesh Kumar K.V4cdeed82008-02-22 06:17:31 -05002434out_clear_inode:
2435 clear_nlink(inode);
Al Viro6b38e842008-12-30 02:03:31 -05002436 unlock_new_inode(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002437 ext4_mark_inode_dirty(handle, inode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002438 iput(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002439 goto out_stop;
2440 }
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002441 ext4_inc_count(handle, dir);
Mingming Cao617ba132006-10-11 01:20:53 -07002442 ext4_update_dx_flag(dir);
Namhyung Kimdabd9912011-01-10 12:11:16 -05002443 err = ext4_mark_inode_dirty(handle, dir);
2444 if (err)
2445 goto out_clear_inode;
Al Viro6b38e842008-12-30 02:03:31 -05002446 unlock_new_inode(inode);
Al Viro8fc37ec2012-07-19 09:18:15 +04002447 d_instantiate(dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002448 if (IS_DIRSYNC(dir))
2449 ext4_handle_sync(handle);
2450
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002451out_stop:
Theodore Ts'o11395752013-02-09 16:27:09 -05002452 if (handle)
2453 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002454 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002455 goto retry;
2456 return err;
2457}
2458
2459/*
2460 * routine to check that the specified directory is empty (for rmdir)
2461 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002462static int empty_dir(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002463{
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002464 unsigned int offset;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002465 struct buffer_head *bh;
2466 struct ext4_dir_entry_2 *de, *de1;
2467 struct super_block *sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002468 int err = 0;
2469
Tao Ma61f86632012-12-10 14:06:01 -05002470 if (ext4_has_inline_data(inode)) {
2471 int has_inline_data = 1;
2472
2473 err = empty_inline_dir(inode, &has_inline_data);
2474 if (has_inline_data)
2475 return err;
2476 }
2477
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002478 sb = inode->i_sb;
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002479 if (inode->i_size < EXT4_DIR_REC_LEN(1) + EXT4_DIR_REC_LEN(2)) {
2480 EXT4_ERROR_INODE(inode, "invalid size");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002481 return 1;
2482 }
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002483 bh = ext4_read_dirblock(inode, 0, EITHER);
2484 if (IS_ERR(bh))
2485 return 1;
2486
Mingming Cao617ba132006-10-11 01:20:53 -07002487 de = (struct ext4_dir_entry_2 *) bh->b_data;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002488 de1 = ext4_next_entry(de, sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002489 if (le32_to_cpu(de->inode) != inode->i_ino ||
2490 !le32_to_cpu(de1->inode) ||
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002491 strcmp(".", de->name) ||
2492 strcmp("..", de1->name)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05002493 ext4_warning(inode->i_sb,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002494 "bad directory (dir #%lu) - no `.' or `..'",
2495 inode->i_ino);
2496 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002497 return 1;
2498 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002499 offset = ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize) +
2500 ext4_rec_len_from_disk(de1->rec_len, sb->s_blocksize);
2501 de = ext4_next_entry(de1, sb->s_blocksize);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002502 while (offset < inode->i_size) {
Dmitry Monakhov236f5ec2014-04-21 14:38:14 -04002503 if ((void *) de >= (void *) (bh->b_data+sb->s_blocksize)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04002504 unsigned int lblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002505 err = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002506 brelse(bh);
Theodore Ts'o24676da2010-05-16 21:00:00 -04002507 lblock = offset >> EXT4_BLOCK_SIZE_BITS(sb);
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002508 bh = ext4_read_dirblock(inode, lblock, EITHER);
2509 if (IS_ERR(bh))
2510 return 1;
Mingming Cao617ba132006-10-11 01:20:53 -07002511 de = (struct ext4_dir_entry_2 *) bh->b_data;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002512 }
Tao Ma226ba972012-12-10 14:05:58 -05002513 if (ext4_check_dir_entry(inode, NULL, de, bh,
2514 bh->b_data, bh->b_size, offset)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002515 de = (struct ext4_dir_entry_2 *)(bh->b_data +
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002516 sb->s_blocksize);
2517 offset = (offset | (sb->s_blocksize - 1)) + 1;
2518 continue;
2519 }
2520 if (le32_to_cpu(de->inode)) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002521 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002522 return 0;
2523 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002524 offset += ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize);
2525 de = ext4_next_entry(de, sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002526 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002527 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002528 return 1;
2529}
2530
Jan Karad745a8c2014-05-26 11:56:53 -04002531/*
2532 * ext4_orphan_add() links an unlinked or truncated inode into a list of
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002533 * such inodes, starting at the superblock, in case we crash before the
2534 * file is closed/deleted, or in case the inode truncate spans multiple
2535 * transactions and the last transaction is not recovered after a crash.
2536 *
2537 * At filesystem recovery time, we walk this list deleting unlinked
Mingming Cao617ba132006-10-11 01:20:53 -07002538 * inodes and truncating linked inodes in ext4_orphan_cleanup().
Jan Karad745a8c2014-05-26 11:56:53 -04002539 *
2540 * Orphan list manipulation functions must be called under i_mutex unless
2541 * we are just creating the inode or deleting it.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002542 */
Mingming Cao617ba132006-10-11 01:20:53 -07002543int ext4_orphan_add(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002544{
2545 struct super_block *sb = inode->i_sb;
Jan Karacd2c0802014-05-26 11:39:17 -04002546 struct ext4_sb_info *sbi = EXT4_SB(sb);
Mingming Cao617ba132006-10-11 01:20:53 -07002547 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002548 int err = 0, rc;
Jan Karad745a8c2014-05-26 11:56:53 -04002549 bool dirty = false;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002550
Jan Karacd2c0802014-05-26 11:39:17 -04002551 if (!sbi->s_journal)
Frank Mayhar03901312009-01-07 00:06:22 -05002552 return 0;
2553
Jan Karad745a8c2014-05-26 11:56:53 -04002554 WARN_ON_ONCE(!(inode->i_state & (I_NEW | I_FREEING)) &&
2555 !mutex_is_locked(&inode->i_mutex));
2556 /*
2557 * Exit early if inode already is on orphan list. This is a big speedup
2558 * since we don't have to contend on the global s_orphan_lock.
2559 */
Mingming Cao617ba132006-10-11 01:20:53 -07002560 if (!list_empty(&EXT4_I(inode)->i_orphan))
Jan Karad745a8c2014-05-26 11:56:53 -04002561 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002562
Lukas Czernerafb86172011-07-11 18:47:04 -04002563 /*
2564 * Orphan handling is only valid for files with data blocks
2565 * being truncated, or files being unlinked. Note that we either
2566 * hold i_mutex, or the inode can not be referenced from outside,
2567 * so i_nlink should not be bumped due to race
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002568 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002569 J_ASSERT((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
2570 S_ISLNK(inode->i_mode)) || inode->i_nlink == 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002571
Jan Karacd2c0802014-05-26 11:39:17 -04002572 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
2573 err = ext4_journal_get_write_access(handle, sbi->s_sbh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002574 if (err)
Jan Karad745a8c2014-05-26 11:56:53 -04002575 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002576
Mingming Cao617ba132006-10-11 01:20:53 -07002577 err = ext4_reserve_inode_write(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002578 if (err)
Jan Karad745a8c2014-05-26 11:56:53 -04002579 goto out;
2580
2581 mutex_lock(&sbi->s_orphan_lock);
Dmitry Monakhov6e3617e2010-03-01 23:29:39 -05002582 /*
2583 * Due to previous errors inode may be already a part of on-disk
2584 * orphan list. If so skip on-disk list modification.
2585 */
Jan Karad745a8c2014-05-26 11:56:53 -04002586 if (!NEXT_ORPHAN(inode) || NEXT_ORPHAN(inode) >
2587 (le32_to_cpu(sbi->s_es->s_inodes_count))) {
2588 /* Insert this inode at the head of the on-disk orphan list */
2589 NEXT_ORPHAN(inode) = le32_to_cpu(sbi->s_es->s_last_orphan);
2590 sbi->s_es->s_last_orphan = cpu_to_le32(inode->i_ino);
2591 dirty = true;
2592 }
2593 list_add(&EXT4_I(inode)->i_orphan, &sbi->s_orphan);
2594 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002595
Jan Karad745a8c2014-05-26 11:56:53 -04002596 if (dirty) {
2597 err = ext4_handle_dirty_super(handle, sb);
2598 rc = ext4_mark_iloc_dirty(handle, inode, &iloc);
2599 if (!err)
2600 err = rc;
2601 if (err) {
2602 /*
2603 * We have to remove inode from in-memory list if
2604 * addition to on disk orphan list failed. Stray orphan
2605 * list entries can cause panics at unmount time.
2606 */
2607 mutex_lock(&sbi->s_orphan_lock);
2608 list_del(&EXT4_I(inode)->i_orphan);
2609 mutex_unlock(&sbi->s_orphan_lock);
2610 }
2611 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002612 jbd_debug(4, "superblock will point to %lu\n", inode->i_ino);
2613 jbd_debug(4, "orphan inode %lu will point to %d\n",
2614 inode->i_ino, NEXT_ORPHAN(inode));
Jan Karad745a8c2014-05-26 11:56:53 -04002615out:
Jan Karacd2c0802014-05-26 11:39:17 -04002616 ext4_std_error(sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002617 return err;
2618}
2619
2620/*
Mingming Cao617ba132006-10-11 01:20:53 -07002621 * ext4_orphan_del() removes an unlinked or truncated inode from the list
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002622 * of such inodes stored on disk, because it is finally being cleaned up.
2623 */
Mingming Cao617ba132006-10-11 01:20:53 -07002624int ext4_orphan_del(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002625{
2626 struct list_head *prev;
Mingming Cao617ba132006-10-11 01:20:53 -07002627 struct ext4_inode_info *ei = EXT4_I(inode);
Jan Karacd2c0802014-05-26 11:39:17 -04002628 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002629 __u32 ino_next;
Mingming Cao617ba132006-10-11 01:20:53 -07002630 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002631 int err = 0;
2632
Jan Karacd2c0802014-05-26 11:39:17 -04002633 if (!sbi->s_journal && !(sbi->s_mount_state & EXT4_ORPHAN_FS))
Frank Mayhar03901312009-01-07 00:06:22 -05002634 return 0;
2635
Jan Karad745a8c2014-05-26 11:56:53 -04002636 WARN_ON_ONCE(!(inode->i_state & (I_NEW | I_FREEING)) &&
2637 !mutex_is_locked(&inode->i_mutex));
2638 /* Do this quick check before taking global s_orphan_lock. */
Theodore Ts'o3b9d4ed2009-04-25 22:54:04 -04002639 if (list_empty(&ei->i_orphan))
Jan Karad745a8c2014-05-26 11:56:53 -04002640 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002641
Jan Karad745a8c2014-05-26 11:56:53 -04002642 if (handle) {
2643 /* Grab inode buffer early before taking global s_orphan_lock */
2644 err = ext4_reserve_inode_write(handle, inode, &iloc);
2645 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002646
Jan Karad745a8c2014-05-26 11:56:53 -04002647 mutex_lock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002648 jbd_debug(4, "remove inode %lu from orphan list\n", inode->i_ino);
2649
Jan Karad745a8c2014-05-26 11:56:53 -04002650 prev = ei->i_orphan.prev;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002651 list_del_init(&ei->i_orphan);
2652
2653 /* If we're on an error path, we may not have a valid
2654 * transaction handle with which to update the orphan list on
2655 * disk, but we still need to remove the inode from the linked
2656 * list in memory. */
Jan Karad745a8c2014-05-26 11:56:53 -04002657 if (!handle || err) {
2658 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002659 goto out_err;
Jan Karad745a8c2014-05-26 11:56:53 -04002660 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002661
Jan Karad745a8c2014-05-26 11:56:53 -04002662 ino_next = NEXT_ORPHAN(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002663 if (prev == &sbi->s_orphan) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002664 jbd_debug(4, "superblock will point to %u\n", ino_next);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002665 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07002666 err = ext4_journal_get_write_access(handle, sbi->s_sbh);
Jan Karad745a8c2014-05-26 11:56:53 -04002667 if (err) {
2668 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002669 goto out_brelse;
Jan Karad745a8c2014-05-26 11:56:53 -04002670 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002671 sbi->s_es->s_last_orphan = cpu_to_le32(ino_next);
Jan Karad745a8c2014-05-26 11:56:53 -04002672 mutex_unlock(&sbi->s_orphan_lock);
Artem Bityutskiyb50924c2012-07-22 20:37:31 -04002673 err = ext4_handle_dirty_super(handle, inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002674 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07002675 struct ext4_iloc iloc2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002676 struct inode *i_prev =
Mingming Cao617ba132006-10-11 01:20:53 -07002677 &list_entry(prev, struct ext4_inode_info, i_orphan)->vfs_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002678
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002679 jbd_debug(4, "orphan inode %lu will point to %u\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002680 i_prev->i_ino, ino_next);
Mingming Cao617ba132006-10-11 01:20:53 -07002681 err = ext4_reserve_inode_write(handle, i_prev, &iloc2);
Jan Karad745a8c2014-05-26 11:56:53 -04002682 if (err) {
2683 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002684 goto out_brelse;
Jan Karad745a8c2014-05-26 11:56:53 -04002685 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002686 NEXT_ORPHAN(i_prev) = ino_next;
Mingming Cao617ba132006-10-11 01:20:53 -07002687 err = ext4_mark_iloc_dirty(handle, i_prev, &iloc2);
Jan Karad745a8c2014-05-26 11:56:53 -04002688 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002689 }
2690 if (err)
2691 goto out_brelse;
2692 NEXT_ORPHAN(inode) = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002693 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002694out_err:
Mingming Cao617ba132006-10-11 01:20:53 -07002695 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002696 return err;
2697
2698out_brelse:
2699 brelse(iloc.bh);
2700 goto out_err;
2701}
2702
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002703static int ext4_rmdir(struct inode *dir, struct dentry *dentry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002704{
2705 int retval;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002706 struct inode *inode;
2707 struct buffer_head *bh;
2708 struct ext4_dir_entry_2 *de;
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002709 handle_t *handle = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002710
2711 /* Initialize quotas before so that eventual writes go in
2712 * separate transaction */
Christoph Hellwig871a2932010-03-03 09:05:07 -05002713 dquot_initialize(dir);
2714 dquot_initialize(dentry->d_inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002715
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002716 retval = -ENOENT;
Tao Ma32f7f222012-12-10 14:06:01 -05002717 bh = ext4_find_entry(dir, &dentry->d_name, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04002718 if (IS_ERR(bh))
2719 return PTR_ERR(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002720 if (!bh)
2721 goto end_rmdir;
2722
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002723 inode = dentry->d_inode;
2724
2725 retval = -EIO;
2726 if (le32_to_cpu(de->inode) != inode->i_ino)
2727 goto end_rmdir;
2728
2729 retval = -ENOTEMPTY;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002730 if (!empty_dir(inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002731 goto end_rmdir;
2732
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002733 handle = ext4_journal_start(dir, EXT4_HT_DIR,
Theodore Ts'o64044ab2013-02-09 15:06:24 -05002734 EXT4_DATA_TRANS_BLOCKS(dir->i_sb));
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002735 if (IS_ERR(handle)) {
2736 retval = PTR_ERR(handle);
2737 handle = NULL;
2738 goto end_rmdir;
2739 }
2740
2741 if (IS_DIRSYNC(dir))
2742 ext4_handle_sync(handle);
2743
Mingming Cao617ba132006-10-11 01:20:53 -07002744 retval = ext4_delete_entry(handle, dir, de, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002745 if (retval)
2746 goto end_rmdir;
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002747 if (!EXT4_DIR_LINK_EMPTY(inode))
Eric Sandeen12062dd2010-02-15 14:19:27 -05002748 ext4_warning(inode->i_sb,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002749 "empty directory has too many links (%d)",
2750 inode->i_nlink);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002751 inode->i_version++;
2752 clear_nlink(inode);
2753 /* There's no need to set i_disksize: the fact that i_nlink is
2754 * zero will ensure that the right thing happens during any
2755 * recovery. */
2756 inode->i_size = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002757 ext4_orphan_add(handle, inode);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002758 inode->i_ctime = dir->i_ctime = dir->i_mtime = ext4_current_time(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002759 ext4_mark_inode_dirty(handle, inode);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002760 ext4_dec_count(handle, dir);
Mingming Cao617ba132006-10-11 01:20:53 -07002761 ext4_update_dx_flag(dir);
2762 ext4_mark_inode_dirty(handle, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002763
2764end_rmdir:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002765 brelse(bh);
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002766 if (handle)
2767 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002768 return retval;
2769}
2770
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002771static int ext4_unlink(struct inode *dir, struct dentry *dentry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002772{
2773 int retval;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002774 struct inode *inode;
2775 struct buffer_head *bh;
2776 struct ext4_dir_entry_2 *de;
Theodore Ts'o931b6862013-02-09 09:43:39 -05002777 handle_t *handle = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002778
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002779 trace_ext4_unlink_enter(dir, dentry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002780 /* Initialize quotas before so that eventual writes go
2781 * in separate transaction */
Christoph Hellwig871a2932010-03-03 09:05:07 -05002782 dquot_initialize(dir);
2783 dquot_initialize(dentry->d_inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002784
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002785 retval = -ENOENT;
Tao Ma32f7f222012-12-10 14:06:01 -05002786 bh = ext4_find_entry(dir, &dentry->d_name, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04002787 if (IS_ERR(bh))
2788 return PTR_ERR(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002789 if (!bh)
2790 goto end_unlink;
2791
2792 inode = dentry->d_inode;
2793
2794 retval = -EIO;
2795 if (le32_to_cpu(de->inode) != inode->i_ino)
2796 goto end_unlink;
2797
Theodore Ts'o931b6862013-02-09 09:43:39 -05002798 handle = ext4_journal_start(dir, EXT4_HT_DIR,
Theodore Ts'o64044ab2013-02-09 15:06:24 -05002799 EXT4_DATA_TRANS_BLOCKS(dir->i_sb));
Theodore Ts'o931b6862013-02-09 09:43:39 -05002800 if (IS_ERR(handle)) {
2801 retval = PTR_ERR(handle);
2802 handle = NULL;
2803 goto end_unlink;
2804 }
2805
2806 if (IS_DIRSYNC(dir))
2807 ext4_handle_sync(handle);
2808
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002809 if (!inode->i_nlink) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05002810 ext4_warning(inode->i_sb,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002811 "Deleting nonexistent file (%lu), %d",
2812 inode->i_ino, inode->i_nlink);
Miklos Szeredibfe86842011-10-28 14:13:29 +02002813 set_nlink(inode, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002814 }
Mingming Cao617ba132006-10-11 01:20:53 -07002815 retval = ext4_delete_entry(handle, dir, de, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002816 if (retval)
2817 goto end_unlink;
Kalpak Shahef7f3832007-07-18 09:15:20 -04002818 dir->i_ctime = dir->i_mtime = ext4_current_time(dir);
Mingming Cao617ba132006-10-11 01:20:53 -07002819 ext4_update_dx_flag(dir);
2820 ext4_mark_inode_dirty(handle, dir);
Theodore Ts'o825f1482008-02-15 15:00:38 -05002821 drop_nlink(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002822 if (!inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07002823 ext4_orphan_add(handle, inode);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002824 inode->i_ctime = ext4_current_time(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002825 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002826 retval = 0;
2827
2828end_unlink:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002829 brelse(bh);
Theodore Ts'o931b6862013-02-09 09:43:39 -05002830 if (handle)
2831 ext4_journal_stop(handle);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002832 trace_ext4_unlink_exit(dentry, retval);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002833 return retval;
2834}
2835
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002836static int ext4_symlink(struct inode *dir,
2837 struct dentry *dentry, const char *symname)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002838{
2839 handle_t *handle;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002840 struct inode *inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002841 int l, err, retries = 0;
Jan Karadf5e6222011-05-03 11:12:58 -04002842 int credits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002843
2844 l = strlen(symname)+1;
2845 if (l > dir->i_sb->s_blocksize)
2846 return -ENAMETOOLONG;
2847
Christoph Hellwig871a2932010-03-03 09:05:07 -05002848 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002849
Jan Karadf5e6222011-05-03 11:12:58 -04002850 if (l > EXT4_N_BLOCKS * 4) {
2851 /*
2852 * For non-fast symlinks, we just allocate inode and put it on
2853 * orphan list in the first transaction => we need bitmap,
Eric Sandeen8c208712011-08-11 09:54:31 -05002854 * group descriptor, sb, inode block, quota blocks, and
2855 * possibly selinux xattr blocks.
Jan Karadf5e6222011-05-03 11:12:58 -04002856 */
Eric Sandeen8c208712011-08-11 09:54:31 -05002857 credits = 4 + EXT4_MAXQUOTAS_INIT_BLOCKS(dir->i_sb) +
2858 EXT4_XATTR_TRANS_BLOCKS;
Jan Karadf5e6222011-05-03 11:12:58 -04002859 } else {
2860 /*
2861 * Fast symlink. We have to add entry to directory
2862 * (EXT4_DATA_TRANS_BLOCKS + EXT4_INDEX_EXTRA_TRANS_BLOCKS),
2863 * allocate new inode (bitmap, group descriptor, inode block,
2864 * quota blocks, sb is already counted in previous macros).
2865 */
2866 credits = EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002867 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3;
Jan Karadf5e6222011-05-03 11:12:58 -04002868 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002869retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002870 inode = ext4_new_inode_start_handle(dir, S_IFLNK|S_IRWXUGO,
2871 &dentry->d_name, 0, NULL,
2872 EXT4_HT_DIR, credits);
2873 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002874 err = PTR_ERR(inode);
2875 if (IS_ERR(inode))
2876 goto out_stop;
2877
Jan Karadf5e6222011-05-03 11:12:58 -04002878 if (l > EXT4_N_BLOCKS * 4) {
Mingming Cao617ba132006-10-11 01:20:53 -07002879 inode->i_op = &ext4_symlink_inode_operations;
2880 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002881 /*
Jan Karadf5e6222011-05-03 11:12:58 -04002882 * We cannot call page_symlink() with transaction started
2883 * because it calls into ext4_write_begin() which can wait
2884 * for transaction commit if we are running out of space
2885 * and thus we deadlock. So we have to stop transaction now
2886 * and restart it when symlink contents is written.
2887 *
2888 * To keep fs consistent in case of crash, we have to put inode
2889 * to orphan list in the mean time.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002890 */
Jan Karadf5e6222011-05-03 11:12:58 -04002891 drop_nlink(inode);
2892 err = ext4_orphan_add(handle, inode);
2893 ext4_journal_stop(handle);
2894 if (err)
2895 goto err_drop_inode;
Nick Piggin54566b22009-01-04 12:00:53 -08002896 err = __page_symlink(inode, symname, l, 1);
Jan Karadf5e6222011-05-03 11:12:58 -04002897 if (err)
2898 goto err_drop_inode;
2899 /*
2900 * Now inode is being linked into dir (EXT4_DATA_TRANS_BLOCKS
2901 * + EXT4_INDEX_EXTRA_TRANS_BLOCKS), inode is also modified
2902 */
Theodore Ts'o9924a922013-02-08 21:59:22 -05002903 handle = ext4_journal_start(dir, EXT4_HT_DIR,
Jan Karadf5e6222011-05-03 11:12:58 -04002904 EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
2905 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 1);
2906 if (IS_ERR(handle)) {
2907 err = PTR_ERR(handle);
2908 goto err_drop_inode;
2909 }
Al Viro0ce8c0102012-01-08 19:50:23 -05002910 set_nlink(inode, 1);
Jan Karadf5e6222011-05-03 11:12:58 -04002911 err = ext4_orphan_del(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002912 if (err) {
Jan Karadf5e6222011-05-03 11:12:58 -04002913 ext4_journal_stop(handle);
Theodore Ts'o825f1482008-02-15 15:00:38 -05002914 clear_nlink(inode);
Jan Karadf5e6222011-05-03 11:12:58 -04002915 goto err_drop_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002916 }
2917 } else {
Aneesh Kumar K.Ve65187e2008-04-29 08:11:12 -04002918 /* clear the extent format for fast symlink */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04002919 ext4_clear_inode_flag(inode, EXT4_INODE_EXTENTS);
Mingming Cao617ba132006-10-11 01:20:53 -07002920 inode->i_op = &ext4_fast_symlink_inode_operations;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002921 memcpy((char *)&EXT4_I(inode)->i_data, symname, l);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002922 inode->i_size = l-1;
2923 }
Mingming Cao617ba132006-10-11 01:20:53 -07002924 EXT4_I(inode)->i_disksize = inode->i_size;
2925 err = ext4_add_nondir(handle, dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002926 if (!err && IS_DIRSYNC(dir))
2927 ext4_handle_sync(handle);
2928
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002929out_stop:
Theodore Ts'o11395752013-02-09 16:27:09 -05002930 if (handle)
2931 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002932 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002933 goto retry;
2934 return err;
Jan Karadf5e6222011-05-03 11:12:58 -04002935err_drop_inode:
2936 unlock_new_inode(inode);
2937 iput(inode);
2938 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002939}
2940
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002941static int ext4_link(struct dentry *old_dentry,
2942 struct inode *dir, struct dentry *dentry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002943{
2944 handle_t *handle;
2945 struct inode *inode = old_dentry->d_inode;
2946 int err, retries = 0;
2947
Theodore Ts'ob05ab1d2009-08-29 21:08:08 -04002948 if (inode->i_nlink >= EXT4_LINK_MAX)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002949 return -EMLINK;
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002950
Christoph Hellwig871a2932010-03-03 09:05:07 -05002951 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002952
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002953retry:
Theodore Ts'o9924a922013-02-08 21:59:22 -05002954 handle = ext4_journal_start(dir, EXT4_HT_DIR,
2955 (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Al Viroaf51a2a2013-06-29 13:23:08 +04002956 EXT4_INDEX_EXTRA_TRANS_BLOCKS) + 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002957 if (IS_ERR(handle))
2958 return PTR_ERR(handle);
2959
2960 if (IS_DIRSYNC(dir))
Frank Mayhar03901312009-01-07 00:06:22 -05002961 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002962
Kalpak Shahef7f3832007-07-18 09:15:20 -04002963 inode->i_ctime = ext4_current_time(inode);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002964 ext4_inc_count(handle, inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04002965 ihold(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002966
Al Viro6b38e842008-12-30 02:03:31 -05002967 err = ext4_add_entry(handle, dentry, inode);
2968 if (!err) {
2969 ext4_mark_inode_dirty(handle, inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002970 /* this can happen only for tmpfile being
2971 * linked the first time
2972 */
2973 if (inode->i_nlink == 1)
2974 ext4_orphan_del(handle, inode);
Al Viro6b38e842008-12-30 02:03:31 -05002975 d_instantiate(dentry, inode);
2976 } else {
2977 drop_nlink(inode);
2978 iput(inode);
2979 }
Mingming Cao617ba132006-10-11 01:20:53 -07002980 ext4_journal_stop(handle);
2981 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002982 goto retry;
2983 return err;
2984}
2985
Tao Ma32f7f222012-12-10 14:06:01 -05002986
2987/*
2988 * Try to find buffer head where contains the parent block.
2989 * It should be the inode block if it is inlined or the 1st block
2990 * if it is a normal dir.
2991 */
2992static struct buffer_head *ext4_get_first_dir_block(handle_t *handle,
2993 struct inode *inode,
2994 int *retval,
2995 struct ext4_dir_entry_2 **parent_de,
2996 int *inlined)
2997{
2998 struct buffer_head *bh;
2999
3000 if (!ext4_has_inline_data(inode)) {
Theodore Ts'odc6982f2013-02-14 23:59:26 -05003001 bh = ext4_read_dirblock(inode, 0, EITHER);
3002 if (IS_ERR(bh)) {
3003 *retval = PTR_ERR(bh);
Tao Ma32f7f222012-12-10 14:06:01 -05003004 return NULL;
3005 }
3006 *parent_de = ext4_next_entry(
3007 (struct ext4_dir_entry_2 *)bh->b_data,
3008 inode->i_sb->s_blocksize);
3009 return bh;
3010 }
3011
3012 *inlined = 1;
3013 return ext4_get_first_inline_block(inode, parent_de, retval);
3014}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003015
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003016struct ext4_renament {
3017 struct inode *dir;
3018 struct dentry *dentry;
3019 struct inode *inode;
Miklos Szeredibd429982014-04-01 17:08:44 +02003020 bool is_dir;
3021 int dir_nlink_delta;
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003022
3023 /* entry for "dentry" */
3024 struct buffer_head *bh;
3025 struct ext4_dir_entry_2 *de;
3026 int inlined;
3027
3028 /* entry for ".." in inode if it's a directory */
3029 struct buffer_head *dir_bh;
3030 struct ext4_dir_entry_2 *parent_de;
3031 int dir_inlined;
3032};
3033
Miklos Szeredibd1af142014-04-01 17:08:44 +02003034static int ext4_rename_dir_prepare(handle_t *handle, struct ext4_renament *ent)
3035{
3036 int retval;
3037
3038 ent->dir_bh = ext4_get_first_dir_block(handle, ent->inode,
3039 &retval, &ent->parent_de,
3040 &ent->dir_inlined);
3041 if (!ent->dir_bh)
3042 return retval;
3043 if (le32_to_cpu(ent->parent_de->inode) != ent->dir->i_ino)
3044 return -EIO;
3045 BUFFER_TRACE(ent->dir_bh, "get_write_access");
3046 return ext4_journal_get_write_access(handle, ent->dir_bh);
3047}
3048
3049static int ext4_rename_dir_finish(handle_t *handle, struct ext4_renament *ent,
3050 unsigned dir_ino)
3051{
3052 int retval;
3053
3054 ent->parent_de->inode = cpu_to_le32(dir_ino);
3055 BUFFER_TRACE(ent->dir_bh, "call ext4_handle_dirty_metadata");
3056 if (!ent->dir_inlined) {
3057 if (is_dx(ent->inode)) {
3058 retval = ext4_handle_dirty_dx_node(handle,
3059 ent->inode,
3060 ent->dir_bh);
3061 } else {
3062 retval = ext4_handle_dirty_dirent_node(handle,
3063 ent->inode,
3064 ent->dir_bh);
3065 }
3066 } else {
3067 retval = ext4_mark_inode_dirty(handle, ent->inode);
3068 }
3069 if (retval) {
3070 ext4_std_error(ent->dir->i_sb, retval);
3071 return retval;
3072 }
3073 return 0;
3074}
3075
3076static int ext4_setent(handle_t *handle, struct ext4_renament *ent,
3077 unsigned ino, unsigned file_type)
3078{
3079 int retval;
3080
3081 BUFFER_TRACE(ent->bh, "get write access");
3082 retval = ext4_journal_get_write_access(handle, ent->bh);
3083 if (retval)
3084 return retval;
3085 ent->de->inode = cpu_to_le32(ino);
3086 if (EXT4_HAS_INCOMPAT_FEATURE(ent->dir->i_sb,
3087 EXT4_FEATURE_INCOMPAT_FILETYPE))
3088 ent->de->file_type = file_type;
3089 ent->dir->i_version++;
3090 ent->dir->i_ctime = ent->dir->i_mtime =
3091 ext4_current_time(ent->dir);
3092 ext4_mark_inode_dirty(handle, ent->dir);
3093 BUFFER_TRACE(ent->bh, "call ext4_handle_dirty_metadata");
3094 if (!ent->inlined) {
3095 retval = ext4_handle_dirty_dirent_node(handle,
3096 ent->dir, ent->bh);
3097 if (unlikely(retval)) {
3098 ext4_std_error(ent->dir->i_sb, retval);
3099 return retval;
3100 }
3101 }
3102 brelse(ent->bh);
3103 ent->bh = NULL;
3104
3105 return 0;
3106}
3107
3108static int ext4_find_delete_entry(handle_t *handle, struct inode *dir,
3109 const struct qstr *d_name)
3110{
3111 int retval = -ENOENT;
3112 struct buffer_head *bh;
3113 struct ext4_dir_entry_2 *de;
3114
3115 bh = ext4_find_entry(dir, d_name, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003116 if (IS_ERR(bh))
3117 return PTR_ERR(bh);
Miklos Szeredibd1af142014-04-01 17:08:44 +02003118 if (bh) {
3119 retval = ext4_delete_entry(handle, dir, de, bh);
3120 brelse(bh);
3121 }
3122 return retval;
3123}
3124
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003125static void ext4_rename_delete(handle_t *handle, struct ext4_renament *ent,
3126 int force_reread)
Miklos Szeredibd1af142014-04-01 17:08:44 +02003127{
3128 int retval;
3129 /*
3130 * ent->de could have moved from under us during htree split, so make
3131 * sure that we are deleting the right entry. We might also be pointing
3132 * to a stale entry in the unused part of ent->bh so just checking inum
3133 * and the name isn't enough.
3134 */
3135 if (le32_to_cpu(ent->de->inode) != ent->inode->i_ino ||
3136 ent->de->name_len != ent->dentry->d_name.len ||
3137 strncmp(ent->de->name, ent->dentry->d_name.name,
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003138 ent->de->name_len) ||
3139 force_reread) {
Miklos Szeredibd1af142014-04-01 17:08:44 +02003140 retval = ext4_find_delete_entry(handle, ent->dir,
3141 &ent->dentry->d_name);
3142 } else {
3143 retval = ext4_delete_entry(handle, ent->dir, ent->de, ent->bh);
3144 if (retval == -ENOENT) {
3145 retval = ext4_find_delete_entry(handle, ent->dir,
3146 &ent->dentry->d_name);
3147 }
3148 }
3149
3150 if (retval) {
3151 ext4_warning(ent->dir->i_sb,
3152 "Deleting old file (%lu), %d, error=%d",
3153 ent->dir->i_ino, ent->dir->i_nlink, retval);
3154 }
3155}
3156
Miklos Szeredibd429982014-04-01 17:08:44 +02003157static void ext4_update_dir_count(handle_t *handle, struct ext4_renament *ent)
3158{
3159 if (ent->dir_nlink_delta) {
3160 if (ent->dir_nlink_delta == -1)
3161 ext4_dec_count(handle, ent->dir);
3162 else
3163 ext4_inc_count(handle, ent->dir);
3164 ext4_mark_inode_dirty(handle, ent->dir);
3165 }
3166}
3167
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003168/*
3169 * Anybody can rename anything with this: the permission checks are left to the
3170 * higher-level routines.
Theodore Ts'o0e202702013-08-16 22:06:53 -04003171 *
3172 * n.b. old_{dentry,inode) refers to the source dentry/inode
3173 * while new_{dentry,inode) refers to the destination dentry/inode
3174 * This comes from rename(const char *oldpath, const char *newpath)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003175 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003176static int ext4_rename(struct inode *old_dir, struct dentry *old_dentry,
3177 struct inode *new_dir, struct dentry *new_dentry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003178{
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003179 handle_t *handle = NULL;
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003180 struct ext4_renament old = {
3181 .dir = old_dir,
3182 .dentry = old_dentry,
3183 .inode = old_dentry->d_inode,
3184 };
3185 struct ext4_renament new = {
3186 .dir = new_dir,
3187 .dentry = new_dentry,
3188 .inode = new_dentry->d_inode,
3189 };
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003190 int force_reread;
Theodore Ts'o0e202702013-08-16 22:06:53 -04003191 int retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003192
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003193 dquot_initialize(old.dir);
3194 dquot_initialize(new.dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003195
3196 /* Initialize quotas before so that eventual writes go
3197 * in separate transaction */
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003198 if (new.inode)
3199 dquot_initialize(new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003200
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003201 old.bh = ext4_find_entry(old.dir, &old.dentry->d_name, &old.de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003202 if (IS_ERR(old.bh))
3203 return PTR_ERR(old.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003204 /*
3205 * Check for inode number is _not_ due to possible IO errors.
3206 * We might rmdir the source, keep it as pwd of some process
3207 * and merrily kill the link to whatever was created under the
3208 * same name. Goodbye sticky bit ;-<
3209 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003210 retval = -ENOENT;
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003211 if (!old.bh || le32_to_cpu(old.de->inode) != old.inode->i_ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003212 goto end_rename;
3213
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003214 new.bh = ext4_find_entry(new.dir, &new.dentry->d_name,
3215 &new.de, &new.inlined);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003216 if (IS_ERR(new.bh)) {
3217 retval = PTR_ERR(new.bh);
3218 goto end_rename;
3219 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003220 if (new.bh) {
3221 if (!new.inode) {
3222 brelse(new.bh);
3223 new.bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003224 }
3225 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003226 if (new.inode && !test_opt(new.dir->i_sb, NO_AUTO_DA_ALLOC))
3227 ext4_alloc_da_blocks(old.inode);
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003228
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003229 handle = ext4_journal_start(old.dir, EXT4_HT_DIR,
3230 (2 * EXT4_DATA_TRANS_BLOCKS(old.dir->i_sb) +
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003231 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 2));
3232 if (IS_ERR(handle))
3233 return PTR_ERR(handle);
3234
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003235 if (IS_DIRSYNC(old.dir) || IS_DIRSYNC(new.dir))
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003236 ext4_handle_sync(handle);
3237
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003238 if (S_ISDIR(old.inode->i_mode)) {
3239 if (new.inode) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003240 retval = -ENOTEMPTY;
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003241 if (!empty_dir(new.inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003242 goto end_rename;
Miklos Szeredi0d7d5d62014-04-01 17:08:44 +02003243 } else {
3244 retval = -EMLINK;
3245 if (new.dir != old.dir && EXT4_DIR_LINK_MAX(new.dir))
3246 goto end_rename;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003247 }
Miklos Szeredibd1af142014-04-01 17:08:44 +02003248 retval = ext4_rename_dir_prepare(handle, &old);
Amir Goldsteinef607892011-03-20 21:18:44 -04003249 if (retval)
3250 goto end_rename;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003251 }
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003252 /*
3253 * If we're renaming a file within an inline_data dir and adding or
3254 * setting the new dirent causes a conversion from inline_data to
3255 * extents/blockmap, we need to force the dirent delete code to
3256 * re-read the directory, or else we end up trying to delete a dirent
3257 * from what is now the extent tree root (or a block map).
3258 */
3259 force_reread = (new.dir->i_ino == old.dir->i_ino &&
3260 ext4_test_inode_flag(new.dir, EXT4_INODE_INLINE_DATA));
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003261 if (!new.bh) {
3262 retval = ext4_add_entry(handle, new.dentry, old.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003263 if (retval)
3264 goto end_rename;
3265 } else {
Miklos Szeredibd1af142014-04-01 17:08:44 +02003266 retval = ext4_setent(handle, &new,
3267 old.inode->i_ino, old.de->file_type);
Amir Goldsteinef607892011-03-20 21:18:44 -04003268 if (retval)
3269 goto end_rename;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003270 }
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003271 if (force_reread)
3272 force_reread = !ext4_test_inode_flag(new.dir,
3273 EXT4_INODE_INLINE_DATA);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003274
3275 /*
3276 * Like most other Unix systems, set the ctime for inodes on a
3277 * rename.
3278 */
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003279 old.inode->i_ctime = ext4_current_time(old.inode);
3280 ext4_mark_inode_dirty(handle, old.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003281
3282 /*
3283 * ok, that's it
3284 */
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003285 ext4_rename_delete(handle, &old, force_reread);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003286
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003287 if (new.inode) {
3288 ext4_dec_count(handle, new.inode);
3289 new.inode->i_ctime = ext4_current_time(new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003290 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003291 old.dir->i_ctime = old.dir->i_mtime = ext4_current_time(old.dir);
3292 ext4_update_dx_flag(old.dir);
3293 if (old.dir_bh) {
Miklos Szeredibd1af142014-04-01 17:08:44 +02003294 retval = ext4_rename_dir_finish(handle, &old, new.dir->i_ino);
3295 if (retval)
Theodore Ts'ob4097142011-01-10 12:46:59 -05003296 goto end_rename;
Miklos Szeredibd1af142014-04-01 17:08:44 +02003297
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003298 ext4_dec_count(handle, old.dir);
3299 if (new.inode) {
Andreas Dilgerf8628a12007-07-18 08:38:01 -04003300 /* checked empty_dir above, can't have another parent,
Theodore Ts'o825f1482008-02-15 15:00:38 -05003301 * ext4_dec_count() won't work for many-linked dirs */
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003302 clear_nlink(new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003303 } else {
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003304 ext4_inc_count(handle, new.dir);
3305 ext4_update_dx_flag(new.dir);
3306 ext4_mark_inode_dirty(handle, new.dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003307 }
3308 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003309 ext4_mark_inode_dirty(handle, old.dir);
3310 if (new.inode) {
3311 ext4_mark_inode_dirty(handle, new.inode);
3312 if (!new.inode->i_nlink)
3313 ext4_orphan_add(handle, new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003314 }
3315 retval = 0;
3316
3317end_rename:
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003318 brelse(old.dir_bh);
3319 brelse(old.bh);
3320 brelse(new.bh);
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003321 if (handle)
3322 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003323 return retval;
3324}
3325
Miklos Szeredibd429982014-04-01 17:08:44 +02003326static int ext4_cross_rename(struct inode *old_dir, struct dentry *old_dentry,
3327 struct inode *new_dir, struct dentry *new_dentry)
3328{
3329 handle_t *handle = NULL;
3330 struct ext4_renament old = {
3331 .dir = old_dir,
3332 .dentry = old_dentry,
3333 .inode = old_dentry->d_inode,
3334 };
3335 struct ext4_renament new = {
3336 .dir = new_dir,
3337 .dentry = new_dentry,
3338 .inode = new_dentry->d_inode,
3339 };
3340 u8 new_file_type;
3341 int retval;
3342
3343 dquot_initialize(old.dir);
3344 dquot_initialize(new.dir);
3345
3346 old.bh = ext4_find_entry(old.dir, &old.dentry->d_name,
3347 &old.de, &old.inlined);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003348 if (IS_ERR(old.bh))
3349 return PTR_ERR(old.bh);
Miklos Szeredibd429982014-04-01 17:08:44 +02003350 /*
3351 * Check for inode number is _not_ due to possible IO errors.
3352 * We might rmdir the source, keep it as pwd of some process
3353 * and merrily kill the link to whatever was created under the
3354 * same name. Goodbye sticky bit ;-<
3355 */
3356 retval = -ENOENT;
3357 if (!old.bh || le32_to_cpu(old.de->inode) != old.inode->i_ino)
3358 goto end_rename;
3359
3360 new.bh = ext4_find_entry(new.dir, &new.dentry->d_name,
3361 &new.de, &new.inlined);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003362 if (IS_ERR(new.bh)) {
3363 retval = PTR_ERR(new.bh);
3364 goto end_rename;
3365 }
Miklos Szeredibd429982014-04-01 17:08:44 +02003366
3367 /* RENAME_EXCHANGE case: old *and* new must both exist */
3368 if (!new.bh || le32_to_cpu(new.de->inode) != new.inode->i_ino)
3369 goto end_rename;
3370
3371 handle = ext4_journal_start(old.dir, EXT4_HT_DIR,
3372 (2 * EXT4_DATA_TRANS_BLOCKS(old.dir->i_sb) +
3373 2 * EXT4_INDEX_EXTRA_TRANS_BLOCKS + 2));
3374 if (IS_ERR(handle))
3375 return PTR_ERR(handle);
3376
3377 if (IS_DIRSYNC(old.dir) || IS_DIRSYNC(new.dir))
3378 ext4_handle_sync(handle);
3379
3380 if (S_ISDIR(old.inode->i_mode)) {
3381 old.is_dir = true;
3382 retval = ext4_rename_dir_prepare(handle, &old);
3383 if (retval)
3384 goto end_rename;
3385 }
3386 if (S_ISDIR(new.inode->i_mode)) {
3387 new.is_dir = true;
3388 retval = ext4_rename_dir_prepare(handle, &new);
3389 if (retval)
3390 goto end_rename;
3391 }
3392
3393 /*
3394 * Other than the special case of overwriting a directory, parents'
3395 * nlink only needs to be modified if this is a cross directory rename.
3396 */
3397 if (old.dir != new.dir && old.is_dir != new.is_dir) {
3398 old.dir_nlink_delta = old.is_dir ? -1 : 1;
3399 new.dir_nlink_delta = -old.dir_nlink_delta;
3400 retval = -EMLINK;
3401 if ((old.dir_nlink_delta > 0 && EXT4_DIR_LINK_MAX(old.dir)) ||
3402 (new.dir_nlink_delta > 0 && EXT4_DIR_LINK_MAX(new.dir)))
3403 goto end_rename;
3404 }
3405
3406 new_file_type = new.de->file_type;
3407 retval = ext4_setent(handle, &new, old.inode->i_ino, old.de->file_type);
3408 if (retval)
3409 goto end_rename;
3410
3411 retval = ext4_setent(handle, &old, new.inode->i_ino, new_file_type);
3412 if (retval)
3413 goto end_rename;
3414
3415 /*
3416 * Like most other Unix systems, set the ctime for inodes on a
3417 * rename.
3418 */
3419 old.inode->i_ctime = ext4_current_time(old.inode);
3420 new.inode->i_ctime = ext4_current_time(new.inode);
3421 ext4_mark_inode_dirty(handle, old.inode);
3422 ext4_mark_inode_dirty(handle, new.inode);
3423
3424 if (old.dir_bh) {
3425 retval = ext4_rename_dir_finish(handle, &old, new.dir->i_ino);
3426 if (retval)
3427 goto end_rename;
3428 }
3429 if (new.dir_bh) {
3430 retval = ext4_rename_dir_finish(handle, &new, old.dir->i_ino);
3431 if (retval)
3432 goto end_rename;
3433 }
3434 ext4_update_dir_count(handle, &old);
3435 ext4_update_dir_count(handle, &new);
3436 retval = 0;
3437
3438end_rename:
3439 brelse(old.dir_bh);
3440 brelse(new.dir_bh);
3441 brelse(old.bh);
3442 brelse(new.bh);
3443 if (handle)
3444 ext4_journal_stop(handle);
3445 return retval;
3446}
3447
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003448static int ext4_rename2(struct inode *old_dir, struct dentry *old_dentry,
3449 struct inode *new_dir, struct dentry *new_dentry,
3450 unsigned int flags)
3451{
Miklos Szeredibd429982014-04-01 17:08:44 +02003452 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE))
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003453 return -EINVAL;
3454
Miklos Szeredibd429982014-04-01 17:08:44 +02003455 if (flags & RENAME_EXCHANGE) {
3456 return ext4_cross_rename(old_dir, old_dentry,
3457 new_dir, new_dentry);
3458 }
3459 /*
3460 * Existence checking was done by the VFS, otherwise "RENAME_NOREPLACE"
3461 * is equivalent to regular rename.
3462 */
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003463 return ext4_rename(old_dir, old_dentry, new_dir, new_dentry);
3464}
3465
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003466/*
3467 * directories can handle most operations...
3468 */
Arjan van de Ven754661f2007-02-12 00:55:38 -08003469const struct inode_operations ext4_dir_inode_operations = {
Mingming Cao617ba132006-10-11 01:20:53 -07003470 .create = ext4_create,
3471 .lookup = ext4_lookup,
3472 .link = ext4_link,
3473 .unlink = ext4_unlink,
3474 .symlink = ext4_symlink,
3475 .mkdir = ext4_mkdir,
3476 .rmdir = ext4_rmdir,
3477 .mknod = ext4_mknod,
Al Viroaf51a2a2013-06-29 13:23:08 +04003478 .tmpfile = ext4_tmpfile,
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003479 .rename2 = ext4_rename2,
Mingming Cao617ba132006-10-11 01:20:53 -07003480 .setattr = ext4_setattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003481 .setxattr = generic_setxattr,
3482 .getxattr = generic_getxattr,
Mingming Cao617ba132006-10-11 01:20:53 -07003483 .listxattr = ext4_listxattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003484 .removexattr = generic_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02003485 .get_acl = ext4_get_acl,
Christoph Hellwig64e178a2013-12-20 05:16:44 -08003486 .set_acl = ext4_set_acl,
Aneesh Kumar K.Vabc87462009-05-02 22:54:32 -04003487 .fiemap = ext4_fiemap,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003488};
3489
Arjan van de Ven754661f2007-02-12 00:55:38 -08003490const struct inode_operations ext4_special_inode_operations = {
Mingming Cao617ba132006-10-11 01:20:53 -07003491 .setattr = ext4_setattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003492 .setxattr = generic_setxattr,
3493 .getxattr = generic_getxattr,
Mingming Cao617ba132006-10-11 01:20:53 -07003494 .listxattr = ext4_listxattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003495 .removexattr = generic_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02003496 .get_acl = ext4_get_acl,
Christoph Hellwig64e178a2013-12-20 05:16:44 -08003497 .set_acl = ext4_set_acl,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003498};