blob: e6d51655ffcd79e89d16ecaee0cb87ba32459c4a [file] [log] [blame]
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001/*
Mingming Cao617ba132006-10-11 01:20:53 -07002 * linux/fs/ext4/namei.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003 *
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
8 *
9 * from
10 *
11 * linux/fs/minix/namei.c
12 *
13 * Copyright (C) 1991, 1992 Linus Torvalds
14 *
15 * Big-endian to little-endian byte-swapping/bitmaps by
16 * David S. Miller (davem@caip.rutgers.edu), 1995
17 * Directory entry file type support and forward compatibility hooks
18 * for B-tree directories by Theodore Ts'o (tytso@mit.edu), 1998
19 * Hash Tree Directory indexing (c)
20 * Daniel Phillips, 2001
21 * Hash Tree Directory indexing porting
22 * Christopher Li, 2002
23 * Hash Tree Directory indexing cleanup
24 * Theodore Ts'o, 2002
25 */
26
27#include <linux/fs.h>
28#include <linux/pagemap.h>
Mingming Caodab291a2006-10-11 01:21:01 -070029#include <linux/jbd2.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070030#include <linux/time.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070031#include <linux/fcntl.h>
32#include <linux/stat.h>
33#include <linux/string.h>
34#include <linux/quotaops.h>
35#include <linux/buffer_head.h>
36#include <linux/bio.h>
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040037#include "ext4.h"
38#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070039
Dave Kleikampac27a0e2006-10-11 01:20:50 -070040#include "xattr.h"
41#include "acl.h"
42
Jiaying Zhang0562e0b2011-03-21 21:38:05 -040043#include <trace/events/ext4.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070044/*
45 * define how far ahead to read directories while searching them.
46 */
47#define NAMEI_RA_CHUNKS 2
48#define NAMEI_RA_BLOCKS 4
Dave Kleikamp8c55e202007-05-24 13:04:54 -040049#define NAMEI_RA_SIZE (NAMEI_RA_CHUNKS * NAMEI_RA_BLOCKS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070050
Mingming Cao617ba132006-10-11 01:20:53 -070051static struct buffer_head *ext4_append(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070052 struct inode *inode,
Theodore Ts'o0f70b402013-02-15 03:35:57 -050053 ext4_lblk_t *block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070054{
55 struct buffer_head *bh;
Theodore Ts'o1c215022014-08-29 20:52:15 -040056 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -070057
Theodore Ts'odf981d02012-08-17 09:48:17 -040058 if (unlikely(EXT4_SB(inode->i_sb)->s_max_dir_size_kb &&
59 ((inode->i_size >> 10) >=
Theodore Ts'o0f70b402013-02-15 03:35:57 -050060 EXT4_SB(inode->i_sb)->s_max_dir_size_kb)))
61 return ERR_PTR(-ENOSPC);
Theodore Ts'odf981d02012-08-17 09:48:17 -040062
Dave Kleikampac27a0e2006-10-11 01:20:50 -070063 *block = inode->i_size >> inode->i_sb->s_blocksize_bits;
64
Theodore Ts'o1c215022014-08-29 20:52:15 -040065 bh = ext4_bread(handle, inode, *block, 1);
66 if (IS_ERR(bh))
67 return bh;
Theodore Ts'o0f70b402013-02-15 03:35:57 -050068 inode->i_size += inode->i_sb->s_blocksize;
69 EXT4_I(inode)->i_disksize = inode->i_size;
liang xie5d601252014-05-12 22:06:43 -040070 BUFFER_TRACE(bh, "get_write_access");
Theodore Ts'o0f70b402013-02-15 03:35:57 -050071 err = ext4_journal_get_write_access(handle, bh);
72 if (err) {
73 brelse(bh);
74 ext4_std_error(inode->i_sb, err);
75 return ERR_PTR(err);
Carlos Maiolino6d1ab102012-09-27 09:31:33 -040076 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -070077 return bh;
78}
79
Theodore Ts'odc6982f2013-02-14 23:59:26 -050080static int ext4_dx_csum_verify(struct inode *inode,
81 struct ext4_dir_entry *dirent);
82
83typedef enum {
84 EITHER, INDEX, DIRENT
85} dirblock_type_t;
86
87#define ext4_read_dirblock(inode, block, type) \
88 __ext4_read_dirblock((inode), (block), (type), __LINE__)
89
90static struct buffer_head *__ext4_read_dirblock(struct inode *inode,
91 ext4_lblk_t block,
92 dirblock_type_t type,
93 unsigned int line)
94{
95 struct buffer_head *bh;
96 struct ext4_dir_entry *dirent;
Theodore Ts'o1c215022014-08-29 20:52:15 -040097 int is_dx_block = 0;
Theodore Ts'odc6982f2013-02-14 23:59:26 -050098
Theodore Ts'o1c215022014-08-29 20:52:15 -040099 bh = ext4_bread(NULL, inode, block, 0);
100 if (IS_ERR(bh)) {
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500101 __ext4_warning(inode->i_sb, __func__, line,
Theodore Ts'o1c215022014-08-29 20:52:15 -0400102 "error %ld reading directory block "
103 "(ino %lu, block %lu)", PTR_ERR(bh), inode->i_ino,
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500104 (unsigned long) block);
Theodore Ts'o1c215022014-08-29 20:52:15 -0400105
106 return bh;
107 }
108 if (!bh) {
109 ext4_error_inode(inode, __func__, line, block, "Directory hole found");
110 return ERR_PTR(-EIO);
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500111 }
112 dirent = (struct ext4_dir_entry *) bh->b_data;
113 /* Determine whether or not we have an index block */
114 if (is_dx(inode)) {
115 if (block == 0)
116 is_dx_block = 1;
117 else if (ext4_rec_len_from_disk(dirent->rec_len,
118 inode->i_sb->s_blocksize) ==
119 inode->i_sb->s_blocksize)
120 is_dx_block = 1;
121 }
122 if (!is_dx_block && type == INDEX) {
123 ext4_error_inode(inode, __func__, line, block,
124 "directory leaf block found instead of index block");
125 return ERR_PTR(-EIO);
126 }
127 if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
128 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM) ||
129 buffer_verified(bh))
130 return bh;
131
132 /*
133 * An empty leaf block can get mistaken for a index block; for
134 * this reason, we can only check the index checksum when the
135 * caller is sure it should be an index block.
136 */
137 if (is_dx_block && type == INDEX) {
138 if (ext4_dx_csum_verify(inode, dirent))
139 set_buffer_verified(bh);
140 else {
141 ext4_error_inode(inode, __func__, line, block,
142 "Directory index failed checksum");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700143 brelse(bh);
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500144 return ERR_PTR(-EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700145 }
146 }
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500147 if (!is_dx_block) {
148 if (ext4_dirent_csum_verify(inode, dirent))
149 set_buffer_verified(bh);
150 else {
151 ext4_error_inode(inode, __func__, line, block,
152 "Directory block failed checksum");
153 brelse(bh);
154 return ERR_PTR(-EIO);
155 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700156 }
157 return bh;
158}
159
160#ifndef assert
161#define assert(test) J_ASSERT(test)
162#endif
163
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700164#ifdef DX_DEBUG
165#define dxtrace(command) command
166#else
167#define dxtrace(command)
168#endif
169
170struct fake_dirent
171{
172 __le32 inode;
173 __le16 rec_len;
174 u8 name_len;
175 u8 file_type;
176};
177
178struct dx_countlimit
179{
180 __le16 limit;
181 __le16 count;
182};
183
184struct dx_entry
185{
186 __le32 hash;
187 __le32 block;
188};
189
190/*
191 * dx_root_info is laid out so that if it should somehow get overlaid by a
192 * dirent the two low bits of the hash version will be zero. Therefore, the
193 * hash version mod 4 should never be 0. Sincerely, the paranoia department.
194 */
195
196struct dx_root
197{
198 struct fake_dirent dot;
199 char dot_name[4];
200 struct fake_dirent dotdot;
201 char dotdot_name[4];
202 struct dx_root_info
203 {
204 __le32 reserved_zero;
205 u8 hash_version;
206 u8 info_length; /* 8 */
207 u8 indirect_levels;
208 u8 unused_flags;
209 }
210 info;
211 struct dx_entry entries[0];
212};
213
214struct dx_node
215{
216 struct fake_dirent fake;
217 struct dx_entry entries[0];
218};
219
220
221struct dx_frame
222{
223 struct buffer_head *bh;
224 struct dx_entry *entries;
225 struct dx_entry *at;
226};
227
228struct dx_map_entry
229{
230 u32 hash;
Eric Sandeenef2b02d2007-09-18 22:46:42 -0700231 u16 offs;
232 u16 size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700233};
234
Darrick J. Wonge6153912012-04-29 18:23:10 -0400235/*
236 * This goes at the end of each htree block.
237 */
238struct dx_tail {
239 u32 dt_reserved;
240 __le32 dt_checksum; /* crc32c(uuid+inum+dirblock) */
241};
242
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500243static inline ext4_lblk_t dx_get_block(struct dx_entry *entry);
244static void dx_set_block(struct dx_entry *entry, ext4_lblk_t value);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400245static inline unsigned dx_get_hash(struct dx_entry *entry);
246static void dx_set_hash(struct dx_entry *entry, unsigned value);
247static unsigned dx_get_count(struct dx_entry *entries);
248static unsigned dx_get_limit(struct dx_entry *entries);
249static void dx_set_count(struct dx_entry *entries, unsigned value);
250static void dx_set_limit(struct dx_entry *entries, unsigned value);
251static unsigned dx_root_limit(struct inode *dir, unsigned infosize);
252static unsigned dx_node_limit(struct inode *dir);
Theodore Ts'of702ba02008-09-22 15:21:01 -0400253static struct dx_frame *dx_probe(const struct qstr *d_name,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700254 struct inode *dir,
255 struct dx_hash_info *hinfo,
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400256 struct dx_frame *frame);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400257static void dx_release(struct dx_frame *frames);
Theodore Ts'o8bad4592009-02-14 21:46:54 -0500258static int dx_make_map(struct ext4_dir_entry_2 *de, unsigned blocksize,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400259 struct dx_hash_info *hinfo, struct dx_map_entry map[]);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700260static void dx_sort_map(struct dx_map_entry *map, unsigned count);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400261static struct ext4_dir_entry_2 *dx_move_dirents(char *from, char *to,
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500262 struct dx_map_entry *offsets, int count, unsigned blocksize);
Theodore Ts'o8bad4592009-02-14 21:46:54 -0500263static struct ext4_dir_entry_2* dx_pack_dirents(char *base, unsigned blocksize);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500264static void dx_insert_block(struct dx_frame *frame,
265 u32 hash, ext4_lblk_t block);
Mingming Cao617ba132006-10-11 01:20:53 -0700266static int ext4_htree_next_block(struct inode *dir, __u32 hash,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700267 struct dx_frame *frame,
268 struct dx_frame *frames,
269 __u32 *start_hash);
Theodore Ts'of702ba02008-09-22 15:21:01 -0400270static struct buffer_head * ext4_dx_find_entry(struct inode *dir,
271 const struct qstr *d_name,
Theodore Ts'o537d8f92014-08-29 20:49:51 -0400272 struct ext4_dir_entry_2 **res_dir);
Mingming Cao617ba132006-10-11 01:20:53 -0700273static int ext4_dx_add_entry(handle_t *handle, struct dentry *dentry,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700274 struct inode *inode);
275
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400276/* checksumming functions */
Tao Ma3c47d542012-12-10 14:05:59 -0500277void initialize_dirent_tail(struct ext4_dir_entry_tail *t,
278 unsigned int blocksize)
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400279{
280 memset(t, 0, sizeof(struct ext4_dir_entry_tail));
281 t->det_rec_len = ext4_rec_len_to_disk(
282 sizeof(struct ext4_dir_entry_tail), blocksize);
283 t->det_reserved_ft = EXT4_FT_DIR_CSUM;
284}
285
286/* Walk through a dirent block to find a checksum "dirent" at the tail */
287static struct ext4_dir_entry_tail *get_dirent_tail(struct inode *inode,
288 struct ext4_dir_entry *de)
289{
290 struct ext4_dir_entry_tail *t;
291
292#ifdef PARANOID
293 struct ext4_dir_entry *d, *top;
294
295 d = de;
296 top = (struct ext4_dir_entry *)(((void *)de) +
297 (EXT4_BLOCK_SIZE(inode->i_sb) -
298 sizeof(struct ext4_dir_entry_tail)));
299 while (d < top && d->rec_len)
300 d = (struct ext4_dir_entry *)(((void *)d) +
301 le16_to_cpu(d->rec_len));
302
303 if (d != top)
304 return NULL;
305
306 t = (struct ext4_dir_entry_tail *)d;
307#else
308 t = EXT4_DIRENT_TAIL(de, EXT4_BLOCK_SIZE(inode->i_sb));
309#endif
310
311 if (t->det_reserved_zero1 ||
312 le16_to_cpu(t->det_rec_len) != sizeof(struct ext4_dir_entry_tail) ||
313 t->det_reserved_zero2 ||
314 t->det_reserved_ft != EXT4_FT_DIR_CSUM)
315 return NULL;
316
317 return t;
318}
319
320static __le32 ext4_dirent_csum(struct inode *inode,
321 struct ext4_dir_entry *dirent, int size)
322{
323 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
324 struct ext4_inode_info *ei = EXT4_I(inode);
325 __u32 csum;
326
327 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)dirent, size);
328 return cpu_to_le32(csum);
329}
330
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500331static void warn_no_space_for_csum(struct inode *inode)
332{
333 ext4_warning(inode->i_sb, "no space in directory inode %lu leaf for "
334 "checksum. Please run e2fsck -D.", inode->i_ino);
335}
336
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400337int ext4_dirent_csum_verify(struct inode *inode, struct ext4_dir_entry *dirent)
338{
339 struct ext4_dir_entry_tail *t;
340
341 if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
342 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
343 return 1;
344
345 t = get_dirent_tail(inode, dirent);
346 if (!t) {
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500347 warn_no_space_for_csum(inode);
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400348 return 0;
349 }
350
351 if (t->det_checksum != ext4_dirent_csum(inode, dirent,
352 (void *)t - (void *)dirent))
353 return 0;
354
355 return 1;
356}
357
358static void ext4_dirent_csum_set(struct inode *inode,
359 struct ext4_dir_entry *dirent)
360{
361 struct ext4_dir_entry_tail *t;
362
363 if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
364 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
365 return;
366
367 t = get_dirent_tail(inode, dirent);
368 if (!t) {
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500369 warn_no_space_for_csum(inode);
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400370 return;
371 }
372
373 t->det_checksum = ext4_dirent_csum(inode, dirent,
374 (void *)t - (void *)dirent);
375}
376
Tao Ma3c47d542012-12-10 14:05:59 -0500377int ext4_handle_dirty_dirent_node(handle_t *handle,
378 struct inode *inode,
379 struct buffer_head *bh)
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400380{
381 ext4_dirent_csum_set(inode, (struct ext4_dir_entry *)bh->b_data);
382 return ext4_handle_dirty_metadata(handle, inode, bh);
383}
384
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400385static struct dx_countlimit *get_dx_countlimit(struct inode *inode,
386 struct ext4_dir_entry *dirent,
387 int *offset)
388{
389 struct ext4_dir_entry *dp;
390 struct dx_root_info *root;
391 int count_offset;
392
393 if (le16_to_cpu(dirent->rec_len) == EXT4_BLOCK_SIZE(inode->i_sb))
394 count_offset = 8;
395 else if (le16_to_cpu(dirent->rec_len) == 12) {
396 dp = (struct ext4_dir_entry *)(((void *)dirent) + 12);
397 if (le16_to_cpu(dp->rec_len) !=
398 EXT4_BLOCK_SIZE(inode->i_sb) - 12)
399 return NULL;
400 root = (struct dx_root_info *)(((void *)dp + 12));
401 if (root->reserved_zero ||
402 root->info_length != sizeof(struct dx_root_info))
403 return NULL;
404 count_offset = 32;
405 } else
406 return NULL;
407
408 if (offset)
409 *offset = count_offset;
410 return (struct dx_countlimit *)(((void *)dirent) + count_offset);
411}
412
413static __le32 ext4_dx_csum(struct inode *inode, struct ext4_dir_entry *dirent,
414 int count_offset, int count, struct dx_tail *t)
415{
416 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
417 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'od6a77102013-04-09 23:59:55 -0400418 __u32 csum;
419 __le32 save_csum;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400420 int size;
421
422 size = count_offset + (count * sizeof(struct dx_entry));
Theodore Ts'od6a77102013-04-09 23:59:55 -0400423 save_csum = t->dt_checksum;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400424 t->dt_checksum = 0;
425 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)dirent, size);
426 csum = ext4_chksum(sbi, csum, (__u8 *)t, sizeof(struct dx_tail));
Theodore Ts'od6a77102013-04-09 23:59:55 -0400427 t->dt_checksum = save_csum;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400428
429 return cpu_to_le32(csum);
430}
431
432static int ext4_dx_csum_verify(struct inode *inode,
433 struct ext4_dir_entry *dirent)
434{
435 struct dx_countlimit *c;
436 struct dx_tail *t;
437 int count_offset, limit, count;
438
439 if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
440 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
441 return 1;
442
443 c = get_dx_countlimit(inode, dirent, &count_offset);
444 if (!c) {
445 EXT4_ERROR_INODE(inode, "dir seems corrupt? Run e2fsck -D.");
446 return 1;
447 }
448 limit = le16_to_cpu(c->limit);
449 count = le16_to_cpu(c->count);
450 if (count_offset + (limit * sizeof(struct dx_entry)) >
451 EXT4_BLOCK_SIZE(inode->i_sb) - sizeof(struct dx_tail)) {
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500452 warn_no_space_for_csum(inode);
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400453 return 1;
454 }
455 t = (struct dx_tail *)(((struct dx_entry *)c) + limit);
456
457 if (t->dt_checksum != ext4_dx_csum(inode, dirent, count_offset,
458 count, t))
459 return 0;
460 return 1;
461}
462
463static void ext4_dx_csum_set(struct inode *inode, struct ext4_dir_entry *dirent)
464{
465 struct dx_countlimit *c;
466 struct dx_tail *t;
467 int count_offset, limit, count;
468
469 if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
470 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
471 return;
472
473 c = get_dx_countlimit(inode, dirent, &count_offset);
474 if (!c) {
475 EXT4_ERROR_INODE(inode, "dir seems corrupt? Run e2fsck -D.");
476 return;
477 }
478 limit = le16_to_cpu(c->limit);
479 count = le16_to_cpu(c->count);
480 if (count_offset + (limit * sizeof(struct dx_entry)) >
481 EXT4_BLOCK_SIZE(inode->i_sb) - sizeof(struct dx_tail)) {
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500482 warn_no_space_for_csum(inode);
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400483 return;
484 }
485 t = (struct dx_tail *)(((struct dx_entry *)c) + limit);
486
487 t->dt_checksum = ext4_dx_csum(inode, dirent, count_offset, count, t);
488}
489
490static inline int ext4_handle_dirty_dx_node(handle_t *handle,
491 struct inode *inode,
492 struct buffer_head *bh)
493{
494 ext4_dx_csum_set(inode, (struct ext4_dir_entry *)bh->b_data);
495 return ext4_handle_dirty_metadata(handle, inode, bh);
496}
497
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700498/*
Li Zefanf795e142008-07-11 19:27:31 -0400499 * p is at least 6 bytes before the end of page
500 */
501static inline struct ext4_dir_entry_2 *
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500502ext4_next_entry(struct ext4_dir_entry_2 *p, unsigned long blocksize)
Li Zefanf795e142008-07-11 19:27:31 -0400503{
504 return (struct ext4_dir_entry_2 *)((char *)p +
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500505 ext4_rec_len_from_disk(p->rec_len, blocksize));
Li Zefanf795e142008-07-11 19:27:31 -0400506}
507
508/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700509 * Future: use high four bits of block for coalesce-on-delete flags
510 * Mask them off for now.
511 */
512
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500513static inline ext4_lblk_t dx_get_block(struct dx_entry *entry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700514{
515 return le32_to_cpu(entry->block) & 0x00ffffff;
516}
517
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500518static inline void dx_set_block(struct dx_entry *entry, ext4_lblk_t value)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700519{
520 entry->block = cpu_to_le32(value);
521}
522
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400523static inline unsigned dx_get_hash(struct dx_entry *entry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700524{
525 return le32_to_cpu(entry->hash);
526}
527
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400528static inline void dx_set_hash(struct dx_entry *entry, unsigned value)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700529{
530 entry->hash = cpu_to_le32(value);
531}
532
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400533static inline unsigned dx_get_count(struct dx_entry *entries)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700534{
535 return le16_to_cpu(((struct dx_countlimit *) entries)->count);
536}
537
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400538static inline unsigned dx_get_limit(struct dx_entry *entries)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700539{
540 return le16_to_cpu(((struct dx_countlimit *) entries)->limit);
541}
542
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400543static inline void dx_set_count(struct dx_entry *entries, unsigned value)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700544{
545 ((struct dx_countlimit *) entries)->count = cpu_to_le16(value);
546}
547
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400548static inline void dx_set_limit(struct dx_entry *entries, unsigned value)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700549{
550 ((struct dx_countlimit *) entries)->limit = cpu_to_le16(value);
551}
552
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400553static inline unsigned dx_root_limit(struct inode *dir, unsigned infosize)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700554{
Mingming Cao617ba132006-10-11 01:20:53 -0700555 unsigned entry_space = dir->i_sb->s_blocksize - EXT4_DIR_REC_LEN(1) -
556 EXT4_DIR_REC_LEN(2) - infosize;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400557
558 if (EXT4_HAS_RO_COMPAT_FEATURE(dir->i_sb,
559 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
560 entry_space -= sizeof(struct dx_tail);
Li Zefand9c769b2008-07-11 19:27:31 -0400561 return entry_space / sizeof(struct dx_entry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700562}
563
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400564static inline unsigned dx_node_limit(struct inode *dir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700565{
Mingming Cao617ba132006-10-11 01:20:53 -0700566 unsigned entry_space = dir->i_sb->s_blocksize - EXT4_DIR_REC_LEN(0);
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400567
568 if (EXT4_HAS_RO_COMPAT_FEATURE(dir->i_sb,
569 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
570 entry_space -= sizeof(struct dx_tail);
Li Zefand9c769b2008-07-11 19:27:31 -0400571 return entry_space / sizeof(struct dx_entry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700572}
573
574/*
575 * Debug
576 */
577#ifdef DX_DEBUG
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400578static void dx_show_index(char * label, struct dx_entry *entries)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700579{
Andrew Morton63f57932006-10-11 01:21:24 -0700580 int i, n = dx_get_count (entries);
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400581 printk(KERN_DEBUG "%s index ", label);
Andrew Morton63f57932006-10-11 01:21:24 -0700582 for (i = 0; i < n; i++) {
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400583 printk("%x->%lu ", i ? dx_get_hash(entries + i) :
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500584 0, (unsigned long)dx_get_block(entries + i));
Andrew Morton63f57932006-10-11 01:21:24 -0700585 }
586 printk("\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700587}
588
589struct stats
590{
591 unsigned names;
592 unsigned space;
593 unsigned bcount;
594};
595
Mingming Cao617ba132006-10-11 01:20:53 -0700596static struct stats dx_show_leaf(struct dx_hash_info *hinfo, struct ext4_dir_entry_2 *de,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700597 int size, int show_names)
598{
599 unsigned names = 0, space = 0;
600 char *base = (char *) de;
601 struct dx_hash_info h = *hinfo;
602
603 printk("names: ");
604 while ((char *) de < base + size)
605 {
606 if (de->inode)
607 {
608 if (show_names)
609 {
610 int len = de->name_len;
611 char *name = de->name;
612 while (len--) printk("%c", *name++);
Mingming Cao617ba132006-10-11 01:20:53 -0700613 ext4fs_dirhash(de->name, de->name_len, &h);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700614 printk(":%x.%u ", h.hash,
Bernd Schubert265c6a02011-07-16 19:41:23 -0400615 (unsigned) ((char *) de - base));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700616 }
Mingming Cao617ba132006-10-11 01:20:53 -0700617 space += EXT4_DIR_REC_LEN(de->name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700618 names++;
619 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500620 de = ext4_next_entry(de, size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700621 }
622 printk("(%i)\n", names);
623 return (struct stats) { names, space, 1 };
624}
625
626struct stats dx_show_entries(struct dx_hash_info *hinfo, struct inode *dir,
627 struct dx_entry *entries, int levels)
628{
629 unsigned blocksize = dir->i_sb->s_blocksize;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400630 unsigned count = dx_get_count(entries), names = 0, space = 0, i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700631 unsigned bcount = 0;
632 struct buffer_head *bh;
633 int err;
634 printk("%i indexed blocks...\n", count);
635 for (i = 0; i < count; i++, entries++)
636 {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500637 ext4_lblk_t block = dx_get_block(entries);
638 ext4_lblk_t hash = i ? dx_get_hash(entries): 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700639 u32 range = i < count - 1? (dx_get_hash(entries + 1) - hash): ~hash;
640 struct stats stats;
641 printk("%s%3u:%03u hash %8x/%8x ",levels?"":" ", i, block, hash, range);
Theodore Ts'o1c215022014-08-29 20:52:15 -0400642 bh = ext4_bread(NULL,dir, block, 0);
643 if (!bh || IS_ERR(bh))
644 continue;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700645 stats = levels?
646 dx_show_entries(hinfo, dir, ((struct dx_node *) bh->b_data)->entries, levels - 1):
Mingming Cao617ba132006-10-11 01:20:53 -0700647 dx_show_leaf(hinfo, (struct ext4_dir_entry_2 *) bh->b_data, blocksize, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700648 names += stats.names;
649 space += stats.space;
650 bcount += stats.bcount;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400651 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700652 }
653 if (bcount)
Theodore Ts'o60e66792010-05-17 07:00:00 -0400654 printk(KERN_DEBUG "%snames %u, fullness %u (%u%%)\n",
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400655 levels ? "" : " ", names, space/bcount,
656 (space/bcount)*100/blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700657 return (struct stats) { names, space, bcount};
658}
659#endif /* DX_DEBUG */
660
661/*
662 * Probe for a directory leaf block to search.
663 *
664 * dx_probe can return ERR_BAD_DX_DIR, which means there was a format
665 * error in the directory index, and the caller should fall back to
666 * searching the directory normally. The callers of dx_probe **MUST**
667 * check for this error code, and make sure it never gets reflected
668 * back to userspace.
669 */
670static struct dx_frame *
Theodore Ts'of702ba02008-09-22 15:21:01 -0400671dx_probe(const struct qstr *d_name, struct inode *dir,
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400672 struct dx_hash_info *hinfo, struct dx_frame *frame_in)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700673{
674 unsigned count, indirect;
675 struct dx_entry *at, *entries, *p, *q, *m;
676 struct dx_root *root;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700677 struct dx_frame *frame = frame_in;
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400678 struct dx_frame *ret_err = ERR_PTR(ERR_BAD_DX_DIR);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700679 u32 hash;
680
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400681 frame->bh = ext4_read_dirblock(dir, 0, INDEX);
682 if (IS_ERR(frame->bh))
683 return (struct dx_frame *) frame->bh;
684
685 root = (struct dx_root *) frame->bh->b_data;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700686 if (root->info.hash_version != DX_HASH_TEA &&
687 root->info.hash_version != DX_HASH_HALF_MD4 &&
688 root->info.hash_version != DX_HASH_LEGACY) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500689 ext4_warning(dir->i_sb, "Unrecognised inode hash code %d",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700690 root->info.hash_version);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700691 goto fail;
692 }
693 hinfo->hash_version = root->info.hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -0400694 if (hinfo->hash_version <= DX_HASH_TEA)
695 hinfo->hash_version += EXT4_SB(dir->i_sb)->s_hash_unsigned;
Mingming Cao617ba132006-10-11 01:20:53 -0700696 hinfo->seed = EXT4_SB(dir->i_sb)->s_hash_seed;
Theodore Ts'of702ba02008-09-22 15:21:01 -0400697 if (d_name)
698 ext4fs_dirhash(d_name->name, d_name->len, hinfo);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700699 hash = hinfo->hash;
700
701 if (root->info.unused_flags & 1) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500702 ext4_warning(dir->i_sb, "Unimplemented inode hash flags: %#06x",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700703 root->info.unused_flags);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700704 goto fail;
705 }
706
707 if ((indirect = root->info.indirect_levels) > 1) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500708 ext4_warning(dir->i_sb, "Unimplemented inode hash depth: %#06x",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700709 root->info.indirect_levels);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700710 goto fail;
711 }
712
713 entries = (struct dx_entry *) (((char *)&root->info) +
714 root->info.info_length);
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700715
716 if (dx_get_limit(entries) != dx_root_limit(dir,
717 root->info.info_length)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500718 ext4_warning(dir->i_sb, "dx entry: limit != root limit");
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700719 goto fail;
720 }
721
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400722 dxtrace(printk("Look up %x", hash));
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400723 while (1) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700724 count = dx_get_count(entries);
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700725 if (!count || count > dx_get_limit(entries)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500726 ext4_warning(dir->i_sb,
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700727 "dx entry: no count or count > limit");
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400728 goto fail;
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700729 }
730
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700731 p = entries + 1;
732 q = entries + count - 1;
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400733 while (p <= q) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700734 m = p + (q - p)/2;
735 dxtrace(printk("."));
736 if (dx_get_hash(m) > hash)
737 q = m - 1;
738 else
739 p = m + 1;
740 }
741
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400742 if (0) { // linear search cross check
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700743 unsigned n = count - 1;
744 at = entries;
745 while (n--)
746 {
747 dxtrace(printk(","));
748 if (dx_get_hash(++at) > hash)
749 {
750 at--;
751 break;
752 }
753 }
754 assert (at == p - 1);
755 }
756
757 at = p - 1;
758 dxtrace(printk(" %x->%u\n", at == entries? 0: dx_get_hash(at), dx_get_block(at)));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700759 frame->entries = entries;
760 frame->at = at;
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400761 if (!indirect--)
762 return frame;
763 frame++;
764 frame->bh = ext4_read_dirblock(dir, dx_get_block(at), INDEX);
765 if (IS_ERR(frame->bh)) {
766 ret_err = (struct dx_frame *) frame->bh;
767 frame->bh = NULL;
768 goto fail;
Carlos Maiolino6d1ab102012-09-27 09:31:33 -0400769 }
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400770 entries = ((struct dx_node *) frame->bh->b_data)->entries;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400771
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700772 if (dx_get_limit(entries) != dx_node_limit (dir)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500773 ext4_warning(dir->i_sb,
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700774 "dx entry: limit != node limit");
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400775 goto fail;
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700776 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700777 }
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400778fail:
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700779 while (frame >= frame_in) {
780 brelse(frame->bh);
781 frame--;
782 }
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400783 if (ret_err == ERR_PTR(ERR_BAD_DX_DIR))
Eric Sandeen12062dd2010-02-15 14:19:27 -0500784 ext4_warning(dir->i_sb,
Zheng Liu9ee49302012-02-20 23:09:36 -0500785 "Corrupt dir inode %lu, running e2fsck is "
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700786 "recommended.", dir->i_ino);
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400787 return ret_err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700788}
789
790static void dx_release (struct dx_frame *frames)
791{
792 if (frames[0].bh == NULL)
793 return;
794
795 if (((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels)
796 brelse(frames[1].bh);
797 brelse(frames[0].bh);
798}
799
800/*
801 * This function increments the frame pointer to search the next leaf
802 * block, and reads in the necessary intervening nodes if the search
803 * should be necessary. Whether or not the search is necessary is
804 * controlled by the hash parameter. If the hash value is even, then
805 * the search is only continued if the next block starts with that
806 * hash value. This is used if we are searching for a specific file.
807 *
808 * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
809 *
810 * This function returns 1 if the caller should continue to search,
811 * or 0 if it should not. If there is an error reading one of the
812 * index blocks, it will a negative error code.
813 *
814 * If start_hash is non-null, it will be filled in with the starting
815 * hash of the next page.
816 */
Mingming Cao617ba132006-10-11 01:20:53 -0700817static int ext4_htree_next_block(struct inode *dir, __u32 hash,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700818 struct dx_frame *frame,
819 struct dx_frame *frames,
820 __u32 *start_hash)
821{
822 struct dx_frame *p;
823 struct buffer_head *bh;
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500824 int num_frames = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700825 __u32 bhash;
826
827 p = frame;
828 /*
829 * Find the next leaf page by incrementing the frame pointer.
830 * If we run out of entries in the interior node, loop around and
831 * increment pointer in the parent node. When we break out of
832 * this loop, num_frames indicates the number of interior
833 * nodes need to be read.
834 */
835 while (1) {
836 if (++(p->at) < p->entries + dx_get_count(p->entries))
837 break;
838 if (p == frames)
839 return 0;
840 num_frames++;
841 p--;
842 }
843
844 /*
845 * If the hash is 1, then continue only if the next page has a
846 * continuation hash of any value. This is used for readdir
847 * handling. Otherwise, check to see if the hash matches the
848 * desired contiuation hash. If it doesn't, return since
849 * there's no point to read in the successive index pages.
850 */
851 bhash = dx_get_hash(p->at);
852 if (start_hash)
853 *start_hash = bhash;
854 if ((hash & 1) == 0) {
855 if ((bhash & ~1) != hash)
856 return 0;
857 }
858 /*
859 * If the hash is HASH_NB_ALWAYS, we always go to the next
860 * block so no check is necessary
861 */
862 while (num_frames--) {
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500863 bh = ext4_read_dirblock(dir, dx_get_block(p->at), INDEX);
864 if (IS_ERR(bh))
865 return PTR_ERR(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700866 p++;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400867 brelse(p->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700868 p->bh = bh;
869 p->at = p->entries = ((struct dx_node *) bh->b_data)->entries;
870 }
871 return 1;
872}
873
874
875/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700876 * This function fills a red-black tree with information from a
877 * directory block. It returns the number directory entries loaded
878 * into the tree. If there is an error it is returned in err.
879 */
880static int htree_dirblock_to_tree(struct file *dir_file,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500881 struct inode *dir, ext4_lblk_t block,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700882 struct dx_hash_info *hinfo,
883 __u32 start_hash, __u32 start_minor_hash)
884{
885 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -0700886 struct ext4_dir_entry_2 *de, *top;
Carlos Maiolino90b0a972012-09-17 23:39:12 -0400887 int err = 0, count = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700888
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500889 dxtrace(printk(KERN_INFO "In htree dirblock_to_tree: block %lu\n",
890 (unsigned long)block));
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500891 bh = ext4_read_dirblock(dir, block, DIRENT);
892 if (IS_ERR(bh))
893 return PTR_ERR(bh);
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400894
Mingming Cao617ba132006-10-11 01:20:53 -0700895 de = (struct ext4_dir_entry_2 *) bh->b_data;
896 top = (struct ext4_dir_entry_2 *) ((char *) de +
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700897 dir->i_sb->s_blocksize -
Mingming Cao617ba132006-10-11 01:20:53 -0700898 EXT4_DIR_REC_LEN(0));
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500899 for (; de < top; de = ext4_next_entry(de, dir->i_sb->s_blocksize)) {
Theodore Ts'of7c21172011-01-10 12:10:55 -0500900 if (ext4_check_dir_entry(dir, NULL, de, bh,
Tao Ma226ba972012-12-10 14:05:58 -0500901 bh->b_data, bh->b_size,
Theodore Ts'ocad3f002010-12-19 22:07:02 -0500902 (block<<EXT4_BLOCK_SIZE_BITS(dir->i_sb))
903 + ((char *)de - bh->b_data))) {
Al Viro64cb9272013-07-01 08:12:38 -0400904 /* silently ignore the rest of the block */
905 break;
Eric Sandeene6c40212006-12-06 20:36:28 -0800906 }
Mingming Cao617ba132006-10-11 01:20:53 -0700907 ext4fs_dirhash(de->name, de->name_len, hinfo);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700908 if ((hinfo->hash < start_hash) ||
909 ((hinfo->hash == start_hash) &&
910 (hinfo->minor_hash < start_minor_hash)))
911 continue;
912 if (de->inode == 0)
913 continue;
Mingming Cao617ba132006-10-11 01:20:53 -0700914 if ((err = ext4_htree_store_dirent(dir_file,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700915 hinfo->hash, hinfo->minor_hash, de)) != 0) {
916 brelse(bh);
917 return err;
918 }
919 count++;
920 }
921 brelse(bh);
922 return count;
923}
924
925
926/*
927 * This function fills a red-black tree with information from a
928 * directory. We start scanning the directory in hash order, starting
929 * at start_hash and start_minor_hash.
930 *
931 * This function returns the number of entries inserted into the tree,
932 * or a negative error code.
933 */
Mingming Cao617ba132006-10-11 01:20:53 -0700934int ext4_htree_fill_tree(struct file *dir_file, __u32 start_hash,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700935 __u32 start_minor_hash, __u32 *next_hash)
936{
937 struct dx_hash_info hinfo;
Mingming Cao617ba132006-10-11 01:20:53 -0700938 struct ext4_dir_entry_2 *de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700939 struct dx_frame frames[2], *frame;
940 struct inode *dir;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500941 ext4_lblk_t block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700942 int count = 0;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500943 int ret, err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700944 __u32 hashval;
945
Theodore Ts'o60e66792010-05-17 07:00:00 -0400946 dxtrace(printk(KERN_DEBUG "In htree_fill_tree, start hash: %x:%x\n",
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400947 start_hash, start_minor_hash));
Al Viro496ad9a2013-01-23 17:07:38 -0500948 dir = file_inode(dir_file);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400949 if (!(ext4_test_inode_flag(dir, EXT4_INODE_INDEX))) {
Mingming Cao617ba132006-10-11 01:20:53 -0700950 hinfo.hash_version = EXT4_SB(dir->i_sb)->s_def_hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -0400951 if (hinfo.hash_version <= DX_HASH_TEA)
952 hinfo.hash_version +=
953 EXT4_SB(dir->i_sb)->s_hash_unsigned;
Mingming Cao617ba132006-10-11 01:20:53 -0700954 hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed;
Tao Ma8af0f082013-04-19 17:53:09 -0400955 if (ext4_has_inline_data(dir)) {
956 int has_inline_data = 1;
957 count = htree_inlinedir_to_tree(dir_file, dir, 0,
958 &hinfo, start_hash,
959 start_minor_hash,
960 &has_inline_data);
961 if (has_inline_data) {
962 *next_hash = ~0;
963 return count;
964 }
965 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700966 count = htree_dirblock_to_tree(dir_file, dir, 0, &hinfo,
967 start_hash, start_minor_hash);
968 *next_hash = ~0;
969 return count;
970 }
971 hinfo.hash = start_hash;
972 hinfo.minor_hash = 0;
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400973 frame = dx_probe(NULL, dir, &hinfo, frames);
974 if (IS_ERR(frame))
975 return PTR_ERR(frame);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700976
977 /* Add '.' and '..' from the htree header */
978 if (!start_hash && !start_minor_hash) {
Mingming Cao617ba132006-10-11 01:20:53 -0700979 de = (struct ext4_dir_entry_2 *) frames[0].bh->b_data;
980 if ((err = ext4_htree_store_dirent(dir_file, 0, 0, de)) != 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700981 goto errout;
982 count++;
983 }
984 if (start_hash < 2 || (start_hash ==2 && start_minor_hash==0)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700985 de = (struct ext4_dir_entry_2 *) frames[0].bh->b_data;
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500986 de = ext4_next_entry(de, dir->i_sb->s_blocksize);
Mingming Cao617ba132006-10-11 01:20:53 -0700987 if ((err = ext4_htree_store_dirent(dir_file, 2, 0, de)) != 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700988 goto errout;
989 count++;
990 }
991
992 while (1) {
993 block = dx_get_block(frame->at);
994 ret = htree_dirblock_to_tree(dir_file, dir, block, &hinfo,
995 start_hash, start_minor_hash);
996 if (ret < 0) {
997 err = ret;
998 goto errout;
999 }
1000 count += ret;
1001 hashval = ~0;
Mingming Cao617ba132006-10-11 01:20:53 -07001002 ret = ext4_htree_next_block(dir, HASH_NB_ALWAYS,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001003 frame, frames, &hashval);
1004 *next_hash = hashval;
1005 if (ret < 0) {
1006 err = ret;
1007 goto errout;
1008 }
1009 /*
1010 * Stop if: (a) there are no more entries, or
1011 * (b) we have inserted at least one entry and the
1012 * next hash value is not a continuation
1013 */
1014 if ((ret == 0) ||
1015 (count && ((hashval & 1) == 0)))
1016 break;
1017 }
1018 dx_release(frames);
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001019 dxtrace(printk(KERN_DEBUG "Fill tree: returned %d entries, "
1020 "next hash: %x\n", count, *next_hash));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001021 return count;
1022errout:
1023 dx_release(frames);
1024 return (err);
1025}
1026
Tao Ma7335cd32012-12-10 14:05:59 -05001027static inline int search_dirblock(struct buffer_head *bh,
1028 struct inode *dir,
1029 const struct qstr *d_name,
1030 unsigned int offset,
1031 struct ext4_dir_entry_2 **res_dir)
1032{
1033 return search_dir(bh, bh->b_data, dir->i_sb->s_blocksize, dir,
1034 d_name, offset, res_dir);
1035}
1036
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001037/*
1038 * Directory block splitting, compacting
1039 */
1040
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001041/*
1042 * Create map of hash values, offsets, and sizes, stored at end of block.
1043 * Returns number of entries mapped.
1044 */
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001045static int dx_make_map(struct ext4_dir_entry_2 *de, unsigned blocksize,
1046 struct dx_hash_info *hinfo,
1047 struct dx_map_entry *map_tail)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001048{
1049 int count = 0;
1050 char *base = (char *) de;
1051 struct dx_hash_info h = *hinfo;
1052
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001053 while ((char *) de < base + blocksize) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001054 if (de->name_len && de->inode) {
Mingming Cao617ba132006-10-11 01:20:53 -07001055 ext4fs_dirhash(de->name, de->name_len, &h);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001056 map_tail--;
1057 map_tail->hash = h.hash;
Toshiyuki Okajima9aee2282009-06-08 12:41:35 -04001058 map_tail->offs = ((char *) de - base)>>2;
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001059 map_tail->size = le16_to_cpu(de->rec_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001060 count++;
1061 cond_resched();
1062 }
1063 /* XXX: do we need to check rec_len == 0 case? -Chris */
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001064 de = ext4_next_entry(de, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001065 }
1066 return count;
1067}
1068
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001069/* Sort map by hash value */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001070static void dx_sort_map (struct dx_map_entry *map, unsigned count)
1071{
Andrew Morton63f57932006-10-11 01:21:24 -07001072 struct dx_map_entry *p, *q, *top = map + count - 1;
1073 int more;
1074 /* Combsort until bubble sort doesn't suck */
1075 while (count > 2) {
1076 count = count*10/13;
1077 if (count - 9 < 2) /* 9, 10 -> 11 */
1078 count = 11;
1079 for (p = top, q = p - count; q >= map; p--, q--)
1080 if (p->hash < q->hash)
1081 swap(*p, *q);
1082 }
1083 /* Garden variety bubble sort */
1084 do {
1085 more = 0;
1086 q = top;
1087 while (q-- > map) {
1088 if (q[1].hash >= q[0].hash)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001089 continue;
Andrew Morton63f57932006-10-11 01:21:24 -07001090 swap(*(q+1), *q);
1091 more = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001092 }
1093 } while(more);
1094}
1095
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001096static void dx_insert_block(struct dx_frame *frame, u32 hash, ext4_lblk_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001097{
1098 struct dx_entry *entries = frame->entries;
1099 struct dx_entry *old = frame->at, *new = old + 1;
1100 int count = dx_get_count(entries);
1101
1102 assert(count < dx_get_limit(entries));
1103 assert(old < entries + count);
1104 memmove(new + 1, new, (char *)(entries + count) - (char *)(new));
1105 dx_set_hash(new, hash);
1106 dx_set_block(new, block);
1107 dx_set_count(entries, count + 1);
1108}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001109
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001110/*
Mingming Cao617ba132006-10-11 01:20:53 -07001111 * NOTE! unlike strncmp, ext4_match returns 1 for success, 0 for failure.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001112 *
Mingming Cao617ba132006-10-11 01:20:53 -07001113 * `len <= EXT4_NAME_LEN' is guaranteed by caller.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001114 * `de != NULL' is guaranteed by caller.
1115 */
Mingming Cao617ba132006-10-11 01:20:53 -07001116static inline int ext4_match (int len, const char * const name,
1117 struct ext4_dir_entry_2 * de)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001118{
1119 if (len != de->name_len)
1120 return 0;
1121 if (!de->inode)
1122 return 0;
1123 return !memcmp(name, de->name, len);
1124}
1125
1126/*
1127 * Returns 0 if not found, -1 on failure, and 1 on success
1128 */
Tao Ma7335cd32012-12-10 14:05:59 -05001129int search_dir(struct buffer_head *bh,
1130 char *search_buf,
1131 int buf_size,
1132 struct inode *dir,
1133 const struct qstr *d_name,
1134 unsigned int offset,
1135 struct ext4_dir_entry_2 **res_dir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001136{
Mingming Cao617ba132006-10-11 01:20:53 -07001137 struct ext4_dir_entry_2 * de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001138 char * dlimit;
1139 int de_len;
Theodore Ts'of702ba02008-09-22 15:21:01 -04001140 const char *name = d_name->name;
1141 int namelen = d_name->len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001142
Tao Ma7335cd32012-12-10 14:05:59 -05001143 de = (struct ext4_dir_entry_2 *)search_buf;
1144 dlimit = search_buf + buf_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001145 while ((char *) de < dlimit) {
1146 /* this code is executed quadratically often */
1147 /* do minimal checking `by hand' */
1148
1149 if ((char *) de + namelen <= dlimit &&
Mingming Cao617ba132006-10-11 01:20:53 -07001150 ext4_match (namelen, name, de)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001151 /* found a match - just to be sure, do a full check */
Tao Ma226ba972012-12-10 14:05:58 -05001152 if (ext4_check_dir_entry(dir, NULL, de, bh, bh->b_data,
1153 bh->b_size, offset))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001154 return -1;
1155 *res_dir = de;
1156 return 1;
1157 }
1158 /* prevent looping on a bad block */
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001159 de_len = ext4_rec_len_from_disk(de->rec_len,
1160 dir->i_sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001161 if (de_len <= 0)
1162 return -1;
1163 offset += de_len;
Mingming Cao617ba132006-10-11 01:20:53 -07001164 de = (struct ext4_dir_entry_2 *) ((char *) de + de_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001165 }
1166 return 0;
1167}
1168
Darrick J. Wongc6af8802012-11-12 23:51:02 -05001169static int is_dx_internal_node(struct inode *dir, ext4_lblk_t block,
1170 struct ext4_dir_entry *de)
1171{
1172 struct super_block *sb = dir->i_sb;
1173
1174 if (!is_dx(dir))
1175 return 0;
1176 if (block == 0)
1177 return 1;
1178 if (de->inode == 0 &&
1179 ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize) ==
1180 sb->s_blocksize)
1181 return 1;
1182 return 0;
1183}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001184
1185/*
Mingming Cao617ba132006-10-11 01:20:53 -07001186 * ext4_find_entry()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001187 *
1188 * finds an entry in the specified directory with the wanted name. It
1189 * returns the cache buffer in which the entry was found, and the entry
1190 * itself (as a parameter - res_dir). It does NOT read the inode of the
1191 * entry - you'll have to do that yourself if you want to.
1192 *
1193 * The returned buffer_head has ->b_count elevated. The caller is expected
1194 * to brelse() it when appropriate.
1195 */
Theodore Ts'of702ba02008-09-22 15:21:01 -04001196static struct buffer_head * ext4_find_entry (struct inode *dir,
1197 const struct qstr *d_name,
Tao Ma32f7f222012-12-10 14:06:01 -05001198 struct ext4_dir_entry_2 **res_dir,
1199 int *inlined)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001200{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001201 struct super_block *sb;
1202 struct buffer_head *bh_use[NAMEI_RA_SIZE];
1203 struct buffer_head *bh, *ret = NULL;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001204 ext4_lblk_t start, block, b;
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001205 const u8 *name = d_name->name;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001206 int ra_max = 0; /* Number of bh's in the readahead
1207 buffer, bh_use[] */
1208 int ra_ptr = 0; /* Current index into readahead
1209 buffer */
1210 int num = 0;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001211 ext4_lblk_t nblocks;
Theodore Ts'o10560082014-08-29 20:51:32 -04001212 int i, namelen;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001213
1214 *res_dir = NULL;
1215 sb = dir->i_sb;
Theodore Ts'of702ba02008-09-22 15:21:01 -04001216 namelen = d_name->len;
Mingming Cao617ba132006-10-11 01:20:53 -07001217 if (namelen > EXT4_NAME_LEN)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001218 return NULL;
Tao Mae8e948e2012-12-10 14:06:00 -05001219
1220 if (ext4_has_inline_data(dir)) {
1221 int has_inline_data = 1;
1222 ret = ext4_find_inline_entry(dir, d_name, res_dir,
1223 &has_inline_data);
Tao Ma32f7f222012-12-10 14:06:01 -05001224 if (has_inline_data) {
1225 if (inlined)
1226 *inlined = 1;
Tao Mae8e948e2012-12-10 14:06:00 -05001227 return ret;
Tao Ma32f7f222012-12-10 14:06:01 -05001228 }
Tao Mae8e948e2012-12-10 14:06:00 -05001229 }
1230
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001231 if ((namelen <= 2) && (name[0] == '.') &&
Aaro Koskinen6d5c3aa2010-12-14 21:45:31 -05001232 (name[1] == '.' || name[1] == '\0')) {
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001233 /*
1234 * "." or ".." will only be in the first block
1235 * NFS may look up ".."; "." should be handled by the VFS
1236 */
1237 block = start = 0;
1238 nblocks = 1;
1239 goto restart;
1240 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001241 if (is_dx(dir)) {
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001242 bh = ext4_dx_find_entry(dir, d_name, res_dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001243 /*
1244 * On success, or if the error was file not found,
1245 * return. Otherwise, fall back to doing a search the
1246 * old fashioned way.
1247 */
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001248 if (!IS_ERR(bh) || PTR_ERR(bh) != ERR_BAD_DX_DIR)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001249 return bh;
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001250 dxtrace(printk(KERN_DEBUG "ext4_find_entry: dx failed, "
1251 "falling back\n"));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001252 }
Mingming Cao617ba132006-10-11 01:20:53 -07001253 nblocks = dir->i_size >> EXT4_BLOCK_SIZE_BITS(sb);
1254 start = EXT4_I(dir)->i_dir_start_lookup;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001255 if (start >= nblocks)
1256 start = 0;
1257 block = start;
1258restart:
1259 do {
1260 /*
1261 * We deal with the read-ahead logic here.
1262 */
1263 if (ra_ptr >= ra_max) {
1264 /* Refill the readahead buffer */
1265 ra_ptr = 0;
1266 b = block;
1267 for (ra_max = 0; ra_max < NAMEI_RA_SIZE; ra_max++) {
1268 /*
1269 * Terminate if we reach the end of the
1270 * directory and must wrap, or if our
1271 * search has finished at this block.
1272 */
1273 if (b >= nblocks || (num && block == start)) {
1274 bh_use[ra_max] = NULL;
1275 break;
1276 }
1277 num++;
Theodore Ts'o10560082014-08-29 20:51:32 -04001278 bh = ext4_getblk(NULL, dir, b++, 0);
1279 if (unlikely(IS_ERR(bh))) {
Theodore Ts'o36de9282014-08-23 17:47:19 -04001280 if (ra_max == 0)
Theodore Ts'o10560082014-08-29 20:51:32 -04001281 return bh;
Theodore Ts'o36de9282014-08-23 17:47:19 -04001282 break;
1283 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001284 bh_use[ra_max] = bh;
1285 if (bh)
Christoph Hellwig65299a32011-08-23 14:50:29 +02001286 ll_rw_block(READ | REQ_META | REQ_PRIO,
1287 1, &bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001288 }
1289 }
1290 if ((bh = bh_use[ra_ptr++]) == NULL)
1291 goto next;
1292 wait_on_buffer(bh);
1293 if (!buffer_uptodate(bh)) {
1294 /* read error, skip block & hope for the best */
Theodore Ts'o24676da2010-05-16 21:00:00 -04001295 EXT4_ERROR_INODE(dir, "reading directory lblock %lu",
1296 (unsigned long) block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001297 brelse(bh);
1298 goto next;
1299 }
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001300 if (!buffer_verified(bh) &&
Darrick J. Wongc6af8802012-11-12 23:51:02 -05001301 !is_dx_internal_node(dir, block,
1302 (struct ext4_dir_entry *)bh->b_data) &&
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001303 !ext4_dirent_csum_verify(dir,
1304 (struct ext4_dir_entry *)bh->b_data)) {
1305 EXT4_ERROR_INODE(dir, "checksumming directory "
1306 "block %lu", (unsigned long)block);
1307 brelse(bh);
1308 goto next;
1309 }
1310 set_buffer_verified(bh);
Theodore Ts'of702ba02008-09-22 15:21:01 -04001311 i = search_dirblock(bh, dir, d_name,
Mingming Cao617ba132006-10-11 01:20:53 -07001312 block << EXT4_BLOCK_SIZE_BITS(sb), res_dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001313 if (i == 1) {
Mingming Cao617ba132006-10-11 01:20:53 -07001314 EXT4_I(dir)->i_dir_start_lookup = block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001315 ret = bh;
1316 goto cleanup_and_exit;
1317 } else {
1318 brelse(bh);
1319 if (i < 0)
1320 goto cleanup_and_exit;
1321 }
1322 next:
1323 if (++block >= nblocks)
1324 block = 0;
1325 } while (block != start);
1326
1327 /*
1328 * If the directory has grown while we were searching, then
1329 * search the last part of the directory before giving up.
1330 */
1331 block = nblocks;
Mingming Cao617ba132006-10-11 01:20:53 -07001332 nblocks = dir->i_size >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001333 if (block < nblocks) {
1334 start = 0;
1335 goto restart;
1336 }
1337
1338cleanup_and_exit:
1339 /* Clean up the read-ahead blocks */
1340 for (; ra_ptr < ra_max; ra_ptr++)
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001341 brelse(bh_use[ra_ptr]);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001342 return ret;
1343}
1344
Theodore Ts'of702ba02008-09-22 15:21:01 -04001345static struct buffer_head * ext4_dx_find_entry(struct inode *dir, const struct qstr *d_name,
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001346 struct ext4_dir_entry_2 **res_dir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001347{
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001348 struct super_block * sb = dir->i_sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001349 struct dx_hash_info hinfo;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001350 struct dx_frame frames[2], *frame;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001351 struct buffer_head *bh;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001352 ext4_lblk_t block;
Theodore Ts'odd73b5d2014-08-29 20:52:17 -04001353 int retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001354
Theodore Ts'odd73b5d2014-08-29 20:52:17 -04001355 frame = dx_probe(d_name, dir, &hinfo, frames);
1356 if (IS_ERR(frame))
1357 return (struct buffer_head *) frame;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001358 do {
1359 block = dx_get_block(frame->at);
Theodore Ts'odc6982f2013-02-14 23:59:26 -05001360 bh = ext4_read_dirblock(dir, block, DIRENT);
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001361 if (IS_ERR(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001362 goto errout;
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001363
Theodore Ts'o7845c042010-10-27 21:30:08 -04001364 retval = search_dirblock(bh, dir, d_name,
1365 block << EXT4_BLOCK_SIZE_BITS(sb),
1366 res_dir);
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001367 if (retval == 1)
1368 goto success;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001369 brelse(bh);
Theodore Ts'o7845c042010-10-27 21:30:08 -04001370 if (retval == -1) {
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001371 bh = ERR_PTR(ERR_BAD_DX_DIR);
Theodore Ts'o7845c042010-10-27 21:30:08 -04001372 goto errout;
1373 }
1374
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001375 /* Check to see if we should continue to search */
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001376 retval = ext4_htree_next_block(dir, hinfo.hash, frame,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001377 frames, NULL);
1378 if (retval < 0) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05001379 ext4_warning(sb,
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001380 "error %d reading index page in directory #%lu",
1381 retval, dir->i_ino);
1382 bh = ERR_PTR(retval);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001383 goto errout;
1384 }
1385 } while (retval == 1);
1386
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001387 bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001388errout:
Bernd Schubert265c6a02011-07-16 19:41:23 -04001389 dxtrace(printk(KERN_DEBUG "%s not found\n", d_name->name));
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001390success:
1391 dx_release(frames);
1392 return bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001393}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001394
Al Viro00cd8dd2012-06-10 17:13:09 -04001395static struct dentry *ext4_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001396{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001397 struct inode *inode;
1398 struct ext4_dir_entry_2 *de;
1399 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001400
Mingming Cao617ba132006-10-11 01:20:53 -07001401 if (dentry->d_name.len > EXT4_NAME_LEN)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001402 return ERR_PTR(-ENAMETOOLONG);
1403
Tao Ma32f7f222012-12-10 14:06:01 -05001404 bh = ext4_find_entry(dir, &dentry->d_name, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04001405 if (IS_ERR(bh))
1406 return (struct dentry *) bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001407 inode = NULL;
1408 if (bh) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001409 __u32 ino = le32_to_cpu(de->inode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001410 brelse(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07001411 if (!ext4_valid_inum(dir->i_sb, ino)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001412 EXT4_ERROR_INODE(dir, "bad inode number: %u", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -08001413 return ERR_PTR(-EIO);
Vasily Averina6c15c22007-07-15 23:40:46 -07001414 }
Andreas Dilger7e936b72012-05-28 17:02:25 -04001415 if (unlikely(ino == dir->i_ino)) {
David Howellsa34e15c2014-01-06 14:04:23 -05001416 EXT4_ERROR_INODE(dir, "'%pd' linked to parent dir",
1417 dentry);
Andreas Dilger7e936b72012-05-28 17:02:25 -04001418 return ERR_PTR(-EIO);
1419 }
David Howells1d1fe1e2008-02-07 00:15:37 -08001420 inode = ext4_iget(dir->i_sb, ino);
Al Viroa9049372011-07-08 21:20:11 -04001421 if (inode == ERR_PTR(-ESTALE)) {
1422 EXT4_ERROR_INODE(dir,
1423 "deleted inode referenced: %u",
1424 ino);
1425 return ERR_PTR(-EIO);
Bryan Donlane6f009b2009-02-22 21:20:25 -05001426 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001427 }
1428 return d_splice_alias(inode, dentry);
1429}
1430
1431
Mingming Cao617ba132006-10-11 01:20:53 -07001432struct dentry *ext4_get_parent(struct dentry *child)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001433{
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001434 __u32 ino;
Linus Torvalds26fe5752012-05-10 13:14:12 -07001435 static const struct qstr dotdot = QSTR_INIT("..", 2);
Mingming Cao617ba132006-10-11 01:20:53 -07001436 struct ext4_dir_entry_2 * de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001437 struct buffer_head *bh;
1438
Tao Ma32f7f222012-12-10 14:06:01 -05001439 bh = ext4_find_entry(child->d_inode, &dotdot, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04001440 if (IS_ERR(bh))
1441 return (struct dentry *) bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001442 if (!bh)
1443 return ERR_PTR(-ENOENT);
1444 ino = le32_to_cpu(de->inode);
1445 brelse(bh);
1446
Mingming Cao617ba132006-10-11 01:20:53 -07001447 if (!ext4_valid_inum(child->d_inode->i_sb, ino)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001448 EXT4_ERROR_INODE(child->d_inode,
1449 "bad parent inode number: %u", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -08001450 return ERR_PTR(-EIO);
Vasily Averina6c15c22007-07-15 23:40:46 -07001451 }
1452
Christoph Hellwig44003722008-08-11 15:49:04 +02001453 return d_obtain_alias(ext4_iget(child->d_inode->i_sb, ino));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001454}
1455
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001456/*
1457 * Move count entries from end of map between two memory locations.
1458 * Returns pointer to last entry moved.
1459 */
Mingming Cao617ba132006-10-11 01:20:53 -07001460static struct ext4_dir_entry_2 *
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001461dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count,
1462 unsigned blocksize)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001463{
1464 unsigned rec_len = 0;
1465
1466 while (count--) {
Theodore Ts'o60e66792010-05-17 07:00:00 -04001467 struct ext4_dir_entry_2 *de = (struct ext4_dir_entry_2 *)
Toshiyuki Okajima9aee2282009-06-08 12:41:35 -04001468 (from + (map->offs<<2));
Mingming Cao617ba132006-10-11 01:20:53 -07001469 rec_len = EXT4_DIR_REC_LEN(de->name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001470 memcpy (to, de, rec_len);
Mingming Cao617ba132006-10-11 01:20:53 -07001471 ((struct ext4_dir_entry_2 *) to)->rec_len =
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001472 ext4_rec_len_to_disk(rec_len, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001473 de->inode = 0;
1474 map++;
1475 to += rec_len;
1476 }
Mingming Cao617ba132006-10-11 01:20:53 -07001477 return (struct ext4_dir_entry_2 *) (to - rec_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001478}
1479
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001480/*
1481 * Compact each dir entry in the range to the minimal rec_len.
1482 * Returns pointer to last entry in range.
1483 */
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001484static struct ext4_dir_entry_2* dx_pack_dirents(char *base, unsigned blocksize)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001485{
Mingming Cao617ba132006-10-11 01:20:53 -07001486 struct ext4_dir_entry_2 *next, *to, *prev, *de = (struct ext4_dir_entry_2 *) base;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001487 unsigned rec_len = 0;
1488
1489 prev = to = de;
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001490 while ((char*)de < base + blocksize) {
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001491 next = ext4_next_entry(de, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001492 if (de->inode && de->name_len) {
Mingming Cao617ba132006-10-11 01:20:53 -07001493 rec_len = EXT4_DIR_REC_LEN(de->name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001494 if (de > to)
1495 memmove(to, de, rec_len);
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001496 to->rec_len = ext4_rec_len_to_disk(rec_len, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001497 prev = to;
Mingming Cao617ba132006-10-11 01:20:53 -07001498 to = (struct ext4_dir_entry_2 *) (((char *) to) + rec_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001499 }
1500 de = next;
1501 }
1502 return prev;
1503}
1504
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001505/*
1506 * Split a full leaf block to make room for a new dir entry.
1507 * Allocate a new block, and move entries so that they are approx. equally full.
1508 * Returns pointer to de in block into which the new entry will be inserted.
1509 */
Mingming Cao617ba132006-10-11 01:20:53 -07001510static struct ext4_dir_entry_2 *do_split(handle_t *handle, struct inode *dir,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001511 struct buffer_head **bh,struct dx_frame *frame,
1512 struct dx_hash_info *hinfo, int *error)
1513{
1514 unsigned blocksize = dir->i_sb->s_blocksize;
1515 unsigned count, continued;
1516 struct buffer_head *bh2;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001517 ext4_lblk_t newblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001518 u32 hash2;
1519 struct dx_map_entry *map;
1520 char *data1 = (*bh)->b_data, *data2;
Theodore Ts'o59e315b2008-12-06 16:58:39 -05001521 unsigned split, move, size;
Mingming Cao617ba132006-10-11 01:20:53 -07001522 struct ext4_dir_entry_2 *de = NULL, *de2;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001523 struct ext4_dir_entry_tail *t;
1524 int csum_size = 0;
Theodore Ts'o59e315b2008-12-06 16:58:39 -05001525 int err = 0, i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001526
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001527 if (EXT4_HAS_RO_COMPAT_FEATURE(dir->i_sb,
1528 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
1529 csum_size = sizeof(struct ext4_dir_entry_tail);
1530
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001531 bh2 = ext4_append(handle, dir, &newblock);
1532 if (IS_ERR(bh2)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001533 brelse(*bh);
1534 *bh = NULL;
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001535 *error = PTR_ERR(bh2);
1536 return NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001537 }
1538
1539 BUFFER_TRACE(*bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001540 err = ext4_journal_get_write_access(handle, *bh);
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001541 if (err)
1542 goto journal_error;
1543
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001544 BUFFER_TRACE(frame->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001545 err = ext4_journal_get_write_access(handle, frame->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001546 if (err)
1547 goto journal_error;
1548
1549 data2 = bh2->b_data;
1550
1551 /* create map in the end of data2 block */
1552 map = (struct dx_map_entry *) (data2 + blocksize);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001553 count = dx_make_map((struct ext4_dir_entry_2 *) data1,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001554 blocksize, hinfo, map);
1555 map -= count;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001556 dx_sort_map(map, count);
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001557 /* Split the existing block in the middle, size-wise */
1558 size = 0;
1559 move = 0;
1560 for (i = count-1; i >= 0; i--) {
1561 /* is more than half of this entry in 2nd half of the block? */
1562 if (size + map[i].size/2 > blocksize/2)
1563 break;
1564 size += map[i].size;
1565 move++;
1566 }
1567 /* map index at which we will split */
1568 split = count - move;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001569 hash2 = map[split].hash;
1570 continued = hash2 == map[split - 1].hash;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001571 dxtrace(printk(KERN_INFO "Split block %lu at %x, %i/%i\n",
1572 (unsigned long)dx_get_block(frame->at),
1573 hash2, split, count-split));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001574
1575 /* Fancy dance to stay within two buffers */
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001576 de2 = dx_move_dirents(data1, data2, map + split, count - split, blocksize);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001577 de = dx_pack_dirents(data1, blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001578 de->rec_len = ext4_rec_len_to_disk(data1 + (blocksize - csum_size) -
1579 (char *) de,
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001580 blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001581 de2->rec_len = ext4_rec_len_to_disk(data2 + (blocksize - csum_size) -
1582 (char *) de2,
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001583 blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001584 if (csum_size) {
1585 t = EXT4_DIRENT_TAIL(data2, blocksize);
1586 initialize_dirent_tail(t, blocksize);
1587
1588 t = EXT4_DIRENT_TAIL(data1, blocksize);
1589 initialize_dirent_tail(t, blocksize);
1590 }
1591
Mingming Cao617ba132006-10-11 01:20:53 -07001592 dxtrace(dx_show_leaf (hinfo, (struct ext4_dir_entry_2 *) data1, blocksize, 1));
1593 dxtrace(dx_show_leaf (hinfo, (struct ext4_dir_entry_2 *) data2, blocksize, 1));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001594
1595 /* Which block gets the new entry? */
1596 if (hinfo->hash >= hash2)
1597 {
1598 swap(*bh, bh2);
1599 de = de2;
1600 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001601 dx_insert_block(frame, hash2 + continued, newblock);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001602 err = ext4_handle_dirty_dirent_node(handle, dir, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001603 if (err)
1604 goto journal_error;
Darrick J. Wongdbe89442012-04-29 18:39:10 -04001605 err = ext4_handle_dirty_dx_node(handle, dir, frame->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001606 if (err)
1607 goto journal_error;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001608 brelse(bh2);
1609 dxtrace(dx_show_index("frame", frame->entries));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001610 return de;
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001611
1612journal_error:
1613 brelse(*bh);
1614 brelse(bh2);
1615 *bh = NULL;
1616 ext4_std_error(dir->i_sb, err);
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001617 *error = err;
1618 return NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001619}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001620
Tao Ma978fef92012-12-10 14:05:58 -05001621int ext4_find_dest_de(struct inode *dir, struct inode *inode,
1622 struct buffer_head *bh,
1623 void *buf, int buf_size,
1624 const char *name, int namelen,
1625 struct ext4_dir_entry_2 **dest_de)
1626{
1627 struct ext4_dir_entry_2 *de;
1628 unsigned short reclen = EXT4_DIR_REC_LEN(namelen);
1629 int nlen, rlen;
1630 unsigned int offset = 0;
1631 char *top;
1632
1633 de = (struct ext4_dir_entry_2 *)buf;
1634 top = buf + buf_size - reclen;
1635 while ((char *) de <= top) {
1636 if (ext4_check_dir_entry(dir, NULL, de, bh,
1637 buf, buf_size, offset))
1638 return -EIO;
1639 if (ext4_match(namelen, name, de))
1640 return -EEXIST;
1641 nlen = EXT4_DIR_REC_LEN(de->name_len);
1642 rlen = ext4_rec_len_from_disk(de->rec_len, buf_size);
1643 if ((de->inode ? rlen - nlen : rlen) >= reclen)
1644 break;
1645 de = (struct ext4_dir_entry_2 *)((char *)de + rlen);
1646 offset += rlen;
1647 }
1648 if ((char *) de > top)
1649 return -ENOSPC;
1650
1651 *dest_de = de;
1652 return 0;
1653}
1654
1655void ext4_insert_dentry(struct inode *inode,
1656 struct ext4_dir_entry_2 *de,
1657 int buf_size,
1658 const char *name, int namelen)
1659{
1660
1661 int nlen, rlen;
1662
1663 nlen = EXT4_DIR_REC_LEN(de->name_len);
1664 rlen = ext4_rec_len_from_disk(de->rec_len, buf_size);
1665 if (de->inode) {
1666 struct ext4_dir_entry_2 *de1 =
1667 (struct ext4_dir_entry_2 *)((char *)de + nlen);
1668 de1->rec_len = ext4_rec_len_to_disk(rlen - nlen, buf_size);
1669 de->rec_len = ext4_rec_len_to_disk(nlen, buf_size);
1670 de = de1;
1671 }
1672 de->file_type = EXT4_FT_UNKNOWN;
1673 de->inode = cpu_to_le32(inode->i_ino);
1674 ext4_set_de_type(inode->i_sb, de, inode->i_mode);
1675 de->name_len = namelen;
1676 memcpy(de->name, name, namelen);
1677}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001678/*
1679 * Add a new entry into a directory (leaf) block. If de is non-NULL,
1680 * it points to a directory entry which is guaranteed to be large
1681 * enough for new directory entry. If de is NULL, then
1682 * add_dirent_to_buf will attempt search the directory block for
1683 * space. It will return -ENOSPC if no space is available, and -EIO
1684 * and -EEXIST if directory entry already exists.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001685 */
1686static int add_dirent_to_buf(handle_t *handle, struct dentry *dentry,
Mingming Cao617ba132006-10-11 01:20:53 -07001687 struct inode *inode, struct ext4_dir_entry_2 *de,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001688 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001689{
1690 struct inode *dir = dentry->d_parent->d_inode;
1691 const char *name = dentry->d_name.name;
1692 int namelen = dentry->d_name.len;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001693 unsigned int blocksize = dir->i_sb->s_blocksize;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001694 int csum_size = 0;
Tao Ma978fef92012-12-10 14:05:58 -05001695 int err;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001696
1697 if (EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
1698 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
1699 csum_size = sizeof(struct ext4_dir_entry_tail);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001700
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001701 if (!de) {
Tao Ma978fef92012-12-10 14:05:58 -05001702 err = ext4_find_dest_de(dir, inode,
1703 bh, bh->b_data, blocksize - csum_size,
1704 name, namelen, &de);
1705 if (err)
1706 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001707 }
1708 BUFFER_TRACE(bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001709 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001710 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07001711 ext4_std_error(dir->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001712 return err;
1713 }
1714
1715 /* By now the buffer is marked for journaling */
Tao Ma978fef92012-12-10 14:05:58 -05001716 ext4_insert_dentry(inode, de, blocksize, name, namelen);
1717
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001718 /*
1719 * XXX shouldn't update any times until successful
1720 * completion of syscall, but too many callers depend
1721 * on this.
1722 *
1723 * XXX similarly, too many callers depend on
Mingming Cao617ba132006-10-11 01:20:53 -07001724 * ext4_new_inode() setting the times, but error
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001725 * recovery deletes the inode, so the worst that can
1726 * happen is that the times are slightly out of date
1727 * and/or different from the directory change time.
1728 */
Kalpak Shahef7f3832007-07-18 09:15:20 -04001729 dir->i_mtime = dir->i_ctime = ext4_current_time(dir);
Mingming Cao617ba132006-10-11 01:20:53 -07001730 ext4_update_dx_flag(dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001731 dir->i_version++;
Mingming Cao617ba132006-10-11 01:20:53 -07001732 ext4_mark_inode_dirty(handle, dir);
Frank Mayhar03901312009-01-07 00:06:22 -05001733 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001734 err = ext4_handle_dirty_dirent_node(handle, dir, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001735 if (err)
Mingming Cao617ba132006-10-11 01:20:53 -07001736 ext4_std_error(dir->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001737 return 0;
1738}
1739
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001740/*
1741 * This converts a one block unindexed directory to a 3 block indexed
1742 * directory, and adds the dentry to the indexed directory.
1743 */
1744static int make_indexed_dir(handle_t *handle, struct dentry *dentry,
1745 struct inode *inode, struct buffer_head *bh)
1746{
1747 struct inode *dir = dentry->d_parent->d_inode;
1748 const char *name = dentry->d_name.name;
1749 int namelen = dentry->d_name.len;
1750 struct buffer_head *bh2;
1751 struct dx_root *root;
1752 struct dx_frame frames[2], *frame;
1753 struct dx_entry *entries;
Mingming Cao617ba132006-10-11 01:20:53 -07001754 struct ext4_dir_entry_2 *de, *de2;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001755 struct ext4_dir_entry_tail *t;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001756 char *data1, *top;
1757 unsigned len;
1758 int retval;
1759 unsigned blocksize;
1760 struct dx_hash_info hinfo;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001761 ext4_lblk_t block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001762 struct fake_dirent *fde;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001763 int csum_size = 0;
1764
1765 if (EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
1766 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
1767 csum_size = sizeof(struct ext4_dir_entry_tail);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001768
1769 blocksize = dir->i_sb->s_blocksize;
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001770 dxtrace(printk(KERN_DEBUG "Creating index: inode %lu\n", dir->i_ino));
liang xie5d601252014-05-12 22:06:43 -04001771 BUFFER_TRACE(bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001772 retval = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001773 if (retval) {
Mingming Cao617ba132006-10-11 01:20:53 -07001774 ext4_std_error(dir->i_sb, retval);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001775 brelse(bh);
1776 return retval;
1777 }
1778 root = (struct dx_root *) bh->b_data;
1779
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001780 /* The 0th block becomes the root, move the dirents out */
1781 fde = &root->dotdot;
1782 de = (struct ext4_dir_entry_2 *)((char *)fde +
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001783 ext4_rec_len_from_disk(fde->rec_len, blocksize));
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001784 if ((char *) de >= (((char *) root) + blocksize)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001785 EXT4_ERROR_INODE(dir, "invalid rec_len for '..'");
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001786 brelse(bh);
1787 return -EIO;
1788 }
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001789 len = ((char *) root) + (blocksize - csum_size) - (char *) de;
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001790
1791 /* Allocate new block for the 0th block's dirents */
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001792 bh2 = ext4_append(handle, dir, &block);
1793 if (IS_ERR(bh2)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001794 brelse(bh);
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001795 return PTR_ERR(bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001796 }
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04001797 ext4_set_inode_flag(dir, EXT4_INODE_INDEX);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001798 data1 = bh2->b_data;
1799
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001800 memcpy (data1, de, len);
Mingming Cao617ba132006-10-11 01:20:53 -07001801 de = (struct ext4_dir_entry_2 *) data1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001802 top = data1 + len;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001803 while ((char *)(de2 = ext4_next_entry(de, blocksize)) < top)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001804 de = de2;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001805 de->rec_len = ext4_rec_len_to_disk(data1 + (blocksize - csum_size) -
1806 (char *) de,
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001807 blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001808
1809 if (csum_size) {
1810 t = EXT4_DIRENT_TAIL(data1, blocksize);
1811 initialize_dirent_tail(t, blocksize);
1812 }
1813
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001814 /* Initialize the root; the dot dirents already exist */
Mingming Cao617ba132006-10-11 01:20:53 -07001815 de = (struct ext4_dir_entry_2 *) (&root->dotdot);
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001816 de->rec_len = ext4_rec_len_to_disk(blocksize - EXT4_DIR_REC_LEN(2),
1817 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001818 memset (&root->info, 0, sizeof(root->info));
1819 root->info.info_length = sizeof(root->info);
Mingming Cao617ba132006-10-11 01:20:53 -07001820 root->info.hash_version = EXT4_SB(dir->i_sb)->s_def_hash_version;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001821 entries = root->entries;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001822 dx_set_block(entries, 1);
1823 dx_set_count(entries, 1);
1824 dx_set_limit(entries, dx_root_limit(dir, sizeof(root->info)));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001825
1826 /* Initialize as for dx_probe */
1827 hinfo.hash_version = root->info.hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -04001828 if (hinfo.hash_version <= DX_HASH_TEA)
1829 hinfo.hash_version += EXT4_SB(dir->i_sb)->s_hash_unsigned;
Mingming Cao617ba132006-10-11 01:20:53 -07001830 hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed;
1831 ext4fs_dirhash(name, namelen, &hinfo);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001832 frame = frames;
1833 frame->entries = entries;
1834 frame->at = entries;
1835 frame->bh = bh;
1836 bh = bh2;
Allison Henderson6976a6f2011-05-15 00:19:41 -04001837
Darrick J. Wongdbe89442012-04-29 18:39:10 -04001838 ext4_handle_dirty_dx_node(handle, dir, frame->bh);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001839 ext4_handle_dirty_dirent_node(handle, dir, bh);
Allison Henderson6976a6f2011-05-15 00:19:41 -04001840
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001841 de = do_split(handle,dir, &bh, frame, &hinfo, &retval);
Jan Kara7ad8e4e2011-05-03 11:05:55 -04001842 if (!de) {
1843 /*
1844 * Even if the block split failed, we have to properly write
1845 * out all the changes we did so far. Otherwise we can end up
1846 * with corrupted filesystem.
1847 */
1848 ext4_mark_inode_dirty(handle, dir);
Jan Kara7ad8e4e2011-05-03 11:05:55 -04001849 dx_release(frames);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001850 return retval;
Jan Kara7ad8e4e2011-05-03 11:05:55 -04001851 }
1852 dx_release(frames);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001853
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001854 retval = add_dirent_to_buf(handle, dentry, inode, de, bh);
1855 brelse(bh);
1856 return retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001857}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001858
1859/*
Mingming Cao617ba132006-10-11 01:20:53 -07001860 * ext4_add_entry()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001861 *
1862 * adds a file entry to the specified directory, using the same
Mingming Cao617ba132006-10-11 01:20:53 -07001863 * semantics as ext4_find_entry(). It returns NULL if it failed.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001864 *
1865 * NOTE!! The inode part of 'de' is left at 0 - which means you
1866 * may not sleep between calling this and putting something into
1867 * the entry, as someone else might have used it while you slept.
1868 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001869static int ext4_add_entry(handle_t *handle, struct dentry *dentry,
1870 struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001871{
1872 struct inode *dir = dentry->d_parent->d_inode;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001873 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -07001874 struct ext4_dir_entry_2 *de;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001875 struct ext4_dir_entry_tail *t;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001876 struct super_block *sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001877 int retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001878 int dx_fallback=0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001879 unsigned blocksize;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001880 ext4_lblk_t block, blocks;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001881 int csum_size = 0;
1882
1883 if (EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
1884 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
1885 csum_size = sizeof(struct ext4_dir_entry_tail);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001886
1887 sb = dir->i_sb;
1888 blocksize = sb->s_blocksize;
1889 if (!dentry->d_name.len)
1890 return -EINVAL;
Tao Ma3c47d542012-12-10 14:05:59 -05001891
1892 if (ext4_has_inline_data(dir)) {
1893 retval = ext4_try_add_inline_entry(handle, dentry, inode);
1894 if (retval < 0)
1895 return retval;
1896 if (retval == 1) {
1897 retval = 0;
1898 return retval;
1899 }
1900 }
1901
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001902 if (is_dx(dir)) {
Mingming Cao617ba132006-10-11 01:20:53 -07001903 retval = ext4_dx_add_entry(handle, dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001904 if (!retval || (retval != ERR_BAD_DX_DIR))
1905 return retval;
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04001906 ext4_clear_inode_flag(dir, EXT4_INODE_INDEX);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001907 dx_fallback++;
Mingming Cao617ba132006-10-11 01:20:53 -07001908 ext4_mark_inode_dirty(handle, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001909 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001910 blocks = dir->i_size >> sb->s_blocksize_bits;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001911 for (block = 0; block < blocks; block++) {
Theodore Ts'odc6982f2013-02-14 23:59:26 -05001912 bh = ext4_read_dirblock(dir, block, DIRENT);
1913 if (IS_ERR(bh))
1914 return PTR_ERR(bh);
1915
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001916 retval = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001917 if (retval != -ENOSPC) {
1918 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001919 return retval;
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001920 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001921
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001922 if (blocks == 1 && !dx_fallback &&
Theodore Ts'o1e424a32009-11-08 15:45:44 -05001923 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_DIR_INDEX))
1924 return make_indexed_dir(handle, dentry, inode, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001925 brelse(bh);
1926 }
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001927 bh = ext4_append(handle, dir, &block);
1928 if (IS_ERR(bh))
1929 return PTR_ERR(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07001930 de = (struct ext4_dir_entry_2 *) bh->b_data;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001931 de->inode = 0;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001932 de->rec_len = ext4_rec_len_to_disk(blocksize - csum_size, blocksize);
1933
1934 if (csum_size) {
1935 t = EXT4_DIRENT_TAIL(bh->b_data, blocksize);
1936 initialize_dirent_tail(t, blocksize);
1937 }
1938
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001939 retval = add_dirent_to_buf(handle, dentry, inode, de, bh);
1940 brelse(bh);
Frank Mayhar14ece102010-05-17 08:00:00 -04001941 if (retval == 0)
1942 ext4_set_inode_state(inode, EXT4_STATE_NEWENTRY);
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001943 return retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001944}
1945
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001946/*
1947 * Returns 0 for success, or a negative error value
1948 */
Mingming Cao617ba132006-10-11 01:20:53 -07001949static int ext4_dx_add_entry(handle_t *handle, struct dentry *dentry,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001950 struct inode *inode)
1951{
1952 struct dx_frame frames[2], *frame;
1953 struct dx_entry *entries, *at;
1954 struct dx_hash_info hinfo;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001955 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001956 struct inode *dir = dentry->d_parent->d_inode;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001957 struct super_block *sb = dir->i_sb;
Mingming Cao617ba132006-10-11 01:20:53 -07001958 struct ext4_dir_entry_2 *de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001959 int err;
1960
Theodore Ts'odd73b5d2014-08-29 20:52:17 -04001961 frame = dx_probe(&dentry->d_name, dir, &hinfo, frames);
1962 if (IS_ERR(frame))
1963 return PTR_ERR(frame);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001964 entries = frame->entries;
1965 at = frame->at;
Theodore Ts'odc6982f2013-02-14 23:59:26 -05001966 bh = ext4_read_dirblock(dir, dx_get_block(frame->at), DIRENT);
1967 if (IS_ERR(bh)) {
1968 err = PTR_ERR(bh);
1969 bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001970 goto cleanup;
Carlos Maiolino6d1ab102012-09-27 09:31:33 -04001971 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001972
1973 BUFFER_TRACE(bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001974 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001975 if (err)
1976 goto journal_error;
1977
1978 err = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001979 if (err != -ENOSPC)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001980 goto cleanup;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001981
1982 /* Block full, should compress but for now just split */
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001983 dxtrace(printk(KERN_DEBUG "using %u of %u node entries\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001984 dx_get_count(entries), dx_get_limit(entries)));
1985 /* Need to split index? */
1986 if (dx_get_count(entries) == dx_get_limit(entries)) {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001987 ext4_lblk_t newblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001988 unsigned icount = dx_get_count(entries);
1989 int levels = frame - frames;
1990 struct dx_entry *entries2;
1991 struct dx_node *node2;
1992 struct buffer_head *bh2;
1993
1994 if (levels && (dx_get_count(frames->entries) ==
1995 dx_get_limit(frames->entries))) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05001996 ext4_warning(sb, "Directory index full!");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001997 err = -ENOSPC;
1998 goto cleanup;
1999 }
Theodore Ts'o0f70b402013-02-15 03:35:57 -05002000 bh2 = ext4_append(handle, dir, &newblock);
2001 if (IS_ERR(bh2)) {
2002 err = PTR_ERR(bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002003 goto cleanup;
Theodore Ts'o0f70b402013-02-15 03:35:57 -05002004 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002005 node2 = (struct dx_node *)(bh2->b_data);
2006 entries2 = node2->entries;
Andreas Schlick1f7bebb2009-09-10 23:16:07 -04002007 memset(&node2->fake, 0, sizeof(struct fake_dirent));
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002008 node2->fake.rec_len = ext4_rec_len_to_disk(sb->s_blocksize,
2009 sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002010 BUFFER_TRACE(frame->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07002011 err = ext4_journal_get_write_access(handle, frame->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002012 if (err)
2013 goto journal_error;
2014 if (levels) {
2015 unsigned icount1 = icount/2, icount2 = icount - icount1;
2016 unsigned hash2 = dx_get_hash(entries + icount1);
Theodore Ts'o4776004f2008-09-08 23:00:52 -04002017 dxtrace(printk(KERN_DEBUG "Split index %i/%i\n",
2018 icount1, icount2));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002019
2020 BUFFER_TRACE(frame->bh, "get_write_access"); /* index root */
Mingming Cao617ba132006-10-11 01:20:53 -07002021 err = ext4_journal_get_write_access(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002022 frames[0].bh);
2023 if (err)
2024 goto journal_error;
2025
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002026 memcpy((char *) entries2, (char *) (entries + icount1),
2027 icount2 * sizeof(struct dx_entry));
2028 dx_set_count(entries, icount1);
2029 dx_set_count(entries2, icount2);
2030 dx_set_limit(entries2, dx_node_limit(dir));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002031
2032 /* Which index block gets the new entry? */
2033 if (at - entries >= icount1) {
2034 frame->at = at = at - entries - icount1 + entries2;
2035 frame->entries = entries = entries2;
2036 swap(frame->bh, bh2);
2037 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002038 dx_insert_block(frames + 0, hash2, newblock);
2039 dxtrace(dx_show_index("node", frames[1].entries));
2040 dxtrace(dx_show_index("node",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002041 ((struct dx_node *) bh2->b_data)->entries));
Darrick J. Wongdbe89442012-04-29 18:39:10 -04002042 err = ext4_handle_dirty_dx_node(handle, dir, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002043 if (err)
2044 goto journal_error;
2045 brelse (bh2);
2046 } else {
Theodore Ts'o4776004f2008-09-08 23:00:52 -04002047 dxtrace(printk(KERN_DEBUG
2048 "Creating second level index...\n"));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002049 memcpy((char *) entries2, (char *) entries,
2050 icount * sizeof(struct dx_entry));
2051 dx_set_limit(entries2, dx_node_limit(dir));
2052
2053 /* Set up root */
2054 dx_set_count(entries, 1);
2055 dx_set_block(entries + 0, newblock);
2056 ((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels = 1;
2057
2058 /* Add new access path frame */
2059 frame = frames + 1;
2060 frame->at = at = at - entries + entries2;
2061 frame->entries = entries = entries2;
2062 frame->bh = bh2;
Mingming Cao617ba132006-10-11 01:20:53 -07002063 err = ext4_journal_get_write_access(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002064 frame->bh);
2065 if (err)
2066 goto journal_error;
2067 }
Darrick J. Wongdbe89442012-04-29 18:39:10 -04002068 err = ext4_handle_dirty_dx_node(handle, dir, frames[0].bh);
Theodore Ts'ob4097142011-01-10 12:46:59 -05002069 if (err) {
2070 ext4_std_error(inode->i_sb, err);
2071 goto cleanup;
2072 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002073 }
2074 de = do_split(handle, dir, &bh, frame, &hinfo, &err);
2075 if (!de)
2076 goto cleanup;
2077 err = add_dirent_to_buf(handle, dentry, inode, de, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002078 goto cleanup;
2079
2080journal_error:
Mingming Cao617ba132006-10-11 01:20:53 -07002081 ext4_std_error(dir->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002082cleanup:
Guo Chaob1deefc2013-01-28 21:41:02 -05002083 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002084 dx_release(frames);
2085 return err;
2086}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002087
2088/*
Tao Ma05019a92012-12-10 14:06:00 -05002089 * ext4_generic_delete_entry deletes a directory entry by merging it
2090 * with the previous entry
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002091 */
Tao Ma05019a92012-12-10 14:06:00 -05002092int ext4_generic_delete_entry(handle_t *handle,
2093 struct inode *dir,
2094 struct ext4_dir_entry_2 *de_del,
2095 struct buffer_head *bh,
2096 void *entry_buf,
2097 int buf_size,
2098 int csum_size)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002099{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002100 struct ext4_dir_entry_2 *de, *pde;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002101 unsigned int blocksize = dir->i_sb->s_blocksize;
Tao Ma05019a92012-12-10 14:06:00 -05002102 int i;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002103
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002104 i = 0;
2105 pde = NULL;
Tao Ma05019a92012-12-10 14:06:00 -05002106 de = (struct ext4_dir_entry_2 *)entry_buf;
2107 while (i < buf_size - csum_size) {
Tao Ma226ba972012-12-10 14:05:58 -05002108 if (ext4_check_dir_entry(dir, NULL, de, bh,
2109 bh->b_data, bh->b_size, i))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002110 return -EIO;
2111 if (de == de_del) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002112 if (pde)
Jan Karaa72d7f82008-01-28 23:58:27 -05002113 pde->rec_len = ext4_rec_len_to_disk(
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002114 ext4_rec_len_from_disk(pde->rec_len,
2115 blocksize) +
2116 ext4_rec_len_from_disk(de->rec_len,
2117 blocksize),
2118 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002119 else
2120 de->inode = 0;
2121 dir->i_version++;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002122 return 0;
2123 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002124 i += ext4_rec_len_from_disk(de->rec_len, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002125 pde = de;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002126 de = ext4_next_entry(de, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002127 }
2128 return -ENOENT;
2129}
2130
Tao Ma05019a92012-12-10 14:06:00 -05002131static int ext4_delete_entry(handle_t *handle,
2132 struct inode *dir,
2133 struct ext4_dir_entry_2 *de_del,
2134 struct buffer_head *bh)
2135{
2136 int err, csum_size = 0;
2137
Tao Ma9f40fe52012-12-10 14:06:00 -05002138 if (ext4_has_inline_data(dir)) {
2139 int has_inline_data = 1;
2140 err = ext4_delete_inline_entry(handle, dir, de_del, bh,
2141 &has_inline_data);
2142 if (has_inline_data)
2143 return err;
2144 }
2145
Tao Ma05019a92012-12-10 14:06:00 -05002146 if (EXT4_HAS_RO_COMPAT_FEATURE(dir->i_sb,
2147 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
2148 csum_size = sizeof(struct ext4_dir_entry_tail);
2149
2150 BUFFER_TRACE(bh, "get_write_access");
2151 err = ext4_journal_get_write_access(handle, bh);
2152 if (unlikely(err))
2153 goto out;
2154
2155 err = ext4_generic_delete_entry(handle, dir, de_del,
2156 bh, bh->b_data,
2157 dir->i_sb->s_blocksize, csum_size);
2158 if (err)
2159 goto out;
2160
2161 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
2162 err = ext4_handle_dirty_dirent_node(handle, dir, bh);
2163 if (unlikely(err))
2164 goto out;
2165
2166 return 0;
2167out:
2168 if (err != -ENOENT)
2169 ext4_std_error(dir->i_sb, err);
2170 return err;
2171}
2172
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002173/*
2174 * DIR_NLINK feature is set if 1) nlinks > EXT4_LINK_MAX or 2) nlinks == 2,
2175 * since this indicates that nlinks count was previously 1.
2176 */
2177static void ext4_inc_count(handle_t *handle, struct inode *inode)
2178{
2179 inc_nlink(inode);
2180 if (is_dx(inode) && inode->i_nlink > 1) {
2181 /* limit is 16-bit i_links_count */
2182 if (inode->i_nlink >= EXT4_LINK_MAX || inode->i_nlink == 2) {
Miklos Szeredibfe86842011-10-28 14:13:29 +02002183 set_nlink(inode, 1);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002184 EXT4_SET_RO_COMPAT_FEATURE(inode->i_sb,
2185 EXT4_FEATURE_RO_COMPAT_DIR_NLINK);
2186 }
2187 }
2188}
2189
2190/*
2191 * If a directory had nlink == 1, then we should let it be 1. This indicates
2192 * directory has >EXT4_LINK_MAX subdirs.
2193 */
2194static void ext4_dec_count(handle_t *handle, struct inode *inode)
2195{
Andreas Dilger909a4cf2011-10-26 03:22:31 -04002196 if (!S_ISDIR(inode->i_mode) || inode->i_nlink > 2)
2197 drop_nlink(inode);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002198}
2199
2200
Mingming Cao617ba132006-10-11 01:20:53 -07002201static int ext4_add_nondir(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002202 struct dentry *dentry, struct inode *inode)
2203{
Mingming Cao617ba132006-10-11 01:20:53 -07002204 int err = ext4_add_entry(handle, dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002205 if (!err) {
Mingming Cao617ba132006-10-11 01:20:53 -07002206 ext4_mark_inode_dirty(handle, inode);
Al Viro6b38e842008-12-30 02:03:31 -05002207 unlock_new_inode(inode);
Al Viro8fc37ec2012-07-19 09:18:15 +04002208 d_instantiate(dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002209 return 0;
2210 }
Eric Sandeen731b9a52007-02-10 01:46:16 -08002211 drop_nlink(inode);
Al Viro6b38e842008-12-30 02:03:31 -05002212 unlock_new_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002213 iput(inode);
2214 return err;
2215}
2216
2217/*
2218 * By the time this is called, we already have created
2219 * the directory cache entry for the new file, but it
2220 * is so far negative - it has no inode.
2221 *
2222 * If the create succeeds, we fill in the inode information
2223 * with d_instantiate().
2224 */
Al Viro4acdaf22011-07-26 01:42:34 -04002225static int ext4_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -04002226 bool excl)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002227{
2228 handle_t *handle;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002229 struct inode *inode;
Theodore Ts'o11395752013-02-09 16:27:09 -05002230 int err, credits, retries = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002231
Christoph Hellwig871a2932010-03-03 09:05:07 -05002232 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002233
Theodore Ts'o11395752013-02-09 16:27:09 -05002234 credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002235 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002236retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002237 inode = ext4_new_inode_start_handle(dir, mode, &dentry->d_name, 0,
2238 NULL, EXT4_HT_DIR, credits);
2239 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002240 err = PTR_ERR(inode);
2241 if (!IS_ERR(inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002242 inode->i_op = &ext4_file_inode_operations;
2243 inode->i_fop = &ext4_file_operations;
2244 ext4_set_aops(inode);
2245 err = ext4_add_nondir(handle, dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002246 if (!err && IS_DIRSYNC(dir))
2247 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002248 }
Theodore Ts'o11395752013-02-09 16:27:09 -05002249 if (handle)
2250 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002251 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002252 goto retry;
2253 return err;
2254}
2255
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002256static int ext4_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04002257 umode_t mode, dev_t rdev)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002258{
2259 handle_t *handle;
2260 struct inode *inode;
Theodore Ts'o11395752013-02-09 16:27:09 -05002261 int err, credits, retries = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002262
2263 if (!new_valid_dev(rdev))
2264 return -EINVAL;
2265
Christoph Hellwig871a2932010-03-03 09:05:07 -05002266 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002267
Theodore Ts'o11395752013-02-09 16:27:09 -05002268 credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002269 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002270retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002271 inode = ext4_new_inode_start_handle(dir, mode, &dentry->d_name, 0,
2272 NULL, EXT4_HT_DIR, credits);
2273 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002274 err = PTR_ERR(inode);
2275 if (!IS_ERR(inode)) {
2276 init_special_inode(inode, inode->i_mode, rdev);
Mingming Cao617ba132006-10-11 01:20:53 -07002277 inode->i_op = &ext4_special_inode_operations;
Mingming Cao617ba132006-10-11 01:20:53 -07002278 err = ext4_add_nondir(handle, dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002279 if (!err && IS_DIRSYNC(dir))
2280 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002281 }
Theodore Ts'o11395752013-02-09 16:27:09 -05002282 if (handle)
2283 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002284 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002285 goto retry;
2286 return err;
2287}
2288
Al Viroaf51a2a2013-06-29 13:23:08 +04002289static int ext4_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
2290{
2291 handle_t *handle;
2292 struct inode *inode;
2293 int err, retries = 0;
2294
2295 dquot_initialize(dir);
2296
2297retry:
2298 inode = ext4_new_inode_start_handle(dir, mode,
2299 NULL, 0, NULL,
2300 EXT4_HT_DIR,
2301 EXT4_MAXQUOTAS_INIT_BLOCKS(dir->i_sb) +
2302 4 + EXT4_XATTR_TRANS_BLOCKS);
2303 handle = ext4_journal_current_handle();
2304 err = PTR_ERR(inode);
2305 if (!IS_ERR(inode)) {
2306 inode->i_op = &ext4_file_inode_operations;
2307 inode->i_fop = &ext4_file_operations;
2308 ext4_set_aops(inode);
Zheng Liue94bd342013-07-20 21:58:38 -04002309 d_tmpfile(dentry, inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002310 err = ext4_orphan_add(handle, inode);
2311 if (err)
Miklos Szeredi43ae9e32013-10-10 16:48:19 +02002312 goto err_unlock_inode;
Al Viroaf51a2a2013-06-29 13:23:08 +04002313 mark_inode_dirty(inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002314 unlock_new_inode(inode);
2315 }
2316 if (handle)
2317 ext4_journal_stop(handle);
2318 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
2319 goto retry;
2320 return err;
Miklos Szeredi43ae9e32013-10-10 16:48:19 +02002321err_unlock_inode:
Al Viroaf51a2a2013-06-29 13:23:08 +04002322 ext4_journal_stop(handle);
2323 unlock_new_inode(inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002324 return err;
2325}
2326
Tao Maa774f9c2012-12-10 14:05:57 -05002327struct ext4_dir_entry_2 *ext4_init_dot_dotdot(struct inode *inode,
2328 struct ext4_dir_entry_2 *de,
2329 int blocksize, int csum_size,
2330 unsigned int parent_ino, int dotdot_real_len)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002331{
Tao Maa774f9c2012-12-10 14:05:57 -05002332 de->inode = cpu_to_le32(inode->i_ino);
2333 de->name_len = 1;
2334 de->rec_len = ext4_rec_len_to_disk(EXT4_DIR_REC_LEN(de->name_len),
2335 blocksize);
2336 strcpy(de->name, ".");
2337 ext4_set_de_type(inode->i_sb, de, S_IFDIR);
2338
2339 de = ext4_next_entry(de, blocksize);
2340 de->inode = cpu_to_le32(parent_ino);
2341 de->name_len = 2;
2342 if (!dotdot_real_len)
2343 de->rec_len = ext4_rec_len_to_disk(blocksize -
2344 (csum_size + EXT4_DIR_REC_LEN(1)),
2345 blocksize);
2346 else
2347 de->rec_len = ext4_rec_len_to_disk(
2348 EXT4_DIR_REC_LEN(de->name_len), blocksize);
2349 strcpy(de->name, "..");
2350 ext4_set_de_type(inode->i_sb, de, S_IFDIR);
2351
2352 return ext4_next_entry(de, blocksize);
2353}
2354
2355static int ext4_init_new_dir(handle_t *handle, struct inode *dir,
2356 struct inode *inode)
2357{
Namhyung Kimdabd9912011-01-10 12:11:16 -05002358 struct buffer_head *dir_block = NULL;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002359 struct ext4_dir_entry_2 *de;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002360 struct ext4_dir_entry_tail *t;
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002361 ext4_lblk_t block = 0;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002362 unsigned int blocksize = dir->i_sb->s_blocksize;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002363 int csum_size = 0;
Tao Maa774f9c2012-12-10 14:05:57 -05002364 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002365
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002366 if (EXT4_HAS_RO_COMPAT_FEATURE(dir->i_sb,
2367 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
2368 csum_size = sizeof(struct ext4_dir_entry_tail);
2369
Tao Ma3c47d542012-12-10 14:05:59 -05002370 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
2371 err = ext4_try_create_inline_dir(handle, dir, inode);
2372 if (err < 0 && err != -ENOSPC)
2373 goto out;
2374 if (!err)
2375 goto out;
2376 }
2377
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002378 inode->i_size = 0;
Theodore Ts'o0f70b402013-02-15 03:35:57 -05002379 dir_block = ext4_append(handle, inode, &block);
2380 if (IS_ERR(dir_block))
2381 return PTR_ERR(dir_block);
Tao Maa774f9c2012-12-10 14:05:57 -05002382 BUFFER_TRACE(dir_block, "get_write_access");
2383 err = ext4_journal_get_write_access(handle, dir_block);
2384 if (err)
2385 goto out;
2386 de = (struct ext4_dir_entry_2 *)dir_block->b_data;
2387 ext4_init_dot_dotdot(inode, de, blocksize, csum_size, dir->i_ino, 0);
2388 set_nlink(inode, 2);
2389 if (csum_size) {
2390 t = EXT4_DIRENT_TAIL(dir_block->b_data, blocksize);
2391 initialize_dirent_tail(t, blocksize);
2392 }
2393
2394 BUFFER_TRACE(dir_block, "call ext4_handle_dirty_metadata");
2395 err = ext4_handle_dirty_dirent_node(handle, inode, dir_block);
2396 if (err)
2397 goto out;
2398 set_buffer_verified(dir_block);
2399out:
2400 brelse(dir_block);
2401 return err;
2402}
2403
2404static int ext4_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
2405{
2406 handle_t *handle;
2407 struct inode *inode;
Theodore Ts'o11395752013-02-09 16:27:09 -05002408 int err, credits, retries = 0;
Tao Maa774f9c2012-12-10 14:05:57 -05002409
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002410 if (EXT4_DIR_LINK_MAX(dir))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002411 return -EMLINK;
2412
Christoph Hellwig871a2932010-03-03 09:05:07 -05002413 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002414
Theodore Ts'o11395752013-02-09 16:27:09 -05002415 credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002416 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002417retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002418 inode = ext4_new_inode_start_handle(dir, S_IFDIR | mode,
2419 &dentry->d_name,
2420 0, NULL, EXT4_HT_DIR, credits);
2421 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002422 err = PTR_ERR(inode);
2423 if (IS_ERR(inode))
2424 goto out_stop;
2425
Mingming Cao617ba132006-10-11 01:20:53 -07002426 inode->i_op = &ext4_dir_inode_operations;
2427 inode->i_fop = &ext4_dir_operations;
Tao Maa774f9c2012-12-10 14:05:57 -05002428 err = ext4_init_new_dir(handle, dir, inode);
Namhyung Kimdabd9912011-01-10 12:11:16 -05002429 if (err)
2430 goto out_clear_inode;
Namhyung Kimdabd9912011-01-10 12:11:16 -05002431 err = ext4_mark_inode_dirty(handle, inode);
2432 if (!err)
2433 err = ext4_add_entry(handle, dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002434 if (err) {
Aneesh Kumar K.V4cdeed82008-02-22 06:17:31 -05002435out_clear_inode:
2436 clear_nlink(inode);
Al Viro6b38e842008-12-30 02:03:31 -05002437 unlock_new_inode(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002438 ext4_mark_inode_dirty(handle, inode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002439 iput(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002440 goto out_stop;
2441 }
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002442 ext4_inc_count(handle, dir);
Mingming Cao617ba132006-10-11 01:20:53 -07002443 ext4_update_dx_flag(dir);
Namhyung Kimdabd9912011-01-10 12:11:16 -05002444 err = ext4_mark_inode_dirty(handle, dir);
2445 if (err)
2446 goto out_clear_inode;
Al Viro6b38e842008-12-30 02:03:31 -05002447 unlock_new_inode(inode);
Al Viro8fc37ec2012-07-19 09:18:15 +04002448 d_instantiate(dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002449 if (IS_DIRSYNC(dir))
2450 ext4_handle_sync(handle);
2451
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002452out_stop:
Theodore Ts'o11395752013-02-09 16:27:09 -05002453 if (handle)
2454 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002455 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002456 goto retry;
2457 return err;
2458}
2459
2460/*
2461 * routine to check that the specified directory is empty (for rmdir)
2462 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002463static int empty_dir(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002464{
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002465 unsigned int offset;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002466 struct buffer_head *bh;
2467 struct ext4_dir_entry_2 *de, *de1;
2468 struct super_block *sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002469 int err = 0;
2470
Tao Ma61f86632012-12-10 14:06:01 -05002471 if (ext4_has_inline_data(inode)) {
2472 int has_inline_data = 1;
2473
2474 err = empty_inline_dir(inode, &has_inline_data);
2475 if (has_inline_data)
2476 return err;
2477 }
2478
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002479 sb = inode->i_sb;
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002480 if (inode->i_size < EXT4_DIR_REC_LEN(1) + EXT4_DIR_REC_LEN(2)) {
2481 EXT4_ERROR_INODE(inode, "invalid size");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002482 return 1;
2483 }
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002484 bh = ext4_read_dirblock(inode, 0, EITHER);
2485 if (IS_ERR(bh))
2486 return 1;
2487
Mingming Cao617ba132006-10-11 01:20:53 -07002488 de = (struct ext4_dir_entry_2 *) bh->b_data;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002489 de1 = ext4_next_entry(de, sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002490 if (le32_to_cpu(de->inode) != inode->i_ino ||
2491 !le32_to_cpu(de1->inode) ||
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002492 strcmp(".", de->name) ||
2493 strcmp("..", de1->name)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05002494 ext4_warning(inode->i_sb,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002495 "bad directory (dir #%lu) - no `.' or `..'",
2496 inode->i_ino);
2497 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002498 return 1;
2499 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002500 offset = ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize) +
2501 ext4_rec_len_from_disk(de1->rec_len, sb->s_blocksize);
2502 de = ext4_next_entry(de1, sb->s_blocksize);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002503 while (offset < inode->i_size) {
Dmitry Monakhov236f5ec2014-04-21 14:38:14 -04002504 if ((void *) de >= (void *) (bh->b_data+sb->s_blocksize)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04002505 unsigned int lblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002506 err = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002507 brelse(bh);
Theodore Ts'o24676da2010-05-16 21:00:00 -04002508 lblock = offset >> EXT4_BLOCK_SIZE_BITS(sb);
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002509 bh = ext4_read_dirblock(inode, lblock, EITHER);
2510 if (IS_ERR(bh))
2511 return 1;
Mingming Cao617ba132006-10-11 01:20:53 -07002512 de = (struct ext4_dir_entry_2 *) bh->b_data;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002513 }
Tao Ma226ba972012-12-10 14:05:58 -05002514 if (ext4_check_dir_entry(inode, NULL, de, bh,
2515 bh->b_data, bh->b_size, offset)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002516 de = (struct ext4_dir_entry_2 *)(bh->b_data +
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002517 sb->s_blocksize);
2518 offset = (offset | (sb->s_blocksize - 1)) + 1;
2519 continue;
2520 }
2521 if (le32_to_cpu(de->inode)) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002522 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002523 return 0;
2524 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002525 offset += ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize);
2526 de = ext4_next_entry(de, sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002527 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002528 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002529 return 1;
2530}
2531
Jan Karad745a8c2014-05-26 11:56:53 -04002532/*
2533 * ext4_orphan_add() links an unlinked or truncated inode into a list of
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002534 * such inodes, starting at the superblock, in case we crash before the
2535 * file is closed/deleted, or in case the inode truncate spans multiple
2536 * transactions and the last transaction is not recovered after a crash.
2537 *
2538 * At filesystem recovery time, we walk this list deleting unlinked
Mingming Cao617ba132006-10-11 01:20:53 -07002539 * inodes and truncating linked inodes in ext4_orphan_cleanup().
Jan Karad745a8c2014-05-26 11:56:53 -04002540 *
2541 * Orphan list manipulation functions must be called under i_mutex unless
2542 * we are just creating the inode or deleting it.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002543 */
Mingming Cao617ba132006-10-11 01:20:53 -07002544int ext4_orphan_add(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002545{
2546 struct super_block *sb = inode->i_sb;
Jan Karacd2c0802014-05-26 11:39:17 -04002547 struct ext4_sb_info *sbi = EXT4_SB(sb);
Mingming Cao617ba132006-10-11 01:20:53 -07002548 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002549 int err = 0, rc;
Jan Karad745a8c2014-05-26 11:56:53 -04002550 bool dirty = false;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002551
Jan Karacd2c0802014-05-26 11:39:17 -04002552 if (!sbi->s_journal)
Frank Mayhar03901312009-01-07 00:06:22 -05002553 return 0;
2554
Jan Karad745a8c2014-05-26 11:56:53 -04002555 WARN_ON_ONCE(!(inode->i_state & (I_NEW | I_FREEING)) &&
2556 !mutex_is_locked(&inode->i_mutex));
2557 /*
2558 * Exit early if inode already is on orphan list. This is a big speedup
2559 * since we don't have to contend on the global s_orphan_lock.
2560 */
Mingming Cao617ba132006-10-11 01:20:53 -07002561 if (!list_empty(&EXT4_I(inode)->i_orphan))
Jan Karad745a8c2014-05-26 11:56:53 -04002562 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002563
Lukas Czernerafb86172011-07-11 18:47:04 -04002564 /*
2565 * Orphan handling is only valid for files with data blocks
2566 * being truncated, or files being unlinked. Note that we either
2567 * hold i_mutex, or the inode can not be referenced from outside,
2568 * so i_nlink should not be bumped due to race
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002569 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002570 J_ASSERT((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
2571 S_ISLNK(inode->i_mode)) || inode->i_nlink == 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002572
Jan Karacd2c0802014-05-26 11:39:17 -04002573 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
2574 err = ext4_journal_get_write_access(handle, sbi->s_sbh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002575 if (err)
Jan Karad745a8c2014-05-26 11:56:53 -04002576 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002577
Mingming Cao617ba132006-10-11 01:20:53 -07002578 err = ext4_reserve_inode_write(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002579 if (err)
Jan Karad745a8c2014-05-26 11:56:53 -04002580 goto out;
2581
2582 mutex_lock(&sbi->s_orphan_lock);
Dmitry Monakhov6e3617e2010-03-01 23:29:39 -05002583 /*
2584 * Due to previous errors inode may be already a part of on-disk
2585 * orphan list. If so skip on-disk list modification.
2586 */
Jan Karad745a8c2014-05-26 11:56:53 -04002587 if (!NEXT_ORPHAN(inode) || NEXT_ORPHAN(inode) >
2588 (le32_to_cpu(sbi->s_es->s_inodes_count))) {
2589 /* Insert this inode at the head of the on-disk orphan list */
2590 NEXT_ORPHAN(inode) = le32_to_cpu(sbi->s_es->s_last_orphan);
2591 sbi->s_es->s_last_orphan = cpu_to_le32(inode->i_ino);
2592 dirty = true;
2593 }
2594 list_add(&EXT4_I(inode)->i_orphan, &sbi->s_orphan);
2595 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002596
Jan Karad745a8c2014-05-26 11:56:53 -04002597 if (dirty) {
2598 err = ext4_handle_dirty_super(handle, sb);
2599 rc = ext4_mark_iloc_dirty(handle, inode, &iloc);
2600 if (!err)
2601 err = rc;
2602 if (err) {
2603 /*
2604 * We have to remove inode from in-memory list if
2605 * addition to on disk orphan list failed. Stray orphan
2606 * list entries can cause panics at unmount time.
2607 */
2608 mutex_lock(&sbi->s_orphan_lock);
2609 list_del(&EXT4_I(inode)->i_orphan);
2610 mutex_unlock(&sbi->s_orphan_lock);
2611 }
2612 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002613 jbd_debug(4, "superblock will point to %lu\n", inode->i_ino);
2614 jbd_debug(4, "orphan inode %lu will point to %d\n",
2615 inode->i_ino, NEXT_ORPHAN(inode));
Jan Karad745a8c2014-05-26 11:56:53 -04002616out:
Jan Karacd2c0802014-05-26 11:39:17 -04002617 ext4_std_error(sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002618 return err;
2619}
2620
2621/*
Mingming Cao617ba132006-10-11 01:20:53 -07002622 * ext4_orphan_del() removes an unlinked or truncated inode from the list
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002623 * of such inodes stored on disk, because it is finally being cleaned up.
2624 */
Mingming Cao617ba132006-10-11 01:20:53 -07002625int ext4_orphan_del(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002626{
2627 struct list_head *prev;
Mingming Cao617ba132006-10-11 01:20:53 -07002628 struct ext4_inode_info *ei = EXT4_I(inode);
Jan Karacd2c0802014-05-26 11:39:17 -04002629 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002630 __u32 ino_next;
Mingming Cao617ba132006-10-11 01:20:53 -07002631 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002632 int err = 0;
2633
Jan Karacd2c0802014-05-26 11:39:17 -04002634 if (!sbi->s_journal && !(sbi->s_mount_state & EXT4_ORPHAN_FS))
Frank Mayhar03901312009-01-07 00:06:22 -05002635 return 0;
2636
Jan Karad745a8c2014-05-26 11:56:53 -04002637 WARN_ON_ONCE(!(inode->i_state & (I_NEW | I_FREEING)) &&
2638 !mutex_is_locked(&inode->i_mutex));
2639 /* Do this quick check before taking global s_orphan_lock. */
Theodore Ts'o3b9d4ed2009-04-25 22:54:04 -04002640 if (list_empty(&ei->i_orphan))
Jan Karad745a8c2014-05-26 11:56:53 -04002641 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002642
Jan Karad745a8c2014-05-26 11:56:53 -04002643 if (handle) {
2644 /* Grab inode buffer early before taking global s_orphan_lock */
2645 err = ext4_reserve_inode_write(handle, inode, &iloc);
2646 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002647
Jan Karad745a8c2014-05-26 11:56:53 -04002648 mutex_lock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002649 jbd_debug(4, "remove inode %lu from orphan list\n", inode->i_ino);
2650
Jan Karad745a8c2014-05-26 11:56:53 -04002651 prev = ei->i_orphan.prev;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002652 list_del_init(&ei->i_orphan);
2653
2654 /* If we're on an error path, we may not have a valid
2655 * transaction handle with which to update the orphan list on
2656 * disk, but we still need to remove the inode from the linked
2657 * list in memory. */
Jan Karad745a8c2014-05-26 11:56:53 -04002658 if (!handle || err) {
2659 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002660 goto out_err;
Jan Karad745a8c2014-05-26 11:56:53 -04002661 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002662
Jan Karad745a8c2014-05-26 11:56:53 -04002663 ino_next = NEXT_ORPHAN(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002664 if (prev == &sbi->s_orphan) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002665 jbd_debug(4, "superblock will point to %u\n", ino_next);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002666 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07002667 err = ext4_journal_get_write_access(handle, sbi->s_sbh);
Jan Karad745a8c2014-05-26 11:56:53 -04002668 if (err) {
2669 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002670 goto out_brelse;
Jan Karad745a8c2014-05-26 11:56:53 -04002671 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002672 sbi->s_es->s_last_orphan = cpu_to_le32(ino_next);
Jan Karad745a8c2014-05-26 11:56:53 -04002673 mutex_unlock(&sbi->s_orphan_lock);
Artem Bityutskiyb50924c2012-07-22 20:37:31 -04002674 err = ext4_handle_dirty_super(handle, inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002675 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07002676 struct ext4_iloc iloc2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002677 struct inode *i_prev =
Mingming Cao617ba132006-10-11 01:20:53 -07002678 &list_entry(prev, struct ext4_inode_info, i_orphan)->vfs_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002679
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002680 jbd_debug(4, "orphan inode %lu will point to %u\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002681 i_prev->i_ino, ino_next);
Mingming Cao617ba132006-10-11 01:20:53 -07002682 err = ext4_reserve_inode_write(handle, i_prev, &iloc2);
Jan Karad745a8c2014-05-26 11:56:53 -04002683 if (err) {
2684 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002685 goto out_brelse;
Jan Karad745a8c2014-05-26 11:56:53 -04002686 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002687 NEXT_ORPHAN(i_prev) = ino_next;
Mingming Cao617ba132006-10-11 01:20:53 -07002688 err = ext4_mark_iloc_dirty(handle, i_prev, &iloc2);
Jan Karad745a8c2014-05-26 11:56:53 -04002689 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002690 }
2691 if (err)
2692 goto out_brelse;
2693 NEXT_ORPHAN(inode) = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002694 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002695out_err:
Mingming Cao617ba132006-10-11 01:20:53 -07002696 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002697 return err;
2698
2699out_brelse:
2700 brelse(iloc.bh);
2701 goto out_err;
2702}
2703
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002704static int ext4_rmdir(struct inode *dir, struct dentry *dentry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002705{
2706 int retval;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002707 struct inode *inode;
2708 struct buffer_head *bh;
2709 struct ext4_dir_entry_2 *de;
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002710 handle_t *handle = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002711
2712 /* Initialize quotas before so that eventual writes go in
2713 * separate transaction */
Christoph Hellwig871a2932010-03-03 09:05:07 -05002714 dquot_initialize(dir);
2715 dquot_initialize(dentry->d_inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002716
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002717 retval = -ENOENT;
Tao Ma32f7f222012-12-10 14:06:01 -05002718 bh = ext4_find_entry(dir, &dentry->d_name, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04002719 if (IS_ERR(bh))
2720 return PTR_ERR(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002721 if (!bh)
2722 goto end_rmdir;
2723
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002724 inode = dentry->d_inode;
2725
2726 retval = -EIO;
2727 if (le32_to_cpu(de->inode) != inode->i_ino)
2728 goto end_rmdir;
2729
2730 retval = -ENOTEMPTY;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002731 if (!empty_dir(inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002732 goto end_rmdir;
2733
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002734 handle = ext4_journal_start(dir, EXT4_HT_DIR,
Theodore Ts'o64044ab2013-02-09 15:06:24 -05002735 EXT4_DATA_TRANS_BLOCKS(dir->i_sb));
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002736 if (IS_ERR(handle)) {
2737 retval = PTR_ERR(handle);
2738 handle = NULL;
2739 goto end_rmdir;
2740 }
2741
2742 if (IS_DIRSYNC(dir))
2743 ext4_handle_sync(handle);
2744
Mingming Cao617ba132006-10-11 01:20:53 -07002745 retval = ext4_delete_entry(handle, dir, de, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002746 if (retval)
2747 goto end_rmdir;
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002748 if (!EXT4_DIR_LINK_EMPTY(inode))
Eric Sandeen12062dd2010-02-15 14:19:27 -05002749 ext4_warning(inode->i_sb,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002750 "empty directory has too many links (%d)",
2751 inode->i_nlink);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002752 inode->i_version++;
2753 clear_nlink(inode);
2754 /* There's no need to set i_disksize: the fact that i_nlink is
2755 * zero will ensure that the right thing happens during any
2756 * recovery. */
2757 inode->i_size = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002758 ext4_orphan_add(handle, inode);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002759 inode->i_ctime = dir->i_ctime = dir->i_mtime = ext4_current_time(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002760 ext4_mark_inode_dirty(handle, inode);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002761 ext4_dec_count(handle, dir);
Mingming Cao617ba132006-10-11 01:20:53 -07002762 ext4_update_dx_flag(dir);
2763 ext4_mark_inode_dirty(handle, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002764
2765end_rmdir:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002766 brelse(bh);
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002767 if (handle)
2768 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002769 return retval;
2770}
2771
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002772static int ext4_unlink(struct inode *dir, struct dentry *dentry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002773{
2774 int retval;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002775 struct inode *inode;
2776 struct buffer_head *bh;
2777 struct ext4_dir_entry_2 *de;
Theodore Ts'o931b6862013-02-09 09:43:39 -05002778 handle_t *handle = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002779
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002780 trace_ext4_unlink_enter(dir, dentry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002781 /* Initialize quotas before so that eventual writes go
2782 * in separate transaction */
Christoph Hellwig871a2932010-03-03 09:05:07 -05002783 dquot_initialize(dir);
2784 dquot_initialize(dentry->d_inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002785
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002786 retval = -ENOENT;
Tao Ma32f7f222012-12-10 14:06:01 -05002787 bh = ext4_find_entry(dir, &dentry->d_name, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04002788 if (IS_ERR(bh))
2789 return PTR_ERR(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002790 if (!bh)
2791 goto end_unlink;
2792
2793 inode = dentry->d_inode;
2794
2795 retval = -EIO;
2796 if (le32_to_cpu(de->inode) != inode->i_ino)
2797 goto end_unlink;
2798
Theodore Ts'o931b6862013-02-09 09:43:39 -05002799 handle = ext4_journal_start(dir, EXT4_HT_DIR,
Theodore Ts'o64044ab2013-02-09 15:06:24 -05002800 EXT4_DATA_TRANS_BLOCKS(dir->i_sb));
Theodore Ts'o931b6862013-02-09 09:43:39 -05002801 if (IS_ERR(handle)) {
2802 retval = PTR_ERR(handle);
2803 handle = NULL;
2804 goto end_unlink;
2805 }
2806
2807 if (IS_DIRSYNC(dir))
2808 ext4_handle_sync(handle);
2809
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002810 if (!inode->i_nlink) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05002811 ext4_warning(inode->i_sb,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002812 "Deleting nonexistent file (%lu), %d",
2813 inode->i_ino, inode->i_nlink);
Miklos Szeredibfe86842011-10-28 14:13:29 +02002814 set_nlink(inode, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002815 }
Mingming Cao617ba132006-10-11 01:20:53 -07002816 retval = ext4_delete_entry(handle, dir, de, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002817 if (retval)
2818 goto end_unlink;
Kalpak Shahef7f3832007-07-18 09:15:20 -04002819 dir->i_ctime = dir->i_mtime = ext4_current_time(dir);
Mingming Cao617ba132006-10-11 01:20:53 -07002820 ext4_update_dx_flag(dir);
2821 ext4_mark_inode_dirty(handle, dir);
Theodore Ts'o825f1482008-02-15 15:00:38 -05002822 drop_nlink(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002823 if (!inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07002824 ext4_orphan_add(handle, inode);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002825 inode->i_ctime = ext4_current_time(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002826 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002827 retval = 0;
2828
2829end_unlink:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002830 brelse(bh);
Theodore Ts'o931b6862013-02-09 09:43:39 -05002831 if (handle)
2832 ext4_journal_stop(handle);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002833 trace_ext4_unlink_exit(dentry, retval);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002834 return retval;
2835}
2836
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002837static int ext4_symlink(struct inode *dir,
2838 struct dentry *dentry, const char *symname)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002839{
2840 handle_t *handle;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002841 struct inode *inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002842 int l, err, retries = 0;
Jan Karadf5e6222011-05-03 11:12:58 -04002843 int credits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002844
2845 l = strlen(symname)+1;
2846 if (l > dir->i_sb->s_blocksize)
2847 return -ENAMETOOLONG;
2848
Christoph Hellwig871a2932010-03-03 09:05:07 -05002849 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002850
Jan Karadf5e6222011-05-03 11:12:58 -04002851 if (l > EXT4_N_BLOCKS * 4) {
2852 /*
2853 * For non-fast symlinks, we just allocate inode and put it on
2854 * orphan list in the first transaction => we need bitmap,
Eric Sandeen8c208712011-08-11 09:54:31 -05002855 * group descriptor, sb, inode block, quota blocks, and
2856 * possibly selinux xattr blocks.
Jan Karadf5e6222011-05-03 11:12:58 -04002857 */
Eric Sandeen8c208712011-08-11 09:54:31 -05002858 credits = 4 + EXT4_MAXQUOTAS_INIT_BLOCKS(dir->i_sb) +
2859 EXT4_XATTR_TRANS_BLOCKS;
Jan Karadf5e6222011-05-03 11:12:58 -04002860 } else {
2861 /*
2862 * Fast symlink. We have to add entry to directory
2863 * (EXT4_DATA_TRANS_BLOCKS + EXT4_INDEX_EXTRA_TRANS_BLOCKS),
2864 * allocate new inode (bitmap, group descriptor, inode block,
2865 * quota blocks, sb is already counted in previous macros).
2866 */
2867 credits = EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002868 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3;
Jan Karadf5e6222011-05-03 11:12:58 -04002869 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002870retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002871 inode = ext4_new_inode_start_handle(dir, S_IFLNK|S_IRWXUGO,
2872 &dentry->d_name, 0, NULL,
2873 EXT4_HT_DIR, credits);
2874 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002875 err = PTR_ERR(inode);
2876 if (IS_ERR(inode))
2877 goto out_stop;
2878
Jan Karadf5e6222011-05-03 11:12:58 -04002879 if (l > EXT4_N_BLOCKS * 4) {
Mingming Cao617ba132006-10-11 01:20:53 -07002880 inode->i_op = &ext4_symlink_inode_operations;
2881 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002882 /*
Jan Karadf5e6222011-05-03 11:12:58 -04002883 * We cannot call page_symlink() with transaction started
2884 * because it calls into ext4_write_begin() which can wait
2885 * for transaction commit if we are running out of space
2886 * and thus we deadlock. So we have to stop transaction now
2887 * and restart it when symlink contents is written.
2888 *
2889 * To keep fs consistent in case of crash, we have to put inode
2890 * to orphan list in the mean time.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002891 */
Jan Karadf5e6222011-05-03 11:12:58 -04002892 drop_nlink(inode);
2893 err = ext4_orphan_add(handle, inode);
2894 ext4_journal_stop(handle);
2895 if (err)
2896 goto err_drop_inode;
Nick Piggin54566b22009-01-04 12:00:53 -08002897 err = __page_symlink(inode, symname, l, 1);
Jan Karadf5e6222011-05-03 11:12:58 -04002898 if (err)
2899 goto err_drop_inode;
2900 /*
2901 * Now inode is being linked into dir (EXT4_DATA_TRANS_BLOCKS
2902 * + EXT4_INDEX_EXTRA_TRANS_BLOCKS), inode is also modified
2903 */
Theodore Ts'o9924a922013-02-08 21:59:22 -05002904 handle = ext4_journal_start(dir, EXT4_HT_DIR,
Jan Karadf5e6222011-05-03 11:12:58 -04002905 EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
2906 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 1);
2907 if (IS_ERR(handle)) {
2908 err = PTR_ERR(handle);
2909 goto err_drop_inode;
2910 }
Al Viro0ce8c0102012-01-08 19:50:23 -05002911 set_nlink(inode, 1);
Jan Karadf5e6222011-05-03 11:12:58 -04002912 err = ext4_orphan_del(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002913 if (err) {
Jan Karadf5e6222011-05-03 11:12:58 -04002914 ext4_journal_stop(handle);
Theodore Ts'o825f1482008-02-15 15:00:38 -05002915 clear_nlink(inode);
Jan Karadf5e6222011-05-03 11:12:58 -04002916 goto err_drop_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002917 }
2918 } else {
Aneesh Kumar K.Ve65187e2008-04-29 08:11:12 -04002919 /* clear the extent format for fast symlink */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04002920 ext4_clear_inode_flag(inode, EXT4_INODE_EXTENTS);
Mingming Cao617ba132006-10-11 01:20:53 -07002921 inode->i_op = &ext4_fast_symlink_inode_operations;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002922 memcpy((char *)&EXT4_I(inode)->i_data, symname, l);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002923 inode->i_size = l-1;
2924 }
Mingming Cao617ba132006-10-11 01:20:53 -07002925 EXT4_I(inode)->i_disksize = inode->i_size;
2926 err = ext4_add_nondir(handle, dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002927 if (!err && IS_DIRSYNC(dir))
2928 ext4_handle_sync(handle);
2929
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002930out_stop:
Theodore Ts'o11395752013-02-09 16:27:09 -05002931 if (handle)
2932 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002933 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002934 goto retry;
2935 return err;
Jan Karadf5e6222011-05-03 11:12:58 -04002936err_drop_inode:
2937 unlock_new_inode(inode);
2938 iput(inode);
2939 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002940}
2941
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002942static int ext4_link(struct dentry *old_dentry,
2943 struct inode *dir, struct dentry *dentry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002944{
2945 handle_t *handle;
2946 struct inode *inode = old_dentry->d_inode;
2947 int err, retries = 0;
2948
Theodore Ts'ob05ab1d2009-08-29 21:08:08 -04002949 if (inode->i_nlink >= EXT4_LINK_MAX)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002950 return -EMLINK;
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002951
Christoph Hellwig871a2932010-03-03 09:05:07 -05002952 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002953
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002954retry:
Theodore Ts'o9924a922013-02-08 21:59:22 -05002955 handle = ext4_journal_start(dir, EXT4_HT_DIR,
2956 (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Al Viroaf51a2a2013-06-29 13:23:08 +04002957 EXT4_INDEX_EXTRA_TRANS_BLOCKS) + 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002958 if (IS_ERR(handle))
2959 return PTR_ERR(handle);
2960
2961 if (IS_DIRSYNC(dir))
Frank Mayhar03901312009-01-07 00:06:22 -05002962 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002963
Kalpak Shahef7f3832007-07-18 09:15:20 -04002964 inode->i_ctime = ext4_current_time(inode);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002965 ext4_inc_count(handle, inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04002966 ihold(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002967
Al Viro6b38e842008-12-30 02:03:31 -05002968 err = ext4_add_entry(handle, dentry, inode);
2969 if (!err) {
2970 ext4_mark_inode_dirty(handle, inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002971 /* this can happen only for tmpfile being
2972 * linked the first time
2973 */
2974 if (inode->i_nlink == 1)
2975 ext4_orphan_del(handle, inode);
Al Viro6b38e842008-12-30 02:03:31 -05002976 d_instantiate(dentry, inode);
2977 } else {
2978 drop_nlink(inode);
2979 iput(inode);
2980 }
Mingming Cao617ba132006-10-11 01:20:53 -07002981 ext4_journal_stop(handle);
2982 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002983 goto retry;
2984 return err;
2985}
2986
Tao Ma32f7f222012-12-10 14:06:01 -05002987
2988/*
2989 * Try to find buffer head where contains the parent block.
2990 * It should be the inode block if it is inlined or the 1st block
2991 * if it is a normal dir.
2992 */
2993static struct buffer_head *ext4_get_first_dir_block(handle_t *handle,
2994 struct inode *inode,
2995 int *retval,
2996 struct ext4_dir_entry_2 **parent_de,
2997 int *inlined)
2998{
2999 struct buffer_head *bh;
3000
3001 if (!ext4_has_inline_data(inode)) {
Theodore Ts'odc6982f2013-02-14 23:59:26 -05003002 bh = ext4_read_dirblock(inode, 0, EITHER);
3003 if (IS_ERR(bh)) {
3004 *retval = PTR_ERR(bh);
Tao Ma32f7f222012-12-10 14:06:01 -05003005 return NULL;
3006 }
3007 *parent_de = ext4_next_entry(
3008 (struct ext4_dir_entry_2 *)bh->b_data,
3009 inode->i_sb->s_blocksize);
3010 return bh;
3011 }
3012
3013 *inlined = 1;
3014 return ext4_get_first_inline_block(inode, parent_de, retval);
3015}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003016
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003017struct ext4_renament {
3018 struct inode *dir;
3019 struct dentry *dentry;
3020 struct inode *inode;
Miklos Szeredibd429982014-04-01 17:08:44 +02003021 bool is_dir;
3022 int dir_nlink_delta;
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003023
3024 /* entry for "dentry" */
3025 struct buffer_head *bh;
3026 struct ext4_dir_entry_2 *de;
3027 int inlined;
3028
3029 /* entry for ".." in inode if it's a directory */
3030 struct buffer_head *dir_bh;
3031 struct ext4_dir_entry_2 *parent_de;
3032 int dir_inlined;
3033};
3034
Miklos Szeredibd1af142014-04-01 17:08:44 +02003035static int ext4_rename_dir_prepare(handle_t *handle, struct ext4_renament *ent)
3036{
3037 int retval;
3038
3039 ent->dir_bh = ext4_get_first_dir_block(handle, ent->inode,
3040 &retval, &ent->parent_de,
3041 &ent->dir_inlined);
3042 if (!ent->dir_bh)
3043 return retval;
3044 if (le32_to_cpu(ent->parent_de->inode) != ent->dir->i_ino)
3045 return -EIO;
3046 BUFFER_TRACE(ent->dir_bh, "get_write_access");
3047 return ext4_journal_get_write_access(handle, ent->dir_bh);
3048}
3049
3050static int ext4_rename_dir_finish(handle_t *handle, struct ext4_renament *ent,
3051 unsigned dir_ino)
3052{
3053 int retval;
3054
3055 ent->parent_de->inode = cpu_to_le32(dir_ino);
3056 BUFFER_TRACE(ent->dir_bh, "call ext4_handle_dirty_metadata");
3057 if (!ent->dir_inlined) {
3058 if (is_dx(ent->inode)) {
3059 retval = ext4_handle_dirty_dx_node(handle,
3060 ent->inode,
3061 ent->dir_bh);
3062 } else {
3063 retval = ext4_handle_dirty_dirent_node(handle,
3064 ent->inode,
3065 ent->dir_bh);
3066 }
3067 } else {
3068 retval = ext4_mark_inode_dirty(handle, ent->inode);
3069 }
3070 if (retval) {
3071 ext4_std_error(ent->dir->i_sb, retval);
3072 return retval;
3073 }
3074 return 0;
3075}
3076
3077static int ext4_setent(handle_t *handle, struct ext4_renament *ent,
3078 unsigned ino, unsigned file_type)
3079{
3080 int retval;
3081
3082 BUFFER_TRACE(ent->bh, "get write access");
3083 retval = ext4_journal_get_write_access(handle, ent->bh);
3084 if (retval)
3085 return retval;
3086 ent->de->inode = cpu_to_le32(ino);
3087 if (EXT4_HAS_INCOMPAT_FEATURE(ent->dir->i_sb,
3088 EXT4_FEATURE_INCOMPAT_FILETYPE))
3089 ent->de->file_type = file_type;
3090 ent->dir->i_version++;
3091 ent->dir->i_ctime = ent->dir->i_mtime =
3092 ext4_current_time(ent->dir);
3093 ext4_mark_inode_dirty(handle, ent->dir);
3094 BUFFER_TRACE(ent->bh, "call ext4_handle_dirty_metadata");
3095 if (!ent->inlined) {
3096 retval = ext4_handle_dirty_dirent_node(handle,
3097 ent->dir, ent->bh);
3098 if (unlikely(retval)) {
3099 ext4_std_error(ent->dir->i_sb, retval);
3100 return retval;
3101 }
3102 }
3103 brelse(ent->bh);
3104 ent->bh = NULL;
3105
3106 return 0;
3107}
3108
3109static int ext4_find_delete_entry(handle_t *handle, struct inode *dir,
3110 const struct qstr *d_name)
3111{
3112 int retval = -ENOENT;
3113 struct buffer_head *bh;
3114 struct ext4_dir_entry_2 *de;
3115
3116 bh = ext4_find_entry(dir, d_name, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003117 if (IS_ERR(bh))
3118 return PTR_ERR(bh);
Miklos Szeredibd1af142014-04-01 17:08:44 +02003119 if (bh) {
3120 retval = ext4_delete_entry(handle, dir, de, bh);
3121 brelse(bh);
3122 }
3123 return retval;
3124}
3125
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003126static void ext4_rename_delete(handle_t *handle, struct ext4_renament *ent,
3127 int force_reread)
Miklos Szeredibd1af142014-04-01 17:08:44 +02003128{
3129 int retval;
3130 /*
3131 * ent->de could have moved from under us during htree split, so make
3132 * sure that we are deleting the right entry. We might also be pointing
3133 * to a stale entry in the unused part of ent->bh so just checking inum
3134 * and the name isn't enough.
3135 */
3136 if (le32_to_cpu(ent->de->inode) != ent->inode->i_ino ||
3137 ent->de->name_len != ent->dentry->d_name.len ||
3138 strncmp(ent->de->name, ent->dentry->d_name.name,
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003139 ent->de->name_len) ||
3140 force_reread) {
Miklos Szeredibd1af142014-04-01 17:08:44 +02003141 retval = ext4_find_delete_entry(handle, ent->dir,
3142 &ent->dentry->d_name);
3143 } else {
3144 retval = ext4_delete_entry(handle, ent->dir, ent->de, ent->bh);
3145 if (retval == -ENOENT) {
3146 retval = ext4_find_delete_entry(handle, ent->dir,
3147 &ent->dentry->d_name);
3148 }
3149 }
3150
3151 if (retval) {
3152 ext4_warning(ent->dir->i_sb,
3153 "Deleting old file (%lu), %d, error=%d",
3154 ent->dir->i_ino, ent->dir->i_nlink, retval);
3155 }
3156}
3157
Miklos Szeredibd429982014-04-01 17:08:44 +02003158static void ext4_update_dir_count(handle_t *handle, struct ext4_renament *ent)
3159{
3160 if (ent->dir_nlink_delta) {
3161 if (ent->dir_nlink_delta == -1)
3162 ext4_dec_count(handle, ent->dir);
3163 else
3164 ext4_inc_count(handle, ent->dir);
3165 ext4_mark_inode_dirty(handle, ent->dir);
3166 }
3167}
3168
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003169/*
3170 * Anybody can rename anything with this: the permission checks are left to the
3171 * higher-level routines.
Theodore Ts'o0e202702013-08-16 22:06:53 -04003172 *
3173 * n.b. old_{dentry,inode) refers to the source dentry/inode
3174 * while new_{dentry,inode) refers to the destination dentry/inode
3175 * This comes from rename(const char *oldpath, const char *newpath)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003176 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003177static int ext4_rename(struct inode *old_dir, struct dentry *old_dentry,
3178 struct inode *new_dir, struct dentry *new_dentry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003179{
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003180 handle_t *handle = NULL;
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003181 struct ext4_renament old = {
3182 .dir = old_dir,
3183 .dentry = old_dentry,
3184 .inode = old_dentry->d_inode,
3185 };
3186 struct ext4_renament new = {
3187 .dir = new_dir,
3188 .dentry = new_dentry,
3189 .inode = new_dentry->d_inode,
3190 };
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003191 int force_reread;
Theodore Ts'o0e202702013-08-16 22:06:53 -04003192 int retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003193
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003194 dquot_initialize(old.dir);
3195 dquot_initialize(new.dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003196
3197 /* Initialize quotas before so that eventual writes go
3198 * in separate transaction */
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003199 if (new.inode)
3200 dquot_initialize(new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003201
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003202 old.bh = ext4_find_entry(old.dir, &old.dentry->d_name, &old.de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003203 if (IS_ERR(old.bh))
3204 return PTR_ERR(old.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003205 /*
3206 * Check for inode number is _not_ due to possible IO errors.
3207 * We might rmdir the source, keep it as pwd of some process
3208 * and merrily kill the link to whatever was created under the
3209 * same name. Goodbye sticky bit ;-<
3210 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003211 retval = -ENOENT;
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003212 if (!old.bh || le32_to_cpu(old.de->inode) != old.inode->i_ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003213 goto end_rename;
3214
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003215 new.bh = ext4_find_entry(new.dir, &new.dentry->d_name,
3216 &new.de, &new.inlined);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003217 if (IS_ERR(new.bh)) {
3218 retval = PTR_ERR(new.bh);
3219 goto end_rename;
3220 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003221 if (new.bh) {
3222 if (!new.inode) {
3223 brelse(new.bh);
3224 new.bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003225 }
3226 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003227 if (new.inode && !test_opt(new.dir->i_sb, NO_AUTO_DA_ALLOC))
3228 ext4_alloc_da_blocks(old.inode);
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003229
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003230 handle = ext4_journal_start(old.dir, EXT4_HT_DIR,
3231 (2 * EXT4_DATA_TRANS_BLOCKS(old.dir->i_sb) +
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003232 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 2));
3233 if (IS_ERR(handle))
3234 return PTR_ERR(handle);
3235
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003236 if (IS_DIRSYNC(old.dir) || IS_DIRSYNC(new.dir))
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003237 ext4_handle_sync(handle);
3238
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003239 if (S_ISDIR(old.inode->i_mode)) {
3240 if (new.inode) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003241 retval = -ENOTEMPTY;
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003242 if (!empty_dir(new.inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003243 goto end_rename;
Miklos Szeredi0d7d5d62014-04-01 17:08:44 +02003244 } else {
3245 retval = -EMLINK;
3246 if (new.dir != old.dir && EXT4_DIR_LINK_MAX(new.dir))
3247 goto end_rename;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003248 }
Miklos Szeredibd1af142014-04-01 17:08:44 +02003249 retval = ext4_rename_dir_prepare(handle, &old);
Amir Goldsteinef607892011-03-20 21:18:44 -04003250 if (retval)
3251 goto end_rename;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003252 }
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003253 /*
3254 * If we're renaming a file within an inline_data dir and adding or
3255 * setting the new dirent causes a conversion from inline_data to
3256 * extents/blockmap, we need to force the dirent delete code to
3257 * re-read the directory, or else we end up trying to delete a dirent
3258 * from what is now the extent tree root (or a block map).
3259 */
3260 force_reread = (new.dir->i_ino == old.dir->i_ino &&
3261 ext4_test_inode_flag(new.dir, EXT4_INODE_INLINE_DATA));
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003262 if (!new.bh) {
3263 retval = ext4_add_entry(handle, new.dentry, old.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003264 if (retval)
3265 goto end_rename;
3266 } else {
Miklos Szeredibd1af142014-04-01 17:08:44 +02003267 retval = ext4_setent(handle, &new,
3268 old.inode->i_ino, old.de->file_type);
Amir Goldsteinef607892011-03-20 21:18:44 -04003269 if (retval)
3270 goto end_rename;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003271 }
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003272 if (force_reread)
3273 force_reread = !ext4_test_inode_flag(new.dir,
3274 EXT4_INODE_INLINE_DATA);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003275
3276 /*
3277 * Like most other Unix systems, set the ctime for inodes on a
3278 * rename.
3279 */
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003280 old.inode->i_ctime = ext4_current_time(old.inode);
3281 ext4_mark_inode_dirty(handle, old.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003282
3283 /*
3284 * ok, that's it
3285 */
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003286 ext4_rename_delete(handle, &old, force_reread);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003287
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003288 if (new.inode) {
3289 ext4_dec_count(handle, new.inode);
3290 new.inode->i_ctime = ext4_current_time(new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003291 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003292 old.dir->i_ctime = old.dir->i_mtime = ext4_current_time(old.dir);
3293 ext4_update_dx_flag(old.dir);
3294 if (old.dir_bh) {
Miklos Szeredibd1af142014-04-01 17:08:44 +02003295 retval = ext4_rename_dir_finish(handle, &old, new.dir->i_ino);
3296 if (retval)
Theodore Ts'ob4097142011-01-10 12:46:59 -05003297 goto end_rename;
Miklos Szeredibd1af142014-04-01 17:08:44 +02003298
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003299 ext4_dec_count(handle, old.dir);
3300 if (new.inode) {
Andreas Dilgerf8628a12007-07-18 08:38:01 -04003301 /* checked empty_dir above, can't have another parent,
Theodore Ts'o825f1482008-02-15 15:00:38 -05003302 * ext4_dec_count() won't work for many-linked dirs */
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003303 clear_nlink(new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003304 } else {
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003305 ext4_inc_count(handle, new.dir);
3306 ext4_update_dx_flag(new.dir);
3307 ext4_mark_inode_dirty(handle, new.dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003308 }
3309 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003310 ext4_mark_inode_dirty(handle, old.dir);
3311 if (new.inode) {
3312 ext4_mark_inode_dirty(handle, new.inode);
3313 if (!new.inode->i_nlink)
3314 ext4_orphan_add(handle, new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003315 }
3316 retval = 0;
3317
3318end_rename:
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003319 brelse(old.dir_bh);
3320 brelse(old.bh);
3321 brelse(new.bh);
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003322 if (handle)
3323 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003324 return retval;
3325}
3326
Miklos Szeredibd429982014-04-01 17:08:44 +02003327static int ext4_cross_rename(struct inode *old_dir, struct dentry *old_dentry,
3328 struct inode *new_dir, struct dentry *new_dentry)
3329{
3330 handle_t *handle = NULL;
3331 struct ext4_renament old = {
3332 .dir = old_dir,
3333 .dentry = old_dentry,
3334 .inode = old_dentry->d_inode,
3335 };
3336 struct ext4_renament new = {
3337 .dir = new_dir,
3338 .dentry = new_dentry,
3339 .inode = new_dentry->d_inode,
3340 };
3341 u8 new_file_type;
3342 int retval;
3343
3344 dquot_initialize(old.dir);
3345 dquot_initialize(new.dir);
3346
3347 old.bh = ext4_find_entry(old.dir, &old.dentry->d_name,
3348 &old.de, &old.inlined);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003349 if (IS_ERR(old.bh))
3350 return PTR_ERR(old.bh);
Miklos Szeredibd429982014-04-01 17:08:44 +02003351 /*
3352 * Check for inode number is _not_ due to possible IO errors.
3353 * We might rmdir the source, keep it as pwd of some process
3354 * and merrily kill the link to whatever was created under the
3355 * same name. Goodbye sticky bit ;-<
3356 */
3357 retval = -ENOENT;
3358 if (!old.bh || le32_to_cpu(old.de->inode) != old.inode->i_ino)
3359 goto end_rename;
3360
3361 new.bh = ext4_find_entry(new.dir, &new.dentry->d_name,
3362 &new.de, &new.inlined);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003363 if (IS_ERR(new.bh)) {
3364 retval = PTR_ERR(new.bh);
3365 goto end_rename;
3366 }
Miklos Szeredibd429982014-04-01 17:08:44 +02003367
3368 /* RENAME_EXCHANGE case: old *and* new must both exist */
3369 if (!new.bh || le32_to_cpu(new.de->inode) != new.inode->i_ino)
3370 goto end_rename;
3371
3372 handle = ext4_journal_start(old.dir, EXT4_HT_DIR,
3373 (2 * EXT4_DATA_TRANS_BLOCKS(old.dir->i_sb) +
3374 2 * EXT4_INDEX_EXTRA_TRANS_BLOCKS + 2));
3375 if (IS_ERR(handle))
3376 return PTR_ERR(handle);
3377
3378 if (IS_DIRSYNC(old.dir) || IS_DIRSYNC(new.dir))
3379 ext4_handle_sync(handle);
3380
3381 if (S_ISDIR(old.inode->i_mode)) {
3382 old.is_dir = true;
3383 retval = ext4_rename_dir_prepare(handle, &old);
3384 if (retval)
3385 goto end_rename;
3386 }
3387 if (S_ISDIR(new.inode->i_mode)) {
3388 new.is_dir = true;
3389 retval = ext4_rename_dir_prepare(handle, &new);
3390 if (retval)
3391 goto end_rename;
3392 }
3393
3394 /*
3395 * Other than the special case of overwriting a directory, parents'
3396 * nlink only needs to be modified if this is a cross directory rename.
3397 */
3398 if (old.dir != new.dir && old.is_dir != new.is_dir) {
3399 old.dir_nlink_delta = old.is_dir ? -1 : 1;
3400 new.dir_nlink_delta = -old.dir_nlink_delta;
3401 retval = -EMLINK;
3402 if ((old.dir_nlink_delta > 0 && EXT4_DIR_LINK_MAX(old.dir)) ||
3403 (new.dir_nlink_delta > 0 && EXT4_DIR_LINK_MAX(new.dir)))
3404 goto end_rename;
3405 }
3406
3407 new_file_type = new.de->file_type;
3408 retval = ext4_setent(handle, &new, old.inode->i_ino, old.de->file_type);
3409 if (retval)
3410 goto end_rename;
3411
3412 retval = ext4_setent(handle, &old, new.inode->i_ino, new_file_type);
3413 if (retval)
3414 goto end_rename;
3415
3416 /*
3417 * Like most other Unix systems, set the ctime for inodes on a
3418 * rename.
3419 */
3420 old.inode->i_ctime = ext4_current_time(old.inode);
3421 new.inode->i_ctime = ext4_current_time(new.inode);
3422 ext4_mark_inode_dirty(handle, old.inode);
3423 ext4_mark_inode_dirty(handle, new.inode);
3424
3425 if (old.dir_bh) {
3426 retval = ext4_rename_dir_finish(handle, &old, new.dir->i_ino);
3427 if (retval)
3428 goto end_rename;
3429 }
3430 if (new.dir_bh) {
3431 retval = ext4_rename_dir_finish(handle, &new, old.dir->i_ino);
3432 if (retval)
3433 goto end_rename;
3434 }
3435 ext4_update_dir_count(handle, &old);
3436 ext4_update_dir_count(handle, &new);
3437 retval = 0;
3438
3439end_rename:
3440 brelse(old.dir_bh);
3441 brelse(new.dir_bh);
3442 brelse(old.bh);
3443 brelse(new.bh);
3444 if (handle)
3445 ext4_journal_stop(handle);
3446 return retval;
3447}
3448
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003449static int ext4_rename2(struct inode *old_dir, struct dentry *old_dentry,
3450 struct inode *new_dir, struct dentry *new_dentry,
3451 unsigned int flags)
3452{
Miklos Szeredibd429982014-04-01 17:08:44 +02003453 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE))
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003454 return -EINVAL;
3455
Miklos Szeredibd429982014-04-01 17:08:44 +02003456 if (flags & RENAME_EXCHANGE) {
3457 return ext4_cross_rename(old_dir, old_dentry,
3458 new_dir, new_dentry);
3459 }
3460 /*
3461 * Existence checking was done by the VFS, otherwise "RENAME_NOREPLACE"
3462 * is equivalent to regular rename.
3463 */
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003464 return ext4_rename(old_dir, old_dentry, new_dir, new_dentry);
3465}
3466
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003467/*
3468 * directories can handle most operations...
3469 */
Arjan van de Ven754661f2007-02-12 00:55:38 -08003470const struct inode_operations ext4_dir_inode_operations = {
Mingming Cao617ba132006-10-11 01:20:53 -07003471 .create = ext4_create,
3472 .lookup = ext4_lookup,
3473 .link = ext4_link,
3474 .unlink = ext4_unlink,
3475 .symlink = ext4_symlink,
3476 .mkdir = ext4_mkdir,
3477 .rmdir = ext4_rmdir,
3478 .mknod = ext4_mknod,
Al Viroaf51a2a2013-06-29 13:23:08 +04003479 .tmpfile = ext4_tmpfile,
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003480 .rename2 = ext4_rename2,
Mingming Cao617ba132006-10-11 01:20:53 -07003481 .setattr = ext4_setattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003482 .setxattr = generic_setxattr,
3483 .getxattr = generic_getxattr,
Mingming Cao617ba132006-10-11 01:20:53 -07003484 .listxattr = ext4_listxattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003485 .removexattr = generic_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02003486 .get_acl = ext4_get_acl,
Christoph Hellwig64e178a2013-12-20 05:16:44 -08003487 .set_acl = ext4_set_acl,
Aneesh Kumar K.Vabc87462009-05-02 22:54:32 -04003488 .fiemap = ext4_fiemap,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003489};
3490
Arjan van de Ven754661f2007-02-12 00:55:38 -08003491const struct inode_operations ext4_special_inode_operations = {
Mingming Cao617ba132006-10-11 01:20:53 -07003492 .setattr = ext4_setattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003493 .setxattr = generic_setxattr,
3494 .getxattr = generic_getxattr,
Mingming Cao617ba132006-10-11 01:20:53 -07003495 .listxattr = ext4_listxattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003496 .removexattr = generic_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02003497 .get_acl = ext4_get_acl,
Christoph Hellwig64e178a2013-12-20 05:16:44 -08003498 .set_acl = ext4_set_acl,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003499};