blob: 61756f941ed0e2b218fe38fa9e10fa44281f37f7 [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 }
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -0400127 if (!ext4_has_metadata_csum(inode->i_sb) ||
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500128 buffer_verified(bh))
129 return bh;
130
131 /*
132 * An empty leaf block can get mistaken for a index block; for
133 * this reason, we can only check the index checksum when the
134 * caller is sure it should be an index block.
135 */
136 if (is_dx_block && type == INDEX) {
137 if (ext4_dx_csum_verify(inode, dirent))
138 set_buffer_verified(bh);
139 else {
140 ext4_error_inode(inode, __func__, line, block,
141 "Directory index failed checksum");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700142 brelse(bh);
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500143 return ERR_PTR(-EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700144 }
145 }
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500146 if (!is_dx_block) {
147 if (ext4_dirent_csum_verify(inode, dirent))
148 set_buffer_verified(bh);
149 else {
150 ext4_error_inode(inode, __func__, line, block,
151 "Directory block failed checksum");
152 brelse(bh);
153 return ERR_PTR(-EIO);
154 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700155 }
156 return bh;
157}
158
159#ifndef assert
160#define assert(test) J_ASSERT(test)
161#endif
162
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700163#ifdef DX_DEBUG
164#define dxtrace(command) command
165#else
166#define dxtrace(command)
167#endif
168
169struct fake_dirent
170{
171 __le32 inode;
172 __le16 rec_len;
173 u8 name_len;
174 u8 file_type;
175};
176
177struct dx_countlimit
178{
179 __le16 limit;
180 __le16 count;
181};
182
183struct dx_entry
184{
185 __le32 hash;
186 __le32 block;
187};
188
189/*
190 * dx_root_info is laid out so that if it should somehow get overlaid by a
191 * dirent the two low bits of the hash version will be zero. Therefore, the
192 * hash version mod 4 should never be 0. Sincerely, the paranoia department.
193 */
194
195struct dx_root
196{
197 struct fake_dirent dot;
198 char dot_name[4];
199 struct fake_dirent dotdot;
200 char dotdot_name[4];
201 struct dx_root_info
202 {
203 __le32 reserved_zero;
204 u8 hash_version;
205 u8 info_length; /* 8 */
206 u8 indirect_levels;
207 u8 unused_flags;
208 }
209 info;
210 struct dx_entry entries[0];
211};
212
213struct dx_node
214{
215 struct fake_dirent fake;
216 struct dx_entry entries[0];
217};
218
219
220struct dx_frame
221{
222 struct buffer_head *bh;
223 struct dx_entry *entries;
224 struct dx_entry *at;
225};
226
227struct dx_map_entry
228{
229 u32 hash;
Eric Sandeenef2b02d2007-09-18 22:46:42 -0700230 u16 offs;
231 u16 size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700232};
233
Darrick J. Wonge6153912012-04-29 18:23:10 -0400234/*
235 * This goes at the end of each htree block.
236 */
237struct dx_tail {
238 u32 dt_reserved;
239 __le32 dt_checksum; /* crc32c(uuid+inum+dirblock) */
240};
241
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500242static inline ext4_lblk_t dx_get_block(struct dx_entry *entry);
243static void dx_set_block(struct dx_entry *entry, ext4_lblk_t value);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400244static inline unsigned dx_get_hash(struct dx_entry *entry);
245static void dx_set_hash(struct dx_entry *entry, unsigned value);
246static unsigned dx_get_count(struct dx_entry *entries);
247static unsigned dx_get_limit(struct dx_entry *entries);
248static void dx_set_count(struct dx_entry *entries, unsigned value);
249static void dx_set_limit(struct dx_entry *entries, unsigned value);
250static unsigned dx_root_limit(struct inode *dir, unsigned infosize);
251static unsigned dx_node_limit(struct inode *dir);
Theodore Ts'of702ba02008-09-22 15:21:01 -0400252static struct dx_frame *dx_probe(const struct qstr *d_name,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700253 struct inode *dir,
254 struct dx_hash_info *hinfo,
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400255 struct dx_frame *frame);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400256static void dx_release(struct dx_frame *frames);
Theodore Ts'o8bad4592009-02-14 21:46:54 -0500257static int dx_make_map(struct ext4_dir_entry_2 *de, unsigned blocksize,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400258 struct dx_hash_info *hinfo, struct dx_map_entry map[]);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700259static void dx_sort_map(struct dx_map_entry *map, unsigned count);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400260static struct ext4_dir_entry_2 *dx_move_dirents(char *from, char *to,
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500261 struct dx_map_entry *offsets, int count, unsigned blocksize);
Theodore Ts'o8bad4592009-02-14 21:46:54 -0500262static struct ext4_dir_entry_2* dx_pack_dirents(char *base, unsigned blocksize);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500263static void dx_insert_block(struct dx_frame *frame,
264 u32 hash, ext4_lblk_t block);
Mingming Cao617ba132006-10-11 01:20:53 -0700265static int ext4_htree_next_block(struct inode *dir, __u32 hash,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700266 struct dx_frame *frame,
267 struct dx_frame *frames,
268 __u32 *start_hash);
Theodore Ts'of702ba02008-09-22 15:21:01 -0400269static struct buffer_head * ext4_dx_find_entry(struct inode *dir,
270 const struct qstr *d_name,
Theodore Ts'o537d8f92014-08-29 20:49:51 -0400271 struct ext4_dir_entry_2 **res_dir);
Mingming Cao617ba132006-10-11 01:20:53 -0700272static int ext4_dx_add_entry(handle_t *handle, struct dentry *dentry,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700273 struct inode *inode);
274
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400275/* checksumming functions */
Tao Ma3c47d542012-12-10 14:05:59 -0500276void initialize_dirent_tail(struct ext4_dir_entry_tail *t,
277 unsigned int blocksize)
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400278{
279 memset(t, 0, sizeof(struct ext4_dir_entry_tail));
280 t->det_rec_len = ext4_rec_len_to_disk(
281 sizeof(struct ext4_dir_entry_tail), blocksize);
282 t->det_reserved_ft = EXT4_FT_DIR_CSUM;
283}
284
285/* Walk through a dirent block to find a checksum "dirent" at the tail */
286static struct ext4_dir_entry_tail *get_dirent_tail(struct inode *inode,
287 struct ext4_dir_entry *de)
288{
289 struct ext4_dir_entry_tail *t;
290
291#ifdef PARANOID
292 struct ext4_dir_entry *d, *top;
293
294 d = de;
295 top = (struct ext4_dir_entry *)(((void *)de) +
296 (EXT4_BLOCK_SIZE(inode->i_sb) -
297 sizeof(struct ext4_dir_entry_tail)));
298 while (d < top && d->rec_len)
299 d = (struct ext4_dir_entry *)(((void *)d) +
300 le16_to_cpu(d->rec_len));
301
302 if (d != top)
303 return NULL;
304
305 t = (struct ext4_dir_entry_tail *)d;
306#else
307 t = EXT4_DIRENT_TAIL(de, EXT4_BLOCK_SIZE(inode->i_sb));
308#endif
309
310 if (t->det_reserved_zero1 ||
311 le16_to_cpu(t->det_rec_len) != sizeof(struct ext4_dir_entry_tail) ||
312 t->det_reserved_zero2 ||
313 t->det_reserved_ft != EXT4_FT_DIR_CSUM)
314 return NULL;
315
316 return t;
317}
318
319static __le32 ext4_dirent_csum(struct inode *inode,
320 struct ext4_dir_entry *dirent, int size)
321{
322 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
323 struct ext4_inode_info *ei = EXT4_I(inode);
324 __u32 csum;
325
326 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)dirent, size);
327 return cpu_to_le32(csum);
328}
329
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500330static void warn_no_space_for_csum(struct inode *inode)
331{
332 ext4_warning(inode->i_sb, "no space in directory inode %lu leaf for "
333 "checksum. Please run e2fsck -D.", inode->i_ino);
334}
335
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400336int ext4_dirent_csum_verify(struct inode *inode, struct ext4_dir_entry *dirent)
337{
338 struct ext4_dir_entry_tail *t;
339
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -0400340 if (!ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400341 return 1;
342
343 t = get_dirent_tail(inode, dirent);
344 if (!t) {
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500345 warn_no_space_for_csum(inode);
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400346 return 0;
347 }
348
349 if (t->det_checksum != ext4_dirent_csum(inode, dirent,
350 (void *)t - (void *)dirent))
351 return 0;
352
353 return 1;
354}
355
356static void ext4_dirent_csum_set(struct inode *inode,
357 struct ext4_dir_entry *dirent)
358{
359 struct ext4_dir_entry_tail *t;
360
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -0400361 if (!ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400362 return;
363
364 t = get_dirent_tail(inode, dirent);
365 if (!t) {
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500366 warn_no_space_for_csum(inode);
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400367 return;
368 }
369
370 t->det_checksum = ext4_dirent_csum(inode, dirent,
371 (void *)t - (void *)dirent);
372}
373
Tao Ma3c47d542012-12-10 14:05:59 -0500374int ext4_handle_dirty_dirent_node(handle_t *handle,
375 struct inode *inode,
376 struct buffer_head *bh)
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400377{
378 ext4_dirent_csum_set(inode, (struct ext4_dir_entry *)bh->b_data);
379 return ext4_handle_dirty_metadata(handle, inode, bh);
380}
381
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400382static struct dx_countlimit *get_dx_countlimit(struct inode *inode,
383 struct ext4_dir_entry *dirent,
384 int *offset)
385{
386 struct ext4_dir_entry *dp;
387 struct dx_root_info *root;
388 int count_offset;
389
390 if (le16_to_cpu(dirent->rec_len) == EXT4_BLOCK_SIZE(inode->i_sb))
391 count_offset = 8;
392 else if (le16_to_cpu(dirent->rec_len) == 12) {
393 dp = (struct ext4_dir_entry *)(((void *)dirent) + 12);
394 if (le16_to_cpu(dp->rec_len) !=
395 EXT4_BLOCK_SIZE(inode->i_sb) - 12)
396 return NULL;
397 root = (struct dx_root_info *)(((void *)dp + 12));
398 if (root->reserved_zero ||
399 root->info_length != sizeof(struct dx_root_info))
400 return NULL;
401 count_offset = 32;
402 } else
403 return NULL;
404
405 if (offset)
406 *offset = count_offset;
407 return (struct dx_countlimit *)(((void *)dirent) + count_offset);
408}
409
410static __le32 ext4_dx_csum(struct inode *inode, struct ext4_dir_entry *dirent,
411 int count_offset, int count, struct dx_tail *t)
412{
413 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
414 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'od6a77102013-04-09 23:59:55 -0400415 __u32 csum;
416 __le32 save_csum;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400417 int size;
418
419 size = count_offset + (count * sizeof(struct dx_entry));
Theodore Ts'od6a77102013-04-09 23:59:55 -0400420 save_csum = t->dt_checksum;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400421 t->dt_checksum = 0;
422 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)dirent, size);
423 csum = ext4_chksum(sbi, csum, (__u8 *)t, sizeof(struct dx_tail));
Theodore Ts'od6a77102013-04-09 23:59:55 -0400424 t->dt_checksum = save_csum;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400425
426 return cpu_to_le32(csum);
427}
428
429static int ext4_dx_csum_verify(struct inode *inode,
430 struct ext4_dir_entry *dirent)
431{
432 struct dx_countlimit *c;
433 struct dx_tail *t;
434 int count_offset, limit, count;
435
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -0400436 if (!ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400437 return 1;
438
439 c = get_dx_countlimit(inode, dirent, &count_offset);
440 if (!c) {
441 EXT4_ERROR_INODE(inode, "dir seems corrupt? Run e2fsck -D.");
442 return 1;
443 }
444 limit = le16_to_cpu(c->limit);
445 count = le16_to_cpu(c->count);
446 if (count_offset + (limit * sizeof(struct dx_entry)) >
447 EXT4_BLOCK_SIZE(inode->i_sb) - sizeof(struct dx_tail)) {
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500448 warn_no_space_for_csum(inode);
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400449 return 1;
450 }
451 t = (struct dx_tail *)(((struct dx_entry *)c) + limit);
452
453 if (t->dt_checksum != ext4_dx_csum(inode, dirent, count_offset,
454 count, t))
455 return 0;
456 return 1;
457}
458
459static void ext4_dx_csum_set(struct inode *inode, struct ext4_dir_entry *dirent)
460{
461 struct dx_countlimit *c;
462 struct dx_tail *t;
463 int count_offset, limit, count;
464
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -0400465 if (!ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400466 return;
467
468 c = get_dx_countlimit(inode, dirent, &count_offset);
469 if (!c) {
470 EXT4_ERROR_INODE(inode, "dir seems corrupt? Run e2fsck -D.");
471 return;
472 }
473 limit = le16_to_cpu(c->limit);
474 count = le16_to_cpu(c->count);
475 if (count_offset + (limit * sizeof(struct dx_entry)) >
476 EXT4_BLOCK_SIZE(inode->i_sb) - sizeof(struct dx_tail)) {
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500477 warn_no_space_for_csum(inode);
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400478 return;
479 }
480 t = (struct dx_tail *)(((struct dx_entry *)c) + limit);
481
482 t->dt_checksum = ext4_dx_csum(inode, dirent, count_offset, count, t);
483}
484
485static inline int ext4_handle_dirty_dx_node(handle_t *handle,
486 struct inode *inode,
487 struct buffer_head *bh)
488{
489 ext4_dx_csum_set(inode, (struct ext4_dir_entry *)bh->b_data);
490 return ext4_handle_dirty_metadata(handle, inode, bh);
491}
492
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700493/*
Li Zefanf795e142008-07-11 19:27:31 -0400494 * p is at least 6 bytes before the end of page
495 */
496static inline struct ext4_dir_entry_2 *
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500497ext4_next_entry(struct ext4_dir_entry_2 *p, unsigned long blocksize)
Li Zefanf795e142008-07-11 19:27:31 -0400498{
499 return (struct ext4_dir_entry_2 *)((char *)p +
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500500 ext4_rec_len_from_disk(p->rec_len, blocksize));
Li Zefanf795e142008-07-11 19:27:31 -0400501}
502
503/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700504 * Future: use high four bits of block for coalesce-on-delete flags
505 * Mask them off for now.
506 */
507
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500508static inline ext4_lblk_t dx_get_block(struct dx_entry *entry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700509{
510 return le32_to_cpu(entry->block) & 0x00ffffff;
511}
512
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500513static inline void dx_set_block(struct dx_entry *entry, ext4_lblk_t value)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700514{
515 entry->block = cpu_to_le32(value);
516}
517
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400518static inline unsigned dx_get_hash(struct dx_entry *entry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700519{
520 return le32_to_cpu(entry->hash);
521}
522
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400523static inline void dx_set_hash(struct dx_entry *entry, unsigned value)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700524{
525 entry->hash = cpu_to_le32(value);
526}
527
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400528static inline unsigned dx_get_count(struct dx_entry *entries)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700529{
530 return le16_to_cpu(((struct dx_countlimit *) entries)->count);
531}
532
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400533static inline unsigned dx_get_limit(struct dx_entry *entries)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700534{
535 return le16_to_cpu(((struct dx_countlimit *) entries)->limit);
536}
537
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400538static inline void dx_set_count(struct dx_entry *entries, unsigned value)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700539{
540 ((struct dx_countlimit *) entries)->count = cpu_to_le16(value);
541}
542
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400543static inline void dx_set_limit(struct dx_entry *entries, unsigned value)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700544{
545 ((struct dx_countlimit *) entries)->limit = cpu_to_le16(value);
546}
547
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400548static inline unsigned dx_root_limit(struct inode *dir, unsigned infosize)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700549{
Mingming Cao617ba132006-10-11 01:20:53 -0700550 unsigned entry_space = dir->i_sb->s_blocksize - EXT4_DIR_REC_LEN(1) -
551 EXT4_DIR_REC_LEN(2) - infosize;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400552
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -0400553 if (ext4_has_metadata_csum(dir->i_sb))
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400554 entry_space -= sizeof(struct dx_tail);
Li Zefand9c769b2008-07-11 19:27:31 -0400555 return entry_space / sizeof(struct dx_entry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700556}
557
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400558static inline unsigned dx_node_limit(struct inode *dir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700559{
Mingming Cao617ba132006-10-11 01:20:53 -0700560 unsigned entry_space = dir->i_sb->s_blocksize - EXT4_DIR_REC_LEN(0);
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400561
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -0400562 if (ext4_has_metadata_csum(dir->i_sb))
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400563 entry_space -= sizeof(struct dx_tail);
Li Zefand9c769b2008-07-11 19:27:31 -0400564 return entry_space / sizeof(struct dx_entry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700565}
566
567/*
568 * Debug
569 */
570#ifdef DX_DEBUG
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400571static void dx_show_index(char * label, struct dx_entry *entries)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700572{
Andrew Morton63f57932006-10-11 01:21:24 -0700573 int i, n = dx_get_count (entries);
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400574 printk(KERN_DEBUG "%s index ", label);
Andrew Morton63f57932006-10-11 01:21:24 -0700575 for (i = 0; i < n; i++) {
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400576 printk("%x->%lu ", i ? dx_get_hash(entries + i) :
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500577 0, (unsigned long)dx_get_block(entries + i));
Andrew Morton63f57932006-10-11 01:21:24 -0700578 }
579 printk("\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700580}
581
582struct stats
583{
584 unsigned names;
585 unsigned space;
586 unsigned bcount;
587};
588
Mingming Cao617ba132006-10-11 01:20:53 -0700589static struct stats dx_show_leaf(struct dx_hash_info *hinfo, struct ext4_dir_entry_2 *de,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700590 int size, int show_names)
591{
592 unsigned names = 0, space = 0;
593 char *base = (char *) de;
594 struct dx_hash_info h = *hinfo;
595
596 printk("names: ");
597 while ((char *) de < base + size)
598 {
599 if (de->inode)
600 {
601 if (show_names)
602 {
603 int len = de->name_len;
604 char *name = de->name;
605 while (len--) printk("%c", *name++);
Mingming Cao617ba132006-10-11 01:20:53 -0700606 ext4fs_dirhash(de->name, de->name_len, &h);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700607 printk(":%x.%u ", h.hash,
Bernd Schubert265c6a02011-07-16 19:41:23 -0400608 (unsigned) ((char *) de - base));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700609 }
Mingming Cao617ba132006-10-11 01:20:53 -0700610 space += EXT4_DIR_REC_LEN(de->name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700611 names++;
612 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500613 de = ext4_next_entry(de, size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700614 }
615 printk("(%i)\n", names);
616 return (struct stats) { names, space, 1 };
617}
618
619struct stats dx_show_entries(struct dx_hash_info *hinfo, struct inode *dir,
620 struct dx_entry *entries, int levels)
621{
622 unsigned blocksize = dir->i_sb->s_blocksize;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400623 unsigned count = dx_get_count(entries), names = 0, space = 0, i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700624 unsigned bcount = 0;
625 struct buffer_head *bh;
626 int err;
627 printk("%i indexed blocks...\n", count);
628 for (i = 0; i < count; i++, entries++)
629 {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500630 ext4_lblk_t block = dx_get_block(entries);
631 ext4_lblk_t hash = i ? dx_get_hash(entries): 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700632 u32 range = i < count - 1? (dx_get_hash(entries + 1) - hash): ~hash;
633 struct stats stats;
634 printk("%s%3u:%03u hash %8x/%8x ",levels?"":" ", i, block, hash, range);
Theodore Ts'o1c215022014-08-29 20:52:15 -0400635 bh = ext4_bread(NULL,dir, block, 0);
636 if (!bh || IS_ERR(bh))
637 continue;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700638 stats = levels?
639 dx_show_entries(hinfo, dir, ((struct dx_node *) bh->b_data)->entries, levels - 1):
Mingming Cao617ba132006-10-11 01:20:53 -0700640 dx_show_leaf(hinfo, (struct ext4_dir_entry_2 *) bh->b_data, blocksize, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700641 names += stats.names;
642 space += stats.space;
643 bcount += stats.bcount;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400644 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700645 }
646 if (bcount)
Theodore Ts'o60e66792010-05-17 07:00:00 -0400647 printk(KERN_DEBUG "%snames %u, fullness %u (%u%%)\n",
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400648 levels ? "" : " ", names, space/bcount,
649 (space/bcount)*100/blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700650 return (struct stats) { names, space, bcount};
651}
652#endif /* DX_DEBUG */
653
654/*
655 * Probe for a directory leaf block to search.
656 *
657 * dx_probe can return ERR_BAD_DX_DIR, which means there was a format
658 * error in the directory index, and the caller should fall back to
659 * searching the directory normally. The callers of dx_probe **MUST**
660 * check for this error code, and make sure it never gets reflected
661 * back to userspace.
662 */
663static struct dx_frame *
Theodore Ts'of702ba02008-09-22 15:21:01 -0400664dx_probe(const struct qstr *d_name, struct inode *dir,
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400665 struct dx_hash_info *hinfo, struct dx_frame *frame_in)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700666{
667 unsigned count, indirect;
668 struct dx_entry *at, *entries, *p, *q, *m;
669 struct dx_root *root;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700670 struct dx_frame *frame = frame_in;
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400671 struct dx_frame *ret_err = ERR_PTR(ERR_BAD_DX_DIR);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700672 u32 hash;
673
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400674 frame->bh = ext4_read_dirblock(dir, 0, INDEX);
675 if (IS_ERR(frame->bh))
676 return (struct dx_frame *) frame->bh;
677
678 root = (struct dx_root *) frame->bh->b_data;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700679 if (root->info.hash_version != DX_HASH_TEA &&
680 root->info.hash_version != DX_HASH_HALF_MD4 &&
681 root->info.hash_version != DX_HASH_LEGACY) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500682 ext4_warning(dir->i_sb, "Unrecognised inode hash code %d",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700683 root->info.hash_version);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700684 goto fail;
685 }
686 hinfo->hash_version = root->info.hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -0400687 if (hinfo->hash_version <= DX_HASH_TEA)
688 hinfo->hash_version += EXT4_SB(dir->i_sb)->s_hash_unsigned;
Mingming Cao617ba132006-10-11 01:20:53 -0700689 hinfo->seed = EXT4_SB(dir->i_sb)->s_hash_seed;
Theodore Ts'of702ba02008-09-22 15:21:01 -0400690 if (d_name)
691 ext4fs_dirhash(d_name->name, d_name->len, hinfo);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700692 hash = hinfo->hash;
693
694 if (root->info.unused_flags & 1) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500695 ext4_warning(dir->i_sb, "Unimplemented inode hash flags: %#06x",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700696 root->info.unused_flags);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700697 goto fail;
698 }
699
700 if ((indirect = root->info.indirect_levels) > 1) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500701 ext4_warning(dir->i_sb, "Unimplemented inode hash depth: %#06x",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700702 root->info.indirect_levels);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700703 goto fail;
704 }
705
706 entries = (struct dx_entry *) (((char *)&root->info) +
707 root->info.info_length);
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700708
709 if (dx_get_limit(entries) != dx_root_limit(dir,
710 root->info.info_length)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500711 ext4_warning(dir->i_sb, "dx entry: limit != root limit");
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700712 goto fail;
713 }
714
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400715 dxtrace(printk("Look up %x", hash));
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400716 while (1) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700717 count = dx_get_count(entries);
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700718 if (!count || count > dx_get_limit(entries)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500719 ext4_warning(dir->i_sb,
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700720 "dx entry: no count or count > limit");
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400721 goto fail;
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700722 }
723
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700724 p = entries + 1;
725 q = entries + count - 1;
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400726 while (p <= q) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700727 m = p + (q - p)/2;
728 dxtrace(printk("."));
729 if (dx_get_hash(m) > hash)
730 q = m - 1;
731 else
732 p = m + 1;
733 }
734
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400735 if (0) { // linear search cross check
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700736 unsigned n = count - 1;
737 at = entries;
738 while (n--)
739 {
740 dxtrace(printk(","));
741 if (dx_get_hash(++at) > hash)
742 {
743 at--;
744 break;
745 }
746 }
747 assert (at == p - 1);
748 }
749
750 at = p - 1;
751 dxtrace(printk(" %x->%u\n", at == entries? 0: dx_get_hash(at), dx_get_block(at)));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700752 frame->entries = entries;
753 frame->at = at;
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400754 if (!indirect--)
755 return frame;
756 frame++;
757 frame->bh = ext4_read_dirblock(dir, dx_get_block(at), INDEX);
758 if (IS_ERR(frame->bh)) {
759 ret_err = (struct dx_frame *) frame->bh;
760 frame->bh = NULL;
761 goto fail;
Carlos Maiolino6d1ab102012-09-27 09:31:33 -0400762 }
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400763 entries = ((struct dx_node *) frame->bh->b_data)->entries;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400764
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700765 if (dx_get_limit(entries) != dx_node_limit (dir)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500766 ext4_warning(dir->i_sb,
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700767 "dx entry: limit != node limit");
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400768 goto fail;
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700769 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700770 }
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400771fail:
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700772 while (frame >= frame_in) {
773 brelse(frame->bh);
774 frame--;
775 }
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400776 if (ret_err == ERR_PTR(ERR_BAD_DX_DIR))
Eric Sandeen12062dd2010-02-15 14:19:27 -0500777 ext4_warning(dir->i_sb,
Zheng Liu9ee49302012-02-20 23:09:36 -0500778 "Corrupt dir inode %lu, running e2fsck is "
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700779 "recommended.", dir->i_ino);
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400780 return ret_err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700781}
782
783static void dx_release (struct dx_frame *frames)
784{
785 if (frames[0].bh == NULL)
786 return;
787
788 if (((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels)
789 brelse(frames[1].bh);
790 brelse(frames[0].bh);
791}
792
793/*
794 * This function increments the frame pointer to search the next leaf
795 * block, and reads in the necessary intervening nodes if the search
796 * should be necessary. Whether or not the search is necessary is
797 * controlled by the hash parameter. If the hash value is even, then
798 * the search is only continued if the next block starts with that
799 * hash value. This is used if we are searching for a specific file.
800 *
801 * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
802 *
803 * This function returns 1 if the caller should continue to search,
804 * or 0 if it should not. If there is an error reading one of the
805 * index blocks, it will a negative error code.
806 *
807 * If start_hash is non-null, it will be filled in with the starting
808 * hash of the next page.
809 */
Mingming Cao617ba132006-10-11 01:20:53 -0700810static int ext4_htree_next_block(struct inode *dir, __u32 hash,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700811 struct dx_frame *frame,
812 struct dx_frame *frames,
813 __u32 *start_hash)
814{
815 struct dx_frame *p;
816 struct buffer_head *bh;
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500817 int num_frames = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700818 __u32 bhash;
819
820 p = frame;
821 /*
822 * Find the next leaf page by incrementing the frame pointer.
823 * If we run out of entries in the interior node, loop around and
824 * increment pointer in the parent node. When we break out of
825 * this loop, num_frames indicates the number of interior
826 * nodes need to be read.
827 */
828 while (1) {
829 if (++(p->at) < p->entries + dx_get_count(p->entries))
830 break;
831 if (p == frames)
832 return 0;
833 num_frames++;
834 p--;
835 }
836
837 /*
838 * If the hash is 1, then continue only if the next page has a
839 * continuation hash of any value. This is used for readdir
840 * handling. Otherwise, check to see if the hash matches the
841 * desired contiuation hash. If it doesn't, return since
842 * there's no point to read in the successive index pages.
843 */
844 bhash = dx_get_hash(p->at);
845 if (start_hash)
846 *start_hash = bhash;
847 if ((hash & 1) == 0) {
848 if ((bhash & ~1) != hash)
849 return 0;
850 }
851 /*
852 * If the hash is HASH_NB_ALWAYS, we always go to the next
853 * block so no check is necessary
854 */
855 while (num_frames--) {
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500856 bh = ext4_read_dirblock(dir, dx_get_block(p->at), INDEX);
857 if (IS_ERR(bh))
858 return PTR_ERR(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700859 p++;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400860 brelse(p->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700861 p->bh = bh;
862 p->at = p->entries = ((struct dx_node *) bh->b_data)->entries;
863 }
864 return 1;
865}
866
867
868/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700869 * This function fills a red-black tree with information from a
870 * directory block. It returns the number directory entries loaded
871 * into the tree. If there is an error it is returned in err.
872 */
873static int htree_dirblock_to_tree(struct file *dir_file,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500874 struct inode *dir, ext4_lblk_t block,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700875 struct dx_hash_info *hinfo,
876 __u32 start_hash, __u32 start_minor_hash)
877{
878 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -0700879 struct ext4_dir_entry_2 *de, *top;
Carlos Maiolino90b0a972012-09-17 23:39:12 -0400880 int err = 0, count = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700881
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500882 dxtrace(printk(KERN_INFO "In htree dirblock_to_tree: block %lu\n",
883 (unsigned long)block));
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500884 bh = ext4_read_dirblock(dir, block, DIRENT);
885 if (IS_ERR(bh))
886 return PTR_ERR(bh);
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400887
Mingming Cao617ba132006-10-11 01:20:53 -0700888 de = (struct ext4_dir_entry_2 *) bh->b_data;
889 top = (struct ext4_dir_entry_2 *) ((char *) de +
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700890 dir->i_sb->s_blocksize -
Mingming Cao617ba132006-10-11 01:20:53 -0700891 EXT4_DIR_REC_LEN(0));
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500892 for (; de < top; de = ext4_next_entry(de, dir->i_sb->s_blocksize)) {
Theodore Ts'of7c21172011-01-10 12:10:55 -0500893 if (ext4_check_dir_entry(dir, NULL, de, bh,
Tao Ma226ba972012-12-10 14:05:58 -0500894 bh->b_data, bh->b_size,
Theodore Ts'ocad3f002010-12-19 22:07:02 -0500895 (block<<EXT4_BLOCK_SIZE_BITS(dir->i_sb))
896 + ((char *)de - bh->b_data))) {
Al Viro64cb9272013-07-01 08:12:38 -0400897 /* silently ignore the rest of the block */
898 break;
Eric Sandeene6c40212006-12-06 20:36:28 -0800899 }
Mingming Cao617ba132006-10-11 01:20:53 -0700900 ext4fs_dirhash(de->name, de->name_len, hinfo);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700901 if ((hinfo->hash < start_hash) ||
902 ((hinfo->hash == start_hash) &&
903 (hinfo->minor_hash < start_minor_hash)))
904 continue;
905 if (de->inode == 0)
906 continue;
Mingming Cao617ba132006-10-11 01:20:53 -0700907 if ((err = ext4_htree_store_dirent(dir_file,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700908 hinfo->hash, hinfo->minor_hash, de)) != 0) {
909 brelse(bh);
910 return err;
911 }
912 count++;
913 }
914 brelse(bh);
915 return count;
916}
917
918
919/*
920 * This function fills a red-black tree with information from a
921 * directory. We start scanning the directory in hash order, starting
922 * at start_hash and start_minor_hash.
923 *
924 * This function returns the number of entries inserted into the tree,
925 * or a negative error code.
926 */
Mingming Cao617ba132006-10-11 01:20:53 -0700927int ext4_htree_fill_tree(struct file *dir_file, __u32 start_hash,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700928 __u32 start_minor_hash, __u32 *next_hash)
929{
930 struct dx_hash_info hinfo;
Mingming Cao617ba132006-10-11 01:20:53 -0700931 struct ext4_dir_entry_2 *de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700932 struct dx_frame frames[2], *frame;
933 struct inode *dir;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500934 ext4_lblk_t block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700935 int count = 0;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500936 int ret, err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700937 __u32 hashval;
938
Theodore Ts'o60e66792010-05-17 07:00:00 -0400939 dxtrace(printk(KERN_DEBUG "In htree_fill_tree, start hash: %x:%x\n",
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400940 start_hash, start_minor_hash));
Al Viro496ad9a2013-01-23 17:07:38 -0500941 dir = file_inode(dir_file);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400942 if (!(ext4_test_inode_flag(dir, EXT4_INODE_INDEX))) {
Mingming Cao617ba132006-10-11 01:20:53 -0700943 hinfo.hash_version = EXT4_SB(dir->i_sb)->s_def_hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -0400944 if (hinfo.hash_version <= DX_HASH_TEA)
945 hinfo.hash_version +=
946 EXT4_SB(dir->i_sb)->s_hash_unsigned;
Mingming Cao617ba132006-10-11 01:20:53 -0700947 hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed;
Tao Ma8af0f082013-04-19 17:53:09 -0400948 if (ext4_has_inline_data(dir)) {
949 int has_inline_data = 1;
950 count = htree_inlinedir_to_tree(dir_file, dir, 0,
951 &hinfo, start_hash,
952 start_minor_hash,
953 &has_inline_data);
954 if (has_inline_data) {
955 *next_hash = ~0;
956 return count;
957 }
958 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700959 count = htree_dirblock_to_tree(dir_file, dir, 0, &hinfo,
960 start_hash, start_minor_hash);
961 *next_hash = ~0;
962 return count;
963 }
964 hinfo.hash = start_hash;
965 hinfo.minor_hash = 0;
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400966 frame = dx_probe(NULL, dir, &hinfo, frames);
967 if (IS_ERR(frame))
968 return PTR_ERR(frame);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700969
970 /* Add '.' and '..' from the htree header */
971 if (!start_hash && !start_minor_hash) {
Mingming Cao617ba132006-10-11 01:20:53 -0700972 de = (struct ext4_dir_entry_2 *) frames[0].bh->b_data;
973 if ((err = ext4_htree_store_dirent(dir_file, 0, 0, de)) != 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700974 goto errout;
975 count++;
976 }
977 if (start_hash < 2 || (start_hash ==2 && start_minor_hash==0)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700978 de = (struct ext4_dir_entry_2 *) frames[0].bh->b_data;
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500979 de = ext4_next_entry(de, dir->i_sb->s_blocksize);
Mingming Cao617ba132006-10-11 01:20:53 -0700980 if ((err = ext4_htree_store_dirent(dir_file, 2, 0, de)) != 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700981 goto errout;
982 count++;
983 }
984
985 while (1) {
986 block = dx_get_block(frame->at);
987 ret = htree_dirblock_to_tree(dir_file, dir, block, &hinfo,
988 start_hash, start_minor_hash);
989 if (ret < 0) {
990 err = ret;
991 goto errout;
992 }
993 count += ret;
994 hashval = ~0;
Mingming Cao617ba132006-10-11 01:20:53 -0700995 ret = ext4_htree_next_block(dir, HASH_NB_ALWAYS,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700996 frame, frames, &hashval);
997 *next_hash = hashval;
998 if (ret < 0) {
999 err = ret;
1000 goto errout;
1001 }
1002 /*
1003 * Stop if: (a) there are no more entries, or
1004 * (b) we have inserted at least one entry and the
1005 * next hash value is not a continuation
1006 */
1007 if ((ret == 0) ||
1008 (count && ((hashval & 1) == 0)))
1009 break;
1010 }
1011 dx_release(frames);
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001012 dxtrace(printk(KERN_DEBUG "Fill tree: returned %d entries, "
1013 "next hash: %x\n", count, *next_hash));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001014 return count;
1015errout:
1016 dx_release(frames);
1017 return (err);
1018}
1019
Tao Ma7335cd32012-12-10 14:05:59 -05001020static inline int search_dirblock(struct buffer_head *bh,
1021 struct inode *dir,
1022 const struct qstr *d_name,
1023 unsigned int offset,
1024 struct ext4_dir_entry_2 **res_dir)
1025{
1026 return search_dir(bh, bh->b_data, dir->i_sb->s_blocksize, dir,
1027 d_name, offset, res_dir);
1028}
1029
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001030/*
1031 * Directory block splitting, compacting
1032 */
1033
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001034/*
1035 * Create map of hash values, offsets, and sizes, stored at end of block.
1036 * Returns number of entries mapped.
1037 */
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001038static int dx_make_map(struct ext4_dir_entry_2 *de, unsigned blocksize,
1039 struct dx_hash_info *hinfo,
1040 struct dx_map_entry *map_tail)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001041{
1042 int count = 0;
1043 char *base = (char *) de;
1044 struct dx_hash_info h = *hinfo;
1045
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001046 while ((char *) de < base + blocksize) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001047 if (de->name_len && de->inode) {
Mingming Cao617ba132006-10-11 01:20:53 -07001048 ext4fs_dirhash(de->name, de->name_len, &h);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001049 map_tail--;
1050 map_tail->hash = h.hash;
Toshiyuki Okajima9aee2282009-06-08 12:41:35 -04001051 map_tail->offs = ((char *) de - base)>>2;
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001052 map_tail->size = le16_to_cpu(de->rec_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001053 count++;
1054 cond_resched();
1055 }
1056 /* XXX: do we need to check rec_len == 0 case? -Chris */
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001057 de = ext4_next_entry(de, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001058 }
1059 return count;
1060}
1061
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001062/* Sort map by hash value */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001063static void dx_sort_map (struct dx_map_entry *map, unsigned count)
1064{
Andrew Morton63f57932006-10-11 01:21:24 -07001065 struct dx_map_entry *p, *q, *top = map + count - 1;
1066 int more;
1067 /* Combsort until bubble sort doesn't suck */
1068 while (count > 2) {
1069 count = count*10/13;
1070 if (count - 9 < 2) /* 9, 10 -> 11 */
1071 count = 11;
1072 for (p = top, q = p - count; q >= map; p--, q--)
1073 if (p->hash < q->hash)
1074 swap(*p, *q);
1075 }
1076 /* Garden variety bubble sort */
1077 do {
1078 more = 0;
1079 q = top;
1080 while (q-- > map) {
1081 if (q[1].hash >= q[0].hash)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001082 continue;
Andrew Morton63f57932006-10-11 01:21:24 -07001083 swap(*(q+1), *q);
1084 more = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001085 }
1086 } while(more);
1087}
1088
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001089static void dx_insert_block(struct dx_frame *frame, u32 hash, ext4_lblk_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001090{
1091 struct dx_entry *entries = frame->entries;
1092 struct dx_entry *old = frame->at, *new = old + 1;
1093 int count = dx_get_count(entries);
1094
1095 assert(count < dx_get_limit(entries));
1096 assert(old < entries + count);
1097 memmove(new + 1, new, (char *)(entries + count) - (char *)(new));
1098 dx_set_hash(new, hash);
1099 dx_set_block(new, block);
1100 dx_set_count(entries, count + 1);
1101}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001102
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001103/*
Mingming Cao617ba132006-10-11 01:20:53 -07001104 * NOTE! unlike strncmp, ext4_match returns 1 for success, 0 for failure.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001105 *
Mingming Cao617ba132006-10-11 01:20:53 -07001106 * `len <= EXT4_NAME_LEN' is guaranteed by caller.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001107 * `de != NULL' is guaranteed by caller.
1108 */
Mingming Cao617ba132006-10-11 01:20:53 -07001109static inline int ext4_match (int len, const char * const name,
1110 struct ext4_dir_entry_2 * de)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001111{
1112 if (len != de->name_len)
1113 return 0;
1114 if (!de->inode)
1115 return 0;
1116 return !memcmp(name, de->name, len);
1117}
1118
1119/*
1120 * Returns 0 if not found, -1 on failure, and 1 on success
1121 */
Tao Ma7335cd32012-12-10 14:05:59 -05001122int search_dir(struct buffer_head *bh,
1123 char *search_buf,
1124 int buf_size,
1125 struct inode *dir,
1126 const struct qstr *d_name,
1127 unsigned int offset,
1128 struct ext4_dir_entry_2 **res_dir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001129{
Mingming Cao617ba132006-10-11 01:20:53 -07001130 struct ext4_dir_entry_2 * de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001131 char * dlimit;
1132 int de_len;
Theodore Ts'of702ba02008-09-22 15:21:01 -04001133 const char *name = d_name->name;
1134 int namelen = d_name->len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001135
Tao Ma7335cd32012-12-10 14:05:59 -05001136 de = (struct ext4_dir_entry_2 *)search_buf;
1137 dlimit = search_buf + buf_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001138 while ((char *) de < dlimit) {
1139 /* this code is executed quadratically often */
1140 /* do minimal checking `by hand' */
1141
1142 if ((char *) de + namelen <= dlimit &&
Mingming Cao617ba132006-10-11 01:20:53 -07001143 ext4_match (namelen, name, de)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001144 /* found a match - just to be sure, do a full check */
Tao Ma226ba972012-12-10 14:05:58 -05001145 if (ext4_check_dir_entry(dir, NULL, de, bh, bh->b_data,
1146 bh->b_size, offset))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001147 return -1;
1148 *res_dir = de;
1149 return 1;
1150 }
1151 /* prevent looping on a bad block */
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001152 de_len = ext4_rec_len_from_disk(de->rec_len,
1153 dir->i_sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001154 if (de_len <= 0)
1155 return -1;
1156 offset += de_len;
Mingming Cao617ba132006-10-11 01:20:53 -07001157 de = (struct ext4_dir_entry_2 *) ((char *) de + de_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001158 }
1159 return 0;
1160}
1161
Darrick J. Wongc6af8802012-11-12 23:51:02 -05001162static int is_dx_internal_node(struct inode *dir, ext4_lblk_t block,
1163 struct ext4_dir_entry *de)
1164{
1165 struct super_block *sb = dir->i_sb;
1166
1167 if (!is_dx(dir))
1168 return 0;
1169 if (block == 0)
1170 return 1;
1171 if (de->inode == 0 &&
1172 ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize) ==
1173 sb->s_blocksize)
1174 return 1;
1175 return 0;
1176}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001177
1178/*
Mingming Cao617ba132006-10-11 01:20:53 -07001179 * ext4_find_entry()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001180 *
1181 * finds an entry in the specified directory with the wanted name. It
1182 * returns the cache buffer in which the entry was found, and the entry
1183 * itself (as a parameter - res_dir). It does NOT read the inode of the
1184 * entry - you'll have to do that yourself if you want to.
1185 *
1186 * The returned buffer_head has ->b_count elevated. The caller is expected
1187 * to brelse() it when appropriate.
1188 */
Theodore Ts'of702ba02008-09-22 15:21:01 -04001189static struct buffer_head * ext4_find_entry (struct inode *dir,
1190 const struct qstr *d_name,
Tao Ma32f7f222012-12-10 14:06:01 -05001191 struct ext4_dir_entry_2 **res_dir,
1192 int *inlined)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001193{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001194 struct super_block *sb;
1195 struct buffer_head *bh_use[NAMEI_RA_SIZE];
1196 struct buffer_head *bh, *ret = NULL;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001197 ext4_lblk_t start, block, b;
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001198 const u8 *name = d_name->name;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001199 int ra_max = 0; /* Number of bh's in the readahead
1200 buffer, bh_use[] */
1201 int ra_ptr = 0; /* Current index into readahead
1202 buffer */
1203 int num = 0;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001204 ext4_lblk_t nblocks;
Theodore Ts'o10560082014-08-29 20:51:32 -04001205 int i, namelen;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001206
1207 *res_dir = NULL;
1208 sb = dir->i_sb;
Theodore Ts'of702ba02008-09-22 15:21:01 -04001209 namelen = d_name->len;
Mingming Cao617ba132006-10-11 01:20:53 -07001210 if (namelen > EXT4_NAME_LEN)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001211 return NULL;
Tao Mae8e948e2012-12-10 14:06:00 -05001212
1213 if (ext4_has_inline_data(dir)) {
1214 int has_inline_data = 1;
1215 ret = ext4_find_inline_entry(dir, d_name, res_dir,
1216 &has_inline_data);
Tao Ma32f7f222012-12-10 14:06:01 -05001217 if (has_inline_data) {
1218 if (inlined)
1219 *inlined = 1;
Tao Mae8e948e2012-12-10 14:06:00 -05001220 return ret;
Tao Ma32f7f222012-12-10 14:06:01 -05001221 }
Tao Mae8e948e2012-12-10 14:06:00 -05001222 }
1223
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001224 if ((namelen <= 2) && (name[0] == '.') &&
Aaro Koskinen6d5c3aa2010-12-14 21:45:31 -05001225 (name[1] == '.' || name[1] == '\0')) {
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001226 /*
1227 * "." or ".." will only be in the first block
1228 * NFS may look up ".."; "." should be handled by the VFS
1229 */
1230 block = start = 0;
1231 nblocks = 1;
1232 goto restart;
1233 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001234 if (is_dx(dir)) {
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001235 bh = ext4_dx_find_entry(dir, d_name, res_dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001236 /*
1237 * On success, or if the error was file not found,
1238 * return. Otherwise, fall back to doing a search the
1239 * old fashioned way.
1240 */
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001241 if (!IS_ERR(bh) || PTR_ERR(bh) != ERR_BAD_DX_DIR)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001242 return bh;
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001243 dxtrace(printk(KERN_DEBUG "ext4_find_entry: dx failed, "
1244 "falling back\n"));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001245 }
Mingming Cao617ba132006-10-11 01:20:53 -07001246 nblocks = dir->i_size >> EXT4_BLOCK_SIZE_BITS(sb);
1247 start = EXT4_I(dir)->i_dir_start_lookup;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001248 if (start >= nblocks)
1249 start = 0;
1250 block = start;
1251restart:
1252 do {
1253 /*
1254 * We deal with the read-ahead logic here.
1255 */
1256 if (ra_ptr >= ra_max) {
1257 /* Refill the readahead buffer */
1258 ra_ptr = 0;
1259 b = block;
1260 for (ra_max = 0; ra_max < NAMEI_RA_SIZE; ra_max++) {
1261 /*
1262 * Terminate if we reach the end of the
1263 * directory and must wrap, or if our
1264 * search has finished at this block.
1265 */
1266 if (b >= nblocks || (num && block == start)) {
1267 bh_use[ra_max] = NULL;
1268 break;
1269 }
1270 num++;
Theodore Ts'o10560082014-08-29 20:51:32 -04001271 bh = ext4_getblk(NULL, dir, b++, 0);
1272 if (unlikely(IS_ERR(bh))) {
Theodore Ts'o36de9282014-08-23 17:47:19 -04001273 if (ra_max == 0)
Theodore Ts'o10560082014-08-29 20:51:32 -04001274 return bh;
Theodore Ts'o36de9282014-08-23 17:47:19 -04001275 break;
1276 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001277 bh_use[ra_max] = bh;
1278 if (bh)
Christoph Hellwig65299a32011-08-23 14:50:29 +02001279 ll_rw_block(READ | REQ_META | REQ_PRIO,
1280 1, &bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001281 }
1282 }
1283 if ((bh = bh_use[ra_ptr++]) == NULL)
1284 goto next;
1285 wait_on_buffer(bh);
1286 if (!buffer_uptodate(bh)) {
1287 /* read error, skip block & hope for the best */
Theodore Ts'o24676da2010-05-16 21:00:00 -04001288 EXT4_ERROR_INODE(dir, "reading directory lblock %lu",
1289 (unsigned long) block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001290 brelse(bh);
1291 goto next;
1292 }
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001293 if (!buffer_verified(bh) &&
Darrick J. Wongc6af8802012-11-12 23:51:02 -05001294 !is_dx_internal_node(dir, block,
1295 (struct ext4_dir_entry *)bh->b_data) &&
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001296 !ext4_dirent_csum_verify(dir,
1297 (struct ext4_dir_entry *)bh->b_data)) {
1298 EXT4_ERROR_INODE(dir, "checksumming directory "
1299 "block %lu", (unsigned long)block);
1300 brelse(bh);
1301 goto next;
1302 }
1303 set_buffer_verified(bh);
Theodore Ts'of702ba02008-09-22 15:21:01 -04001304 i = search_dirblock(bh, dir, d_name,
Mingming Cao617ba132006-10-11 01:20:53 -07001305 block << EXT4_BLOCK_SIZE_BITS(sb), res_dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001306 if (i == 1) {
Mingming Cao617ba132006-10-11 01:20:53 -07001307 EXT4_I(dir)->i_dir_start_lookup = block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001308 ret = bh;
1309 goto cleanup_and_exit;
1310 } else {
1311 brelse(bh);
1312 if (i < 0)
1313 goto cleanup_and_exit;
1314 }
1315 next:
1316 if (++block >= nblocks)
1317 block = 0;
1318 } while (block != start);
1319
1320 /*
1321 * If the directory has grown while we were searching, then
1322 * search the last part of the directory before giving up.
1323 */
1324 block = nblocks;
Mingming Cao617ba132006-10-11 01:20:53 -07001325 nblocks = dir->i_size >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001326 if (block < nblocks) {
1327 start = 0;
1328 goto restart;
1329 }
1330
1331cleanup_and_exit:
1332 /* Clean up the read-ahead blocks */
1333 for (; ra_ptr < ra_max; ra_ptr++)
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001334 brelse(bh_use[ra_ptr]);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001335 return ret;
1336}
1337
Theodore Ts'of702ba02008-09-22 15:21:01 -04001338static struct buffer_head * ext4_dx_find_entry(struct inode *dir, const struct qstr *d_name,
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001339 struct ext4_dir_entry_2 **res_dir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001340{
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001341 struct super_block * sb = dir->i_sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001342 struct dx_hash_info hinfo;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001343 struct dx_frame frames[2], *frame;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001344 struct buffer_head *bh;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001345 ext4_lblk_t block;
Theodore Ts'odd73b5d2014-08-29 20:52:17 -04001346 int retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001347
Theodore Ts'odd73b5d2014-08-29 20:52:17 -04001348 frame = dx_probe(d_name, dir, &hinfo, frames);
1349 if (IS_ERR(frame))
1350 return (struct buffer_head *) frame;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001351 do {
1352 block = dx_get_block(frame->at);
Theodore Ts'odc6982f2013-02-14 23:59:26 -05001353 bh = ext4_read_dirblock(dir, block, DIRENT);
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001354 if (IS_ERR(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001355 goto errout;
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001356
Theodore Ts'o7845c042010-10-27 21:30:08 -04001357 retval = search_dirblock(bh, dir, d_name,
1358 block << EXT4_BLOCK_SIZE_BITS(sb),
1359 res_dir);
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001360 if (retval == 1)
1361 goto success;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001362 brelse(bh);
Theodore Ts'o7845c042010-10-27 21:30:08 -04001363 if (retval == -1) {
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001364 bh = ERR_PTR(ERR_BAD_DX_DIR);
Theodore Ts'o7845c042010-10-27 21:30:08 -04001365 goto errout;
1366 }
1367
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001368 /* Check to see if we should continue to search */
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001369 retval = ext4_htree_next_block(dir, hinfo.hash, frame,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001370 frames, NULL);
1371 if (retval < 0) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05001372 ext4_warning(sb,
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001373 "error %d reading index page in directory #%lu",
1374 retval, dir->i_ino);
1375 bh = ERR_PTR(retval);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001376 goto errout;
1377 }
1378 } while (retval == 1);
1379
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001380 bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001381errout:
Bernd Schubert265c6a02011-07-16 19:41:23 -04001382 dxtrace(printk(KERN_DEBUG "%s not found\n", d_name->name));
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001383success:
1384 dx_release(frames);
1385 return bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001386}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001387
Al Viro00cd8dd2012-06-10 17:13:09 -04001388static struct dentry *ext4_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001389{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001390 struct inode *inode;
1391 struct ext4_dir_entry_2 *de;
1392 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001393
Mingming Cao617ba132006-10-11 01:20:53 -07001394 if (dentry->d_name.len > EXT4_NAME_LEN)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001395 return ERR_PTR(-ENAMETOOLONG);
1396
Tao Ma32f7f222012-12-10 14:06:01 -05001397 bh = ext4_find_entry(dir, &dentry->d_name, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04001398 if (IS_ERR(bh))
1399 return (struct dentry *) bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001400 inode = NULL;
1401 if (bh) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001402 __u32 ino = le32_to_cpu(de->inode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001403 brelse(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07001404 if (!ext4_valid_inum(dir->i_sb, ino)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001405 EXT4_ERROR_INODE(dir, "bad inode number: %u", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -08001406 return ERR_PTR(-EIO);
Vasily Averina6c15c22007-07-15 23:40:46 -07001407 }
Andreas Dilger7e936b72012-05-28 17:02:25 -04001408 if (unlikely(ino == dir->i_ino)) {
David Howellsa34e15c2014-01-06 14:04:23 -05001409 EXT4_ERROR_INODE(dir, "'%pd' linked to parent dir",
1410 dentry);
Andreas Dilger7e936b72012-05-28 17:02:25 -04001411 return ERR_PTR(-EIO);
1412 }
Theodore Ts'of4bb2982014-10-05 22:56:00 -04001413 inode = ext4_iget_normal(dir->i_sb, ino);
Al Viroa9049372011-07-08 21:20:11 -04001414 if (inode == ERR_PTR(-ESTALE)) {
1415 EXT4_ERROR_INODE(dir,
1416 "deleted inode referenced: %u",
1417 ino);
1418 return ERR_PTR(-EIO);
Bryan Donlane6f009b2009-02-22 21:20:25 -05001419 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001420 }
1421 return d_splice_alias(inode, dentry);
1422}
1423
1424
Mingming Cao617ba132006-10-11 01:20:53 -07001425struct dentry *ext4_get_parent(struct dentry *child)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001426{
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001427 __u32 ino;
Linus Torvalds26fe5752012-05-10 13:14:12 -07001428 static const struct qstr dotdot = QSTR_INIT("..", 2);
Mingming Cao617ba132006-10-11 01:20:53 -07001429 struct ext4_dir_entry_2 * de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001430 struct buffer_head *bh;
1431
Tao Ma32f7f222012-12-10 14:06:01 -05001432 bh = ext4_find_entry(child->d_inode, &dotdot, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04001433 if (IS_ERR(bh))
1434 return (struct dentry *) bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001435 if (!bh)
1436 return ERR_PTR(-ENOENT);
1437 ino = le32_to_cpu(de->inode);
1438 brelse(bh);
1439
Mingming Cao617ba132006-10-11 01:20:53 -07001440 if (!ext4_valid_inum(child->d_inode->i_sb, ino)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001441 EXT4_ERROR_INODE(child->d_inode,
1442 "bad parent inode number: %u", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -08001443 return ERR_PTR(-EIO);
Vasily Averina6c15c22007-07-15 23:40:46 -07001444 }
1445
Theodore Ts'of4bb2982014-10-05 22:56:00 -04001446 return d_obtain_alias(ext4_iget_normal(child->d_inode->i_sb, ino));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001447}
1448
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001449/*
1450 * Move count entries from end of map between two memory locations.
1451 * Returns pointer to last entry moved.
1452 */
Mingming Cao617ba132006-10-11 01:20:53 -07001453static struct ext4_dir_entry_2 *
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001454dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count,
1455 unsigned blocksize)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001456{
1457 unsigned rec_len = 0;
1458
1459 while (count--) {
Theodore Ts'o60e66792010-05-17 07:00:00 -04001460 struct ext4_dir_entry_2 *de = (struct ext4_dir_entry_2 *)
Toshiyuki Okajima9aee2282009-06-08 12:41:35 -04001461 (from + (map->offs<<2));
Mingming Cao617ba132006-10-11 01:20:53 -07001462 rec_len = EXT4_DIR_REC_LEN(de->name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001463 memcpy (to, de, rec_len);
Mingming Cao617ba132006-10-11 01:20:53 -07001464 ((struct ext4_dir_entry_2 *) to)->rec_len =
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001465 ext4_rec_len_to_disk(rec_len, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001466 de->inode = 0;
1467 map++;
1468 to += rec_len;
1469 }
Mingming Cao617ba132006-10-11 01:20:53 -07001470 return (struct ext4_dir_entry_2 *) (to - rec_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001471}
1472
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001473/*
1474 * Compact each dir entry in the range to the minimal rec_len.
1475 * Returns pointer to last entry in range.
1476 */
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001477static struct ext4_dir_entry_2* dx_pack_dirents(char *base, unsigned blocksize)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001478{
Mingming Cao617ba132006-10-11 01:20:53 -07001479 struct ext4_dir_entry_2 *next, *to, *prev, *de = (struct ext4_dir_entry_2 *) base;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001480 unsigned rec_len = 0;
1481
1482 prev = to = de;
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001483 while ((char*)de < base + blocksize) {
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001484 next = ext4_next_entry(de, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001485 if (de->inode && de->name_len) {
Mingming Cao617ba132006-10-11 01:20:53 -07001486 rec_len = EXT4_DIR_REC_LEN(de->name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001487 if (de > to)
1488 memmove(to, de, rec_len);
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001489 to->rec_len = ext4_rec_len_to_disk(rec_len, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001490 prev = to;
Mingming Cao617ba132006-10-11 01:20:53 -07001491 to = (struct ext4_dir_entry_2 *) (((char *) to) + rec_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001492 }
1493 de = next;
1494 }
1495 return prev;
1496}
1497
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001498/*
1499 * Split a full leaf block to make room for a new dir entry.
1500 * Allocate a new block, and move entries so that they are approx. equally full.
1501 * Returns pointer to de in block into which the new entry will be inserted.
1502 */
Mingming Cao617ba132006-10-11 01:20:53 -07001503static struct ext4_dir_entry_2 *do_split(handle_t *handle, struct inode *dir,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001504 struct buffer_head **bh,struct dx_frame *frame,
Theodore Ts'of8b3b592014-08-29 20:52:18 -04001505 struct dx_hash_info *hinfo)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001506{
1507 unsigned blocksize = dir->i_sb->s_blocksize;
1508 unsigned count, continued;
1509 struct buffer_head *bh2;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001510 ext4_lblk_t newblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001511 u32 hash2;
1512 struct dx_map_entry *map;
1513 char *data1 = (*bh)->b_data, *data2;
Theodore Ts'o59e315b2008-12-06 16:58:39 -05001514 unsigned split, move, size;
Mingming Cao617ba132006-10-11 01:20:53 -07001515 struct ext4_dir_entry_2 *de = NULL, *de2;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001516 struct ext4_dir_entry_tail *t;
1517 int csum_size = 0;
Theodore Ts'o59e315b2008-12-06 16:58:39 -05001518 int err = 0, i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001519
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04001520 if (ext4_has_metadata_csum(dir->i_sb))
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001521 csum_size = sizeof(struct ext4_dir_entry_tail);
1522
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001523 bh2 = ext4_append(handle, dir, &newblock);
1524 if (IS_ERR(bh2)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001525 brelse(*bh);
1526 *bh = NULL;
Theodore Ts'of8b3b592014-08-29 20:52:18 -04001527 return (struct ext4_dir_entry_2 *) bh2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001528 }
1529
1530 BUFFER_TRACE(*bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001531 err = ext4_journal_get_write_access(handle, *bh);
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001532 if (err)
1533 goto journal_error;
1534
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001535 BUFFER_TRACE(frame->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001536 err = ext4_journal_get_write_access(handle, frame->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001537 if (err)
1538 goto journal_error;
1539
1540 data2 = bh2->b_data;
1541
1542 /* create map in the end of data2 block */
1543 map = (struct dx_map_entry *) (data2 + blocksize);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001544 count = dx_make_map((struct ext4_dir_entry_2 *) data1,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001545 blocksize, hinfo, map);
1546 map -= count;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001547 dx_sort_map(map, count);
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001548 /* Split the existing block in the middle, size-wise */
1549 size = 0;
1550 move = 0;
1551 for (i = count-1; i >= 0; i--) {
1552 /* is more than half of this entry in 2nd half of the block? */
1553 if (size + map[i].size/2 > blocksize/2)
1554 break;
1555 size += map[i].size;
1556 move++;
1557 }
1558 /* map index at which we will split */
1559 split = count - move;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001560 hash2 = map[split].hash;
1561 continued = hash2 == map[split - 1].hash;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001562 dxtrace(printk(KERN_INFO "Split block %lu at %x, %i/%i\n",
1563 (unsigned long)dx_get_block(frame->at),
1564 hash2, split, count-split));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001565
1566 /* Fancy dance to stay within two buffers */
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001567 de2 = dx_move_dirents(data1, data2, map + split, count - split, blocksize);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001568 de = dx_pack_dirents(data1, blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001569 de->rec_len = ext4_rec_len_to_disk(data1 + (blocksize - csum_size) -
1570 (char *) de,
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001571 blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001572 de2->rec_len = ext4_rec_len_to_disk(data2 + (blocksize - csum_size) -
1573 (char *) de2,
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001574 blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001575 if (csum_size) {
1576 t = EXT4_DIRENT_TAIL(data2, blocksize);
1577 initialize_dirent_tail(t, blocksize);
1578
1579 t = EXT4_DIRENT_TAIL(data1, blocksize);
1580 initialize_dirent_tail(t, blocksize);
1581 }
1582
Mingming Cao617ba132006-10-11 01:20:53 -07001583 dxtrace(dx_show_leaf (hinfo, (struct ext4_dir_entry_2 *) data1, blocksize, 1));
1584 dxtrace(dx_show_leaf (hinfo, (struct ext4_dir_entry_2 *) data2, blocksize, 1));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001585
1586 /* Which block gets the new entry? */
Theodore Ts'of8b3b592014-08-29 20:52:18 -04001587 if (hinfo->hash >= hash2) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001588 swap(*bh, bh2);
1589 de = de2;
1590 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001591 dx_insert_block(frame, hash2 + continued, newblock);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001592 err = ext4_handle_dirty_dirent_node(handle, dir, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001593 if (err)
1594 goto journal_error;
Darrick J. Wongdbe89442012-04-29 18:39:10 -04001595 err = ext4_handle_dirty_dx_node(handle, dir, frame->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001596 if (err)
1597 goto journal_error;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001598 brelse(bh2);
1599 dxtrace(dx_show_index("frame", frame->entries));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001600 return de;
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001601
1602journal_error:
1603 brelse(*bh);
1604 brelse(bh2);
1605 *bh = NULL;
1606 ext4_std_error(dir->i_sb, err);
Theodore Ts'of8b3b592014-08-29 20:52:18 -04001607 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001608}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001609
Tao Ma978fef92012-12-10 14:05:58 -05001610int ext4_find_dest_de(struct inode *dir, struct inode *inode,
1611 struct buffer_head *bh,
1612 void *buf, int buf_size,
1613 const char *name, int namelen,
1614 struct ext4_dir_entry_2 **dest_de)
1615{
1616 struct ext4_dir_entry_2 *de;
1617 unsigned short reclen = EXT4_DIR_REC_LEN(namelen);
1618 int nlen, rlen;
1619 unsigned int offset = 0;
1620 char *top;
1621
1622 de = (struct ext4_dir_entry_2 *)buf;
1623 top = buf + buf_size - reclen;
1624 while ((char *) de <= top) {
1625 if (ext4_check_dir_entry(dir, NULL, de, bh,
1626 buf, buf_size, offset))
1627 return -EIO;
1628 if (ext4_match(namelen, name, de))
1629 return -EEXIST;
1630 nlen = EXT4_DIR_REC_LEN(de->name_len);
1631 rlen = ext4_rec_len_from_disk(de->rec_len, buf_size);
1632 if ((de->inode ? rlen - nlen : rlen) >= reclen)
1633 break;
1634 de = (struct ext4_dir_entry_2 *)((char *)de + rlen);
1635 offset += rlen;
1636 }
1637 if ((char *) de > top)
1638 return -ENOSPC;
1639
1640 *dest_de = de;
1641 return 0;
1642}
1643
1644void ext4_insert_dentry(struct inode *inode,
1645 struct ext4_dir_entry_2 *de,
1646 int buf_size,
1647 const char *name, int namelen)
1648{
1649
1650 int nlen, rlen;
1651
1652 nlen = EXT4_DIR_REC_LEN(de->name_len);
1653 rlen = ext4_rec_len_from_disk(de->rec_len, buf_size);
1654 if (de->inode) {
1655 struct ext4_dir_entry_2 *de1 =
1656 (struct ext4_dir_entry_2 *)((char *)de + nlen);
1657 de1->rec_len = ext4_rec_len_to_disk(rlen - nlen, buf_size);
1658 de->rec_len = ext4_rec_len_to_disk(nlen, buf_size);
1659 de = de1;
1660 }
1661 de->file_type = EXT4_FT_UNKNOWN;
1662 de->inode = cpu_to_le32(inode->i_ino);
1663 ext4_set_de_type(inode->i_sb, de, inode->i_mode);
1664 de->name_len = namelen;
1665 memcpy(de->name, name, namelen);
1666}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001667/*
1668 * Add a new entry into a directory (leaf) block. If de is non-NULL,
1669 * it points to a directory entry which is guaranteed to be large
1670 * enough for new directory entry. If de is NULL, then
1671 * add_dirent_to_buf will attempt search the directory block for
1672 * space. It will return -ENOSPC if no space is available, and -EIO
1673 * and -EEXIST if directory entry already exists.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001674 */
1675static int add_dirent_to_buf(handle_t *handle, struct dentry *dentry,
Mingming Cao617ba132006-10-11 01:20:53 -07001676 struct inode *inode, struct ext4_dir_entry_2 *de,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001677 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001678{
1679 struct inode *dir = dentry->d_parent->d_inode;
1680 const char *name = dentry->d_name.name;
1681 int namelen = dentry->d_name.len;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001682 unsigned int blocksize = dir->i_sb->s_blocksize;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001683 int csum_size = 0;
Tao Ma978fef92012-12-10 14:05:58 -05001684 int err;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001685
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04001686 if (ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001687 csum_size = sizeof(struct ext4_dir_entry_tail);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001688
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001689 if (!de) {
Tao Ma978fef92012-12-10 14:05:58 -05001690 err = ext4_find_dest_de(dir, inode,
1691 bh, bh->b_data, blocksize - csum_size,
1692 name, namelen, &de);
1693 if (err)
1694 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001695 }
1696 BUFFER_TRACE(bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001697 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001698 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07001699 ext4_std_error(dir->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001700 return err;
1701 }
1702
1703 /* By now the buffer is marked for journaling */
Tao Ma978fef92012-12-10 14:05:58 -05001704 ext4_insert_dentry(inode, de, blocksize, name, namelen);
1705
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001706 /*
1707 * XXX shouldn't update any times until successful
1708 * completion of syscall, but too many callers depend
1709 * on this.
1710 *
1711 * XXX similarly, too many callers depend on
Mingming Cao617ba132006-10-11 01:20:53 -07001712 * ext4_new_inode() setting the times, but error
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001713 * recovery deletes the inode, so the worst that can
1714 * happen is that the times are slightly out of date
1715 * and/or different from the directory change time.
1716 */
Kalpak Shahef7f3832007-07-18 09:15:20 -04001717 dir->i_mtime = dir->i_ctime = ext4_current_time(dir);
Mingming Cao617ba132006-10-11 01:20:53 -07001718 ext4_update_dx_flag(dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001719 dir->i_version++;
Mingming Cao617ba132006-10-11 01:20:53 -07001720 ext4_mark_inode_dirty(handle, dir);
Frank Mayhar03901312009-01-07 00:06:22 -05001721 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001722 err = ext4_handle_dirty_dirent_node(handle, dir, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001723 if (err)
Mingming Cao617ba132006-10-11 01:20:53 -07001724 ext4_std_error(dir->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001725 return 0;
1726}
1727
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001728/*
1729 * This converts a one block unindexed directory to a 3 block indexed
1730 * directory, and adds the dentry to the indexed directory.
1731 */
1732static int make_indexed_dir(handle_t *handle, struct dentry *dentry,
1733 struct inode *inode, struct buffer_head *bh)
1734{
1735 struct inode *dir = dentry->d_parent->d_inode;
1736 const char *name = dentry->d_name.name;
1737 int namelen = dentry->d_name.len;
1738 struct buffer_head *bh2;
1739 struct dx_root *root;
1740 struct dx_frame frames[2], *frame;
1741 struct dx_entry *entries;
Mingming Cao617ba132006-10-11 01:20:53 -07001742 struct ext4_dir_entry_2 *de, *de2;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001743 struct ext4_dir_entry_tail *t;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001744 char *data1, *top;
1745 unsigned len;
1746 int retval;
1747 unsigned blocksize;
1748 struct dx_hash_info hinfo;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001749 ext4_lblk_t block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001750 struct fake_dirent *fde;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001751 int csum_size = 0;
1752
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04001753 if (ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001754 csum_size = sizeof(struct ext4_dir_entry_tail);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001755
1756 blocksize = dir->i_sb->s_blocksize;
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001757 dxtrace(printk(KERN_DEBUG "Creating index: inode %lu\n", dir->i_ino));
liang xie5d601252014-05-12 22:06:43 -04001758 BUFFER_TRACE(bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001759 retval = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001760 if (retval) {
Mingming Cao617ba132006-10-11 01:20:53 -07001761 ext4_std_error(dir->i_sb, retval);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001762 brelse(bh);
1763 return retval;
1764 }
1765 root = (struct dx_root *) bh->b_data;
1766
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001767 /* The 0th block becomes the root, move the dirents out */
1768 fde = &root->dotdot;
1769 de = (struct ext4_dir_entry_2 *)((char *)fde +
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001770 ext4_rec_len_from_disk(fde->rec_len, blocksize));
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001771 if ((char *) de >= (((char *) root) + blocksize)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001772 EXT4_ERROR_INODE(dir, "invalid rec_len for '..'");
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001773 brelse(bh);
1774 return -EIO;
1775 }
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001776 len = ((char *) root) + (blocksize - csum_size) - (char *) de;
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001777
1778 /* Allocate new block for the 0th block's dirents */
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001779 bh2 = ext4_append(handle, dir, &block);
1780 if (IS_ERR(bh2)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001781 brelse(bh);
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001782 return PTR_ERR(bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001783 }
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04001784 ext4_set_inode_flag(dir, EXT4_INODE_INDEX);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001785 data1 = bh2->b_data;
1786
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001787 memcpy (data1, de, len);
Mingming Cao617ba132006-10-11 01:20:53 -07001788 de = (struct ext4_dir_entry_2 *) data1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001789 top = data1 + len;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001790 while ((char *)(de2 = ext4_next_entry(de, blocksize)) < top)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001791 de = de2;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001792 de->rec_len = ext4_rec_len_to_disk(data1 + (blocksize - csum_size) -
1793 (char *) de,
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001794 blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001795
1796 if (csum_size) {
1797 t = EXT4_DIRENT_TAIL(data1, blocksize);
1798 initialize_dirent_tail(t, blocksize);
1799 }
1800
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001801 /* Initialize the root; the dot dirents already exist */
Mingming Cao617ba132006-10-11 01:20:53 -07001802 de = (struct ext4_dir_entry_2 *) (&root->dotdot);
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001803 de->rec_len = ext4_rec_len_to_disk(blocksize - EXT4_DIR_REC_LEN(2),
1804 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001805 memset (&root->info, 0, sizeof(root->info));
1806 root->info.info_length = sizeof(root->info);
Mingming Cao617ba132006-10-11 01:20:53 -07001807 root->info.hash_version = EXT4_SB(dir->i_sb)->s_def_hash_version;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001808 entries = root->entries;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001809 dx_set_block(entries, 1);
1810 dx_set_count(entries, 1);
1811 dx_set_limit(entries, dx_root_limit(dir, sizeof(root->info)));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001812
1813 /* Initialize as for dx_probe */
1814 hinfo.hash_version = root->info.hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -04001815 if (hinfo.hash_version <= DX_HASH_TEA)
1816 hinfo.hash_version += EXT4_SB(dir->i_sb)->s_hash_unsigned;
Mingming Cao617ba132006-10-11 01:20:53 -07001817 hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed;
1818 ext4fs_dirhash(name, namelen, &hinfo);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001819 frame = frames;
1820 frame->entries = entries;
1821 frame->at = entries;
1822 frame->bh = bh;
1823 bh = bh2;
Allison Henderson6976a6f2011-05-15 00:19:41 -04001824
Darrick J. Wongdbe89442012-04-29 18:39:10 -04001825 ext4_handle_dirty_dx_node(handle, dir, frame->bh);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001826 ext4_handle_dirty_dirent_node(handle, dir, bh);
Allison Henderson6976a6f2011-05-15 00:19:41 -04001827
Theodore Ts'of8b3b592014-08-29 20:52:18 -04001828 de = do_split(handle,dir, &bh, frame, &hinfo);
1829 if (IS_ERR(de)) {
Jan Kara7ad8e4e2011-05-03 11:05:55 -04001830 /*
1831 * Even if the block split failed, we have to properly write
1832 * out all the changes we did so far. Otherwise we can end up
1833 * with corrupted filesystem.
1834 */
1835 ext4_mark_inode_dirty(handle, dir);
Jan Kara7ad8e4e2011-05-03 11:05:55 -04001836 dx_release(frames);
Theodore Ts'of8b3b592014-08-29 20:52:18 -04001837 return PTR_ERR(de);
Jan Kara7ad8e4e2011-05-03 11:05:55 -04001838 }
1839 dx_release(frames);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001840
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001841 retval = add_dirent_to_buf(handle, dentry, inode, de, bh);
1842 brelse(bh);
1843 return retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001844}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001845
1846/*
Mingming Cao617ba132006-10-11 01:20:53 -07001847 * ext4_add_entry()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001848 *
1849 * adds a file entry to the specified directory, using the same
Mingming Cao617ba132006-10-11 01:20:53 -07001850 * semantics as ext4_find_entry(). It returns NULL if it failed.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001851 *
1852 * NOTE!! The inode part of 'de' is left at 0 - which means you
1853 * may not sleep between calling this and putting something into
1854 * the entry, as someone else might have used it while you slept.
1855 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001856static int ext4_add_entry(handle_t *handle, struct dentry *dentry,
1857 struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001858{
1859 struct inode *dir = dentry->d_parent->d_inode;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001860 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -07001861 struct ext4_dir_entry_2 *de;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001862 struct ext4_dir_entry_tail *t;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001863 struct super_block *sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001864 int retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001865 int dx_fallback=0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001866 unsigned blocksize;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001867 ext4_lblk_t block, blocks;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001868 int csum_size = 0;
1869
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04001870 if (ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001871 csum_size = sizeof(struct ext4_dir_entry_tail);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001872
1873 sb = dir->i_sb;
1874 blocksize = sb->s_blocksize;
1875 if (!dentry->d_name.len)
1876 return -EINVAL;
Tao Ma3c47d542012-12-10 14:05:59 -05001877
1878 if (ext4_has_inline_data(dir)) {
1879 retval = ext4_try_add_inline_entry(handle, dentry, inode);
1880 if (retval < 0)
1881 return retval;
1882 if (retval == 1) {
1883 retval = 0;
1884 return retval;
1885 }
1886 }
1887
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001888 if (is_dx(dir)) {
Mingming Cao617ba132006-10-11 01:20:53 -07001889 retval = ext4_dx_add_entry(handle, dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001890 if (!retval || (retval != ERR_BAD_DX_DIR))
1891 return retval;
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04001892 ext4_clear_inode_flag(dir, EXT4_INODE_INDEX);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001893 dx_fallback++;
Mingming Cao617ba132006-10-11 01:20:53 -07001894 ext4_mark_inode_dirty(handle, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001895 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001896 blocks = dir->i_size >> sb->s_blocksize_bits;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001897 for (block = 0; block < blocks; block++) {
Theodore Ts'odc6982f2013-02-14 23:59:26 -05001898 bh = ext4_read_dirblock(dir, block, DIRENT);
1899 if (IS_ERR(bh))
1900 return PTR_ERR(bh);
1901
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001902 retval = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001903 if (retval != -ENOSPC) {
1904 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001905 return retval;
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001906 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001907
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001908 if (blocks == 1 && !dx_fallback &&
Theodore Ts'o1e424a32009-11-08 15:45:44 -05001909 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_DIR_INDEX))
1910 return make_indexed_dir(handle, dentry, inode, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001911 brelse(bh);
1912 }
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001913 bh = ext4_append(handle, dir, &block);
1914 if (IS_ERR(bh))
1915 return PTR_ERR(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07001916 de = (struct ext4_dir_entry_2 *) bh->b_data;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001917 de->inode = 0;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001918 de->rec_len = ext4_rec_len_to_disk(blocksize - csum_size, blocksize);
1919
1920 if (csum_size) {
1921 t = EXT4_DIRENT_TAIL(bh->b_data, blocksize);
1922 initialize_dirent_tail(t, blocksize);
1923 }
1924
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001925 retval = add_dirent_to_buf(handle, dentry, inode, de, bh);
1926 brelse(bh);
Frank Mayhar14ece102010-05-17 08:00:00 -04001927 if (retval == 0)
1928 ext4_set_inode_state(inode, EXT4_STATE_NEWENTRY);
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001929 return retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001930}
1931
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001932/*
1933 * Returns 0 for success, or a negative error value
1934 */
Mingming Cao617ba132006-10-11 01:20:53 -07001935static int ext4_dx_add_entry(handle_t *handle, struct dentry *dentry,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001936 struct inode *inode)
1937{
1938 struct dx_frame frames[2], *frame;
1939 struct dx_entry *entries, *at;
1940 struct dx_hash_info hinfo;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001941 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001942 struct inode *dir = dentry->d_parent->d_inode;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001943 struct super_block *sb = dir->i_sb;
Mingming Cao617ba132006-10-11 01:20:53 -07001944 struct ext4_dir_entry_2 *de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001945 int err;
1946
Theodore Ts'odd73b5d2014-08-29 20:52:17 -04001947 frame = dx_probe(&dentry->d_name, dir, &hinfo, frames);
1948 if (IS_ERR(frame))
1949 return PTR_ERR(frame);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001950 entries = frame->entries;
1951 at = frame->at;
Theodore Ts'odc6982f2013-02-14 23:59:26 -05001952 bh = ext4_read_dirblock(dir, dx_get_block(frame->at), DIRENT);
1953 if (IS_ERR(bh)) {
1954 err = PTR_ERR(bh);
1955 bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001956 goto cleanup;
Carlos Maiolino6d1ab102012-09-27 09:31:33 -04001957 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001958
1959 BUFFER_TRACE(bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001960 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001961 if (err)
1962 goto journal_error;
1963
1964 err = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001965 if (err != -ENOSPC)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001966 goto cleanup;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001967
1968 /* Block full, should compress but for now just split */
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001969 dxtrace(printk(KERN_DEBUG "using %u of %u node entries\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001970 dx_get_count(entries), dx_get_limit(entries)));
1971 /* Need to split index? */
1972 if (dx_get_count(entries) == dx_get_limit(entries)) {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001973 ext4_lblk_t newblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001974 unsigned icount = dx_get_count(entries);
1975 int levels = frame - frames;
1976 struct dx_entry *entries2;
1977 struct dx_node *node2;
1978 struct buffer_head *bh2;
1979
1980 if (levels && (dx_get_count(frames->entries) ==
1981 dx_get_limit(frames->entries))) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05001982 ext4_warning(sb, "Directory index full!");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001983 err = -ENOSPC;
1984 goto cleanup;
1985 }
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001986 bh2 = ext4_append(handle, dir, &newblock);
1987 if (IS_ERR(bh2)) {
1988 err = PTR_ERR(bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001989 goto cleanup;
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001990 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001991 node2 = (struct dx_node *)(bh2->b_data);
1992 entries2 = node2->entries;
Andreas Schlick1f7bebb2009-09-10 23:16:07 -04001993 memset(&node2->fake, 0, sizeof(struct fake_dirent));
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001994 node2->fake.rec_len = ext4_rec_len_to_disk(sb->s_blocksize,
1995 sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001996 BUFFER_TRACE(frame->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001997 err = ext4_journal_get_write_access(handle, frame->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001998 if (err)
1999 goto journal_error;
2000 if (levels) {
2001 unsigned icount1 = icount/2, icount2 = icount - icount1;
2002 unsigned hash2 = dx_get_hash(entries + icount1);
Theodore Ts'o4776004f2008-09-08 23:00:52 -04002003 dxtrace(printk(KERN_DEBUG "Split index %i/%i\n",
2004 icount1, icount2));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002005
2006 BUFFER_TRACE(frame->bh, "get_write_access"); /* index root */
Mingming Cao617ba132006-10-11 01:20:53 -07002007 err = ext4_journal_get_write_access(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002008 frames[0].bh);
2009 if (err)
2010 goto journal_error;
2011
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002012 memcpy((char *) entries2, (char *) (entries + icount1),
2013 icount2 * sizeof(struct dx_entry));
2014 dx_set_count(entries, icount1);
2015 dx_set_count(entries2, icount2);
2016 dx_set_limit(entries2, dx_node_limit(dir));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002017
2018 /* Which index block gets the new entry? */
2019 if (at - entries >= icount1) {
2020 frame->at = at = at - entries - icount1 + entries2;
2021 frame->entries = entries = entries2;
2022 swap(frame->bh, bh2);
2023 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002024 dx_insert_block(frames + 0, hash2, newblock);
2025 dxtrace(dx_show_index("node", frames[1].entries));
2026 dxtrace(dx_show_index("node",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002027 ((struct dx_node *) bh2->b_data)->entries));
Darrick J. Wongdbe89442012-04-29 18:39:10 -04002028 err = ext4_handle_dirty_dx_node(handle, dir, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002029 if (err)
2030 goto journal_error;
2031 brelse (bh2);
2032 } else {
Theodore Ts'o4776004f2008-09-08 23:00:52 -04002033 dxtrace(printk(KERN_DEBUG
2034 "Creating second level index...\n"));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002035 memcpy((char *) entries2, (char *) entries,
2036 icount * sizeof(struct dx_entry));
2037 dx_set_limit(entries2, dx_node_limit(dir));
2038
2039 /* Set up root */
2040 dx_set_count(entries, 1);
2041 dx_set_block(entries + 0, newblock);
2042 ((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels = 1;
2043
2044 /* Add new access path frame */
2045 frame = frames + 1;
2046 frame->at = at = at - entries + entries2;
2047 frame->entries = entries = entries2;
2048 frame->bh = bh2;
Mingming Cao617ba132006-10-11 01:20:53 -07002049 err = ext4_journal_get_write_access(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002050 frame->bh);
2051 if (err)
2052 goto journal_error;
2053 }
Darrick J. Wongdbe89442012-04-29 18:39:10 -04002054 err = ext4_handle_dirty_dx_node(handle, dir, frames[0].bh);
Theodore Ts'ob4097142011-01-10 12:46:59 -05002055 if (err) {
2056 ext4_std_error(inode->i_sb, err);
2057 goto cleanup;
2058 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002059 }
Theodore Ts'of8b3b592014-08-29 20:52:18 -04002060 de = do_split(handle, dir, &bh, frame, &hinfo);
2061 if (IS_ERR(de)) {
2062 err = PTR_ERR(de);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002063 goto cleanup;
Theodore Ts'of8b3b592014-08-29 20:52:18 -04002064 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002065 err = add_dirent_to_buf(handle, dentry, inode, de, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002066 goto cleanup;
2067
2068journal_error:
Mingming Cao617ba132006-10-11 01:20:53 -07002069 ext4_std_error(dir->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002070cleanup:
Guo Chaob1deefc2013-01-28 21:41:02 -05002071 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002072 dx_release(frames);
2073 return err;
2074}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002075
2076/*
Tao Ma05019a92012-12-10 14:06:00 -05002077 * ext4_generic_delete_entry deletes a directory entry by merging it
2078 * with the previous entry
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002079 */
Tao Ma05019a92012-12-10 14:06:00 -05002080int ext4_generic_delete_entry(handle_t *handle,
2081 struct inode *dir,
2082 struct ext4_dir_entry_2 *de_del,
2083 struct buffer_head *bh,
2084 void *entry_buf,
2085 int buf_size,
2086 int csum_size)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002087{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002088 struct ext4_dir_entry_2 *de, *pde;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002089 unsigned int blocksize = dir->i_sb->s_blocksize;
Tao Ma05019a92012-12-10 14:06:00 -05002090 int i;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002091
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002092 i = 0;
2093 pde = NULL;
Tao Ma05019a92012-12-10 14:06:00 -05002094 de = (struct ext4_dir_entry_2 *)entry_buf;
2095 while (i < buf_size - csum_size) {
Tao Ma226ba972012-12-10 14:05:58 -05002096 if (ext4_check_dir_entry(dir, NULL, de, bh,
2097 bh->b_data, bh->b_size, i))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002098 return -EIO;
2099 if (de == de_del) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002100 if (pde)
Jan Karaa72d7f82008-01-28 23:58:27 -05002101 pde->rec_len = ext4_rec_len_to_disk(
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002102 ext4_rec_len_from_disk(pde->rec_len,
2103 blocksize) +
2104 ext4_rec_len_from_disk(de->rec_len,
2105 blocksize),
2106 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002107 else
2108 de->inode = 0;
2109 dir->i_version++;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002110 return 0;
2111 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002112 i += ext4_rec_len_from_disk(de->rec_len, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002113 pde = de;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002114 de = ext4_next_entry(de, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002115 }
2116 return -ENOENT;
2117}
2118
Tao Ma05019a92012-12-10 14:06:00 -05002119static int ext4_delete_entry(handle_t *handle,
2120 struct inode *dir,
2121 struct ext4_dir_entry_2 *de_del,
2122 struct buffer_head *bh)
2123{
2124 int err, csum_size = 0;
2125
Tao Ma9f40fe52012-12-10 14:06:00 -05002126 if (ext4_has_inline_data(dir)) {
2127 int has_inline_data = 1;
2128 err = ext4_delete_inline_entry(handle, dir, de_del, bh,
2129 &has_inline_data);
2130 if (has_inline_data)
2131 return err;
2132 }
2133
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04002134 if (ext4_has_metadata_csum(dir->i_sb))
Tao Ma05019a92012-12-10 14:06:00 -05002135 csum_size = sizeof(struct ext4_dir_entry_tail);
2136
2137 BUFFER_TRACE(bh, "get_write_access");
2138 err = ext4_journal_get_write_access(handle, bh);
2139 if (unlikely(err))
2140 goto out;
2141
2142 err = ext4_generic_delete_entry(handle, dir, de_del,
2143 bh, bh->b_data,
2144 dir->i_sb->s_blocksize, csum_size);
2145 if (err)
2146 goto out;
2147
2148 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
2149 err = ext4_handle_dirty_dirent_node(handle, dir, bh);
2150 if (unlikely(err))
2151 goto out;
2152
2153 return 0;
2154out:
2155 if (err != -ENOENT)
2156 ext4_std_error(dir->i_sb, err);
2157 return err;
2158}
2159
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002160/*
2161 * DIR_NLINK feature is set if 1) nlinks > EXT4_LINK_MAX or 2) nlinks == 2,
2162 * since this indicates that nlinks count was previously 1.
2163 */
2164static void ext4_inc_count(handle_t *handle, struct inode *inode)
2165{
2166 inc_nlink(inode);
2167 if (is_dx(inode) && inode->i_nlink > 1) {
2168 /* limit is 16-bit i_links_count */
2169 if (inode->i_nlink >= EXT4_LINK_MAX || inode->i_nlink == 2) {
Miklos Szeredibfe86842011-10-28 14:13:29 +02002170 set_nlink(inode, 1);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002171 EXT4_SET_RO_COMPAT_FEATURE(inode->i_sb,
2172 EXT4_FEATURE_RO_COMPAT_DIR_NLINK);
2173 }
2174 }
2175}
2176
2177/*
2178 * If a directory had nlink == 1, then we should let it be 1. This indicates
2179 * directory has >EXT4_LINK_MAX subdirs.
2180 */
2181static void ext4_dec_count(handle_t *handle, struct inode *inode)
2182{
Andreas Dilger909a4cf2011-10-26 03:22:31 -04002183 if (!S_ISDIR(inode->i_mode) || inode->i_nlink > 2)
2184 drop_nlink(inode);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002185}
2186
2187
Mingming Cao617ba132006-10-11 01:20:53 -07002188static int ext4_add_nondir(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002189 struct dentry *dentry, struct inode *inode)
2190{
Mingming Cao617ba132006-10-11 01:20:53 -07002191 int err = ext4_add_entry(handle, dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002192 if (!err) {
Mingming Cao617ba132006-10-11 01:20:53 -07002193 ext4_mark_inode_dirty(handle, inode);
Al Viro6b38e842008-12-30 02:03:31 -05002194 unlock_new_inode(inode);
Al Viro8fc37ec2012-07-19 09:18:15 +04002195 d_instantiate(dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002196 return 0;
2197 }
Eric Sandeen731b9a52007-02-10 01:46:16 -08002198 drop_nlink(inode);
Al Viro6b38e842008-12-30 02:03:31 -05002199 unlock_new_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002200 iput(inode);
2201 return err;
2202}
2203
2204/*
2205 * By the time this is called, we already have created
2206 * the directory cache entry for the new file, but it
2207 * is so far negative - it has no inode.
2208 *
2209 * If the create succeeds, we fill in the inode information
2210 * with d_instantiate().
2211 */
Al Viro4acdaf22011-07-26 01:42:34 -04002212static int ext4_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -04002213 bool excl)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002214{
2215 handle_t *handle;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002216 struct inode *inode;
Theodore Ts'o11395752013-02-09 16:27:09 -05002217 int err, credits, retries = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002218
Christoph Hellwig871a2932010-03-03 09:05:07 -05002219 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002220
Theodore Ts'o11395752013-02-09 16:27:09 -05002221 credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002222 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002223retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002224 inode = ext4_new_inode_start_handle(dir, mode, &dentry->d_name, 0,
2225 NULL, EXT4_HT_DIR, credits);
2226 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002227 err = PTR_ERR(inode);
2228 if (!IS_ERR(inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002229 inode->i_op = &ext4_file_inode_operations;
2230 inode->i_fop = &ext4_file_operations;
2231 ext4_set_aops(inode);
2232 err = ext4_add_nondir(handle, dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002233 if (!err && IS_DIRSYNC(dir))
2234 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002235 }
Theodore Ts'o11395752013-02-09 16:27:09 -05002236 if (handle)
2237 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002238 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002239 goto retry;
2240 return err;
2241}
2242
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002243static int ext4_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04002244 umode_t mode, dev_t rdev)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002245{
2246 handle_t *handle;
2247 struct inode *inode;
Theodore Ts'o11395752013-02-09 16:27:09 -05002248 int err, credits, retries = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002249
2250 if (!new_valid_dev(rdev))
2251 return -EINVAL;
2252
Christoph Hellwig871a2932010-03-03 09:05:07 -05002253 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002254
Theodore Ts'o11395752013-02-09 16:27:09 -05002255 credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002256 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002257retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002258 inode = ext4_new_inode_start_handle(dir, mode, &dentry->d_name, 0,
2259 NULL, EXT4_HT_DIR, credits);
2260 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002261 err = PTR_ERR(inode);
2262 if (!IS_ERR(inode)) {
2263 init_special_inode(inode, inode->i_mode, rdev);
Mingming Cao617ba132006-10-11 01:20:53 -07002264 inode->i_op = &ext4_special_inode_operations;
Mingming Cao617ba132006-10-11 01:20:53 -07002265 err = ext4_add_nondir(handle, dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002266 if (!err && IS_DIRSYNC(dir))
2267 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002268 }
Theodore Ts'o11395752013-02-09 16:27:09 -05002269 if (handle)
2270 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002271 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002272 goto retry;
2273 return err;
2274}
2275
Al Viroaf51a2a2013-06-29 13:23:08 +04002276static int ext4_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
2277{
2278 handle_t *handle;
2279 struct inode *inode;
2280 int err, retries = 0;
2281
2282 dquot_initialize(dir);
2283
2284retry:
2285 inode = ext4_new_inode_start_handle(dir, mode,
2286 NULL, 0, NULL,
2287 EXT4_HT_DIR,
2288 EXT4_MAXQUOTAS_INIT_BLOCKS(dir->i_sb) +
2289 4 + EXT4_XATTR_TRANS_BLOCKS);
2290 handle = ext4_journal_current_handle();
2291 err = PTR_ERR(inode);
2292 if (!IS_ERR(inode)) {
2293 inode->i_op = &ext4_file_inode_operations;
2294 inode->i_fop = &ext4_file_operations;
2295 ext4_set_aops(inode);
Zheng Liue94bd342013-07-20 21:58:38 -04002296 d_tmpfile(dentry, inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002297 err = ext4_orphan_add(handle, inode);
2298 if (err)
Miklos Szeredi43ae9e32013-10-10 16:48:19 +02002299 goto err_unlock_inode;
Al Viroaf51a2a2013-06-29 13:23:08 +04002300 mark_inode_dirty(inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002301 unlock_new_inode(inode);
2302 }
2303 if (handle)
2304 ext4_journal_stop(handle);
2305 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
2306 goto retry;
2307 return err;
Miklos Szeredi43ae9e32013-10-10 16:48:19 +02002308err_unlock_inode:
Al Viroaf51a2a2013-06-29 13:23:08 +04002309 ext4_journal_stop(handle);
2310 unlock_new_inode(inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002311 return err;
2312}
2313
Tao Maa774f9c2012-12-10 14:05:57 -05002314struct ext4_dir_entry_2 *ext4_init_dot_dotdot(struct inode *inode,
2315 struct ext4_dir_entry_2 *de,
2316 int blocksize, int csum_size,
2317 unsigned int parent_ino, int dotdot_real_len)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002318{
Tao Maa774f9c2012-12-10 14:05:57 -05002319 de->inode = cpu_to_le32(inode->i_ino);
2320 de->name_len = 1;
2321 de->rec_len = ext4_rec_len_to_disk(EXT4_DIR_REC_LEN(de->name_len),
2322 blocksize);
2323 strcpy(de->name, ".");
2324 ext4_set_de_type(inode->i_sb, de, S_IFDIR);
2325
2326 de = ext4_next_entry(de, blocksize);
2327 de->inode = cpu_to_le32(parent_ino);
2328 de->name_len = 2;
2329 if (!dotdot_real_len)
2330 de->rec_len = ext4_rec_len_to_disk(blocksize -
2331 (csum_size + EXT4_DIR_REC_LEN(1)),
2332 blocksize);
2333 else
2334 de->rec_len = ext4_rec_len_to_disk(
2335 EXT4_DIR_REC_LEN(de->name_len), blocksize);
2336 strcpy(de->name, "..");
2337 ext4_set_de_type(inode->i_sb, de, S_IFDIR);
2338
2339 return ext4_next_entry(de, blocksize);
2340}
2341
2342static int ext4_init_new_dir(handle_t *handle, struct inode *dir,
2343 struct inode *inode)
2344{
Namhyung Kimdabd9912011-01-10 12:11:16 -05002345 struct buffer_head *dir_block = NULL;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002346 struct ext4_dir_entry_2 *de;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002347 struct ext4_dir_entry_tail *t;
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002348 ext4_lblk_t block = 0;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002349 unsigned int blocksize = dir->i_sb->s_blocksize;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002350 int csum_size = 0;
Tao Maa774f9c2012-12-10 14:05:57 -05002351 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002352
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04002353 if (ext4_has_metadata_csum(dir->i_sb))
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002354 csum_size = sizeof(struct ext4_dir_entry_tail);
2355
Tao Ma3c47d542012-12-10 14:05:59 -05002356 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
2357 err = ext4_try_create_inline_dir(handle, dir, inode);
2358 if (err < 0 && err != -ENOSPC)
2359 goto out;
2360 if (!err)
2361 goto out;
2362 }
2363
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002364 inode->i_size = 0;
Theodore Ts'o0f70b402013-02-15 03:35:57 -05002365 dir_block = ext4_append(handle, inode, &block);
2366 if (IS_ERR(dir_block))
2367 return PTR_ERR(dir_block);
Tao Maa774f9c2012-12-10 14:05:57 -05002368 de = (struct ext4_dir_entry_2 *)dir_block->b_data;
2369 ext4_init_dot_dotdot(inode, de, blocksize, csum_size, dir->i_ino, 0);
2370 set_nlink(inode, 2);
2371 if (csum_size) {
2372 t = EXT4_DIRENT_TAIL(dir_block->b_data, blocksize);
2373 initialize_dirent_tail(t, blocksize);
2374 }
2375
2376 BUFFER_TRACE(dir_block, "call ext4_handle_dirty_metadata");
2377 err = ext4_handle_dirty_dirent_node(handle, inode, dir_block);
2378 if (err)
2379 goto out;
2380 set_buffer_verified(dir_block);
2381out:
2382 brelse(dir_block);
2383 return err;
2384}
2385
2386static int ext4_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
2387{
2388 handle_t *handle;
2389 struct inode *inode;
Theodore Ts'o11395752013-02-09 16:27:09 -05002390 int err, credits, retries = 0;
Tao Maa774f9c2012-12-10 14:05:57 -05002391
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002392 if (EXT4_DIR_LINK_MAX(dir))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002393 return -EMLINK;
2394
Christoph Hellwig871a2932010-03-03 09:05:07 -05002395 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002396
Theodore Ts'o11395752013-02-09 16:27:09 -05002397 credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002398 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002399retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002400 inode = ext4_new_inode_start_handle(dir, S_IFDIR | mode,
2401 &dentry->d_name,
2402 0, NULL, EXT4_HT_DIR, credits);
2403 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002404 err = PTR_ERR(inode);
2405 if (IS_ERR(inode))
2406 goto out_stop;
2407
Mingming Cao617ba132006-10-11 01:20:53 -07002408 inode->i_op = &ext4_dir_inode_operations;
2409 inode->i_fop = &ext4_dir_operations;
Tao Maa774f9c2012-12-10 14:05:57 -05002410 err = ext4_init_new_dir(handle, dir, inode);
Namhyung Kimdabd9912011-01-10 12:11:16 -05002411 if (err)
2412 goto out_clear_inode;
Namhyung Kimdabd9912011-01-10 12:11:16 -05002413 err = ext4_mark_inode_dirty(handle, inode);
2414 if (!err)
2415 err = ext4_add_entry(handle, dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002416 if (err) {
Aneesh Kumar K.V4cdeed82008-02-22 06:17:31 -05002417out_clear_inode:
2418 clear_nlink(inode);
Al Viro6b38e842008-12-30 02:03:31 -05002419 unlock_new_inode(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002420 ext4_mark_inode_dirty(handle, inode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002421 iput(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002422 goto out_stop;
2423 }
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002424 ext4_inc_count(handle, dir);
Mingming Cao617ba132006-10-11 01:20:53 -07002425 ext4_update_dx_flag(dir);
Namhyung Kimdabd9912011-01-10 12:11:16 -05002426 err = ext4_mark_inode_dirty(handle, dir);
2427 if (err)
2428 goto out_clear_inode;
Al Viro6b38e842008-12-30 02:03:31 -05002429 unlock_new_inode(inode);
Al Viro8fc37ec2012-07-19 09:18:15 +04002430 d_instantiate(dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002431 if (IS_DIRSYNC(dir))
2432 ext4_handle_sync(handle);
2433
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002434out_stop:
Theodore Ts'o11395752013-02-09 16:27:09 -05002435 if (handle)
2436 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002437 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002438 goto retry;
2439 return err;
2440}
2441
2442/*
2443 * routine to check that the specified directory is empty (for rmdir)
2444 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002445static int empty_dir(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002446{
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002447 unsigned int offset;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002448 struct buffer_head *bh;
2449 struct ext4_dir_entry_2 *de, *de1;
2450 struct super_block *sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002451 int err = 0;
2452
Tao Ma61f86632012-12-10 14:06:01 -05002453 if (ext4_has_inline_data(inode)) {
2454 int has_inline_data = 1;
2455
2456 err = empty_inline_dir(inode, &has_inline_data);
2457 if (has_inline_data)
2458 return err;
2459 }
2460
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002461 sb = inode->i_sb;
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002462 if (inode->i_size < EXT4_DIR_REC_LEN(1) + EXT4_DIR_REC_LEN(2)) {
2463 EXT4_ERROR_INODE(inode, "invalid size");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002464 return 1;
2465 }
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002466 bh = ext4_read_dirblock(inode, 0, EITHER);
2467 if (IS_ERR(bh))
2468 return 1;
2469
Mingming Cao617ba132006-10-11 01:20:53 -07002470 de = (struct ext4_dir_entry_2 *) bh->b_data;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002471 de1 = ext4_next_entry(de, sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002472 if (le32_to_cpu(de->inode) != inode->i_ino ||
2473 !le32_to_cpu(de1->inode) ||
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002474 strcmp(".", de->name) ||
2475 strcmp("..", de1->name)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05002476 ext4_warning(inode->i_sb,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002477 "bad directory (dir #%lu) - no `.' or `..'",
2478 inode->i_ino);
2479 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002480 return 1;
2481 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002482 offset = ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize) +
2483 ext4_rec_len_from_disk(de1->rec_len, sb->s_blocksize);
2484 de = ext4_next_entry(de1, sb->s_blocksize);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002485 while (offset < inode->i_size) {
Dmitry Monakhov236f5ec2014-04-21 14:38:14 -04002486 if ((void *) de >= (void *) (bh->b_data+sb->s_blocksize)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04002487 unsigned int lblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002488 err = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002489 brelse(bh);
Theodore Ts'o24676da2010-05-16 21:00:00 -04002490 lblock = offset >> EXT4_BLOCK_SIZE_BITS(sb);
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002491 bh = ext4_read_dirblock(inode, lblock, EITHER);
2492 if (IS_ERR(bh))
2493 return 1;
Mingming Cao617ba132006-10-11 01:20:53 -07002494 de = (struct ext4_dir_entry_2 *) bh->b_data;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002495 }
Tao Ma226ba972012-12-10 14:05:58 -05002496 if (ext4_check_dir_entry(inode, NULL, de, bh,
2497 bh->b_data, bh->b_size, offset)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002498 de = (struct ext4_dir_entry_2 *)(bh->b_data +
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002499 sb->s_blocksize);
2500 offset = (offset | (sb->s_blocksize - 1)) + 1;
2501 continue;
2502 }
2503 if (le32_to_cpu(de->inode)) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002504 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002505 return 0;
2506 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002507 offset += ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize);
2508 de = ext4_next_entry(de, sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002509 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002510 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002511 return 1;
2512}
2513
Jan Karad745a8c2014-05-26 11:56:53 -04002514/*
2515 * ext4_orphan_add() links an unlinked or truncated inode into a list of
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002516 * such inodes, starting at the superblock, in case we crash before the
2517 * file is closed/deleted, or in case the inode truncate spans multiple
2518 * transactions and the last transaction is not recovered after a crash.
2519 *
2520 * At filesystem recovery time, we walk this list deleting unlinked
Mingming Cao617ba132006-10-11 01:20:53 -07002521 * inodes and truncating linked inodes in ext4_orphan_cleanup().
Jan Karad745a8c2014-05-26 11:56:53 -04002522 *
2523 * Orphan list manipulation functions must be called under i_mutex unless
2524 * we are just creating the inode or deleting it.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002525 */
Mingming Cao617ba132006-10-11 01:20:53 -07002526int ext4_orphan_add(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002527{
2528 struct super_block *sb = inode->i_sb;
Jan Karacd2c0802014-05-26 11:39:17 -04002529 struct ext4_sb_info *sbi = EXT4_SB(sb);
Mingming Cao617ba132006-10-11 01:20:53 -07002530 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002531 int err = 0, rc;
Jan Karad745a8c2014-05-26 11:56:53 -04002532 bool dirty = false;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002533
Theodore Ts'oe2bfb082014-10-05 22:47:07 -04002534 if (!sbi->s_journal || is_bad_inode(inode))
Frank Mayhar03901312009-01-07 00:06:22 -05002535 return 0;
2536
Jan Karad745a8c2014-05-26 11:56:53 -04002537 WARN_ON_ONCE(!(inode->i_state & (I_NEW | I_FREEING)) &&
2538 !mutex_is_locked(&inode->i_mutex));
2539 /*
2540 * Exit early if inode already is on orphan list. This is a big speedup
2541 * since we don't have to contend on the global s_orphan_lock.
2542 */
Mingming Cao617ba132006-10-11 01:20:53 -07002543 if (!list_empty(&EXT4_I(inode)->i_orphan))
Jan Karad745a8c2014-05-26 11:56:53 -04002544 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002545
Lukas Czernerafb86172011-07-11 18:47:04 -04002546 /*
2547 * Orphan handling is only valid for files with data blocks
2548 * being truncated, or files being unlinked. Note that we either
2549 * hold i_mutex, or the inode can not be referenced from outside,
2550 * so i_nlink should not be bumped due to race
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002551 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002552 J_ASSERT((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
2553 S_ISLNK(inode->i_mode)) || inode->i_nlink == 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002554
Jan Karacd2c0802014-05-26 11:39:17 -04002555 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
2556 err = ext4_journal_get_write_access(handle, sbi->s_sbh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002557 if (err)
Jan Karad745a8c2014-05-26 11:56:53 -04002558 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002559
Mingming Cao617ba132006-10-11 01:20:53 -07002560 err = ext4_reserve_inode_write(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002561 if (err)
Jan Karad745a8c2014-05-26 11:56:53 -04002562 goto out;
2563
2564 mutex_lock(&sbi->s_orphan_lock);
Dmitry Monakhov6e3617e2010-03-01 23:29:39 -05002565 /*
2566 * Due to previous errors inode may be already a part of on-disk
2567 * orphan list. If so skip on-disk list modification.
2568 */
Jan Karad745a8c2014-05-26 11:56:53 -04002569 if (!NEXT_ORPHAN(inode) || NEXT_ORPHAN(inode) >
2570 (le32_to_cpu(sbi->s_es->s_inodes_count))) {
2571 /* Insert this inode at the head of the on-disk orphan list */
2572 NEXT_ORPHAN(inode) = le32_to_cpu(sbi->s_es->s_last_orphan);
2573 sbi->s_es->s_last_orphan = cpu_to_le32(inode->i_ino);
2574 dirty = true;
2575 }
2576 list_add(&EXT4_I(inode)->i_orphan, &sbi->s_orphan);
2577 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002578
Jan Karad745a8c2014-05-26 11:56:53 -04002579 if (dirty) {
2580 err = ext4_handle_dirty_super(handle, sb);
2581 rc = ext4_mark_iloc_dirty(handle, inode, &iloc);
2582 if (!err)
2583 err = rc;
2584 if (err) {
2585 /*
2586 * We have to remove inode from in-memory list if
2587 * addition to on disk orphan list failed. Stray orphan
2588 * list entries can cause panics at unmount time.
2589 */
2590 mutex_lock(&sbi->s_orphan_lock);
2591 list_del(&EXT4_I(inode)->i_orphan);
2592 mutex_unlock(&sbi->s_orphan_lock);
2593 }
2594 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002595 jbd_debug(4, "superblock will point to %lu\n", inode->i_ino);
2596 jbd_debug(4, "orphan inode %lu will point to %d\n",
2597 inode->i_ino, NEXT_ORPHAN(inode));
Jan Karad745a8c2014-05-26 11:56:53 -04002598out:
Jan Karacd2c0802014-05-26 11:39:17 -04002599 ext4_std_error(sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002600 return err;
2601}
2602
2603/*
Mingming Cao617ba132006-10-11 01:20:53 -07002604 * ext4_orphan_del() removes an unlinked or truncated inode from the list
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002605 * of such inodes stored on disk, because it is finally being cleaned up.
2606 */
Mingming Cao617ba132006-10-11 01:20:53 -07002607int ext4_orphan_del(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002608{
2609 struct list_head *prev;
Mingming Cao617ba132006-10-11 01:20:53 -07002610 struct ext4_inode_info *ei = EXT4_I(inode);
Jan Karacd2c0802014-05-26 11:39:17 -04002611 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002612 __u32 ino_next;
Mingming Cao617ba132006-10-11 01:20:53 -07002613 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002614 int err = 0;
2615
Jan Karacd2c0802014-05-26 11:39:17 -04002616 if (!sbi->s_journal && !(sbi->s_mount_state & EXT4_ORPHAN_FS))
Frank Mayhar03901312009-01-07 00:06:22 -05002617 return 0;
2618
Jan Karad745a8c2014-05-26 11:56:53 -04002619 WARN_ON_ONCE(!(inode->i_state & (I_NEW | I_FREEING)) &&
2620 !mutex_is_locked(&inode->i_mutex));
2621 /* Do this quick check before taking global s_orphan_lock. */
Theodore Ts'o3b9d4ed2009-04-25 22:54:04 -04002622 if (list_empty(&ei->i_orphan))
Jan Karad745a8c2014-05-26 11:56:53 -04002623 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002624
Jan Karad745a8c2014-05-26 11:56:53 -04002625 if (handle) {
2626 /* Grab inode buffer early before taking global s_orphan_lock */
2627 err = ext4_reserve_inode_write(handle, inode, &iloc);
2628 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002629
Jan Karad745a8c2014-05-26 11:56:53 -04002630 mutex_lock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002631 jbd_debug(4, "remove inode %lu from orphan list\n", inode->i_ino);
2632
Jan Karad745a8c2014-05-26 11:56:53 -04002633 prev = ei->i_orphan.prev;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002634 list_del_init(&ei->i_orphan);
2635
2636 /* If we're on an error path, we may not have a valid
2637 * transaction handle with which to update the orphan list on
2638 * disk, but we still need to remove the inode from the linked
2639 * list in memory. */
Jan Karad745a8c2014-05-26 11:56:53 -04002640 if (!handle || err) {
2641 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002642 goto out_err;
Jan Karad745a8c2014-05-26 11:56:53 -04002643 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002644
Jan Karad745a8c2014-05-26 11:56:53 -04002645 ino_next = NEXT_ORPHAN(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002646 if (prev == &sbi->s_orphan) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002647 jbd_debug(4, "superblock will point to %u\n", ino_next);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002648 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07002649 err = ext4_journal_get_write_access(handle, sbi->s_sbh);
Jan Karad745a8c2014-05-26 11:56:53 -04002650 if (err) {
2651 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002652 goto out_brelse;
Jan Karad745a8c2014-05-26 11:56:53 -04002653 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002654 sbi->s_es->s_last_orphan = cpu_to_le32(ino_next);
Jan Karad745a8c2014-05-26 11:56:53 -04002655 mutex_unlock(&sbi->s_orphan_lock);
Artem Bityutskiyb50924c2012-07-22 20:37:31 -04002656 err = ext4_handle_dirty_super(handle, inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002657 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07002658 struct ext4_iloc iloc2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002659 struct inode *i_prev =
Mingming Cao617ba132006-10-11 01:20:53 -07002660 &list_entry(prev, struct ext4_inode_info, i_orphan)->vfs_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002661
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002662 jbd_debug(4, "orphan inode %lu will point to %u\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002663 i_prev->i_ino, ino_next);
Mingming Cao617ba132006-10-11 01:20:53 -07002664 err = ext4_reserve_inode_write(handle, i_prev, &iloc2);
Jan Karad745a8c2014-05-26 11:56:53 -04002665 if (err) {
2666 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002667 goto out_brelse;
Jan Karad745a8c2014-05-26 11:56:53 -04002668 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002669 NEXT_ORPHAN(i_prev) = ino_next;
Mingming Cao617ba132006-10-11 01:20:53 -07002670 err = ext4_mark_iloc_dirty(handle, i_prev, &iloc2);
Jan Karad745a8c2014-05-26 11:56:53 -04002671 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002672 }
2673 if (err)
2674 goto out_brelse;
2675 NEXT_ORPHAN(inode) = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002676 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002677out_err:
Mingming Cao617ba132006-10-11 01:20:53 -07002678 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002679 return err;
2680
2681out_brelse:
2682 brelse(iloc.bh);
2683 goto out_err;
2684}
2685
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002686static int ext4_rmdir(struct inode *dir, struct dentry *dentry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002687{
2688 int retval;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002689 struct inode *inode;
2690 struct buffer_head *bh;
2691 struct ext4_dir_entry_2 *de;
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002692 handle_t *handle = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002693
2694 /* Initialize quotas before so that eventual writes go in
2695 * separate transaction */
Christoph Hellwig871a2932010-03-03 09:05:07 -05002696 dquot_initialize(dir);
2697 dquot_initialize(dentry->d_inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002698
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002699 retval = -ENOENT;
Tao Ma32f7f222012-12-10 14:06:01 -05002700 bh = ext4_find_entry(dir, &dentry->d_name, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04002701 if (IS_ERR(bh))
2702 return PTR_ERR(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002703 if (!bh)
2704 goto end_rmdir;
2705
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002706 inode = dentry->d_inode;
2707
2708 retval = -EIO;
2709 if (le32_to_cpu(de->inode) != inode->i_ino)
2710 goto end_rmdir;
2711
2712 retval = -ENOTEMPTY;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002713 if (!empty_dir(inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002714 goto end_rmdir;
2715
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002716 handle = ext4_journal_start(dir, EXT4_HT_DIR,
Theodore Ts'o64044ab2013-02-09 15:06:24 -05002717 EXT4_DATA_TRANS_BLOCKS(dir->i_sb));
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002718 if (IS_ERR(handle)) {
2719 retval = PTR_ERR(handle);
2720 handle = NULL;
2721 goto end_rmdir;
2722 }
2723
2724 if (IS_DIRSYNC(dir))
2725 ext4_handle_sync(handle);
2726
Mingming Cao617ba132006-10-11 01:20:53 -07002727 retval = ext4_delete_entry(handle, dir, de, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002728 if (retval)
2729 goto end_rmdir;
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002730 if (!EXT4_DIR_LINK_EMPTY(inode))
Eric Sandeen12062dd2010-02-15 14:19:27 -05002731 ext4_warning(inode->i_sb,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002732 "empty directory has too many links (%d)",
2733 inode->i_nlink);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002734 inode->i_version++;
2735 clear_nlink(inode);
2736 /* There's no need to set i_disksize: the fact that i_nlink is
2737 * zero will ensure that the right thing happens during any
2738 * recovery. */
2739 inode->i_size = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002740 ext4_orphan_add(handle, inode);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002741 inode->i_ctime = dir->i_ctime = dir->i_mtime = ext4_current_time(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002742 ext4_mark_inode_dirty(handle, inode);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002743 ext4_dec_count(handle, dir);
Mingming Cao617ba132006-10-11 01:20:53 -07002744 ext4_update_dx_flag(dir);
2745 ext4_mark_inode_dirty(handle, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002746
2747end_rmdir:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002748 brelse(bh);
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002749 if (handle)
2750 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002751 return retval;
2752}
2753
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002754static int ext4_unlink(struct inode *dir, struct dentry *dentry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002755{
2756 int retval;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002757 struct inode *inode;
2758 struct buffer_head *bh;
2759 struct ext4_dir_entry_2 *de;
Theodore Ts'o931b6862013-02-09 09:43:39 -05002760 handle_t *handle = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002761
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002762 trace_ext4_unlink_enter(dir, dentry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002763 /* Initialize quotas before so that eventual writes go
2764 * in separate transaction */
Christoph Hellwig871a2932010-03-03 09:05:07 -05002765 dquot_initialize(dir);
2766 dquot_initialize(dentry->d_inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002767
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002768 retval = -ENOENT;
Tao Ma32f7f222012-12-10 14:06:01 -05002769 bh = ext4_find_entry(dir, &dentry->d_name, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04002770 if (IS_ERR(bh))
2771 return PTR_ERR(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002772 if (!bh)
2773 goto end_unlink;
2774
2775 inode = dentry->d_inode;
2776
2777 retval = -EIO;
2778 if (le32_to_cpu(de->inode) != inode->i_ino)
2779 goto end_unlink;
2780
Theodore Ts'o931b6862013-02-09 09:43:39 -05002781 handle = ext4_journal_start(dir, EXT4_HT_DIR,
Theodore Ts'o64044ab2013-02-09 15:06:24 -05002782 EXT4_DATA_TRANS_BLOCKS(dir->i_sb));
Theodore Ts'o931b6862013-02-09 09:43:39 -05002783 if (IS_ERR(handle)) {
2784 retval = PTR_ERR(handle);
2785 handle = NULL;
2786 goto end_unlink;
2787 }
2788
2789 if (IS_DIRSYNC(dir))
2790 ext4_handle_sync(handle);
2791
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002792 if (!inode->i_nlink) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05002793 ext4_warning(inode->i_sb,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002794 "Deleting nonexistent file (%lu), %d",
2795 inode->i_ino, inode->i_nlink);
Miklos Szeredibfe86842011-10-28 14:13:29 +02002796 set_nlink(inode, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002797 }
Mingming Cao617ba132006-10-11 01:20:53 -07002798 retval = ext4_delete_entry(handle, dir, de, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002799 if (retval)
2800 goto end_unlink;
Kalpak Shahef7f3832007-07-18 09:15:20 -04002801 dir->i_ctime = dir->i_mtime = ext4_current_time(dir);
Mingming Cao617ba132006-10-11 01:20:53 -07002802 ext4_update_dx_flag(dir);
2803 ext4_mark_inode_dirty(handle, dir);
Theodore Ts'o825f1482008-02-15 15:00:38 -05002804 drop_nlink(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002805 if (!inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07002806 ext4_orphan_add(handle, inode);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002807 inode->i_ctime = ext4_current_time(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002808 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002809 retval = 0;
2810
2811end_unlink:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002812 brelse(bh);
Theodore Ts'o931b6862013-02-09 09:43:39 -05002813 if (handle)
2814 ext4_journal_stop(handle);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002815 trace_ext4_unlink_exit(dentry, retval);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002816 return retval;
2817}
2818
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002819static int ext4_symlink(struct inode *dir,
2820 struct dentry *dentry, const char *symname)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002821{
2822 handle_t *handle;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002823 struct inode *inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002824 int l, err, retries = 0;
Jan Karadf5e6222011-05-03 11:12:58 -04002825 int credits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002826
2827 l = strlen(symname)+1;
2828 if (l > dir->i_sb->s_blocksize)
2829 return -ENAMETOOLONG;
2830
Christoph Hellwig871a2932010-03-03 09:05:07 -05002831 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002832
Jan Karadf5e6222011-05-03 11:12:58 -04002833 if (l > EXT4_N_BLOCKS * 4) {
2834 /*
2835 * For non-fast symlinks, we just allocate inode and put it on
2836 * orphan list in the first transaction => we need bitmap,
Eric Sandeen8c208712011-08-11 09:54:31 -05002837 * group descriptor, sb, inode block, quota blocks, and
2838 * possibly selinux xattr blocks.
Jan Karadf5e6222011-05-03 11:12:58 -04002839 */
Eric Sandeen8c208712011-08-11 09:54:31 -05002840 credits = 4 + EXT4_MAXQUOTAS_INIT_BLOCKS(dir->i_sb) +
2841 EXT4_XATTR_TRANS_BLOCKS;
Jan Karadf5e6222011-05-03 11:12:58 -04002842 } else {
2843 /*
2844 * Fast symlink. We have to add entry to directory
2845 * (EXT4_DATA_TRANS_BLOCKS + EXT4_INDEX_EXTRA_TRANS_BLOCKS),
2846 * allocate new inode (bitmap, group descriptor, inode block,
2847 * quota blocks, sb is already counted in previous macros).
2848 */
2849 credits = EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002850 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3;
Jan Karadf5e6222011-05-03 11:12:58 -04002851 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002852retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002853 inode = ext4_new_inode_start_handle(dir, S_IFLNK|S_IRWXUGO,
2854 &dentry->d_name, 0, NULL,
2855 EXT4_HT_DIR, credits);
2856 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002857 err = PTR_ERR(inode);
2858 if (IS_ERR(inode))
2859 goto out_stop;
2860
Jan Karadf5e6222011-05-03 11:12:58 -04002861 if (l > EXT4_N_BLOCKS * 4) {
Mingming Cao617ba132006-10-11 01:20:53 -07002862 inode->i_op = &ext4_symlink_inode_operations;
2863 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002864 /*
Jan Karadf5e6222011-05-03 11:12:58 -04002865 * We cannot call page_symlink() with transaction started
2866 * because it calls into ext4_write_begin() which can wait
2867 * for transaction commit if we are running out of space
2868 * and thus we deadlock. So we have to stop transaction now
2869 * and restart it when symlink contents is written.
2870 *
2871 * To keep fs consistent in case of crash, we have to put inode
2872 * to orphan list in the mean time.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002873 */
Jan Karadf5e6222011-05-03 11:12:58 -04002874 drop_nlink(inode);
2875 err = ext4_orphan_add(handle, inode);
2876 ext4_journal_stop(handle);
2877 if (err)
2878 goto err_drop_inode;
Nick Piggin54566b22009-01-04 12:00:53 -08002879 err = __page_symlink(inode, symname, l, 1);
Jan Karadf5e6222011-05-03 11:12:58 -04002880 if (err)
2881 goto err_drop_inode;
2882 /*
2883 * Now inode is being linked into dir (EXT4_DATA_TRANS_BLOCKS
2884 * + EXT4_INDEX_EXTRA_TRANS_BLOCKS), inode is also modified
2885 */
Theodore Ts'o9924a922013-02-08 21:59:22 -05002886 handle = ext4_journal_start(dir, EXT4_HT_DIR,
Jan Karadf5e6222011-05-03 11:12:58 -04002887 EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
2888 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 1);
2889 if (IS_ERR(handle)) {
2890 err = PTR_ERR(handle);
2891 goto err_drop_inode;
2892 }
Al Viro0ce8c0102012-01-08 19:50:23 -05002893 set_nlink(inode, 1);
Jan Karadf5e6222011-05-03 11:12:58 -04002894 err = ext4_orphan_del(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002895 if (err) {
Jan Karadf5e6222011-05-03 11:12:58 -04002896 ext4_journal_stop(handle);
Theodore Ts'o825f1482008-02-15 15:00:38 -05002897 clear_nlink(inode);
Jan Karadf5e6222011-05-03 11:12:58 -04002898 goto err_drop_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002899 }
2900 } else {
Aneesh Kumar K.Ve65187e2008-04-29 08:11:12 -04002901 /* clear the extent format for fast symlink */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04002902 ext4_clear_inode_flag(inode, EXT4_INODE_EXTENTS);
Mingming Cao617ba132006-10-11 01:20:53 -07002903 inode->i_op = &ext4_fast_symlink_inode_operations;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002904 memcpy((char *)&EXT4_I(inode)->i_data, symname, l);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002905 inode->i_size = l-1;
2906 }
Mingming Cao617ba132006-10-11 01:20:53 -07002907 EXT4_I(inode)->i_disksize = inode->i_size;
2908 err = ext4_add_nondir(handle, dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002909 if (!err && IS_DIRSYNC(dir))
2910 ext4_handle_sync(handle);
2911
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002912out_stop:
Theodore Ts'o11395752013-02-09 16:27:09 -05002913 if (handle)
2914 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002915 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002916 goto retry;
2917 return err;
Jan Karadf5e6222011-05-03 11:12:58 -04002918err_drop_inode:
2919 unlock_new_inode(inode);
2920 iput(inode);
2921 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002922}
2923
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002924static int ext4_link(struct dentry *old_dentry,
2925 struct inode *dir, struct dentry *dentry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002926{
2927 handle_t *handle;
2928 struct inode *inode = old_dentry->d_inode;
2929 int err, retries = 0;
2930
Theodore Ts'ob05ab1d2009-08-29 21:08:08 -04002931 if (inode->i_nlink >= EXT4_LINK_MAX)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002932 return -EMLINK;
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002933
Christoph Hellwig871a2932010-03-03 09:05:07 -05002934 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002935
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002936retry:
Theodore Ts'o9924a922013-02-08 21:59:22 -05002937 handle = ext4_journal_start(dir, EXT4_HT_DIR,
2938 (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Al Viroaf51a2a2013-06-29 13:23:08 +04002939 EXT4_INDEX_EXTRA_TRANS_BLOCKS) + 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002940 if (IS_ERR(handle))
2941 return PTR_ERR(handle);
2942
2943 if (IS_DIRSYNC(dir))
Frank Mayhar03901312009-01-07 00:06:22 -05002944 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002945
Kalpak Shahef7f3832007-07-18 09:15:20 -04002946 inode->i_ctime = ext4_current_time(inode);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002947 ext4_inc_count(handle, inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04002948 ihold(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002949
Al Viro6b38e842008-12-30 02:03:31 -05002950 err = ext4_add_entry(handle, dentry, inode);
2951 if (!err) {
2952 ext4_mark_inode_dirty(handle, inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002953 /* this can happen only for tmpfile being
2954 * linked the first time
2955 */
2956 if (inode->i_nlink == 1)
2957 ext4_orphan_del(handle, inode);
Al Viro6b38e842008-12-30 02:03:31 -05002958 d_instantiate(dentry, inode);
2959 } else {
2960 drop_nlink(inode);
2961 iput(inode);
2962 }
Mingming Cao617ba132006-10-11 01:20:53 -07002963 ext4_journal_stop(handle);
2964 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002965 goto retry;
2966 return err;
2967}
2968
Tao Ma32f7f222012-12-10 14:06:01 -05002969
2970/*
2971 * Try to find buffer head where contains the parent block.
2972 * It should be the inode block if it is inlined or the 1st block
2973 * if it is a normal dir.
2974 */
2975static struct buffer_head *ext4_get_first_dir_block(handle_t *handle,
2976 struct inode *inode,
2977 int *retval,
2978 struct ext4_dir_entry_2 **parent_de,
2979 int *inlined)
2980{
2981 struct buffer_head *bh;
2982
2983 if (!ext4_has_inline_data(inode)) {
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002984 bh = ext4_read_dirblock(inode, 0, EITHER);
2985 if (IS_ERR(bh)) {
2986 *retval = PTR_ERR(bh);
Tao Ma32f7f222012-12-10 14:06:01 -05002987 return NULL;
2988 }
2989 *parent_de = ext4_next_entry(
2990 (struct ext4_dir_entry_2 *)bh->b_data,
2991 inode->i_sb->s_blocksize);
2992 return bh;
2993 }
2994
2995 *inlined = 1;
2996 return ext4_get_first_inline_block(inode, parent_de, retval);
2997}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002998
Miklos Szeredic0d268c2014-04-01 17:08:43 +02002999struct ext4_renament {
3000 struct inode *dir;
3001 struct dentry *dentry;
3002 struct inode *inode;
Miklos Szeredibd429982014-04-01 17:08:44 +02003003 bool is_dir;
3004 int dir_nlink_delta;
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003005
3006 /* entry for "dentry" */
3007 struct buffer_head *bh;
3008 struct ext4_dir_entry_2 *de;
3009 int inlined;
3010
3011 /* entry for ".." in inode if it's a directory */
3012 struct buffer_head *dir_bh;
3013 struct ext4_dir_entry_2 *parent_de;
3014 int dir_inlined;
3015};
3016
Miklos Szeredibd1af142014-04-01 17:08:44 +02003017static int ext4_rename_dir_prepare(handle_t *handle, struct ext4_renament *ent)
3018{
3019 int retval;
3020
3021 ent->dir_bh = ext4_get_first_dir_block(handle, ent->inode,
3022 &retval, &ent->parent_de,
3023 &ent->dir_inlined);
3024 if (!ent->dir_bh)
3025 return retval;
3026 if (le32_to_cpu(ent->parent_de->inode) != ent->dir->i_ino)
3027 return -EIO;
3028 BUFFER_TRACE(ent->dir_bh, "get_write_access");
3029 return ext4_journal_get_write_access(handle, ent->dir_bh);
3030}
3031
3032static int ext4_rename_dir_finish(handle_t *handle, struct ext4_renament *ent,
3033 unsigned dir_ino)
3034{
3035 int retval;
3036
3037 ent->parent_de->inode = cpu_to_le32(dir_ino);
3038 BUFFER_TRACE(ent->dir_bh, "call ext4_handle_dirty_metadata");
3039 if (!ent->dir_inlined) {
3040 if (is_dx(ent->inode)) {
3041 retval = ext4_handle_dirty_dx_node(handle,
3042 ent->inode,
3043 ent->dir_bh);
3044 } else {
3045 retval = ext4_handle_dirty_dirent_node(handle,
3046 ent->inode,
3047 ent->dir_bh);
3048 }
3049 } else {
3050 retval = ext4_mark_inode_dirty(handle, ent->inode);
3051 }
3052 if (retval) {
3053 ext4_std_error(ent->dir->i_sb, retval);
3054 return retval;
3055 }
3056 return 0;
3057}
3058
3059static int ext4_setent(handle_t *handle, struct ext4_renament *ent,
3060 unsigned ino, unsigned file_type)
3061{
3062 int retval;
3063
3064 BUFFER_TRACE(ent->bh, "get write access");
3065 retval = ext4_journal_get_write_access(handle, ent->bh);
3066 if (retval)
3067 return retval;
3068 ent->de->inode = cpu_to_le32(ino);
3069 if (EXT4_HAS_INCOMPAT_FEATURE(ent->dir->i_sb,
3070 EXT4_FEATURE_INCOMPAT_FILETYPE))
3071 ent->de->file_type = file_type;
3072 ent->dir->i_version++;
3073 ent->dir->i_ctime = ent->dir->i_mtime =
3074 ext4_current_time(ent->dir);
3075 ext4_mark_inode_dirty(handle, ent->dir);
3076 BUFFER_TRACE(ent->bh, "call ext4_handle_dirty_metadata");
3077 if (!ent->inlined) {
3078 retval = ext4_handle_dirty_dirent_node(handle,
3079 ent->dir, ent->bh);
3080 if (unlikely(retval)) {
3081 ext4_std_error(ent->dir->i_sb, retval);
3082 return retval;
3083 }
3084 }
3085 brelse(ent->bh);
3086 ent->bh = NULL;
3087
3088 return 0;
3089}
3090
3091static int ext4_find_delete_entry(handle_t *handle, struct inode *dir,
3092 const struct qstr *d_name)
3093{
3094 int retval = -ENOENT;
3095 struct buffer_head *bh;
3096 struct ext4_dir_entry_2 *de;
3097
3098 bh = ext4_find_entry(dir, d_name, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003099 if (IS_ERR(bh))
3100 return PTR_ERR(bh);
Miklos Szeredibd1af142014-04-01 17:08:44 +02003101 if (bh) {
3102 retval = ext4_delete_entry(handle, dir, de, bh);
3103 brelse(bh);
3104 }
3105 return retval;
3106}
3107
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003108static void ext4_rename_delete(handle_t *handle, struct ext4_renament *ent,
3109 int force_reread)
Miklos Szeredibd1af142014-04-01 17:08:44 +02003110{
3111 int retval;
3112 /*
3113 * ent->de could have moved from under us during htree split, so make
3114 * sure that we are deleting the right entry. We might also be pointing
3115 * to a stale entry in the unused part of ent->bh so just checking inum
3116 * and the name isn't enough.
3117 */
3118 if (le32_to_cpu(ent->de->inode) != ent->inode->i_ino ||
3119 ent->de->name_len != ent->dentry->d_name.len ||
3120 strncmp(ent->de->name, ent->dentry->d_name.name,
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003121 ent->de->name_len) ||
3122 force_reread) {
Miklos Szeredibd1af142014-04-01 17:08:44 +02003123 retval = ext4_find_delete_entry(handle, ent->dir,
3124 &ent->dentry->d_name);
3125 } else {
3126 retval = ext4_delete_entry(handle, ent->dir, ent->de, ent->bh);
3127 if (retval == -ENOENT) {
3128 retval = ext4_find_delete_entry(handle, ent->dir,
3129 &ent->dentry->d_name);
3130 }
3131 }
3132
3133 if (retval) {
3134 ext4_warning(ent->dir->i_sb,
3135 "Deleting old file (%lu), %d, error=%d",
3136 ent->dir->i_ino, ent->dir->i_nlink, retval);
3137 }
3138}
3139
Miklos Szeredibd429982014-04-01 17:08:44 +02003140static void ext4_update_dir_count(handle_t *handle, struct ext4_renament *ent)
3141{
3142 if (ent->dir_nlink_delta) {
3143 if (ent->dir_nlink_delta == -1)
3144 ext4_dec_count(handle, ent->dir);
3145 else
3146 ext4_inc_count(handle, ent->dir);
3147 ext4_mark_inode_dirty(handle, ent->dir);
3148 }
3149}
3150
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003151/*
3152 * Anybody can rename anything with this: the permission checks are left to the
3153 * higher-level routines.
Theodore Ts'o0e202702013-08-16 22:06:53 -04003154 *
3155 * n.b. old_{dentry,inode) refers to the source dentry/inode
3156 * while new_{dentry,inode) refers to the destination dentry/inode
3157 * This comes from rename(const char *oldpath, const char *newpath)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003158 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003159static int ext4_rename(struct inode *old_dir, struct dentry *old_dentry,
3160 struct inode *new_dir, struct dentry *new_dentry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003161{
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003162 handle_t *handle = NULL;
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003163 struct ext4_renament old = {
3164 .dir = old_dir,
3165 .dentry = old_dentry,
3166 .inode = old_dentry->d_inode,
3167 };
3168 struct ext4_renament new = {
3169 .dir = new_dir,
3170 .dentry = new_dentry,
3171 .inode = new_dentry->d_inode,
3172 };
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003173 int force_reread;
Theodore Ts'o0e202702013-08-16 22:06:53 -04003174 int retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003175
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003176 dquot_initialize(old.dir);
3177 dquot_initialize(new.dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003178
3179 /* Initialize quotas before so that eventual writes go
3180 * in separate transaction */
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003181 if (new.inode)
3182 dquot_initialize(new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003183
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003184 old.bh = ext4_find_entry(old.dir, &old.dentry->d_name, &old.de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003185 if (IS_ERR(old.bh))
3186 return PTR_ERR(old.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003187 /*
3188 * Check for inode number is _not_ due to possible IO errors.
3189 * We might rmdir the source, keep it as pwd of some process
3190 * and merrily kill the link to whatever was created under the
3191 * same name. Goodbye sticky bit ;-<
3192 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003193 retval = -ENOENT;
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003194 if (!old.bh || le32_to_cpu(old.de->inode) != old.inode->i_ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003195 goto end_rename;
3196
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003197 new.bh = ext4_find_entry(new.dir, &new.dentry->d_name,
3198 &new.de, &new.inlined);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003199 if (IS_ERR(new.bh)) {
3200 retval = PTR_ERR(new.bh);
3201 goto end_rename;
3202 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003203 if (new.bh) {
3204 if (!new.inode) {
3205 brelse(new.bh);
3206 new.bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003207 }
3208 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003209 if (new.inode && !test_opt(new.dir->i_sb, NO_AUTO_DA_ALLOC))
3210 ext4_alloc_da_blocks(old.inode);
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003211
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003212 handle = ext4_journal_start(old.dir, EXT4_HT_DIR,
3213 (2 * EXT4_DATA_TRANS_BLOCKS(old.dir->i_sb) +
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003214 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 2));
3215 if (IS_ERR(handle))
3216 return PTR_ERR(handle);
3217
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003218 if (IS_DIRSYNC(old.dir) || IS_DIRSYNC(new.dir))
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003219 ext4_handle_sync(handle);
3220
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003221 if (S_ISDIR(old.inode->i_mode)) {
3222 if (new.inode) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003223 retval = -ENOTEMPTY;
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003224 if (!empty_dir(new.inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003225 goto end_rename;
Miklos Szeredi0d7d5d62014-04-01 17:08:44 +02003226 } else {
3227 retval = -EMLINK;
3228 if (new.dir != old.dir && EXT4_DIR_LINK_MAX(new.dir))
3229 goto end_rename;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003230 }
Miklos Szeredibd1af142014-04-01 17:08:44 +02003231 retval = ext4_rename_dir_prepare(handle, &old);
Amir Goldsteinef607892011-03-20 21:18:44 -04003232 if (retval)
3233 goto end_rename;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003234 }
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003235 /*
3236 * If we're renaming a file within an inline_data dir and adding or
3237 * setting the new dirent causes a conversion from inline_data to
3238 * extents/blockmap, we need to force the dirent delete code to
3239 * re-read the directory, or else we end up trying to delete a dirent
3240 * from what is now the extent tree root (or a block map).
3241 */
3242 force_reread = (new.dir->i_ino == old.dir->i_ino &&
3243 ext4_test_inode_flag(new.dir, EXT4_INODE_INLINE_DATA));
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003244 if (!new.bh) {
3245 retval = ext4_add_entry(handle, new.dentry, old.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003246 if (retval)
3247 goto end_rename;
3248 } else {
Miklos Szeredibd1af142014-04-01 17:08:44 +02003249 retval = ext4_setent(handle, &new,
3250 old.inode->i_ino, old.de->file_type);
Amir Goldsteinef607892011-03-20 21:18:44 -04003251 if (retval)
3252 goto end_rename;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003253 }
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003254 if (force_reread)
3255 force_reread = !ext4_test_inode_flag(new.dir,
3256 EXT4_INODE_INLINE_DATA);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003257
3258 /*
3259 * Like most other Unix systems, set the ctime for inodes on a
3260 * rename.
3261 */
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003262 old.inode->i_ctime = ext4_current_time(old.inode);
3263 ext4_mark_inode_dirty(handle, old.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003264
3265 /*
3266 * ok, that's it
3267 */
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003268 ext4_rename_delete(handle, &old, force_reread);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003269
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003270 if (new.inode) {
3271 ext4_dec_count(handle, new.inode);
3272 new.inode->i_ctime = ext4_current_time(new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003273 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003274 old.dir->i_ctime = old.dir->i_mtime = ext4_current_time(old.dir);
3275 ext4_update_dx_flag(old.dir);
3276 if (old.dir_bh) {
Miklos Szeredibd1af142014-04-01 17:08:44 +02003277 retval = ext4_rename_dir_finish(handle, &old, new.dir->i_ino);
3278 if (retval)
Theodore Ts'ob4097142011-01-10 12:46:59 -05003279 goto end_rename;
Miklos Szeredibd1af142014-04-01 17:08:44 +02003280
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003281 ext4_dec_count(handle, old.dir);
3282 if (new.inode) {
Andreas Dilgerf8628a12007-07-18 08:38:01 -04003283 /* checked empty_dir above, can't have another parent,
Theodore Ts'o825f1482008-02-15 15:00:38 -05003284 * ext4_dec_count() won't work for many-linked dirs */
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003285 clear_nlink(new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003286 } else {
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003287 ext4_inc_count(handle, new.dir);
3288 ext4_update_dx_flag(new.dir);
3289 ext4_mark_inode_dirty(handle, new.dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003290 }
3291 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003292 ext4_mark_inode_dirty(handle, old.dir);
3293 if (new.inode) {
3294 ext4_mark_inode_dirty(handle, new.inode);
3295 if (!new.inode->i_nlink)
3296 ext4_orphan_add(handle, new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003297 }
3298 retval = 0;
3299
3300end_rename:
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003301 brelse(old.dir_bh);
3302 brelse(old.bh);
3303 brelse(new.bh);
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003304 if (handle)
3305 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003306 return retval;
3307}
3308
Miklos Szeredibd429982014-04-01 17:08:44 +02003309static int ext4_cross_rename(struct inode *old_dir, struct dentry *old_dentry,
3310 struct inode *new_dir, struct dentry *new_dentry)
3311{
3312 handle_t *handle = NULL;
3313 struct ext4_renament old = {
3314 .dir = old_dir,
3315 .dentry = old_dentry,
3316 .inode = old_dentry->d_inode,
3317 };
3318 struct ext4_renament new = {
3319 .dir = new_dir,
3320 .dentry = new_dentry,
3321 .inode = new_dentry->d_inode,
3322 };
3323 u8 new_file_type;
3324 int retval;
3325
3326 dquot_initialize(old.dir);
3327 dquot_initialize(new.dir);
3328
3329 old.bh = ext4_find_entry(old.dir, &old.dentry->d_name,
3330 &old.de, &old.inlined);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003331 if (IS_ERR(old.bh))
3332 return PTR_ERR(old.bh);
Miklos Szeredibd429982014-04-01 17:08:44 +02003333 /*
3334 * Check for inode number is _not_ due to possible IO errors.
3335 * We might rmdir the source, keep it as pwd of some process
3336 * and merrily kill the link to whatever was created under the
3337 * same name. Goodbye sticky bit ;-<
3338 */
3339 retval = -ENOENT;
3340 if (!old.bh || le32_to_cpu(old.de->inode) != old.inode->i_ino)
3341 goto end_rename;
3342
3343 new.bh = ext4_find_entry(new.dir, &new.dentry->d_name,
3344 &new.de, &new.inlined);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003345 if (IS_ERR(new.bh)) {
3346 retval = PTR_ERR(new.bh);
3347 goto end_rename;
3348 }
Miklos Szeredibd429982014-04-01 17:08:44 +02003349
3350 /* RENAME_EXCHANGE case: old *and* new must both exist */
3351 if (!new.bh || le32_to_cpu(new.de->inode) != new.inode->i_ino)
3352 goto end_rename;
3353
3354 handle = ext4_journal_start(old.dir, EXT4_HT_DIR,
3355 (2 * EXT4_DATA_TRANS_BLOCKS(old.dir->i_sb) +
3356 2 * EXT4_INDEX_EXTRA_TRANS_BLOCKS + 2));
3357 if (IS_ERR(handle))
3358 return PTR_ERR(handle);
3359
3360 if (IS_DIRSYNC(old.dir) || IS_DIRSYNC(new.dir))
3361 ext4_handle_sync(handle);
3362
3363 if (S_ISDIR(old.inode->i_mode)) {
3364 old.is_dir = true;
3365 retval = ext4_rename_dir_prepare(handle, &old);
3366 if (retval)
3367 goto end_rename;
3368 }
3369 if (S_ISDIR(new.inode->i_mode)) {
3370 new.is_dir = true;
3371 retval = ext4_rename_dir_prepare(handle, &new);
3372 if (retval)
3373 goto end_rename;
3374 }
3375
3376 /*
3377 * Other than the special case of overwriting a directory, parents'
3378 * nlink only needs to be modified if this is a cross directory rename.
3379 */
3380 if (old.dir != new.dir && old.is_dir != new.is_dir) {
3381 old.dir_nlink_delta = old.is_dir ? -1 : 1;
3382 new.dir_nlink_delta = -old.dir_nlink_delta;
3383 retval = -EMLINK;
3384 if ((old.dir_nlink_delta > 0 && EXT4_DIR_LINK_MAX(old.dir)) ||
3385 (new.dir_nlink_delta > 0 && EXT4_DIR_LINK_MAX(new.dir)))
3386 goto end_rename;
3387 }
3388
3389 new_file_type = new.de->file_type;
3390 retval = ext4_setent(handle, &new, old.inode->i_ino, old.de->file_type);
3391 if (retval)
3392 goto end_rename;
3393
3394 retval = ext4_setent(handle, &old, new.inode->i_ino, new_file_type);
3395 if (retval)
3396 goto end_rename;
3397
3398 /*
3399 * Like most other Unix systems, set the ctime for inodes on a
3400 * rename.
3401 */
3402 old.inode->i_ctime = ext4_current_time(old.inode);
3403 new.inode->i_ctime = ext4_current_time(new.inode);
3404 ext4_mark_inode_dirty(handle, old.inode);
3405 ext4_mark_inode_dirty(handle, new.inode);
3406
3407 if (old.dir_bh) {
3408 retval = ext4_rename_dir_finish(handle, &old, new.dir->i_ino);
3409 if (retval)
3410 goto end_rename;
3411 }
3412 if (new.dir_bh) {
3413 retval = ext4_rename_dir_finish(handle, &new, old.dir->i_ino);
3414 if (retval)
3415 goto end_rename;
3416 }
3417 ext4_update_dir_count(handle, &old);
3418 ext4_update_dir_count(handle, &new);
3419 retval = 0;
3420
3421end_rename:
3422 brelse(old.dir_bh);
3423 brelse(new.dir_bh);
3424 brelse(old.bh);
3425 brelse(new.bh);
3426 if (handle)
3427 ext4_journal_stop(handle);
3428 return retval;
3429}
3430
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003431static int ext4_rename2(struct inode *old_dir, struct dentry *old_dentry,
3432 struct inode *new_dir, struct dentry *new_dentry,
3433 unsigned int flags)
3434{
Miklos Szeredibd429982014-04-01 17:08:44 +02003435 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE))
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003436 return -EINVAL;
3437
Miklos Szeredibd429982014-04-01 17:08:44 +02003438 if (flags & RENAME_EXCHANGE) {
3439 return ext4_cross_rename(old_dir, old_dentry,
3440 new_dir, new_dentry);
3441 }
3442 /*
3443 * Existence checking was done by the VFS, otherwise "RENAME_NOREPLACE"
3444 * is equivalent to regular rename.
3445 */
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003446 return ext4_rename(old_dir, old_dentry, new_dir, new_dentry);
3447}
3448
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003449/*
3450 * directories can handle most operations...
3451 */
Arjan van de Ven754661f2007-02-12 00:55:38 -08003452const struct inode_operations ext4_dir_inode_operations = {
Mingming Cao617ba132006-10-11 01:20:53 -07003453 .create = ext4_create,
3454 .lookup = ext4_lookup,
3455 .link = ext4_link,
3456 .unlink = ext4_unlink,
3457 .symlink = ext4_symlink,
3458 .mkdir = ext4_mkdir,
3459 .rmdir = ext4_rmdir,
3460 .mknod = ext4_mknod,
Al Viroaf51a2a2013-06-29 13:23:08 +04003461 .tmpfile = ext4_tmpfile,
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003462 .rename2 = ext4_rename2,
Mingming Cao617ba132006-10-11 01:20:53 -07003463 .setattr = ext4_setattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003464 .setxattr = generic_setxattr,
3465 .getxattr = generic_getxattr,
Mingming Cao617ba132006-10-11 01:20:53 -07003466 .listxattr = ext4_listxattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003467 .removexattr = generic_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02003468 .get_acl = ext4_get_acl,
Christoph Hellwig64e178a2013-12-20 05:16:44 -08003469 .set_acl = ext4_set_acl,
Aneesh Kumar K.Vabc87462009-05-02 22:54:32 -04003470 .fiemap = ext4_fiemap,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003471};
3472
Arjan van de Ven754661f2007-02-12 00:55:38 -08003473const struct inode_operations ext4_special_inode_operations = {
Mingming Cao617ba132006-10-11 01:20:53 -07003474 .setattr = ext4_setattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003475 .setxattr = generic_setxattr,
3476 .getxattr = generic_getxattr,
Mingming Cao617ba132006-10-11 01:20:53 -07003477 .listxattr = ext4_listxattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003478 .removexattr = generic_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02003479 .get_acl = ext4_get_acl,
Christoph Hellwig64e178a2013-12-20 05:16:44 -08003480 .set_acl = ext4_set_acl,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003481};